Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoeland Jago Douma <roeland@famdouma.nl>2020-01-17 14:57:06 +0300
committernpmbuildbot[bot] <npmbuildbot[bot]@users.noreply.github.com>2020-01-17 15:14:33 +0300
commit8c229684d759c80d7435f86bd69a01453cd8ba0d (patch)
tree8973d85e8964b7ad67bb42c97c8babe58e7a3640
parentf012f0a3538985860bddf8abc4b0003285e2a688 (diff)
Fix width and icon
Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl> Signed-off-by: npmbuildbot[bot] <npmbuildbot[bot]@users.noreply.github.com>
-rw-r--r--apps/settings/js/vue-1.js3342
-rw-r--r--apps/settings/js/vue-1.js.map2
-rw-r--r--apps/settings/js/vue-2.js5203
-rw-r--r--apps/settings/js/vue-2.js.map2
-rw-r--r--apps/settings/js/vue-3.js103
-rw-r--r--apps/settings/js/vue-3.js.map2
-rw-r--r--core/js/dist/recommendedapps.js2
-rw-r--r--core/js/dist/recommendedapps.js.map2
-rw-r--r--core/src/components/setup/RecommendedApps.vue4
9 files changed, 4720 insertions, 3942 deletions
diff --git a/apps/settings/js/vue-1.js b/apps/settings/js/vue-1.js
index c3128715eeb..557e4e646c4 100644
--- a/apps/settings/js/vue-1.js
+++ b/apps/settings/js/vue-1.js
@@ -55,7 +55,7 @@ Object.defineProperty(exports, "__esModule", {
exports.getRequestToken = getRequestToken;
exports.onRequestTokenUpdate = onRequestTokenUpdate;
-var _eventBus = __webpack_require__(/*! @nextcloud/event-bus */ "./node_modules/@nextcloud/auth/node_modules/@nextcloud/event-bus/dist/index.js");
+var _eventBus = __webpack_require__(/*! @nextcloud/event-bus */ "./node_modules/@nextcloud/event-bus/dist/index.js");
var tokenElement = document.getElementsByTagName('head')[0];
var token = tokenElement ? tokenElement.getAttribute('data-requesttoken') : null;
@@ -117,10 +117,10 @@ function getCurrentUser() {
/***/ }),
-/***/ "./node_modules/@nextcloud/auth/node_modules/@nextcloud/event-bus/dist/ProxyBus.js":
-/*!*****************************************************************************************!*\
- !*** ./node_modules/@nextcloud/auth/node_modules/@nextcloud/event-bus/dist/ProxyBus.js ***!
- \*****************************************************************************************/
+/***/ "./node_modules/@nextcloud/event-bus/dist/ProxyBus.js":
+/*!************************************************************!*\
+ !*** ./node_modules/@nextcloud/event-bus/dist/ProxyBus.js ***!
+ \************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
@@ -132,6 +132,10 @@ Object.defineProperty(exports, "__esModule", {
});
exports.ProxyBus = void 0;
+var _semver = _interopRequireDefault(__webpack_require__(/*! semver */ "./node_modules/@nextcloud/event-bus/node_modules/semver/semver.js"));
+
+function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
+
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }
@@ -142,12 +146,13 @@ function _defineProperty(obj, key, value) { if (key in obj) { Object.definePrope
var packageJson = {
name: "@nextcloud/event-bus",
- version: "0.2.1",
+ version: "1.1.2",
description: "",
main: "dist/index.js",
types: "dist/index.d.ts",
scripts: {
build: "babel ./lib --out-dir dist --extensions '.ts,.tsx' --source-maps && tsc --emitDeclarationOnly",
+ "build:doc": "typedoc --excludeNotExported --mode file --out dist/doc lib/index.ts && touch dist/doc/.nojekyll",
"check-types": "tsc",
dev: "babel ./lib --out-dir dist --extensions '.ts,.tsx' --watch",
test: "jest",
@@ -162,7 +167,9 @@ var packageJson = {
url: "https://github.com/nextcloud/nextcloud-event-bus"
},
dependencies: {
- "core-js": "^3.1.4"
+ "@types/semver": "^6.2.0",
+ "core-js": "^3.6.2",
+ semver: "^6.3.0"
},
devDependencies: {
"@babel/cli": "^7.6.0",
@@ -170,13 +177,14 @@ var packageJson = {
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/preset-env": "^7.6.0",
"@babel/preset-typescript": "^7.6.0",
+ "@nextcloud/browserslist-config": "^1.0.0",
"babel-jest": "^24.9.0",
"babel-plugin-inline-json-import": "^0.3.2",
- "browserslist-config-nextcloud": "0.0.1",
jest: "^24.9.0",
+ typedoc: "^0.15.7",
typescript: "^3.6.3"
},
- browserslist: ["extends browserslist-config-nextcloud"]
+ browserslist: ["extends @nextcloud/browserslist-config"]
};
var ProxyBus =
@@ -187,8 +195,9 @@ function () {
_defineProperty(this, "bus", void 0);
- if (bus.getVersion() !== this.getVersion()) {
- // TODO: only warn if major version number does not match
+ if (typeof bus.getVersion !== 'function' || !_semver.default.valid(bus.getVersion())) {
+ console.warn('Proxying an event bus with an unknown or invalid version');
+ } else if (_semver.default.major(bus.getVersion()) !== _semver.default.major(this.getVersion())) {
console.warn('Proxying an event bus of version ' + bus.getVersion() + ' with ' + this.getVersion());
}
@@ -225,33 +234,31 @@ exports.ProxyBus = ProxyBus;
/***/ }),
-/***/ "./node_modules/@nextcloud/auth/node_modules/@nextcloud/event-bus/dist/SimpleBus.js":
-/*!******************************************************************************************!*\
- !*** ./node_modules/@nextcloud/auth/node_modules/@nextcloud/event-bus/dist/SimpleBus.js ***!
- \******************************************************************************************/
+/***/ "./node_modules/@nextcloud/event-bus/dist/SimpleBus.js":
+/*!*************************************************************!*\
+ !*** ./node_modules/@nextcloud/event-bus/dist/SimpleBus.js ***!
+ \*************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
-__webpack_require__(/*! core-js/modules/es.array.concat */ "./node_modules/@nextcloud/auth/node_modules/core-js/modules/es.array.concat.js");
+__webpack_require__(/*! core-js/modules/es.array.concat */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/modules/es.array.concat.js");
-__webpack_require__(/*! core-js/modules/es.array.filter */ "./node_modules/@nextcloud/auth/node_modules/core-js/modules/es.array.filter.js");
+__webpack_require__(/*! core-js/modules/es.array.filter */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/modules/es.array.filter.js");
-__webpack_require__(/*! core-js/modules/es.array.for-each */ "./node_modules/@nextcloud/auth/node_modules/core-js/modules/es.array.for-each.js");
+__webpack_require__(/*! core-js/modules/es.array.iterator */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/modules/es.array.iterator.js");
-__webpack_require__(/*! core-js/modules/es.array.iterator */ "./node_modules/@nextcloud/auth/node_modules/core-js/modules/es.array.iterator.js");
+__webpack_require__(/*! core-js/modules/es.map */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/modules/es.map.js");
-__webpack_require__(/*! core-js/modules/es.map */ "./node_modules/@nextcloud/auth/node_modules/core-js/modules/es.map.js");
+__webpack_require__(/*! core-js/modules/es.object.to-string */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/modules/es.object.to-string.js");
-__webpack_require__(/*! core-js/modules/es.object.to-string */ "./node_modules/@nextcloud/auth/node_modules/core-js/modules/es.object.to-string.js");
+__webpack_require__(/*! core-js/modules/es.string.iterator */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/modules/es.string.iterator.js");
-__webpack_require__(/*! core-js/modules/es.string.iterator */ "./node_modules/@nextcloud/auth/node_modules/core-js/modules/es.string.iterator.js");
+__webpack_require__(/*! core-js/modules/web.dom-collections.for-each */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/modules/web.dom-collections.for-each.js");
-__webpack_require__(/*! core-js/modules/web.dom-collections.for-each */ "./node_modules/@nextcloud/auth/node_modules/core-js/modules/web.dom-collections.for-each.js");
-
-__webpack_require__(/*! core-js/modules/web.dom-collections.iterator */ "./node_modules/@nextcloud/auth/node_modules/core-js/modules/web.dom-collections.iterator.js");
+__webpack_require__(/*! core-js/modules/web.dom-collections.iterator */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/modules/web.dom-collections.iterator.js");
Object.defineProperty(exports, "__esModule", {
value: true
@@ -268,12 +275,13 @@ function _defineProperty(obj, key, value) { if (key in obj) { Object.definePrope
var packageJson = {
name: "@nextcloud/event-bus",
- version: "0.2.1",
+ version: "1.1.2",
description: "",
main: "dist/index.js",
types: "dist/index.d.ts",
scripts: {
build: "babel ./lib --out-dir dist --extensions '.ts,.tsx' --source-maps && tsc --emitDeclarationOnly",
+ "build:doc": "typedoc --excludeNotExported --mode file --out dist/doc lib/index.ts && touch dist/doc/.nojekyll",
"check-types": "tsc",
dev: "babel ./lib --out-dir dist --extensions '.ts,.tsx' --watch",
test: "jest",
@@ -288,7 +296,9 @@ var packageJson = {
url: "https://github.com/nextcloud/nextcloud-event-bus"
},
dependencies: {
- "core-js": "^3.1.4"
+ "@types/semver": "^6.2.0",
+ "core-js": "^3.6.2",
+ semver: "^6.3.0"
},
devDependencies: {
"@babel/cli": "^7.6.0",
@@ -296,13 +306,14 @@ var packageJson = {
"@babel/plugin-proposal-class-properties": "^7.5.5",
"@babel/preset-env": "^7.6.0",
"@babel/preset-typescript": "^7.6.0",
+ "@nextcloud/browserslist-config": "^1.0.0",
"babel-jest": "^24.9.0",
"babel-plugin-inline-json-import": "^0.3.2",
- "browserslist-config-nextcloud": "0.0.1",
jest: "^24.9.0",
+ typedoc: "^0.15.7",
typescript: "^3.6.3"
},
- browserslist: ["extends browserslist-config-nextcloud"]
+ browserslist: ["extends @nextcloud/browserslist-config"]
};
var SimpleBus =
@@ -352,10 +363,10 @@ exports.SimpleBus = SimpleBus;
/***/ }),
-/***/ "./node_modules/@nextcloud/auth/node_modules/@nextcloud/event-bus/dist/index.js":
-/*!**************************************************************************************!*\
- !*** ./node_modules/@nextcloud/auth/node_modules/@nextcloud/event-bus/dist/index.js ***!
- \**************************************************************************************/
+/***/ "./node_modules/@nextcloud/event-bus/dist/index.js":
+/*!*********************************************************!*\
+ !*** ./node_modules/@nextcloud/event-bus/dist/index.js ***!
+ \*********************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
@@ -365,11 +376,13 @@ exports.SimpleBus = SimpleBus;
Object.defineProperty(exports, "__esModule", {
value: true
});
-exports.emit = exports.unsubscribe = exports.subscribe = void 0;
+exports.subscribe = subscribe;
+exports.unsubscribe = unsubscribe;
+exports.emit = emit;
-var _ProxyBus = __webpack_require__(/*! ./ProxyBus */ "./node_modules/@nextcloud/auth/node_modules/@nextcloud/event-bus/dist/ProxyBus.js");
+var _ProxyBus = __webpack_require__(/*! ./ProxyBus */ "./node_modules/@nextcloud/event-bus/dist/ProxyBus.js");
-var _SimpleBus = __webpack_require__(/*! ./SimpleBus */ "./node_modules/@nextcloud/auth/node_modules/@nextcloud/event-bus/dist/SimpleBus.js");
+var _SimpleBus = __webpack_require__(/*! ./SimpleBus */ "./node_modules/@nextcloud/event-bus/dist/SimpleBus.js");
function getBus() {
if (typeof window.OC !== 'undefined' && window.OC._eventBus && typeof window._nc_event_bus === 'undefined') {
@@ -386,20 +399,48 @@ function getBus() {
}
var bus = getBus();
-var subscribe = bus.subscribe.bind(bus);
-exports.subscribe = subscribe;
-var unsubscribe = bus.unsubscribe.bind(bus);
-exports.unsubscribe = unsubscribe;
-var emit = bus.emit.bind(bus);
-exports.emit = emit;
+/**
+ * Register an event listener
+ *
+ * @param name name of the event
+ * @param handler callback invoked for every matching event emitted on the bus
+ */
+
+function subscribe(name, handler) {
+ bus.subscribe(name, handler);
+}
+/**
+ * Unregister a previously registered event listener
+ *
+ * Note: doesn't work with anonymous functions (closures). Use method of an object or store listener function in variable.
+ *
+ * @param name name of the event
+ * @param handler callback passed to `subscribed`
+ */
+
+
+function unsubscribe(name, handler) {
+ bus.unsubscribe(name, handler);
+}
+/**
+ * Emit an event
+ *
+ * @param name name of the event
+ * @param event event payload
+ */
+
+
+function emit(name, event) {
+ bus.emit(name, event);
+}
//# sourceMappingURL=index.js.map
/***/ }),
-/***/ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/a-function.js":
-/*!***********************************************************************************!*\
- !*** ./node_modules/@nextcloud/auth/node_modules/core-js/internals/a-function.js ***!
- \***********************************************************************************/
+/***/ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/a-function.js":
+/*!****************************************************************************************!*\
+ !*** ./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/a-function.js ***!
+ \****************************************************************************************/
/*! no static exports found */
/***/ (function(module, exports) {
@@ -412,14 +453,14 @@ module.exports = function (it) {
/***/ }),
-/***/ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/a-possible-prototype.js":
-/*!*********************************************************************************************!*\
- !*** ./node_modules/@nextcloud/auth/node_modules/core-js/internals/a-possible-prototype.js ***!
- \*********************************************************************************************/
+/***/ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/a-possible-prototype.js":
+/*!**************************************************************************************************!*\
+ !*** ./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/a-possible-prototype.js ***!
+ \**************************************************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
-var isObject = __webpack_require__(/*! ../internals/is-object */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/is-object.js");
+var isObject = __webpack_require__(/*! ../internals/is-object */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/is-object.js");
module.exports = function (it) {
if (!isObject(it) && it !== null) {
@@ -430,16 +471,16 @@ module.exports = function (it) {
/***/ }),
-/***/ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/add-to-unscopables.js":
-/*!*******************************************************************************************!*\
- !*** ./node_modules/@nextcloud/auth/node_modules/core-js/internals/add-to-unscopables.js ***!
- \*******************************************************************************************/
+/***/ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/add-to-unscopables.js":
+/*!************************************************************************************************!*\
+ !*** ./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/add-to-unscopables.js ***!
+ \************************************************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
-var wellKnownSymbol = __webpack_require__(/*! ../internals/well-known-symbol */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/well-known-symbol.js");
-var create = __webpack_require__(/*! ../internals/object-create */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/object-create.js");
-var createNonEnumerableProperty = __webpack_require__(/*! ../internals/create-non-enumerable-property */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/create-non-enumerable-property.js");
+var wellKnownSymbol = __webpack_require__(/*! ../internals/well-known-symbol */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/well-known-symbol.js");
+var create = __webpack_require__(/*! ../internals/object-create */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/object-create.js");
+var definePropertyModule = __webpack_require__(/*! ../internals/object-define-property */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/object-define-property.js");
var UNSCOPABLES = wellKnownSymbol('unscopables');
var ArrayPrototype = Array.prototype;
@@ -447,7 +488,10 @@ var ArrayPrototype = Array.prototype;
// Array.prototype[@@unscopables]
// https://tc39.github.io/ecma262/#sec-array.prototype-@@unscopables
if (ArrayPrototype[UNSCOPABLES] == undefined) {
- createNonEnumerableProperty(ArrayPrototype, UNSCOPABLES, create(null));
+ definePropertyModule.f(ArrayPrototype, UNSCOPABLES, {
+ configurable: true,
+ value: create(null)
+ });
}
// add a key to Array.prototype[@@unscopables]
@@ -458,10 +502,10 @@ module.exports = function (key) {
/***/ }),
-/***/ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/an-instance.js":
-/*!************************************************************************************!*\
- !*** ./node_modules/@nextcloud/auth/node_modules/core-js/internals/an-instance.js ***!
- \************************************************************************************/
+/***/ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/an-instance.js":
+/*!*****************************************************************************************!*\
+ !*** ./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/an-instance.js ***!
+ \*****************************************************************************************/
/*! no static exports found */
/***/ (function(module, exports) {
@@ -474,14 +518,14 @@ module.exports = function (it, Constructor, name) {
/***/ }),
-/***/ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/an-object.js":
-/*!**********************************************************************************!*\
- !*** ./node_modules/@nextcloud/auth/node_modules/core-js/internals/an-object.js ***!
- \**********************************************************************************/
+/***/ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/an-object.js":
+/*!***************************************************************************************!*\
+ !*** ./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/an-object.js ***!
+ \***************************************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
-var isObject = __webpack_require__(/*! ../internals/is-object */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/is-object.js");
+var isObject = __webpack_require__(/*! ../internals/is-object */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/is-object.js");
module.exports = function (it) {
if (!isObject(it)) {
@@ -492,37 +536,41 @@ module.exports = function (it) {
/***/ }),
-/***/ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/array-for-each.js":
-/*!***************************************************************************************!*\
- !*** ./node_modules/@nextcloud/auth/node_modules/core-js/internals/array-for-each.js ***!
- \***************************************************************************************/
+/***/ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/array-for-each.js":
+/*!********************************************************************************************!*\
+ !*** ./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/array-for-each.js ***!
+ \********************************************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
-var $forEach = __webpack_require__(/*! ../internals/array-iteration */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/array-iteration.js").forEach;
-var sloppyArrayMethod = __webpack_require__(/*! ../internals/sloppy-array-method */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/sloppy-array-method.js");
+var $forEach = __webpack_require__(/*! ../internals/array-iteration */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/array-iteration.js").forEach;
+var arrayMethodIsStrict = __webpack_require__(/*! ../internals/array-method-is-strict */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/array-method-is-strict.js");
+var arrayMethodUsesToLength = __webpack_require__(/*! ../internals/array-method-uses-to-length */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/array-method-uses-to-length.js");
+
+var STRICT_METHOD = arrayMethodIsStrict('forEach');
+var USES_TO_LENGTH = arrayMethodUsesToLength('forEach');
// `Array.prototype.forEach` method implementation
// https://tc39.github.io/ecma262/#sec-array.prototype.foreach
-module.exports = sloppyArrayMethod('forEach') ? function forEach(callbackfn /* , thisArg */) {
+module.exports = (!STRICT_METHOD || !USES_TO_LENGTH) ? function forEach(callbackfn /* , thisArg */) {
return $forEach(this, callbackfn, arguments.length > 1 ? arguments[1] : undefined);
} : [].forEach;
/***/ }),
-/***/ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/array-includes.js":
-/*!***************************************************************************************!*\
- !*** ./node_modules/@nextcloud/auth/node_modules/core-js/internals/array-includes.js ***!
- \***************************************************************************************/
+/***/ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/array-includes.js":
+/*!********************************************************************************************!*\
+ !*** ./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/array-includes.js ***!
+ \********************************************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
-var toIndexedObject = __webpack_require__(/*! ../internals/to-indexed-object */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/to-indexed-object.js");
-var toLength = __webpack_require__(/*! ../internals/to-length */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/to-length.js");
-var toAbsoluteIndex = __webpack_require__(/*! ../internals/to-absolute-index */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/to-absolute-index.js");
+var toIndexedObject = __webpack_require__(/*! ../internals/to-indexed-object */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/to-indexed-object.js");
+var toLength = __webpack_require__(/*! ../internals/to-length */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/to-length.js");
+var toAbsoluteIndex = __webpack_require__(/*! ../internals/to-absolute-index */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/to-absolute-index.js");
// `Array.prototype.{ indexOf, includes }` methods implementation
var createMethod = function (IS_INCLUDES) {
@@ -556,18 +604,18 @@ module.exports = {
/***/ }),
-/***/ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/array-iteration.js":
-/*!****************************************************************************************!*\
- !*** ./node_modules/@nextcloud/auth/node_modules/core-js/internals/array-iteration.js ***!
- \****************************************************************************************/
+/***/ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/array-iteration.js":
+/*!*********************************************************************************************!*\
+ !*** ./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/array-iteration.js ***!
+ \*********************************************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
-var bind = __webpack_require__(/*! ../internals/bind-context */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/bind-context.js");
-var IndexedObject = __webpack_require__(/*! ../internals/indexed-object */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/indexed-object.js");
-var toObject = __webpack_require__(/*! ../internals/to-object */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/to-object.js");
-var toLength = __webpack_require__(/*! ../internals/to-length */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/to-length.js");
-var arraySpeciesCreate = __webpack_require__(/*! ../internals/array-species-create */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/array-species-create.js");
+var bind = __webpack_require__(/*! ../internals/function-bind-context */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/function-bind-context.js");
+var IndexedObject = __webpack_require__(/*! ../internals/indexed-object */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/indexed-object.js");
+var toObject = __webpack_require__(/*! ../internals/to-object */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/to-object.js");
+var toLength = __webpack_require__(/*! ../internals/to-length */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/to-length.js");
+var arraySpeciesCreate = __webpack_require__(/*! ../internals/array-species-create */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/array-species-create.js");
var push = [].push;
@@ -632,16 +680,16 @@ module.exports = {
/***/ }),
-/***/ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/array-method-has-species-support.js":
-/*!*********************************************************************************************************!*\
- !*** ./node_modules/@nextcloud/auth/node_modules/core-js/internals/array-method-has-species-support.js ***!
- \*********************************************************************************************************/
+/***/ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/array-method-has-species-support.js":
+/*!**************************************************************************************************************!*\
+ !*** ./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/array-method-has-species-support.js ***!
+ \**************************************************************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
-var fails = __webpack_require__(/*! ../internals/fails */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/fails.js");
-var wellKnownSymbol = __webpack_require__(/*! ../internals/well-known-symbol */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/well-known-symbol.js");
-var V8_VERSION = __webpack_require__(/*! ../internals/v8-version */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/v8-version.js");
+var fails = __webpack_require__(/*! ../internals/fails */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/fails.js");
+var wellKnownSymbol = __webpack_require__(/*! ../internals/well-known-symbol */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/well-known-symbol.js");
+var V8_VERSION = __webpack_require__(/*! ../internals/engine-v8-version */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/engine-v8-version.js");
var SPECIES = wellKnownSymbol('species');
@@ -662,16 +710,76 @@ module.exports = function (METHOD_NAME) {
/***/ }),
-/***/ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/array-species-create.js":
-/*!*********************************************************************************************!*\
- !*** ./node_modules/@nextcloud/auth/node_modules/core-js/internals/array-species-create.js ***!
- \*********************************************************************************************/
+/***/ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/array-method-is-strict.js":
+/*!****************************************************************************************************!*\
+ !*** ./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/array-method-is-strict.js ***!
+ \****************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, exports, __webpack_require__) {
+
+"use strict";
+
+var fails = __webpack_require__(/*! ../internals/fails */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/fails.js");
+
+module.exports = function (METHOD_NAME, argument) {
+ var method = [][METHOD_NAME];
+ return !!method && fails(function () {
+ // eslint-disable-next-line no-useless-call,no-throw-literal
+ method.call(null, argument || function () { throw 1; }, 1);
+ });
+};
+
+
+/***/ }),
+
+/***/ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/array-method-uses-to-length.js":
+/*!*********************************************************************************************************!*\
+ !*** ./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/array-method-uses-to-length.js ***!
+ \*********************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, exports, __webpack_require__) {
+
+var DESCRIPTORS = __webpack_require__(/*! ../internals/descriptors */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/descriptors.js");
+var fails = __webpack_require__(/*! ../internals/fails */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/fails.js");
+var has = __webpack_require__(/*! ../internals/has */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/has.js");
+
+var defineProperty = Object.defineProperty;
+var cache = {};
+
+var thrower = function (it) { throw it; };
+
+module.exports = function (METHOD_NAME, options) {
+ if (has(cache, METHOD_NAME)) return cache[METHOD_NAME];
+ if (!options) options = {};
+ var method = [][METHOD_NAME];
+ var ACCESSORS = has(options, 'ACCESSORS') ? options.ACCESSORS : false;
+ var argument0 = has(options, 0) ? options[0] : thrower;
+ var argument1 = has(options, 1) ? options[1] : undefined;
+
+ return cache[METHOD_NAME] = !!method && !fails(function () {
+ if (ACCESSORS && !DESCRIPTORS) return true;
+ var O = { length: -1 };
+
+ if (ACCESSORS) defineProperty(O, 1, { enumerable: true, get: thrower });
+ else O[1] = 1;
+
+ method.call(O, argument0, argument1);
+ });
+};
+
+
+/***/ }),
+
+/***/ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/array-species-create.js":
+/*!**************************************************************************************************!*\
+ !*** ./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/array-species-create.js ***!
+ \**************************************************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
-var isObject = __webpack_require__(/*! ../internals/is-object */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/is-object.js");
-var isArray = __webpack_require__(/*! ../internals/is-array */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/is-array.js");
-var wellKnownSymbol = __webpack_require__(/*! ../internals/well-known-symbol */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/well-known-symbol.js");
+var isObject = __webpack_require__(/*! ../internals/is-object */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/is-object.js");
+var isArray = __webpack_require__(/*! ../internals/is-array */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/is-array.js");
+var wellKnownSymbol = __webpack_require__(/*! ../internals/well-known-symbol */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/well-known-symbol.js");
var SPECIES = wellKnownSymbol('species');
@@ -693,49 +801,14 @@ module.exports = function (originalArray, length) {
/***/ }),
-/***/ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/bind-context.js":
-/*!*************************************************************************************!*\
- !*** ./node_modules/@nextcloud/auth/node_modules/core-js/internals/bind-context.js ***!
- \*************************************************************************************/
-/*! no static exports found */
-/***/ (function(module, exports, __webpack_require__) {
-
-var aFunction = __webpack_require__(/*! ../internals/a-function */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/a-function.js");
-
-// optional / simple context binding
-module.exports = function (fn, that, length) {
- aFunction(fn);
- if (that === undefined) return fn;
- switch (length) {
- case 0: return function () {
- return fn.call(that);
- };
- case 1: return function (a) {
- return fn.call(that, a);
- };
- case 2: return function (a, b) {
- return fn.call(that, a, b);
- };
- case 3: return function (a, b, c) {
- return fn.call(that, a, b, c);
- };
- }
- return function (/* ...args */) {
- return fn.apply(that, arguments);
- };
-};
-
-
-/***/ }),
-
-/***/ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/call-with-safe-iteration-closing.js":
-/*!*********************************************************************************************************!*\
- !*** ./node_modules/@nextcloud/auth/node_modules/core-js/internals/call-with-safe-iteration-closing.js ***!
- \*********************************************************************************************************/
+/***/ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/call-with-safe-iteration-closing.js":
+/*!**************************************************************************************************************!*\
+ !*** ./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/call-with-safe-iteration-closing.js ***!
+ \**************************************************************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
-var anObject = __webpack_require__(/*! ../internals/an-object */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/an-object.js");
+var anObject = __webpack_require__(/*! ../internals/an-object */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/an-object.js");
// call something on iterator step with safe closing on error
module.exports = function (iterator, fn, value, ENTRIES) {
@@ -752,14 +825,14 @@ module.exports = function (iterator, fn, value, ENTRIES) {
/***/ }),
-/***/ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/check-correctness-of-iteration.js":
-/*!*******************************************************************************************************!*\
- !*** ./node_modules/@nextcloud/auth/node_modules/core-js/internals/check-correctness-of-iteration.js ***!
- \*******************************************************************************************************/
+/***/ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/check-correctness-of-iteration.js":
+/*!************************************************************************************************************!*\
+ !*** ./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/check-correctness-of-iteration.js ***!
+ \************************************************************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
-var wellKnownSymbol = __webpack_require__(/*! ../internals/well-known-symbol */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/well-known-symbol.js");
+var wellKnownSymbol = __webpack_require__(/*! ../internals/well-known-symbol */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/well-known-symbol.js");
var ITERATOR = wellKnownSymbol('iterator');
var SAFE_CLOSING = false;
@@ -801,10 +874,10 @@ module.exports = function (exec, SKIP_CLOSING) {
/***/ }),
-/***/ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/classof-raw.js":
-/*!************************************************************************************!*\
- !*** ./node_modules/@nextcloud/auth/node_modules/core-js/internals/classof-raw.js ***!
- \************************************************************************************/
+/***/ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/classof-raw.js":
+/*!*****************************************************************************************!*\
+ !*** ./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/classof-raw.js ***!
+ \*****************************************************************************************/
/*! no static exports found */
/***/ (function(module, exports) {
@@ -817,16 +890,16 @@ module.exports = function (it) {
/***/ }),
-/***/ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/classof.js":
-/*!********************************************************************************!*\
- !*** ./node_modules/@nextcloud/auth/node_modules/core-js/internals/classof.js ***!
- \********************************************************************************/
+/***/ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/classof.js":
+/*!*************************************************************************************!*\
+ !*** ./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/classof.js ***!
+ \*************************************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
-var TO_STRING_TAG_SUPPORT = __webpack_require__(/*! ../internals/to-string-tag-support */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/to-string-tag-support.js");
-var classofRaw = __webpack_require__(/*! ../internals/classof-raw */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/classof-raw.js");
-var wellKnownSymbol = __webpack_require__(/*! ../internals/well-known-symbol */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/well-known-symbol.js");
+var TO_STRING_TAG_SUPPORT = __webpack_require__(/*! ../internals/to-string-tag-support */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/to-string-tag-support.js");
+var classofRaw = __webpack_require__(/*! ../internals/classof-raw */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/classof-raw.js");
+var wellKnownSymbol = __webpack_require__(/*! ../internals/well-known-symbol */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/well-known-symbol.js");
var TO_STRING_TAG = wellKnownSymbol('toStringTag');
// ES3 wrong here
@@ -854,26 +927,26 @@ module.exports = TO_STRING_TAG_SUPPORT ? classofRaw : function (it) {
/***/ }),
-/***/ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/collection-strong.js":
-/*!******************************************************************************************!*\
- !*** ./node_modules/@nextcloud/auth/node_modules/core-js/internals/collection-strong.js ***!
- \******************************************************************************************/
+/***/ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/collection-strong.js":
+/*!***********************************************************************************************!*\
+ !*** ./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/collection-strong.js ***!
+ \***********************************************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
-var defineProperty = __webpack_require__(/*! ../internals/object-define-property */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/object-define-property.js").f;
-var create = __webpack_require__(/*! ../internals/object-create */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/object-create.js");
-var redefineAll = __webpack_require__(/*! ../internals/redefine-all */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/redefine-all.js");
-var bind = __webpack_require__(/*! ../internals/bind-context */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/bind-context.js");
-var anInstance = __webpack_require__(/*! ../internals/an-instance */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/an-instance.js");
-var iterate = __webpack_require__(/*! ../internals/iterate */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/iterate.js");
-var defineIterator = __webpack_require__(/*! ../internals/define-iterator */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/define-iterator.js");
-var setSpecies = __webpack_require__(/*! ../internals/set-species */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/set-species.js");
-var DESCRIPTORS = __webpack_require__(/*! ../internals/descriptors */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/descriptors.js");
-var fastKey = __webpack_require__(/*! ../internals/internal-metadata */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/internal-metadata.js").fastKey;
-var InternalStateModule = __webpack_require__(/*! ../internals/internal-state */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/internal-state.js");
+var defineProperty = __webpack_require__(/*! ../internals/object-define-property */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/object-define-property.js").f;
+var create = __webpack_require__(/*! ../internals/object-create */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/object-create.js");
+var redefineAll = __webpack_require__(/*! ../internals/redefine-all */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/redefine-all.js");
+var bind = __webpack_require__(/*! ../internals/function-bind-context */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/function-bind-context.js");
+var anInstance = __webpack_require__(/*! ../internals/an-instance */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/an-instance.js");
+var iterate = __webpack_require__(/*! ../internals/iterate */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/iterate.js");
+var defineIterator = __webpack_require__(/*! ../internals/define-iterator */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/define-iterator.js");
+var setSpecies = __webpack_require__(/*! ../internals/set-species */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/set-species.js");
+var DESCRIPTORS = __webpack_require__(/*! ../internals/descriptors */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/descriptors.js");
+var fastKey = __webpack_require__(/*! ../internals/internal-metadata */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/internal-metadata.js").fastKey;
+var InternalStateModule = __webpack_require__(/*! ../internals/internal-state */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/internal-state.js");
var setInternalState = InternalStateModule.set;
var internalStateGetterFor = InternalStateModule.getterFor;
@@ -1052,27 +1125,27 @@ module.exports = {
/***/ }),
-/***/ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/collection.js":
-/*!***********************************************************************************!*\
- !*** ./node_modules/@nextcloud/auth/node_modules/core-js/internals/collection.js ***!
- \***********************************************************************************/
+/***/ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/collection.js":
+/*!****************************************************************************************!*\
+ !*** ./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/collection.js ***!
+ \****************************************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
-var $ = __webpack_require__(/*! ../internals/export */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/export.js");
-var global = __webpack_require__(/*! ../internals/global */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/global.js");
-var isForced = __webpack_require__(/*! ../internals/is-forced */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/is-forced.js");
-var redefine = __webpack_require__(/*! ../internals/redefine */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/redefine.js");
-var InternalMetadataModule = __webpack_require__(/*! ../internals/internal-metadata */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/internal-metadata.js");
-var iterate = __webpack_require__(/*! ../internals/iterate */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/iterate.js");
-var anInstance = __webpack_require__(/*! ../internals/an-instance */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/an-instance.js");
-var isObject = __webpack_require__(/*! ../internals/is-object */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/is-object.js");
-var fails = __webpack_require__(/*! ../internals/fails */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/fails.js");
-var checkCorrectnessOfIteration = __webpack_require__(/*! ../internals/check-correctness-of-iteration */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/check-correctness-of-iteration.js");
-var setToStringTag = __webpack_require__(/*! ../internals/set-to-string-tag */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/set-to-string-tag.js");
-var inheritIfRequired = __webpack_require__(/*! ../internals/inherit-if-required */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/inherit-if-required.js");
+var $ = __webpack_require__(/*! ../internals/export */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/export.js");
+var global = __webpack_require__(/*! ../internals/global */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/global.js");
+var isForced = __webpack_require__(/*! ../internals/is-forced */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/is-forced.js");
+var redefine = __webpack_require__(/*! ../internals/redefine */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/redefine.js");
+var InternalMetadataModule = __webpack_require__(/*! ../internals/internal-metadata */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/internal-metadata.js");
+var iterate = __webpack_require__(/*! ../internals/iterate */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/iterate.js");
+var anInstance = __webpack_require__(/*! ../internals/an-instance */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/an-instance.js");
+var isObject = __webpack_require__(/*! ../internals/is-object */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/is-object.js");
+var fails = __webpack_require__(/*! ../internals/fails */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/fails.js");
+var checkCorrectnessOfIteration = __webpack_require__(/*! ../internals/check-correctness-of-iteration */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/check-correctness-of-iteration.js");
+var setToStringTag = __webpack_require__(/*! ../internals/set-to-string-tag */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/set-to-string-tag.js");
+var inheritIfRequired = __webpack_require__(/*! ../internals/inherit-if-required */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/inherit-if-required.js");
module.exports = function (CONSTRUCTOR_NAME, wrapper, common) {
var IS_MAP = CONSTRUCTOR_NAME.indexOf('Map') !== -1;
@@ -1163,17 +1236,17 @@ module.exports = function (CONSTRUCTOR_NAME, wrapper, common) {
/***/ }),
-/***/ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/copy-constructor-properties.js":
-/*!****************************************************************************************************!*\
- !*** ./node_modules/@nextcloud/auth/node_modules/core-js/internals/copy-constructor-properties.js ***!
- \****************************************************************************************************/
+/***/ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/copy-constructor-properties.js":
+/*!*********************************************************************************************************!*\
+ !*** ./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/copy-constructor-properties.js ***!
+ \*********************************************************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
-var has = __webpack_require__(/*! ../internals/has */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/has.js");
-var ownKeys = __webpack_require__(/*! ../internals/own-keys */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/own-keys.js");
-var getOwnPropertyDescriptorModule = __webpack_require__(/*! ../internals/object-get-own-property-descriptor */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/object-get-own-property-descriptor.js");
-var definePropertyModule = __webpack_require__(/*! ../internals/object-define-property */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/object-define-property.js");
+var has = __webpack_require__(/*! ../internals/has */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/has.js");
+var ownKeys = __webpack_require__(/*! ../internals/own-keys */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/own-keys.js");
+var getOwnPropertyDescriptorModule = __webpack_require__(/*! ../internals/object-get-own-property-descriptor */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/object-get-own-property-descriptor.js");
+var definePropertyModule = __webpack_require__(/*! ../internals/object-define-property */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/object-define-property.js");
module.exports = function (target, source) {
var keys = ownKeys(source);
@@ -1188,14 +1261,14 @@ module.exports = function (target, source) {
/***/ }),
-/***/ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/correct-prototype-getter.js":
-/*!*************************************************************************************************!*\
- !*** ./node_modules/@nextcloud/auth/node_modules/core-js/internals/correct-prototype-getter.js ***!
- \*************************************************************************************************/
+/***/ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/correct-prototype-getter.js":
+/*!******************************************************************************************************!*\
+ !*** ./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/correct-prototype-getter.js ***!
+ \******************************************************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
-var fails = __webpack_require__(/*! ../internals/fails */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/fails.js");
+var fails = __webpack_require__(/*! ../internals/fails */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/fails.js");
module.exports = !fails(function () {
function F() { /* empty */ }
@@ -1206,20 +1279,20 @@ module.exports = !fails(function () {
/***/ }),
-/***/ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/create-iterator-constructor.js":
-/*!****************************************************************************************************!*\
- !*** ./node_modules/@nextcloud/auth/node_modules/core-js/internals/create-iterator-constructor.js ***!
- \****************************************************************************************************/
+/***/ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/create-iterator-constructor.js":
+/*!*********************************************************************************************************!*\
+ !*** ./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/create-iterator-constructor.js ***!
+ \*********************************************************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
-var IteratorPrototype = __webpack_require__(/*! ../internals/iterators-core */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/iterators-core.js").IteratorPrototype;
-var create = __webpack_require__(/*! ../internals/object-create */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/object-create.js");
-var createPropertyDescriptor = __webpack_require__(/*! ../internals/create-property-descriptor */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/create-property-descriptor.js");
-var setToStringTag = __webpack_require__(/*! ../internals/set-to-string-tag */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/set-to-string-tag.js");
-var Iterators = __webpack_require__(/*! ../internals/iterators */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/iterators.js");
+var IteratorPrototype = __webpack_require__(/*! ../internals/iterators-core */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/iterators-core.js").IteratorPrototype;
+var create = __webpack_require__(/*! ../internals/object-create */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/object-create.js");
+var createPropertyDescriptor = __webpack_require__(/*! ../internals/create-property-descriptor */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/create-property-descriptor.js");
+var setToStringTag = __webpack_require__(/*! ../internals/set-to-string-tag */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/set-to-string-tag.js");
+var Iterators = __webpack_require__(/*! ../internals/iterators */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/iterators.js");
var returnThis = function () { return this; };
@@ -1234,16 +1307,16 @@ module.exports = function (IteratorConstructor, NAME, next) {
/***/ }),
-/***/ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/create-non-enumerable-property.js":
-/*!*******************************************************************************************************!*\
- !*** ./node_modules/@nextcloud/auth/node_modules/core-js/internals/create-non-enumerable-property.js ***!
- \*******************************************************************************************************/
+/***/ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/create-non-enumerable-property.js":
+/*!************************************************************************************************************!*\
+ !*** ./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/create-non-enumerable-property.js ***!
+ \************************************************************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
-var DESCRIPTORS = __webpack_require__(/*! ../internals/descriptors */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/descriptors.js");
-var definePropertyModule = __webpack_require__(/*! ../internals/object-define-property */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/object-define-property.js");
-var createPropertyDescriptor = __webpack_require__(/*! ../internals/create-property-descriptor */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/create-property-descriptor.js");
+var DESCRIPTORS = __webpack_require__(/*! ../internals/descriptors */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/descriptors.js");
+var definePropertyModule = __webpack_require__(/*! ../internals/object-define-property */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/object-define-property.js");
+var createPropertyDescriptor = __webpack_require__(/*! ../internals/create-property-descriptor */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/create-property-descriptor.js");
module.exports = DESCRIPTORS ? function (object, key, value) {
return definePropertyModule.f(object, key, createPropertyDescriptor(1, value));
@@ -1255,10 +1328,10 @@ module.exports = DESCRIPTORS ? function (object, key, value) {
/***/ }),
-/***/ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/create-property-descriptor.js":
-/*!***************************************************************************************************!*\
- !*** ./node_modules/@nextcloud/auth/node_modules/core-js/internals/create-property-descriptor.js ***!
- \***************************************************************************************************/
+/***/ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/create-property-descriptor.js":
+/*!********************************************************************************************************!*\
+ !*** ./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/create-property-descriptor.js ***!
+ \********************************************************************************************************/
/*! no static exports found */
/***/ (function(module, exports) {
@@ -1274,18 +1347,18 @@ module.exports = function (bitmap, value) {
/***/ }),
-/***/ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/create-property.js":
-/*!****************************************************************************************!*\
- !*** ./node_modules/@nextcloud/auth/node_modules/core-js/internals/create-property.js ***!
- \****************************************************************************************/
+/***/ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/create-property.js":
+/*!*********************************************************************************************!*\
+ !*** ./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/create-property.js ***!
+ \*********************************************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
-var toPrimitive = __webpack_require__(/*! ../internals/to-primitive */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/to-primitive.js");
-var definePropertyModule = __webpack_require__(/*! ../internals/object-define-property */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/object-define-property.js");
-var createPropertyDescriptor = __webpack_require__(/*! ../internals/create-property-descriptor */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/create-property-descriptor.js");
+var toPrimitive = __webpack_require__(/*! ../internals/to-primitive */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/to-primitive.js");
+var definePropertyModule = __webpack_require__(/*! ../internals/object-define-property */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/object-define-property.js");
+var createPropertyDescriptor = __webpack_require__(/*! ../internals/create-property-descriptor */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/create-property-descriptor.js");
module.exports = function (object, key, value) {
var propertyKey = toPrimitive(key);
@@ -1296,26 +1369,26 @@ module.exports = function (object, key, value) {
/***/ }),
-/***/ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/define-iterator.js":
-/*!****************************************************************************************!*\
- !*** ./node_modules/@nextcloud/auth/node_modules/core-js/internals/define-iterator.js ***!
- \****************************************************************************************/
+/***/ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/define-iterator.js":
+/*!*********************************************************************************************!*\
+ !*** ./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/define-iterator.js ***!
+ \*********************************************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
-var $ = __webpack_require__(/*! ../internals/export */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/export.js");
-var createIteratorConstructor = __webpack_require__(/*! ../internals/create-iterator-constructor */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/create-iterator-constructor.js");
-var getPrototypeOf = __webpack_require__(/*! ../internals/object-get-prototype-of */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/object-get-prototype-of.js");
-var setPrototypeOf = __webpack_require__(/*! ../internals/object-set-prototype-of */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/object-set-prototype-of.js");
-var setToStringTag = __webpack_require__(/*! ../internals/set-to-string-tag */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/set-to-string-tag.js");
-var createNonEnumerableProperty = __webpack_require__(/*! ../internals/create-non-enumerable-property */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/create-non-enumerable-property.js");
-var redefine = __webpack_require__(/*! ../internals/redefine */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/redefine.js");
-var wellKnownSymbol = __webpack_require__(/*! ../internals/well-known-symbol */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/well-known-symbol.js");
-var IS_PURE = __webpack_require__(/*! ../internals/is-pure */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/is-pure.js");
-var Iterators = __webpack_require__(/*! ../internals/iterators */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/iterators.js");
-var IteratorsCore = __webpack_require__(/*! ../internals/iterators-core */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/iterators-core.js");
+var $ = __webpack_require__(/*! ../internals/export */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/export.js");
+var createIteratorConstructor = __webpack_require__(/*! ../internals/create-iterator-constructor */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/create-iterator-constructor.js");
+var getPrototypeOf = __webpack_require__(/*! ../internals/object-get-prototype-of */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/object-get-prototype-of.js");
+var setPrototypeOf = __webpack_require__(/*! ../internals/object-set-prototype-of */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/object-set-prototype-of.js");
+var setToStringTag = __webpack_require__(/*! ../internals/set-to-string-tag */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/set-to-string-tag.js");
+var createNonEnumerableProperty = __webpack_require__(/*! ../internals/create-non-enumerable-property */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/create-non-enumerable-property.js");
+var redefine = __webpack_require__(/*! ../internals/redefine */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/redefine.js");
+var wellKnownSymbol = __webpack_require__(/*! ../internals/well-known-symbol */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/well-known-symbol.js");
+var IS_PURE = __webpack_require__(/*! ../internals/is-pure */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/is-pure.js");
+var Iterators = __webpack_require__(/*! ../internals/iterators */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/iterators.js");
+var IteratorsCore = __webpack_require__(/*! ../internals/iterators-core */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/iterators-core.js");
var IteratorPrototype = IteratorsCore.IteratorPrototype;
var BUGGY_SAFARI_ITERATORS = IteratorsCore.BUGGY_SAFARI_ITERATORS;
@@ -1398,32 +1471,32 @@ module.exports = function (Iterable, NAME, IteratorConstructor, next, DEFAULT, I
/***/ }),
-/***/ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/descriptors.js":
-/*!************************************************************************************!*\
- !*** ./node_modules/@nextcloud/auth/node_modules/core-js/internals/descriptors.js ***!
- \************************************************************************************/
+/***/ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/descriptors.js":
+/*!*****************************************************************************************!*\
+ !*** ./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/descriptors.js ***!
+ \*****************************************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
-var fails = __webpack_require__(/*! ../internals/fails */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/fails.js");
+var fails = __webpack_require__(/*! ../internals/fails */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/fails.js");
// Thank's IE8 for his funny defineProperty
module.exports = !fails(function () {
- return Object.defineProperty({}, 'a', { get: function () { return 7; } }).a != 7;
+ return Object.defineProperty({}, 1, { get: function () { return 7; } })[1] != 7;
});
/***/ }),
-/***/ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/document-create-element.js":
-/*!************************************************************************************************!*\
- !*** ./node_modules/@nextcloud/auth/node_modules/core-js/internals/document-create-element.js ***!
- \************************************************************************************************/
+/***/ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/document-create-element.js":
+/*!*****************************************************************************************************!*\
+ !*** ./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/document-create-element.js ***!
+ \*****************************************************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
-var global = __webpack_require__(/*! ../internals/global */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/global.js");
-var isObject = __webpack_require__(/*! ../internals/is-object */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/is-object.js");
+var global = __webpack_require__(/*! ../internals/global */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/global.js");
+var isObject = __webpack_require__(/*! ../internals/is-object */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/is-object.js");
var document = global.document;
// typeof document.createElement is 'object' in old IE
@@ -1436,10 +1509,10 @@ module.exports = function (it) {
/***/ }),
-/***/ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/dom-iterables.js":
-/*!**************************************************************************************!*\
- !*** ./node_modules/@nextcloud/auth/node_modules/core-js/internals/dom-iterables.js ***!
- \**************************************************************************************/
+/***/ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/dom-iterables.js":
+/*!*******************************************************************************************!*\
+ !*** ./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/dom-iterables.js ***!
+ \*******************************************************************************************/
/*! no static exports found */
/***/ (function(module, exports) {
@@ -1482,10 +1555,55 @@ module.exports = {
/***/ }),
-/***/ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/enum-bug-keys.js":
-/*!**************************************************************************************!*\
- !*** ./node_modules/@nextcloud/auth/node_modules/core-js/internals/enum-bug-keys.js ***!
- \**************************************************************************************/
+/***/ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/engine-user-agent.js":
+/*!***********************************************************************************************!*\
+ !*** ./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/engine-user-agent.js ***!
+ \***********************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, exports, __webpack_require__) {
+
+var getBuiltIn = __webpack_require__(/*! ../internals/get-built-in */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/get-built-in.js");
+
+module.exports = getBuiltIn('navigator', 'userAgent') || '';
+
+
+/***/ }),
+
+/***/ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/engine-v8-version.js":
+/*!***********************************************************************************************!*\
+ !*** ./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/engine-v8-version.js ***!
+ \***********************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, exports, __webpack_require__) {
+
+var global = __webpack_require__(/*! ../internals/global */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/global.js");
+var userAgent = __webpack_require__(/*! ../internals/engine-user-agent */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/engine-user-agent.js");
+
+var process = global.process;
+var versions = process && process.versions;
+var v8 = versions && versions.v8;
+var match, version;
+
+if (v8) {
+ match = v8.split('.');
+ version = match[0] + match[1];
+} else if (userAgent) {
+ match = userAgent.match(/Edge\/(\d+)/);
+ if (!match || match[1] >= 74) {
+ match = userAgent.match(/Chrome\/(\d+)/);
+ if (match) version = match[1];
+ }
+}
+
+module.exports = version && +version;
+
+
+/***/ }),
+
+/***/ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/enum-bug-keys.js":
+/*!*******************************************************************************************!*\
+ !*** ./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/enum-bug-keys.js ***!
+ \*******************************************************************************************/
/*! no static exports found */
/***/ (function(module, exports) {
@@ -1503,20 +1621,20 @@ module.exports = [
/***/ }),
-/***/ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/export.js":
-/*!*******************************************************************************!*\
- !*** ./node_modules/@nextcloud/auth/node_modules/core-js/internals/export.js ***!
- \*******************************************************************************/
+/***/ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/export.js":
+/*!************************************************************************************!*\
+ !*** ./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/export.js ***!
+ \************************************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
-var global = __webpack_require__(/*! ../internals/global */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/global.js");
-var getOwnPropertyDescriptor = __webpack_require__(/*! ../internals/object-get-own-property-descriptor */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/object-get-own-property-descriptor.js").f;
-var createNonEnumerableProperty = __webpack_require__(/*! ../internals/create-non-enumerable-property */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/create-non-enumerable-property.js");
-var redefine = __webpack_require__(/*! ../internals/redefine */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/redefine.js");
-var setGlobal = __webpack_require__(/*! ../internals/set-global */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/set-global.js");
-var copyConstructorProperties = __webpack_require__(/*! ../internals/copy-constructor-properties */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/copy-constructor-properties.js");
-var isForced = __webpack_require__(/*! ../internals/is-forced */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/is-forced.js");
+var global = __webpack_require__(/*! ../internals/global */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/global.js");
+var getOwnPropertyDescriptor = __webpack_require__(/*! ../internals/object-get-own-property-descriptor */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/object-get-own-property-descriptor.js").f;
+var createNonEnumerableProperty = __webpack_require__(/*! ../internals/create-non-enumerable-property */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/create-non-enumerable-property.js");
+var redefine = __webpack_require__(/*! ../internals/redefine */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/redefine.js");
+var setGlobal = __webpack_require__(/*! ../internals/set-global */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/set-global.js");
+var copyConstructorProperties = __webpack_require__(/*! ../internals/copy-constructor-properties */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/copy-constructor-properties.js");
+var isForced = __webpack_require__(/*! ../internals/is-forced */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/is-forced.js");
/*
options.target - name of the target object
@@ -1568,10 +1686,10 @@ module.exports = function (options, source) {
/***/ }),
-/***/ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/fails.js":
-/*!******************************************************************************!*\
- !*** ./node_modules/@nextcloud/auth/node_modules/core-js/internals/fails.js ***!
- \******************************************************************************/
+/***/ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/fails.js":
+/*!***********************************************************************************!*\
+ !*** ./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/fails.js ***!
+ \***********************************************************************************/
/*! no static exports found */
/***/ (function(module, exports) {
@@ -1586,14 +1704,14 @@ module.exports = function (exec) {
/***/ }),
-/***/ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/freezing.js":
-/*!*********************************************************************************!*\
- !*** ./node_modules/@nextcloud/auth/node_modules/core-js/internals/freezing.js ***!
- \*********************************************************************************/
+/***/ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/freezing.js":
+/*!**************************************************************************************!*\
+ !*** ./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/freezing.js ***!
+ \**************************************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
-var fails = __webpack_require__(/*! ../internals/fails */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/fails.js");
+var fails = __webpack_require__(/*! ../internals/fails */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/fails.js");
module.exports = !fails(function () {
return Object.isExtensible(Object.preventExtensions({}));
@@ -1602,15 +1720,50 @@ module.exports = !fails(function () {
/***/ }),
-/***/ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/get-built-in.js":
-/*!*************************************************************************************!*\
- !*** ./node_modules/@nextcloud/auth/node_modules/core-js/internals/get-built-in.js ***!
- \*************************************************************************************/
+/***/ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/function-bind-context.js":
+/*!***************************************************************************************************!*\
+ !*** ./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/function-bind-context.js ***!
+ \***************************************************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
-var path = __webpack_require__(/*! ../internals/path */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/path.js");
-var global = __webpack_require__(/*! ../internals/global */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/global.js");
+var aFunction = __webpack_require__(/*! ../internals/a-function */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/a-function.js");
+
+// optional / simple context binding
+module.exports = function (fn, that, length) {
+ aFunction(fn);
+ if (that === undefined) return fn;
+ switch (length) {
+ case 0: return function () {
+ return fn.call(that);
+ };
+ case 1: return function (a) {
+ return fn.call(that, a);
+ };
+ case 2: return function (a, b) {
+ return fn.call(that, a, b);
+ };
+ case 3: return function (a, b, c) {
+ return fn.call(that, a, b, c);
+ };
+ }
+ return function (/* ...args */) {
+ return fn.apply(that, arguments);
+ };
+};
+
+
+/***/ }),
+
+/***/ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/get-built-in.js":
+/*!******************************************************************************************!*\
+ !*** ./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/get-built-in.js ***!
+ \******************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, exports, __webpack_require__) {
+
+var path = __webpack_require__(/*! ../internals/path */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/path.js");
+var global = __webpack_require__(/*! ../internals/global */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/global.js");
var aFunction = function (variable) {
return typeof variable == 'function' ? variable : undefined;
@@ -1624,16 +1777,16 @@ module.exports = function (namespace, method) {
/***/ }),
-/***/ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/get-iterator-method.js":
-/*!********************************************************************************************!*\
- !*** ./node_modules/@nextcloud/auth/node_modules/core-js/internals/get-iterator-method.js ***!
- \********************************************************************************************/
+/***/ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/get-iterator-method.js":
+/*!*************************************************************************************************!*\
+ !*** ./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/get-iterator-method.js ***!
+ \*************************************************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
-var classof = __webpack_require__(/*! ../internals/classof */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/classof.js");
-var Iterators = __webpack_require__(/*! ../internals/iterators */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/iterators.js");
-var wellKnownSymbol = __webpack_require__(/*! ../internals/well-known-symbol */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/well-known-symbol.js");
+var classof = __webpack_require__(/*! ../internals/classof */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/classof.js");
+var Iterators = __webpack_require__(/*! ../internals/iterators */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/iterators.js");
+var wellKnownSymbol = __webpack_require__(/*! ../internals/well-known-symbol */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/well-known-symbol.js");
var ITERATOR = wellKnownSymbol('iterator');
@@ -1646,10 +1799,10 @@ module.exports = function (it) {
/***/ }),
-/***/ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/global.js":
-/*!*******************************************************************************!*\
- !*** ./node_modules/@nextcloud/auth/node_modules/core-js/internals/global.js ***!
- \*******************************************************************************/
+/***/ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/global.js":
+/*!************************************************************************************!*\
+ !*** ./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/global.js ***!
+ \************************************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
@@ -1671,10 +1824,10 @@ module.exports =
/***/ }),
-/***/ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/has.js":
-/*!****************************************************************************!*\
- !*** ./node_modules/@nextcloud/auth/node_modules/core-js/internals/has.js ***!
- \****************************************************************************/
+/***/ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/has.js":
+/*!*********************************************************************************!*\
+ !*** ./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/has.js ***!
+ \*********************************************************************************/
/*! no static exports found */
/***/ (function(module, exports) {
@@ -1687,10 +1840,10 @@ module.exports = function (it, key) {
/***/ }),
-/***/ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/hidden-keys.js":
-/*!************************************************************************************!*\
- !*** ./node_modules/@nextcloud/auth/node_modules/core-js/internals/hidden-keys.js ***!
- \************************************************************************************/
+/***/ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/hidden-keys.js":
+/*!*****************************************************************************************!*\
+ !*** ./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/hidden-keys.js ***!
+ \*****************************************************************************************/
/*! no static exports found */
/***/ (function(module, exports) {
@@ -1699,30 +1852,30 @@ module.exports = {};
/***/ }),
-/***/ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/html.js":
-/*!*****************************************************************************!*\
- !*** ./node_modules/@nextcloud/auth/node_modules/core-js/internals/html.js ***!
- \*****************************************************************************/
+/***/ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/html.js":
+/*!**********************************************************************************!*\
+ !*** ./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/html.js ***!
+ \**********************************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
-var getBuiltIn = __webpack_require__(/*! ../internals/get-built-in */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/get-built-in.js");
+var getBuiltIn = __webpack_require__(/*! ../internals/get-built-in */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/get-built-in.js");
module.exports = getBuiltIn('document', 'documentElement');
/***/ }),
-/***/ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/ie8-dom-define.js":
-/*!***************************************************************************************!*\
- !*** ./node_modules/@nextcloud/auth/node_modules/core-js/internals/ie8-dom-define.js ***!
- \***************************************************************************************/
+/***/ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/ie8-dom-define.js":
+/*!********************************************************************************************!*\
+ !*** ./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/ie8-dom-define.js ***!
+ \********************************************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
-var DESCRIPTORS = __webpack_require__(/*! ../internals/descriptors */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/descriptors.js");
-var fails = __webpack_require__(/*! ../internals/fails */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/fails.js");
-var createElement = __webpack_require__(/*! ../internals/document-create-element */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/document-create-element.js");
+var DESCRIPTORS = __webpack_require__(/*! ../internals/descriptors */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/descriptors.js");
+var fails = __webpack_require__(/*! ../internals/fails */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/fails.js");
+var createElement = __webpack_require__(/*! ../internals/document-create-element */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/document-create-element.js");
// Thank's IE8 for his funny defineProperty
module.exports = !DESCRIPTORS && !fails(function () {
@@ -1734,15 +1887,15 @@ module.exports = !DESCRIPTORS && !fails(function () {
/***/ }),
-/***/ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/indexed-object.js":
-/*!***************************************************************************************!*\
- !*** ./node_modules/@nextcloud/auth/node_modules/core-js/internals/indexed-object.js ***!
- \***************************************************************************************/
+/***/ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/indexed-object.js":
+/*!********************************************************************************************!*\
+ !*** ./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/indexed-object.js ***!
+ \********************************************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
-var fails = __webpack_require__(/*! ../internals/fails */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/fails.js");
-var classof = __webpack_require__(/*! ../internals/classof-raw */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/classof-raw.js");
+var fails = __webpack_require__(/*! ../internals/fails */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/fails.js");
+var classof = __webpack_require__(/*! ../internals/classof-raw */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/classof-raw.js");
var split = ''.split;
@@ -1758,15 +1911,15 @@ module.exports = fails(function () {
/***/ }),
-/***/ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/inherit-if-required.js":
-/*!********************************************************************************************!*\
- !*** ./node_modules/@nextcloud/auth/node_modules/core-js/internals/inherit-if-required.js ***!
- \********************************************************************************************/
+/***/ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/inherit-if-required.js":
+/*!*************************************************************************************************!*\
+ !*** ./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/inherit-if-required.js ***!
+ \*************************************************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
-var isObject = __webpack_require__(/*! ../internals/is-object */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/is-object.js");
-var setPrototypeOf = __webpack_require__(/*! ../internals/object-set-prototype-of */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/object-set-prototype-of.js");
+var isObject = __webpack_require__(/*! ../internals/is-object */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/is-object.js");
+var setPrototypeOf = __webpack_require__(/*! ../internals/object-set-prototype-of */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/object-set-prototype-of.js");
// makes subclassing work correct for wrapped built-ins
module.exports = function ($this, dummy, Wrapper) {
@@ -1786,14 +1939,14 @@ module.exports = function ($this, dummy, Wrapper) {
/***/ }),
-/***/ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/inspect-source.js":
-/*!***************************************************************************************!*\
- !*** ./node_modules/@nextcloud/auth/node_modules/core-js/internals/inspect-source.js ***!
- \***************************************************************************************/
+/***/ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/inspect-source.js":
+/*!********************************************************************************************!*\
+ !*** ./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/inspect-source.js ***!
+ \********************************************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
-var store = __webpack_require__(/*! ../internals/shared-store */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/shared-store.js");
+var store = __webpack_require__(/*! ../internals/shared-store */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/shared-store.js");
var functionToString = Function.toString;
@@ -1809,19 +1962,19 @@ module.exports = store.inspectSource;
/***/ }),
-/***/ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/internal-metadata.js":
-/*!******************************************************************************************!*\
- !*** ./node_modules/@nextcloud/auth/node_modules/core-js/internals/internal-metadata.js ***!
- \******************************************************************************************/
+/***/ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/internal-metadata.js":
+/*!***********************************************************************************************!*\
+ !*** ./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/internal-metadata.js ***!
+ \***********************************************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
-var hiddenKeys = __webpack_require__(/*! ../internals/hidden-keys */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/hidden-keys.js");
-var isObject = __webpack_require__(/*! ../internals/is-object */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/is-object.js");
-var has = __webpack_require__(/*! ../internals/has */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/has.js");
-var defineProperty = __webpack_require__(/*! ../internals/object-define-property */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/object-define-property.js").f;
-var uid = __webpack_require__(/*! ../internals/uid */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/uid.js");
-var FREEZING = __webpack_require__(/*! ../internals/freezing */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/freezing.js");
+var hiddenKeys = __webpack_require__(/*! ../internals/hidden-keys */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/hidden-keys.js");
+var isObject = __webpack_require__(/*! ../internals/is-object */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/is-object.js");
+var has = __webpack_require__(/*! ../internals/has */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/has.js");
+var defineProperty = __webpack_require__(/*! ../internals/object-define-property */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/object-define-property.js").f;
+var uid = __webpack_require__(/*! ../internals/uid */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/uid.js");
+var FREEZING = __webpack_require__(/*! ../internals/freezing */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/freezing.js");
var METADATA = uid('meta');
var id = 0;
@@ -1881,20 +2034,20 @@ hiddenKeys[METADATA] = true;
/***/ }),
-/***/ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/internal-state.js":
-/*!***************************************************************************************!*\
- !*** ./node_modules/@nextcloud/auth/node_modules/core-js/internals/internal-state.js ***!
- \***************************************************************************************/
+/***/ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/internal-state.js":
+/*!********************************************************************************************!*\
+ !*** ./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/internal-state.js ***!
+ \********************************************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
-var NATIVE_WEAK_MAP = __webpack_require__(/*! ../internals/native-weak-map */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/native-weak-map.js");
-var global = __webpack_require__(/*! ../internals/global */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/global.js");
-var isObject = __webpack_require__(/*! ../internals/is-object */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/is-object.js");
-var createNonEnumerableProperty = __webpack_require__(/*! ../internals/create-non-enumerable-property */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/create-non-enumerable-property.js");
-var objectHas = __webpack_require__(/*! ../internals/has */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/has.js");
-var sharedKey = __webpack_require__(/*! ../internals/shared-key */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/shared-key.js");
-var hiddenKeys = __webpack_require__(/*! ../internals/hidden-keys */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/hidden-keys.js");
+var NATIVE_WEAK_MAP = __webpack_require__(/*! ../internals/native-weak-map */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/native-weak-map.js");
+var global = __webpack_require__(/*! ../internals/global */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/global.js");
+var isObject = __webpack_require__(/*! ../internals/is-object */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/is-object.js");
+var createNonEnumerableProperty = __webpack_require__(/*! ../internals/create-non-enumerable-property */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/create-non-enumerable-property.js");
+var objectHas = __webpack_require__(/*! ../internals/has */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/has.js");
+var sharedKey = __webpack_require__(/*! ../internals/shared-key */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/shared-key.js");
+var hiddenKeys = __webpack_require__(/*! ../internals/hidden-keys */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/hidden-keys.js");
var WeakMap = global.WeakMap;
var set, get, has;
@@ -1953,15 +2106,15 @@ module.exports = {
/***/ }),
-/***/ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/is-array-iterator-method.js":
-/*!*************************************************************************************************!*\
- !*** ./node_modules/@nextcloud/auth/node_modules/core-js/internals/is-array-iterator-method.js ***!
- \*************************************************************************************************/
+/***/ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/is-array-iterator-method.js":
+/*!******************************************************************************************************!*\
+ !*** ./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/is-array-iterator-method.js ***!
+ \******************************************************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
-var wellKnownSymbol = __webpack_require__(/*! ../internals/well-known-symbol */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/well-known-symbol.js");
-var Iterators = __webpack_require__(/*! ../internals/iterators */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/iterators.js");
+var wellKnownSymbol = __webpack_require__(/*! ../internals/well-known-symbol */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/well-known-symbol.js");
+var Iterators = __webpack_require__(/*! ../internals/iterators */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/iterators.js");
var ITERATOR = wellKnownSymbol('iterator');
var ArrayPrototype = Array.prototype;
@@ -1974,14 +2127,14 @@ module.exports = function (it) {
/***/ }),
-/***/ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/is-array.js":
-/*!*********************************************************************************!*\
- !*** ./node_modules/@nextcloud/auth/node_modules/core-js/internals/is-array.js ***!
- \*********************************************************************************/
+/***/ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/is-array.js":
+/*!**************************************************************************************!*\
+ !*** ./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/is-array.js ***!
+ \**************************************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
-var classof = __webpack_require__(/*! ../internals/classof-raw */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/classof-raw.js");
+var classof = __webpack_require__(/*! ../internals/classof-raw */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/classof-raw.js");
// `IsArray` abstract operation
// https://tc39.github.io/ecma262/#sec-isarray
@@ -1992,14 +2145,14 @@ module.exports = Array.isArray || function isArray(arg) {
/***/ }),
-/***/ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/is-forced.js":
-/*!**********************************************************************************!*\
- !*** ./node_modules/@nextcloud/auth/node_modules/core-js/internals/is-forced.js ***!
- \**********************************************************************************/
+/***/ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/is-forced.js":
+/*!***************************************************************************************!*\
+ !*** ./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/is-forced.js ***!
+ \***************************************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
-var fails = __webpack_require__(/*! ../internals/fails */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/fails.js");
+var fails = __webpack_require__(/*! ../internals/fails */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/fails.js");
var replacement = /#|\.prototype\./;
@@ -2024,10 +2177,10 @@ module.exports = isForced;
/***/ }),
-/***/ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/is-object.js":
-/*!**********************************************************************************!*\
- !*** ./node_modules/@nextcloud/auth/node_modules/core-js/internals/is-object.js ***!
- \**********************************************************************************/
+/***/ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/is-object.js":
+/*!***************************************************************************************!*\
+ !*** ./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/is-object.js ***!
+ \***************************************************************************************/
/*! no static exports found */
/***/ (function(module, exports) {
@@ -2038,10 +2191,10 @@ module.exports = function (it) {
/***/ }),
-/***/ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/is-pure.js":
-/*!********************************************************************************!*\
- !*** ./node_modules/@nextcloud/auth/node_modules/core-js/internals/is-pure.js ***!
- \********************************************************************************/
+/***/ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/is-pure.js":
+/*!*************************************************************************************!*\
+ !*** ./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/is-pure.js ***!
+ \*************************************************************************************/
/*! no static exports found */
/***/ (function(module, exports) {
@@ -2050,19 +2203,19 @@ module.exports = false;
/***/ }),
-/***/ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/iterate.js":
-/*!********************************************************************************!*\
- !*** ./node_modules/@nextcloud/auth/node_modules/core-js/internals/iterate.js ***!
- \********************************************************************************/
+/***/ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/iterate.js":
+/*!*************************************************************************************!*\
+ !*** ./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/iterate.js ***!
+ \*************************************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
-var anObject = __webpack_require__(/*! ../internals/an-object */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/an-object.js");
-var isArrayIteratorMethod = __webpack_require__(/*! ../internals/is-array-iterator-method */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/is-array-iterator-method.js");
-var toLength = __webpack_require__(/*! ../internals/to-length */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/to-length.js");
-var bind = __webpack_require__(/*! ../internals/bind-context */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/bind-context.js");
-var getIteratorMethod = __webpack_require__(/*! ../internals/get-iterator-method */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/get-iterator-method.js");
-var callWithSafeIterationClosing = __webpack_require__(/*! ../internals/call-with-safe-iteration-closing */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/call-with-safe-iteration-closing.js");
+var anObject = __webpack_require__(/*! ../internals/an-object */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/an-object.js");
+var isArrayIteratorMethod = __webpack_require__(/*! ../internals/is-array-iterator-method */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/is-array-iterator-method.js");
+var toLength = __webpack_require__(/*! ../internals/to-length */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/to-length.js");
+var bind = __webpack_require__(/*! ../internals/function-bind-context */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/function-bind-context.js");
+var getIteratorMethod = __webpack_require__(/*! ../internals/get-iterator-method */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/get-iterator-method.js");
+var callWithSafeIterationClosing = __webpack_require__(/*! ../internals/call-with-safe-iteration-closing */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/call-with-safe-iteration-closing.js");
var Result = function (stopped, result) {
this.stopped = stopped;
@@ -2104,20 +2257,20 @@ iterate.stop = function (result) {
/***/ }),
-/***/ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/iterators-core.js":
-/*!***************************************************************************************!*\
- !*** ./node_modules/@nextcloud/auth/node_modules/core-js/internals/iterators-core.js ***!
- \***************************************************************************************/
+/***/ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/iterators-core.js":
+/*!********************************************************************************************!*\
+ !*** ./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/iterators-core.js ***!
+ \********************************************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
-var getPrototypeOf = __webpack_require__(/*! ../internals/object-get-prototype-of */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/object-get-prototype-of.js");
-var createNonEnumerableProperty = __webpack_require__(/*! ../internals/create-non-enumerable-property */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/create-non-enumerable-property.js");
-var has = __webpack_require__(/*! ../internals/has */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/has.js");
-var wellKnownSymbol = __webpack_require__(/*! ../internals/well-known-symbol */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/well-known-symbol.js");
-var IS_PURE = __webpack_require__(/*! ../internals/is-pure */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/is-pure.js");
+var getPrototypeOf = __webpack_require__(/*! ../internals/object-get-prototype-of */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/object-get-prototype-of.js");
+var createNonEnumerableProperty = __webpack_require__(/*! ../internals/create-non-enumerable-property */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/create-non-enumerable-property.js");
+var has = __webpack_require__(/*! ../internals/has */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/has.js");
+var wellKnownSymbol = __webpack_require__(/*! ../internals/well-known-symbol */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/well-known-symbol.js");
+var IS_PURE = __webpack_require__(/*! ../internals/is-pure */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/is-pure.js");
var ITERATOR = wellKnownSymbol('iterator');
var BUGGY_SAFARI_ITERATORS = false;
@@ -2153,10 +2306,10 @@ module.exports = {
/***/ }),
-/***/ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/iterators.js":
-/*!**********************************************************************************!*\
- !*** ./node_modules/@nextcloud/auth/node_modules/core-js/internals/iterators.js ***!
- \**********************************************************************************/
+/***/ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/iterators.js":
+/*!***************************************************************************************!*\
+ !*** ./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/iterators.js ***!
+ \***************************************************************************************/
/*! no static exports found */
/***/ (function(module, exports) {
@@ -2165,14 +2318,14 @@ module.exports = {};
/***/ }),
-/***/ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/native-symbol.js":
-/*!**************************************************************************************!*\
- !*** ./node_modules/@nextcloud/auth/node_modules/core-js/internals/native-symbol.js ***!
- \**************************************************************************************/
+/***/ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/native-symbol.js":
+/*!*******************************************************************************************!*\
+ !*** ./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/native-symbol.js ***!
+ \*******************************************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
-var fails = __webpack_require__(/*! ../internals/fails */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/fails.js");
+var fails = __webpack_require__(/*! ../internals/fails */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/fails.js");
module.exports = !!Object.getOwnPropertySymbols && !fails(function () {
// Chrome 38 Symbol has incorrect toString conversion
@@ -2183,15 +2336,15 @@ module.exports = !!Object.getOwnPropertySymbols && !fails(function () {
/***/ }),
-/***/ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/native-weak-map.js":
-/*!****************************************************************************************!*\
- !*** ./node_modules/@nextcloud/auth/node_modules/core-js/internals/native-weak-map.js ***!
- \****************************************************************************************/
+/***/ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/native-weak-map.js":
+/*!*********************************************************************************************!*\
+ !*** ./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/native-weak-map.js ***!
+ \*********************************************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
-var global = __webpack_require__(/*! ../internals/global */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/global.js");
-var inspectSource = __webpack_require__(/*! ../internals/inspect-source */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/inspect-source.js");
+var global = __webpack_require__(/*! ../internals/global */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/global.js");
+var inspectSource = __webpack_require__(/*! ../internals/inspect-source */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/inspect-source.js");
var WeakMap = global.WeakMap;
@@ -2200,77 +2353,106 @@ module.exports = typeof WeakMap === 'function' && /native code/.test(inspectSour
/***/ }),
-/***/ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/object-create.js":
-/*!**************************************************************************************!*\
- !*** ./node_modules/@nextcloud/auth/node_modules/core-js/internals/object-create.js ***!
- \**************************************************************************************/
+/***/ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/object-create.js":
+/*!*******************************************************************************************!*\
+ !*** ./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/object-create.js ***!
+ \*******************************************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
-var anObject = __webpack_require__(/*! ../internals/an-object */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/an-object.js");
-var defineProperties = __webpack_require__(/*! ../internals/object-define-properties */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/object-define-properties.js");
-var enumBugKeys = __webpack_require__(/*! ../internals/enum-bug-keys */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/enum-bug-keys.js");
-var hiddenKeys = __webpack_require__(/*! ../internals/hidden-keys */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/hidden-keys.js");
-var html = __webpack_require__(/*! ../internals/html */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/html.js");
-var documentCreateElement = __webpack_require__(/*! ../internals/document-create-element */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/document-create-element.js");
-var sharedKey = __webpack_require__(/*! ../internals/shared-key */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/shared-key.js");
-var IE_PROTO = sharedKey('IE_PROTO');
+var anObject = __webpack_require__(/*! ../internals/an-object */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/an-object.js");
+var defineProperties = __webpack_require__(/*! ../internals/object-define-properties */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/object-define-properties.js");
+var enumBugKeys = __webpack_require__(/*! ../internals/enum-bug-keys */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/enum-bug-keys.js");
+var hiddenKeys = __webpack_require__(/*! ../internals/hidden-keys */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/hidden-keys.js");
+var html = __webpack_require__(/*! ../internals/html */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/html.js");
+var documentCreateElement = __webpack_require__(/*! ../internals/document-create-element */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/document-create-element.js");
+var sharedKey = __webpack_require__(/*! ../internals/shared-key */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/shared-key.js");
+var GT = '>';
+var LT = '<';
var PROTOTYPE = 'prototype';
-var Empty = function () { /* empty */ };
+var SCRIPT = 'script';
+var IE_PROTO = sharedKey('IE_PROTO');
+
+var EmptyConstructor = function () { /* empty */ };
+
+var scriptTag = function (content) {
+ return LT + SCRIPT + GT + content + LT + '/' + SCRIPT + GT;
+};
+
+// Create object with fake `null` prototype: use ActiveX Object with cleared prototype
+var NullProtoObjectViaActiveX = function (activeXDocument) {
+ activeXDocument.write(scriptTag(''));
+ activeXDocument.close();
+ var temp = activeXDocument.parentWindow.Object;
+ activeXDocument = null; // avoid memory leak
+ return temp;
+};
// Create object with fake `null` prototype: use iframe Object with cleared prototype
-var createDict = function () {
+var NullProtoObjectViaIFrame = function () {
// Thrash, waste and sodomy: IE GC bug
var iframe = documentCreateElement('iframe');
- var length = enumBugKeys.length;
- var lt = '<';
- var script = 'script';
- var gt = '>';
- var js = 'java' + script + ':';
+ var JS = 'java' + SCRIPT + ':';
var iframeDocument;
iframe.style.display = 'none';
html.appendChild(iframe);
- iframe.src = String(js);
+ // https://github.com/zloirock/core-js/issues/475
+ iframe.src = String(JS);
iframeDocument = iframe.contentWindow.document;
iframeDocument.open();
- iframeDocument.write(lt + script + gt + 'document.F=Object' + lt + '/' + script + gt);
+ iframeDocument.write(scriptTag('document.F=Object'));
iframeDocument.close();
- createDict = iframeDocument.F;
- while (length--) delete createDict[PROTOTYPE][enumBugKeys[length]];
- return createDict();
+ return iframeDocument.F;
+};
+
+// Check for document.domain and active x support
+// No need to use active x approach when document.domain is not set
+// see https://github.com/es-shims/es5-shim/issues/150
+// variation of https://github.com/kitcambridge/es5-shim/commit/4f738ac066346
+// avoid IE GC bug
+var activeXDocument;
+var NullProtoObject = function () {
+ try {
+ /* global ActiveXObject */
+ activeXDocument = document.domain && new ActiveXObject('htmlfile');
+ } catch (error) { /* ignore */ }
+ NullProtoObject = activeXDocument ? NullProtoObjectViaActiveX(activeXDocument) : NullProtoObjectViaIFrame();
+ var length = enumBugKeys.length;
+ while (length--) delete NullProtoObject[PROTOTYPE][enumBugKeys[length]];
+ return NullProtoObject();
};
+hiddenKeys[IE_PROTO] = true;
+
// `Object.create` method
// https://tc39.github.io/ecma262/#sec-object.create
module.exports = Object.create || function create(O, Properties) {
var result;
if (O !== null) {
- Empty[PROTOTYPE] = anObject(O);
- result = new Empty();
- Empty[PROTOTYPE] = null;
+ EmptyConstructor[PROTOTYPE] = anObject(O);
+ result = new EmptyConstructor();
+ EmptyConstructor[PROTOTYPE] = null;
// add "__proto__" for Object.getPrototypeOf polyfill
result[IE_PROTO] = O;
- } else result = createDict();
+ } else result = NullProtoObject();
return Properties === undefined ? result : defineProperties(result, Properties);
};
-hiddenKeys[IE_PROTO] = true;
-
/***/ }),
-/***/ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/object-define-properties.js":
-/*!*************************************************************************************************!*\
- !*** ./node_modules/@nextcloud/auth/node_modules/core-js/internals/object-define-properties.js ***!
- \*************************************************************************************************/
+/***/ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/object-define-properties.js":
+/*!******************************************************************************************************!*\
+ !*** ./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/object-define-properties.js ***!
+ \******************************************************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
-var DESCRIPTORS = __webpack_require__(/*! ../internals/descriptors */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/descriptors.js");
-var definePropertyModule = __webpack_require__(/*! ../internals/object-define-property */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/object-define-property.js");
-var anObject = __webpack_require__(/*! ../internals/an-object */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/an-object.js");
-var objectKeys = __webpack_require__(/*! ../internals/object-keys */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/object-keys.js");
+var DESCRIPTORS = __webpack_require__(/*! ../internals/descriptors */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/descriptors.js");
+var definePropertyModule = __webpack_require__(/*! ../internals/object-define-property */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/object-define-property.js");
+var anObject = __webpack_require__(/*! ../internals/an-object */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/an-object.js");
+var objectKeys = __webpack_require__(/*! ../internals/object-keys */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/object-keys.js");
// `Object.defineProperties` method
// https://tc39.github.io/ecma262/#sec-object.defineproperties
@@ -2287,17 +2469,17 @@ module.exports = DESCRIPTORS ? Object.defineProperties : function defineProperti
/***/ }),
-/***/ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/object-define-property.js":
-/*!***********************************************************************************************!*\
- !*** ./node_modules/@nextcloud/auth/node_modules/core-js/internals/object-define-property.js ***!
- \***********************************************************************************************/
+/***/ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/object-define-property.js":
+/*!****************************************************************************************************!*\
+ !*** ./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/object-define-property.js ***!
+ \****************************************************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
-var DESCRIPTORS = __webpack_require__(/*! ../internals/descriptors */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/descriptors.js");
-var IE8_DOM_DEFINE = __webpack_require__(/*! ../internals/ie8-dom-define */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/ie8-dom-define.js");
-var anObject = __webpack_require__(/*! ../internals/an-object */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/an-object.js");
-var toPrimitive = __webpack_require__(/*! ../internals/to-primitive */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/to-primitive.js");
+var DESCRIPTORS = __webpack_require__(/*! ../internals/descriptors */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/descriptors.js");
+var IE8_DOM_DEFINE = __webpack_require__(/*! ../internals/ie8-dom-define */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/ie8-dom-define.js");
+var anObject = __webpack_require__(/*! ../internals/an-object */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/an-object.js");
+var toPrimitive = __webpack_require__(/*! ../internals/to-primitive */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/to-primitive.js");
var nativeDefineProperty = Object.defineProperty;
@@ -2318,20 +2500,20 @@ exports.f = DESCRIPTORS ? nativeDefineProperty : function defineProperty(O, P, A
/***/ }),
-/***/ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/object-get-own-property-descriptor.js":
-/*!***********************************************************************************************************!*\
- !*** ./node_modules/@nextcloud/auth/node_modules/core-js/internals/object-get-own-property-descriptor.js ***!
- \***********************************************************************************************************/
+/***/ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/object-get-own-property-descriptor.js":
+/*!****************************************************************************************************************!*\
+ !*** ./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/object-get-own-property-descriptor.js ***!
+ \****************************************************************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
-var DESCRIPTORS = __webpack_require__(/*! ../internals/descriptors */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/descriptors.js");
-var propertyIsEnumerableModule = __webpack_require__(/*! ../internals/object-property-is-enumerable */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/object-property-is-enumerable.js");
-var createPropertyDescriptor = __webpack_require__(/*! ../internals/create-property-descriptor */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/create-property-descriptor.js");
-var toIndexedObject = __webpack_require__(/*! ../internals/to-indexed-object */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/to-indexed-object.js");
-var toPrimitive = __webpack_require__(/*! ../internals/to-primitive */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/to-primitive.js");
-var has = __webpack_require__(/*! ../internals/has */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/has.js");
-var IE8_DOM_DEFINE = __webpack_require__(/*! ../internals/ie8-dom-define */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/ie8-dom-define.js");
+var DESCRIPTORS = __webpack_require__(/*! ../internals/descriptors */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/descriptors.js");
+var propertyIsEnumerableModule = __webpack_require__(/*! ../internals/object-property-is-enumerable */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/object-property-is-enumerable.js");
+var createPropertyDescriptor = __webpack_require__(/*! ../internals/create-property-descriptor */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/create-property-descriptor.js");
+var toIndexedObject = __webpack_require__(/*! ../internals/to-indexed-object */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/to-indexed-object.js");
+var toPrimitive = __webpack_require__(/*! ../internals/to-primitive */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/to-primitive.js");
+var has = __webpack_require__(/*! ../internals/has */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/has.js");
+var IE8_DOM_DEFINE = __webpack_require__(/*! ../internals/ie8-dom-define */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/ie8-dom-define.js");
var nativeGetOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
@@ -2349,15 +2531,15 @@ exports.f = DESCRIPTORS ? nativeGetOwnPropertyDescriptor : function getOwnProper
/***/ }),
-/***/ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/object-get-own-property-names.js":
-/*!******************************************************************************************************!*\
- !*** ./node_modules/@nextcloud/auth/node_modules/core-js/internals/object-get-own-property-names.js ***!
- \******************************************************************************************************/
+/***/ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/object-get-own-property-names.js":
+/*!***********************************************************************************************************!*\
+ !*** ./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/object-get-own-property-names.js ***!
+ \***********************************************************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
-var internalObjectKeys = __webpack_require__(/*! ../internals/object-keys-internal */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/object-keys-internal.js");
-var enumBugKeys = __webpack_require__(/*! ../internals/enum-bug-keys */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/enum-bug-keys.js");
+var internalObjectKeys = __webpack_require__(/*! ../internals/object-keys-internal */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/object-keys-internal.js");
+var enumBugKeys = __webpack_require__(/*! ../internals/enum-bug-keys */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/enum-bug-keys.js");
var hiddenKeys = enumBugKeys.concat('length', 'prototype');
@@ -2370,10 +2552,10 @@ exports.f = Object.getOwnPropertyNames || function getOwnPropertyNames(O) {
/***/ }),
-/***/ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/object-get-own-property-symbols.js":
-/*!********************************************************************************************************!*\
- !*** ./node_modules/@nextcloud/auth/node_modules/core-js/internals/object-get-own-property-symbols.js ***!
- \********************************************************************************************************/
+/***/ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/object-get-own-property-symbols.js":
+/*!*************************************************************************************************************!*\
+ !*** ./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/object-get-own-property-symbols.js ***!
+ \*************************************************************************************************************/
/*! no static exports found */
/***/ (function(module, exports) {
@@ -2382,17 +2564,17 @@ exports.f = Object.getOwnPropertySymbols;
/***/ }),
-/***/ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/object-get-prototype-of.js":
-/*!************************************************************************************************!*\
- !*** ./node_modules/@nextcloud/auth/node_modules/core-js/internals/object-get-prototype-of.js ***!
- \************************************************************************************************/
+/***/ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/object-get-prototype-of.js":
+/*!*****************************************************************************************************!*\
+ !*** ./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/object-get-prototype-of.js ***!
+ \*****************************************************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
-var has = __webpack_require__(/*! ../internals/has */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/has.js");
-var toObject = __webpack_require__(/*! ../internals/to-object */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/to-object.js");
-var sharedKey = __webpack_require__(/*! ../internals/shared-key */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/shared-key.js");
-var CORRECT_PROTOTYPE_GETTER = __webpack_require__(/*! ../internals/correct-prototype-getter */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/correct-prototype-getter.js");
+var has = __webpack_require__(/*! ../internals/has */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/has.js");
+var toObject = __webpack_require__(/*! ../internals/to-object */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/to-object.js");
+var sharedKey = __webpack_require__(/*! ../internals/shared-key */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/shared-key.js");
+var CORRECT_PROTOTYPE_GETTER = __webpack_require__(/*! ../internals/correct-prototype-getter */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/correct-prototype-getter.js");
var IE_PROTO = sharedKey('IE_PROTO');
var ObjectPrototype = Object.prototype;
@@ -2410,17 +2592,17 @@ module.exports = CORRECT_PROTOTYPE_GETTER ? Object.getPrototypeOf : function (O)
/***/ }),
-/***/ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/object-keys-internal.js":
-/*!*********************************************************************************************!*\
- !*** ./node_modules/@nextcloud/auth/node_modules/core-js/internals/object-keys-internal.js ***!
- \*********************************************************************************************/
+/***/ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/object-keys-internal.js":
+/*!**************************************************************************************************!*\
+ !*** ./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/object-keys-internal.js ***!
+ \**************************************************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
-var has = __webpack_require__(/*! ../internals/has */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/has.js");
-var toIndexedObject = __webpack_require__(/*! ../internals/to-indexed-object */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/to-indexed-object.js");
-var indexOf = __webpack_require__(/*! ../internals/array-includes */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/array-includes.js").indexOf;
-var hiddenKeys = __webpack_require__(/*! ../internals/hidden-keys */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/hidden-keys.js");
+var has = __webpack_require__(/*! ../internals/has */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/has.js");
+var toIndexedObject = __webpack_require__(/*! ../internals/to-indexed-object */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/to-indexed-object.js");
+var indexOf = __webpack_require__(/*! ../internals/array-includes */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/array-includes.js").indexOf;
+var hiddenKeys = __webpack_require__(/*! ../internals/hidden-keys */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/hidden-keys.js");
module.exports = function (object, names) {
var O = toIndexedObject(object);
@@ -2438,15 +2620,15 @@ module.exports = function (object, names) {
/***/ }),
-/***/ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/object-keys.js":
-/*!************************************************************************************!*\
- !*** ./node_modules/@nextcloud/auth/node_modules/core-js/internals/object-keys.js ***!
- \************************************************************************************/
+/***/ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/object-keys.js":
+/*!*****************************************************************************************!*\
+ !*** ./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/object-keys.js ***!
+ \*****************************************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
-var internalObjectKeys = __webpack_require__(/*! ../internals/object-keys-internal */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/object-keys-internal.js");
-var enumBugKeys = __webpack_require__(/*! ../internals/enum-bug-keys */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/enum-bug-keys.js");
+var internalObjectKeys = __webpack_require__(/*! ../internals/object-keys-internal */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/object-keys-internal.js");
+var enumBugKeys = __webpack_require__(/*! ../internals/enum-bug-keys */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/enum-bug-keys.js");
// `Object.keys` method
// https://tc39.github.io/ecma262/#sec-object.keys
@@ -2457,10 +2639,10 @@ module.exports = Object.keys || function keys(O) {
/***/ }),
-/***/ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/object-property-is-enumerable.js":
-/*!******************************************************************************************************!*\
- !*** ./node_modules/@nextcloud/auth/node_modules/core-js/internals/object-property-is-enumerable.js ***!
- \******************************************************************************************************/
+/***/ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/object-property-is-enumerable.js":
+/*!***********************************************************************************************************!*\
+ !*** ./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/object-property-is-enumerable.js ***!
+ \***********************************************************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
@@ -2482,15 +2664,15 @@ exports.f = NASHORN_BUG ? function propertyIsEnumerable(V) {
/***/ }),
-/***/ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/object-set-prototype-of.js":
-/*!************************************************************************************************!*\
- !*** ./node_modules/@nextcloud/auth/node_modules/core-js/internals/object-set-prototype-of.js ***!
- \************************************************************************************************/
+/***/ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/object-set-prototype-of.js":
+/*!*****************************************************************************************************!*\
+ !*** ./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/object-set-prototype-of.js ***!
+ \*****************************************************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
-var anObject = __webpack_require__(/*! ../internals/an-object */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/an-object.js");
-var aPossiblePrototype = __webpack_require__(/*! ../internals/a-possible-prototype */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/a-possible-prototype.js");
+var anObject = __webpack_require__(/*! ../internals/an-object */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/an-object.js");
+var aPossiblePrototype = __webpack_require__(/*! ../internals/a-possible-prototype */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/a-possible-prototype.js");
// `Object.setPrototypeOf` method
// https://tc39.github.io/ecma262/#sec-object.setprototypeof
@@ -2517,17 +2699,17 @@ module.exports = Object.setPrototypeOf || ('__proto__' in {} ? function () {
/***/ }),
-/***/ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/object-to-string.js":
-/*!*****************************************************************************************!*\
- !*** ./node_modules/@nextcloud/auth/node_modules/core-js/internals/object-to-string.js ***!
- \*****************************************************************************************/
+/***/ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/object-to-string.js":
+/*!**********************************************************************************************!*\
+ !*** ./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/object-to-string.js ***!
+ \**********************************************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
-var TO_STRING_TAG_SUPPORT = __webpack_require__(/*! ../internals/to-string-tag-support */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/to-string-tag-support.js");
-var classof = __webpack_require__(/*! ../internals/classof */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/classof.js");
+var TO_STRING_TAG_SUPPORT = __webpack_require__(/*! ../internals/to-string-tag-support */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/to-string-tag-support.js");
+var classof = __webpack_require__(/*! ../internals/classof */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/classof.js");
// `Object.prototype.toString` method implementation
// https://tc39.github.io/ecma262/#sec-object.prototype.tostring
@@ -2538,17 +2720,17 @@ module.exports = TO_STRING_TAG_SUPPORT ? {}.toString : function toString() {
/***/ }),
-/***/ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/own-keys.js":
-/*!*********************************************************************************!*\
- !*** ./node_modules/@nextcloud/auth/node_modules/core-js/internals/own-keys.js ***!
- \*********************************************************************************/
+/***/ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/own-keys.js":
+/*!**************************************************************************************!*\
+ !*** ./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/own-keys.js ***!
+ \**************************************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
-var getBuiltIn = __webpack_require__(/*! ../internals/get-built-in */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/get-built-in.js");
-var getOwnPropertyNamesModule = __webpack_require__(/*! ../internals/object-get-own-property-names */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/object-get-own-property-names.js");
-var getOwnPropertySymbolsModule = __webpack_require__(/*! ../internals/object-get-own-property-symbols */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/object-get-own-property-symbols.js");
-var anObject = __webpack_require__(/*! ../internals/an-object */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/an-object.js");
+var getBuiltIn = __webpack_require__(/*! ../internals/get-built-in */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/get-built-in.js");
+var getOwnPropertyNamesModule = __webpack_require__(/*! ../internals/object-get-own-property-names */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/object-get-own-property-names.js");
+var getOwnPropertySymbolsModule = __webpack_require__(/*! ../internals/object-get-own-property-symbols */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/object-get-own-property-symbols.js");
+var anObject = __webpack_require__(/*! ../internals/an-object */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/an-object.js");
// all object keys, includes non-enumerable and symbols
module.exports = getBuiltIn('Reflect', 'ownKeys') || function ownKeys(it) {
@@ -2560,28 +2742,28 @@ module.exports = getBuiltIn('Reflect', 'ownKeys') || function ownKeys(it) {
/***/ }),
-/***/ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/path.js":
-/*!*****************************************************************************!*\
- !*** ./node_modules/@nextcloud/auth/node_modules/core-js/internals/path.js ***!
- \*****************************************************************************/
+/***/ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/path.js":
+/*!**********************************************************************************!*\
+ !*** ./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/path.js ***!
+ \**********************************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
-var global = __webpack_require__(/*! ../internals/global */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/global.js");
+var global = __webpack_require__(/*! ../internals/global */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/global.js");
module.exports = global;
/***/ }),
-/***/ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/redefine-all.js":
-/*!*************************************************************************************!*\
- !*** ./node_modules/@nextcloud/auth/node_modules/core-js/internals/redefine-all.js ***!
- \*************************************************************************************/
+/***/ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/redefine-all.js":
+/*!******************************************************************************************!*\
+ !*** ./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/redefine-all.js ***!
+ \******************************************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
-var redefine = __webpack_require__(/*! ../internals/redefine */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/redefine.js");
+var redefine = __webpack_require__(/*! ../internals/redefine */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/redefine.js");
module.exports = function (target, src, options) {
for (var key in src) redefine(target, key, src[key], options);
@@ -2591,19 +2773,19 @@ module.exports = function (target, src, options) {
/***/ }),
-/***/ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/redefine.js":
-/*!*********************************************************************************!*\
- !*** ./node_modules/@nextcloud/auth/node_modules/core-js/internals/redefine.js ***!
- \*********************************************************************************/
+/***/ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/redefine.js":
+/*!**************************************************************************************!*\
+ !*** ./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/redefine.js ***!
+ \**************************************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
-var global = __webpack_require__(/*! ../internals/global */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/global.js");
-var createNonEnumerableProperty = __webpack_require__(/*! ../internals/create-non-enumerable-property */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/create-non-enumerable-property.js");
-var has = __webpack_require__(/*! ../internals/has */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/has.js");
-var setGlobal = __webpack_require__(/*! ../internals/set-global */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/set-global.js");
-var inspectSource = __webpack_require__(/*! ../internals/inspect-source */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/inspect-source.js");
-var InternalStateModule = __webpack_require__(/*! ../internals/internal-state */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/internal-state.js");
+var global = __webpack_require__(/*! ../internals/global */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/global.js");
+var createNonEnumerableProperty = __webpack_require__(/*! ../internals/create-non-enumerable-property */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/create-non-enumerable-property.js");
+var has = __webpack_require__(/*! ../internals/has */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/has.js");
+var setGlobal = __webpack_require__(/*! ../internals/set-global */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/set-global.js");
+var inspectSource = __webpack_require__(/*! ../internals/inspect-source */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/inspect-source.js");
+var InternalStateModule = __webpack_require__(/*! ../internals/internal-state */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/internal-state.js");
var getInternalState = InternalStateModule.get;
var enforceInternalState = InternalStateModule.enforce;
@@ -2636,10 +2818,10 @@ var TEMPLATE = String(String).split('String');
/***/ }),
-/***/ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/require-object-coercible.js":
-/*!*************************************************************************************************!*\
- !*** ./node_modules/@nextcloud/auth/node_modules/core-js/internals/require-object-coercible.js ***!
- \*************************************************************************************************/
+/***/ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/require-object-coercible.js":
+/*!******************************************************************************************************!*\
+ !*** ./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/require-object-coercible.js ***!
+ \******************************************************************************************************/
/*! no static exports found */
/***/ (function(module, exports) {
@@ -2653,15 +2835,15 @@ module.exports = function (it) {
/***/ }),
-/***/ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/set-global.js":
-/*!***********************************************************************************!*\
- !*** ./node_modules/@nextcloud/auth/node_modules/core-js/internals/set-global.js ***!
- \***********************************************************************************/
+/***/ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/set-global.js":
+/*!****************************************************************************************!*\
+ !*** ./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/set-global.js ***!
+ \****************************************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
-var global = __webpack_require__(/*! ../internals/global */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/global.js");
-var createNonEnumerableProperty = __webpack_require__(/*! ../internals/create-non-enumerable-property */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/create-non-enumerable-property.js");
+var global = __webpack_require__(/*! ../internals/global */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/global.js");
+var createNonEnumerableProperty = __webpack_require__(/*! ../internals/create-non-enumerable-property */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/create-non-enumerable-property.js");
module.exports = function (key, value) {
try {
@@ -2674,19 +2856,19 @@ module.exports = function (key, value) {
/***/ }),
-/***/ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/set-species.js":
-/*!************************************************************************************!*\
- !*** ./node_modules/@nextcloud/auth/node_modules/core-js/internals/set-species.js ***!
- \************************************************************************************/
+/***/ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/set-species.js":
+/*!*****************************************************************************************!*\
+ !*** ./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/set-species.js ***!
+ \*****************************************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
-var getBuiltIn = __webpack_require__(/*! ../internals/get-built-in */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/get-built-in.js");
-var definePropertyModule = __webpack_require__(/*! ../internals/object-define-property */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/object-define-property.js");
-var wellKnownSymbol = __webpack_require__(/*! ../internals/well-known-symbol */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/well-known-symbol.js");
-var DESCRIPTORS = __webpack_require__(/*! ../internals/descriptors */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/descriptors.js");
+var getBuiltIn = __webpack_require__(/*! ../internals/get-built-in */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/get-built-in.js");
+var definePropertyModule = __webpack_require__(/*! ../internals/object-define-property */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/object-define-property.js");
+var wellKnownSymbol = __webpack_require__(/*! ../internals/well-known-symbol */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/well-known-symbol.js");
+var DESCRIPTORS = __webpack_require__(/*! ../internals/descriptors */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/descriptors.js");
var SPECIES = wellKnownSymbol('species');
@@ -2705,16 +2887,16 @@ module.exports = function (CONSTRUCTOR_NAME) {
/***/ }),
-/***/ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/set-to-string-tag.js":
-/*!******************************************************************************************!*\
- !*** ./node_modules/@nextcloud/auth/node_modules/core-js/internals/set-to-string-tag.js ***!
- \******************************************************************************************/
+/***/ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/set-to-string-tag.js":
+/*!***********************************************************************************************!*\
+ !*** ./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/set-to-string-tag.js ***!
+ \***********************************************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
-var defineProperty = __webpack_require__(/*! ../internals/object-define-property */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/object-define-property.js").f;
-var has = __webpack_require__(/*! ../internals/has */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/has.js");
-var wellKnownSymbol = __webpack_require__(/*! ../internals/well-known-symbol */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/well-known-symbol.js");
+var defineProperty = __webpack_require__(/*! ../internals/object-define-property */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/object-define-property.js").f;
+var has = __webpack_require__(/*! ../internals/has */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/has.js");
+var wellKnownSymbol = __webpack_require__(/*! ../internals/well-known-symbol */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/well-known-symbol.js");
var TO_STRING_TAG = wellKnownSymbol('toStringTag');
@@ -2727,15 +2909,15 @@ module.exports = function (it, TAG, STATIC) {
/***/ }),
-/***/ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/shared-key.js":
-/*!***********************************************************************************!*\
- !*** ./node_modules/@nextcloud/auth/node_modules/core-js/internals/shared-key.js ***!
- \***********************************************************************************/
+/***/ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/shared-key.js":
+/*!****************************************************************************************!*\
+ !*** ./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/shared-key.js ***!
+ \****************************************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
-var shared = __webpack_require__(/*! ../internals/shared */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/shared.js");
-var uid = __webpack_require__(/*! ../internals/uid */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/uid.js");
+var shared = __webpack_require__(/*! ../internals/shared */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/shared.js");
+var uid = __webpack_require__(/*! ../internals/uid */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/uid.js");
var keys = shared('keys');
@@ -2746,15 +2928,15 @@ module.exports = function (key) {
/***/ }),
-/***/ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/shared-store.js":
-/*!*************************************************************************************!*\
- !*** ./node_modules/@nextcloud/auth/node_modules/core-js/internals/shared-store.js ***!
- \*************************************************************************************/
+/***/ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/shared-store.js":
+/*!******************************************************************************************!*\
+ !*** ./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/shared-store.js ***!
+ \******************************************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
-var global = __webpack_require__(/*! ../internals/global */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/global.js");
-var setGlobal = __webpack_require__(/*! ../internals/set-global */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/set-global.js");
+var global = __webpack_require__(/*! ../internals/global */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/global.js");
+var setGlobal = __webpack_require__(/*! ../internals/set-global */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/set-global.js");
var SHARED = '__core-js_shared__';
var store = global[SHARED] || setGlobal(SHARED, {});
@@ -2764,58 +2946,36 @@ module.exports = store;
/***/ }),
-/***/ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/shared.js":
-/*!*******************************************************************************!*\
- !*** ./node_modules/@nextcloud/auth/node_modules/core-js/internals/shared.js ***!
- \*******************************************************************************/
+/***/ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/shared.js":
+/*!************************************************************************************!*\
+ !*** ./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/shared.js ***!
+ \************************************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
-var IS_PURE = __webpack_require__(/*! ../internals/is-pure */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/is-pure.js");
-var store = __webpack_require__(/*! ../internals/shared-store */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/shared-store.js");
+var IS_PURE = __webpack_require__(/*! ../internals/is-pure */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/is-pure.js");
+var store = __webpack_require__(/*! ../internals/shared-store */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/shared-store.js");
(module.exports = function (key, value) {
return store[key] || (store[key] = value !== undefined ? value : {});
})('versions', []).push({
- version: '3.5.0',
+ version: '3.6.4',
mode: IS_PURE ? 'pure' : 'global',
- copyright: '© 2019 Denis Pushkarev (zloirock.ru)'
+ copyright: '© 2020 Denis Pushkarev (zloirock.ru)'
});
/***/ }),
-/***/ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/sloppy-array-method.js":
-/*!********************************************************************************************!*\
- !*** ./node_modules/@nextcloud/auth/node_modules/core-js/internals/sloppy-array-method.js ***!
- \********************************************************************************************/
-/*! no static exports found */
-/***/ (function(module, exports, __webpack_require__) {
-
-"use strict";
-
-var fails = __webpack_require__(/*! ../internals/fails */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/fails.js");
-
-module.exports = function (METHOD_NAME, argument) {
- var method = [][METHOD_NAME];
- return !method || !fails(function () {
- // eslint-disable-next-line no-useless-call,no-throw-literal
- method.call(null, argument || function () { throw 1; }, 1);
- });
-};
-
-
-/***/ }),
-
-/***/ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/string-multibyte.js":
-/*!*****************************************************************************************!*\
- !*** ./node_modules/@nextcloud/auth/node_modules/core-js/internals/string-multibyte.js ***!
- \*****************************************************************************************/
+/***/ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/string-multibyte.js":
+/*!**********************************************************************************************!*\
+ !*** ./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/string-multibyte.js ***!
+ \**********************************************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
-var toInteger = __webpack_require__(/*! ../internals/to-integer */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/to-integer.js");
-var requireObjectCoercible = __webpack_require__(/*! ../internals/require-object-coercible */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/require-object-coercible.js");
+var toInteger = __webpack_require__(/*! ../internals/to-integer */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/to-integer.js");
+var requireObjectCoercible = __webpack_require__(/*! ../internals/require-object-coercible */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/require-object-coercible.js");
// `String.prototype.{ codePointAt, at }` methods implementation
var createMethod = function (CONVERT_TO_STRING) {
@@ -2845,14 +3005,14 @@ module.exports = {
/***/ }),
-/***/ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/to-absolute-index.js":
-/*!******************************************************************************************!*\
- !*** ./node_modules/@nextcloud/auth/node_modules/core-js/internals/to-absolute-index.js ***!
- \******************************************************************************************/
+/***/ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/to-absolute-index.js":
+/*!***********************************************************************************************!*\
+ !*** ./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/to-absolute-index.js ***!
+ \***********************************************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
-var toInteger = __webpack_require__(/*! ../internals/to-integer */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/to-integer.js");
+var toInteger = __webpack_require__(/*! ../internals/to-integer */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/to-integer.js");
var max = Math.max;
var min = Math.min;
@@ -2868,16 +3028,16 @@ module.exports = function (index, length) {
/***/ }),
-/***/ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/to-indexed-object.js":
-/*!******************************************************************************************!*\
- !*** ./node_modules/@nextcloud/auth/node_modules/core-js/internals/to-indexed-object.js ***!
- \******************************************************************************************/
+/***/ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/to-indexed-object.js":
+/*!***********************************************************************************************!*\
+ !*** ./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/to-indexed-object.js ***!
+ \***********************************************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
// toObject with fallback for non-array-like ES3 strings
-var IndexedObject = __webpack_require__(/*! ../internals/indexed-object */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/indexed-object.js");
-var requireObjectCoercible = __webpack_require__(/*! ../internals/require-object-coercible */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/require-object-coercible.js");
+var IndexedObject = __webpack_require__(/*! ../internals/indexed-object */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/indexed-object.js");
+var requireObjectCoercible = __webpack_require__(/*! ../internals/require-object-coercible */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/require-object-coercible.js");
module.exports = function (it) {
return IndexedObject(requireObjectCoercible(it));
@@ -2886,10 +3046,10 @@ module.exports = function (it) {
/***/ }),
-/***/ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/to-integer.js":
-/*!***********************************************************************************!*\
- !*** ./node_modules/@nextcloud/auth/node_modules/core-js/internals/to-integer.js ***!
- \***********************************************************************************/
+/***/ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/to-integer.js":
+/*!****************************************************************************************!*\
+ !*** ./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/to-integer.js ***!
+ \****************************************************************************************/
/*! no static exports found */
/***/ (function(module, exports) {
@@ -2905,14 +3065,14 @@ module.exports = function (argument) {
/***/ }),
-/***/ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/to-length.js":
-/*!**********************************************************************************!*\
- !*** ./node_modules/@nextcloud/auth/node_modules/core-js/internals/to-length.js ***!
- \**********************************************************************************/
+/***/ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/to-length.js":
+/*!***************************************************************************************!*\
+ !*** ./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/to-length.js ***!
+ \***************************************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
-var toInteger = __webpack_require__(/*! ../internals/to-integer */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/to-integer.js");
+var toInteger = __webpack_require__(/*! ../internals/to-integer */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/to-integer.js");
var min = Math.min;
@@ -2925,14 +3085,14 @@ module.exports = function (argument) {
/***/ }),
-/***/ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/to-object.js":
-/*!**********************************************************************************!*\
- !*** ./node_modules/@nextcloud/auth/node_modules/core-js/internals/to-object.js ***!
- \**********************************************************************************/
+/***/ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/to-object.js":
+/*!***************************************************************************************!*\
+ !*** ./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/to-object.js ***!
+ \***************************************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
-var requireObjectCoercible = __webpack_require__(/*! ../internals/require-object-coercible */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/require-object-coercible.js");
+var requireObjectCoercible = __webpack_require__(/*! ../internals/require-object-coercible */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/require-object-coercible.js");
// `ToObject` abstract operation
// https://tc39.github.io/ecma262/#sec-toobject
@@ -2943,14 +3103,14 @@ module.exports = function (argument) {
/***/ }),
-/***/ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/to-primitive.js":
-/*!*************************************************************************************!*\
- !*** ./node_modules/@nextcloud/auth/node_modules/core-js/internals/to-primitive.js ***!
- \*************************************************************************************/
+/***/ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/to-primitive.js":
+/*!******************************************************************************************!*\
+ !*** ./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/to-primitive.js ***!
+ \******************************************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
-var isObject = __webpack_require__(/*! ../internals/is-object */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/is-object.js");
+var isObject = __webpack_require__(/*! ../internals/is-object */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/is-object.js");
// `ToPrimitive` abstract operation
// https://tc39.github.io/ecma262/#sec-toprimitive
@@ -2968,14 +3128,14 @@ module.exports = function (input, PREFERRED_STRING) {
/***/ }),
-/***/ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/to-string-tag-support.js":
-/*!**********************************************************************************************!*\
- !*** ./node_modules/@nextcloud/auth/node_modules/core-js/internals/to-string-tag-support.js ***!
- \**********************************************************************************************/
+/***/ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/to-string-tag-support.js":
+/*!***************************************************************************************************!*\
+ !*** ./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/to-string-tag-support.js ***!
+ \***************************************************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
-var wellKnownSymbol = __webpack_require__(/*! ../internals/well-known-symbol */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/well-known-symbol.js");
+var wellKnownSymbol = __webpack_require__(/*! ../internals/well-known-symbol */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/well-known-symbol.js");
var TO_STRING_TAG = wellKnownSymbol('toStringTag');
var test = {};
@@ -2987,10 +3147,10 @@ module.exports = String(test) === '[object z]';
/***/ }),
-/***/ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/uid.js":
-/*!****************************************************************************!*\
- !*** ./node_modules/@nextcloud/auth/node_modules/core-js/internals/uid.js ***!
- \****************************************************************************/
+/***/ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/uid.js":
+/*!*********************************************************************************!*\
+ !*** ./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/uid.js ***!
+ \*********************************************************************************/
/*! no static exports found */
/***/ (function(module, exports) {
@@ -3004,86 +3164,41 @@ module.exports = function (key) {
/***/ }),
-/***/ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/use-symbol-as-uid.js":
-/*!******************************************************************************************!*\
- !*** ./node_modules/@nextcloud/auth/node_modules/core-js/internals/use-symbol-as-uid.js ***!
- \******************************************************************************************/
+/***/ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/use-symbol-as-uid.js":
+/*!***********************************************************************************************!*\
+ !*** ./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/use-symbol-as-uid.js ***!
+ \***********************************************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
-var NATIVE_SYMBOL = __webpack_require__(/*! ../internals/native-symbol */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/native-symbol.js");
+var NATIVE_SYMBOL = __webpack_require__(/*! ../internals/native-symbol */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/native-symbol.js");
module.exports = NATIVE_SYMBOL
// eslint-disable-next-line no-undef
&& !Symbol.sham
// eslint-disable-next-line no-undef
- && typeof Symbol() == 'symbol';
+ && typeof Symbol.iterator == 'symbol';
/***/ }),
-/***/ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/user-agent.js":
-/*!***********************************************************************************!*\
- !*** ./node_modules/@nextcloud/auth/node_modules/core-js/internals/user-agent.js ***!
- \***********************************************************************************/
-/*! no static exports found */
-/***/ (function(module, exports, __webpack_require__) {
-
-var getBuiltIn = __webpack_require__(/*! ../internals/get-built-in */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/get-built-in.js");
-
-module.exports = getBuiltIn('navigator', 'userAgent') || '';
-
-
-/***/ }),
-
-/***/ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/v8-version.js":
-/*!***********************************************************************************!*\
- !*** ./node_modules/@nextcloud/auth/node_modules/core-js/internals/v8-version.js ***!
- \***********************************************************************************/
-/*! no static exports found */
-/***/ (function(module, exports, __webpack_require__) {
-
-var global = __webpack_require__(/*! ../internals/global */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/global.js");
-var userAgent = __webpack_require__(/*! ../internals/user-agent */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/user-agent.js");
-
-var process = global.process;
-var versions = process && process.versions;
-var v8 = versions && versions.v8;
-var match, version;
-
-if (v8) {
- match = v8.split('.');
- version = match[0] + match[1];
-} else if (userAgent) {
- match = userAgent.match(/Edge\/(\d+)/);
- if (!match || match[1] >= 74) {
- match = userAgent.match(/Chrome\/(\d+)/);
- if (match) version = match[1];
- }
-}
-
-module.exports = version && +version;
-
-
-/***/ }),
-
-/***/ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/well-known-symbol.js":
-/*!******************************************************************************************!*\
- !*** ./node_modules/@nextcloud/auth/node_modules/core-js/internals/well-known-symbol.js ***!
- \******************************************************************************************/
+/***/ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/well-known-symbol.js":
+/*!***********************************************************************************************!*\
+ !*** ./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/well-known-symbol.js ***!
+ \***********************************************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
-var global = __webpack_require__(/*! ../internals/global */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/global.js");
-var shared = __webpack_require__(/*! ../internals/shared */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/shared.js");
-var has = __webpack_require__(/*! ../internals/has */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/has.js");
-var uid = __webpack_require__(/*! ../internals/uid */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/uid.js");
-var NATIVE_SYMBOL = __webpack_require__(/*! ../internals/native-symbol */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/native-symbol.js");
-var USE_SYMBOL_AS_UID = __webpack_require__(/*! ../internals/use-symbol-as-uid */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/use-symbol-as-uid.js");
+var global = __webpack_require__(/*! ../internals/global */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/global.js");
+var shared = __webpack_require__(/*! ../internals/shared */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/shared.js");
+var has = __webpack_require__(/*! ../internals/has */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/has.js");
+var uid = __webpack_require__(/*! ../internals/uid */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/uid.js");
+var NATIVE_SYMBOL = __webpack_require__(/*! ../internals/native-symbol */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/native-symbol.js");
+var USE_SYMBOL_AS_UID = __webpack_require__(/*! ../internals/use-symbol-as-uid */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/use-symbol-as-uid.js");
var WellKnownSymbolsStore = shared('wks');
var Symbol = global.Symbol;
-var createWellKnownSymbol = USE_SYMBOL_AS_UID ? Symbol : uid;
+var createWellKnownSymbol = USE_SYMBOL_AS_UID ? Symbol : Symbol && Symbol.withoutSetter || uid;
module.exports = function (name) {
if (!has(WellKnownSymbolsStore, name)) {
@@ -3095,26 +3210,26 @@ module.exports = function (name) {
/***/ }),
-/***/ "./node_modules/@nextcloud/auth/node_modules/core-js/modules/es.array.concat.js":
-/*!**************************************************************************************!*\
- !*** ./node_modules/@nextcloud/auth/node_modules/core-js/modules/es.array.concat.js ***!
- \**************************************************************************************/
+/***/ "./node_modules/@nextcloud/event-bus/node_modules/core-js/modules/es.array.concat.js":
+/*!*******************************************************************************************!*\
+ !*** ./node_modules/@nextcloud/event-bus/node_modules/core-js/modules/es.array.concat.js ***!
+ \*******************************************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
-var $ = __webpack_require__(/*! ../internals/export */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/export.js");
-var fails = __webpack_require__(/*! ../internals/fails */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/fails.js");
-var isArray = __webpack_require__(/*! ../internals/is-array */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/is-array.js");
-var isObject = __webpack_require__(/*! ../internals/is-object */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/is-object.js");
-var toObject = __webpack_require__(/*! ../internals/to-object */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/to-object.js");
-var toLength = __webpack_require__(/*! ../internals/to-length */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/to-length.js");
-var createProperty = __webpack_require__(/*! ../internals/create-property */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/create-property.js");
-var arraySpeciesCreate = __webpack_require__(/*! ../internals/array-species-create */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/array-species-create.js");
-var arrayMethodHasSpeciesSupport = __webpack_require__(/*! ../internals/array-method-has-species-support */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/array-method-has-species-support.js");
-var wellKnownSymbol = __webpack_require__(/*! ../internals/well-known-symbol */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/well-known-symbol.js");
-var V8_VERSION = __webpack_require__(/*! ../internals/v8-version */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/v8-version.js");
+var $ = __webpack_require__(/*! ../internals/export */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/export.js");
+var fails = __webpack_require__(/*! ../internals/fails */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/fails.js");
+var isArray = __webpack_require__(/*! ../internals/is-array */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/is-array.js");
+var isObject = __webpack_require__(/*! ../internals/is-object */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/is-object.js");
+var toObject = __webpack_require__(/*! ../internals/to-object */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/to-object.js");
+var toLength = __webpack_require__(/*! ../internals/to-length */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/to-length.js");
+var createProperty = __webpack_require__(/*! ../internals/create-property */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/create-property.js");
+var arraySpeciesCreate = __webpack_require__(/*! ../internals/array-species-create */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/array-species-create.js");
+var arrayMethodHasSpeciesSupport = __webpack_require__(/*! ../internals/array-method-has-species-support */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/array-method-has-species-support.js");
+var wellKnownSymbol = __webpack_require__(/*! ../internals/well-known-symbol */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/well-known-symbol.js");
+var V8_VERSION = __webpack_require__(/*! ../internals/engine-v8-version */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/engine-v8-version.js");
var IS_CONCAT_SPREADABLE = wellKnownSymbol('isConcatSpreadable');
var MAX_SAFE_INTEGER = 0x1FFFFFFFFFFFFF;
@@ -3167,25 +3282,23 @@ $({ target: 'Array', proto: true, forced: FORCED }, {
/***/ }),
-/***/ "./node_modules/@nextcloud/auth/node_modules/core-js/modules/es.array.filter.js":
-/*!**************************************************************************************!*\
- !*** ./node_modules/@nextcloud/auth/node_modules/core-js/modules/es.array.filter.js ***!
- \**************************************************************************************/
+/***/ "./node_modules/@nextcloud/event-bus/node_modules/core-js/modules/es.array.filter.js":
+/*!*******************************************************************************************!*\
+ !*** ./node_modules/@nextcloud/event-bus/node_modules/core-js/modules/es.array.filter.js ***!
+ \*******************************************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
-var $ = __webpack_require__(/*! ../internals/export */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/export.js");
-var $filter = __webpack_require__(/*! ../internals/array-iteration */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/array-iteration.js").filter;
-var fails = __webpack_require__(/*! ../internals/fails */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/fails.js");
-var arrayMethodHasSpeciesSupport = __webpack_require__(/*! ../internals/array-method-has-species-support */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/array-method-has-species-support.js");
+var $ = __webpack_require__(/*! ../internals/export */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/export.js");
+var $filter = __webpack_require__(/*! ../internals/array-iteration */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/array-iteration.js").filter;
+var arrayMethodHasSpeciesSupport = __webpack_require__(/*! ../internals/array-method-has-species-support */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/array-method-has-species-support.js");
+var arrayMethodUsesToLength = __webpack_require__(/*! ../internals/array-method-uses-to-length */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/array-method-uses-to-length.js");
var HAS_SPECIES_SUPPORT = arrayMethodHasSpeciesSupport('filter');
// Edge 14- issue
-var USES_TO_LENGTH = HAS_SPECIES_SUPPORT && !fails(function () {
- [].filter.call({ length: -1, 0: 1 }, function (it) { throw it; });
-});
+var USES_TO_LENGTH = arrayMethodUsesToLength('filter');
// `Array.prototype.filter` method
// https://tc39.github.io/ecma262/#sec-array.prototype.filter
@@ -3199,41 +3312,20 @@ $({ target: 'Array', proto: true, forced: !HAS_SPECIES_SUPPORT || !USES_TO_LENGT
/***/ }),
-/***/ "./node_modules/@nextcloud/auth/node_modules/core-js/modules/es.array.for-each.js":
-/*!****************************************************************************************!*\
- !*** ./node_modules/@nextcloud/auth/node_modules/core-js/modules/es.array.for-each.js ***!
- \****************************************************************************************/
-/*! no static exports found */
-/***/ (function(module, exports, __webpack_require__) {
-
-"use strict";
-
-var $ = __webpack_require__(/*! ../internals/export */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/export.js");
-var forEach = __webpack_require__(/*! ../internals/array-for-each */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/array-for-each.js");
-
-// `Array.prototype.forEach` method
-// https://tc39.github.io/ecma262/#sec-array.prototype.foreach
-$({ target: 'Array', proto: true, forced: [].forEach != forEach }, {
- forEach: forEach
-});
-
-
-/***/ }),
-
-/***/ "./node_modules/@nextcloud/auth/node_modules/core-js/modules/es.array.iterator.js":
-/*!****************************************************************************************!*\
- !*** ./node_modules/@nextcloud/auth/node_modules/core-js/modules/es.array.iterator.js ***!
- \****************************************************************************************/
+/***/ "./node_modules/@nextcloud/event-bus/node_modules/core-js/modules/es.array.iterator.js":
+/*!*********************************************************************************************!*\
+ !*** ./node_modules/@nextcloud/event-bus/node_modules/core-js/modules/es.array.iterator.js ***!
+ \*********************************************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
-var toIndexedObject = __webpack_require__(/*! ../internals/to-indexed-object */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/to-indexed-object.js");
-var addToUnscopables = __webpack_require__(/*! ../internals/add-to-unscopables */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/add-to-unscopables.js");
-var Iterators = __webpack_require__(/*! ../internals/iterators */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/iterators.js");
-var InternalStateModule = __webpack_require__(/*! ../internals/internal-state */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/internal-state.js");
-var defineIterator = __webpack_require__(/*! ../internals/define-iterator */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/define-iterator.js");
+var toIndexedObject = __webpack_require__(/*! ../internals/to-indexed-object */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/to-indexed-object.js");
+var addToUnscopables = __webpack_require__(/*! ../internals/add-to-unscopables */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/add-to-unscopables.js");
+var Iterators = __webpack_require__(/*! ../internals/iterators */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/iterators.js");
+var InternalStateModule = __webpack_require__(/*! ../internals/internal-state */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/internal-state.js");
+var defineIterator = __webpack_require__(/*! ../internals/define-iterator */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/define-iterator.js");
var ARRAY_ITERATOR = 'Array Iterator';
var setInternalState = InternalStateModule.set;
@@ -3285,17 +3377,17 @@ addToUnscopables('entries');
/***/ }),
-/***/ "./node_modules/@nextcloud/auth/node_modules/core-js/modules/es.map.js":
-/*!*****************************************************************************!*\
- !*** ./node_modules/@nextcloud/auth/node_modules/core-js/modules/es.map.js ***!
- \*****************************************************************************/
+/***/ "./node_modules/@nextcloud/event-bus/node_modules/core-js/modules/es.map.js":
+/*!**********************************************************************************!*\
+ !*** ./node_modules/@nextcloud/event-bus/node_modules/core-js/modules/es.map.js ***!
+ \**********************************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
-var collection = __webpack_require__(/*! ../internals/collection */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/collection.js");
-var collectionStrong = __webpack_require__(/*! ../internals/collection-strong */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/collection-strong.js");
+var collection = __webpack_require__(/*! ../internals/collection */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/collection.js");
+var collectionStrong = __webpack_require__(/*! ../internals/collection-strong */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/collection-strong.js");
// `Map` constructor
// https://tc39.github.io/ecma262/#sec-map-objects
@@ -3306,16 +3398,16 @@ module.exports = collection('Map', function (init) {
/***/ }),
-/***/ "./node_modules/@nextcloud/auth/node_modules/core-js/modules/es.object.to-string.js":
-/*!******************************************************************************************!*\
- !*** ./node_modules/@nextcloud/auth/node_modules/core-js/modules/es.object.to-string.js ***!
- \******************************************************************************************/
+/***/ "./node_modules/@nextcloud/event-bus/node_modules/core-js/modules/es.object.to-string.js":
+/*!***********************************************************************************************!*\
+ !*** ./node_modules/@nextcloud/event-bus/node_modules/core-js/modules/es.object.to-string.js ***!
+ \***********************************************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
-var TO_STRING_TAG_SUPPORT = __webpack_require__(/*! ../internals/to-string-tag-support */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/to-string-tag-support.js");
-var redefine = __webpack_require__(/*! ../internals/redefine */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/redefine.js");
-var toString = __webpack_require__(/*! ../internals/object-to-string */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/object-to-string.js");
+var TO_STRING_TAG_SUPPORT = __webpack_require__(/*! ../internals/to-string-tag-support */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/to-string-tag-support.js");
+var redefine = __webpack_require__(/*! ../internals/redefine */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/redefine.js");
+var toString = __webpack_require__(/*! ../internals/object-to-string */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/object-to-string.js");
// `Object.prototype.toString` method
// https://tc39.github.io/ecma262/#sec-object.prototype.tostring
@@ -3326,18 +3418,18 @@ if (!TO_STRING_TAG_SUPPORT) {
/***/ }),
-/***/ "./node_modules/@nextcloud/auth/node_modules/core-js/modules/es.string.iterator.js":
-/*!*****************************************************************************************!*\
- !*** ./node_modules/@nextcloud/auth/node_modules/core-js/modules/es.string.iterator.js ***!
- \*****************************************************************************************/
+/***/ "./node_modules/@nextcloud/event-bus/node_modules/core-js/modules/es.string.iterator.js":
+/*!**********************************************************************************************!*\
+ !*** ./node_modules/@nextcloud/event-bus/node_modules/core-js/modules/es.string.iterator.js ***!
+ \**********************************************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
"use strict";
-var charAt = __webpack_require__(/*! ../internals/string-multibyte */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/string-multibyte.js").charAt;
-var InternalStateModule = __webpack_require__(/*! ../internals/internal-state */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/internal-state.js");
-var defineIterator = __webpack_require__(/*! ../internals/define-iterator */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/define-iterator.js");
+var charAt = __webpack_require__(/*! ../internals/string-multibyte */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/string-multibyte.js").charAt;
+var InternalStateModule = __webpack_require__(/*! ../internals/internal-state */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/internal-state.js");
+var defineIterator = __webpack_require__(/*! ../internals/define-iterator */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/define-iterator.js");
var STRING_ITERATOR = 'String Iterator';
var setInternalState = InternalStateModule.set;
@@ -3367,17 +3459,17 @@ defineIterator(String, 'String', function (iterated) {
/***/ }),
-/***/ "./node_modules/@nextcloud/auth/node_modules/core-js/modules/web.dom-collections.for-each.js":
-/*!***************************************************************************************************!*\
- !*** ./node_modules/@nextcloud/auth/node_modules/core-js/modules/web.dom-collections.for-each.js ***!
- \***************************************************************************************************/
+/***/ "./node_modules/@nextcloud/event-bus/node_modules/core-js/modules/web.dom-collections.for-each.js":
+/*!********************************************************************************************************!*\
+ !*** ./node_modules/@nextcloud/event-bus/node_modules/core-js/modules/web.dom-collections.for-each.js ***!
+ \********************************************************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
-var global = __webpack_require__(/*! ../internals/global */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/global.js");
-var DOMIterables = __webpack_require__(/*! ../internals/dom-iterables */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/dom-iterables.js");
-var forEach = __webpack_require__(/*! ../internals/array-for-each */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/array-for-each.js");
-var createNonEnumerableProperty = __webpack_require__(/*! ../internals/create-non-enumerable-property */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/create-non-enumerable-property.js");
+var global = __webpack_require__(/*! ../internals/global */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/global.js");
+var DOMIterables = __webpack_require__(/*! ../internals/dom-iterables */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/dom-iterables.js");
+var forEach = __webpack_require__(/*! ../internals/array-for-each */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/array-for-each.js");
+var createNonEnumerableProperty = __webpack_require__(/*! ../internals/create-non-enumerable-property */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/create-non-enumerable-property.js");
for (var COLLECTION_NAME in DOMIterables) {
var Collection = global[COLLECTION_NAME];
@@ -3393,18 +3485,18 @@ for (var COLLECTION_NAME in DOMIterables) {
/***/ }),
-/***/ "./node_modules/@nextcloud/auth/node_modules/core-js/modules/web.dom-collections.iterator.js":
-/*!***************************************************************************************************!*\
- !*** ./node_modules/@nextcloud/auth/node_modules/core-js/modules/web.dom-collections.iterator.js ***!
- \***************************************************************************************************/
+/***/ "./node_modules/@nextcloud/event-bus/node_modules/core-js/modules/web.dom-collections.iterator.js":
+/*!********************************************************************************************************!*\
+ !*** ./node_modules/@nextcloud/event-bus/node_modules/core-js/modules/web.dom-collections.iterator.js ***!
+ \********************************************************************************************************/
/*! no static exports found */
/***/ (function(module, exports, __webpack_require__) {
-var global = __webpack_require__(/*! ../internals/global */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/global.js");
-var DOMIterables = __webpack_require__(/*! ../internals/dom-iterables */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/dom-iterables.js");
-var ArrayIteratorMethods = __webpack_require__(/*! ../modules/es.array.iterator */ "./node_modules/@nextcloud/auth/node_modules/core-js/modules/es.array.iterator.js");
-var createNonEnumerableProperty = __webpack_require__(/*! ../internals/create-non-enumerable-property */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/create-non-enumerable-property.js");
-var wellKnownSymbol = __webpack_require__(/*! ../internals/well-known-symbol */ "./node_modules/@nextcloud/auth/node_modules/core-js/internals/well-known-symbol.js");
+var global = __webpack_require__(/*! ../internals/global */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/global.js");
+var DOMIterables = __webpack_require__(/*! ../internals/dom-iterables */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/dom-iterables.js");
+var ArrayIteratorMethods = __webpack_require__(/*! ../modules/es.array.iterator */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/modules/es.array.iterator.js");
+var createNonEnumerableProperty = __webpack_require__(/*! ../internals/create-non-enumerable-property */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/create-non-enumerable-property.js");
+var wellKnownSymbol = __webpack_require__(/*! ../internals/well-known-symbol */ "./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/well-known-symbol.js");
var ITERATOR = wellKnownSymbol('iterator');
var TO_STRING_TAG = wellKnownSymbol('toStringTag');
@@ -3437,6 +3529,1614 @@ for (var COLLECTION_NAME in DOMIterables) {
/***/ }),
+/***/ "./node_modules/@nextcloud/event-bus/node_modules/semver/semver.js":
+/*!*************************************************************************!*\
+ !*** ./node_modules/@nextcloud/event-bus/node_modules/semver/semver.js ***!
+ \*************************************************************************/
+/*! no static exports found */
+/***/ (function(module, exports, __webpack_require__) {
+
+/* WEBPACK VAR INJECTION */(function(process) {exports = module.exports = SemVer
+
+var debug
+/* istanbul ignore next */
+if (typeof process === 'object' &&
+ process.env &&
+ process.env.NODE_DEBUG &&
+ /\bsemver\b/i.test(process.env.NODE_DEBUG)) {
+ debug = function () {
+ var args = Array.prototype.slice.call(arguments, 0)
+ args.unshift('SEMVER')
+ console.log.apply(console, args)
+ }
+} else {
+ debug = function () {}
+}
+
+// Note: this is the semver.org version of the spec that it implements
+// Not necessarily the package version of this code.
+exports.SEMVER_SPEC_VERSION = '2.0.0'
+
+var MAX_LENGTH = 256
+var MAX_SAFE_INTEGER = Number.MAX_SAFE_INTEGER ||
+ /* istanbul ignore next */ 9007199254740991
+
+// Max safe segment length for coercion.
+var MAX_SAFE_COMPONENT_LENGTH = 16
+
+// The actual regexps go on exports.re
+var re = exports.re = []
+var src = exports.src = []
+var t = exports.tokens = {}
+var R = 0
+
+function tok (n) {
+ t[n] = R++
+}
+
+// The following Regular Expressions can be used for tokenizing,
+// validating, and parsing SemVer version strings.
+
+// ## Numeric Identifier
+// A single `0`, or a non-zero digit followed by zero or more digits.
+
+tok('NUMERICIDENTIFIER')
+src[t.NUMERICIDENTIFIER] = '0|[1-9]\\d*'
+tok('NUMERICIDENTIFIERLOOSE')
+src[t.NUMERICIDENTIFIERLOOSE] = '[0-9]+'
+
+// ## Non-numeric Identifier
+// Zero or more digits, followed by a letter or hyphen, and then zero or
+// more letters, digits, or hyphens.
+
+tok('NONNUMERICIDENTIFIER')
+src[t.NONNUMERICIDENTIFIER] = '\\d*[a-zA-Z-][a-zA-Z0-9-]*'
+
+// ## Main Version
+// Three dot-separated numeric identifiers.
+
+tok('MAINVERSION')
+src[t.MAINVERSION] = '(' + src[t.NUMERICIDENTIFIER] + ')\\.' +
+ '(' + src[t.NUMERICIDENTIFIER] + ')\\.' +
+ '(' + src[t.NUMERICIDENTIFIER] + ')'
+
+tok('MAINVERSIONLOOSE')
+src[t.MAINVERSIONLOOSE] = '(' + src[t.NUMERICIDENTIFIERLOOSE] + ')\\.' +
+ '(' + src[t.NUMERICIDENTIFIERLOOSE] + ')\\.' +
+ '(' + src[t.NUMERICIDENTIFIERLOOSE] + ')'
+
+// ## Pre-release Version Identifier
+// A numeric identifier, or a non-numeric identifier.
+
+tok('PRERELEASEIDENTIFIER')
+src[t.PRERELEASEIDENTIFIER] = '(?:' + src[t.NUMERICIDENTIFIER] +
+ '|' + src[t.NONNUMERICIDENTIFIER] + ')'
+
+tok('PRERELEASEIDENTIFIERLOOSE')
+src[t.PRERELEASEIDENTIFIERLOOSE] = '(?:' + src[t.NUMERICIDENTIFIERLOOSE] +
+ '|' + src[t.NONNUMERICIDENTIFIER] + ')'
+
+// ## Pre-release Version
+// Hyphen, followed by one or more dot-separated pre-release version
+// identifiers.
+
+tok('PRERELEASE')
+src[t.PRERELEASE] = '(?:-(' + src[t.PRERELEASEIDENTIFIER] +
+ '(?:\\.' + src[t.PRERELEASEIDENTIFIER] + ')*))'
+
+tok('PRERELEASELOOSE')
+src[t.PRERELEASELOOSE] = '(?:-?(' + src[t.PRERELEASEIDENTIFIERLOOSE] +
+ '(?:\\.' + src[t.PRERELEASEIDENTIFIERLOOSE] + ')*))'
+
+// ## Build Metadata Identifier
+// Any combination of digits, letters, or hyphens.
+
+tok('BUILDIDENTIFIER')
+src[t.BUILDIDENTIFIER] = '[0-9A-Za-z-]+'
+
+// ## Build Metadata
+// Plus sign, followed by one or more period-separated build metadata
+// identifiers.
+
+tok('BUILD')
+src[t.BUILD] = '(?:\\+(' + src[t.BUILDIDENTIFIER] +
+ '(?:\\.' + src[t.BUILDIDENTIFIER] + ')*))'
+
+// ## Full Version String
+// A main version, followed optionally by a pre-release version and
+// build metadata.
+
+// Note that the only major, minor, patch, and pre-release sections of
+// the version string are capturing groups. The build metadata is not a
+// capturing group, because it should not ever be used in version
+// comparison.
+
+tok('FULL')
+tok('FULLPLAIN')
+src[t.FULLPLAIN] = 'v?' + src[t.MAINVERSION] +
+ src[t.PRERELEASE] + '?' +
+ src[t.BUILD] + '?'
+
+src[t.FULL] = '^' + src[t.FULLPLAIN] + '$'
+
+// like full, but allows v1.2.3 and =1.2.3, which people do sometimes.
+// also, 1.0.0alpha1 (prerelease without the hyphen) which is pretty
+// common in the npm registry.
+tok('LOOSEPLAIN')
+src[t.LOOSEPLAIN] = '[v=\\s]*' + src[t.MAINVERSIONLOOSE] +
+ src[t.PRERELEASELOOSE] + '?' +
+ src[t.BUILD] + '?'
+
+tok('LOOSE')
+src[t.LOOSE] = '^' + src[t.LOOSEPLAIN] + '$'
+
+tok('GTLT')
+src[t.GTLT] = '((?:<|>)?=?)'
+
+// Something like "2.*" or "1.2.x".
+// Note that "x.x" is a valid xRange identifer, meaning "any version"
+// Only the first item is strictly required.
+tok('XRANGEIDENTIFIERLOOSE')
+src[t.XRANGEIDENTIFIERLOOSE] = src[t.NUMERICIDENTIFIERLOOSE] + '|x|X|\\*'
+tok('XRANGEIDENTIFIER')
+src[t.XRANGEIDENTIFIER] = src[t.NUMERICIDENTIFIER] + '|x|X|\\*'
+
+tok('XRANGEPLAIN')
+src[t.XRANGEPLAIN] = '[v=\\s]*(' + src[t.XRANGEIDENTIFIER] + ')' +
+ '(?:\\.(' + src[t.XRANGEIDENTIFIER] + ')' +
+ '(?:\\.(' + src[t.XRANGEIDENTIFIER] + ')' +
+ '(?:' + src[t.PRERELEASE] + ')?' +
+ src[t.BUILD] + '?' +
+ ')?)?'
+
+tok('XRANGEPLAINLOOSE')
+src[t.XRANGEPLAINLOOSE] = '[v=\\s]*(' + src[t.XRANGEIDENTIFIERLOOSE] + ')' +
+ '(?:\\.(' + src[t.XRANGEIDENTIFIERLOOSE] + ')' +
+ '(?:\\.(' + src[t.XRANGEIDENTIFIERLOOSE] + ')' +
+ '(?:' + src[t.PRERELEASELOOSE] + ')?' +
+ src[t.BUILD] + '?' +
+ ')?)?'
+
+tok('XRANGE')
+src[t.XRANGE] = '^' + src[t.GTLT] + '\\s*' + src[t.XRANGEPLAIN] + '$'
+tok('XRANGELOOSE')
+src[t.XRANGELOOSE] = '^' + src[t.GTLT] + '\\s*' + src[t.XRANGEPLAINLOOSE] + '$'
+
+// Coercion.
+// Extract anything that could conceivably be a part of a valid semver
+tok('COERCE')
+src[t.COERCE] = '(^|[^\\d])' +
+ '(\\d{1,' + MAX_SAFE_COMPONENT_LENGTH + '})' +
+ '(?:\\.(\\d{1,' + MAX_SAFE_COMPONENT_LENGTH + '}))?' +
+ '(?:\\.(\\d{1,' + MAX_SAFE_COMPONENT_LENGTH + '}))?' +
+ '(?:$|[^\\d])'
+tok('COERCERTL')
+re[t.COERCERTL] = new RegExp(src[t.COERCE], 'g')
+
+// Tilde ranges.
+// Meaning is "reasonably at or greater than"
+tok('LONETILDE')
+src[t.LONETILDE] = '(?:~>?)'
+
+tok('TILDETRIM')
+src[t.TILDETRIM] = '(\\s*)' + src[t.LONETILDE] + '\\s+'
+re[t.TILDETRIM] = new RegExp(src[t.TILDETRIM], 'g')
+var tildeTrimReplace = '$1~'
+
+tok('TILDE')
+src[t.TILDE] = '^' + src[t.LONETILDE] + src[t.XRANGEPLAIN] + '$'
+tok('TILDELOOSE')
+src[t.TILDELOOSE] = '^' + src[t.LONETILDE] + src[t.XRANGEPLAINLOOSE] + '$'
+
+// Caret ranges.
+// Meaning is "at least and backwards compatible with"
+tok('LONECARET')
+src[t.LONECARET] = '(?:\\^)'
+
+tok('CARETTRIM')
+src[t.CARETTRIM] = '(\\s*)' + src[t.LONECARET] + '\\s+'
+re[t.CARETTRIM] = new RegExp(src[t.CARETTRIM], 'g')
+var caretTrimReplace = '$1^'
+
+tok('CARET')
+src[t.CARET] = '^' + src[t.LONECARET] + src[t.XRANGEPLAIN] + '$'
+tok('CARETLOOSE')
+src[t.CARETLOOSE] = '^' + src[t.LONECARET] + src[t.XRANGEPLAINLOOSE] + '$'
+
+// A simple gt/lt/eq thing, or just "" to indicate "any version"
+tok('COMPARATORLOOSE')
+src[t.COMPARATORLOOSE] = '^' + src[t.GTLT] + '\\s*(' + src[t.LOOSEPLAIN] + ')$|^$'
+tok('COMPARATOR')
+src[t.COMPARATOR] = '^' + src[t.GTLT] + '\\s*(' + src[t.FULLPLAIN] + ')$|^$'
+
+// An expression to strip any whitespace between the gtlt and the thing
+// it modifies, so that `> 1.2.3` ==> `>1.2.3`
+tok('COMPARATORTRIM')
+src[t.COMPARATORTRIM] = '(\\s*)' + src[t.GTLT] +
+ '\\s*(' + src[t.LOOSEPLAIN] + '|' + src[t.XRANGEPLAIN] + ')'
+
+// this one has to use the /g flag
+re[t.COMPARATORTRIM] = new RegExp(src[t.COMPARATORTRIM], 'g')
+var comparatorTrimReplace = '$1$2$3'
+
+// Something like `1.2.3 - 1.2.4`
+// Note that these all use the loose form, because they'll be
+// checked against either the strict or loose comparator form
+// later.
+tok('HYPHENRANGE')
+src[t.HYPHENRANGE] = '^\\s*(' + src[t.XRANGEPLAIN] + ')' +
+ '\\s+-\\s+' +
+ '(' + src[t.XRANGEPLAIN] + ')' +
+ '\\s*$'
+
+tok('HYPHENRANGELOOSE')
+src[t.HYPHENRANGELOOSE] = '^\\s*(' + src[t.XRANGEPLAINLOOSE] + ')' +
+ '\\s+-\\s+' +
+ '(' + src[t.XRANGEPLAINLOOSE] + ')' +
+ '\\s*$'
+
+// Star ranges basically just allow anything at all.
+tok('STAR')
+src[t.STAR] = '(<|>)?=?\\s*\\*'
+
+// Compile to actual regexp objects.
+// All are flag-free, unless they were created above with a flag.
+for (var i = 0; i < R; i++) {
+ debug(i, src[i])
+ if (!re[i]) {
+ re[i] = new RegExp(src[i])
+ }
+}
+
+exports.parse = parse
+function parse (version, options) {
+ if (!options || typeof options !== 'object') {
+ options = {
+ loose: !!options,
+ includePrerelease: false
+ }
+ }
+
+ if (version instanceof SemVer) {
+ return version
+ }
+
+ if (typeof version !== 'string') {
+ return null
+ }
+
+ if (version.length > MAX_LENGTH) {
+ return null
+ }
+
+ var r = options.loose ? re[t.LOOSE] : re[t.FULL]
+ if (!r.test(version)) {
+ return null
+ }
+
+ try {
+ return new SemVer(version, options)
+ } catch (er) {
+ return null
+ }
+}
+
+exports.valid = valid
+function valid (version, options) {
+ var v = parse(version, options)
+ return v ? v.version : null
+}
+
+exports.clean = clean
+function clean (version, options) {
+ var s = parse(version.trim().replace(/^[=v]+/, ''), options)
+ return s ? s.version : null
+}
+
+exports.SemVer = SemVer
+
+function SemVer (version, options) {
+ if (!options || typeof options !== 'object') {
+ options = {
+ loose: !!options,
+ includePrerelease: false
+ }
+ }
+ if (version instanceof SemVer) {
+ if (version.loose === options.loose) {
+ return version
+ } else {
+ version = version.version
+ }
+ } else if (typeof version !== 'string') {
+ throw new TypeError('Invalid Version: ' + version)
+ }
+
+ if (version.length > MAX_LENGTH) {
+ throw new TypeError('version is longer than ' + MAX_LENGTH + ' characters')
+ }
+
+ if (!(this instanceof SemVer)) {
+ return new SemVer(version, options)
+ }
+
+ debug('SemVer', version, options)
+ this.options = options
+ this.loose = !!options.loose
+
+ var m = version.trim().match(options.loose ? re[t.LOOSE] : re[t.FULL])
+
+ if (!m) {
+ throw new TypeError('Invalid Version: ' + version)
+ }
+
+ this.raw = version
+
+ // these are actually numbers
+ this.major = +m[1]
+ this.minor = +m[2]
+ this.patch = +m[3]
+
+ if (this.major > MAX_SAFE_INTEGER || this.major < 0) {
+ throw new TypeError('Invalid major version')
+ }
+
+ if (this.minor > MAX_SAFE_INTEGER || this.minor < 0) {
+ throw new TypeError('Invalid minor version')
+ }
+
+ if (this.patch > MAX_SAFE_INTEGER || this.patch < 0) {
+ throw new TypeError('Invalid patch version')
+ }
+
+ // numberify any prerelease numeric ids
+ if (!m[4]) {
+ this.prerelease = []
+ } else {
+ this.prerelease = m[4].split('.').map(function (id) {
+ if (/^[0-9]+$/.test(id)) {
+ var num = +id
+ if (num >= 0 && num < MAX_SAFE_INTEGER) {
+ return num
+ }
+ }
+ return id
+ })
+ }
+
+ this.build = m[5] ? m[5].split('.') : []
+ this.format()
+}
+
+SemVer.prototype.format = function () {
+ this.version = this.major + '.' + this.minor + '.' + this.patch
+ if (this.prerelease.length) {
+ this.version += '-' + this.prerelease.join('.')
+ }
+ return this.version
+}
+
+SemVer.prototype.toString = function () {
+ return this.version
+}
+
+SemVer.prototype.compare = function (other) {
+ debug('SemVer.compare', this.version, this.options, other)
+ if (!(other instanceof SemVer)) {
+ other = new SemVer(other, this.options)
+ }
+
+ return this.compareMain(other) || this.comparePre(other)
+}
+
+SemVer.prototype.compareMain = function (other) {
+ if (!(other instanceof SemVer)) {
+ other = new SemVer(other, this.options)
+ }
+
+ return compareIdentifiers(this.major, other.major) ||
+ compareIdentifiers(this.minor, other.minor) ||
+ compareIdentifiers(this.patch, other.patch)
+}
+
+SemVer.prototype.comparePre = function (other) {
+ if (!(other instanceof SemVer)) {
+ other = new SemVer(other, this.options)
+ }
+
+ // NOT having a prerelease is > having one
+ if (this.prerelease.length && !other.prerelease.length) {
+ return -1
+ } else if (!this.prerelease.length && other.prerelease.length) {
+ return 1
+ } else if (!this.prerelease.length && !other.prerelease.length) {
+ return 0
+ }
+
+ var i = 0
+ do {
+ var a = this.prerelease[i]
+ var b = other.prerelease[i]
+ debug('prerelease compare', i, a, b)
+ if (a === undefined && b === undefined) {
+ return 0
+ } else if (b === undefined) {
+ return 1
+ } else if (a === undefined) {
+ return -1
+ } else if (a === b) {
+ continue
+ } else {
+ return compareIdentifiers(a, b)
+ }
+ } while (++i)
+}
+
+SemVer.prototype.compareBuild = function (other) {
+ if (!(other instanceof SemVer)) {
+ other = new SemVer(other, this.options)
+ }
+
+ var i = 0
+ do {
+ var a = this.build[i]
+ var b = other.build[i]
+ debug('prerelease compare', i, a, b)
+ if (a === undefined && b === undefined) {
+ return 0
+ } else if (b === undefined) {
+ return 1
+ } else if (a === undefined) {
+ return -1
+ } else if (a === b) {
+ continue
+ } else {
+ return compareIdentifiers(a, b)
+ }
+ } while (++i)
+}
+
+// preminor will bump the version up to the next minor release, and immediately
+// down to pre-release. premajor and prepatch work the same way.
+SemVer.prototype.inc = function (release, identifier) {
+ switch (release) {
+ case 'premajor':
+ this.prerelease.length = 0
+ this.patch = 0
+ this.minor = 0
+ this.major++
+ this.inc('pre', identifier)
+ break
+ case 'preminor':
+ this.prerelease.length = 0
+ this.patch = 0
+ this.minor++
+ this.inc('pre', identifier)
+ break
+ case 'prepatch':
+ // If this is already a prerelease, it will bump to the next version
+ // drop any prereleases that might already exist, since they are not
+ // relevant at this point.
+ this.prerelease.length = 0
+ this.inc('patch', identifier)
+ this.inc('pre', identifier)
+ break
+ // If the input is a non-prerelease version, this acts the same as
+ // prepatch.
+ case 'prerelease':
+ if (this.prerelease.length === 0) {
+ this.inc('patch', identifier)
+ }
+ this.inc('pre', identifier)
+ break
+
+ case 'major':
+ // If this is a pre-major version, bump up to the same major version.
+ // Otherwise increment major.
+ // 1.0.0-5 bumps to 1.0.0
+ // 1.1.0 bumps to 2.0.0
+ if (this.minor !== 0 ||
+ this.patch !== 0 ||
+ this.prerelease.length === 0) {
+ this.major++
+ }
+ this.minor = 0
+ this.patch = 0
+ this.prerelease = []
+ break
+ case 'minor':
+ // If this is a pre-minor version, bump up to the same minor version.
+ // Otherwise increment minor.
+ // 1.2.0-5 bumps to 1.2.0
+ // 1.2.1 bumps to 1.3.0
+ if (this.patch !== 0 || this.prerelease.length === 0) {
+ this.minor++
+ }
+ this.patch = 0
+ this.prerelease = []
+ break
+ case 'patch':
+ // If this is not a pre-release version, it will increment the patch.
+ // If it is a pre-release it will bump up to the same patch version.
+ // 1.2.0-5 patches to 1.2.0
+ // 1.2.0 patches to 1.2.1
+ if (this.prerelease.length === 0) {
+ this.patch++
+ }
+ this.prerelease = []
+ break
+ // This probably shouldn't be used publicly.
+ // 1.0.0 "pre" would become 1.0.0-0 which is the wrong direction.
+ case 'pre':
+ if (this.prerelease.length === 0) {
+ this.prerelease = [0]
+ } else {
+ var i = this.prerelease.length
+ while (--i >= 0) {
+ if (typeof this.prerelease[i] === 'number') {
+ this.prerelease[i]++
+ i = -2
+ }
+ }
+ if (i === -1) {
+ // didn't increment anything
+ this.prerelease.push(0)
+ }
+ }
+ if (identifier) {
+ // 1.2.0-beta.1 bumps to 1.2.0-beta.2,
+ // 1.2.0-beta.fooblz or 1.2.0-beta bumps to 1.2.0-beta.0
+ if (this.prerelease[0] === identifier) {
+ if (isNaN(this.prerelease[1])) {
+ this.prerelease = [identifier, 0]
+ }
+ } else {
+ this.prerelease = [identifier, 0]
+ }
+ }
+ break
+
+ default:
+ throw new Error('invalid increment argument: ' + release)
+ }
+ this.format()
+ this.raw = this.version
+ return this
+}
+
+exports.inc = inc
+function inc (version, release, loose, identifier) {
+ if (typeof (loose) === 'string') {
+ identifier = loose
+ loose = undefined
+ }
+
+ try {
+ return new SemVer(version, loose).inc(release, identifier).version
+ } catch (er) {
+ return null
+ }
+}
+
+exports.diff = diff
+function diff (version1, version2) {
+ if (eq(version1, version2)) {
+ return null
+ } else {
+ var v1 = parse(version1)
+ var v2 = parse(version2)
+ var prefix = ''
+ if (v1.prerelease.length || v2.prerelease.length) {
+ prefix = 'pre'
+ var defaultResult = 'prerelease'
+ }
+ for (var key in v1) {
+ if (key === 'major' || key === 'minor' || key === 'patch') {
+ if (v1[key] !== v2[key]) {
+ return prefix + key
+ }
+ }
+ }
+ return defaultResult // may be undefined
+ }
+}
+
+exports.compareIdentifiers = compareIdentifiers
+
+var numeric = /^[0-9]+$/
+function compareIdentifiers (a, b) {
+ var anum = numeric.test(a)
+ var bnum = numeric.test(b)
+
+ if (anum && bnum) {
+ a = +a
+ b = +b
+ }
+
+ return a === b ? 0
+ : (anum && !bnum) ? -1
+ : (bnum && !anum) ? 1
+ : a < b ? -1
+ : 1
+}
+
+exports.rcompareIdentifiers = rcompareIdentifiers
+function rcompareIdentifiers (a, b) {
+ return compareIdentifiers(b, a)
+}
+
+exports.major = major
+function major (a, loose) {
+ return new SemVer(a, loose).major
+}
+
+exports.minor = minor
+function minor (a, loose) {
+ return new SemVer(a, loose).minor
+}
+
+exports.patch = patch
+function patch (a, loose) {
+ return new SemVer(a, loose).patch
+}
+
+exports.compare = compare
+function compare (a, b, loose) {
+ return new SemVer(a, loose).compare(new SemVer(b, loose))
+}
+
+exports.compareLoose = compareLoose
+function compareLoose (a, b) {
+ return compare(a, b, true)
+}
+
+exports.compareBuild = compareBuild
+function compareBuild (a, b, loose) {
+ var versionA = new SemVer(a, loose)
+ var versionB = new SemVer(b, loose)
+ return versionA.compare(versionB) || versionA.compareBuild(versionB)
+}
+
+exports.rcompare = rcompare
+function rcompare (a, b, loose) {
+ return compare(b, a, loose)
+}
+
+exports.sort = sort
+function sort (list, loose) {
+ return list.sort(function (a, b) {
+ return exports.compareBuild(a, b, loose)
+ })
+}
+
+exports.rsort = rsort
+function rsort (list, loose) {
+ return list.sort(function (a, b) {
+ return exports.compareBuild(b, a, loose)
+ })
+}
+
+exports.gt = gt
+function gt (a, b, loose) {
+ return compare(a, b, loose) > 0
+}
+
+exports.lt = lt
+function lt (a, b, loose) {
+ return compare(a, b, loose) < 0
+}
+
+exports.eq = eq
+function eq (a, b, loose) {
+ return compare(a, b, loose) === 0
+}
+
+exports.neq = neq
+function neq (a, b, loose) {
+ return compare(a, b, loose) !== 0
+}
+
+exports.gte = gte
+function gte (a, b, loose) {
+ return compare(a, b, loose) >= 0
+}
+
+exports.lte = lte
+function lte (a, b, loose) {
+ return compare(a, b, loose) <= 0
+}
+
+exports.cmp = cmp
+function cmp (a, op, b, loose) {
+ switch (op) {
+ case '===':
+ if (typeof a === 'object')
+ a = a.version
+ if (typeof b === 'object')
+ b = b.version
+ return a === b
+
+ case '!==':
+ if (typeof a === 'object')
+ a = a.version
+ if (typeof b === 'object')
+ b = b.version
+ return a !== b
+
+ case '':
+ case '=':
+ case '==':
+ return eq(a, b, loose)
+
+ case '!=':
+ return neq(a, b, loose)
+
+ case '>':
+ return gt(a, b, loose)
+
+ case '>=':
+ return gte(a, b, loose)
+
+ case '<':
+ return lt(a, b, loose)
+
+ case '<=':
+ return lte(a, b, loose)
+
+ default:
+ throw new TypeError('Invalid operator: ' + op)
+ }
+}
+
+exports.Comparator = Comparator
+function Comparator (comp, options) {
+ if (!options || typeof options !== 'object') {
+ options = {
+ loose: !!options,
+ includePrerelease: false
+ }
+ }
+
+ if (comp instanceof Comparator) {
+ if (comp.loose === !!options.loose) {
+ return comp
+ } else {
+ comp = comp.value
+ }
+ }
+
+ if (!(this instanceof Comparator)) {
+ return new Comparator(comp, options)
+ }
+
+ debug('comparator', comp, options)
+ this.options = options
+ this.loose = !!options.loose
+ this.parse(comp)
+
+ if (this.semver === ANY) {
+ this.value = ''
+ } else {
+ this.value = this.operator + this.semver.version
+ }
+
+ debug('comp', this)
+}
+
+var ANY = {}
+Comparator.prototype.parse = function (comp) {
+ var r = this.options.loose ? re[t.COMPARATORLOOSE] : re[t.COMPARATOR]
+ var m = comp.match(r)
+
+ if (!m) {
+ throw new TypeError('Invalid comparator: ' + comp)
+ }
+
+ this.operator = m[1] !== undefined ? m[1] : ''
+ if (this.operator === '=') {
+ this.operator = ''
+ }
+
+ // if it literally is just '>' or '' then allow anything.
+ if (!m[2]) {
+ this.semver = ANY
+ } else {
+ this.semver = new SemVer(m[2], this.options.loose)
+ }
+}
+
+Comparator.prototype.toString = function () {
+ return this.value
+}
+
+Comparator.prototype.test = function (version) {
+ debug('Comparator.test', version, this.options.loose)
+
+ if (this.semver === ANY || version === ANY) {
+ return true
+ }
+
+ if (typeof version === 'string') {
+ try {
+ version = new SemVer(version, this.options)
+ } catch (er) {
+ return false
+ }
+ }
+
+ return cmp(version, this.operator, this.semver, this.options)
+}
+
+Comparator.prototype.intersects = function (comp, options) {
+ if (!(comp instanceof Comparator)) {
+ throw new TypeError('a Comparator is required')
+ }
+
+ if (!options || typeof options !== 'object') {
+ options = {
+ loose: !!options,
+ includePrerelease: false
+ }
+ }
+
+ var rangeTmp
+
+ if (this.operator === '') {
+ if (this.value === '') {
+ return true
+ }
+ rangeTmp = new Range(comp.value, options)
+ return satisfies(this.value, rangeTmp, options)
+ } else if (comp.operator === '') {
+ if (comp.value === '') {
+ return true
+ }
+ rangeTmp = new Range(this.value, options)
+ return satisfies(comp.semver, rangeTmp, options)
+ }
+
+ var sameDirectionIncreasing =
+ (this.operator === '>=' || this.operator === '>') &&
+ (comp.operator === '>=' || comp.operator === '>')
+ var sameDirectionDecreasing =
+ (this.operator === '<=' || this.operator === '<') &&
+ (comp.operator === '<=' || comp.operator === '<')
+ var sameSemVer = this.semver.version === comp.semver.version
+ var differentDirectionsInclusive =
+ (this.operator === '>=' || this.operator === '<=') &&
+ (comp.operator === '>=' || comp.operator === '<=')
+ var oppositeDirectionsLessThan =
+ cmp(this.semver, '<', comp.semver, options) &&
+ ((this.operator === '>=' || this.operator === '>') &&
+ (comp.operator === '<=' || comp.operator === '<'))
+ var oppositeDirectionsGreaterThan =
+ cmp(this.semver, '>', comp.semver, options) &&
+ ((this.operator === '<=' || this.operator === '<') &&
+ (comp.operator === '>=' || comp.operator === '>'))
+
+ return sameDirectionIncreasing || sameDirectionDecreasing ||
+ (sameSemVer && differentDirectionsInclusive) ||
+ oppositeDirectionsLessThan || oppositeDirectionsGreaterThan
+}
+
+exports.Range = Range
+function Range (range, options) {
+ if (!options || typeof options !== 'object') {
+ options = {
+ loose: !!options,
+ includePrerelease: false
+ }
+ }
+
+ if (range instanceof Range) {
+ if (range.loose === !!options.loose &&
+ range.includePrerelease === !!options.includePrerelease) {
+ return range
+ } else {
+ return new Range(range.raw, options)
+ }
+ }
+
+ if (range instanceof Comparator) {
+ return new Range(range.value, options)
+ }
+
+ if (!(this instanceof Range)) {
+ return new Range(range, options)
+ }
+
+ this.options = options
+ this.loose = !!options.loose
+ this.includePrerelease = !!options.includePrerelease
+
+ // First, split based on boolean or ||
+ this.raw = range
+ this.set = range.split(/\s*\|\|\s*/).map(function (range) {
+ return this.parseRange(range.trim())
+ }, this).filter(function (c) {
+ // throw out any that are not relevant for whatever reason
+ return c.length
+ })
+
+ if (!this.set.length) {
+ throw new TypeError('Invalid SemVer Range: ' + range)
+ }
+
+ this.format()
+}
+
+Range.prototype.format = function () {
+ this.range = this.set.map(function (comps) {
+ return comps.join(' ').trim()
+ }).join('||').trim()
+ return this.range
+}
+
+Range.prototype.toString = function () {
+ return this.range
+}
+
+Range.prototype.parseRange = function (range) {
+ var loose = this.options.loose
+ range = range.trim()
+ // `1.2.3 - 1.2.4` => `>=1.2.3 <=1.2.4`
+ var hr = loose ? re[t.HYPHENRANGELOOSE] : re[t.HYPHENRANGE]
+ range = range.replace(hr, hyphenReplace)
+ debug('hyphen replace', range)
+ // `> 1.2.3 < 1.2.5` => `>1.2.3 <1.2.5`
+ range = range.replace(re[t.COMPARATORTRIM], comparatorTrimReplace)
+ debug('comparator trim', range, re[t.COMPARATORTRIM])
+
+ // `~ 1.2.3` => `~1.2.3`
+ range = range.replace(re[t.TILDETRIM], tildeTrimReplace)
+
+ // `^ 1.2.3` => `^1.2.3`
+ range = range.replace(re[t.CARETTRIM], caretTrimReplace)
+
+ // normalize spaces
+ range = range.split(/\s+/).join(' ')
+
+ // At this point, the range is completely trimmed and
+ // ready to be split into comparators.
+
+ var compRe = loose ? re[t.COMPARATORLOOSE] : re[t.COMPARATOR]
+ var set = range.split(' ').map(function (comp) {
+ return parseComparator(comp, this.options)
+ }, this).join(' ').split(/\s+/)
+ if (this.options.loose) {
+ // in loose mode, throw out any that are not valid comparators
+ set = set.filter(function (comp) {
+ return !!comp.match(compRe)
+ })
+ }
+ set = set.map(function (comp) {
+ return new Comparator(comp, this.options)
+ }, this)
+
+ return set
+}
+
+Range.prototype.intersects = function (range, options) {
+ if (!(range instanceof Range)) {
+ throw new TypeError('a Range is required')
+ }
+
+ return this.set.some(function (thisComparators) {
+ return (
+ isSatisfiable(thisComparators, options) &&
+ range.set.some(function (rangeComparators) {
+ return (
+ isSatisfiable(rangeComparators, options) &&
+ thisComparators.every(function (thisComparator) {
+ return rangeComparators.every(function (rangeComparator) {
+ return thisComparator.intersects(rangeComparator, options)
+ })
+ })
+ )
+ })
+ )
+ })
+}
+
+// take a set of comparators and determine whether there
+// exists a version which can satisfy it
+function isSatisfiable (comparators, options) {
+ var result = true
+ var remainingComparators = comparators.slice()
+ var testComparator = remainingComparators.pop()
+
+ while (result && remainingComparators.length) {
+ result = remainingComparators.every(function (otherComparator) {
+ return testComparator.intersects(otherComparator, options)
+ })
+
+ testComparator = remainingComparators.pop()
+ }
+
+ return result
+}
+
+// Mostly just for testing and legacy API reasons
+exports.toComparators = toComparators
+function toComparators (range, options) {
+ return new Range(range, options).set.map(function (comp) {
+ return comp.map(function (c) {
+ return c.value
+ }).join(' ').trim().split(' ')
+ })
+}
+
+// comprised of xranges, tildes, stars, and gtlt's at this point.
+// already replaced the hyphen ranges
+// turn into a set of JUST comparators.
+function parseComparator (comp, options) {
+ debug('comp', comp, options)
+ comp = replaceCarets(comp, options)
+ debug('caret', comp)
+ comp = replaceTildes(comp, options)
+ debug('tildes', comp)
+ comp = replaceXRanges(comp, options)
+ debug('xrange', comp)
+ comp = replaceStars(comp, options)
+ debug('stars', comp)
+ return comp
+}
+
+function isX (id) {
+ return !id || id.toLowerCase() === 'x' || id === '*'
+}
+
+// ~, ~> --> * (any, kinda silly)
+// ~2, ~2.x, ~2.x.x, ~>2, ~>2.x ~>2.x.x --> >=2.0.0 <3.0.0
+// ~2.0, ~2.0.x, ~>2.0, ~>2.0.x --> >=2.0.0 <2.1.0
+// ~1.2, ~1.2.x, ~>1.2, ~>1.2.x --> >=1.2.0 <1.3.0
+// ~1.2.3, ~>1.2.3 --> >=1.2.3 <1.3.0
+// ~1.2.0, ~>1.2.0 --> >=1.2.0 <1.3.0
+function replaceTildes (comp, options) {
+ return comp.trim().split(/\s+/).map(function (comp) {
+ return replaceTilde(comp, options)
+ }).join(' ')
+}
+
+function replaceTilde (comp, options) {
+ var r = options.loose ? re[t.TILDELOOSE] : re[t.TILDE]
+ return comp.replace(r, function (_, M, m, p, pr) {
+ debug('tilde', comp, _, M, m, p, pr)
+ var ret
+
+ if (isX(M)) {
+ ret = ''
+ } else if (isX(m)) {
+ ret = '>=' + M + '.0.0 <' + (+M + 1) + '.0.0'
+ } else if (isX(p)) {
+ // ~1.2 == >=1.2.0 <1.3.0
+ ret = '>=' + M + '.' + m + '.0 <' + M + '.' + (+m + 1) + '.0'
+ } else if (pr) {
+ debug('replaceTilde pr', pr)
+ ret = '>=' + M + '.' + m + '.' + p + '-' + pr +
+ ' <' + M + '.' + (+m + 1) + '.0'
+ } else {
+ // ~1.2.3 == >=1.2.3 <1.3.0
+ ret = '>=' + M + '.' + m + '.' + p +
+ ' <' + M + '.' + (+m + 1) + '.0'
+ }
+
+ debug('tilde return', ret)
+ return ret
+ })
+}
+
+// ^ --> * (any, kinda silly)
+// ^2, ^2.x, ^2.x.x --> >=2.0.0 <3.0.0
+// ^2.0, ^2.0.x --> >=2.0.0 <3.0.0
+// ^1.2, ^1.2.x --> >=1.2.0 <2.0.0
+// ^1.2.3 --> >=1.2.3 <2.0.0
+// ^1.2.0 --> >=1.2.0 <2.0.0
+function replaceCarets (comp, options) {
+ return comp.trim().split(/\s+/).map(function (comp) {
+ return replaceCaret(comp, options)
+ }).join(' ')
+}
+
+function replaceCaret (comp, options) {
+ debug('caret', comp, options)
+ var r = options.loose ? re[t.CARETLOOSE] : re[t.CARET]
+ return comp.replace(r, function (_, M, m, p, pr) {
+ debug('caret', comp, _, M, m, p, pr)
+ var ret
+
+ if (isX(M)) {
+ ret = ''
+ } else if (isX(m)) {
+ ret = '>=' + M + '.0.0 <' + (+M + 1) + '.0.0'
+ } else if (isX(p)) {
+ if (M === '0') {
+ ret = '>=' + M + '.' + m + '.0 <' + M + '.' + (+m + 1) + '.0'
+ } else {
+ ret = '>=' + M + '.' + m + '.0 <' + (+M + 1) + '.0.0'
+ }
+ } else if (pr) {
+ debug('replaceCaret pr', pr)
+ if (M === '0') {
+ if (m === '0') {
+ ret = '>=' + M + '.' + m + '.' + p + '-' + pr +
+ ' <' + M + '.' + m + '.' + (+p + 1)
+ } else {
+ ret = '>=' + M + '.' + m + '.' + p + '-' + pr +
+ ' <' + M + '.' + (+m + 1) + '.0'
+ }
+ } else {
+ ret = '>=' + M + '.' + m + '.' + p + '-' + pr +
+ ' <' + (+M + 1) + '.0.0'
+ }
+ } else {
+ debug('no pr')
+ if (M === '0') {
+ if (m === '0') {
+ ret = '>=' + M + '.' + m + '.' + p +
+ ' <' + M + '.' + m + '.' + (+p + 1)
+ } else {
+ ret = '>=' + M + '.' + m + '.' + p +
+ ' <' + M + '.' + (+m + 1) + '.0'
+ }
+ } else {
+ ret = '>=' + M + '.' + m + '.' + p +
+ ' <' + (+M + 1) + '.0.0'
+ }
+ }
+
+ debug('caret return', ret)
+ return ret
+ })
+}
+
+function replaceXRanges (comp, options) {
+ debug('replaceXRanges', comp, options)
+ return comp.split(/\s+/).map(function (comp) {
+ return replaceXRange(comp, options)
+ }).join(' ')
+}
+
+function replaceXRange (comp, options) {
+ comp = comp.trim()
+ var r = options.loose ? re[t.XRANGELOOSE] : re[t.XRANGE]
+ return comp.replace(r, function (ret, gtlt, M, m, p, pr) {
+ debug('xRange', comp, ret, gtlt, M, m, p, pr)
+ var xM = isX(M)
+ var xm = xM || isX(m)
+ var xp = xm || isX(p)
+ var anyX = xp
+
+ if (gtlt === '=' && anyX) {
+ gtlt = ''
+ }
+
+ // if we're including prereleases in the match, then we need
+ // to fix this to -0, the lowest possible prerelease value
+ pr = options.includePrerelease ? '-0' : ''
+
+ if (xM) {
+ if (gtlt === '>' || gtlt === '<') {
+ // nothing is allowed
+ ret = '<0.0.0-0'
+ } else {
+ // nothing is forbidden
+ ret = '*'
+ }
+ } else if (gtlt && anyX) {
+ // we know patch is an x, because we have any x at all.
+ // replace X with 0
+ if (xm) {
+ m = 0
+ }
+ p = 0
+
+ if (gtlt === '>') {
+ // >1 => >=2.0.0
+ // >1.2 => >=1.3.0
+ // >1.2.3 => >= 1.2.4
+ gtlt = '>='
+ if (xm) {
+ M = +M + 1
+ m = 0
+ p = 0
+ } else {
+ m = +m + 1
+ p = 0
+ }
+ } else if (gtlt === '<=') {
+ // <=0.7.x is actually <0.8.0, since any 0.7.x should
+ // pass. Similarly, <=7.x is actually <8.0.0, etc.
+ gtlt = '<'
+ if (xm) {
+ M = +M + 1
+ } else {
+ m = +m + 1
+ }
+ }
+
+ ret = gtlt + M + '.' + m + '.' + p + pr
+ } else if (xm) {
+ ret = '>=' + M + '.0.0' + pr + ' <' + (+M + 1) + '.0.0' + pr
+ } else if (xp) {
+ ret = '>=' + M + '.' + m + '.0' + pr +
+ ' <' + M + '.' + (+m + 1) + '.0' + pr
+ }
+
+ debug('xRange return', ret)
+
+ return ret
+ })
+}
+
+// Because * is AND-ed with everything else in the comparator,
+// and '' means "any version", just remove the *s entirely.
+function replaceStars (comp, options) {
+ debug('replaceStars', comp, options)
+ // Looseness is ignored here. star is always as loose as it gets!
+ return comp.trim().replace(re[t.STAR], '')
+}
+
+// This function is passed to string.replace(re[t.HYPHENRANGE])
+// M, m, patch, prerelease, build
+// 1.2 - 3.4.5 => >=1.2.0 <=3.4.5
+// 1.2.3 - 3.4 => >=1.2.0 <3.5.0 Any 3.4.x will do
+// 1.2 - 3.4 => >=1.2.0 <3.5.0
+function hyphenReplace ($0,
+ from, fM, fm, fp, fpr, fb,
+ to, tM, tm, tp, tpr, tb) {
+ if (isX(fM)) {
+ from = ''
+ } else if (isX(fm)) {
+ from = '>=' + fM + '.0.0'
+ } else if (isX(fp)) {
+ from = '>=' + fM + '.' + fm + '.0'
+ } else {
+ from = '>=' + from
+ }
+
+ if (isX(tM)) {
+ to = ''
+ } else if (isX(tm)) {
+ to = '<' + (+tM + 1) + '.0.0'
+ } else if (isX(tp)) {
+ to = '<' + tM + '.' + (+tm + 1) + '.0'
+ } else if (tpr) {
+ to = '<=' + tM + '.' + tm + '.' + tp + '-' + tpr
+ } else {
+ to = '<=' + to
+ }
+
+ return (from + ' ' + to).trim()
+}
+
+// if ANY of the sets match ALL of its comparators, then pass
+Range.prototype.test = function (version) {
+ if (!version) {
+ return false
+ }
+
+ if (typeof version === 'string') {
+ try {
+ version = new SemVer(version, this.options)
+ } catch (er) {
+ return false
+ }
+ }
+
+ for (var i = 0; i < this.set.length; i++) {
+ if (testSet(this.set[i], version, this.options)) {
+ return true
+ }
+ }
+ return false
+}
+
+function testSet (set, version, options) {
+ for (var i = 0; i < set.length; i++) {
+ if (!set[i].test(version)) {
+ return false
+ }
+ }
+
+ if (version.prerelease.length && !options.includePrerelease) {
+ // Find the set of versions that are allowed to have prereleases
+ // For example, ^1.2.3-pr.1 desugars to >=1.2.3-pr.1 <2.0.0
+ // That should allow `1.2.3-pr.2` to pass.
+ // However, `1.2.4-alpha.notready` should NOT be allowed,
+ // even though it's within the range set by the comparators.
+ for (i = 0; i < set.length; i++) {
+ debug(set[i].semver)
+ if (set[i].semver === ANY) {
+ continue
+ }
+
+ if (set[i].semver.prerelease.length > 0) {
+ var allowed = set[i].semver
+ if (allowed.major === version.major &&
+ allowed.minor === version.minor &&
+ allowed.patch === version.patch) {
+ return true
+ }
+ }
+ }
+
+ // Version has a -pre, but it's not one of the ones we like.
+ return false
+ }
+
+ return true
+}
+
+exports.satisfies = satisfies
+function satisfies (version, range, options) {
+ try {
+ range = new Range(range, options)
+ } catch (er) {
+ return false
+ }
+ return range.test(version)
+}
+
+exports.maxSatisfying = maxSatisfying
+function maxSatisfying (versions, range, options) {
+ var max = null
+ var maxSV = null
+ try {
+ var rangeObj = new Range(range, options)
+ } catch (er) {
+ return null
+ }
+ versions.forEach(function (v) {
+ if (rangeObj.test(v)) {
+ // satisfies(v, range, options)
+ if (!max || maxSV.compare(v) === -1) {
+ // compare(max, v, true)
+ max = v
+ maxSV = new SemVer(max, options)
+ }
+ }
+ })
+ return max
+}
+
+exports.minSatisfying = minSatisfying
+function minSatisfying (versions, range, options) {
+ var min = null
+ var minSV = null
+ try {
+ var rangeObj = new Range(range, options)
+ } catch (er) {
+ return null
+ }
+ versions.forEach(function (v) {
+ if (rangeObj.test(v)) {
+ // satisfies(v, range, options)
+ if (!min || minSV.compare(v) === 1) {
+ // compare(min, v, true)
+ min = v
+ minSV = new SemVer(min, options)
+ }
+ }
+ })
+ return min
+}
+
+exports.minVersion = minVersion
+function minVersion (range, loose) {
+ range = new Range(range, loose)
+
+ var minver = new SemVer('0.0.0')
+ if (range.test(minver)) {
+ return minver
+ }
+
+ minver = new SemVer('0.0.0-0')
+ if (range.test(minver)) {
+ return minver
+ }
+
+ minver = null
+ for (var i = 0; i < range.set.length; ++i) {
+ var comparators = range.set[i]
+
+ comparators.forEach(function (comparator) {
+ // Clone to avoid manipulating the comparator's semver object.
+ var compver = new SemVer(comparator.semver.version)
+ switch (comparator.operator) {
+ case '>':
+ if (compver.prerelease.length === 0) {
+ compver.patch++
+ } else {
+ compver.prerelease.push(0)
+ }
+ compver.raw = compver.format()
+ /* fallthrough */
+ case '':
+ case '>=':
+ if (!minver || gt(minver, compver)) {
+ minver = compver
+ }
+ break
+ case '<':
+ case '<=':
+ /* Ignore maximum versions */
+ break
+ /* istanbul ignore next */
+ default:
+ throw new Error('Unexpected operation: ' + comparator.operator)
+ }
+ })
+ }
+
+ if (minver && range.test(minver)) {
+ return minver
+ }
+
+ return null
+}
+
+exports.validRange = validRange
+function validRange (range, options) {
+ try {
+ // Return '*' instead of '' so that truthiness works.
+ // This will throw if it's invalid anyway
+ return new Range(range, options).range || '*'
+ } catch (er) {
+ return null
+ }
+}
+
+// Determine if version is less than all the versions possible in the range
+exports.ltr = ltr
+function ltr (version, range, options) {
+ return outside(version, range, '<', options)
+}
+
+// Determine if version is greater than all the versions possible in the range.
+exports.gtr = gtr
+function gtr (version, range, options) {
+ return outside(version, range, '>', options)
+}
+
+exports.outside = outside
+function outside (version, range, hilo, options) {
+ version = new SemVer(version, options)
+ range = new Range(range, options)
+
+ var gtfn, ltefn, ltfn, comp, ecomp
+ switch (hilo) {
+ case '>':
+ gtfn = gt
+ ltefn = lte
+ ltfn = lt
+ comp = '>'
+ ecomp = '>='
+ break
+ case '<':
+ gtfn = lt
+ ltefn = gte
+ ltfn = gt
+ comp = '<'
+ ecomp = '<='
+ break
+ default:
+ throw new TypeError('Must provide a hilo val of "<" or ">"')
+ }
+
+ // If it satisifes the range it is not outside
+ if (satisfies(version, range, options)) {
+ return false
+ }
+
+ // From now on, variable terms are as if we're in "gtr" mode.
+ // but note that everything is flipped for the "ltr" function.
+
+ for (var i = 0; i < range.set.length; ++i) {
+ var comparators = range.set[i]
+
+ var high = null
+ var low = null
+
+ comparators.forEach(function (comparator) {
+ if (comparator.semver === ANY) {
+ comparator = new Comparator('>=0.0.0')
+ }
+ high = high || comparator
+ low = low || comparator
+ if (gtfn(comparator.semver, high.semver, options)) {
+ high = comparator
+ } else if (ltfn(comparator.semver, low.semver, options)) {
+ low = comparator
+ }
+ })
+
+ // If the edge version comparator has a operator then our version
+ // isn't outside it
+ if (high.operator === comp || high.operator === ecomp) {
+ return false
+ }
+
+ // If the lowest version comparator has an operator and our version
+ // is less than it then it isn't higher than the range
+ if ((!low.operator || low.operator === comp) &&
+ ltefn(version, low.semver)) {
+ return false
+ } else if (low.operator === ecomp && ltfn(version, low.semver)) {
+ return false
+ }
+ }
+ return true
+}
+
+exports.prerelease = prerelease
+function prerelease (version, options) {
+ var parsed = parse(version, options)
+ return (parsed && parsed.prerelease.length) ? parsed.prerelease : null
+}
+
+exports.intersects = intersects
+function intersects (r1, r2, options) {
+ r1 = new Range(r1, options)
+ r2 = new Range(r2, options)
+ return r1.intersects(r2)
+}
+
+exports.coerce = coerce
+function coerce (version, options) {
+ if (version instanceof SemVer) {
+ return version
+ }
+
+ if (typeof version === 'number') {
+ version = String(version)
+ }
+
+ if (typeof version !== 'string') {
+ return null
+ }
+
+ options = options || {}
+
+ var match = null
+ if (!options.rtl) {
+ match = version.match(re[t.COERCE])
+ } else {
+ // Find the right-most coercible string that does not share
+ // a terminus with a more left-ward coercible string.
+ // Eg, '1.2.3.4' wants to coerce '2.3.4', not '3.4' or '4'
+ //
+ // Walk through the string checking with a /g regexp
+ // Manually set the index so as to pick up overlapping matches.
+ // Stop when we get a match that ends at the string end, since no
+ // coercible string can be more right-ward without the same terminus.
+ var next
+ while ((next = re[t.COERCERTL].exec(version)) &&
+ (!match || match.index + match[0].length !== version.length)
+ ) {
+ if (!match ||
+ next.index + next[0].length !== match.index + match[0].length) {
+ match = next
+ }
+ re[t.COERCERTL].lastIndex = next.index + next[1].length + next[2].length
+ }
+ // leave it in a clean state
+ re[t.COERCERTL].lastIndex = -1
+ }
+
+ if (match === null) {
+ return null
+ }
+
+ return parse(match[2] +
+ '.' + (match[3] || '0') +
+ '.' + (match[4] || '0'), options)
+}
+
+/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./../../../../process/browser.js */ "./node_modules/process/browser.js")))
+
+/***/ }),
+
/***/ "./node_modules/vue-click-outside/index.js":
/*!*************************************************!*\
!*** ./node_modules/vue-click-outside/index.js ***!
@@ -3533,4 +5233,4 @@ exports = module.exports = {
/***/ })
}]);
-//# sourceMappingURL=vue-1.js.map?v=78e84771248f15dee8c8 \ No newline at end of file
+//# sourceMappingURL=vue-1.js.map?v=51a3c16d4784be6ab1e7 \ No newline at end of file
diff --git a/apps/settings/js/vue-1.js.map b/apps/settings/js/vue-1.js.map
index 6fd2f125c91..c8f3b608d21 100644
--- a/apps/settings/js/vue-1.js.map
+++ b/apps/settings/js/vue-1.js.map
@@ -1 +1 @@
-{"version":3,"file":"vue-1.js?v=78e84771248f15dee8c8","sources":["webpack:///./node_modules/@nextcloud/auth/dist/index.js","webpack:///./node_modules/@nextcloud/auth/dist/requesttoken.js","webpack:///./node_modules/@nextcloud/auth/dist/user.js","webpack:///./node_modules/@nextcloud/auth/node_modules/@nextcloud/event-bus/dist/ProxyBus.js","webpack:///./node_modules/@nextcloud/auth/node_modules/@nextcloud/event-bus/dist/SimpleBus.js","webpack:///./node_modules/@nextcloud/auth/node_modules/@nextcloud/event-bus/dist/index.js","webpack:///./node_modules/@nextcloud/auth/node_modules/core-js/internals/a-function.js","webpack:///./node_modules/@nextcloud/auth/node_modules/core-js/internals/a-possible-prototype.js","webpack:///./node_modules/@nextcloud/auth/node_modules/core-js/internals/add-to-unscopables.js","webpack:///./node_modules/@nextcloud/auth/node_modules/core-js/internals/an-instance.js","webpack:///./node_modules/@nextcloud/auth/node_modules/core-js/internals/an-object.js","webpack:///./node_modules/@nextcloud/auth/node_modules/core-js/internals/array-for-each.js","webpack:///./node_modules/@nextcloud/auth/node_modules/core-js/internals/array-includes.js","webpack:///./node_modules/@nextcloud/auth/node_modules/core-js/internals/array-iteration.js","webpack:///./node_modules/@nextcloud/auth/node_modules/core-js/internals/array-method-has-species-support.js","webpack:///./node_modules/@nextcloud/auth/node_modules/core-js/internals/array-species-create.js","webpack:///./node_modules/@nextcloud/auth/node_modules/core-js/internals/bind-context.js","webpack:///./node_modules/@nextcloud/auth/node_modules/core-js/internals/call-with-safe-iteration-closing.js","webpack:///./node_modules/@nextcloud/auth/node_modules/core-js/internals/check-correctness-of-iteration.js","webpack:///./node_modules/@nextcloud/auth/node_modules/core-js/internals/classof-raw.js","webpack:///./node_modules/@nextcloud/auth/node_modules/core-js/internals/classof.js","webpack:///./node_modules/@nextcloud/auth/node_modules/core-js/internals/collection-strong.js","webpack:///./node_modules/@nextcloud/auth/node_modules/core-js/internals/collection.js","webpack:///./node_modules/@nextcloud/auth/node_modules/core-js/internals/copy-constructor-properties.js","webpack:///./node_modules/@nextcloud/auth/node_modules/core-js/internals/correct-prototype-getter.js","webpack:///./node_modules/@nextcloud/auth/node_modules/core-js/internals/create-iterator-constructor.js","webpack:///./node_modules/@nextcloud/auth/node_modules/core-js/internals/create-non-enumerable-property.js","webpack:///./node_modules/@nextcloud/auth/node_modules/core-js/internals/create-property-descriptor.js","webpack:///./node_modules/@nextcloud/auth/node_modules/core-js/internals/create-property.js","webpack:///./node_modules/@nextcloud/auth/node_modules/core-js/internals/define-iterator.js","webpack:///./node_modules/@nextcloud/auth/node_modules/core-js/internals/descriptors.js","webpack:///./node_modules/@nextcloud/auth/node_modules/core-js/internals/document-create-element.js","webpack:///./node_modules/@nextcloud/auth/node_modules/core-js/internals/dom-iterables.js","webpack:///./node_modules/@nextcloud/auth/node_modules/core-js/internals/enum-bug-keys.js","webpack:///./node_modules/@nextcloud/auth/node_modules/core-js/internals/export.js","webpack:///./node_modules/@nextcloud/auth/node_modules/core-js/internals/fails.js","webpack:///./node_modules/@nextcloud/auth/node_modules/core-js/internals/freezing.js","webpack:///./node_modules/@nextcloud/auth/node_modules/core-js/internals/get-built-in.js","webpack:///./node_modules/@nextcloud/auth/node_modules/core-js/internals/get-iterator-method.js","webpack:///./node_modules/@nextcloud/auth/node_modules/core-js/internals/global.js","webpack:///./node_modules/@nextcloud/auth/node_modules/core-js/internals/has.js","webpack:///./node_modules/@nextcloud/auth/node_modules/core-js/internals/hidden-keys.js","webpack:///./node_modules/@nextcloud/auth/node_modules/core-js/internals/html.js","webpack:///./node_modules/@nextcloud/auth/node_modules/core-js/internals/ie8-dom-define.js","webpack:///./node_modules/@nextcloud/auth/node_modules/core-js/internals/indexed-object.js","webpack:///./node_modules/@nextcloud/auth/node_modules/core-js/internals/inherit-if-required.js","webpack:///./node_modules/@nextcloud/auth/node_modules/core-js/internals/inspect-source.js","webpack:///./node_modules/@nextcloud/auth/node_modules/core-js/internals/internal-metadata.js","webpack:///./node_modules/@nextcloud/auth/node_modules/core-js/internals/internal-state.js","webpack:///./node_modules/@nextcloud/auth/node_modules/core-js/internals/is-array-iterator-method.js","webpack:///./node_modules/@nextcloud/auth/node_modules/core-js/internals/is-array.js","webpack:///./node_modules/@nextcloud/auth/node_modules/core-js/internals/is-forced.js","webpack:///./node_modules/@nextcloud/auth/node_modules/core-js/internals/is-object.js","webpack:///./node_modules/@nextcloud/auth/node_modules/core-js/internals/is-pure.js","webpack:///./node_modules/@nextcloud/auth/node_modules/core-js/internals/iterate.js","webpack:///./node_modules/@nextcloud/auth/node_modules/core-js/internals/iterators-core.js","webpack:///./node_modules/@nextcloud/auth/node_modules/core-js/internals/iterators.js","webpack:///./node_modules/@nextcloud/auth/node_modules/core-js/internals/native-symbol.js","webpack:///./node_modules/@nextcloud/auth/node_modules/core-js/internals/native-weak-map.js","webpack:///./node_modules/@nextcloud/auth/node_modules/core-js/internals/object-create.js","webpack:///./node_modules/@nextcloud/auth/node_modules/core-js/internals/object-define-properties.js","webpack:///./node_modules/@nextcloud/auth/node_modules/core-js/internals/object-define-property.js","webpack:///./node_modules/@nextcloud/auth/node_modules/core-js/internals/object-get-own-property-descriptor.js","webpack:///./node_modules/@nextcloud/auth/node_modules/core-js/internals/object-get-own-property-names.js","webpack:///./node_modules/@nextcloud/auth/node_modules/core-js/internals/object-get-own-property-symbols.js","webpack:///./node_modules/@nextcloud/auth/node_modules/core-js/internals/object-get-prototype-of.js","webpack:///./node_modules/@nextcloud/auth/node_modules/core-js/internals/object-keys-internal.js","webpack:///./node_modules/@nextcloud/auth/node_modules/core-js/internals/object-keys.js","webpack:///./node_modules/@nextcloud/auth/node_modules/core-js/internals/object-property-is-enumerable.js","webpack:///./node_modules/@nextcloud/auth/node_modules/core-js/internals/object-set-prototype-of.js","webpack:///./node_modules/@nextcloud/auth/node_modules/core-js/internals/object-to-string.js","webpack:///./node_modules/@nextcloud/auth/node_modules/core-js/internals/own-keys.js","webpack:///./node_modules/@nextcloud/auth/node_modules/core-js/internals/path.js","webpack:///./node_modules/@nextcloud/auth/node_modules/core-js/internals/redefine-all.js","webpack:///./node_modules/@nextcloud/auth/node_modules/core-js/internals/redefine.js","webpack:///./node_modules/@nextcloud/auth/node_modules/core-js/internals/require-object-coercible.js","webpack:///./node_modules/@nextcloud/auth/node_modules/core-js/internals/set-global.js","webpack:///./node_modules/@nextcloud/auth/node_modules/core-js/internals/set-species.js","webpack:///./node_modules/@nextcloud/auth/node_modules/core-js/internals/set-to-string-tag.js","webpack:///./node_modules/@nextcloud/auth/node_modules/core-js/internals/shared-key.js","webpack:///./node_modules/@nextcloud/auth/node_modules/core-js/internals/shared-store.js","webpack:///./node_modules/@nextcloud/auth/node_modules/core-js/internals/shared.js","webpack:///./node_modules/@nextcloud/auth/node_modules/core-js/internals/sloppy-array-method.js","webpack:///./node_modules/@nextcloud/auth/node_modules/core-js/internals/string-multibyte.js","webpack:///./node_modules/@nextcloud/auth/node_modules/core-js/internals/to-absolute-index.js","webpack:///./node_modules/@nextcloud/auth/node_modules/core-js/internals/to-indexed-object.js","webpack:///./node_modules/@nextcloud/auth/node_modules/core-js/internals/to-integer.js","webpack:///./node_modules/@nextcloud/auth/node_modules/core-js/internals/to-length.js","webpack:///./node_modules/@nextcloud/auth/node_modules/core-js/internals/to-object.js","webpack:///./node_modules/@nextcloud/auth/node_modules/core-js/internals/to-primitive.js","webpack:///./node_modules/@nextcloud/auth/node_modules/core-js/internals/to-string-tag-support.js","webpack:///./node_modules/@nextcloud/auth/node_modules/core-js/internals/uid.js","webpack:///./node_modules/@nextcloud/auth/node_modules/core-js/internals/use-symbol-as-uid.js","webpack:///./node_modules/@nextcloud/auth/node_modules/core-js/internals/user-agent.js","webpack:///./node_modules/@nextcloud/auth/node_modules/core-js/internals/v8-version.js","webpack:///./node_modules/@nextcloud/auth/node_modules/core-js/internals/well-known-symbol.js","webpack:///./node_modules/@nextcloud/auth/node_modules/core-js/modules/es.array.concat.js","webpack:///./node_modules/@nextcloud/auth/node_modules/core-js/modules/es.array.filter.js","webpack:///./node_modules/@nextcloud/auth/node_modules/core-js/modules/es.array.for-each.js","webpack:///./node_modules/@nextcloud/auth/node_modules/core-js/modules/es.array.iterator.js","webpack:///./node_modules/@nextcloud/auth/node_modules/core-js/modules/es.map.js","webpack:///./node_modules/@nextcloud/auth/node_modules/core-js/modules/es.object.to-string.js","webpack:///./node_modules/@nextcloud/auth/node_modules/core-js/modules/es.string.iterator.js","webpack:///./node_modules/@nextcloud/auth/node_modules/core-js/modules/web.dom-collections.for-each.js","webpack:///./node_modules/@nextcloud/auth/node_modules/core-js/modules/web.dom-collections.iterator.js","webpack:///./node_modules/vue-click-outside/index.js","webpack:///./node_modules/vue-infinite-loading/dist/vue-infinite-loading.js"],"sourcesContent":["\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nObject.defineProperty(exports, \"getRequestToken\", {\n enumerable: true,\n get: function get() {\n return _requesttoken.getRequestToken;\n }\n});\nObject.defineProperty(exports, \"onRequestTokenUpdate\", {\n enumerable: true,\n get: function get() {\n return _requesttoken.onRequestTokenUpdate;\n }\n});\nObject.defineProperty(exports, \"getCurrentUser\", {\n enumerable: true,\n get: function get() {\n return _user.getCurrentUser;\n }\n});\n\nvar _requesttoken = require(\"./requesttoken\");\n\nvar _user = require(\"./user\");\n//# sourceMappingURL=index.js.map","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.getRequestToken = getRequestToken;\nexports.onRequestTokenUpdate = onRequestTokenUpdate;\n\nvar _eventBus = require(\"@nextcloud/event-bus\");\n\nvar tokenElement = document.getElementsByTagName('head')[0];\nvar token = tokenElement ? tokenElement.getAttribute('data-requesttoken') : null;\nvar observers = [];\n\nfunction getRequestToken() {\n return token;\n}\n\nfunction onRequestTokenUpdate(observer) {\n observers.push(observer);\n} // Listen to server event and keep token in sync\n\n\n(0, _eventBus.subscribe)('csrf-token-update', function (e) {\n token = e.token;\n observers.forEach(function (observer) {\n try {\n observer(e.token);\n } catch (e) {\n console.error('error updating CSRF token observer', e);\n }\n });\n});\n//# sourceMappingURL=requesttoken.js.map","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.getCurrentUser = getCurrentUser;\nvar uidElement = document.getElementsByTagName('head')[0];\nvar uid = uidElement ? uidElement.getAttribute('data-user') : null;\nvar displayNameElement = document.getElementsByTagName('head')[0];\nvar displayName = displayNameElement ? displayNameElement.getAttribute('data-user-displayname') : null;\n\nfunction getCurrentUser() {\n if (uid === null) {\n return null;\n }\n\n return {\n uid: uid,\n displayName: displayName\n };\n}\n//# sourceMappingURL=user.js.map","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.ProxyBus = void 0;\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nfunction _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }\n\nfunction _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }\n\nfunction _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }\n\nvar packageJson = {\n name: \"@nextcloud/event-bus\",\n version: \"0.2.1\",\n description: \"\",\n main: \"dist/index.js\",\n types: \"dist/index.d.ts\",\n scripts: {\n build: \"babel ./lib --out-dir dist --extensions '.ts,.tsx' --source-maps && tsc --emitDeclarationOnly\",\n \"check-types\": \"tsc\",\n dev: \"babel ./lib --out-dir dist --extensions '.ts,.tsx' --watch\",\n test: \"jest\",\n \"test:watch\": \"jest --watchAll\"\n },\n keywords: [\"nextcloud\"],\n homepage: \"https://github.com/nextcloud/nextcloud-event-bus#readme\",\n author: \"Christoph Wurst\",\n license: \"GPL-3.0-or-later\",\n repository: {\n type: \"git\",\n url: \"https://github.com/nextcloud/nextcloud-event-bus\"\n },\n dependencies: {\n \"core-js\": \"^3.1.4\"\n },\n devDependencies: {\n \"@babel/cli\": \"^7.6.0\",\n \"@babel/core\": \"^7.6.0\",\n \"@babel/plugin-proposal-class-properties\": \"^7.5.5\",\n \"@babel/preset-env\": \"^7.6.0\",\n \"@babel/preset-typescript\": \"^7.6.0\",\n \"babel-jest\": \"^24.9.0\",\n \"babel-plugin-inline-json-import\": \"^0.3.2\",\n \"browserslist-config-nextcloud\": \"0.0.1\",\n jest: \"^24.9.0\",\n typescript: \"^3.6.3\"\n },\n browserslist: [\"extends browserslist-config-nextcloud\"]\n};\n\nvar ProxyBus =\n/*#__PURE__*/\nfunction () {\n function ProxyBus(bus) {\n _classCallCheck(this, ProxyBus);\n\n _defineProperty(this, \"bus\", void 0);\n\n if (bus.getVersion() !== this.getVersion()) {\n // TODO: only warn if major version number does not match\n console.warn('Proxying an event bus of version ' + bus.getVersion() + ' with ' + this.getVersion());\n }\n\n this.bus = bus;\n }\n\n _createClass(ProxyBus, [{\n key: \"getVersion\",\n value: function getVersion() {\n return packageJson.version;\n }\n }, {\n key: \"subscribe\",\n value: function subscribe(name, handler) {\n this.bus.subscribe(name, handler);\n }\n }, {\n key: \"unsubscribe\",\n value: function unsubscribe(name, handler) {\n this.bus.unsubscribe(name, handler);\n }\n }, {\n key: \"emit\",\n value: function emit(name, event) {\n this.bus.emit(name, event);\n }\n }]);\n\n return ProxyBus;\n}();\n\nexports.ProxyBus = ProxyBus;\n//# sourceMappingURL=ProxyBus.js.map","\"use strict\";\n\nrequire(\"core-js/modules/es.array.concat\");\n\nrequire(\"core-js/modules/es.array.filter\");\n\nrequire(\"core-js/modules/es.array.for-each\");\n\nrequire(\"core-js/modules/es.array.iterator\");\n\nrequire(\"core-js/modules/es.map\");\n\nrequire(\"core-js/modules/es.object.to-string\");\n\nrequire(\"core-js/modules/es.string.iterator\");\n\nrequire(\"core-js/modules/web.dom-collections.for-each\");\n\nrequire(\"core-js/modules/web.dom-collections.iterator\");\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.SimpleBus = void 0;\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nfunction _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }\n\nfunction _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }\n\nfunction _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }\n\nvar packageJson = {\n name: \"@nextcloud/event-bus\",\n version: \"0.2.1\",\n description: \"\",\n main: \"dist/index.js\",\n types: \"dist/index.d.ts\",\n scripts: {\n build: \"babel ./lib --out-dir dist --extensions '.ts,.tsx' --source-maps && tsc --emitDeclarationOnly\",\n \"check-types\": \"tsc\",\n dev: \"babel ./lib --out-dir dist --extensions '.ts,.tsx' --watch\",\n test: \"jest\",\n \"test:watch\": \"jest --watchAll\"\n },\n keywords: [\"nextcloud\"],\n homepage: \"https://github.com/nextcloud/nextcloud-event-bus#readme\",\n author: \"Christoph Wurst\",\n license: \"GPL-3.0-or-later\",\n repository: {\n type: \"git\",\n url: \"https://github.com/nextcloud/nextcloud-event-bus\"\n },\n dependencies: {\n \"core-js\": \"^3.1.4\"\n },\n devDependencies: {\n \"@babel/cli\": \"^7.6.0\",\n \"@babel/core\": \"^7.6.0\",\n \"@babel/plugin-proposal-class-properties\": \"^7.5.5\",\n \"@babel/preset-env\": \"^7.6.0\",\n \"@babel/preset-typescript\": \"^7.6.0\",\n \"babel-jest\": \"^24.9.0\",\n \"babel-plugin-inline-json-import\": \"^0.3.2\",\n \"browserslist-config-nextcloud\": \"0.0.1\",\n jest: \"^24.9.0\",\n typescript: \"^3.6.3\"\n },\n browserslist: [\"extends browserslist-config-nextcloud\"]\n};\n\nvar SimpleBus =\n/*#__PURE__*/\nfunction () {\n function SimpleBus() {\n _classCallCheck(this, SimpleBus);\n\n _defineProperty(this, \"handlers\", new Map());\n }\n\n _createClass(SimpleBus, [{\n key: \"getVersion\",\n value: function getVersion() {\n return packageJson.version;\n }\n }, {\n key: \"subscribe\",\n value: function subscribe(name, handler) {\n this.handlers.set(name, (this.handlers.get(name) || []).concat(handler));\n }\n }, {\n key: \"unsubscribe\",\n value: function unsubscribe(name, handler) {\n this.handlers.set(name, (this.handlers.get(name) || []).filter(function (h) {\n return h != handler;\n }));\n }\n }, {\n key: \"emit\",\n value: function emit(name, event) {\n (this.handlers.get(name) || []).forEach(function (h) {\n try {\n h(event);\n } catch (e) {\n console.error('could not invoke event listener', e);\n }\n });\n }\n }]);\n\n return SimpleBus;\n}();\n\nexports.SimpleBus = SimpleBus;\n//# sourceMappingURL=SimpleBus.js.map","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.emit = exports.unsubscribe = exports.subscribe = void 0;\n\nvar _ProxyBus = require(\"./ProxyBus\");\n\nvar _SimpleBus = require(\"./SimpleBus\");\n\nfunction getBus() {\n if (typeof window.OC !== 'undefined' && window.OC._eventBus && typeof window._nc_event_bus === 'undefined') {\n console.warn('found old event bus instance at OC._eventBus. Update your version!');\n window._nc_event_bus = window.OC._eventBus;\n } // Either use an existing event bus instance or create one\n\n\n if (typeof window._nc_event_bus !== 'undefined') {\n return new _ProxyBus.ProxyBus(window._nc_event_bus);\n } else {\n return window._nc_event_bus = new _SimpleBus.SimpleBus();\n }\n}\n\nvar bus = getBus();\nvar subscribe = bus.subscribe.bind(bus);\nexports.subscribe = subscribe;\nvar unsubscribe = bus.unsubscribe.bind(bus);\nexports.unsubscribe = unsubscribe;\nvar emit = bus.emit.bind(bus);\nexports.emit = emit;\n//# sourceMappingURL=index.js.map","module.exports = function (it) {\n if (typeof it != 'function') {\n throw TypeError(String(it) + ' is not a function');\n } return it;\n};\n","var isObject = require('../internals/is-object');\n\nmodule.exports = function (it) {\n if (!isObject(it) && it !== null) {\n throw TypeError(\"Can't set \" + String(it) + ' as a prototype');\n } return it;\n};\n","var wellKnownSymbol = require('../internals/well-known-symbol');\nvar create = require('../internals/object-create');\nvar createNonEnumerableProperty = require('../internals/create-non-enumerable-property');\n\nvar UNSCOPABLES = wellKnownSymbol('unscopables');\nvar ArrayPrototype = Array.prototype;\n\n// Array.prototype[@@unscopables]\n// https://tc39.github.io/ecma262/#sec-array.prototype-@@unscopables\nif (ArrayPrototype[UNSCOPABLES] == undefined) {\n createNonEnumerableProperty(ArrayPrototype, UNSCOPABLES, create(null));\n}\n\n// add a key to Array.prototype[@@unscopables]\nmodule.exports = function (key) {\n ArrayPrototype[UNSCOPABLES][key] = true;\n};\n","module.exports = function (it, Constructor, name) {\n if (!(it instanceof Constructor)) {\n throw TypeError('Incorrect ' + (name ? name + ' ' : '') + 'invocation');\n } return it;\n};\n","var isObject = require('../internals/is-object');\n\nmodule.exports = function (it) {\n if (!isObject(it)) {\n throw TypeError(String(it) + ' is not an object');\n } return it;\n};\n","'use strict';\nvar $forEach = require('../internals/array-iteration').forEach;\nvar sloppyArrayMethod = require('../internals/sloppy-array-method');\n\n// `Array.prototype.forEach` method implementation\n// https://tc39.github.io/ecma262/#sec-array.prototype.foreach\nmodule.exports = sloppyArrayMethod('forEach') ? function forEach(callbackfn /* , thisArg */) {\n return $forEach(this, callbackfn, arguments.length > 1 ? arguments[1] : undefined);\n} : [].forEach;\n","var toIndexedObject = require('../internals/to-indexed-object');\nvar toLength = require('../internals/to-length');\nvar toAbsoluteIndex = require('../internals/to-absolute-index');\n\n// `Array.prototype.{ indexOf, includes }` methods implementation\nvar createMethod = function (IS_INCLUDES) {\n return function ($this, el, fromIndex) {\n var O = toIndexedObject($this);\n var length = toLength(O.length);\n var index = toAbsoluteIndex(fromIndex, length);\n var value;\n // Array#includes uses SameValueZero equality algorithm\n // eslint-disable-next-line no-self-compare\n if (IS_INCLUDES && el != el) while (length > index) {\n value = O[index++];\n // eslint-disable-next-line no-self-compare\n if (value != value) return true;\n // Array#indexOf ignores holes, Array#includes - not\n } else for (;length > index; index++) {\n if ((IS_INCLUDES || index in O) && O[index] === el) return IS_INCLUDES || index || 0;\n } return !IS_INCLUDES && -1;\n };\n};\n\nmodule.exports = {\n // `Array.prototype.includes` method\n // https://tc39.github.io/ecma262/#sec-array.prototype.includes\n includes: createMethod(true),\n // `Array.prototype.indexOf` method\n // https://tc39.github.io/ecma262/#sec-array.prototype.indexof\n indexOf: createMethod(false)\n};\n","var bind = require('../internals/bind-context');\nvar IndexedObject = require('../internals/indexed-object');\nvar toObject = require('../internals/to-object');\nvar toLength = require('../internals/to-length');\nvar arraySpeciesCreate = require('../internals/array-species-create');\n\nvar push = [].push;\n\n// `Array.prototype.{ forEach, map, filter, some, every, find, findIndex }` methods implementation\nvar createMethod = function (TYPE) {\n var IS_MAP = TYPE == 1;\n var IS_FILTER = TYPE == 2;\n var IS_SOME = TYPE == 3;\n var IS_EVERY = TYPE == 4;\n var IS_FIND_INDEX = TYPE == 6;\n var NO_HOLES = TYPE == 5 || IS_FIND_INDEX;\n return function ($this, callbackfn, that, specificCreate) {\n var O = toObject($this);\n var self = IndexedObject(O);\n var boundFunction = bind(callbackfn, that, 3);\n var length = toLength(self.length);\n var index = 0;\n var create = specificCreate || arraySpeciesCreate;\n var target = IS_MAP ? create($this, length) : IS_FILTER ? create($this, 0) : undefined;\n var value, result;\n for (;length > index; index++) if (NO_HOLES || index in self) {\n value = self[index];\n result = boundFunction(value, index, O);\n if (TYPE) {\n if (IS_MAP) target[index] = result; // map\n else if (result) switch (TYPE) {\n case 3: return true; // some\n case 5: return value; // find\n case 6: return index; // findIndex\n case 2: push.call(target, value); // filter\n } else if (IS_EVERY) return false; // every\n }\n }\n return IS_FIND_INDEX ? -1 : IS_SOME || IS_EVERY ? IS_EVERY : target;\n };\n};\n\nmodule.exports = {\n // `Array.prototype.forEach` method\n // https://tc39.github.io/ecma262/#sec-array.prototype.foreach\n forEach: createMethod(0),\n // `Array.prototype.map` method\n // https://tc39.github.io/ecma262/#sec-array.prototype.map\n map: createMethod(1),\n // `Array.prototype.filter` method\n // https://tc39.github.io/ecma262/#sec-array.prototype.filter\n filter: createMethod(2),\n // `Array.prototype.some` method\n // https://tc39.github.io/ecma262/#sec-array.prototype.some\n some: createMethod(3),\n // `Array.prototype.every` method\n // https://tc39.github.io/ecma262/#sec-array.prototype.every\n every: createMethod(4),\n // `Array.prototype.find` method\n // https://tc39.github.io/ecma262/#sec-array.prototype.find\n find: createMethod(5),\n // `Array.prototype.findIndex` method\n // https://tc39.github.io/ecma262/#sec-array.prototype.findIndex\n findIndex: createMethod(6)\n};\n","var fails = require('../internals/fails');\nvar wellKnownSymbol = require('../internals/well-known-symbol');\nvar V8_VERSION = require('../internals/v8-version');\n\nvar SPECIES = wellKnownSymbol('species');\n\nmodule.exports = function (METHOD_NAME) {\n // We can't use this feature detection in V8 since it causes\n // deoptimization and serious performance degradation\n // https://github.com/zloirock/core-js/issues/677\n return V8_VERSION >= 51 || !fails(function () {\n var array = [];\n var constructor = array.constructor = {};\n constructor[SPECIES] = function () {\n return { foo: 1 };\n };\n return array[METHOD_NAME](Boolean).foo !== 1;\n });\n};\n","var isObject = require('../internals/is-object');\nvar isArray = require('../internals/is-array');\nvar wellKnownSymbol = require('../internals/well-known-symbol');\n\nvar SPECIES = wellKnownSymbol('species');\n\n// `ArraySpeciesCreate` abstract operation\n// https://tc39.github.io/ecma262/#sec-arrayspeciescreate\nmodule.exports = function (originalArray, length) {\n var C;\n if (isArray(originalArray)) {\n C = originalArray.constructor;\n // cross-realm fallback\n if (typeof C == 'function' && (C === Array || isArray(C.prototype))) C = undefined;\n else if (isObject(C)) {\n C = C[SPECIES];\n if (C === null) C = undefined;\n }\n } return new (C === undefined ? Array : C)(length === 0 ? 0 : length);\n};\n","var aFunction = require('../internals/a-function');\n\n// optional / simple context binding\nmodule.exports = function (fn, that, length) {\n aFunction(fn);\n if (that === undefined) return fn;\n switch (length) {\n case 0: return function () {\n return fn.call(that);\n };\n case 1: return function (a) {\n return fn.call(that, a);\n };\n case 2: return function (a, b) {\n return fn.call(that, a, b);\n };\n case 3: return function (a, b, c) {\n return fn.call(that, a, b, c);\n };\n }\n return function (/* ...args */) {\n return fn.apply(that, arguments);\n };\n};\n","var anObject = require('../internals/an-object');\n\n// call something on iterator step with safe closing on error\nmodule.exports = function (iterator, fn, value, ENTRIES) {\n try {\n return ENTRIES ? fn(anObject(value)[0], value[1]) : fn(value);\n // 7.4.6 IteratorClose(iterator, completion)\n } catch (error) {\n var returnMethod = iterator['return'];\n if (returnMethod !== undefined) anObject(returnMethod.call(iterator));\n throw error;\n }\n};\n","var wellKnownSymbol = require('../internals/well-known-symbol');\n\nvar ITERATOR = wellKnownSymbol('iterator');\nvar SAFE_CLOSING = false;\n\ntry {\n var called = 0;\n var iteratorWithReturn = {\n next: function () {\n return { done: !!called++ };\n },\n 'return': function () {\n SAFE_CLOSING = true;\n }\n };\n iteratorWithReturn[ITERATOR] = function () {\n return this;\n };\n // eslint-disable-next-line no-throw-literal\n Array.from(iteratorWithReturn, function () { throw 2; });\n} catch (error) { /* empty */ }\n\nmodule.exports = function (exec, SKIP_CLOSING) {\n if (!SKIP_CLOSING && !SAFE_CLOSING) return false;\n var ITERATION_SUPPORT = false;\n try {\n var object = {};\n object[ITERATOR] = function () {\n return {\n next: function () {\n return { done: ITERATION_SUPPORT = true };\n }\n };\n };\n exec(object);\n } catch (error) { /* empty */ }\n return ITERATION_SUPPORT;\n};\n","var toString = {}.toString;\n\nmodule.exports = function (it) {\n return toString.call(it).slice(8, -1);\n};\n","var TO_STRING_TAG_SUPPORT = require('../internals/to-string-tag-support');\nvar classofRaw = require('../internals/classof-raw');\nvar wellKnownSymbol = require('../internals/well-known-symbol');\n\nvar TO_STRING_TAG = wellKnownSymbol('toStringTag');\n// ES3 wrong here\nvar CORRECT_ARGUMENTS = classofRaw(function () { return arguments; }()) == 'Arguments';\n\n// fallback for IE11 Script Access Denied error\nvar tryGet = function (it, key) {\n try {\n return it[key];\n } catch (error) { /* empty */ }\n};\n\n// getting tag from ES6+ `Object.prototype.toString`\nmodule.exports = TO_STRING_TAG_SUPPORT ? classofRaw : function (it) {\n var O, tag, result;\n return it === undefined ? 'Undefined' : it === null ? 'Null'\n // @@toStringTag case\n : typeof (tag = tryGet(O = Object(it), TO_STRING_TAG)) == 'string' ? tag\n // builtinTag case\n : CORRECT_ARGUMENTS ? classofRaw(O)\n // ES3 arguments fallback\n : (result = classofRaw(O)) == 'Object' && typeof O.callee == 'function' ? 'Arguments' : result;\n};\n","'use strict';\nvar defineProperty = require('../internals/object-define-property').f;\nvar create = require('../internals/object-create');\nvar redefineAll = require('../internals/redefine-all');\nvar bind = require('../internals/bind-context');\nvar anInstance = require('../internals/an-instance');\nvar iterate = require('../internals/iterate');\nvar defineIterator = require('../internals/define-iterator');\nvar setSpecies = require('../internals/set-species');\nvar DESCRIPTORS = require('../internals/descriptors');\nvar fastKey = require('../internals/internal-metadata').fastKey;\nvar InternalStateModule = require('../internals/internal-state');\n\nvar setInternalState = InternalStateModule.set;\nvar internalStateGetterFor = InternalStateModule.getterFor;\n\nmodule.exports = {\n getConstructor: function (wrapper, CONSTRUCTOR_NAME, IS_MAP, ADDER) {\n var C = wrapper(function (that, iterable) {\n anInstance(that, C, CONSTRUCTOR_NAME);\n setInternalState(that, {\n type: CONSTRUCTOR_NAME,\n index: create(null),\n first: undefined,\n last: undefined,\n size: 0\n });\n if (!DESCRIPTORS) that.size = 0;\n if (iterable != undefined) iterate(iterable, that[ADDER], that, IS_MAP);\n });\n\n var getInternalState = internalStateGetterFor(CONSTRUCTOR_NAME);\n\n var define = function (that, key, value) {\n var state = getInternalState(that);\n var entry = getEntry(that, key);\n var previous, index;\n // change existing entry\n if (entry) {\n entry.value = value;\n // create new entry\n } else {\n state.last = entry = {\n index: index = fastKey(key, true),\n key: key,\n value: value,\n previous: previous = state.last,\n next: undefined,\n removed: false\n };\n if (!state.first) state.first = entry;\n if (previous) previous.next = entry;\n if (DESCRIPTORS) state.size++;\n else that.size++;\n // add to index\n if (index !== 'F') state.index[index] = entry;\n } return that;\n };\n\n var getEntry = function (that, key) {\n var state = getInternalState(that);\n // fast case\n var index = fastKey(key);\n var entry;\n if (index !== 'F') return state.index[index];\n // frozen object case\n for (entry = state.first; entry; entry = entry.next) {\n if (entry.key == key) return entry;\n }\n };\n\n redefineAll(C.prototype, {\n // 23.1.3.1 Map.prototype.clear()\n // 23.2.3.2 Set.prototype.clear()\n clear: function clear() {\n var that = this;\n var state = getInternalState(that);\n var data = state.index;\n var entry = state.first;\n while (entry) {\n entry.removed = true;\n if (entry.previous) entry.previous = entry.previous.next = undefined;\n delete data[entry.index];\n entry = entry.next;\n }\n state.first = state.last = undefined;\n if (DESCRIPTORS) state.size = 0;\n else that.size = 0;\n },\n // 23.1.3.3 Map.prototype.delete(key)\n // 23.2.3.4 Set.prototype.delete(value)\n 'delete': function (key) {\n var that = this;\n var state = getInternalState(that);\n var entry = getEntry(that, key);\n if (entry) {\n var next = entry.next;\n var prev = entry.previous;\n delete state.index[entry.index];\n entry.removed = true;\n if (prev) prev.next = next;\n if (next) next.previous = prev;\n if (state.first == entry) state.first = next;\n if (state.last == entry) state.last = prev;\n if (DESCRIPTORS) state.size--;\n else that.size--;\n } return !!entry;\n },\n // 23.2.3.6 Set.prototype.forEach(callbackfn, thisArg = undefined)\n // 23.1.3.5 Map.prototype.forEach(callbackfn, thisArg = undefined)\n forEach: function forEach(callbackfn /* , that = undefined */) {\n var state = getInternalState(this);\n var boundFunction = bind(callbackfn, arguments.length > 1 ? arguments[1] : undefined, 3);\n var entry;\n while (entry = entry ? entry.next : state.first) {\n boundFunction(entry.value, entry.key, this);\n // revert to the last existing entry\n while (entry && entry.removed) entry = entry.previous;\n }\n },\n // 23.1.3.7 Map.prototype.has(key)\n // 23.2.3.7 Set.prototype.has(value)\n has: function has(key) {\n return !!getEntry(this, key);\n }\n });\n\n redefineAll(C.prototype, IS_MAP ? {\n // 23.1.3.6 Map.prototype.get(key)\n get: function get(key) {\n var entry = getEntry(this, key);\n return entry && entry.value;\n },\n // 23.1.3.9 Map.prototype.set(key, value)\n set: function set(key, value) {\n return define(this, key === 0 ? 0 : key, value);\n }\n } : {\n // 23.2.3.1 Set.prototype.add(value)\n add: function add(value) {\n return define(this, value = value === 0 ? 0 : value, value);\n }\n });\n if (DESCRIPTORS) defineProperty(C.prototype, 'size', {\n get: function () {\n return getInternalState(this).size;\n }\n });\n return C;\n },\n setStrong: function (C, CONSTRUCTOR_NAME, IS_MAP) {\n var ITERATOR_NAME = CONSTRUCTOR_NAME + ' Iterator';\n var getInternalCollectionState = internalStateGetterFor(CONSTRUCTOR_NAME);\n var getInternalIteratorState = internalStateGetterFor(ITERATOR_NAME);\n // add .keys, .values, .entries, [@@iterator]\n // 23.1.3.4, 23.1.3.8, 23.1.3.11, 23.1.3.12, 23.2.3.5, 23.2.3.8, 23.2.3.10, 23.2.3.11\n defineIterator(C, CONSTRUCTOR_NAME, function (iterated, kind) {\n setInternalState(this, {\n type: ITERATOR_NAME,\n target: iterated,\n state: getInternalCollectionState(iterated),\n kind: kind,\n last: undefined\n });\n }, function () {\n var state = getInternalIteratorState(this);\n var kind = state.kind;\n var entry = state.last;\n // revert to the last existing entry\n while (entry && entry.removed) entry = entry.previous;\n // get next entry\n if (!state.target || !(state.last = entry = entry ? entry.next : state.state.first)) {\n // or finish the iteration\n state.target = undefined;\n return { value: undefined, done: true };\n }\n // return step by kind\n if (kind == 'keys') return { value: entry.key, done: false };\n if (kind == 'values') return { value: entry.value, done: false };\n return { value: [entry.key, entry.value], done: false };\n }, IS_MAP ? 'entries' : 'values', !IS_MAP, true);\n\n // add [@@species], 23.1.2.2, 23.2.2.2\n setSpecies(CONSTRUCTOR_NAME);\n }\n};\n","'use strict';\nvar $ = require('../internals/export');\nvar global = require('../internals/global');\nvar isForced = require('../internals/is-forced');\nvar redefine = require('../internals/redefine');\nvar InternalMetadataModule = require('../internals/internal-metadata');\nvar iterate = require('../internals/iterate');\nvar anInstance = require('../internals/an-instance');\nvar isObject = require('../internals/is-object');\nvar fails = require('../internals/fails');\nvar checkCorrectnessOfIteration = require('../internals/check-correctness-of-iteration');\nvar setToStringTag = require('../internals/set-to-string-tag');\nvar inheritIfRequired = require('../internals/inherit-if-required');\n\nmodule.exports = function (CONSTRUCTOR_NAME, wrapper, common) {\n var IS_MAP = CONSTRUCTOR_NAME.indexOf('Map') !== -1;\n var IS_WEAK = CONSTRUCTOR_NAME.indexOf('Weak') !== -1;\n var ADDER = IS_MAP ? 'set' : 'add';\n var NativeConstructor = global[CONSTRUCTOR_NAME];\n var NativePrototype = NativeConstructor && NativeConstructor.prototype;\n var Constructor = NativeConstructor;\n var exported = {};\n\n var fixMethod = function (KEY) {\n var nativeMethod = NativePrototype[KEY];\n redefine(NativePrototype, KEY,\n KEY == 'add' ? function add(value) {\n nativeMethod.call(this, value === 0 ? 0 : value);\n return this;\n } : KEY == 'delete' ? function (key) {\n return IS_WEAK && !isObject(key) ? false : nativeMethod.call(this, key === 0 ? 0 : key);\n } : KEY == 'get' ? function get(key) {\n return IS_WEAK && !isObject(key) ? undefined : nativeMethod.call(this, key === 0 ? 0 : key);\n } : KEY == 'has' ? function has(key) {\n return IS_WEAK && !isObject(key) ? false : nativeMethod.call(this, key === 0 ? 0 : key);\n } : function set(key, value) {\n nativeMethod.call(this, key === 0 ? 0 : key, value);\n return this;\n }\n );\n };\n\n // eslint-disable-next-line max-len\n if (isForced(CONSTRUCTOR_NAME, typeof NativeConstructor != 'function' || !(IS_WEAK || NativePrototype.forEach && !fails(function () {\n new NativeConstructor().entries().next();\n })))) {\n // create collection constructor\n Constructor = common.getConstructor(wrapper, CONSTRUCTOR_NAME, IS_MAP, ADDER);\n InternalMetadataModule.REQUIRED = true;\n } else if (isForced(CONSTRUCTOR_NAME, true)) {\n var instance = new Constructor();\n // early implementations not supports chaining\n var HASNT_CHAINING = instance[ADDER](IS_WEAK ? {} : -0, 1) != instance;\n // V8 ~ Chromium 40- weak-collections throws on primitives, but should return false\n var THROWS_ON_PRIMITIVES = fails(function () { instance.has(1); });\n // most early implementations doesn't supports iterables, most modern - not close it correctly\n // eslint-disable-next-line no-new\n var ACCEPT_ITERABLES = checkCorrectnessOfIteration(function (iterable) { new NativeConstructor(iterable); });\n // for early implementations -0 and +0 not the same\n var BUGGY_ZERO = !IS_WEAK && fails(function () {\n // V8 ~ Chromium 42- fails only with 5+ elements\n var $instance = new NativeConstructor();\n var index = 5;\n while (index--) $instance[ADDER](index, index);\n return !$instance.has(-0);\n });\n\n if (!ACCEPT_ITERABLES) {\n Constructor = wrapper(function (dummy, iterable) {\n anInstance(dummy, Constructor, CONSTRUCTOR_NAME);\n var that = inheritIfRequired(new NativeConstructor(), dummy, Constructor);\n if (iterable != undefined) iterate(iterable, that[ADDER], that, IS_MAP);\n return that;\n });\n Constructor.prototype = NativePrototype;\n NativePrototype.constructor = Constructor;\n }\n\n if (THROWS_ON_PRIMITIVES || BUGGY_ZERO) {\n fixMethod('delete');\n fixMethod('has');\n IS_MAP && fixMethod('get');\n }\n\n if (BUGGY_ZERO || HASNT_CHAINING) fixMethod(ADDER);\n\n // weak collections should not contains .clear method\n if (IS_WEAK && NativePrototype.clear) delete NativePrototype.clear;\n }\n\n exported[CONSTRUCTOR_NAME] = Constructor;\n $({ global: true, forced: Constructor != NativeConstructor }, exported);\n\n setToStringTag(Constructor, CONSTRUCTOR_NAME);\n\n if (!IS_WEAK) common.setStrong(Constructor, CONSTRUCTOR_NAME, IS_MAP);\n\n return Constructor;\n};\n","var has = require('../internals/has');\nvar ownKeys = require('../internals/own-keys');\nvar getOwnPropertyDescriptorModule = require('../internals/object-get-own-property-descriptor');\nvar definePropertyModule = require('../internals/object-define-property');\n\nmodule.exports = function (target, source) {\n var keys = ownKeys(source);\n var defineProperty = definePropertyModule.f;\n var getOwnPropertyDescriptor = getOwnPropertyDescriptorModule.f;\n for (var i = 0; i < keys.length; i++) {\n var key = keys[i];\n if (!has(target, key)) defineProperty(target, key, getOwnPropertyDescriptor(source, key));\n }\n};\n","var fails = require('../internals/fails');\n\nmodule.exports = !fails(function () {\n function F() { /* empty */ }\n F.prototype.constructor = null;\n return Object.getPrototypeOf(new F()) !== F.prototype;\n});\n","'use strict';\nvar IteratorPrototype = require('../internals/iterators-core').IteratorPrototype;\nvar create = require('../internals/object-create');\nvar createPropertyDescriptor = require('../internals/create-property-descriptor');\nvar setToStringTag = require('../internals/set-to-string-tag');\nvar Iterators = require('../internals/iterators');\n\nvar returnThis = function () { return this; };\n\nmodule.exports = function (IteratorConstructor, NAME, next) {\n var TO_STRING_TAG = NAME + ' Iterator';\n IteratorConstructor.prototype = create(IteratorPrototype, { next: createPropertyDescriptor(1, next) });\n setToStringTag(IteratorConstructor, TO_STRING_TAG, false, true);\n Iterators[TO_STRING_TAG] = returnThis;\n return IteratorConstructor;\n};\n","var DESCRIPTORS = require('../internals/descriptors');\nvar definePropertyModule = require('../internals/object-define-property');\nvar createPropertyDescriptor = require('../internals/create-property-descriptor');\n\nmodule.exports = DESCRIPTORS ? function (object, key, value) {\n return definePropertyModule.f(object, key, createPropertyDescriptor(1, value));\n} : function (object, key, value) {\n object[key] = value;\n return object;\n};\n","module.exports = function (bitmap, value) {\n return {\n enumerable: !(bitmap & 1),\n configurable: !(bitmap & 2),\n writable: !(bitmap & 4),\n value: value\n };\n};\n","'use strict';\nvar toPrimitive = require('../internals/to-primitive');\nvar definePropertyModule = require('../internals/object-define-property');\nvar createPropertyDescriptor = require('../internals/create-property-descriptor');\n\nmodule.exports = function (object, key, value) {\n var propertyKey = toPrimitive(key);\n if (propertyKey in object) definePropertyModule.f(object, propertyKey, createPropertyDescriptor(0, value));\n else object[propertyKey] = value;\n};\n","'use strict';\nvar $ = require('../internals/export');\nvar createIteratorConstructor = require('../internals/create-iterator-constructor');\nvar getPrototypeOf = require('../internals/object-get-prototype-of');\nvar setPrototypeOf = require('../internals/object-set-prototype-of');\nvar setToStringTag = require('../internals/set-to-string-tag');\nvar createNonEnumerableProperty = require('../internals/create-non-enumerable-property');\nvar redefine = require('../internals/redefine');\nvar wellKnownSymbol = require('../internals/well-known-symbol');\nvar IS_PURE = require('../internals/is-pure');\nvar Iterators = require('../internals/iterators');\nvar IteratorsCore = require('../internals/iterators-core');\n\nvar IteratorPrototype = IteratorsCore.IteratorPrototype;\nvar BUGGY_SAFARI_ITERATORS = IteratorsCore.BUGGY_SAFARI_ITERATORS;\nvar ITERATOR = wellKnownSymbol('iterator');\nvar KEYS = 'keys';\nvar VALUES = 'values';\nvar ENTRIES = 'entries';\n\nvar returnThis = function () { return this; };\n\nmodule.exports = function (Iterable, NAME, IteratorConstructor, next, DEFAULT, IS_SET, FORCED) {\n createIteratorConstructor(IteratorConstructor, NAME, next);\n\n var getIterationMethod = function (KIND) {\n if (KIND === DEFAULT && defaultIterator) return defaultIterator;\n if (!BUGGY_SAFARI_ITERATORS && KIND in IterablePrototype) return IterablePrototype[KIND];\n switch (KIND) {\n case KEYS: return function keys() { return new IteratorConstructor(this, KIND); };\n case VALUES: return function values() { return new IteratorConstructor(this, KIND); };\n case ENTRIES: return function entries() { return new IteratorConstructor(this, KIND); };\n } return function () { return new IteratorConstructor(this); };\n };\n\n var TO_STRING_TAG = NAME + ' Iterator';\n var INCORRECT_VALUES_NAME = false;\n var IterablePrototype = Iterable.prototype;\n var nativeIterator = IterablePrototype[ITERATOR]\n || IterablePrototype['@@iterator']\n || DEFAULT && IterablePrototype[DEFAULT];\n var defaultIterator = !BUGGY_SAFARI_ITERATORS && nativeIterator || getIterationMethod(DEFAULT);\n var anyNativeIterator = NAME == 'Array' ? IterablePrototype.entries || nativeIterator : nativeIterator;\n var CurrentIteratorPrototype, methods, KEY;\n\n // fix native\n if (anyNativeIterator) {\n CurrentIteratorPrototype = getPrototypeOf(anyNativeIterator.call(new Iterable()));\n if (IteratorPrototype !== Object.prototype && CurrentIteratorPrototype.next) {\n if (!IS_PURE && getPrototypeOf(CurrentIteratorPrototype) !== IteratorPrototype) {\n if (setPrototypeOf) {\n setPrototypeOf(CurrentIteratorPrototype, IteratorPrototype);\n } else if (typeof CurrentIteratorPrototype[ITERATOR] != 'function') {\n createNonEnumerableProperty(CurrentIteratorPrototype, ITERATOR, returnThis);\n }\n }\n // Set @@toStringTag to native iterators\n setToStringTag(CurrentIteratorPrototype, TO_STRING_TAG, true, true);\n if (IS_PURE) Iterators[TO_STRING_TAG] = returnThis;\n }\n }\n\n // fix Array#{values, @@iterator}.name in V8 / FF\n if (DEFAULT == VALUES && nativeIterator && nativeIterator.name !== VALUES) {\n INCORRECT_VALUES_NAME = true;\n defaultIterator = function values() { return nativeIterator.call(this); };\n }\n\n // define iterator\n if ((!IS_PURE || FORCED) && IterablePrototype[ITERATOR] !== defaultIterator) {\n createNonEnumerableProperty(IterablePrototype, ITERATOR, defaultIterator);\n }\n Iterators[NAME] = defaultIterator;\n\n // export additional methods\n if (DEFAULT) {\n methods = {\n values: getIterationMethod(VALUES),\n keys: IS_SET ? defaultIterator : getIterationMethod(KEYS),\n entries: getIterationMethod(ENTRIES)\n };\n if (FORCED) for (KEY in methods) {\n if (BUGGY_SAFARI_ITERATORS || INCORRECT_VALUES_NAME || !(KEY in IterablePrototype)) {\n redefine(IterablePrototype, KEY, methods[KEY]);\n }\n } else $({ target: NAME, proto: true, forced: BUGGY_SAFARI_ITERATORS || INCORRECT_VALUES_NAME }, methods);\n }\n\n return methods;\n};\n","var fails = require('../internals/fails');\n\n// Thank's IE8 for his funny defineProperty\nmodule.exports = !fails(function () {\n return Object.defineProperty({}, 'a', { get: function () { return 7; } }).a != 7;\n});\n","var global = require('../internals/global');\nvar isObject = require('../internals/is-object');\n\nvar document = global.document;\n// typeof document.createElement is 'object' in old IE\nvar EXISTS = isObject(document) && isObject(document.createElement);\n\nmodule.exports = function (it) {\n return EXISTS ? document.createElement(it) : {};\n};\n","// iterable DOM collections\n// flag - `iterable` interface - 'entries', 'keys', 'values', 'forEach' methods\nmodule.exports = {\n CSSRuleList: 0,\n CSSStyleDeclaration: 0,\n CSSValueList: 0,\n ClientRectList: 0,\n DOMRectList: 0,\n DOMStringList: 0,\n DOMTokenList: 1,\n DataTransferItemList: 0,\n FileList: 0,\n HTMLAllCollection: 0,\n HTMLCollection: 0,\n HTMLFormElement: 0,\n HTMLSelectElement: 0,\n MediaList: 0,\n MimeTypeArray: 0,\n NamedNodeMap: 0,\n NodeList: 1,\n PaintRequestList: 0,\n Plugin: 0,\n PluginArray: 0,\n SVGLengthList: 0,\n SVGNumberList: 0,\n SVGPathSegList: 0,\n SVGPointList: 0,\n SVGStringList: 0,\n SVGTransformList: 0,\n SourceBufferList: 0,\n StyleSheetList: 0,\n TextTrackCueList: 0,\n TextTrackList: 0,\n TouchList: 0\n};\n","// IE8- don't enum bug keys\nmodule.exports = [\n 'constructor',\n 'hasOwnProperty',\n 'isPrototypeOf',\n 'propertyIsEnumerable',\n 'toLocaleString',\n 'toString',\n 'valueOf'\n];\n","var global = require('../internals/global');\nvar getOwnPropertyDescriptor = require('../internals/object-get-own-property-descriptor').f;\nvar createNonEnumerableProperty = require('../internals/create-non-enumerable-property');\nvar redefine = require('../internals/redefine');\nvar setGlobal = require('../internals/set-global');\nvar copyConstructorProperties = require('../internals/copy-constructor-properties');\nvar isForced = require('../internals/is-forced');\n\n/*\n options.target - name of the target object\n options.global - target is the global object\n options.stat - export as static methods of target\n options.proto - export as prototype methods of target\n options.real - real prototype method for the `pure` version\n options.forced - export even if the native feature is available\n options.bind - bind methods to the target, required for the `pure` version\n options.wrap - wrap constructors to preventing global pollution, required for the `pure` version\n options.unsafe - use the simple assignment of property instead of delete + defineProperty\n options.sham - add a flag to not completely full polyfills\n options.enumerable - export as enumerable property\n options.noTargetGet - prevent calling a getter on target\n*/\nmodule.exports = function (options, source) {\n var TARGET = options.target;\n var GLOBAL = options.global;\n var STATIC = options.stat;\n var FORCED, target, key, targetProperty, sourceProperty, descriptor;\n if (GLOBAL) {\n target = global;\n } else if (STATIC) {\n target = global[TARGET] || setGlobal(TARGET, {});\n } else {\n target = (global[TARGET] || {}).prototype;\n }\n if (target) for (key in source) {\n sourceProperty = source[key];\n if (options.noTargetGet) {\n descriptor = getOwnPropertyDescriptor(target, key);\n targetProperty = descriptor && descriptor.value;\n } else targetProperty = target[key];\n FORCED = isForced(GLOBAL ? key : TARGET + (STATIC ? '.' : '#') + key, options.forced);\n // contained in target\n if (!FORCED && targetProperty !== undefined) {\n if (typeof sourceProperty === typeof targetProperty) continue;\n copyConstructorProperties(sourceProperty, targetProperty);\n }\n // add a flag to not completely full polyfills\n if (options.sham || (targetProperty && targetProperty.sham)) {\n createNonEnumerableProperty(sourceProperty, 'sham', true);\n }\n // extend global\n redefine(target, key, sourceProperty, options);\n }\n};\n","module.exports = function (exec) {\n try {\n return !!exec();\n } catch (error) {\n return true;\n }\n};\n","var fails = require('../internals/fails');\n\nmodule.exports = !fails(function () {\n return Object.isExtensible(Object.preventExtensions({}));\n});\n","var path = require('../internals/path');\nvar global = require('../internals/global');\n\nvar aFunction = function (variable) {\n return typeof variable == 'function' ? variable : undefined;\n};\n\nmodule.exports = function (namespace, method) {\n return arguments.length < 2 ? aFunction(path[namespace]) || aFunction(global[namespace])\n : path[namespace] && path[namespace][method] || global[namespace] && global[namespace][method];\n};\n","var classof = require('../internals/classof');\nvar Iterators = require('../internals/iterators');\nvar wellKnownSymbol = require('../internals/well-known-symbol');\n\nvar ITERATOR = wellKnownSymbol('iterator');\n\nmodule.exports = function (it) {\n if (it != undefined) return it[ITERATOR]\n || it['@@iterator']\n || Iterators[classof(it)];\n};\n","var check = function (it) {\n return it && it.Math == Math && it;\n};\n\n// https://github.com/zloirock/core-js/issues/86#issuecomment-115759028\nmodule.exports =\n // eslint-disable-next-line no-undef\n check(typeof globalThis == 'object' && globalThis) ||\n check(typeof window == 'object' && window) ||\n check(typeof self == 'object' && self) ||\n check(typeof global == 'object' && global) ||\n // eslint-disable-next-line no-new-func\n Function('return this')();\n","var hasOwnProperty = {}.hasOwnProperty;\n\nmodule.exports = function (it, key) {\n return hasOwnProperty.call(it, key);\n};\n","module.exports = {};\n","var getBuiltIn = require('../internals/get-built-in');\n\nmodule.exports = getBuiltIn('document', 'documentElement');\n","var DESCRIPTORS = require('../internals/descriptors');\nvar fails = require('../internals/fails');\nvar createElement = require('../internals/document-create-element');\n\n// Thank's IE8 for his funny defineProperty\nmodule.exports = !DESCRIPTORS && !fails(function () {\n return Object.defineProperty(createElement('div'), 'a', {\n get: function () { return 7; }\n }).a != 7;\n});\n","var fails = require('../internals/fails');\nvar classof = require('../internals/classof-raw');\n\nvar split = ''.split;\n\n// fallback for non-array-like ES3 and non-enumerable old V8 strings\nmodule.exports = fails(function () {\n // throws an error in rhino, see https://github.com/mozilla/rhino/issues/346\n // eslint-disable-next-line no-prototype-builtins\n return !Object('z').propertyIsEnumerable(0);\n}) ? function (it) {\n return classof(it) == 'String' ? split.call(it, '') : Object(it);\n} : Object;\n","var isObject = require('../internals/is-object');\nvar setPrototypeOf = require('../internals/object-set-prototype-of');\n\n// makes subclassing work correct for wrapped built-ins\nmodule.exports = function ($this, dummy, Wrapper) {\n var NewTarget, NewTargetPrototype;\n if (\n // it can work only with native `setPrototypeOf`\n setPrototypeOf &&\n // we haven't completely correct pre-ES6 way for getting `new.target`, so use this\n typeof (NewTarget = dummy.constructor) == 'function' &&\n NewTarget !== Wrapper &&\n isObject(NewTargetPrototype = NewTarget.prototype) &&\n NewTargetPrototype !== Wrapper.prototype\n ) setPrototypeOf($this, NewTargetPrototype);\n return $this;\n};\n","var store = require('../internals/shared-store');\n\nvar functionToString = Function.toString;\n\n// this helper broken in `3.4.1-3.4.4`, so we can't use `shared` helper\nif (typeof store.inspectSource != 'function') {\n store.inspectSource = function (it) {\n return functionToString.call(it);\n };\n}\n\nmodule.exports = store.inspectSource;\n","var hiddenKeys = require('../internals/hidden-keys');\nvar isObject = require('../internals/is-object');\nvar has = require('../internals/has');\nvar defineProperty = require('../internals/object-define-property').f;\nvar uid = require('../internals/uid');\nvar FREEZING = require('../internals/freezing');\n\nvar METADATA = uid('meta');\nvar id = 0;\n\nvar isExtensible = Object.isExtensible || function () {\n return true;\n};\n\nvar setMetadata = function (it) {\n defineProperty(it, METADATA, { value: {\n objectID: 'O' + ++id, // object ID\n weakData: {} // weak collections IDs\n } });\n};\n\nvar fastKey = function (it, create) {\n // return a primitive with prefix\n if (!isObject(it)) return typeof it == 'symbol' ? it : (typeof it == 'string' ? 'S' : 'P') + it;\n if (!has(it, METADATA)) {\n // can't set metadata to uncaught frozen object\n if (!isExtensible(it)) return 'F';\n // not necessary to add metadata\n if (!create) return 'E';\n // add missing metadata\n setMetadata(it);\n // return object ID\n } return it[METADATA].objectID;\n};\n\nvar getWeakData = function (it, create) {\n if (!has(it, METADATA)) {\n // can't set metadata to uncaught frozen object\n if (!isExtensible(it)) return true;\n // not necessary to add metadata\n if (!create) return false;\n // add missing metadata\n setMetadata(it);\n // return the store of weak collections IDs\n } return it[METADATA].weakData;\n};\n\n// add metadata on freeze-family methods calling\nvar onFreeze = function (it) {\n if (FREEZING && meta.REQUIRED && isExtensible(it) && !has(it, METADATA)) setMetadata(it);\n return it;\n};\n\nvar meta = module.exports = {\n REQUIRED: false,\n fastKey: fastKey,\n getWeakData: getWeakData,\n onFreeze: onFreeze\n};\n\nhiddenKeys[METADATA] = true;\n","var NATIVE_WEAK_MAP = require('../internals/native-weak-map');\nvar global = require('../internals/global');\nvar isObject = require('../internals/is-object');\nvar createNonEnumerableProperty = require('../internals/create-non-enumerable-property');\nvar objectHas = require('../internals/has');\nvar sharedKey = require('../internals/shared-key');\nvar hiddenKeys = require('../internals/hidden-keys');\n\nvar WeakMap = global.WeakMap;\nvar set, get, has;\n\nvar enforce = function (it) {\n return has(it) ? get(it) : set(it, {});\n};\n\nvar getterFor = function (TYPE) {\n return function (it) {\n var state;\n if (!isObject(it) || (state = get(it)).type !== TYPE) {\n throw TypeError('Incompatible receiver, ' + TYPE + ' required');\n } return state;\n };\n};\n\nif (NATIVE_WEAK_MAP) {\n var store = new WeakMap();\n var wmget = store.get;\n var wmhas = store.has;\n var wmset = store.set;\n set = function (it, metadata) {\n wmset.call(store, it, metadata);\n return metadata;\n };\n get = function (it) {\n return wmget.call(store, it) || {};\n };\n has = function (it) {\n return wmhas.call(store, it);\n };\n} else {\n var STATE = sharedKey('state');\n hiddenKeys[STATE] = true;\n set = function (it, metadata) {\n createNonEnumerableProperty(it, STATE, metadata);\n return metadata;\n };\n get = function (it) {\n return objectHas(it, STATE) ? it[STATE] : {};\n };\n has = function (it) {\n return objectHas(it, STATE);\n };\n}\n\nmodule.exports = {\n set: set,\n get: get,\n has: has,\n enforce: enforce,\n getterFor: getterFor\n};\n","var wellKnownSymbol = require('../internals/well-known-symbol');\nvar Iterators = require('../internals/iterators');\n\nvar ITERATOR = wellKnownSymbol('iterator');\nvar ArrayPrototype = Array.prototype;\n\n// check on default Array iterator\nmodule.exports = function (it) {\n return it !== undefined && (Iterators.Array === it || ArrayPrototype[ITERATOR] === it);\n};\n","var classof = require('../internals/classof-raw');\n\n// `IsArray` abstract operation\n// https://tc39.github.io/ecma262/#sec-isarray\nmodule.exports = Array.isArray || function isArray(arg) {\n return classof(arg) == 'Array';\n};\n","var fails = require('../internals/fails');\n\nvar replacement = /#|\\.prototype\\./;\n\nvar isForced = function (feature, detection) {\n var value = data[normalize(feature)];\n return value == POLYFILL ? true\n : value == NATIVE ? false\n : typeof detection == 'function' ? fails(detection)\n : !!detection;\n};\n\nvar normalize = isForced.normalize = function (string) {\n return String(string).replace(replacement, '.').toLowerCase();\n};\n\nvar data = isForced.data = {};\nvar NATIVE = isForced.NATIVE = 'N';\nvar POLYFILL = isForced.POLYFILL = 'P';\n\nmodule.exports = isForced;\n","module.exports = function (it) {\n return typeof it === 'object' ? it !== null : typeof it === 'function';\n};\n","module.exports = false;\n","var anObject = require('../internals/an-object');\nvar isArrayIteratorMethod = require('../internals/is-array-iterator-method');\nvar toLength = require('../internals/to-length');\nvar bind = require('../internals/bind-context');\nvar getIteratorMethod = require('../internals/get-iterator-method');\nvar callWithSafeIterationClosing = require('../internals/call-with-safe-iteration-closing');\n\nvar Result = function (stopped, result) {\n this.stopped = stopped;\n this.result = result;\n};\n\nvar iterate = module.exports = function (iterable, fn, that, AS_ENTRIES, IS_ITERATOR) {\n var boundFunction = bind(fn, that, AS_ENTRIES ? 2 : 1);\n var iterator, iterFn, index, length, result, next, step;\n\n if (IS_ITERATOR) {\n iterator = iterable;\n } else {\n iterFn = getIteratorMethod(iterable);\n if (typeof iterFn != 'function') throw TypeError('Target is not iterable');\n // optimisation for array iterators\n if (isArrayIteratorMethod(iterFn)) {\n for (index = 0, length = toLength(iterable.length); length > index; index++) {\n result = AS_ENTRIES\n ? boundFunction(anObject(step = iterable[index])[0], step[1])\n : boundFunction(iterable[index]);\n if (result && result instanceof Result) return result;\n } return new Result(false);\n }\n iterator = iterFn.call(iterable);\n }\n\n next = iterator.next;\n while (!(step = next.call(iterator)).done) {\n result = callWithSafeIterationClosing(iterator, boundFunction, step.value, AS_ENTRIES);\n if (typeof result == 'object' && result && result instanceof Result) return result;\n } return new Result(false);\n};\n\niterate.stop = function (result) {\n return new Result(true, result);\n};\n","'use strict';\nvar getPrototypeOf = require('../internals/object-get-prototype-of');\nvar createNonEnumerableProperty = require('../internals/create-non-enumerable-property');\nvar has = require('../internals/has');\nvar wellKnownSymbol = require('../internals/well-known-symbol');\nvar IS_PURE = require('../internals/is-pure');\n\nvar ITERATOR = wellKnownSymbol('iterator');\nvar BUGGY_SAFARI_ITERATORS = false;\n\nvar returnThis = function () { return this; };\n\n// `%IteratorPrototype%` object\n// https://tc39.github.io/ecma262/#sec-%iteratorprototype%-object\nvar IteratorPrototype, PrototypeOfArrayIteratorPrototype, arrayIterator;\n\nif ([].keys) {\n arrayIterator = [].keys();\n // Safari 8 has buggy iterators w/o `next`\n if (!('next' in arrayIterator)) BUGGY_SAFARI_ITERATORS = true;\n else {\n PrototypeOfArrayIteratorPrototype = getPrototypeOf(getPrototypeOf(arrayIterator));\n if (PrototypeOfArrayIteratorPrototype !== Object.prototype) IteratorPrototype = PrototypeOfArrayIteratorPrototype;\n }\n}\n\nif (IteratorPrototype == undefined) IteratorPrototype = {};\n\n// 25.1.2.1.1 %IteratorPrototype%[@@iterator]()\nif (!IS_PURE && !has(IteratorPrototype, ITERATOR)) {\n createNonEnumerableProperty(IteratorPrototype, ITERATOR, returnThis);\n}\n\nmodule.exports = {\n IteratorPrototype: IteratorPrototype,\n BUGGY_SAFARI_ITERATORS: BUGGY_SAFARI_ITERATORS\n};\n","module.exports = {};\n","var fails = require('../internals/fails');\n\nmodule.exports = !!Object.getOwnPropertySymbols && !fails(function () {\n // Chrome 38 Symbol has incorrect toString conversion\n // eslint-disable-next-line no-undef\n return !String(Symbol());\n});\n","var global = require('../internals/global');\nvar inspectSource = require('../internals/inspect-source');\n\nvar WeakMap = global.WeakMap;\n\nmodule.exports = typeof WeakMap === 'function' && /native code/.test(inspectSource(WeakMap));\n","var anObject = require('../internals/an-object');\nvar defineProperties = require('../internals/object-define-properties');\nvar enumBugKeys = require('../internals/enum-bug-keys');\nvar hiddenKeys = require('../internals/hidden-keys');\nvar html = require('../internals/html');\nvar documentCreateElement = require('../internals/document-create-element');\nvar sharedKey = require('../internals/shared-key');\nvar IE_PROTO = sharedKey('IE_PROTO');\n\nvar PROTOTYPE = 'prototype';\nvar Empty = function () { /* empty */ };\n\n// Create object with fake `null` prototype: use iframe Object with cleared prototype\nvar createDict = function () {\n // Thrash, waste and sodomy: IE GC bug\n var iframe = documentCreateElement('iframe');\n var length = enumBugKeys.length;\n var lt = '<';\n var script = 'script';\n var gt = '>';\n var js = 'java' + script + ':';\n var iframeDocument;\n iframe.style.display = 'none';\n html.appendChild(iframe);\n iframe.src = String(js);\n iframeDocument = iframe.contentWindow.document;\n iframeDocument.open();\n iframeDocument.write(lt + script + gt + 'document.F=Object' + lt + '/' + script + gt);\n iframeDocument.close();\n createDict = iframeDocument.F;\n while (length--) delete createDict[PROTOTYPE][enumBugKeys[length]];\n return createDict();\n};\n\n// `Object.create` method\n// https://tc39.github.io/ecma262/#sec-object.create\nmodule.exports = Object.create || function create(O, Properties) {\n var result;\n if (O !== null) {\n Empty[PROTOTYPE] = anObject(O);\n result = new Empty();\n Empty[PROTOTYPE] = null;\n // add \"__proto__\" for Object.getPrototypeOf polyfill\n result[IE_PROTO] = O;\n } else result = createDict();\n return Properties === undefined ? result : defineProperties(result, Properties);\n};\n\nhiddenKeys[IE_PROTO] = true;\n","var DESCRIPTORS = require('../internals/descriptors');\nvar definePropertyModule = require('../internals/object-define-property');\nvar anObject = require('../internals/an-object');\nvar objectKeys = require('../internals/object-keys');\n\n// `Object.defineProperties` method\n// https://tc39.github.io/ecma262/#sec-object.defineproperties\nmodule.exports = DESCRIPTORS ? Object.defineProperties : function defineProperties(O, Properties) {\n anObject(O);\n var keys = objectKeys(Properties);\n var length = keys.length;\n var index = 0;\n var key;\n while (length > index) definePropertyModule.f(O, key = keys[index++], Properties[key]);\n return O;\n};\n","var DESCRIPTORS = require('../internals/descriptors');\nvar IE8_DOM_DEFINE = require('../internals/ie8-dom-define');\nvar anObject = require('../internals/an-object');\nvar toPrimitive = require('../internals/to-primitive');\n\nvar nativeDefineProperty = Object.defineProperty;\n\n// `Object.defineProperty` method\n// https://tc39.github.io/ecma262/#sec-object.defineproperty\nexports.f = DESCRIPTORS ? nativeDefineProperty : function defineProperty(O, P, Attributes) {\n anObject(O);\n P = toPrimitive(P, true);\n anObject(Attributes);\n if (IE8_DOM_DEFINE) try {\n return nativeDefineProperty(O, P, Attributes);\n } catch (error) { /* empty */ }\n if ('get' in Attributes || 'set' in Attributes) throw TypeError('Accessors not supported');\n if ('value' in Attributes) O[P] = Attributes.value;\n return O;\n};\n","var DESCRIPTORS = require('../internals/descriptors');\nvar propertyIsEnumerableModule = require('../internals/object-property-is-enumerable');\nvar createPropertyDescriptor = require('../internals/create-property-descriptor');\nvar toIndexedObject = require('../internals/to-indexed-object');\nvar toPrimitive = require('../internals/to-primitive');\nvar has = require('../internals/has');\nvar IE8_DOM_DEFINE = require('../internals/ie8-dom-define');\n\nvar nativeGetOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;\n\n// `Object.getOwnPropertyDescriptor` method\n// https://tc39.github.io/ecma262/#sec-object.getownpropertydescriptor\nexports.f = DESCRIPTORS ? nativeGetOwnPropertyDescriptor : function getOwnPropertyDescriptor(O, P) {\n O = toIndexedObject(O);\n P = toPrimitive(P, true);\n if (IE8_DOM_DEFINE) try {\n return nativeGetOwnPropertyDescriptor(O, P);\n } catch (error) { /* empty */ }\n if (has(O, P)) return createPropertyDescriptor(!propertyIsEnumerableModule.f.call(O, P), O[P]);\n};\n","var internalObjectKeys = require('../internals/object-keys-internal');\nvar enumBugKeys = require('../internals/enum-bug-keys');\n\nvar hiddenKeys = enumBugKeys.concat('length', 'prototype');\n\n// `Object.getOwnPropertyNames` method\n// https://tc39.github.io/ecma262/#sec-object.getownpropertynames\nexports.f = Object.getOwnPropertyNames || function getOwnPropertyNames(O) {\n return internalObjectKeys(O, hiddenKeys);\n};\n","exports.f = Object.getOwnPropertySymbols;\n","var has = require('../internals/has');\nvar toObject = require('../internals/to-object');\nvar sharedKey = require('../internals/shared-key');\nvar CORRECT_PROTOTYPE_GETTER = require('../internals/correct-prototype-getter');\n\nvar IE_PROTO = sharedKey('IE_PROTO');\nvar ObjectPrototype = Object.prototype;\n\n// `Object.getPrototypeOf` method\n// https://tc39.github.io/ecma262/#sec-object.getprototypeof\nmodule.exports = CORRECT_PROTOTYPE_GETTER ? Object.getPrototypeOf : function (O) {\n O = toObject(O);\n if (has(O, IE_PROTO)) return O[IE_PROTO];\n if (typeof O.constructor == 'function' && O instanceof O.constructor) {\n return O.constructor.prototype;\n } return O instanceof Object ? ObjectPrototype : null;\n};\n","var has = require('../internals/has');\nvar toIndexedObject = require('../internals/to-indexed-object');\nvar indexOf = require('../internals/array-includes').indexOf;\nvar hiddenKeys = require('../internals/hidden-keys');\n\nmodule.exports = function (object, names) {\n var O = toIndexedObject(object);\n var i = 0;\n var result = [];\n var key;\n for (key in O) !has(hiddenKeys, key) && has(O, key) && result.push(key);\n // Don't enum bug & hidden keys\n while (names.length > i) if (has(O, key = names[i++])) {\n ~indexOf(result, key) || result.push(key);\n }\n return result;\n};\n","var internalObjectKeys = require('../internals/object-keys-internal');\nvar enumBugKeys = require('../internals/enum-bug-keys');\n\n// `Object.keys` method\n// https://tc39.github.io/ecma262/#sec-object.keys\nmodule.exports = Object.keys || function keys(O) {\n return internalObjectKeys(O, enumBugKeys);\n};\n","'use strict';\nvar nativePropertyIsEnumerable = {}.propertyIsEnumerable;\nvar getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;\n\n// Nashorn ~ JDK8 bug\nvar NASHORN_BUG = getOwnPropertyDescriptor && !nativePropertyIsEnumerable.call({ 1: 2 }, 1);\n\n// `Object.prototype.propertyIsEnumerable` method implementation\n// https://tc39.github.io/ecma262/#sec-object.prototype.propertyisenumerable\nexports.f = NASHORN_BUG ? function propertyIsEnumerable(V) {\n var descriptor = getOwnPropertyDescriptor(this, V);\n return !!descriptor && descriptor.enumerable;\n} : nativePropertyIsEnumerable;\n","var anObject = require('../internals/an-object');\nvar aPossiblePrototype = require('../internals/a-possible-prototype');\n\n// `Object.setPrototypeOf` method\n// https://tc39.github.io/ecma262/#sec-object.setprototypeof\n// Works with __proto__ only. Old v8 can't work with null proto objects.\n/* eslint-disable no-proto */\nmodule.exports = Object.setPrototypeOf || ('__proto__' in {} ? function () {\n var CORRECT_SETTER = false;\n var test = {};\n var setter;\n try {\n setter = Object.getOwnPropertyDescriptor(Object.prototype, '__proto__').set;\n setter.call(test, []);\n CORRECT_SETTER = test instanceof Array;\n } catch (error) { /* empty */ }\n return function setPrototypeOf(O, proto) {\n anObject(O);\n aPossiblePrototype(proto);\n if (CORRECT_SETTER) setter.call(O, proto);\n else O.__proto__ = proto;\n return O;\n };\n}() : undefined);\n","'use strict';\nvar TO_STRING_TAG_SUPPORT = require('../internals/to-string-tag-support');\nvar classof = require('../internals/classof');\n\n// `Object.prototype.toString` method implementation\n// https://tc39.github.io/ecma262/#sec-object.prototype.tostring\nmodule.exports = TO_STRING_TAG_SUPPORT ? {}.toString : function toString() {\n return '[object ' + classof(this) + ']';\n};\n","var getBuiltIn = require('../internals/get-built-in');\nvar getOwnPropertyNamesModule = require('../internals/object-get-own-property-names');\nvar getOwnPropertySymbolsModule = require('../internals/object-get-own-property-symbols');\nvar anObject = require('../internals/an-object');\n\n// all object keys, includes non-enumerable and symbols\nmodule.exports = getBuiltIn('Reflect', 'ownKeys') || function ownKeys(it) {\n var keys = getOwnPropertyNamesModule.f(anObject(it));\n var getOwnPropertySymbols = getOwnPropertySymbolsModule.f;\n return getOwnPropertySymbols ? keys.concat(getOwnPropertySymbols(it)) : keys;\n};\n","var global = require('../internals/global');\n\nmodule.exports = global;\n","var redefine = require('../internals/redefine');\n\nmodule.exports = function (target, src, options) {\n for (var key in src) redefine(target, key, src[key], options);\n return target;\n};\n","var global = require('../internals/global');\nvar createNonEnumerableProperty = require('../internals/create-non-enumerable-property');\nvar has = require('../internals/has');\nvar setGlobal = require('../internals/set-global');\nvar inspectSource = require('../internals/inspect-source');\nvar InternalStateModule = require('../internals/internal-state');\n\nvar getInternalState = InternalStateModule.get;\nvar enforceInternalState = InternalStateModule.enforce;\nvar TEMPLATE = String(String).split('String');\n\n(module.exports = function (O, key, value, options) {\n var unsafe = options ? !!options.unsafe : false;\n var simple = options ? !!options.enumerable : false;\n var noTargetGet = options ? !!options.noTargetGet : false;\n if (typeof value == 'function') {\n if (typeof key == 'string' && !has(value, 'name')) createNonEnumerableProperty(value, 'name', key);\n enforceInternalState(value).source = TEMPLATE.join(typeof key == 'string' ? key : '');\n }\n if (O === global) {\n if (simple) O[key] = value;\n else setGlobal(key, value);\n return;\n } else if (!unsafe) {\n delete O[key];\n } else if (!noTargetGet && O[key]) {\n simple = true;\n }\n if (simple) O[key] = value;\n else createNonEnumerableProperty(O, key, value);\n// add fake Function#toString for correct work wrapped methods / constructors with methods like LoDash isNative\n})(Function.prototype, 'toString', function toString() {\n return typeof this == 'function' && getInternalState(this).source || inspectSource(this);\n});\n","// `RequireObjectCoercible` abstract operation\n// https://tc39.github.io/ecma262/#sec-requireobjectcoercible\nmodule.exports = function (it) {\n if (it == undefined) throw TypeError(\"Can't call method on \" + it);\n return it;\n};\n","var global = require('../internals/global');\nvar createNonEnumerableProperty = require('../internals/create-non-enumerable-property');\n\nmodule.exports = function (key, value) {\n try {\n createNonEnumerableProperty(global, key, value);\n } catch (error) {\n global[key] = value;\n } return value;\n};\n","'use strict';\nvar getBuiltIn = require('../internals/get-built-in');\nvar definePropertyModule = require('../internals/object-define-property');\nvar wellKnownSymbol = require('../internals/well-known-symbol');\nvar DESCRIPTORS = require('../internals/descriptors');\n\nvar SPECIES = wellKnownSymbol('species');\n\nmodule.exports = function (CONSTRUCTOR_NAME) {\n var Constructor = getBuiltIn(CONSTRUCTOR_NAME);\n var defineProperty = definePropertyModule.f;\n\n if (DESCRIPTORS && Constructor && !Constructor[SPECIES]) {\n defineProperty(Constructor, SPECIES, {\n configurable: true,\n get: function () { return this; }\n });\n }\n};\n","var defineProperty = require('../internals/object-define-property').f;\nvar has = require('../internals/has');\nvar wellKnownSymbol = require('../internals/well-known-symbol');\n\nvar TO_STRING_TAG = wellKnownSymbol('toStringTag');\n\nmodule.exports = function (it, TAG, STATIC) {\n if (it && !has(it = STATIC ? it : it.prototype, TO_STRING_TAG)) {\n defineProperty(it, TO_STRING_TAG, { configurable: true, value: TAG });\n }\n};\n","var shared = require('../internals/shared');\nvar uid = require('../internals/uid');\n\nvar keys = shared('keys');\n\nmodule.exports = function (key) {\n return keys[key] || (keys[key] = uid(key));\n};\n","var global = require('../internals/global');\nvar setGlobal = require('../internals/set-global');\n\nvar SHARED = '__core-js_shared__';\nvar store = global[SHARED] || setGlobal(SHARED, {});\n\nmodule.exports = store;\n","var IS_PURE = require('../internals/is-pure');\nvar store = require('../internals/shared-store');\n\n(module.exports = function (key, value) {\n return store[key] || (store[key] = value !== undefined ? value : {});\n})('versions', []).push({\n version: '3.5.0',\n mode: IS_PURE ? 'pure' : 'global',\n copyright: '© 2019 Denis Pushkarev (zloirock.ru)'\n});\n","'use strict';\nvar fails = require('../internals/fails');\n\nmodule.exports = function (METHOD_NAME, argument) {\n var method = [][METHOD_NAME];\n return !method || !fails(function () {\n // eslint-disable-next-line no-useless-call,no-throw-literal\n method.call(null, argument || function () { throw 1; }, 1);\n });\n};\n","var toInteger = require('../internals/to-integer');\nvar requireObjectCoercible = require('../internals/require-object-coercible');\n\n// `String.prototype.{ codePointAt, at }` methods implementation\nvar createMethod = function (CONVERT_TO_STRING) {\n return function ($this, pos) {\n var S = String(requireObjectCoercible($this));\n var position = toInteger(pos);\n var size = S.length;\n var first, second;\n if (position < 0 || position >= size) return CONVERT_TO_STRING ? '' : undefined;\n first = S.charCodeAt(position);\n return first < 0xD800 || first > 0xDBFF || position + 1 === size\n || (second = S.charCodeAt(position + 1)) < 0xDC00 || second > 0xDFFF\n ? CONVERT_TO_STRING ? S.charAt(position) : first\n : CONVERT_TO_STRING ? S.slice(position, position + 2) : (first - 0xD800 << 10) + (second - 0xDC00) + 0x10000;\n };\n};\n\nmodule.exports = {\n // `String.prototype.codePointAt` method\n // https://tc39.github.io/ecma262/#sec-string.prototype.codepointat\n codeAt: createMethod(false),\n // `String.prototype.at` method\n // https://github.com/mathiasbynens/String.prototype.at\n charAt: createMethod(true)\n};\n","var toInteger = require('../internals/to-integer');\n\nvar max = Math.max;\nvar min = Math.min;\n\n// Helper for a popular repeating case of the spec:\n// Let integer be ? ToInteger(index).\n// If integer < 0, let result be max((length + integer), 0); else let result be min(integer, length).\nmodule.exports = function (index, length) {\n var integer = toInteger(index);\n return integer < 0 ? max(integer + length, 0) : min(integer, length);\n};\n","// toObject with fallback for non-array-like ES3 strings\nvar IndexedObject = require('../internals/indexed-object');\nvar requireObjectCoercible = require('../internals/require-object-coercible');\n\nmodule.exports = function (it) {\n return IndexedObject(requireObjectCoercible(it));\n};\n","var ceil = Math.ceil;\nvar floor = Math.floor;\n\n// `ToInteger` abstract operation\n// https://tc39.github.io/ecma262/#sec-tointeger\nmodule.exports = function (argument) {\n return isNaN(argument = +argument) ? 0 : (argument > 0 ? floor : ceil)(argument);\n};\n","var toInteger = require('../internals/to-integer');\n\nvar min = Math.min;\n\n// `ToLength` abstract operation\n// https://tc39.github.io/ecma262/#sec-tolength\nmodule.exports = function (argument) {\n return argument > 0 ? min(toInteger(argument), 0x1FFFFFFFFFFFFF) : 0; // 2 ** 53 - 1 == 9007199254740991\n};\n","var requireObjectCoercible = require('../internals/require-object-coercible');\n\n// `ToObject` abstract operation\n// https://tc39.github.io/ecma262/#sec-toobject\nmodule.exports = function (argument) {\n return Object(requireObjectCoercible(argument));\n};\n","var isObject = require('../internals/is-object');\n\n// `ToPrimitive` abstract operation\n// https://tc39.github.io/ecma262/#sec-toprimitive\n// instead of the ES6 spec version, we didn't implement @@toPrimitive case\n// and the second argument - flag - preferred type is a string\nmodule.exports = function (input, PREFERRED_STRING) {\n if (!isObject(input)) return input;\n var fn, val;\n if (PREFERRED_STRING && typeof (fn = input.toString) == 'function' && !isObject(val = fn.call(input))) return val;\n if (typeof (fn = input.valueOf) == 'function' && !isObject(val = fn.call(input))) return val;\n if (!PREFERRED_STRING && typeof (fn = input.toString) == 'function' && !isObject(val = fn.call(input))) return val;\n throw TypeError(\"Can't convert object to primitive value\");\n};\n","var wellKnownSymbol = require('../internals/well-known-symbol');\n\nvar TO_STRING_TAG = wellKnownSymbol('toStringTag');\nvar test = {};\n\ntest[TO_STRING_TAG] = 'z';\n\nmodule.exports = String(test) === '[object z]';\n","var id = 0;\nvar postfix = Math.random();\n\nmodule.exports = function (key) {\n return 'Symbol(' + String(key === undefined ? '' : key) + ')_' + (++id + postfix).toString(36);\n};\n","var NATIVE_SYMBOL = require('../internals/native-symbol');\n\nmodule.exports = NATIVE_SYMBOL\n // eslint-disable-next-line no-undef\n && !Symbol.sham\n // eslint-disable-next-line no-undef\n && typeof Symbol() == 'symbol';\n","var getBuiltIn = require('../internals/get-built-in');\n\nmodule.exports = getBuiltIn('navigator', 'userAgent') || '';\n","var global = require('../internals/global');\nvar userAgent = require('../internals/user-agent');\n\nvar process = global.process;\nvar versions = process && process.versions;\nvar v8 = versions && versions.v8;\nvar match, version;\n\nif (v8) {\n match = v8.split('.');\n version = match[0] + match[1];\n} else if (userAgent) {\n match = userAgent.match(/Edge\\/(\\d+)/);\n if (!match || match[1] >= 74) {\n match = userAgent.match(/Chrome\\/(\\d+)/);\n if (match) version = match[1];\n }\n}\n\nmodule.exports = version && +version;\n","var global = require('../internals/global');\nvar shared = require('../internals/shared');\nvar has = require('../internals/has');\nvar uid = require('../internals/uid');\nvar NATIVE_SYMBOL = require('../internals/native-symbol');\nvar USE_SYMBOL_AS_UID = require('../internals/use-symbol-as-uid');\n\nvar WellKnownSymbolsStore = shared('wks');\nvar Symbol = global.Symbol;\nvar createWellKnownSymbol = USE_SYMBOL_AS_UID ? Symbol : uid;\n\nmodule.exports = function (name) {\n if (!has(WellKnownSymbolsStore, name)) {\n if (NATIVE_SYMBOL && has(Symbol, name)) WellKnownSymbolsStore[name] = Symbol[name];\n else WellKnownSymbolsStore[name] = createWellKnownSymbol('Symbol.' + name);\n } return WellKnownSymbolsStore[name];\n};\n","'use strict';\nvar $ = require('../internals/export');\nvar fails = require('../internals/fails');\nvar isArray = require('../internals/is-array');\nvar isObject = require('../internals/is-object');\nvar toObject = require('../internals/to-object');\nvar toLength = require('../internals/to-length');\nvar createProperty = require('../internals/create-property');\nvar arraySpeciesCreate = require('../internals/array-species-create');\nvar arrayMethodHasSpeciesSupport = require('../internals/array-method-has-species-support');\nvar wellKnownSymbol = require('../internals/well-known-symbol');\nvar V8_VERSION = require('../internals/v8-version');\n\nvar IS_CONCAT_SPREADABLE = wellKnownSymbol('isConcatSpreadable');\nvar MAX_SAFE_INTEGER = 0x1FFFFFFFFFFFFF;\nvar MAXIMUM_ALLOWED_INDEX_EXCEEDED = 'Maximum allowed index exceeded';\n\n// We can't use this feature detection in V8 since it causes\n// deoptimization and serious performance degradation\n// https://github.com/zloirock/core-js/issues/679\nvar IS_CONCAT_SPREADABLE_SUPPORT = V8_VERSION >= 51 || !fails(function () {\n var array = [];\n array[IS_CONCAT_SPREADABLE] = false;\n return array.concat()[0] !== array;\n});\n\nvar SPECIES_SUPPORT = arrayMethodHasSpeciesSupport('concat');\n\nvar isConcatSpreadable = function (O) {\n if (!isObject(O)) return false;\n var spreadable = O[IS_CONCAT_SPREADABLE];\n return spreadable !== undefined ? !!spreadable : isArray(O);\n};\n\nvar FORCED = !IS_CONCAT_SPREADABLE_SUPPORT || !SPECIES_SUPPORT;\n\n// `Array.prototype.concat` method\n// https://tc39.github.io/ecma262/#sec-array.prototype.concat\n// with adding support of @@isConcatSpreadable and @@species\n$({ target: 'Array', proto: true, forced: FORCED }, {\n concat: function concat(arg) { // eslint-disable-line no-unused-vars\n var O = toObject(this);\n var A = arraySpeciesCreate(O, 0);\n var n = 0;\n var i, k, length, len, E;\n for (i = -1, length = arguments.length; i < length; i++) {\n E = i === -1 ? O : arguments[i];\n if (isConcatSpreadable(E)) {\n len = toLength(E.length);\n if (n + len > MAX_SAFE_INTEGER) throw TypeError(MAXIMUM_ALLOWED_INDEX_EXCEEDED);\n for (k = 0; k < len; k++, n++) if (k in E) createProperty(A, n, E[k]);\n } else {\n if (n >= MAX_SAFE_INTEGER) throw TypeError(MAXIMUM_ALLOWED_INDEX_EXCEEDED);\n createProperty(A, n++, E);\n }\n }\n A.length = n;\n return A;\n }\n});\n","'use strict';\nvar $ = require('../internals/export');\nvar $filter = require('../internals/array-iteration').filter;\nvar fails = require('../internals/fails');\nvar arrayMethodHasSpeciesSupport = require('../internals/array-method-has-species-support');\n\nvar HAS_SPECIES_SUPPORT = arrayMethodHasSpeciesSupport('filter');\n// Edge 14- issue\nvar USES_TO_LENGTH = HAS_SPECIES_SUPPORT && !fails(function () {\n [].filter.call({ length: -1, 0: 1 }, function (it) { throw it; });\n});\n\n// `Array.prototype.filter` method\n// https://tc39.github.io/ecma262/#sec-array.prototype.filter\n// with adding support of @@species\n$({ target: 'Array', proto: true, forced: !HAS_SPECIES_SUPPORT || !USES_TO_LENGTH }, {\n filter: function filter(callbackfn /* , thisArg */) {\n return $filter(this, callbackfn, arguments.length > 1 ? arguments[1] : undefined);\n }\n});\n","'use strict';\nvar $ = require('../internals/export');\nvar forEach = require('../internals/array-for-each');\n\n// `Array.prototype.forEach` method\n// https://tc39.github.io/ecma262/#sec-array.prototype.foreach\n$({ target: 'Array', proto: true, forced: [].forEach != forEach }, {\n forEach: forEach\n});\n","'use strict';\nvar toIndexedObject = require('../internals/to-indexed-object');\nvar addToUnscopables = require('../internals/add-to-unscopables');\nvar Iterators = require('../internals/iterators');\nvar InternalStateModule = require('../internals/internal-state');\nvar defineIterator = require('../internals/define-iterator');\n\nvar ARRAY_ITERATOR = 'Array Iterator';\nvar setInternalState = InternalStateModule.set;\nvar getInternalState = InternalStateModule.getterFor(ARRAY_ITERATOR);\n\n// `Array.prototype.entries` method\n// https://tc39.github.io/ecma262/#sec-array.prototype.entries\n// `Array.prototype.keys` method\n// https://tc39.github.io/ecma262/#sec-array.prototype.keys\n// `Array.prototype.values` method\n// https://tc39.github.io/ecma262/#sec-array.prototype.values\n// `Array.prototype[@@iterator]` method\n// https://tc39.github.io/ecma262/#sec-array.prototype-@@iterator\n// `CreateArrayIterator` internal method\n// https://tc39.github.io/ecma262/#sec-createarrayiterator\nmodule.exports = defineIterator(Array, 'Array', function (iterated, kind) {\n setInternalState(this, {\n type: ARRAY_ITERATOR,\n target: toIndexedObject(iterated), // target\n index: 0, // next index\n kind: kind // kind\n });\n// `%ArrayIteratorPrototype%.next` method\n// https://tc39.github.io/ecma262/#sec-%arrayiteratorprototype%.next\n}, function () {\n var state = getInternalState(this);\n var target = state.target;\n var kind = state.kind;\n var index = state.index++;\n if (!target || index >= target.length) {\n state.target = undefined;\n return { value: undefined, done: true };\n }\n if (kind == 'keys') return { value: index, done: false };\n if (kind == 'values') return { value: target[index], done: false };\n return { value: [index, target[index]], done: false };\n}, 'values');\n\n// argumentsList[@@iterator] is %ArrayProto_values%\n// https://tc39.github.io/ecma262/#sec-createunmappedargumentsobject\n// https://tc39.github.io/ecma262/#sec-createmappedargumentsobject\nIterators.Arguments = Iterators.Array;\n\n// https://tc39.github.io/ecma262/#sec-array.prototype-@@unscopables\naddToUnscopables('keys');\naddToUnscopables('values');\naddToUnscopables('entries');\n","'use strict';\nvar collection = require('../internals/collection');\nvar collectionStrong = require('../internals/collection-strong');\n\n// `Map` constructor\n// https://tc39.github.io/ecma262/#sec-map-objects\nmodule.exports = collection('Map', function (init) {\n return function Map() { return init(this, arguments.length ? arguments[0] : undefined); };\n}, collectionStrong);\n","var TO_STRING_TAG_SUPPORT = require('../internals/to-string-tag-support');\nvar redefine = require('../internals/redefine');\nvar toString = require('../internals/object-to-string');\n\n// `Object.prototype.toString` method\n// https://tc39.github.io/ecma262/#sec-object.prototype.tostring\nif (!TO_STRING_TAG_SUPPORT) {\n redefine(Object.prototype, 'toString', toString, { unsafe: true });\n}\n","'use strict';\nvar charAt = require('../internals/string-multibyte').charAt;\nvar InternalStateModule = require('../internals/internal-state');\nvar defineIterator = require('../internals/define-iterator');\n\nvar STRING_ITERATOR = 'String Iterator';\nvar setInternalState = InternalStateModule.set;\nvar getInternalState = InternalStateModule.getterFor(STRING_ITERATOR);\n\n// `String.prototype[@@iterator]` method\n// https://tc39.github.io/ecma262/#sec-string.prototype-@@iterator\ndefineIterator(String, 'String', function (iterated) {\n setInternalState(this, {\n type: STRING_ITERATOR,\n string: String(iterated),\n index: 0\n });\n// `%StringIteratorPrototype%.next` method\n// https://tc39.github.io/ecma262/#sec-%stringiteratorprototype%.next\n}, function next() {\n var state = getInternalState(this);\n var string = state.string;\n var index = state.index;\n var point;\n if (index >= string.length) return { value: undefined, done: true };\n point = charAt(string, index);\n state.index += point.length;\n return { value: point, done: false };\n});\n","var global = require('../internals/global');\nvar DOMIterables = require('../internals/dom-iterables');\nvar forEach = require('../internals/array-for-each');\nvar createNonEnumerableProperty = require('../internals/create-non-enumerable-property');\n\nfor (var COLLECTION_NAME in DOMIterables) {\n var Collection = global[COLLECTION_NAME];\n var CollectionPrototype = Collection && Collection.prototype;\n // some Chrome versions have non-configurable methods on DOMTokenList\n if (CollectionPrototype && CollectionPrototype.forEach !== forEach) try {\n createNonEnumerableProperty(CollectionPrototype, 'forEach', forEach);\n } catch (error) {\n CollectionPrototype.forEach = forEach;\n }\n}\n","var global = require('../internals/global');\nvar DOMIterables = require('../internals/dom-iterables');\nvar ArrayIteratorMethods = require('../modules/es.array.iterator');\nvar createNonEnumerableProperty = require('../internals/create-non-enumerable-property');\nvar wellKnownSymbol = require('../internals/well-known-symbol');\n\nvar ITERATOR = wellKnownSymbol('iterator');\nvar TO_STRING_TAG = wellKnownSymbol('toStringTag');\nvar ArrayValues = ArrayIteratorMethods.values;\n\nfor (var COLLECTION_NAME in DOMIterables) {\n var Collection = global[COLLECTION_NAME];\n var CollectionPrototype = Collection && Collection.prototype;\n if (CollectionPrototype) {\n // some Chrome versions have non-configurable methods on DOMTokenList\n if (CollectionPrototype[ITERATOR] !== ArrayValues) try {\n createNonEnumerableProperty(CollectionPrototype, ITERATOR, ArrayValues);\n } catch (error) {\n CollectionPrototype[ITERATOR] = ArrayValues;\n }\n if (!CollectionPrototype[TO_STRING_TAG]) {\n createNonEnumerableProperty(CollectionPrototype, TO_STRING_TAG, COLLECTION_NAME);\n }\n if (DOMIterables[COLLECTION_NAME]) for (var METHOD_NAME in ArrayIteratorMethods) {\n // some Chrome versions have non-configurable methods on DOMTokenList\n if (CollectionPrototype[METHOD_NAME] !== ArrayIteratorMethods[METHOD_NAME]) try {\n createNonEnumerableProperty(CollectionPrototype, METHOD_NAME, ArrayIteratorMethods[METHOD_NAME]);\n } catch (error) {\n CollectionPrototype[METHOD_NAME] = ArrayIteratorMethods[METHOD_NAME];\n }\n }\n }\n}\n","function validate(binding) {\r\n if (typeof binding.value !== 'function') {\r\n console.warn('[Vue-click-outside:] provided expression', binding.expression, 'is not a function.')\r\n return false\r\n }\r\n\r\n return true\r\n}\r\n\r\nfunction isPopup(popupItem, elements) {\r\n if (!popupItem || !elements)\r\n return false\r\n\r\n for (var i = 0, len = elements.length; i < len; i++) {\r\n try {\r\n if (popupItem.contains(elements[i])) {\r\n return true\r\n }\r\n if (elements[i].contains(popupItem)) {\r\n return false\r\n }\r\n } catch(e) {\r\n return false\r\n }\r\n }\r\n\r\n return false\r\n}\r\n\r\nfunction isServer(vNode) {\r\n return typeof vNode.componentInstance !== 'undefined' && vNode.componentInstance.$isServer\r\n}\r\n\r\nexports = module.exports = {\r\n bind: function (el, binding, vNode) {\r\n if (!validate(binding)) return\r\n\r\n // Define Handler and cache it on the element\r\n function handler(e) {\r\n if (!vNode.context) return\r\n\r\n // some components may have related popup item, on which we shall prevent the click outside event handler.\r\n var elements = e.path || (e.composedPath && e.composedPath())\r\n elements && elements.length > 0 && elements.unshift(e.target)\r\n \r\n if (el.contains(e.target) || isPopup(vNode.context.popupItem, elements)) return\r\n\r\n el.__vueClickOutside__.callback(e)\r\n }\r\n\r\n // add Event Listeners\r\n el.__vueClickOutside__ = {\r\n handler: handler,\r\n callback: binding.value\r\n }\r\n !isServer(vNode) && document.addEventListener('click', handler)\r\n },\r\n\r\n update: function (el, binding) {\r\n if (validate(binding)) el.__vueClickOutside__.callback = binding.value\r\n },\r\n \r\n unbind: function (el, binding, vNode) {\r\n // Remove Event Listeners\r\n !isServer(vNode) && document.removeEventListener('click', el.__vueClickOutside__.handler)\r\n delete el.__vueClickOutside__\r\n }\r\n}\r\n","/*!\n * vue-infinite-loading v2.4.4\n * (c) 2016-2019 PeachScript\n * MIT License\n */\n!function(t,e){\"object\"==typeof exports&&\"object\"==typeof module?module.exports=e():\"function\"==typeof define&&define.amd?define([],e):\"object\"==typeof exports?exports.VueInfiniteLoading=e():t.VueInfiniteLoading=e()}(this,function(){return function(t){var e={};function n(i){if(e[i])return e[i].exports;var r=e[i]={i:i,l:!1,exports:{}};return t[i].call(r.exports,r,r.exports,n),r.l=!0,r.exports}return n.m=t,n.c=e,n.d=function(t,e,i){n.o(t,e)||Object.defineProperty(t,e,{enumerable:!0,get:i})},n.r=function(t){\"undefined\"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:\"Module\"}),Object.defineProperty(t,\"__esModule\",{value:!0})},n.t=function(t,e){if(1&e&&(t=n(t)),8&e)return t;if(4&e&&\"object\"==typeof t&&t&&t.__esModule)return t;var i=Object.create(null);if(n.r(i),Object.defineProperty(i,\"default\",{enumerable:!0,value:t}),2&e&&\"string\"!=typeof t)for(var r in t)n.d(i,r,function(e){return t[e]}.bind(null,r));return i},n.n=function(t){var e=t&&t.__esModule?function(){return t.default}:function(){return t};return n.d(e,\"a\",e),e},n.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},n.p=\"\",n(n.s=9)}([function(t,e,n){var i=n(6);\"string\"==typeof i&&(i=[[t.i,i,\"\"]]),i.locals&&(t.exports=i.locals);(0,n(3).default)(\"09280948\",i,!0,{})},function(t,e,n){var i=n(8);\"string\"==typeof i&&(i=[[t.i,i,\"\"]]),i.locals&&(t.exports=i.locals);(0,n(3).default)(\"51e4c3f9\",i,!0,{})},function(t,e){t.exports=function(t){var e=[];return e.toString=function(){return this.map(function(e){var n=function(t,e){var n=t[1]||\"\",i=t[3];if(!i)return n;if(e&&\"function\"==typeof btoa){var r=(o=i,\"/*# sourceMappingURL=data:application/json;charset=utf-8;base64,\"+btoa(unescape(encodeURIComponent(JSON.stringify(o))))+\" */\"),a=i.sources.map(function(t){return\"/*# sourceURL=\"+i.sourceRoot+t+\" */\"});return[n].concat(a).concat([r]).join(\"\\n\")}var o;return[n].join(\"\\n\")}(e,t);return e[2]?\"@media \"+e[2]+\"{\"+n+\"}\":n}).join(\"\")},e.i=function(t,n){\"string\"==typeof t&&(t=[[null,t,\"\"]]);for(var i={},r=0;r<this.length;r++){var a=this[r][0];\"number\"==typeof a&&(i[a]=!0)}for(r=0;r<t.length;r++){var o=t[r];\"number\"==typeof o[0]&&i[o[0]]||(n&&!o[2]?o[2]=n:n&&(o[2]=\"(\"+o[2]+\") and (\"+n+\")\"),e.push(o))}},e}},function(t,e,n){\"use strict\";function i(t,e){for(var n=[],i={},r=0;r<e.length;r++){var a=e[r],o=a[0],s={id:t+\":\"+r,css:a[1],media:a[2],sourceMap:a[3]};i[o]?i[o].parts.push(s):n.push(i[o]={id:o,parts:[s]})}return n}n.r(e),n.d(e,\"default\",function(){return b});var r=\"undefined\"!=typeof document;if(\"undefined\"!=typeof DEBUG&&DEBUG&&!r)throw new Error(\"vue-style-loader cannot be used in a non-browser environment. Use { target: 'node' } in your Webpack config to indicate a server-rendering environment.\");var a={},o=r&&(document.head||document.getElementsByTagName(\"head\")[0]),s=null,l=0,d=!1,c=function(){},u=null,p=\"data-vue-ssr-id\",f=\"undefined\"!=typeof navigator&&/msie [6-9]\\b/.test(navigator.userAgent.toLowerCase());function b(t,e,n,r){d=n,u=r||{};var o=i(t,e);return h(o),function(e){for(var n=[],r=0;r<o.length;r++){var s=o[r];(l=a[s.id]).refs--,n.push(l)}e?h(o=i(t,e)):o=[];for(r=0;r<n.length;r++){var l;if(0===(l=n[r]).refs){for(var d=0;d<l.parts.length;d++)l.parts[d]();delete a[l.id]}}}}function h(t){for(var e=0;e<t.length;e++){var n=t[e],i=a[n.id];if(i){i.refs++;for(var r=0;r<i.parts.length;r++)i.parts[r](n.parts[r]);for(;r<n.parts.length;r++)i.parts.push(g(n.parts[r]));i.parts.length>n.parts.length&&(i.parts.length=n.parts.length)}else{var o=[];for(r=0;r<n.parts.length;r++)o.push(g(n.parts[r]));a[n.id]={id:n.id,refs:1,parts:o}}}}function m(){var t=document.createElement(\"style\");return t.type=\"text/css\",o.appendChild(t),t}function g(t){var e,n,i=document.querySelector(\"style[\"+p+'~=\"'+t.id+'\"]');if(i){if(d)return c;i.parentNode.removeChild(i)}if(f){var r=l++;i=s||(s=m()),e=w.bind(null,i,r,!1),n=w.bind(null,i,r,!0)}else i=m(),e=function(t,e){var n=e.css,i=e.media,r=e.sourceMap;i&&t.setAttribute(\"media\",i);u.ssrId&&t.setAttribute(p,e.id);r&&(n+=\"\\n/*# sourceURL=\"+r.sources[0]+\" */\",n+=\"\\n/*# sourceMappingURL=data:application/json;base64,\"+btoa(unescape(encodeURIComponent(JSON.stringify(r))))+\" */\");if(t.styleSheet)t.styleSheet.cssText=n;else{for(;t.firstChild;)t.removeChild(t.firstChild);t.appendChild(document.createTextNode(n))}}.bind(null,i),n=function(){i.parentNode.removeChild(i)};return e(t),function(i){if(i){if(i.css===t.css&&i.media===t.media&&i.sourceMap===t.sourceMap)return;e(t=i)}else n()}}var v,y=(v=[],function(t,e){return v[t]=e,v.filter(Boolean).join(\"\\n\")});function w(t,e,n,i){var r=n?\"\":i.css;if(t.styleSheet)t.styleSheet.cssText=y(e,r);else{var a=document.createTextNode(r),o=t.childNodes;o[e]&&t.removeChild(o[e]),o.length?t.insertBefore(a,o[e]):t.appendChild(a)}}},function(t,e){function n(t){return(n=\"function\"==typeof Symbol&&\"symbol\"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&\"function\"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?\"symbol\":typeof t})(t)}function i(e){return\"function\"==typeof Symbol&&\"symbol\"===n(Symbol.iterator)?t.exports=i=function(t){return n(t)}:t.exports=i=function(t){return t&&\"function\"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?\"symbol\":n(t)},i(e)}t.exports=i},function(t,e,n){\"use strict\";n.r(e);var i=n(0),r=n.n(i);for(var a in i)\"default\"!==a&&function(t){n.d(e,t,function(){return i[t]})}(a);e.default=r.a},function(t,e,n){(t.exports=n(2)(!1)).push([t.i,'.loading-wave-dots[data-v-46b20d22]{position:relative}.loading-wave-dots[data-v-46b20d22] .wave-item{position:absolute;top:50%;left:50%;display:inline-block;margin-top:-4px;width:8px;height:8px;border-radius:50%;-webkit-animation:loading-wave-dots-data-v-46b20d22 linear 2.8s infinite;animation:loading-wave-dots-data-v-46b20d22 linear 2.8s infinite}.loading-wave-dots[data-v-46b20d22] .wave-item:first-child{margin-left:-36px}.loading-wave-dots[data-v-46b20d22] .wave-item:nth-child(2){margin-left:-20px;-webkit-animation-delay:.14s;animation-delay:.14s}.loading-wave-dots[data-v-46b20d22] .wave-item:nth-child(3){margin-left:-4px;-webkit-animation-delay:.28s;animation-delay:.28s}.loading-wave-dots[data-v-46b20d22] .wave-item:nth-child(4){margin-left:12px;-webkit-animation-delay:.42s;animation-delay:.42s}.loading-wave-dots[data-v-46b20d22] .wave-item:last-child{margin-left:28px;-webkit-animation-delay:.56s;animation-delay:.56s}@-webkit-keyframes loading-wave-dots-data-v-46b20d22{0%{-webkit-transform:translateY(0);transform:translateY(0);background:#bbb}10%{-webkit-transform:translateY(-6px);transform:translateY(-6px);background:#999}20%{-webkit-transform:translateY(0);transform:translateY(0);background:#bbb}to{-webkit-transform:translateY(0);transform:translateY(0);background:#bbb}}@keyframes loading-wave-dots-data-v-46b20d22{0%{-webkit-transform:translateY(0);transform:translateY(0);background:#bbb}10%{-webkit-transform:translateY(-6px);transform:translateY(-6px);background:#999}20%{-webkit-transform:translateY(0);transform:translateY(0);background:#bbb}to{-webkit-transform:translateY(0);transform:translateY(0);background:#bbb}}.loading-circles[data-v-46b20d22] .circle-item{width:5px;height:5px;-webkit-animation:loading-circles-data-v-46b20d22 linear .75s infinite;animation:loading-circles-data-v-46b20d22 linear .75s infinite}.loading-circles[data-v-46b20d22] .circle-item:first-child{margin-top:-14.5px;margin-left:-2.5px}.loading-circles[data-v-46b20d22] .circle-item:nth-child(2){margin-top:-11.26px;margin-left:6.26px}.loading-circles[data-v-46b20d22] .circle-item:nth-child(3){margin-top:-2.5px;margin-left:9.5px}.loading-circles[data-v-46b20d22] .circle-item:nth-child(4){margin-top:6.26px;margin-left:6.26px}.loading-circles[data-v-46b20d22] .circle-item:nth-child(5){margin-top:9.5px;margin-left:-2.5px}.loading-circles[data-v-46b20d22] .circle-item:nth-child(6){margin-top:6.26px;margin-left:-11.26px}.loading-circles[data-v-46b20d22] .circle-item:nth-child(7){margin-top:-2.5px;margin-left:-14.5px}.loading-circles[data-v-46b20d22] .circle-item:last-child{margin-top:-11.26px;margin-left:-11.26px}@-webkit-keyframes loading-circles-data-v-46b20d22{0%{background:#dfdfdf}90%{background:#505050}to{background:#dfdfdf}}@keyframes loading-circles-data-v-46b20d22{0%{background:#dfdfdf}90%{background:#505050}to{background:#dfdfdf}}.loading-bubbles[data-v-46b20d22] .bubble-item{background:#666;-webkit-animation:loading-bubbles-data-v-46b20d22 linear .75s infinite;animation:loading-bubbles-data-v-46b20d22 linear .75s infinite}.loading-bubbles[data-v-46b20d22] .bubble-item:first-child{margin-top:-12.5px;margin-left:-.5px}.loading-bubbles[data-v-46b20d22] .bubble-item:nth-child(2){margin-top:-9.26px;margin-left:8.26px}.loading-bubbles[data-v-46b20d22] .bubble-item:nth-child(3){margin-top:-.5px;margin-left:11.5px}.loading-bubbles[data-v-46b20d22] .bubble-item:nth-child(4){margin-top:8.26px;margin-left:8.26px}.loading-bubbles[data-v-46b20d22] .bubble-item:nth-child(5){margin-top:11.5px;margin-left:-.5px}.loading-bubbles[data-v-46b20d22] .bubble-item:nth-child(6){margin-top:8.26px;margin-left:-9.26px}.loading-bubbles[data-v-46b20d22] .bubble-item:nth-child(7){margin-top:-.5px;margin-left:-12.5px}.loading-bubbles[data-v-46b20d22] .bubble-item:last-child{margin-top:-9.26px;margin-left:-9.26px}@-webkit-keyframes loading-bubbles-data-v-46b20d22{0%{width:1px;height:1px;box-shadow:0 0 0 3px #666}90%{width:1px;height:1px;box-shadow:0 0 0 0 #666}to{width:1px;height:1px;box-shadow:0 0 0 3px #666}}@keyframes loading-bubbles-data-v-46b20d22{0%{width:1px;height:1px;box-shadow:0 0 0 3px #666}90%{width:1px;height:1px;box-shadow:0 0 0 0 #666}to{width:1px;height:1px;box-shadow:0 0 0 3px #666}}.loading-default[data-v-46b20d22]{position:relative;border:1px solid #999;-webkit-animation:loading-rotating-data-v-46b20d22 ease 1.5s infinite;animation:loading-rotating-data-v-46b20d22 ease 1.5s infinite}.loading-default[data-v-46b20d22]:before{content:\"\";position:absolute;display:block;top:0;left:50%;margin-top:-3px;margin-left:-3px;width:6px;height:6px;background-color:#999;border-radius:50%}.loading-spiral[data-v-46b20d22]{border:2px solid #777;border-right-color:transparent;-webkit-animation:loading-rotating-data-v-46b20d22 linear .85s infinite;animation:loading-rotating-data-v-46b20d22 linear .85s infinite}@-webkit-keyframes loading-rotating-data-v-46b20d22{0%{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes loading-rotating-data-v-46b20d22{0%{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}.loading-bubbles[data-v-46b20d22],.loading-circles[data-v-46b20d22]{position:relative}.loading-bubbles[data-v-46b20d22] .bubble-item,.loading-circles[data-v-46b20d22] .circle-item{position:absolute;top:50%;left:50%;display:inline-block;border-radius:50%}.loading-bubbles[data-v-46b20d22] .bubble-item:nth-child(2),.loading-circles[data-v-46b20d22] .circle-item:nth-child(2){-webkit-animation-delay:93ms;animation-delay:93ms}.loading-bubbles[data-v-46b20d22] .bubble-item:nth-child(3),.loading-circles[data-v-46b20d22] .circle-item:nth-child(3){-webkit-animation-delay:.186s;animation-delay:.186s}.loading-bubbles[data-v-46b20d22] .bubble-item:nth-child(4),.loading-circles[data-v-46b20d22] .circle-item:nth-child(4){-webkit-animation-delay:.279s;animation-delay:.279s}.loading-bubbles[data-v-46b20d22] .bubble-item:nth-child(5),.loading-circles[data-v-46b20d22] .circle-item:nth-child(5){-webkit-animation-delay:.372s;animation-delay:.372s}.loading-bubbles[data-v-46b20d22] .bubble-item:nth-child(6),.loading-circles[data-v-46b20d22] .circle-item:nth-child(6){-webkit-animation-delay:.465s;animation-delay:.465s}.loading-bubbles[data-v-46b20d22] .bubble-item:nth-child(7),.loading-circles[data-v-46b20d22] .circle-item:nth-child(7){-webkit-animation-delay:.558s;animation-delay:.558s}.loading-bubbles[data-v-46b20d22] .bubble-item:last-child,.loading-circles[data-v-46b20d22] .circle-item:last-child{-webkit-animation-delay:.651s;animation-delay:.651s}',\"\"])},function(t,e,n){\"use strict\";n.r(e);var i=n(1),r=n.n(i);for(var a in i)\"default\"!==a&&function(t){n.d(e,t,function(){return i[t]})}(a);e.default=r.a},function(t,e,n){(t.exports=n(2)(!1)).push([t.i,\".infinite-loading-container[data-v-46b21138]{clear:both;text-align:center}.infinite-loading-container[data-v-46b21138] [class^=loading-]{display:inline-block;margin:5px 0;width:28px;height:28px;font-size:28px;line-height:28px;border-radius:50%}.btn-try-infinite[data-v-46b21138]{margin-top:5px;padding:5px 10px;color:#999;font-size:14px;line-height:1;background:transparent;border:1px solid #ccc;border-radius:3px;outline:none;cursor:pointer}.btn-try-infinite[data-v-46b21138]:not(:active):hover{opacity:.8}\",\"\"])},function(t,e,n){\"use strict\";n.r(e);var i={throttleLimit:50,loopCheckTimeout:1e3,loopCheckMaxCalls:10},r=function(){var t=!1;try{var e=Object.defineProperty({},\"passive\",{get:function(){return t={passive:!0},!0}});window.addEventListener(\"testpassive\",e,e),window.remove(\"testpassive\",e,e)}catch(t){}return t}(),a={STATE_CHANGER:[\"emit `loaded` and `complete` event through component instance of `$refs` may cause error, so it will be deprecated soon, please use the `$state` argument instead (`$state` just the special `$event` variable):\",\"\\ntemplate:\",'<infinite-loading @infinite=\"infiniteHandler\"></infinite-loading>',\"\\nscript:\\n...\\ninfiniteHandler($state) {\\n ajax('https://www.example.com/api/news')\\n .then((res) => {\\n if (res.data.length) {\\n $state.loaded();\\n } else {\\n $state.complete();\\n }\\n });\\n}\\n...\",\"\",\"more details: https://github.com/PeachScript/vue-infinite-loading/issues/57#issuecomment-324370549\"].join(\"\\n\"),INFINITE_EVENT:\"`:on-infinite` property will be deprecated soon, please use `@infinite` event instead.\",IDENTIFIER:\"the `reset` event will be deprecated soon, please reset this component by change the `identifier` property.\"},o={INFINITE_LOOP:[\"executed the callback function more than \".concat(i.loopCheckMaxCalls,\" times for a short time, it looks like searched a wrong scroll wrapper that doest not has fixed height or maximum height, please check it. If you want to force to set a element as scroll wrapper ranther than automatic searching, you can do this:\"),'\\n\\x3c!-- add a special attribute for the real scroll wrapper --\\x3e\\n<div infinite-wrapper>\\n ...\\n \\x3c!-- set force-use-infinite-wrapper --\\x3e\\n <infinite-loading force-use-infinite-wrapper></infinite-loading>\\n</div>\\nor\\n<div class=\"infinite-wrapper\">\\n ...\\n \\x3c!-- set force-use-infinite-wrapper as css selector of the real scroll wrapper --\\x3e\\n <infinite-loading force-use-infinite-wrapper=\".infinite-wrapper\"></infinite-loading>\\n</div>\\n ',\"more details: https://github.com/PeachScript/vue-infinite-loading/issues/55#issuecomment-316934169\"].join(\"\\n\")},s={READY:0,LOADING:1,COMPLETE:2,ERROR:3},l={color:\"#666\",fontSize:\"14px\",padding:\"10px 0\"},d={mode:\"development\",props:{spinner:\"default\",distance:100,forceUseInfiniteWrapper:!1},system:i,slots:{noResults:\"No results :(\",noMore:\"No more data :)\",error:\"Opps, something went wrong :(\",errorBtnText:\"Retry\",spinner:\"\"},WARNINGS:a,ERRORS:o,STATUS:s},c=n(4),u=n.n(c),p={BUBBLES:{render:function(t){return t(\"span\",{attrs:{class:\"loading-bubbles\"}},Array.apply(Array,Array(8)).map(function(){return t(\"span\",{attrs:{class:\"bubble-item\"}})}))}},CIRCLES:{render:function(t){return t(\"span\",{attrs:{class:\"loading-circles\"}},Array.apply(Array,Array(8)).map(function(){return t(\"span\",{attrs:{class:\"circle-item\"}})}))}},DEFAULT:{render:function(t){return t(\"i\",{attrs:{class:\"loading-default\"}})}},SPIRAL:{render:function(t){return t(\"i\",{attrs:{class:\"loading-spiral\"}})}},WAVEDOTS:{render:function(t){return t(\"span\",{attrs:{class:\"loading-wave-dots\"}},Array.apply(Array,Array(5)).map(function(){return t(\"span\",{attrs:{class:\"wave-item\"}})}))}}};function f(t,e,n,i,r,a,o,s){var l,d=\"function\"==typeof t?t.options:t;if(e&&(d.render=e,d.staticRenderFns=n,d._compiled=!0),i&&(d.functional=!0),a&&(d._scopeId=\"data-v-\"+a),o?(l=function(t){(t=t||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext)||\"undefined\"==typeof __VUE_SSR_CONTEXT__||(t=__VUE_SSR_CONTEXT__),r&&r.call(this,t),t&&t._registeredComponents&&t._registeredComponents.add(o)},d._ssrRegister=l):r&&(l=s?function(){r.call(this,this.$root.$options.shadowRoot)}:r),l)if(d.functional){d._injectStyles=l;var c=d.render;d.render=function(t,e){return l.call(e),c(t,e)}}else{var u=d.beforeCreate;d.beforeCreate=u?[].concat(u,l):[l]}return{exports:t,options:d}}var b=f({name:\"Spinner\",computed:{spinnerView:function(){return p[(this.$attrs.spinner||\"\").toUpperCase()]||this.spinnerInConfig},spinnerInConfig:function(){return d.slots.spinner&&\"string\"==typeof d.slots.spinner?{render:function(){return this._v(d.slots.spinner)}}:\"object\"===u()(d.slots.spinner)?d.slots.spinner:p[d.props.spinner.toUpperCase()]||p.DEFAULT}}},function(){var t=this.$createElement;return(this._self._c||t)(this.spinnerView,{tag:\"component\"})},[],!1,function(t){var e=n(5);e.__inject__&&e.__inject__(t)},\"46b20d22\",null);b.options.__file=\"Spinner.vue\";var h=b.exports;function m(t){\"production\"!==d.mode&&console.warn(\"[Vue-infinite-loading warn]: \".concat(t))}function g(t){console.error(\"[Vue-infinite-loading error]: \".concat(t))}var v={timers:[],caches:[],throttle:function(t){var e=this;-1===this.caches.indexOf(t)&&(this.caches.push(t),this.timers.push(setTimeout(function(){t(),e.caches.splice(e.caches.indexOf(t),1),e.timers.shift()},d.system.throttleLimit)))},reset:function(){this.timers.forEach(function(t){clearTimeout(t)}),this.timers.length=0,this.caches=[]}},y={isChecked:!1,timer:null,times:0,track:function(){var t=this;this.times+=1,clearTimeout(this.timer),this.timer=setTimeout(function(){t.isChecked=!0},d.system.loopCheckTimeout),this.times>d.system.loopCheckMaxCalls&&(g(o.INFINITE_LOOP),this.isChecked=!0)}},w={key:\"_infiniteScrollHeight\",getScrollElm:function(t){return t===window?document.documentElement:t},save:function(t){var e=this.getScrollElm(t);e[this.key]=e.scrollHeight},restore:function(t){var e=this.getScrollElm(t);\"number\"==typeof e[this.key]&&(e.scrollTop=e.scrollHeight-e[this.key]+e.scrollTop),this.remove(e)},remove:function(t){void 0!==t[this.key]&&delete t[this.key]}};function x(t){return t.replace(/[A-Z]/g,function(t){return\"-\".concat(t.toLowerCase())})}function k(t){return t.offsetWidth+t.offsetHeight>0}var S=f({name:\"InfiniteLoading\",data:function(){return{scrollParent:null,scrollHandler:null,isFirstLoad:!0,status:s.READY,slots:d.slots}},components:{Spinner:h},computed:{isShowSpinner:function(){return this.status===s.LOADING},isShowError:function(){return this.status===s.ERROR},isShowNoResults:function(){return this.status===s.COMPLETE&&this.isFirstLoad},isShowNoMore:function(){return this.status===s.COMPLETE&&!this.isFirstLoad},slotStyles:function(){var t=this,e={};return Object.keys(d.slots).forEach(function(n){var i=x(n);(!t.$slots[i]&&!d.slots[n].render||t.$slots[i]&&!t.$slots[i][0].tag)&&(e[n]=l)}),e}},props:{distance:{type:Number,default:d.props.distance},spinner:String,direction:{type:String,default:\"bottom\"},forceUseInfiniteWrapper:{type:[Boolean,String],default:d.props.forceUseInfiniteWrapper},identifier:{default:+new Date},onInfinite:Function},watch:{identifier:function(){this.stateChanger.reset()}},mounted:function(){var t=this;this.$watch(\"forceUseInfiniteWrapper\",function(){t.scrollParent=t.getScrollParent()},{immediate:!0}),this.scrollHandler=function(e){t.status===s.READY&&(e&&e.constructor===Event&&k(t.$el)?v.throttle(t.attemptLoad):t.attemptLoad())},setTimeout(function(){t.scrollHandler(),t.scrollParent.addEventListener(\"scroll\",t.scrollHandler,r)},1),this.$on(\"$InfiniteLoading:loaded\",function(e){t.isFirstLoad=!1,\"top\"===t.direction&&t.$nextTick(function(){w.restore(t.scrollParent)}),t.status===s.LOADING&&t.$nextTick(t.attemptLoad.bind(null,!0)),e&&e.target===t||m(a.STATE_CHANGER)}),this.$on(\"$InfiniteLoading:complete\",function(e){t.status=s.COMPLETE,t.$nextTick(function(){t.$forceUpdate()}),t.scrollParent.removeEventListener(\"scroll\",t.scrollHandler,r),e&&e.target===t||m(a.STATE_CHANGER)}),this.$on(\"$InfiniteLoading:reset\",function(e){t.status=s.READY,t.isFirstLoad=!0,w.remove(t.scrollParent),t.scrollParent.addEventListener(\"scroll\",t.scrollHandler,r),setTimeout(function(){v.reset(),t.scrollHandler()},1),e&&e.target===t||m(a.IDENTIFIER)}),this.stateChanger={loaded:function(){t.$emit(\"$InfiniteLoading:loaded\",{target:t})},complete:function(){t.$emit(\"$InfiniteLoading:complete\",{target:t})},reset:function(){t.$emit(\"$InfiniteLoading:reset\",{target:t})},error:function(){t.status=s.ERROR,v.reset()}},this.onInfinite&&m(a.INFINITE_EVENT)},deactivated:function(){this.status===s.LOADING&&(this.status=s.READY),this.scrollParent.removeEventListener(\"scroll\",this.scrollHandler,r)},activated:function(){this.scrollParent.addEventListener(\"scroll\",this.scrollHandler,r)},methods:{attemptLoad:function(t){var e=this;this.status!==s.COMPLETE&&k(this.$el)&&this.getCurrentDistance()<=this.distance?(this.status=s.LOADING,\"top\"===this.direction&&this.$nextTick(function(){w.save(e.scrollParent)}),\"function\"==typeof this.onInfinite?this.onInfinite.call(null,this.stateChanger):this.$emit(\"infinite\",this.stateChanger),!t||this.forceUseInfiniteWrapper||y.isChecked||y.track()):this.status===s.LOADING&&(this.status=s.READY)},getCurrentDistance:function(){var t;\"top\"===this.direction?t=\"number\"==typeof this.scrollParent.scrollTop?this.scrollParent.scrollTop:this.scrollParent.pageYOffset:t=this.$el.getBoundingClientRect().top-(this.scrollParent===window?window.innerHeight:this.scrollParent.getBoundingClientRect().bottom);return t},getScrollParent:function(){var t,e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:this.$el;return\"string\"==typeof this.forceUseInfiniteWrapper&&(t=e.querySelector(this.forceUseInfiniteWrapper)),t||(\"BODY\"===e.tagName?t=window:!this.forceUseInfiniteWrapper&&[\"scroll\",\"auto\"].indexOf(getComputedStyle(e).overflowY)>-1?t=e:(e.hasAttribute(\"infinite-wrapper\")||e.hasAttribute(\"data-infinite-wrapper\"))&&(t=e)),t||this.getScrollParent(e.parentNode)}},destroyed:function(){!this.status!==s.COMPLETE&&(v.reset(),w.remove(this.scrollParent),this.scrollParent.removeEventListener(\"scroll\",this.scrollHandler,r))}},function(){var t=this,e=t.$createElement,n=t._self._c||e;return n(\"div\",{staticClass:\"infinite-loading-container\"},[n(\"div\",{directives:[{name:\"show\",rawName:\"v-show\",value:t.isShowSpinner,expression:\"isShowSpinner\"}],staticClass:\"infinite-status-prompt\",style:t.slotStyles.spinner},[t._t(\"spinner\",[n(\"spinner\",{attrs:{spinner:t.spinner}})])],2),t._v(\" \"),n(\"div\",{directives:[{name:\"show\",rawName:\"v-show\",value:t.isShowNoResults,expression:\"isShowNoResults\"}],staticClass:\"infinite-status-prompt\",style:t.slotStyles.noResults},[t._t(\"no-results\",[t.slots.noResults.render?n(t.slots.noResults,{tag:\"component\"}):[t._v(t._s(t.slots.noResults))]])],2),t._v(\" \"),n(\"div\",{directives:[{name:\"show\",rawName:\"v-show\",value:t.isShowNoMore,expression:\"isShowNoMore\"}],staticClass:\"infinite-status-prompt\",style:t.slotStyles.noMore},[t._t(\"no-more\",[t.slots.noMore.render?n(t.slots.noMore,{tag:\"component\"}):[t._v(t._s(t.slots.noMore))]])],2),t._v(\" \"),n(\"div\",{directives:[{name:\"show\",rawName:\"v-show\",value:t.isShowError,expression:\"isShowError\"}],staticClass:\"infinite-status-prompt\",style:t.slotStyles.error},[t._t(\"error\",[t.slots.error.render?n(t.slots.error,{tag:\"component\",attrs:{trigger:t.attemptLoad}}):[t._v(\"\\n \"+t._s(t.slots.error)+\"\\n \"),n(\"br\"),t._v(\" \"),n(\"button\",{staticClass:\"btn-try-infinite\",domProps:{textContent:t._s(t.slots.errorBtnText)},on:{click:t.attemptLoad}})]],{trigger:t.attemptLoad})],2)])},[],!1,function(t){var e=n(7);e.__inject__&&e.__inject__(t)},\"46b21138\",null);S.options.__file=\"InfiniteLoading.vue\";var E=S.exports;function _(t){d.mode=t.config.productionTip?\"development\":\"production\"}Object.defineProperty(E,\"install\",{configurable:!1,enumerable:!1,value:function(t,e){Object.assign(d.props,e&&e.props),Object.assign(d.slots,e&&e.slots),Object.assign(d.system,e&&e.system),t.component(\"infinite-loading\",E),_(t)}}),\"undefined\"!=typeof window&&window.Vue&&(window.Vue.component(\"infinite-loading\",E),_(window.Vue));e.default=E}])});"],"mappings":";;;;;;;;;;AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;AC3BA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACjCA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACrBA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;AChGA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACnHA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;AChCA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACJA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACNA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;AChBA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACJA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;;ACNA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACRA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;AC/BA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;AChEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;AClBA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACnBA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACvBA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACZA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACrCA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACJA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;;ACzBA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;;ACzLA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;AClGA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACbA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;;ACNA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACfA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACTA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;;ACPA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;;ACTA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACzFA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACLA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACTA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;AClCA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACTA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACrDA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACNA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACJA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACVA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACVA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;;ACZA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACJA;;;;;;;;;;;;ACAA;AACA;AACA;;;;;;;;;;;;ACFA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACTA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACZA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;AChBA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACXA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;AC5DA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;AC5DA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACTA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACNA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACpBA;AACA;AACA;;;;;;;;;;;;ACFA;;;;;;;;;;;;ACAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;;AC1CA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACpCA;;;;;;;;;;;;ACAA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACNA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACLA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;AChDA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACfA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACnBA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACnBA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACTA;;;;;;;;;;;;ACAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;AChBA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;AChBA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;;ACPA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACZA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;;ACvBA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACRA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACVA;AACA;AACA;;;;;;;;;;;;ACFA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACLA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACjCA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACLA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;;ACTA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;AClBA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACVA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACPA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACNA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;;ACTA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACTA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;AC1BA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACXA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACNA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACPA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACRA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACNA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACbA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACPA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACLA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACNA;AACA;AACA;;;;;;;;;;;;ACFA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACnBA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;;AChBA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;;AC3DA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;;ACnBA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;;ACRA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;;ACpDA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACRA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;;ACRA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;AC5BA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACdA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;AChCA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACnEA;AACA;AACA;AACA;AACA;AACA;;;;A","sourceRoot":""} \ No newline at end of file
+{"version":3,"file":"vue-1.js?v=51a3c16d4784be6ab1e7","sources":["webpack:///./node_modules/@nextcloud/auth/dist/index.js","webpack:///./node_modules/@nextcloud/auth/dist/requesttoken.js","webpack:///./node_modules/@nextcloud/auth/dist/user.js","webpack:///./node_modules/@nextcloud/event-bus/dist/ProxyBus.js","webpack:///./node_modules/@nextcloud/event-bus/dist/SimpleBus.js","webpack:///./node_modules/@nextcloud/event-bus/dist/index.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/a-function.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/a-possible-prototype.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/add-to-unscopables.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/an-instance.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/an-object.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/array-for-each.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/array-includes.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/array-iteration.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/array-method-has-species-support.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/array-method-is-strict.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/array-method-uses-to-length.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/array-species-create.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/call-with-safe-iteration-closing.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/check-correctness-of-iteration.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/classof-raw.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/classof.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/collection-strong.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/collection.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/copy-constructor-properties.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/correct-prototype-getter.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/create-iterator-constructor.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/create-non-enumerable-property.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/create-property-descriptor.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/create-property.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/define-iterator.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/descriptors.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/document-create-element.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/dom-iterables.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/engine-user-agent.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/engine-v8-version.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/enum-bug-keys.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/export.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/fails.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/freezing.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/function-bind-context.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/get-built-in.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/get-iterator-method.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/global.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/has.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/hidden-keys.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/html.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/ie8-dom-define.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/indexed-object.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/inherit-if-required.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/inspect-source.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/internal-metadata.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/internal-state.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/is-array-iterator-method.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/is-array.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/is-forced.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/is-object.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/is-pure.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/iterate.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/iterators-core.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/iterators.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/native-symbol.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/native-weak-map.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/object-create.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/object-define-properties.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/object-define-property.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/object-get-own-property-descriptor.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/object-get-own-property-names.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/object-get-own-property-symbols.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/object-get-prototype-of.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/object-keys-internal.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/object-keys.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/object-property-is-enumerable.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/object-set-prototype-of.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/object-to-string.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/own-keys.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/path.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/redefine-all.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/redefine.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/require-object-coercible.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/set-global.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/set-species.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/set-to-string-tag.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/shared-key.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/shared-store.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/shared.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/string-multibyte.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/to-absolute-index.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/to-indexed-object.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/to-integer.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/to-length.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/to-object.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/to-primitive.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/to-string-tag-support.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/uid.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/use-symbol-as-uid.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/well-known-symbol.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/modules/es.array.concat.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/modules/es.array.filter.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/modules/es.array.iterator.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/modules/es.map.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/modules/es.object.to-string.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/modules/es.string.iterator.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/modules/web.dom-collections.for-each.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/modules/web.dom-collections.iterator.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/semver/semver.js","webpack:///./node_modules/vue-click-outside/index.js","webpack:///./node_modules/vue-infinite-loading/dist/vue-infinite-loading.js"],"sourcesContent":["\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nObject.defineProperty(exports, \"getRequestToken\", {\n enumerable: true,\n get: function get() {\n return _requesttoken.getRequestToken;\n }\n});\nObject.defineProperty(exports, \"onRequestTokenUpdate\", {\n enumerable: true,\n get: function get() {\n return _requesttoken.onRequestTokenUpdate;\n }\n});\nObject.defineProperty(exports, \"getCurrentUser\", {\n enumerable: true,\n get: function get() {\n return _user.getCurrentUser;\n }\n});\n\nvar _requesttoken = require(\"./requesttoken\");\n\nvar _user = require(\"./user\");\n//# sourceMappingURL=index.js.map","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.getRequestToken = getRequestToken;\nexports.onRequestTokenUpdate = onRequestTokenUpdate;\n\nvar _eventBus = require(\"@nextcloud/event-bus\");\n\nvar tokenElement = document.getElementsByTagName('head')[0];\nvar token = tokenElement ? tokenElement.getAttribute('data-requesttoken') : null;\nvar observers = [];\n\nfunction getRequestToken() {\n return token;\n}\n\nfunction onRequestTokenUpdate(observer) {\n observers.push(observer);\n} // Listen to server event and keep token in sync\n\n\n(0, _eventBus.subscribe)('csrf-token-update', function (e) {\n token = e.token;\n observers.forEach(function (observer) {\n try {\n observer(e.token);\n } catch (e) {\n console.error('error updating CSRF token observer', e);\n }\n });\n});\n//# sourceMappingURL=requesttoken.js.map","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.getCurrentUser = getCurrentUser;\nvar uidElement = document.getElementsByTagName('head')[0];\nvar uid = uidElement ? uidElement.getAttribute('data-user') : null;\nvar displayNameElement = document.getElementsByTagName('head')[0];\nvar displayName = displayNameElement ? displayNameElement.getAttribute('data-user-displayname') : null;\n\nfunction getCurrentUser() {\n if (uid === null) {\n return null;\n }\n\n return {\n uid: uid,\n displayName: displayName\n };\n}\n//# sourceMappingURL=user.js.map","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.ProxyBus = void 0;\n\nvar _semver = _interopRequireDefault(require(\"semver\"));\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nfunction _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }\n\nfunction _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }\n\nfunction _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }\n\nvar packageJson = {\n name: \"@nextcloud/event-bus\",\n version: \"1.1.2\",\n description: \"\",\n main: \"dist/index.js\",\n types: \"dist/index.d.ts\",\n scripts: {\n build: \"babel ./lib --out-dir dist --extensions '.ts,.tsx' --source-maps && tsc --emitDeclarationOnly\",\n \"build:doc\": \"typedoc --excludeNotExported --mode file --out dist/doc lib/index.ts && touch dist/doc/.nojekyll\",\n \"check-types\": \"tsc\",\n dev: \"babel ./lib --out-dir dist --extensions '.ts,.tsx' --watch\",\n test: \"jest\",\n \"test:watch\": \"jest --watchAll\"\n },\n keywords: [\"nextcloud\"],\n homepage: \"https://github.com/nextcloud/nextcloud-event-bus#readme\",\n author: \"Christoph Wurst\",\n license: \"GPL-3.0-or-later\",\n repository: {\n type: \"git\",\n url: \"https://github.com/nextcloud/nextcloud-event-bus\"\n },\n dependencies: {\n \"@types/semver\": \"^6.2.0\",\n \"core-js\": \"^3.6.2\",\n semver: \"^6.3.0\"\n },\n devDependencies: {\n \"@babel/cli\": \"^7.6.0\",\n \"@babel/core\": \"^7.6.0\",\n \"@babel/plugin-proposal-class-properties\": \"^7.5.5\",\n \"@babel/preset-env\": \"^7.6.0\",\n \"@babel/preset-typescript\": \"^7.6.0\",\n \"@nextcloud/browserslist-config\": \"^1.0.0\",\n \"babel-jest\": \"^24.9.0\",\n \"babel-plugin-inline-json-import\": \"^0.3.2\",\n jest: \"^24.9.0\",\n typedoc: \"^0.15.7\",\n typescript: \"^3.6.3\"\n },\n browserslist: [\"extends @nextcloud/browserslist-config\"]\n};\n\nvar ProxyBus =\n/*#__PURE__*/\nfunction () {\n function ProxyBus(bus) {\n _classCallCheck(this, ProxyBus);\n\n _defineProperty(this, \"bus\", void 0);\n\n if (typeof bus.getVersion !== 'function' || !_semver.default.valid(bus.getVersion())) {\n console.warn('Proxying an event bus with an unknown or invalid version');\n } else if (_semver.default.major(bus.getVersion()) !== _semver.default.major(this.getVersion())) {\n console.warn('Proxying an event bus of version ' + bus.getVersion() + ' with ' + this.getVersion());\n }\n\n this.bus = bus;\n }\n\n _createClass(ProxyBus, [{\n key: \"getVersion\",\n value: function getVersion() {\n return packageJson.version;\n }\n }, {\n key: \"subscribe\",\n value: function subscribe(name, handler) {\n this.bus.subscribe(name, handler);\n }\n }, {\n key: \"unsubscribe\",\n value: function unsubscribe(name, handler) {\n this.bus.unsubscribe(name, handler);\n }\n }, {\n key: \"emit\",\n value: function emit(name, event) {\n this.bus.emit(name, event);\n }\n }]);\n\n return ProxyBus;\n}();\n\nexports.ProxyBus = ProxyBus;\n//# sourceMappingURL=ProxyBus.js.map","\"use strict\";\n\nrequire(\"core-js/modules/es.array.concat\");\n\nrequire(\"core-js/modules/es.array.filter\");\n\nrequire(\"core-js/modules/es.array.iterator\");\n\nrequire(\"core-js/modules/es.map\");\n\nrequire(\"core-js/modules/es.object.to-string\");\n\nrequire(\"core-js/modules/es.string.iterator\");\n\nrequire(\"core-js/modules/web.dom-collections.for-each\");\n\nrequire(\"core-js/modules/web.dom-collections.iterator\");\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.SimpleBus = void 0;\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nfunction _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }\n\nfunction _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }\n\nfunction _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }\n\nvar packageJson = {\n name: \"@nextcloud/event-bus\",\n version: \"1.1.2\",\n description: \"\",\n main: \"dist/index.js\",\n types: \"dist/index.d.ts\",\n scripts: {\n build: \"babel ./lib --out-dir dist --extensions '.ts,.tsx' --source-maps && tsc --emitDeclarationOnly\",\n \"build:doc\": \"typedoc --excludeNotExported --mode file --out dist/doc lib/index.ts && touch dist/doc/.nojekyll\",\n \"check-types\": \"tsc\",\n dev: \"babel ./lib --out-dir dist --extensions '.ts,.tsx' --watch\",\n test: \"jest\",\n \"test:watch\": \"jest --watchAll\"\n },\n keywords: [\"nextcloud\"],\n homepage: \"https://github.com/nextcloud/nextcloud-event-bus#readme\",\n author: \"Christoph Wurst\",\n license: \"GPL-3.0-or-later\",\n repository: {\n type: \"git\",\n url: \"https://github.com/nextcloud/nextcloud-event-bus\"\n },\n dependencies: {\n \"@types/semver\": \"^6.2.0\",\n \"core-js\": \"^3.6.2\",\n semver: \"^6.3.0\"\n },\n devDependencies: {\n \"@babel/cli\": \"^7.6.0\",\n \"@babel/core\": \"^7.6.0\",\n \"@babel/plugin-proposal-class-properties\": \"^7.5.5\",\n \"@babel/preset-env\": \"^7.6.0\",\n \"@babel/preset-typescript\": \"^7.6.0\",\n \"@nextcloud/browserslist-config\": \"^1.0.0\",\n \"babel-jest\": \"^24.9.0\",\n \"babel-plugin-inline-json-import\": \"^0.3.2\",\n jest: \"^24.9.0\",\n typedoc: \"^0.15.7\",\n typescript: \"^3.6.3\"\n },\n browserslist: [\"extends @nextcloud/browserslist-config\"]\n};\n\nvar SimpleBus =\n/*#__PURE__*/\nfunction () {\n function SimpleBus() {\n _classCallCheck(this, SimpleBus);\n\n _defineProperty(this, \"handlers\", new Map());\n }\n\n _createClass(SimpleBus, [{\n key: \"getVersion\",\n value: function getVersion() {\n return packageJson.version;\n }\n }, {\n key: \"subscribe\",\n value: function subscribe(name, handler) {\n this.handlers.set(name, (this.handlers.get(name) || []).concat(handler));\n }\n }, {\n key: \"unsubscribe\",\n value: function unsubscribe(name, handler) {\n this.handlers.set(name, (this.handlers.get(name) || []).filter(function (h) {\n return h != handler;\n }));\n }\n }, {\n key: \"emit\",\n value: function emit(name, event) {\n (this.handlers.get(name) || []).forEach(function (h) {\n try {\n h(event);\n } catch (e) {\n console.error('could not invoke event listener', e);\n }\n });\n }\n }]);\n\n return SimpleBus;\n}();\n\nexports.SimpleBus = SimpleBus;\n//# sourceMappingURL=SimpleBus.js.map","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.subscribe = subscribe;\nexports.unsubscribe = unsubscribe;\nexports.emit = emit;\n\nvar _ProxyBus = require(\"./ProxyBus\");\n\nvar _SimpleBus = require(\"./SimpleBus\");\n\nfunction getBus() {\n if (typeof window.OC !== 'undefined' && window.OC._eventBus && typeof window._nc_event_bus === 'undefined') {\n console.warn('found old event bus instance at OC._eventBus. Update your version!');\n window._nc_event_bus = window.OC._eventBus;\n } // Either use an existing event bus instance or create one\n\n\n if (typeof window._nc_event_bus !== 'undefined') {\n return new _ProxyBus.ProxyBus(window._nc_event_bus);\n } else {\n return window._nc_event_bus = new _SimpleBus.SimpleBus();\n }\n}\n\nvar bus = getBus();\n/**\n * Register an event listener\n *\n * @param name name of the event\n * @param handler callback invoked for every matching event emitted on the bus\n */\n\nfunction subscribe(name, handler) {\n bus.subscribe(name, handler);\n}\n/**\n * Unregister a previously registered event listener\n *\n * Note: doesn't work with anonymous functions (closures). Use method of an object or store listener function in variable.\n *\n * @param name name of the event\n * @param handler callback passed to `subscribed`\n */\n\n\nfunction unsubscribe(name, handler) {\n bus.unsubscribe(name, handler);\n}\n/**\n * Emit an event\n *\n * @param name name of the event\n * @param event event payload\n */\n\n\nfunction emit(name, event) {\n bus.emit(name, event);\n}\n//# sourceMappingURL=index.js.map","module.exports = function (it) {\n if (typeof it != 'function') {\n throw TypeError(String(it) + ' is not a function');\n } return it;\n};\n","var isObject = require('../internals/is-object');\n\nmodule.exports = function (it) {\n if (!isObject(it) && it !== null) {\n throw TypeError(\"Can't set \" + String(it) + ' as a prototype');\n } return it;\n};\n","var wellKnownSymbol = require('../internals/well-known-symbol');\nvar create = require('../internals/object-create');\nvar definePropertyModule = require('../internals/object-define-property');\n\nvar UNSCOPABLES = wellKnownSymbol('unscopables');\nvar ArrayPrototype = Array.prototype;\n\n// Array.prototype[@@unscopables]\n// https://tc39.github.io/ecma262/#sec-array.prototype-@@unscopables\nif (ArrayPrototype[UNSCOPABLES] == undefined) {\n definePropertyModule.f(ArrayPrototype, UNSCOPABLES, {\n configurable: true,\n value: create(null)\n });\n}\n\n// add a key to Array.prototype[@@unscopables]\nmodule.exports = function (key) {\n ArrayPrototype[UNSCOPABLES][key] = true;\n};\n","module.exports = function (it, Constructor, name) {\n if (!(it instanceof Constructor)) {\n throw TypeError('Incorrect ' + (name ? name + ' ' : '') + 'invocation');\n } return it;\n};\n","var isObject = require('../internals/is-object');\n\nmodule.exports = function (it) {\n if (!isObject(it)) {\n throw TypeError(String(it) + ' is not an object');\n } return it;\n};\n","'use strict';\nvar $forEach = require('../internals/array-iteration').forEach;\nvar arrayMethodIsStrict = require('../internals/array-method-is-strict');\nvar arrayMethodUsesToLength = require('../internals/array-method-uses-to-length');\n\nvar STRICT_METHOD = arrayMethodIsStrict('forEach');\nvar USES_TO_LENGTH = arrayMethodUsesToLength('forEach');\n\n// `Array.prototype.forEach` method implementation\n// https://tc39.github.io/ecma262/#sec-array.prototype.foreach\nmodule.exports = (!STRICT_METHOD || !USES_TO_LENGTH) ? function forEach(callbackfn /* , thisArg */) {\n return $forEach(this, callbackfn, arguments.length > 1 ? arguments[1] : undefined);\n} : [].forEach;\n","var toIndexedObject = require('../internals/to-indexed-object');\nvar toLength = require('../internals/to-length');\nvar toAbsoluteIndex = require('../internals/to-absolute-index');\n\n// `Array.prototype.{ indexOf, includes }` methods implementation\nvar createMethod = function (IS_INCLUDES) {\n return function ($this, el, fromIndex) {\n var O = toIndexedObject($this);\n var length = toLength(O.length);\n var index = toAbsoluteIndex(fromIndex, length);\n var value;\n // Array#includes uses SameValueZero equality algorithm\n // eslint-disable-next-line no-self-compare\n if (IS_INCLUDES && el != el) while (length > index) {\n value = O[index++];\n // eslint-disable-next-line no-self-compare\n if (value != value) return true;\n // Array#indexOf ignores holes, Array#includes - not\n } else for (;length > index; index++) {\n if ((IS_INCLUDES || index in O) && O[index] === el) return IS_INCLUDES || index || 0;\n } return !IS_INCLUDES && -1;\n };\n};\n\nmodule.exports = {\n // `Array.prototype.includes` method\n // https://tc39.github.io/ecma262/#sec-array.prototype.includes\n includes: createMethod(true),\n // `Array.prototype.indexOf` method\n // https://tc39.github.io/ecma262/#sec-array.prototype.indexof\n indexOf: createMethod(false)\n};\n","var bind = require('../internals/function-bind-context');\nvar IndexedObject = require('../internals/indexed-object');\nvar toObject = require('../internals/to-object');\nvar toLength = require('../internals/to-length');\nvar arraySpeciesCreate = require('../internals/array-species-create');\n\nvar push = [].push;\n\n// `Array.prototype.{ forEach, map, filter, some, every, find, findIndex }` methods implementation\nvar createMethod = function (TYPE) {\n var IS_MAP = TYPE == 1;\n var IS_FILTER = TYPE == 2;\n var IS_SOME = TYPE == 3;\n var IS_EVERY = TYPE == 4;\n var IS_FIND_INDEX = TYPE == 6;\n var NO_HOLES = TYPE == 5 || IS_FIND_INDEX;\n return function ($this, callbackfn, that, specificCreate) {\n var O = toObject($this);\n var self = IndexedObject(O);\n var boundFunction = bind(callbackfn, that, 3);\n var length = toLength(self.length);\n var index = 0;\n var create = specificCreate || arraySpeciesCreate;\n var target = IS_MAP ? create($this, length) : IS_FILTER ? create($this, 0) : undefined;\n var value, result;\n for (;length > index; index++) if (NO_HOLES || index in self) {\n value = self[index];\n result = boundFunction(value, index, O);\n if (TYPE) {\n if (IS_MAP) target[index] = result; // map\n else if (result) switch (TYPE) {\n case 3: return true; // some\n case 5: return value; // find\n case 6: return index; // findIndex\n case 2: push.call(target, value); // filter\n } else if (IS_EVERY) return false; // every\n }\n }\n return IS_FIND_INDEX ? -1 : IS_SOME || IS_EVERY ? IS_EVERY : target;\n };\n};\n\nmodule.exports = {\n // `Array.prototype.forEach` method\n // https://tc39.github.io/ecma262/#sec-array.prototype.foreach\n forEach: createMethod(0),\n // `Array.prototype.map` method\n // https://tc39.github.io/ecma262/#sec-array.prototype.map\n map: createMethod(1),\n // `Array.prototype.filter` method\n // https://tc39.github.io/ecma262/#sec-array.prototype.filter\n filter: createMethod(2),\n // `Array.prototype.some` method\n // https://tc39.github.io/ecma262/#sec-array.prototype.some\n some: createMethod(3),\n // `Array.prototype.every` method\n // https://tc39.github.io/ecma262/#sec-array.prototype.every\n every: createMethod(4),\n // `Array.prototype.find` method\n // https://tc39.github.io/ecma262/#sec-array.prototype.find\n find: createMethod(5),\n // `Array.prototype.findIndex` method\n // https://tc39.github.io/ecma262/#sec-array.prototype.findIndex\n findIndex: createMethod(6)\n};\n","var fails = require('../internals/fails');\nvar wellKnownSymbol = require('../internals/well-known-symbol');\nvar V8_VERSION = require('../internals/engine-v8-version');\n\nvar SPECIES = wellKnownSymbol('species');\n\nmodule.exports = function (METHOD_NAME) {\n // We can't use this feature detection in V8 since it causes\n // deoptimization and serious performance degradation\n // https://github.com/zloirock/core-js/issues/677\n return V8_VERSION >= 51 || !fails(function () {\n var array = [];\n var constructor = array.constructor = {};\n constructor[SPECIES] = function () {\n return { foo: 1 };\n };\n return array[METHOD_NAME](Boolean).foo !== 1;\n });\n};\n","'use strict';\nvar fails = require('../internals/fails');\n\nmodule.exports = function (METHOD_NAME, argument) {\n var method = [][METHOD_NAME];\n return !!method && fails(function () {\n // eslint-disable-next-line no-useless-call,no-throw-literal\n method.call(null, argument || function () { throw 1; }, 1);\n });\n};\n","var DESCRIPTORS = require('../internals/descriptors');\nvar fails = require('../internals/fails');\nvar has = require('../internals/has');\n\nvar defineProperty = Object.defineProperty;\nvar cache = {};\n\nvar thrower = function (it) { throw it; };\n\nmodule.exports = function (METHOD_NAME, options) {\n if (has(cache, METHOD_NAME)) return cache[METHOD_NAME];\n if (!options) options = {};\n var method = [][METHOD_NAME];\n var ACCESSORS = has(options, 'ACCESSORS') ? options.ACCESSORS : false;\n var argument0 = has(options, 0) ? options[0] : thrower;\n var argument1 = has(options, 1) ? options[1] : undefined;\n\n return cache[METHOD_NAME] = !!method && !fails(function () {\n if (ACCESSORS && !DESCRIPTORS) return true;\n var O = { length: -1 };\n\n if (ACCESSORS) defineProperty(O, 1, { enumerable: true, get: thrower });\n else O[1] = 1;\n\n method.call(O, argument0, argument1);\n });\n};\n","var isObject = require('../internals/is-object');\nvar isArray = require('../internals/is-array');\nvar wellKnownSymbol = require('../internals/well-known-symbol');\n\nvar SPECIES = wellKnownSymbol('species');\n\n// `ArraySpeciesCreate` abstract operation\n// https://tc39.github.io/ecma262/#sec-arrayspeciescreate\nmodule.exports = function (originalArray, length) {\n var C;\n if (isArray(originalArray)) {\n C = originalArray.constructor;\n // cross-realm fallback\n if (typeof C == 'function' && (C === Array || isArray(C.prototype))) C = undefined;\n else if (isObject(C)) {\n C = C[SPECIES];\n if (C === null) C = undefined;\n }\n } return new (C === undefined ? Array : C)(length === 0 ? 0 : length);\n};\n","var anObject = require('../internals/an-object');\n\n// call something on iterator step with safe closing on error\nmodule.exports = function (iterator, fn, value, ENTRIES) {\n try {\n return ENTRIES ? fn(anObject(value)[0], value[1]) : fn(value);\n // 7.4.6 IteratorClose(iterator, completion)\n } catch (error) {\n var returnMethod = iterator['return'];\n if (returnMethod !== undefined) anObject(returnMethod.call(iterator));\n throw error;\n }\n};\n","var wellKnownSymbol = require('../internals/well-known-symbol');\n\nvar ITERATOR = wellKnownSymbol('iterator');\nvar SAFE_CLOSING = false;\n\ntry {\n var called = 0;\n var iteratorWithReturn = {\n next: function () {\n return { done: !!called++ };\n },\n 'return': function () {\n SAFE_CLOSING = true;\n }\n };\n iteratorWithReturn[ITERATOR] = function () {\n return this;\n };\n // eslint-disable-next-line no-throw-literal\n Array.from(iteratorWithReturn, function () { throw 2; });\n} catch (error) { /* empty */ }\n\nmodule.exports = function (exec, SKIP_CLOSING) {\n if (!SKIP_CLOSING && !SAFE_CLOSING) return false;\n var ITERATION_SUPPORT = false;\n try {\n var object = {};\n object[ITERATOR] = function () {\n return {\n next: function () {\n return { done: ITERATION_SUPPORT = true };\n }\n };\n };\n exec(object);\n } catch (error) { /* empty */ }\n return ITERATION_SUPPORT;\n};\n","var toString = {}.toString;\n\nmodule.exports = function (it) {\n return toString.call(it).slice(8, -1);\n};\n","var TO_STRING_TAG_SUPPORT = require('../internals/to-string-tag-support');\nvar classofRaw = require('../internals/classof-raw');\nvar wellKnownSymbol = require('../internals/well-known-symbol');\n\nvar TO_STRING_TAG = wellKnownSymbol('toStringTag');\n// ES3 wrong here\nvar CORRECT_ARGUMENTS = classofRaw(function () { return arguments; }()) == 'Arguments';\n\n// fallback for IE11 Script Access Denied error\nvar tryGet = function (it, key) {\n try {\n return it[key];\n } catch (error) { /* empty */ }\n};\n\n// getting tag from ES6+ `Object.prototype.toString`\nmodule.exports = TO_STRING_TAG_SUPPORT ? classofRaw : function (it) {\n var O, tag, result;\n return it === undefined ? 'Undefined' : it === null ? 'Null'\n // @@toStringTag case\n : typeof (tag = tryGet(O = Object(it), TO_STRING_TAG)) == 'string' ? tag\n // builtinTag case\n : CORRECT_ARGUMENTS ? classofRaw(O)\n // ES3 arguments fallback\n : (result = classofRaw(O)) == 'Object' && typeof O.callee == 'function' ? 'Arguments' : result;\n};\n","'use strict';\nvar defineProperty = require('../internals/object-define-property').f;\nvar create = require('../internals/object-create');\nvar redefineAll = require('../internals/redefine-all');\nvar bind = require('../internals/function-bind-context');\nvar anInstance = require('../internals/an-instance');\nvar iterate = require('../internals/iterate');\nvar defineIterator = require('../internals/define-iterator');\nvar setSpecies = require('../internals/set-species');\nvar DESCRIPTORS = require('../internals/descriptors');\nvar fastKey = require('../internals/internal-metadata').fastKey;\nvar InternalStateModule = require('../internals/internal-state');\n\nvar setInternalState = InternalStateModule.set;\nvar internalStateGetterFor = InternalStateModule.getterFor;\n\nmodule.exports = {\n getConstructor: function (wrapper, CONSTRUCTOR_NAME, IS_MAP, ADDER) {\n var C = wrapper(function (that, iterable) {\n anInstance(that, C, CONSTRUCTOR_NAME);\n setInternalState(that, {\n type: CONSTRUCTOR_NAME,\n index: create(null),\n first: undefined,\n last: undefined,\n size: 0\n });\n if (!DESCRIPTORS) that.size = 0;\n if (iterable != undefined) iterate(iterable, that[ADDER], that, IS_MAP);\n });\n\n var getInternalState = internalStateGetterFor(CONSTRUCTOR_NAME);\n\n var define = function (that, key, value) {\n var state = getInternalState(that);\n var entry = getEntry(that, key);\n var previous, index;\n // change existing entry\n if (entry) {\n entry.value = value;\n // create new entry\n } else {\n state.last = entry = {\n index: index = fastKey(key, true),\n key: key,\n value: value,\n previous: previous = state.last,\n next: undefined,\n removed: false\n };\n if (!state.first) state.first = entry;\n if (previous) previous.next = entry;\n if (DESCRIPTORS) state.size++;\n else that.size++;\n // add to index\n if (index !== 'F') state.index[index] = entry;\n } return that;\n };\n\n var getEntry = function (that, key) {\n var state = getInternalState(that);\n // fast case\n var index = fastKey(key);\n var entry;\n if (index !== 'F') return state.index[index];\n // frozen object case\n for (entry = state.first; entry; entry = entry.next) {\n if (entry.key == key) return entry;\n }\n };\n\n redefineAll(C.prototype, {\n // 23.1.3.1 Map.prototype.clear()\n // 23.2.3.2 Set.prototype.clear()\n clear: function clear() {\n var that = this;\n var state = getInternalState(that);\n var data = state.index;\n var entry = state.first;\n while (entry) {\n entry.removed = true;\n if (entry.previous) entry.previous = entry.previous.next = undefined;\n delete data[entry.index];\n entry = entry.next;\n }\n state.first = state.last = undefined;\n if (DESCRIPTORS) state.size = 0;\n else that.size = 0;\n },\n // 23.1.3.3 Map.prototype.delete(key)\n // 23.2.3.4 Set.prototype.delete(value)\n 'delete': function (key) {\n var that = this;\n var state = getInternalState(that);\n var entry = getEntry(that, key);\n if (entry) {\n var next = entry.next;\n var prev = entry.previous;\n delete state.index[entry.index];\n entry.removed = true;\n if (prev) prev.next = next;\n if (next) next.previous = prev;\n if (state.first == entry) state.first = next;\n if (state.last == entry) state.last = prev;\n if (DESCRIPTORS) state.size--;\n else that.size--;\n } return !!entry;\n },\n // 23.2.3.6 Set.prototype.forEach(callbackfn, thisArg = undefined)\n // 23.1.3.5 Map.prototype.forEach(callbackfn, thisArg = undefined)\n forEach: function forEach(callbackfn /* , that = undefined */) {\n var state = getInternalState(this);\n var boundFunction = bind(callbackfn, arguments.length > 1 ? arguments[1] : undefined, 3);\n var entry;\n while (entry = entry ? entry.next : state.first) {\n boundFunction(entry.value, entry.key, this);\n // revert to the last existing entry\n while (entry && entry.removed) entry = entry.previous;\n }\n },\n // 23.1.3.7 Map.prototype.has(key)\n // 23.2.3.7 Set.prototype.has(value)\n has: function has(key) {\n return !!getEntry(this, key);\n }\n });\n\n redefineAll(C.prototype, IS_MAP ? {\n // 23.1.3.6 Map.prototype.get(key)\n get: function get(key) {\n var entry = getEntry(this, key);\n return entry && entry.value;\n },\n // 23.1.3.9 Map.prototype.set(key, value)\n set: function set(key, value) {\n return define(this, key === 0 ? 0 : key, value);\n }\n } : {\n // 23.2.3.1 Set.prototype.add(value)\n add: function add(value) {\n return define(this, value = value === 0 ? 0 : value, value);\n }\n });\n if (DESCRIPTORS) defineProperty(C.prototype, 'size', {\n get: function () {\n return getInternalState(this).size;\n }\n });\n return C;\n },\n setStrong: function (C, CONSTRUCTOR_NAME, IS_MAP) {\n var ITERATOR_NAME = CONSTRUCTOR_NAME + ' Iterator';\n var getInternalCollectionState = internalStateGetterFor(CONSTRUCTOR_NAME);\n var getInternalIteratorState = internalStateGetterFor(ITERATOR_NAME);\n // add .keys, .values, .entries, [@@iterator]\n // 23.1.3.4, 23.1.3.8, 23.1.3.11, 23.1.3.12, 23.2.3.5, 23.2.3.8, 23.2.3.10, 23.2.3.11\n defineIterator(C, CONSTRUCTOR_NAME, function (iterated, kind) {\n setInternalState(this, {\n type: ITERATOR_NAME,\n target: iterated,\n state: getInternalCollectionState(iterated),\n kind: kind,\n last: undefined\n });\n }, function () {\n var state = getInternalIteratorState(this);\n var kind = state.kind;\n var entry = state.last;\n // revert to the last existing entry\n while (entry && entry.removed) entry = entry.previous;\n // get next entry\n if (!state.target || !(state.last = entry = entry ? entry.next : state.state.first)) {\n // or finish the iteration\n state.target = undefined;\n return { value: undefined, done: true };\n }\n // return step by kind\n if (kind == 'keys') return { value: entry.key, done: false };\n if (kind == 'values') return { value: entry.value, done: false };\n return { value: [entry.key, entry.value], done: false };\n }, IS_MAP ? 'entries' : 'values', !IS_MAP, true);\n\n // add [@@species], 23.1.2.2, 23.2.2.2\n setSpecies(CONSTRUCTOR_NAME);\n }\n};\n","'use strict';\nvar $ = require('../internals/export');\nvar global = require('../internals/global');\nvar isForced = require('../internals/is-forced');\nvar redefine = require('../internals/redefine');\nvar InternalMetadataModule = require('../internals/internal-metadata');\nvar iterate = require('../internals/iterate');\nvar anInstance = require('../internals/an-instance');\nvar isObject = require('../internals/is-object');\nvar fails = require('../internals/fails');\nvar checkCorrectnessOfIteration = require('../internals/check-correctness-of-iteration');\nvar setToStringTag = require('../internals/set-to-string-tag');\nvar inheritIfRequired = require('../internals/inherit-if-required');\n\nmodule.exports = function (CONSTRUCTOR_NAME, wrapper, common) {\n var IS_MAP = CONSTRUCTOR_NAME.indexOf('Map') !== -1;\n var IS_WEAK = CONSTRUCTOR_NAME.indexOf('Weak') !== -1;\n var ADDER = IS_MAP ? 'set' : 'add';\n var NativeConstructor = global[CONSTRUCTOR_NAME];\n var NativePrototype = NativeConstructor && NativeConstructor.prototype;\n var Constructor = NativeConstructor;\n var exported = {};\n\n var fixMethod = function (KEY) {\n var nativeMethod = NativePrototype[KEY];\n redefine(NativePrototype, KEY,\n KEY == 'add' ? function add(value) {\n nativeMethod.call(this, value === 0 ? 0 : value);\n return this;\n } : KEY == 'delete' ? function (key) {\n return IS_WEAK && !isObject(key) ? false : nativeMethod.call(this, key === 0 ? 0 : key);\n } : KEY == 'get' ? function get(key) {\n return IS_WEAK && !isObject(key) ? undefined : nativeMethod.call(this, key === 0 ? 0 : key);\n } : KEY == 'has' ? function has(key) {\n return IS_WEAK && !isObject(key) ? false : nativeMethod.call(this, key === 0 ? 0 : key);\n } : function set(key, value) {\n nativeMethod.call(this, key === 0 ? 0 : key, value);\n return this;\n }\n );\n };\n\n // eslint-disable-next-line max-len\n if (isForced(CONSTRUCTOR_NAME, typeof NativeConstructor != 'function' || !(IS_WEAK || NativePrototype.forEach && !fails(function () {\n new NativeConstructor().entries().next();\n })))) {\n // create collection constructor\n Constructor = common.getConstructor(wrapper, CONSTRUCTOR_NAME, IS_MAP, ADDER);\n InternalMetadataModule.REQUIRED = true;\n } else if (isForced(CONSTRUCTOR_NAME, true)) {\n var instance = new Constructor();\n // early implementations not supports chaining\n var HASNT_CHAINING = instance[ADDER](IS_WEAK ? {} : -0, 1) != instance;\n // V8 ~ Chromium 40- weak-collections throws on primitives, but should return false\n var THROWS_ON_PRIMITIVES = fails(function () { instance.has(1); });\n // most early implementations doesn't supports iterables, most modern - not close it correctly\n // eslint-disable-next-line no-new\n var ACCEPT_ITERABLES = checkCorrectnessOfIteration(function (iterable) { new NativeConstructor(iterable); });\n // for early implementations -0 and +0 not the same\n var BUGGY_ZERO = !IS_WEAK && fails(function () {\n // V8 ~ Chromium 42- fails only with 5+ elements\n var $instance = new NativeConstructor();\n var index = 5;\n while (index--) $instance[ADDER](index, index);\n return !$instance.has(-0);\n });\n\n if (!ACCEPT_ITERABLES) {\n Constructor = wrapper(function (dummy, iterable) {\n anInstance(dummy, Constructor, CONSTRUCTOR_NAME);\n var that = inheritIfRequired(new NativeConstructor(), dummy, Constructor);\n if (iterable != undefined) iterate(iterable, that[ADDER], that, IS_MAP);\n return that;\n });\n Constructor.prototype = NativePrototype;\n NativePrototype.constructor = Constructor;\n }\n\n if (THROWS_ON_PRIMITIVES || BUGGY_ZERO) {\n fixMethod('delete');\n fixMethod('has');\n IS_MAP && fixMethod('get');\n }\n\n if (BUGGY_ZERO || HASNT_CHAINING) fixMethod(ADDER);\n\n // weak collections should not contains .clear method\n if (IS_WEAK && NativePrototype.clear) delete NativePrototype.clear;\n }\n\n exported[CONSTRUCTOR_NAME] = Constructor;\n $({ global: true, forced: Constructor != NativeConstructor }, exported);\n\n setToStringTag(Constructor, CONSTRUCTOR_NAME);\n\n if (!IS_WEAK) common.setStrong(Constructor, CONSTRUCTOR_NAME, IS_MAP);\n\n return Constructor;\n};\n","var has = require('../internals/has');\nvar ownKeys = require('../internals/own-keys');\nvar getOwnPropertyDescriptorModule = require('../internals/object-get-own-property-descriptor');\nvar definePropertyModule = require('../internals/object-define-property');\n\nmodule.exports = function (target, source) {\n var keys = ownKeys(source);\n var defineProperty = definePropertyModule.f;\n var getOwnPropertyDescriptor = getOwnPropertyDescriptorModule.f;\n for (var i = 0; i < keys.length; i++) {\n var key = keys[i];\n if (!has(target, key)) defineProperty(target, key, getOwnPropertyDescriptor(source, key));\n }\n};\n","var fails = require('../internals/fails');\n\nmodule.exports = !fails(function () {\n function F() { /* empty */ }\n F.prototype.constructor = null;\n return Object.getPrototypeOf(new F()) !== F.prototype;\n});\n","'use strict';\nvar IteratorPrototype = require('../internals/iterators-core').IteratorPrototype;\nvar create = require('../internals/object-create');\nvar createPropertyDescriptor = require('../internals/create-property-descriptor');\nvar setToStringTag = require('../internals/set-to-string-tag');\nvar Iterators = require('../internals/iterators');\n\nvar returnThis = function () { return this; };\n\nmodule.exports = function (IteratorConstructor, NAME, next) {\n var TO_STRING_TAG = NAME + ' Iterator';\n IteratorConstructor.prototype = create(IteratorPrototype, { next: createPropertyDescriptor(1, next) });\n setToStringTag(IteratorConstructor, TO_STRING_TAG, false, true);\n Iterators[TO_STRING_TAG] = returnThis;\n return IteratorConstructor;\n};\n","var DESCRIPTORS = require('../internals/descriptors');\nvar definePropertyModule = require('../internals/object-define-property');\nvar createPropertyDescriptor = require('../internals/create-property-descriptor');\n\nmodule.exports = DESCRIPTORS ? function (object, key, value) {\n return definePropertyModule.f(object, key, createPropertyDescriptor(1, value));\n} : function (object, key, value) {\n object[key] = value;\n return object;\n};\n","module.exports = function (bitmap, value) {\n return {\n enumerable: !(bitmap & 1),\n configurable: !(bitmap & 2),\n writable: !(bitmap & 4),\n value: value\n };\n};\n","'use strict';\nvar toPrimitive = require('../internals/to-primitive');\nvar definePropertyModule = require('../internals/object-define-property');\nvar createPropertyDescriptor = require('../internals/create-property-descriptor');\n\nmodule.exports = function (object, key, value) {\n var propertyKey = toPrimitive(key);\n if (propertyKey in object) definePropertyModule.f(object, propertyKey, createPropertyDescriptor(0, value));\n else object[propertyKey] = value;\n};\n","'use strict';\nvar $ = require('../internals/export');\nvar createIteratorConstructor = require('../internals/create-iterator-constructor');\nvar getPrototypeOf = require('../internals/object-get-prototype-of');\nvar setPrototypeOf = require('../internals/object-set-prototype-of');\nvar setToStringTag = require('../internals/set-to-string-tag');\nvar createNonEnumerableProperty = require('../internals/create-non-enumerable-property');\nvar redefine = require('../internals/redefine');\nvar wellKnownSymbol = require('../internals/well-known-symbol');\nvar IS_PURE = require('../internals/is-pure');\nvar Iterators = require('../internals/iterators');\nvar IteratorsCore = require('../internals/iterators-core');\n\nvar IteratorPrototype = IteratorsCore.IteratorPrototype;\nvar BUGGY_SAFARI_ITERATORS = IteratorsCore.BUGGY_SAFARI_ITERATORS;\nvar ITERATOR = wellKnownSymbol('iterator');\nvar KEYS = 'keys';\nvar VALUES = 'values';\nvar ENTRIES = 'entries';\n\nvar returnThis = function () { return this; };\n\nmodule.exports = function (Iterable, NAME, IteratorConstructor, next, DEFAULT, IS_SET, FORCED) {\n createIteratorConstructor(IteratorConstructor, NAME, next);\n\n var getIterationMethod = function (KIND) {\n if (KIND === DEFAULT && defaultIterator) return defaultIterator;\n if (!BUGGY_SAFARI_ITERATORS && KIND in IterablePrototype) return IterablePrototype[KIND];\n switch (KIND) {\n case KEYS: return function keys() { return new IteratorConstructor(this, KIND); };\n case VALUES: return function values() { return new IteratorConstructor(this, KIND); };\n case ENTRIES: return function entries() { return new IteratorConstructor(this, KIND); };\n } return function () { return new IteratorConstructor(this); };\n };\n\n var TO_STRING_TAG = NAME + ' Iterator';\n var INCORRECT_VALUES_NAME = false;\n var IterablePrototype = Iterable.prototype;\n var nativeIterator = IterablePrototype[ITERATOR]\n || IterablePrototype['@@iterator']\n || DEFAULT && IterablePrototype[DEFAULT];\n var defaultIterator = !BUGGY_SAFARI_ITERATORS && nativeIterator || getIterationMethod(DEFAULT);\n var anyNativeIterator = NAME == 'Array' ? IterablePrototype.entries || nativeIterator : nativeIterator;\n var CurrentIteratorPrototype, methods, KEY;\n\n // fix native\n if (anyNativeIterator) {\n CurrentIteratorPrototype = getPrototypeOf(anyNativeIterator.call(new Iterable()));\n if (IteratorPrototype !== Object.prototype && CurrentIteratorPrototype.next) {\n if (!IS_PURE && getPrototypeOf(CurrentIteratorPrototype) !== IteratorPrototype) {\n if (setPrototypeOf) {\n setPrototypeOf(CurrentIteratorPrototype, IteratorPrototype);\n } else if (typeof CurrentIteratorPrototype[ITERATOR] != 'function') {\n createNonEnumerableProperty(CurrentIteratorPrototype, ITERATOR, returnThis);\n }\n }\n // Set @@toStringTag to native iterators\n setToStringTag(CurrentIteratorPrototype, TO_STRING_TAG, true, true);\n if (IS_PURE) Iterators[TO_STRING_TAG] = returnThis;\n }\n }\n\n // fix Array#{values, @@iterator}.name in V8 / FF\n if (DEFAULT == VALUES && nativeIterator && nativeIterator.name !== VALUES) {\n INCORRECT_VALUES_NAME = true;\n defaultIterator = function values() { return nativeIterator.call(this); };\n }\n\n // define iterator\n if ((!IS_PURE || FORCED) && IterablePrototype[ITERATOR] !== defaultIterator) {\n createNonEnumerableProperty(IterablePrototype, ITERATOR, defaultIterator);\n }\n Iterators[NAME] = defaultIterator;\n\n // export additional methods\n if (DEFAULT) {\n methods = {\n values: getIterationMethod(VALUES),\n keys: IS_SET ? defaultIterator : getIterationMethod(KEYS),\n entries: getIterationMethod(ENTRIES)\n };\n if (FORCED) for (KEY in methods) {\n if (BUGGY_SAFARI_ITERATORS || INCORRECT_VALUES_NAME || !(KEY in IterablePrototype)) {\n redefine(IterablePrototype, KEY, methods[KEY]);\n }\n } else $({ target: NAME, proto: true, forced: BUGGY_SAFARI_ITERATORS || INCORRECT_VALUES_NAME }, methods);\n }\n\n return methods;\n};\n","var fails = require('../internals/fails');\n\n// Thank's IE8 for his funny defineProperty\nmodule.exports = !fails(function () {\n return Object.defineProperty({}, 1, { get: function () { return 7; } })[1] != 7;\n});\n","var global = require('../internals/global');\nvar isObject = require('../internals/is-object');\n\nvar document = global.document;\n// typeof document.createElement is 'object' in old IE\nvar EXISTS = isObject(document) && isObject(document.createElement);\n\nmodule.exports = function (it) {\n return EXISTS ? document.createElement(it) : {};\n};\n","// iterable DOM collections\n// flag - `iterable` interface - 'entries', 'keys', 'values', 'forEach' methods\nmodule.exports = {\n CSSRuleList: 0,\n CSSStyleDeclaration: 0,\n CSSValueList: 0,\n ClientRectList: 0,\n DOMRectList: 0,\n DOMStringList: 0,\n DOMTokenList: 1,\n DataTransferItemList: 0,\n FileList: 0,\n HTMLAllCollection: 0,\n HTMLCollection: 0,\n HTMLFormElement: 0,\n HTMLSelectElement: 0,\n MediaList: 0,\n MimeTypeArray: 0,\n NamedNodeMap: 0,\n NodeList: 1,\n PaintRequestList: 0,\n Plugin: 0,\n PluginArray: 0,\n SVGLengthList: 0,\n SVGNumberList: 0,\n SVGPathSegList: 0,\n SVGPointList: 0,\n SVGStringList: 0,\n SVGTransformList: 0,\n SourceBufferList: 0,\n StyleSheetList: 0,\n TextTrackCueList: 0,\n TextTrackList: 0,\n TouchList: 0\n};\n","var getBuiltIn = require('../internals/get-built-in');\n\nmodule.exports = getBuiltIn('navigator', 'userAgent') || '';\n","var global = require('../internals/global');\nvar userAgent = require('../internals/engine-user-agent');\n\nvar process = global.process;\nvar versions = process && process.versions;\nvar v8 = versions && versions.v8;\nvar match, version;\n\nif (v8) {\n match = v8.split('.');\n version = match[0] + match[1];\n} else if (userAgent) {\n match = userAgent.match(/Edge\\/(\\d+)/);\n if (!match || match[1] >= 74) {\n match = userAgent.match(/Chrome\\/(\\d+)/);\n if (match) version = match[1];\n }\n}\n\nmodule.exports = version && +version;\n","// IE8- don't enum bug keys\nmodule.exports = [\n 'constructor',\n 'hasOwnProperty',\n 'isPrototypeOf',\n 'propertyIsEnumerable',\n 'toLocaleString',\n 'toString',\n 'valueOf'\n];\n","var global = require('../internals/global');\nvar getOwnPropertyDescriptor = require('../internals/object-get-own-property-descriptor').f;\nvar createNonEnumerableProperty = require('../internals/create-non-enumerable-property');\nvar redefine = require('../internals/redefine');\nvar setGlobal = require('../internals/set-global');\nvar copyConstructorProperties = require('../internals/copy-constructor-properties');\nvar isForced = require('../internals/is-forced');\n\n/*\n options.target - name of the target object\n options.global - target is the global object\n options.stat - export as static methods of target\n options.proto - export as prototype methods of target\n options.real - real prototype method for the `pure` version\n options.forced - export even if the native feature is available\n options.bind - bind methods to the target, required for the `pure` version\n options.wrap - wrap constructors to preventing global pollution, required for the `pure` version\n options.unsafe - use the simple assignment of property instead of delete + defineProperty\n options.sham - add a flag to not completely full polyfills\n options.enumerable - export as enumerable property\n options.noTargetGet - prevent calling a getter on target\n*/\nmodule.exports = function (options, source) {\n var TARGET = options.target;\n var GLOBAL = options.global;\n var STATIC = options.stat;\n var FORCED, target, key, targetProperty, sourceProperty, descriptor;\n if (GLOBAL) {\n target = global;\n } else if (STATIC) {\n target = global[TARGET] || setGlobal(TARGET, {});\n } else {\n target = (global[TARGET] || {}).prototype;\n }\n if (target) for (key in source) {\n sourceProperty = source[key];\n if (options.noTargetGet) {\n descriptor = getOwnPropertyDescriptor(target, key);\n targetProperty = descriptor && descriptor.value;\n } else targetProperty = target[key];\n FORCED = isForced(GLOBAL ? key : TARGET + (STATIC ? '.' : '#') + key, options.forced);\n // contained in target\n if (!FORCED && targetProperty !== undefined) {\n if (typeof sourceProperty === typeof targetProperty) continue;\n copyConstructorProperties(sourceProperty, targetProperty);\n }\n // add a flag to not completely full polyfills\n if (options.sham || (targetProperty && targetProperty.sham)) {\n createNonEnumerableProperty(sourceProperty, 'sham', true);\n }\n // extend global\n redefine(target, key, sourceProperty, options);\n }\n};\n","module.exports = function (exec) {\n try {\n return !!exec();\n } catch (error) {\n return true;\n }\n};\n","var fails = require('../internals/fails');\n\nmodule.exports = !fails(function () {\n return Object.isExtensible(Object.preventExtensions({}));\n});\n","var aFunction = require('../internals/a-function');\n\n// optional / simple context binding\nmodule.exports = function (fn, that, length) {\n aFunction(fn);\n if (that === undefined) return fn;\n switch (length) {\n case 0: return function () {\n return fn.call(that);\n };\n case 1: return function (a) {\n return fn.call(that, a);\n };\n case 2: return function (a, b) {\n return fn.call(that, a, b);\n };\n case 3: return function (a, b, c) {\n return fn.call(that, a, b, c);\n };\n }\n return function (/* ...args */) {\n return fn.apply(that, arguments);\n };\n};\n","var path = require('../internals/path');\nvar global = require('../internals/global');\n\nvar aFunction = function (variable) {\n return typeof variable == 'function' ? variable : undefined;\n};\n\nmodule.exports = function (namespace, method) {\n return arguments.length < 2 ? aFunction(path[namespace]) || aFunction(global[namespace])\n : path[namespace] && path[namespace][method] || global[namespace] && global[namespace][method];\n};\n","var classof = require('../internals/classof');\nvar Iterators = require('../internals/iterators');\nvar wellKnownSymbol = require('../internals/well-known-symbol');\n\nvar ITERATOR = wellKnownSymbol('iterator');\n\nmodule.exports = function (it) {\n if (it != undefined) return it[ITERATOR]\n || it['@@iterator']\n || Iterators[classof(it)];\n};\n","var check = function (it) {\n return it && it.Math == Math && it;\n};\n\n// https://github.com/zloirock/core-js/issues/86#issuecomment-115759028\nmodule.exports =\n // eslint-disable-next-line no-undef\n check(typeof globalThis == 'object' && globalThis) ||\n check(typeof window == 'object' && window) ||\n check(typeof self == 'object' && self) ||\n check(typeof global == 'object' && global) ||\n // eslint-disable-next-line no-new-func\n Function('return this')();\n","var hasOwnProperty = {}.hasOwnProperty;\n\nmodule.exports = function (it, key) {\n return hasOwnProperty.call(it, key);\n};\n","module.exports = {};\n","var getBuiltIn = require('../internals/get-built-in');\n\nmodule.exports = getBuiltIn('document', 'documentElement');\n","var DESCRIPTORS = require('../internals/descriptors');\nvar fails = require('../internals/fails');\nvar createElement = require('../internals/document-create-element');\n\n// Thank's IE8 for his funny defineProperty\nmodule.exports = !DESCRIPTORS && !fails(function () {\n return Object.defineProperty(createElement('div'), 'a', {\n get: function () { return 7; }\n }).a != 7;\n});\n","var fails = require('../internals/fails');\nvar classof = require('../internals/classof-raw');\n\nvar split = ''.split;\n\n// fallback for non-array-like ES3 and non-enumerable old V8 strings\nmodule.exports = fails(function () {\n // throws an error in rhino, see https://github.com/mozilla/rhino/issues/346\n // eslint-disable-next-line no-prototype-builtins\n return !Object('z').propertyIsEnumerable(0);\n}) ? function (it) {\n return classof(it) == 'String' ? split.call(it, '') : Object(it);\n} : Object;\n","var isObject = require('../internals/is-object');\nvar setPrototypeOf = require('../internals/object-set-prototype-of');\n\n// makes subclassing work correct for wrapped built-ins\nmodule.exports = function ($this, dummy, Wrapper) {\n var NewTarget, NewTargetPrototype;\n if (\n // it can work only with native `setPrototypeOf`\n setPrototypeOf &&\n // we haven't completely correct pre-ES6 way for getting `new.target`, so use this\n typeof (NewTarget = dummy.constructor) == 'function' &&\n NewTarget !== Wrapper &&\n isObject(NewTargetPrototype = NewTarget.prototype) &&\n NewTargetPrototype !== Wrapper.prototype\n ) setPrototypeOf($this, NewTargetPrototype);\n return $this;\n};\n","var store = require('../internals/shared-store');\n\nvar functionToString = Function.toString;\n\n// this helper broken in `3.4.1-3.4.4`, so we can't use `shared` helper\nif (typeof store.inspectSource != 'function') {\n store.inspectSource = function (it) {\n return functionToString.call(it);\n };\n}\n\nmodule.exports = store.inspectSource;\n","var hiddenKeys = require('../internals/hidden-keys');\nvar isObject = require('../internals/is-object');\nvar has = require('../internals/has');\nvar defineProperty = require('../internals/object-define-property').f;\nvar uid = require('../internals/uid');\nvar FREEZING = require('../internals/freezing');\n\nvar METADATA = uid('meta');\nvar id = 0;\n\nvar isExtensible = Object.isExtensible || function () {\n return true;\n};\n\nvar setMetadata = function (it) {\n defineProperty(it, METADATA, { value: {\n objectID: 'O' + ++id, // object ID\n weakData: {} // weak collections IDs\n } });\n};\n\nvar fastKey = function (it, create) {\n // return a primitive with prefix\n if (!isObject(it)) return typeof it == 'symbol' ? it : (typeof it == 'string' ? 'S' : 'P') + it;\n if (!has(it, METADATA)) {\n // can't set metadata to uncaught frozen object\n if (!isExtensible(it)) return 'F';\n // not necessary to add metadata\n if (!create) return 'E';\n // add missing metadata\n setMetadata(it);\n // return object ID\n } return it[METADATA].objectID;\n};\n\nvar getWeakData = function (it, create) {\n if (!has(it, METADATA)) {\n // can't set metadata to uncaught frozen object\n if (!isExtensible(it)) return true;\n // not necessary to add metadata\n if (!create) return false;\n // add missing metadata\n setMetadata(it);\n // return the store of weak collections IDs\n } return it[METADATA].weakData;\n};\n\n// add metadata on freeze-family methods calling\nvar onFreeze = function (it) {\n if (FREEZING && meta.REQUIRED && isExtensible(it) && !has(it, METADATA)) setMetadata(it);\n return it;\n};\n\nvar meta = module.exports = {\n REQUIRED: false,\n fastKey: fastKey,\n getWeakData: getWeakData,\n onFreeze: onFreeze\n};\n\nhiddenKeys[METADATA] = true;\n","var NATIVE_WEAK_MAP = require('../internals/native-weak-map');\nvar global = require('../internals/global');\nvar isObject = require('../internals/is-object');\nvar createNonEnumerableProperty = require('../internals/create-non-enumerable-property');\nvar objectHas = require('../internals/has');\nvar sharedKey = require('../internals/shared-key');\nvar hiddenKeys = require('../internals/hidden-keys');\n\nvar WeakMap = global.WeakMap;\nvar set, get, has;\n\nvar enforce = function (it) {\n return has(it) ? get(it) : set(it, {});\n};\n\nvar getterFor = function (TYPE) {\n return function (it) {\n var state;\n if (!isObject(it) || (state = get(it)).type !== TYPE) {\n throw TypeError('Incompatible receiver, ' + TYPE + ' required');\n } return state;\n };\n};\n\nif (NATIVE_WEAK_MAP) {\n var store = new WeakMap();\n var wmget = store.get;\n var wmhas = store.has;\n var wmset = store.set;\n set = function (it, metadata) {\n wmset.call(store, it, metadata);\n return metadata;\n };\n get = function (it) {\n return wmget.call(store, it) || {};\n };\n has = function (it) {\n return wmhas.call(store, it);\n };\n} else {\n var STATE = sharedKey('state');\n hiddenKeys[STATE] = true;\n set = function (it, metadata) {\n createNonEnumerableProperty(it, STATE, metadata);\n return metadata;\n };\n get = function (it) {\n return objectHas(it, STATE) ? it[STATE] : {};\n };\n has = function (it) {\n return objectHas(it, STATE);\n };\n}\n\nmodule.exports = {\n set: set,\n get: get,\n has: has,\n enforce: enforce,\n getterFor: getterFor\n};\n","var wellKnownSymbol = require('../internals/well-known-symbol');\nvar Iterators = require('../internals/iterators');\n\nvar ITERATOR = wellKnownSymbol('iterator');\nvar ArrayPrototype = Array.prototype;\n\n// check on default Array iterator\nmodule.exports = function (it) {\n return it !== undefined && (Iterators.Array === it || ArrayPrototype[ITERATOR] === it);\n};\n","var classof = require('../internals/classof-raw');\n\n// `IsArray` abstract operation\n// https://tc39.github.io/ecma262/#sec-isarray\nmodule.exports = Array.isArray || function isArray(arg) {\n return classof(arg) == 'Array';\n};\n","var fails = require('../internals/fails');\n\nvar replacement = /#|\\.prototype\\./;\n\nvar isForced = function (feature, detection) {\n var value = data[normalize(feature)];\n return value == POLYFILL ? true\n : value == NATIVE ? false\n : typeof detection == 'function' ? fails(detection)\n : !!detection;\n};\n\nvar normalize = isForced.normalize = function (string) {\n return String(string).replace(replacement, '.').toLowerCase();\n};\n\nvar data = isForced.data = {};\nvar NATIVE = isForced.NATIVE = 'N';\nvar POLYFILL = isForced.POLYFILL = 'P';\n\nmodule.exports = isForced;\n","module.exports = function (it) {\n return typeof it === 'object' ? it !== null : typeof it === 'function';\n};\n","module.exports = false;\n","var anObject = require('../internals/an-object');\nvar isArrayIteratorMethod = require('../internals/is-array-iterator-method');\nvar toLength = require('../internals/to-length');\nvar bind = require('../internals/function-bind-context');\nvar getIteratorMethod = require('../internals/get-iterator-method');\nvar callWithSafeIterationClosing = require('../internals/call-with-safe-iteration-closing');\n\nvar Result = function (stopped, result) {\n this.stopped = stopped;\n this.result = result;\n};\n\nvar iterate = module.exports = function (iterable, fn, that, AS_ENTRIES, IS_ITERATOR) {\n var boundFunction = bind(fn, that, AS_ENTRIES ? 2 : 1);\n var iterator, iterFn, index, length, result, next, step;\n\n if (IS_ITERATOR) {\n iterator = iterable;\n } else {\n iterFn = getIteratorMethod(iterable);\n if (typeof iterFn != 'function') throw TypeError('Target is not iterable');\n // optimisation for array iterators\n if (isArrayIteratorMethod(iterFn)) {\n for (index = 0, length = toLength(iterable.length); length > index; index++) {\n result = AS_ENTRIES\n ? boundFunction(anObject(step = iterable[index])[0], step[1])\n : boundFunction(iterable[index]);\n if (result && result instanceof Result) return result;\n } return new Result(false);\n }\n iterator = iterFn.call(iterable);\n }\n\n next = iterator.next;\n while (!(step = next.call(iterator)).done) {\n result = callWithSafeIterationClosing(iterator, boundFunction, step.value, AS_ENTRIES);\n if (typeof result == 'object' && result && result instanceof Result) return result;\n } return new Result(false);\n};\n\niterate.stop = function (result) {\n return new Result(true, result);\n};\n","'use strict';\nvar getPrototypeOf = require('../internals/object-get-prototype-of');\nvar createNonEnumerableProperty = require('../internals/create-non-enumerable-property');\nvar has = require('../internals/has');\nvar wellKnownSymbol = require('../internals/well-known-symbol');\nvar IS_PURE = require('../internals/is-pure');\n\nvar ITERATOR = wellKnownSymbol('iterator');\nvar BUGGY_SAFARI_ITERATORS = false;\n\nvar returnThis = function () { return this; };\n\n// `%IteratorPrototype%` object\n// https://tc39.github.io/ecma262/#sec-%iteratorprototype%-object\nvar IteratorPrototype, PrototypeOfArrayIteratorPrototype, arrayIterator;\n\nif ([].keys) {\n arrayIterator = [].keys();\n // Safari 8 has buggy iterators w/o `next`\n if (!('next' in arrayIterator)) BUGGY_SAFARI_ITERATORS = true;\n else {\n PrototypeOfArrayIteratorPrototype = getPrototypeOf(getPrototypeOf(arrayIterator));\n if (PrototypeOfArrayIteratorPrototype !== Object.prototype) IteratorPrototype = PrototypeOfArrayIteratorPrototype;\n }\n}\n\nif (IteratorPrototype == undefined) IteratorPrototype = {};\n\n// 25.1.2.1.1 %IteratorPrototype%[@@iterator]()\nif (!IS_PURE && !has(IteratorPrototype, ITERATOR)) {\n createNonEnumerableProperty(IteratorPrototype, ITERATOR, returnThis);\n}\n\nmodule.exports = {\n IteratorPrototype: IteratorPrototype,\n BUGGY_SAFARI_ITERATORS: BUGGY_SAFARI_ITERATORS\n};\n","module.exports = {};\n","var fails = require('../internals/fails');\n\nmodule.exports = !!Object.getOwnPropertySymbols && !fails(function () {\n // Chrome 38 Symbol has incorrect toString conversion\n // eslint-disable-next-line no-undef\n return !String(Symbol());\n});\n","var global = require('../internals/global');\nvar inspectSource = require('../internals/inspect-source');\n\nvar WeakMap = global.WeakMap;\n\nmodule.exports = typeof WeakMap === 'function' && /native code/.test(inspectSource(WeakMap));\n","var anObject = require('../internals/an-object');\nvar defineProperties = require('../internals/object-define-properties');\nvar enumBugKeys = require('../internals/enum-bug-keys');\nvar hiddenKeys = require('../internals/hidden-keys');\nvar html = require('../internals/html');\nvar documentCreateElement = require('../internals/document-create-element');\nvar sharedKey = require('../internals/shared-key');\n\nvar GT = '>';\nvar LT = '<';\nvar PROTOTYPE = 'prototype';\nvar SCRIPT = 'script';\nvar IE_PROTO = sharedKey('IE_PROTO');\n\nvar EmptyConstructor = function () { /* empty */ };\n\nvar scriptTag = function (content) {\n return LT + SCRIPT + GT + content + LT + '/' + SCRIPT + GT;\n};\n\n// Create object with fake `null` prototype: use ActiveX Object with cleared prototype\nvar NullProtoObjectViaActiveX = function (activeXDocument) {\n activeXDocument.write(scriptTag(''));\n activeXDocument.close();\n var temp = activeXDocument.parentWindow.Object;\n activeXDocument = null; // avoid memory leak\n return temp;\n};\n\n// Create object with fake `null` prototype: use iframe Object with cleared prototype\nvar NullProtoObjectViaIFrame = function () {\n // Thrash, waste and sodomy: IE GC bug\n var iframe = documentCreateElement('iframe');\n var JS = 'java' + SCRIPT + ':';\n var iframeDocument;\n iframe.style.display = 'none';\n html.appendChild(iframe);\n // https://github.com/zloirock/core-js/issues/475\n iframe.src = String(JS);\n iframeDocument = iframe.contentWindow.document;\n iframeDocument.open();\n iframeDocument.write(scriptTag('document.F=Object'));\n iframeDocument.close();\n return iframeDocument.F;\n};\n\n// Check for document.domain and active x support\n// No need to use active x approach when document.domain is not set\n// see https://github.com/es-shims/es5-shim/issues/150\n// variation of https://github.com/kitcambridge/es5-shim/commit/4f738ac066346\n// avoid IE GC bug\nvar activeXDocument;\nvar NullProtoObject = function () {\n try {\n /* global ActiveXObject */\n activeXDocument = document.domain && new ActiveXObject('htmlfile');\n } catch (error) { /* ignore */ }\n NullProtoObject = activeXDocument ? NullProtoObjectViaActiveX(activeXDocument) : NullProtoObjectViaIFrame();\n var length = enumBugKeys.length;\n while (length--) delete NullProtoObject[PROTOTYPE][enumBugKeys[length]];\n return NullProtoObject();\n};\n\nhiddenKeys[IE_PROTO] = true;\n\n// `Object.create` method\n// https://tc39.github.io/ecma262/#sec-object.create\nmodule.exports = Object.create || function create(O, Properties) {\n var result;\n if (O !== null) {\n EmptyConstructor[PROTOTYPE] = anObject(O);\n result = new EmptyConstructor();\n EmptyConstructor[PROTOTYPE] = null;\n // add \"__proto__\" for Object.getPrototypeOf polyfill\n result[IE_PROTO] = O;\n } else result = NullProtoObject();\n return Properties === undefined ? result : defineProperties(result, Properties);\n};\n","var DESCRIPTORS = require('../internals/descriptors');\nvar definePropertyModule = require('../internals/object-define-property');\nvar anObject = require('../internals/an-object');\nvar objectKeys = require('../internals/object-keys');\n\n// `Object.defineProperties` method\n// https://tc39.github.io/ecma262/#sec-object.defineproperties\nmodule.exports = DESCRIPTORS ? Object.defineProperties : function defineProperties(O, Properties) {\n anObject(O);\n var keys = objectKeys(Properties);\n var length = keys.length;\n var index = 0;\n var key;\n while (length > index) definePropertyModule.f(O, key = keys[index++], Properties[key]);\n return O;\n};\n","var DESCRIPTORS = require('../internals/descriptors');\nvar IE8_DOM_DEFINE = require('../internals/ie8-dom-define');\nvar anObject = require('../internals/an-object');\nvar toPrimitive = require('../internals/to-primitive');\n\nvar nativeDefineProperty = Object.defineProperty;\n\n// `Object.defineProperty` method\n// https://tc39.github.io/ecma262/#sec-object.defineproperty\nexports.f = DESCRIPTORS ? nativeDefineProperty : function defineProperty(O, P, Attributes) {\n anObject(O);\n P = toPrimitive(P, true);\n anObject(Attributes);\n if (IE8_DOM_DEFINE) try {\n return nativeDefineProperty(O, P, Attributes);\n } catch (error) { /* empty */ }\n if ('get' in Attributes || 'set' in Attributes) throw TypeError('Accessors not supported');\n if ('value' in Attributes) O[P] = Attributes.value;\n return O;\n};\n","var DESCRIPTORS = require('../internals/descriptors');\nvar propertyIsEnumerableModule = require('../internals/object-property-is-enumerable');\nvar createPropertyDescriptor = require('../internals/create-property-descriptor');\nvar toIndexedObject = require('../internals/to-indexed-object');\nvar toPrimitive = require('../internals/to-primitive');\nvar has = require('../internals/has');\nvar IE8_DOM_DEFINE = require('../internals/ie8-dom-define');\n\nvar nativeGetOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;\n\n// `Object.getOwnPropertyDescriptor` method\n// https://tc39.github.io/ecma262/#sec-object.getownpropertydescriptor\nexports.f = DESCRIPTORS ? nativeGetOwnPropertyDescriptor : function getOwnPropertyDescriptor(O, P) {\n O = toIndexedObject(O);\n P = toPrimitive(P, true);\n if (IE8_DOM_DEFINE) try {\n return nativeGetOwnPropertyDescriptor(O, P);\n } catch (error) { /* empty */ }\n if (has(O, P)) return createPropertyDescriptor(!propertyIsEnumerableModule.f.call(O, P), O[P]);\n};\n","var internalObjectKeys = require('../internals/object-keys-internal');\nvar enumBugKeys = require('../internals/enum-bug-keys');\n\nvar hiddenKeys = enumBugKeys.concat('length', 'prototype');\n\n// `Object.getOwnPropertyNames` method\n// https://tc39.github.io/ecma262/#sec-object.getownpropertynames\nexports.f = Object.getOwnPropertyNames || function getOwnPropertyNames(O) {\n return internalObjectKeys(O, hiddenKeys);\n};\n","exports.f = Object.getOwnPropertySymbols;\n","var has = require('../internals/has');\nvar toObject = require('../internals/to-object');\nvar sharedKey = require('../internals/shared-key');\nvar CORRECT_PROTOTYPE_GETTER = require('../internals/correct-prototype-getter');\n\nvar IE_PROTO = sharedKey('IE_PROTO');\nvar ObjectPrototype = Object.prototype;\n\n// `Object.getPrototypeOf` method\n// https://tc39.github.io/ecma262/#sec-object.getprototypeof\nmodule.exports = CORRECT_PROTOTYPE_GETTER ? Object.getPrototypeOf : function (O) {\n O = toObject(O);\n if (has(O, IE_PROTO)) return O[IE_PROTO];\n if (typeof O.constructor == 'function' && O instanceof O.constructor) {\n return O.constructor.prototype;\n } return O instanceof Object ? ObjectPrototype : null;\n};\n","var has = require('../internals/has');\nvar toIndexedObject = require('../internals/to-indexed-object');\nvar indexOf = require('../internals/array-includes').indexOf;\nvar hiddenKeys = require('../internals/hidden-keys');\n\nmodule.exports = function (object, names) {\n var O = toIndexedObject(object);\n var i = 0;\n var result = [];\n var key;\n for (key in O) !has(hiddenKeys, key) && has(O, key) && result.push(key);\n // Don't enum bug & hidden keys\n while (names.length > i) if (has(O, key = names[i++])) {\n ~indexOf(result, key) || result.push(key);\n }\n return result;\n};\n","var internalObjectKeys = require('../internals/object-keys-internal');\nvar enumBugKeys = require('../internals/enum-bug-keys');\n\n// `Object.keys` method\n// https://tc39.github.io/ecma262/#sec-object.keys\nmodule.exports = Object.keys || function keys(O) {\n return internalObjectKeys(O, enumBugKeys);\n};\n","'use strict';\nvar nativePropertyIsEnumerable = {}.propertyIsEnumerable;\nvar getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;\n\n// Nashorn ~ JDK8 bug\nvar NASHORN_BUG = getOwnPropertyDescriptor && !nativePropertyIsEnumerable.call({ 1: 2 }, 1);\n\n// `Object.prototype.propertyIsEnumerable` method implementation\n// https://tc39.github.io/ecma262/#sec-object.prototype.propertyisenumerable\nexports.f = NASHORN_BUG ? function propertyIsEnumerable(V) {\n var descriptor = getOwnPropertyDescriptor(this, V);\n return !!descriptor && descriptor.enumerable;\n} : nativePropertyIsEnumerable;\n","var anObject = require('../internals/an-object');\nvar aPossiblePrototype = require('../internals/a-possible-prototype');\n\n// `Object.setPrototypeOf` method\n// https://tc39.github.io/ecma262/#sec-object.setprototypeof\n// Works with __proto__ only. Old v8 can't work with null proto objects.\n/* eslint-disable no-proto */\nmodule.exports = Object.setPrototypeOf || ('__proto__' in {} ? function () {\n var CORRECT_SETTER = false;\n var test = {};\n var setter;\n try {\n setter = Object.getOwnPropertyDescriptor(Object.prototype, '__proto__').set;\n setter.call(test, []);\n CORRECT_SETTER = test instanceof Array;\n } catch (error) { /* empty */ }\n return function setPrototypeOf(O, proto) {\n anObject(O);\n aPossiblePrototype(proto);\n if (CORRECT_SETTER) setter.call(O, proto);\n else O.__proto__ = proto;\n return O;\n };\n}() : undefined);\n","'use strict';\nvar TO_STRING_TAG_SUPPORT = require('../internals/to-string-tag-support');\nvar classof = require('../internals/classof');\n\n// `Object.prototype.toString` method implementation\n// https://tc39.github.io/ecma262/#sec-object.prototype.tostring\nmodule.exports = TO_STRING_TAG_SUPPORT ? {}.toString : function toString() {\n return '[object ' + classof(this) + ']';\n};\n","var getBuiltIn = require('../internals/get-built-in');\nvar getOwnPropertyNamesModule = require('../internals/object-get-own-property-names');\nvar getOwnPropertySymbolsModule = require('../internals/object-get-own-property-symbols');\nvar anObject = require('../internals/an-object');\n\n// all object keys, includes non-enumerable and symbols\nmodule.exports = getBuiltIn('Reflect', 'ownKeys') || function ownKeys(it) {\n var keys = getOwnPropertyNamesModule.f(anObject(it));\n var getOwnPropertySymbols = getOwnPropertySymbolsModule.f;\n return getOwnPropertySymbols ? keys.concat(getOwnPropertySymbols(it)) : keys;\n};\n","var global = require('../internals/global');\n\nmodule.exports = global;\n","var redefine = require('../internals/redefine');\n\nmodule.exports = function (target, src, options) {\n for (var key in src) redefine(target, key, src[key], options);\n return target;\n};\n","var global = require('../internals/global');\nvar createNonEnumerableProperty = require('../internals/create-non-enumerable-property');\nvar has = require('../internals/has');\nvar setGlobal = require('../internals/set-global');\nvar inspectSource = require('../internals/inspect-source');\nvar InternalStateModule = require('../internals/internal-state');\n\nvar getInternalState = InternalStateModule.get;\nvar enforceInternalState = InternalStateModule.enforce;\nvar TEMPLATE = String(String).split('String');\n\n(module.exports = function (O, key, value, options) {\n var unsafe = options ? !!options.unsafe : false;\n var simple = options ? !!options.enumerable : false;\n var noTargetGet = options ? !!options.noTargetGet : false;\n if (typeof value == 'function') {\n if (typeof key == 'string' && !has(value, 'name')) createNonEnumerableProperty(value, 'name', key);\n enforceInternalState(value).source = TEMPLATE.join(typeof key == 'string' ? key : '');\n }\n if (O === global) {\n if (simple) O[key] = value;\n else setGlobal(key, value);\n return;\n } else if (!unsafe) {\n delete O[key];\n } else if (!noTargetGet && O[key]) {\n simple = true;\n }\n if (simple) O[key] = value;\n else createNonEnumerableProperty(O, key, value);\n// add fake Function#toString for correct work wrapped methods / constructors with methods like LoDash isNative\n})(Function.prototype, 'toString', function toString() {\n return typeof this == 'function' && getInternalState(this).source || inspectSource(this);\n});\n","// `RequireObjectCoercible` abstract operation\n// https://tc39.github.io/ecma262/#sec-requireobjectcoercible\nmodule.exports = function (it) {\n if (it == undefined) throw TypeError(\"Can't call method on \" + it);\n return it;\n};\n","var global = require('../internals/global');\nvar createNonEnumerableProperty = require('../internals/create-non-enumerable-property');\n\nmodule.exports = function (key, value) {\n try {\n createNonEnumerableProperty(global, key, value);\n } catch (error) {\n global[key] = value;\n } return value;\n};\n","'use strict';\nvar getBuiltIn = require('../internals/get-built-in');\nvar definePropertyModule = require('../internals/object-define-property');\nvar wellKnownSymbol = require('../internals/well-known-symbol');\nvar DESCRIPTORS = require('../internals/descriptors');\n\nvar SPECIES = wellKnownSymbol('species');\n\nmodule.exports = function (CONSTRUCTOR_NAME) {\n var Constructor = getBuiltIn(CONSTRUCTOR_NAME);\n var defineProperty = definePropertyModule.f;\n\n if (DESCRIPTORS && Constructor && !Constructor[SPECIES]) {\n defineProperty(Constructor, SPECIES, {\n configurable: true,\n get: function () { return this; }\n });\n }\n};\n","var defineProperty = require('../internals/object-define-property').f;\nvar has = require('../internals/has');\nvar wellKnownSymbol = require('../internals/well-known-symbol');\n\nvar TO_STRING_TAG = wellKnownSymbol('toStringTag');\n\nmodule.exports = function (it, TAG, STATIC) {\n if (it && !has(it = STATIC ? it : it.prototype, TO_STRING_TAG)) {\n defineProperty(it, TO_STRING_TAG, { configurable: true, value: TAG });\n }\n};\n","var shared = require('../internals/shared');\nvar uid = require('../internals/uid');\n\nvar keys = shared('keys');\n\nmodule.exports = function (key) {\n return keys[key] || (keys[key] = uid(key));\n};\n","var global = require('../internals/global');\nvar setGlobal = require('../internals/set-global');\n\nvar SHARED = '__core-js_shared__';\nvar store = global[SHARED] || setGlobal(SHARED, {});\n\nmodule.exports = store;\n","var IS_PURE = require('../internals/is-pure');\nvar store = require('../internals/shared-store');\n\n(module.exports = function (key, value) {\n return store[key] || (store[key] = value !== undefined ? value : {});\n})('versions', []).push({\n version: '3.6.4',\n mode: IS_PURE ? 'pure' : 'global',\n copyright: '© 2020 Denis Pushkarev (zloirock.ru)'\n});\n","var toInteger = require('../internals/to-integer');\nvar requireObjectCoercible = require('../internals/require-object-coercible');\n\n// `String.prototype.{ codePointAt, at }` methods implementation\nvar createMethod = function (CONVERT_TO_STRING) {\n return function ($this, pos) {\n var S = String(requireObjectCoercible($this));\n var position = toInteger(pos);\n var size = S.length;\n var first, second;\n if (position < 0 || position >= size) return CONVERT_TO_STRING ? '' : undefined;\n first = S.charCodeAt(position);\n return first < 0xD800 || first > 0xDBFF || position + 1 === size\n || (second = S.charCodeAt(position + 1)) < 0xDC00 || second > 0xDFFF\n ? CONVERT_TO_STRING ? S.charAt(position) : first\n : CONVERT_TO_STRING ? S.slice(position, position + 2) : (first - 0xD800 << 10) + (second - 0xDC00) + 0x10000;\n };\n};\n\nmodule.exports = {\n // `String.prototype.codePointAt` method\n // https://tc39.github.io/ecma262/#sec-string.prototype.codepointat\n codeAt: createMethod(false),\n // `String.prototype.at` method\n // https://github.com/mathiasbynens/String.prototype.at\n charAt: createMethod(true)\n};\n","var toInteger = require('../internals/to-integer');\n\nvar max = Math.max;\nvar min = Math.min;\n\n// Helper for a popular repeating case of the spec:\n// Let integer be ? ToInteger(index).\n// If integer < 0, let result be max((length + integer), 0); else let result be min(integer, length).\nmodule.exports = function (index, length) {\n var integer = toInteger(index);\n return integer < 0 ? max(integer + length, 0) : min(integer, length);\n};\n","// toObject with fallback for non-array-like ES3 strings\nvar IndexedObject = require('../internals/indexed-object');\nvar requireObjectCoercible = require('../internals/require-object-coercible');\n\nmodule.exports = function (it) {\n return IndexedObject(requireObjectCoercible(it));\n};\n","var ceil = Math.ceil;\nvar floor = Math.floor;\n\n// `ToInteger` abstract operation\n// https://tc39.github.io/ecma262/#sec-tointeger\nmodule.exports = function (argument) {\n return isNaN(argument = +argument) ? 0 : (argument > 0 ? floor : ceil)(argument);\n};\n","var toInteger = require('../internals/to-integer');\n\nvar min = Math.min;\n\n// `ToLength` abstract operation\n// https://tc39.github.io/ecma262/#sec-tolength\nmodule.exports = function (argument) {\n return argument > 0 ? min(toInteger(argument), 0x1FFFFFFFFFFFFF) : 0; // 2 ** 53 - 1 == 9007199254740991\n};\n","var requireObjectCoercible = require('../internals/require-object-coercible');\n\n// `ToObject` abstract operation\n// https://tc39.github.io/ecma262/#sec-toobject\nmodule.exports = function (argument) {\n return Object(requireObjectCoercible(argument));\n};\n","var isObject = require('../internals/is-object');\n\n// `ToPrimitive` abstract operation\n// https://tc39.github.io/ecma262/#sec-toprimitive\n// instead of the ES6 spec version, we didn't implement @@toPrimitive case\n// and the second argument - flag - preferred type is a string\nmodule.exports = function (input, PREFERRED_STRING) {\n if (!isObject(input)) return input;\n var fn, val;\n if (PREFERRED_STRING && typeof (fn = input.toString) == 'function' && !isObject(val = fn.call(input))) return val;\n if (typeof (fn = input.valueOf) == 'function' && !isObject(val = fn.call(input))) return val;\n if (!PREFERRED_STRING && typeof (fn = input.toString) == 'function' && !isObject(val = fn.call(input))) return val;\n throw TypeError(\"Can't convert object to primitive value\");\n};\n","var wellKnownSymbol = require('../internals/well-known-symbol');\n\nvar TO_STRING_TAG = wellKnownSymbol('toStringTag');\nvar test = {};\n\ntest[TO_STRING_TAG] = 'z';\n\nmodule.exports = String(test) === '[object z]';\n","var id = 0;\nvar postfix = Math.random();\n\nmodule.exports = function (key) {\n return 'Symbol(' + String(key === undefined ? '' : key) + ')_' + (++id + postfix).toString(36);\n};\n","var NATIVE_SYMBOL = require('../internals/native-symbol');\n\nmodule.exports = NATIVE_SYMBOL\n // eslint-disable-next-line no-undef\n && !Symbol.sham\n // eslint-disable-next-line no-undef\n && typeof Symbol.iterator == 'symbol';\n","var global = require('../internals/global');\nvar shared = require('../internals/shared');\nvar has = require('../internals/has');\nvar uid = require('../internals/uid');\nvar NATIVE_SYMBOL = require('../internals/native-symbol');\nvar USE_SYMBOL_AS_UID = require('../internals/use-symbol-as-uid');\n\nvar WellKnownSymbolsStore = shared('wks');\nvar Symbol = global.Symbol;\nvar createWellKnownSymbol = USE_SYMBOL_AS_UID ? Symbol : Symbol && Symbol.withoutSetter || uid;\n\nmodule.exports = function (name) {\n if (!has(WellKnownSymbolsStore, name)) {\n if (NATIVE_SYMBOL && has(Symbol, name)) WellKnownSymbolsStore[name] = Symbol[name];\n else WellKnownSymbolsStore[name] = createWellKnownSymbol('Symbol.' + name);\n } return WellKnownSymbolsStore[name];\n};\n","'use strict';\nvar $ = require('../internals/export');\nvar fails = require('../internals/fails');\nvar isArray = require('../internals/is-array');\nvar isObject = require('../internals/is-object');\nvar toObject = require('../internals/to-object');\nvar toLength = require('../internals/to-length');\nvar createProperty = require('../internals/create-property');\nvar arraySpeciesCreate = require('../internals/array-species-create');\nvar arrayMethodHasSpeciesSupport = require('../internals/array-method-has-species-support');\nvar wellKnownSymbol = require('../internals/well-known-symbol');\nvar V8_VERSION = require('../internals/engine-v8-version');\n\nvar IS_CONCAT_SPREADABLE = wellKnownSymbol('isConcatSpreadable');\nvar MAX_SAFE_INTEGER = 0x1FFFFFFFFFFFFF;\nvar MAXIMUM_ALLOWED_INDEX_EXCEEDED = 'Maximum allowed index exceeded';\n\n// We can't use this feature detection in V8 since it causes\n// deoptimization and serious performance degradation\n// https://github.com/zloirock/core-js/issues/679\nvar IS_CONCAT_SPREADABLE_SUPPORT = V8_VERSION >= 51 || !fails(function () {\n var array = [];\n array[IS_CONCAT_SPREADABLE] = false;\n return array.concat()[0] !== array;\n});\n\nvar SPECIES_SUPPORT = arrayMethodHasSpeciesSupport('concat');\n\nvar isConcatSpreadable = function (O) {\n if (!isObject(O)) return false;\n var spreadable = O[IS_CONCAT_SPREADABLE];\n return spreadable !== undefined ? !!spreadable : isArray(O);\n};\n\nvar FORCED = !IS_CONCAT_SPREADABLE_SUPPORT || !SPECIES_SUPPORT;\n\n// `Array.prototype.concat` method\n// https://tc39.github.io/ecma262/#sec-array.prototype.concat\n// with adding support of @@isConcatSpreadable and @@species\n$({ target: 'Array', proto: true, forced: FORCED }, {\n concat: function concat(arg) { // eslint-disable-line no-unused-vars\n var O = toObject(this);\n var A = arraySpeciesCreate(O, 0);\n var n = 0;\n var i, k, length, len, E;\n for (i = -1, length = arguments.length; i < length; i++) {\n E = i === -1 ? O : arguments[i];\n if (isConcatSpreadable(E)) {\n len = toLength(E.length);\n if (n + len > MAX_SAFE_INTEGER) throw TypeError(MAXIMUM_ALLOWED_INDEX_EXCEEDED);\n for (k = 0; k < len; k++, n++) if (k in E) createProperty(A, n, E[k]);\n } else {\n if (n >= MAX_SAFE_INTEGER) throw TypeError(MAXIMUM_ALLOWED_INDEX_EXCEEDED);\n createProperty(A, n++, E);\n }\n }\n A.length = n;\n return A;\n }\n});\n","'use strict';\nvar $ = require('../internals/export');\nvar $filter = require('../internals/array-iteration').filter;\nvar arrayMethodHasSpeciesSupport = require('../internals/array-method-has-species-support');\nvar arrayMethodUsesToLength = require('../internals/array-method-uses-to-length');\n\nvar HAS_SPECIES_SUPPORT = arrayMethodHasSpeciesSupport('filter');\n// Edge 14- issue\nvar USES_TO_LENGTH = arrayMethodUsesToLength('filter');\n\n// `Array.prototype.filter` method\n// https://tc39.github.io/ecma262/#sec-array.prototype.filter\n// with adding support of @@species\n$({ target: 'Array', proto: true, forced: !HAS_SPECIES_SUPPORT || !USES_TO_LENGTH }, {\n filter: function filter(callbackfn /* , thisArg */) {\n return $filter(this, callbackfn, arguments.length > 1 ? arguments[1] : undefined);\n }\n});\n","'use strict';\nvar toIndexedObject = require('../internals/to-indexed-object');\nvar addToUnscopables = require('../internals/add-to-unscopables');\nvar Iterators = require('../internals/iterators');\nvar InternalStateModule = require('../internals/internal-state');\nvar defineIterator = require('../internals/define-iterator');\n\nvar ARRAY_ITERATOR = 'Array Iterator';\nvar setInternalState = InternalStateModule.set;\nvar getInternalState = InternalStateModule.getterFor(ARRAY_ITERATOR);\n\n// `Array.prototype.entries` method\n// https://tc39.github.io/ecma262/#sec-array.prototype.entries\n// `Array.prototype.keys` method\n// https://tc39.github.io/ecma262/#sec-array.prototype.keys\n// `Array.prototype.values` method\n// https://tc39.github.io/ecma262/#sec-array.prototype.values\n// `Array.prototype[@@iterator]` method\n// https://tc39.github.io/ecma262/#sec-array.prototype-@@iterator\n// `CreateArrayIterator` internal method\n// https://tc39.github.io/ecma262/#sec-createarrayiterator\nmodule.exports = defineIterator(Array, 'Array', function (iterated, kind) {\n setInternalState(this, {\n type: ARRAY_ITERATOR,\n target: toIndexedObject(iterated), // target\n index: 0, // next index\n kind: kind // kind\n });\n// `%ArrayIteratorPrototype%.next` method\n// https://tc39.github.io/ecma262/#sec-%arrayiteratorprototype%.next\n}, function () {\n var state = getInternalState(this);\n var target = state.target;\n var kind = state.kind;\n var index = state.index++;\n if (!target || index >= target.length) {\n state.target = undefined;\n return { value: undefined, done: true };\n }\n if (kind == 'keys') return { value: index, done: false };\n if (kind == 'values') return { value: target[index], done: false };\n return { value: [index, target[index]], done: false };\n}, 'values');\n\n// argumentsList[@@iterator] is %ArrayProto_values%\n// https://tc39.github.io/ecma262/#sec-createunmappedargumentsobject\n// https://tc39.github.io/ecma262/#sec-createmappedargumentsobject\nIterators.Arguments = Iterators.Array;\n\n// https://tc39.github.io/ecma262/#sec-array.prototype-@@unscopables\naddToUnscopables('keys');\naddToUnscopables('values');\naddToUnscopables('entries');\n","'use strict';\nvar collection = require('../internals/collection');\nvar collectionStrong = require('../internals/collection-strong');\n\n// `Map` constructor\n// https://tc39.github.io/ecma262/#sec-map-objects\nmodule.exports = collection('Map', function (init) {\n return function Map() { return init(this, arguments.length ? arguments[0] : undefined); };\n}, collectionStrong);\n","var TO_STRING_TAG_SUPPORT = require('../internals/to-string-tag-support');\nvar redefine = require('../internals/redefine');\nvar toString = require('../internals/object-to-string');\n\n// `Object.prototype.toString` method\n// https://tc39.github.io/ecma262/#sec-object.prototype.tostring\nif (!TO_STRING_TAG_SUPPORT) {\n redefine(Object.prototype, 'toString', toString, { unsafe: true });\n}\n","'use strict';\nvar charAt = require('../internals/string-multibyte').charAt;\nvar InternalStateModule = require('../internals/internal-state');\nvar defineIterator = require('../internals/define-iterator');\n\nvar STRING_ITERATOR = 'String Iterator';\nvar setInternalState = InternalStateModule.set;\nvar getInternalState = InternalStateModule.getterFor(STRING_ITERATOR);\n\n// `String.prototype[@@iterator]` method\n// https://tc39.github.io/ecma262/#sec-string.prototype-@@iterator\ndefineIterator(String, 'String', function (iterated) {\n setInternalState(this, {\n type: STRING_ITERATOR,\n string: String(iterated),\n index: 0\n });\n// `%StringIteratorPrototype%.next` method\n// https://tc39.github.io/ecma262/#sec-%stringiteratorprototype%.next\n}, function next() {\n var state = getInternalState(this);\n var string = state.string;\n var index = state.index;\n var point;\n if (index >= string.length) return { value: undefined, done: true };\n point = charAt(string, index);\n state.index += point.length;\n return { value: point, done: false };\n});\n","var global = require('../internals/global');\nvar DOMIterables = require('../internals/dom-iterables');\nvar forEach = require('../internals/array-for-each');\nvar createNonEnumerableProperty = require('../internals/create-non-enumerable-property');\n\nfor (var COLLECTION_NAME in DOMIterables) {\n var Collection = global[COLLECTION_NAME];\n var CollectionPrototype = Collection && Collection.prototype;\n // some Chrome versions have non-configurable methods on DOMTokenList\n if (CollectionPrototype && CollectionPrototype.forEach !== forEach) try {\n createNonEnumerableProperty(CollectionPrototype, 'forEach', forEach);\n } catch (error) {\n CollectionPrototype.forEach = forEach;\n }\n}\n","var global = require('../internals/global');\nvar DOMIterables = require('../internals/dom-iterables');\nvar ArrayIteratorMethods = require('../modules/es.array.iterator');\nvar createNonEnumerableProperty = require('../internals/create-non-enumerable-property');\nvar wellKnownSymbol = require('../internals/well-known-symbol');\n\nvar ITERATOR = wellKnownSymbol('iterator');\nvar TO_STRING_TAG = wellKnownSymbol('toStringTag');\nvar ArrayValues = ArrayIteratorMethods.values;\n\nfor (var COLLECTION_NAME in DOMIterables) {\n var Collection = global[COLLECTION_NAME];\n var CollectionPrototype = Collection && Collection.prototype;\n if (CollectionPrototype) {\n // some Chrome versions have non-configurable methods on DOMTokenList\n if (CollectionPrototype[ITERATOR] !== ArrayValues) try {\n createNonEnumerableProperty(CollectionPrototype, ITERATOR, ArrayValues);\n } catch (error) {\n CollectionPrototype[ITERATOR] = ArrayValues;\n }\n if (!CollectionPrototype[TO_STRING_TAG]) {\n createNonEnumerableProperty(CollectionPrototype, TO_STRING_TAG, COLLECTION_NAME);\n }\n if (DOMIterables[COLLECTION_NAME]) for (var METHOD_NAME in ArrayIteratorMethods) {\n // some Chrome versions have non-configurable methods on DOMTokenList\n if (CollectionPrototype[METHOD_NAME] !== ArrayIteratorMethods[METHOD_NAME]) try {\n createNonEnumerableProperty(CollectionPrototype, METHOD_NAME, ArrayIteratorMethods[METHOD_NAME]);\n } catch (error) {\n CollectionPrototype[METHOD_NAME] = ArrayIteratorMethods[METHOD_NAME];\n }\n }\n }\n}\n","exports = module.exports = SemVer\n\nvar debug\n/* istanbul ignore next */\nif (typeof process === 'object' &&\n process.env &&\n process.env.NODE_DEBUG &&\n /\\bsemver\\b/i.test(process.env.NODE_DEBUG)) {\n debug = function () {\n var args = Array.prototype.slice.call(arguments, 0)\n args.unshift('SEMVER')\n console.log.apply(console, args)\n }\n} else {\n debug = function () {}\n}\n\n// Note: this is the semver.org version of the spec that it implements\n// Not necessarily the package version of this code.\nexports.SEMVER_SPEC_VERSION = '2.0.0'\n\nvar MAX_LENGTH = 256\nvar MAX_SAFE_INTEGER = Number.MAX_SAFE_INTEGER ||\n /* istanbul ignore next */ 9007199254740991\n\n// Max safe segment length for coercion.\nvar MAX_SAFE_COMPONENT_LENGTH = 16\n\n// The actual regexps go on exports.re\nvar re = exports.re = []\nvar src = exports.src = []\nvar t = exports.tokens = {}\nvar R = 0\n\nfunction tok (n) {\n t[n] = R++\n}\n\n// The following Regular Expressions can be used for tokenizing,\n// validating, and parsing SemVer version strings.\n\n// ## Numeric Identifier\n// A single `0`, or a non-zero digit followed by zero or more digits.\n\ntok('NUMERICIDENTIFIER')\nsrc[t.NUMERICIDENTIFIER] = '0|[1-9]\\\\d*'\ntok('NUMERICIDENTIFIERLOOSE')\nsrc[t.NUMERICIDENTIFIERLOOSE] = '[0-9]+'\n\n// ## Non-numeric Identifier\n// Zero or more digits, followed by a letter or hyphen, and then zero or\n// more letters, digits, or hyphens.\n\ntok('NONNUMERICIDENTIFIER')\nsrc[t.NONNUMERICIDENTIFIER] = '\\\\d*[a-zA-Z-][a-zA-Z0-9-]*'\n\n// ## Main Version\n// Three dot-separated numeric identifiers.\n\ntok('MAINVERSION')\nsrc[t.MAINVERSION] = '(' + src[t.NUMERICIDENTIFIER] + ')\\\\.' +\n '(' + src[t.NUMERICIDENTIFIER] + ')\\\\.' +\n '(' + src[t.NUMERICIDENTIFIER] + ')'\n\ntok('MAINVERSIONLOOSE')\nsrc[t.MAINVERSIONLOOSE] = '(' + src[t.NUMERICIDENTIFIERLOOSE] + ')\\\\.' +\n '(' + src[t.NUMERICIDENTIFIERLOOSE] + ')\\\\.' +\n '(' + src[t.NUMERICIDENTIFIERLOOSE] + ')'\n\n// ## Pre-release Version Identifier\n// A numeric identifier, or a non-numeric identifier.\n\ntok('PRERELEASEIDENTIFIER')\nsrc[t.PRERELEASEIDENTIFIER] = '(?:' + src[t.NUMERICIDENTIFIER] +\n '|' + src[t.NONNUMERICIDENTIFIER] + ')'\n\ntok('PRERELEASEIDENTIFIERLOOSE')\nsrc[t.PRERELEASEIDENTIFIERLOOSE] = '(?:' + src[t.NUMERICIDENTIFIERLOOSE] +\n '|' + src[t.NONNUMERICIDENTIFIER] + ')'\n\n// ## Pre-release Version\n// Hyphen, followed by one or more dot-separated pre-release version\n// identifiers.\n\ntok('PRERELEASE')\nsrc[t.PRERELEASE] = '(?:-(' + src[t.PRERELEASEIDENTIFIER] +\n '(?:\\\\.' + src[t.PRERELEASEIDENTIFIER] + ')*))'\n\ntok('PRERELEASELOOSE')\nsrc[t.PRERELEASELOOSE] = '(?:-?(' + src[t.PRERELEASEIDENTIFIERLOOSE] +\n '(?:\\\\.' + src[t.PRERELEASEIDENTIFIERLOOSE] + ')*))'\n\n// ## Build Metadata Identifier\n// Any combination of digits, letters, or hyphens.\n\ntok('BUILDIDENTIFIER')\nsrc[t.BUILDIDENTIFIER] = '[0-9A-Za-z-]+'\n\n// ## Build Metadata\n// Plus sign, followed by one or more period-separated build metadata\n// identifiers.\n\ntok('BUILD')\nsrc[t.BUILD] = '(?:\\\\+(' + src[t.BUILDIDENTIFIER] +\n '(?:\\\\.' + src[t.BUILDIDENTIFIER] + ')*))'\n\n// ## Full Version String\n// A main version, followed optionally by a pre-release version and\n// build metadata.\n\n// Note that the only major, minor, patch, and pre-release sections of\n// the version string are capturing groups. The build metadata is not a\n// capturing group, because it should not ever be used in version\n// comparison.\n\ntok('FULL')\ntok('FULLPLAIN')\nsrc[t.FULLPLAIN] = 'v?' + src[t.MAINVERSION] +\n src[t.PRERELEASE] + '?' +\n src[t.BUILD] + '?'\n\nsrc[t.FULL] = '^' + src[t.FULLPLAIN] + '$'\n\n// like full, but allows v1.2.3 and =1.2.3, which people do sometimes.\n// also, 1.0.0alpha1 (prerelease without the hyphen) which is pretty\n// common in the npm registry.\ntok('LOOSEPLAIN')\nsrc[t.LOOSEPLAIN] = '[v=\\\\s]*' + src[t.MAINVERSIONLOOSE] +\n src[t.PRERELEASELOOSE] + '?' +\n src[t.BUILD] + '?'\n\ntok('LOOSE')\nsrc[t.LOOSE] = '^' + src[t.LOOSEPLAIN] + '$'\n\ntok('GTLT')\nsrc[t.GTLT] = '((?:<|>)?=?)'\n\n// Something like \"2.*\" or \"1.2.x\".\n// Note that \"x.x\" is a valid xRange identifer, meaning \"any version\"\n// Only the first item is strictly required.\ntok('XRANGEIDENTIFIERLOOSE')\nsrc[t.XRANGEIDENTIFIERLOOSE] = src[t.NUMERICIDENTIFIERLOOSE] + '|x|X|\\\\*'\ntok('XRANGEIDENTIFIER')\nsrc[t.XRANGEIDENTIFIER] = src[t.NUMERICIDENTIFIER] + '|x|X|\\\\*'\n\ntok('XRANGEPLAIN')\nsrc[t.XRANGEPLAIN] = '[v=\\\\s]*(' + src[t.XRANGEIDENTIFIER] + ')' +\n '(?:\\\\.(' + src[t.XRANGEIDENTIFIER] + ')' +\n '(?:\\\\.(' + src[t.XRANGEIDENTIFIER] + ')' +\n '(?:' + src[t.PRERELEASE] + ')?' +\n src[t.BUILD] + '?' +\n ')?)?'\n\ntok('XRANGEPLAINLOOSE')\nsrc[t.XRANGEPLAINLOOSE] = '[v=\\\\s]*(' + src[t.XRANGEIDENTIFIERLOOSE] + ')' +\n '(?:\\\\.(' + src[t.XRANGEIDENTIFIERLOOSE] + ')' +\n '(?:\\\\.(' + src[t.XRANGEIDENTIFIERLOOSE] + ')' +\n '(?:' + src[t.PRERELEASELOOSE] + ')?' +\n src[t.BUILD] + '?' +\n ')?)?'\n\ntok('XRANGE')\nsrc[t.XRANGE] = '^' + src[t.GTLT] + '\\\\s*' + src[t.XRANGEPLAIN] + '$'\ntok('XRANGELOOSE')\nsrc[t.XRANGELOOSE] = '^' + src[t.GTLT] + '\\\\s*' + src[t.XRANGEPLAINLOOSE] + '$'\n\n// Coercion.\n// Extract anything that could conceivably be a part of a valid semver\ntok('COERCE')\nsrc[t.COERCE] = '(^|[^\\\\d])' +\n '(\\\\d{1,' + MAX_SAFE_COMPONENT_LENGTH + '})' +\n '(?:\\\\.(\\\\d{1,' + MAX_SAFE_COMPONENT_LENGTH + '}))?' +\n '(?:\\\\.(\\\\d{1,' + MAX_SAFE_COMPONENT_LENGTH + '}))?' +\n '(?:$|[^\\\\d])'\ntok('COERCERTL')\nre[t.COERCERTL] = new RegExp(src[t.COERCE], 'g')\n\n// Tilde ranges.\n// Meaning is \"reasonably at or greater than\"\ntok('LONETILDE')\nsrc[t.LONETILDE] = '(?:~>?)'\n\ntok('TILDETRIM')\nsrc[t.TILDETRIM] = '(\\\\s*)' + src[t.LONETILDE] + '\\\\s+'\nre[t.TILDETRIM] = new RegExp(src[t.TILDETRIM], 'g')\nvar tildeTrimReplace = '$1~'\n\ntok('TILDE')\nsrc[t.TILDE] = '^' + src[t.LONETILDE] + src[t.XRANGEPLAIN] + '$'\ntok('TILDELOOSE')\nsrc[t.TILDELOOSE] = '^' + src[t.LONETILDE] + src[t.XRANGEPLAINLOOSE] + '$'\n\n// Caret ranges.\n// Meaning is \"at least and backwards compatible with\"\ntok('LONECARET')\nsrc[t.LONECARET] = '(?:\\\\^)'\n\ntok('CARETTRIM')\nsrc[t.CARETTRIM] = '(\\\\s*)' + src[t.LONECARET] + '\\\\s+'\nre[t.CARETTRIM] = new RegExp(src[t.CARETTRIM], 'g')\nvar caretTrimReplace = '$1^'\n\ntok('CARET')\nsrc[t.CARET] = '^' + src[t.LONECARET] + src[t.XRANGEPLAIN] + '$'\ntok('CARETLOOSE')\nsrc[t.CARETLOOSE] = '^' + src[t.LONECARET] + src[t.XRANGEPLAINLOOSE] + '$'\n\n// A simple gt/lt/eq thing, or just \"\" to indicate \"any version\"\ntok('COMPARATORLOOSE')\nsrc[t.COMPARATORLOOSE] = '^' + src[t.GTLT] + '\\\\s*(' + src[t.LOOSEPLAIN] + ')$|^$'\ntok('COMPARATOR')\nsrc[t.COMPARATOR] = '^' + src[t.GTLT] + '\\\\s*(' + src[t.FULLPLAIN] + ')$|^$'\n\n// An expression to strip any whitespace between the gtlt and the thing\n// it modifies, so that `> 1.2.3` ==> `>1.2.3`\ntok('COMPARATORTRIM')\nsrc[t.COMPARATORTRIM] = '(\\\\s*)' + src[t.GTLT] +\n '\\\\s*(' + src[t.LOOSEPLAIN] + '|' + src[t.XRANGEPLAIN] + ')'\n\n// this one has to use the /g flag\nre[t.COMPARATORTRIM] = new RegExp(src[t.COMPARATORTRIM], 'g')\nvar comparatorTrimReplace = '$1$2$3'\n\n// Something like `1.2.3 - 1.2.4`\n// Note that these all use the loose form, because they'll be\n// checked against either the strict or loose comparator form\n// later.\ntok('HYPHENRANGE')\nsrc[t.HYPHENRANGE] = '^\\\\s*(' + src[t.XRANGEPLAIN] + ')' +\n '\\\\s+-\\\\s+' +\n '(' + src[t.XRANGEPLAIN] + ')' +\n '\\\\s*$'\n\ntok('HYPHENRANGELOOSE')\nsrc[t.HYPHENRANGELOOSE] = '^\\\\s*(' + src[t.XRANGEPLAINLOOSE] + ')' +\n '\\\\s+-\\\\s+' +\n '(' + src[t.XRANGEPLAINLOOSE] + ')' +\n '\\\\s*$'\n\n// Star ranges basically just allow anything at all.\ntok('STAR')\nsrc[t.STAR] = '(<|>)?=?\\\\s*\\\\*'\n\n// Compile to actual regexp objects.\n// All are flag-free, unless they were created above with a flag.\nfor (var i = 0; i < R; i++) {\n debug(i, src[i])\n if (!re[i]) {\n re[i] = new RegExp(src[i])\n }\n}\n\nexports.parse = parse\nfunction parse (version, options) {\n if (!options || typeof options !== 'object') {\n options = {\n loose: !!options,\n includePrerelease: false\n }\n }\n\n if (version instanceof SemVer) {\n return version\n }\n\n if (typeof version !== 'string') {\n return null\n }\n\n if (version.length > MAX_LENGTH) {\n return null\n }\n\n var r = options.loose ? re[t.LOOSE] : re[t.FULL]\n if (!r.test(version)) {\n return null\n }\n\n try {\n return new SemVer(version, options)\n } catch (er) {\n return null\n }\n}\n\nexports.valid = valid\nfunction valid (version, options) {\n var v = parse(version, options)\n return v ? v.version : null\n}\n\nexports.clean = clean\nfunction clean (version, options) {\n var s = parse(version.trim().replace(/^[=v]+/, ''), options)\n return s ? s.version : null\n}\n\nexports.SemVer = SemVer\n\nfunction SemVer (version, options) {\n if (!options || typeof options !== 'object') {\n options = {\n loose: !!options,\n includePrerelease: false\n }\n }\n if (version instanceof SemVer) {\n if (version.loose === options.loose) {\n return version\n } else {\n version = version.version\n }\n } else if (typeof version !== 'string') {\n throw new TypeError('Invalid Version: ' + version)\n }\n\n if (version.length > MAX_LENGTH) {\n throw new TypeError('version is longer than ' + MAX_LENGTH + ' characters')\n }\n\n if (!(this instanceof SemVer)) {\n return new SemVer(version, options)\n }\n\n debug('SemVer', version, options)\n this.options = options\n this.loose = !!options.loose\n\n var m = version.trim().match(options.loose ? re[t.LOOSE] : re[t.FULL])\n\n if (!m) {\n throw new TypeError('Invalid Version: ' + version)\n }\n\n this.raw = version\n\n // these are actually numbers\n this.major = +m[1]\n this.minor = +m[2]\n this.patch = +m[3]\n\n if (this.major > MAX_SAFE_INTEGER || this.major < 0) {\n throw new TypeError('Invalid major version')\n }\n\n if (this.minor > MAX_SAFE_INTEGER || this.minor < 0) {\n throw new TypeError('Invalid minor version')\n }\n\n if (this.patch > MAX_SAFE_INTEGER || this.patch < 0) {\n throw new TypeError('Invalid patch version')\n }\n\n // numberify any prerelease numeric ids\n if (!m[4]) {\n this.prerelease = []\n } else {\n this.prerelease = m[4].split('.').map(function (id) {\n if (/^[0-9]+$/.test(id)) {\n var num = +id\n if (num >= 0 && num < MAX_SAFE_INTEGER) {\n return num\n }\n }\n return id\n })\n }\n\n this.build = m[5] ? m[5].split('.') : []\n this.format()\n}\n\nSemVer.prototype.format = function () {\n this.version = this.major + '.' + this.minor + '.' + this.patch\n if (this.prerelease.length) {\n this.version += '-' + this.prerelease.join('.')\n }\n return this.version\n}\n\nSemVer.prototype.toString = function () {\n return this.version\n}\n\nSemVer.prototype.compare = function (other) {\n debug('SemVer.compare', this.version, this.options, other)\n if (!(other instanceof SemVer)) {\n other = new SemVer(other, this.options)\n }\n\n return this.compareMain(other) || this.comparePre(other)\n}\n\nSemVer.prototype.compareMain = function (other) {\n if (!(other instanceof SemVer)) {\n other = new SemVer(other, this.options)\n }\n\n return compareIdentifiers(this.major, other.major) ||\n compareIdentifiers(this.minor, other.minor) ||\n compareIdentifiers(this.patch, other.patch)\n}\n\nSemVer.prototype.comparePre = function (other) {\n if (!(other instanceof SemVer)) {\n other = new SemVer(other, this.options)\n }\n\n // NOT having a prerelease is > having one\n if (this.prerelease.length && !other.prerelease.length) {\n return -1\n } else if (!this.prerelease.length && other.prerelease.length) {\n return 1\n } else if (!this.prerelease.length && !other.prerelease.length) {\n return 0\n }\n\n var i = 0\n do {\n var a = this.prerelease[i]\n var b = other.prerelease[i]\n debug('prerelease compare', i, a, b)\n if (a === undefined && b === undefined) {\n return 0\n } else if (b === undefined) {\n return 1\n } else if (a === undefined) {\n return -1\n } else if (a === b) {\n continue\n } else {\n return compareIdentifiers(a, b)\n }\n } while (++i)\n}\n\nSemVer.prototype.compareBuild = function (other) {\n if (!(other instanceof SemVer)) {\n other = new SemVer(other, this.options)\n }\n\n var i = 0\n do {\n var a = this.build[i]\n var b = other.build[i]\n debug('prerelease compare', i, a, b)\n if (a === undefined && b === undefined) {\n return 0\n } else if (b === undefined) {\n return 1\n } else if (a === undefined) {\n return -1\n } else if (a === b) {\n continue\n } else {\n return compareIdentifiers(a, b)\n }\n } while (++i)\n}\n\n// preminor will bump the version up to the next minor release, and immediately\n// down to pre-release. premajor and prepatch work the same way.\nSemVer.prototype.inc = function (release, identifier) {\n switch (release) {\n case 'premajor':\n this.prerelease.length = 0\n this.patch = 0\n this.minor = 0\n this.major++\n this.inc('pre', identifier)\n break\n case 'preminor':\n this.prerelease.length = 0\n this.patch = 0\n this.minor++\n this.inc('pre', identifier)\n break\n case 'prepatch':\n // If this is already a prerelease, it will bump to the next version\n // drop any prereleases that might already exist, since they are not\n // relevant at this point.\n this.prerelease.length = 0\n this.inc('patch', identifier)\n this.inc('pre', identifier)\n break\n // If the input is a non-prerelease version, this acts the same as\n // prepatch.\n case 'prerelease':\n if (this.prerelease.length === 0) {\n this.inc('patch', identifier)\n }\n this.inc('pre', identifier)\n break\n\n case 'major':\n // If this is a pre-major version, bump up to the same major version.\n // Otherwise increment major.\n // 1.0.0-5 bumps to 1.0.0\n // 1.1.0 bumps to 2.0.0\n if (this.minor !== 0 ||\n this.patch !== 0 ||\n this.prerelease.length === 0) {\n this.major++\n }\n this.minor = 0\n this.patch = 0\n this.prerelease = []\n break\n case 'minor':\n // If this is a pre-minor version, bump up to the same minor version.\n // Otherwise increment minor.\n // 1.2.0-5 bumps to 1.2.0\n // 1.2.1 bumps to 1.3.0\n if (this.patch !== 0 || this.prerelease.length === 0) {\n this.minor++\n }\n this.patch = 0\n this.prerelease = []\n break\n case 'patch':\n // If this is not a pre-release version, it will increment the patch.\n // If it is a pre-release it will bump up to the same patch version.\n // 1.2.0-5 patches to 1.2.0\n // 1.2.0 patches to 1.2.1\n if (this.prerelease.length === 0) {\n this.patch++\n }\n this.prerelease = []\n break\n // This probably shouldn't be used publicly.\n // 1.0.0 \"pre\" would become 1.0.0-0 which is the wrong direction.\n case 'pre':\n if (this.prerelease.length === 0) {\n this.prerelease = [0]\n } else {\n var i = this.prerelease.length\n while (--i >= 0) {\n if (typeof this.prerelease[i] === 'number') {\n this.prerelease[i]++\n i = -2\n }\n }\n if (i === -1) {\n // didn't increment anything\n this.prerelease.push(0)\n }\n }\n if (identifier) {\n // 1.2.0-beta.1 bumps to 1.2.0-beta.2,\n // 1.2.0-beta.fooblz or 1.2.0-beta bumps to 1.2.0-beta.0\n if (this.prerelease[0] === identifier) {\n if (isNaN(this.prerelease[1])) {\n this.prerelease = [identifier, 0]\n }\n } else {\n this.prerelease = [identifier, 0]\n }\n }\n break\n\n default:\n throw new Error('invalid increment argument: ' + release)\n }\n this.format()\n this.raw = this.version\n return this\n}\n\nexports.inc = inc\nfunction inc (version, release, loose, identifier) {\n if (typeof (loose) === 'string') {\n identifier = loose\n loose = undefined\n }\n\n try {\n return new SemVer(version, loose).inc(release, identifier).version\n } catch (er) {\n return null\n }\n}\n\nexports.diff = diff\nfunction diff (version1, version2) {\n if (eq(version1, version2)) {\n return null\n } else {\n var v1 = parse(version1)\n var v2 = parse(version2)\n var prefix = ''\n if (v1.prerelease.length || v2.prerelease.length) {\n prefix = 'pre'\n var defaultResult = 'prerelease'\n }\n for (var key in v1) {\n if (key === 'major' || key === 'minor' || key === 'patch') {\n if (v1[key] !== v2[key]) {\n return prefix + key\n }\n }\n }\n return defaultResult // may be undefined\n }\n}\n\nexports.compareIdentifiers = compareIdentifiers\n\nvar numeric = /^[0-9]+$/\nfunction compareIdentifiers (a, b) {\n var anum = numeric.test(a)\n var bnum = numeric.test(b)\n\n if (anum && bnum) {\n a = +a\n b = +b\n }\n\n return a === b ? 0\n : (anum && !bnum) ? -1\n : (bnum && !anum) ? 1\n : a < b ? -1\n : 1\n}\n\nexports.rcompareIdentifiers = rcompareIdentifiers\nfunction rcompareIdentifiers (a, b) {\n return compareIdentifiers(b, a)\n}\n\nexports.major = major\nfunction major (a, loose) {\n return new SemVer(a, loose).major\n}\n\nexports.minor = minor\nfunction minor (a, loose) {\n return new SemVer(a, loose).minor\n}\n\nexports.patch = patch\nfunction patch (a, loose) {\n return new SemVer(a, loose).patch\n}\n\nexports.compare = compare\nfunction compare (a, b, loose) {\n return new SemVer(a, loose).compare(new SemVer(b, loose))\n}\n\nexports.compareLoose = compareLoose\nfunction compareLoose (a, b) {\n return compare(a, b, true)\n}\n\nexports.compareBuild = compareBuild\nfunction compareBuild (a, b, loose) {\n var versionA = new SemVer(a, loose)\n var versionB = new SemVer(b, loose)\n return versionA.compare(versionB) || versionA.compareBuild(versionB)\n}\n\nexports.rcompare = rcompare\nfunction rcompare (a, b, loose) {\n return compare(b, a, loose)\n}\n\nexports.sort = sort\nfunction sort (list, loose) {\n return list.sort(function (a, b) {\n return exports.compareBuild(a, b, loose)\n })\n}\n\nexports.rsort = rsort\nfunction rsort (list, loose) {\n return list.sort(function (a, b) {\n return exports.compareBuild(b, a, loose)\n })\n}\n\nexports.gt = gt\nfunction gt (a, b, loose) {\n return compare(a, b, loose) > 0\n}\n\nexports.lt = lt\nfunction lt (a, b, loose) {\n return compare(a, b, loose) < 0\n}\n\nexports.eq = eq\nfunction eq (a, b, loose) {\n return compare(a, b, loose) === 0\n}\n\nexports.neq = neq\nfunction neq (a, b, loose) {\n return compare(a, b, loose) !== 0\n}\n\nexports.gte = gte\nfunction gte (a, b, loose) {\n return compare(a, b, loose) >= 0\n}\n\nexports.lte = lte\nfunction lte (a, b, loose) {\n return compare(a, b, loose) <= 0\n}\n\nexports.cmp = cmp\nfunction cmp (a, op, b, loose) {\n switch (op) {\n case '===':\n if (typeof a === 'object')\n a = a.version\n if (typeof b === 'object')\n b = b.version\n return a === b\n\n case '!==':\n if (typeof a === 'object')\n a = a.version\n if (typeof b === 'object')\n b = b.version\n return a !== b\n\n case '':\n case '=':\n case '==':\n return eq(a, b, loose)\n\n case '!=':\n return neq(a, b, loose)\n\n case '>':\n return gt(a, b, loose)\n\n case '>=':\n return gte(a, b, loose)\n\n case '<':\n return lt(a, b, loose)\n\n case '<=':\n return lte(a, b, loose)\n\n default:\n throw new TypeError('Invalid operator: ' + op)\n }\n}\n\nexports.Comparator = Comparator\nfunction Comparator (comp, options) {\n if (!options || typeof options !== 'object') {\n options = {\n loose: !!options,\n includePrerelease: false\n }\n }\n\n if (comp instanceof Comparator) {\n if (comp.loose === !!options.loose) {\n return comp\n } else {\n comp = comp.value\n }\n }\n\n if (!(this instanceof Comparator)) {\n return new Comparator(comp, options)\n }\n\n debug('comparator', comp, options)\n this.options = options\n this.loose = !!options.loose\n this.parse(comp)\n\n if (this.semver === ANY) {\n this.value = ''\n } else {\n this.value = this.operator + this.semver.version\n }\n\n debug('comp', this)\n}\n\nvar ANY = {}\nComparator.prototype.parse = function (comp) {\n var r = this.options.loose ? re[t.COMPARATORLOOSE] : re[t.COMPARATOR]\n var m = comp.match(r)\n\n if (!m) {\n throw new TypeError('Invalid comparator: ' + comp)\n }\n\n this.operator = m[1] !== undefined ? m[1] : ''\n if (this.operator === '=') {\n this.operator = ''\n }\n\n // if it literally is just '>' or '' then allow anything.\n if (!m[2]) {\n this.semver = ANY\n } else {\n this.semver = new SemVer(m[2], this.options.loose)\n }\n}\n\nComparator.prototype.toString = function () {\n return this.value\n}\n\nComparator.prototype.test = function (version) {\n debug('Comparator.test', version, this.options.loose)\n\n if (this.semver === ANY || version === ANY) {\n return true\n }\n\n if (typeof version === 'string') {\n try {\n version = new SemVer(version, this.options)\n } catch (er) {\n return false\n }\n }\n\n return cmp(version, this.operator, this.semver, this.options)\n}\n\nComparator.prototype.intersects = function (comp, options) {\n if (!(comp instanceof Comparator)) {\n throw new TypeError('a Comparator is required')\n }\n\n if (!options || typeof options !== 'object') {\n options = {\n loose: !!options,\n includePrerelease: false\n }\n }\n\n var rangeTmp\n\n if (this.operator === '') {\n if (this.value === '') {\n return true\n }\n rangeTmp = new Range(comp.value, options)\n return satisfies(this.value, rangeTmp, options)\n } else if (comp.operator === '') {\n if (comp.value === '') {\n return true\n }\n rangeTmp = new Range(this.value, options)\n return satisfies(comp.semver, rangeTmp, options)\n }\n\n var sameDirectionIncreasing =\n (this.operator === '>=' || this.operator === '>') &&\n (comp.operator === '>=' || comp.operator === '>')\n var sameDirectionDecreasing =\n (this.operator === '<=' || this.operator === '<') &&\n (comp.operator === '<=' || comp.operator === '<')\n var sameSemVer = this.semver.version === comp.semver.version\n var differentDirectionsInclusive =\n (this.operator === '>=' || this.operator === '<=') &&\n (comp.operator === '>=' || comp.operator === '<=')\n var oppositeDirectionsLessThan =\n cmp(this.semver, '<', comp.semver, options) &&\n ((this.operator === '>=' || this.operator === '>') &&\n (comp.operator === '<=' || comp.operator === '<'))\n var oppositeDirectionsGreaterThan =\n cmp(this.semver, '>', comp.semver, options) &&\n ((this.operator === '<=' || this.operator === '<') &&\n (comp.operator === '>=' || comp.operator === '>'))\n\n return sameDirectionIncreasing || sameDirectionDecreasing ||\n (sameSemVer && differentDirectionsInclusive) ||\n oppositeDirectionsLessThan || oppositeDirectionsGreaterThan\n}\n\nexports.Range = Range\nfunction Range (range, options) {\n if (!options || typeof options !== 'object') {\n options = {\n loose: !!options,\n includePrerelease: false\n }\n }\n\n if (range instanceof Range) {\n if (range.loose === !!options.loose &&\n range.includePrerelease === !!options.includePrerelease) {\n return range\n } else {\n return new Range(range.raw, options)\n }\n }\n\n if (range instanceof Comparator) {\n return new Range(range.value, options)\n }\n\n if (!(this instanceof Range)) {\n return new Range(range, options)\n }\n\n this.options = options\n this.loose = !!options.loose\n this.includePrerelease = !!options.includePrerelease\n\n // First, split based on boolean or ||\n this.raw = range\n this.set = range.split(/\\s*\\|\\|\\s*/).map(function (range) {\n return this.parseRange(range.trim())\n }, this).filter(function (c) {\n // throw out any that are not relevant for whatever reason\n return c.length\n })\n\n if (!this.set.length) {\n throw new TypeError('Invalid SemVer Range: ' + range)\n }\n\n this.format()\n}\n\nRange.prototype.format = function () {\n this.range = this.set.map(function (comps) {\n return comps.join(' ').trim()\n }).join('||').trim()\n return this.range\n}\n\nRange.prototype.toString = function () {\n return this.range\n}\n\nRange.prototype.parseRange = function (range) {\n var loose = this.options.loose\n range = range.trim()\n // `1.2.3 - 1.2.4` => `>=1.2.3 <=1.2.4`\n var hr = loose ? re[t.HYPHENRANGELOOSE] : re[t.HYPHENRANGE]\n range = range.replace(hr, hyphenReplace)\n debug('hyphen replace', range)\n // `> 1.2.3 < 1.2.5` => `>1.2.3 <1.2.5`\n range = range.replace(re[t.COMPARATORTRIM], comparatorTrimReplace)\n debug('comparator trim', range, re[t.COMPARATORTRIM])\n\n // `~ 1.2.3` => `~1.2.3`\n range = range.replace(re[t.TILDETRIM], tildeTrimReplace)\n\n // `^ 1.2.3` => `^1.2.3`\n range = range.replace(re[t.CARETTRIM], caretTrimReplace)\n\n // normalize spaces\n range = range.split(/\\s+/).join(' ')\n\n // At this point, the range is completely trimmed and\n // ready to be split into comparators.\n\n var compRe = loose ? re[t.COMPARATORLOOSE] : re[t.COMPARATOR]\n var set = range.split(' ').map(function (comp) {\n return parseComparator(comp, this.options)\n }, this).join(' ').split(/\\s+/)\n if (this.options.loose) {\n // in loose mode, throw out any that are not valid comparators\n set = set.filter(function (comp) {\n return !!comp.match(compRe)\n })\n }\n set = set.map(function (comp) {\n return new Comparator(comp, this.options)\n }, this)\n\n return set\n}\n\nRange.prototype.intersects = function (range, options) {\n if (!(range instanceof Range)) {\n throw new TypeError('a Range is required')\n }\n\n return this.set.some(function (thisComparators) {\n return (\n isSatisfiable(thisComparators, options) &&\n range.set.some(function (rangeComparators) {\n return (\n isSatisfiable(rangeComparators, options) &&\n thisComparators.every(function (thisComparator) {\n return rangeComparators.every(function (rangeComparator) {\n return thisComparator.intersects(rangeComparator, options)\n })\n })\n )\n })\n )\n })\n}\n\n// take a set of comparators and determine whether there\n// exists a version which can satisfy it\nfunction isSatisfiable (comparators, options) {\n var result = true\n var remainingComparators = comparators.slice()\n var testComparator = remainingComparators.pop()\n\n while (result && remainingComparators.length) {\n result = remainingComparators.every(function (otherComparator) {\n return testComparator.intersects(otherComparator, options)\n })\n\n testComparator = remainingComparators.pop()\n }\n\n return result\n}\n\n// Mostly just for testing and legacy API reasons\nexports.toComparators = toComparators\nfunction toComparators (range, options) {\n return new Range(range, options).set.map(function (comp) {\n return comp.map(function (c) {\n return c.value\n }).join(' ').trim().split(' ')\n })\n}\n\n// comprised of xranges, tildes, stars, and gtlt's at this point.\n// already replaced the hyphen ranges\n// turn into a set of JUST comparators.\nfunction parseComparator (comp, options) {\n debug('comp', comp, options)\n comp = replaceCarets(comp, options)\n debug('caret', comp)\n comp = replaceTildes(comp, options)\n debug('tildes', comp)\n comp = replaceXRanges(comp, options)\n debug('xrange', comp)\n comp = replaceStars(comp, options)\n debug('stars', comp)\n return comp\n}\n\nfunction isX (id) {\n return !id || id.toLowerCase() === 'x' || id === '*'\n}\n\n// ~, ~> --> * (any, kinda silly)\n// ~2, ~2.x, ~2.x.x, ~>2, ~>2.x ~>2.x.x --> >=2.0.0 <3.0.0\n// ~2.0, ~2.0.x, ~>2.0, ~>2.0.x --> >=2.0.0 <2.1.0\n// ~1.2, ~1.2.x, ~>1.2, ~>1.2.x --> >=1.2.0 <1.3.0\n// ~1.2.3, ~>1.2.3 --> >=1.2.3 <1.3.0\n// ~1.2.0, ~>1.2.0 --> >=1.2.0 <1.3.0\nfunction replaceTildes (comp, options) {\n return comp.trim().split(/\\s+/).map(function (comp) {\n return replaceTilde(comp, options)\n }).join(' ')\n}\n\nfunction replaceTilde (comp, options) {\n var r = options.loose ? re[t.TILDELOOSE] : re[t.TILDE]\n return comp.replace(r, function (_, M, m, p, pr) {\n debug('tilde', comp, _, M, m, p, pr)\n var ret\n\n if (isX(M)) {\n ret = ''\n } else if (isX(m)) {\n ret = '>=' + M + '.0.0 <' + (+M + 1) + '.0.0'\n } else if (isX(p)) {\n // ~1.2 == >=1.2.0 <1.3.0\n ret = '>=' + M + '.' + m + '.0 <' + M + '.' + (+m + 1) + '.0'\n } else if (pr) {\n debug('replaceTilde pr', pr)\n ret = '>=' + M + '.' + m + '.' + p + '-' + pr +\n ' <' + M + '.' + (+m + 1) + '.0'\n } else {\n // ~1.2.3 == >=1.2.3 <1.3.0\n ret = '>=' + M + '.' + m + '.' + p +\n ' <' + M + '.' + (+m + 1) + '.0'\n }\n\n debug('tilde return', ret)\n return ret\n })\n}\n\n// ^ --> * (any, kinda silly)\n// ^2, ^2.x, ^2.x.x --> >=2.0.0 <3.0.0\n// ^2.0, ^2.0.x --> >=2.0.0 <3.0.0\n// ^1.2, ^1.2.x --> >=1.2.0 <2.0.0\n// ^1.2.3 --> >=1.2.3 <2.0.0\n// ^1.2.0 --> >=1.2.0 <2.0.0\nfunction replaceCarets (comp, options) {\n return comp.trim().split(/\\s+/).map(function (comp) {\n return replaceCaret(comp, options)\n }).join(' ')\n}\n\nfunction replaceCaret (comp, options) {\n debug('caret', comp, options)\n var r = options.loose ? re[t.CARETLOOSE] : re[t.CARET]\n return comp.replace(r, function (_, M, m, p, pr) {\n debug('caret', comp, _, M, m, p, pr)\n var ret\n\n if (isX(M)) {\n ret = ''\n } else if (isX(m)) {\n ret = '>=' + M + '.0.0 <' + (+M + 1) + '.0.0'\n } else if (isX(p)) {\n if (M === '0') {\n ret = '>=' + M + '.' + m + '.0 <' + M + '.' + (+m + 1) + '.0'\n } else {\n ret = '>=' + M + '.' + m + '.0 <' + (+M + 1) + '.0.0'\n }\n } else if (pr) {\n debug('replaceCaret pr', pr)\n if (M === '0') {\n if (m === '0') {\n ret = '>=' + M + '.' + m + '.' + p + '-' + pr +\n ' <' + M + '.' + m + '.' + (+p + 1)\n } else {\n ret = '>=' + M + '.' + m + '.' + p + '-' + pr +\n ' <' + M + '.' + (+m + 1) + '.0'\n }\n } else {\n ret = '>=' + M + '.' + m + '.' + p + '-' + pr +\n ' <' + (+M + 1) + '.0.0'\n }\n } else {\n debug('no pr')\n if (M === '0') {\n if (m === '0') {\n ret = '>=' + M + '.' + m + '.' + p +\n ' <' + M + '.' + m + '.' + (+p + 1)\n } else {\n ret = '>=' + M + '.' + m + '.' + p +\n ' <' + M + '.' + (+m + 1) + '.0'\n }\n } else {\n ret = '>=' + M + '.' + m + '.' + p +\n ' <' + (+M + 1) + '.0.0'\n }\n }\n\n debug('caret return', ret)\n return ret\n })\n}\n\nfunction replaceXRanges (comp, options) {\n debug('replaceXRanges', comp, options)\n return comp.split(/\\s+/).map(function (comp) {\n return replaceXRange(comp, options)\n }).join(' ')\n}\n\nfunction replaceXRange (comp, options) {\n comp = comp.trim()\n var r = options.loose ? re[t.XRANGELOOSE] : re[t.XRANGE]\n return comp.replace(r, function (ret, gtlt, M, m, p, pr) {\n debug('xRange', comp, ret, gtlt, M, m, p, pr)\n var xM = isX(M)\n var xm = xM || isX(m)\n var xp = xm || isX(p)\n var anyX = xp\n\n if (gtlt === '=' && anyX) {\n gtlt = ''\n }\n\n // if we're including prereleases in the match, then we need\n // to fix this to -0, the lowest possible prerelease value\n pr = options.includePrerelease ? '-0' : ''\n\n if (xM) {\n if (gtlt === '>' || gtlt === '<') {\n // nothing is allowed\n ret = '<0.0.0-0'\n } else {\n // nothing is forbidden\n ret = '*'\n }\n } else if (gtlt && anyX) {\n // we know patch is an x, because we have any x at all.\n // replace X with 0\n if (xm) {\n m = 0\n }\n p = 0\n\n if (gtlt === '>') {\n // >1 => >=2.0.0\n // >1.2 => >=1.3.0\n // >1.2.3 => >= 1.2.4\n gtlt = '>='\n if (xm) {\n M = +M + 1\n m = 0\n p = 0\n } else {\n m = +m + 1\n p = 0\n }\n } else if (gtlt === '<=') {\n // <=0.7.x is actually <0.8.0, since any 0.7.x should\n // pass. Similarly, <=7.x is actually <8.0.0, etc.\n gtlt = '<'\n if (xm) {\n M = +M + 1\n } else {\n m = +m + 1\n }\n }\n\n ret = gtlt + M + '.' + m + '.' + p + pr\n } else if (xm) {\n ret = '>=' + M + '.0.0' + pr + ' <' + (+M + 1) + '.0.0' + pr\n } else if (xp) {\n ret = '>=' + M + '.' + m + '.0' + pr +\n ' <' + M + '.' + (+m + 1) + '.0' + pr\n }\n\n debug('xRange return', ret)\n\n return ret\n })\n}\n\n// Because * is AND-ed with everything else in the comparator,\n// and '' means \"any version\", just remove the *s entirely.\nfunction replaceStars (comp, options) {\n debug('replaceStars', comp, options)\n // Looseness is ignored here. star is always as loose as it gets!\n return comp.trim().replace(re[t.STAR], '')\n}\n\n// This function is passed to string.replace(re[t.HYPHENRANGE])\n// M, m, patch, prerelease, build\n// 1.2 - 3.4.5 => >=1.2.0 <=3.4.5\n// 1.2.3 - 3.4 => >=1.2.0 <3.5.0 Any 3.4.x will do\n// 1.2 - 3.4 => >=1.2.0 <3.5.0\nfunction hyphenReplace ($0,\n from, fM, fm, fp, fpr, fb,\n to, tM, tm, tp, tpr, tb) {\n if (isX(fM)) {\n from = ''\n } else if (isX(fm)) {\n from = '>=' + fM + '.0.0'\n } else if (isX(fp)) {\n from = '>=' + fM + '.' + fm + '.0'\n } else {\n from = '>=' + from\n }\n\n if (isX(tM)) {\n to = ''\n } else if (isX(tm)) {\n to = '<' + (+tM + 1) + '.0.0'\n } else if (isX(tp)) {\n to = '<' + tM + '.' + (+tm + 1) + '.0'\n } else if (tpr) {\n to = '<=' + tM + '.' + tm + '.' + tp + '-' + tpr\n } else {\n to = '<=' + to\n }\n\n return (from + ' ' + to).trim()\n}\n\n// if ANY of the sets match ALL of its comparators, then pass\nRange.prototype.test = function (version) {\n if (!version) {\n return false\n }\n\n if (typeof version === 'string') {\n try {\n version = new SemVer(version, this.options)\n } catch (er) {\n return false\n }\n }\n\n for (var i = 0; i < this.set.length; i++) {\n if (testSet(this.set[i], version, this.options)) {\n return true\n }\n }\n return false\n}\n\nfunction testSet (set, version, options) {\n for (var i = 0; i < set.length; i++) {\n if (!set[i].test(version)) {\n return false\n }\n }\n\n if (version.prerelease.length && !options.includePrerelease) {\n // Find the set of versions that are allowed to have prereleases\n // For example, ^1.2.3-pr.1 desugars to >=1.2.3-pr.1 <2.0.0\n // That should allow `1.2.3-pr.2` to pass.\n // However, `1.2.4-alpha.notready` should NOT be allowed,\n // even though it's within the range set by the comparators.\n for (i = 0; i < set.length; i++) {\n debug(set[i].semver)\n if (set[i].semver === ANY) {\n continue\n }\n\n if (set[i].semver.prerelease.length > 0) {\n var allowed = set[i].semver\n if (allowed.major === version.major &&\n allowed.minor === version.minor &&\n allowed.patch === version.patch) {\n return true\n }\n }\n }\n\n // Version has a -pre, but it's not one of the ones we like.\n return false\n }\n\n return true\n}\n\nexports.satisfies = satisfies\nfunction satisfies (version, range, options) {\n try {\n range = new Range(range, options)\n } catch (er) {\n return false\n }\n return range.test(version)\n}\n\nexports.maxSatisfying = maxSatisfying\nfunction maxSatisfying (versions, range, options) {\n var max = null\n var maxSV = null\n try {\n var rangeObj = new Range(range, options)\n } catch (er) {\n return null\n }\n versions.forEach(function (v) {\n if (rangeObj.test(v)) {\n // satisfies(v, range, options)\n if (!max || maxSV.compare(v) === -1) {\n // compare(max, v, true)\n max = v\n maxSV = new SemVer(max, options)\n }\n }\n })\n return max\n}\n\nexports.minSatisfying = minSatisfying\nfunction minSatisfying (versions, range, options) {\n var min = null\n var minSV = null\n try {\n var rangeObj = new Range(range, options)\n } catch (er) {\n return null\n }\n versions.forEach(function (v) {\n if (rangeObj.test(v)) {\n // satisfies(v, range, options)\n if (!min || minSV.compare(v) === 1) {\n // compare(min, v, true)\n min = v\n minSV = new SemVer(min, options)\n }\n }\n })\n return min\n}\n\nexports.minVersion = minVersion\nfunction minVersion (range, loose) {\n range = new Range(range, loose)\n\n var minver = new SemVer('0.0.0')\n if (range.test(minver)) {\n return minver\n }\n\n minver = new SemVer('0.0.0-0')\n if (range.test(minver)) {\n return minver\n }\n\n minver = null\n for (var i = 0; i < range.set.length; ++i) {\n var comparators = range.set[i]\n\n comparators.forEach(function (comparator) {\n // Clone to avoid manipulating the comparator's semver object.\n var compver = new SemVer(comparator.semver.version)\n switch (comparator.operator) {\n case '>':\n if (compver.prerelease.length === 0) {\n compver.patch++\n } else {\n compver.prerelease.push(0)\n }\n compver.raw = compver.format()\n /* fallthrough */\n case '':\n case '>=':\n if (!minver || gt(minver, compver)) {\n minver = compver\n }\n break\n case '<':\n case '<=':\n /* Ignore maximum versions */\n break\n /* istanbul ignore next */\n default:\n throw new Error('Unexpected operation: ' + comparator.operator)\n }\n })\n }\n\n if (minver && range.test(minver)) {\n return minver\n }\n\n return null\n}\n\nexports.validRange = validRange\nfunction validRange (range, options) {\n try {\n // Return '*' instead of '' so that truthiness works.\n // This will throw if it's invalid anyway\n return new Range(range, options).range || '*'\n } catch (er) {\n return null\n }\n}\n\n// Determine if version is less than all the versions possible in the range\nexports.ltr = ltr\nfunction ltr (version, range, options) {\n return outside(version, range, '<', options)\n}\n\n// Determine if version is greater than all the versions possible in the range.\nexports.gtr = gtr\nfunction gtr (version, range, options) {\n return outside(version, range, '>', options)\n}\n\nexports.outside = outside\nfunction outside (version, range, hilo, options) {\n version = new SemVer(version, options)\n range = new Range(range, options)\n\n var gtfn, ltefn, ltfn, comp, ecomp\n switch (hilo) {\n case '>':\n gtfn = gt\n ltefn = lte\n ltfn = lt\n comp = '>'\n ecomp = '>='\n break\n case '<':\n gtfn = lt\n ltefn = gte\n ltfn = gt\n comp = '<'\n ecomp = '<='\n break\n default:\n throw new TypeError('Must provide a hilo val of \"<\" or \">\"')\n }\n\n // If it satisifes the range it is not outside\n if (satisfies(version, range, options)) {\n return false\n }\n\n // From now on, variable terms are as if we're in \"gtr\" mode.\n // but note that everything is flipped for the \"ltr\" function.\n\n for (var i = 0; i < range.set.length; ++i) {\n var comparators = range.set[i]\n\n var high = null\n var low = null\n\n comparators.forEach(function (comparator) {\n if (comparator.semver === ANY) {\n comparator = new Comparator('>=0.0.0')\n }\n high = high || comparator\n low = low || comparator\n if (gtfn(comparator.semver, high.semver, options)) {\n high = comparator\n } else if (ltfn(comparator.semver, low.semver, options)) {\n low = comparator\n }\n })\n\n // If the edge version comparator has a operator then our version\n // isn't outside it\n if (high.operator === comp || high.operator === ecomp) {\n return false\n }\n\n // If the lowest version comparator has an operator and our version\n // is less than it then it isn't higher than the range\n if ((!low.operator || low.operator === comp) &&\n ltefn(version, low.semver)) {\n return false\n } else if (low.operator === ecomp && ltfn(version, low.semver)) {\n return false\n }\n }\n return true\n}\n\nexports.prerelease = prerelease\nfunction prerelease (version, options) {\n var parsed = parse(version, options)\n return (parsed && parsed.prerelease.length) ? parsed.prerelease : null\n}\n\nexports.intersects = intersects\nfunction intersects (r1, r2, options) {\n r1 = new Range(r1, options)\n r2 = new Range(r2, options)\n return r1.intersects(r2)\n}\n\nexports.coerce = coerce\nfunction coerce (version, options) {\n if (version instanceof SemVer) {\n return version\n }\n\n if (typeof version === 'number') {\n version = String(version)\n }\n\n if (typeof version !== 'string') {\n return null\n }\n\n options = options || {}\n\n var match = null\n if (!options.rtl) {\n match = version.match(re[t.COERCE])\n } else {\n // Find the right-most coercible string that does not share\n // a terminus with a more left-ward coercible string.\n // Eg, '1.2.3.4' wants to coerce '2.3.4', not '3.4' or '4'\n //\n // Walk through the string checking with a /g regexp\n // Manually set the index so as to pick up overlapping matches.\n // Stop when we get a match that ends at the string end, since no\n // coercible string can be more right-ward without the same terminus.\n var next\n while ((next = re[t.COERCERTL].exec(version)) &&\n (!match || match.index + match[0].length !== version.length)\n ) {\n if (!match ||\n next.index + next[0].length !== match.index + match[0].length) {\n match = next\n }\n re[t.COERCERTL].lastIndex = next.index + next[1].length + next[2].length\n }\n // leave it in a clean state\n re[t.COERCERTL].lastIndex = -1\n }\n\n if (match === null) {\n return null\n }\n\n return parse(match[2] +\n '.' + (match[3] || '0') +\n '.' + (match[4] || '0'), options)\n}\n","function validate(binding) {\r\n if (typeof binding.value !== 'function') {\r\n console.warn('[Vue-click-outside:] provided expression', binding.expression, 'is not a function.')\r\n return false\r\n }\r\n\r\n return true\r\n}\r\n\r\nfunction isPopup(popupItem, elements) {\r\n if (!popupItem || !elements)\r\n return false\r\n\r\n for (var i = 0, len = elements.length; i < len; i++) {\r\n try {\r\n if (popupItem.contains(elements[i])) {\r\n return true\r\n }\r\n if (elements[i].contains(popupItem)) {\r\n return false\r\n }\r\n } catch(e) {\r\n return false\r\n }\r\n }\r\n\r\n return false\r\n}\r\n\r\nfunction isServer(vNode) {\r\n return typeof vNode.componentInstance !== 'undefined' && vNode.componentInstance.$isServer\r\n}\r\n\r\nexports = module.exports = {\r\n bind: function (el, binding, vNode) {\r\n if (!validate(binding)) return\r\n\r\n // Define Handler and cache it on the element\r\n function handler(e) {\r\n if (!vNode.context) return\r\n\r\n // some components may have related popup item, on which we shall prevent the click outside event handler.\r\n var elements = e.path || (e.composedPath && e.composedPath())\r\n elements && elements.length > 0 && elements.unshift(e.target)\r\n \r\n if (el.contains(e.target) || isPopup(vNode.context.popupItem, elements)) return\r\n\r\n el.__vueClickOutside__.callback(e)\r\n }\r\n\r\n // add Event Listeners\r\n el.__vueClickOutside__ = {\r\n handler: handler,\r\n callback: binding.value\r\n }\r\n !isServer(vNode) && document.addEventListener('click', handler)\r\n },\r\n\r\n update: function (el, binding) {\r\n if (validate(binding)) el.__vueClickOutside__.callback = binding.value\r\n },\r\n \r\n unbind: function (el, binding, vNode) {\r\n // Remove Event Listeners\r\n !isServer(vNode) && document.removeEventListener('click', el.__vueClickOutside__.handler)\r\n delete el.__vueClickOutside__\r\n }\r\n}\r\n","/*!\n * vue-infinite-loading v2.4.4\n * (c) 2016-2019 PeachScript\n * MIT License\n */\n!function(t,e){\"object\"==typeof exports&&\"object\"==typeof module?module.exports=e():\"function\"==typeof define&&define.amd?define([],e):\"object\"==typeof exports?exports.VueInfiniteLoading=e():t.VueInfiniteLoading=e()}(this,function(){return function(t){var e={};function n(i){if(e[i])return e[i].exports;var r=e[i]={i:i,l:!1,exports:{}};return t[i].call(r.exports,r,r.exports,n),r.l=!0,r.exports}return n.m=t,n.c=e,n.d=function(t,e,i){n.o(t,e)||Object.defineProperty(t,e,{enumerable:!0,get:i})},n.r=function(t){\"undefined\"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:\"Module\"}),Object.defineProperty(t,\"__esModule\",{value:!0})},n.t=function(t,e){if(1&e&&(t=n(t)),8&e)return t;if(4&e&&\"object\"==typeof t&&t&&t.__esModule)return t;var i=Object.create(null);if(n.r(i),Object.defineProperty(i,\"default\",{enumerable:!0,value:t}),2&e&&\"string\"!=typeof t)for(var r in t)n.d(i,r,function(e){return t[e]}.bind(null,r));return i},n.n=function(t){var e=t&&t.__esModule?function(){return t.default}:function(){return t};return n.d(e,\"a\",e),e},n.o=function(t,e){return Object.prototype.hasOwnProperty.call(t,e)},n.p=\"\",n(n.s=9)}([function(t,e,n){var i=n(6);\"string\"==typeof i&&(i=[[t.i,i,\"\"]]),i.locals&&(t.exports=i.locals);(0,n(3).default)(\"09280948\",i,!0,{})},function(t,e,n){var i=n(8);\"string\"==typeof i&&(i=[[t.i,i,\"\"]]),i.locals&&(t.exports=i.locals);(0,n(3).default)(\"51e4c3f9\",i,!0,{})},function(t,e){t.exports=function(t){var e=[];return e.toString=function(){return this.map(function(e){var n=function(t,e){var n=t[1]||\"\",i=t[3];if(!i)return n;if(e&&\"function\"==typeof btoa){var r=(o=i,\"/*# sourceMappingURL=data:application/json;charset=utf-8;base64,\"+btoa(unescape(encodeURIComponent(JSON.stringify(o))))+\" */\"),a=i.sources.map(function(t){return\"/*# sourceURL=\"+i.sourceRoot+t+\" */\"});return[n].concat(a).concat([r]).join(\"\\n\")}var o;return[n].join(\"\\n\")}(e,t);return e[2]?\"@media \"+e[2]+\"{\"+n+\"}\":n}).join(\"\")},e.i=function(t,n){\"string\"==typeof t&&(t=[[null,t,\"\"]]);for(var i={},r=0;r<this.length;r++){var a=this[r][0];\"number\"==typeof a&&(i[a]=!0)}for(r=0;r<t.length;r++){var o=t[r];\"number\"==typeof o[0]&&i[o[0]]||(n&&!o[2]?o[2]=n:n&&(o[2]=\"(\"+o[2]+\") and (\"+n+\")\"),e.push(o))}},e}},function(t,e,n){\"use strict\";function i(t,e){for(var n=[],i={},r=0;r<e.length;r++){var a=e[r],o=a[0],s={id:t+\":\"+r,css:a[1],media:a[2],sourceMap:a[3]};i[o]?i[o].parts.push(s):n.push(i[o]={id:o,parts:[s]})}return n}n.r(e),n.d(e,\"default\",function(){return b});var r=\"undefined\"!=typeof document;if(\"undefined\"!=typeof DEBUG&&DEBUG&&!r)throw new Error(\"vue-style-loader cannot be used in a non-browser environment. Use { target: 'node' } in your Webpack config to indicate a server-rendering environment.\");var a={},o=r&&(document.head||document.getElementsByTagName(\"head\")[0]),s=null,l=0,d=!1,c=function(){},u=null,p=\"data-vue-ssr-id\",f=\"undefined\"!=typeof navigator&&/msie [6-9]\\b/.test(navigator.userAgent.toLowerCase());function b(t,e,n,r){d=n,u=r||{};var o=i(t,e);return h(o),function(e){for(var n=[],r=0;r<o.length;r++){var s=o[r];(l=a[s.id]).refs--,n.push(l)}e?h(o=i(t,e)):o=[];for(r=0;r<n.length;r++){var l;if(0===(l=n[r]).refs){for(var d=0;d<l.parts.length;d++)l.parts[d]();delete a[l.id]}}}}function h(t){for(var e=0;e<t.length;e++){var n=t[e],i=a[n.id];if(i){i.refs++;for(var r=0;r<i.parts.length;r++)i.parts[r](n.parts[r]);for(;r<n.parts.length;r++)i.parts.push(g(n.parts[r]));i.parts.length>n.parts.length&&(i.parts.length=n.parts.length)}else{var o=[];for(r=0;r<n.parts.length;r++)o.push(g(n.parts[r]));a[n.id]={id:n.id,refs:1,parts:o}}}}function m(){var t=document.createElement(\"style\");return t.type=\"text/css\",o.appendChild(t),t}function g(t){var e,n,i=document.querySelector(\"style[\"+p+'~=\"'+t.id+'\"]');if(i){if(d)return c;i.parentNode.removeChild(i)}if(f){var r=l++;i=s||(s=m()),e=w.bind(null,i,r,!1),n=w.bind(null,i,r,!0)}else i=m(),e=function(t,e){var n=e.css,i=e.media,r=e.sourceMap;i&&t.setAttribute(\"media\",i);u.ssrId&&t.setAttribute(p,e.id);r&&(n+=\"\\n/*# sourceURL=\"+r.sources[0]+\" */\",n+=\"\\n/*# sourceMappingURL=data:application/json;base64,\"+btoa(unescape(encodeURIComponent(JSON.stringify(r))))+\" */\");if(t.styleSheet)t.styleSheet.cssText=n;else{for(;t.firstChild;)t.removeChild(t.firstChild);t.appendChild(document.createTextNode(n))}}.bind(null,i),n=function(){i.parentNode.removeChild(i)};return e(t),function(i){if(i){if(i.css===t.css&&i.media===t.media&&i.sourceMap===t.sourceMap)return;e(t=i)}else n()}}var v,y=(v=[],function(t,e){return v[t]=e,v.filter(Boolean).join(\"\\n\")});function w(t,e,n,i){var r=n?\"\":i.css;if(t.styleSheet)t.styleSheet.cssText=y(e,r);else{var a=document.createTextNode(r),o=t.childNodes;o[e]&&t.removeChild(o[e]),o.length?t.insertBefore(a,o[e]):t.appendChild(a)}}},function(t,e){function n(t){return(n=\"function\"==typeof Symbol&&\"symbol\"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&\"function\"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?\"symbol\":typeof t})(t)}function i(e){return\"function\"==typeof Symbol&&\"symbol\"===n(Symbol.iterator)?t.exports=i=function(t){return n(t)}:t.exports=i=function(t){return t&&\"function\"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?\"symbol\":n(t)},i(e)}t.exports=i},function(t,e,n){\"use strict\";n.r(e);var i=n(0),r=n.n(i);for(var a in i)\"default\"!==a&&function(t){n.d(e,t,function(){return i[t]})}(a);e.default=r.a},function(t,e,n){(t.exports=n(2)(!1)).push([t.i,'.loading-wave-dots[data-v-46b20d22]{position:relative}.loading-wave-dots[data-v-46b20d22] .wave-item{position:absolute;top:50%;left:50%;display:inline-block;margin-top:-4px;width:8px;height:8px;border-radius:50%;-webkit-animation:loading-wave-dots-data-v-46b20d22 linear 2.8s infinite;animation:loading-wave-dots-data-v-46b20d22 linear 2.8s infinite}.loading-wave-dots[data-v-46b20d22] .wave-item:first-child{margin-left:-36px}.loading-wave-dots[data-v-46b20d22] .wave-item:nth-child(2){margin-left:-20px;-webkit-animation-delay:.14s;animation-delay:.14s}.loading-wave-dots[data-v-46b20d22] .wave-item:nth-child(3){margin-left:-4px;-webkit-animation-delay:.28s;animation-delay:.28s}.loading-wave-dots[data-v-46b20d22] .wave-item:nth-child(4){margin-left:12px;-webkit-animation-delay:.42s;animation-delay:.42s}.loading-wave-dots[data-v-46b20d22] .wave-item:last-child{margin-left:28px;-webkit-animation-delay:.56s;animation-delay:.56s}@-webkit-keyframes loading-wave-dots-data-v-46b20d22{0%{-webkit-transform:translateY(0);transform:translateY(0);background:#bbb}10%{-webkit-transform:translateY(-6px);transform:translateY(-6px);background:#999}20%{-webkit-transform:translateY(0);transform:translateY(0);background:#bbb}to{-webkit-transform:translateY(0);transform:translateY(0);background:#bbb}}@keyframes loading-wave-dots-data-v-46b20d22{0%{-webkit-transform:translateY(0);transform:translateY(0);background:#bbb}10%{-webkit-transform:translateY(-6px);transform:translateY(-6px);background:#999}20%{-webkit-transform:translateY(0);transform:translateY(0);background:#bbb}to{-webkit-transform:translateY(0);transform:translateY(0);background:#bbb}}.loading-circles[data-v-46b20d22] .circle-item{width:5px;height:5px;-webkit-animation:loading-circles-data-v-46b20d22 linear .75s infinite;animation:loading-circles-data-v-46b20d22 linear .75s infinite}.loading-circles[data-v-46b20d22] .circle-item:first-child{margin-top:-14.5px;margin-left:-2.5px}.loading-circles[data-v-46b20d22] .circle-item:nth-child(2){margin-top:-11.26px;margin-left:6.26px}.loading-circles[data-v-46b20d22] .circle-item:nth-child(3){margin-top:-2.5px;margin-left:9.5px}.loading-circles[data-v-46b20d22] .circle-item:nth-child(4){margin-top:6.26px;margin-left:6.26px}.loading-circles[data-v-46b20d22] .circle-item:nth-child(5){margin-top:9.5px;margin-left:-2.5px}.loading-circles[data-v-46b20d22] .circle-item:nth-child(6){margin-top:6.26px;margin-left:-11.26px}.loading-circles[data-v-46b20d22] .circle-item:nth-child(7){margin-top:-2.5px;margin-left:-14.5px}.loading-circles[data-v-46b20d22] .circle-item:last-child{margin-top:-11.26px;margin-left:-11.26px}@-webkit-keyframes loading-circles-data-v-46b20d22{0%{background:#dfdfdf}90%{background:#505050}to{background:#dfdfdf}}@keyframes loading-circles-data-v-46b20d22{0%{background:#dfdfdf}90%{background:#505050}to{background:#dfdfdf}}.loading-bubbles[data-v-46b20d22] .bubble-item{background:#666;-webkit-animation:loading-bubbles-data-v-46b20d22 linear .75s infinite;animation:loading-bubbles-data-v-46b20d22 linear .75s infinite}.loading-bubbles[data-v-46b20d22] .bubble-item:first-child{margin-top:-12.5px;margin-left:-.5px}.loading-bubbles[data-v-46b20d22] .bubble-item:nth-child(2){margin-top:-9.26px;margin-left:8.26px}.loading-bubbles[data-v-46b20d22] .bubble-item:nth-child(3){margin-top:-.5px;margin-left:11.5px}.loading-bubbles[data-v-46b20d22] .bubble-item:nth-child(4){margin-top:8.26px;margin-left:8.26px}.loading-bubbles[data-v-46b20d22] .bubble-item:nth-child(5){margin-top:11.5px;margin-left:-.5px}.loading-bubbles[data-v-46b20d22] .bubble-item:nth-child(6){margin-top:8.26px;margin-left:-9.26px}.loading-bubbles[data-v-46b20d22] .bubble-item:nth-child(7){margin-top:-.5px;margin-left:-12.5px}.loading-bubbles[data-v-46b20d22] .bubble-item:last-child{margin-top:-9.26px;margin-left:-9.26px}@-webkit-keyframes loading-bubbles-data-v-46b20d22{0%{width:1px;height:1px;box-shadow:0 0 0 3px #666}90%{width:1px;height:1px;box-shadow:0 0 0 0 #666}to{width:1px;height:1px;box-shadow:0 0 0 3px #666}}@keyframes loading-bubbles-data-v-46b20d22{0%{width:1px;height:1px;box-shadow:0 0 0 3px #666}90%{width:1px;height:1px;box-shadow:0 0 0 0 #666}to{width:1px;height:1px;box-shadow:0 0 0 3px #666}}.loading-default[data-v-46b20d22]{position:relative;border:1px solid #999;-webkit-animation:loading-rotating-data-v-46b20d22 ease 1.5s infinite;animation:loading-rotating-data-v-46b20d22 ease 1.5s infinite}.loading-default[data-v-46b20d22]:before{content:\"\";position:absolute;display:block;top:0;left:50%;margin-top:-3px;margin-left:-3px;width:6px;height:6px;background-color:#999;border-radius:50%}.loading-spiral[data-v-46b20d22]{border:2px solid #777;border-right-color:transparent;-webkit-animation:loading-rotating-data-v-46b20d22 linear .85s infinite;animation:loading-rotating-data-v-46b20d22 linear .85s infinite}@-webkit-keyframes loading-rotating-data-v-46b20d22{0%{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes loading-rotating-data-v-46b20d22{0%{-webkit-transform:rotate(0);transform:rotate(0)}to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}.loading-bubbles[data-v-46b20d22],.loading-circles[data-v-46b20d22]{position:relative}.loading-bubbles[data-v-46b20d22] .bubble-item,.loading-circles[data-v-46b20d22] .circle-item{position:absolute;top:50%;left:50%;display:inline-block;border-radius:50%}.loading-bubbles[data-v-46b20d22] .bubble-item:nth-child(2),.loading-circles[data-v-46b20d22] .circle-item:nth-child(2){-webkit-animation-delay:93ms;animation-delay:93ms}.loading-bubbles[data-v-46b20d22] .bubble-item:nth-child(3),.loading-circles[data-v-46b20d22] .circle-item:nth-child(3){-webkit-animation-delay:.186s;animation-delay:.186s}.loading-bubbles[data-v-46b20d22] .bubble-item:nth-child(4),.loading-circles[data-v-46b20d22] .circle-item:nth-child(4){-webkit-animation-delay:.279s;animation-delay:.279s}.loading-bubbles[data-v-46b20d22] .bubble-item:nth-child(5),.loading-circles[data-v-46b20d22] .circle-item:nth-child(5){-webkit-animation-delay:.372s;animation-delay:.372s}.loading-bubbles[data-v-46b20d22] .bubble-item:nth-child(6),.loading-circles[data-v-46b20d22] .circle-item:nth-child(6){-webkit-animation-delay:.465s;animation-delay:.465s}.loading-bubbles[data-v-46b20d22] .bubble-item:nth-child(7),.loading-circles[data-v-46b20d22] .circle-item:nth-child(7){-webkit-animation-delay:.558s;animation-delay:.558s}.loading-bubbles[data-v-46b20d22] .bubble-item:last-child,.loading-circles[data-v-46b20d22] .circle-item:last-child{-webkit-animation-delay:.651s;animation-delay:.651s}',\"\"])},function(t,e,n){\"use strict\";n.r(e);var i=n(1),r=n.n(i);for(var a in i)\"default\"!==a&&function(t){n.d(e,t,function(){return i[t]})}(a);e.default=r.a},function(t,e,n){(t.exports=n(2)(!1)).push([t.i,\".infinite-loading-container[data-v-46b21138]{clear:both;text-align:center}.infinite-loading-container[data-v-46b21138] [class^=loading-]{display:inline-block;margin:5px 0;width:28px;height:28px;font-size:28px;line-height:28px;border-radius:50%}.btn-try-infinite[data-v-46b21138]{margin-top:5px;padding:5px 10px;color:#999;font-size:14px;line-height:1;background:transparent;border:1px solid #ccc;border-radius:3px;outline:none;cursor:pointer}.btn-try-infinite[data-v-46b21138]:not(:active):hover{opacity:.8}\",\"\"])},function(t,e,n){\"use strict\";n.r(e);var i={throttleLimit:50,loopCheckTimeout:1e3,loopCheckMaxCalls:10},r=function(){var t=!1;try{var e=Object.defineProperty({},\"passive\",{get:function(){return t={passive:!0},!0}});window.addEventListener(\"testpassive\",e,e),window.remove(\"testpassive\",e,e)}catch(t){}return t}(),a={STATE_CHANGER:[\"emit `loaded` and `complete` event through component instance of `$refs` may cause error, so it will be deprecated soon, please use the `$state` argument instead (`$state` just the special `$event` variable):\",\"\\ntemplate:\",'<infinite-loading @infinite=\"infiniteHandler\"></infinite-loading>',\"\\nscript:\\n...\\ninfiniteHandler($state) {\\n ajax('https://www.example.com/api/news')\\n .then((res) => {\\n if (res.data.length) {\\n $state.loaded();\\n } else {\\n $state.complete();\\n }\\n });\\n}\\n...\",\"\",\"more details: https://github.com/PeachScript/vue-infinite-loading/issues/57#issuecomment-324370549\"].join(\"\\n\"),INFINITE_EVENT:\"`:on-infinite` property will be deprecated soon, please use `@infinite` event instead.\",IDENTIFIER:\"the `reset` event will be deprecated soon, please reset this component by change the `identifier` property.\"},o={INFINITE_LOOP:[\"executed the callback function more than \".concat(i.loopCheckMaxCalls,\" times for a short time, it looks like searched a wrong scroll wrapper that doest not has fixed height or maximum height, please check it. If you want to force to set a element as scroll wrapper ranther than automatic searching, you can do this:\"),'\\n\\x3c!-- add a special attribute for the real scroll wrapper --\\x3e\\n<div infinite-wrapper>\\n ...\\n \\x3c!-- set force-use-infinite-wrapper --\\x3e\\n <infinite-loading force-use-infinite-wrapper></infinite-loading>\\n</div>\\nor\\n<div class=\"infinite-wrapper\">\\n ...\\n \\x3c!-- set force-use-infinite-wrapper as css selector of the real scroll wrapper --\\x3e\\n <infinite-loading force-use-infinite-wrapper=\".infinite-wrapper\"></infinite-loading>\\n</div>\\n ',\"more details: https://github.com/PeachScript/vue-infinite-loading/issues/55#issuecomment-316934169\"].join(\"\\n\")},s={READY:0,LOADING:1,COMPLETE:2,ERROR:3},l={color:\"#666\",fontSize:\"14px\",padding:\"10px 0\"},d={mode:\"development\",props:{spinner:\"default\",distance:100,forceUseInfiniteWrapper:!1},system:i,slots:{noResults:\"No results :(\",noMore:\"No more data :)\",error:\"Opps, something went wrong :(\",errorBtnText:\"Retry\",spinner:\"\"},WARNINGS:a,ERRORS:o,STATUS:s},c=n(4),u=n.n(c),p={BUBBLES:{render:function(t){return t(\"span\",{attrs:{class:\"loading-bubbles\"}},Array.apply(Array,Array(8)).map(function(){return t(\"span\",{attrs:{class:\"bubble-item\"}})}))}},CIRCLES:{render:function(t){return t(\"span\",{attrs:{class:\"loading-circles\"}},Array.apply(Array,Array(8)).map(function(){return t(\"span\",{attrs:{class:\"circle-item\"}})}))}},DEFAULT:{render:function(t){return t(\"i\",{attrs:{class:\"loading-default\"}})}},SPIRAL:{render:function(t){return t(\"i\",{attrs:{class:\"loading-spiral\"}})}},WAVEDOTS:{render:function(t){return t(\"span\",{attrs:{class:\"loading-wave-dots\"}},Array.apply(Array,Array(5)).map(function(){return t(\"span\",{attrs:{class:\"wave-item\"}})}))}}};function f(t,e,n,i,r,a,o,s){var l,d=\"function\"==typeof t?t.options:t;if(e&&(d.render=e,d.staticRenderFns=n,d._compiled=!0),i&&(d.functional=!0),a&&(d._scopeId=\"data-v-\"+a),o?(l=function(t){(t=t||this.$vnode&&this.$vnode.ssrContext||this.parent&&this.parent.$vnode&&this.parent.$vnode.ssrContext)||\"undefined\"==typeof __VUE_SSR_CONTEXT__||(t=__VUE_SSR_CONTEXT__),r&&r.call(this,t),t&&t._registeredComponents&&t._registeredComponents.add(o)},d._ssrRegister=l):r&&(l=s?function(){r.call(this,this.$root.$options.shadowRoot)}:r),l)if(d.functional){d._injectStyles=l;var c=d.render;d.render=function(t,e){return l.call(e),c(t,e)}}else{var u=d.beforeCreate;d.beforeCreate=u?[].concat(u,l):[l]}return{exports:t,options:d}}var b=f({name:\"Spinner\",computed:{spinnerView:function(){return p[(this.$attrs.spinner||\"\").toUpperCase()]||this.spinnerInConfig},spinnerInConfig:function(){return d.slots.spinner&&\"string\"==typeof d.slots.spinner?{render:function(){return this._v(d.slots.spinner)}}:\"object\"===u()(d.slots.spinner)?d.slots.spinner:p[d.props.spinner.toUpperCase()]||p.DEFAULT}}},function(){var t=this.$createElement;return(this._self._c||t)(this.spinnerView,{tag:\"component\"})},[],!1,function(t){var e=n(5);e.__inject__&&e.__inject__(t)},\"46b20d22\",null);b.options.__file=\"Spinner.vue\";var h=b.exports;function m(t){\"production\"!==d.mode&&console.warn(\"[Vue-infinite-loading warn]: \".concat(t))}function g(t){console.error(\"[Vue-infinite-loading error]: \".concat(t))}var v={timers:[],caches:[],throttle:function(t){var e=this;-1===this.caches.indexOf(t)&&(this.caches.push(t),this.timers.push(setTimeout(function(){t(),e.caches.splice(e.caches.indexOf(t),1),e.timers.shift()},d.system.throttleLimit)))},reset:function(){this.timers.forEach(function(t){clearTimeout(t)}),this.timers.length=0,this.caches=[]}},y={isChecked:!1,timer:null,times:0,track:function(){var t=this;this.times+=1,clearTimeout(this.timer),this.timer=setTimeout(function(){t.isChecked=!0},d.system.loopCheckTimeout),this.times>d.system.loopCheckMaxCalls&&(g(o.INFINITE_LOOP),this.isChecked=!0)}},w={key:\"_infiniteScrollHeight\",getScrollElm:function(t){return t===window?document.documentElement:t},save:function(t){var e=this.getScrollElm(t);e[this.key]=e.scrollHeight},restore:function(t){var e=this.getScrollElm(t);\"number\"==typeof e[this.key]&&(e.scrollTop=e.scrollHeight-e[this.key]+e.scrollTop),this.remove(e)},remove:function(t){void 0!==t[this.key]&&delete t[this.key]}};function x(t){return t.replace(/[A-Z]/g,function(t){return\"-\".concat(t.toLowerCase())})}function k(t){return t.offsetWidth+t.offsetHeight>0}var S=f({name:\"InfiniteLoading\",data:function(){return{scrollParent:null,scrollHandler:null,isFirstLoad:!0,status:s.READY,slots:d.slots}},components:{Spinner:h},computed:{isShowSpinner:function(){return this.status===s.LOADING},isShowError:function(){return this.status===s.ERROR},isShowNoResults:function(){return this.status===s.COMPLETE&&this.isFirstLoad},isShowNoMore:function(){return this.status===s.COMPLETE&&!this.isFirstLoad},slotStyles:function(){var t=this,e={};return Object.keys(d.slots).forEach(function(n){var i=x(n);(!t.$slots[i]&&!d.slots[n].render||t.$slots[i]&&!t.$slots[i][0].tag)&&(e[n]=l)}),e}},props:{distance:{type:Number,default:d.props.distance},spinner:String,direction:{type:String,default:\"bottom\"},forceUseInfiniteWrapper:{type:[Boolean,String],default:d.props.forceUseInfiniteWrapper},identifier:{default:+new Date},onInfinite:Function},watch:{identifier:function(){this.stateChanger.reset()}},mounted:function(){var t=this;this.$watch(\"forceUseInfiniteWrapper\",function(){t.scrollParent=t.getScrollParent()},{immediate:!0}),this.scrollHandler=function(e){t.status===s.READY&&(e&&e.constructor===Event&&k(t.$el)?v.throttle(t.attemptLoad):t.attemptLoad())},setTimeout(function(){t.scrollHandler(),t.scrollParent.addEventListener(\"scroll\",t.scrollHandler,r)},1),this.$on(\"$InfiniteLoading:loaded\",function(e){t.isFirstLoad=!1,\"top\"===t.direction&&t.$nextTick(function(){w.restore(t.scrollParent)}),t.status===s.LOADING&&t.$nextTick(t.attemptLoad.bind(null,!0)),e&&e.target===t||m(a.STATE_CHANGER)}),this.$on(\"$InfiniteLoading:complete\",function(e){t.status=s.COMPLETE,t.$nextTick(function(){t.$forceUpdate()}),t.scrollParent.removeEventListener(\"scroll\",t.scrollHandler,r),e&&e.target===t||m(a.STATE_CHANGER)}),this.$on(\"$InfiniteLoading:reset\",function(e){t.status=s.READY,t.isFirstLoad=!0,w.remove(t.scrollParent),t.scrollParent.addEventListener(\"scroll\",t.scrollHandler,r),setTimeout(function(){v.reset(),t.scrollHandler()},1),e&&e.target===t||m(a.IDENTIFIER)}),this.stateChanger={loaded:function(){t.$emit(\"$InfiniteLoading:loaded\",{target:t})},complete:function(){t.$emit(\"$InfiniteLoading:complete\",{target:t})},reset:function(){t.$emit(\"$InfiniteLoading:reset\",{target:t})},error:function(){t.status=s.ERROR,v.reset()}},this.onInfinite&&m(a.INFINITE_EVENT)},deactivated:function(){this.status===s.LOADING&&(this.status=s.READY),this.scrollParent.removeEventListener(\"scroll\",this.scrollHandler,r)},activated:function(){this.scrollParent.addEventListener(\"scroll\",this.scrollHandler,r)},methods:{attemptLoad:function(t){var e=this;this.status!==s.COMPLETE&&k(this.$el)&&this.getCurrentDistance()<=this.distance?(this.status=s.LOADING,\"top\"===this.direction&&this.$nextTick(function(){w.save(e.scrollParent)}),\"function\"==typeof this.onInfinite?this.onInfinite.call(null,this.stateChanger):this.$emit(\"infinite\",this.stateChanger),!t||this.forceUseInfiniteWrapper||y.isChecked||y.track()):this.status===s.LOADING&&(this.status=s.READY)},getCurrentDistance:function(){var t;\"top\"===this.direction?t=\"number\"==typeof this.scrollParent.scrollTop?this.scrollParent.scrollTop:this.scrollParent.pageYOffset:t=this.$el.getBoundingClientRect().top-(this.scrollParent===window?window.innerHeight:this.scrollParent.getBoundingClientRect().bottom);return t},getScrollParent:function(){var t,e=arguments.length>0&&void 0!==arguments[0]?arguments[0]:this.$el;return\"string\"==typeof this.forceUseInfiniteWrapper&&(t=e.querySelector(this.forceUseInfiniteWrapper)),t||(\"BODY\"===e.tagName?t=window:!this.forceUseInfiniteWrapper&&[\"scroll\",\"auto\"].indexOf(getComputedStyle(e).overflowY)>-1?t=e:(e.hasAttribute(\"infinite-wrapper\")||e.hasAttribute(\"data-infinite-wrapper\"))&&(t=e)),t||this.getScrollParent(e.parentNode)}},destroyed:function(){!this.status!==s.COMPLETE&&(v.reset(),w.remove(this.scrollParent),this.scrollParent.removeEventListener(\"scroll\",this.scrollHandler,r))}},function(){var t=this,e=t.$createElement,n=t._self._c||e;return n(\"div\",{staticClass:\"infinite-loading-container\"},[n(\"div\",{directives:[{name:\"show\",rawName:\"v-show\",value:t.isShowSpinner,expression:\"isShowSpinner\"}],staticClass:\"infinite-status-prompt\",style:t.slotStyles.spinner},[t._t(\"spinner\",[n(\"spinner\",{attrs:{spinner:t.spinner}})])],2),t._v(\" \"),n(\"div\",{directives:[{name:\"show\",rawName:\"v-show\",value:t.isShowNoResults,expression:\"isShowNoResults\"}],staticClass:\"infinite-status-prompt\",style:t.slotStyles.noResults},[t._t(\"no-results\",[t.slots.noResults.render?n(t.slots.noResults,{tag:\"component\"}):[t._v(t._s(t.slots.noResults))]])],2),t._v(\" \"),n(\"div\",{directives:[{name:\"show\",rawName:\"v-show\",value:t.isShowNoMore,expression:\"isShowNoMore\"}],staticClass:\"infinite-status-prompt\",style:t.slotStyles.noMore},[t._t(\"no-more\",[t.slots.noMore.render?n(t.slots.noMore,{tag:\"component\"}):[t._v(t._s(t.slots.noMore))]])],2),t._v(\" \"),n(\"div\",{directives:[{name:\"show\",rawName:\"v-show\",value:t.isShowError,expression:\"isShowError\"}],staticClass:\"infinite-status-prompt\",style:t.slotStyles.error},[t._t(\"error\",[t.slots.error.render?n(t.slots.error,{tag:\"component\",attrs:{trigger:t.attemptLoad}}):[t._v(\"\\n \"+t._s(t.slots.error)+\"\\n \"),n(\"br\"),t._v(\" \"),n(\"button\",{staticClass:\"btn-try-infinite\",domProps:{textContent:t._s(t.slots.errorBtnText)},on:{click:t.attemptLoad}})]],{trigger:t.attemptLoad})],2)])},[],!1,function(t){var e=n(7);e.__inject__&&e.__inject__(t)},\"46b21138\",null);S.options.__file=\"InfiniteLoading.vue\";var E=S.exports;function _(t){d.mode=t.config.productionTip?\"development\":\"production\"}Object.defineProperty(E,\"install\",{configurable:!1,enumerable:!1,value:function(t,e){Object.assign(d.props,e&&e.props),Object.assign(d.slots,e&&e.slots),Object.assign(d.system,e&&e.system),t.component(\"infinite-loading\",E),_(t)}}),\"undefined\"!=typeof window&&window.Vue&&(window.Vue.component(\"infinite-loading\",E),_(window.Vue));e.default=E}])});"],"mappings":";;;;;;;;;;AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;AC3BA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACjCA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACrBA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACzGA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACrHA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;AC9DA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACJA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACNA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACnBA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACJA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;;ACNA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACZA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;AC/BA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;AChEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;;AClBA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACTA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;AC1BA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACnBA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACZA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACrCA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACJA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;;ACzBA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;;ACzLA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;AClGA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACbA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;;ACNA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACfA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACTA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;;ACPA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;;ACTA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACzFA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACLA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACTA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;AClCA;AACA;AACA;;;;;;;;;;;;ACFA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACnBA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACTA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACrDA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACNA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACJA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACvBA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACVA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACVA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;;ACZA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACJA;;;;;;;;;;;;ACAA;AACA;AACA;;;;;;;;;;;;ACFA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACTA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACZA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;AChBA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACXA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;AC5DA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;AC5DA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACTA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACNA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACpBA;AACA;AACA;;;;;;;;;;;;ACFA;;;;;;;;;;;;ACAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;;AC1CA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACpCA;;;;;;;;;;;;ACAA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACNA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACLA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;AC7EA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACfA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACnBA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACnBA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACTA;;;;;;;;;;;;ACAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;AChBA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;AChBA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;;ACPA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACZA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;;ACvBA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACRA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACVA;AACA;AACA;;;;;;;;;;;;ACFA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACLA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACjCA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACLA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;;ACTA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;AClBA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACVA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACPA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACNA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACTA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;AC1BA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACXA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACNA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACPA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACRA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACNA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACbA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACPA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACLA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACNA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;;AChBA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;;AC3DA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;;ACjBA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;;ACpDA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACRA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;;ACRA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;AC5BA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACdA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;AChCA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;;AC3jDA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACnEA;AACA;AACA;AACA;AACA;AACA;;;;A","sourceRoot":""} \ No newline at end of file
diff --git a/apps/settings/js/vue-2.js b/apps/settings/js/vue-2.js
index 5256cff1033..a69287d398a 100644
--- a/apps/settings/js/vue-2.js
+++ b/apps/settings/js/vue-2.js
@@ -1,16 +1,103 @@
(window["webpackJsonpSettings"] = window["webpackJsonpSettings"] || []).push([[2],{
-/***/ "./apps/settings/src/components/UserList.vue":
-/*!***************************************************!*\
- !*** ./apps/settings/src/components/UserList.vue ***!
- \***************************************************/
+/***/ "./apps/settings/src/components/AppDetails.vue":
+/*!*****************************************************!*\
+ !*** ./apps/settings/src/components/AppDetails.vue ***!
+ \*****************************************************/
/*! exports provided: default */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
__webpack_require__.r(__webpack_exports__);
-/* harmony import */ var _UserList_vue_vue_type_template_id_6cba3aca___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./UserList.vue?vue&type=template&id=6cba3aca& */ "./apps/settings/src/components/UserList.vue?vue&type=template&id=6cba3aca&");
-/* harmony import */ var _UserList_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./UserList.vue?vue&type=script&lang=js& */ "./apps/settings/src/components/UserList.vue?vue&type=script&lang=js&");
+/* harmony import */ var _AppDetails_vue_vue_type_template_id_59a92e62_scoped_true___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./AppDetails.vue?vue&type=template&id=59a92e62&scoped=true& */ "./apps/settings/src/components/AppDetails.vue?vue&type=template&id=59a92e62&scoped=true&");
+/* harmony import */ var _AppDetails_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./AppDetails.vue?vue&type=script&lang=js& */ "./apps/settings/src/components/AppDetails.vue?vue&type=script&lang=js&");
+/* empty/unused harmony star reexport *//* harmony import */ var _AppDetails_vue_vue_type_style_index_0_id_59a92e62_scoped_true_lang_css___WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./AppDetails.vue?vue&type=style&index=0&id=59a92e62&scoped=true&lang=css& */ "./apps/settings/src/components/AppDetails.vue?vue&type=style&index=0&id=59a92e62&scoped=true&lang=css&");
+/* harmony import */ var _node_modules_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js */ "./node_modules/vue-loader/lib/runtime/componentNormalizer.js");
+
+
+
+
+
+
+/* normalize component */
+
+var component = Object(_node_modules_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_3__["default"])(
+ _AppDetails_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__["default"],
+ _AppDetails_vue_vue_type_template_id_59a92e62_scoped_true___WEBPACK_IMPORTED_MODULE_0__["render"],
+ _AppDetails_vue_vue_type_template_id_59a92e62_scoped_true___WEBPACK_IMPORTED_MODULE_0__["staticRenderFns"],
+ false,
+ null,
+ "59a92e62",
+ null
+
+)
+
+/* hot reload */
+if (false) { var api; }
+component.options.__file = "apps/settings/src/components/AppDetails.vue"
+/* harmony default export */ __webpack_exports__["default"] = (component.exports);
+
+/***/ }),
+
+/***/ "./apps/settings/src/components/AppDetails.vue?vue&type=script&lang=js&":
+/*!******************************************************************************!*\
+ !*** ./apps/settings/src/components/AppDetails.vue?vue&type=script&lang=js& ***!
+ \******************************************************************************/
+/*! exports provided: default */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _node_modules_babel_loader_lib_index_js_node_modules_vue_loader_lib_index_js_vue_loader_options_AppDetails_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../node_modules/babel-loader/lib!../../../../node_modules/vue-loader/lib??vue-loader-options!./AppDetails.vue?vue&type=script&lang=js& */ "./node_modules/babel-loader/lib/index.js!./node_modules/vue-loader/lib/index.js?!./apps/settings/src/components/AppDetails.vue?vue&type=script&lang=js&");
+/* empty/unused harmony star reexport */ /* harmony default export */ __webpack_exports__["default"] = (_node_modules_babel_loader_lib_index_js_node_modules_vue_loader_lib_index_js_vue_loader_options_AppDetails_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__["default"]);
+
+/***/ }),
+
+/***/ "./apps/settings/src/components/AppDetails.vue?vue&type=style&index=0&id=59a92e62&scoped=true&lang=css&":
+/*!**************************************************************************************************************!*\
+ !*** ./apps/settings/src/components/AppDetails.vue?vue&type=style&index=0&id=59a92e62&scoped=true&lang=css& ***!
+ \**************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _node_modules_vue_style_loader_index_js_node_modules_css_loader_dist_cjs_js_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_vue_loader_lib_index_js_vue_loader_options_AppDetails_vue_vue_type_style_index_0_id_59a92e62_scoped_true_lang_css___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../node_modules/vue-style-loader!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/vue-loader/lib??vue-loader-options!./AppDetails.vue?vue&type=style&index=0&id=59a92e62&scoped=true&lang=css& */ "./node_modules/vue-style-loader/index.js!./node_modules/css-loader/dist/cjs.js!./node_modules/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/vue-loader/lib/index.js?!./apps/settings/src/components/AppDetails.vue?vue&type=style&index=0&id=59a92e62&scoped=true&lang=css&");
+/* harmony import */ var _node_modules_vue_style_loader_index_js_node_modules_css_loader_dist_cjs_js_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_vue_loader_lib_index_js_vue_loader_options_AppDetails_vue_vue_type_style_index_0_id_59a92e62_scoped_true_lang_css___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_node_modules_vue_style_loader_index_js_node_modules_css_loader_dist_cjs_js_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_vue_loader_lib_index_js_vue_loader_options_AppDetails_vue_vue_type_style_index_0_id_59a92e62_scoped_true_lang_css___WEBPACK_IMPORTED_MODULE_0__);
+/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _node_modules_vue_style_loader_index_js_node_modules_css_loader_dist_cjs_js_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_vue_loader_lib_index_js_vue_loader_options_AppDetails_vue_vue_type_style_index_0_id_59a92e62_scoped_true_lang_css___WEBPACK_IMPORTED_MODULE_0__) if(__WEBPACK_IMPORT_KEY__ !== 'default') (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _node_modules_vue_style_loader_index_js_node_modules_css_loader_dist_cjs_js_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_vue_loader_lib_index_js_vue_loader_options_AppDetails_vue_vue_type_style_index_0_id_59a92e62_scoped_true_lang_css___WEBPACK_IMPORTED_MODULE_0__[key]; }) }(__WEBPACK_IMPORT_KEY__));
+ /* harmony default export */ __webpack_exports__["default"] = (_node_modules_vue_style_loader_index_js_node_modules_css_loader_dist_cjs_js_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_vue_loader_lib_index_js_vue_loader_options_AppDetails_vue_vue_type_style_index_0_id_59a92e62_scoped_true_lang_css___WEBPACK_IMPORTED_MODULE_0___default.a);
+
+/***/ }),
+
+/***/ "./apps/settings/src/components/AppDetails.vue?vue&type=template&id=59a92e62&scoped=true&":
+/*!************************************************************************************************!*\
+ !*** ./apps/settings/src/components/AppDetails.vue?vue&type=template&id=59a92e62&scoped=true& ***!
+ \************************************************************************************************/
+/*! exports provided: render, staticRenderFns */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _node_modules_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_node_modules_vue_loader_lib_index_js_vue_loader_options_AppDetails_vue_vue_type_template_id_59a92e62_scoped_true___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../node_modules/vue-loader/lib??vue-loader-options!./AppDetails.vue?vue&type=template&id=59a92e62&scoped=true& */ "./node_modules/vue-loader/lib/loaders/templateLoader.js?!./node_modules/vue-loader/lib/index.js?!./apps/settings/src/components/AppDetails.vue?vue&type=template&id=59a92e62&scoped=true&");
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "render", function() { return _node_modules_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_node_modules_vue_loader_lib_index_js_vue_loader_options_AppDetails_vue_vue_type_template_id_59a92e62_scoped_true___WEBPACK_IMPORTED_MODULE_0__["render"]; });
+
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "staticRenderFns", function() { return _node_modules_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_node_modules_vue_loader_lib_index_js_vue_loader_options_AppDetails_vue_vue_type_template_id_59a92e62_scoped_true___WEBPACK_IMPORTED_MODULE_0__["staticRenderFns"]; });
+
+
+
+/***/ }),
+
+/***/ "./apps/settings/src/components/AppList.vue":
+/*!**************************************************!*\
+ !*** ./apps/settings/src/components/AppList.vue ***!
+ \**************************************************/
+/*! exports provided: default */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _AppList_vue_vue_type_template_id_6d1e92a4___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./AppList.vue?vue&type=template&id=6d1e92a4& */ "./apps/settings/src/components/AppList.vue?vue&type=template&id=6d1e92a4&");
+/* harmony import */ var _AppList_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./AppList.vue?vue&type=script&lang=js& */ "./apps/settings/src/components/AppList.vue?vue&type=script&lang=js&");
/* empty/unused harmony star reexport *//* harmony import */ var _node_modules_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js */ "./node_modules/vue-loader/lib/runtime/componentNormalizer.js");
@@ -20,9 +107,9 @@ __webpack_require__.r(__webpack_exports__);
/* normalize component */
var component = Object(_node_modules_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_2__["default"])(
- _UserList_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__["default"],
- _UserList_vue_vue_type_template_id_6cba3aca___WEBPACK_IMPORTED_MODULE_0__["render"],
- _UserList_vue_vue_type_template_id_6cba3aca___WEBPACK_IMPORTED_MODULE_0__["staticRenderFns"],
+ _AppList_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__["default"],
+ _AppList_vue_vue_type_template_id_6d1e92a4___WEBPACK_IMPORTED_MODULE_0__["render"],
+ _AppList_vue_vue_type_template_id_6d1e92a4___WEBPACK_IMPORTED_MODULE_0__["staticRenderFns"],
false,
null,
null,
@@ -32,55 +119,57 @@ var component = Object(_node_modules_vue_loader_lib_runtime_componentNormalizer_
/* hot reload */
if (false) { var api; }
-component.options.__file = "apps/settings/src/components/UserList.vue"
+component.options.__file = "apps/settings/src/components/AppList.vue"
/* harmony default export */ __webpack_exports__["default"] = (component.exports);
/***/ }),
-/***/ "./apps/settings/src/components/UserList.vue?vue&type=script&lang=js&":
-/*!****************************************************************************!*\
- !*** ./apps/settings/src/components/UserList.vue?vue&type=script&lang=js& ***!
- \****************************************************************************/
+/***/ "./apps/settings/src/components/AppList.vue?vue&type=script&lang=js&":
+/*!***************************************************************************!*\
+ !*** ./apps/settings/src/components/AppList.vue?vue&type=script&lang=js& ***!
+ \***************************************************************************/
/*! exports provided: default */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
__webpack_require__.r(__webpack_exports__);
-/* harmony import */ var _node_modules_babel_loader_lib_index_js_node_modules_vue_loader_lib_index_js_vue_loader_options_UserList_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../node_modules/babel-loader/lib!../../../../node_modules/vue-loader/lib??vue-loader-options!./UserList.vue?vue&type=script&lang=js& */ "./node_modules/babel-loader/lib/index.js!./node_modules/vue-loader/lib/index.js?!./apps/settings/src/components/UserList.vue?vue&type=script&lang=js&");
-/* empty/unused harmony star reexport */ /* harmony default export */ __webpack_exports__["default"] = (_node_modules_babel_loader_lib_index_js_node_modules_vue_loader_lib_index_js_vue_loader_options_UserList_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__["default"]);
+/* harmony import */ var _node_modules_babel_loader_lib_index_js_node_modules_vue_loader_lib_index_js_vue_loader_options_AppList_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../node_modules/babel-loader/lib!../../../../node_modules/vue-loader/lib??vue-loader-options!./AppList.vue?vue&type=script&lang=js& */ "./node_modules/babel-loader/lib/index.js!./node_modules/vue-loader/lib/index.js?!./apps/settings/src/components/AppList.vue?vue&type=script&lang=js&");
+/* empty/unused harmony star reexport */ /* harmony default export */ __webpack_exports__["default"] = (_node_modules_babel_loader_lib_index_js_node_modules_vue_loader_lib_index_js_vue_loader_options_AppList_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__["default"]);
/***/ }),
-/***/ "./apps/settings/src/components/UserList.vue?vue&type=template&id=6cba3aca&":
-/*!**********************************************************************************!*\
- !*** ./apps/settings/src/components/UserList.vue?vue&type=template&id=6cba3aca& ***!
- \**********************************************************************************/
+/***/ "./apps/settings/src/components/AppList.vue?vue&type=template&id=6d1e92a4&":
+/*!*********************************************************************************!*\
+ !*** ./apps/settings/src/components/AppList.vue?vue&type=template&id=6d1e92a4& ***!
+ \*********************************************************************************/
/*! exports provided: render, staticRenderFns */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
__webpack_require__.r(__webpack_exports__);
-/* harmony import */ var _node_modules_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_node_modules_vue_loader_lib_index_js_vue_loader_options_UserList_vue_vue_type_template_id_6cba3aca___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../node_modules/vue-loader/lib??vue-loader-options!./UserList.vue?vue&type=template&id=6cba3aca& */ "./node_modules/vue-loader/lib/loaders/templateLoader.js?!./node_modules/vue-loader/lib/index.js?!./apps/settings/src/components/UserList.vue?vue&type=template&id=6cba3aca&");
-/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "render", function() { return _node_modules_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_node_modules_vue_loader_lib_index_js_vue_loader_options_UserList_vue_vue_type_template_id_6cba3aca___WEBPACK_IMPORTED_MODULE_0__["render"]; });
+/* harmony import */ var _node_modules_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_node_modules_vue_loader_lib_index_js_vue_loader_options_AppList_vue_vue_type_template_id_6d1e92a4___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../node_modules/vue-loader/lib??vue-loader-options!./AppList.vue?vue&type=template&id=6d1e92a4& */ "./node_modules/vue-loader/lib/loaders/templateLoader.js?!./node_modules/vue-loader/lib/index.js?!./apps/settings/src/components/AppList.vue?vue&type=template&id=6d1e92a4&");
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "render", function() { return _node_modules_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_node_modules_vue_loader_lib_index_js_vue_loader_options_AppList_vue_vue_type_template_id_6d1e92a4___WEBPACK_IMPORTED_MODULE_0__["render"]; });
-/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "staticRenderFns", function() { return _node_modules_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_node_modules_vue_loader_lib_index_js_vue_loader_options_UserList_vue_vue_type_template_id_6cba3aca___WEBPACK_IMPORTED_MODULE_0__["staticRenderFns"]; });
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "staticRenderFns", function() { return _node_modules_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_node_modules_vue_loader_lib_index_js_vue_loader_options_AppList_vue_vue_type_template_id_6d1e92a4___WEBPACK_IMPORTED_MODULE_0__["staticRenderFns"]; });
/***/ }),
-/***/ "./apps/settings/src/components/UserList/UserRow.vue":
-/*!***********************************************************!*\
- !*** ./apps/settings/src/components/UserList/UserRow.vue ***!
- \***********************************************************/
+/***/ "./apps/settings/src/components/AppList/AppItem.vue":
+/*!**********************************************************!*\
+ !*** ./apps/settings/src/components/AppList/AppItem.vue ***!
+ \**********************************************************/
/*! exports provided: default */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
__webpack_require__.r(__webpack_exports__);
-/* harmony import */ var _UserRow_vue_vue_type_template_id_77960baa___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./UserRow.vue?vue&type=template&id=77960baa& */ "./apps/settings/src/components/UserList/UserRow.vue?vue&type=template&id=77960baa&");
-/* harmony import */ var _UserRow_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./UserRow.vue?vue&type=script&lang=js& */ "./apps/settings/src/components/UserList/UserRow.vue?vue&type=script&lang=js&");
-/* empty/unused harmony star reexport *//* harmony import */ var _node_modules_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js */ "./node_modules/vue-loader/lib/runtime/componentNormalizer.js");
+/* harmony import */ var _AppItem_vue_vue_type_template_id_429da85a_scoped_true___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./AppItem.vue?vue&type=template&id=429da85a&scoped=true& */ "./apps/settings/src/components/AppList/AppItem.vue?vue&type=template&id=429da85a&scoped=true&");
+/* harmony import */ var _AppItem_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./AppItem.vue?vue&type=script&lang=js& */ "./apps/settings/src/components/AppList/AppItem.vue?vue&type=script&lang=js&");
+/* empty/unused harmony star reexport *//* harmony import */ var _AppItem_vue_vue_type_style_index_0_id_429da85a_scoped_true_lang_css___WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./AppItem.vue?vue&type=style&index=0&id=429da85a&scoped=true&lang=css& */ "./apps/settings/src/components/AppList/AppItem.vue?vue&type=style&index=0&id=429da85a&scoped=true&lang=css&");
+/* harmony import */ var _node_modules_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js */ "./node_modules/vue-loader/lib/runtime/componentNormalizer.js");
+
@@ -88,67 +177,83 @@ __webpack_require__.r(__webpack_exports__);
/* normalize component */
-var component = Object(_node_modules_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_2__["default"])(
- _UserRow_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__["default"],
- _UserRow_vue_vue_type_template_id_77960baa___WEBPACK_IMPORTED_MODULE_0__["render"],
- _UserRow_vue_vue_type_template_id_77960baa___WEBPACK_IMPORTED_MODULE_0__["staticRenderFns"],
+var component = Object(_node_modules_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_3__["default"])(
+ _AppItem_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__["default"],
+ _AppItem_vue_vue_type_template_id_429da85a_scoped_true___WEBPACK_IMPORTED_MODULE_0__["render"],
+ _AppItem_vue_vue_type_template_id_429da85a_scoped_true___WEBPACK_IMPORTED_MODULE_0__["staticRenderFns"],
false,
null,
- null,
+ "429da85a",
null
)
/* hot reload */
if (false) { var api; }
-component.options.__file = "apps/settings/src/components/UserList/UserRow.vue"
+component.options.__file = "apps/settings/src/components/AppList/AppItem.vue"
/* harmony default export */ __webpack_exports__["default"] = (component.exports);
/***/ }),
-/***/ "./apps/settings/src/components/UserList/UserRow.vue?vue&type=script&lang=js&":
-/*!************************************************************************************!*\
- !*** ./apps/settings/src/components/UserList/UserRow.vue?vue&type=script&lang=js& ***!
- \************************************************************************************/
+/***/ "./apps/settings/src/components/AppList/AppItem.vue?vue&type=script&lang=js&":
+/*!***********************************************************************************!*\
+ !*** ./apps/settings/src/components/AppList/AppItem.vue?vue&type=script&lang=js& ***!
+ \***********************************************************************************/
/*! exports provided: default */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
__webpack_require__.r(__webpack_exports__);
-/* harmony import */ var _node_modules_babel_loader_lib_index_js_node_modules_vue_loader_lib_index_js_vue_loader_options_UserRow_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../node_modules/babel-loader/lib!../../../../../node_modules/vue-loader/lib??vue-loader-options!./UserRow.vue?vue&type=script&lang=js& */ "./node_modules/babel-loader/lib/index.js!./node_modules/vue-loader/lib/index.js?!./apps/settings/src/components/UserList/UserRow.vue?vue&type=script&lang=js&");
-/* empty/unused harmony star reexport */ /* harmony default export */ __webpack_exports__["default"] = (_node_modules_babel_loader_lib_index_js_node_modules_vue_loader_lib_index_js_vue_loader_options_UserRow_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__["default"]);
+/* harmony import */ var _node_modules_babel_loader_lib_index_js_node_modules_vue_loader_lib_index_js_vue_loader_options_AppItem_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../node_modules/babel-loader/lib!../../../../../node_modules/vue-loader/lib??vue-loader-options!./AppItem.vue?vue&type=script&lang=js& */ "./node_modules/babel-loader/lib/index.js!./node_modules/vue-loader/lib/index.js?!./apps/settings/src/components/AppList/AppItem.vue?vue&type=script&lang=js&");
+/* empty/unused harmony star reexport */ /* harmony default export */ __webpack_exports__["default"] = (_node_modules_babel_loader_lib_index_js_node_modules_vue_loader_lib_index_js_vue_loader_options_AppItem_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__["default"]);
/***/ }),
-/***/ "./apps/settings/src/components/UserList/UserRow.vue?vue&type=template&id=77960baa&":
-/*!******************************************************************************************!*\
- !*** ./apps/settings/src/components/UserList/UserRow.vue?vue&type=template&id=77960baa& ***!
- \******************************************************************************************/
+/***/ "./apps/settings/src/components/AppList/AppItem.vue?vue&type=style&index=0&id=429da85a&scoped=true&lang=css&":
+/*!*******************************************************************************************************************!*\
+ !*** ./apps/settings/src/components/AppList/AppItem.vue?vue&type=style&index=0&id=429da85a&scoped=true&lang=css& ***!
+ \*******************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _node_modules_vue_style_loader_index_js_node_modules_css_loader_dist_cjs_js_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_vue_loader_lib_index_js_vue_loader_options_AppItem_vue_vue_type_style_index_0_id_429da85a_scoped_true_lang_css___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../node_modules/vue-style-loader!../../../../../node_modules/css-loader/dist/cjs.js!../../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../../node_modules/vue-loader/lib??vue-loader-options!./AppItem.vue?vue&type=style&index=0&id=429da85a&scoped=true&lang=css& */ "./node_modules/vue-style-loader/index.js!./node_modules/css-loader/dist/cjs.js!./node_modules/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/vue-loader/lib/index.js?!./apps/settings/src/components/AppList/AppItem.vue?vue&type=style&index=0&id=429da85a&scoped=true&lang=css&");
+/* harmony import */ var _node_modules_vue_style_loader_index_js_node_modules_css_loader_dist_cjs_js_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_vue_loader_lib_index_js_vue_loader_options_AppItem_vue_vue_type_style_index_0_id_429da85a_scoped_true_lang_css___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_node_modules_vue_style_loader_index_js_node_modules_css_loader_dist_cjs_js_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_vue_loader_lib_index_js_vue_loader_options_AppItem_vue_vue_type_style_index_0_id_429da85a_scoped_true_lang_css___WEBPACK_IMPORTED_MODULE_0__);
+/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _node_modules_vue_style_loader_index_js_node_modules_css_loader_dist_cjs_js_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_vue_loader_lib_index_js_vue_loader_options_AppItem_vue_vue_type_style_index_0_id_429da85a_scoped_true_lang_css___WEBPACK_IMPORTED_MODULE_0__) if(__WEBPACK_IMPORT_KEY__ !== 'default') (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _node_modules_vue_style_loader_index_js_node_modules_css_loader_dist_cjs_js_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_vue_loader_lib_index_js_vue_loader_options_AppItem_vue_vue_type_style_index_0_id_429da85a_scoped_true_lang_css___WEBPACK_IMPORTED_MODULE_0__[key]; }) }(__WEBPACK_IMPORT_KEY__));
+ /* harmony default export */ __webpack_exports__["default"] = (_node_modules_vue_style_loader_index_js_node_modules_css_loader_dist_cjs_js_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_vue_loader_lib_index_js_vue_loader_options_AppItem_vue_vue_type_style_index_0_id_429da85a_scoped_true_lang_css___WEBPACK_IMPORTED_MODULE_0___default.a);
+
+/***/ }),
+
+/***/ "./apps/settings/src/components/AppList/AppItem.vue?vue&type=template&id=429da85a&scoped=true&":
+/*!*****************************************************************************************************!*\
+ !*** ./apps/settings/src/components/AppList/AppItem.vue?vue&type=template&id=429da85a&scoped=true& ***!
+ \*****************************************************************************************************/
/*! exports provided: render, staticRenderFns */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
__webpack_require__.r(__webpack_exports__);
-/* harmony import */ var _node_modules_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_node_modules_vue_loader_lib_index_js_vue_loader_options_UserRow_vue_vue_type_template_id_77960baa___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../../node_modules/vue-loader/lib??vue-loader-options!./UserRow.vue?vue&type=template&id=77960baa& */ "./node_modules/vue-loader/lib/loaders/templateLoader.js?!./node_modules/vue-loader/lib/index.js?!./apps/settings/src/components/UserList/UserRow.vue?vue&type=template&id=77960baa&");
-/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "render", function() { return _node_modules_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_node_modules_vue_loader_lib_index_js_vue_loader_options_UserRow_vue_vue_type_template_id_77960baa___WEBPACK_IMPORTED_MODULE_0__["render"]; });
+/* harmony import */ var _node_modules_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_node_modules_vue_loader_lib_index_js_vue_loader_options_AppItem_vue_vue_type_template_id_429da85a_scoped_true___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../../node_modules/vue-loader/lib??vue-loader-options!./AppItem.vue?vue&type=template&id=429da85a&scoped=true& */ "./node_modules/vue-loader/lib/loaders/templateLoader.js?!./node_modules/vue-loader/lib/index.js?!./apps/settings/src/components/AppList/AppItem.vue?vue&type=template&id=429da85a&scoped=true&");
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "render", function() { return _node_modules_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_node_modules_vue_loader_lib_index_js_vue_loader_options_AppItem_vue_vue_type_template_id_429da85a_scoped_true___WEBPACK_IMPORTED_MODULE_0__["render"]; });
-/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "staticRenderFns", function() { return _node_modules_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_node_modules_vue_loader_lib_index_js_vue_loader_options_UserRow_vue_vue_type_template_id_77960baa___WEBPACK_IMPORTED_MODULE_0__["staticRenderFns"]; });
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "staticRenderFns", function() { return _node_modules_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_node_modules_vue_loader_lib_index_js_vue_loader_options_AppItem_vue_vue_type_template_id_429da85a_scoped_true___WEBPACK_IMPORTED_MODULE_0__["staticRenderFns"]; });
/***/ }),
-/***/ "./apps/settings/src/components/UserList/UserRowSimple.vue":
-/*!*****************************************************************!*\
- !*** ./apps/settings/src/components/UserList/UserRowSimple.vue ***!
- \*****************************************************************/
+/***/ "./apps/settings/src/components/AppList/AppScore.vue":
+/*!***********************************************************!*\
+ !*** ./apps/settings/src/components/AppList/AppScore.vue ***!
+ \***********************************************************/
/*! exports provided: default */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
__webpack_require__.r(__webpack_exports__);
-/* harmony import */ var _UserRowSimple_vue_vue_type_template_id_ff154a08_scoped_true___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./UserRowSimple.vue?vue&type=template&id=ff154a08&scoped=true& */ "./apps/settings/src/components/UserList/UserRowSimple.vue?vue&type=template&id=ff154a08&scoped=true&");
-/* harmony import */ var _UserRowSimple_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./UserRowSimple.vue?vue&type=script&lang=js& */ "./apps/settings/src/components/UserList/UserRowSimple.vue?vue&type=script&lang=js&");
+/* harmony import */ var _AppScore_vue_vue_type_template_id_0ecce4fc___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./AppScore.vue?vue&type=template&id=0ecce4fc& */ "./apps/settings/src/components/AppList/AppScore.vue?vue&type=template&id=0ecce4fc&");
+/* harmony import */ var _AppScore_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./AppScore.vue?vue&type=script&lang=js& */ "./apps/settings/src/components/AppList/AppScore.vue?vue&type=script&lang=js&");
/* empty/unused harmony star reexport *//* harmony import */ var _node_modules_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js */ "./node_modules/vue-loader/lib/runtime/componentNormalizer.js");
@@ -158,286 +263,216 @@ __webpack_require__.r(__webpack_exports__);
/* normalize component */
var component = Object(_node_modules_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_2__["default"])(
- _UserRowSimple_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__["default"],
- _UserRowSimple_vue_vue_type_template_id_ff154a08_scoped_true___WEBPACK_IMPORTED_MODULE_0__["render"],
- _UserRowSimple_vue_vue_type_template_id_ff154a08_scoped_true___WEBPACK_IMPORTED_MODULE_0__["staticRenderFns"],
+ _AppScore_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__["default"],
+ _AppScore_vue_vue_type_template_id_0ecce4fc___WEBPACK_IMPORTED_MODULE_0__["render"],
+ _AppScore_vue_vue_type_template_id_0ecce4fc___WEBPACK_IMPORTED_MODULE_0__["staticRenderFns"],
false,
null,
- "ff154a08",
+ null,
null
)
/* hot reload */
if (false) { var api; }
-component.options.__file = "apps/settings/src/components/UserList/UserRowSimple.vue"
+component.options.__file = "apps/settings/src/components/AppList/AppScore.vue"
/* harmony default export */ __webpack_exports__["default"] = (component.exports);
/***/ }),
-/***/ "./apps/settings/src/components/UserList/UserRowSimple.vue?vue&type=script&lang=js&":
-/*!******************************************************************************************!*\
- !*** ./apps/settings/src/components/UserList/UserRowSimple.vue?vue&type=script&lang=js& ***!
- \******************************************************************************************/
+/***/ "./apps/settings/src/components/AppList/AppScore.vue?vue&type=script&lang=js&":
+/*!************************************************************************************!*\
+ !*** ./apps/settings/src/components/AppList/AppScore.vue?vue&type=script&lang=js& ***!
+ \************************************************************************************/
/*! exports provided: default */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
__webpack_require__.r(__webpack_exports__);
-/* harmony import */ var _node_modules_babel_loader_lib_index_js_node_modules_vue_loader_lib_index_js_vue_loader_options_UserRowSimple_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../node_modules/babel-loader/lib!../../../../../node_modules/vue-loader/lib??vue-loader-options!./UserRowSimple.vue?vue&type=script&lang=js& */ "./node_modules/babel-loader/lib/index.js!./node_modules/vue-loader/lib/index.js?!./apps/settings/src/components/UserList/UserRowSimple.vue?vue&type=script&lang=js&");
-/* empty/unused harmony star reexport */ /* harmony default export */ __webpack_exports__["default"] = (_node_modules_babel_loader_lib_index_js_node_modules_vue_loader_lib_index_js_vue_loader_options_UserRowSimple_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__["default"]);
+/* harmony import */ var _node_modules_babel_loader_lib_index_js_node_modules_vue_loader_lib_index_js_vue_loader_options_AppScore_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../node_modules/babel-loader/lib!../../../../../node_modules/vue-loader/lib??vue-loader-options!./AppScore.vue?vue&type=script&lang=js& */ "./node_modules/babel-loader/lib/index.js!./node_modules/vue-loader/lib/index.js?!./apps/settings/src/components/AppList/AppScore.vue?vue&type=script&lang=js&");
+/* empty/unused harmony star reexport */ /* harmony default export */ __webpack_exports__["default"] = (_node_modules_babel_loader_lib_index_js_node_modules_vue_loader_lib_index_js_vue_loader_options_AppScore_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__["default"]);
/***/ }),
-/***/ "./apps/settings/src/components/UserList/UserRowSimple.vue?vue&type=template&id=ff154a08&scoped=true&":
-/*!************************************************************************************************************!*\
- !*** ./apps/settings/src/components/UserList/UserRowSimple.vue?vue&type=template&id=ff154a08&scoped=true& ***!
- \************************************************************************************************************/
+/***/ "./apps/settings/src/components/AppList/AppScore.vue?vue&type=template&id=0ecce4fc&":
+/*!******************************************************************************************!*\
+ !*** ./apps/settings/src/components/AppList/AppScore.vue?vue&type=template&id=0ecce4fc& ***!
+ \******************************************************************************************/
/*! exports provided: render, staticRenderFns */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
__webpack_require__.r(__webpack_exports__);
-/* harmony import */ var _node_modules_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_node_modules_vue_loader_lib_index_js_vue_loader_options_UserRowSimple_vue_vue_type_template_id_ff154a08_scoped_true___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../../node_modules/vue-loader/lib??vue-loader-options!./UserRowSimple.vue?vue&type=template&id=ff154a08&scoped=true& */ "./node_modules/vue-loader/lib/loaders/templateLoader.js?!./node_modules/vue-loader/lib/index.js?!./apps/settings/src/components/UserList/UserRowSimple.vue?vue&type=template&id=ff154a08&scoped=true&");
-/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "render", function() { return _node_modules_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_node_modules_vue_loader_lib_index_js_vue_loader_options_UserRowSimple_vue_vue_type_template_id_ff154a08_scoped_true___WEBPACK_IMPORTED_MODULE_0__["render"]; });
+/* harmony import */ var _node_modules_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_node_modules_vue_loader_lib_index_js_vue_loader_options_AppScore_vue_vue_type_template_id_0ecce4fc___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../../node_modules/vue-loader/lib??vue-loader-options!./AppScore.vue?vue&type=template&id=0ecce4fc& */ "./node_modules/vue-loader/lib/loaders/templateLoader.js?!./node_modules/vue-loader/lib/index.js?!./apps/settings/src/components/AppList/AppScore.vue?vue&type=template&id=0ecce4fc&");
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "render", function() { return _node_modules_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_node_modules_vue_loader_lib_index_js_vue_loader_options_AppScore_vue_vue_type_template_id_0ecce4fc___WEBPACK_IMPORTED_MODULE_0__["render"]; });
-/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "staticRenderFns", function() { return _node_modules_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_node_modules_vue_loader_lib_index_js_vue_loader_options_UserRowSimple_vue_vue_type_template_id_ff154a08_scoped_true___WEBPACK_IMPORTED_MODULE_0__["staticRenderFns"]; });
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "staticRenderFns", function() { return _node_modules_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_node_modules_vue_loader_lib_index_js_vue_loader_options_AppScore_vue_vue_type_template_id_0ecce4fc___WEBPACK_IMPORTED_MODULE_0__["staticRenderFns"]; });
/***/ }),
-/***/ "./apps/settings/src/mixins/UserRowMixin.js":
-/*!**************************************************!*\
- !*** ./apps/settings/src/mixins/UserRowMixin.js ***!
- \**************************************************/
+/***/ "./apps/settings/src/components/AppManagement.vue":
+/*!********************************************************!*\
+ !*** ./apps/settings/src/components/AppManagement.vue ***!
+ \********************************************************/
/*! exports provided: default */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
__webpack_require__.r(__webpack_exports__);
-function _typeof(obj) { if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
-
-/**
- * @copyright Copyright (c) 2019 John Molakvoæ <skjnldsv@protonmail.com>
- *
- * @author John Molakvoæ <skjnldsv@protonmail.com>
- *
- * @license GNU AGPL version 3 or any later version
- *
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU Affero General Public License as
- * published by the Free Software Foundation, either version 3 of the
- * License, or (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU Affero General Public License for more details.
- *
- * You should have received a copy of the GNU Affero General Public License
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- *
- */
-/* harmony default export */ __webpack_exports__["default"] = ({
- props: {
- user: {
- type: Object,
- required: true
- },
- settings: {
- type: Object,
- default: function _default() {
- return {};
- }
- },
- groups: {
- type: Array,
- default: function _default() {
- return [];
- }
- },
- subAdminsGroups: {
- type: Array,
- default: function _default() {
- return [];
- }
- },
- quotaOptions: {
- type: Array,
- default: function _default() {
- return [];
- }
- },
- showConfig: {
- type: Object,
- default: function _default() {
- return {};
- }
- },
- languages: {
- type: Array,
- required: true
- },
- externalActions: {
- type: Array,
- default: function _default() {
- return [];
- }
- }
- },
- computed: {
- /* GROUPS MANAGEMENT */
- userGroups: function userGroups() {
- var _this = this;
+/* harmony import */ var _AppManagement_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./AppManagement.vue?vue&type=script&lang=js& */ "./apps/settings/src/components/AppManagement.vue?vue&type=script&lang=js&");
+/* empty/unused harmony star reexport *//* harmony import */ var _node_modules_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js */ "./node_modules/vue-loader/lib/runtime/componentNormalizer.js");
+var render, staticRenderFns
- var userGroups = this.groups.filter(function (group) {
- return _this.user.groups.includes(group.id);
- });
- return userGroups;
- },
- userSubAdminsGroups: function userSubAdminsGroups() {
- var _this2 = this;
- var userSubAdminsGroups = this.subAdminsGroups.filter(function (group) {
- return _this2.user.subadmin.includes(group.id);
- });
- return userSubAdminsGroups;
- },
- availableGroups: function availableGroups() {
- var _this3 = this;
- return this.groups.map(function (group) {
- // clone object because we don't want
- // to edit the original groups
- var groupClone = Object.assign({}, group); // two settings here:
- // 1. user NOT in group but no permission to add
- // 2. user is in group but no permission to remove
- groupClone.$isDisabled = group.canAdd === false && !_this3.user.groups.includes(group.id) || group.canRemove === false && _this3.user.groups.includes(group.id);
- return groupClone;
- });
- },
+/* normalize component */
- /* QUOTA MANAGEMENT */
- usedSpace: function usedSpace() {
- if (this.user.quota.used) {
- return t('settings', '{size} used', {
- size: OC.Util.humanFileSize(this.user.quota.used)
- });
- }
+var component = Object(_node_modules_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_1__["default"])(
+ _AppManagement_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__["default"],
+ render,
+ staticRenderFns,
+ false,
+ null,
+ null,
+ null
+
+)
- return t('settings', '{size} used', {
- size: OC.Util.humanFileSize(0)
- });
- },
- usedQuota: function usedQuota() {
- var quota = this.user.quota.quota;
+/* hot reload */
+if (false) { var api; }
+component.options.__file = "apps/settings/src/components/AppManagement.vue"
+/* harmony default export */ __webpack_exports__["default"] = (component.exports);
- if (quota > 0) {
- quota = Math.min(100, Math.round(this.user.quota.used / quota * 100));
- } else {
- var usedInGB = this.user.quota.used / (10 * Math.pow(2, 30)); // asymptotic curve approaching 50% at 10GB to visualize used stace with infinite quota
+/***/ }),
- quota = 95 * (1 - 1 / (usedInGB + 1));
- }
+/***/ "./apps/settings/src/components/AppManagement.vue?vue&type=script&lang=js&":
+/*!*********************************************************************************!*\
+ !*** ./apps/settings/src/components/AppManagement.vue?vue&type=script&lang=js& ***!
+ \*********************************************************************************/
+/*! exports provided: default */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
- return isNaN(quota) ? 0 : quota;
- },
- // Mapping saved values to objects
- userQuota: function userQuota() {
- if (this.user.quota.quota >= 0) {
- // if value is valid, let's map the quotaOptions or return custom quota
- var humanQuota = OC.Util.humanFileSize(this.user.quota.quota);
- var userQuota = this.quotaOptions.find(function (quota) {
- return quota.id === humanQuota;
- });
- return userQuota || {
- id: humanQuota,
- label: humanQuota
- };
- } else if (this.user.quota.quota === 'default') {
- // default quota is replaced by the proper value on load
- return this.quotaOptions[0];
- }
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _node_modules_babel_loader_lib_index_js_node_modules_vue_loader_lib_index_js_vue_loader_options_AppManagement_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../node_modules/babel-loader/lib!../../../../node_modules/vue-loader/lib??vue-loader-options!./AppManagement.vue?vue&type=script&lang=js& */ "./node_modules/babel-loader/lib/index.js!./node_modules/vue-loader/lib/index.js?!./apps/settings/src/components/AppManagement.vue?vue&type=script&lang=js&");
+/* empty/unused harmony star reexport */ /* harmony default export */ __webpack_exports__["default"] = (_node_modules_babel_loader_lib_index_js_node_modules_vue_loader_lib_index_js_vue_loader_options_AppManagement_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__["default"]);
- return this.quotaOptions[1]; // unlimited
- },
+/***/ }),
- /* PASSWORD POLICY? */
- minPasswordLength: function minPasswordLength() {
- return this.$store.getters.getPasswordPolicyMinLength;
- },
+/***/ "./apps/settings/src/components/PrefixMixin.vue":
+/*!******************************************************!*\
+ !*** ./apps/settings/src/components/PrefixMixin.vue ***!
+ \******************************************************/
+/*! exports provided: default */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
- /* LANGUAGE */
- userLanguage: function userLanguage() {
- var _this4 = this;
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _PrefixMixin_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./PrefixMixin.vue?vue&type=script&lang=js& */ "./apps/settings/src/components/PrefixMixin.vue?vue&type=script&lang=js&");
+/* empty/unused harmony star reexport *//* harmony import */ var _node_modules_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js */ "./node_modules/vue-loader/lib/runtime/componentNormalizer.js");
+var render, staticRenderFns
- var availableLanguages = this.languages[0].languages.concat(this.languages[1].languages);
- var userLang = availableLanguages.find(function (lang) {
- return lang.code === _this4.user.language;
- });
- if (_typeof(userLang) !== 'object' && this.user.language !== '') {
- return {
- code: this.user.language,
- name: this.user.language
- };
- } else if (this.user.language === '') {
- return false;
- }
- return userLang;
- },
- /* LAST LOGIN */
- userLastLoginTooltip: function userLastLoginTooltip() {
- if (this.user.lastLogin > 0) {
- return OC.Util.formatDate(this.user.lastLogin);
- }
+/* normalize component */
- return '';
- },
- userLastLogin: function userLastLogin() {
- if (this.user.lastLogin > 0) {
- return OC.Util.relativeModifiedDate(this.user.lastLogin);
- }
+var component = Object(_node_modules_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_1__["default"])(
+ _PrefixMixin_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__["default"],
+ render,
+ staticRenderFns,
+ false,
+ null,
+ null,
+ null
+
+)
- return t('settings', 'Never');
- }
- },
- methods: {
- /**
- * Generate avatar url
- *
- * @param {string} user The user name
- * @param {int} size Size integer, default 32
- * @returns {string}
- */
- generateAvatar: function generateAvatar(user) {
- var size = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 32;
- return OC.generateUrl('/avatar/{user}/{size}?v={version}', {
- user: user,
- size: size,
- version: oc_userconfig.avatar.version
- });
- }
- }
-});
+/* hot reload */
+if (false) { var api; }
+component.options.__file = "apps/settings/src/components/PrefixMixin.vue"
+/* harmony default export */ __webpack_exports__["default"] = (component.exports);
+
+/***/ }),
+
+/***/ "./apps/settings/src/components/PrefixMixin.vue?vue&type=script&lang=js&":
+/*!*******************************************************************************!*\
+ !*** ./apps/settings/src/components/PrefixMixin.vue?vue&type=script&lang=js& ***!
+ \*******************************************************************************/
+/*! exports provided: default */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _node_modules_babel_loader_lib_index_js_node_modules_vue_loader_lib_index_js_vue_loader_options_PrefixMixin_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../node_modules/babel-loader/lib!../../../../node_modules/vue-loader/lib??vue-loader-options!./PrefixMixin.vue?vue&type=script&lang=js& */ "./node_modules/babel-loader/lib/index.js!./node_modules/vue-loader/lib/index.js?!./apps/settings/src/components/PrefixMixin.vue?vue&type=script&lang=js&");
+/* empty/unused harmony star reexport */ /* harmony default export */ __webpack_exports__["default"] = (_node_modules_babel_loader_lib_index_js_node_modules_vue_loader_lib_index_js_vue_loader_options_PrefixMixin_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__["default"]);
/***/ }),
-/***/ "./apps/settings/src/views/Users.vue":
-/*!*******************************************!*\
- !*** ./apps/settings/src/views/Users.vue ***!
- \*******************************************/
+/***/ "./apps/settings/src/components/SvgFilterMixin.vue":
+/*!*********************************************************!*\
+ !*** ./apps/settings/src/components/SvgFilterMixin.vue ***!
+ \*********************************************************/
/*! exports provided: default */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
__webpack_require__.r(__webpack_exports__);
-/* harmony import */ var _Users_vue_vue_type_template_id_889b7562___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Users.vue?vue&type=template&id=889b7562& */ "./apps/settings/src/views/Users.vue?vue&type=template&id=889b7562&");
-/* harmony import */ var _Users_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./Users.vue?vue&type=script&lang=js& */ "./apps/settings/src/views/Users.vue?vue&type=script&lang=js&");
+/* harmony import */ var _SvgFilterMixin_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./SvgFilterMixin.vue?vue&type=script&lang=js& */ "./apps/settings/src/components/SvgFilterMixin.vue?vue&type=script&lang=js&");
+/* empty/unused harmony star reexport *//* harmony import */ var _node_modules_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js */ "./node_modules/vue-loader/lib/runtime/componentNormalizer.js");
+var render, staticRenderFns
+
+
+
+
+/* normalize component */
+
+var component = Object(_node_modules_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_1__["default"])(
+ _SvgFilterMixin_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__["default"],
+ render,
+ staticRenderFns,
+ false,
+ null,
+ null,
+ null
+
+)
+
+/* hot reload */
+if (false) { var api; }
+component.options.__file = "apps/settings/src/components/SvgFilterMixin.vue"
+/* harmony default export */ __webpack_exports__["default"] = (component.exports);
+
+/***/ }),
+
+/***/ "./apps/settings/src/components/SvgFilterMixin.vue?vue&type=script&lang=js&":
+/*!**********************************************************************************!*\
+ !*** ./apps/settings/src/components/SvgFilterMixin.vue?vue&type=script&lang=js& ***!
+ \**********************************************************************************/
+/*! exports provided: default */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _node_modules_babel_loader_lib_index_js_node_modules_vue_loader_lib_index_js_vue_loader_options_SvgFilterMixin_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../node_modules/babel-loader/lib!../../../../node_modules/vue-loader/lib??vue-loader-options!./SvgFilterMixin.vue?vue&type=script&lang=js& */ "./node_modules/babel-loader/lib/index.js!./node_modules/vue-loader/lib/index.js?!./apps/settings/src/components/SvgFilterMixin.vue?vue&type=script&lang=js&");
+/* empty/unused harmony star reexport */ /* harmony default export */ __webpack_exports__["default"] = (_node_modules_babel_loader_lib_index_js_node_modules_vue_loader_lib_index_js_vue_loader_options_SvgFilterMixin_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__["default"]);
+
+/***/ }),
+
+/***/ "./apps/settings/src/views/Apps.vue":
+/*!******************************************!*\
+ !*** ./apps/settings/src/views/Apps.vue ***!
+ \******************************************/
+/*! exports provided: default */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _Apps_vue_vue_type_template_id_d3714d0a___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Apps.vue?vue&type=template&id=d3714d0a& */ "./apps/settings/src/views/Apps.vue?vue&type=template&id=d3714d0a&");
+/* harmony import */ var _Apps_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./Apps.vue?vue&type=script&lang=js& */ "./apps/settings/src/views/Apps.vue?vue&type=script&lang=js&");
/* empty/unused harmony star reexport *//* harmony import */ var _node_modules_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js */ "./node_modules/vue-loader/lib/runtime/componentNormalizer.js");
@@ -447,9 +482,9 @@ __webpack_require__.r(__webpack_exports__);
/* normalize component */
var component = Object(_node_modules_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_2__["default"])(
- _Users_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__["default"],
- _Users_vue_vue_type_template_id_889b7562___WEBPACK_IMPORTED_MODULE_0__["render"],
- _Users_vue_vue_type_template_id_889b7562___WEBPACK_IMPORTED_MODULE_0__["staticRenderFns"],
+ _Apps_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__["default"],
+ _Apps_vue_vue_type_template_id_d3714d0a___WEBPACK_IMPORTED_MODULE_0__["render"],
+ _Apps_vue_vue_type_template_id_d3714d0a___WEBPACK_IMPORTED_MODULE_0__["staticRenderFns"],
false,
null,
null,
@@ -459,106 +494,62 @@ var component = Object(_node_modules_vue_loader_lib_runtime_componentNormalizer_
/* hot reload */
if (false) { var api; }
-component.options.__file = "apps/settings/src/views/Users.vue"
+component.options.__file = "apps/settings/src/views/Apps.vue"
/* harmony default export */ __webpack_exports__["default"] = (component.exports);
/***/ }),
-/***/ "./apps/settings/src/views/Users.vue?vue&type=script&lang=js&":
-/*!********************************************************************!*\
- !*** ./apps/settings/src/views/Users.vue?vue&type=script&lang=js& ***!
- \********************************************************************/
+/***/ "./apps/settings/src/views/Apps.vue?vue&type=script&lang=js&":
+/*!*******************************************************************!*\
+ !*** ./apps/settings/src/views/Apps.vue?vue&type=script&lang=js& ***!
+ \*******************************************************************/
/*! exports provided: default */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
__webpack_require__.r(__webpack_exports__);
-/* harmony import */ var _node_modules_babel_loader_lib_index_js_node_modules_vue_loader_lib_index_js_vue_loader_options_Users_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../node_modules/babel-loader/lib!../../../../node_modules/vue-loader/lib??vue-loader-options!./Users.vue?vue&type=script&lang=js& */ "./node_modules/babel-loader/lib/index.js!./node_modules/vue-loader/lib/index.js?!./apps/settings/src/views/Users.vue?vue&type=script&lang=js&");
-/* empty/unused harmony star reexport */ /* harmony default export */ __webpack_exports__["default"] = (_node_modules_babel_loader_lib_index_js_node_modules_vue_loader_lib_index_js_vue_loader_options_Users_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__["default"]);
+/* harmony import */ var _node_modules_babel_loader_lib_index_js_node_modules_vue_loader_lib_index_js_vue_loader_options_Apps_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../node_modules/babel-loader/lib!../../../../node_modules/vue-loader/lib??vue-loader-options!./Apps.vue?vue&type=script&lang=js& */ "./node_modules/babel-loader/lib/index.js!./node_modules/vue-loader/lib/index.js?!./apps/settings/src/views/Apps.vue?vue&type=script&lang=js&");
+/* empty/unused harmony star reexport */ /* harmony default export */ __webpack_exports__["default"] = (_node_modules_babel_loader_lib_index_js_node_modules_vue_loader_lib_index_js_vue_loader_options_Apps_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_0__["default"]);
/***/ }),
-/***/ "./apps/settings/src/views/Users.vue?vue&type=template&id=889b7562&":
-/*!**************************************************************************!*\
- !*** ./apps/settings/src/views/Users.vue?vue&type=template&id=889b7562& ***!
- \**************************************************************************/
+/***/ "./apps/settings/src/views/Apps.vue?vue&type=template&id=d3714d0a&":
+/*!*************************************************************************!*\
+ !*** ./apps/settings/src/views/Apps.vue?vue&type=template&id=d3714d0a& ***!
+ \*************************************************************************/
/*! exports provided: render, staticRenderFns */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
__webpack_require__.r(__webpack_exports__);
-/* harmony import */ var _node_modules_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_node_modules_vue_loader_lib_index_js_vue_loader_options_Users_vue_vue_type_template_id_889b7562___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../node_modules/vue-loader/lib??vue-loader-options!./Users.vue?vue&type=template&id=889b7562& */ "./node_modules/vue-loader/lib/loaders/templateLoader.js?!./node_modules/vue-loader/lib/index.js?!./apps/settings/src/views/Users.vue?vue&type=template&id=889b7562&");
-/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "render", function() { return _node_modules_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_node_modules_vue_loader_lib_index_js_vue_loader_options_Users_vue_vue_type_template_id_889b7562___WEBPACK_IMPORTED_MODULE_0__["render"]; });
+/* harmony import */ var _node_modules_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_node_modules_vue_loader_lib_index_js_vue_loader_options_Apps_vue_vue_type_template_id_d3714d0a___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../node_modules/vue-loader/lib??vue-loader-options!./Apps.vue?vue&type=template&id=d3714d0a& */ "./node_modules/vue-loader/lib/loaders/templateLoader.js?!./node_modules/vue-loader/lib/index.js?!./apps/settings/src/views/Apps.vue?vue&type=template&id=d3714d0a&");
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "render", function() { return _node_modules_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_node_modules_vue_loader_lib_index_js_vue_loader_options_Apps_vue_vue_type_template_id_d3714d0a___WEBPACK_IMPORTED_MODULE_0__["render"]; });
-/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "staticRenderFns", function() { return _node_modules_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_node_modules_vue_loader_lib_index_js_vue_loader_options_Users_vue_vue_type_template_id_889b7562___WEBPACK_IMPORTED_MODULE_0__["staticRenderFns"]; });
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "staticRenderFns", function() { return _node_modules_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_node_modules_vue_loader_lib_index_js_vue_loader_options_Apps_vue_vue_type_template_id_d3714d0a___WEBPACK_IMPORTED_MODULE_0__["staticRenderFns"]; });
/***/ }),
-/***/ "./node_modules/babel-loader/lib/index.js!./node_modules/vue-loader/lib/index.js?!./apps/settings/src/components/UserList.vue?vue&type=script&lang=js&":
-/*!**************************************************************************************************************************************************************!*\
- !*** ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./apps/settings/src/components/UserList.vue?vue&type=script&lang=js& ***!
- \**************************************************************************************************************************************************************/
+/***/ "./node_modules/babel-loader/lib/index.js!./node_modules/vue-loader/lib/index.js?!./apps/settings/src/components/AppDetails.vue?vue&type=script&lang=js&":
+/*!****************************************************************************************************************************************************************!*\
+ !*** ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./apps/settings/src/components/AppDetails.vue?vue&type=script&lang=js& ***!
+ \****************************************************************************************************************************************************************/
/*! exports provided: default */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
__webpack_require__.r(__webpack_exports__);
-/* harmony import */ var _UserList_UserRow__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./UserList/UserRow */ "./apps/settings/src/components/UserList/UserRow.vue");
-/* harmony import */ var nextcloud_vue__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! nextcloud-vue */ "./node_modules/nextcloud-vue/dist/ncvuecomponents.js");
-/* harmony import */ var nextcloud_vue__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(nextcloud_vue__WEBPACK_IMPORTED_MODULE_1__);
-/* harmony import */ var vue_infinite_loading__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! vue-infinite-loading */ "./node_modules/vue-infinite-loading/dist/vue-infinite-loading.js");
-/* harmony import */ var vue_infinite_loading__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(vue_infinite_loading__WEBPACK_IMPORTED_MODULE_2__);
-/* harmony import */ var vue__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! vue */ "./node_modules/vue/dist/vue.runtime.esm.js");
-//
-//
-//
-//
-//
-//
-//
-//
-//
-//
-//
-//
-//
-//
-//
-//
-//
-//
-//
-//
-//
-//
-//
-//
-//
-//
-//
-//
-//
-//
-//
-//
-//
-//
-//
-//
-//
-//
-//
-//
-//
-//
-//
-//
-//
-//
-//
-//
+/* harmony import */ var nextcloud_vue__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! nextcloud-vue */ "./node_modules/nextcloud-vue/dist/ncvuecomponents.js");
+/* harmony import */ var nextcloud_vue__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(nextcloud_vue__WEBPACK_IMPORTED_MODULE_0__);
+/* harmony import */ var marked__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! marked */ "./node_modules/marked/lib/marked.js");
+/* harmony import */ var marked__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(marked__WEBPACK_IMPORTED_MODULE_1__);
+/* harmony import */ var dompurify__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! dompurify */ "./node_modules/dompurify/dist/purify.js");
+/* harmony import */ var dompurify__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(dompurify__WEBPACK_IMPORTED_MODULE_2__);
+/* harmony import */ var _AppList_AppScore__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./AppList/AppScore */ "./apps/settings/src/components/AppList/AppScore.vue");
+/* harmony import */ var _AppManagement__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./AppManagement */ "./apps/settings/src/components/AppManagement.vue");
+/* harmony import */ var _PrefixMixin__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./PrefixMixin */ "./apps/settings/src/components/PrefixMixin.vue");
+/* harmony import */ var _SvgFilterMixin__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./SvgFilterMixin */ "./apps/settings/src/components/SvgFilterMixin.vue");
//
//
//
@@ -751,408 +742,142 @@ __webpack_require__.r(__webpack_exports__);
-var unlimitedQuota = {
- id: 'none',
- label: t('settings', 'Unlimited')
-};
-var defaultQuota = {
- id: 'default',
- label: t('settings', 'Default quota')
-};
-var newUser = {
- id: '',
- displayName: '',
- password: '',
- mailAddress: '',
- groups: [],
- subAdminsGroups: [],
- quota: defaultQuota,
- language: {
- code: 'en',
- name: t('settings', 'Default language')
- }
-};
+
+
+
/* harmony default export */ __webpack_exports__["default"] = ({
- name: 'UserList',
+ name: 'AppDetails',
components: {
- userRow: _UserList_UserRow__WEBPACK_IMPORTED_MODULE_0__["default"],
- Multiselect: nextcloud_vue__WEBPACK_IMPORTED_MODULE_1__["Multiselect"],
- InfiniteLoading: vue_infinite_loading__WEBPACK_IMPORTED_MODULE_2___default.a
- },
- props: {
- users: {
- type: Array,
- default: function _default() {
- return [];
- }
- },
- showConfig: {
- type: Object,
- required: true
- },
- selectedGroup: {
- type: String,
- default: null
- },
- externalActions: {
- type: Array,
- default: function _default() {
- return [];
- }
- }
+ Multiselect: nextcloud_vue__WEBPACK_IMPORTED_MODULE_0__["Multiselect"],
+ AppScore: _AppList_AppScore__WEBPACK_IMPORTED_MODULE_3__["default"]
},
+ mixins: [_AppManagement__WEBPACK_IMPORTED_MODULE_4__["default"], _PrefixMixin__WEBPACK_IMPORTED_MODULE_5__["default"], _SvgFilterMixin__WEBPACK_IMPORTED_MODULE_6__["default"]],
+ props: ['category', 'app'],
data: function data() {
return {
- unlimitedQuota: unlimitedQuota,
- defaultQuota: defaultQuota,
- loading: {
- all: false,
- groups: false
- },
- scrolled: false,
- searchQuery: '',
- newUser: Object.assign({}, newUser)
+ groupCheckedAppsData: false
};
},
computed: {
- settings: function settings() {
- return this.$store.getters.getServerData;
+ appstoreUrl: function appstoreUrl() {
+ return "https://apps.nextcloud.com/apps/".concat(this.app.id);
},
- filteredUsers: function filteredUsers() {
- if (this.selectedGroup === 'disabled') {
- return this.users.filter(function (user) {
- return user.enabled === false;
+ licence: function licence() {
+ if (this.app.licence) {
+ return t('settings', '{license}-licensed', {
+ license: ('' + this.app.licence).toUpperCase()
});
}
- if (!this.settings.isAdmin) {
- // we don't want subadmins to edit themselves
- return this.users.filter(function (user) {
- return user.enabled !== false && user.id !== OC.getCurrentUser().uid;
- });
+ return null;
+ },
+ hasRating: function hasRating() {
+ return this.app.appstoreData && this.app.appstoreData.ratingNumOverall > 5;
+ },
+ author: function author() {
+ if (typeof this.app.author === 'string') {
+ return [{
+ '@value': this.app.author
+ }];
+ }
+
+ if (this.app.author['@value']) {
+ return [this.app.author];
}
- return this.users.filter(function (user) {
- return user.enabled !== false;
+ return this.app.author;
+ },
+ appGroups: function appGroups() {
+ return this.app.groups.map(function (group) {
+ return {
+ id: group,
+ name: group
+ };
});
},
groups: function groups() {
- // data provided php side + remove the disabled group
return this.$store.getters.getGroups.filter(function (group) {
return group.id !== 'disabled';
}).sort(function (a, b) {
return a.name.localeCompare(b.name);
});
},
- canAddGroups: function canAddGroups() {
- // disabled if no permission to add new users to group
- return this.groups.map(function (group) {
- // clone object because we don't want
- // to edit the original groups
- group = Object.assign({}, group);
- group.$isDisabled = group.canAdd === false;
- return group;
- });
- },
- subAdminsGroups: function subAdminsGroups() {
- // data provided php side
- return this.$store.getters.getSubadminGroups;
- },
- quotaOptions: function quotaOptions() {
- // convert the preset array into objects
- var quotaPreset = this.settings.quotaPreset.reduce(function (acc, cur) {
- return acc.concat({
- id: cur,
- label: cur
- });
- }, []); // add default presets
-
- quotaPreset.unshift(this.unlimitedQuota);
- quotaPreset.unshift(this.defaultQuota);
- return quotaPreset;
- },
- minPasswordLength: function minPasswordLength() {
- return this.$store.getters.getPasswordPolicyMinLength;
- },
- usersOffset: function usersOffset() {
- return this.$store.getters.getUsersOffset;
- },
- usersLimit: function usersLimit() {
- return this.$store.getters.getUsersLimit;
- },
- usersCount: function usersCount() {
- return this.users.length;
- },
-
- /* LANGUAGES */
- languages: function languages() {
- return [{
- label: t('settings', 'Common languages'),
- languages: this.settings.languages.commonlanguages
- }, {
- label: t('settings', 'All languages'),
- languages: this.settings.languages.languages
- }];
- }
- },
- watch: {
- // watch url change and group select
- selectedGroup: function selectedGroup(val, old) {
- // if selected is the disabled group but it's empty
- this.redirectIfDisabled();
- this.$store.commit('resetUsers');
- this.$refs.infiniteLoading.stateChanger.reset();
- this.setNewUserDefaultGroup(val);
- },
- // make sure the infiniteLoading state is changed if we manually
- // add/remove data from the store
- usersCount: function usersCount(val, old) {
- // deleting the last user, reset the list
- if (val === 0 && old === 1) {
- this.$refs.infiniteLoading.stateChanger.reset(); // adding the first user, warn the infiniteLoader that
- // the list is not empty anymore (we don't fetch the newly
- // added user as we already have all the info we need)
- } else if (val === 1 && old === 0) {
- this.$refs.infiniteLoading.stateChanger.loaded();
- }
- }
- },
- mounted: function mounted() {
- if (!this.settings.canChangePassword) {
- OC.Notification.showTemporary(t('settings', 'Password change is disabled because the master key is disabled'));
- }
- /**
- * Reset and init new user form
- */
-
-
- this.resetForm();
- /**
- * Register search
- */
-
- this.userSearch = new OCA.Search(this.search, this.resetSearch);
- /**
- * If disabled group but empty, redirect
- */
-
- this.redirectIfDisabled();
- },
- methods: {
- onScroll: function onScroll(event) {
- this.scrolled = event.target.scrollTo > 0;
- },
-
- /**
- * Validate quota string to make sure it's a valid human file size
- *
- * @param {string} quota Quota in readable format '5 GB'
- * @returns {Object}
- */
- validateQuota: function validateQuota(quota) {
- // only used for new presets sent through @Tag
- var validQuota = OC.Util.computerFileSize(quota);
-
- if (validQuota !== null && validQuota >= 0) {
- // unify format output
- quota = OC.Util.humanFileSize(OC.Util.computerFileSize(quota));
- this.newUser.quota = {
- id: quota,
- label: quota
- };
- return this.newUser.quota;
- } // Default is unlimited
-
-
- this.newUser.quota = this.quotaOptions[0];
- return this.quotaOptions[0];
- },
- infiniteHandler: function infiniteHandler($state) {
- this.$store.dispatch('getUsers', {
- offset: this.usersOffset,
- limit: this.usersLimit,
- group: this.selectedGroup !== 'disabled' ? this.selectedGroup : '',
- search: this.searchQuery
- }).then(function (response) {
- response ? $state.loaded() : $state.complete();
- });
- },
-
- /* SEARCH */
- search: function search(query) {
- this.searchQuery = query;
- this.$store.commit('resetUsers');
- this.$refs.infiniteLoading.stateChanger.reset();
- },
- resetSearch: function resetSearch() {
- this.search('');
- },
- resetForm: function resetForm() {
- // revert form to original state
- this.newUser = Object.assign({}, newUser);
- /**
- * Init default language from server data. The use of this.settings
- * requires a computed variable, which break the v-model binding of the form,
- * this is a much easier solution than getter and setter on a computed var
- */
-
- if (this.settings.defaultLanguage) {
- vue__WEBPACK_IMPORTED_MODULE_3__["default"].set(this.newUser.language, 'code', this.settings.defaultLanguage);
- }
- /**
- * In case the user directly loaded the user list within a group
- * the watch won't be triggered. We need to initialize it.
- */
-
-
- this.setNewUserDefaultGroup(this.selectedGroup);
- this.loading.all = false;
- },
- createUser: function createUser() {
- var _this = this;
+ renderMarkdown: function renderMarkdown() {
+ var renderer = new marked__WEBPACK_IMPORTED_MODULE_1___default.a.Renderer();
- this.loading.all = true;
- this.$store.dispatch('addUser', {
- userid: this.newUser.id,
- password: this.newUser.password,
- displayName: this.newUser.displayName,
- email: this.newUser.mailAddress,
- groups: this.newUser.groups.map(function (group) {
- return group.id;
- }),
- subadmin: this.newUser.subAdminsGroups.map(function (group) {
- return group.id;
- }),
- quota: this.newUser.quota.id,
- language: this.newUser.language.code
- }).then(function () {
- _this.resetForm();
-
- _this.$refs.newusername.focus();
- }).catch(function (error) {
- _this.loading.all = false;
+ renderer.link = function (href, title, text) {
+ var prot;
- if (error.response && error.response.data && error.response.data.ocs && error.response.data.ocs.meta) {
- var statuscode = error.response.data.ocs.meta.statuscode;
+ try {
+ prot = decodeURIComponent(unescape(href)).replace(/[^\w:]/g, '').toLowerCase();
+ } catch (e) {
+ return '';
+ }
- if (statuscode === 102) {
- // wrong username
- _this.$refs.newusername.focus();
- } else if (statuscode === 107) {
- // wrong password
- _this.$refs.newuserpassword.focus();
- }
+ if (prot.indexOf('http:') !== 0 && prot.indexOf('https:') !== 0) {
+ return '';
}
- });
- },
- setNewUserDefaultGroup: function setNewUserDefaultGroup(value) {
- if (value && value.length > 0) {
- // setting new user default group to the current selected one
- var currentGroup = this.groups.find(function (group) {
- return group.id === value;
- });
- if (currentGroup) {
- this.newUser.groups = [currentGroup];
- return;
+ var out = '<a href="' + href + '" rel="noreferrer noopener"';
+
+ if (title) {
+ out += ' title="' + title + '"';
}
- } // fallback, empty selected group
+ out += '>' + text + '</a>';
+ return out;
+ };
- this.newUser.groups = [];
- },
+ renderer.image = function (href, title, text) {
+ if (text) {
+ return text;
+ }
- /**
- * Create a new group
- *
- * @param {string} gid Group id
- * @returns {Promise}
- */
- createGroup: function createGroup(gid) {
- var _this2 = this;
+ return title;
+ };
- this.loading.groups = true;
- this.$store.dispatch('addGroup', gid).then(function (group) {
- _this2.newUser.groups.push(_this2.groups.find(function (group) {
- return group.id === gid;
- }));
+ renderer.blockquote = function (quote) {
+ return quote;
+ };
- _this2.loading.groups = false;
- }).catch(function () {
- _this2.loading.groups = false;
+ return dompurify__WEBPACK_IMPORTED_MODULE_2___default.a.sanitize(marked__WEBPACK_IMPORTED_MODULE_1___default()(this.app.description.trim(), {
+ renderer: renderer,
+ gfm: false,
+ highlight: false,
+ tables: false,
+ breaks: false,
+ pedantic: false,
+ sanitize: true,
+ smartLists: true,
+ smartypants: false
+ }), {
+ SAFE_FOR_JQUERY: true,
+ ALLOWED_TAGS: ['strong', 'p', 'a', 'ul', 'ol', 'li', 'em', 'del', 'blockquote']
});
- return this.$store.getters.getGroups[this.groups.length];
- },
-
- /**
- * If the selected group is the disabled group but the count is 0
- * redirect to the all users page.
- * * we only check for 0 because we don't have the count on ldap
- * * and we therefore set the usercount to -1 in this specific case
- */
- redirectIfDisabled: function redirectIfDisabled() {
- var allGroups = this.$store.getters.getGroups;
-
- if (this.selectedGroup === 'disabled' && allGroups.findIndex(function (group) {
- return group.id === 'disabled' && group.usercount === 0;
- }) > -1) {
- // disabled group is empty, redirection to all users
- this.$router.push({
- name: 'users'
- });
- this.$refs.infiniteLoading.stateChanger.reset();
- }
+ }
+ },
+ mounted: function mounted() {
+ if (this.app.groups.length > 0) {
+ this.groupCheckedAppsData = true;
}
}
});
/***/ }),
-/***/ "./node_modules/babel-loader/lib/index.js!./node_modules/vue-loader/lib/index.js?!./apps/settings/src/components/UserList/UserRow.vue?vue&type=script&lang=js&":
-/*!**********************************************************************************************************************************************************************!*\
- !*** ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./apps/settings/src/components/UserList/UserRow.vue?vue&type=script&lang=js& ***!
- \**********************************************************************************************************************************************************************/
+/***/ "./node_modules/babel-loader/lib/index.js!./node_modules/vue-loader/lib/index.js?!./apps/settings/src/components/AppList.vue?vue&type=script&lang=js&":
+/*!*************************************************************************************************************************************************************!*\
+ !*** ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./apps/settings/src/components/AppList.vue?vue&type=script&lang=js& ***!
+ \*************************************************************************************************************************************************************/
/*! exports provided: default */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
__webpack_require__.r(__webpack_exports__);
-/* harmony import */ var vue_click_outside__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! vue-click-outside */ "./node_modules/vue-click-outside/index.js");
-/* harmony import */ var vue_click_outside__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(vue_click_outside__WEBPACK_IMPORTED_MODULE_0__);
-/* harmony import */ var vue__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! vue */ "./node_modules/vue/dist/vue.runtime.esm.js");
-/* harmony import */ var v_tooltip__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! v-tooltip */ "./node_modules/v-tooltip/dist/v-tooltip.esm.js");
-/* harmony import */ var nextcloud_vue__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! nextcloud-vue */ "./node_modules/nextcloud-vue/dist/ncvuecomponents.js");
-/* harmony import */ var nextcloud_vue__WEBPACK_IMPORTED_MODULE_3___default = /*#__PURE__*/__webpack_require__.n(nextcloud_vue__WEBPACK_IMPORTED_MODULE_3__);
-/* harmony import */ var _UserRowSimple__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./UserRowSimple */ "./apps/settings/src/components/UserList/UserRowSimple.vue");
-/* harmony import */ var _mixins_UserRowMixin__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ../../mixins/UserRowMixin */ "./apps/settings/src/mixins/UserRowMixin.js");
-//
-//
-//
-//
-//
-//
-//
-//
-//
-//
-//
-//
-//
-//
-//
-//
-//
-//
-//
-//
-//
-//
-//
-//
-//
-//
-//
-//
+/* harmony import */ var _AppList_AppItem__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./AppList/AppItem */ "./apps/settings/src/components/AppList/AppItem.vue");
+/* harmony import */ var _PrefixMixin__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./PrefixMixin */ "./apps/settings/src/components/PrefixMixin.vue");
+/* harmony import */ var p_limit__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! p-limit */ "./node_modules/p-limit/index.js");
+/* harmony import */ var p_limit__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(p_limit__WEBPACK_IMPORTED_MODULE_2__);
//
//
//
@@ -1252,6 +977,204 @@ __webpack_require__.r(__webpack_exports__);
//
//
//
+
+
+
+/* harmony default export */ __webpack_exports__["default"] = ({
+ name: 'AppList',
+ components: {
+ AppItem: _AppList_AppItem__WEBPACK_IMPORTED_MODULE_0__["default"]
+ },
+ mixins: [_PrefixMixin__WEBPACK_IMPORTED_MODULE_1__["default"]],
+ props: ['category', 'app', 'search'],
+ computed: {
+ counter: function counter() {
+ return this.apps.filter(function (app) {
+ return app.update;
+ }).length;
+ },
+ loading: function loading() {
+ return this.$store.getters.loading('list');
+ },
+ hasPendingUpdate: function hasPendingUpdate() {
+ return this.apps.filter(function (app) {
+ return app.update;
+ }).length > 1;
+ },
+ showUpdateAll: function showUpdateAll() {
+ return this.hasPendingUpdate && ['installed', 'updates'].includes(this.category);
+ },
+ apps: function apps() {
+ var _this = this;
+
+ var apps = this.$store.getters.getAllApps.filter(function (app) {
+ return app.name.toLowerCase().search(_this.search.toLowerCase()) !== -1;
+ }).sort(function (a, b) {
+ var sortStringA = '' + (a.active ? 0 : 1) + (a.update ? 0 : 1) + a.name;
+ var sortStringB = '' + (b.active ? 0 : 1) + (b.update ? 0 : 1) + b.name;
+ return OC.Util.naturalSortCompare(sortStringA, sortStringB);
+ });
+
+ if (this.category === 'installed') {
+ return apps.filter(function (app) {
+ return app.installed;
+ });
+ }
+
+ if (this.category === 'enabled') {
+ return apps.filter(function (app) {
+ return app.active && app.installed;
+ });
+ }
+
+ if (this.category === 'disabled') {
+ return apps.filter(function (app) {
+ return !app.active && app.installed;
+ });
+ }
+
+ if (this.category === 'app-bundles') {
+ return apps.filter(function (app) {
+ return app.bundles;
+ });
+ }
+
+ if (this.category === 'updates') {
+ return apps.filter(function (app) {
+ return app.update;
+ });
+ } // filter app store categories
+
+
+ return apps.filter(function (app) {
+ return app.appstore && app.category !== undefined && (app.category === _this.category || app.category.indexOf(_this.category) > -1);
+ });
+ },
+ bundles: function bundles() {
+ var _this2 = this;
+
+ return this.$store.getters.getServerData.bundles.filter(function (bundle) {
+ return _this2.bundleApps(bundle.id).length > 0;
+ });
+ },
+ bundleApps: function bundleApps() {
+ return function (bundle) {
+ return this.$store.getters.getAllApps.filter(function (app) {
+ return app.bundleId === bundle;
+ });
+ };
+ },
+ searchApps: function searchApps() {
+ var _this3 = this;
+
+ if (this.search === '') {
+ return [];
+ }
+
+ return this.$store.getters.getAllApps.filter(function (app) {
+ if (app.name.toLowerCase().search(_this3.search.toLowerCase()) !== -1) {
+ return !_this3.apps.find(function (_app) {
+ return _app.id === app.id;
+ });
+ }
+
+ return false;
+ });
+ },
+ useAppStoreView: function useAppStoreView() {
+ return !this.useListView && !this.useBundleView;
+ },
+ useListView: function useListView() {
+ return this.category === 'installed' || this.category === 'enabled' || this.category === 'disabled' || this.category === 'updates';
+ },
+ useBundleView: function useBundleView() {
+ return this.category === 'app-bundles';
+ },
+ allBundlesEnabled: function allBundlesEnabled() {
+ var self = this;
+ return function (id) {
+ return self.bundleApps(id).filter(function (app) {
+ return !app.active;
+ }).length === 0;
+ };
+ },
+ bundleToggleText: function bundleToggleText() {
+ var self = this;
+ return function (id) {
+ if (self.allBundlesEnabled(id)) {
+ return t('settings', 'Disable all');
+ }
+
+ return t('settings', 'Enable all');
+ };
+ }
+ },
+ methods: {
+ toggleBundle: function toggleBundle(id) {
+ if (this.allBundlesEnabled(id)) {
+ return this.disableBundle(id);
+ }
+
+ return this.enableBundle(id);
+ },
+ enableBundle: function enableBundle(id) {
+ var apps = this.bundleApps(id).map(function (app) {
+ return app.id;
+ });
+ this.$store.dispatch('enableApp', {
+ appId: apps,
+ groups: []
+ }).catch(function (error) {
+ console.error(error);
+ OC.Notification.show(error);
+ });
+ },
+ disableBundle: function disableBundle(id) {
+ var apps = this.bundleApps(id).map(function (app) {
+ return app.id;
+ });
+ this.$store.dispatch('disableApp', {
+ appId: apps,
+ groups: []
+ }).catch(function (error) {
+ OC.Notification.show(error);
+ });
+ },
+ updateAll: function updateAll() {
+ var _this4 = this;
+
+ var limit = p_limit__WEBPACK_IMPORTED_MODULE_2___default()(1);
+ this.apps.filter(function (app) {
+ return app.update;
+ }).map(function (app) {
+ return limit(function () {
+ return _this4.$store.dispatch('updateApp', {
+ appId: app.id
+ });
+ });
+ });
+ }
+ }
+});
+
+/***/ }),
+
+/***/ "./node_modules/babel-loader/lib/index.js!./node_modules/vue-loader/lib/index.js?!./apps/settings/src/components/AppList/AppItem.vue?vue&type=script&lang=js&":
+/*!*********************************************************************************************************************************************************************!*\
+ !*** ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./apps/settings/src/components/AppList/AppItem.vue?vue&type=script&lang=js& ***!
+ \*********************************************************************************************************************************************************************/
+/*! exports provided: default */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _AppScore__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./AppScore */ "./apps/settings/src/components/AppList/AppScore.vue");
+/* harmony import */ var _AppManagement__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../AppManagement */ "./apps/settings/src/components/AppManagement.vue");
+/* harmony import */ var _SvgFilterMixin__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../SvgFilterMixin */ "./apps/settings/src/components/SvgFilterMixin.vue");
+function asyncGeneratorStep(gen, resolve, reject, _next, _throw, key, arg) { try { var info = gen[key](arg); var value = info.value; } catch (error) { reject(error); return; } if (info.done) { resolve(value); } else { Promise.resolve(value).then(_next, _throw); } }
+
+function _asyncToGenerator(fn) { return function () { var self = this, args = arguments; return new Promise(function (resolve, reject) { var gen = fn.apply(self, args); function _next(value) { asyncGeneratorStep(gen, resolve, reject, _next, _throw, "next", value); } function _throw(err) { asyncGeneratorStep(gen, resolve, reject, _next, _throw, "throw", err); } _next(undefined); }); }; }
+
//
//
//
@@ -1363,671 +1286,106 @@ __webpack_require__.r(__webpack_exports__);
-
-
-
-vue__WEBPACK_IMPORTED_MODULE_1__["default"].use(v_tooltip__WEBPACK_IMPORTED_MODULE_2__["default"]);
/* harmony default export */ __webpack_exports__["default"] = ({
- name: 'UserRow',
+ name: 'AppItem',
components: {
- UserRowSimple: _UserRowSimple__WEBPACK_IMPORTED_MODULE_4__["default"],
- PopoverMenu: nextcloud_vue__WEBPACK_IMPORTED_MODULE_3__["PopoverMenu"],
- Actions: nextcloud_vue__WEBPACK_IMPORTED_MODULE_3__["Actions"],
- ActionButton: nextcloud_vue__WEBPACK_IMPORTED_MODULE_3__["ActionButton"],
- Multiselect: nextcloud_vue__WEBPACK_IMPORTED_MODULE_3__["Multiselect"]
- },
- directives: {
- ClickOutside: vue_click_outside__WEBPACK_IMPORTED_MODULE_0___default.a
+ AppScore: _AppScore__WEBPACK_IMPORTED_MODULE_0__["default"]
},
- mixins: [_mixins_UserRowMixin__WEBPACK_IMPORTED_MODULE_5__["default"]],
+ mixins: [_AppManagement__WEBPACK_IMPORTED_MODULE_1__["default"], _SvgFilterMixin__WEBPACK_IMPORTED_MODULE_2__["default"]],
props: {
- user: {
- type: Object,
- required: true
- },
- settings: {
- type: Object,
- default: function _default() {
- return {};
- }
- },
- groups: {
- type: Array,
- default: function _default() {
- return [];
- }
- },
- subAdminsGroups: {
- type: Array,
- default: function _default() {
- return [];
- }
- },
- quotaOptions: {
- type: Array,
- default: function _default() {
- return [];
- }
- },
- showConfig: {
- type: Object,
- default: function _default() {
- return {};
- }
- },
- languages: {
- type: Array,
- required: true
- },
- externalActions: {
- type: Array,
- default: function _default() {
- return [];
- }
+ app: {},
+ category: {},
+ listView: {
+ type: Boolean,
+ default: true
}
},
data: function data() {
return {
- rand: parseInt(Math.random() * 1000),
- openedMenu: false,
- feedbackMessage: '',
- editing: false,
- loading: {
- all: false,
- displayName: false,
- password: false,
- mailAddress: false,
- groups: false,
- subadmins: false,
- quota: false,
- delete: false,
- disable: false,
- languages: false,
- wipe: false
- }
+ isSelected: false,
+ scrolled: false
};
},
computed: {
- /* USER POPOVERMENU ACTIONS */
- userActions: function userActions() {
- var actions = [{
- icon: 'icon-delete',
- text: t('settings', 'Delete user'),
- action: this.deleteUser
- }, {
- icon: 'icon-delete',
- text: t('settings', 'Wipe all devices'),
- action: this.wipeUserDevices
- }, {
- icon: this.user.enabled ? 'icon-close' : 'icon-add',
- text: this.user.enabled ? t('settings', 'Disable user') : t('settings', 'Enable user'),
- action: this.enableDisableUser
- }];
-
- if (this.user.email !== null && this.user.email !== '') {
- actions.push({
- icon: 'icon-mail',
- text: t('settings', 'Resend welcome email'),
- action: this.sendWelcomeMail
- });
- }
-
- return actions.concat(this.externalActions);
+ hasRating: function hasRating() {
+ return this.app.appstoreData && this.app.appstoreData.ratingNumOverall > 5;
}
},
+ watch: {
+ '$route.params.id': function $routeParamsId(id) {
+ this.isSelected = this.app.id === id;
+ }
+ },
+ mounted: function mounted() {
+ this.isSelected = this.app.id === this.$route.params.id;
+ },
+ watchers: {},
methods: {
- /* MENU HANDLING */
- toggleMenu: function toggleMenu() {
- this.openedMenu = !this.openedMenu;
- },
- hideMenu: function hideMenu() {
- this.openedMenu = false;
- },
- wipeUserDevices: function wipeUserDevices() {
- var _this = this;
-
- var userid = this.user.id;
- OC.dialogs.confirmDestructive(t('settings', 'In case of lost device or exiting the organization, this can remotely wipe the Nextcloud data from all devices associated with {userid}. Only works if the devices are connected to the internet.', {
- userid: userid
- }), t('settings', 'Remote wipe of devices'), {
- type: OC.dialogs.YES_NO_BUTTONS,
- confirm: t('settings', 'Wipe {userid}\'s devices', {
- userid: userid
- }),
- confirmClasses: 'error',
- cancel: t('settings', 'Cancel')
- }, function (result) {
- if (result) {
- _this.loading.wipe = true;
- _this.loading.all = true;
-
- _this.$store.dispatch('wipeUserDevices', userid).then(function () {
- _this.loading.wipe = false;
- _this.loading.all = false;
- });
- }
- }, true);
- },
- deleteUser: function deleteUser() {
- var _this2 = this;
-
- var userid = this.user.id;
- OC.dialogs.confirmDestructive(t('settings', 'Fully delete {userid}\'s account including all their personal files, app data, etc.', {
- userid: userid
- }), t('settings', 'Account deletion'), {
- type: OC.dialogs.YES_NO_BUTTONS,
- confirm: t('settings', 'Delete {userid}\'s account', {
- userid: userid
- }),
- confirmClasses: 'error',
- cancel: t('settings', 'Cancel')
- }, function (result) {
- if (result) {
- _this2.loading.delete = true;
- _this2.loading.all = true;
- return _this2.$store.dispatch('deleteUser', userid).then(function () {
- _this2.loading.delete = false;
- _this2.loading.all = false;
- });
- }
- }, true);
- },
- enableDisableUser: function enableDisableUser() {
- var _this3 = this;
-
- this.loading.delete = true;
- this.loading.all = true;
- var userid = this.user.id;
- var enabled = !this.user.enabled;
- return this.$store.dispatch('enableDisableUser', {
- userid: userid,
- enabled: enabled
- }).then(function () {
- _this3.loading.delete = false;
- _this3.loading.all = false;
- });
- },
-
- /**
- * Set user displayName
- *
- * @param {string} displayName The display name
- */
- updateDisplayName: function updateDisplayName() {
- var _this4 = this;
-
- var displayName = this.$refs.displayName.value;
- this.loading.displayName = true;
- this.$store.dispatch('setUserData', {
- userid: this.user.id,
- key: 'displayname',
- value: displayName
- }).then(function () {
- _this4.loading.displayName = false;
- _this4.$refs.displayName.value = displayName;
- });
- },
-
- /**
- * Set user password
- *
- * @param {string} password The email adress
- */
- updatePassword: function updatePassword() {
- var _this5 = this;
-
- var password = this.$refs.password.value;
- this.loading.password = true;
- this.$store.dispatch('setUserData', {
- userid: this.user.id,
- key: 'password',
- value: password
- }).then(function () {
- _this5.loading.password = false;
- _this5.$refs.password.value = ''; // empty & show placeholder
- });
- },
-
- /**
- * Set user mailAddress
- *
- * @param {string} mailAddress The email adress
- */
- updateEmail: function updateEmail() {
- var _this6 = this;
-
- var mailAddress = this.$refs.mailAddress.value;
- this.loading.mailAddress = true;
- this.$store.dispatch('setUserData', {
- userid: this.user.id,
- key: 'email',
- value: mailAddress
- }).then(function () {
- _this6.loading.mailAddress = false;
- _this6.$refs.mailAddress.value = mailAddress;
- });
- },
-
- /**
- * Create a new group and add user to it
- *
- * @param {string} gid Group id
- */
- createGroup: function createGroup(gid) {
- var userid;
- return regeneratorRuntime.async(function createGroup$(_context) {
- while (1) {
- switch (_context.prev = _context.next) {
- case 0:
- this.loading = {
- groups: true,
- subadmins: true
- };
- _context.prev = 1;
- _context.next = 4;
- return regeneratorRuntime.awrap(this.$store.dispatch('addGroup', gid));
-
- case 4:
- userid = this.user.id;
- _context.next = 7;
- return regeneratorRuntime.awrap(this.$store.dispatch('addUserGroup', {
- userid: userid,
- gid: gid
- }));
-
- case 7:
- _context.next = 12;
- break;
-
- case 9:
- _context.prev = 9;
- _context.t0 = _context["catch"](1);
- console.error(_context.t0);
-
- case 12:
- _context.prev = 12;
- this.loading = {
- groups: false,
- subadmins: false
- };
- return _context.finish(12);
-
- case 15:
- return _context.abrupt("return", this.$store.getters.getGroups[this.groups.length]);
-
- case 16:
- case "end":
- return _context.stop();
- }
- }
- }, null, this, [[1, 9, 12, 15]]);
- },
+ showAppDetails: function () {
+ var _showAppDetails = _asyncToGenerator(
+ /*#__PURE__*/
+ regeneratorRuntime.mark(function _callee(event) {
+ return regeneratorRuntime.wrap(function _callee$(_context) {
+ while (1) {
+ switch (_context.prev = _context.next) {
+ case 0:
+ if (!(event.currentTarget.tagName === 'INPUT' || event.currentTarget.tagName === 'A')) {
+ _context.next = 2;
+ break;
+ }
- /**
- * Add user to group
- *
- * @param {object} group Group object
- */
- addUserGroup: function addUserGroup(group) {
- var userid, gid;
- return regeneratorRuntime.async(function addUserGroup$(_context2) {
- while (1) {
- switch (_context2.prev = _context2.next) {
- case 0:
- if (!(group.canAdd === false)) {
- _context2.next = 2;
- break;
- }
+ return _context.abrupt("return");
- return _context2.abrupt("return", false);
-
- case 2:
- this.loading.groups = true;
- userid = this.user.id;
- gid = group.id;
- _context2.prev = 5;
- _context2.next = 8;
- return regeneratorRuntime.awrap(this.$store.dispatch('addUserGroup', {
- userid: userid,
- gid: gid
- }));
-
- case 8:
- _context2.next = 13;
- break;
-
- case 10:
- _context2.prev = 10;
- _context2.t0 = _context2["catch"](5);
- console.error(_context2.t0);
-
- case 13:
- _context2.prev = 13;
- this.loading.groups = false;
- return _context2.finish(13);
-
- case 16:
- case "end":
- return _context2.stop();
- }
- }
- }, null, this, [[5, 10, 13, 16]]);
- },
+ case 2:
+ _context.prev = 2;
+ _context.next = 5;
+ return this.$router.push({
+ name: 'apps-details',
+ params: {
+ category: this.category,
+ id: this.app.id
+ }
+ });
- /**
- * Remove user from group
- *
- * @param {object} group Group object
- */
- removeUserGroup: function removeUserGroup(group) {
- var userid, gid;
- return regeneratorRuntime.async(function removeUserGroup$(_context3) {
- while (1) {
- switch (_context3.prev = _context3.next) {
- case 0:
- if (!(group.canRemove === false)) {
- _context3.next = 2;
+ case 5:
+ _context.next = 9;
break;
- }
-
- return _context3.abrupt("return", false);
-
- case 2:
- this.loading.groups = true;
- userid = this.user.id;
- gid = group.id;
- _context3.prev = 5;
- _context3.next = 8;
- return regeneratorRuntime.awrap(this.$store.dispatch('removeUserGroup', {
- userid: userid,
- gid: gid
- }));
-
- case 8:
- this.loading.groups = false; // remove user from current list if current list is the removed group
-
- if (this.$route.params.selectedGroup === gid) {
- this.$store.commit('deleteUser', userid);
- }
-
- _context3.next = 15;
- break;
-
- case 12:
- _context3.prev = 12;
- _context3.t0 = _context3["catch"](5);
- this.loading.groups = false;
-
- case 15:
- case "end":
- return _context3.stop();
- }
- }
- }, null, this, [[5, 12]]);
- },
-
- /**
- * Add user to group
- *
- * @param {object} group Group object
- */
- addUserSubAdmin: function addUserSubAdmin(group) {
- var userid, gid;
- return regeneratorRuntime.async(function addUserSubAdmin$(_context4) {
- while (1) {
- switch (_context4.prev = _context4.next) {
- case 0:
- this.loading.subadmins = true;
- userid = this.user.id;
- gid = group.id;
- _context4.prev = 3;
- _context4.next = 6;
- return regeneratorRuntime.awrap(this.$store.dispatch('addUserSubAdmin', {
- userid: userid,
- gid: gid
- }));
-
- case 6:
- this.loading.subadmins = false;
- _context4.next = 12;
- break;
-
- case 9:
- _context4.prev = 9;
- _context4.t0 = _context4["catch"](3);
- console.error(_context4.t0);
-
- case 12:
- case "end":
- return _context4.stop();
- }
- }
- }, null, this, [[3, 9]]);
- },
-
- /**
- * Remove user from group
- *
- * @param {object} group Group object
- */
- removeUserSubAdmin: function removeUserSubAdmin(group) {
- var userid, gid;
- return regeneratorRuntime.async(function removeUserSubAdmin$(_context5) {
- while (1) {
- switch (_context5.prev = _context5.next) {
- case 0:
- this.loading.subadmins = true;
- userid = this.user.id;
- gid = group.id;
- _context5.prev = 3;
- _context5.next = 6;
- return regeneratorRuntime.awrap(this.$store.dispatch('removeUserSubAdmin', {
- userid: userid,
- gid: gid
- }));
-
- case 6:
- _context5.next = 11;
- break;
-
- case 8:
- _context5.prev = 8;
- _context5.t0 = _context5["catch"](3);
- console.error(_context5.t0);
-
- case 11:
- _context5.prev = 11;
- this.loading.subadmins = false;
- return _context5.finish(11);
-
- case 14:
- case "end":
- return _context5.stop();
- }
- }
- }, null, this, [[3, 8, 11, 14]]);
- },
-
- /**
- * Dispatch quota set request
- *
- * @param {string|Object} quota Quota in readable format '5 GB' or Object {id: '5 GB', label: '5GB'}
- * @returns {string}
- */
- setUserQuota: function setUserQuota() {
- var quota,
- _args6 = arguments;
- return regeneratorRuntime.async(function setUserQuota$(_context6) {
- while (1) {
- switch (_context6.prev = _context6.next) {
- case 0:
- quota = _args6.length > 0 && _args6[0] !== undefined ? _args6[0] : 'none';
- this.loading.quota = true; // ensure we only send the preset id
-
- quota = quota.id ? quota.id : quota;
- _context6.prev = 3;
- _context6.next = 6;
- return regeneratorRuntime.awrap(this.$store.dispatch('setUserData', {
- userid: this.user.id,
- key: 'quota',
- value: quota
- }));
-
- case 6:
- _context6.next = 11;
- break;
-
- case 8:
- _context6.prev = 8;
- _context6.t0 = _context6["catch"](3);
- console.error(_context6.t0);
-
- case 11:
- _context6.prev = 11;
- this.loading.quota = false;
- return _context6.finish(11);
-
- case 14:
- return _context6.abrupt("return", quota);
-
- case 15:
- case "end":
- return _context6.stop();
- }
- }
- }, null, this, [[3, 8, 11, 14]]);
- },
-
- /**
- * Validate quota string to make sure it's a valid human file size
- *
- * @param {string} quota Quota in readable format '5 GB'
- * @returns {Promise|boolean}
- */
- validateQuota: function validateQuota(quota) {
- // only used for new presets sent through @Tag
- var validQuota = OC.Util.computerFileSize(quota);
-
- if (validQuota !== null && validQuota >= 0) {
- // unify format output
- return this.setUserQuota(OC.Util.humanFileSize(OC.Util.computerFileSize(quota)));
- } // if no valid do not change
-
- return false;
- },
+ case 7:
+ _context.prev = 7;
+ _context.t0 = _context["catch"](2);
- /**
- * Dispatch language set request
- *
- * @param {Object} lang language object {code:'en', name:'English'}
- * @returns {Object}
- */
- setUserLanguage: function setUserLanguage(lang) {
- return regeneratorRuntime.async(function setUserLanguage$(_context7) {
- while (1) {
- switch (_context7.prev = _context7.next) {
- case 0:
- this.loading.languages = true; // ensure we only send the preset id
-
- _context7.prev = 1;
- _context7.next = 4;
- return regeneratorRuntime.awrap(this.$store.dispatch('setUserData', {
- userid: this.user.id,
- key: 'language',
- value: lang.code
- }));
-
- case 4:
- _context7.next = 9;
- break;
-
- case 6:
- _context7.prev = 6;
- _context7.t0 = _context7["catch"](1);
- console.error(_context7.t0);
-
- case 9:
- _context7.prev = 9;
- this.loading.languages = false;
- return _context7.finish(9);
-
- case 12:
- return _context7.abrupt("return", lang);
-
- case 13:
- case "end":
- return _context7.stop();
+ case 9:
+ case "end":
+ return _context.stop();
+ }
}
- }
- }, null, this, [[1, 6, 9, 12]]);
- },
+ }, _callee, this, [[2, 7]]);
+ }));
- /**
- * Dispatch new welcome mail request
- */
- sendWelcomeMail: function sendWelcomeMail() {
- var _this7 = this;
-
- this.loading.all = true;
- this.$store.dispatch('sendWelcomeMail', this.user.id).then(function (success) {
- if (success) {
- // Show feedback to indicate the success
- _this7.feedbackMessage = t('setting', 'Welcome mail sent!');
- setTimeout(function () {
- _this7.feedbackMessage = '';
- }, 2000);
- }
+ function showAppDetails(_x) {
+ return _showAppDetails.apply(this, arguments);
+ }
- _this7.loading.all = false;
- });
+ return showAppDetails;
+ }(),
+ prefix: function prefix(_prefix, content) {
+ return _prefix + '_' + content;
}
}
});
/***/ }),
-/***/ "./node_modules/babel-loader/lib/index.js!./node_modules/vue-loader/lib/index.js?!./apps/settings/src/components/UserList/UserRowSimple.vue?vue&type=script&lang=js&":
-/*!****************************************************************************************************************************************************************************!*\
- !*** ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./apps/settings/src/components/UserList/UserRowSimple.vue?vue&type=script&lang=js& ***!
- \****************************************************************************************************************************************************************************/
+/***/ "./node_modules/babel-loader/lib/index.js!./node_modules/vue-loader/lib/index.js?!./apps/settings/src/components/AppList/AppScore.vue?vue&type=script&lang=js&":
+/*!**********************************************************************************************************************************************************************!*\
+ !*** ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./apps/settings/src/components/AppList/AppScore.vue?vue&type=script&lang=js& ***!
+ \**********************************************************************************************************************************************************************/
/*! exports provided: default */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
__webpack_require__.r(__webpack_exports__);
-/* harmony import */ var nextcloud_vue__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! nextcloud-vue */ "./node_modules/nextcloud-vue/dist/ncvuecomponents.js");
-/* harmony import */ var nextcloud_vue__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(nextcloud_vue__WEBPACK_IMPORTED_MODULE_0__);
-/* harmony import */ var vue_click_outside__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! vue-click-outside */ "./node_modules/vue-click-outside/index.js");
-/* harmony import */ var vue_click_outside__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(vue_click_outside__WEBPACK_IMPORTED_MODULE_1__);
-/* harmony import */ var _nextcloud_auth__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! @nextcloud/auth */ "./node_modules/@nextcloud/auth/dist/index.js");
-/* harmony import */ var _nextcloud_auth__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(_nextcloud_auth__WEBPACK_IMPORTED_MODULE_2__);
-/* harmony import */ var _mixins_UserRowMixin__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../../mixins/UserRowMixin */ "./apps/settings/src/mixins/UserRowMixin.js");
-//
-//
-//
-//
-//
-//
-//
-//
-//
-//
-//
-//
-//
-//
-//
-//
-//
-//
-//
-//
-//
-//
-//
-//
-//
//
//
//
@@ -2053,6 +1411,29 @@ __webpack_require__.r(__webpack_exports__);
//
//
//
+/* harmony default export */ __webpack_exports__["default"] = ({
+ name: 'AppScore',
+ props: ['score'],
+ computed: {
+ scoreImage: function scoreImage() {
+ var score = Math.round(this.score * 10);
+ var imageName = 'rating/s' + score + '.svg';
+ return OC.imagePath('core', imageName);
+ }
+ }
+});
+
+/***/ }),
+
+/***/ "./node_modules/babel-loader/lib/index.js!./node_modules/vue-loader/lib/index.js?!./apps/settings/src/components/AppManagement.vue?vue&type=script&lang=js&":
+/*!*******************************************************************************************************************************************************************!*\
+ !*** ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./apps/settings/src/components/AppManagement.vue?vue&type=script&lang=js& ***!
+ \*******************************************************************************************************************************************************************/
+/*! exports provided: default */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
//
//
//
@@ -2075,111 +1456,181 @@ __webpack_require__.r(__webpack_exports__);
//
//
//
+/* harmony default export */ __webpack_exports__["default"] = ({
+ computed: {
+ appGroups: function appGroups() {
+ return this.app.groups.map(function (group) {
+ return {
+ id: group,
+ name: group
+ };
+ });
+ },
+ loading: function loading() {
+ var self = this;
+ return function (id) {
+ return self.$store.getters.loading(id);
+ };
+ },
+ installing: function installing() {
+ return this.$store.getters.loading('install');
+ },
+ enableButtonText: function enableButtonText() {
+ if (this.app.needsDownload) {
+ return t('settings', 'Download and enable');
+ }
+ return t('settings', 'Enable');
+ },
+ forceEnableButtonText: function forceEnableButtonText() {
+ if (this.app.needsDownload) {
+ return t('settings', 'Enable untested app');
+ }
+ return t('settings', 'Enable untested app');
+ },
+ enableButtonTooltip: function enableButtonTooltip() {
+ if (this.app.needsDownload) {
+ return t('settings', 'The app will be downloaded from the app store');
+ }
+
+ return false;
+ },
+ forceEnableButtonTooltip: function forceEnableButtonTooltip() {
+ var base = t('settings', 'This app is not marked as compatible with your Nextcloud version. If you continue you will still be able to install the app. Note that the app might not work as expected.');
+ if (this.app.needsDownload) {
+ return base + ' ' + t('settings', 'The app will be downloaded from the app store');
+ }
-/* harmony default export */ __webpack_exports__["default"] = ({
- name: 'UserRowSimple',
- components: {
- PopoverMenu: nextcloud_vue__WEBPACK_IMPORTED_MODULE_0__["PopoverMenu"],
- ActionButton: nextcloud_vue__WEBPACK_IMPORTED_MODULE_0__["ActionButton"],
- Actions: nextcloud_vue__WEBPACK_IMPORTED_MODULE_0__["Actions"]
+ return base;
+ }
},
- directives: {
- ClickOutside: vue_click_outside__WEBPACK_IMPORTED_MODULE_1___default.a
+ mounted: function mounted() {
+ if (this.app.groups.length > 0) {
+ this.groupCheckedAppsData = true;
+ }
},
- mixins: [_mixins_UserRowMixin__WEBPACK_IMPORTED_MODULE_3__["default"]],
- props: {
- user: {
- type: Object,
- required: true
+ methods: {
+ asyncFindGroup: function asyncFindGroup(query) {
+ return this.$store.dispatch('getGroups', {
+ search: query,
+ limit: 5,
+ offset: 0
+ });
},
- loading: {
- type: Object,
- required: true
+ isLimitedToGroups: function isLimitedToGroups(app) {
+ if (this.app.groups.length || this.groupCheckedAppsData) {
+ return true;
+ }
+
+ return false;
},
- showConfig: {
- type: Object,
- required: true
+ setGroupLimit: function setGroupLimit() {
+ if (!this.groupCheckedAppsData) {
+ this.$store.dispatch('enableApp', {
+ appId: this.app.id,
+ groups: []
+ });
+ }
},
- userActions: {
- type: Array,
- required: true
+ canLimitToGroups: function canLimitToGroups(app) {
+ if (app.types && app.types.includes('filesystem') || app.types.includes('prelogin') || app.types.includes('authentication') || app.types.includes('logging') || app.types.includes('prevent_group_restriction')) {
+ return false;
+ }
+
+ return true;
},
- openedMenu: {
- type: Boolean,
- required: true
+ addGroupLimitation: function addGroupLimitation(group) {
+ var groups = this.app.groups.concat([]).concat([group.id]);
+ this.$store.dispatch('enableApp', {
+ appId: this.app.id,
+ groups: groups
+ });
},
- feedbackMessage: {
- type: String,
- required: true
+ removeGroupLimitation: function removeGroupLimitation(group) {
+ var currentGroups = this.app.groups.concat([]);
+ var index = currentGroups.indexOf(group.id);
+
+ if (index > -1) {
+ currentGroups.splice(index, 1);
+ }
+
+ this.$store.dispatch('enableApp', {
+ appId: this.app.id,
+ groups: currentGroups
+ });
},
- subAdminsGroups: {
- type: Array,
- required: true
+ forceEnable: function forceEnable(appId) {
+ this.$store.dispatch('forceEnableApp', {
+ appId: appId,
+ groups: []
+ }).then(function (response) {
+ OC.Settings.Apps.rebuildNavigation();
+ }).catch(function (error) {
+ OC.Notification.show(error);
+ });
},
- settings: {
- type: Object,
- required: true
- }
- },
- computed: {
- userGroupsLabels: function userGroupsLabels() {
- return this.userGroups.map(function (group) {
- return group.name;
- }).join(', ');
+ enable: function enable(appId) {
+ this.$store.dispatch('enableApp', {
+ appId: appId,
+ groups: []
+ }).then(function (response) {
+ OC.Settings.Apps.rebuildNavigation();
+ }).catch(function (error) {
+ OC.Notification.show(error);
+ });
},
- userSubAdminsGroupsLabels: function userSubAdminsGroupsLabels() {
- return this.userSubAdminsGroups.map(function (group) {
- return group.name;
- }).join(', ');
+ disable: function disable(appId) {
+ this.$store.dispatch('disableApp', {
+ appId: appId
+ }).then(function (response) {
+ OC.Settings.Apps.rebuildNavigation();
+ }).catch(function (error) {
+ OC.Notification.show(error);
+ });
},
- usedSpace: function usedSpace() {
- if (this.user.quota.used) {
- return t('settings', '{size} used', {
- size: OC.Util.humanFileSize(this.user.quota.used)
- });
- }
-
- return t('settings', '{size} used', {
- size: OC.Util.humanFileSize(0)
+ remove: function remove(appId) {
+ this.$store.dispatch('uninstallApp', {
+ appId: appId
+ }).then(function (response) {
+ OC.Settings.Apps.rebuildNavigation();
+ }).catch(function (error) {
+ OC.Notification.show(error);
});
},
- canEdit: function canEdit() {
- return Object(_nextcloud_auth__WEBPACK_IMPORTED_MODULE_2__["getCurrentUser"])().uid !== this.user.id && this.user.id !== 'admin';
- }
- },
- methods: {
- hideMenu: function hideMenu() {
- this.$emit('hideMenu');
+ install: function install(appId) {
+ this.$store.dispatch('enableApp', {
+ appId: appId
+ }).then(function (response) {
+ OC.Settings.Apps.rebuildNavigation();
+ }).catch(function (error) {
+ OC.Notification.show(error);
+ });
},
- toggleEdit: function toggleEdit() {
- this.$emit('update:editing', true);
+ update: function update(appId) {
+ this.$store.dispatch('updateApp', {
+ appId: appId
+ }).then(function (response) {
+ OC.Settings.Apps.rebuildNavigation();
+ }).catch(function (error) {
+ OC.Notification.show(error);
+ });
}
}
});
/***/ }),
-/***/ "./node_modules/babel-loader/lib/index.js!./node_modules/vue-loader/lib/index.js?!./apps/settings/src/views/Users.vue?vue&type=script&lang=js&":
-/*!******************************************************************************************************************************************************!*\
- !*** ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./apps/settings/src/views/Users.vue?vue&type=script&lang=js& ***!
- \******************************************************************************************************************************************************/
+/***/ "./node_modules/babel-loader/lib/index.js!./node_modules/vue-loader/lib/index.js?!./apps/settings/src/components/PrefixMixin.vue?vue&type=script&lang=js&":
+/*!*****************************************************************************************************************************************************************!*\
+ !*** ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./apps/settings/src/components/PrefixMixin.vue?vue&type=script&lang=js& ***!
+ \*****************************************************************************************************************************************************************/
/*! exports provided: default */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
__webpack_require__.r(__webpack_exports__);
-/* harmony import */ var vue__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! vue */ "./node_modules/vue/dist/vue.runtime.esm.js");
-/* harmony import */ var vue_localstorage__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! vue-localstorage */ "./node_modules/vue-localstorage/dist/vue-local-storage.js");
-/* harmony import */ var vue_localstorage__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(vue_localstorage__WEBPACK_IMPORTED_MODULE_1__);
-/* harmony import */ var nextcloud_vue__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! nextcloud-vue */ "./node_modules/nextcloud-vue/dist/ncvuecomponents.js");
-/* harmony import */ var nextcloud_vue__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(nextcloud_vue__WEBPACK_IMPORTED_MODULE_2__);
-/* harmony import */ var _components_UserList__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../components/UserList */ "./apps/settings/src/components/UserList.vue");
-function _typeof(obj) { if (typeof Symbol === "function" && typeof Symbol.iterator === "symbol") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === "function" && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }; } return _typeof(obj); }
-
-//
//
//
//
@@ -2202,6 +1653,26 @@ function _typeof(obj) { if (typeof Symbol === "function" && typeof Symbol.iterat
//
//
//
+/* harmony default export */ __webpack_exports__["default"] = ({
+ name: 'PrefixMixin',
+ methods: {
+ prefix: function prefix(_prefix, content) {
+ return _prefix + '_' + content;
+ }
+ }
+});
+
+/***/ }),
+
+/***/ "./node_modules/babel-loader/lib/index.js!./node_modules/vue-loader/lib/index.js?!./apps/settings/src/components/SvgFilterMixin.vue?vue&type=script&lang=js&":
+/*!********************************************************************************************************************************************************************!*\
+ !*** ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./apps/settings/src/components/SvgFilterMixin.vue?vue&type=script&lang=js& ***!
+ \********************************************************************************************************************************************************************/
+/*! exports provided: default */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
//
//
//
@@ -2224,6 +1695,41 @@ function _typeof(obj) { if (typeof Symbol === "function" && typeof Symbol.iterat
//
//
//
+/* harmony default export */ __webpack_exports__["default"] = ({
+ name: 'SvgFilterMixin',
+ data: function data() {
+ return {
+ filterId: ''
+ };
+ },
+ computed: {
+ filterUrl: function filterUrl() {
+ return "url(#".concat(this.filterId, ")");
+ }
+ },
+ mounted: function mounted() {
+ this.filterId = 'invertIconApps' + Math.floor(Math.random() * 100) + new Date().getSeconds() + new Date().getMilliseconds();
+ }
+});
+
+/***/ }),
+
+/***/ "./node_modules/babel-loader/lib/index.js!./node_modules/vue-loader/lib/index.js?!./apps/settings/src/views/Apps.vue?vue&type=script&lang=js&":
+/*!*****************************************************************************************************************************************************!*\
+ !*** ./node_modules/babel-loader/lib!./node_modules/vue-loader/lib??vue-loader-options!./apps/settings/src/views/Apps.vue?vue&type=script&lang=js& ***!
+ \*****************************************************************************************************************************************************/
+/*! exports provided: default */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var nextcloud_vue__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! nextcloud-vue */ "./node_modules/nextcloud-vue/dist/ncvuecomponents.js");
+/* harmony import */ var nextcloud_vue__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(nextcloud_vue__WEBPACK_IMPORTED_MODULE_0__);
+/* harmony import */ var _components_AppList__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ../components/AppList */ "./apps/settings/src/components/AppList.vue");
+/* harmony import */ var vue__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! vue */ "./node_modules/vue/dist/vue.runtime.esm.js");
+/* harmony import */ var vue_localstorage__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! vue-localstorage */ "./node_modules/vue-localstorage/dist/vue-local-storage.js");
+/* harmony import */ var vue_localstorage__WEBPACK_IMPORTED_MODULE_3___default = /*#__PURE__*/__webpack_require__.n(vue_localstorage__WEBPACK_IMPORTED_MODULE_3__);
+/* harmony import */ var _components_AppDetails__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ../components/AppDetails */ "./apps/settings/src/components/AppDetails.vue");
//
//
//
@@ -2269,421 +1775,253 @@ function _typeof(obj) { if (typeof Symbol === "function" && typeof Symbol.iterat
-vue__WEBPACK_IMPORTED_MODULE_0__["default"].use(vue_localstorage__WEBPACK_IMPORTED_MODULE_1___default.a);
+
+vue__WEBPACK_IMPORTED_MODULE_2__["default"].use(vue_localstorage__WEBPACK_IMPORTED_MODULE_3___default.a);
/* harmony default export */ __webpack_exports__["default"] = ({
- name: 'Users',
+ name: 'Apps',
components: {
- AppContent: nextcloud_vue__WEBPACK_IMPORTED_MODULE_2__["AppContent"],
- AppNavigation: nextcloud_vue__WEBPACK_IMPORTED_MODULE_2__["AppNavigation"],
- AppNavigationItem: nextcloud_vue__WEBPACK_IMPORTED_MODULE_2__["AppNavigationItem"],
- AppNavigationNew: nextcloud_vue__WEBPACK_IMPORTED_MODULE_2__["AppNavigationNew"],
- AppNavigationSettings: nextcloud_vue__WEBPACK_IMPORTED_MODULE_2__["AppNavigationSettings"],
- Content: nextcloud_vue__WEBPACK_IMPORTED_MODULE_2__["Content"],
- UserList: _components_UserList__WEBPACK_IMPORTED_MODULE_3__["default"],
- Multiselect: nextcloud_vue__WEBPACK_IMPORTED_MODULE_2__["Multiselect"]
+ AppContent: nextcloud_vue__WEBPACK_IMPORTED_MODULE_0__["AppContent"],
+ AppNavigation: nextcloud_vue__WEBPACK_IMPORTED_MODULE_0__["AppNavigation"],
+ AppNavigationItem: nextcloud_vue__WEBPACK_IMPORTED_MODULE_0__["AppNavigationItem"],
+ AppSidebar: nextcloud_vue__WEBPACK_IMPORTED_MODULE_0__["AppSidebar"],
+ Content: nextcloud_vue__WEBPACK_IMPORTED_MODULE_0__["Content"],
+ AppDetails: _components_AppDetails__WEBPACK_IMPORTED_MODULE_4__["default"],
+ AppList: _components_AppList__WEBPACK_IMPORTED_MODULE_1__["default"]
},
props: {
- selectedGroup: {
+ category: {
+ type: String,
+ default: 'installed'
+ },
+ id: {
type: String,
- default: null
+ default: ''
}
},
data: function data() {
return {
- // default quota is set to unlimited
- unlimitedQuota: {
- id: 'none',
- label: t('settings', 'Unlimited')
- },
- // temporary value used for multiselect change
- selectedQuota: false,
- externalActions: [],
- showAddGroupEntry: false,
- loadingAddGroup: false,
- showConfig: {
- showStoragePath: false,
- showUserBackend: false,
- showLastLogin: false,
- showNewUserForm: false,
- showLanguages: false
- }
+ searchQuery: ''
};
},
computed: {
- users: function users() {
- return this.$store.getters.getUsers;
- },
- usersOffset: function usersOffset() {
- return this.$store.getters.getUsersOffset;
+ loading: function loading() {
+ return this.$store.getters.loading('categories');
},
- usersLimit: function usersLimit() {
- return this.$store.getters.getUsersLimit;
- },
- // Local settings
- showLanguages: {
- get: function get() {
- return this.getLocalstorage('showLanguages');
- },
- set: function set(status) {
- this.setLocalStorage('showLanguages', status);
- }
+ loadingList: function loadingList() {
+ return this.$store.getters.loading('list');
},
- showLastLogin: {
- get: function get() {
- return this.getLocalstorage('showLastLogin');
- },
- set: function set(status) {
- this.setLocalStorage('showLastLogin', status);
- }
+ currentApp: function currentApp() {
+ var _this = this;
+
+ return this.apps.find(function (app) {
+ return app.id === _this.id;
+ });
},
- showUserBackend: {
- get: function get() {
- return this.getLocalstorage('showUserBackend');
- },
- set: function set(status) {
- this.setLocalStorage('showUserBackend', status);
- }
+ categories: function categories() {
+ return this.$store.getters.getCategories;
},
- showStoragePath: {
- get: function get() {
- return this.getLocalstorage('showStoragePath');
- },
- set: function set(status) {
- this.setLocalStorage('showStoragePath', status);
- }
+ apps: function apps() {
+ return this.$store.getters.getAllApps;
},
- userCount: function userCount() {
- return this.$store.getters.getUserCount;
+ updateCount: function updateCount() {
+ return this.$store.getters.getUpdateCount;
},
settings: function settings() {
return this.$store.getters.getServerData;
},
- // default quota
- quotaOptions: function quotaOptions() {
- // convert the preset array into objects
- var quotaPreset = this.settings.quotaPreset.reduce(function (acc, cur) {
- return acc.concat({
- id: cur,
- label: cur
- });
- }, []); // add default presets
-
- quotaPreset.unshift(this.unlimitedQuota);
- return quotaPreset;
- },
- // mapping saved values to objects
- defaultQuota: {
- get: function get() {
- if (this.selectedQuota !== false) {
- return this.selectedQuota;
- }
-
- if (this.settings.defaultQuota !== this.unlimitedQuota.id && OC.Util.computerFileSize(this.settings.defaultQuota) >= 0) {
- // if value is valid, let's map the quotaOptions or return custom quota
- return {
- id: this.settings.defaultQuota,
- label: this.settings.defaultQuota
- };
- }
-
- return this.unlimitedQuota; // unlimited
- },
- set: function set(quota) {
- this.selectedQuota = quota;
- }
- },
// BUILD APP NAVIGATION MENU OBJECT
menu: function menu() {
- var _this = this;
+ var _this2 = this;
// Data provided php side
- var self = this;
- var groups = this.$store.getters.getGroups;
- groups = Array.isArray(groups) ? groups : []; // Map groups
+ var categories = this.$store.getters.getCategories;
+ categories = Array.isArray(categories) ? categories : []; // Map groups
- groups = groups.map(function (group) {
+ categories = categories.map(function (category) {
var item = {};
- item.id = group.id.replace(' ', '_');
- item.key = item.id;
- item.utils = {}; // router link to
+ item.id = 'app-category-' + category.ident;
+ item.icon = 'icon-category-' + category.ident;
+ item.classes = []; // empty classes, active will be set later
item.router = {
- name: 'group',
+ // router link to
+ name: 'apps-category',
params: {
- selectedGroup: group.id
+ category: category.ident
}
- }; // group name
-
- item.text = group.name;
- item.title = group.name; // users count for all groups
-
- if (group.usercount - group.disabled > 0 || group.usercount === -1) {
- item.utils.counter = group.usercount - group.disabled;
- }
-
- if (item.id !== 'admin' && item.id !== 'disabled' && _this.settings.isAdmin) {
- // add delete button on real groups
- item.utils.actions = [{
- icon: 'icon-delete',
- text: t('settings', 'Remove group'),
- action: function action() {
- self.removeGroup(group.id);
- }
- }];
- }
-
- return item;
- }); // Every item is added on top of the array, so we're going backward
- // Groups, separator, disabled, admin, everyone
- // Add separator
-
- var realGroups = groups.find(function (group) {
- return group.id !== 'disabled' && group.id !== 'admin';
- });
- realGroups = typeof realGroups === 'undefined' ? [] : realGroups;
- realGroups = Array.isArray(realGroups) ? realGroups : [realGroups];
-
- if (realGroups.length > 0) {
- var separator = {
- caption: true,
- text: t('settings', 'Groups')
};
- groups.unshift(separator);
- } // Adjust admin and disabled groups
-
-
- var adminGroup = groups.find(function (group) {
- return group.id === 'admin';
- });
- var disabledGroup = groups.find(function (group) {
- return group.id === 'disabled';
- }); // filter out admin and disabled
-
- groups = groups.filter(function (group) {
- return ['admin', 'disabled'].indexOf(group.id) === -1;
- });
-
- if (adminGroup && adminGroup.text) {
- adminGroup.text = t('settings', 'Admins'); // rename admin group
+ item.text = category.displayName;
+ return item;
+ }); // Add everyone group
- adminGroup.icon = 'icon-user-admin'; // set icon
+ var defaultCategories = [{
+ id: 'app-category-your-apps',
+ classes: [],
+ router: {
+ name: 'apps'
+ },
+ icon: 'icon-category-installed',
+ text: t('settings', 'Your apps')
+ }, {
+ id: 'app-category-enabled',
+ classes: [],
+ icon: 'icon-category-enabled',
+ router: {
+ name: 'apps-category',
+ params: {
+ category: 'enabled'
+ }
+ },
+ text: t('settings', 'Active apps')
+ }, {
+ id: 'app-category-disabled',
+ classes: [],
+ icon: 'icon-category-disabled',
+ router: {
+ name: 'apps-category',
+ params: {
+ category: 'disabled'
+ }
+ },
+ text: t('settings', 'Disabled apps')
+ }];
- groups.unshift(adminGroup); // add admin group if present
+ if (!this.settings.appstoreEnabled) {
+ return defaultCategories;
}
- if (disabledGroup && disabledGroup.text) {
- disabledGroup.text = t('settings', 'Disabled users'); // rename disabled group
-
- disabledGroup.icon = 'icon-disabled-users'; // set icon
-
- if (disabledGroup.utils && (disabledGroup.utils.counter > 0 // add disabled if not empty
- || disabledGroup.utils.counter === -1) // add disabled if ldap enabled
- ) {
- groups.unshift(disabledGroup);
-
- if (disabledGroup.utils.counter === -1) {
- // hides the counter instead of showing -1
- delete disabledGroup.utils.counter;
+ if (this.$store.getters.getUpdateCount > 0) {
+ defaultCategories.push({
+ id: 'app-category-updates',
+ classes: [],
+ icon: 'icon-download',
+ router: {
+ name: 'apps-category',
+ params: {
+ category: 'updates'
}
+ },
+ text: t('settings', 'Updates'),
+ utils: {
+ counter: this.$store.getters.getUpdateCount
}
- } // Add everyone group
-
+ });
+ }
- var everyoneGroup = {
- id: 'everyone',
- key: 'everyone',
- icon: 'icon-contacts-dark',
+ defaultCategories.push({
+ id: 'app-category-app-bundles',
+ classes: [],
+ icon: 'icon-category-app-bundles',
router: {
- name: 'users'
+ name: 'apps-category',
+ params: {
+ category: 'app-bundles'
+ }
},
- text: t('settings', 'Everyone')
- }; // users count
-
- if (this.userCount > 0) {
- vue__WEBPACK_IMPORTED_MODULE_0__["default"].set(everyoneGroup, 'utils', {
- counter: this.userCount
- });
- }
+ text: t('settings', 'App bundles')
+ });
+ categories = defaultCategories.concat(categories); // Set current group as active
- groups.unshift(everyoneGroup);
- var addGroup = {
- id: 'addgroup',
- key: 'addgroup',
- icon: 'icon-add',
- text: t('settings', 'Add group'),
- classes: this.loadingAddGroup ? 'icon-loading-small' : ''
- };
+ var activeGroup = categories.findIndex(function (group) {
+ return group.id === 'app-category-' + _this2.category;
+ });
- if (this.showAddGroupEntry) {
- vue__WEBPACK_IMPORTED_MODULE_0__["default"].set(addGroup, 'edit', {
- text: t('settings', 'Add group'),
- action: this.createGroup,
- reset: function reset() {
- self.showAddGroupEntry = false;
- }
- });
- addGroup.classes = 'editing';
+ if (activeGroup >= 0) {
+ categories[activeGroup].classes.push('active');
} else {
- vue__WEBPACK_IMPORTED_MODULE_0__["default"].set(addGroup, 'action', function () {
- self.showAddGroupEntry = true; // focus input
-
- vue__WEBPACK_IMPORTED_MODULE_0__["default"].nextTick(function () {
- window.addgroup.querySelector('form > input[type="text"]').focus();
- });
- });
+ categories[0].classes.push('active');
}
- groups.unshift(addGroup);
- return groups;
+ categories.push({
+ id: 'app-developer-docs',
+ classes: [],
+ href: this.settings.developerDocumentation,
+ text: t('settings', 'Developer documentation') + ' ↗'
+ }); // Return
+
+ return categories;
+ }
+ },
+ watch: {
+ category: function category(val, old) {
+ this.setSearch('');
}
},
beforeMount: function beforeMount() {
- this.$store.commit('initGroups', {
- groups: this.$store.getters.getServerData.groups,
- orderBy: this.$store.getters.getServerData.sortGroups,
- userCount: this.$store.getters.getServerData.userCount
+ this.$store.dispatch('getCategories');
+ this.$store.dispatch('getAllApps');
+ this.$store.dispatch('getGroups', {
+ offset: 0,
+ limit: 5
});
- this.$store.dispatch('getPasswordPolicyMinLength');
+ this.$store.commit('setUpdateCount', this.$store.getters.getServerData.updateCount);
},
- created: function created() {
- // init the OCA.Settings.UserList object
- // and add the registerAction method
- Object.assign(OCA, {
- Settings: {
- UserList: {
- registerAction: this.registerAction
- }
- }
- });
+ mounted: function mounted() {
+ /**
+ * Register search
+ */
+ this.appSearch = new OCA.Search(this.setSearch, this.resetSearch);
},
methods: {
- toggleNewUserMenu: function toggleNewUserMenu() {
- this.showConfig.showNewUserForm = !this.showConfig.showNewUserForm;
-
- if (this.showConfig.showNewUserForm) {
- vue__WEBPACK_IMPORTED_MODULE_0__["default"].nextTick(function () {
- window.newusername.focus();
- });
- }
- },
- getLocalstorage: function getLocalstorage(key) {
- // force initialization
- var localConfig = this.$localStorage.get(key); // if localstorage is null, fallback to original values
-
- this.showConfig[key] = localConfig !== null ? localConfig === 'true' : this.showConfig[key];
- return this.showConfig[key];
+ setSearch: function setSearch(query) {
+ this.searchQuery = query;
},
- setLocalStorage: function setLocalStorage(key, status) {
- this.showConfig[key] = status;
- this.$localStorage.set(key, status);
- return status;
+ resetSearch: function resetSearch() {
+ this.setSearch('');
},
- removeGroup: function removeGroup(groupid) {
- var self = this; // TODO migrate to a vue js confirm dialog component
-
- OC.dialogs.confirm(t('settings', 'You are about to remove the group {group}. The users will NOT be deleted.', {
- group: groupid
- }), t('settings', 'Please confirm the group removal '), function (success) {
- if (success) {
- self.$store.dispatch('removeGroup', groupid);
+ hideAppDetails: function hideAppDetails() {
+ this.$router.push({
+ name: 'apps-category',
+ params: {
+ category: this.category
}
});
- },
-
- /**
- * Dispatch default quota set request
- *
- * @param {string|Object} quota Quota in readable format '5 GB' or Object {id: '5 GB', label: '5GB'}
- */
- setDefaultQuota: function setDefaultQuota() {
- var _this2 = this;
+ }
+ }
+});
- var quota = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : 'none';
- this.$store.dispatch('setAppConfig', {
- app: 'files',
- key: 'default_quota',
- // ensure we only send the preset id
- value: quota.id ? quota.id : quota
- }).then(function () {
- if (_typeof(quota) !== 'object') {
- quota = {
- id: quota,
- label: quota
- };
- }
+/***/ }),
- _this2.defaultQuota = quota;
- });
- },
+/***/ "./node_modules/css-loader/dist/cjs.js!./node_modules/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/vue-loader/lib/index.js?!./apps/settings/src/components/AppDetails.vue?vue&type=style&index=0&id=59a92e62&scoped=true&lang=css&":
+/*!***************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** ./node_modules/css-loader/dist/cjs.js!./node_modules/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/vue-loader/lib??vue-loader-options!./apps/settings/src/components/AppDetails.vue?vue&type=style&index=0&id=59a92e62&scoped=true&lang=css& ***!
+ \***************************************************************************************************************************************************************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, exports, __webpack_require__) {
- /**
- * Validate quota string to make sure it's a valid human file size
- *
- * @param {string} quota Quota in readable format '5 GB'
- * @returns {Promise|boolean}
- */
- validateQuota: function validateQuota(quota) {
- // only used for new presets sent through @Tag
- var validQuota = OC.Util.computerFileSize(quota);
+// Imports
+var ___CSS_LOADER_API_IMPORT___ = __webpack_require__(/*! ../../../../node_modules/css-loader/dist/runtime/api.js */ "./node_modules/css-loader/dist/runtime/api.js");
+exports = ___CSS_LOADER_API_IMPORT___(false);
+// Module
+exports.push([module.i, "\n.force[data-v-59a92e62] {\n\tbackground: var(--color-main-background);\n\tborder-color: var(--color-error);\n\tcolor: var(--color-error);\n}\n.force[data-v-59a92e62]:hover,\n.force[data-v-59a92e62]:active {\n\tbackground: var(--color-error);\n\tborder-color: var(--color-error) !important;\n\tcolor: var(--color-main-background);\n}\n", ""]);
+// Exports
+module.exports = exports;
- if (validQuota === null) {
- return this.setDefaultQuota('none');
- } else {
- // unify format output
- return this.setDefaultQuota(OC.Util.humanFileSize(OC.Util.computerFileSize(quota)));
- }
- },
- /**
- * Register a new action for the user menu
- *
- * @param {string} icon the icon class
- * @param {string} text the text to display
- * @param {Function} action the function to run
- * @returns {Array}
- */
- registerAction: function registerAction(icon, text, action) {
- this.externalActions.push({
- icon: icon,
- text: text,
- action: action
- });
- return this.externalActions;
- },
+/***/ }),
- /**
- * Create a new group
- *
- * @param {Object} event The form submit event
- */
- createGroup: function createGroup(event) {
- var _this3 = this;
+/***/ "./node_modules/css-loader/dist/cjs.js!./node_modules/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/vue-loader/lib/index.js?!./apps/settings/src/components/AppList/AppItem.vue?vue&type=style&index=0&id=429da85a&scoped=true&lang=css&":
+/*!********************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** ./node_modules/css-loader/dist/cjs.js!./node_modules/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/vue-loader/lib??vue-loader-options!./apps/settings/src/components/AppList/AppItem.vue?vue&type=style&index=0&id=429da85a&scoped=true&lang=css& ***!
+ \********************************************************************************************************************************************************************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, exports, __webpack_require__) {
- var gid = event.target[0].value;
- this.loadingAddGroup = true;
- this.$store.dispatch('addGroup', gid).then(function () {
- _this3.showAddGroupEntry = false;
- _this3.loadingAddGroup = false;
+// Imports
+var ___CSS_LOADER_API_IMPORT___ = __webpack_require__(/*! ../../../../../node_modules/css-loader/dist/runtime/api.js */ "./node_modules/css-loader/dist/runtime/api.js");
+exports = ___CSS_LOADER_API_IMPORT___(false);
+// Module
+exports.push([module.i, "\n.force[data-v-429da85a] {\n\tbackground: var(--color-main-background);\n\tborder-color: var(--color-error);\n\tcolor: var(--color-error);\n}\n.force[data-v-429da85a]:hover,\n.force[data-v-429da85a]:active {\n\tbackground: var(--color-error);\n\tborder-color: var(--color-error) !important;\n\tcolor: var(--color-main-background);\n}\n", ""]);
+// Exports
+module.exports = exports;
- _this3.$router.push({
- name: 'group',
- params: {
- selectedGroup: gid
- }
- });
- }).catch(function () {
- _this3.loadingAddGroup = false;
- });
- }
- }
-});
/***/ }),
-/***/ "./node_modules/vue-loader/lib/loaders/templateLoader.js?!./node_modules/vue-loader/lib/index.js?!./apps/settings/src/components/UserList.vue?vue&type=template&id=6cba3aca&":
-/*!****************************************************************************************************************************************************************************************************************!*\
- !*** ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./apps/settings/src/components/UserList.vue?vue&type=template&id=6cba3aca& ***!
- \****************************************************************************************************************************************************************************************************************/
+/***/ "./node_modules/vue-loader/lib/loaders/templateLoader.js?!./node_modules/vue-loader/lib/index.js?!./apps/settings/src/components/AppDetails.vue?vue&type=template&id=59a92e62&scoped=true&":
+/*!******************************************************************************************************************************************************************************************************************************!*\
+ !*** ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./apps/settings/src/components/AppDetails.vue?vue&type=template&id=59a92e62&scoped=true& ***!
+ \******************************************************************************************************************************************************************************************************************************/
/*! exports provided: render, staticRenderFns */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
@@ -2697,505 +2035,526 @@ var render = function() {
var _c = _vm._self._c || _h
return _c(
"div",
- {
- staticClass: "user-list-grid",
- attrs: { id: "app-content" },
- on: {
- "&scroll": function($event) {
- return _vm.onScroll($event)
- }
- }
- },
+ { staticStyle: { padding: "20px" }, attrs: { id: "app-details-view" } },
[
- _c(
- "div",
- {
- staticClass: "row",
- class: { sticky: _vm.scrolled && !_vm.showConfig.showNewUserForm },
- attrs: { id: "grid-header" }
- },
- [
- _c("div", { staticClass: "avatar", attrs: { id: "headerAvatar" } }),
- _vm._v(" "),
- _c("div", { staticClass: "name", attrs: { id: "headerName" } }, [
- _vm._v(
- "\n\t\t\t" + _vm._s(_vm.t("settings", "Username")) + "\n\n\t\t\t"
- ),
- _c("div", { staticClass: "subtitle" }, [
- _vm._v(
- "\n\t\t\t\t" +
- _vm._s(_vm.t("settings", "Display name")) +
- "\n\t\t\t"
- )
- ])
- ]),
- _vm._v(" "),
- _c(
+ _c("h2", [
+ !_vm.app.preview
+ ? _c("div", { staticClass: "icon-settings-dark" })
+ : _vm._e(),
+ _vm._v(" "),
+ _vm.app.previewAsIcon && _vm.app.preview
+ ? _c(
+ "svg",
+ { attrs: { width: "32", height: "32", viewBox: "0 0 32 32" } },
+ [
+ _c("defs", [
+ _c(
+ "filter",
+ { attrs: { id: _vm.filterId } },
+ [
+ _c("feColorMatrix", {
+ attrs: {
+ in: "SourceGraphic",
+ type: "matrix",
+ values: "-1 0 0 0 1 0 -1 0 0 1 0 0 -1 0 1 0 0 0 1 0"
+ }
+ })
+ ],
+ 1
+ )
+ ]),
+ _vm._v(" "),
+ _c("image", {
+ staticClass: "app-icon",
+ attrs: {
+ x: "0",
+ y: "0",
+ width: "32",
+ height: "32",
+ preserveAspectRatio: "xMinYMin meet",
+ filter: _vm.filterUrl,
+ "xlink:href": _vm.app.preview
+ }
+ })
+ ]
+ )
+ : _vm._e(),
+ _vm._v("\n\t\t" + _vm._s(_vm.app.name) + "\n\t")
+ ]),
+ _vm._v(" "),
+ _vm.app.screenshot
+ ? _c("img", { attrs: { src: _vm.app.screenshot, width: "100%" } })
+ : _vm._e(),
+ _vm._v(" "),
+ _vm.app.level === 300 || _vm.app.level === 200 || _vm.hasRating
+ ? _c(
"div",
- { staticClass: "password", attrs: { id: "headerPassword" } },
+ { staticClass: "app-level" },
[
- _vm._v(
- "\n\t\t\t" + _vm._s(_vm.t("settings", "Password")) + "\n\t\t"
- )
- ]
- ),
- _vm._v(" "),
- _c(
- "div",
- { staticClass: "mailAddress", attrs: { id: "headerAddress" } },
- [_vm._v("\n\t\t\t" + _vm._s(_vm.t("settings", "Email")) + "\n\t\t")]
- ),
- _vm._v(" "),
- _c("div", { staticClass: "groups", attrs: { id: "headerGroups" } }, [
- _vm._v("\n\t\t\t" + _vm._s(_vm.t("settings", "Groups")) + "\n\t\t")
- ]),
- _vm._v(" "),
- _vm.subAdminsGroups.length > 0 && _vm.settings.isAdmin
- ? _c(
- "div",
- { staticClass: "subadmins", attrs: { id: "headerSubAdmins" } },
- [
- _vm._v(
- "\n\t\t\t" +
- _vm._s(_vm.t("settings", "Group admin for")) +
- "\n\t\t"
- )
- ]
- )
- : _vm._e(),
- _vm._v(" "),
- _c("div", { staticClass: "quota", attrs: { id: "headerQuota" } }, [
- _vm._v("\n\t\t\t" + _vm._s(_vm.t("settings", "Quota")) + "\n\t\t")
- ]),
- _vm._v(" "),
- _vm.showConfig.showLanguages
- ? _c(
- "div",
- { staticClass: "languages", attrs: { id: "headerLanguages" } },
- [
- _vm._v(
- "\n\t\t\t" +
- _vm._s(_vm.t("settings", "Language")) +
- "\n\t\t"
- )
- ]
- )
- : _vm._e(),
- _vm._v(" "),
- _vm.showConfig.showUserBackend || _vm.showConfig.showStoragePath
- ? _c("div", { staticClass: "headerUserBackend userBackend" }, [
- _vm.showConfig.showUserBackend
- ? _c("div", { staticClass: "userBackend" }, [
+ _vm.app.level === 300
+ ? _c(
+ "span",
+ {
+ directives: [
+ {
+ name: "tooltip",
+ rawName: "v-tooltip.auto",
+ value: _vm.t(
+ "settings",
+ "This app is supported via your current Nextcloud subscription."
+ ),
+ expression:
+ "t('settings', 'This app is supported via your current Nextcloud subscription.')",
+ modifiers: { auto: true }
+ }
+ ],
+ staticClass: "supported icon-checkmark-color"
+ },
+ [
_vm._v(
- "\n\t\t\t\t" +
- _vm._s(_vm.t("settings", "User backend")) +
- "\n\t\t\t"
+ "\n\t\t\t" + _vm._s(_vm.t("settings", "Supported"))
)
- ])
- : _vm._e(),
- _vm._v(" "),
- _vm.showConfig.showStoragePath
- ? _c("div", { staticClass: "subtitle storageLocation" }, [
- _vm._v(
- "\n\t\t\t\t" +
- _vm._s(_vm.t("settings", "Storage location")) +
- "\n\t\t\t"
+ ]
+ )
+ : _vm._e(),
+ _vm._v(" "),
+ _vm.app.level === 200
+ ? _c(
+ "span",
+ {
+ directives: [
+ {
+ name: "tooltip",
+ rawName: "v-tooltip.auto",
+ value: _vm.t(
+ "settings",
+ "Featured apps are developed by and within the community. They offer central functionality and are ready for production use."
+ ),
+ expression:
+ "t('settings', 'Featured apps are developed by and within the community. They offer central functionality and are ready for production use.')",
+ modifiers: { auto: true }
+ }
+ ],
+ staticClass: "official icon-checkmark"
+ },
+ [_vm._v("\n\t\t\t" + _vm._s(_vm.t("settings", "Featured")))]
+ )
+ : _vm._e(),
+ _vm._v(" "),
+ _vm.hasRating
+ ? _c("AppScore", {
+ attrs: { score: _vm.app.appstoreData.ratingOverall }
+ })
+ : _vm._e()
+ ],
+ 1
+ )
+ : _vm._e(),
+ _vm._v(" "),
+ _vm.author
+ ? _c(
+ "div",
+ { staticClass: "app-author" },
+ [
+ _vm._v("\n\t\t" + _vm._s(_vm.t("settings", "by")) + "\n\t\t"),
+ _vm._l(_vm.author, function(a, index) {
+ return _c("span", { key: index }, [
+ a["@attributes"] && a["@attributes"]["homepage"]
+ ? _c(
+ "a",
+ { attrs: { href: a["@attributes"]["homepage"] } },
+ [_vm._v(_vm._s(a["@value"]))]
)
- ])
- : _vm._e()
- ])
- : _vm._e(),
- _vm._v(" "),
- _vm.showConfig.showLastLogin
- ? _c("div", { staticClass: "headerLastLogin lastLogin" }, [
- _vm._v(
- "\n\t\t\t" +
- _vm._s(_vm.t("settings", "Last login")) +
- "\n\t\t"
- )
- ])
- : _vm._e(),
- _vm._v(" "),
- _c("div", { staticClass: "userActions" })
- ]
- ),
+ : a["@value"]
+ ? _c("span", [_vm._v(_vm._s(a["@value"]))])
+ : _c("span", [_vm._v(_vm._s(a))]),
+ index + 1 < _vm.author.length
+ ? _c("span", [_vm._v(", ")])
+ : _vm._e()
+ ])
+ })
+ ],
+ 2
+ )
+ : _vm._e(),
_vm._v(" "),
- _c(
- "form",
- {
- directives: [
- {
- name: "show",
- rawName: "v-show",
- value: _vm.showConfig.showNewUserForm,
- expression: "showConfig.showNewUserForm"
- }
- ],
- staticClass: "row",
- class: { sticky: _vm.scrolled && _vm.showConfig.showNewUserForm },
- attrs: { id: "new-user", disabled: _vm.loading.all },
- on: {
- submit: function($event) {
- $event.preventDefault()
- return _vm.createUser($event)
- }
- }
- },
- [
- _c("div", {
- class: _vm.loading.all ? "icon-loading-small" : "icon-add"
- }),
- _vm._v(" "),
- _c("div", { staticClass: "name" }, [
- _c("input", {
- directives: [
- {
- name: "model",
- rawName: "v-model",
- value: _vm.newUser.id,
- expression: "newUser.id"
- }
- ],
- ref: "newusername",
- attrs: {
- id: "newusername",
- disabled: _vm.settings.newUserGenerateUserID,
- placeholder: _vm.settings.newUserGenerateUserID
- ? _vm.t("settings", "Will be autogenerated")
- : _vm.t("settings", "Username"),
- autocapitalize: "none",
- autocomplete: "off",
- autocorrect: "off",
- name: "username",
- pattern: "[a-zA-Z0-9 _\\.@\\-']+",
- required: "",
- type: "text"
- },
- domProps: { value: _vm.newUser.id },
- on: {
- input: function($event) {
- if ($event.target.composing) {
- return
+ _vm.licence
+ ? _c("div", { staticClass: "app-licence" }, [
+ _vm._v("\n\t\t" + _vm._s(_vm.licence) + "\n\t")
+ ])
+ : _vm._e(),
+ _vm._v(" "),
+ _c("div", { staticClass: "actions" }, [
+ _c("div", { staticClass: "actions-buttons" }, [
+ _vm.app.update
+ ? _c("input", {
+ staticClass: "update primary",
+ attrs: {
+ type: "button",
+ value: _vm.t("settings", "Update to {version}", {
+ version: _vm.app.update
+ }),
+ disabled: _vm.installing || _vm.loading(_vm.app.id)
+ },
+ on: {
+ click: function($event) {
+ return _vm.update(_vm.app.id)
}
- _vm.$set(_vm.newUser, "id", $event.target.value)
}
- }
- })
- ]),
+ })
+ : _vm._e(),
_vm._v(" "),
- _c("div", { staticClass: "displayName" }, [
- _c("input", {
- directives: [
- {
- name: "model",
- rawName: "v-model",
- value: _vm.newUser.displayName,
- expression: "newUser.displayName"
- }
- ],
- attrs: {
- id: "newdisplayname",
- placeholder: _vm.t("settings", "Display name"),
- autocapitalize: "none",
- autocomplete: "off",
- autocorrect: "off",
- name: "displayname",
- type: "text"
- },
- domProps: { value: _vm.newUser.displayName },
- on: {
- input: function($event) {
- if ($event.target.composing) {
- return
+ _vm.app.canUnInstall
+ ? _c("input", {
+ staticClass: "uninstall",
+ attrs: {
+ type: "button",
+ value: _vm.t("settings", "Remove"),
+ disabled: _vm.installing || _vm.loading(_vm.app.id)
+ },
+ on: {
+ click: function($event) {
+ return _vm.remove(_vm.app.id)
}
- _vm.$set(_vm.newUser, "displayName", $event.target.value)
}
- }
- })
- ]),
+ })
+ : _vm._e(),
_vm._v(" "),
- _c("div", { staticClass: "password" }, [
- _c("input", {
- directives: [
- {
- name: "model",
- rawName: "v-model",
- value: _vm.newUser.password,
- expression: "newUser.password"
- }
- ],
- ref: "newuserpassword",
- attrs: {
- id: "newuserpassword",
- minlength: _vm.minPasswordLength,
- placeholder: _vm.t("settings", "Password"),
- required: _vm.newUser.mailAddress === "",
- autocapitalize: "none",
- autocomplete: "new-password",
- autocorrect: "off",
- name: "password",
- type: "password"
- },
- domProps: { value: _vm.newUser.password },
- on: {
- input: function($event) {
- if ($event.target.composing) {
- return
+ _vm.app.active
+ ? _c("input", {
+ staticClass: "enable",
+ attrs: {
+ type: "button",
+ value: _vm.t("settings", "Disable"),
+ disabled: _vm.installing || _vm.loading(_vm.app.id)
+ },
+ on: {
+ click: function($event) {
+ return _vm.disable(_vm.app.id)
}
- _vm.$set(_vm.newUser, "password", $event.target.value)
}
- }
- })
- ]),
+ })
+ : _vm._e(),
_vm._v(" "),
- _c("div", { staticClass: "mailAddress" }, [
- _c("input", {
- directives: [
- {
- name: "model",
- rawName: "v-model",
- value: _vm.newUser.mailAddress,
- expression: "newUser.mailAddress"
- }
- ],
- attrs: {
- id: "newemail",
- placeholder: _vm.t("settings", "Email"),
- required:
- _vm.newUser.password === "" ||
- _vm.settings.newUserRequireEmail,
- autocapitalize: "none",
- autocomplete: "off",
- autocorrect: "off",
- name: "email",
- type: "email"
- },
- domProps: { value: _vm.newUser.mailAddress },
- on: {
- input: function($event) {
- if ($event.target.composing) {
- return
+ !_vm.app.active && (_vm.app.canInstall || _vm.app.isCompatible)
+ ? _c("input", {
+ directives: [
+ {
+ name: "tooltip",
+ rawName: "v-tooltip.auto",
+ value: _vm.enableButtonTooltip,
+ expression: "enableButtonTooltip",
+ modifiers: { auto: true }
+ }
+ ],
+ staticClass: "enable primary",
+ attrs: {
+ type: "button",
+ value: _vm.enableButtonText,
+ disabled:
+ !_vm.app.canInstall ||
+ _vm.installing ||
+ _vm.loading(_vm.app.id)
+ },
+ on: {
+ click: function($event) {
+ return _vm.enable(_vm.app.id)
}
- _vm.$set(_vm.newUser, "mailAddress", $event.target.value)
}
- }
- })
- ]),
- _vm._v(" "),
- _c(
- "div",
- { staticClass: "groups" },
- [
- !_vm.settings.isAdmin
- ? _c("input", {
- class: { "icon-loading-small": _vm.loading.groups },
- attrs: {
- id: "newgroups",
- required: !_vm.settings.isAdmin,
- tabindex: "-1",
- type: "text"
- },
- domProps: { value: _vm.newUser.groups }
- })
- : _vm._e(),
- _vm._v(" "),
- _c(
- "Multiselect",
- {
- staticClass: "multiselect-vue",
- attrs: {
- "close-on-select": false,
- disabled: _vm.loading.groups || _vm.loading.all,
- multiple: true,
- options: _vm.canAddGroups,
- placeholder: _vm.t("settings", "Add user in group"),
- "tag-width": 60,
- taggable: true,
- label: "name",
- "tag-placeholder": "create",
- "track-by": "id"
- },
- on: { tag: _vm.createGroup },
- model: {
- value: _vm.newUser.groups,
- callback: function($$v) {
- _vm.$set(_vm.newUser, "groups", $$v)
- },
- expression: "newUser.groups"
+ })
+ : !_vm.app.active
+ ? _c("input", {
+ directives: [
+ {
+ name: "tooltip",
+ rawName: "v-tooltip.auto",
+ value: _vm.forceEnableButtonTooltip,
+ expression: "forceEnableButtonTooltip",
+ modifiers: { auto: true }
}
- },
- [
- _c(
- "span",
- { attrs: { slot: "noResult" }, slot: "noResult" },
- [_vm._v(_vm._s(_vm.t("settings", "No results")))]
- )
- ]
- )
- ],
- 1
- ),
- _vm._v(" "),
- _vm.subAdminsGroups.length > 0 && _vm.settings.isAdmin
- ? _c(
- "div",
- { staticClass: "subadmins" },
- [
- _c(
- "Multiselect",
- {
- staticClass: "multiselect-vue",
- attrs: {
- "close-on-select": false,
- multiple: true,
- options: _vm.subAdminsGroups,
- placeholder: _vm.t("settings", "Set user as admin for"),
- "tag-width": 60,
- label: "name",
- "track-by": "id"
- },
- model: {
- value: _vm.newUser.subAdminsGroups,
- callback: function($$v) {
- _vm.$set(_vm.newUser, "subAdminsGroups", $$v)
- },
- expression: "newUser.subAdminsGroups"
- }
- },
- [
- _c(
- "span",
- { attrs: { slot: "noResult" }, slot: "noResult" },
- [_vm._v(_vm._s(_vm.t("settings", "No results")))]
- )
- ]
- )
],
- 1
- )
- : _vm._e(),
- _vm._v(" "),
- _c(
- "div",
- { staticClass: "quota" },
- [
- _c("Multiselect", {
- staticClass: "multiselect-vue",
+ staticClass: "enable force",
attrs: {
- "allow-empty": false,
- options: _vm.quotaOptions,
- placeholder: _vm.t("settings", "Select user quota"),
- taggable: true,
- label: "label",
- "track-by": "id"
+ type: "button",
+ value: _vm.forceEnableButtonText,
+ disabled: _vm.installing || _vm.loading(_vm.app.id)
},
- on: { tag: _vm.validateQuota },
- model: {
- value: _vm.newUser.quota,
- callback: function($$v) {
- _vm.$set(_vm.newUser, "quota", $$v)
- },
- expression: "newUser.quota"
+ on: {
+ click: function($event) {
+ return _vm.forceEnable(_vm.app.id)
+ }
}
})
- ],
- 1
- ),
- _vm._v(" "),
- _vm.showConfig.showLanguages
+ : _vm._e()
+ ]),
+ _vm._v(" "),
+ _c("div", { staticClass: "app-groups" }, [
+ _vm.app.active && _vm.canLimitToGroups(_vm.app)
? _c(
"div",
- { staticClass: "languages" },
+ { staticClass: "groups-enable" },
[
- _c("Multiselect", {
- staticClass: "multiselect-vue",
+ _c("input", {
+ directives: [
+ {
+ name: "model",
+ rawName: "v-model",
+ value: _vm.groupCheckedAppsData,
+ expression: "groupCheckedAppsData"
+ }
+ ],
+ staticClass: "groups-enable__checkbox checkbox",
attrs: {
- "allow-empty": false,
- options: _vm.languages,
- placeholder: _vm.t("settings", "Default language"),
- "group-label": "label",
- "group-values": "languages",
- label: "name",
- "track-by": "code"
+ id: _vm.prefix("groups_enable", _vm.app.id),
+ type: "checkbox"
+ },
+ domProps: {
+ value: _vm.app.id,
+ checked: Array.isArray(_vm.groupCheckedAppsData)
+ ? _vm._i(_vm.groupCheckedAppsData, _vm.app.id) > -1
+ : _vm.groupCheckedAppsData
},
- model: {
- value: _vm.newUser.language,
- callback: function($$v) {
- _vm.$set(_vm.newUser, "language", $$v)
- },
- expression: "newUser.language"
+ on: {
+ change: [
+ function($event) {
+ var $$a = _vm.groupCheckedAppsData,
+ $$el = $event.target,
+ $$c = $$el.checked ? true : false
+ if (Array.isArray($$a)) {
+ var $$v = _vm.app.id,
+ $$i = _vm._i($$a, $$v)
+ if ($$el.checked) {
+ $$i < 0 &&
+ (_vm.groupCheckedAppsData = $$a.concat([$$v]))
+ } else {
+ $$i > -1 &&
+ (_vm.groupCheckedAppsData = $$a
+ .slice(0, $$i)
+ .concat($$a.slice($$i + 1)))
+ }
+ } else {
+ _vm.groupCheckedAppsData = $$c
+ }
+ },
+ _vm.setGroupLimit
+ ]
}
- })
+ }),
+ _vm._v(" "),
+ _c(
+ "label",
+ { attrs: { for: _vm.prefix("groups_enable", _vm.app.id) } },
+ [_vm._v(_vm._s(_vm.t("settings", "Limit to groups")))]
+ ),
+ _vm._v(" "),
+ _c("input", {
+ staticClass: "group_select",
+ attrs: {
+ type: "hidden",
+ title: _vm.t("settings", "All"),
+ value: ""
+ }
+ }),
+ _vm._v(" "),
+ _vm.isLimitedToGroups(_vm.app)
+ ? _c(
+ "Multiselect",
+ {
+ staticClass: "multiselect-vue",
+ attrs: {
+ options: _vm.groups,
+ value: _vm.appGroups,
+ "options-limit": 5,
+ placeholder: _vm.t(
+ "settings",
+ "Limit app usage to groups"
+ ),
+ label: "name",
+ "track-by": "id",
+ multiple: true,
+ "close-on-select": false,
+ "tag-width": 60
+ },
+ on: {
+ select: _vm.addGroupLimitation,
+ remove: _vm.removeGroupLimitation,
+ "search-change": _vm.asyncFindGroup
+ }
+ },
+ [
+ _c(
+ "span",
+ { attrs: { slot: "noResult" }, slot: "noResult" },
+ [_vm._v(_vm._s(_vm.t("settings", "No results")))]
+ )
+ ]
+ )
+ : _vm._e()
],
1
)
- : _vm._e(),
- _vm._v(" "),
- _vm.showConfig.showStoragePath
- ? _c("div", { staticClass: "storageLocation" })
- : _vm._e(),
- _vm._v(" "),
- _vm.showConfig.showUserBackend
- ? _c("div", { staticClass: "userBackend" })
- : _vm._e(),
- _vm._v(" "),
- _vm.showConfig.showLastLogin
- ? _c("div", { staticClass: "lastLogin" })
- : _vm._e(),
- _vm._v(" "),
- _c("div", { staticClass: "userActions" }, [
- _c("input", {
- staticClass: "button primary icon-checkmark-white has-tooltip",
- attrs: {
- id: "newsubmit",
- title: _vm.t("settings", "Add a new user"),
- type: "submit",
- value: ""
- }
- })
- ])
- ]
- ),
- _vm._v(" "),
- _vm._l(_vm.filteredUsers, function(user, key) {
- return _c("user-row", {
- key: key,
- attrs: {
- "external-actions": _vm.externalActions,
- groups: _vm.groups,
- languages: _vm.languages,
- "quota-options": _vm.quotaOptions,
- settings: _vm.settings,
- "show-config": _vm.showConfig,
- "sub-admins-groups": _vm.subAdminsGroups,
- user: user
- }
- })
- }),
+ : _vm._e()
+ ])
+ ]),
_vm._v(" "),
- _c(
- "InfiniteLoading",
- { ref: "infiniteLoading", on: { infinite: _vm.infiniteHandler } },
- [
- _c("div", { attrs: { slot: "spinner" }, slot: "spinner" }, [
- _c("div", { staticClass: "users-icon-loading icon-loading" })
- ]),
- _vm._v(" "),
- _c("div", { attrs: { slot: "no-more" }, slot: "no-more" }, [
- _c("div", { staticClass: "users-list-end" })
- ]),
- _vm._v(" "),
- _c("div", { attrs: { slot: "no-results" }, slot: "no-results" }, [
- _c("div", { attrs: { id: "emptycontent" } }, [
- _c("div", { staticClass: "icon-contacts-dark" }),
- _vm._v(" "),
- _c("h2", [_vm._v(_vm._s(_vm.t("settings", "No users in here")))])
+ _c("ul", { staticClass: "app-dependencies" }, [
+ _vm.app.missingMinOwnCloudVersion
+ ? _c("li", [
+ _vm._v(
+ "\n\t\t\t" +
+ _vm._s(
+ _vm.t(
+ "settings",
+ "This app has no minimum Nextcloud version assigned. This will be an error in the future."
+ )
+ ) +
+ "\n\t\t"
+ )
])
- ])
- ]
- )
- ],
- 2
+ : _vm._e(),
+ _vm._v(" "),
+ _vm.app.missingMaxOwnCloudVersion
+ ? _c("li", [
+ _vm._v(
+ "\n\t\t\t" +
+ _vm._s(
+ _vm.t(
+ "settings",
+ "This app has no maximum Nextcloud version assigned. This will be an error in the future."
+ )
+ ) +
+ "\n\t\t"
+ )
+ ])
+ : _vm._e(),
+ _vm._v(" "),
+ !_vm.app.canInstall
+ ? _c("li", [
+ _vm._v(
+ "\n\t\t\t" +
+ _vm._s(
+ _vm.t(
+ "settings",
+ "This app cannot be installed because the following dependencies are not fulfilled:"
+ )
+ ) +
+ "\n\t\t\t"
+ ),
+ _c(
+ "ul",
+ { staticClass: "missing-dependencies" },
+ _vm._l(_vm.app.missingDependencies, function(dep, index) {
+ return _c("li", { key: index }, [
+ _vm._v("\n\t\t\t\t\t" + _vm._s(dep) + "\n\t\t\t\t")
+ ])
+ }),
+ 0
+ )
+ ])
+ : _vm._e()
+ ]),
+ _vm._v(" "),
+ _c("p", { staticClass: "documentation" }, [
+ !_vm.app.internal
+ ? _c(
+ "a",
+ {
+ staticClass: "appslink",
+ attrs: {
+ href: _vm.appstoreUrl,
+ target: "_blank",
+ rel: "noreferrer noopener"
+ }
+ },
+ [_vm._v(_vm._s(_vm.t("settings", "View in store")) + " ↗")]
+ )
+ : _vm._e(),
+ _vm._v(" "),
+ _vm.app.website
+ ? _c(
+ "a",
+ {
+ staticClass: "appslink",
+ attrs: {
+ href: _vm.app.website,
+ target: "_blank",
+ rel: "noreferrer noopener"
+ }
+ },
+ [_vm._v(_vm._s(_vm.t("settings", "Visit website")) + " ↗")]
+ )
+ : _vm._e(),
+ _vm._v(" "),
+ _vm.app.bugs
+ ? _c(
+ "a",
+ {
+ staticClass: "appslink",
+ attrs: {
+ href: _vm.app.bugs,
+ target: "_blank",
+ rel: "noreferrer noopener"
+ }
+ },
+ [_vm._v(_vm._s(_vm.t("settings", "Report a bug")) + " ↗")]
+ )
+ : _vm._e(),
+ _vm._v(" "),
+ _vm.app.documentation && _vm.app.documentation.user
+ ? _c(
+ "a",
+ {
+ staticClass: "appslink",
+ attrs: {
+ href: _vm.app.documentation.user,
+ target: "_blank",
+ rel: "noreferrer noopener"
+ }
+ },
+ [_vm._v(_vm._s(_vm.t("settings", "User documentation")) + " ↗")]
+ )
+ : _vm._e(),
+ _vm._v(" "),
+ _vm.app.documentation && _vm.app.documentation.admin
+ ? _c(
+ "a",
+ {
+ staticClass: "appslink",
+ attrs: {
+ href: _vm.app.documentation.admin,
+ target: "_blank",
+ rel: "noreferrer noopener"
+ }
+ },
+ [_vm._v(_vm._s(_vm.t("settings", "Admin documentation")) + " ↗")]
+ )
+ : _vm._e(),
+ _vm._v(" "),
+ _vm.app.documentation && _vm.app.documentation.developer
+ ? _c(
+ "a",
+ {
+ staticClass: "appslink",
+ attrs: {
+ href: _vm.app.documentation.developer,
+ target: "_blank",
+ rel: "noreferrer noopener"
+ }
+ },
+ [
+ _vm._v(
+ _vm._s(_vm.t("settings", "Developer documentation")) + " ↗"
+ )
+ ]
+ )
+ : _vm._e()
+ ]),
+ _vm._v(" "),
+ _c("div", {
+ staticClass: "app-description",
+ domProps: { innerHTML: _vm._s(_vm.renderMarkdown) }
+ })
+ ]
)
}
var staticRenderFns = []
@@ -3205,10 +2564,10 @@ render._withStripped = true
/***/ }),
-/***/ "./node_modules/vue-loader/lib/loaders/templateLoader.js?!./node_modules/vue-loader/lib/index.js?!./apps/settings/src/components/UserList/UserRow.vue?vue&type=template&id=77960baa&":
-/*!************************************************************************************************************************************************************************************************************************!*\
- !*** ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./apps/settings/src/components/UserList/UserRow.vue?vue&type=template&id=77960baa& ***!
- \************************************************************************************************************************************************************************************************************************/
+/***/ "./node_modules/vue-loader/lib/loaders/templateLoader.js?!./node_modules/vue-loader/lib/index.js?!./apps/settings/src/components/AppList.vue?vue&type=template&id=6d1e92a4&":
+/*!***************************************************************************************************************************************************************************************************************!*\
+ !*** ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./apps/settings/src/components/AppList.vue?vue&type=template&id=6d1e92a4& ***!
+ \***************************************************************************************************************************************************************************************************************/
/*! exports provided: render, staticRenderFns */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
@@ -3220,476 +2579,203 @@ var render = function() {
var _vm = this
var _h = _vm.$createElement
var _c = _vm._self._c || _h
- return Object.keys(_vm.user).length === 1
- ? _c("div", { staticClass: "row", attrs: { "data-id": _vm.user.id } }, [
- _c(
- "div",
- {
- staticClass: "avatar",
- class: {
- "icon-loading-small":
- _vm.loading.delete || _vm.loading.disable || _vm.loading.wipe
- }
- },
- [
- !_vm.loading.delete && !_vm.loading.disable && !_vm.loading.wipe
- ? _c("img", {
- attrs: {
- src: _vm.generateAvatar(_vm.user.id, 32),
- srcset:
- _vm.generateAvatar(_vm.user.id, 64) +
- " 2x, " +
- _vm.generateAvatar(_vm.user.id, 128) +
- " 4x",
- alt: "",
- height: "32",
- width: "32"
- }
- })
- : _vm._e()
- ]
- ),
- _vm._v(" "),
- _c("div", { staticClass: "name" }, [
- _vm._v("\n\t\t" + _vm._s(_vm.user.id) + "\n\t")
- ]),
- _vm._v(" "),
- _c("div", { staticClass: "obfuscated" }, [
- _vm._v(
- "\n\t\t" +
- _vm._s(
- _vm.t(
- "settings",
- "You do not have permissions to see the details of this user"
- )
- ) +
- "\n\t"
- )
- ])
- ])
- : !_vm.editing
- ? _c("UserRowSimple", {
- attrs: {
- editing: _vm.editing,
- "feedback-message": _vm.feedbackMessage,
- groups: _vm.groups,
- languages: _vm.languages,
- loading: _vm.loading,
- "opened-menu": _vm.openedMenu,
- settings: _vm.settings,
- "show-config": _vm.showConfig,
- "sub-admins-groups": _vm.subAdminsGroups,
- "user-actions": _vm.userActions,
- user: _vm.user
- },
- on: {
- "update:editing": function($event) {
- _vm.editing = $event
- },
- hideMenu: _vm.hideMenu,
- toggleMenu: _vm.toggleMenu
- }
- })
- : _c(
- "div",
- {
- staticClass: "row row--editable",
- class: { disabled: _vm.loading.delete || _vm.loading.disable },
- attrs: { "data-id": _vm.user.id }
+ return _c("div", { attrs: { id: "app-content-inner" } }, [
+ _c(
+ "div",
+ {
+ staticClass: "apps-list",
+ class: {
+ installed: _vm.useBundleView || _vm.useListView,
+ store: _vm.useAppStoreView
},
- [
- _c(
- "div",
- {
- staticClass: "avatar",
- class: {
- "icon-loading-small":
- _vm.loading.delete || _vm.loading.disable || _vm.loading.wipe
- }
- },
- [
- !_vm.loading.delete && !_vm.loading.disable && !_vm.loading.wipe
- ? _c("img", {
- attrs: {
- src: _vm.generateAvatar(_vm.user.id, 32),
- srcset:
- _vm.generateAvatar(_vm.user.id, 64) +
- " 2x, " +
- _vm.generateAvatar(_vm.user.id, 128) +
- " 4x",
- alt: "",
- height: "32",
- width: "32"
- }
+ attrs: { id: "apps-list" }
+ },
+ [
+ _vm.useListView
+ ? [
+ _vm.showUpdateAll
+ ? _c("div", { staticClass: "counter" }, [
+ _vm._v(
+ "\n\t\t\t\t" +
+ _vm._s(
+ _vm.t(
+ "settings",
+ "{counter} apps have an update available",
+ { counter: _vm.counter }
+ )
+ ) +
+ "\n\t\t\t\t"
+ ),
+ _vm.showUpdateAll
+ ? _c(
+ "button",
+ {
+ staticClass: "primary",
+ attrs: { id: "app-list-update-all" },
+ on: { click: _vm.updateAll }
+ },
+ [
+ _vm._v(
+ "\n\t\t\t\t\t" +
+ _vm._s(_vm.t("settings", "Update all")) +
+ "\n\t\t\t\t"
+ )
+ ]
+ )
+ : _vm._e()
+ ])
+ : _vm._e(),
+ _vm._v(" "),
+ _c(
+ "transition-group",
+ {
+ staticClass: "apps-list-container",
+ attrs: { name: "app-list", tag: "div" }
+ },
+ _vm._l(_vm.apps, function(app) {
+ return _c("AppItem", {
+ key: app.id,
+ attrs: { app: app, category: _vm.category }
})
- : _vm._e()
+ }),
+ 1
+ )
]
- ),
- _vm._v(" "),
- _c("div", { staticClass: "displayName" }, [
- _c(
- "form",
+ : _vm._e(),
+ _vm._v(" "),
+ _vm.useBundleView
+ ? _c(
+ "transition-group",
{
- staticClass: "displayName",
- class: { "icon-loading-small": _vm.loading.displayName },
- on: {
- submit: function($event) {
- $event.preventDefault()
- return _vm.updateDisplayName($event)
- }
- }
+ staticClass: "apps-list-container",
+ attrs: { name: "app-list", tag: "div" }
},
[
- _vm.user.backendCapabilities.setDisplayName
- ? [
- _vm.user.backendCapabilities.setDisplayName
- ? _c("input", {
- ref: "displayName",
- attrs: {
- id: "displayName" + _vm.user.id + _vm.rand,
- disabled:
- _vm.loading.displayName || _vm.loading.all,
- autocapitalize: "off",
- autocomplete: "new-password",
- autocorrect: "off",
- spellcheck: "false",
- type: "text"
- },
- domProps: { value: _vm.user.displayname }
- })
- : _vm._e(),
+ _vm._l(_vm.bundles, function(bundle) {
+ return [
+ _c("div", { key: bundle.id, staticClass: "apps-header" }, [
+ _c("div", { staticClass: "app-image" }),
_vm._v(" "),
- _vm.user.backendCapabilities.setDisplayName
- ? _c("input", {
- staticClass: "icon-confirm",
- attrs: { type: "submit", value: "" }
- })
- : _vm._e()
- ]
- : _c("div", {
- directives: [
- {
- name: "tooltip",
- rawName: "v-tooltip.auto",
- value: _vm.t(
- "settings",
- "The backend does not support changing the display name"
- ),
- expression:
- "t('settings', 'The backend does not support changing the display name')",
- modifiers: { auto: true }
- }
- ],
- staticClass: "name"
+ _c("h2", [
+ _vm._v(_vm._s(bundle.name) + " "),
+ _c("input", {
+ attrs: {
+ type: "button",
+ value: _vm.bundleToggleText(bundle.id)
+ },
+ on: {
+ click: function($event) {
+ return _vm.toggleBundle(bundle.id)
+ }
+ }
+ })
+ ]),
+ _vm._v(" "),
+ _c("div", { staticClass: "app-version" }),
+ _vm._v(" "),
+ _c("div", { staticClass: "app-level" }),
+ _vm._v(" "),
+ _c("div", { staticClass: "app-groups" }),
+ _vm._v(" "),
+ _c("div", { staticClass: "actions" }, [
+ _vm._v("\n\t\t\t\t\t\t \n\t\t\t\t\t")
+ ])
+ ]),
+ _vm._v(" "),
+ _vm._l(_vm.bundleApps(bundle.id), function(app) {
+ return _c("AppItem", {
+ key: bundle.id + app.id,
+ attrs: { app: app, category: _vm.category }
+ })
})
+ ]
+ })
],
2
)
- ]),
- _vm._v(" "),
- _vm.settings.canChangePassword &&
- _vm.user.backendCapabilities.setPassword
- ? _c(
- "form",
- {
- staticClass: "password",
- class: { "icon-loading-small": _vm.loading.password },
- on: {
- submit: function($event) {
- $event.preventDefault()
- return _vm.updatePassword($event)
- }
- }
- },
- [
- _c("input", {
- ref: "password",
- attrs: {
- id: "password" + _vm.user.id + _vm.rand,
- disabled: _vm.loading.password || _vm.loading.all,
- minlength: _vm.minPasswordLength,
- placeholder: _vm.t("settings", "Add new password"),
- autocapitalize: "off",
- autocomplete: "new-password",
- autocorrect: "off",
- required: "",
- spellcheck: "false",
- type: "password",
- value: ""
- }
- }),
- _vm._v(" "),
- _c("input", {
- staticClass: "icon-confirm",
- attrs: { type: "submit", value: "" }
- })
- ]
- )
- : _c("div"),
- _vm._v(" "),
- _c(
- "form",
- {
- staticClass: "mailAddress",
- class: { "icon-loading-small": _vm.loading.mailAddress },
- on: {
- submit: function($event) {
- $event.preventDefault()
- return _vm.updateEmail($event)
- }
- }
- },
- [
- _c("input", {
- ref: "mailAddress",
- attrs: {
- id: "mailAddress" + _vm.user.id + _vm.rand,
- disabled: _vm.loading.mailAddress || _vm.loading.all,
- placeholder: _vm.t("settings", "Add new email address"),
- autocapitalize: "off",
- autocomplete: "new-password",
- autocorrect: "off",
- spellcheck: "false",
- type: "email"
- },
- domProps: { value: _vm.user.email }
- }),
- _vm._v(" "),
- _c("input", {
- staticClass: "icon-confirm",
- attrs: { type: "submit", value: "" }
+ : _vm._e(),
+ _vm._v(" "),
+ _vm.useAppStoreView
+ ? _vm._l(_vm.apps, function(app) {
+ return _c("AppItem", {
+ key: app.id,
+ attrs: { app: app, category: _vm.category, "list-view": false }
})
- ]
- ),
- _vm._v(" "),
- _c(
- "div",
- {
- staticClass: "groups",
- class: { "icon-loading-small": _vm.loading.groups }
- },
- [
- _c(
- "Multiselect",
- {
- staticClass: "multiselect-vue",
- attrs: {
- "close-on-select": false,
- disabled: _vm.loading.groups || _vm.loading.all,
- limit: 2,
- multiple: true,
- options: _vm.availableGroups,
- placeholder: _vm.t("settings", "Add user in group"),
- "tag-width": 60,
- taggable: _vm.settings.isAdmin,
- value: _vm.userGroups,
- label: "name",
- "tag-placeholder": "create",
- "track-by": "id"
- },
- on: {
- remove: _vm.removeUserGroup,
- select: _vm.addUserGroup,
- tag: _vm.createGroup
- }
- },
- [
- _c(
- "span",
- { attrs: { slot: "noResult" }, slot: "noResult" },
- [_vm._v(_vm._s(_vm.t("settings", "No results")))]
- )
- ]
- )
- ],
- 1
- ),
- _vm._v(" "),
- _vm.subAdminsGroups.length > 0 && _vm.settings.isAdmin
- ? _c(
- "div",
- {
- staticClass: "subadmins",
- class: { "icon-loading-small": _vm.loading.subadmins }
- },
- [
- _c(
- "Multiselect",
- {
- staticClass: "multiselect-vue",
+ })
+ : _vm._e()
+ ],
+ 2
+ ),
+ _vm._v(" "),
+ _c(
+ "div",
+ { staticClass: "apps-list installed", attrs: { id: "apps-list-search" } },
+ [
+ _c(
+ "div",
+ { staticClass: "apps-list-container" },
+ [
+ _vm.search !== "" && _vm.searchApps.length > 0
+ ? [
+ _c("div", { staticClass: "section" }, [
+ _c("div"),
+ _vm._v(" "),
+ _c("td", { attrs: { colspan: "5" } }, [
+ _c("h2", [
+ _vm._v(
+ _vm._s(
+ _vm.t("settings", "Results from other categories")
+ )
+ )
+ ])
+ ])
+ ]),
+ _vm._v(" "),
+ _vm._l(_vm.searchApps, function(app) {
+ return _c("AppItem", {
+ key: app.id,
attrs: {
- "close-on-select": false,
- disabled: _vm.loading.subadmins || _vm.loading.all,
- limit: 2,
- multiple: true,
- options: _vm.subAdminsGroups,
- placeholder: _vm.t("settings", "Set user as admin for"),
- "tag-width": 60,
- value: _vm.userSubAdminsGroups,
- label: "name",
- "track-by": "id"
- },
- on: {
- remove: _vm.removeUserSubAdmin,
- select: _vm.addUserSubAdmin
+ app: app,
+ category: _vm.category,
+ "list-view": true
}
- },
- [
- _c(
- "span",
- { attrs: { slot: "noResult" }, slot: "noResult" },
- [_vm._v(_vm._s(_vm.t("settings", "No results")))]
- )
- ]
- )
- ],
- 1
- )
- : _vm._e(),
- _vm._v(" "),
- _c(
- "div",
- {
- directives: [
- {
- name: "tooltip",
- rawName: "v-tooltip.auto",
- value: _vm.usedSpace,
- expression: "usedSpace",
- modifiers: { auto: true }
- }
- ],
- staticClass: "quota",
- class: { "icon-loading-small": _vm.loading.quota }
- },
- [
- _c("Multiselect", {
- staticClass: "multiselect-vue",
- attrs: {
- "allow-empty": false,
- disabled: _vm.loading.quota || _vm.loading.all,
- options: _vm.quotaOptions,
- placeholder: _vm.t("settings", "Select user quota"),
- taggable: true,
- value: _vm.userQuota,
- label: "label",
- "tag-placeholder": "create",
- "track-by": "id"
- },
- on: { input: _vm.setUserQuota, tag: _vm.validateQuota }
- })
- ],
- 1
- ),
- _vm._v(" "),
- _vm.showConfig.showLanguages
- ? _c(
- "div",
- {
- staticClass: "languages",
- class: { "icon-loading-small": _vm.loading.languages }
- },
- [
- _c("Multiselect", {
- staticClass: "multiselect-vue",
- attrs: {
- "allow-empty": false,
- disabled: _vm.loading.languages || _vm.loading.all,
- options: _vm.languages,
- placeholder: _vm.t("settings", "No language set"),
- value: _vm.userLanguage,
- "group-label": "label",
- "group-values": "languages",
- label: "name",
- "track-by": "code"
- },
- on: { input: _vm.setUserLanguage }
+ })
})
- ],
- 1
- )
- : _vm._e(),
- _vm._v(" "),
- _vm.showConfig.showStoragePath || _vm.showConfig.showUserBackend
- ? _c("div", { staticClass: "storageLocation" })
- : _vm._e(),
- _vm._v(" "),
- _vm.showConfig.showLastLogin ? _c("div") : _vm._e(),
- _vm._v(" "),
- _c("div", { staticClass: "userActions" }, [
- _vm.OC.currentUser !== _vm.user.id &&
- _vm.user.id !== "admin" &&
- !_vm.loading.all
- ? _c(
- "div",
- { staticClass: "toggleUserActions" },
- [
- _c(
- "Actions",
- [
- _c(
- "ActionButton",
- {
- attrs: { icon: "icon-checkmark" },
- on: {
- click: function($event) {
- _vm.editing = false
- }
- }
- },
- [
- _vm._v(
- "\n\t\t\t\t\t" +
- _vm._s(_vm.t("settings", "Done")) +
- "\n\t\t\t\t"
- )
- ]
- )
- ],
- 1
- ),
- _vm._v(" "),
- _c("div", {
- directives: [
- {
- name: "click-outside",
- rawName: "v-click-outside",
- value: _vm.hideMenu,
- expression: "hideMenu"
- }
- ],
- staticClass: "icon-more",
- on: { click: _vm.toggleMenu }
- }),
- _vm._v(" "),
- _c(
- "div",
- {
- staticClass: "popovermenu",
- class: { open: _vm.openedMenu }
- },
- [_c("PopoverMenu", { attrs: { menu: _vm.userActions } })],
- 1
- )
- ],
- 1
- )
- : _vm._e(),
+ ]
+ : _vm._e()
+ ],
+ 2
+ )
+ ]
+ ),
+ _vm._v(" "),
+ _vm.search !== "" &&
+ !_vm.loading &&
+ _vm.searchApps.length === 0 &&
+ _vm.apps.length === 0
+ ? _c(
+ "div",
+ {
+ staticClass: "emptycontent emptycontent-search",
+ attrs: { id: "apps-list-empty" }
+ },
+ [
+ _c("div", {
+ staticClass: "icon-settings-dark",
+ attrs: { id: "app-list-empty-icon" }
+ }),
_vm._v(" "),
- _c(
- "div",
- {
- staticClass: "feedback",
- style: { opacity: _vm.feedbackMessage !== "" ? 1 : 0 }
- },
- [
- _c("div", { staticClass: "icon-checkmark" }),
- _vm._v("\n\t\t\t" + _vm._s(_vm.feedbackMessage) + "\n\t\t")
- ]
- )
- ])
- ]
- )
+ _c("h2", [
+ _vm._v(
+ _vm._s(_vm.t("settings", "No apps found for your version"))
+ )
+ ])
+ ]
+ )
+ : _vm._e(),
+ _vm._v(" "),
+ _c("div", { attrs: { id: "searchresults" } })
+ ])
}
var staticRenderFns = []
render._withStripped = true
@@ -3698,10 +2784,10 @@ render._withStripped = true
/***/ }),
-/***/ "./node_modules/vue-loader/lib/loaders/templateLoader.js?!./node_modules/vue-loader/lib/index.js?!./apps/settings/src/components/UserList/UserRowSimple.vue?vue&type=template&id=ff154a08&scoped=true&":
-/*!******************************************************************************************************************************************************************************************************************************************!*\
- !*** ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./apps/settings/src/components/UserList/UserRowSimple.vue?vue&type=template&id=ff154a08&scoped=true& ***!
- \******************************************************************************************************************************************************************************************************************************************/
+/***/ "./node_modules/vue-loader/lib/loaders/templateLoader.js?!./node_modules/vue-loader/lib/index.js?!./apps/settings/src/components/AppList/AppItem.vue?vue&type=template&id=429da85a&scoped=true&":
+/*!***********************************************************************************************************************************************************************************************************************************!*\
+ !*** ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./apps/settings/src/components/AppList/AppItem.vue?vue&type=template&id=429da85a&scoped=true& ***!
+ \***********************************************************************************************************************************************************************************************************************************/
/*! exports provided: render, staticRenderFns */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
@@ -3716,198 +2802,264 @@ var render = function() {
return _c(
"div",
{
- staticClass: "row",
- class: { disabled: _vm.loading.delete || _vm.loading.disable },
- attrs: { "data-id": _vm.user.id }
+ staticClass: "section",
+ class: { selected: _vm.isSelected },
+ on: { click: _vm.showAppDetails }
},
[
_c(
"div",
{
- staticClass: "avatar",
- class: {
- "icon-loading-small":
- _vm.loading.delete || _vm.loading.disable || _vm.loading.wipe
- }
+ staticClass: "app-image app-image-icon",
+ on: { click: _vm.showAppDetails }
},
[
- !_vm.loading.delete && !_vm.loading.disable && !_vm.loading.wipe
- ? _c("img", {
- attrs: {
- alt: "",
- width: "32",
- height: "32",
- src: _vm.generateAvatar(_vm.user.id, 32),
- srcset:
- _vm.generateAvatar(_vm.user.id, 64) +
- " 2x, " +
- _vm.generateAvatar(_vm.user.id, 128) +
- " 4x"
- }
- })
+ (_vm.listView && !_vm.app.preview) ||
+ (!_vm.listView && !_vm.app.screenshot)
+ ? _c("div", { staticClass: "icon-settings-dark" })
+ : _vm._e(),
+ _vm._v(" "),
+ _vm.listView && _vm.app.preview
+ ? _c(
+ "svg",
+ { attrs: { width: "32", height: "32", viewBox: "0 0 32 32" } },
+ [
+ _c("defs", [
+ _c(
+ "filter",
+ { attrs: { id: _vm.filterId } },
+ [
+ _c("feColorMatrix", {
+ attrs: {
+ in: "SourceGraphic",
+ type: "matrix",
+ values: "-1 0 0 0 1 0 -1 0 0 1 0 0 -1 0 1 0 0 0 1 0"
+ }
+ })
+ ],
+ 1
+ )
+ ]),
+ _vm._v(" "),
+ _c("image", {
+ staticClass: "app-icon",
+ attrs: {
+ x: "0",
+ y: "0",
+ width: "32",
+ height: "32",
+ preserveAspectRatio: "xMinYMin meet",
+ filter: _vm.filterUrl,
+ "xlink:href": _vm.app.preview
+ }
+ })
+ ]
+ )
+ : _vm._e(),
+ _vm._v(" "),
+ !_vm.listView && _vm.app.screenshot
+ ? _c("img", { attrs: { src: _vm.app.screenshot, width: "100%" } })
: _vm._e()
]
),
_vm._v(" "),
- _c("div", { staticClass: "name" }, [
- _vm._v("\n\t\t" + _vm._s(_vm.user.id) + "\n\t\t"),
- _c("div", { staticClass: "displayName subtitle" }, [
- _vm._v("\n\t\t\t" + _vm._s(_vm.user.displayname) + "\n\t\t")
- ])
- ]),
- _vm._v(" "),
- _c("div"),
- _vm._v(" "),
- _c("div", { staticClass: "mailAddress" }, [
- _vm._v("\n\t\t" + _vm._s(_vm.user.email) + "\n\t")
- ]),
- _vm._v(" "),
- _c("div", { staticClass: "groups" }, [
- _vm._v("\n\t\t" + _vm._s(_vm.userGroupsLabels) + "\n\t")
- ]),
- _vm._v(" "),
- _vm.subAdminsGroups.length > 0 && _vm.settings.isAdmin
- ? _c("div", { staticClass: "subAdminsGroups" }, [
- _vm._v("\n\t\t" + _vm._s(_vm.userSubAdminsGroupsLabels) + "\n\t")
- ])
- : _vm._e(),
- _vm._v(" "),
_c(
"div",
- {
- directives: [
- {
- name: "tooltip",
- rawName: "v-tooltip.auto",
- value: _vm.usedSpace,
- expression: "usedSpace",
- modifiers: { auto: true }
- }
- ],
- staticClass: "quota"
- },
- [
- _c("progress", {
- staticClass: "quota-user-progress",
- class: { warn: _vm.usedQuota > 80 },
- attrs: { max: "100" },
- domProps: { value: _vm.usedQuota }
- })
- ]
+ { staticClass: "app-name", on: { click: _vm.showAppDetails } },
+ [_vm._v("\n\t\t" + _vm._s(_vm.app.name) + "\n\t")]
),
_vm._v(" "),
- _vm.showConfig.showLanguages
- ? _c("div", { staticClass: "languages" }, [
- _vm._v("\n\t\t" + _vm._s(_vm.userLanguage.name) + "\n\t")
+ !_vm.listView
+ ? _c("div", { staticClass: "app-summary" }, [
+ _vm._v("\n\t\t" + _vm._s(_vm.app.summary) + "\n\t")
])
: _vm._e(),
_vm._v(" "),
- _vm.showConfig.showUserBackend || _vm.showConfig.showStoragePath
- ? _c("div", { staticClass: "userBackend" }, [
- _vm.showConfig.showUserBackend
- ? _c("div", { staticClass: "userBackend" }, [
- _vm._v("\n\t\t\t" + _vm._s(_vm.user.backend) + "\n\t\t")
- ])
- : _vm._e(),
- _vm._v(" "),
- _vm.showConfig.showStoragePath
- ? _c("div", { staticClass: "storageLocation subtitle" }, [
- _vm._v(
- "\n\t\t\t" + _vm._s(_vm.user.storageLocation) + "\n\t\t"
- )
+ _vm.listView
+ ? _c("div", { staticClass: "app-version" }, [
+ _vm.app.version
+ ? _c("span", [_vm._v(_vm._s(_vm.app.version))])
+ : _vm.app.appstoreData.releases[0].version
+ ? _c("span", [
+ _vm._v(_vm._s(_vm.app.appstoreData.releases[0].version))
])
: _vm._e()
])
: _vm._e(),
_vm._v(" "),
- _vm.showConfig.showLastLogin
- ? _c(
- "div",
- {
- directives: [
+ _c(
+ "div",
+ { staticClass: "app-level" },
+ [
+ _vm.app.level === 300
+ ? _c(
+ "span",
{
- name: "tooltip",
- rawName: "v-tooltip.auto",
- value: _vm.userLastLoginTooltip,
- expression: "userLastLoginTooltip",
- modifiers: { auto: true }
- }
- ],
- staticClass: "lastLogin"
- },
- [_vm._v("\n\t\t" + _vm._s(_vm.userLastLogin) + "\n\t")]
- )
- : _vm._e(),
- _vm._v(" "),
- _c("div", { staticClass: "userActions" }, [
- _vm.canEdit && !_vm.loading.all
- ? _c(
- "div",
- { staticClass: "toggleUserActions" },
- [
- _c(
- "Actions",
- [
- _c(
- "ActionButton",
- {
- attrs: { icon: "icon-rename" },
- on: { click: _vm.toggleEdit }
- },
- [
- _vm._v(
- "\n\t\t\t\t\t" +
- _vm._s(_vm.t("settings", "Edit User")) +
- "\n\t\t\t\t"
- )
- ]
- )
- ],
- 1
- ),
- _vm._v(" "),
- _c("div", {
directives: [
{
- name: "click-outside",
- rawName: "v-click-outside",
- value: _vm.hideMenu,
- expression: "hideMenu"
+ name: "tooltip",
+ rawName: "v-tooltip.auto",
+ value: _vm.t(
+ "settings",
+ "This app is supported via your current Nextcloud subscription."
+ ),
+ expression:
+ "t('settings', 'This app is supported via your current Nextcloud subscription.')",
+ modifiers: { auto: true }
}
],
- staticClass: "icon-more",
- on: {
- click: function($event) {
- return _vm.$emit("toggleMenu")
+ staticClass: "supported icon-checkmark-color"
+ },
+ [_vm._v("\n\t\t\t" + _vm._s(_vm.t("settings", "Supported")))]
+ )
+ : _vm._e(),
+ _vm._v(" "),
+ _vm.app.level === 200
+ ? _c(
+ "span",
+ {
+ directives: [
+ {
+ name: "tooltip",
+ rawName: "v-tooltip.auto",
+ value: _vm.t(
+ "settings",
+ "Featured apps are developed by and within the community. They offer central functionality and are ready for production use."
+ ),
+ expression:
+ "t('settings', 'Featured apps are developed by and within the community. They offer central functionality and are ready for production use.')",
+ modifiers: { auto: true }
}
- }
+ ],
+ staticClass: "official icon-checkmark"
+ },
+ [_vm._v("\n\t\t\t" + _vm._s(_vm.t("settings", "Featured")))]
+ )
+ : _vm._e(),
+ _vm._v(" "),
+ _vm.hasRating && !_vm.listView
+ ? _c("AppScore", { attrs: { score: _vm.app.score } })
+ : _vm._e()
+ ],
+ 1
+ ),
+ _vm._v(" "),
+ _c("div", { staticClass: "actions" }, [
+ _vm.app.error
+ ? _c("div", { staticClass: "warning" }, [
+ _vm._v("\n\t\t\t" + _vm._s(_vm.app.error) + "\n\t\t")
+ ])
+ : _vm._e(),
+ _vm._v(" "),
+ _vm.loading(_vm.app.id)
+ ? _c("div", { staticClass: "icon icon-loading-small" })
+ : _vm._e(),
+ _vm._v(" "),
+ _vm.app.update
+ ? _c("input", {
+ staticClass: "update primary",
+ attrs: {
+ type: "button",
+ value: _vm.t("settings", "Update to {update}", {
+ update: _vm.app.update
}),
- _vm._v(" "),
- _c(
- "div",
- {
- staticClass: "popovermenu",
- class: { open: _vm.openedMenu }
- },
- [_c("PopoverMenu", { attrs: { menu: _vm.userActions } })],
- 1
- )
- ],
- 1
- )
+ disabled: _vm.installing || _vm.loading(_vm.app.id)
+ },
+ on: {
+ click: function($event) {
+ $event.stopPropagation()
+ return _vm.update(_vm.app.id)
+ }
+ }
+ })
: _vm._e(),
_vm._v(" "),
- _c(
- "div",
- {
- staticClass: "feedback",
- style: { opacity: _vm.feedbackMessage !== "" ? 1 : 0 }
- },
- [
- _c("div", { staticClass: "icon-checkmark" }),
- _vm._v("\n\t\t\t" + _vm._s(_vm.feedbackMessage) + "\n\t\t")
- ]
- )
+ _vm.app.canUnInstall
+ ? _c("input", {
+ staticClass: "uninstall",
+ attrs: {
+ type: "button",
+ value: _vm.t("settings", "Remove"),
+ disabled: _vm.installing || _vm.loading(_vm.app.id)
+ },
+ on: {
+ click: function($event) {
+ $event.stopPropagation()
+ return _vm.remove(_vm.app.id)
+ }
+ }
+ })
+ : _vm._e(),
+ _vm._v(" "),
+ _vm.app.active
+ ? _c("input", {
+ staticClass: "enable",
+ attrs: {
+ type: "button",
+ value: _vm.t("settings", "Disable"),
+ disabled: _vm.installing || _vm.loading(_vm.app.id)
+ },
+ on: {
+ click: function($event) {
+ $event.stopPropagation()
+ return _vm.disable(_vm.app.id)
+ }
+ }
+ })
+ : _vm._e(),
+ _vm._v(" "),
+ !_vm.app.active && (_vm.app.canInstall || _vm.app.isCompatible)
+ ? _c("input", {
+ directives: [
+ {
+ name: "tooltip",
+ rawName: "v-tooltip.auto",
+ value: _vm.enableButtonTooltip,
+ expression: "enableButtonTooltip",
+ modifiers: { auto: true }
+ }
+ ],
+ staticClass: "enable",
+ attrs: {
+ type: "button",
+ value: _vm.enableButtonText,
+ disabled:
+ !_vm.app.canInstall ||
+ _vm.installing ||
+ _vm.loading(_vm.app.id)
+ },
+ on: {
+ click: function($event) {
+ $event.stopPropagation()
+ return _vm.enable(_vm.app.id)
+ }
+ }
+ })
+ : !_vm.app.active
+ ? _c("input", {
+ directives: [
+ {
+ name: "tooltip",
+ rawName: "v-tooltip.auto",
+ value: _vm.forceEnableButtonTooltip,
+ expression: "forceEnableButtonTooltip",
+ modifiers: { auto: true }
+ }
+ ],
+ staticClass: "enable force",
+ attrs: {
+ type: "button",
+ value: _vm.forceEnableButtonText,
+ disabled: _vm.installing || _vm.loading(_vm.app.id)
+ },
+ on: {
+ click: function($event) {
+ $event.stopPropagation()
+ return _vm.forceEnable(_vm.app.id)
+ }
+ }
+ })
+ : _vm._e()
])
]
)
@@ -3919,10 +3071,37 @@ render._withStripped = true
/***/ }),
-/***/ "./node_modules/vue-loader/lib/loaders/templateLoader.js?!./node_modules/vue-loader/lib/index.js?!./apps/settings/src/views/Users.vue?vue&type=template&id=889b7562&":
-/*!********************************************************************************************************************************************************************************************************!*\
- !*** ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./apps/settings/src/views/Users.vue?vue&type=template&id=889b7562& ***!
- \********************************************************************************************************************************************************************************************************/
+/***/ "./node_modules/vue-loader/lib/loaders/templateLoader.js?!./node_modules/vue-loader/lib/index.js?!./apps/settings/src/components/AppList/AppScore.vue?vue&type=template&id=0ecce4fc&":
+/*!************************************************************************************************************************************************************************************************************************!*\
+ !*** ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./apps/settings/src/components/AppList/AppScore.vue?vue&type=template&id=0ecce4fc& ***!
+ \************************************************************************************************************************************************************************************************************************/
+/*! exports provided: render, staticRenderFns */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "render", function() { return render; });
+/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, "staticRenderFns", function() { return staticRenderFns; });
+var render = function() {
+ var _vm = this
+ var _h = _vm.$createElement
+ var _c = _vm._self._c || _h
+ return _c("img", {
+ staticClass: "app-score-image",
+ attrs: { src: _vm.scoreImage }
+ })
+}
+var staticRenderFns = []
+render._withStripped = true
+
+
+
+/***/ }),
+
+/***/ "./node_modules/vue-loader/lib/loaders/templateLoader.js?!./node_modules/vue-loader/lib/index.js?!./apps/settings/src/views/Apps.vue?vue&type=template&id=d3714d0a&":
+/*!*******************************************************************************************************************************************************************************************************!*\
+ !*** ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./apps/settings/src/views/Apps.vue?vue&type=template&id=d3714d0a& ***!
+ \*******************************************************************************************************************************************************************************************************/
/*! exports provided: render, staticRenderFns */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
@@ -3937,266 +3116,58 @@ var render = function() {
return _c(
"Content",
{
+ class: { "with-app-sidebar": _vm.currentApp },
attrs: {
"app-name": "settings",
- "navigation-class": { "icon-loading": _vm.loadingAddGroup }
+ "content-class": { "icon-loading": _vm.loadingList },
+ "navigation-class": { "icon-loading": _vm.loading }
}
},
[
- _c(
- "AppNavigation",
- [
- _c("AppNavigationNew", {
- attrs: {
- "button-id": "new-user-button",
- text: _vm.t("settings", "New user"),
- "button-class": "icon-add"
- },
- on: { click: _vm.toggleNewUserMenu }
+ _c("AppNavigation", [
+ _c(
+ "ul",
+ { attrs: { id: "appscategories" } },
+ _vm._l(_vm.menu, function(item) {
+ return _c("AppNavigationItem", {
+ key: item.key,
+ attrs: { item: item }
+ })
}),
- _vm._v(" "),
- _c(
- "ul",
- { attrs: { id: "usergrouplist" } },
- _vm._l(_vm.menu, function(item) {
- return _c("AppNavigationItem", {
- key: item.key,
- attrs: { item: item }
- })
- }),
- 1
- ),
- _vm._v(" "),
- _c("AppNavigationSettings", [
- _c(
- "div",
- [
- _c("p", [_vm._v(_vm._s(_vm.t("settings", "Default quota:")))]),
- _vm._v(" "),
- _c("Multiselect", {
- attrs: {
- value: _vm.defaultQuota,
- options: _vm.quotaOptions,
- "tag-placeholder": "create",
- placeholder: _vm.t("settings", "Select default quota"),
- label: "label",
- "track-by": "id",
- "allow-empty": false,
- taggable: true
- },
- on: { tag: _vm.validateQuota, input: _vm.setDefaultQuota }
- })
- ],
- 1
- ),
- _vm._v(" "),
- _c("div", [
- _c("input", {
- directives: [
- {
- name: "model",
- rawName: "v-model",
- value: _vm.showLanguages,
- expression: "showLanguages"
- }
- ],
- staticClass: "checkbox",
- attrs: { id: "showLanguages", type: "checkbox" },
- domProps: {
- checked: Array.isArray(_vm.showLanguages)
- ? _vm._i(_vm.showLanguages, null) > -1
- : _vm.showLanguages
- },
- on: {
- change: function($event) {
- var $$a = _vm.showLanguages,
- $$el = $event.target,
- $$c = $$el.checked ? true : false
- if (Array.isArray($$a)) {
- var $$v = null,
- $$i = _vm._i($$a, $$v)
- if ($$el.checked) {
- $$i < 0 && (_vm.showLanguages = $$a.concat([$$v]))
- } else {
- $$i > -1 &&
- (_vm.showLanguages = $$a
- .slice(0, $$i)
- .concat($$a.slice($$i + 1)))
- }
- } else {
- _vm.showLanguages = $$c
- }
- }
- }
- }),
- _vm._v(" "),
- _c("label", { attrs: { for: "showLanguages" } }, [
- _vm._v(_vm._s(_vm.t("settings", "Show Languages")))
- ])
- ]),
- _vm._v(" "),
- _c("div", [
- _c("input", {
- directives: [
- {
- name: "model",
- rawName: "v-model",
- value: _vm.showLastLogin,
- expression: "showLastLogin"
- }
- ],
- staticClass: "checkbox",
- attrs: { id: "showLastLogin", type: "checkbox" },
- domProps: {
- checked: Array.isArray(_vm.showLastLogin)
- ? _vm._i(_vm.showLastLogin, null) > -1
- : _vm.showLastLogin
- },
- on: {
- change: function($event) {
- var $$a = _vm.showLastLogin,
- $$el = $event.target,
- $$c = $$el.checked ? true : false
- if (Array.isArray($$a)) {
- var $$v = null,
- $$i = _vm._i($$a, $$v)
- if ($$el.checked) {
- $$i < 0 && (_vm.showLastLogin = $$a.concat([$$v]))
- } else {
- $$i > -1 &&
- (_vm.showLastLogin = $$a
- .slice(0, $$i)
- .concat($$a.slice($$i + 1)))
- }
- } else {
- _vm.showLastLogin = $$c
- }
- }
- }
- }),
- _vm._v(" "),
- _c("label", { attrs: { for: "showLastLogin" } }, [
- _vm._v(_vm._s(_vm.t("settings", "Show last login")))
- ])
- ]),
- _vm._v(" "),
- _c("div", [
- _c("input", {
- directives: [
- {
- name: "model",
- rawName: "v-model",
- value: _vm.showUserBackend,
- expression: "showUserBackend"
- }
- ],
- staticClass: "checkbox",
- attrs: { id: "showUserBackend", type: "checkbox" },
- domProps: {
- checked: Array.isArray(_vm.showUserBackend)
- ? _vm._i(_vm.showUserBackend, null) > -1
- : _vm.showUserBackend
- },
- on: {
- change: function($event) {
- var $$a = _vm.showUserBackend,
- $$el = $event.target,
- $$c = $$el.checked ? true : false
- if (Array.isArray($$a)) {
- var $$v = null,
- $$i = _vm._i($$a, $$v)
- if ($$el.checked) {
- $$i < 0 && (_vm.showUserBackend = $$a.concat([$$v]))
- } else {
- $$i > -1 &&
- (_vm.showUserBackend = $$a
- .slice(0, $$i)
- .concat($$a.slice($$i + 1)))
- }
- } else {
- _vm.showUserBackend = $$c
- }
- }
- }
- }),
- _vm._v(" "),
- _c("label", { attrs: { for: "showUserBackend" } }, [
- _vm._v(_vm._s(_vm.t("settings", "Show user backend")))
- ])
- ]),
- _vm._v(" "),
- _c("div", [
- _c("input", {
- directives: [
- {
- name: "model",
- rawName: "v-model",
- value: _vm.showStoragePath,
- expression: "showStoragePath"
- }
- ],
- staticClass: "checkbox",
- attrs: { id: "showStoragePath", type: "checkbox" },
- domProps: {
- checked: Array.isArray(_vm.showStoragePath)
- ? _vm._i(_vm.showStoragePath, null) > -1
- : _vm.showStoragePath
- },
- on: {
- change: function($event) {
- var $$a = _vm.showStoragePath,
- $$el = $event.target,
- $$c = $$el.checked ? true : false
- if (Array.isArray($$a)) {
- var $$v = null,
- $$i = _vm._i($$a, $$v)
- if ($$el.checked) {
- $$i < 0 && (_vm.showStoragePath = $$a.concat([$$v]))
- } else {
- $$i > -1 &&
- (_vm.showStoragePath = $$a
- .slice(0, $$i)
- .concat($$a.slice($$i + 1)))
- }
- } else {
- _vm.showStoragePath = $$c
- }
- }
- }
- }),
- _vm._v(" "),
- _c("label", { attrs: { for: "showStoragePath" } }, [
- _vm._v(_vm._s(_vm.t("settings", "Show storage path")))
- ])
- ])
- ])
- ],
- 1
- ),
+ 1
+ )
+ ]),
_vm._v(" "),
_c(
"AppContent",
+ {
+ staticClass: "app-settings-content",
+ class: { "icon-loading": _vm.loadingList }
+ },
[
- _c("UserList", {
+ _c("AppList", {
attrs: {
- users: _vm.users,
- "show-config": _vm.showConfig,
- "selected-group": _vm.selectedGroup,
- "external-actions": _vm.externalActions
- },
- scopedSlots: _vm._u([
- {
- key: "content",
- fn: function() {
- return undefined
- },
- proxy: true
- }
- ])
+ category: _vm.category,
+ app: _vm.currentApp,
+ search: _vm.searchQuery
+ }
})
],
1
- )
+ ),
+ _vm._v(" "),
+ _vm.id && _vm.currentApp
+ ? _c(
+ "AppSidebar",
+ { on: { close: _vm.hideAppDetails } },
+ [
+ _c("AppDetails", {
+ attrs: { category: _vm.category, app: _vm.currentApp }
+ })
+ ],
+ 1
+ )
+ : _vm._e()
],
1
)
@@ -4206,7 +3177,49 @@ render._withStripped = true
+/***/ }),
+
+/***/ "./node_modules/vue-style-loader/index.js!./node_modules/css-loader/dist/cjs.js!./node_modules/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/vue-loader/lib/index.js?!./apps/settings/src/components/AppDetails.vue?vue&type=style&index=0&id=59a92e62&scoped=true&lang=css&":
+/*!***********************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** ./node_modules/vue-style-loader!./node_modules/css-loader/dist/cjs.js!./node_modules/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/vue-loader/lib??vue-loader-options!./apps/settings/src/components/AppDetails.vue?vue&type=style&index=0&id=59a92e62&scoped=true&lang=css& ***!
+ \***********************************************************************************************************************************************************************************************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, exports, __webpack_require__) {
+
+// style-loader: Adds some css to the DOM by adding a <style> tag
+
+// load the styles
+var content = __webpack_require__(/*! !../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/vue-loader/lib??vue-loader-options!./AppDetails.vue?vue&type=style&index=0&id=59a92e62&scoped=true&lang=css& */ "./node_modules/css-loader/dist/cjs.js!./node_modules/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/vue-loader/lib/index.js?!./apps/settings/src/components/AppDetails.vue?vue&type=style&index=0&id=59a92e62&scoped=true&lang=css&");
+if(typeof content === 'string') content = [[module.i, content, '']];
+if(content.locals) module.exports = content.locals;
+// add the styles to the DOM
+var add = __webpack_require__(/*! ../../../../node_modules/vue-style-loader/lib/addStylesClient.js */ "./node_modules/vue-style-loader/lib/addStylesClient.js").default
+var update = add("5bf4fbf8", content, false, {});
+// Hot Module Replacement
+if(false) {}
+
+/***/ }),
+
+/***/ "./node_modules/vue-style-loader/index.js!./node_modules/css-loader/dist/cjs.js!./node_modules/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/vue-loader/lib/index.js?!./apps/settings/src/components/AppList/AppItem.vue?vue&type=style&index=0&id=429da85a&scoped=true&lang=css&":
+/*!****************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** ./node_modules/vue-style-loader!./node_modules/css-loader/dist/cjs.js!./node_modules/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/vue-loader/lib??vue-loader-options!./apps/settings/src/components/AppList/AppItem.vue?vue&type=style&index=0&id=429da85a&scoped=true&lang=css& ***!
+ \****************************************************************************************************************************************************************************************************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, exports, __webpack_require__) {
+
+// style-loader: Adds some css to the DOM by adding a <style> tag
+
+// load the styles
+var content = __webpack_require__(/*! !../../../../../node_modules/css-loader/dist/cjs.js!../../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../../node_modules/vue-loader/lib??vue-loader-options!./AppItem.vue?vue&type=style&index=0&id=429da85a&scoped=true&lang=css& */ "./node_modules/css-loader/dist/cjs.js!./node_modules/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/vue-loader/lib/index.js?!./apps/settings/src/components/AppList/AppItem.vue?vue&type=style&index=0&id=429da85a&scoped=true&lang=css&");
+if(typeof content === 'string') content = [[module.i, content, '']];
+if(content.locals) module.exports = content.locals;
+// add the styles to the DOM
+var add = __webpack_require__(/*! ../../../../../node_modules/vue-style-loader/lib/addStylesClient.js */ "./node_modules/vue-style-loader/lib/addStylesClient.js").default
+var update = add("2d876e7a", content, false, {});
+// Hot Module Replacement
+if(false) {}
+
/***/ })
}]);
-//# sourceMappingURL=vue-2.js.map?v=1f67c05b89d62d76974e \ No newline at end of file
+//# sourceMappingURL=vue-2.js.map?v=662f771dd73ad67e77f2 \ No newline at end of file
diff --git a/apps/settings/js/vue-2.js.map b/apps/settings/js/vue-2.js.map
index 08af45fd4c6..806588727d6 100644
--- a/apps/settings/js/vue-2.js.map
+++ b/apps/settings/js/vue-2.js.map
@@ -1 +1 @@
-{"version":3,"file":"vue-2.js?v=1f67c05b89d62d76974e","sources":["webpack:///./apps/settings/src/components/UserList.vue","webpack:///./apps/settings/src/components/UserList.vue?69dd","webpack:///./apps/settings/src/components/UserList.vue?bf93","webpack:///./apps/settings/src/components/UserList/UserRow.vue","webpack:///./apps/settings/src/components/UserList/UserRow.vue?4147","webpack:///./apps/settings/src/components/UserList/UserRow.vue?9742","webpack:///./apps/settings/src/components/UserList/UserRowSimple.vue","webpack:///./apps/settings/src/components/UserList/UserRowSimple.vue?6483","webpack:///./apps/settings/src/components/UserList/UserRowSimple.vue?2ff0","webpack:///./apps/settings/src/mixins/UserRowMixin.js","webpack:///./apps/settings/src/views/Users.vue","webpack:///./apps/settings/src/views/Users.vue?83c0","webpack:///./apps/settings/src/views/Users.vue?cc08","webpack:///./apps/settings/src/components/UserList.vue?1138","webpack:///./apps/settings/src/components/UserList/UserRow.vue?68e3","webpack:///./apps/settings/src/components/UserList/UserRowSimple.vue?4ab0","webpack:///./apps/settings/src/views/Users.vue?0f11","webpack:///./apps/settings/src/components/UserList.vue?6b70","webpack:///./apps/settings/src/components/UserList/UserRow.vue?ad6a","webpack:///./apps/settings/src/components/UserList/UserRowSimple.vue?d051","webpack:///./apps/settings/src/views/Users.vue?d4fd"],"sourcesContent":["import { render, staticRenderFns } from \"./UserList.vue?vue&type=template&id=6cba3aca&\"\nimport script from \"./UserList.vue?vue&type=script&lang=js&\"\nexport * from \"./UserList.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\n/* hot reload */\nif (module.hot) {\n var api = require(\"/home/user/nextcloud/node_modules/vue-hot-reload-api/dist/index.js\")\n api.install(require('vue'))\n if (api.compatible) {\n module.hot.accept()\n if (!api.isRecorded('6cba3aca')) {\n api.createRecord('6cba3aca', component.options)\n } else {\n api.reload('6cba3aca', component.options)\n }\n module.hot.accept(\"./UserList.vue?vue&type=template&id=6cba3aca&\", function () {\n api.rerender('6cba3aca', {\n render: render,\n staticRenderFns: staticRenderFns\n })\n })\n }\n}\ncomponent.options.__file = \"apps/settings/src/components/UserList.vue\"\nexport default component.exports","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./UserList.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./UserList.vue?vue&type=script&lang=js&\"","export * from \"-!../../../../node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./UserList.vue?vue&type=template&id=6cba3aca&\"","import { render, staticRenderFns } from \"./UserRow.vue?vue&type=template&id=77960baa&\"\nimport script from \"./UserRow.vue?vue&type=script&lang=js&\"\nexport * from \"./UserRow.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\n/* hot reload */\nif (module.hot) {\n var api = require(\"/home/user/nextcloud/node_modules/vue-hot-reload-api/dist/index.js\")\n api.install(require('vue'))\n if (api.compatible) {\n module.hot.accept()\n if (!api.isRecorded('77960baa')) {\n api.createRecord('77960baa', component.options)\n } else {\n api.reload('77960baa', component.options)\n }\n module.hot.accept(\"./UserRow.vue?vue&type=template&id=77960baa&\", function () {\n api.rerender('77960baa', {\n render: render,\n staticRenderFns: staticRenderFns\n })\n })\n }\n}\ncomponent.options.__file = \"apps/settings/src/components/UserList/UserRow.vue\"\nexport default component.exports","import mod from \"-!../../../../../node_modules/babel-loader/lib/index.js!../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./UserRow.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../../node_modules/babel-loader/lib/index.js!../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./UserRow.vue?vue&type=script&lang=js&\"","export * from \"-!../../../../../node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./UserRow.vue?vue&type=template&id=77960baa&\"","import { render, staticRenderFns } from \"./UserRowSimple.vue?vue&type=template&id=ff154a08&scoped=true&\"\nimport script from \"./UserRowSimple.vue?vue&type=script&lang=js&\"\nexport * from \"./UserRowSimple.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n \"ff154a08\",\n null\n \n)\n\n/* hot reload */\nif (module.hot) {\n var api = require(\"/home/user/nextcloud/node_modules/vue-hot-reload-api/dist/index.js\")\n api.install(require('vue'))\n if (api.compatible) {\n module.hot.accept()\n if (!api.isRecorded('ff154a08')) {\n api.createRecord('ff154a08', component.options)\n } else {\n api.reload('ff154a08', component.options)\n }\n module.hot.accept(\"./UserRowSimple.vue?vue&type=template&id=ff154a08&scoped=true&\", function () {\n api.rerender('ff154a08', {\n render: render,\n staticRenderFns: staticRenderFns\n })\n })\n }\n}\ncomponent.options.__file = \"apps/settings/src/components/UserList/UserRowSimple.vue\"\nexport default component.exports","import mod from \"-!../../../../../node_modules/babel-loader/lib/index.js!../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./UserRowSimple.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../../node_modules/babel-loader/lib/index.js!../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./UserRowSimple.vue?vue&type=script&lang=js&\"","export * from \"-!../../../../../node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./UserRowSimple.vue?vue&type=template&id=ff154a08&scoped=true&\"","function _typeof(obj) { if (typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; }; } return _typeof(obj); }\n\n/**\n * @copyright Copyright (c) 2019 John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license GNU AGPL version 3 or any later version\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\nexport default {\n props: {\n user: {\n type: Object,\n required: true\n },\n settings: {\n type: Object,\n default: function _default() {\n return {};\n }\n },\n groups: {\n type: Array,\n default: function _default() {\n return [];\n }\n },\n subAdminsGroups: {\n type: Array,\n default: function _default() {\n return [];\n }\n },\n quotaOptions: {\n type: Array,\n default: function _default() {\n return [];\n }\n },\n showConfig: {\n type: Object,\n default: function _default() {\n return {};\n }\n },\n languages: {\n type: Array,\n required: true\n },\n externalActions: {\n type: Array,\n default: function _default() {\n return [];\n }\n }\n },\n computed: {\n /* GROUPS MANAGEMENT */\n userGroups: function userGroups() {\n var _this = this;\n\n var userGroups = this.groups.filter(function (group) {\n return _this.user.groups.includes(group.id);\n });\n return userGroups;\n },\n userSubAdminsGroups: function userSubAdminsGroups() {\n var _this2 = this;\n\n var userSubAdminsGroups = this.subAdminsGroups.filter(function (group) {\n return _this2.user.subadmin.includes(group.id);\n });\n return userSubAdminsGroups;\n },\n availableGroups: function availableGroups() {\n var _this3 = this;\n\n return this.groups.map(function (group) {\n // clone object because we don't want\n // to edit the original groups\n var groupClone = Object.assign({}, group); // two settings here:\n // 1. user NOT in group but no permission to add\n // 2. user is in group but no permission to remove\n\n groupClone.$isDisabled = group.canAdd === false && !_this3.user.groups.includes(group.id) || group.canRemove === false && _this3.user.groups.includes(group.id);\n return groupClone;\n });\n },\n\n /* QUOTA MANAGEMENT */\n usedSpace: function usedSpace() {\n if (this.user.quota.used) {\n return t('settings', '{size} used', {\n size: OC.Util.humanFileSize(this.user.quota.used)\n });\n }\n\n return t('settings', '{size} used', {\n size: OC.Util.humanFileSize(0)\n });\n },\n usedQuota: function usedQuota() {\n var quota = this.user.quota.quota;\n\n if (quota > 0) {\n quota = Math.min(100, Math.round(this.user.quota.used / quota * 100));\n } else {\n var usedInGB = this.user.quota.used / (10 * Math.pow(2, 30)); // asymptotic curve approaching 50% at 10GB to visualize used stace with infinite quota\n\n quota = 95 * (1 - 1 / (usedInGB + 1));\n }\n\n return isNaN(quota) ? 0 : quota;\n },\n // Mapping saved values to objects\n userQuota: function userQuota() {\n if (this.user.quota.quota >= 0) {\n // if value is valid, let's map the quotaOptions or return custom quota\n var humanQuota = OC.Util.humanFileSize(this.user.quota.quota);\n var userQuota = this.quotaOptions.find(function (quota) {\n return quota.id === humanQuota;\n });\n return userQuota || {\n id: humanQuota,\n label: humanQuota\n };\n } else if (this.user.quota.quota === 'default') {\n // default quota is replaced by the proper value on load\n return this.quotaOptions[0];\n }\n\n return this.quotaOptions[1]; // unlimited\n },\n\n /* PASSWORD POLICY? */\n minPasswordLength: function minPasswordLength() {\n return this.$store.getters.getPasswordPolicyMinLength;\n },\n\n /* LANGUAGE */\n userLanguage: function userLanguage() {\n var _this4 = this;\n\n var availableLanguages = this.languages[0].languages.concat(this.languages[1].languages);\n var userLang = availableLanguages.find(function (lang) {\n return lang.code === _this4.user.language;\n });\n\n if (_typeof(userLang) !== 'object' && this.user.language !== '') {\n return {\n code: this.user.language,\n name: this.user.language\n };\n } else if (this.user.language === '') {\n return false;\n }\n\n return userLang;\n },\n\n /* LAST LOGIN */\n userLastLoginTooltip: function userLastLoginTooltip() {\n if (this.user.lastLogin > 0) {\n return OC.Util.formatDate(this.user.lastLogin);\n }\n\n return '';\n },\n userLastLogin: function userLastLogin() {\n if (this.user.lastLogin > 0) {\n return OC.Util.relativeModifiedDate(this.user.lastLogin);\n }\n\n return t('settings', 'Never');\n }\n },\n methods: {\n /**\n * Generate avatar url\n *\n * @param {string} user The user name\n * @param {int} size Size integer, default 32\n * @returns {string}\n */\n generateAvatar: function generateAvatar(user) {\n var size = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 32;\n return OC.generateUrl('/avatar/{user}/{size}?v={version}', {\n user: user,\n size: size,\n version: oc_userconfig.avatar.version\n });\n }\n }\n};","import { render, staticRenderFns } from \"./Users.vue?vue&type=template&id=889b7562&\"\nimport script from \"./Users.vue?vue&type=script&lang=js&\"\nexport * from \"./Users.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\n/* hot reload */\nif (module.hot) {\n var api = require(\"/home/user/nextcloud/node_modules/vue-hot-reload-api/dist/index.js\")\n api.install(require('vue'))\n if (api.compatible) {\n module.hot.accept()\n if (!api.isRecorded('889b7562')) {\n api.createRecord('889b7562', component.options)\n } else {\n api.reload('889b7562', component.options)\n }\n module.hot.accept(\"./Users.vue?vue&type=template&id=889b7562&\", function () {\n api.rerender('889b7562', {\n render: render,\n staticRenderFns: staticRenderFns\n })\n })\n }\n}\ncomponent.options.__file = \"apps/settings/src/views/Users.vue\"\nexport default component.exports","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./Users.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./Users.vue?vue&type=script&lang=js&\"","export * from \"-!../../../../node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./Users.vue?vue&type=template&id=889b7562&\"","//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\nimport userRow from './UserList/UserRow';\nimport { Multiselect } from 'nextcloud-vue';\nimport InfiniteLoading from 'vue-infinite-loading';\nimport Vue from 'vue';\nvar unlimitedQuota = {\n id: 'none',\n label: t('settings', 'Unlimited')\n};\nvar defaultQuota = {\n id: 'default',\n label: t('settings', 'Default quota')\n};\nvar newUser = {\n id: '',\n displayName: '',\n password: '',\n mailAddress: '',\n groups: [],\n subAdminsGroups: [],\n quota: defaultQuota,\n language: {\n code: 'en',\n name: t('settings', 'Default language')\n }\n};\nexport default {\n name: 'UserList',\n components: {\n userRow: userRow,\n Multiselect: Multiselect,\n InfiniteLoading: InfiniteLoading\n },\n props: {\n users: {\n type: Array,\n default: function _default() {\n return [];\n }\n },\n showConfig: {\n type: Object,\n required: true\n },\n selectedGroup: {\n type: String,\n default: null\n },\n externalActions: {\n type: Array,\n default: function _default() {\n return [];\n }\n }\n },\n data: function data() {\n return {\n unlimitedQuota: unlimitedQuota,\n defaultQuota: defaultQuota,\n loading: {\n all: false,\n groups: false\n },\n scrolled: false,\n searchQuery: '',\n newUser: Object.assign({}, newUser)\n };\n },\n computed: {\n settings: function settings() {\n return this.$store.getters.getServerData;\n },\n filteredUsers: function filteredUsers() {\n if (this.selectedGroup === 'disabled') {\n return this.users.filter(function (user) {\n return user.enabled === false;\n });\n }\n\n if (!this.settings.isAdmin) {\n // we don't want subadmins to edit themselves\n return this.users.filter(function (user) {\n return user.enabled !== false && user.id !== OC.getCurrentUser().uid;\n });\n }\n\n return this.users.filter(function (user) {\n return user.enabled !== false;\n });\n },\n groups: function groups() {\n // data provided php side + remove the disabled group\n return this.$store.getters.getGroups.filter(function (group) {\n return group.id !== 'disabled';\n }).sort(function (a, b) {\n return a.name.localeCompare(b.name);\n });\n },\n canAddGroups: function canAddGroups() {\n // disabled if no permission to add new users to group\n return this.groups.map(function (group) {\n // clone object because we don't want\n // to edit the original groups\n group = Object.assign({}, group);\n group.$isDisabled = group.canAdd === false;\n return group;\n });\n },\n subAdminsGroups: function subAdminsGroups() {\n // data provided php side\n return this.$store.getters.getSubadminGroups;\n },\n quotaOptions: function quotaOptions() {\n // convert the preset array into objects\n var quotaPreset = this.settings.quotaPreset.reduce(function (acc, cur) {\n return acc.concat({\n id: cur,\n label: cur\n });\n }, []); // add default presets\n\n quotaPreset.unshift(this.unlimitedQuota);\n quotaPreset.unshift(this.defaultQuota);\n return quotaPreset;\n },\n minPasswordLength: function minPasswordLength() {\n return this.$store.getters.getPasswordPolicyMinLength;\n },\n usersOffset: function usersOffset() {\n return this.$store.getters.getUsersOffset;\n },\n usersLimit: function usersLimit() {\n return this.$store.getters.getUsersLimit;\n },\n usersCount: function usersCount() {\n return this.users.length;\n },\n\n /* LANGUAGES */\n languages: function languages() {\n return [{\n label: t('settings', 'Common languages'),\n languages: this.settings.languages.commonlanguages\n }, {\n label: t('settings', 'All languages'),\n languages: this.settings.languages.languages\n }];\n }\n },\n watch: {\n // watch url change and group select\n selectedGroup: function selectedGroup(val, old) {\n // if selected is the disabled group but it's empty\n this.redirectIfDisabled();\n this.$store.commit('resetUsers');\n this.$refs.infiniteLoading.stateChanger.reset();\n this.setNewUserDefaultGroup(val);\n },\n // make sure the infiniteLoading state is changed if we manually\n // add/remove data from the store\n usersCount: function usersCount(val, old) {\n // deleting the last user, reset the list\n if (val === 0 && old === 1) {\n this.$refs.infiniteLoading.stateChanger.reset(); // adding the first user, warn the infiniteLoader that\n // the list is not empty anymore (we don't fetch the newly\n // added user as we already have all the info we need)\n } else if (val === 1 && old === 0) {\n this.$refs.infiniteLoading.stateChanger.loaded();\n }\n }\n },\n mounted: function mounted() {\n if (!this.settings.canChangePassword) {\n OC.Notification.showTemporary(t('settings', 'Password change is disabled because the master key is disabled'));\n }\n /**\n * Reset and init new user form\n */\n\n\n this.resetForm();\n /**\n * Register search\n */\n\n this.userSearch = new OCA.Search(this.search, this.resetSearch);\n /**\n * If disabled group but empty, redirect\n */\n\n this.redirectIfDisabled();\n },\n methods: {\n onScroll: function onScroll(event) {\n this.scrolled = event.target.scrollTo > 0;\n },\n\n /**\n * Validate quota string to make sure it's a valid human file size\n *\n * @param {string} quota Quota in readable format '5 GB'\n * @returns {Object}\n */\n validateQuota: function validateQuota(quota) {\n // only used for new presets sent through @Tag\n var validQuota = OC.Util.computerFileSize(quota);\n\n if (validQuota !== null && validQuota >= 0) {\n // unify format output\n quota = OC.Util.humanFileSize(OC.Util.computerFileSize(quota));\n this.newUser.quota = {\n id: quota,\n label: quota\n };\n return this.newUser.quota;\n } // Default is unlimited\n\n\n this.newUser.quota = this.quotaOptions[0];\n return this.quotaOptions[0];\n },\n infiniteHandler: function infiniteHandler($state) {\n this.$store.dispatch('getUsers', {\n offset: this.usersOffset,\n limit: this.usersLimit,\n group: this.selectedGroup !== 'disabled' ? this.selectedGroup : '',\n search: this.searchQuery\n }).then(function (response) {\n response ? $state.loaded() : $state.complete();\n });\n },\n\n /* SEARCH */\n search: function search(query) {\n this.searchQuery = query;\n this.$store.commit('resetUsers');\n this.$refs.infiniteLoading.stateChanger.reset();\n },\n resetSearch: function resetSearch() {\n this.search('');\n },\n resetForm: function resetForm() {\n // revert form to original state\n this.newUser = Object.assign({}, newUser);\n /**\n * Init default language from server data. The use of this.settings\n * requires a computed variable, which break the v-model binding of the form,\n * this is a much easier solution than getter and setter on a computed var\n */\n\n if (this.settings.defaultLanguage) {\n Vue.set(this.newUser.language, 'code', this.settings.defaultLanguage);\n }\n /**\n * In case the user directly loaded the user list within a group\n * the watch won't be triggered. We need to initialize it.\n */\n\n\n this.setNewUserDefaultGroup(this.selectedGroup);\n this.loading.all = false;\n },\n createUser: function createUser() {\n var _this = this;\n\n this.loading.all = true;\n this.$store.dispatch('addUser', {\n userid: this.newUser.id,\n password: this.newUser.password,\n displayName: this.newUser.displayName,\n email: this.newUser.mailAddress,\n groups: this.newUser.groups.map(function (group) {\n return group.id;\n }),\n subadmin: this.newUser.subAdminsGroups.map(function (group) {\n return group.id;\n }),\n quota: this.newUser.quota.id,\n language: this.newUser.language.code\n }).then(function () {\n _this.resetForm();\n\n _this.$refs.newusername.focus();\n }).catch(function (error) {\n _this.loading.all = false;\n\n if (error.response && error.response.data && error.response.data.ocs && error.response.data.ocs.meta) {\n var statuscode = error.response.data.ocs.meta.statuscode;\n\n if (statuscode === 102) {\n // wrong username\n _this.$refs.newusername.focus();\n } else if (statuscode === 107) {\n // wrong password\n _this.$refs.newuserpassword.focus();\n }\n }\n });\n },\n setNewUserDefaultGroup: function setNewUserDefaultGroup(value) {\n if (value && value.length > 0) {\n // setting new user default group to the current selected one\n var currentGroup = this.groups.find(function (group) {\n return group.id === value;\n });\n\n if (currentGroup) {\n this.newUser.groups = [currentGroup];\n return;\n }\n } // fallback, empty selected group\n\n\n this.newUser.groups = [];\n },\n\n /**\n * Create a new group\n *\n * @param {string} gid Group id\n * @returns {Promise}\n */\n createGroup: function createGroup(gid) {\n var _this2 = this;\n\n this.loading.groups = true;\n this.$store.dispatch('addGroup', gid).then(function (group) {\n _this2.newUser.groups.push(_this2.groups.find(function (group) {\n return group.id === gid;\n }));\n\n _this2.loading.groups = false;\n }).catch(function () {\n _this2.loading.groups = false;\n });\n return this.$store.getters.getGroups[this.groups.length];\n },\n\n /**\n * If the selected group is the disabled group but the count is 0\n * redirect to the all users page.\n * * we only check for 0 because we don't have the count on ldap\n * * and we therefore set the usercount to -1 in this specific case\n */\n redirectIfDisabled: function redirectIfDisabled() {\n var allGroups = this.$store.getters.getGroups;\n\n if (this.selectedGroup === 'disabled' && allGroups.findIndex(function (group) {\n return group.id === 'disabled' && group.usercount === 0;\n }) > -1) {\n // disabled group is empty, redirection to all users\n this.$router.push({\n name: 'users'\n });\n this.$refs.infiniteLoading.stateChanger.reset();\n }\n }\n }\n};","//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\nimport ClickOutside from 'vue-click-outside';\nimport Vue from 'vue';\nimport VTooltip from 'v-tooltip';\nimport { PopoverMenu, Multiselect, Actions, ActionButton } from 'nextcloud-vue';\nimport UserRowSimple from './UserRowSimple';\nimport UserRowMixin from '../../mixins/UserRowMixin';\nVue.use(VTooltip);\nexport default {\n name: 'UserRow',\n components: {\n UserRowSimple: UserRowSimple,\n PopoverMenu: PopoverMenu,\n Actions: Actions,\n ActionButton: ActionButton,\n Multiselect: Multiselect\n },\n directives: {\n ClickOutside: ClickOutside\n },\n mixins: [UserRowMixin],\n props: {\n user: {\n type: Object,\n required: true\n },\n settings: {\n type: Object,\n default: function _default() {\n return {};\n }\n },\n groups: {\n type: Array,\n default: function _default() {\n return [];\n }\n },\n subAdminsGroups: {\n type: Array,\n default: function _default() {\n return [];\n }\n },\n quotaOptions: {\n type: Array,\n default: function _default() {\n return [];\n }\n },\n showConfig: {\n type: Object,\n default: function _default() {\n return {};\n }\n },\n languages: {\n type: Array,\n required: true\n },\n externalActions: {\n type: Array,\n default: function _default() {\n return [];\n }\n }\n },\n data: function data() {\n return {\n rand: parseInt(Math.random() * 1000),\n openedMenu: false,\n feedbackMessage: '',\n editing: false,\n loading: {\n all: false,\n displayName: false,\n password: false,\n mailAddress: false,\n groups: false,\n subadmins: false,\n quota: false,\n delete: false,\n disable: false,\n languages: false,\n wipe: false\n }\n };\n },\n computed: {\n /* USER POPOVERMENU ACTIONS */\n userActions: function userActions() {\n var actions = [{\n icon: 'icon-delete',\n text: t('settings', 'Delete user'),\n action: this.deleteUser\n }, {\n icon: 'icon-delete',\n text: t('settings', 'Wipe all devices'),\n action: this.wipeUserDevices\n }, {\n icon: this.user.enabled ? 'icon-close' : 'icon-add',\n text: this.user.enabled ? t('settings', 'Disable user') : t('settings', 'Enable user'),\n action: this.enableDisableUser\n }];\n\n if (this.user.email !== null && this.user.email !== '') {\n actions.push({\n icon: 'icon-mail',\n text: t('settings', 'Resend welcome email'),\n action: this.sendWelcomeMail\n });\n }\n\n return actions.concat(this.externalActions);\n }\n },\n methods: {\n /* MENU HANDLING */\n toggleMenu: function toggleMenu() {\n this.openedMenu = !this.openedMenu;\n },\n hideMenu: function hideMenu() {\n this.openedMenu = false;\n },\n wipeUserDevices: function wipeUserDevices() {\n var _this = this;\n\n var userid = this.user.id;\n OC.dialogs.confirmDestructive(t('settings', 'In case of lost device or exiting the organization, this can remotely wipe the Nextcloud data from all devices associated with {userid}. Only works if the devices are connected to the internet.', {\n userid: userid\n }), t('settings', 'Remote wipe of devices'), {\n type: OC.dialogs.YES_NO_BUTTONS,\n confirm: t('settings', 'Wipe {userid}\\'s devices', {\n userid: userid\n }),\n confirmClasses: 'error',\n cancel: t('settings', 'Cancel')\n }, function (result) {\n if (result) {\n _this.loading.wipe = true;\n _this.loading.all = true;\n\n _this.$store.dispatch('wipeUserDevices', userid).then(function () {\n _this.loading.wipe = false;\n _this.loading.all = false;\n });\n }\n }, true);\n },\n deleteUser: function deleteUser() {\n var _this2 = this;\n\n var userid = this.user.id;\n OC.dialogs.confirmDestructive(t('settings', 'Fully delete {userid}\\'s account including all their personal files, app data, etc.', {\n userid: userid\n }), t('settings', 'Account deletion'), {\n type: OC.dialogs.YES_NO_BUTTONS,\n confirm: t('settings', 'Delete {userid}\\'s account', {\n userid: userid\n }),\n confirmClasses: 'error',\n cancel: t('settings', 'Cancel')\n }, function (result) {\n if (result) {\n _this2.loading.delete = true;\n _this2.loading.all = true;\n return _this2.$store.dispatch('deleteUser', userid).then(function () {\n _this2.loading.delete = false;\n _this2.loading.all = false;\n });\n }\n }, true);\n },\n enableDisableUser: function enableDisableUser() {\n var _this3 = this;\n\n this.loading.delete = true;\n this.loading.all = true;\n var userid = this.user.id;\n var enabled = !this.user.enabled;\n return this.$store.dispatch('enableDisableUser', {\n userid: userid,\n enabled: enabled\n }).then(function () {\n _this3.loading.delete = false;\n _this3.loading.all = false;\n });\n },\n\n /**\n \t * Set user displayName\n \t *\n \t * @param {string} displayName The display name\n \t */\n updateDisplayName: function updateDisplayName() {\n var _this4 = this;\n\n var displayName = this.$refs.displayName.value;\n this.loading.displayName = true;\n this.$store.dispatch('setUserData', {\n userid: this.user.id,\n key: 'displayname',\n value: displayName\n }).then(function () {\n _this4.loading.displayName = false;\n _this4.$refs.displayName.value = displayName;\n });\n },\n\n /**\n \t * Set user password\n \t *\n \t * @param {string} password The email adress\n \t */\n updatePassword: function updatePassword() {\n var _this5 = this;\n\n var password = this.$refs.password.value;\n this.loading.password = true;\n this.$store.dispatch('setUserData', {\n userid: this.user.id,\n key: 'password',\n value: password\n }).then(function () {\n _this5.loading.password = false;\n _this5.$refs.password.value = ''; // empty & show placeholder\n });\n },\n\n /**\n \t * Set user mailAddress\n \t *\n \t * @param {string} mailAddress The email adress\n \t */\n updateEmail: function updateEmail() {\n var _this6 = this;\n\n var mailAddress = this.$refs.mailAddress.value;\n this.loading.mailAddress = true;\n this.$store.dispatch('setUserData', {\n userid: this.user.id,\n key: 'email',\n value: mailAddress\n }).then(function () {\n _this6.loading.mailAddress = false;\n _this6.$refs.mailAddress.value = mailAddress;\n });\n },\n\n /**\n \t * Create a new group and add user to it\n \t *\n \t * @param {string} gid Group id\n \t */\n createGroup: function createGroup(gid) {\n var userid;\n return regeneratorRuntime.async(function createGroup$(_context) {\n while (1) {\n switch (_context.prev = _context.next) {\n case 0:\n this.loading = {\n groups: true,\n subadmins: true\n };\n _context.prev = 1;\n _context.next = 4;\n return regeneratorRuntime.awrap(this.$store.dispatch('addGroup', gid));\n\n case 4:\n userid = this.user.id;\n _context.next = 7;\n return regeneratorRuntime.awrap(this.$store.dispatch('addUserGroup', {\n userid: userid,\n gid: gid\n }));\n\n case 7:\n _context.next = 12;\n break;\n\n case 9:\n _context.prev = 9;\n _context.t0 = _context[\"catch\"](1);\n console.error(_context.t0);\n\n case 12:\n _context.prev = 12;\n this.loading = {\n groups: false,\n subadmins: false\n };\n return _context.finish(12);\n\n case 15:\n return _context.abrupt(\"return\", this.$store.getters.getGroups[this.groups.length]);\n\n case 16:\n case \"end\":\n return _context.stop();\n }\n }\n }, null, this, [[1, 9, 12, 15]]);\n },\n\n /**\n \t * Add user to group\n \t *\n \t * @param {object} group Group object\n \t */\n addUserGroup: function addUserGroup(group) {\n var userid, gid;\n return regeneratorRuntime.async(function addUserGroup$(_context2) {\n while (1) {\n switch (_context2.prev = _context2.next) {\n case 0:\n if (!(group.canAdd === false)) {\n _context2.next = 2;\n break;\n }\n\n return _context2.abrupt(\"return\", false);\n\n case 2:\n this.loading.groups = true;\n userid = this.user.id;\n gid = group.id;\n _context2.prev = 5;\n _context2.next = 8;\n return regeneratorRuntime.awrap(this.$store.dispatch('addUserGroup', {\n userid: userid,\n gid: gid\n }));\n\n case 8:\n _context2.next = 13;\n break;\n\n case 10:\n _context2.prev = 10;\n _context2.t0 = _context2[\"catch\"](5);\n console.error(_context2.t0);\n\n case 13:\n _context2.prev = 13;\n this.loading.groups = false;\n return _context2.finish(13);\n\n case 16:\n case \"end\":\n return _context2.stop();\n }\n }\n }, null, this, [[5, 10, 13, 16]]);\n },\n\n /**\n \t * Remove user from group\n \t *\n \t * @param {object} group Group object\n \t */\n removeUserGroup: function removeUserGroup(group) {\n var userid, gid;\n return regeneratorRuntime.async(function removeUserGroup$(_context3) {\n while (1) {\n switch (_context3.prev = _context3.next) {\n case 0:\n if (!(group.canRemove === false)) {\n _context3.next = 2;\n break;\n }\n\n return _context3.abrupt(\"return\", false);\n\n case 2:\n this.loading.groups = true;\n userid = this.user.id;\n gid = group.id;\n _context3.prev = 5;\n _context3.next = 8;\n return regeneratorRuntime.awrap(this.$store.dispatch('removeUserGroup', {\n userid: userid,\n gid: gid\n }));\n\n case 8:\n this.loading.groups = false; // remove user from current list if current list is the removed group\n\n if (this.$route.params.selectedGroup === gid) {\n this.$store.commit('deleteUser', userid);\n }\n\n _context3.next = 15;\n break;\n\n case 12:\n _context3.prev = 12;\n _context3.t0 = _context3[\"catch\"](5);\n this.loading.groups = false;\n\n case 15:\n case \"end\":\n return _context3.stop();\n }\n }\n }, null, this, [[5, 12]]);\n },\n\n /**\n \t * Add user to group\n \t *\n \t * @param {object} group Group object\n \t */\n addUserSubAdmin: function addUserSubAdmin(group) {\n var userid, gid;\n return regeneratorRuntime.async(function addUserSubAdmin$(_context4) {\n while (1) {\n switch (_context4.prev = _context4.next) {\n case 0:\n this.loading.subadmins = true;\n userid = this.user.id;\n gid = group.id;\n _context4.prev = 3;\n _context4.next = 6;\n return regeneratorRuntime.awrap(this.$store.dispatch('addUserSubAdmin', {\n userid: userid,\n gid: gid\n }));\n\n case 6:\n this.loading.subadmins = false;\n _context4.next = 12;\n break;\n\n case 9:\n _context4.prev = 9;\n _context4.t0 = _context4[\"catch\"](3);\n console.error(_context4.t0);\n\n case 12:\n case \"end\":\n return _context4.stop();\n }\n }\n }, null, this, [[3, 9]]);\n },\n\n /**\n \t * Remove user from group\n \t *\n \t * @param {object} group Group object\n \t */\n removeUserSubAdmin: function removeUserSubAdmin(group) {\n var userid, gid;\n return regeneratorRuntime.async(function removeUserSubAdmin$(_context5) {\n while (1) {\n switch (_context5.prev = _context5.next) {\n case 0:\n this.loading.subadmins = true;\n userid = this.user.id;\n gid = group.id;\n _context5.prev = 3;\n _context5.next = 6;\n return regeneratorRuntime.awrap(this.$store.dispatch('removeUserSubAdmin', {\n userid: userid,\n gid: gid\n }));\n\n case 6:\n _context5.next = 11;\n break;\n\n case 8:\n _context5.prev = 8;\n _context5.t0 = _context5[\"catch\"](3);\n console.error(_context5.t0);\n\n case 11:\n _context5.prev = 11;\n this.loading.subadmins = false;\n return _context5.finish(11);\n\n case 14:\n case \"end\":\n return _context5.stop();\n }\n }\n }, null, this, [[3, 8, 11, 14]]);\n },\n\n /**\n \t * Dispatch quota set request\n \t *\n \t * @param {string|Object} quota Quota in readable format '5 GB' or Object {id: '5 GB', label: '5GB'}\n \t * @returns {string}\n \t */\n setUserQuota: function setUserQuota() {\n var quota,\n _args6 = arguments;\n return regeneratorRuntime.async(function setUserQuota$(_context6) {\n while (1) {\n switch (_context6.prev = _context6.next) {\n case 0:\n quota = _args6.length > 0 && _args6[0] !== undefined ? _args6[0] : 'none';\n this.loading.quota = true; // ensure we only send the preset id\n\n quota = quota.id ? quota.id : quota;\n _context6.prev = 3;\n _context6.next = 6;\n return regeneratorRuntime.awrap(this.$store.dispatch('setUserData', {\n userid: this.user.id,\n key: 'quota',\n value: quota\n }));\n\n case 6:\n _context6.next = 11;\n break;\n\n case 8:\n _context6.prev = 8;\n _context6.t0 = _context6[\"catch\"](3);\n console.error(_context6.t0);\n\n case 11:\n _context6.prev = 11;\n this.loading.quota = false;\n return _context6.finish(11);\n\n case 14:\n return _context6.abrupt(\"return\", quota);\n\n case 15:\n case \"end\":\n return _context6.stop();\n }\n }\n }, null, this, [[3, 8, 11, 14]]);\n },\n\n /**\n \t * Validate quota string to make sure it's a valid human file size\n \t *\n \t * @param {string} quota Quota in readable format '5 GB'\n \t * @returns {Promise|boolean}\n \t */\n validateQuota: function validateQuota(quota) {\n // only used for new presets sent through @Tag\n var validQuota = OC.Util.computerFileSize(quota);\n\n if (validQuota !== null && validQuota >= 0) {\n // unify format output\n return this.setUserQuota(OC.Util.humanFileSize(OC.Util.computerFileSize(quota)));\n } // if no valid do not change\n\n\n return false;\n },\n\n /**\n \t * Dispatch language set request\n \t *\n \t * @param {Object} lang language object {code:'en', name:'English'}\n \t * @returns {Object}\n \t */\n setUserLanguage: function setUserLanguage(lang) {\n return regeneratorRuntime.async(function setUserLanguage$(_context7) {\n while (1) {\n switch (_context7.prev = _context7.next) {\n case 0:\n this.loading.languages = true; // ensure we only send the preset id\n\n _context7.prev = 1;\n _context7.next = 4;\n return regeneratorRuntime.awrap(this.$store.dispatch('setUserData', {\n userid: this.user.id,\n key: 'language',\n value: lang.code\n }));\n\n case 4:\n _context7.next = 9;\n break;\n\n case 6:\n _context7.prev = 6;\n _context7.t0 = _context7[\"catch\"](1);\n console.error(_context7.t0);\n\n case 9:\n _context7.prev = 9;\n this.loading.languages = false;\n return _context7.finish(9);\n\n case 12:\n return _context7.abrupt(\"return\", lang);\n\n case 13:\n case \"end\":\n return _context7.stop();\n }\n }\n }, null, this, [[1, 6, 9, 12]]);\n },\n\n /**\n \t * Dispatch new welcome mail request\n \t */\n sendWelcomeMail: function sendWelcomeMail() {\n var _this7 = this;\n\n this.loading.all = true;\n this.$store.dispatch('sendWelcomeMail', this.user.id).then(function (success) {\n if (success) {\n // Show feedback to indicate the success\n _this7.feedbackMessage = t('setting', 'Welcome mail sent!');\n setTimeout(function () {\n _this7.feedbackMessage = '';\n }, 2000);\n }\n\n _this7.loading.all = false;\n });\n }\n }\n};","//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\nimport { PopoverMenu, Actions, ActionButton } from 'nextcloud-vue';\nimport ClickOutside from 'vue-click-outside';\nimport { getCurrentUser } from '@nextcloud/auth';\nimport UserRowMixin from '../../mixins/UserRowMixin';\nexport default {\n name: 'UserRowSimple',\n components: {\n PopoverMenu: PopoverMenu,\n ActionButton: ActionButton,\n Actions: Actions\n },\n directives: {\n ClickOutside: ClickOutside\n },\n mixins: [UserRowMixin],\n props: {\n user: {\n type: Object,\n required: true\n },\n loading: {\n type: Object,\n required: true\n },\n showConfig: {\n type: Object,\n required: true\n },\n userActions: {\n type: Array,\n required: true\n },\n openedMenu: {\n type: Boolean,\n required: true\n },\n feedbackMessage: {\n type: String,\n required: true\n },\n subAdminsGroups: {\n type: Array,\n required: true\n },\n settings: {\n type: Object,\n required: true\n }\n },\n computed: {\n userGroupsLabels: function userGroupsLabels() {\n return this.userGroups.map(function (group) {\n return group.name;\n }).join(', ');\n },\n userSubAdminsGroupsLabels: function userSubAdminsGroupsLabels() {\n return this.userSubAdminsGroups.map(function (group) {\n return group.name;\n }).join(', ');\n },\n usedSpace: function usedSpace() {\n if (this.user.quota.used) {\n return t('settings', '{size} used', {\n size: OC.Util.humanFileSize(this.user.quota.used)\n });\n }\n\n return t('settings', '{size} used', {\n size: OC.Util.humanFileSize(0)\n });\n },\n canEdit: function canEdit() {\n return getCurrentUser().uid !== this.user.id && this.user.id !== 'admin';\n }\n },\n methods: {\n hideMenu: function hideMenu() {\n this.$emit('hideMenu');\n },\n toggleEdit: function toggleEdit() {\n this.$emit('update:editing', true);\n }\n }\n};","function _typeof(obj) { if (typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; }; } return _typeof(obj); }\n\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\nimport Vue from 'vue';\nimport VueLocalStorage from 'vue-localstorage';\nimport { AppContent, AppNavigation, AppNavigationItem, AppNavigationNew, AppNavigationSettings, Content, Multiselect } from 'nextcloud-vue';\nimport UserList from '../components/UserList';\nVue.use(VueLocalStorage);\nexport default {\n name: 'Users',\n components: {\n AppContent: AppContent,\n AppNavigation: AppNavigation,\n AppNavigationItem: AppNavigationItem,\n AppNavigationNew: AppNavigationNew,\n AppNavigationSettings: AppNavigationSettings,\n Content: Content,\n UserList: UserList,\n Multiselect: Multiselect\n },\n props: {\n selectedGroup: {\n type: String,\n default: null\n }\n },\n data: function data() {\n return {\n // default quota is set to unlimited\n unlimitedQuota: {\n id: 'none',\n label: t('settings', 'Unlimited')\n },\n // temporary value used for multiselect change\n selectedQuota: false,\n externalActions: [],\n showAddGroupEntry: false,\n loadingAddGroup: false,\n showConfig: {\n showStoragePath: false,\n showUserBackend: false,\n showLastLogin: false,\n showNewUserForm: false,\n showLanguages: false\n }\n };\n },\n computed: {\n users: function users() {\n return this.$store.getters.getUsers;\n },\n usersOffset: function usersOffset() {\n return this.$store.getters.getUsersOffset;\n },\n usersLimit: function usersLimit() {\n return this.$store.getters.getUsersLimit;\n },\n // Local settings\n showLanguages: {\n get: function get() {\n return this.getLocalstorage('showLanguages');\n },\n set: function set(status) {\n this.setLocalStorage('showLanguages', status);\n }\n },\n showLastLogin: {\n get: function get() {\n return this.getLocalstorage('showLastLogin');\n },\n set: function set(status) {\n this.setLocalStorage('showLastLogin', status);\n }\n },\n showUserBackend: {\n get: function get() {\n return this.getLocalstorage('showUserBackend');\n },\n set: function set(status) {\n this.setLocalStorage('showUserBackend', status);\n }\n },\n showStoragePath: {\n get: function get() {\n return this.getLocalstorage('showStoragePath');\n },\n set: function set(status) {\n this.setLocalStorage('showStoragePath', status);\n }\n },\n userCount: function userCount() {\n return this.$store.getters.getUserCount;\n },\n settings: function settings() {\n return this.$store.getters.getServerData;\n },\n // default quota\n quotaOptions: function quotaOptions() {\n // convert the preset array into objects\n var quotaPreset = this.settings.quotaPreset.reduce(function (acc, cur) {\n return acc.concat({\n id: cur,\n label: cur\n });\n }, []); // add default presets\n\n quotaPreset.unshift(this.unlimitedQuota);\n return quotaPreset;\n },\n // mapping saved values to objects\n defaultQuota: {\n get: function get() {\n if (this.selectedQuota !== false) {\n return this.selectedQuota;\n }\n\n if (this.settings.defaultQuota !== this.unlimitedQuota.id && OC.Util.computerFileSize(this.settings.defaultQuota) >= 0) {\n // if value is valid, let's map the quotaOptions or return custom quota\n return {\n id: this.settings.defaultQuota,\n label: this.settings.defaultQuota\n };\n }\n\n return this.unlimitedQuota; // unlimited\n },\n set: function set(quota) {\n this.selectedQuota = quota;\n }\n },\n // BUILD APP NAVIGATION MENU OBJECT\n menu: function menu() {\n var _this = this;\n\n // Data provided php side\n var self = this;\n var groups = this.$store.getters.getGroups;\n groups = Array.isArray(groups) ? groups : []; // Map groups\n\n groups = groups.map(function (group) {\n var item = {};\n item.id = group.id.replace(' ', '_');\n item.key = item.id;\n item.utils = {}; // router link to\n\n item.router = {\n name: 'group',\n params: {\n selectedGroup: group.id\n }\n }; // group name\n\n item.text = group.name;\n item.title = group.name; // users count for all groups\n\n if (group.usercount - group.disabled > 0 || group.usercount === -1) {\n item.utils.counter = group.usercount - group.disabled;\n }\n\n if (item.id !== 'admin' && item.id !== 'disabled' && _this.settings.isAdmin) {\n // add delete button on real groups\n item.utils.actions = [{\n icon: 'icon-delete',\n text: t('settings', 'Remove group'),\n action: function action() {\n self.removeGroup(group.id);\n }\n }];\n }\n\n return item;\n }); // Every item is added on top of the array, so we're going backward\n // Groups, separator, disabled, admin, everyone\n // Add separator\n\n var realGroups = groups.find(function (group) {\n return group.id !== 'disabled' && group.id !== 'admin';\n });\n realGroups = typeof realGroups === 'undefined' ? [] : realGroups;\n realGroups = Array.isArray(realGroups) ? realGroups : [realGroups];\n\n if (realGroups.length > 0) {\n var separator = {\n caption: true,\n text: t('settings', 'Groups')\n };\n groups.unshift(separator);\n } // Adjust admin and disabled groups\n\n\n var adminGroup = groups.find(function (group) {\n return group.id === 'admin';\n });\n var disabledGroup = groups.find(function (group) {\n return group.id === 'disabled';\n }); // filter out admin and disabled\n\n groups = groups.filter(function (group) {\n return ['admin', 'disabled'].indexOf(group.id) === -1;\n });\n\n if (adminGroup && adminGroup.text) {\n adminGroup.text = t('settings', 'Admins'); // rename admin group\n\n adminGroup.icon = 'icon-user-admin'; // set icon\n\n groups.unshift(adminGroup); // add admin group if present\n }\n\n if (disabledGroup && disabledGroup.text) {\n disabledGroup.text = t('settings', 'Disabled users'); // rename disabled group\n\n disabledGroup.icon = 'icon-disabled-users'; // set icon\n\n if (disabledGroup.utils && (disabledGroup.utils.counter > 0 // add disabled if not empty\n || disabledGroup.utils.counter === -1) // add disabled if ldap enabled\n ) {\n groups.unshift(disabledGroup);\n\n if (disabledGroup.utils.counter === -1) {\n // hides the counter instead of showing -1\n delete disabledGroup.utils.counter;\n }\n }\n } // Add everyone group\n\n\n var everyoneGroup = {\n id: 'everyone',\n key: 'everyone',\n icon: 'icon-contacts-dark',\n router: {\n name: 'users'\n },\n text: t('settings', 'Everyone')\n }; // users count\n\n if (this.userCount > 0) {\n Vue.set(everyoneGroup, 'utils', {\n counter: this.userCount\n });\n }\n\n groups.unshift(everyoneGroup);\n var addGroup = {\n id: 'addgroup',\n key: 'addgroup',\n icon: 'icon-add',\n text: t('settings', 'Add group'),\n classes: this.loadingAddGroup ? 'icon-loading-small' : ''\n };\n\n if (this.showAddGroupEntry) {\n Vue.set(addGroup, 'edit', {\n text: t('settings', 'Add group'),\n action: this.createGroup,\n reset: function reset() {\n self.showAddGroupEntry = false;\n }\n });\n addGroup.classes = 'editing';\n } else {\n Vue.set(addGroup, 'action', function () {\n self.showAddGroupEntry = true; // focus input\n\n Vue.nextTick(function () {\n window.addgroup.querySelector('form > input[type=\"text\"]').focus();\n });\n });\n }\n\n groups.unshift(addGroup);\n return groups;\n }\n },\n beforeMount: function beforeMount() {\n this.$store.commit('initGroups', {\n groups: this.$store.getters.getServerData.groups,\n orderBy: this.$store.getters.getServerData.sortGroups,\n userCount: this.$store.getters.getServerData.userCount\n });\n this.$store.dispatch('getPasswordPolicyMinLength');\n },\n created: function created() {\n // init the OCA.Settings.UserList object\n // and add the registerAction method\n Object.assign(OCA, {\n Settings: {\n UserList: {\n registerAction: this.registerAction\n }\n }\n });\n },\n methods: {\n toggleNewUserMenu: function toggleNewUserMenu() {\n this.showConfig.showNewUserForm = !this.showConfig.showNewUserForm;\n\n if (this.showConfig.showNewUserForm) {\n Vue.nextTick(function () {\n window.newusername.focus();\n });\n }\n },\n getLocalstorage: function getLocalstorage(key) {\n // force initialization\n var localConfig = this.$localStorage.get(key); // if localstorage is null, fallback to original values\n\n this.showConfig[key] = localConfig !== null ? localConfig === 'true' : this.showConfig[key];\n return this.showConfig[key];\n },\n setLocalStorage: function setLocalStorage(key, status) {\n this.showConfig[key] = status;\n this.$localStorage.set(key, status);\n return status;\n },\n removeGroup: function removeGroup(groupid) {\n var self = this; // TODO migrate to a vue js confirm dialog component\n\n OC.dialogs.confirm(t('settings', 'You are about to remove the group {group}. The users will NOT be deleted.', {\n group: groupid\n }), t('settings', 'Please confirm the group removal '), function (success) {\n if (success) {\n self.$store.dispatch('removeGroup', groupid);\n }\n });\n },\n\n /**\n * Dispatch default quota set request\n *\n * @param {string|Object} quota Quota in readable format '5 GB' or Object {id: '5 GB', label: '5GB'}\n */\n setDefaultQuota: function setDefaultQuota() {\n var _this2 = this;\n\n var quota = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : 'none';\n this.$store.dispatch('setAppConfig', {\n app: 'files',\n key: 'default_quota',\n // ensure we only send the preset id\n value: quota.id ? quota.id : quota\n }).then(function () {\n if (_typeof(quota) !== 'object') {\n quota = {\n id: quota,\n label: quota\n };\n }\n\n _this2.defaultQuota = quota;\n });\n },\n\n /**\n * Validate quota string to make sure it's a valid human file size\n *\n * @param {string} quota Quota in readable format '5 GB'\n * @returns {Promise|boolean}\n */\n validateQuota: function validateQuota(quota) {\n // only used for new presets sent through @Tag\n var validQuota = OC.Util.computerFileSize(quota);\n\n if (validQuota === null) {\n return this.setDefaultQuota('none');\n } else {\n // unify format output\n return this.setDefaultQuota(OC.Util.humanFileSize(OC.Util.computerFileSize(quota)));\n }\n },\n\n /**\n * Register a new action for the user menu\n *\n * @param {string} icon the icon class\n * @param {string} text the text to display\n * @param {Function} action the function to run\n * @returns {Array}\n */\n registerAction: function registerAction(icon, text, action) {\n this.externalActions.push({\n icon: icon,\n text: text,\n action: action\n });\n return this.externalActions;\n },\n\n /**\n * Create a new group\n *\n * @param {Object} event The form submit event\n */\n createGroup: function createGroup(event) {\n var _this3 = this;\n\n var gid = event.target[0].value;\n this.loadingAddGroup = true;\n this.$store.dispatch('addGroup', gid).then(function () {\n _this3.showAddGroupEntry = false;\n _this3.loadingAddGroup = false;\n\n _this3.$router.push({\n name: 'group',\n params: {\n selectedGroup: gid\n }\n });\n }).catch(function () {\n _this3.loadingAddGroup = false;\n });\n }\n }\n};","var render = function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n return _c(\n \"div\",\n {\n staticClass: \"user-list-grid\",\n attrs: { id: \"app-content\" },\n on: {\n \"&scroll\": function($event) {\n return _vm.onScroll($event)\n }\n }\n },\n [\n _c(\n \"div\",\n {\n staticClass: \"row\",\n class: { sticky: _vm.scrolled && !_vm.showConfig.showNewUserForm },\n attrs: { id: \"grid-header\" }\n },\n [\n _c(\"div\", { staticClass: \"avatar\", attrs: { id: \"headerAvatar\" } }),\n _vm._v(\" \"),\n _c(\"div\", { staticClass: \"name\", attrs: { id: \"headerName\" } }, [\n _vm._v(\n \"\\n\\t\\t\\t\" + _vm._s(_vm.t(\"settings\", \"Username\")) + \"\\n\\n\\t\\t\\t\"\n ),\n _c(\"div\", { staticClass: \"subtitle\" }, [\n _vm._v(\n \"\\n\\t\\t\\t\\t\" +\n _vm._s(_vm.t(\"settings\", \"Display name\")) +\n \"\\n\\t\\t\\t\"\n )\n ])\n ]),\n _vm._v(\" \"),\n _c(\n \"div\",\n { staticClass: \"password\", attrs: { id: \"headerPassword\" } },\n [\n _vm._v(\n \"\\n\\t\\t\\t\" + _vm._s(_vm.t(\"settings\", \"Password\")) + \"\\n\\t\\t\"\n )\n ]\n ),\n _vm._v(\" \"),\n _c(\n \"div\",\n { staticClass: \"mailAddress\", attrs: { id: \"headerAddress\" } },\n [_vm._v(\"\\n\\t\\t\\t\" + _vm._s(_vm.t(\"settings\", \"Email\")) + \"\\n\\t\\t\")]\n ),\n _vm._v(\" \"),\n _c(\"div\", { staticClass: \"groups\", attrs: { id: \"headerGroups\" } }, [\n _vm._v(\"\\n\\t\\t\\t\" + _vm._s(_vm.t(\"settings\", \"Groups\")) + \"\\n\\t\\t\")\n ]),\n _vm._v(\" \"),\n _vm.subAdminsGroups.length > 0 && _vm.settings.isAdmin\n ? _c(\n \"div\",\n { staticClass: \"subadmins\", attrs: { id: \"headerSubAdmins\" } },\n [\n _vm._v(\n \"\\n\\t\\t\\t\" +\n _vm._s(_vm.t(\"settings\", \"Group admin for\")) +\n \"\\n\\t\\t\"\n )\n ]\n )\n : _vm._e(),\n _vm._v(\" \"),\n _c(\"div\", { staticClass: \"quota\", attrs: { id: \"headerQuota\" } }, [\n _vm._v(\"\\n\\t\\t\\t\" + _vm._s(_vm.t(\"settings\", \"Quota\")) + \"\\n\\t\\t\")\n ]),\n _vm._v(\" \"),\n _vm.showConfig.showLanguages\n ? _c(\n \"div\",\n { staticClass: \"languages\", attrs: { id: \"headerLanguages\" } },\n [\n _vm._v(\n \"\\n\\t\\t\\t\" +\n _vm._s(_vm.t(\"settings\", \"Language\")) +\n \"\\n\\t\\t\"\n )\n ]\n )\n : _vm._e(),\n _vm._v(\" \"),\n _vm.showConfig.showUserBackend || _vm.showConfig.showStoragePath\n ? _c(\"div\", { staticClass: \"headerUserBackend userBackend\" }, [\n _vm.showConfig.showUserBackend\n ? _c(\"div\", { staticClass: \"userBackend\" }, [\n _vm._v(\n \"\\n\\t\\t\\t\\t\" +\n _vm._s(_vm.t(\"settings\", \"User backend\")) +\n \"\\n\\t\\t\\t\"\n )\n ])\n : _vm._e(),\n _vm._v(\" \"),\n _vm.showConfig.showStoragePath\n ? _c(\"div\", { staticClass: \"subtitle storageLocation\" }, [\n _vm._v(\n \"\\n\\t\\t\\t\\t\" +\n _vm._s(_vm.t(\"settings\", \"Storage location\")) +\n \"\\n\\t\\t\\t\"\n )\n ])\n : _vm._e()\n ])\n : _vm._e(),\n _vm._v(\" \"),\n _vm.showConfig.showLastLogin\n ? _c(\"div\", { staticClass: \"headerLastLogin lastLogin\" }, [\n _vm._v(\n \"\\n\\t\\t\\t\" +\n _vm._s(_vm.t(\"settings\", \"Last login\")) +\n \"\\n\\t\\t\"\n )\n ])\n : _vm._e(),\n _vm._v(\" \"),\n _c(\"div\", { staticClass: \"userActions\" })\n ]\n ),\n _vm._v(\" \"),\n _c(\n \"form\",\n {\n directives: [\n {\n name: \"show\",\n rawName: \"v-show\",\n value: _vm.showConfig.showNewUserForm,\n expression: \"showConfig.showNewUserForm\"\n }\n ],\n staticClass: \"row\",\n class: { sticky: _vm.scrolled && _vm.showConfig.showNewUserForm },\n attrs: { id: \"new-user\", disabled: _vm.loading.all },\n on: {\n submit: function($event) {\n $event.preventDefault()\n return _vm.createUser($event)\n }\n }\n },\n [\n _c(\"div\", {\n class: _vm.loading.all ? \"icon-loading-small\" : \"icon-add\"\n }),\n _vm._v(\" \"),\n _c(\"div\", { staticClass: \"name\" }, [\n _c(\"input\", {\n directives: [\n {\n name: \"model\",\n rawName: \"v-model\",\n value: _vm.newUser.id,\n expression: \"newUser.id\"\n }\n ],\n ref: \"newusername\",\n attrs: {\n id: \"newusername\",\n disabled: _vm.settings.newUserGenerateUserID,\n placeholder: _vm.settings.newUserGenerateUserID\n ? _vm.t(\"settings\", \"Will be autogenerated\")\n : _vm.t(\"settings\", \"Username\"),\n autocapitalize: \"none\",\n autocomplete: \"off\",\n autocorrect: \"off\",\n name: \"username\",\n pattern: \"[a-zA-Z0-9 _\\\\.@\\\\-']+\",\n required: \"\",\n type: \"text\"\n },\n domProps: { value: _vm.newUser.id },\n on: {\n input: function($event) {\n if ($event.target.composing) {\n return\n }\n _vm.$set(_vm.newUser, \"id\", $event.target.value)\n }\n }\n })\n ]),\n _vm._v(\" \"),\n _c(\"div\", { staticClass: \"displayName\" }, [\n _c(\"input\", {\n directives: [\n {\n name: \"model\",\n rawName: \"v-model\",\n value: _vm.newUser.displayName,\n expression: \"newUser.displayName\"\n }\n ],\n attrs: {\n id: \"newdisplayname\",\n placeholder: _vm.t(\"settings\", \"Display name\"),\n autocapitalize: \"none\",\n autocomplete: \"off\",\n autocorrect: \"off\",\n name: \"displayname\",\n type: \"text\"\n },\n domProps: { value: _vm.newUser.displayName },\n on: {\n input: function($event) {\n if ($event.target.composing) {\n return\n }\n _vm.$set(_vm.newUser, \"displayName\", $event.target.value)\n }\n }\n })\n ]),\n _vm._v(\" \"),\n _c(\"div\", { staticClass: \"password\" }, [\n _c(\"input\", {\n directives: [\n {\n name: \"model\",\n rawName: \"v-model\",\n value: _vm.newUser.password,\n expression: \"newUser.password\"\n }\n ],\n ref: \"newuserpassword\",\n attrs: {\n id: \"newuserpassword\",\n minlength: _vm.minPasswordLength,\n placeholder: _vm.t(\"settings\", \"Password\"),\n required: _vm.newUser.mailAddress === \"\",\n autocapitalize: \"none\",\n autocomplete: \"new-password\",\n autocorrect: \"off\",\n name: \"password\",\n type: \"password\"\n },\n domProps: { value: _vm.newUser.password },\n on: {\n input: function($event) {\n if ($event.target.composing) {\n return\n }\n _vm.$set(_vm.newUser, \"password\", $event.target.value)\n }\n }\n })\n ]),\n _vm._v(\" \"),\n _c(\"div\", { staticClass: \"mailAddress\" }, [\n _c(\"input\", {\n directives: [\n {\n name: \"model\",\n rawName: \"v-model\",\n value: _vm.newUser.mailAddress,\n expression: \"newUser.mailAddress\"\n }\n ],\n attrs: {\n id: \"newemail\",\n placeholder: _vm.t(\"settings\", \"Email\"),\n required:\n _vm.newUser.password === \"\" ||\n _vm.settings.newUserRequireEmail,\n autocapitalize: \"none\",\n autocomplete: \"off\",\n autocorrect: \"off\",\n name: \"email\",\n type: \"email\"\n },\n domProps: { value: _vm.newUser.mailAddress },\n on: {\n input: function($event) {\n if ($event.target.composing) {\n return\n }\n _vm.$set(_vm.newUser, \"mailAddress\", $event.target.value)\n }\n }\n })\n ]),\n _vm._v(\" \"),\n _c(\n \"div\",\n { staticClass: \"groups\" },\n [\n !_vm.settings.isAdmin\n ? _c(\"input\", {\n class: { \"icon-loading-small\": _vm.loading.groups },\n attrs: {\n id: \"newgroups\",\n required: !_vm.settings.isAdmin,\n tabindex: \"-1\",\n type: \"text\"\n },\n domProps: { value: _vm.newUser.groups }\n })\n : _vm._e(),\n _vm._v(\" \"),\n _c(\n \"Multiselect\",\n {\n staticClass: \"multiselect-vue\",\n attrs: {\n \"close-on-select\": false,\n disabled: _vm.loading.groups || _vm.loading.all,\n multiple: true,\n options: _vm.canAddGroups,\n placeholder: _vm.t(\"settings\", \"Add user in group\"),\n \"tag-width\": 60,\n taggable: true,\n label: \"name\",\n \"tag-placeholder\": \"create\",\n \"track-by\": \"id\"\n },\n on: { tag: _vm.createGroup },\n model: {\n value: _vm.newUser.groups,\n callback: function($$v) {\n _vm.$set(_vm.newUser, \"groups\", $$v)\n },\n expression: \"newUser.groups\"\n }\n },\n [\n _c(\n \"span\",\n { attrs: { slot: \"noResult\" }, slot: \"noResult\" },\n [_vm._v(_vm._s(_vm.t(\"settings\", \"No results\")))]\n )\n ]\n )\n ],\n 1\n ),\n _vm._v(\" \"),\n _vm.subAdminsGroups.length > 0 && _vm.settings.isAdmin\n ? _c(\n \"div\",\n { staticClass: \"subadmins\" },\n [\n _c(\n \"Multiselect\",\n {\n staticClass: \"multiselect-vue\",\n attrs: {\n \"close-on-select\": false,\n multiple: true,\n options: _vm.subAdminsGroups,\n placeholder: _vm.t(\"settings\", \"Set user as admin for\"),\n \"tag-width\": 60,\n label: \"name\",\n \"track-by\": \"id\"\n },\n model: {\n value: _vm.newUser.subAdminsGroups,\n callback: function($$v) {\n _vm.$set(_vm.newUser, \"subAdminsGroups\", $$v)\n },\n expression: \"newUser.subAdminsGroups\"\n }\n },\n [\n _c(\n \"span\",\n { attrs: { slot: \"noResult\" }, slot: \"noResult\" },\n [_vm._v(_vm._s(_vm.t(\"settings\", \"No results\")))]\n )\n ]\n )\n ],\n 1\n )\n : _vm._e(),\n _vm._v(\" \"),\n _c(\n \"div\",\n { staticClass: \"quota\" },\n [\n _c(\"Multiselect\", {\n staticClass: \"multiselect-vue\",\n attrs: {\n \"allow-empty\": false,\n options: _vm.quotaOptions,\n placeholder: _vm.t(\"settings\", \"Select user quota\"),\n taggable: true,\n label: \"label\",\n \"track-by\": \"id\"\n },\n on: { tag: _vm.validateQuota },\n model: {\n value: _vm.newUser.quota,\n callback: function($$v) {\n _vm.$set(_vm.newUser, \"quota\", $$v)\n },\n expression: \"newUser.quota\"\n }\n })\n ],\n 1\n ),\n _vm._v(\" \"),\n _vm.showConfig.showLanguages\n ? _c(\n \"div\",\n { staticClass: \"languages\" },\n [\n _c(\"Multiselect\", {\n staticClass: \"multiselect-vue\",\n attrs: {\n \"allow-empty\": false,\n options: _vm.languages,\n placeholder: _vm.t(\"settings\", \"Default language\"),\n \"group-label\": \"label\",\n \"group-values\": \"languages\",\n label: \"name\",\n \"track-by\": \"code\"\n },\n model: {\n value: _vm.newUser.language,\n callback: function($$v) {\n _vm.$set(_vm.newUser, \"language\", $$v)\n },\n expression: \"newUser.language\"\n }\n })\n ],\n 1\n )\n : _vm._e(),\n _vm._v(\" \"),\n _vm.showConfig.showStoragePath\n ? _c(\"div\", { staticClass: \"storageLocation\" })\n : _vm._e(),\n _vm._v(\" \"),\n _vm.showConfig.showUserBackend\n ? _c(\"div\", { staticClass: \"userBackend\" })\n : _vm._e(),\n _vm._v(\" \"),\n _vm.showConfig.showLastLogin\n ? _c(\"div\", { staticClass: \"lastLogin\" })\n : _vm._e(),\n _vm._v(\" \"),\n _c(\"div\", { staticClass: \"userActions\" }, [\n _c(\"input\", {\n staticClass: \"button primary icon-checkmark-white has-tooltip\",\n attrs: {\n id: \"newsubmit\",\n title: _vm.t(\"settings\", \"Add a new user\"),\n type: \"submit\",\n value: \"\"\n }\n })\n ])\n ]\n ),\n _vm._v(\" \"),\n _vm._l(_vm.filteredUsers, function(user, key) {\n return _c(\"user-row\", {\n key: key,\n attrs: {\n \"external-actions\": _vm.externalActions,\n groups: _vm.groups,\n languages: _vm.languages,\n \"quota-options\": _vm.quotaOptions,\n settings: _vm.settings,\n \"show-config\": _vm.showConfig,\n \"sub-admins-groups\": _vm.subAdminsGroups,\n user: user\n }\n })\n }),\n _vm._v(\" \"),\n _c(\n \"InfiniteLoading\",\n { ref: \"infiniteLoading\", on: { infinite: _vm.infiniteHandler } },\n [\n _c(\"div\", { attrs: { slot: \"spinner\" }, slot: \"spinner\" }, [\n _c(\"div\", { staticClass: \"users-icon-loading icon-loading\" })\n ]),\n _vm._v(\" \"),\n _c(\"div\", { attrs: { slot: \"no-more\" }, slot: \"no-more\" }, [\n _c(\"div\", { staticClass: \"users-list-end\" })\n ]),\n _vm._v(\" \"),\n _c(\"div\", { attrs: { slot: \"no-results\" }, slot: \"no-results\" }, [\n _c(\"div\", { attrs: { id: \"emptycontent\" } }, [\n _c(\"div\", { staticClass: \"icon-contacts-dark\" }),\n _vm._v(\" \"),\n _c(\"h2\", [_vm._v(_vm._s(_vm.t(\"settings\", \"No users in here\")))])\n ])\n ])\n ]\n )\n ],\n 2\n )\n}\nvar staticRenderFns = []\nrender._withStripped = true\n\nexport { render, staticRenderFns }","var render = function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n return Object.keys(_vm.user).length === 1\n ? _c(\"div\", { staticClass: \"row\", attrs: { \"data-id\": _vm.user.id } }, [\n _c(\n \"div\",\n {\n staticClass: \"avatar\",\n class: {\n \"icon-loading-small\":\n _vm.loading.delete || _vm.loading.disable || _vm.loading.wipe\n }\n },\n [\n !_vm.loading.delete && !_vm.loading.disable && !_vm.loading.wipe\n ? _c(\"img\", {\n attrs: {\n src: _vm.generateAvatar(_vm.user.id, 32),\n srcset:\n _vm.generateAvatar(_vm.user.id, 64) +\n \" 2x, \" +\n _vm.generateAvatar(_vm.user.id, 128) +\n \" 4x\",\n alt: \"\",\n height: \"32\",\n width: \"32\"\n }\n })\n : _vm._e()\n ]\n ),\n _vm._v(\" \"),\n _c(\"div\", { staticClass: \"name\" }, [\n _vm._v(\"\\n\\t\\t\" + _vm._s(_vm.user.id) + \"\\n\\t\")\n ]),\n _vm._v(\" \"),\n _c(\"div\", { staticClass: \"obfuscated\" }, [\n _vm._v(\n \"\\n\\t\\t\" +\n _vm._s(\n _vm.t(\n \"settings\",\n \"You do not have permissions to see the details of this user\"\n )\n ) +\n \"\\n\\t\"\n )\n ])\n ])\n : !_vm.editing\n ? _c(\"UserRowSimple\", {\n attrs: {\n editing: _vm.editing,\n \"feedback-message\": _vm.feedbackMessage,\n groups: _vm.groups,\n languages: _vm.languages,\n loading: _vm.loading,\n \"opened-menu\": _vm.openedMenu,\n settings: _vm.settings,\n \"show-config\": _vm.showConfig,\n \"sub-admins-groups\": _vm.subAdminsGroups,\n \"user-actions\": _vm.userActions,\n user: _vm.user\n },\n on: {\n \"update:editing\": function($event) {\n _vm.editing = $event\n },\n hideMenu: _vm.hideMenu,\n toggleMenu: _vm.toggleMenu\n }\n })\n : _c(\n \"div\",\n {\n staticClass: \"row row--editable\",\n class: { disabled: _vm.loading.delete || _vm.loading.disable },\n attrs: { \"data-id\": _vm.user.id }\n },\n [\n _c(\n \"div\",\n {\n staticClass: \"avatar\",\n class: {\n \"icon-loading-small\":\n _vm.loading.delete || _vm.loading.disable || _vm.loading.wipe\n }\n },\n [\n !_vm.loading.delete && !_vm.loading.disable && !_vm.loading.wipe\n ? _c(\"img\", {\n attrs: {\n src: _vm.generateAvatar(_vm.user.id, 32),\n srcset:\n _vm.generateAvatar(_vm.user.id, 64) +\n \" 2x, \" +\n _vm.generateAvatar(_vm.user.id, 128) +\n \" 4x\",\n alt: \"\",\n height: \"32\",\n width: \"32\"\n }\n })\n : _vm._e()\n ]\n ),\n _vm._v(\" \"),\n _c(\"div\", { staticClass: \"displayName\" }, [\n _c(\n \"form\",\n {\n staticClass: \"displayName\",\n class: { \"icon-loading-small\": _vm.loading.displayName },\n on: {\n submit: function($event) {\n $event.preventDefault()\n return _vm.updateDisplayName($event)\n }\n }\n },\n [\n _vm.user.backendCapabilities.setDisplayName\n ? [\n _vm.user.backendCapabilities.setDisplayName\n ? _c(\"input\", {\n ref: \"displayName\",\n attrs: {\n id: \"displayName\" + _vm.user.id + _vm.rand,\n disabled:\n _vm.loading.displayName || _vm.loading.all,\n autocapitalize: \"off\",\n autocomplete: \"new-password\",\n autocorrect: \"off\",\n spellcheck: \"false\",\n type: \"text\"\n },\n domProps: { value: _vm.user.displayname }\n })\n : _vm._e(),\n _vm._v(\" \"),\n _vm.user.backendCapabilities.setDisplayName\n ? _c(\"input\", {\n staticClass: \"icon-confirm\",\n attrs: { type: \"submit\", value: \"\" }\n })\n : _vm._e()\n ]\n : _c(\"div\", {\n directives: [\n {\n name: \"tooltip\",\n rawName: \"v-tooltip.auto\",\n value: _vm.t(\n \"settings\",\n \"The backend does not support changing the display name\"\n ),\n expression:\n \"t('settings', 'The backend does not support changing the display name')\",\n modifiers: { auto: true }\n }\n ],\n staticClass: \"name\"\n })\n ],\n 2\n )\n ]),\n _vm._v(\" \"),\n _vm.settings.canChangePassword &&\n _vm.user.backendCapabilities.setPassword\n ? _c(\n \"form\",\n {\n staticClass: \"password\",\n class: { \"icon-loading-small\": _vm.loading.password },\n on: {\n submit: function($event) {\n $event.preventDefault()\n return _vm.updatePassword($event)\n }\n }\n },\n [\n _c(\"input\", {\n ref: \"password\",\n attrs: {\n id: \"password\" + _vm.user.id + _vm.rand,\n disabled: _vm.loading.password || _vm.loading.all,\n minlength: _vm.minPasswordLength,\n placeholder: _vm.t(\"settings\", \"Add new password\"),\n autocapitalize: \"off\",\n autocomplete: \"new-password\",\n autocorrect: \"off\",\n required: \"\",\n spellcheck: \"false\",\n type: \"password\",\n value: \"\"\n }\n }),\n _vm._v(\" \"),\n _c(\"input\", {\n staticClass: \"icon-confirm\",\n attrs: { type: \"submit\", value: \"\" }\n })\n ]\n )\n : _c(\"div\"),\n _vm._v(\" \"),\n _c(\n \"form\",\n {\n staticClass: \"mailAddress\",\n class: { \"icon-loading-small\": _vm.loading.mailAddress },\n on: {\n submit: function($event) {\n $event.preventDefault()\n return _vm.updateEmail($event)\n }\n }\n },\n [\n _c(\"input\", {\n ref: \"mailAddress\",\n attrs: {\n id: \"mailAddress\" + _vm.user.id + _vm.rand,\n disabled: _vm.loading.mailAddress || _vm.loading.all,\n placeholder: _vm.t(\"settings\", \"Add new email address\"),\n autocapitalize: \"off\",\n autocomplete: \"new-password\",\n autocorrect: \"off\",\n spellcheck: \"false\",\n type: \"email\"\n },\n domProps: { value: _vm.user.email }\n }),\n _vm._v(\" \"),\n _c(\"input\", {\n staticClass: \"icon-confirm\",\n attrs: { type: \"submit\", value: \"\" }\n })\n ]\n ),\n _vm._v(\" \"),\n _c(\n \"div\",\n {\n staticClass: \"groups\",\n class: { \"icon-loading-small\": _vm.loading.groups }\n },\n [\n _c(\n \"Multiselect\",\n {\n staticClass: \"multiselect-vue\",\n attrs: {\n \"close-on-select\": false,\n disabled: _vm.loading.groups || _vm.loading.all,\n limit: 2,\n multiple: true,\n options: _vm.availableGroups,\n placeholder: _vm.t(\"settings\", \"Add user in group\"),\n \"tag-width\": 60,\n taggable: _vm.settings.isAdmin,\n value: _vm.userGroups,\n label: \"name\",\n \"tag-placeholder\": \"create\",\n \"track-by\": \"id\"\n },\n on: {\n remove: _vm.removeUserGroup,\n select: _vm.addUserGroup,\n tag: _vm.createGroup\n }\n },\n [\n _c(\n \"span\",\n { attrs: { slot: \"noResult\" }, slot: \"noResult\" },\n [_vm._v(_vm._s(_vm.t(\"settings\", \"No results\")))]\n )\n ]\n )\n ],\n 1\n ),\n _vm._v(\" \"),\n _vm.subAdminsGroups.length > 0 && _vm.settings.isAdmin\n ? _c(\n \"div\",\n {\n staticClass: \"subadmins\",\n class: { \"icon-loading-small\": _vm.loading.subadmins }\n },\n [\n _c(\n \"Multiselect\",\n {\n staticClass: \"multiselect-vue\",\n attrs: {\n \"close-on-select\": false,\n disabled: _vm.loading.subadmins || _vm.loading.all,\n limit: 2,\n multiple: true,\n options: _vm.subAdminsGroups,\n placeholder: _vm.t(\"settings\", \"Set user as admin for\"),\n \"tag-width\": 60,\n value: _vm.userSubAdminsGroups,\n label: \"name\",\n \"track-by\": \"id\"\n },\n on: {\n remove: _vm.removeUserSubAdmin,\n select: _vm.addUserSubAdmin\n }\n },\n [\n _c(\n \"span\",\n { attrs: { slot: \"noResult\" }, slot: \"noResult\" },\n [_vm._v(_vm._s(_vm.t(\"settings\", \"No results\")))]\n )\n ]\n )\n ],\n 1\n )\n : _vm._e(),\n _vm._v(\" \"),\n _c(\n \"div\",\n {\n directives: [\n {\n name: \"tooltip\",\n rawName: \"v-tooltip.auto\",\n value: _vm.usedSpace,\n expression: \"usedSpace\",\n modifiers: { auto: true }\n }\n ],\n staticClass: \"quota\",\n class: { \"icon-loading-small\": _vm.loading.quota }\n },\n [\n _c(\"Multiselect\", {\n staticClass: \"multiselect-vue\",\n attrs: {\n \"allow-empty\": false,\n disabled: _vm.loading.quota || _vm.loading.all,\n options: _vm.quotaOptions,\n placeholder: _vm.t(\"settings\", \"Select user quota\"),\n taggable: true,\n value: _vm.userQuota,\n label: \"label\",\n \"tag-placeholder\": \"create\",\n \"track-by\": \"id\"\n },\n on: { input: _vm.setUserQuota, tag: _vm.validateQuota }\n })\n ],\n 1\n ),\n _vm._v(\" \"),\n _vm.showConfig.showLanguages\n ? _c(\n \"div\",\n {\n staticClass: \"languages\",\n class: { \"icon-loading-small\": _vm.loading.languages }\n },\n [\n _c(\"Multiselect\", {\n staticClass: \"multiselect-vue\",\n attrs: {\n \"allow-empty\": false,\n disabled: _vm.loading.languages || _vm.loading.all,\n options: _vm.languages,\n placeholder: _vm.t(\"settings\", \"No language set\"),\n value: _vm.userLanguage,\n \"group-label\": \"label\",\n \"group-values\": \"languages\",\n label: \"name\",\n \"track-by\": \"code\"\n },\n on: { input: _vm.setUserLanguage }\n })\n ],\n 1\n )\n : _vm._e(),\n _vm._v(\" \"),\n _vm.showConfig.showStoragePath || _vm.showConfig.showUserBackend\n ? _c(\"div\", { staticClass: \"storageLocation\" })\n : _vm._e(),\n _vm._v(\" \"),\n _vm.showConfig.showLastLogin ? _c(\"div\") : _vm._e(),\n _vm._v(\" \"),\n _c(\"div\", { staticClass: \"userActions\" }, [\n _vm.OC.currentUser !== _vm.user.id &&\n _vm.user.id !== \"admin\" &&\n !_vm.loading.all\n ? _c(\n \"div\",\n { staticClass: \"toggleUserActions\" },\n [\n _c(\n \"Actions\",\n [\n _c(\n \"ActionButton\",\n {\n attrs: { icon: \"icon-checkmark\" },\n on: {\n click: function($event) {\n _vm.editing = false\n }\n }\n },\n [\n _vm._v(\n \"\\n\\t\\t\\t\\t\\t\" +\n _vm._s(_vm.t(\"settings\", \"Done\")) +\n \"\\n\\t\\t\\t\\t\"\n )\n ]\n )\n ],\n 1\n ),\n _vm._v(\" \"),\n _c(\"div\", {\n directives: [\n {\n name: \"click-outside\",\n rawName: \"v-click-outside\",\n value: _vm.hideMenu,\n expression: \"hideMenu\"\n }\n ],\n staticClass: \"icon-more\",\n on: { click: _vm.toggleMenu }\n }),\n _vm._v(\" \"),\n _c(\n \"div\",\n {\n staticClass: \"popovermenu\",\n class: { open: _vm.openedMenu }\n },\n [_c(\"PopoverMenu\", { attrs: { menu: _vm.userActions } })],\n 1\n )\n ],\n 1\n )\n : _vm._e(),\n _vm._v(\" \"),\n _c(\n \"div\",\n {\n staticClass: \"feedback\",\n style: { opacity: _vm.feedbackMessage !== \"\" ? 1 : 0 }\n },\n [\n _c(\"div\", { staticClass: \"icon-checkmark\" }),\n _vm._v(\"\\n\\t\\t\\t\" + _vm._s(_vm.feedbackMessage) + \"\\n\\t\\t\")\n ]\n )\n ])\n ]\n )\n}\nvar staticRenderFns = []\nrender._withStripped = true\n\nexport { render, staticRenderFns }","var render = function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n return _c(\n \"div\",\n {\n staticClass: \"row\",\n class: { disabled: _vm.loading.delete || _vm.loading.disable },\n attrs: { \"data-id\": _vm.user.id }\n },\n [\n _c(\n \"div\",\n {\n staticClass: \"avatar\",\n class: {\n \"icon-loading-small\":\n _vm.loading.delete || _vm.loading.disable || _vm.loading.wipe\n }\n },\n [\n !_vm.loading.delete && !_vm.loading.disable && !_vm.loading.wipe\n ? _c(\"img\", {\n attrs: {\n alt: \"\",\n width: \"32\",\n height: \"32\",\n src: _vm.generateAvatar(_vm.user.id, 32),\n srcset:\n _vm.generateAvatar(_vm.user.id, 64) +\n \" 2x, \" +\n _vm.generateAvatar(_vm.user.id, 128) +\n \" 4x\"\n }\n })\n : _vm._e()\n ]\n ),\n _vm._v(\" \"),\n _c(\"div\", { staticClass: \"name\" }, [\n _vm._v(\"\\n\\t\\t\" + _vm._s(_vm.user.id) + \"\\n\\t\\t\"),\n _c(\"div\", { staticClass: \"displayName subtitle\" }, [\n _vm._v(\"\\n\\t\\t\\t\" + _vm._s(_vm.user.displayname) + \"\\n\\t\\t\")\n ])\n ]),\n _vm._v(\" \"),\n _c(\"div\"),\n _vm._v(\" \"),\n _c(\"div\", { staticClass: \"mailAddress\" }, [\n _vm._v(\"\\n\\t\\t\" + _vm._s(_vm.user.email) + \"\\n\\t\")\n ]),\n _vm._v(\" \"),\n _c(\"div\", { staticClass: \"groups\" }, [\n _vm._v(\"\\n\\t\\t\" + _vm._s(_vm.userGroupsLabels) + \"\\n\\t\")\n ]),\n _vm._v(\" \"),\n _vm.subAdminsGroups.length > 0 && _vm.settings.isAdmin\n ? _c(\"div\", { staticClass: \"subAdminsGroups\" }, [\n _vm._v(\"\\n\\t\\t\" + _vm._s(_vm.userSubAdminsGroupsLabels) + \"\\n\\t\")\n ])\n : _vm._e(),\n _vm._v(\" \"),\n _c(\n \"div\",\n {\n directives: [\n {\n name: \"tooltip\",\n rawName: \"v-tooltip.auto\",\n value: _vm.usedSpace,\n expression: \"usedSpace\",\n modifiers: { auto: true }\n }\n ],\n staticClass: \"quota\"\n },\n [\n _c(\"progress\", {\n staticClass: \"quota-user-progress\",\n class: { warn: _vm.usedQuota > 80 },\n attrs: { max: \"100\" },\n domProps: { value: _vm.usedQuota }\n })\n ]\n ),\n _vm._v(\" \"),\n _vm.showConfig.showLanguages\n ? _c(\"div\", { staticClass: \"languages\" }, [\n _vm._v(\"\\n\\t\\t\" + _vm._s(_vm.userLanguage.name) + \"\\n\\t\")\n ])\n : _vm._e(),\n _vm._v(\" \"),\n _vm.showConfig.showUserBackend || _vm.showConfig.showStoragePath\n ? _c(\"div\", { staticClass: \"userBackend\" }, [\n _vm.showConfig.showUserBackend\n ? _c(\"div\", { staticClass: \"userBackend\" }, [\n _vm._v(\"\\n\\t\\t\\t\" + _vm._s(_vm.user.backend) + \"\\n\\t\\t\")\n ])\n : _vm._e(),\n _vm._v(\" \"),\n _vm.showConfig.showStoragePath\n ? _c(\"div\", { staticClass: \"storageLocation subtitle\" }, [\n _vm._v(\n \"\\n\\t\\t\\t\" + _vm._s(_vm.user.storageLocation) + \"\\n\\t\\t\"\n )\n ])\n : _vm._e()\n ])\n : _vm._e(),\n _vm._v(\" \"),\n _vm.showConfig.showLastLogin\n ? _c(\n \"div\",\n {\n directives: [\n {\n name: \"tooltip\",\n rawName: \"v-tooltip.auto\",\n value: _vm.userLastLoginTooltip,\n expression: \"userLastLoginTooltip\",\n modifiers: { auto: true }\n }\n ],\n staticClass: \"lastLogin\"\n },\n [_vm._v(\"\\n\\t\\t\" + _vm._s(_vm.userLastLogin) + \"\\n\\t\")]\n )\n : _vm._e(),\n _vm._v(\" \"),\n _c(\"div\", { staticClass: \"userActions\" }, [\n _vm.canEdit && !_vm.loading.all\n ? _c(\n \"div\",\n { staticClass: \"toggleUserActions\" },\n [\n _c(\n \"Actions\",\n [\n _c(\n \"ActionButton\",\n {\n attrs: { icon: \"icon-rename\" },\n on: { click: _vm.toggleEdit }\n },\n [\n _vm._v(\n \"\\n\\t\\t\\t\\t\\t\" +\n _vm._s(_vm.t(\"settings\", \"Edit User\")) +\n \"\\n\\t\\t\\t\\t\"\n )\n ]\n )\n ],\n 1\n ),\n _vm._v(\" \"),\n _c(\"div\", {\n directives: [\n {\n name: \"click-outside\",\n rawName: \"v-click-outside\",\n value: _vm.hideMenu,\n expression: \"hideMenu\"\n }\n ],\n staticClass: \"icon-more\",\n on: {\n click: function($event) {\n return _vm.$emit(\"toggleMenu\")\n }\n }\n }),\n _vm._v(\" \"),\n _c(\n \"div\",\n {\n staticClass: \"popovermenu\",\n class: { open: _vm.openedMenu }\n },\n [_c(\"PopoverMenu\", { attrs: { menu: _vm.userActions } })],\n 1\n )\n ],\n 1\n )\n : _vm._e(),\n _vm._v(\" \"),\n _c(\n \"div\",\n {\n staticClass: \"feedback\",\n style: { opacity: _vm.feedbackMessage !== \"\" ? 1 : 0 }\n },\n [\n _c(\"div\", { staticClass: \"icon-checkmark\" }),\n _vm._v(\"\\n\\t\\t\\t\" + _vm._s(_vm.feedbackMessage) + \"\\n\\t\\t\")\n ]\n )\n ])\n ]\n )\n}\nvar staticRenderFns = []\nrender._withStripped = true\n\nexport { render, staticRenderFns }","var render = function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n return _c(\n \"Content\",\n {\n attrs: {\n \"app-name\": \"settings\",\n \"navigation-class\": { \"icon-loading\": _vm.loadingAddGroup }\n }\n },\n [\n _c(\n \"AppNavigation\",\n [\n _c(\"AppNavigationNew\", {\n attrs: {\n \"button-id\": \"new-user-button\",\n text: _vm.t(\"settings\", \"New user\"),\n \"button-class\": \"icon-add\"\n },\n on: { click: _vm.toggleNewUserMenu }\n }),\n _vm._v(\" \"),\n _c(\n \"ul\",\n { attrs: { id: \"usergrouplist\" } },\n _vm._l(_vm.menu, function(item) {\n return _c(\"AppNavigationItem\", {\n key: item.key,\n attrs: { item: item }\n })\n }),\n 1\n ),\n _vm._v(\" \"),\n _c(\"AppNavigationSettings\", [\n _c(\n \"div\",\n [\n _c(\"p\", [_vm._v(_vm._s(_vm.t(\"settings\", \"Default quota:\")))]),\n _vm._v(\" \"),\n _c(\"Multiselect\", {\n attrs: {\n value: _vm.defaultQuota,\n options: _vm.quotaOptions,\n \"tag-placeholder\": \"create\",\n placeholder: _vm.t(\"settings\", \"Select default quota\"),\n label: \"label\",\n \"track-by\": \"id\",\n \"allow-empty\": false,\n taggable: true\n },\n on: { tag: _vm.validateQuota, input: _vm.setDefaultQuota }\n })\n ],\n 1\n ),\n _vm._v(\" \"),\n _c(\"div\", [\n _c(\"input\", {\n directives: [\n {\n name: \"model\",\n rawName: \"v-model\",\n value: _vm.showLanguages,\n expression: \"showLanguages\"\n }\n ],\n staticClass: \"checkbox\",\n attrs: { id: \"showLanguages\", type: \"checkbox\" },\n domProps: {\n checked: Array.isArray(_vm.showLanguages)\n ? _vm._i(_vm.showLanguages, null) > -1\n : _vm.showLanguages\n },\n on: {\n change: function($event) {\n var $$a = _vm.showLanguages,\n $$el = $event.target,\n $$c = $$el.checked ? true : false\n if (Array.isArray($$a)) {\n var $$v = null,\n $$i = _vm._i($$a, $$v)\n if ($$el.checked) {\n $$i < 0 && (_vm.showLanguages = $$a.concat([$$v]))\n } else {\n $$i > -1 &&\n (_vm.showLanguages = $$a\n .slice(0, $$i)\n .concat($$a.slice($$i + 1)))\n }\n } else {\n _vm.showLanguages = $$c\n }\n }\n }\n }),\n _vm._v(\" \"),\n _c(\"label\", { attrs: { for: \"showLanguages\" } }, [\n _vm._v(_vm._s(_vm.t(\"settings\", \"Show Languages\")))\n ])\n ]),\n _vm._v(\" \"),\n _c(\"div\", [\n _c(\"input\", {\n directives: [\n {\n name: \"model\",\n rawName: \"v-model\",\n value: _vm.showLastLogin,\n expression: \"showLastLogin\"\n }\n ],\n staticClass: \"checkbox\",\n attrs: { id: \"showLastLogin\", type: \"checkbox\" },\n domProps: {\n checked: Array.isArray(_vm.showLastLogin)\n ? _vm._i(_vm.showLastLogin, null) > -1\n : _vm.showLastLogin\n },\n on: {\n change: function($event) {\n var $$a = _vm.showLastLogin,\n $$el = $event.target,\n $$c = $$el.checked ? true : false\n if (Array.isArray($$a)) {\n var $$v = null,\n $$i = _vm._i($$a, $$v)\n if ($$el.checked) {\n $$i < 0 && (_vm.showLastLogin = $$a.concat([$$v]))\n } else {\n $$i > -1 &&\n (_vm.showLastLogin = $$a\n .slice(0, $$i)\n .concat($$a.slice($$i + 1)))\n }\n } else {\n _vm.showLastLogin = $$c\n }\n }\n }\n }),\n _vm._v(\" \"),\n _c(\"label\", { attrs: { for: \"showLastLogin\" } }, [\n _vm._v(_vm._s(_vm.t(\"settings\", \"Show last login\")))\n ])\n ]),\n _vm._v(\" \"),\n _c(\"div\", [\n _c(\"input\", {\n directives: [\n {\n name: \"model\",\n rawName: \"v-model\",\n value: _vm.showUserBackend,\n expression: \"showUserBackend\"\n }\n ],\n staticClass: \"checkbox\",\n attrs: { id: \"showUserBackend\", type: \"checkbox\" },\n domProps: {\n checked: Array.isArray(_vm.showUserBackend)\n ? _vm._i(_vm.showUserBackend, null) > -1\n : _vm.showUserBackend\n },\n on: {\n change: function($event) {\n var $$a = _vm.showUserBackend,\n $$el = $event.target,\n $$c = $$el.checked ? true : false\n if (Array.isArray($$a)) {\n var $$v = null,\n $$i = _vm._i($$a, $$v)\n if ($$el.checked) {\n $$i < 0 && (_vm.showUserBackend = $$a.concat([$$v]))\n } else {\n $$i > -1 &&\n (_vm.showUserBackend = $$a\n .slice(0, $$i)\n .concat($$a.slice($$i + 1)))\n }\n } else {\n _vm.showUserBackend = $$c\n }\n }\n }\n }),\n _vm._v(\" \"),\n _c(\"label\", { attrs: { for: \"showUserBackend\" } }, [\n _vm._v(_vm._s(_vm.t(\"settings\", \"Show user backend\")))\n ])\n ]),\n _vm._v(\" \"),\n _c(\"div\", [\n _c(\"input\", {\n directives: [\n {\n name: \"model\",\n rawName: \"v-model\",\n value: _vm.showStoragePath,\n expression: \"showStoragePath\"\n }\n ],\n staticClass: \"checkbox\",\n attrs: { id: \"showStoragePath\", type: \"checkbox\" },\n domProps: {\n checked: Array.isArray(_vm.showStoragePath)\n ? _vm._i(_vm.showStoragePath, null) > -1\n : _vm.showStoragePath\n },\n on: {\n change: function($event) {\n var $$a = _vm.showStoragePath,\n $$el = $event.target,\n $$c = $$el.checked ? true : false\n if (Array.isArray($$a)) {\n var $$v = null,\n $$i = _vm._i($$a, $$v)\n if ($$el.checked) {\n $$i < 0 && (_vm.showStoragePath = $$a.concat([$$v]))\n } else {\n $$i > -1 &&\n (_vm.showStoragePath = $$a\n .slice(0, $$i)\n .concat($$a.slice($$i + 1)))\n }\n } else {\n _vm.showStoragePath = $$c\n }\n }\n }\n }),\n _vm._v(\" \"),\n _c(\"label\", { attrs: { for: \"showStoragePath\" } }, [\n _vm._v(_vm._s(_vm.t(\"settings\", \"Show storage path\")))\n ])\n ])\n ])\n ],\n 1\n ),\n _vm._v(\" \"),\n _c(\n \"AppContent\",\n [\n _c(\"UserList\", {\n attrs: {\n users: _vm.users,\n \"show-config\": _vm.showConfig,\n \"selected-group\": _vm.selectedGroup,\n \"external-actions\": _vm.externalActions\n },\n scopedSlots: _vm._u([\n {\n key: \"content\",\n fn: function() {\n return undefined\n },\n proxy: true\n }\n ])\n })\n ],\n 1\n )\n ],\n 1\n )\n}\nvar staticRenderFns = []\nrender._withStripped = true\n\nexport { render, staticRenderFns }"],"mappings":";;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,uBAiBA;AACA;AACA;;;;;;;;;;;;ACtCA;AAAA;AAAA;;;;;;;;;;;;ACAA;AAAA;AAAA;AAAA;AAAA;AAAA;;;;;;;;;;;;;ACAA;AAAA;AAAA;AAAA;AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,uBAiBA;AACA;AACA;;;;;;;;;;;;ACtCA;AAAA;AAAA;;;;;;;;;;;;ACAA;AAAA;AAAA;AAAA;AAAA;AAAA;;;;;;;;;;;;;ACAA;AAAA;AAAA;AAAA;AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,uBAiBA;AACA;AACA;;;;;;;;;;;;ACtCA;AAAA;AAAA;;;;;;;;;;;;ACAA;AAAA;AAAA;AAAA;AAAA;AAAA;;;;;;;;;;;;;ACAA;AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;AC/MA;AAAA;AAAA;AAAA;AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,uBAiBA;AACA;AACA;;;;;;;;;;;;ACtCA;AAAA;AAAA;;;;;;;;;;;;ACAA;AAAA;AAAA;AAAA;AAAA;AAAA;;;;;;;;;;;;;ACAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACjlBA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;AC11BA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;AC3JA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACnfA;AAAA;AAAA;AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;;AC7fA;AAAA;AAAA;AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;;AC7dA;AAAA;AAAA;AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;;AC7MA;AAAA;AAAA;AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;A","sourceRoot":""} \ No newline at end of file
+{"version":3,"file":"vue-2.js?v=662f771dd73ad67e77f2","sources":["webpack:///./apps/settings/src/components/AppDetails.vue","webpack:///./apps/settings/src/components/AppDetails.vue?0b0a","webpack:///./apps/settings/src/components/AppDetails.vue?668f","webpack:///./apps/settings/src/components/AppDetails.vue?baba","webpack:///./apps/settings/src/components/AppList.vue","webpack:///./apps/settings/src/components/AppList.vue?ff65","webpack:///./apps/settings/src/components/AppList.vue?f224","webpack:///./apps/settings/src/components/AppList/AppItem.vue","webpack:///./apps/settings/src/components/AppList/AppItem.vue?6d51","webpack:///./apps/settings/src/components/AppList/AppItem.vue?f6ef","webpack:///./apps/settings/src/components/AppList/AppItem.vue?3e9c","webpack:///./apps/settings/src/components/AppList/AppScore.vue","webpack:///./apps/settings/src/components/AppList/AppScore.vue?5862","webpack:///./apps/settings/src/components/AppList/AppScore.vue?8472","webpack:///./apps/settings/src/components/AppManagement.vue","webpack:///./apps/settings/src/components/AppManagement.vue?9197","webpack:///./apps/settings/src/components/PrefixMixin.vue","webpack:///./apps/settings/src/components/PrefixMixin.vue?4fe7","webpack:///./apps/settings/src/components/SvgFilterMixin.vue","webpack:///./apps/settings/src/components/SvgFilterMixin.vue?0fa6","webpack:///./apps/settings/src/views/Apps.vue","webpack:///./apps/settings/src/views/Apps.vue?53fc","webpack:///./apps/settings/src/views/Apps.vue?04ea","webpack:///./apps/settings/src/components/AppDetails.vue?56e1","webpack:///./apps/settings/src/components/AppList.vue?150c","webpack:///./apps/settings/src/components/AppList/AppItem.vue?39d2","webpack:///./apps/settings/src/components/AppList/AppScore.vue?f088","webpack:///./apps/settings/src/components/AppManagement.vue?efce","webpack:///./apps/settings/src/components/PrefixMixin.vue?5c9b","webpack:///./apps/settings/src/components/SvgFilterMixin.vue?e5f1","webpack:///./apps/settings/src/views/Apps.vue?8d72","webpack:///./apps/settings/src/components/AppDetails.vue?9b6d","webpack:///./apps/settings/src/components/AppList/AppItem.vue?5906","webpack:///./apps/settings/src/components/AppDetails.vue?32dc","webpack:///./apps/settings/src/components/AppList.vue?68f1","webpack:///./apps/settings/src/components/AppList/AppItem.vue?9b42","webpack:///./apps/settings/src/components/AppList/AppScore.vue?2fd1","webpack:///./apps/settings/src/views/Apps.vue?b71b","webpack:///./apps/settings/src/components/AppDetails.vue?1f94","webpack:///./apps/settings/src/components/AppList/AppItem.vue?c33e"],"sourcesContent":["import { render, staticRenderFns } from \"./AppDetails.vue?vue&type=template&id=59a92e62&scoped=true&\"\nimport script from \"./AppDetails.vue?vue&type=script&lang=js&\"\nexport * from \"./AppDetails.vue?vue&type=script&lang=js&\"\nimport style0 from \"./AppDetails.vue?vue&type=style&index=0&id=59a92e62&scoped=true&lang=css&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n \"59a92e62\",\n null\n \n)\n\n/* hot reload */\nif (module.hot) {\n var api = require(\"/home/roeland/nc/server/node_modules/vue-hot-reload-api/dist/index.js\")\n api.install(require('vue'))\n if (api.compatible) {\n module.hot.accept()\n if (!api.isRecorded('59a92e62')) {\n api.createRecord('59a92e62', component.options)\n } else {\n api.reload('59a92e62', component.options)\n }\n module.hot.accept(\"./AppDetails.vue?vue&type=template&id=59a92e62&scoped=true&\", function () {\n api.rerender('59a92e62', {\n render: render,\n staticRenderFns: staticRenderFns\n })\n })\n }\n}\ncomponent.options.__file = \"apps/settings/src/components/AppDetails.vue\"\nexport default component.exports","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./AppDetails.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./AppDetails.vue?vue&type=script&lang=js&\"","import mod from \"-!../../../../node_modules/vue-style-loader/index.js!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./AppDetails.vue?vue&type=style&index=0&id=59a92e62&scoped=true&lang=css&\"; export default mod; export * from \"-!../../../../node_modules/vue-style-loader/index.js!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./AppDetails.vue?vue&type=style&index=0&id=59a92e62&scoped=true&lang=css&\"","export * from \"-!../../../../node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./AppDetails.vue?vue&type=template&id=59a92e62&scoped=true&\"","import { render, staticRenderFns } from \"./AppList.vue?vue&type=template&id=6d1e92a4&\"\nimport script from \"./AppList.vue?vue&type=script&lang=js&\"\nexport * from \"./AppList.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\n/* hot reload */\nif (module.hot) {\n var api = require(\"/home/roeland/nc/server/node_modules/vue-hot-reload-api/dist/index.js\")\n api.install(require('vue'))\n if (api.compatible) {\n module.hot.accept()\n if (!api.isRecorded('6d1e92a4')) {\n api.createRecord('6d1e92a4', component.options)\n } else {\n api.reload('6d1e92a4', component.options)\n }\n module.hot.accept(\"./AppList.vue?vue&type=template&id=6d1e92a4&\", function () {\n api.rerender('6d1e92a4', {\n render: render,\n staticRenderFns: staticRenderFns\n })\n })\n }\n}\ncomponent.options.__file = \"apps/settings/src/components/AppList.vue\"\nexport default component.exports","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./AppList.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./AppList.vue?vue&type=script&lang=js&\"","export * from \"-!../../../../node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./AppList.vue?vue&type=template&id=6d1e92a4&\"","import { render, staticRenderFns } from \"./AppItem.vue?vue&type=template&id=429da85a&scoped=true&\"\nimport script from \"./AppItem.vue?vue&type=script&lang=js&\"\nexport * from \"./AppItem.vue?vue&type=script&lang=js&\"\nimport style0 from \"./AppItem.vue?vue&type=style&index=0&id=429da85a&scoped=true&lang=css&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n \"429da85a\",\n null\n \n)\n\n/* hot reload */\nif (module.hot) {\n var api = require(\"/home/roeland/nc/server/node_modules/vue-hot-reload-api/dist/index.js\")\n api.install(require('vue'))\n if (api.compatible) {\n module.hot.accept()\n if (!api.isRecorded('429da85a')) {\n api.createRecord('429da85a', component.options)\n } else {\n api.reload('429da85a', component.options)\n }\n module.hot.accept(\"./AppItem.vue?vue&type=template&id=429da85a&scoped=true&\", function () {\n api.rerender('429da85a', {\n render: render,\n staticRenderFns: staticRenderFns\n })\n })\n }\n}\ncomponent.options.__file = \"apps/settings/src/components/AppList/AppItem.vue\"\nexport default component.exports","import mod from \"-!../../../../../node_modules/babel-loader/lib/index.js!../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./AppItem.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../../node_modules/babel-loader/lib/index.js!../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./AppItem.vue?vue&type=script&lang=js&\"","import mod from \"-!../../../../../node_modules/vue-style-loader/index.js!../../../../../node_modules/css-loader/dist/cjs.js!../../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./AppItem.vue?vue&type=style&index=0&id=429da85a&scoped=true&lang=css&\"; export default mod; export * from \"-!../../../../../node_modules/vue-style-loader/index.js!../../../../../node_modules/css-loader/dist/cjs.js!../../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./AppItem.vue?vue&type=style&index=0&id=429da85a&scoped=true&lang=css&\"","export * from \"-!../../../../../node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./AppItem.vue?vue&type=template&id=429da85a&scoped=true&\"","import { render, staticRenderFns } from \"./AppScore.vue?vue&type=template&id=0ecce4fc&\"\nimport script from \"./AppScore.vue?vue&type=script&lang=js&\"\nexport * from \"./AppScore.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\n/* hot reload */\nif (module.hot) {\n var api = require(\"/home/roeland/nc/server/node_modules/vue-hot-reload-api/dist/index.js\")\n api.install(require('vue'))\n if (api.compatible) {\n module.hot.accept()\n if (!api.isRecorded('0ecce4fc')) {\n api.createRecord('0ecce4fc', component.options)\n } else {\n api.reload('0ecce4fc', component.options)\n }\n module.hot.accept(\"./AppScore.vue?vue&type=template&id=0ecce4fc&\", function () {\n api.rerender('0ecce4fc', {\n render: render,\n staticRenderFns: staticRenderFns\n })\n })\n }\n}\ncomponent.options.__file = \"apps/settings/src/components/AppList/AppScore.vue\"\nexport default component.exports","import mod from \"-!../../../../../node_modules/babel-loader/lib/index.js!../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./AppScore.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../../node_modules/babel-loader/lib/index.js!../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./AppScore.vue?vue&type=script&lang=js&\"","export * from \"-!../../../../../node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./AppScore.vue?vue&type=template&id=0ecce4fc&\"","var render, staticRenderFns\nimport script from \"./AppManagement.vue?vue&type=script&lang=js&\"\nexport * from \"./AppManagement.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\n/* hot reload */\nif (module.hot) {\n var api = require(\"/home/roeland/nc/server/node_modules/vue-hot-reload-api/dist/index.js\")\n api.install(require('vue'))\n if (api.compatible) {\n module.hot.accept()\n if (!api.isRecorded('3d572c5a')) {\n api.createRecord('3d572c5a', component.options)\n } else {\n api.reload('3d572c5a', component.options)\n }\n \n }\n}\ncomponent.options.__file = \"apps/settings/src/components/AppManagement.vue\"\nexport default component.exports","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./AppManagement.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./AppManagement.vue?vue&type=script&lang=js&\"","var render, staticRenderFns\nimport script from \"./PrefixMixin.vue?vue&type=script&lang=js&\"\nexport * from \"./PrefixMixin.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\n/* hot reload */\nif (module.hot) {\n var api = require(\"/home/roeland/nc/server/node_modules/vue-hot-reload-api/dist/index.js\")\n api.install(require('vue'))\n if (api.compatible) {\n module.hot.accept()\n if (!api.isRecorded('b4ed0c44')) {\n api.createRecord('b4ed0c44', component.options)\n } else {\n api.reload('b4ed0c44', component.options)\n }\n \n }\n}\ncomponent.options.__file = \"apps/settings/src/components/PrefixMixin.vue\"\nexport default component.exports","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PrefixMixin.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./PrefixMixin.vue?vue&type=script&lang=js&\"","var render, staticRenderFns\nimport script from \"./SvgFilterMixin.vue?vue&type=script&lang=js&\"\nexport * from \"./SvgFilterMixin.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\n/* hot reload */\nif (module.hot) {\n var api = require(\"/home/roeland/nc/server/node_modules/vue-hot-reload-api/dist/index.js\")\n api.install(require('vue'))\n if (api.compatible) {\n module.hot.accept()\n if (!api.isRecorded('9219d434')) {\n api.createRecord('9219d434', component.options)\n } else {\n api.reload('9219d434', component.options)\n }\n \n }\n}\ncomponent.options.__file = \"apps/settings/src/components/SvgFilterMixin.vue\"\nexport default component.exports","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SvgFilterMixin.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./SvgFilterMixin.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./Apps.vue?vue&type=template&id=d3714d0a&\"\nimport script from \"./Apps.vue?vue&type=script&lang=js&\"\nexport * from \"./Apps.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\n/* hot reload */\nif (module.hot) {\n var api = require(\"/home/roeland/nc/server/node_modules/vue-hot-reload-api/dist/index.js\")\n api.install(require('vue'))\n if (api.compatible) {\n module.hot.accept()\n if (!api.isRecorded('d3714d0a')) {\n api.createRecord('d3714d0a', component.options)\n } else {\n api.reload('d3714d0a', component.options)\n }\n module.hot.accept(\"./Apps.vue?vue&type=template&id=d3714d0a&\", function () {\n api.rerender('d3714d0a', {\n render: render,\n staticRenderFns: staticRenderFns\n })\n })\n }\n}\ncomponent.options.__file = \"apps/settings/src/views/Apps.vue\"\nexport default component.exports","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./Apps.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./Apps.vue?vue&type=script&lang=js&\"","export * from \"-!../../../../node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./Apps.vue?vue&type=template&id=d3714d0a&\"","//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\nimport { Multiselect } from 'nextcloud-vue';\nimport marked from 'marked';\nimport dompurify from 'dompurify';\nimport AppScore from './AppList/AppScore';\nimport AppManagement from './AppManagement';\nimport PrefixMixin from './PrefixMixin';\nimport SvgFilterMixin from './SvgFilterMixin';\nexport default {\n name: 'AppDetails',\n components: {\n Multiselect: Multiselect,\n AppScore: AppScore\n },\n mixins: [AppManagement, PrefixMixin, SvgFilterMixin],\n props: ['category', 'app'],\n data: function data() {\n return {\n groupCheckedAppsData: false\n };\n },\n computed: {\n appstoreUrl: function appstoreUrl() {\n return \"https://apps.nextcloud.com/apps/\".concat(this.app.id);\n },\n licence: function licence() {\n if (this.app.licence) {\n return t('settings', '{license}-licensed', {\n license: ('' + this.app.licence).toUpperCase()\n });\n }\n\n return null;\n },\n hasRating: function hasRating() {\n return this.app.appstoreData && this.app.appstoreData.ratingNumOverall > 5;\n },\n author: function author() {\n if (typeof this.app.author === 'string') {\n return [{\n '@value': this.app.author\n }];\n }\n\n if (this.app.author['@value']) {\n return [this.app.author];\n }\n\n return this.app.author;\n },\n appGroups: function appGroups() {\n return this.app.groups.map(function (group) {\n return {\n id: group,\n name: group\n };\n });\n },\n groups: function groups() {\n return this.$store.getters.getGroups.filter(function (group) {\n return group.id !== 'disabled';\n }).sort(function (a, b) {\n return a.name.localeCompare(b.name);\n });\n },\n renderMarkdown: function renderMarkdown() {\n var renderer = new marked.Renderer();\n\n renderer.link = function (href, title, text) {\n var prot;\n\n try {\n prot = decodeURIComponent(unescape(href)).replace(/[^\\w:]/g, '').toLowerCase();\n } catch (e) {\n return '';\n }\n\n if (prot.indexOf('http:') !== 0 && prot.indexOf('https:') !== 0) {\n return '';\n }\n\n var out = '<a href=\"' + href + '\" rel=\"noreferrer noopener\"';\n\n if (title) {\n out += ' title=\"' + title + '\"';\n }\n\n out += '>' + text + '</a>';\n return out;\n };\n\n renderer.image = function (href, title, text) {\n if (text) {\n return text;\n }\n\n return title;\n };\n\n renderer.blockquote = function (quote) {\n return quote;\n };\n\n return dompurify.sanitize(marked(this.app.description.trim(), {\n renderer: renderer,\n gfm: false,\n highlight: false,\n tables: false,\n breaks: false,\n pedantic: false,\n sanitize: true,\n smartLists: true,\n smartypants: false\n }), {\n SAFE_FOR_JQUERY: true,\n ALLOWED_TAGS: ['strong', 'p', 'a', 'ul', 'ol', 'li', 'em', 'del', 'blockquote']\n });\n }\n },\n mounted: function mounted() {\n if (this.app.groups.length > 0) {\n this.groupCheckedAppsData = true;\n }\n }\n};","//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\nimport AppItem from './AppList/AppItem';\nimport PrefixMixin from './PrefixMixin';\nimport pLimit from 'p-limit';\nexport default {\n name: 'AppList',\n components: {\n AppItem: AppItem\n },\n mixins: [PrefixMixin],\n props: ['category', 'app', 'search'],\n computed: {\n counter: function counter() {\n return this.apps.filter(function (app) {\n return app.update;\n }).length;\n },\n loading: function loading() {\n return this.$store.getters.loading('list');\n },\n hasPendingUpdate: function hasPendingUpdate() {\n return this.apps.filter(function (app) {\n return app.update;\n }).length > 1;\n },\n showUpdateAll: function showUpdateAll() {\n return this.hasPendingUpdate && ['installed', 'updates'].includes(this.category);\n },\n apps: function apps() {\n var _this = this;\n\n var apps = this.$store.getters.getAllApps.filter(function (app) {\n return app.name.toLowerCase().search(_this.search.toLowerCase()) !== -1;\n }).sort(function (a, b) {\n var sortStringA = '' + (a.active ? 0 : 1) + (a.update ? 0 : 1) + a.name;\n var sortStringB = '' + (b.active ? 0 : 1) + (b.update ? 0 : 1) + b.name;\n return OC.Util.naturalSortCompare(sortStringA, sortStringB);\n });\n\n if (this.category === 'installed') {\n return apps.filter(function (app) {\n return app.installed;\n });\n }\n\n if (this.category === 'enabled') {\n return apps.filter(function (app) {\n return app.active && app.installed;\n });\n }\n\n if (this.category === 'disabled') {\n return apps.filter(function (app) {\n return !app.active && app.installed;\n });\n }\n\n if (this.category === 'app-bundles') {\n return apps.filter(function (app) {\n return app.bundles;\n });\n }\n\n if (this.category === 'updates') {\n return apps.filter(function (app) {\n return app.update;\n });\n } // filter app store categories\n\n\n return apps.filter(function (app) {\n return app.appstore && app.category !== undefined && (app.category === _this.category || app.category.indexOf(_this.category) > -1);\n });\n },\n bundles: function bundles() {\n var _this2 = this;\n\n return this.$store.getters.getServerData.bundles.filter(function (bundle) {\n return _this2.bundleApps(bundle.id).length > 0;\n });\n },\n bundleApps: function bundleApps() {\n return function (bundle) {\n return this.$store.getters.getAllApps.filter(function (app) {\n return app.bundleId === bundle;\n });\n };\n },\n searchApps: function searchApps() {\n var _this3 = this;\n\n if (this.search === '') {\n return [];\n }\n\n return this.$store.getters.getAllApps.filter(function (app) {\n if (app.name.toLowerCase().search(_this3.search.toLowerCase()) !== -1) {\n return !_this3.apps.find(function (_app) {\n return _app.id === app.id;\n });\n }\n\n return false;\n });\n },\n useAppStoreView: function useAppStoreView() {\n return !this.useListView && !this.useBundleView;\n },\n useListView: function useListView() {\n return this.category === 'installed' || this.category === 'enabled' || this.category === 'disabled' || this.category === 'updates';\n },\n useBundleView: function useBundleView() {\n return this.category === 'app-bundles';\n },\n allBundlesEnabled: function allBundlesEnabled() {\n var self = this;\n return function (id) {\n return self.bundleApps(id).filter(function (app) {\n return !app.active;\n }).length === 0;\n };\n },\n bundleToggleText: function bundleToggleText() {\n var self = this;\n return function (id) {\n if (self.allBundlesEnabled(id)) {\n return t('settings', 'Disable all');\n }\n\n return t('settings', 'Enable all');\n };\n }\n },\n methods: {\n toggleBundle: function toggleBundle(id) {\n if (this.allBundlesEnabled(id)) {\n return this.disableBundle(id);\n }\n\n return this.enableBundle(id);\n },\n enableBundle: function enableBundle(id) {\n var apps = this.bundleApps(id).map(function (app) {\n return app.id;\n });\n this.$store.dispatch('enableApp', {\n appId: apps,\n groups: []\n }).catch(function (error) {\n console.error(error);\n OC.Notification.show(error);\n });\n },\n disableBundle: function disableBundle(id) {\n var apps = this.bundleApps(id).map(function (app) {\n return app.id;\n });\n this.$store.dispatch('disableApp', {\n appId: apps,\n groups: []\n }).catch(function (error) {\n OC.Notification.show(error);\n });\n },\n updateAll: function updateAll() {\n var _this4 = this;\n\n var limit = pLimit(1);\n this.apps.filter(function (app) {\n return app.update;\n }).map(function (app) {\n return limit(function () {\n return _this4.$store.dispatch('updateApp', {\n appId: app.id\n });\n });\n });\n }\n }\n};","function asyncGeneratorStep(gen, resolve, reject, _next, _throw, key, arg) { try { var info = gen[key](arg); var value = info.value; } catch (error) { reject(error); return; } if (info.done) { resolve(value); } else { Promise.resolve(value).then(_next, _throw); } }\n\nfunction _asyncToGenerator(fn) { return function () { var self = this, args = arguments; return new Promise(function (resolve, reject) { var gen = fn.apply(self, args); function _next(value) { asyncGeneratorStep(gen, resolve, reject, _next, _throw, \"next\", value); } function _throw(err) { asyncGeneratorStep(gen, resolve, reject, _next, _throw, \"throw\", err); } _next(undefined); }); }; }\n\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\nimport AppScore from './AppScore';\nimport AppManagement from '../AppManagement';\nimport SvgFilterMixin from '../SvgFilterMixin';\nexport default {\n name: 'AppItem',\n components: {\n AppScore: AppScore\n },\n mixins: [AppManagement, SvgFilterMixin],\n props: {\n app: {},\n category: {},\n listView: {\n type: Boolean,\n default: true\n }\n },\n data: function data() {\n return {\n isSelected: false,\n scrolled: false\n };\n },\n computed: {\n hasRating: function hasRating() {\n return this.app.appstoreData && this.app.appstoreData.ratingNumOverall > 5;\n }\n },\n watch: {\n '$route.params.id': function $routeParamsId(id) {\n this.isSelected = this.app.id === id;\n }\n },\n mounted: function mounted() {\n this.isSelected = this.app.id === this.$route.params.id;\n },\n watchers: {},\n methods: {\n showAppDetails: function () {\n var _showAppDetails = _asyncToGenerator(\n /*#__PURE__*/\n regeneratorRuntime.mark(function _callee(event) {\n return regeneratorRuntime.wrap(function _callee$(_context) {\n while (1) {\n switch (_context.prev = _context.next) {\n case 0:\n if (!(event.currentTarget.tagName === 'INPUT' || event.currentTarget.tagName === 'A')) {\n _context.next = 2;\n break;\n }\n\n return _context.abrupt(\"return\");\n\n case 2:\n _context.prev = 2;\n _context.next = 5;\n return this.$router.push({\n name: 'apps-details',\n params: {\n category: this.category,\n id: this.app.id\n }\n });\n\n case 5:\n _context.next = 9;\n break;\n\n case 7:\n _context.prev = 7;\n _context.t0 = _context[\"catch\"](2);\n\n case 9:\n case \"end\":\n return _context.stop();\n }\n }\n }, _callee, this, [[2, 7]]);\n }));\n\n function showAppDetails(_x) {\n return _showAppDetails.apply(this, arguments);\n }\n\n return showAppDetails;\n }(),\n prefix: function prefix(_prefix, content) {\n return _prefix + '_' + content;\n }\n }\n};","//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\nexport default {\n name: 'AppScore',\n props: ['score'],\n computed: {\n scoreImage: function scoreImage() {\n var score = Math.round(this.score * 10);\n var imageName = 'rating/s' + score + '.svg';\n return OC.imagePath('core', imageName);\n }\n }\n};","//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\nexport default {\n computed: {\n appGroups: function appGroups() {\n return this.app.groups.map(function (group) {\n return {\n id: group,\n name: group\n };\n });\n },\n loading: function loading() {\n var self = this;\n return function (id) {\n return self.$store.getters.loading(id);\n };\n },\n installing: function installing() {\n return this.$store.getters.loading('install');\n },\n enableButtonText: function enableButtonText() {\n if (this.app.needsDownload) {\n return t('settings', 'Download and enable');\n }\n\n return t('settings', 'Enable');\n },\n forceEnableButtonText: function forceEnableButtonText() {\n if (this.app.needsDownload) {\n return t('settings', 'Enable untested app');\n }\n\n return t('settings', 'Enable untested app');\n },\n enableButtonTooltip: function enableButtonTooltip() {\n if (this.app.needsDownload) {\n return t('settings', 'The app will be downloaded from the app store');\n }\n\n return false;\n },\n forceEnableButtonTooltip: function forceEnableButtonTooltip() {\n var base = t('settings', 'This app is not marked as compatible with your Nextcloud version. If you continue you will still be able to install the app. Note that the app might not work as expected.');\n\n if (this.app.needsDownload) {\n return base + ' ' + t('settings', 'The app will be downloaded from the app store');\n }\n\n return base;\n }\n },\n mounted: function mounted() {\n if (this.app.groups.length > 0) {\n this.groupCheckedAppsData = true;\n }\n },\n methods: {\n asyncFindGroup: function asyncFindGroup(query) {\n return this.$store.dispatch('getGroups', {\n search: query,\n limit: 5,\n offset: 0\n });\n },\n isLimitedToGroups: function isLimitedToGroups(app) {\n if (this.app.groups.length || this.groupCheckedAppsData) {\n return true;\n }\n\n return false;\n },\n setGroupLimit: function setGroupLimit() {\n if (!this.groupCheckedAppsData) {\n this.$store.dispatch('enableApp', {\n appId: this.app.id,\n groups: []\n });\n }\n },\n canLimitToGroups: function canLimitToGroups(app) {\n if (app.types && app.types.includes('filesystem') || app.types.includes('prelogin') || app.types.includes('authentication') || app.types.includes('logging') || app.types.includes('prevent_group_restriction')) {\n return false;\n }\n\n return true;\n },\n addGroupLimitation: function addGroupLimitation(group) {\n var groups = this.app.groups.concat([]).concat([group.id]);\n this.$store.dispatch('enableApp', {\n appId: this.app.id,\n groups: groups\n });\n },\n removeGroupLimitation: function removeGroupLimitation(group) {\n var currentGroups = this.app.groups.concat([]);\n var index = currentGroups.indexOf(group.id);\n\n if (index > -1) {\n currentGroups.splice(index, 1);\n }\n\n this.$store.dispatch('enableApp', {\n appId: this.app.id,\n groups: currentGroups\n });\n },\n forceEnable: function forceEnable(appId) {\n this.$store.dispatch('forceEnableApp', {\n appId: appId,\n groups: []\n }).then(function (response) {\n OC.Settings.Apps.rebuildNavigation();\n }).catch(function (error) {\n OC.Notification.show(error);\n });\n },\n enable: function enable(appId) {\n this.$store.dispatch('enableApp', {\n appId: appId,\n groups: []\n }).then(function (response) {\n OC.Settings.Apps.rebuildNavigation();\n }).catch(function (error) {\n OC.Notification.show(error);\n });\n },\n disable: function disable(appId) {\n this.$store.dispatch('disableApp', {\n appId: appId\n }).then(function (response) {\n OC.Settings.Apps.rebuildNavigation();\n }).catch(function (error) {\n OC.Notification.show(error);\n });\n },\n remove: function remove(appId) {\n this.$store.dispatch('uninstallApp', {\n appId: appId\n }).then(function (response) {\n OC.Settings.Apps.rebuildNavigation();\n }).catch(function (error) {\n OC.Notification.show(error);\n });\n },\n install: function install(appId) {\n this.$store.dispatch('enableApp', {\n appId: appId\n }).then(function (response) {\n OC.Settings.Apps.rebuildNavigation();\n }).catch(function (error) {\n OC.Notification.show(error);\n });\n },\n update: function update(appId) {\n this.$store.dispatch('updateApp', {\n appId: appId\n }).then(function (response) {\n OC.Settings.Apps.rebuildNavigation();\n }).catch(function (error) {\n OC.Notification.show(error);\n });\n }\n }\n};","//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\nexport default {\n name: 'PrefixMixin',\n methods: {\n prefix: function prefix(_prefix, content) {\n return _prefix + '_' + content;\n }\n }\n};","//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\nexport default {\n name: 'SvgFilterMixin',\n data: function data() {\n return {\n filterId: ''\n };\n },\n computed: {\n filterUrl: function filterUrl() {\n return \"url(#\".concat(this.filterId, \")\");\n }\n },\n mounted: function mounted() {\n this.filterId = 'invertIconApps' + Math.floor(Math.random() * 100) + new Date().getSeconds() + new Date().getMilliseconds();\n }\n};","//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\nimport { AppContent, AppNavigation, AppNavigationItem, AppSidebar, Content } from 'nextcloud-vue';\nimport AppList from '../components/AppList';\nimport Vue from 'vue';\nimport VueLocalStorage from 'vue-localstorage';\nimport AppDetails from '../components/AppDetails';\nVue.use(VueLocalStorage);\nexport default {\n name: 'Apps',\n components: {\n AppContent: AppContent,\n AppNavigation: AppNavigation,\n AppNavigationItem: AppNavigationItem,\n AppSidebar: AppSidebar,\n Content: Content,\n AppDetails: AppDetails,\n AppList: AppList\n },\n props: {\n category: {\n type: String,\n default: 'installed'\n },\n id: {\n type: String,\n default: ''\n }\n },\n data: function data() {\n return {\n searchQuery: ''\n };\n },\n computed: {\n loading: function loading() {\n return this.$store.getters.loading('categories');\n },\n loadingList: function loadingList() {\n return this.$store.getters.loading('list');\n },\n currentApp: function currentApp() {\n var _this = this;\n\n return this.apps.find(function (app) {\n return app.id === _this.id;\n });\n },\n categories: function categories() {\n return this.$store.getters.getCategories;\n },\n apps: function apps() {\n return this.$store.getters.getAllApps;\n },\n updateCount: function updateCount() {\n return this.$store.getters.getUpdateCount;\n },\n settings: function settings() {\n return this.$store.getters.getServerData;\n },\n // BUILD APP NAVIGATION MENU OBJECT\n menu: function menu() {\n var _this2 = this;\n\n // Data provided php side\n var categories = this.$store.getters.getCategories;\n categories = Array.isArray(categories) ? categories : []; // Map groups\n\n categories = categories.map(function (category) {\n var item = {};\n item.id = 'app-category-' + category.ident;\n item.icon = 'icon-category-' + category.ident;\n item.classes = []; // empty classes, active will be set later\n\n item.router = {\n // router link to\n name: 'apps-category',\n params: {\n category: category.ident\n }\n };\n item.text = category.displayName;\n return item;\n }); // Add everyone group\n\n var defaultCategories = [{\n id: 'app-category-your-apps',\n classes: [],\n router: {\n name: 'apps'\n },\n icon: 'icon-category-installed',\n text: t('settings', 'Your apps')\n }, {\n id: 'app-category-enabled',\n classes: [],\n icon: 'icon-category-enabled',\n router: {\n name: 'apps-category',\n params: {\n category: 'enabled'\n }\n },\n text: t('settings', 'Active apps')\n }, {\n id: 'app-category-disabled',\n classes: [],\n icon: 'icon-category-disabled',\n router: {\n name: 'apps-category',\n params: {\n category: 'disabled'\n }\n },\n text: t('settings', 'Disabled apps')\n }];\n\n if (!this.settings.appstoreEnabled) {\n return defaultCategories;\n }\n\n if (this.$store.getters.getUpdateCount > 0) {\n defaultCategories.push({\n id: 'app-category-updates',\n classes: [],\n icon: 'icon-download',\n router: {\n name: 'apps-category',\n params: {\n category: 'updates'\n }\n },\n text: t('settings', 'Updates'),\n utils: {\n counter: this.$store.getters.getUpdateCount\n }\n });\n }\n\n defaultCategories.push({\n id: 'app-category-app-bundles',\n classes: [],\n icon: 'icon-category-app-bundles',\n router: {\n name: 'apps-category',\n params: {\n category: 'app-bundles'\n }\n },\n text: t('settings', 'App bundles')\n });\n categories = defaultCategories.concat(categories); // Set current group as active\n\n var activeGroup = categories.findIndex(function (group) {\n return group.id === 'app-category-' + _this2.category;\n });\n\n if (activeGroup >= 0) {\n categories[activeGroup].classes.push('active');\n } else {\n categories[0].classes.push('active');\n }\n\n categories.push({\n id: 'app-developer-docs',\n classes: [],\n href: this.settings.developerDocumentation,\n text: t('settings', 'Developer documentation') + ' ↗'\n }); // Return\n\n return categories;\n }\n },\n watch: {\n category: function category(val, old) {\n this.setSearch('');\n }\n },\n beforeMount: function beforeMount() {\n this.$store.dispatch('getCategories');\n this.$store.dispatch('getAllApps');\n this.$store.dispatch('getGroups', {\n offset: 0,\n limit: 5\n });\n this.$store.commit('setUpdateCount', this.$store.getters.getServerData.updateCount);\n },\n mounted: function mounted() {\n /**\n * Register search\n */\n this.appSearch = new OCA.Search(this.setSearch, this.resetSearch);\n },\n methods: {\n setSearch: function setSearch(query) {\n this.searchQuery = query;\n },\n resetSearch: function resetSearch() {\n this.setSearch('');\n },\n hideAppDetails: function hideAppDetails() {\n this.$router.push({\n name: 'apps-category',\n params: {\n category: this.category\n }\n });\n }\n }\n};","// Imports\nvar ___CSS_LOADER_API_IMPORT___ = require(\"../../../../node_modules/css-loader/dist/runtime/api.js\");\nexports = ___CSS_LOADER_API_IMPORT___(false);\n// Module\nexports.push([module.id, \"\\n.force[data-v-59a92e62] {\\n\\tbackground: var(--color-main-background);\\n\\tborder-color: var(--color-error);\\n\\tcolor: var(--color-error);\\n}\\n.force[data-v-59a92e62]:hover,\\n.force[data-v-59a92e62]:active {\\n\\tbackground: var(--color-error);\\n\\tborder-color: var(--color-error) !important;\\n\\tcolor: var(--color-main-background);\\n}\\n\", \"\"]);\n// Exports\nmodule.exports = exports;\n","// Imports\nvar ___CSS_LOADER_API_IMPORT___ = require(\"../../../../../node_modules/css-loader/dist/runtime/api.js\");\nexports = ___CSS_LOADER_API_IMPORT___(false);\n// Module\nexports.push([module.id, \"\\n.force[data-v-429da85a] {\\n\\tbackground: var(--color-main-background);\\n\\tborder-color: var(--color-error);\\n\\tcolor: var(--color-error);\\n}\\n.force[data-v-429da85a]:hover,\\n.force[data-v-429da85a]:active {\\n\\tbackground: var(--color-error);\\n\\tborder-color: var(--color-error) !important;\\n\\tcolor: var(--color-main-background);\\n}\\n\", \"\"]);\n// Exports\nmodule.exports = exports;\n","var render = function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n return _c(\n \"div\",\n { staticStyle: { padding: \"20px\" }, attrs: { id: \"app-details-view\" } },\n [\n _c(\"h2\", [\n !_vm.app.preview\n ? _c(\"div\", { staticClass: \"icon-settings-dark\" })\n : _vm._e(),\n _vm._v(\" \"),\n _vm.app.previewAsIcon && _vm.app.preview\n ? _c(\n \"svg\",\n { attrs: { width: \"32\", height: \"32\", viewBox: \"0 0 32 32\" } },\n [\n _c(\"defs\", [\n _c(\n \"filter\",\n { attrs: { id: _vm.filterId } },\n [\n _c(\"feColorMatrix\", {\n attrs: {\n in: \"SourceGraphic\",\n type: \"matrix\",\n values: \"-1 0 0 0 1 0 -1 0 0 1 0 0 -1 0 1 0 0 0 1 0\"\n }\n })\n ],\n 1\n )\n ]),\n _vm._v(\" \"),\n _c(\"image\", {\n staticClass: \"app-icon\",\n attrs: {\n x: \"0\",\n y: \"0\",\n width: \"32\",\n height: \"32\",\n preserveAspectRatio: \"xMinYMin meet\",\n filter: _vm.filterUrl,\n \"xlink:href\": _vm.app.preview\n }\n })\n ]\n )\n : _vm._e(),\n _vm._v(\"\\n\\t\\t\" + _vm._s(_vm.app.name) + \"\\n\\t\")\n ]),\n _vm._v(\" \"),\n _vm.app.screenshot\n ? _c(\"img\", { attrs: { src: _vm.app.screenshot, width: \"100%\" } })\n : _vm._e(),\n _vm._v(\" \"),\n _vm.app.level === 300 || _vm.app.level === 200 || _vm.hasRating\n ? _c(\n \"div\",\n { staticClass: \"app-level\" },\n [\n _vm.app.level === 300\n ? _c(\n \"span\",\n {\n directives: [\n {\n name: \"tooltip\",\n rawName: \"v-tooltip.auto\",\n value: _vm.t(\n \"settings\",\n \"This app is supported via your current Nextcloud subscription.\"\n ),\n expression:\n \"t('settings', 'This app is supported via your current Nextcloud subscription.')\",\n modifiers: { auto: true }\n }\n ],\n staticClass: \"supported icon-checkmark-color\"\n },\n [\n _vm._v(\n \"\\n\\t\\t\\t\" + _vm._s(_vm.t(\"settings\", \"Supported\"))\n )\n ]\n )\n : _vm._e(),\n _vm._v(\" \"),\n _vm.app.level === 200\n ? _c(\n \"span\",\n {\n directives: [\n {\n name: \"tooltip\",\n rawName: \"v-tooltip.auto\",\n value: _vm.t(\n \"settings\",\n \"Featured apps are developed by and within the community. They offer central functionality and are ready for production use.\"\n ),\n expression:\n \"t('settings', 'Featured apps are developed by and within the community. They offer central functionality and are ready for production use.')\",\n modifiers: { auto: true }\n }\n ],\n staticClass: \"official icon-checkmark\"\n },\n [_vm._v(\"\\n\\t\\t\\t\" + _vm._s(_vm.t(\"settings\", \"Featured\")))]\n )\n : _vm._e(),\n _vm._v(\" \"),\n _vm.hasRating\n ? _c(\"AppScore\", {\n attrs: { score: _vm.app.appstoreData.ratingOverall }\n })\n : _vm._e()\n ],\n 1\n )\n : _vm._e(),\n _vm._v(\" \"),\n _vm.author\n ? _c(\n \"div\",\n { staticClass: \"app-author\" },\n [\n _vm._v(\"\\n\\t\\t\" + _vm._s(_vm.t(\"settings\", \"by\")) + \"\\n\\t\\t\"),\n _vm._l(_vm.author, function(a, index) {\n return _c(\"span\", { key: index }, [\n a[\"@attributes\"] && a[\"@attributes\"][\"homepage\"]\n ? _c(\n \"a\",\n { attrs: { href: a[\"@attributes\"][\"homepage\"] } },\n [_vm._v(_vm._s(a[\"@value\"]))]\n )\n : a[\"@value\"]\n ? _c(\"span\", [_vm._v(_vm._s(a[\"@value\"]))])\n : _c(\"span\", [_vm._v(_vm._s(a))]),\n index + 1 < _vm.author.length\n ? _c(\"span\", [_vm._v(\", \")])\n : _vm._e()\n ])\n })\n ],\n 2\n )\n : _vm._e(),\n _vm._v(\" \"),\n _vm.licence\n ? _c(\"div\", { staticClass: \"app-licence\" }, [\n _vm._v(\"\\n\\t\\t\" + _vm._s(_vm.licence) + \"\\n\\t\")\n ])\n : _vm._e(),\n _vm._v(\" \"),\n _c(\"div\", { staticClass: \"actions\" }, [\n _c(\"div\", { staticClass: \"actions-buttons\" }, [\n _vm.app.update\n ? _c(\"input\", {\n staticClass: \"update primary\",\n attrs: {\n type: \"button\",\n value: _vm.t(\"settings\", \"Update to {version}\", {\n version: _vm.app.update\n }),\n disabled: _vm.installing || _vm.loading(_vm.app.id)\n },\n on: {\n click: function($event) {\n return _vm.update(_vm.app.id)\n }\n }\n })\n : _vm._e(),\n _vm._v(\" \"),\n _vm.app.canUnInstall\n ? _c(\"input\", {\n staticClass: \"uninstall\",\n attrs: {\n type: \"button\",\n value: _vm.t(\"settings\", \"Remove\"),\n disabled: _vm.installing || _vm.loading(_vm.app.id)\n },\n on: {\n click: function($event) {\n return _vm.remove(_vm.app.id)\n }\n }\n })\n : _vm._e(),\n _vm._v(\" \"),\n _vm.app.active\n ? _c(\"input\", {\n staticClass: \"enable\",\n attrs: {\n type: \"button\",\n value: _vm.t(\"settings\", \"Disable\"),\n disabled: _vm.installing || _vm.loading(_vm.app.id)\n },\n on: {\n click: function($event) {\n return _vm.disable(_vm.app.id)\n }\n }\n })\n : _vm._e(),\n _vm._v(\" \"),\n !_vm.app.active && (_vm.app.canInstall || _vm.app.isCompatible)\n ? _c(\"input\", {\n directives: [\n {\n name: \"tooltip\",\n rawName: \"v-tooltip.auto\",\n value: _vm.enableButtonTooltip,\n expression: \"enableButtonTooltip\",\n modifiers: { auto: true }\n }\n ],\n staticClass: \"enable primary\",\n attrs: {\n type: \"button\",\n value: _vm.enableButtonText,\n disabled:\n !_vm.app.canInstall ||\n _vm.installing ||\n _vm.loading(_vm.app.id)\n },\n on: {\n click: function($event) {\n return _vm.enable(_vm.app.id)\n }\n }\n })\n : !_vm.app.active\n ? _c(\"input\", {\n directives: [\n {\n name: \"tooltip\",\n rawName: \"v-tooltip.auto\",\n value: _vm.forceEnableButtonTooltip,\n expression: \"forceEnableButtonTooltip\",\n modifiers: { auto: true }\n }\n ],\n staticClass: \"enable force\",\n attrs: {\n type: \"button\",\n value: _vm.forceEnableButtonText,\n disabled: _vm.installing || _vm.loading(_vm.app.id)\n },\n on: {\n click: function($event) {\n return _vm.forceEnable(_vm.app.id)\n }\n }\n })\n : _vm._e()\n ]),\n _vm._v(\" \"),\n _c(\"div\", { staticClass: \"app-groups\" }, [\n _vm.app.active && _vm.canLimitToGroups(_vm.app)\n ? _c(\n \"div\",\n { staticClass: \"groups-enable\" },\n [\n _c(\"input\", {\n directives: [\n {\n name: \"model\",\n rawName: \"v-model\",\n value: _vm.groupCheckedAppsData,\n expression: \"groupCheckedAppsData\"\n }\n ],\n staticClass: \"groups-enable__checkbox checkbox\",\n attrs: {\n id: _vm.prefix(\"groups_enable\", _vm.app.id),\n type: \"checkbox\"\n },\n domProps: {\n value: _vm.app.id,\n checked: Array.isArray(_vm.groupCheckedAppsData)\n ? _vm._i(_vm.groupCheckedAppsData, _vm.app.id) > -1\n : _vm.groupCheckedAppsData\n },\n on: {\n change: [\n function($event) {\n var $$a = _vm.groupCheckedAppsData,\n $$el = $event.target,\n $$c = $$el.checked ? true : false\n if (Array.isArray($$a)) {\n var $$v = _vm.app.id,\n $$i = _vm._i($$a, $$v)\n if ($$el.checked) {\n $$i < 0 &&\n (_vm.groupCheckedAppsData = $$a.concat([$$v]))\n } else {\n $$i > -1 &&\n (_vm.groupCheckedAppsData = $$a\n .slice(0, $$i)\n .concat($$a.slice($$i + 1)))\n }\n } else {\n _vm.groupCheckedAppsData = $$c\n }\n },\n _vm.setGroupLimit\n ]\n }\n }),\n _vm._v(\" \"),\n _c(\n \"label\",\n { attrs: { for: _vm.prefix(\"groups_enable\", _vm.app.id) } },\n [_vm._v(_vm._s(_vm.t(\"settings\", \"Limit to groups\")))]\n ),\n _vm._v(\" \"),\n _c(\"input\", {\n staticClass: \"group_select\",\n attrs: {\n type: \"hidden\",\n title: _vm.t(\"settings\", \"All\"),\n value: \"\"\n }\n }),\n _vm._v(\" \"),\n _vm.isLimitedToGroups(_vm.app)\n ? _c(\n \"Multiselect\",\n {\n staticClass: \"multiselect-vue\",\n attrs: {\n options: _vm.groups,\n value: _vm.appGroups,\n \"options-limit\": 5,\n placeholder: _vm.t(\n \"settings\",\n \"Limit app usage to groups\"\n ),\n label: \"name\",\n \"track-by\": \"id\",\n multiple: true,\n \"close-on-select\": false,\n \"tag-width\": 60\n },\n on: {\n select: _vm.addGroupLimitation,\n remove: _vm.removeGroupLimitation,\n \"search-change\": _vm.asyncFindGroup\n }\n },\n [\n _c(\n \"span\",\n { attrs: { slot: \"noResult\" }, slot: \"noResult\" },\n [_vm._v(_vm._s(_vm.t(\"settings\", \"No results\")))]\n )\n ]\n )\n : _vm._e()\n ],\n 1\n )\n : _vm._e()\n ])\n ]),\n _vm._v(\" \"),\n _c(\"ul\", { staticClass: \"app-dependencies\" }, [\n _vm.app.missingMinOwnCloudVersion\n ? _c(\"li\", [\n _vm._v(\n \"\\n\\t\\t\\t\" +\n _vm._s(\n _vm.t(\n \"settings\",\n \"This app has no minimum Nextcloud version assigned. This will be an error in the future.\"\n )\n ) +\n \"\\n\\t\\t\"\n )\n ])\n : _vm._e(),\n _vm._v(\" \"),\n _vm.app.missingMaxOwnCloudVersion\n ? _c(\"li\", [\n _vm._v(\n \"\\n\\t\\t\\t\" +\n _vm._s(\n _vm.t(\n \"settings\",\n \"This app has no maximum Nextcloud version assigned. This will be an error in the future.\"\n )\n ) +\n \"\\n\\t\\t\"\n )\n ])\n : _vm._e(),\n _vm._v(\" \"),\n !_vm.app.canInstall\n ? _c(\"li\", [\n _vm._v(\n \"\\n\\t\\t\\t\" +\n _vm._s(\n _vm.t(\n \"settings\",\n \"This app cannot be installed because the following dependencies are not fulfilled:\"\n )\n ) +\n \"\\n\\t\\t\\t\"\n ),\n _c(\n \"ul\",\n { staticClass: \"missing-dependencies\" },\n _vm._l(_vm.app.missingDependencies, function(dep, index) {\n return _c(\"li\", { key: index }, [\n _vm._v(\"\\n\\t\\t\\t\\t\\t\" + _vm._s(dep) + \"\\n\\t\\t\\t\\t\")\n ])\n }),\n 0\n )\n ])\n : _vm._e()\n ]),\n _vm._v(\" \"),\n _c(\"p\", { staticClass: \"documentation\" }, [\n !_vm.app.internal\n ? _c(\n \"a\",\n {\n staticClass: \"appslink\",\n attrs: {\n href: _vm.appstoreUrl,\n target: \"_blank\",\n rel: \"noreferrer noopener\"\n }\n },\n [_vm._v(_vm._s(_vm.t(\"settings\", \"View in store\")) + \" ↗\")]\n )\n : _vm._e(),\n _vm._v(\" \"),\n _vm.app.website\n ? _c(\n \"a\",\n {\n staticClass: \"appslink\",\n attrs: {\n href: _vm.app.website,\n target: \"_blank\",\n rel: \"noreferrer noopener\"\n }\n },\n [_vm._v(_vm._s(_vm.t(\"settings\", \"Visit website\")) + \" ↗\")]\n )\n : _vm._e(),\n _vm._v(\" \"),\n _vm.app.bugs\n ? _c(\n \"a\",\n {\n staticClass: \"appslink\",\n attrs: {\n href: _vm.app.bugs,\n target: \"_blank\",\n rel: \"noreferrer noopener\"\n }\n },\n [_vm._v(_vm._s(_vm.t(\"settings\", \"Report a bug\")) + \" ↗\")]\n )\n : _vm._e(),\n _vm._v(\" \"),\n _vm.app.documentation && _vm.app.documentation.user\n ? _c(\n \"a\",\n {\n staticClass: \"appslink\",\n attrs: {\n href: _vm.app.documentation.user,\n target: \"_blank\",\n rel: \"noreferrer noopener\"\n }\n },\n [_vm._v(_vm._s(_vm.t(\"settings\", \"User documentation\")) + \" ↗\")]\n )\n : _vm._e(),\n _vm._v(\" \"),\n _vm.app.documentation && _vm.app.documentation.admin\n ? _c(\n \"a\",\n {\n staticClass: \"appslink\",\n attrs: {\n href: _vm.app.documentation.admin,\n target: \"_blank\",\n rel: \"noreferrer noopener\"\n }\n },\n [_vm._v(_vm._s(_vm.t(\"settings\", \"Admin documentation\")) + \" ↗\")]\n )\n : _vm._e(),\n _vm._v(\" \"),\n _vm.app.documentation && _vm.app.documentation.developer\n ? _c(\n \"a\",\n {\n staticClass: \"appslink\",\n attrs: {\n href: _vm.app.documentation.developer,\n target: \"_blank\",\n rel: \"noreferrer noopener\"\n }\n },\n [\n _vm._v(\n _vm._s(_vm.t(\"settings\", \"Developer documentation\")) + \" ↗\"\n )\n ]\n )\n : _vm._e()\n ]),\n _vm._v(\" \"),\n _c(\"div\", {\n staticClass: \"app-description\",\n domProps: { innerHTML: _vm._s(_vm.renderMarkdown) }\n })\n ]\n )\n}\nvar staticRenderFns = []\nrender._withStripped = true\n\nexport { render, staticRenderFns }","var render = function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n return _c(\"div\", { attrs: { id: \"app-content-inner\" } }, [\n _c(\n \"div\",\n {\n staticClass: \"apps-list\",\n class: {\n installed: _vm.useBundleView || _vm.useListView,\n store: _vm.useAppStoreView\n },\n attrs: { id: \"apps-list\" }\n },\n [\n _vm.useListView\n ? [\n _vm.showUpdateAll\n ? _c(\"div\", { staticClass: \"counter\" }, [\n _vm._v(\n \"\\n\\t\\t\\t\\t\" +\n _vm._s(\n _vm.t(\n \"settings\",\n \"{counter} apps have an update available\",\n { counter: _vm.counter }\n )\n ) +\n \"\\n\\t\\t\\t\\t\"\n ),\n _vm.showUpdateAll\n ? _c(\n \"button\",\n {\n staticClass: \"primary\",\n attrs: { id: \"app-list-update-all\" },\n on: { click: _vm.updateAll }\n },\n [\n _vm._v(\n \"\\n\\t\\t\\t\\t\\t\" +\n _vm._s(_vm.t(\"settings\", \"Update all\")) +\n \"\\n\\t\\t\\t\\t\"\n )\n ]\n )\n : _vm._e()\n ])\n : _vm._e(),\n _vm._v(\" \"),\n _c(\n \"transition-group\",\n {\n staticClass: \"apps-list-container\",\n attrs: { name: \"app-list\", tag: \"div\" }\n },\n _vm._l(_vm.apps, function(app) {\n return _c(\"AppItem\", {\n key: app.id,\n attrs: { app: app, category: _vm.category }\n })\n }),\n 1\n )\n ]\n : _vm._e(),\n _vm._v(\" \"),\n _vm.useBundleView\n ? _c(\n \"transition-group\",\n {\n staticClass: \"apps-list-container\",\n attrs: { name: \"app-list\", tag: \"div\" }\n },\n [\n _vm._l(_vm.bundles, function(bundle) {\n return [\n _c(\"div\", { key: bundle.id, staticClass: \"apps-header\" }, [\n _c(\"div\", { staticClass: \"app-image\" }),\n _vm._v(\" \"),\n _c(\"h2\", [\n _vm._v(_vm._s(bundle.name) + \" \"),\n _c(\"input\", {\n attrs: {\n type: \"button\",\n value: _vm.bundleToggleText(bundle.id)\n },\n on: {\n click: function($event) {\n return _vm.toggleBundle(bundle.id)\n }\n }\n })\n ]),\n _vm._v(\" \"),\n _c(\"div\", { staticClass: \"app-version\" }),\n _vm._v(\" \"),\n _c(\"div\", { staticClass: \"app-level\" }),\n _vm._v(\" \"),\n _c(\"div\", { staticClass: \"app-groups\" }),\n _vm._v(\" \"),\n _c(\"div\", { staticClass: \"actions\" }, [\n _vm._v(\"\\n\\t\\t\\t\\t\\t\\t \\n\\t\\t\\t\\t\\t\")\n ])\n ]),\n _vm._v(\" \"),\n _vm._l(_vm.bundleApps(bundle.id), function(app) {\n return _c(\"AppItem\", {\n key: bundle.id + app.id,\n attrs: { app: app, category: _vm.category }\n })\n })\n ]\n })\n ],\n 2\n )\n : _vm._e(),\n _vm._v(\" \"),\n _vm.useAppStoreView\n ? _vm._l(_vm.apps, function(app) {\n return _c(\"AppItem\", {\n key: app.id,\n attrs: { app: app, category: _vm.category, \"list-view\": false }\n })\n })\n : _vm._e()\n ],\n 2\n ),\n _vm._v(\" \"),\n _c(\n \"div\",\n { staticClass: \"apps-list installed\", attrs: { id: \"apps-list-search\" } },\n [\n _c(\n \"div\",\n { staticClass: \"apps-list-container\" },\n [\n _vm.search !== \"\" && _vm.searchApps.length > 0\n ? [\n _c(\"div\", { staticClass: \"section\" }, [\n _c(\"div\"),\n _vm._v(\" \"),\n _c(\"td\", { attrs: { colspan: \"5\" } }, [\n _c(\"h2\", [\n _vm._v(\n _vm._s(\n _vm.t(\"settings\", \"Results from other categories\")\n )\n )\n ])\n ])\n ]),\n _vm._v(\" \"),\n _vm._l(_vm.searchApps, function(app) {\n return _c(\"AppItem\", {\n key: app.id,\n attrs: {\n app: app,\n category: _vm.category,\n \"list-view\": true\n }\n })\n })\n ]\n : _vm._e()\n ],\n 2\n )\n ]\n ),\n _vm._v(\" \"),\n _vm.search !== \"\" &&\n !_vm.loading &&\n _vm.searchApps.length === 0 &&\n _vm.apps.length === 0\n ? _c(\n \"div\",\n {\n staticClass: \"emptycontent emptycontent-search\",\n attrs: { id: \"apps-list-empty\" }\n },\n [\n _c(\"div\", {\n staticClass: \"icon-settings-dark\",\n attrs: { id: \"app-list-empty-icon\" }\n }),\n _vm._v(\" \"),\n _c(\"h2\", [\n _vm._v(\n _vm._s(_vm.t(\"settings\", \"No apps found for your version\"))\n )\n ])\n ]\n )\n : _vm._e(),\n _vm._v(\" \"),\n _c(\"div\", { attrs: { id: \"searchresults\" } })\n ])\n}\nvar staticRenderFns = []\nrender._withStripped = true\n\nexport { render, staticRenderFns }","var render = function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n return _c(\n \"div\",\n {\n staticClass: \"section\",\n class: { selected: _vm.isSelected },\n on: { click: _vm.showAppDetails }\n },\n [\n _c(\n \"div\",\n {\n staticClass: \"app-image app-image-icon\",\n on: { click: _vm.showAppDetails }\n },\n [\n (_vm.listView && !_vm.app.preview) ||\n (!_vm.listView && !_vm.app.screenshot)\n ? _c(\"div\", { staticClass: \"icon-settings-dark\" })\n : _vm._e(),\n _vm._v(\" \"),\n _vm.listView && _vm.app.preview\n ? _c(\n \"svg\",\n { attrs: { width: \"32\", height: \"32\", viewBox: \"0 0 32 32\" } },\n [\n _c(\"defs\", [\n _c(\n \"filter\",\n { attrs: { id: _vm.filterId } },\n [\n _c(\"feColorMatrix\", {\n attrs: {\n in: \"SourceGraphic\",\n type: \"matrix\",\n values: \"-1 0 0 0 1 0 -1 0 0 1 0 0 -1 0 1 0 0 0 1 0\"\n }\n })\n ],\n 1\n )\n ]),\n _vm._v(\" \"),\n _c(\"image\", {\n staticClass: \"app-icon\",\n attrs: {\n x: \"0\",\n y: \"0\",\n width: \"32\",\n height: \"32\",\n preserveAspectRatio: \"xMinYMin meet\",\n filter: _vm.filterUrl,\n \"xlink:href\": _vm.app.preview\n }\n })\n ]\n )\n : _vm._e(),\n _vm._v(\" \"),\n !_vm.listView && _vm.app.screenshot\n ? _c(\"img\", { attrs: { src: _vm.app.screenshot, width: \"100%\" } })\n : _vm._e()\n ]\n ),\n _vm._v(\" \"),\n _c(\n \"div\",\n { staticClass: \"app-name\", on: { click: _vm.showAppDetails } },\n [_vm._v(\"\\n\\t\\t\" + _vm._s(_vm.app.name) + \"\\n\\t\")]\n ),\n _vm._v(\" \"),\n !_vm.listView\n ? _c(\"div\", { staticClass: \"app-summary\" }, [\n _vm._v(\"\\n\\t\\t\" + _vm._s(_vm.app.summary) + \"\\n\\t\")\n ])\n : _vm._e(),\n _vm._v(\" \"),\n _vm.listView\n ? _c(\"div\", { staticClass: \"app-version\" }, [\n _vm.app.version\n ? _c(\"span\", [_vm._v(_vm._s(_vm.app.version))])\n : _vm.app.appstoreData.releases[0].version\n ? _c(\"span\", [\n _vm._v(_vm._s(_vm.app.appstoreData.releases[0].version))\n ])\n : _vm._e()\n ])\n : _vm._e(),\n _vm._v(\" \"),\n _c(\n \"div\",\n { staticClass: \"app-level\" },\n [\n _vm.app.level === 300\n ? _c(\n \"span\",\n {\n directives: [\n {\n name: \"tooltip\",\n rawName: \"v-tooltip.auto\",\n value: _vm.t(\n \"settings\",\n \"This app is supported via your current Nextcloud subscription.\"\n ),\n expression:\n \"t('settings', 'This app is supported via your current Nextcloud subscription.')\",\n modifiers: { auto: true }\n }\n ],\n staticClass: \"supported icon-checkmark-color\"\n },\n [_vm._v(\"\\n\\t\\t\\t\" + _vm._s(_vm.t(\"settings\", \"Supported\")))]\n )\n : _vm._e(),\n _vm._v(\" \"),\n _vm.app.level === 200\n ? _c(\n \"span\",\n {\n directives: [\n {\n name: \"tooltip\",\n rawName: \"v-tooltip.auto\",\n value: _vm.t(\n \"settings\",\n \"Featured apps are developed by and within the community. They offer central functionality and are ready for production use.\"\n ),\n expression:\n \"t('settings', 'Featured apps are developed by and within the community. They offer central functionality and are ready for production use.')\",\n modifiers: { auto: true }\n }\n ],\n staticClass: \"official icon-checkmark\"\n },\n [_vm._v(\"\\n\\t\\t\\t\" + _vm._s(_vm.t(\"settings\", \"Featured\")))]\n )\n : _vm._e(),\n _vm._v(\" \"),\n _vm.hasRating && !_vm.listView\n ? _c(\"AppScore\", { attrs: { score: _vm.app.score } })\n : _vm._e()\n ],\n 1\n ),\n _vm._v(\" \"),\n _c(\"div\", { staticClass: \"actions\" }, [\n _vm.app.error\n ? _c(\"div\", { staticClass: \"warning\" }, [\n _vm._v(\"\\n\\t\\t\\t\" + _vm._s(_vm.app.error) + \"\\n\\t\\t\")\n ])\n : _vm._e(),\n _vm._v(\" \"),\n _vm.loading(_vm.app.id)\n ? _c(\"div\", { staticClass: \"icon icon-loading-small\" })\n : _vm._e(),\n _vm._v(\" \"),\n _vm.app.update\n ? _c(\"input\", {\n staticClass: \"update primary\",\n attrs: {\n type: \"button\",\n value: _vm.t(\"settings\", \"Update to {update}\", {\n update: _vm.app.update\n }),\n disabled: _vm.installing || _vm.loading(_vm.app.id)\n },\n on: {\n click: function($event) {\n $event.stopPropagation()\n return _vm.update(_vm.app.id)\n }\n }\n })\n : _vm._e(),\n _vm._v(\" \"),\n _vm.app.canUnInstall\n ? _c(\"input\", {\n staticClass: \"uninstall\",\n attrs: {\n type: \"button\",\n value: _vm.t(\"settings\", \"Remove\"),\n disabled: _vm.installing || _vm.loading(_vm.app.id)\n },\n on: {\n click: function($event) {\n $event.stopPropagation()\n return _vm.remove(_vm.app.id)\n }\n }\n })\n : _vm._e(),\n _vm._v(\" \"),\n _vm.app.active\n ? _c(\"input\", {\n staticClass: \"enable\",\n attrs: {\n type: \"button\",\n value: _vm.t(\"settings\", \"Disable\"),\n disabled: _vm.installing || _vm.loading(_vm.app.id)\n },\n on: {\n click: function($event) {\n $event.stopPropagation()\n return _vm.disable(_vm.app.id)\n }\n }\n })\n : _vm._e(),\n _vm._v(\" \"),\n !_vm.app.active && (_vm.app.canInstall || _vm.app.isCompatible)\n ? _c(\"input\", {\n directives: [\n {\n name: \"tooltip\",\n rawName: \"v-tooltip.auto\",\n value: _vm.enableButtonTooltip,\n expression: \"enableButtonTooltip\",\n modifiers: { auto: true }\n }\n ],\n staticClass: \"enable\",\n attrs: {\n type: \"button\",\n value: _vm.enableButtonText,\n disabled:\n !_vm.app.canInstall ||\n _vm.installing ||\n _vm.loading(_vm.app.id)\n },\n on: {\n click: function($event) {\n $event.stopPropagation()\n return _vm.enable(_vm.app.id)\n }\n }\n })\n : !_vm.app.active\n ? _c(\"input\", {\n directives: [\n {\n name: \"tooltip\",\n rawName: \"v-tooltip.auto\",\n value: _vm.forceEnableButtonTooltip,\n expression: \"forceEnableButtonTooltip\",\n modifiers: { auto: true }\n }\n ],\n staticClass: \"enable force\",\n attrs: {\n type: \"button\",\n value: _vm.forceEnableButtonText,\n disabled: _vm.installing || _vm.loading(_vm.app.id)\n },\n on: {\n click: function($event) {\n $event.stopPropagation()\n return _vm.forceEnable(_vm.app.id)\n }\n }\n })\n : _vm._e()\n ])\n ]\n )\n}\nvar staticRenderFns = []\nrender._withStripped = true\n\nexport { render, staticRenderFns }","var render = function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n return _c(\"img\", {\n staticClass: \"app-score-image\",\n attrs: { src: _vm.scoreImage }\n })\n}\nvar staticRenderFns = []\nrender._withStripped = true\n\nexport { render, staticRenderFns }","var render = function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n return _c(\n \"Content\",\n {\n class: { \"with-app-sidebar\": _vm.currentApp },\n attrs: {\n \"app-name\": \"settings\",\n \"content-class\": { \"icon-loading\": _vm.loadingList },\n \"navigation-class\": { \"icon-loading\": _vm.loading }\n }\n },\n [\n _c(\"AppNavigation\", [\n _c(\n \"ul\",\n { attrs: { id: \"appscategories\" } },\n _vm._l(_vm.menu, function(item) {\n return _c(\"AppNavigationItem\", {\n key: item.key,\n attrs: { item: item }\n })\n }),\n 1\n )\n ]),\n _vm._v(\" \"),\n _c(\n \"AppContent\",\n {\n staticClass: \"app-settings-content\",\n class: { \"icon-loading\": _vm.loadingList }\n },\n [\n _c(\"AppList\", {\n attrs: {\n category: _vm.category,\n app: _vm.currentApp,\n search: _vm.searchQuery\n }\n })\n ],\n 1\n ),\n _vm._v(\" \"),\n _vm.id && _vm.currentApp\n ? _c(\n \"AppSidebar\",\n { on: { close: _vm.hideAppDetails } },\n [\n _c(\"AppDetails\", {\n attrs: { category: _vm.category, app: _vm.currentApp }\n })\n ],\n 1\n )\n : _vm._e()\n ],\n 1\n )\n}\nvar staticRenderFns = []\nrender._withStripped = true\n\nexport { render, staticRenderFns }","// style-loader: Adds some css to the DOM by adding a <style> tag\n\n// load the styles\nvar content = require(\"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./AppDetails.vue?vue&type=style&index=0&id=59a92e62&scoped=true&lang=css&\");\nif(typeof content === 'string') content = [[module.id, content, '']];\nif(content.locals) module.exports = content.locals;\n// add the styles to the DOM\nvar add = require(\"!../../../../node_modules/vue-style-loader/lib/addStylesClient.js\").default\nvar update = add(\"5bf4fbf8\", content, false, {});\n// Hot Module Replacement\nif(module.hot) {\n // When the styles change, update the <style> tags\n if(!content.locals) {\n module.hot.accept(\"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./AppDetails.vue?vue&type=style&index=0&id=59a92e62&scoped=true&lang=css&\", function() {\n var newContent = require(\"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./AppDetails.vue?vue&type=style&index=0&id=59a92e62&scoped=true&lang=css&\");\n if(typeof newContent === 'string') newContent = [[module.id, newContent, '']];\n update(newContent);\n });\n }\n // When the module is disposed, remove the <style> tags\n module.hot.dispose(function() { update(); });\n}","// style-loader: Adds some css to the DOM by adding a <style> tag\n\n// load the styles\nvar content = require(\"!!../../../../../node_modules/css-loader/dist/cjs.js!../../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./AppItem.vue?vue&type=style&index=0&id=429da85a&scoped=true&lang=css&\");\nif(typeof content === 'string') content = [[module.id, content, '']];\nif(content.locals) module.exports = content.locals;\n// add the styles to the DOM\nvar add = require(\"!../../../../../node_modules/vue-style-loader/lib/addStylesClient.js\").default\nvar update = add(\"2d876e7a\", content, false, {});\n// Hot Module Replacement\nif(module.hot) {\n // When the styles change, update the <style> tags\n if(!content.locals) {\n module.hot.accept(\"!!../../../../../node_modules/css-loader/dist/cjs.js!../../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./AppItem.vue?vue&type=style&index=0&id=429da85a&scoped=true&lang=css&\", function() {\n var newContent = require(\"!!../../../../../node_modules/css-loader/dist/cjs.js!../../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./AppItem.vue?vue&type=style&index=0&id=429da85a&scoped=true&lang=css&\");\n if(typeof newContent === 'string') newContent = [[module.id, newContent, '']];\n update(newContent);\n });\n }\n // When the module is disposed, remove the <style> tags\n module.hot.dispose(function() { update(); });\n}"],"mappings":";;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,uBAiBA;AACA;AACA;;;;;;;;;;;;ACvCA;AAAA;AAAA;;;;;;;;;;;;ACAA;AAAA;AAAA;AAAA;AAAA;;;;;;;;;;;;ACAA;AAAA;AAAA;AAAA;AAAA;AAAA;;;;;;;;;;;;;ACAA;AAAA;AAAA;AAAA;AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,uBAiBA;AACA;AACA;;;;;;;;;;;;ACtCA;AAAA;AAAA;;;;;;;;;;;;ACAA;AAAA;AAAA;AAAA;AAAA;AAAA;;;;;;;;;;;;;ACAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,uBAiBA;AACA;AACA;;;;;;;;;;;;ACvCA;AAAA;AAAA;;;;;;;;;;;;ACAA;AAAA;AAAA;AAAA;AAAA;;;;;;;;;;;;ACAA;AAAA;AAAA;AAAA;AAAA;AAAA;;;;;;;;;;;;;ACAA;AAAA;AAAA;AAAA;AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,uBAiBA;AACA;AACA;;;;;;;;;;;;ACtCA;AAAA;AAAA;;;;;;;;;;;;ACAA;AAAA;AAAA;AAAA;AAAA;AAAA;;;;;;;;;;;;;ACAA;AAAA;AAAA;AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,uBAYA;AACA;AACA;;;;;;;;;;;;ACjCA;AAAA;AAAA;;;;;;;;;;;;ACAA;AAAA;AAAA;AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,uBAYA;AACA;AACA;;;;;;;;;;;;ACjCA;AAAA;AAAA;;;;;;;;;;;;ACAA;AAAA;AAAA;AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,uBAYA;AACA;AACA;;;;;;;;;;;;ACjCA;AAAA;AAAA;;;;;;;;;;;;ACAA;AAAA;AAAA;AAAA;AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,uBAiBA;AACA;AACA;;;;;;;;;;;;ACtCA;AAAA;AAAA;;;;;;;;;;;;ACAA;AAAA;AAAA;AAAA;AAAA;AAAA;;;;;;;;;;;;;ACAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACvTA;AAAA;AAAA;AAAA;AAAA;AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACrRA;AAAA;AAAA;AAAA;AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;AC1MA;AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACnCA;AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACxLA;AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;AC7BA;AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACrCA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;ACxPA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACNA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;;ACNA;AAAA;AAAA;AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;;AClhBA;AAAA;AAAA;AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;;AC5MA;AAAA;AAAA;AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;;AC/QA;AAAA;AAAA;AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;;ACXA;AAAA;AAAA;AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACjEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;ACVA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;A","sourceRoot":""} \ No newline at end of file
diff --git a/apps/settings/js/vue-3.js b/apps/settings/js/vue-3.js
index 82c330b7e65..238a88f5bf1 100644
--- a/apps/settings/js/vue-3.js
+++ b/apps/settings/js/vue-3.js
@@ -78,9 +78,11 @@ __webpack_require__.r(__webpack_exports__);
"use strict";
__webpack_require__.r(__webpack_exports__);
-/* harmony import */ var _UserRow_vue_vue_type_template_id_77960baa___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./UserRow.vue?vue&type=template&id=77960baa& */ "./apps/settings/src/components/UserList/UserRow.vue?vue&type=template&id=77960baa&");
+/* harmony import */ var _UserRow_vue_vue_type_template_id_77960baa_scoped_true___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./UserRow.vue?vue&type=template&id=77960baa&scoped=true& */ "./apps/settings/src/components/UserList/UserRow.vue?vue&type=template&id=77960baa&scoped=true&");
/* harmony import */ var _UserRow_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./UserRow.vue?vue&type=script&lang=js& */ "./apps/settings/src/components/UserList/UserRow.vue?vue&type=script&lang=js&");
-/* empty/unused harmony star reexport *//* harmony import */ var _node_modules_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ../../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js */ "./node_modules/vue-loader/lib/runtime/componentNormalizer.js");
+/* empty/unused harmony star reexport *//* harmony import */ var _UserRow_vue_vue_type_style_index_0_id_77960baa_scoped_true_lang_scss___WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./UserRow.vue?vue&type=style&index=0&id=77960baa&scoped=true&lang=scss& */ "./apps/settings/src/components/UserList/UserRow.vue?vue&type=style&index=0&id=77960baa&scoped=true&lang=scss&");
+/* harmony import */ var _node_modules_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ../../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js */ "./node_modules/vue-loader/lib/runtime/componentNormalizer.js");
+
@@ -88,13 +90,13 @@ __webpack_require__.r(__webpack_exports__);
/* normalize component */
-var component = Object(_node_modules_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_2__["default"])(
+var component = Object(_node_modules_vue_loader_lib_runtime_componentNormalizer_js__WEBPACK_IMPORTED_MODULE_3__["default"])(
_UserRow_vue_vue_type_script_lang_js___WEBPACK_IMPORTED_MODULE_1__["default"],
- _UserRow_vue_vue_type_template_id_77960baa___WEBPACK_IMPORTED_MODULE_0__["render"],
- _UserRow_vue_vue_type_template_id_77960baa___WEBPACK_IMPORTED_MODULE_0__["staticRenderFns"],
+ _UserRow_vue_vue_type_template_id_77960baa_scoped_true___WEBPACK_IMPORTED_MODULE_0__["render"],
+ _UserRow_vue_vue_type_template_id_77960baa_scoped_true___WEBPACK_IMPORTED_MODULE_0__["staticRenderFns"],
false,
null,
- null,
+ "77960baa",
null
)
@@ -120,19 +122,35 @@ __webpack_require__.r(__webpack_exports__);
/***/ }),
-/***/ "./apps/settings/src/components/UserList/UserRow.vue?vue&type=template&id=77960baa&":
-/*!******************************************************************************************!*\
- !*** ./apps/settings/src/components/UserList/UserRow.vue?vue&type=template&id=77960baa& ***!
- \******************************************************************************************/
+/***/ "./apps/settings/src/components/UserList/UserRow.vue?vue&type=style&index=0&id=77960baa&scoped=true&lang=scss&":
+/*!*********************************************************************************************************************!*\
+ !*** ./apps/settings/src/components/UserList/UserRow.vue?vue&type=style&index=0&id=77960baa&scoped=true&lang=scss& ***!
+ \*********************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, __webpack_exports__, __webpack_require__) {
+
+"use strict";
+__webpack_require__.r(__webpack_exports__);
+/* harmony import */ var _node_modules_vue_style_loader_index_js_node_modules_css_loader_dist_cjs_js_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_sass_loader_dist_cjs_js_node_modules_vue_loader_lib_index_js_vue_loader_options_UserRow_vue_vue_type_style_index_0_id_77960baa_scoped_true_lang_scss___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../node_modules/vue-style-loader!../../../../../node_modules/css-loader/dist/cjs.js!../../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../../node_modules/sass-loader/dist/cjs.js!../../../../../node_modules/vue-loader/lib??vue-loader-options!./UserRow.vue?vue&type=style&index=0&id=77960baa&scoped=true&lang=scss& */ "./node_modules/vue-style-loader/index.js!./node_modules/css-loader/dist/cjs.js!./node_modules/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/sass-loader/dist/cjs.js!./node_modules/vue-loader/lib/index.js?!./apps/settings/src/components/UserList/UserRow.vue?vue&type=style&index=0&id=77960baa&scoped=true&lang=scss&");
+/* harmony import */ var _node_modules_vue_style_loader_index_js_node_modules_css_loader_dist_cjs_js_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_sass_loader_dist_cjs_js_node_modules_vue_loader_lib_index_js_vue_loader_options_UserRow_vue_vue_type_style_index_0_id_77960baa_scoped_true_lang_scss___WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_node_modules_vue_style_loader_index_js_node_modules_css_loader_dist_cjs_js_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_sass_loader_dist_cjs_js_node_modules_vue_loader_lib_index_js_vue_loader_options_UserRow_vue_vue_type_style_index_0_id_77960baa_scoped_true_lang_scss___WEBPACK_IMPORTED_MODULE_0__);
+/* harmony reexport (unknown) */ for(var __WEBPACK_IMPORT_KEY__ in _node_modules_vue_style_loader_index_js_node_modules_css_loader_dist_cjs_js_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_sass_loader_dist_cjs_js_node_modules_vue_loader_lib_index_js_vue_loader_options_UserRow_vue_vue_type_style_index_0_id_77960baa_scoped_true_lang_scss___WEBPACK_IMPORTED_MODULE_0__) if(__WEBPACK_IMPORT_KEY__ !== 'default') (function(key) { __webpack_require__.d(__webpack_exports__, key, function() { return _node_modules_vue_style_loader_index_js_node_modules_css_loader_dist_cjs_js_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_sass_loader_dist_cjs_js_node_modules_vue_loader_lib_index_js_vue_loader_options_UserRow_vue_vue_type_style_index_0_id_77960baa_scoped_true_lang_scss___WEBPACK_IMPORTED_MODULE_0__[key]; }) }(__WEBPACK_IMPORT_KEY__));
+ /* harmony default export */ __webpack_exports__["default"] = (_node_modules_vue_style_loader_index_js_node_modules_css_loader_dist_cjs_js_node_modules_vue_loader_lib_loaders_stylePostLoader_js_node_modules_sass_loader_dist_cjs_js_node_modules_vue_loader_lib_index_js_vue_loader_options_UserRow_vue_vue_type_style_index_0_id_77960baa_scoped_true_lang_scss___WEBPACK_IMPORTED_MODULE_0___default.a);
+
+/***/ }),
+
+/***/ "./apps/settings/src/components/UserList/UserRow.vue?vue&type=template&id=77960baa&scoped=true&":
+/*!******************************************************************************************************!*\
+ !*** ./apps/settings/src/components/UserList/UserRow.vue?vue&type=template&id=77960baa&scoped=true& ***!
+ \******************************************************************************************************/
/*! exports provided: render, staticRenderFns */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
"use strict";
__webpack_require__.r(__webpack_exports__);
-/* harmony import */ var _node_modules_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_node_modules_vue_loader_lib_index_js_vue_loader_options_UserRow_vue_vue_type_template_id_77960baa___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../../node_modules/vue-loader/lib??vue-loader-options!./UserRow.vue?vue&type=template&id=77960baa& */ "./node_modules/vue-loader/lib/loaders/templateLoader.js?!./node_modules/vue-loader/lib/index.js?!./apps/settings/src/components/UserList/UserRow.vue?vue&type=template&id=77960baa&");
-/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "render", function() { return _node_modules_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_node_modules_vue_loader_lib_index_js_vue_loader_options_UserRow_vue_vue_type_template_id_77960baa___WEBPACK_IMPORTED_MODULE_0__["render"]; });
+/* harmony import */ var _node_modules_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_node_modules_vue_loader_lib_index_js_vue_loader_options_UserRow_vue_vue_type_template_id_77960baa_scoped_true___WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! -!../../../../../node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../../node_modules/vue-loader/lib??vue-loader-options!./UserRow.vue?vue&type=template&id=77960baa&scoped=true& */ "./node_modules/vue-loader/lib/loaders/templateLoader.js?!./node_modules/vue-loader/lib/index.js?!./apps/settings/src/components/UserList/UserRow.vue?vue&type=template&id=77960baa&scoped=true&");
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "render", function() { return _node_modules_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_node_modules_vue_loader_lib_index_js_vue_loader_options_UserRow_vue_vue_type_template_id_77960baa_scoped_true___WEBPACK_IMPORTED_MODULE_0__["render"]; });
-/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "staticRenderFns", function() { return _node_modules_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_node_modules_vue_loader_lib_index_js_vue_loader_options_UserRow_vue_vue_type_template_id_77960baa___WEBPACK_IMPORTED_MODULE_0__["staticRenderFns"]; });
+/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, "staticRenderFns", function() { return _node_modules_vue_loader_lib_loaders_templateLoader_js_vue_loader_options_node_modules_vue_loader_lib_index_js_vue_loader_options_UserRow_vue_vue_type_template_id_77960baa_scoped_true___WEBPACK_IMPORTED_MODULE_0__["staticRenderFns"]; });
@@ -1393,6 +1411,10 @@ function _asyncToGenerator(fn) { return function () { var self = this, args = ar
//
//
//
+//
+//
+//
+//
@@ -2787,6 +2809,24 @@ vue__WEBPACK_IMPORTED_MODULE_0__["default"].use(vue_localstorage__WEBPACK_IMPORT
/***/ }),
+/***/ "./node_modules/css-loader/dist/cjs.js!./node_modules/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/sass-loader/dist/cjs.js!./node_modules/vue-loader/lib/index.js?!./apps/settings/src/components/UserList/UserRow.vue?vue&type=style&index=0&id=77960baa&scoped=true&lang=scss&":
+/*!*************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** ./node_modules/css-loader/dist/cjs.js!./node_modules/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/sass-loader/dist/cjs.js!./node_modules/vue-loader/lib??vue-loader-options!./apps/settings/src/components/UserList/UserRow.vue?vue&type=style&index=0&id=77960baa&scoped=true&lang=scss& ***!
+ \*************************************************************************************************************************************************************************************************************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, exports, __webpack_require__) {
+
+// Imports
+var ___CSS_LOADER_API_IMPORT___ = __webpack_require__(/*! ../../../../../node_modules/css-loader/dist/runtime/api.js */ "./node_modules/css-loader/dist/runtime/api.js");
+exports = ___CSS_LOADER_API_IMPORT___(false);
+// Module
+exports.push([module.i, ".row--menu-opened[data-v-77960baa] {\n z-index: 1 !important;\n}\n", ""]);
+// Exports
+module.exports = exports;
+
+
+/***/ }),
+
/***/ "./node_modules/css-loader/dist/cjs.js!./node_modules/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/vue-loader/lib/index.js?!./apps/settings/src/components/UserList/UserRowSimple.vue?vue&type=style&index=0&id=ff154a08&scoped=true&lang=css&":
/*!***************************************************************************************************************************************************************************************************************************************************************************!*\
!*** ./node_modules/css-loader/dist/cjs.js!./node_modules/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/vue-loader/lib??vue-loader-options!./apps/settings/src/components/UserList/UserRowSimple.vue?vue&type=style&index=0&id=ff154a08&scoped=true&lang=css& ***!
@@ -3358,10 +3398,10 @@ render._withStripped = true
/***/ }),
-/***/ "./node_modules/vue-loader/lib/loaders/templateLoader.js?!./node_modules/vue-loader/lib/index.js?!./apps/settings/src/components/UserList/UserRow.vue?vue&type=template&id=77960baa&":
-/*!************************************************************************************************************************************************************************************************************************!*\
- !*** ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./apps/settings/src/components/UserList/UserRow.vue?vue&type=template&id=77960baa& ***!
- \************************************************************************************************************************************************************************************************************************/
+/***/ "./node_modules/vue-loader/lib/loaders/templateLoader.js?!./node_modules/vue-loader/lib/index.js?!./apps/settings/src/components/UserList/UserRow.vue?vue&type=template&id=77960baa&scoped=true&":
+/*!************************************************************************************************************************************************************************************************************************************!*\
+ !*** ./node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!./node_modules/vue-loader/lib??vue-loader-options!./apps/settings/src/components/UserList/UserRow.vue?vue&type=template&id=77960baa&scoped=true& ***!
+ \************************************************************************************************************************************************************************************************************************************/
/*! exports provided: render, staticRenderFns */
/***/ (function(module, __webpack_exports__, __webpack_require__) {
@@ -3422,6 +3462,7 @@ var render = function() {
])
: !_vm.editing
? _c("UserRowSimple", {
+ class: { "row--menu-opened": _vm.openedMenu },
attrs: {
editing: _vm.editing,
"feedback-message": _vm.feedbackMessage,
@@ -3447,7 +3488,10 @@ var render = function() {
"div",
{
staticClass: "row row--editable",
- class: { disabled: _vm.loading.delete || _vm.loading.disable },
+ class: {
+ disabled: _vm.loading.delete || _vm.loading.disable,
+ "row--menu-opened": _vm.openedMenu
+ },
attrs: { "data-id": _vm.user.id }
},
[
@@ -4397,6 +4441,27 @@ render._withStripped = true
/***/ }),
+/***/ "./node_modules/vue-style-loader/index.js!./node_modules/css-loader/dist/cjs.js!./node_modules/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/sass-loader/dist/cjs.js!./node_modules/vue-loader/lib/index.js?!./apps/settings/src/components/UserList/UserRow.vue?vue&type=style&index=0&id=77960baa&scoped=true&lang=scss&":
+/*!*********************************************************************************************************************************************************************************************************************************************************************************************************************************************!*\
+ !*** ./node_modules/vue-style-loader!./node_modules/css-loader/dist/cjs.js!./node_modules/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/sass-loader/dist/cjs.js!./node_modules/vue-loader/lib??vue-loader-options!./apps/settings/src/components/UserList/UserRow.vue?vue&type=style&index=0&id=77960baa&scoped=true&lang=scss& ***!
+ \*********************************************************************************************************************************************************************************************************************************************************************************************************************************************/
+/*! no static exports found */
+/***/ (function(module, exports, __webpack_require__) {
+
+// style-loader: Adds some css to the DOM by adding a <style> tag
+
+// load the styles
+var content = __webpack_require__(/*! !../../../../../node_modules/css-loader/dist/cjs.js!../../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../../node_modules/sass-loader/dist/cjs.js!../../../../../node_modules/vue-loader/lib??vue-loader-options!./UserRow.vue?vue&type=style&index=0&id=77960baa&scoped=true&lang=scss& */ "./node_modules/css-loader/dist/cjs.js!./node_modules/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/sass-loader/dist/cjs.js!./node_modules/vue-loader/lib/index.js?!./apps/settings/src/components/UserList/UserRow.vue?vue&type=style&index=0&id=77960baa&scoped=true&lang=scss&");
+if(typeof content === 'string') content = [[module.i, content, '']];
+if(content.locals) module.exports = content.locals;
+// add the styles to the DOM
+var add = __webpack_require__(/*! ../../../../../node_modules/vue-style-loader/lib/addStylesClient.js */ "./node_modules/vue-style-loader/lib/addStylesClient.js").default
+var update = add("beab2b2c", content, false, {});
+// Hot Module Replacement
+if(false) {}
+
+/***/ }),
+
/***/ "./node_modules/vue-style-loader/index.js!./node_modules/css-loader/dist/cjs.js!./node_modules/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/vue-loader/lib/index.js?!./apps/settings/src/components/UserList/UserRowSimple.vue?vue&type=style&index=0&id=ff154a08&scoped=true&lang=css&":
/*!***********************************************************************************************************************************************************************************************************************************************************************************************************!*\
!*** ./node_modules/vue-style-loader!./node_modules/css-loader/dist/cjs.js!./node_modules/vue-loader/lib/loaders/stylePostLoader.js!./node_modules/vue-loader/lib??vue-loader-options!./apps/settings/src/components/UserList/UserRowSimple.vue?vue&type=style&index=0&id=ff154a08&scoped=true&lang=css& ***!
@@ -4419,4 +4484,4 @@ if(false) {}
/***/ })
}]);
-//# sourceMappingURL=vue-3.js.map?v=c8aa9d221a0f883b2f81 \ No newline at end of file
+//# sourceMappingURL=vue-3.js.map?v=e015ba955ee2bc1cd2ca \ No newline at end of file
diff --git a/apps/settings/js/vue-3.js.map b/apps/settings/js/vue-3.js.map
index 3b3fa557d26..fb6e1e7d149 100644
--- a/apps/settings/js/vue-3.js.map
+++ b/apps/settings/js/vue-3.js.map
@@ -1 +1 @@
-{"version":3,"file":"vue-3.js?v=c8aa9d221a0f883b2f81","sources":["webpack:///./apps/settings/src/components/UserList.vue","webpack:///./apps/settings/src/components/UserList.vue?69dd","webpack:///./apps/settings/src/components/UserList.vue?bf93","webpack:///./apps/settings/src/components/UserList/UserRow.vue","webpack:///./apps/settings/src/components/UserList/UserRow.vue?4147","webpack:///./apps/settings/src/components/UserList/UserRow.vue?9742","webpack:///./apps/settings/src/components/UserList/UserRowSimple.vue","webpack:///./apps/settings/src/components/UserList/UserRowSimple.vue?6483","webpack:///./apps/settings/src/components/UserList/UserRowSimple.vue?09fb","webpack:///./apps/settings/src/components/UserList/UserRowSimple.vue?2ff0","webpack:///./apps/settings/src/mixins/UserRowMixin.js","webpack:///./apps/settings/src/views/Users.vue","webpack:///./apps/settings/src/views/Users.vue?83c0","webpack:///./apps/settings/src/views/Users.vue?cc08","webpack:///./apps/settings/src/components/UserList.vue?1138","webpack:///./apps/settings/src/components/UserList/UserRow.vue?68e3","webpack:///./apps/settings/src/components/UserList/UserRowSimple.vue?4ab0","webpack:///./apps/settings/src/views/Users.vue?0f11","webpack:///./apps/settings/src/components/UserList/UserRowSimple.vue?bad0","webpack:///./apps/settings/src/components/UserList.vue?6b70","webpack:///./apps/settings/src/components/UserList/UserRow.vue?ad6a","webpack:///./apps/settings/src/components/UserList/UserRowSimple.vue?d051","webpack:///./apps/settings/src/views/Users.vue?d4fd","webpack:///./apps/settings/src/components/UserList/UserRowSimple.vue?49be"],"sourcesContent":["import { render, staticRenderFns } from \"./UserList.vue?vue&type=template&id=6cba3aca&\"\nimport script from \"./UserList.vue?vue&type=script&lang=js&\"\nexport * from \"./UserList.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\n/* hot reload */\nif (module.hot) {\n var api = require(\"/home/user/nextcloud/node_modules/vue-hot-reload-api/dist/index.js\")\n api.install(require('vue'))\n if (api.compatible) {\n module.hot.accept()\n if (!api.isRecorded('6cba3aca')) {\n api.createRecord('6cba3aca', component.options)\n } else {\n api.reload('6cba3aca', component.options)\n }\n module.hot.accept(\"./UserList.vue?vue&type=template&id=6cba3aca&\", function () {\n api.rerender('6cba3aca', {\n render: render,\n staticRenderFns: staticRenderFns\n })\n })\n }\n}\ncomponent.options.__file = \"apps/settings/src/components/UserList.vue\"\nexport default component.exports","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./UserList.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./UserList.vue?vue&type=script&lang=js&\"","export * from \"-!../../../../node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./UserList.vue?vue&type=template&id=6cba3aca&\"","import { render, staticRenderFns } from \"./UserRow.vue?vue&type=template&id=77960baa&\"\nimport script from \"./UserRow.vue?vue&type=script&lang=js&\"\nexport * from \"./UserRow.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\n/* hot reload */\nif (module.hot) {\n var api = require(\"/home/user/nextcloud/node_modules/vue-hot-reload-api/dist/index.js\")\n api.install(require('vue'))\n if (api.compatible) {\n module.hot.accept()\n if (!api.isRecorded('77960baa')) {\n api.createRecord('77960baa', component.options)\n } else {\n api.reload('77960baa', component.options)\n }\n module.hot.accept(\"./UserRow.vue?vue&type=template&id=77960baa&\", function () {\n api.rerender('77960baa', {\n render: render,\n staticRenderFns: staticRenderFns\n })\n })\n }\n}\ncomponent.options.__file = \"apps/settings/src/components/UserList/UserRow.vue\"\nexport default component.exports","import mod from \"-!../../../../../node_modules/babel-loader/lib/index.js!../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./UserRow.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../../node_modules/babel-loader/lib/index.js!../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./UserRow.vue?vue&type=script&lang=js&\"","export * from \"-!../../../../../node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./UserRow.vue?vue&type=template&id=77960baa&\"","import { render, staticRenderFns } from \"./UserRowSimple.vue?vue&type=template&id=ff154a08&scoped=true&\"\nimport script from \"./UserRowSimple.vue?vue&type=script&lang=js&\"\nexport * from \"./UserRowSimple.vue?vue&type=script&lang=js&\"\nimport style0 from \"./UserRowSimple.vue?vue&type=style&index=0&id=ff154a08&scoped=true&lang=css&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n \"ff154a08\",\n null\n \n)\n\n/* hot reload */\nif (module.hot) {\n var api = require(\"/home/user/nextcloud/node_modules/vue-hot-reload-api/dist/index.js\")\n api.install(require('vue'))\n if (api.compatible) {\n module.hot.accept()\n if (!api.isRecorded('ff154a08')) {\n api.createRecord('ff154a08', component.options)\n } else {\n api.reload('ff154a08', component.options)\n }\n module.hot.accept(\"./UserRowSimple.vue?vue&type=template&id=ff154a08&scoped=true&\", function () {\n api.rerender('ff154a08', {\n render: render,\n staticRenderFns: staticRenderFns\n })\n })\n }\n}\ncomponent.options.__file = \"apps/settings/src/components/UserList/UserRowSimple.vue\"\nexport default component.exports","import mod from \"-!../../../../../node_modules/babel-loader/lib/index.js!../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./UserRowSimple.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../../node_modules/babel-loader/lib/index.js!../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./UserRowSimple.vue?vue&type=script&lang=js&\"","import mod from \"-!../../../../../node_modules/vue-style-loader/index.js!../../../../../node_modules/css-loader/dist/cjs.js!../../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./UserRowSimple.vue?vue&type=style&index=0&id=ff154a08&scoped=true&lang=css&\"; export default mod; export * from \"-!../../../../../node_modules/vue-style-loader/index.js!../../../../../node_modules/css-loader/dist/cjs.js!../../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./UserRowSimple.vue?vue&type=style&index=0&id=ff154a08&scoped=true&lang=css&\"","export * from \"-!../../../../../node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./UserRowSimple.vue?vue&type=template&id=ff154a08&scoped=true&\"","function _typeof(obj) { if (typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; }; } return _typeof(obj); }\n\n/**\n * @copyright Copyright (c) 2019 John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license GNU AGPL version 3 or any later version\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\nexport default {\n props: {\n user: {\n type: Object,\n required: true\n },\n settings: {\n type: Object,\n default: function _default() {\n return {};\n }\n },\n groups: {\n type: Array,\n default: function _default() {\n return [];\n }\n },\n subAdminsGroups: {\n type: Array,\n default: function _default() {\n return [];\n }\n },\n quotaOptions: {\n type: Array,\n default: function _default() {\n return [];\n }\n },\n showConfig: {\n type: Object,\n default: function _default() {\n return {};\n }\n },\n languages: {\n type: Array,\n required: true\n },\n externalActions: {\n type: Array,\n default: function _default() {\n return [];\n }\n }\n },\n computed: {\n /* GROUPS MANAGEMENT */\n userGroups: function userGroups() {\n var _this = this;\n\n var userGroups = this.groups.filter(function (group) {\n return _this.user.groups.includes(group.id);\n });\n return userGroups;\n },\n userSubAdminsGroups: function userSubAdminsGroups() {\n var _this2 = this;\n\n var userSubAdminsGroups = this.subAdminsGroups.filter(function (group) {\n return _this2.user.subadmin.includes(group.id);\n });\n return userSubAdminsGroups;\n },\n availableGroups: function availableGroups() {\n var _this3 = this;\n\n return this.groups.map(function (group) {\n // clone object because we don't want\n // to edit the original groups\n var groupClone = Object.assign({}, group); // two settings here:\n // 1. user NOT in group but no permission to add\n // 2. user is in group but no permission to remove\n\n groupClone.$isDisabled = group.canAdd === false && !_this3.user.groups.includes(group.id) || group.canRemove === false && _this3.user.groups.includes(group.id);\n return groupClone;\n });\n },\n\n /* QUOTA MANAGEMENT */\n usedSpace: function usedSpace() {\n if (this.user.quota.used) {\n return t('settings', '{size} used', {\n size: OC.Util.humanFileSize(this.user.quota.used)\n });\n }\n\n return t('settings', '{size} used', {\n size: OC.Util.humanFileSize(0)\n });\n },\n usedQuota: function usedQuota() {\n var quota = this.user.quota.quota;\n\n if (quota > 0) {\n quota = Math.min(100, Math.round(this.user.quota.used / quota * 100));\n } else {\n var usedInGB = this.user.quota.used / (10 * Math.pow(2, 30)); // asymptotic curve approaching 50% at 10GB to visualize used stace with infinite quota\n\n quota = 95 * (1 - 1 / (usedInGB + 1));\n }\n\n return isNaN(quota) ? 0 : quota;\n },\n // Mapping saved values to objects\n userQuota: function userQuota() {\n if (this.user.quota.quota >= 0) {\n // if value is valid, let's map the quotaOptions or return custom quota\n var humanQuota = OC.Util.humanFileSize(this.user.quota.quota);\n var userQuota = this.quotaOptions.find(function (quota) {\n return quota.id === humanQuota;\n });\n return userQuota || {\n id: humanQuota,\n label: humanQuota\n };\n } else if (this.user.quota.quota === 'default') {\n // default quota is replaced by the proper value on load\n return this.quotaOptions[0];\n }\n\n return this.quotaOptions[1]; // unlimited\n },\n\n /* PASSWORD POLICY? */\n minPasswordLength: function minPasswordLength() {\n return this.$store.getters.getPasswordPolicyMinLength;\n },\n\n /* LANGUAGE */\n userLanguage: function userLanguage() {\n var _this4 = this;\n\n var availableLanguages = this.languages[0].languages.concat(this.languages[1].languages);\n var userLang = availableLanguages.find(function (lang) {\n return lang.code === _this4.user.language;\n });\n\n if (_typeof(userLang) !== 'object' && this.user.language !== '') {\n return {\n code: this.user.language,\n name: this.user.language\n };\n } else if (this.user.language === '') {\n return false;\n }\n\n return userLang;\n },\n\n /* LAST LOGIN */\n userLastLoginTooltip: function userLastLoginTooltip() {\n if (this.user.lastLogin > 0) {\n return OC.Util.formatDate(this.user.lastLogin);\n }\n\n return '';\n },\n userLastLogin: function userLastLogin() {\n if (this.user.lastLogin > 0) {\n return OC.Util.relativeModifiedDate(this.user.lastLogin);\n }\n\n return t('settings', 'Never');\n }\n },\n methods: {\n /**\n * Generate avatar url\n *\n * @param {string} user The user name\n * @param {int} size Size integer, default 32\n * @returns {string}\n */\n generateAvatar: function generateAvatar(user) {\n var size = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 32;\n return OC.generateUrl('/avatar/{user}/{size}?v={version}', {\n user: user,\n size: size,\n version: oc_userconfig.avatar.version\n });\n }\n }\n};","import { render, staticRenderFns } from \"./Users.vue?vue&type=template&id=889b7562&\"\nimport script from \"./Users.vue?vue&type=script&lang=js&\"\nexport * from \"./Users.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\n/* hot reload */\nif (module.hot) {\n var api = require(\"/home/user/nextcloud/node_modules/vue-hot-reload-api/dist/index.js\")\n api.install(require('vue'))\n if (api.compatible) {\n module.hot.accept()\n if (!api.isRecorded('889b7562')) {\n api.createRecord('889b7562', component.options)\n } else {\n api.reload('889b7562', component.options)\n }\n module.hot.accept(\"./Users.vue?vue&type=template&id=889b7562&\", function () {\n api.rerender('889b7562', {\n render: render,\n staticRenderFns: staticRenderFns\n })\n })\n }\n}\ncomponent.options.__file = \"apps/settings/src/views/Users.vue\"\nexport default component.exports","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./Users.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./Users.vue?vue&type=script&lang=js&\"","export * from \"-!../../../../node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./Users.vue?vue&type=template&id=889b7562&\"","//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\nimport userRow from './UserList/UserRow';\nimport { Multiselect, Actions, ActionButton } from 'nextcloud-vue';\nimport InfiniteLoading from 'vue-infinite-loading';\nimport Vue from 'vue';\nvar unlimitedQuota = {\n id: 'none',\n label: t('settings', 'Unlimited')\n};\nvar defaultQuota = {\n id: 'default',\n label: t('settings', 'Default quota')\n};\nvar newUser = {\n id: '',\n displayName: '',\n password: '',\n mailAddress: '',\n groups: [],\n subAdminsGroups: [],\n quota: defaultQuota,\n language: {\n code: 'en',\n name: t('settings', 'Default language')\n }\n};\nexport default {\n name: 'UserList',\n components: {\n userRow: userRow,\n Multiselect: Multiselect,\n InfiniteLoading: InfiniteLoading,\n Actions: Actions,\n ActionButton: ActionButton\n },\n props: {\n users: {\n type: Array,\n default: function _default() {\n return [];\n }\n },\n showConfig: {\n type: Object,\n required: true\n },\n selectedGroup: {\n type: String,\n default: null\n },\n externalActions: {\n type: Array,\n default: function _default() {\n return [];\n }\n }\n },\n data: function data() {\n return {\n unlimitedQuota: unlimitedQuota,\n defaultQuota: defaultQuota,\n loading: {\n all: false,\n groups: false\n },\n scrolled: false,\n searchQuery: '',\n newUser: Object.assign({}, newUser)\n };\n },\n computed: {\n settings: function settings() {\n return this.$store.getters.getServerData;\n },\n filteredUsers: function filteredUsers() {\n if (this.selectedGroup === 'disabled') {\n return this.users.filter(function (user) {\n return user.enabled === false;\n });\n }\n\n if (!this.settings.isAdmin) {\n // we don't want subadmins to edit themselves\n return this.users.filter(function (user) {\n return user.enabled !== false && user.id !== OC.getCurrentUser().uid;\n });\n }\n\n return this.users.filter(function (user) {\n return user.enabled !== false;\n });\n },\n groups: function groups() {\n // data provided php side + remove the disabled group\n return this.$store.getters.getGroups.filter(function (group) {\n return group.id !== 'disabled';\n }).sort(function (a, b) {\n return a.name.localeCompare(b.name);\n });\n },\n canAddGroups: function canAddGroups() {\n // disabled if no permission to add new users to group\n return this.groups.map(function (group) {\n // clone object because we don't want\n // to edit the original groups\n group = Object.assign({}, group);\n group.$isDisabled = group.canAdd === false;\n return group;\n });\n },\n subAdminsGroups: function subAdminsGroups() {\n // data provided php side\n return this.$store.getters.getSubadminGroups;\n },\n quotaOptions: function quotaOptions() {\n // convert the preset array into objects\n var quotaPreset = this.settings.quotaPreset.reduce(function (acc, cur) {\n return acc.concat({\n id: cur,\n label: cur\n });\n }, []); // add default presets\n\n quotaPreset.unshift(this.unlimitedQuota);\n quotaPreset.unshift(this.defaultQuota);\n return quotaPreset;\n },\n minPasswordLength: function minPasswordLength() {\n return this.$store.getters.getPasswordPolicyMinLength;\n },\n usersOffset: function usersOffset() {\n return this.$store.getters.getUsersOffset;\n },\n usersLimit: function usersLimit() {\n return this.$store.getters.getUsersLimit;\n },\n usersCount: function usersCount() {\n return this.users.length;\n },\n\n /* LANGUAGES */\n languages: function languages() {\n return [{\n label: t('settings', 'Common languages'),\n languages: this.settings.languages.commonlanguages\n }, {\n label: t('settings', 'All languages'),\n languages: this.settings.languages.languages\n }];\n }\n },\n watch: {\n // watch url change and group select\n selectedGroup: function selectedGroup(val, old) {\n // if selected is the disabled group but it's empty\n this.redirectIfDisabled();\n this.$store.commit('resetUsers');\n this.$refs.infiniteLoading.stateChanger.reset();\n this.setNewUserDefaultGroup(val);\n },\n // make sure the infiniteLoading state is changed if we manually\n // add/remove data from the store\n usersCount: function usersCount(val, old) {\n // deleting the last user, reset the list\n if (val === 0 && old === 1) {\n this.$refs.infiniteLoading.stateChanger.reset(); // adding the first user, warn the infiniteLoader that\n // the list is not empty anymore (we don't fetch the newly\n // added user as we already have all the info we need)\n } else if (val === 1 && old === 0) {\n this.$refs.infiniteLoading.stateChanger.loaded();\n }\n }\n },\n mounted: function mounted() {\n if (!this.settings.canChangePassword) {\n OC.Notification.showTemporary(t('settings', 'Password change is disabled because the master key is disabled'));\n }\n /**\n * Reset and init new user form\n */\n\n\n this.resetForm();\n /**\n * Register search\n */\n\n this.userSearch = new OCA.Search(this.search, this.resetSearch);\n /**\n * If disabled group but empty, redirect\n */\n\n this.redirectIfDisabled();\n },\n methods: {\n onScroll: function onScroll(event) {\n this.scrolled = event.target.scrollTo > 0;\n },\n\n /**\n * Validate quota string to make sure it's a valid human file size\n *\n * @param {string} quota Quota in readable format '5 GB'\n * @returns {Object}\n */\n validateQuota: function validateQuota(quota) {\n // only used for new presets sent through @Tag\n var validQuota = OC.Util.computerFileSize(quota);\n\n if (validQuota !== null && validQuota >= 0) {\n // unify format output\n quota = OC.Util.humanFileSize(OC.Util.computerFileSize(quota));\n this.newUser.quota = {\n id: quota,\n label: quota\n };\n return this.newUser.quota;\n } // Default is unlimited\n\n\n this.newUser.quota = this.quotaOptions[0];\n return this.quotaOptions[0];\n },\n infiniteHandler: function infiniteHandler($state) {\n this.$store.dispatch('getUsers', {\n offset: this.usersOffset,\n limit: this.usersLimit,\n group: this.selectedGroup !== 'disabled' ? this.selectedGroup : '',\n search: this.searchQuery\n }).then(function (response) {\n response ? $state.loaded() : $state.complete();\n });\n },\n\n /* SEARCH */\n search: function search(query) {\n this.searchQuery = query;\n this.$store.commit('resetUsers');\n this.$refs.infiniteLoading.stateChanger.reset();\n },\n resetSearch: function resetSearch() {\n this.search('');\n },\n resetForm: function resetForm() {\n // revert form to original state\n this.newUser = Object.assign({}, newUser);\n /**\n * Init default language from server data. The use of this.settings\n * requires a computed variable, which break the v-model binding of the form,\n * this is a much easier solution than getter and setter on a computed var\n */\n\n if (this.settings.defaultLanguage) {\n Vue.set(this.newUser.language, 'code', this.settings.defaultLanguage);\n }\n /**\n * In case the user directly loaded the user list within a group\n * the watch won't be triggered. We need to initialize it.\n */\n\n\n this.setNewUserDefaultGroup(this.selectedGroup);\n this.loading.all = false;\n },\n createUser: function createUser() {\n var _this = this;\n\n this.loading.all = true;\n this.$store.dispatch('addUser', {\n userid: this.newUser.id,\n password: this.newUser.password,\n displayName: this.newUser.displayName,\n email: this.newUser.mailAddress,\n groups: this.newUser.groups.map(function (group) {\n return group.id;\n }),\n subadmin: this.newUser.subAdminsGroups.map(function (group) {\n return group.id;\n }),\n quota: this.newUser.quota.id,\n language: this.newUser.language.code\n }).then(function () {\n _this.resetForm();\n\n _this.$refs.newusername.focus();\n }).catch(function (error) {\n _this.loading.all = false;\n\n if (error.response && error.response.data && error.response.data.ocs && error.response.data.ocs.meta) {\n var statuscode = error.response.data.ocs.meta.statuscode;\n\n if (statuscode === 102) {\n // wrong username\n _this.$refs.newusername.focus();\n } else if (statuscode === 107) {\n // wrong password\n _this.$refs.newuserpassword.focus();\n }\n }\n });\n },\n setNewUserDefaultGroup: function setNewUserDefaultGroup(value) {\n if (value && value.length > 0) {\n // setting new user default group to the current selected one\n var currentGroup = this.groups.find(function (group) {\n return group.id === value;\n });\n\n if (currentGroup) {\n this.newUser.groups = [currentGroup];\n return;\n }\n } // fallback, empty selected group\n\n\n this.newUser.groups = [];\n },\n\n /**\n * Create a new group\n *\n * @param {string} gid Group id\n * @returns {Promise}\n */\n createGroup: function createGroup(gid) {\n var _this2 = this;\n\n this.loading.groups = true;\n this.$store.dispatch('addGroup', gid).then(function (group) {\n _this2.newUser.groups.push(_this2.groups.find(function (group) {\n return group.id === gid;\n }));\n\n _this2.loading.groups = false;\n }).catch(function () {\n _this2.loading.groups = false;\n });\n return this.$store.getters.getGroups[this.groups.length];\n },\n\n /**\n * If the selected group is the disabled group but the count is 0\n * redirect to the all users page.\n * * we only check for 0 because we don't have the count on ldap\n * * and we therefore set the usercount to -1 in this specific case\n */\n redirectIfDisabled: function redirectIfDisabled() {\n var allGroups = this.$store.getters.getGroups;\n\n if (this.selectedGroup === 'disabled' && allGroups.findIndex(function (group) {\n return group.id === 'disabled' && group.usercount === 0;\n }) > -1) {\n // disabled group is empty, redirection to all users\n this.$router.push({\n name: 'users'\n });\n this.$refs.infiniteLoading.stateChanger.reset();\n }\n },\n onClose: function onClose() {\n this.showConfig.showNewUserForm = false;\n }\n }\n};","function asyncGeneratorStep(gen, resolve, reject, _next, _throw, key, arg) { try { var info = gen[key](arg); var value = info.value; } catch (error) { reject(error); return; } if (info.done) { resolve(value); } else { Promise.resolve(value).then(_next, _throw); } }\n\nfunction _asyncToGenerator(fn) { return function () { var self = this, args = arguments; return new Promise(function (resolve, reject) { var gen = fn.apply(self, args); function _next(value) { asyncGeneratorStep(gen, resolve, reject, _next, _throw, \"next\", value); } function _throw(err) { asyncGeneratorStep(gen, resolve, reject, _next, _throw, \"throw\", err); } _next(undefined); }); }; }\n\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\nimport ClickOutside from 'vue-click-outside';\nimport Vue from 'vue';\nimport VTooltip from 'v-tooltip';\nimport { PopoverMenu, Multiselect, Actions, ActionButton } from 'nextcloud-vue';\nimport UserRowSimple from './UserRowSimple';\nimport UserRowMixin from '../../mixins/UserRowMixin';\nVue.use(VTooltip);\nexport default {\n name: 'UserRow',\n components: {\n UserRowSimple: UserRowSimple,\n PopoverMenu: PopoverMenu,\n Actions: Actions,\n ActionButton: ActionButton,\n Multiselect: Multiselect\n },\n directives: {\n ClickOutside: ClickOutside\n },\n mixins: [UserRowMixin],\n props: {\n user: {\n type: Object,\n required: true\n },\n settings: {\n type: Object,\n default: function _default() {\n return {};\n }\n },\n groups: {\n type: Array,\n default: function _default() {\n return [];\n }\n },\n subAdminsGroups: {\n type: Array,\n default: function _default() {\n return [];\n }\n },\n quotaOptions: {\n type: Array,\n default: function _default() {\n return [];\n }\n },\n showConfig: {\n type: Object,\n default: function _default() {\n return {};\n }\n },\n languages: {\n type: Array,\n required: true\n },\n externalActions: {\n type: Array,\n default: function _default() {\n return [];\n }\n }\n },\n data: function data() {\n return {\n rand: parseInt(Math.random() * 1000),\n openedMenu: false,\n feedbackMessage: '',\n editing: false,\n loading: {\n all: false,\n displayName: false,\n password: false,\n mailAddress: false,\n groups: false,\n subadmins: false,\n quota: false,\n delete: false,\n disable: false,\n languages: false,\n wipe: false\n }\n };\n },\n computed: {\n /* USER POPOVERMENU ACTIONS */\n userActions: function userActions() {\n var actions = [{\n icon: 'icon-delete',\n text: t('settings', 'Delete user'),\n action: this.deleteUser\n }, {\n icon: 'icon-delete',\n text: t('settings', 'Wipe all devices'),\n action: this.wipeUserDevices\n }, {\n icon: this.user.enabled ? 'icon-close' : 'icon-add',\n text: this.user.enabled ? t('settings', 'Disable user') : t('settings', 'Enable user'),\n action: this.enableDisableUser\n }];\n\n if (this.user.email !== null && this.user.email !== '') {\n actions.push({\n icon: 'icon-mail',\n text: t('settings', 'Resend welcome email'),\n action: this.sendWelcomeMail\n });\n }\n\n return actions.concat(this.externalActions);\n }\n },\n methods: {\n /* MENU HANDLING */\n toggleMenu: function toggleMenu() {\n this.openedMenu = !this.openedMenu;\n },\n hideMenu: function hideMenu() {\n this.openedMenu = false;\n },\n wipeUserDevices: function wipeUserDevices() {\n var _this = this;\n\n var userid = this.user.id;\n OC.dialogs.confirmDestructive(t('settings', 'In case of lost device or exiting the organization, this can remotely wipe the Nextcloud data from all devices associated with {userid}. Only works if the devices are connected to the internet.', {\n userid: userid\n }), t('settings', 'Remote wipe of devices'), {\n type: OC.dialogs.YES_NO_BUTTONS,\n confirm: t('settings', 'Wipe {userid}\\'s devices', {\n userid: userid\n }),\n confirmClasses: 'error',\n cancel: t('settings', 'Cancel')\n }, function (result) {\n if (result) {\n _this.loading.wipe = true;\n _this.loading.all = true;\n\n _this.$store.dispatch('wipeUserDevices', userid).then(function () {\n _this.loading.wipe = false;\n _this.loading.all = false;\n });\n }\n }, true);\n },\n deleteUser: function deleteUser() {\n var _this2 = this;\n\n var userid = this.user.id;\n OC.dialogs.confirmDestructive(t('settings', 'Fully delete {userid}\\'s account including all their personal files, app data, etc.', {\n userid: userid\n }), t('settings', 'Account deletion'), {\n type: OC.dialogs.YES_NO_BUTTONS,\n confirm: t('settings', 'Delete {userid}\\'s account', {\n userid: userid\n }),\n confirmClasses: 'error',\n cancel: t('settings', 'Cancel')\n }, function (result) {\n if (result) {\n _this2.loading.delete = true;\n _this2.loading.all = true;\n return _this2.$store.dispatch('deleteUser', userid).then(function () {\n _this2.loading.delete = false;\n _this2.loading.all = false;\n });\n }\n }, true);\n },\n enableDisableUser: function enableDisableUser() {\n var _this3 = this;\n\n this.loading.delete = true;\n this.loading.all = true;\n var userid = this.user.id;\n var enabled = !this.user.enabled;\n return this.$store.dispatch('enableDisableUser', {\n userid: userid,\n enabled: enabled\n }).then(function () {\n _this3.loading.delete = false;\n _this3.loading.all = false;\n });\n },\n\n /**\n \t * Set user displayName\n \t *\n \t * @param {string} displayName The display name\n \t */\n updateDisplayName: function updateDisplayName() {\n var _this4 = this;\n\n var displayName = this.$refs.displayName.value;\n this.loading.displayName = true;\n this.$store.dispatch('setUserData', {\n userid: this.user.id,\n key: 'displayname',\n value: displayName\n }).then(function () {\n _this4.loading.displayName = false;\n _this4.$refs.displayName.value = displayName;\n });\n },\n\n /**\n \t * Set user password\n \t *\n \t * @param {string} password The email adress\n \t */\n updatePassword: function updatePassword() {\n var _this5 = this;\n\n var password = this.$refs.password.value;\n this.loading.password = true;\n this.$store.dispatch('setUserData', {\n userid: this.user.id,\n key: 'password',\n value: password\n }).then(function () {\n _this5.loading.password = false;\n _this5.$refs.password.value = ''; // empty & show placeholder\n });\n },\n\n /**\n \t * Set user mailAddress\n \t *\n \t * @param {string} mailAddress The email adress\n \t */\n updateEmail: function updateEmail() {\n var _this6 = this;\n\n var mailAddress = this.$refs.mailAddress.value;\n this.loading.mailAddress = true;\n this.$store.dispatch('setUserData', {\n userid: this.user.id,\n key: 'email',\n value: mailAddress\n }).then(function () {\n _this6.loading.mailAddress = false;\n _this6.$refs.mailAddress.value = mailAddress;\n });\n },\n\n /**\n \t * Create a new group and add user to it\n \t *\n \t * @param {string} gid Group id\n \t */\n createGroup: function () {\n var _createGroup = _asyncToGenerator(\n /*#__PURE__*/\n regeneratorRuntime.mark(function _callee(gid) {\n var userid;\n return regeneratorRuntime.wrap(function _callee$(_context) {\n while (1) {\n switch (_context.prev = _context.next) {\n case 0:\n this.loading = {\n groups: true,\n subadmins: true\n };\n _context.prev = 1;\n _context.next = 4;\n return this.$store.dispatch('addGroup', gid);\n\n case 4:\n userid = this.user.id;\n _context.next = 7;\n return this.$store.dispatch('addUserGroup', {\n userid: userid,\n gid: gid\n });\n\n case 7:\n _context.next = 12;\n break;\n\n case 9:\n _context.prev = 9;\n _context.t0 = _context[\"catch\"](1);\n console.error(_context.t0);\n\n case 12:\n _context.prev = 12;\n this.loading = {\n groups: false,\n subadmins: false\n };\n return _context.finish(12);\n\n case 15:\n return _context.abrupt(\"return\", this.$store.getters.getGroups[this.groups.length]);\n\n case 16:\n case \"end\":\n return _context.stop();\n }\n }\n }, _callee, this, [[1, 9, 12, 15]]);\n }));\n\n function createGroup(_x) {\n return _createGroup.apply(this, arguments);\n }\n\n return createGroup;\n }(),\n\n /**\n \t * Add user to group\n \t *\n \t * @param {object} group Group object\n \t */\n addUserGroup: function () {\n var _addUserGroup = _asyncToGenerator(\n /*#__PURE__*/\n regeneratorRuntime.mark(function _callee2(group) {\n var userid, gid;\n return regeneratorRuntime.wrap(function _callee2$(_context2) {\n while (1) {\n switch (_context2.prev = _context2.next) {\n case 0:\n if (!(group.canAdd === false)) {\n _context2.next = 2;\n break;\n }\n\n return _context2.abrupt(\"return\", false);\n\n case 2:\n this.loading.groups = true;\n userid = this.user.id;\n gid = group.id;\n _context2.prev = 5;\n _context2.next = 8;\n return this.$store.dispatch('addUserGroup', {\n userid: userid,\n gid: gid\n });\n\n case 8:\n _context2.next = 13;\n break;\n\n case 10:\n _context2.prev = 10;\n _context2.t0 = _context2[\"catch\"](5);\n console.error(_context2.t0);\n\n case 13:\n _context2.prev = 13;\n this.loading.groups = false;\n return _context2.finish(13);\n\n case 16:\n case \"end\":\n return _context2.stop();\n }\n }\n }, _callee2, this, [[5, 10, 13, 16]]);\n }));\n\n function addUserGroup(_x2) {\n return _addUserGroup.apply(this, arguments);\n }\n\n return addUserGroup;\n }(),\n\n /**\n \t * Remove user from group\n \t *\n \t * @param {object} group Group object\n \t */\n removeUserGroup: function () {\n var _removeUserGroup = _asyncToGenerator(\n /*#__PURE__*/\n regeneratorRuntime.mark(function _callee3(group) {\n var userid, gid;\n return regeneratorRuntime.wrap(function _callee3$(_context3) {\n while (1) {\n switch (_context3.prev = _context3.next) {\n case 0:\n if (!(group.canRemove === false)) {\n _context3.next = 2;\n break;\n }\n\n return _context3.abrupt(\"return\", false);\n\n case 2:\n this.loading.groups = true;\n userid = this.user.id;\n gid = group.id;\n _context3.prev = 5;\n _context3.next = 8;\n return this.$store.dispatch('removeUserGroup', {\n userid: userid,\n gid: gid\n });\n\n case 8:\n this.loading.groups = false; // remove user from current list if current list is the removed group\n\n if (this.$route.params.selectedGroup === gid) {\n this.$store.commit('deleteUser', userid);\n }\n\n _context3.next = 15;\n break;\n\n case 12:\n _context3.prev = 12;\n _context3.t0 = _context3[\"catch\"](5);\n this.loading.groups = false;\n\n case 15:\n case \"end\":\n return _context3.stop();\n }\n }\n }, _callee3, this, [[5, 12]]);\n }));\n\n function removeUserGroup(_x3) {\n return _removeUserGroup.apply(this, arguments);\n }\n\n return removeUserGroup;\n }(),\n\n /**\n \t * Add user to group\n \t *\n \t * @param {object} group Group object\n \t */\n addUserSubAdmin: function () {\n var _addUserSubAdmin = _asyncToGenerator(\n /*#__PURE__*/\n regeneratorRuntime.mark(function _callee4(group) {\n var userid, gid;\n return regeneratorRuntime.wrap(function _callee4$(_context4) {\n while (1) {\n switch (_context4.prev = _context4.next) {\n case 0:\n this.loading.subadmins = true;\n userid = this.user.id;\n gid = group.id;\n _context4.prev = 3;\n _context4.next = 6;\n return this.$store.dispatch('addUserSubAdmin', {\n userid: userid,\n gid: gid\n });\n\n case 6:\n this.loading.subadmins = false;\n _context4.next = 12;\n break;\n\n case 9:\n _context4.prev = 9;\n _context4.t0 = _context4[\"catch\"](3);\n console.error(_context4.t0);\n\n case 12:\n case \"end\":\n return _context4.stop();\n }\n }\n }, _callee4, this, [[3, 9]]);\n }));\n\n function addUserSubAdmin(_x4) {\n return _addUserSubAdmin.apply(this, arguments);\n }\n\n return addUserSubAdmin;\n }(),\n\n /**\n \t * Remove user from group\n \t *\n \t * @param {object} group Group object\n \t */\n removeUserSubAdmin: function () {\n var _removeUserSubAdmin = _asyncToGenerator(\n /*#__PURE__*/\n regeneratorRuntime.mark(function _callee5(group) {\n var userid, gid;\n return regeneratorRuntime.wrap(function _callee5$(_context5) {\n while (1) {\n switch (_context5.prev = _context5.next) {\n case 0:\n this.loading.subadmins = true;\n userid = this.user.id;\n gid = group.id;\n _context5.prev = 3;\n _context5.next = 6;\n return this.$store.dispatch('removeUserSubAdmin', {\n userid: userid,\n gid: gid\n });\n\n case 6:\n _context5.next = 11;\n break;\n\n case 8:\n _context5.prev = 8;\n _context5.t0 = _context5[\"catch\"](3);\n console.error(_context5.t0);\n\n case 11:\n _context5.prev = 11;\n this.loading.subadmins = false;\n return _context5.finish(11);\n\n case 14:\n case \"end\":\n return _context5.stop();\n }\n }\n }, _callee5, this, [[3, 8, 11, 14]]);\n }));\n\n function removeUserSubAdmin(_x5) {\n return _removeUserSubAdmin.apply(this, arguments);\n }\n\n return removeUserSubAdmin;\n }(),\n\n /**\n \t * Dispatch quota set request\n \t *\n \t * @param {string|Object} quota Quota in readable format '5 GB' or Object {id: '5 GB', label: '5GB'}\n \t * @returns {string}\n \t */\n setUserQuota: function () {\n var _setUserQuota = _asyncToGenerator(\n /*#__PURE__*/\n regeneratorRuntime.mark(function _callee6() {\n var quota,\n _args6 = arguments;\n return regeneratorRuntime.wrap(function _callee6$(_context6) {\n while (1) {\n switch (_context6.prev = _context6.next) {\n case 0:\n quota = _args6.length > 0 && _args6[0] !== undefined ? _args6[0] : 'none';\n this.loading.quota = true; // ensure we only send the preset id\n\n quota = quota.id ? quota.id : quota;\n _context6.prev = 3;\n _context6.next = 6;\n return this.$store.dispatch('setUserData', {\n userid: this.user.id,\n key: 'quota',\n value: quota\n });\n\n case 6:\n _context6.next = 11;\n break;\n\n case 8:\n _context6.prev = 8;\n _context6.t0 = _context6[\"catch\"](3);\n console.error(_context6.t0);\n\n case 11:\n _context6.prev = 11;\n this.loading.quota = false;\n return _context6.finish(11);\n\n case 14:\n return _context6.abrupt(\"return\", quota);\n\n case 15:\n case \"end\":\n return _context6.stop();\n }\n }\n }, _callee6, this, [[3, 8, 11, 14]]);\n }));\n\n function setUserQuota() {\n return _setUserQuota.apply(this, arguments);\n }\n\n return setUserQuota;\n }(),\n\n /**\n \t * Validate quota string to make sure it's a valid human file size\n \t *\n \t * @param {string} quota Quota in readable format '5 GB'\n \t * @returns {Promise|boolean}\n \t */\n validateQuota: function validateQuota(quota) {\n // only used for new presets sent through @Tag\n var validQuota = OC.Util.computerFileSize(quota);\n\n if (validQuota !== null && validQuota >= 0) {\n // unify format output\n return this.setUserQuota(OC.Util.humanFileSize(OC.Util.computerFileSize(quota)));\n } // if no valid do not change\n\n\n return false;\n },\n\n /**\n \t * Dispatch language set request\n \t *\n \t * @param {Object} lang language object {code:'en', name:'English'}\n \t * @returns {Object}\n \t */\n setUserLanguage: function () {\n var _setUserLanguage = _asyncToGenerator(\n /*#__PURE__*/\n regeneratorRuntime.mark(function _callee7(lang) {\n return regeneratorRuntime.wrap(function _callee7$(_context7) {\n while (1) {\n switch (_context7.prev = _context7.next) {\n case 0:\n this.loading.languages = true; // ensure we only send the preset id\n\n _context7.prev = 1;\n _context7.next = 4;\n return this.$store.dispatch('setUserData', {\n userid: this.user.id,\n key: 'language',\n value: lang.code\n });\n\n case 4:\n _context7.next = 9;\n break;\n\n case 6:\n _context7.prev = 6;\n _context7.t0 = _context7[\"catch\"](1);\n console.error(_context7.t0);\n\n case 9:\n _context7.prev = 9;\n this.loading.languages = false;\n return _context7.finish(9);\n\n case 12:\n return _context7.abrupt(\"return\", lang);\n\n case 13:\n case \"end\":\n return _context7.stop();\n }\n }\n }, _callee7, this, [[1, 6, 9, 12]]);\n }));\n\n function setUserLanguage(_x6) {\n return _setUserLanguage.apply(this, arguments);\n }\n\n return setUserLanguage;\n }(),\n\n /**\n \t * Dispatch new welcome mail request\n \t */\n sendWelcomeMail: function sendWelcomeMail() {\n var _this7 = this;\n\n this.loading.all = true;\n this.$store.dispatch('sendWelcomeMail', this.user.id).then(function (success) {\n if (success) {\n // Show feedback to indicate the success\n _this7.feedbackMessage = t('setting', 'Welcome mail sent!');\n setTimeout(function () {\n _this7.feedbackMessage = '';\n }, 2000);\n }\n\n _this7.loading.all = false;\n });\n }\n }\n};","//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\nimport { PopoverMenu, Actions, ActionButton } from 'nextcloud-vue';\nimport ClickOutside from 'vue-click-outside';\nimport { getCurrentUser } from '@nextcloud/auth';\nimport UserRowMixin from '../../mixins/UserRowMixin';\nexport default {\n name: 'UserRowSimple',\n components: {\n PopoverMenu: PopoverMenu,\n ActionButton: ActionButton,\n Actions: Actions\n },\n directives: {\n ClickOutside: ClickOutside\n },\n mixins: [UserRowMixin],\n props: {\n user: {\n type: Object,\n required: true\n },\n loading: {\n type: Object,\n required: true\n },\n showConfig: {\n type: Object,\n required: true\n },\n userActions: {\n type: Array,\n required: true\n },\n openedMenu: {\n type: Boolean,\n required: true\n },\n feedbackMessage: {\n type: String,\n required: true\n },\n subAdminsGroups: {\n type: Array,\n required: true\n },\n settings: {\n type: Object,\n required: true\n }\n },\n computed: {\n userGroupsLabels: function userGroupsLabels() {\n return this.userGroups.map(function (group) {\n return group.name;\n }).join(', ');\n },\n userSubAdminsGroupsLabels: function userSubAdminsGroupsLabels() {\n return this.userSubAdminsGroups.map(function (group) {\n return group.name;\n }).join(', ');\n },\n usedSpace: function usedSpace() {\n if (this.user.quota.used) {\n return t('settings', '{size} used', {\n size: OC.Util.humanFileSize(this.user.quota.used)\n });\n }\n\n return t('settings', '{size} used', {\n size: OC.Util.humanFileSize(0)\n });\n },\n canEdit: function canEdit() {\n return getCurrentUser().uid !== this.user.id && this.user.id !== 'admin';\n }\n },\n methods: {\n hideMenu: function hideMenu() {\n this.$emit('hideMenu');\n },\n toggleEdit: function toggleEdit() {\n this.$emit('update:editing', true);\n }\n }\n};","function _typeof(obj) { if (typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; }; } return _typeof(obj); }\n\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\nimport Vue from 'vue';\nimport VueLocalStorage from 'vue-localstorage';\nimport { AppContent, AppNavigation, AppNavigationItem, AppNavigationNew, AppNavigationSettings, Content, Multiselect } from 'nextcloud-vue';\nimport UserList from '../components/UserList';\nVue.use(VueLocalStorage);\nexport default {\n name: 'Users',\n components: {\n AppContent: AppContent,\n AppNavigation: AppNavigation,\n AppNavigationItem: AppNavigationItem,\n AppNavigationNew: AppNavigationNew,\n AppNavigationSettings: AppNavigationSettings,\n Content: Content,\n UserList: UserList,\n Multiselect: Multiselect\n },\n props: {\n selectedGroup: {\n type: String,\n default: null\n }\n },\n data: function data() {\n return {\n // default quota is set to unlimited\n unlimitedQuota: {\n id: 'none',\n label: t('settings', 'Unlimited')\n },\n // temporary value used for multiselect change\n selectedQuota: false,\n externalActions: [],\n showAddGroupEntry: false,\n loadingAddGroup: false,\n showConfig: {\n showStoragePath: false,\n showUserBackend: false,\n showLastLogin: false,\n showNewUserForm: false,\n showLanguages: false\n }\n };\n },\n computed: {\n users: function users() {\n return this.$store.getters.getUsers;\n },\n usersOffset: function usersOffset() {\n return this.$store.getters.getUsersOffset;\n },\n usersLimit: function usersLimit() {\n return this.$store.getters.getUsersLimit;\n },\n // Local settings\n showLanguages: {\n get: function get() {\n return this.getLocalstorage('showLanguages');\n },\n set: function set(status) {\n this.setLocalStorage('showLanguages', status);\n }\n },\n showLastLogin: {\n get: function get() {\n return this.getLocalstorage('showLastLogin');\n },\n set: function set(status) {\n this.setLocalStorage('showLastLogin', status);\n }\n },\n showUserBackend: {\n get: function get() {\n return this.getLocalstorage('showUserBackend');\n },\n set: function set(status) {\n this.setLocalStorage('showUserBackend', status);\n }\n },\n showStoragePath: {\n get: function get() {\n return this.getLocalstorage('showStoragePath');\n },\n set: function set(status) {\n this.setLocalStorage('showStoragePath', status);\n }\n },\n userCount: function userCount() {\n return this.$store.getters.getUserCount;\n },\n settings: function settings() {\n return this.$store.getters.getServerData;\n },\n // default quota\n quotaOptions: function quotaOptions() {\n // convert the preset array into objects\n var quotaPreset = this.settings.quotaPreset.reduce(function (acc, cur) {\n return acc.concat({\n id: cur,\n label: cur\n });\n }, []); // add default presets\n\n quotaPreset.unshift(this.unlimitedQuota);\n return quotaPreset;\n },\n // mapping saved values to objects\n defaultQuota: {\n get: function get() {\n if (this.selectedQuota !== false) {\n return this.selectedQuota;\n }\n\n if (this.settings.defaultQuota !== this.unlimitedQuota.id && OC.Util.computerFileSize(this.settings.defaultQuota) >= 0) {\n // if value is valid, let's map the quotaOptions or return custom quota\n return {\n id: this.settings.defaultQuota,\n label: this.settings.defaultQuota\n };\n }\n\n return this.unlimitedQuota; // unlimited\n },\n set: function set(quota) {\n this.selectedQuota = quota;\n }\n },\n // BUILD APP NAVIGATION MENU OBJECT\n menu: function menu() {\n var _this = this;\n\n // Data provided php side\n var self = this;\n var groups = this.$store.getters.getGroups;\n groups = Array.isArray(groups) ? groups : []; // Map groups\n\n groups = groups.map(function (group) {\n var item = {};\n item.id = group.id.replace(' ', '_');\n item.key = item.id;\n item.utils = {}; // router link to\n\n item.router = {\n name: 'group',\n params: {\n selectedGroup: group.id\n }\n }; // group name\n\n item.text = group.name;\n item.title = group.name; // users count for all groups\n\n if (group.usercount - group.disabled > 0 || group.usercount === -1) {\n item.utils.counter = group.usercount - group.disabled;\n }\n\n if (item.id !== 'admin' && item.id !== 'disabled' && _this.settings.isAdmin) {\n // add delete button on real groups\n item.utils.actions = [{\n icon: 'icon-delete',\n text: t('settings', 'Remove group'),\n action: function action() {\n self.removeGroup(group.id);\n }\n }];\n }\n\n return item;\n }); // Every item is added on top of the array, so we're going backward\n // Groups, separator, disabled, admin, everyone\n // Add separator\n\n var realGroups = groups.find(function (group) {\n return group.id !== 'disabled' && group.id !== 'admin';\n });\n realGroups = typeof realGroups === 'undefined' ? [] : realGroups;\n realGroups = Array.isArray(realGroups) ? realGroups : [realGroups];\n\n if (realGroups.length > 0) {\n var separator = {\n caption: true,\n text: t('settings', 'Groups')\n };\n groups.unshift(separator);\n } // Adjust admin and disabled groups\n\n\n var adminGroup = groups.find(function (group) {\n return group.id === 'admin';\n });\n var disabledGroup = groups.find(function (group) {\n return group.id === 'disabled';\n }); // filter out admin and disabled\n\n groups = groups.filter(function (group) {\n return ['admin', 'disabled'].indexOf(group.id) === -1;\n });\n\n if (adminGroup && adminGroup.text) {\n adminGroup.text = t('settings', 'Admins'); // rename admin group\n\n adminGroup.icon = 'icon-user-admin'; // set icon\n\n groups.unshift(adminGroup); // add admin group if present\n }\n\n if (disabledGroup && disabledGroup.text) {\n disabledGroup.text = t('settings', 'Disabled users'); // rename disabled group\n\n disabledGroup.icon = 'icon-disabled-users'; // set icon\n\n if (disabledGroup.utils && (disabledGroup.utils.counter > 0 // add disabled if not empty\n || disabledGroup.utils.counter === -1) // add disabled if ldap enabled\n ) {\n groups.unshift(disabledGroup);\n\n if (disabledGroup.utils.counter === -1) {\n // hides the counter instead of showing -1\n delete disabledGroup.utils.counter;\n }\n }\n } // Add everyone group\n\n\n var everyoneGroup = {\n id: 'everyone',\n key: 'everyone',\n icon: 'icon-contacts-dark',\n router: {\n name: 'users'\n },\n text: t('settings', 'Everyone')\n }; // users count\n\n if (this.userCount > 0) {\n Vue.set(everyoneGroup, 'utils', {\n counter: this.userCount\n });\n }\n\n groups.unshift(everyoneGroup);\n var addGroup = {\n id: 'addgroup',\n key: 'addgroup',\n icon: 'icon-add',\n text: t('settings', 'Add group'),\n classes: this.loadingAddGroup ? 'icon-loading-small' : ''\n };\n\n if (this.showAddGroupEntry) {\n Vue.set(addGroup, 'edit', {\n text: t('settings', 'Add group'),\n action: this.createGroup,\n reset: function reset() {\n self.showAddGroupEntry = false;\n }\n });\n addGroup.classes = 'editing';\n } else {\n Vue.set(addGroup, 'action', function () {\n self.showAddGroupEntry = true; // focus input\n\n Vue.nextTick(function () {\n window.addgroup.querySelector('form > input[type=\"text\"]').focus();\n });\n });\n }\n\n groups.unshift(addGroup);\n return groups;\n }\n },\n beforeMount: function beforeMount() {\n this.$store.commit('initGroups', {\n groups: this.$store.getters.getServerData.groups,\n orderBy: this.$store.getters.getServerData.sortGroups,\n userCount: this.$store.getters.getServerData.userCount\n });\n this.$store.dispatch('getPasswordPolicyMinLength');\n },\n created: function created() {\n // init the OCA.Settings.UserList object\n // and add the registerAction method\n Object.assign(OCA, {\n Settings: {\n UserList: {\n registerAction: this.registerAction\n }\n }\n });\n },\n methods: {\n toggleNewUserMenu: function toggleNewUserMenu() {\n this.showConfig.showNewUserForm = !this.showConfig.showNewUserForm;\n\n if (this.showConfig.showNewUserForm) {\n Vue.nextTick(function () {\n window.newusername.focus();\n });\n }\n },\n getLocalstorage: function getLocalstorage(key) {\n // force initialization\n var localConfig = this.$localStorage.get(key); // if localstorage is null, fallback to original values\n\n this.showConfig[key] = localConfig !== null ? localConfig === 'true' : this.showConfig[key];\n return this.showConfig[key];\n },\n setLocalStorage: function setLocalStorage(key, status) {\n this.showConfig[key] = status;\n this.$localStorage.set(key, status);\n return status;\n },\n removeGroup: function removeGroup(groupid) {\n var self = this; // TODO migrate to a vue js confirm dialog component\n\n OC.dialogs.confirm(t('settings', 'You are about to remove the group {group}. The users will NOT be deleted.', {\n group: groupid\n }), t('settings', 'Please confirm the group removal '), function (success) {\n if (success) {\n self.$store.dispatch('removeGroup', groupid);\n }\n });\n },\n\n /**\n * Dispatch default quota set request\n *\n * @param {string|Object} quota Quota in readable format '5 GB' or Object {id: '5 GB', label: '5GB'}\n */\n setDefaultQuota: function setDefaultQuota() {\n var _this2 = this;\n\n var quota = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : 'none';\n this.$store.dispatch('setAppConfig', {\n app: 'files',\n key: 'default_quota',\n // ensure we only send the preset id\n value: quota.id ? quota.id : quota\n }).then(function () {\n if (_typeof(quota) !== 'object') {\n quota = {\n id: quota,\n label: quota\n };\n }\n\n _this2.defaultQuota = quota;\n });\n },\n\n /**\n * Validate quota string to make sure it's a valid human file size\n *\n * @param {string} quota Quota in readable format '5 GB'\n * @returns {Promise|boolean}\n */\n validateQuota: function validateQuota(quota) {\n // only used for new presets sent through @Tag\n var validQuota = OC.Util.computerFileSize(quota);\n\n if (validQuota === null) {\n return this.setDefaultQuota('none');\n } else {\n // unify format output\n return this.setDefaultQuota(OC.Util.humanFileSize(OC.Util.computerFileSize(quota)));\n }\n },\n\n /**\n * Register a new action for the user menu\n *\n * @param {string} icon the icon class\n * @param {string} text the text to display\n * @param {Function} action the function to run\n * @returns {Array}\n */\n registerAction: function registerAction(icon, text, action) {\n this.externalActions.push({\n icon: icon,\n text: text,\n action: action\n });\n return this.externalActions;\n },\n\n /**\n * Create a new group\n *\n * @param {Object} event The form submit event\n */\n createGroup: function createGroup(event) {\n var _this3 = this;\n\n var gid = event.target[0].value;\n this.loadingAddGroup = true;\n this.$store.dispatch('addGroup', gid).then(function () {\n _this3.showAddGroupEntry = false;\n _this3.loadingAddGroup = false;\n\n _this3.$router.push({\n name: 'group',\n params: {\n selectedGroup: gid\n }\n });\n }).catch(function () {\n _this3.loadingAddGroup = false;\n });\n }\n }\n};","// Imports\nvar ___CSS_LOADER_API_IMPORT___ = require(\"../../../../../node_modules/css-loader/dist/runtime/api.js\");\nexports = ___CSS_LOADER_API_IMPORT___(false);\n// Module\nexports.push([module.id, \"\\n.cellText[data-v-ff154a08] {\\n\\toverflow: hidden;\\n\\ttext-overflow: ellipsis;\\n\\twhite-space: nowrap;\\n}\\n\", \"\"]);\n// Exports\nmodule.exports = exports;\n","var render = function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n return _c(\n \"div\",\n {\n staticClass: \"user-list-grid\",\n attrs: { id: \"app-content\" },\n on: {\n \"&scroll\": function($event) {\n return _vm.onScroll($event)\n }\n }\n },\n [\n _c(\n \"form\",\n {\n directives: [\n {\n name: \"show\",\n rawName: \"v-show\",\n value: _vm.showConfig.showNewUserForm,\n expression: \"showConfig.showNewUserForm\"\n }\n ],\n staticClass: \"row\",\n class: { sticky: _vm.scrolled && _vm.showConfig.showNewUserForm },\n attrs: { id: \"new-user\", disabled: _vm.loading.all },\n on: {\n submit: function($event) {\n $event.preventDefault()\n return _vm.createUser($event)\n }\n }\n },\n [\n _c(\"div\", {\n class: _vm.loading.all ? \"icon-loading-small\" : \"icon-add\"\n }),\n _vm._v(\" \"),\n _c(\"div\", { staticClass: \"name\" }, [\n _c(\"input\", {\n directives: [\n {\n name: \"model\",\n rawName: \"v-model\",\n value: _vm.newUser.id,\n expression: \"newUser.id\"\n }\n ],\n ref: \"newusername\",\n attrs: {\n id: \"newusername\",\n disabled: _vm.settings.newUserGenerateUserID,\n placeholder: _vm.settings.newUserGenerateUserID\n ? _vm.t(\"settings\", \"Will be autogenerated\")\n : _vm.t(\"settings\", \"Username\"),\n autocapitalize: \"none\",\n autocomplete: \"off\",\n autocorrect: \"off\",\n name: \"username\",\n pattern: \"[a-zA-Z0-9 _\\\\.@\\\\-']+\",\n required: \"\",\n type: \"text\"\n },\n domProps: { value: _vm.newUser.id },\n on: {\n input: function($event) {\n if ($event.target.composing) {\n return\n }\n _vm.$set(_vm.newUser, \"id\", $event.target.value)\n }\n }\n }),\n _vm._v(\" \"),\n _c(\"div\", { staticClass: \"displayName\" }, [\n _c(\"input\", {\n directives: [\n {\n name: \"model\",\n rawName: \"v-model\",\n value: _vm.newUser.displayName,\n expression: \"newUser.displayName\"\n }\n ],\n attrs: {\n id: \"newdisplayname\",\n placeholder: _vm.t(\"settings\", \"Display name\"),\n autocapitalize: \"none\",\n autocomplete: \"off\",\n autocorrect: \"off\",\n name: \"displayname\",\n type: \"text\"\n },\n domProps: { value: _vm.newUser.displayName },\n on: {\n input: function($event) {\n if ($event.target.composing) {\n return\n }\n _vm.$set(_vm.newUser, \"displayName\", $event.target.value)\n }\n }\n })\n ])\n ]),\n _vm._v(\" \"),\n _c(\"div\", { staticClass: \"password\" }, [\n _c(\"input\", {\n directives: [\n {\n name: \"model\",\n rawName: \"v-model\",\n value: _vm.newUser.password,\n expression: \"newUser.password\"\n }\n ],\n ref: \"newuserpassword\",\n attrs: {\n id: \"newuserpassword\",\n minlength: _vm.minPasswordLength,\n placeholder: _vm.t(\"settings\", \"Password\"),\n required: _vm.newUser.mailAddress === \"\",\n autocapitalize: \"none\",\n autocomplete: \"new-password\",\n autocorrect: \"off\",\n name: \"password\",\n type: \"password\"\n },\n domProps: { value: _vm.newUser.password },\n on: {\n input: function($event) {\n if ($event.target.composing) {\n return\n }\n _vm.$set(_vm.newUser, \"password\", $event.target.value)\n }\n }\n })\n ]),\n _vm._v(\" \"),\n _c(\"div\", { staticClass: \"mailAddress\" }, [\n _c(\"input\", {\n directives: [\n {\n name: \"model\",\n rawName: \"v-model\",\n value: _vm.newUser.mailAddress,\n expression: \"newUser.mailAddress\"\n }\n ],\n attrs: {\n id: \"newemail\",\n placeholder: _vm.t(\"settings\", \"Email\"),\n required:\n _vm.newUser.password === \"\" ||\n _vm.settings.newUserRequireEmail,\n autocapitalize: \"none\",\n autocomplete: \"off\",\n autocorrect: \"off\",\n name: \"email\",\n type: \"email\"\n },\n domProps: { value: _vm.newUser.mailAddress },\n on: {\n input: function($event) {\n if ($event.target.composing) {\n return\n }\n _vm.$set(_vm.newUser, \"mailAddress\", $event.target.value)\n }\n }\n })\n ]),\n _vm._v(\" \"),\n _c(\n \"div\",\n { staticClass: \"groups\" },\n [\n !_vm.settings.isAdmin\n ? _c(\"input\", {\n class: { \"icon-loading-small\": _vm.loading.groups },\n attrs: {\n id: \"newgroups\",\n required: !_vm.settings.isAdmin,\n tabindex: \"-1\",\n type: \"text\"\n },\n domProps: { value: _vm.newUser.groups }\n })\n : _vm._e(),\n _vm._v(\" \"),\n _c(\n \"Multiselect\",\n {\n staticClass: \"multiselect-vue\",\n attrs: {\n \"close-on-select\": false,\n disabled: _vm.loading.groups || _vm.loading.all,\n multiple: true,\n options: _vm.canAddGroups,\n placeholder: _vm.t(\"settings\", \"Add user in group\"),\n \"tag-width\": 60,\n taggable: true,\n label: \"name\",\n \"tag-placeholder\": \"create\",\n \"track-by\": \"id\"\n },\n on: { tag: _vm.createGroup },\n model: {\n value: _vm.newUser.groups,\n callback: function($$v) {\n _vm.$set(_vm.newUser, \"groups\", $$v)\n },\n expression: \"newUser.groups\"\n }\n },\n [\n _c(\n \"span\",\n { attrs: { slot: \"noResult\" }, slot: \"noResult\" },\n [_vm._v(_vm._s(_vm.t(\"settings\", \"No results\")))]\n )\n ]\n )\n ],\n 1\n ),\n _vm._v(\" \"),\n _vm.subAdminsGroups.length > 0 && _vm.settings.isAdmin\n ? _c(\n \"div\",\n { staticClass: \"subadmins\" },\n [\n _c(\n \"Multiselect\",\n {\n staticClass: \"multiselect-vue\",\n attrs: {\n \"close-on-select\": false,\n multiple: true,\n options: _vm.subAdminsGroups,\n placeholder: _vm.t(\"settings\", \"Set user as admin for\"),\n \"tag-width\": 60,\n label: \"name\",\n \"track-by\": \"id\"\n },\n model: {\n value: _vm.newUser.subAdminsGroups,\n callback: function($$v) {\n _vm.$set(_vm.newUser, \"subAdminsGroups\", $$v)\n },\n expression: \"newUser.subAdminsGroups\"\n }\n },\n [\n _c(\n \"span\",\n { attrs: { slot: \"noResult\" }, slot: \"noResult\" },\n [_vm._v(_vm._s(_vm.t(\"settings\", \"No results\")))]\n )\n ]\n )\n ],\n 1\n )\n : _vm._e(),\n _vm._v(\" \"),\n _c(\n \"div\",\n { staticClass: \"quota\" },\n [\n _c(\"Multiselect\", {\n staticClass: \"multiselect-vue\",\n attrs: {\n \"allow-empty\": false,\n options: _vm.quotaOptions,\n placeholder: _vm.t(\"settings\", \"Select user quota\"),\n taggable: true,\n label: \"label\",\n \"track-by\": \"id\"\n },\n on: { tag: _vm.validateQuota },\n model: {\n value: _vm.newUser.quota,\n callback: function($$v) {\n _vm.$set(_vm.newUser, \"quota\", $$v)\n },\n expression: \"newUser.quota\"\n }\n })\n ],\n 1\n ),\n _vm._v(\" \"),\n _vm.showConfig.showLanguages\n ? _c(\n \"div\",\n { staticClass: \"languages\" },\n [\n _c(\"Multiselect\", {\n staticClass: \"multiselect-vue\",\n attrs: {\n \"allow-empty\": false,\n options: _vm.languages,\n placeholder: _vm.t(\"settings\", \"Default language\"),\n \"group-label\": \"label\",\n \"group-values\": \"languages\",\n label: \"name\",\n \"track-by\": \"code\"\n },\n model: {\n value: _vm.newUser.language,\n callback: function($$v) {\n _vm.$set(_vm.newUser, \"language\", $$v)\n },\n expression: \"newUser.language\"\n }\n })\n ],\n 1\n )\n : _vm._e(),\n _vm._v(\" \"),\n _vm.showConfig.showStoragePath\n ? _c(\"div\", { staticClass: \"storageLocation\" })\n : _vm._e(),\n _vm._v(\" \"),\n _vm.showConfig.showUserBackend\n ? _c(\"div\", { staticClass: \"userBackend\" })\n : _vm._e(),\n _vm._v(\" \"),\n _vm.showConfig.showLastLogin\n ? _c(\"div\", { staticClass: \"lastLogin\" })\n : _vm._e(),\n _vm._v(\" \"),\n _c(\"div\", { staticClass: \"userActions\" }, [\n _c(\"input\", {\n staticClass: \"button primary icon-checkmark-white has-tooltip\",\n attrs: {\n id: \"newsubmit\",\n title: _vm.t(\"settings\", \"Add a new user\"),\n type: \"submit\",\n value: \"\"\n }\n }),\n _vm._v(\" \"),\n _c(\n \"div\",\n { staticClass: \"closeButton\" },\n [\n _c(\n \"Actions\",\n [\n _c(\n \"ActionButton\",\n {\n attrs: { icon: \"icon-close\" },\n on: { click: _vm.onClose }\n },\n [\n _vm._v(\n \"\\n\\t\\t\\t\\t\\t\\t\" +\n _vm._s(_vm.t(\"settings\", \"Close\")) +\n \"\\n\\t\\t\\t\\t\\t\"\n )\n ]\n )\n ],\n 1\n )\n ],\n 1\n )\n ])\n ]\n ),\n _vm._v(\" \"),\n _c(\n \"div\",\n {\n staticClass: \"row\",\n class: { sticky: _vm.scrolled && !_vm.showConfig.showNewUserForm },\n attrs: { id: \"grid-header\" }\n },\n [\n _c(\"div\", { staticClass: \"avatar\", attrs: { id: \"headerAvatar\" } }),\n _vm._v(\" \"),\n _c(\"div\", { staticClass: \"name\", attrs: { id: \"headerName\" } }, [\n _vm._v(\n \"\\n\\t\\t\\t\" + _vm._s(_vm.t(\"settings\", \"Username\")) + \"\\n\\n\\t\\t\\t\"\n ),\n _c(\"div\", { staticClass: \"subtitle\" }, [\n _vm._v(\n \"\\n\\t\\t\\t\\t\" +\n _vm._s(_vm.t(\"settings\", \"Display name\")) +\n \"\\n\\t\\t\\t\"\n )\n ])\n ]),\n _vm._v(\" \"),\n _c(\n \"div\",\n { staticClass: \"password\", attrs: { id: \"headerPassword\" } },\n [\n _vm._v(\n \"\\n\\t\\t\\t\" + _vm._s(_vm.t(\"settings\", \"Password\")) + \"\\n\\t\\t\"\n )\n ]\n ),\n _vm._v(\" \"),\n _c(\n \"div\",\n { staticClass: \"mailAddress\", attrs: { id: \"headerAddress\" } },\n [_vm._v(\"\\n\\t\\t\\t\" + _vm._s(_vm.t(\"settings\", \"Email\")) + \"\\n\\t\\t\")]\n ),\n _vm._v(\" \"),\n _c(\"div\", { staticClass: \"groups\", attrs: { id: \"headerGroups\" } }, [\n _vm._v(\"\\n\\t\\t\\t\" + _vm._s(_vm.t(\"settings\", \"Groups\")) + \"\\n\\t\\t\")\n ]),\n _vm._v(\" \"),\n _vm.subAdminsGroups.length > 0 && _vm.settings.isAdmin\n ? _c(\n \"div\",\n { staticClass: \"subadmins\", attrs: { id: \"headerSubAdmins\" } },\n [\n _vm._v(\n \"\\n\\t\\t\\t\" +\n _vm._s(_vm.t(\"settings\", \"Group admin for\")) +\n \"\\n\\t\\t\"\n )\n ]\n )\n : _vm._e(),\n _vm._v(\" \"),\n _c(\"div\", { staticClass: \"quota\", attrs: { id: \"headerQuota\" } }, [\n _vm._v(\"\\n\\t\\t\\t\" + _vm._s(_vm.t(\"settings\", \"Quota\")) + \"\\n\\t\\t\")\n ]),\n _vm._v(\" \"),\n _vm.showConfig.showLanguages\n ? _c(\n \"div\",\n { staticClass: \"languages\", attrs: { id: \"headerLanguages\" } },\n [\n _vm._v(\n \"\\n\\t\\t\\t\" +\n _vm._s(_vm.t(\"settings\", \"Language\")) +\n \"\\n\\t\\t\"\n )\n ]\n )\n : _vm._e(),\n _vm._v(\" \"),\n _vm.showConfig.showUserBackend || _vm.showConfig.showStoragePath\n ? _c(\"div\", { staticClass: \"headerUserBackend userBackend\" }, [\n _vm.showConfig.showUserBackend\n ? _c(\"div\", { staticClass: \"userBackend\" }, [\n _vm._v(\n \"\\n\\t\\t\\t\\t\" +\n _vm._s(_vm.t(\"settings\", \"User backend\")) +\n \"\\n\\t\\t\\t\"\n )\n ])\n : _vm._e(),\n _vm._v(\" \"),\n _vm.showConfig.showStoragePath\n ? _c(\"div\", { staticClass: \"subtitle storageLocation\" }, [\n _vm._v(\n \"\\n\\t\\t\\t\\t\" +\n _vm._s(_vm.t(\"settings\", \"Storage location\")) +\n \"\\n\\t\\t\\t\"\n )\n ])\n : _vm._e()\n ])\n : _vm._e(),\n _vm._v(\" \"),\n _vm.showConfig.showLastLogin\n ? _c(\"div\", { staticClass: \"headerLastLogin lastLogin\" }, [\n _vm._v(\n \"\\n\\t\\t\\t\" +\n _vm._s(_vm.t(\"settings\", \"Last login\")) +\n \"\\n\\t\\t\"\n )\n ])\n : _vm._e(),\n _vm._v(\" \"),\n _c(\"div\", { staticClass: \"userActions\" })\n ]\n ),\n _vm._v(\" \"),\n _vm._l(_vm.filteredUsers, function(user, key) {\n return _c(\"user-row\", {\n key: key,\n attrs: {\n \"external-actions\": _vm.externalActions,\n groups: _vm.groups,\n languages: _vm.languages,\n \"quota-options\": _vm.quotaOptions,\n settings: _vm.settings,\n \"show-config\": _vm.showConfig,\n \"sub-admins-groups\": _vm.subAdminsGroups,\n user: user\n }\n })\n }),\n _vm._v(\" \"),\n _c(\n \"InfiniteLoading\",\n { ref: \"infiniteLoading\", on: { infinite: _vm.infiniteHandler } },\n [\n _c(\"div\", { attrs: { slot: \"spinner\" }, slot: \"spinner\" }, [\n _c(\"div\", { staticClass: \"users-icon-loading icon-loading\" })\n ]),\n _vm._v(\" \"),\n _c(\"div\", { attrs: { slot: \"no-more\" }, slot: \"no-more\" }, [\n _c(\"div\", { staticClass: \"users-list-end\" })\n ]),\n _vm._v(\" \"),\n _c(\"div\", { attrs: { slot: \"no-results\" }, slot: \"no-results\" }, [\n _c(\"div\", { attrs: { id: \"emptycontent\" } }, [\n _c(\"div\", { staticClass: \"icon-contacts-dark\" }),\n _vm._v(\" \"),\n _c(\"h2\", [_vm._v(_vm._s(_vm.t(\"settings\", \"No users in here\")))])\n ])\n ])\n ]\n )\n ],\n 2\n )\n}\nvar staticRenderFns = []\nrender._withStripped = true\n\nexport { render, staticRenderFns }","var render = function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n return Object.keys(_vm.user).length === 1\n ? _c(\"div\", { staticClass: \"row\", attrs: { \"data-id\": _vm.user.id } }, [\n _c(\n \"div\",\n {\n staticClass: \"avatar\",\n class: {\n \"icon-loading-small\":\n _vm.loading.delete || _vm.loading.disable || _vm.loading.wipe\n }\n },\n [\n !_vm.loading.delete && !_vm.loading.disable && !_vm.loading.wipe\n ? _c(\"img\", {\n attrs: {\n src: _vm.generateAvatar(_vm.user.id, 32),\n srcset:\n _vm.generateAvatar(_vm.user.id, 64) +\n \" 2x, \" +\n _vm.generateAvatar(_vm.user.id, 128) +\n \" 4x\",\n alt: \"\",\n height: \"32\",\n width: \"32\"\n }\n })\n : _vm._e()\n ]\n ),\n _vm._v(\" \"),\n _c(\"div\", { staticClass: \"name\" }, [\n _vm._v(\"\\n\\t\\t\" + _vm._s(_vm.user.id) + \"\\n\\t\")\n ]),\n _vm._v(\" \"),\n _c(\"div\", { staticClass: \"obfuscated\" }, [\n _vm._v(\n \"\\n\\t\\t\" +\n _vm._s(\n _vm.t(\n \"settings\",\n \"You do not have permissions to see the details of this user\"\n )\n ) +\n \"\\n\\t\"\n )\n ])\n ])\n : !_vm.editing\n ? _c(\"UserRowSimple\", {\n attrs: {\n editing: _vm.editing,\n \"feedback-message\": _vm.feedbackMessage,\n groups: _vm.groups,\n languages: _vm.languages,\n loading: _vm.loading,\n \"opened-menu\": _vm.openedMenu,\n settings: _vm.settings,\n \"show-config\": _vm.showConfig,\n \"sub-admins-groups\": _vm.subAdminsGroups,\n \"user-actions\": _vm.userActions,\n user: _vm.user\n },\n on: {\n \"update:editing\": function($event) {\n _vm.editing = $event\n },\n hideMenu: _vm.hideMenu,\n toggleMenu: _vm.toggleMenu\n }\n })\n : _c(\n \"div\",\n {\n staticClass: \"row row--editable\",\n class: { disabled: _vm.loading.delete || _vm.loading.disable },\n attrs: { \"data-id\": _vm.user.id }\n },\n [\n _c(\n \"div\",\n {\n staticClass: \"avatar\",\n class: {\n \"icon-loading-small\":\n _vm.loading.delete || _vm.loading.disable || _vm.loading.wipe\n }\n },\n [\n !_vm.loading.delete && !_vm.loading.disable && !_vm.loading.wipe\n ? _c(\"img\", {\n attrs: {\n src: _vm.generateAvatar(_vm.user.id, 32),\n srcset:\n _vm.generateAvatar(_vm.user.id, 64) +\n \" 2x, \" +\n _vm.generateAvatar(_vm.user.id, 128) +\n \" 4x\",\n alt: \"\",\n height: \"32\",\n width: \"32\"\n }\n })\n : _vm._e()\n ]\n ),\n _vm._v(\" \"),\n _c(\"div\", { staticClass: \"displayName\" }, [\n _c(\n \"form\",\n {\n staticClass: \"displayName\",\n class: { \"icon-loading-small\": _vm.loading.displayName },\n on: {\n submit: function($event) {\n $event.preventDefault()\n return _vm.updateDisplayName($event)\n }\n }\n },\n [\n _vm.user.backendCapabilities.setDisplayName\n ? [\n _vm.user.backendCapabilities.setDisplayName\n ? _c(\"input\", {\n ref: \"displayName\",\n attrs: {\n id: \"displayName\" + _vm.user.id + _vm.rand,\n disabled:\n _vm.loading.displayName || _vm.loading.all,\n autocapitalize: \"off\",\n autocomplete: \"new-password\",\n autocorrect: \"off\",\n spellcheck: \"false\",\n type: \"text\"\n },\n domProps: { value: _vm.user.displayname }\n })\n : _vm._e(),\n _vm._v(\" \"),\n _vm.user.backendCapabilities.setDisplayName\n ? _c(\"input\", {\n staticClass: \"icon-confirm\",\n attrs: { type: \"submit\", value: \"\" }\n })\n : _vm._e()\n ]\n : _c(\"div\", {\n directives: [\n {\n name: \"tooltip\",\n rawName: \"v-tooltip.auto\",\n value: _vm.t(\n \"settings\",\n \"The backend does not support changing the display name\"\n ),\n expression:\n \"t('settings', 'The backend does not support changing the display name')\",\n modifiers: { auto: true }\n }\n ],\n staticClass: \"name\"\n })\n ],\n 2\n )\n ]),\n _vm._v(\" \"),\n _vm.settings.canChangePassword &&\n _vm.user.backendCapabilities.setPassword\n ? _c(\n \"form\",\n {\n staticClass: \"password\",\n class: { \"icon-loading-small\": _vm.loading.password },\n on: {\n submit: function($event) {\n $event.preventDefault()\n return _vm.updatePassword($event)\n }\n }\n },\n [\n _c(\"input\", {\n ref: \"password\",\n attrs: {\n id: \"password\" + _vm.user.id + _vm.rand,\n disabled: _vm.loading.password || _vm.loading.all,\n minlength: _vm.minPasswordLength,\n placeholder: _vm.t(\"settings\", \"Add new password\"),\n autocapitalize: \"off\",\n autocomplete: \"new-password\",\n autocorrect: \"off\",\n required: \"\",\n spellcheck: \"false\",\n type: \"password\",\n value: \"\"\n }\n }),\n _vm._v(\" \"),\n _c(\"input\", {\n staticClass: \"icon-confirm\",\n attrs: { type: \"submit\", value: \"\" }\n })\n ]\n )\n : _c(\"div\"),\n _vm._v(\" \"),\n _c(\n \"form\",\n {\n staticClass: \"mailAddress\",\n class: { \"icon-loading-small\": _vm.loading.mailAddress },\n on: {\n submit: function($event) {\n $event.preventDefault()\n return _vm.updateEmail($event)\n }\n }\n },\n [\n _c(\"input\", {\n ref: \"mailAddress\",\n attrs: {\n id: \"mailAddress\" + _vm.user.id + _vm.rand,\n disabled: _vm.loading.mailAddress || _vm.loading.all,\n placeholder: _vm.t(\"settings\", \"Add new email address\"),\n autocapitalize: \"off\",\n autocomplete: \"new-password\",\n autocorrect: \"off\",\n spellcheck: \"false\",\n type: \"email\"\n },\n domProps: { value: _vm.user.email }\n }),\n _vm._v(\" \"),\n _c(\"input\", {\n staticClass: \"icon-confirm\",\n attrs: { type: \"submit\", value: \"\" }\n })\n ]\n ),\n _vm._v(\" \"),\n _c(\n \"div\",\n {\n staticClass: \"groups\",\n class: { \"icon-loading-small\": _vm.loading.groups }\n },\n [\n _c(\n \"Multiselect\",\n {\n staticClass: \"multiselect-vue\",\n attrs: {\n \"close-on-select\": false,\n disabled: _vm.loading.groups || _vm.loading.all,\n limit: 2,\n multiple: true,\n options: _vm.availableGroups,\n placeholder: _vm.t(\"settings\", \"Add user in group\"),\n \"tag-width\": 60,\n taggable: _vm.settings.isAdmin,\n value: _vm.userGroups,\n label: \"name\",\n \"tag-placeholder\": \"create\",\n \"track-by\": \"id\"\n },\n on: {\n remove: _vm.removeUserGroup,\n select: _vm.addUserGroup,\n tag: _vm.createGroup\n }\n },\n [\n _c(\n \"span\",\n { attrs: { slot: \"noResult\" }, slot: \"noResult\" },\n [_vm._v(_vm._s(_vm.t(\"settings\", \"No results\")))]\n )\n ]\n )\n ],\n 1\n ),\n _vm._v(\" \"),\n _vm.subAdminsGroups.length > 0 && _vm.settings.isAdmin\n ? _c(\n \"div\",\n {\n staticClass: \"subadmins\",\n class: { \"icon-loading-small\": _vm.loading.subadmins }\n },\n [\n _c(\n \"Multiselect\",\n {\n staticClass: \"multiselect-vue\",\n attrs: {\n \"close-on-select\": false,\n disabled: _vm.loading.subadmins || _vm.loading.all,\n limit: 2,\n multiple: true,\n options: _vm.subAdminsGroups,\n placeholder: _vm.t(\"settings\", \"Set user as admin for\"),\n \"tag-width\": 60,\n value: _vm.userSubAdminsGroups,\n label: \"name\",\n \"track-by\": \"id\"\n },\n on: {\n remove: _vm.removeUserSubAdmin,\n select: _vm.addUserSubAdmin\n }\n },\n [\n _c(\n \"span\",\n { attrs: { slot: \"noResult\" }, slot: \"noResult\" },\n [_vm._v(_vm._s(_vm.t(\"settings\", \"No results\")))]\n )\n ]\n )\n ],\n 1\n )\n : _vm._e(),\n _vm._v(\" \"),\n _c(\n \"div\",\n {\n directives: [\n {\n name: \"tooltip\",\n rawName: \"v-tooltip.auto\",\n value: _vm.usedSpace,\n expression: \"usedSpace\",\n modifiers: { auto: true }\n }\n ],\n staticClass: \"quota\",\n class: { \"icon-loading-small\": _vm.loading.quota }\n },\n [\n _c(\"Multiselect\", {\n staticClass: \"multiselect-vue\",\n attrs: {\n \"allow-empty\": false,\n disabled: _vm.loading.quota || _vm.loading.all,\n options: _vm.quotaOptions,\n placeholder: _vm.t(\"settings\", \"Select user quota\"),\n taggable: true,\n value: _vm.userQuota,\n label: \"label\",\n \"tag-placeholder\": \"create\",\n \"track-by\": \"id\"\n },\n on: { input: _vm.setUserQuota, tag: _vm.validateQuota }\n })\n ],\n 1\n ),\n _vm._v(\" \"),\n _vm.showConfig.showLanguages\n ? _c(\n \"div\",\n {\n staticClass: \"languages\",\n class: { \"icon-loading-small\": _vm.loading.languages }\n },\n [\n _c(\"Multiselect\", {\n staticClass: \"multiselect-vue\",\n attrs: {\n \"allow-empty\": false,\n disabled: _vm.loading.languages || _vm.loading.all,\n options: _vm.languages,\n placeholder: _vm.t(\"settings\", \"No language set\"),\n value: _vm.userLanguage,\n \"group-label\": \"label\",\n \"group-values\": \"languages\",\n label: \"name\",\n \"track-by\": \"code\"\n },\n on: { input: _vm.setUserLanguage }\n })\n ],\n 1\n )\n : _vm._e(),\n _vm._v(\" \"),\n _vm.showConfig.showStoragePath || _vm.showConfig.showUserBackend\n ? _c(\"div\", { staticClass: \"storageLocation\" })\n : _vm._e(),\n _vm._v(\" \"),\n _vm.showConfig.showLastLogin ? _c(\"div\") : _vm._e(),\n _vm._v(\" \"),\n _c(\"div\", { staticClass: \"userActions\" }, [\n _vm.OC.currentUser !== _vm.user.id &&\n _vm.user.id !== \"admin\" &&\n !_vm.loading.all\n ? _c(\n \"div\",\n { staticClass: \"toggleUserActions\" },\n [\n _c(\n \"Actions\",\n [\n _c(\n \"ActionButton\",\n {\n attrs: { icon: \"icon-checkmark\" },\n on: {\n click: function($event) {\n _vm.editing = false\n }\n }\n },\n [\n _vm._v(\n \"\\n\\t\\t\\t\\t\\t\" +\n _vm._s(_vm.t(\"settings\", \"Done\")) +\n \"\\n\\t\\t\\t\\t\"\n )\n ]\n )\n ],\n 1\n ),\n _vm._v(\" \"),\n _c(\"div\", {\n directives: [\n {\n name: \"click-outside\",\n rawName: \"v-click-outside\",\n value: _vm.hideMenu,\n expression: \"hideMenu\"\n }\n ],\n staticClass: \"icon-more\",\n on: { click: _vm.toggleMenu }\n }),\n _vm._v(\" \"),\n _c(\n \"div\",\n {\n staticClass: \"popovermenu\",\n class: { open: _vm.openedMenu }\n },\n [_c(\"PopoverMenu\", { attrs: { menu: _vm.userActions } })],\n 1\n )\n ],\n 1\n )\n : _vm._e(),\n _vm._v(\" \"),\n _c(\n \"div\",\n {\n staticClass: \"feedback\",\n style: { opacity: _vm.feedbackMessage !== \"\" ? 1 : 0 }\n },\n [\n _c(\"div\", { staticClass: \"icon-checkmark\" }),\n _vm._v(\"\\n\\t\\t\\t\" + _vm._s(_vm.feedbackMessage) + \"\\n\\t\\t\")\n ]\n )\n ])\n ]\n )\n}\nvar staticRenderFns = []\nrender._withStripped = true\n\nexport { render, staticRenderFns }","var render = function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n return _c(\n \"div\",\n {\n staticClass: \"row\",\n class: { disabled: _vm.loading.delete || _vm.loading.disable },\n attrs: { \"data-id\": _vm.user.id }\n },\n [\n _c(\n \"div\",\n {\n staticClass: \"avatar\",\n class: {\n \"icon-loading-small\":\n _vm.loading.delete || _vm.loading.disable || _vm.loading.wipe\n }\n },\n [\n !_vm.loading.delete && !_vm.loading.disable && !_vm.loading.wipe\n ? _c(\"img\", {\n attrs: {\n alt: \"\",\n width: \"32\",\n height: \"32\",\n src: _vm.generateAvatar(_vm.user.id, 32),\n srcset:\n _vm.generateAvatar(_vm.user.id, 64) +\n \" 2x, \" +\n _vm.generateAvatar(_vm.user.id, 128) +\n \" 4x\"\n }\n })\n : _vm._e()\n ]\n ),\n _vm._v(\" \"),\n _c(\"div\", { staticClass: \"name\" }, [\n _vm._v(\"\\n\\t\\t\" + _vm._s(_vm.user.id) + \"\\n\\t\\t\"),\n _c(\"div\", { staticClass: \"displayName subtitle\" }, [\n _c(\n \"div\",\n {\n directives: [\n {\n name: \"tooltip\",\n rawName: \"v-tooltip\",\n value:\n _vm.user.displayname.length > 20\n ? _vm.user.displayname\n : \"\",\n expression:\n \"user.displayname.length > 20 ? user.displayname : ''\"\n }\n ],\n staticClass: \"cellText\"\n },\n [_vm._v(\"\\n\\t\\t\\t\\t\" + _vm._s(_vm.user.displayname) + \"\\n\\t\\t\\t\")]\n )\n ])\n ]),\n _vm._v(\" \"),\n _c(\"div\"),\n _vm._v(\" \"),\n _c(\"div\", { staticClass: \"mailAddress\" }, [\n _c(\n \"div\",\n {\n directives: [\n {\n name: \"tooltip\",\n rawName: \"v-tooltip\",\n value:\n _vm.user.email !== null && _vm.user.email.length > 20\n ? _vm.user.email\n : \"\",\n expression:\n \"user.email !== null && user.email.length > 20 ? user.email : ''\"\n }\n ],\n staticClass: \"cellText\"\n },\n [_vm._v(\"\\n\\t\\t\\t\" + _vm._s(_vm.user.email) + \"\\n\\t\\t\")]\n )\n ]),\n _vm._v(\" \"),\n _c(\"div\", { staticClass: \"groups\" }, [\n _vm._v(\"\\n\\t\\t\" + _vm._s(_vm.userGroupsLabels) + \"\\n\\t\")\n ]),\n _vm._v(\" \"),\n _vm.subAdminsGroups.length > 0 && _vm.settings.isAdmin\n ? _c(\"div\", { staticClass: \"subAdminsGroups\" }, [\n _vm._v(\"\\n\\t\\t\" + _vm._s(_vm.userSubAdminsGroupsLabels) + \"\\n\\t\")\n ])\n : _vm._e(),\n _vm._v(\" \"),\n _c(\n \"div\",\n {\n directives: [\n {\n name: \"tooltip\",\n rawName: \"v-tooltip.auto\",\n value: _vm.usedSpace,\n expression: \"usedSpace\",\n modifiers: { auto: true }\n }\n ],\n staticClass: \"quota\"\n },\n [\n _c(\"progress\", {\n staticClass: \"quota-user-progress\",\n class: { warn: _vm.usedQuota > 80 },\n attrs: { max: \"100\" },\n domProps: { value: _vm.usedQuota }\n })\n ]\n ),\n _vm._v(\" \"),\n _vm.showConfig.showLanguages\n ? _c(\"div\", { staticClass: \"languages\" }, [\n _vm._v(\"\\n\\t\\t\" + _vm._s(_vm.userLanguage.name) + \"\\n\\t\")\n ])\n : _vm._e(),\n _vm._v(\" \"),\n _vm.showConfig.showUserBackend || _vm.showConfig.showStoragePath\n ? _c(\"div\", { staticClass: \"userBackend\" }, [\n _vm.showConfig.showUserBackend\n ? _c(\"div\", { staticClass: \"userBackend\" }, [\n _vm._v(\"\\n\\t\\t\\t\" + _vm._s(_vm.user.backend) + \"\\n\\t\\t\")\n ])\n : _vm._e(),\n _vm._v(\" \"),\n _vm.showConfig.showStoragePath\n ? _c(\"div\", { staticClass: \"storageLocation subtitle\" }, [\n _vm._v(\n \"\\n\\t\\t\\t\" + _vm._s(_vm.user.storageLocation) + \"\\n\\t\\t\"\n )\n ])\n : _vm._e()\n ])\n : _vm._e(),\n _vm._v(\" \"),\n _vm.showConfig.showLastLogin\n ? _c(\n \"div\",\n {\n directives: [\n {\n name: \"tooltip\",\n rawName: \"v-tooltip.auto\",\n value: _vm.userLastLoginTooltip,\n expression: \"userLastLoginTooltip\",\n modifiers: { auto: true }\n }\n ],\n staticClass: \"lastLogin\"\n },\n [_vm._v(\"\\n\\t\\t\" + _vm._s(_vm.userLastLogin) + \"\\n\\t\")]\n )\n : _vm._e(),\n _vm._v(\" \"),\n _c(\"div\", { staticClass: \"userActions\" }, [\n _vm.canEdit && !_vm.loading.all\n ? _c(\n \"div\",\n { staticClass: \"toggleUserActions\" },\n [\n _c(\n \"Actions\",\n [\n _c(\n \"ActionButton\",\n {\n attrs: { icon: \"icon-rename\" },\n on: { click: _vm.toggleEdit }\n },\n [\n _vm._v(\n \"\\n\\t\\t\\t\\t\\t\" +\n _vm._s(_vm.t(\"settings\", \"Edit User\")) +\n \"\\n\\t\\t\\t\\t\"\n )\n ]\n )\n ],\n 1\n ),\n _vm._v(\" \"),\n _c(\"div\", {\n directives: [\n {\n name: \"click-outside\",\n rawName: \"v-click-outside\",\n value: _vm.hideMenu,\n expression: \"hideMenu\"\n }\n ],\n staticClass: \"icon-more\",\n on: {\n click: function($event) {\n return _vm.$emit(\"toggleMenu\")\n }\n }\n }),\n _vm._v(\" \"),\n _c(\n \"div\",\n {\n staticClass: \"popovermenu\",\n class: { open: _vm.openedMenu }\n },\n [_c(\"PopoverMenu\", { attrs: { menu: _vm.userActions } })],\n 1\n )\n ],\n 1\n )\n : _vm._e(),\n _vm._v(\" \"),\n _c(\n \"div\",\n {\n staticClass: \"feedback\",\n style: { opacity: _vm.feedbackMessage !== \"\" ? 1 : 0 }\n },\n [\n _c(\"div\", { staticClass: \"icon-checkmark\" }),\n _vm._v(\"\\n\\t\\t\\t\" + _vm._s(_vm.feedbackMessage) + \"\\n\\t\\t\")\n ]\n )\n ])\n ]\n )\n}\nvar staticRenderFns = []\nrender._withStripped = true\n\nexport { render, staticRenderFns }","var render = function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n return _c(\n \"Content\",\n {\n attrs: {\n \"app-name\": \"settings\",\n \"navigation-class\": { \"icon-loading\": _vm.loadingAddGroup }\n }\n },\n [\n _c(\n \"AppNavigation\",\n [\n _c(\"AppNavigationNew\", {\n attrs: {\n \"button-id\": \"new-user-button\",\n text: _vm.t(\"settings\", \"New user\"),\n \"button-class\": \"icon-add\"\n },\n on: { click: _vm.toggleNewUserMenu }\n }),\n _vm._v(\" \"),\n _c(\n \"ul\",\n { attrs: { id: \"usergrouplist\" } },\n _vm._l(_vm.menu, function(item) {\n return _c(\"AppNavigationItem\", {\n key: item.key,\n attrs: { item: item }\n })\n }),\n 1\n ),\n _vm._v(\" \"),\n _c(\"AppNavigationSettings\", [\n _c(\n \"div\",\n [\n _c(\"p\", [_vm._v(_vm._s(_vm.t(\"settings\", \"Default quota:\")))]),\n _vm._v(\" \"),\n _c(\"Multiselect\", {\n attrs: {\n value: _vm.defaultQuota,\n options: _vm.quotaOptions,\n \"tag-placeholder\": \"create\",\n placeholder: _vm.t(\"settings\", \"Select default quota\"),\n label: \"label\",\n \"track-by\": \"id\",\n \"allow-empty\": false,\n taggable: true\n },\n on: { tag: _vm.validateQuota, input: _vm.setDefaultQuota }\n })\n ],\n 1\n ),\n _vm._v(\" \"),\n _c(\"div\", [\n _c(\"input\", {\n directives: [\n {\n name: \"model\",\n rawName: \"v-model\",\n value: _vm.showLanguages,\n expression: \"showLanguages\"\n }\n ],\n staticClass: \"checkbox\",\n attrs: { id: \"showLanguages\", type: \"checkbox\" },\n domProps: {\n checked: Array.isArray(_vm.showLanguages)\n ? _vm._i(_vm.showLanguages, null) > -1\n : _vm.showLanguages\n },\n on: {\n change: function($event) {\n var $$a = _vm.showLanguages,\n $$el = $event.target,\n $$c = $$el.checked ? true : false\n if (Array.isArray($$a)) {\n var $$v = null,\n $$i = _vm._i($$a, $$v)\n if ($$el.checked) {\n $$i < 0 && (_vm.showLanguages = $$a.concat([$$v]))\n } else {\n $$i > -1 &&\n (_vm.showLanguages = $$a\n .slice(0, $$i)\n .concat($$a.slice($$i + 1)))\n }\n } else {\n _vm.showLanguages = $$c\n }\n }\n }\n }),\n _vm._v(\" \"),\n _c(\"label\", { attrs: { for: \"showLanguages\" } }, [\n _vm._v(_vm._s(_vm.t(\"settings\", \"Show Languages\")))\n ])\n ]),\n _vm._v(\" \"),\n _c(\"div\", [\n _c(\"input\", {\n directives: [\n {\n name: \"model\",\n rawName: \"v-model\",\n value: _vm.showLastLogin,\n expression: \"showLastLogin\"\n }\n ],\n staticClass: \"checkbox\",\n attrs: { id: \"showLastLogin\", type: \"checkbox\" },\n domProps: {\n checked: Array.isArray(_vm.showLastLogin)\n ? _vm._i(_vm.showLastLogin, null) > -1\n : _vm.showLastLogin\n },\n on: {\n change: function($event) {\n var $$a = _vm.showLastLogin,\n $$el = $event.target,\n $$c = $$el.checked ? true : false\n if (Array.isArray($$a)) {\n var $$v = null,\n $$i = _vm._i($$a, $$v)\n if ($$el.checked) {\n $$i < 0 && (_vm.showLastLogin = $$a.concat([$$v]))\n } else {\n $$i > -1 &&\n (_vm.showLastLogin = $$a\n .slice(0, $$i)\n .concat($$a.slice($$i + 1)))\n }\n } else {\n _vm.showLastLogin = $$c\n }\n }\n }\n }),\n _vm._v(\" \"),\n _c(\"label\", { attrs: { for: \"showLastLogin\" } }, [\n _vm._v(_vm._s(_vm.t(\"settings\", \"Show last login\")))\n ])\n ]),\n _vm._v(\" \"),\n _c(\"div\", [\n _c(\"input\", {\n directives: [\n {\n name: \"model\",\n rawName: \"v-model\",\n value: _vm.showUserBackend,\n expression: \"showUserBackend\"\n }\n ],\n staticClass: \"checkbox\",\n attrs: { id: \"showUserBackend\", type: \"checkbox\" },\n domProps: {\n checked: Array.isArray(_vm.showUserBackend)\n ? _vm._i(_vm.showUserBackend, null) > -1\n : _vm.showUserBackend\n },\n on: {\n change: function($event) {\n var $$a = _vm.showUserBackend,\n $$el = $event.target,\n $$c = $$el.checked ? true : false\n if (Array.isArray($$a)) {\n var $$v = null,\n $$i = _vm._i($$a, $$v)\n if ($$el.checked) {\n $$i < 0 && (_vm.showUserBackend = $$a.concat([$$v]))\n } else {\n $$i > -1 &&\n (_vm.showUserBackend = $$a\n .slice(0, $$i)\n .concat($$a.slice($$i + 1)))\n }\n } else {\n _vm.showUserBackend = $$c\n }\n }\n }\n }),\n _vm._v(\" \"),\n _c(\"label\", { attrs: { for: \"showUserBackend\" } }, [\n _vm._v(_vm._s(_vm.t(\"settings\", \"Show user backend\")))\n ])\n ]),\n _vm._v(\" \"),\n _c(\"div\", [\n _c(\"input\", {\n directives: [\n {\n name: \"model\",\n rawName: \"v-model\",\n value: _vm.showStoragePath,\n expression: \"showStoragePath\"\n }\n ],\n staticClass: \"checkbox\",\n attrs: { id: \"showStoragePath\", type: \"checkbox\" },\n domProps: {\n checked: Array.isArray(_vm.showStoragePath)\n ? _vm._i(_vm.showStoragePath, null) > -1\n : _vm.showStoragePath\n },\n on: {\n change: function($event) {\n var $$a = _vm.showStoragePath,\n $$el = $event.target,\n $$c = $$el.checked ? true : false\n if (Array.isArray($$a)) {\n var $$v = null,\n $$i = _vm._i($$a, $$v)\n if ($$el.checked) {\n $$i < 0 && (_vm.showStoragePath = $$a.concat([$$v]))\n } else {\n $$i > -1 &&\n (_vm.showStoragePath = $$a\n .slice(0, $$i)\n .concat($$a.slice($$i + 1)))\n }\n } else {\n _vm.showStoragePath = $$c\n }\n }\n }\n }),\n _vm._v(\" \"),\n _c(\"label\", { attrs: { for: \"showStoragePath\" } }, [\n _vm._v(_vm._s(_vm.t(\"settings\", \"Show storage path\")))\n ])\n ])\n ])\n ],\n 1\n ),\n _vm._v(\" \"),\n _c(\n \"AppContent\",\n [\n _c(\"UserList\", {\n attrs: {\n users: _vm.users,\n \"show-config\": _vm.showConfig,\n \"selected-group\": _vm.selectedGroup,\n \"external-actions\": _vm.externalActions\n },\n scopedSlots: _vm._u([\n {\n key: \"content\",\n fn: function() {\n return undefined\n },\n proxy: true\n }\n ])\n })\n ],\n 1\n )\n ],\n 1\n )\n}\nvar staticRenderFns = []\nrender._withStripped = true\n\nexport { render, staticRenderFns }","// style-loader: Adds some css to the DOM by adding a <style> tag\n\n// load the styles\nvar content = require(\"!!../../../../../node_modules/css-loader/dist/cjs.js!../../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./UserRowSimple.vue?vue&type=style&index=0&id=ff154a08&scoped=true&lang=css&\");\nif(typeof content === 'string') content = [[module.id, content, '']];\nif(content.locals) module.exports = content.locals;\n// add the styles to the DOM\nvar add = require(\"!../../../../../node_modules/vue-style-loader/lib/addStylesClient.js\").default\nvar update = add(\"70cdb6d6\", content, false, {});\n// Hot Module Replacement\nif(module.hot) {\n // When the styles change, update the <style> tags\n if(!content.locals) {\n module.hot.accept(\"!!../../../../../node_modules/css-loader/dist/cjs.js!../../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./UserRowSimple.vue?vue&type=style&index=0&id=ff154a08&scoped=true&lang=css&\", function() {\n var newContent = require(\"!!../../../../../node_modules/css-loader/dist/cjs.js!../../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./UserRowSimple.vue?vue&type=style&index=0&id=ff154a08&scoped=true&lang=css&\");\n if(typeof newContent === 'string') newContent = [[module.id, newContent, '']];\n update(newContent);\n });\n }\n // When the module is disposed, remove the <style> tags\n module.hot.dispose(function() { update(); });\n}"],"mappings":";;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,uBAiBA;AACA;AACA;;;;;;;;;;;;ACtCA;AAAA;AAAA;;;;;;;;;;;;ACAA;AAAA;AAAA;AAAA;AAAA;AAAA;;;;;;;;;;;;;ACAA;AAAA;AAAA;AAAA;AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,uBAiBA;AACA;AACA;;;;;;;;;;;;ACtCA;AAAA;AAAA;;;;;;;;;;;;ACAA;AAAA;AAAA;AAAA;AAAA;AAAA;;;;;;;;;;;;;ACAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,uBAiBA;AACA;AACA;;;;;;;;;;;;ACvCA;AAAA;AAAA;;;;;;;;;;;;ACAA;AAAA;AAAA;AAAA;AAAA;;;;;;;;;;;;ACAA;AAAA;AAAA;AAAA;AAAA;AAAA;;;;;;;;;;;;;ACAA;AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;AC/MA;AAAA;AAAA;AAAA;AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,uBAiBA;AACA;AACA;;;;;;;;;;;;ACtCA;AAAA;AAAA;;;;;;;;;;;;ACAA;AAAA;AAAA;AAAA;AAAA;AAAA;;;;;;;;;;;;;ACAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;AC5lBA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACp6BA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;AC/JA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;ACnfA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;;ACNA;AAAA;AAAA;AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;;ACzhBA;AAAA;AAAA;AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;;AC7dA;AAAA;AAAA;AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;;ACjPA;AAAA;AAAA;AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACjRA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;A","sourceRoot":""} \ No newline at end of file
+{"version":3,"file":"vue-3.js?v=e015ba955ee2bc1cd2ca","sources":["webpack:///./apps/settings/src/components/UserList.vue","webpack:///./apps/settings/src/components/UserList.vue?69dd","webpack:///./apps/settings/src/components/UserList.vue?bf93","webpack:///./apps/settings/src/components/UserList/UserRow.vue","webpack:///./apps/settings/src/components/UserList/UserRow.vue?4147","webpack:///./apps/settings/src/components/UserList/UserRow.vue?61ef","webpack:///./apps/settings/src/components/UserList/UserRow.vue?34cc","webpack:///./apps/settings/src/components/UserList/UserRowSimple.vue","webpack:///./apps/settings/src/components/UserList/UserRowSimple.vue?6483","webpack:///./apps/settings/src/components/UserList/UserRowSimple.vue?09fb","webpack:///./apps/settings/src/components/UserList/UserRowSimple.vue?2ff0","webpack:///./apps/settings/src/mixins/UserRowMixin.js","webpack:///./apps/settings/src/views/Users.vue","webpack:///./apps/settings/src/views/Users.vue?83c0","webpack:///./apps/settings/src/views/Users.vue?cc08","webpack:///./apps/settings/src/components/UserList.vue?1138","webpack:///./apps/settings/src/components/UserList/UserRow.vue?68e3","webpack:///./apps/settings/src/components/UserList/UserRowSimple.vue?4ab0","webpack:///./apps/settings/src/views/Users.vue?0f11","webpack:///./apps/settings/src/components/UserList/UserRow.vue?c164","webpack:///./apps/settings/src/components/UserList/UserRowSimple.vue?bad0","webpack:///./apps/settings/src/components/UserList.vue?6b70","webpack:///./apps/settings/src/components/UserList/UserRow.vue?2c01","webpack:///./apps/settings/src/components/UserList/UserRowSimple.vue?d051","webpack:///./apps/settings/src/views/Users.vue?d4fd","webpack:///./apps/settings/src/components/UserList/UserRow.vue?e26c","webpack:///./apps/settings/src/components/UserList/UserRowSimple.vue?49be"],"sourcesContent":["import { render, staticRenderFns } from \"./UserList.vue?vue&type=template&id=6cba3aca&\"\nimport script from \"./UserList.vue?vue&type=script&lang=js&\"\nexport * from \"./UserList.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\n/* hot reload */\nif (module.hot) {\n var api = require(\"/home/roeland/nc/server/node_modules/vue-hot-reload-api/dist/index.js\")\n api.install(require('vue'))\n if (api.compatible) {\n module.hot.accept()\n if (!api.isRecorded('6cba3aca')) {\n api.createRecord('6cba3aca', component.options)\n } else {\n api.reload('6cba3aca', component.options)\n }\n module.hot.accept(\"./UserList.vue?vue&type=template&id=6cba3aca&\", function () {\n api.rerender('6cba3aca', {\n render: render,\n staticRenderFns: staticRenderFns\n })\n })\n }\n}\ncomponent.options.__file = \"apps/settings/src/components/UserList.vue\"\nexport default component.exports","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./UserList.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./UserList.vue?vue&type=script&lang=js&\"","export * from \"-!../../../../node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./UserList.vue?vue&type=template&id=6cba3aca&\"","import { render, staticRenderFns } from \"./UserRow.vue?vue&type=template&id=77960baa&scoped=true&\"\nimport script from \"./UserRow.vue?vue&type=script&lang=js&\"\nexport * from \"./UserRow.vue?vue&type=script&lang=js&\"\nimport style0 from \"./UserRow.vue?vue&type=style&index=0&id=77960baa&scoped=true&lang=scss&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n \"77960baa\",\n null\n \n)\n\n/* hot reload */\nif (module.hot) {\n var api = require(\"/home/roeland/nc/server/node_modules/vue-hot-reload-api/dist/index.js\")\n api.install(require('vue'))\n if (api.compatible) {\n module.hot.accept()\n if (!api.isRecorded('77960baa')) {\n api.createRecord('77960baa', component.options)\n } else {\n api.reload('77960baa', component.options)\n }\n module.hot.accept(\"./UserRow.vue?vue&type=template&id=77960baa&scoped=true&\", function () {\n api.rerender('77960baa', {\n render: render,\n staticRenderFns: staticRenderFns\n })\n })\n }\n}\ncomponent.options.__file = \"apps/settings/src/components/UserList/UserRow.vue\"\nexport default component.exports","import mod from \"-!../../../../../node_modules/babel-loader/lib/index.js!../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./UserRow.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../../node_modules/babel-loader/lib/index.js!../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./UserRow.vue?vue&type=script&lang=js&\"","import mod from \"-!../../../../../node_modules/vue-style-loader/index.js!../../../../../node_modules/css-loader/dist/cjs.js!../../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../../node_modules/sass-loader/dist/cjs.js!../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./UserRow.vue?vue&type=style&index=0&id=77960baa&scoped=true&lang=scss&\"; export default mod; export * from \"-!../../../../../node_modules/vue-style-loader/index.js!../../../../../node_modules/css-loader/dist/cjs.js!../../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../../node_modules/sass-loader/dist/cjs.js!../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./UserRow.vue?vue&type=style&index=0&id=77960baa&scoped=true&lang=scss&\"","export * from \"-!../../../../../node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./UserRow.vue?vue&type=template&id=77960baa&scoped=true&\"","import { render, staticRenderFns } from \"./UserRowSimple.vue?vue&type=template&id=ff154a08&scoped=true&\"\nimport script from \"./UserRowSimple.vue?vue&type=script&lang=js&\"\nexport * from \"./UserRowSimple.vue?vue&type=script&lang=js&\"\nimport style0 from \"./UserRowSimple.vue?vue&type=style&index=0&id=ff154a08&scoped=true&lang=css&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n \"ff154a08\",\n null\n \n)\n\n/* hot reload */\nif (module.hot) {\n var api = require(\"/home/roeland/nc/server/node_modules/vue-hot-reload-api/dist/index.js\")\n api.install(require('vue'))\n if (api.compatible) {\n module.hot.accept()\n if (!api.isRecorded('ff154a08')) {\n api.createRecord('ff154a08', component.options)\n } else {\n api.reload('ff154a08', component.options)\n }\n module.hot.accept(\"./UserRowSimple.vue?vue&type=template&id=ff154a08&scoped=true&\", function () {\n api.rerender('ff154a08', {\n render: render,\n staticRenderFns: staticRenderFns\n })\n })\n }\n}\ncomponent.options.__file = \"apps/settings/src/components/UserList/UserRowSimple.vue\"\nexport default component.exports","import mod from \"-!../../../../../node_modules/babel-loader/lib/index.js!../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./UserRowSimple.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../../node_modules/babel-loader/lib/index.js!../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./UserRowSimple.vue?vue&type=script&lang=js&\"","import mod from \"-!../../../../../node_modules/vue-style-loader/index.js!../../../../../node_modules/css-loader/dist/cjs.js!../../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./UserRowSimple.vue?vue&type=style&index=0&id=ff154a08&scoped=true&lang=css&\"; export default mod; export * from \"-!../../../../../node_modules/vue-style-loader/index.js!../../../../../node_modules/css-loader/dist/cjs.js!../../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./UserRowSimple.vue?vue&type=style&index=0&id=ff154a08&scoped=true&lang=css&\"","export * from \"-!../../../../../node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./UserRowSimple.vue?vue&type=template&id=ff154a08&scoped=true&\"","function _typeof(obj) { if (typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; }; } return _typeof(obj); }\n\n/**\n * @copyright Copyright (c) 2019 John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @author John Molakvoæ <skjnldsv@protonmail.com>\n *\n * @license GNU AGPL version 3 or any later version\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n *\n */\nexport default {\n props: {\n user: {\n type: Object,\n required: true\n },\n settings: {\n type: Object,\n default: function _default() {\n return {};\n }\n },\n groups: {\n type: Array,\n default: function _default() {\n return [];\n }\n },\n subAdminsGroups: {\n type: Array,\n default: function _default() {\n return [];\n }\n },\n quotaOptions: {\n type: Array,\n default: function _default() {\n return [];\n }\n },\n showConfig: {\n type: Object,\n default: function _default() {\n return {};\n }\n },\n languages: {\n type: Array,\n required: true\n },\n externalActions: {\n type: Array,\n default: function _default() {\n return [];\n }\n }\n },\n computed: {\n /* GROUPS MANAGEMENT */\n userGroups: function userGroups() {\n var _this = this;\n\n var userGroups = this.groups.filter(function (group) {\n return _this.user.groups.includes(group.id);\n });\n return userGroups;\n },\n userSubAdminsGroups: function userSubAdminsGroups() {\n var _this2 = this;\n\n var userSubAdminsGroups = this.subAdminsGroups.filter(function (group) {\n return _this2.user.subadmin.includes(group.id);\n });\n return userSubAdminsGroups;\n },\n availableGroups: function availableGroups() {\n var _this3 = this;\n\n return this.groups.map(function (group) {\n // clone object because we don't want\n // to edit the original groups\n var groupClone = Object.assign({}, group); // two settings here:\n // 1. user NOT in group but no permission to add\n // 2. user is in group but no permission to remove\n\n groupClone.$isDisabled = group.canAdd === false && !_this3.user.groups.includes(group.id) || group.canRemove === false && _this3.user.groups.includes(group.id);\n return groupClone;\n });\n },\n\n /* QUOTA MANAGEMENT */\n usedSpace: function usedSpace() {\n if (this.user.quota.used) {\n return t('settings', '{size} used', {\n size: OC.Util.humanFileSize(this.user.quota.used)\n });\n }\n\n return t('settings', '{size} used', {\n size: OC.Util.humanFileSize(0)\n });\n },\n usedQuota: function usedQuota() {\n var quota = this.user.quota.quota;\n\n if (quota > 0) {\n quota = Math.min(100, Math.round(this.user.quota.used / quota * 100));\n } else {\n var usedInGB = this.user.quota.used / (10 * Math.pow(2, 30)); // asymptotic curve approaching 50% at 10GB to visualize used stace with infinite quota\n\n quota = 95 * (1 - 1 / (usedInGB + 1));\n }\n\n return isNaN(quota) ? 0 : quota;\n },\n // Mapping saved values to objects\n userQuota: function userQuota() {\n if (this.user.quota.quota >= 0) {\n // if value is valid, let's map the quotaOptions or return custom quota\n var humanQuota = OC.Util.humanFileSize(this.user.quota.quota);\n var userQuota = this.quotaOptions.find(function (quota) {\n return quota.id === humanQuota;\n });\n return userQuota || {\n id: humanQuota,\n label: humanQuota\n };\n } else if (this.user.quota.quota === 'default') {\n // default quota is replaced by the proper value on load\n return this.quotaOptions[0];\n }\n\n return this.quotaOptions[1]; // unlimited\n },\n\n /* PASSWORD POLICY? */\n minPasswordLength: function minPasswordLength() {\n return this.$store.getters.getPasswordPolicyMinLength;\n },\n\n /* LANGUAGE */\n userLanguage: function userLanguage() {\n var _this4 = this;\n\n var availableLanguages = this.languages[0].languages.concat(this.languages[1].languages);\n var userLang = availableLanguages.find(function (lang) {\n return lang.code === _this4.user.language;\n });\n\n if (_typeof(userLang) !== 'object' && this.user.language !== '') {\n return {\n code: this.user.language,\n name: this.user.language\n };\n } else if (this.user.language === '') {\n return false;\n }\n\n return userLang;\n },\n\n /* LAST LOGIN */\n userLastLoginTooltip: function userLastLoginTooltip() {\n if (this.user.lastLogin > 0) {\n return OC.Util.formatDate(this.user.lastLogin);\n }\n\n return '';\n },\n userLastLogin: function userLastLogin() {\n if (this.user.lastLogin > 0) {\n return OC.Util.relativeModifiedDate(this.user.lastLogin);\n }\n\n return t('settings', 'Never');\n }\n },\n methods: {\n /**\n * Generate avatar url\n *\n * @param {string} user The user name\n * @param {int} size Size integer, default 32\n * @returns {string}\n */\n generateAvatar: function generateAvatar(user) {\n var size = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : 32;\n return OC.generateUrl('/avatar/{user}/{size}?v={version}', {\n user: user,\n size: size,\n version: oc_userconfig.avatar.version\n });\n }\n }\n};","import { render, staticRenderFns } from \"./Users.vue?vue&type=template&id=889b7562&\"\nimport script from \"./Users.vue?vue&type=script&lang=js&\"\nexport * from \"./Users.vue?vue&type=script&lang=js&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n null,\n null\n \n)\n\n/* hot reload */\nif (module.hot) {\n var api = require(\"/home/roeland/nc/server/node_modules/vue-hot-reload-api/dist/index.js\")\n api.install(require('vue'))\n if (api.compatible) {\n module.hot.accept()\n if (!api.isRecorded('889b7562')) {\n api.createRecord('889b7562', component.options)\n } else {\n api.reload('889b7562', component.options)\n }\n module.hot.accept(\"./Users.vue?vue&type=template&id=889b7562&\", function () {\n api.rerender('889b7562', {\n render: render,\n staticRenderFns: staticRenderFns\n })\n })\n }\n}\ncomponent.options.__file = \"apps/settings/src/views/Users.vue\"\nexport default component.exports","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./Users.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./Users.vue?vue&type=script&lang=js&\"","export * from \"-!../../../../node_modules/vue-loader/lib/loaders/templateLoader.js??vue-loader-options!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./Users.vue?vue&type=template&id=889b7562&\"","//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\nimport userRow from './UserList/UserRow';\nimport { Multiselect, Actions, ActionButton } from 'nextcloud-vue';\nimport InfiniteLoading from 'vue-infinite-loading';\nimport Vue from 'vue';\nvar unlimitedQuota = {\n id: 'none',\n label: t('settings', 'Unlimited')\n};\nvar defaultQuota = {\n id: 'default',\n label: t('settings', 'Default quota')\n};\nvar newUser = {\n id: '',\n displayName: '',\n password: '',\n mailAddress: '',\n groups: [],\n subAdminsGroups: [],\n quota: defaultQuota,\n language: {\n code: 'en',\n name: t('settings', 'Default language')\n }\n};\nexport default {\n name: 'UserList',\n components: {\n userRow: userRow,\n Multiselect: Multiselect,\n InfiniteLoading: InfiniteLoading,\n Actions: Actions,\n ActionButton: ActionButton\n },\n props: {\n users: {\n type: Array,\n default: function _default() {\n return [];\n }\n },\n showConfig: {\n type: Object,\n required: true\n },\n selectedGroup: {\n type: String,\n default: null\n },\n externalActions: {\n type: Array,\n default: function _default() {\n return [];\n }\n }\n },\n data: function data() {\n return {\n unlimitedQuota: unlimitedQuota,\n defaultQuota: defaultQuota,\n loading: {\n all: false,\n groups: false\n },\n scrolled: false,\n searchQuery: '',\n newUser: Object.assign({}, newUser)\n };\n },\n computed: {\n settings: function settings() {\n return this.$store.getters.getServerData;\n },\n filteredUsers: function filteredUsers() {\n if (this.selectedGroup === 'disabled') {\n return this.users.filter(function (user) {\n return user.enabled === false;\n });\n }\n\n if (!this.settings.isAdmin) {\n // we don't want subadmins to edit themselves\n return this.users.filter(function (user) {\n return user.enabled !== false && user.id !== OC.getCurrentUser().uid;\n });\n }\n\n return this.users.filter(function (user) {\n return user.enabled !== false;\n });\n },\n groups: function groups() {\n // data provided php side + remove the disabled group\n return this.$store.getters.getGroups.filter(function (group) {\n return group.id !== 'disabled';\n }).sort(function (a, b) {\n return a.name.localeCompare(b.name);\n });\n },\n canAddGroups: function canAddGroups() {\n // disabled if no permission to add new users to group\n return this.groups.map(function (group) {\n // clone object because we don't want\n // to edit the original groups\n group = Object.assign({}, group);\n group.$isDisabled = group.canAdd === false;\n return group;\n });\n },\n subAdminsGroups: function subAdminsGroups() {\n // data provided php side\n return this.$store.getters.getSubadminGroups;\n },\n quotaOptions: function quotaOptions() {\n // convert the preset array into objects\n var quotaPreset = this.settings.quotaPreset.reduce(function (acc, cur) {\n return acc.concat({\n id: cur,\n label: cur\n });\n }, []); // add default presets\n\n quotaPreset.unshift(this.unlimitedQuota);\n quotaPreset.unshift(this.defaultQuota);\n return quotaPreset;\n },\n minPasswordLength: function minPasswordLength() {\n return this.$store.getters.getPasswordPolicyMinLength;\n },\n usersOffset: function usersOffset() {\n return this.$store.getters.getUsersOffset;\n },\n usersLimit: function usersLimit() {\n return this.$store.getters.getUsersLimit;\n },\n usersCount: function usersCount() {\n return this.users.length;\n },\n\n /* LANGUAGES */\n languages: function languages() {\n return [{\n label: t('settings', 'Common languages'),\n languages: this.settings.languages.commonlanguages\n }, {\n label: t('settings', 'All languages'),\n languages: this.settings.languages.languages\n }];\n }\n },\n watch: {\n // watch url change and group select\n selectedGroup: function selectedGroup(val, old) {\n // if selected is the disabled group but it's empty\n this.redirectIfDisabled();\n this.$store.commit('resetUsers');\n this.$refs.infiniteLoading.stateChanger.reset();\n this.setNewUserDefaultGroup(val);\n },\n // make sure the infiniteLoading state is changed if we manually\n // add/remove data from the store\n usersCount: function usersCount(val, old) {\n // deleting the last user, reset the list\n if (val === 0 && old === 1) {\n this.$refs.infiniteLoading.stateChanger.reset(); // adding the first user, warn the infiniteLoader that\n // the list is not empty anymore (we don't fetch the newly\n // added user as we already have all the info we need)\n } else if (val === 1 && old === 0) {\n this.$refs.infiniteLoading.stateChanger.loaded();\n }\n }\n },\n mounted: function mounted() {\n if (!this.settings.canChangePassword) {\n OC.Notification.showTemporary(t('settings', 'Password change is disabled because the master key is disabled'));\n }\n /**\n * Reset and init new user form\n */\n\n\n this.resetForm();\n /**\n * Register search\n */\n\n this.userSearch = new OCA.Search(this.search, this.resetSearch);\n /**\n * If disabled group but empty, redirect\n */\n\n this.redirectIfDisabled();\n },\n methods: {\n onScroll: function onScroll(event) {\n this.scrolled = event.target.scrollTo > 0;\n },\n\n /**\n * Validate quota string to make sure it's a valid human file size\n *\n * @param {string} quota Quota in readable format '5 GB'\n * @returns {Object}\n */\n validateQuota: function validateQuota(quota) {\n // only used for new presets sent through @Tag\n var validQuota = OC.Util.computerFileSize(quota);\n\n if (validQuota !== null && validQuota >= 0) {\n // unify format output\n quota = OC.Util.humanFileSize(OC.Util.computerFileSize(quota));\n this.newUser.quota = {\n id: quota,\n label: quota\n };\n return this.newUser.quota;\n } // Default is unlimited\n\n\n this.newUser.quota = this.quotaOptions[0];\n return this.quotaOptions[0];\n },\n infiniteHandler: function infiniteHandler($state) {\n this.$store.dispatch('getUsers', {\n offset: this.usersOffset,\n limit: this.usersLimit,\n group: this.selectedGroup !== 'disabled' ? this.selectedGroup : '',\n search: this.searchQuery\n }).then(function (response) {\n response ? $state.loaded() : $state.complete();\n });\n },\n\n /* SEARCH */\n search: function search(query) {\n this.searchQuery = query;\n this.$store.commit('resetUsers');\n this.$refs.infiniteLoading.stateChanger.reset();\n },\n resetSearch: function resetSearch() {\n this.search('');\n },\n resetForm: function resetForm() {\n // revert form to original state\n this.newUser = Object.assign({}, newUser);\n /**\n * Init default language from server data. The use of this.settings\n * requires a computed variable, which break the v-model binding of the form,\n * this is a much easier solution than getter and setter on a computed var\n */\n\n if (this.settings.defaultLanguage) {\n Vue.set(this.newUser.language, 'code', this.settings.defaultLanguage);\n }\n /**\n * In case the user directly loaded the user list within a group\n * the watch won't be triggered. We need to initialize it.\n */\n\n\n this.setNewUserDefaultGroup(this.selectedGroup);\n this.loading.all = false;\n },\n createUser: function createUser() {\n var _this = this;\n\n this.loading.all = true;\n this.$store.dispatch('addUser', {\n userid: this.newUser.id,\n password: this.newUser.password,\n displayName: this.newUser.displayName,\n email: this.newUser.mailAddress,\n groups: this.newUser.groups.map(function (group) {\n return group.id;\n }),\n subadmin: this.newUser.subAdminsGroups.map(function (group) {\n return group.id;\n }),\n quota: this.newUser.quota.id,\n language: this.newUser.language.code\n }).then(function () {\n _this.resetForm();\n\n _this.$refs.newusername.focus();\n }).catch(function (error) {\n _this.loading.all = false;\n\n if (error.response && error.response.data && error.response.data.ocs && error.response.data.ocs.meta) {\n var statuscode = error.response.data.ocs.meta.statuscode;\n\n if (statuscode === 102) {\n // wrong username\n _this.$refs.newusername.focus();\n } else if (statuscode === 107) {\n // wrong password\n _this.$refs.newuserpassword.focus();\n }\n }\n });\n },\n setNewUserDefaultGroup: function setNewUserDefaultGroup(value) {\n if (value && value.length > 0) {\n // setting new user default group to the current selected one\n var currentGroup = this.groups.find(function (group) {\n return group.id === value;\n });\n\n if (currentGroup) {\n this.newUser.groups = [currentGroup];\n return;\n }\n } // fallback, empty selected group\n\n\n this.newUser.groups = [];\n },\n\n /**\n * Create a new group\n *\n * @param {string} gid Group id\n * @returns {Promise}\n */\n createGroup: function createGroup(gid) {\n var _this2 = this;\n\n this.loading.groups = true;\n this.$store.dispatch('addGroup', gid).then(function (group) {\n _this2.newUser.groups.push(_this2.groups.find(function (group) {\n return group.id === gid;\n }));\n\n _this2.loading.groups = false;\n }).catch(function () {\n _this2.loading.groups = false;\n });\n return this.$store.getters.getGroups[this.groups.length];\n },\n\n /**\n * If the selected group is the disabled group but the count is 0\n * redirect to the all users page.\n * * we only check for 0 because we don't have the count on ldap\n * * and we therefore set the usercount to -1 in this specific case\n */\n redirectIfDisabled: function redirectIfDisabled() {\n var allGroups = this.$store.getters.getGroups;\n\n if (this.selectedGroup === 'disabled' && allGroups.findIndex(function (group) {\n return group.id === 'disabled' && group.usercount === 0;\n }) > -1) {\n // disabled group is empty, redirection to all users\n this.$router.push({\n name: 'users'\n });\n this.$refs.infiniteLoading.stateChanger.reset();\n }\n },\n onClose: function onClose() {\n this.showConfig.showNewUserForm = false;\n }\n }\n};","function asyncGeneratorStep(gen, resolve, reject, _next, _throw, key, arg) { try { var info = gen[key](arg); var value = info.value; } catch (error) { reject(error); return; } if (info.done) { resolve(value); } else { Promise.resolve(value).then(_next, _throw); } }\n\nfunction _asyncToGenerator(fn) { return function () { var self = this, args = arguments; return new Promise(function (resolve, reject) { var gen = fn.apply(self, args); function _next(value) { asyncGeneratorStep(gen, resolve, reject, _next, _throw, \"next\", value); } function _throw(err) { asyncGeneratorStep(gen, resolve, reject, _next, _throw, \"throw\", err); } _next(undefined); }); }; }\n\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\nimport ClickOutside from 'vue-click-outside';\nimport Vue from 'vue';\nimport VTooltip from 'v-tooltip';\nimport { PopoverMenu, Multiselect, Actions, ActionButton } from 'nextcloud-vue';\nimport UserRowSimple from './UserRowSimple';\nimport UserRowMixin from '../../mixins/UserRowMixin';\nVue.use(VTooltip);\nexport default {\n name: 'UserRow',\n components: {\n UserRowSimple: UserRowSimple,\n PopoverMenu: PopoverMenu,\n Actions: Actions,\n ActionButton: ActionButton,\n Multiselect: Multiselect\n },\n directives: {\n ClickOutside: ClickOutside\n },\n mixins: [UserRowMixin],\n props: {\n user: {\n type: Object,\n required: true\n },\n settings: {\n type: Object,\n default: function _default() {\n return {};\n }\n },\n groups: {\n type: Array,\n default: function _default() {\n return [];\n }\n },\n subAdminsGroups: {\n type: Array,\n default: function _default() {\n return [];\n }\n },\n quotaOptions: {\n type: Array,\n default: function _default() {\n return [];\n }\n },\n showConfig: {\n type: Object,\n default: function _default() {\n return {};\n }\n },\n languages: {\n type: Array,\n required: true\n },\n externalActions: {\n type: Array,\n default: function _default() {\n return [];\n }\n }\n },\n data: function data() {\n return {\n rand: parseInt(Math.random() * 1000),\n openedMenu: false,\n feedbackMessage: '',\n editing: false,\n loading: {\n all: false,\n displayName: false,\n password: false,\n mailAddress: false,\n groups: false,\n subadmins: false,\n quota: false,\n delete: false,\n disable: false,\n languages: false,\n wipe: false\n }\n };\n },\n computed: {\n /* USER POPOVERMENU ACTIONS */\n userActions: function userActions() {\n var actions = [{\n icon: 'icon-delete',\n text: t('settings', 'Delete user'),\n action: this.deleteUser\n }, {\n icon: 'icon-delete',\n text: t('settings', 'Wipe all devices'),\n action: this.wipeUserDevices\n }, {\n icon: this.user.enabled ? 'icon-close' : 'icon-add',\n text: this.user.enabled ? t('settings', 'Disable user') : t('settings', 'Enable user'),\n action: this.enableDisableUser\n }];\n\n if (this.user.email !== null && this.user.email !== '') {\n actions.push({\n icon: 'icon-mail',\n text: t('settings', 'Resend welcome email'),\n action: this.sendWelcomeMail\n });\n }\n\n return actions.concat(this.externalActions);\n }\n },\n methods: {\n /* MENU HANDLING */\n toggleMenu: function toggleMenu() {\n this.openedMenu = !this.openedMenu;\n },\n hideMenu: function hideMenu() {\n this.openedMenu = false;\n },\n wipeUserDevices: function wipeUserDevices() {\n var _this = this;\n\n var userid = this.user.id;\n OC.dialogs.confirmDestructive(t('settings', 'In case of lost device or exiting the organization, this can remotely wipe the Nextcloud data from all devices associated with {userid}. Only works if the devices are connected to the internet.', {\n userid: userid\n }), t('settings', 'Remote wipe of devices'), {\n type: OC.dialogs.YES_NO_BUTTONS,\n confirm: t('settings', 'Wipe {userid}\\'s devices', {\n userid: userid\n }),\n confirmClasses: 'error',\n cancel: t('settings', 'Cancel')\n }, function (result) {\n if (result) {\n _this.loading.wipe = true;\n _this.loading.all = true;\n\n _this.$store.dispatch('wipeUserDevices', userid).then(function () {\n _this.loading.wipe = false;\n _this.loading.all = false;\n });\n }\n }, true);\n },\n deleteUser: function deleteUser() {\n var _this2 = this;\n\n var userid = this.user.id;\n OC.dialogs.confirmDestructive(t('settings', 'Fully delete {userid}\\'s account including all their personal files, app data, etc.', {\n userid: userid\n }), t('settings', 'Account deletion'), {\n type: OC.dialogs.YES_NO_BUTTONS,\n confirm: t('settings', 'Delete {userid}\\'s account', {\n userid: userid\n }),\n confirmClasses: 'error',\n cancel: t('settings', 'Cancel')\n }, function (result) {\n if (result) {\n _this2.loading.delete = true;\n _this2.loading.all = true;\n return _this2.$store.dispatch('deleteUser', userid).then(function () {\n _this2.loading.delete = false;\n _this2.loading.all = false;\n });\n }\n }, true);\n },\n enableDisableUser: function enableDisableUser() {\n var _this3 = this;\n\n this.loading.delete = true;\n this.loading.all = true;\n var userid = this.user.id;\n var enabled = !this.user.enabled;\n return this.$store.dispatch('enableDisableUser', {\n userid: userid,\n enabled: enabled\n }).then(function () {\n _this3.loading.delete = false;\n _this3.loading.all = false;\n });\n },\n\n /**\n \t * Set user displayName\n \t *\n \t * @param {string} displayName The display name\n \t */\n updateDisplayName: function updateDisplayName() {\n var _this4 = this;\n\n var displayName = this.$refs.displayName.value;\n this.loading.displayName = true;\n this.$store.dispatch('setUserData', {\n userid: this.user.id,\n key: 'displayname',\n value: displayName\n }).then(function () {\n _this4.loading.displayName = false;\n _this4.$refs.displayName.value = displayName;\n });\n },\n\n /**\n \t * Set user password\n \t *\n \t * @param {string} password The email adress\n \t */\n updatePassword: function updatePassword() {\n var _this5 = this;\n\n var password = this.$refs.password.value;\n this.loading.password = true;\n this.$store.dispatch('setUserData', {\n userid: this.user.id,\n key: 'password',\n value: password\n }).then(function () {\n _this5.loading.password = false;\n _this5.$refs.password.value = ''; // empty & show placeholder\n });\n },\n\n /**\n \t * Set user mailAddress\n \t *\n \t * @param {string} mailAddress The email adress\n \t */\n updateEmail: function updateEmail() {\n var _this6 = this;\n\n var mailAddress = this.$refs.mailAddress.value;\n this.loading.mailAddress = true;\n this.$store.dispatch('setUserData', {\n userid: this.user.id,\n key: 'email',\n value: mailAddress\n }).then(function () {\n _this6.loading.mailAddress = false;\n _this6.$refs.mailAddress.value = mailAddress;\n });\n },\n\n /**\n \t * Create a new group and add user to it\n \t *\n \t * @param {string} gid Group id\n \t */\n createGroup: function () {\n var _createGroup = _asyncToGenerator(\n /*#__PURE__*/\n regeneratorRuntime.mark(function _callee(gid) {\n var userid;\n return regeneratorRuntime.wrap(function _callee$(_context) {\n while (1) {\n switch (_context.prev = _context.next) {\n case 0:\n this.loading = {\n groups: true,\n subadmins: true\n };\n _context.prev = 1;\n _context.next = 4;\n return this.$store.dispatch('addGroup', gid);\n\n case 4:\n userid = this.user.id;\n _context.next = 7;\n return this.$store.dispatch('addUserGroup', {\n userid: userid,\n gid: gid\n });\n\n case 7:\n _context.next = 12;\n break;\n\n case 9:\n _context.prev = 9;\n _context.t0 = _context[\"catch\"](1);\n console.error(_context.t0);\n\n case 12:\n _context.prev = 12;\n this.loading = {\n groups: false,\n subadmins: false\n };\n return _context.finish(12);\n\n case 15:\n return _context.abrupt(\"return\", this.$store.getters.getGroups[this.groups.length]);\n\n case 16:\n case \"end\":\n return _context.stop();\n }\n }\n }, _callee, this, [[1, 9, 12, 15]]);\n }));\n\n function createGroup(_x) {\n return _createGroup.apply(this, arguments);\n }\n\n return createGroup;\n }(),\n\n /**\n \t * Add user to group\n \t *\n \t * @param {object} group Group object\n \t */\n addUserGroup: function () {\n var _addUserGroup = _asyncToGenerator(\n /*#__PURE__*/\n regeneratorRuntime.mark(function _callee2(group) {\n var userid, gid;\n return regeneratorRuntime.wrap(function _callee2$(_context2) {\n while (1) {\n switch (_context2.prev = _context2.next) {\n case 0:\n if (!(group.canAdd === false)) {\n _context2.next = 2;\n break;\n }\n\n return _context2.abrupt(\"return\", false);\n\n case 2:\n this.loading.groups = true;\n userid = this.user.id;\n gid = group.id;\n _context2.prev = 5;\n _context2.next = 8;\n return this.$store.dispatch('addUserGroup', {\n userid: userid,\n gid: gid\n });\n\n case 8:\n _context2.next = 13;\n break;\n\n case 10:\n _context2.prev = 10;\n _context2.t0 = _context2[\"catch\"](5);\n console.error(_context2.t0);\n\n case 13:\n _context2.prev = 13;\n this.loading.groups = false;\n return _context2.finish(13);\n\n case 16:\n case \"end\":\n return _context2.stop();\n }\n }\n }, _callee2, this, [[5, 10, 13, 16]]);\n }));\n\n function addUserGroup(_x2) {\n return _addUserGroup.apply(this, arguments);\n }\n\n return addUserGroup;\n }(),\n\n /**\n \t * Remove user from group\n \t *\n \t * @param {object} group Group object\n \t */\n removeUserGroup: function () {\n var _removeUserGroup = _asyncToGenerator(\n /*#__PURE__*/\n regeneratorRuntime.mark(function _callee3(group) {\n var userid, gid;\n return regeneratorRuntime.wrap(function _callee3$(_context3) {\n while (1) {\n switch (_context3.prev = _context3.next) {\n case 0:\n if (!(group.canRemove === false)) {\n _context3.next = 2;\n break;\n }\n\n return _context3.abrupt(\"return\", false);\n\n case 2:\n this.loading.groups = true;\n userid = this.user.id;\n gid = group.id;\n _context3.prev = 5;\n _context3.next = 8;\n return this.$store.dispatch('removeUserGroup', {\n userid: userid,\n gid: gid\n });\n\n case 8:\n this.loading.groups = false; // remove user from current list if current list is the removed group\n\n if (this.$route.params.selectedGroup === gid) {\n this.$store.commit('deleteUser', userid);\n }\n\n _context3.next = 15;\n break;\n\n case 12:\n _context3.prev = 12;\n _context3.t0 = _context3[\"catch\"](5);\n this.loading.groups = false;\n\n case 15:\n case \"end\":\n return _context3.stop();\n }\n }\n }, _callee3, this, [[5, 12]]);\n }));\n\n function removeUserGroup(_x3) {\n return _removeUserGroup.apply(this, arguments);\n }\n\n return removeUserGroup;\n }(),\n\n /**\n \t * Add user to group\n \t *\n \t * @param {object} group Group object\n \t */\n addUserSubAdmin: function () {\n var _addUserSubAdmin = _asyncToGenerator(\n /*#__PURE__*/\n regeneratorRuntime.mark(function _callee4(group) {\n var userid, gid;\n return regeneratorRuntime.wrap(function _callee4$(_context4) {\n while (1) {\n switch (_context4.prev = _context4.next) {\n case 0:\n this.loading.subadmins = true;\n userid = this.user.id;\n gid = group.id;\n _context4.prev = 3;\n _context4.next = 6;\n return this.$store.dispatch('addUserSubAdmin', {\n userid: userid,\n gid: gid\n });\n\n case 6:\n this.loading.subadmins = false;\n _context4.next = 12;\n break;\n\n case 9:\n _context4.prev = 9;\n _context4.t0 = _context4[\"catch\"](3);\n console.error(_context4.t0);\n\n case 12:\n case \"end\":\n return _context4.stop();\n }\n }\n }, _callee4, this, [[3, 9]]);\n }));\n\n function addUserSubAdmin(_x4) {\n return _addUserSubAdmin.apply(this, arguments);\n }\n\n return addUserSubAdmin;\n }(),\n\n /**\n \t * Remove user from group\n \t *\n \t * @param {object} group Group object\n \t */\n removeUserSubAdmin: function () {\n var _removeUserSubAdmin = _asyncToGenerator(\n /*#__PURE__*/\n regeneratorRuntime.mark(function _callee5(group) {\n var userid, gid;\n return regeneratorRuntime.wrap(function _callee5$(_context5) {\n while (1) {\n switch (_context5.prev = _context5.next) {\n case 0:\n this.loading.subadmins = true;\n userid = this.user.id;\n gid = group.id;\n _context5.prev = 3;\n _context5.next = 6;\n return this.$store.dispatch('removeUserSubAdmin', {\n userid: userid,\n gid: gid\n });\n\n case 6:\n _context5.next = 11;\n break;\n\n case 8:\n _context5.prev = 8;\n _context5.t0 = _context5[\"catch\"](3);\n console.error(_context5.t0);\n\n case 11:\n _context5.prev = 11;\n this.loading.subadmins = false;\n return _context5.finish(11);\n\n case 14:\n case \"end\":\n return _context5.stop();\n }\n }\n }, _callee5, this, [[3, 8, 11, 14]]);\n }));\n\n function removeUserSubAdmin(_x5) {\n return _removeUserSubAdmin.apply(this, arguments);\n }\n\n return removeUserSubAdmin;\n }(),\n\n /**\n \t * Dispatch quota set request\n \t *\n \t * @param {string|Object} quota Quota in readable format '5 GB' or Object {id: '5 GB', label: '5GB'}\n \t * @returns {string}\n \t */\n setUserQuota: function () {\n var _setUserQuota = _asyncToGenerator(\n /*#__PURE__*/\n regeneratorRuntime.mark(function _callee6() {\n var quota,\n _args6 = arguments;\n return regeneratorRuntime.wrap(function _callee6$(_context6) {\n while (1) {\n switch (_context6.prev = _context6.next) {\n case 0:\n quota = _args6.length > 0 && _args6[0] !== undefined ? _args6[0] : 'none';\n this.loading.quota = true; // ensure we only send the preset id\n\n quota = quota.id ? quota.id : quota;\n _context6.prev = 3;\n _context6.next = 6;\n return this.$store.dispatch('setUserData', {\n userid: this.user.id,\n key: 'quota',\n value: quota\n });\n\n case 6:\n _context6.next = 11;\n break;\n\n case 8:\n _context6.prev = 8;\n _context6.t0 = _context6[\"catch\"](3);\n console.error(_context6.t0);\n\n case 11:\n _context6.prev = 11;\n this.loading.quota = false;\n return _context6.finish(11);\n\n case 14:\n return _context6.abrupt(\"return\", quota);\n\n case 15:\n case \"end\":\n return _context6.stop();\n }\n }\n }, _callee6, this, [[3, 8, 11, 14]]);\n }));\n\n function setUserQuota() {\n return _setUserQuota.apply(this, arguments);\n }\n\n return setUserQuota;\n }(),\n\n /**\n \t * Validate quota string to make sure it's a valid human file size\n \t *\n \t * @param {string} quota Quota in readable format '5 GB'\n \t * @returns {Promise|boolean}\n \t */\n validateQuota: function validateQuota(quota) {\n // only used for new presets sent through @Tag\n var validQuota = OC.Util.computerFileSize(quota);\n\n if (validQuota !== null && validQuota >= 0) {\n // unify format output\n return this.setUserQuota(OC.Util.humanFileSize(OC.Util.computerFileSize(quota)));\n } // if no valid do not change\n\n\n return false;\n },\n\n /**\n \t * Dispatch language set request\n \t *\n \t * @param {Object} lang language object {code:'en', name:'English'}\n \t * @returns {Object}\n \t */\n setUserLanguage: function () {\n var _setUserLanguage = _asyncToGenerator(\n /*#__PURE__*/\n regeneratorRuntime.mark(function _callee7(lang) {\n return regeneratorRuntime.wrap(function _callee7$(_context7) {\n while (1) {\n switch (_context7.prev = _context7.next) {\n case 0:\n this.loading.languages = true; // ensure we only send the preset id\n\n _context7.prev = 1;\n _context7.next = 4;\n return this.$store.dispatch('setUserData', {\n userid: this.user.id,\n key: 'language',\n value: lang.code\n });\n\n case 4:\n _context7.next = 9;\n break;\n\n case 6:\n _context7.prev = 6;\n _context7.t0 = _context7[\"catch\"](1);\n console.error(_context7.t0);\n\n case 9:\n _context7.prev = 9;\n this.loading.languages = false;\n return _context7.finish(9);\n\n case 12:\n return _context7.abrupt(\"return\", lang);\n\n case 13:\n case \"end\":\n return _context7.stop();\n }\n }\n }, _callee7, this, [[1, 6, 9, 12]]);\n }));\n\n function setUserLanguage(_x6) {\n return _setUserLanguage.apply(this, arguments);\n }\n\n return setUserLanguage;\n }(),\n\n /**\n \t * Dispatch new welcome mail request\n \t */\n sendWelcomeMail: function sendWelcomeMail() {\n var _this7 = this;\n\n this.loading.all = true;\n this.$store.dispatch('sendWelcomeMail', this.user.id).then(function (success) {\n if (success) {\n // Show feedback to indicate the success\n _this7.feedbackMessage = t('setting', 'Welcome mail sent!');\n setTimeout(function () {\n _this7.feedbackMessage = '';\n }, 2000);\n }\n\n _this7.loading.all = false;\n });\n }\n }\n};","//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\nimport { PopoverMenu, Actions, ActionButton } from 'nextcloud-vue';\nimport ClickOutside from 'vue-click-outside';\nimport { getCurrentUser } from '@nextcloud/auth';\nimport UserRowMixin from '../../mixins/UserRowMixin';\nexport default {\n name: 'UserRowSimple',\n components: {\n PopoverMenu: PopoverMenu,\n ActionButton: ActionButton,\n Actions: Actions\n },\n directives: {\n ClickOutside: ClickOutside\n },\n mixins: [UserRowMixin],\n props: {\n user: {\n type: Object,\n required: true\n },\n loading: {\n type: Object,\n required: true\n },\n showConfig: {\n type: Object,\n required: true\n },\n userActions: {\n type: Array,\n required: true\n },\n openedMenu: {\n type: Boolean,\n required: true\n },\n feedbackMessage: {\n type: String,\n required: true\n },\n subAdminsGroups: {\n type: Array,\n required: true\n },\n settings: {\n type: Object,\n required: true\n }\n },\n computed: {\n userGroupsLabels: function userGroupsLabels() {\n return this.userGroups.map(function (group) {\n return group.name;\n }).join(', ');\n },\n userSubAdminsGroupsLabels: function userSubAdminsGroupsLabels() {\n return this.userSubAdminsGroups.map(function (group) {\n return group.name;\n }).join(', ');\n },\n usedSpace: function usedSpace() {\n if (this.user.quota.used) {\n return t('settings', '{size} used', {\n size: OC.Util.humanFileSize(this.user.quota.used)\n });\n }\n\n return t('settings', '{size} used', {\n size: OC.Util.humanFileSize(0)\n });\n },\n canEdit: function canEdit() {\n return getCurrentUser().uid !== this.user.id && this.user.id !== 'admin';\n }\n },\n methods: {\n hideMenu: function hideMenu() {\n this.$emit('hideMenu');\n },\n toggleEdit: function toggleEdit() {\n this.$emit('update:editing', true);\n }\n }\n};","function _typeof(obj) { if (typeof Symbol === \"function\" && typeof Symbol.iterator === \"symbol\") { _typeof = function _typeof(obj) { return typeof obj; }; } else { _typeof = function _typeof(obj) { return obj && typeof Symbol === \"function\" && obj.constructor === Symbol && obj !== Symbol.prototype ? \"symbol\" : typeof obj; }; } return _typeof(obj); }\n\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\n//\nimport Vue from 'vue';\nimport VueLocalStorage from 'vue-localstorage';\nimport { AppContent, AppNavigation, AppNavigationItem, AppNavigationNew, AppNavigationSettings, Content, Multiselect } from 'nextcloud-vue';\nimport UserList from '../components/UserList';\nVue.use(VueLocalStorage);\nexport default {\n name: 'Users',\n components: {\n AppContent: AppContent,\n AppNavigation: AppNavigation,\n AppNavigationItem: AppNavigationItem,\n AppNavigationNew: AppNavigationNew,\n AppNavigationSettings: AppNavigationSettings,\n Content: Content,\n UserList: UserList,\n Multiselect: Multiselect\n },\n props: {\n selectedGroup: {\n type: String,\n default: null\n }\n },\n data: function data() {\n return {\n // default quota is set to unlimited\n unlimitedQuota: {\n id: 'none',\n label: t('settings', 'Unlimited')\n },\n // temporary value used for multiselect change\n selectedQuota: false,\n externalActions: [],\n showAddGroupEntry: false,\n loadingAddGroup: false,\n showConfig: {\n showStoragePath: false,\n showUserBackend: false,\n showLastLogin: false,\n showNewUserForm: false,\n showLanguages: false\n }\n };\n },\n computed: {\n users: function users() {\n return this.$store.getters.getUsers;\n },\n usersOffset: function usersOffset() {\n return this.$store.getters.getUsersOffset;\n },\n usersLimit: function usersLimit() {\n return this.$store.getters.getUsersLimit;\n },\n // Local settings\n showLanguages: {\n get: function get() {\n return this.getLocalstorage('showLanguages');\n },\n set: function set(status) {\n this.setLocalStorage('showLanguages', status);\n }\n },\n showLastLogin: {\n get: function get() {\n return this.getLocalstorage('showLastLogin');\n },\n set: function set(status) {\n this.setLocalStorage('showLastLogin', status);\n }\n },\n showUserBackend: {\n get: function get() {\n return this.getLocalstorage('showUserBackend');\n },\n set: function set(status) {\n this.setLocalStorage('showUserBackend', status);\n }\n },\n showStoragePath: {\n get: function get() {\n return this.getLocalstorage('showStoragePath');\n },\n set: function set(status) {\n this.setLocalStorage('showStoragePath', status);\n }\n },\n userCount: function userCount() {\n return this.$store.getters.getUserCount;\n },\n settings: function settings() {\n return this.$store.getters.getServerData;\n },\n // default quota\n quotaOptions: function quotaOptions() {\n // convert the preset array into objects\n var quotaPreset = this.settings.quotaPreset.reduce(function (acc, cur) {\n return acc.concat({\n id: cur,\n label: cur\n });\n }, []); // add default presets\n\n quotaPreset.unshift(this.unlimitedQuota);\n return quotaPreset;\n },\n // mapping saved values to objects\n defaultQuota: {\n get: function get() {\n if (this.selectedQuota !== false) {\n return this.selectedQuota;\n }\n\n if (this.settings.defaultQuota !== this.unlimitedQuota.id && OC.Util.computerFileSize(this.settings.defaultQuota) >= 0) {\n // if value is valid, let's map the quotaOptions or return custom quota\n return {\n id: this.settings.defaultQuota,\n label: this.settings.defaultQuota\n };\n }\n\n return this.unlimitedQuota; // unlimited\n },\n set: function set(quota) {\n this.selectedQuota = quota;\n }\n },\n // BUILD APP NAVIGATION MENU OBJECT\n menu: function menu() {\n var _this = this;\n\n // Data provided php side\n var self = this;\n var groups = this.$store.getters.getGroups;\n groups = Array.isArray(groups) ? groups : []; // Map groups\n\n groups = groups.map(function (group) {\n var item = {};\n item.id = group.id.replace(' ', '_');\n item.key = item.id;\n item.utils = {}; // router link to\n\n item.router = {\n name: 'group',\n params: {\n selectedGroup: group.id\n }\n }; // group name\n\n item.text = group.name;\n item.title = group.name; // users count for all groups\n\n if (group.usercount - group.disabled > 0 || group.usercount === -1) {\n item.utils.counter = group.usercount - group.disabled;\n }\n\n if (item.id !== 'admin' && item.id !== 'disabled' && _this.settings.isAdmin) {\n // add delete button on real groups\n item.utils.actions = [{\n icon: 'icon-delete',\n text: t('settings', 'Remove group'),\n action: function action() {\n self.removeGroup(group.id);\n }\n }];\n }\n\n return item;\n }); // Every item is added on top of the array, so we're going backward\n // Groups, separator, disabled, admin, everyone\n // Add separator\n\n var realGroups = groups.find(function (group) {\n return group.id !== 'disabled' && group.id !== 'admin';\n });\n realGroups = typeof realGroups === 'undefined' ? [] : realGroups;\n realGroups = Array.isArray(realGroups) ? realGroups : [realGroups];\n\n if (realGroups.length > 0) {\n var separator = {\n caption: true,\n text: t('settings', 'Groups')\n };\n groups.unshift(separator);\n } // Adjust admin and disabled groups\n\n\n var adminGroup = groups.find(function (group) {\n return group.id === 'admin';\n });\n var disabledGroup = groups.find(function (group) {\n return group.id === 'disabled';\n }); // filter out admin and disabled\n\n groups = groups.filter(function (group) {\n return ['admin', 'disabled'].indexOf(group.id) === -1;\n });\n\n if (adminGroup && adminGroup.text) {\n adminGroup.text = t('settings', 'Admins'); // rename admin group\n\n adminGroup.icon = 'icon-user-admin'; // set icon\n\n groups.unshift(adminGroup); // add admin group if present\n }\n\n if (disabledGroup && disabledGroup.text) {\n disabledGroup.text = t('settings', 'Disabled users'); // rename disabled group\n\n disabledGroup.icon = 'icon-disabled-users'; // set icon\n\n if (disabledGroup.utils && (disabledGroup.utils.counter > 0 // add disabled if not empty\n || disabledGroup.utils.counter === -1) // add disabled if ldap enabled\n ) {\n groups.unshift(disabledGroup);\n\n if (disabledGroup.utils.counter === -1) {\n // hides the counter instead of showing -1\n delete disabledGroup.utils.counter;\n }\n }\n } // Add everyone group\n\n\n var everyoneGroup = {\n id: 'everyone',\n key: 'everyone',\n icon: 'icon-contacts-dark',\n router: {\n name: 'users'\n },\n text: t('settings', 'Everyone')\n }; // users count\n\n if (this.userCount > 0) {\n Vue.set(everyoneGroup, 'utils', {\n counter: this.userCount\n });\n }\n\n groups.unshift(everyoneGroup);\n var addGroup = {\n id: 'addgroup',\n key: 'addgroup',\n icon: 'icon-add',\n text: t('settings', 'Add group'),\n classes: this.loadingAddGroup ? 'icon-loading-small' : ''\n };\n\n if (this.showAddGroupEntry) {\n Vue.set(addGroup, 'edit', {\n text: t('settings', 'Add group'),\n action: this.createGroup,\n reset: function reset() {\n self.showAddGroupEntry = false;\n }\n });\n addGroup.classes = 'editing';\n } else {\n Vue.set(addGroup, 'action', function () {\n self.showAddGroupEntry = true; // focus input\n\n Vue.nextTick(function () {\n window.addgroup.querySelector('form > input[type=\"text\"]').focus();\n });\n });\n }\n\n groups.unshift(addGroup);\n return groups;\n }\n },\n beforeMount: function beforeMount() {\n this.$store.commit('initGroups', {\n groups: this.$store.getters.getServerData.groups,\n orderBy: this.$store.getters.getServerData.sortGroups,\n userCount: this.$store.getters.getServerData.userCount\n });\n this.$store.dispatch('getPasswordPolicyMinLength');\n },\n created: function created() {\n // init the OCA.Settings.UserList object\n // and add the registerAction method\n Object.assign(OCA, {\n Settings: {\n UserList: {\n registerAction: this.registerAction\n }\n }\n });\n },\n methods: {\n toggleNewUserMenu: function toggleNewUserMenu() {\n this.showConfig.showNewUserForm = !this.showConfig.showNewUserForm;\n\n if (this.showConfig.showNewUserForm) {\n Vue.nextTick(function () {\n window.newusername.focus();\n });\n }\n },\n getLocalstorage: function getLocalstorage(key) {\n // force initialization\n var localConfig = this.$localStorage.get(key); // if localstorage is null, fallback to original values\n\n this.showConfig[key] = localConfig !== null ? localConfig === 'true' : this.showConfig[key];\n return this.showConfig[key];\n },\n setLocalStorage: function setLocalStorage(key, status) {\n this.showConfig[key] = status;\n this.$localStorage.set(key, status);\n return status;\n },\n removeGroup: function removeGroup(groupid) {\n var self = this; // TODO migrate to a vue js confirm dialog component\n\n OC.dialogs.confirm(t('settings', 'You are about to remove the group {group}. The users will NOT be deleted.', {\n group: groupid\n }), t('settings', 'Please confirm the group removal '), function (success) {\n if (success) {\n self.$store.dispatch('removeGroup', groupid);\n }\n });\n },\n\n /**\n * Dispatch default quota set request\n *\n * @param {string|Object} quota Quota in readable format '5 GB' or Object {id: '5 GB', label: '5GB'}\n */\n setDefaultQuota: function setDefaultQuota() {\n var _this2 = this;\n\n var quota = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : 'none';\n this.$store.dispatch('setAppConfig', {\n app: 'files',\n key: 'default_quota',\n // ensure we only send the preset id\n value: quota.id ? quota.id : quota\n }).then(function () {\n if (_typeof(quota) !== 'object') {\n quota = {\n id: quota,\n label: quota\n };\n }\n\n _this2.defaultQuota = quota;\n });\n },\n\n /**\n * Validate quota string to make sure it's a valid human file size\n *\n * @param {string} quota Quota in readable format '5 GB'\n * @returns {Promise|boolean}\n */\n validateQuota: function validateQuota(quota) {\n // only used for new presets sent through @Tag\n var validQuota = OC.Util.computerFileSize(quota);\n\n if (validQuota === null) {\n return this.setDefaultQuota('none');\n } else {\n // unify format output\n return this.setDefaultQuota(OC.Util.humanFileSize(OC.Util.computerFileSize(quota)));\n }\n },\n\n /**\n * Register a new action for the user menu\n *\n * @param {string} icon the icon class\n * @param {string} text the text to display\n * @param {Function} action the function to run\n * @returns {Array}\n */\n registerAction: function registerAction(icon, text, action) {\n this.externalActions.push({\n icon: icon,\n text: text,\n action: action\n });\n return this.externalActions;\n },\n\n /**\n * Create a new group\n *\n * @param {Object} event The form submit event\n */\n createGroup: function createGroup(event) {\n var _this3 = this;\n\n var gid = event.target[0].value;\n this.loadingAddGroup = true;\n this.$store.dispatch('addGroup', gid).then(function () {\n _this3.showAddGroupEntry = false;\n _this3.loadingAddGroup = false;\n\n _this3.$router.push({\n name: 'group',\n params: {\n selectedGroup: gid\n }\n });\n }).catch(function () {\n _this3.loadingAddGroup = false;\n });\n }\n }\n};","// Imports\nvar ___CSS_LOADER_API_IMPORT___ = require(\"../../../../../node_modules/css-loader/dist/runtime/api.js\");\nexports = ___CSS_LOADER_API_IMPORT___(false);\n// Module\nexports.push([module.id, \".row--menu-opened[data-v-77960baa] {\\n z-index: 1 !important;\\n}\\n\", \"\"]);\n// Exports\nmodule.exports = exports;\n","// Imports\nvar ___CSS_LOADER_API_IMPORT___ = require(\"../../../../../node_modules/css-loader/dist/runtime/api.js\");\nexports = ___CSS_LOADER_API_IMPORT___(false);\n// Module\nexports.push([module.id, \"\\n.cellText[data-v-ff154a08] {\\n\\toverflow: hidden;\\n\\ttext-overflow: ellipsis;\\n\\twhite-space: nowrap;\\n}\\n\", \"\"]);\n// Exports\nmodule.exports = exports;\n","var render = function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n return _c(\n \"div\",\n {\n staticClass: \"user-list-grid\",\n attrs: { id: \"app-content\" },\n on: {\n \"&scroll\": function($event) {\n return _vm.onScroll($event)\n }\n }\n },\n [\n _c(\n \"form\",\n {\n directives: [\n {\n name: \"show\",\n rawName: \"v-show\",\n value: _vm.showConfig.showNewUserForm,\n expression: \"showConfig.showNewUserForm\"\n }\n ],\n staticClass: \"row\",\n class: { sticky: _vm.scrolled && _vm.showConfig.showNewUserForm },\n attrs: { id: \"new-user\", disabled: _vm.loading.all },\n on: {\n submit: function($event) {\n $event.preventDefault()\n return _vm.createUser($event)\n }\n }\n },\n [\n _c(\"div\", {\n class: _vm.loading.all ? \"icon-loading-small\" : \"icon-add\"\n }),\n _vm._v(\" \"),\n _c(\"div\", { staticClass: \"name\" }, [\n _c(\"input\", {\n directives: [\n {\n name: \"model\",\n rawName: \"v-model\",\n value: _vm.newUser.id,\n expression: \"newUser.id\"\n }\n ],\n ref: \"newusername\",\n attrs: {\n id: \"newusername\",\n disabled: _vm.settings.newUserGenerateUserID,\n placeholder: _vm.settings.newUserGenerateUserID\n ? _vm.t(\"settings\", \"Will be autogenerated\")\n : _vm.t(\"settings\", \"Username\"),\n autocapitalize: \"none\",\n autocomplete: \"off\",\n autocorrect: \"off\",\n name: \"username\",\n pattern: \"[a-zA-Z0-9 _\\\\.@\\\\-']+\",\n required: \"\",\n type: \"text\"\n },\n domProps: { value: _vm.newUser.id },\n on: {\n input: function($event) {\n if ($event.target.composing) {\n return\n }\n _vm.$set(_vm.newUser, \"id\", $event.target.value)\n }\n }\n }),\n _vm._v(\" \"),\n _c(\"div\", { staticClass: \"displayName\" }, [\n _c(\"input\", {\n directives: [\n {\n name: \"model\",\n rawName: \"v-model\",\n value: _vm.newUser.displayName,\n expression: \"newUser.displayName\"\n }\n ],\n attrs: {\n id: \"newdisplayname\",\n placeholder: _vm.t(\"settings\", \"Display name\"),\n autocapitalize: \"none\",\n autocomplete: \"off\",\n autocorrect: \"off\",\n name: \"displayname\",\n type: \"text\"\n },\n domProps: { value: _vm.newUser.displayName },\n on: {\n input: function($event) {\n if ($event.target.composing) {\n return\n }\n _vm.$set(_vm.newUser, \"displayName\", $event.target.value)\n }\n }\n })\n ])\n ]),\n _vm._v(\" \"),\n _c(\"div\", { staticClass: \"password\" }, [\n _c(\"input\", {\n directives: [\n {\n name: \"model\",\n rawName: \"v-model\",\n value: _vm.newUser.password,\n expression: \"newUser.password\"\n }\n ],\n ref: \"newuserpassword\",\n attrs: {\n id: \"newuserpassword\",\n minlength: _vm.minPasswordLength,\n placeholder: _vm.t(\"settings\", \"Password\"),\n required: _vm.newUser.mailAddress === \"\",\n autocapitalize: \"none\",\n autocomplete: \"new-password\",\n autocorrect: \"off\",\n name: \"password\",\n type: \"password\"\n },\n domProps: { value: _vm.newUser.password },\n on: {\n input: function($event) {\n if ($event.target.composing) {\n return\n }\n _vm.$set(_vm.newUser, \"password\", $event.target.value)\n }\n }\n })\n ]),\n _vm._v(\" \"),\n _c(\"div\", { staticClass: \"mailAddress\" }, [\n _c(\"input\", {\n directives: [\n {\n name: \"model\",\n rawName: \"v-model\",\n value: _vm.newUser.mailAddress,\n expression: \"newUser.mailAddress\"\n }\n ],\n attrs: {\n id: \"newemail\",\n placeholder: _vm.t(\"settings\", \"Email\"),\n required:\n _vm.newUser.password === \"\" ||\n _vm.settings.newUserRequireEmail,\n autocapitalize: \"none\",\n autocomplete: \"off\",\n autocorrect: \"off\",\n name: \"email\",\n type: \"email\"\n },\n domProps: { value: _vm.newUser.mailAddress },\n on: {\n input: function($event) {\n if ($event.target.composing) {\n return\n }\n _vm.$set(_vm.newUser, \"mailAddress\", $event.target.value)\n }\n }\n })\n ]),\n _vm._v(\" \"),\n _c(\n \"div\",\n { staticClass: \"groups\" },\n [\n !_vm.settings.isAdmin\n ? _c(\"input\", {\n class: { \"icon-loading-small\": _vm.loading.groups },\n attrs: {\n id: \"newgroups\",\n required: !_vm.settings.isAdmin,\n tabindex: \"-1\",\n type: \"text\"\n },\n domProps: { value: _vm.newUser.groups }\n })\n : _vm._e(),\n _vm._v(\" \"),\n _c(\n \"Multiselect\",\n {\n staticClass: \"multiselect-vue\",\n attrs: {\n \"close-on-select\": false,\n disabled: _vm.loading.groups || _vm.loading.all,\n multiple: true,\n options: _vm.canAddGroups,\n placeholder: _vm.t(\"settings\", \"Add user in group\"),\n \"tag-width\": 60,\n taggable: true,\n label: \"name\",\n \"tag-placeholder\": \"create\",\n \"track-by\": \"id\"\n },\n on: { tag: _vm.createGroup },\n model: {\n value: _vm.newUser.groups,\n callback: function($$v) {\n _vm.$set(_vm.newUser, \"groups\", $$v)\n },\n expression: \"newUser.groups\"\n }\n },\n [\n _c(\n \"span\",\n { attrs: { slot: \"noResult\" }, slot: \"noResult\" },\n [_vm._v(_vm._s(_vm.t(\"settings\", \"No results\")))]\n )\n ]\n )\n ],\n 1\n ),\n _vm._v(\" \"),\n _vm.subAdminsGroups.length > 0 && _vm.settings.isAdmin\n ? _c(\n \"div\",\n { staticClass: \"subadmins\" },\n [\n _c(\n \"Multiselect\",\n {\n staticClass: \"multiselect-vue\",\n attrs: {\n \"close-on-select\": false,\n multiple: true,\n options: _vm.subAdminsGroups,\n placeholder: _vm.t(\"settings\", \"Set user as admin for\"),\n \"tag-width\": 60,\n label: \"name\",\n \"track-by\": \"id\"\n },\n model: {\n value: _vm.newUser.subAdminsGroups,\n callback: function($$v) {\n _vm.$set(_vm.newUser, \"subAdminsGroups\", $$v)\n },\n expression: \"newUser.subAdminsGroups\"\n }\n },\n [\n _c(\n \"span\",\n { attrs: { slot: \"noResult\" }, slot: \"noResult\" },\n [_vm._v(_vm._s(_vm.t(\"settings\", \"No results\")))]\n )\n ]\n )\n ],\n 1\n )\n : _vm._e(),\n _vm._v(\" \"),\n _c(\n \"div\",\n { staticClass: \"quota\" },\n [\n _c(\"Multiselect\", {\n staticClass: \"multiselect-vue\",\n attrs: {\n \"allow-empty\": false,\n options: _vm.quotaOptions,\n placeholder: _vm.t(\"settings\", \"Select user quota\"),\n taggable: true,\n label: \"label\",\n \"track-by\": \"id\"\n },\n on: { tag: _vm.validateQuota },\n model: {\n value: _vm.newUser.quota,\n callback: function($$v) {\n _vm.$set(_vm.newUser, \"quota\", $$v)\n },\n expression: \"newUser.quota\"\n }\n })\n ],\n 1\n ),\n _vm._v(\" \"),\n _vm.showConfig.showLanguages\n ? _c(\n \"div\",\n { staticClass: \"languages\" },\n [\n _c(\"Multiselect\", {\n staticClass: \"multiselect-vue\",\n attrs: {\n \"allow-empty\": false,\n options: _vm.languages,\n placeholder: _vm.t(\"settings\", \"Default language\"),\n \"group-label\": \"label\",\n \"group-values\": \"languages\",\n label: \"name\",\n \"track-by\": \"code\"\n },\n model: {\n value: _vm.newUser.language,\n callback: function($$v) {\n _vm.$set(_vm.newUser, \"language\", $$v)\n },\n expression: \"newUser.language\"\n }\n })\n ],\n 1\n )\n : _vm._e(),\n _vm._v(\" \"),\n _vm.showConfig.showStoragePath\n ? _c(\"div\", { staticClass: \"storageLocation\" })\n : _vm._e(),\n _vm._v(\" \"),\n _vm.showConfig.showUserBackend\n ? _c(\"div\", { staticClass: \"userBackend\" })\n : _vm._e(),\n _vm._v(\" \"),\n _vm.showConfig.showLastLogin\n ? _c(\"div\", { staticClass: \"lastLogin\" })\n : _vm._e(),\n _vm._v(\" \"),\n _c(\"div\", { staticClass: \"userActions\" }, [\n _c(\"input\", {\n staticClass: \"button primary icon-checkmark-white has-tooltip\",\n attrs: {\n id: \"newsubmit\",\n title: _vm.t(\"settings\", \"Add a new user\"),\n type: \"submit\",\n value: \"\"\n }\n }),\n _vm._v(\" \"),\n _c(\n \"div\",\n { staticClass: \"closeButton\" },\n [\n _c(\n \"Actions\",\n [\n _c(\n \"ActionButton\",\n {\n attrs: { icon: \"icon-close\" },\n on: { click: _vm.onClose }\n },\n [\n _vm._v(\n \"\\n\\t\\t\\t\\t\\t\\t\" +\n _vm._s(_vm.t(\"settings\", \"Close\")) +\n \"\\n\\t\\t\\t\\t\\t\"\n )\n ]\n )\n ],\n 1\n )\n ],\n 1\n )\n ])\n ]\n ),\n _vm._v(\" \"),\n _c(\n \"div\",\n {\n staticClass: \"row\",\n class: { sticky: _vm.scrolled && !_vm.showConfig.showNewUserForm },\n attrs: { id: \"grid-header\" }\n },\n [\n _c(\"div\", { staticClass: \"avatar\", attrs: { id: \"headerAvatar\" } }),\n _vm._v(\" \"),\n _c(\"div\", { staticClass: \"name\", attrs: { id: \"headerName\" } }, [\n _vm._v(\n \"\\n\\t\\t\\t\" + _vm._s(_vm.t(\"settings\", \"Username\")) + \"\\n\\n\\t\\t\\t\"\n ),\n _c(\"div\", { staticClass: \"subtitle\" }, [\n _vm._v(\n \"\\n\\t\\t\\t\\t\" +\n _vm._s(_vm.t(\"settings\", \"Display name\")) +\n \"\\n\\t\\t\\t\"\n )\n ])\n ]),\n _vm._v(\" \"),\n _c(\n \"div\",\n { staticClass: \"password\", attrs: { id: \"headerPassword\" } },\n [\n _vm._v(\n \"\\n\\t\\t\\t\" + _vm._s(_vm.t(\"settings\", \"Password\")) + \"\\n\\t\\t\"\n )\n ]\n ),\n _vm._v(\" \"),\n _c(\n \"div\",\n { staticClass: \"mailAddress\", attrs: { id: \"headerAddress\" } },\n [_vm._v(\"\\n\\t\\t\\t\" + _vm._s(_vm.t(\"settings\", \"Email\")) + \"\\n\\t\\t\")]\n ),\n _vm._v(\" \"),\n _c(\"div\", { staticClass: \"groups\", attrs: { id: \"headerGroups\" } }, [\n _vm._v(\"\\n\\t\\t\\t\" + _vm._s(_vm.t(\"settings\", \"Groups\")) + \"\\n\\t\\t\")\n ]),\n _vm._v(\" \"),\n _vm.subAdminsGroups.length > 0 && _vm.settings.isAdmin\n ? _c(\n \"div\",\n { staticClass: \"subadmins\", attrs: { id: \"headerSubAdmins\" } },\n [\n _vm._v(\n \"\\n\\t\\t\\t\" +\n _vm._s(_vm.t(\"settings\", \"Group admin for\")) +\n \"\\n\\t\\t\"\n )\n ]\n )\n : _vm._e(),\n _vm._v(\" \"),\n _c(\"div\", { staticClass: \"quota\", attrs: { id: \"headerQuota\" } }, [\n _vm._v(\"\\n\\t\\t\\t\" + _vm._s(_vm.t(\"settings\", \"Quota\")) + \"\\n\\t\\t\")\n ]),\n _vm._v(\" \"),\n _vm.showConfig.showLanguages\n ? _c(\n \"div\",\n { staticClass: \"languages\", attrs: { id: \"headerLanguages\" } },\n [\n _vm._v(\n \"\\n\\t\\t\\t\" +\n _vm._s(_vm.t(\"settings\", \"Language\")) +\n \"\\n\\t\\t\"\n )\n ]\n )\n : _vm._e(),\n _vm._v(\" \"),\n _vm.showConfig.showUserBackend || _vm.showConfig.showStoragePath\n ? _c(\"div\", { staticClass: \"headerUserBackend userBackend\" }, [\n _vm.showConfig.showUserBackend\n ? _c(\"div\", { staticClass: \"userBackend\" }, [\n _vm._v(\n \"\\n\\t\\t\\t\\t\" +\n _vm._s(_vm.t(\"settings\", \"User backend\")) +\n \"\\n\\t\\t\\t\"\n )\n ])\n : _vm._e(),\n _vm._v(\" \"),\n _vm.showConfig.showStoragePath\n ? _c(\"div\", { staticClass: \"subtitle storageLocation\" }, [\n _vm._v(\n \"\\n\\t\\t\\t\\t\" +\n _vm._s(_vm.t(\"settings\", \"Storage location\")) +\n \"\\n\\t\\t\\t\"\n )\n ])\n : _vm._e()\n ])\n : _vm._e(),\n _vm._v(\" \"),\n _vm.showConfig.showLastLogin\n ? _c(\"div\", { staticClass: \"headerLastLogin lastLogin\" }, [\n _vm._v(\n \"\\n\\t\\t\\t\" +\n _vm._s(_vm.t(\"settings\", \"Last login\")) +\n \"\\n\\t\\t\"\n )\n ])\n : _vm._e(),\n _vm._v(\" \"),\n _c(\"div\", { staticClass: \"userActions\" })\n ]\n ),\n _vm._v(\" \"),\n _vm._l(_vm.filteredUsers, function(user, key) {\n return _c(\"user-row\", {\n key: key,\n attrs: {\n \"external-actions\": _vm.externalActions,\n groups: _vm.groups,\n languages: _vm.languages,\n \"quota-options\": _vm.quotaOptions,\n settings: _vm.settings,\n \"show-config\": _vm.showConfig,\n \"sub-admins-groups\": _vm.subAdminsGroups,\n user: user\n }\n })\n }),\n _vm._v(\" \"),\n _c(\n \"InfiniteLoading\",\n { ref: \"infiniteLoading\", on: { infinite: _vm.infiniteHandler } },\n [\n _c(\"div\", { attrs: { slot: \"spinner\" }, slot: \"spinner\" }, [\n _c(\"div\", { staticClass: \"users-icon-loading icon-loading\" })\n ]),\n _vm._v(\" \"),\n _c(\"div\", { attrs: { slot: \"no-more\" }, slot: \"no-more\" }, [\n _c(\"div\", { staticClass: \"users-list-end\" })\n ]),\n _vm._v(\" \"),\n _c(\"div\", { attrs: { slot: \"no-results\" }, slot: \"no-results\" }, [\n _c(\"div\", { attrs: { id: \"emptycontent\" } }, [\n _c(\"div\", { staticClass: \"icon-contacts-dark\" }),\n _vm._v(\" \"),\n _c(\"h2\", [_vm._v(_vm._s(_vm.t(\"settings\", \"No users in here\")))])\n ])\n ])\n ]\n )\n ],\n 2\n )\n}\nvar staticRenderFns = []\nrender._withStripped = true\n\nexport { render, staticRenderFns }","var render = function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n return Object.keys(_vm.user).length === 1\n ? _c(\"div\", { staticClass: \"row\", attrs: { \"data-id\": _vm.user.id } }, [\n _c(\n \"div\",\n {\n staticClass: \"avatar\",\n class: {\n \"icon-loading-small\":\n _vm.loading.delete || _vm.loading.disable || _vm.loading.wipe\n }\n },\n [\n !_vm.loading.delete && !_vm.loading.disable && !_vm.loading.wipe\n ? _c(\"img\", {\n attrs: {\n src: _vm.generateAvatar(_vm.user.id, 32),\n srcset:\n _vm.generateAvatar(_vm.user.id, 64) +\n \" 2x, \" +\n _vm.generateAvatar(_vm.user.id, 128) +\n \" 4x\",\n alt: \"\",\n height: \"32\",\n width: \"32\"\n }\n })\n : _vm._e()\n ]\n ),\n _vm._v(\" \"),\n _c(\"div\", { staticClass: \"name\" }, [\n _vm._v(\"\\n\\t\\t\" + _vm._s(_vm.user.id) + \"\\n\\t\")\n ]),\n _vm._v(\" \"),\n _c(\"div\", { staticClass: \"obfuscated\" }, [\n _vm._v(\n \"\\n\\t\\t\" +\n _vm._s(\n _vm.t(\n \"settings\",\n \"You do not have permissions to see the details of this user\"\n )\n ) +\n \"\\n\\t\"\n )\n ])\n ])\n : !_vm.editing\n ? _c(\"UserRowSimple\", {\n class: { \"row--menu-opened\": _vm.openedMenu },\n attrs: {\n editing: _vm.editing,\n \"feedback-message\": _vm.feedbackMessage,\n groups: _vm.groups,\n languages: _vm.languages,\n loading: _vm.loading,\n \"opened-menu\": _vm.openedMenu,\n settings: _vm.settings,\n \"show-config\": _vm.showConfig,\n \"sub-admins-groups\": _vm.subAdminsGroups,\n \"user-actions\": _vm.userActions,\n user: _vm.user\n },\n on: {\n \"update:editing\": function($event) {\n _vm.editing = $event\n },\n hideMenu: _vm.hideMenu,\n toggleMenu: _vm.toggleMenu\n }\n })\n : _c(\n \"div\",\n {\n staticClass: \"row row--editable\",\n class: {\n disabled: _vm.loading.delete || _vm.loading.disable,\n \"row--menu-opened\": _vm.openedMenu\n },\n attrs: { \"data-id\": _vm.user.id }\n },\n [\n _c(\n \"div\",\n {\n staticClass: \"avatar\",\n class: {\n \"icon-loading-small\":\n _vm.loading.delete || _vm.loading.disable || _vm.loading.wipe\n }\n },\n [\n !_vm.loading.delete && !_vm.loading.disable && !_vm.loading.wipe\n ? _c(\"img\", {\n attrs: {\n src: _vm.generateAvatar(_vm.user.id, 32),\n srcset:\n _vm.generateAvatar(_vm.user.id, 64) +\n \" 2x, \" +\n _vm.generateAvatar(_vm.user.id, 128) +\n \" 4x\",\n alt: \"\",\n height: \"32\",\n width: \"32\"\n }\n })\n : _vm._e()\n ]\n ),\n _vm._v(\" \"),\n _c(\"div\", { staticClass: \"displayName\" }, [\n _c(\n \"form\",\n {\n staticClass: \"displayName\",\n class: { \"icon-loading-small\": _vm.loading.displayName },\n on: {\n submit: function($event) {\n $event.preventDefault()\n return _vm.updateDisplayName($event)\n }\n }\n },\n [\n _vm.user.backendCapabilities.setDisplayName\n ? [\n _vm.user.backendCapabilities.setDisplayName\n ? _c(\"input\", {\n ref: \"displayName\",\n attrs: {\n id: \"displayName\" + _vm.user.id + _vm.rand,\n disabled:\n _vm.loading.displayName || _vm.loading.all,\n autocapitalize: \"off\",\n autocomplete: \"new-password\",\n autocorrect: \"off\",\n spellcheck: \"false\",\n type: \"text\"\n },\n domProps: { value: _vm.user.displayname }\n })\n : _vm._e(),\n _vm._v(\" \"),\n _vm.user.backendCapabilities.setDisplayName\n ? _c(\"input\", {\n staticClass: \"icon-confirm\",\n attrs: { type: \"submit\", value: \"\" }\n })\n : _vm._e()\n ]\n : _c(\"div\", {\n directives: [\n {\n name: \"tooltip\",\n rawName: \"v-tooltip.auto\",\n value: _vm.t(\n \"settings\",\n \"The backend does not support changing the display name\"\n ),\n expression:\n \"t('settings', 'The backend does not support changing the display name')\",\n modifiers: { auto: true }\n }\n ],\n staticClass: \"name\"\n })\n ],\n 2\n )\n ]),\n _vm._v(\" \"),\n _vm.settings.canChangePassword &&\n _vm.user.backendCapabilities.setPassword\n ? _c(\n \"form\",\n {\n staticClass: \"password\",\n class: { \"icon-loading-small\": _vm.loading.password },\n on: {\n submit: function($event) {\n $event.preventDefault()\n return _vm.updatePassword($event)\n }\n }\n },\n [\n _c(\"input\", {\n ref: \"password\",\n attrs: {\n id: \"password\" + _vm.user.id + _vm.rand,\n disabled: _vm.loading.password || _vm.loading.all,\n minlength: _vm.minPasswordLength,\n placeholder: _vm.t(\"settings\", \"Add new password\"),\n autocapitalize: \"off\",\n autocomplete: \"new-password\",\n autocorrect: \"off\",\n required: \"\",\n spellcheck: \"false\",\n type: \"password\",\n value: \"\"\n }\n }),\n _vm._v(\" \"),\n _c(\"input\", {\n staticClass: \"icon-confirm\",\n attrs: { type: \"submit\", value: \"\" }\n })\n ]\n )\n : _c(\"div\"),\n _vm._v(\" \"),\n _c(\n \"form\",\n {\n staticClass: \"mailAddress\",\n class: { \"icon-loading-small\": _vm.loading.mailAddress },\n on: {\n submit: function($event) {\n $event.preventDefault()\n return _vm.updateEmail($event)\n }\n }\n },\n [\n _c(\"input\", {\n ref: \"mailAddress\",\n attrs: {\n id: \"mailAddress\" + _vm.user.id + _vm.rand,\n disabled: _vm.loading.mailAddress || _vm.loading.all,\n placeholder: _vm.t(\"settings\", \"Add new email address\"),\n autocapitalize: \"off\",\n autocomplete: \"new-password\",\n autocorrect: \"off\",\n spellcheck: \"false\",\n type: \"email\"\n },\n domProps: { value: _vm.user.email }\n }),\n _vm._v(\" \"),\n _c(\"input\", {\n staticClass: \"icon-confirm\",\n attrs: { type: \"submit\", value: \"\" }\n })\n ]\n ),\n _vm._v(\" \"),\n _c(\n \"div\",\n {\n staticClass: \"groups\",\n class: { \"icon-loading-small\": _vm.loading.groups }\n },\n [\n _c(\n \"Multiselect\",\n {\n staticClass: \"multiselect-vue\",\n attrs: {\n \"close-on-select\": false,\n disabled: _vm.loading.groups || _vm.loading.all,\n limit: 2,\n multiple: true,\n options: _vm.availableGroups,\n placeholder: _vm.t(\"settings\", \"Add user in group\"),\n \"tag-width\": 60,\n taggable: _vm.settings.isAdmin,\n value: _vm.userGroups,\n label: \"name\",\n \"tag-placeholder\": \"create\",\n \"track-by\": \"id\"\n },\n on: {\n remove: _vm.removeUserGroup,\n select: _vm.addUserGroup,\n tag: _vm.createGroup\n }\n },\n [\n _c(\n \"span\",\n { attrs: { slot: \"noResult\" }, slot: \"noResult\" },\n [_vm._v(_vm._s(_vm.t(\"settings\", \"No results\")))]\n )\n ]\n )\n ],\n 1\n ),\n _vm._v(\" \"),\n _vm.subAdminsGroups.length > 0 && _vm.settings.isAdmin\n ? _c(\n \"div\",\n {\n staticClass: \"subadmins\",\n class: { \"icon-loading-small\": _vm.loading.subadmins }\n },\n [\n _c(\n \"Multiselect\",\n {\n staticClass: \"multiselect-vue\",\n attrs: {\n \"close-on-select\": false,\n disabled: _vm.loading.subadmins || _vm.loading.all,\n limit: 2,\n multiple: true,\n options: _vm.subAdminsGroups,\n placeholder: _vm.t(\"settings\", \"Set user as admin for\"),\n \"tag-width\": 60,\n value: _vm.userSubAdminsGroups,\n label: \"name\",\n \"track-by\": \"id\"\n },\n on: {\n remove: _vm.removeUserSubAdmin,\n select: _vm.addUserSubAdmin\n }\n },\n [\n _c(\n \"span\",\n { attrs: { slot: \"noResult\" }, slot: \"noResult\" },\n [_vm._v(_vm._s(_vm.t(\"settings\", \"No results\")))]\n )\n ]\n )\n ],\n 1\n )\n : _vm._e(),\n _vm._v(\" \"),\n _c(\n \"div\",\n {\n directives: [\n {\n name: \"tooltip\",\n rawName: \"v-tooltip.auto\",\n value: _vm.usedSpace,\n expression: \"usedSpace\",\n modifiers: { auto: true }\n }\n ],\n staticClass: \"quota\",\n class: { \"icon-loading-small\": _vm.loading.quota }\n },\n [\n _c(\"Multiselect\", {\n staticClass: \"multiselect-vue\",\n attrs: {\n \"allow-empty\": false,\n disabled: _vm.loading.quota || _vm.loading.all,\n options: _vm.quotaOptions,\n placeholder: _vm.t(\"settings\", \"Select user quota\"),\n taggable: true,\n value: _vm.userQuota,\n label: \"label\",\n \"tag-placeholder\": \"create\",\n \"track-by\": \"id\"\n },\n on: { input: _vm.setUserQuota, tag: _vm.validateQuota }\n })\n ],\n 1\n ),\n _vm._v(\" \"),\n _vm.showConfig.showLanguages\n ? _c(\n \"div\",\n {\n staticClass: \"languages\",\n class: { \"icon-loading-small\": _vm.loading.languages }\n },\n [\n _c(\"Multiselect\", {\n staticClass: \"multiselect-vue\",\n attrs: {\n \"allow-empty\": false,\n disabled: _vm.loading.languages || _vm.loading.all,\n options: _vm.languages,\n placeholder: _vm.t(\"settings\", \"No language set\"),\n value: _vm.userLanguage,\n \"group-label\": \"label\",\n \"group-values\": \"languages\",\n label: \"name\",\n \"track-by\": \"code\"\n },\n on: { input: _vm.setUserLanguage }\n })\n ],\n 1\n )\n : _vm._e(),\n _vm._v(\" \"),\n _vm.showConfig.showStoragePath || _vm.showConfig.showUserBackend\n ? _c(\"div\", { staticClass: \"storageLocation\" })\n : _vm._e(),\n _vm._v(\" \"),\n _vm.showConfig.showLastLogin ? _c(\"div\") : _vm._e(),\n _vm._v(\" \"),\n _c(\"div\", { staticClass: \"userActions\" }, [\n _vm.OC.currentUser !== _vm.user.id &&\n _vm.user.id !== \"admin\" &&\n !_vm.loading.all\n ? _c(\n \"div\",\n { staticClass: \"toggleUserActions\" },\n [\n _c(\n \"Actions\",\n [\n _c(\n \"ActionButton\",\n {\n attrs: { icon: \"icon-checkmark\" },\n on: {\n click: function($event) {\n _vm.editing = false\n }\n }\n },\n [\n _vm._v(\n \"\\n\\t\\t\\t\\t\\t\" +\n _vm._s(_vm.t(\"settings\", \"Done\")) +\n \"\\n\\t\\t\\t\\t\"\n )\n ]\n )\n ],\n 1\n ),\n _vm._v(\" \"),\n _c(\"div\", {\n directives: [\n {\n name: \"click-outside\",\n rawName: \"v-click-outside\",\n value: _vm.hideMenu,\n expression: \"hideMenu\"\n }\n ],\n staticClass: \"icon-more\",\n on: { click: _vm.toggleMenu }\n }),\n _vm._v(\" \"),\n _c(\n \"div\",\n {\n staticClass: \"popovermenu\",\n class: { open: _vm.openedMenu }\n },\n [_c(\"PopoverMenu\", { attrs: { menu: _vm.userActions } })],\n 1\n )\n ],\n 1\n )\n : _vm._e(),\n _vm._v(\" \"),\n _c(\n \"div\",\n {\n staticClass: \"feedback\",\n style: { opacity: _vm.feedbackMessage !== \"\" ? 1 : 0 }\n },\n [\n _c(\"div\", { staticClass: \"icon-checkmark\" }),\n _vm._v(\"\\n\\t\\t\\t\" + _vm._s(_vm.feedbackMessage) + \"\\n\\t\\t\")\n ]\n )\n ])\n ]\n )\n}\nvar staticRenderFns = []\nrender._withStripped = true\n\nexport { render, staticRenderFns }","var render = function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n return _c(\n \"div\",\n {\n staticClass: \"row\",\n class: { disabled: _vm.loading.delete || _vm.loading.disable },\n attrs: { \"data-id\": _vm.user.id }\n },\n [\n _c(\n \"div\",\n {\n staticClass: \"avatar\",\n class: {\n \"icon-loading-small\":\n _vm.loading.delete || _vm.loading.disable || _vm.loading.wipe\n }\n },\n [\n !_vm.loading.delete && !_vm.loading.disable && !_vm.loading.wipe\n ? _c(\"img\", {\n attrs: {\n alt: \"\",\n width: \"32\",\n height: \"32\",\n src: _vm.generateAvatar(_vm.user.id, 32),\n srcset:\n _vm.generateAvatar(_vm.user.id, 64) +\n \" 2x, \" +\n _vm.generateAvatar(_vm.user.id, 128) +\n \" 4x\"\n }\n })\n : _vm._e()\n ]\n ),\n _vm._v(\" \"),\n _c(\"div\", { staticClass: \"name\" }, [\n _vm._v(\"\\n\\t\\t\" + _vm._s(_vm.user.id) + \"\\n\\t\\t\"),\n _c(\"div\", { staticClass: \"displayName subtitle\" }, [\n _c(\n \"div\",\n {\n directives: [\n {\n name: \"tooltip\",\n rawName: \"v-tooltip\",\n value:\n _vm.user.displayname.length > 20\n ? _vm.user.displayname\n : \"\",\n expression:\n \"user.displayname.length > 20 ? user.displayname : ''\"\n }\n ],\n staticClass: \"cellText\"\n },\n [_vm._v(\"\\n\\t\\t\\t\\t\" + _vm._s(_vm.user.displayname) + \"\\n\\t\\t\\t\")]\n )\n ])\n ]),\n _vm._v(\" \"),\n _c(\"div\"),\n _vm._v(\" \"),\n _c(\"div\", { staticClass: \"mailAddress\" }, [\n _c(\n \"div\",\n {\n directives: [\n {\n name: \"tooltip\",\n rawName: \"v-tooltip\",\n value:\n _vm.user.email !== null && _vm.user.email.length > 20\n ? _vm.user.email\n : \"\",\n expression:\n \"user.email !== null && user.email.length > 20 ? user.email : ''\"\n }\n ],\n staticClass: \"cellText\"\n },\n [_vm._v(\"\\n\\t\\t\\t\" + _vm._s(_vm.user.email) + \"\\n\\t\\t\")]\n )\n ]),\n _vm._v(\" \"),\n _c(\"div\", { staticClass: \"groups\" }, [\n _vm._v(\"\\n\\t\\t\" + _vm._s(_vm.userGroupsLabels) + \"\\n\\t\")\n ]),\n _vm._v(\" \"),\n _vm.subAdminsGroups.length > 0 && _vm.settings.isAdmin\n ? _c(\"div\", { staticClass: \"subAdminsGroups\" }, [\n _vm._v(\"\\n\\t\\t\" + _vm._s(_vm.userSubAdminsGroupsLabels) + \"\\n\\t\")\n ])\n : _vm._e(),\n _vm._v(\" \"),\n _c(\n \"div\",\n {\n directives: [\n {\n name: \"tooltip\",\n rawName: \"v-tooltip.auto\",\n value: _vm.usedSpace,\n expression: \"usedSpace\",\n modifiers: { auto: true }\n }\n ],\n staticClass: \"quota\"\n },\n [\n _c(\"progress\", {\n staticClass: \"quota-user-progress\",\n class: { warn: _vm.usedQuota > 80 },\n attrs: { max: \"100\" },\n domProps: { value: _vm.usedQuota }\n })\n ]\n ),\n _vm._v(\" \"),\n _vm.showConfig.showLanguages\n ? _c(\"div\", { staticClass: \"languages\" }, [\n _vm._v(\"\\n\\t\\t\" + _vm._s(_vm.userLanguage.name) + \"\\n\\t\")\n ])\n : _vm._e(),\n _vm._v(\" \"),\n _vm.showConfig.showUserBackend || _vm.showConfig.showStoragePath\n ? _c(\"div\", { staticClass: \"userBackend\" }, [\n _vm.showConfig.showUserBackend\n ? _c(\"div\", { staticClass: \"userBackend\" }, [\n _vm._v(\"\\n\\t\\t\\t\" + _vm._s(_vm.user.backend) + \"\\n\\t\\t\")\n ])\n : _vm._e(),\n _vm._v(\" \"),\n _vm.showConfig.showStoragePath\n ? _c(\"div\", { staticClass: \"storageLocation subtitle\" }, [\n _vm._v(\n \"\\n\\t\\t\\t\" + _vm._s(_vm.user.storageLocation) + \"\\n\\t\\t\"\n )\n ])\n : _vm._e()\n ])\n : _vm._e(),\n _vm._v(\" \"),\n _vm.showConfig.showLastLogin\n ? _c(\n \"div\",\n {\n directives: [\n {\n name: \"tooltip\",\n rawName: \"v-tooltip.auto\",\n value: _vm.userLastLoginTooltip,\n expression: \"userLastLoginTooltip\",\n modifiers: { auto: true }\n }\n ],\n staticClass: \"lastLogin\"\n },\n [_vm._v(\"\\n\\t\\t\" + _vm._s(_vm.userLastLogin) + \"\\n\\t\")]\n )\n : _vm._e(),\n _vm._v(\" \"),\n _c(\"div\", { staticClass: \"userActions\" }, [\n _vm.canEdit && !_vm.loading.all\n ? _c(\n \"div\",\n { staticClass: \"toggleUserActions\" },\n [\n _c(\n \"Actions\",\n [\n _c(\n \"ActionButton\",\n {\n attrs: { icon: \"icon-rename\" },\n on: { click: _vm.toggleEdit }\n },\n [\n _vm._v(\n \"\\n\\t\\t\\t\\t\\t\" +\n _vm._s(_vm.t(\"settings\", \"Edit User\")) +\n \"\\n\\t\\t\\t\\t\"\n )\n ]\n )\n ],\n 1\n ),\n _vm._v(\" \"),\n _c(\"div\", {\n directives: [\n {\n name: \"click-outside\",\n rawName: \"v-click-outside\",\n value: _vm.hideMenu,\n expression: \"hideMenu\"\n }\n ],\n staticClass: \"icon-more\",\n on: {\n click: function($event) {\n return _vm.$emit(\"toggleMenu\")\n }\n }\n }),\n _vm._v(\" \"),\n _c(\n \"div\",\n {\n staticClass: \"popovermenu\",\n class: { open: _vm.openedMenu }\n },\n [_c(\"PopoverMenu\", { attrs: { menu: _vm.userActions } })],\n 1\n )\n ],\n 1\n )\n : _vm._e(),\n _vm._v(\" \"),\n _c(\n \"div\",\n {\n staticClass: \"feedback\",\n style: { opacity: _vm.feedbackMessage !== \"\" ? 1 : 0 }\n },\n [\n _c(\"div\", { staticClass: \"icon-checkmark\" }),\n _vm._v(\"\\n\\t\\t\\t\" + _vm._s(_vm.feedbackMessage) + \"\\n\\t\\t\")\n ]\n )\n ])\n ]\n )\n}\nvar staticRenderFns = []\nrender._withStripped = true\n\nexport { render, staticRenderFns }","var render = function() {\n var _vm = this\n var _h = _vm.$createElement\n var _c = _vm._self._c || _h\n return _c(\n \"Content\",\n {\n attrs: {\n \"app-name\": \"settings\",\n \"navigation-class\": { \"icon-loading\": _vm.loadingAddGroup }\n }\n },\n [\n _c(\n \"AppNavigation\",\n [\n _c(\"AppNavigationNew\", {\n attrs: {\n \"button-id\": \"new-user-button\",\n text: _vm.t(\"settings\", \"New user\"),\n \"button-class\": \"icon-add\"\n },\n on: { click: _vm.toggleNewUserMenu }\n }),\n _vm._v(\" \"),\n _c(\n \"ul\",\n { attrs: { id: \"usergrouplist\" } },\n _vm._l(_vm.menu, function(item) {\n return _c(\"AppNavigationItem\", {\n key: item.key,\n attrs: { item: item }\n })\n }),\n 1\n ),\n _vm._v(\" \"),\n _c(\"AppNavigationSettings\", [\n _c(\n \"div\",\n [\n _c(\"p\", [_vm._v(_vm._s(_vm.t(\"settings\", \"Default quota:\")))]),\n _vm._v(\" \"),\n _c(\"Multiselect\", {\n attrs: {\n value: _vm.defaultQuota,\n options: _vm.quotaOptions,\n \"tag-placeholder\": \"create\",\n placeholder: _vm.t(\"settings\", \"Select default quota\"),\n label: \"label\",\n \"track-by\": \"id\",\n \"allow-empty\": false,\n taggable: true\n },\n on: { tag: _vm.validateQuota, input: _vm.setDefaultQuota }\n })\n ],\n 1\n ),\n _vm._v(\" \"),\n _c(\"div\", [\n _c(\"input\", {\n directives: [\n {\n name: \"model\",\n rawName: \"v-model\",\n value: _vm.showLanguages,\n expression: \"showLanguages\"\n }\n ],\n staticClass: \"checkbox\",\n attrs: { id: \"showLanguages\", type: \"checkbox\" },\n domProps: {\n checked: Array.isArray(_vm.showLanguages)\n ? _vm._i(_vm.showLanguages, null) > -1\n : _vm.showLanguages\n },\n on: {\n change: function($event) {\n var $$a = _vm.showLanguages,\n $$el = $event.target,\n $$c = $$el.checked ? true : false\n if (Array.isArray($$a)) {\n var $$v = null,\n $$i = _vm._i($$a, $$v)\n if ($$el.checked) {\n $$i < 0 && (_vm.showLanguages = $$a.concat([$$v]))\n } else {\n $$i > -1 &&\n (_vm.showLanguages = $$a\n .slice(0, $$i)\n .concat($$a.slice($$i + 1)))\n }\n } else {\n _vm.showLanguages = $$c\n }\n }\n }\n }),\n _vm._v(\" \"),\n _c(\"label\", { attrs: { for: \"showLanguages\" } }, [\n _vm._v(_vm._s(_vm.t(\"settings\", \"Show Languages\")))\n ])\n ]),\n _vm._v(\" \"),\n _c(\"div\", [\n _c(\"input\", {\n directives: [\n {\n name: \"model\",\n rawName: \"v-model\",\n value: _vm.showLastLogin,\n expression: \"showLastLogin\"\n }\n ],\n staticClass: \"checkbox\",\n attrs: { id: \"showLastLogin\", type: \"checkbox\" },\n domProps: {\n checked: Array.isArray(_vm.showLastLogin)\n ? _vm._i(_vm.showLastLogin, null) > -1\n : _vm.showLastLogin\n },\n on: {\n change: function($event) {\n var $$a = _vm.showLastLogin,\n $$el = $event.target,\n $$c = $$el.checked ? true : false\n if (Array.isArray($$a)) {\n var $$v = null,\n $$i = _vm._i($$a, $$v)\n if ($$el.checked) {\n $$i < 0 && (_vm.showLastLogin = $$a.concat([$$v]))\n } else {\n $$i > -1 &&\n (_vm.showLastLogin = $$a\n .slice(0, $$i)\n .concat($$a.slice($$i + 1)))\n }\n } else {\n _vm.showLastLogin = $$c\n }\n }\n }\n }),\n _vm._v(\" \"),\n _c(\"label\", { attrs: { for: \"showLastLogin\" } }, [\n _vm._v(_vm._s(_vm.t(\"settings\", \"Show last login\")))\n ])\n ]),\n _vm._v(\" \"),\n _c(\"div\", [\n _c(\"input\", {\n directives: [\n {\n name: \"model\",\n rawName: \"v-model\",\n value: _vm.showUserBackend,\n expression: \"showUserBackend\"\n }\n ],\n staticClass: \"checkbox\",\n attrs: { id: \"showUserBackend\", type: \"checkbox\" },\n domProps: {\n checked: Array.isArray(_vm.showUserBackend)\n ? _vm._i(_vm.showUserBackend, null) > -1\n : _vm.showUserBackend\n },\n on: {\n change: function($event) {\n var $$a = _vm.showUserBackend,\n $$el = $event.target,\n $$c = $$el.checked ? true : false\n if (Array.isArray($$a)) {\n var $$v = null,\n $$i = _vm._i($$a, $$v)\n if ($$el.checked) {\n $$i < 0 && (_vm.showUserBackend = $$a.concat([$$v]))\n } else {\n $$i > -1 &&\n (_vm.showUserBackend = $$a\n .slice(0, $$i)\n .concat($$a.slice($$i + 1)))\n }\n } else {\n _vm.showUserBackend = $$c\n }\n }\n }\n }),\n _vm._v(\" \"),\n _c(\"label\", { attrs: { for: \"showUserBackend\" } }, [\n _vm._v(_vm._s(_vm.t(\"settings\", \"Show user backend\")))\n ])\n ]),\n _vm._v(\" \"),\n _c(\"div\", [\n _c(\"input\", {\n directives: [\n {\n name: \"model\",\n rawName: \"v-model\",\n value: _vm.showStoragePath,\n expression: \"showStoragePath\"\n }\n ],\n staticClass: \"checkbox\",\n attrs: { id: \"showStoragePath\", type: \"checkbox\" },\n domProps: {\n checked: Array.isArray(_vm.showStoragePath)\n ? _vm._i(_vm.showStoragePath, null) > -1\n : _vm.showStoragePath\n },\n on: {\n change: function($event) {\n var $$a = _vm.showStoragePath,\n $$el = $event.target,\n $$c = $$el.checked ? true : false\n if (Array.isArray($$a)) {\n var $$v = null,\n $$i = _vm._i($$a, $$v)\n if ($$el.checked) {\n $$i < 0 && (_vm.showStoragePath = $$a.concat([$$v]))\n } else {\n $$i > -1 &&\n (_vm.showStoragePath = $$a\n .slice(0, $$i)\n .concat($$a.slice($$i + 1)))\n }\n } else {\n _vm.showStoragePath = $$c\n }\n }\n }\n }),\n _vm._v(\" \"),\n _c(\"label\", { attrs: { for: \"showStoragePath\" } }, [\n _vm._v(_vm._s(_vm.t(\"settings\", \"Show storage path\")))\n ])\n ])\n ])\n ],\n 1\n ),\n _vm._v(\" \"),\n _c(\n \"AppContent\",\n [\n _c(\"UserList\", {\n attrs: {\n users: _vm.users,\n \"show-config\": _vm.showConfig,\n \"selected-group\": _vm.selectedGroup,\n \"external-actions\": _vm.externalActions\n },\n scopedSlots: _vm._u([\n {\n key: \"content\",\n fn: function() {\n return undefined\n },\n proxy: true\n }\n ])\n })\n ],\n 1\n )\n ],\n 1\n )\n}\nvar staticRenderFns = []\nrender._withStripped = true\n\nexport { render, staticRenderFns }","// style-loader: Adds some css to the DOM by adding a <style> tag\n\n// load the styles\nvar content = require(\"!!../../../../../node_modules/css-loader/dist/cjs.js!../../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../../node_modules/sass-loader/dist/cjs.js!../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./UserRow.vue?vue&type=style&index=0&id=77960baa&scoped=true&lang=scss&\");\nif(typeof content === 'string') content = [[module.id, content, '']];\nif(content.locals) module.exports = content.locals;\n// add the styles to the DOM\nvar add = require(\"!../../../../../node_modules/vue-style-loader/lib/addStylesClient.js\").default\nvar update = add(\"beab2b2c\", content, false, {});\n// Hot Module Replacement\nif(module.hot) {\n // When the styles change, update the <style> tags\n if(!content.locals) {\n module.hot.accept(\"!!../../../../../node_modules/css-loader/dist/cjs.js!../../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../../node_modules/sass-loader/dist/cjs.js!../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./UserRow.vue?vue&type=style&index=0&id=77960baa&scoped=true&lang=scss&\", function() {\n var newContent = require(\"!!../../../../../node_modules/css-loader/dist/cjs.js!../../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../../node_modules/sass-loader/dist/cjs.js!../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./UserRow.vue?vue&type=style&index=0&id=77960baa&scoped=true&lang=scss&\");\n if(typeof newContent === 'string') newContent = [[module.id, newContent, '']];\n update(newContent);\n });\n }\n // When the module is disposed, remove the <style> tags\n module.hot.dispose(function() { update(); });\n}","// style-loader: Adds some css to the DOM by adding a <style> tag\n\n// load the styles\nvar content = require(\"!!../../../../../node_modules/css-loader/dist/cjs.js!../../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./UserRowSimple.vue?vue&type=style&index=0&id=ff154a08&scoped=true&lang=css&\");\nif(typeof content === 'string') content = [[module.id, content, '']];\nif(content.locals) module.exports = content.locals;\n// add the styles to the DOM\nvar add = require(\"!../../../../../node_modules/vue-style-loader/lib/addStylesClient.js\").default\nvar update = add(\"70cdb6d6\", content, false, {});\n// Hot Module Replacement\nif(module.hot) {\n // When the styles change, update the <style> tags\n if(!content.locals) {\n module.hot.accept(\"!!../../../../../node_modules/css-loader/dist/cjs.js!../../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./UserRowSimple.vue?vue&type=style&index=0&id=ff154a08&scoped=true&lang=css&\", function() {\n var newContent = require(\"!!../../../../../node_modules/css-loader/dist/cjs.js!../../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./UserRowSimple.vue?vue&type=style&index=0&id=ff154a08&scoped=true&lang=css&\");\n if(typeof newContent === 'string') newContent = [[module.id, newContent, '']];\n update(newContent);\n });\n }\n // When the module is disposed, remove the <style> tags\n module.hot.dispose(function() { update(); });\n}"],"mappings":";;;;;;;;;;AAAA;AAAA;AAAA;AAAA;AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,uBAiBA;AACA;AACA;;;;;;;;;;;;ACtCA;AAAA;AAAA;;;;;;;;;;;;ACAA;AAAA;AAAA;AAAA;AAAA;AAAA;;;;;;;;;;;;;ACAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,uBAiBA;AACA;AACA;;;;;;;;;;;;ACvCA;AAAA;AAAA;;;;;;;;;;;;ACAA;AAAA;AAAA;AAAA;AAAA;;;;;;;;;;;;ACAA;AAAA;AAAA;AAAA;AAAA;AAAA;;;;;;;;;;;;;ACAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,uBAiBA;AACA;AACA;;;;;;;;;;;;ACvCA;AAAA;AAAA;;;;;;;;;;;;ACAA;AAAA;AAAA;AAAA;AAAA;;;;;;;;;;;;ACAA;AAAA;AAAA;AAAA;AAAA;AAAA;;;;;;;;;;;;;ACAA;AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;AC/MA;AAAA;AAAA;AAAA;AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,uBAiBA;AACA;AACA;;;;;;;;;;;;ACtCA;AAAA;AAAA;;;;;;;;;;;;ACAA;AAAA;AAAA;AAAA;AAAA;AAAA;;;;;;;;;;;;;ACAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;AC5lBA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACx6BA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;AC/JA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;ACnfA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACNA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;;ACNA;AAAA;AAAA;AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;;ACzhBA;AAAA;AAAA;AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;;ACjeA;AAAA;AAAA;AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;;ACjPA;AAAA;AAAA;AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;;ACjRA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;;;ACVA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;A","sourceRoot":""} \ No newline at end of file
diff --git a/core/js/dist/recommendedapps.js b/core/js/dist/recommendedapps.js
index 0603ba4d2fa..5ffc421bb39 100644
--- a/core/js/dist/recommendedapps.js
+++ b/core/js/dist/recommendedapps.js
@@ -4,7 +4,7 @@
* (c) 2014-2019 Evan You
* Released under the MIT License.
*/
-var r=Object.freeze({});function o(t){return null==t}function i(t){return null!=t}function a(t){return!0===t}function s(t){return"string"==typeof t||"number"==typeof t||"symbol"==typeof t||"boolean"==typeof t}function u(t){return null!==t&&"object"==typeof t}var c=Object.prototype.toString;function f(t){return"[object Object]"===c.call(t)}function l(t){return"[object RegExp]"===c.call(t)}function p(t){var e=parseFloat(String(t));return e>=0&&Math.floor(e)===e&&isFinite(t)}function d(t){return i(t)&&"function"==typeof t.then&&"function"==typeof t.catch}function v(t){return null==t?"":Array.isArray(t)||f(t)&&t.toString===c?JSON.stringify(t,null,2):String(t)}function h(t){var e=parseFloat(t);return isNaN(e)?t:e}function m(t,e){for(var n=Object.create(null),r=t.split(","),o=0;o<r.length;o++)n[r[o]]=!0;return e?function(t){return n[t.toLowerCase()]}:function(t){return n[t]}}m("slot,component",!0);var y=m("key,ref,slot,slot-scope,is");function g(t,e){if(t.length){var n=t.indexOf(e);if(n>-1)return t.splice(n,1)}}var E=Object.prototype.hasOwnProperty;function b(t,e){return E.call(t,e)}function O(t){var e=Object.create(null);return function(n){return e[n]||(e[n]=t(n))}}var x=/-(\w)/g,w=O((function(t){return t.replace(x,(function(t,e){return e?e.toUpperCase():""}))})),_=O((function(t){return t.charAt(0).toUpperCase()+t.slice(1)})),I=/\B([A-Z])/g,S=O((function(t){return t.replace(I,"-$1").toLowerCase()}));var A=Function.prototype.bind?function(t,e){return t.bind(e)}:function(t,e){function n(n){var r=arguments.length;return r?r>1?t.apply(e,arguments):t.call(e,n):t.call(e)}return n._length=t.length,n};function R(t,e){e=e||0;for(var n=t.length-e,r=new Array(n);n--;)r[n]=t[n+e];return r}function T(t,e){for(var n in e)t[n]=e[n];return t}function L(t){for(var e={},n=0;n<t.length;n++)t[n]&&T(e,t[n]);return e}function C(t,e,n){}var N=function(t,e,n){return!1},j=function(t){return t};function P(t,e){if(t===e)return!0;var n=u(t),r=u(e);if(!n||!r)return!n&&!r&&String(t)===String(e);try{var o=Array.isArray(t),i=Array.isArray(e);if(o&&i)return t.length===e.length&&t.every((function(t,n){return P(t,e[n])}));if(t instanceof Date&&e instanceof Date)return t.getTime()===e.getTime();if(o||i)return!1;var a=Object.keys(t),s=Object.keys(e);return a.length===s.length&&a.every((function(n){return P(t[n],e[n])}))}catch(t){return!1}}function k(t,e){for(var n=0;n<t.length;n++)if(P(t[n],e))return n;return-1}function M(t){var e=!1;return function(){e||(e=!0,t.apply(this,arguments))}}var D="data-server-rendered",$=["component","directive","filter"],F=["beforeCreate","created","beforeMount","mounted","beforeUpdate","updated","beforeDestroy","destroyed","activated","deactivated","errorCaptured","serverPrefetch"],U={optionMergeStrategies:Object.create(null),silent:!1,productionTip:!1,devtools:!1,performance:!1,errorHandler:null,warnHandler:null,ignoredElements:[],keyCodes:Object.create(null),isReservedTag:N,isReservedAttr:N,isUnknownElement:N,getTagNamespace:C,parsePlatformTagName:j,mustUseProp:N,async:!0,_lifecycleHooks:F},G=/a-zA-Z\u00B7\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u037D\u037F-\u1FFF\u200C-\u200D\u203F-\u2040\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD/;function B(t,e,n,r){Object.defineProperty(t,e,{value:n,enumerable:!!r,writable:!0,configurable:!0})}var V=new RegExp("[^"+G.source+".$_\\d]");var X,z="__proto__"in{},q="undefined"!=typeof window,H="undefined"!=typeof WXEnvironment&&!!WXEnvironment.platform,W=H&&WXEnvironment.platform.toLowerCase(),Y=q&&window.navigator.userAgent.toLowerCase(),K=Y&&/msie|trident/.test(Y),J=Y&&Y.indexOf("msie 9.0")>0,Z=Y&&Y.indexOf("edge/")>0,Q=(Y&&Y.indexOf("android"),Y&&/iphone|ipad|ipod|ios/.test(Y)||"ios"===W),tt=(Y&&/chrome\/\d+/.test(Y),Y&&/phantomjs/.test(Y),Y&&Y.match(/firefox\/(\d+)/)),et={}.watch,nt=!1;if(q)try{var rt={};Object.defineProperty(rt,"passive",{get:function(){nt=!0}}),window.addEventListener("test-passive",null,rt)}catch(t){}var ot=function(){return void 0===X&&(X=!q&&!H&&void 0!==t&&(t.process&&"server"===t.process.env.VUE_ENV)),X},it=q&&window.__VUE_DEVTOOLS_GLOBAL_HOOK__;function at(t){return"function"==typeof t&&/native code/.test(t.toString())}var st,ut="undefined"!=typeof Symbol&&at(Symbol)&&"undefined"!=typeof Reflect&&at(Reflect.ownKeys);st="undefined"!=typeof Set&&at(Set)?Set:function(){function t(){this.set=Object.create(null)}return t.prototype.has=function(t){return!0===this.set[t]},t.prototype.add=function(t){this.set[t]=!0},t.prototype.clear=function(){this.set=Object.create(null)},t}();var ct=C,ft=0,lt=function(){this.id=ft++,this.subs=[]};lt.prototype.addSub=function(t){this.subs.push(t)},lt.prototype.removeSub=function(t){g(this.subs,t)},lt.prototype.depend=function(){lt.target&&lt.target.addDep(this)},lt.prototype.notify=function(){var t=this.subs.slice();for(var e=0,n=t.length;e<n;e++)t[e].update()},lt.target=null;var pt=[];function dt(t){pt.push(t),lt.target=t}function vt(){pt.pop(),lt.target=pt[pt.length-1]}var ht=function(t,e,n,r,o,i,a,s){this.tag=t,this.data=e,this.children=n,this.text=r,this.elm=o,this.ns=void 0,this.context=i,this.fnContext=void 0,this.fnOptions=void 0,this.fnScopeId=void 0,this.key=e&&e.key,this.componentOptions=a,this.componentInstance=void 0,this.parent=void 0,this.raw=!1,this.isStatic=!1,this.isRootInsert=!0,this.isComment=!1,this.isCloned=!1,this.isOnce=!1,this.asyncFactory=s,this.asyncMeta=void 0,this.isAsyncPlaceholder=!1},mt={child:{configurable:!0}};mt.child.get=function(){return this.componentInstance},Object.defineProperties(ht.prototype,mt);var yt=function(t){void 0===t&&(t="");var e=new ht;return e.text=t,e.isComment=!0,e};function gt(t){return new ht(void 0,void 0,void 0,String(t))}function Et(t){var e=new ht(t.tag,t.data,t.children&&t.children.slice(),t.text,t.elm,t.context,t.componentOptions,t.asyncFactory);return e.ns=t.ns,e.isStatic=t.isStatic,e.key=t.key,e.isComment=t.isComment,e.fnContext=t.fnContext,e.fnOptions=t.fnOptions,e.fnScopeId=t.fnScopeId,e.asyncMeta=t.asyncMeta,e.isCloned=!0,e}var bt=Array.prototype,Ot=Object.create(bt);["push","pop","shift","unshift","splice","sort","reverse"].forEach((function(t){var e=bt[t];B(Ot,t,(function(){for(var n=[],r=arguments.length;r--;)n[r]=arguments[r];var o,i=e.apply(this,n),a=this.__ob__;switch(t){case"push":case"unshift":o=n;break;case"splice":o=n.slice(2)}return o&&a.observeArray(o),a.dep.notify(),i}))}));var xt=Object.getOwnPropertyNames(Ot),wt=!0;function _t(t){wt=t}var It=function(t){this.value=t,this.dep=new lt,this.vmCount=0,B(t,"__ob__",this),Array.isArray(t)?(z?function(t,e){t.__proto__=e}(t,Ot):function(t,e,n){for(var r=0,o=n.length;r<o;r++){var i=n[r];B(t,i,e[i])}}(t,Ot,xt),this.observeArray(t)):this.walk(t)};function St(t,e){var n;if(u(t)&&!(t instanceof ht))return b(t,"__ob__")&&t.__ob__ instanceof It?n=t.__ob__:wt&&!ot()&&(Array.isArray(t)||f(t))&&Object.isExtensible(t)&&!t._isVue&&(n=new It(t)),e&&n&&n.vmCount++,n}function At(t,e,n,r,o){var i=new lt,a=Object.getOwnPropertyDescriptor(t,e);if(!a||!1!==a.configurable){var s=a&&a.get,u=a&&a.set;s&&!u||2!==arguments.length||(n=t[e]);var c=!o&&St(n);Object.defineProperty(t,e,{enumerable:!0,configurable:!0,get:function(){var e=s?s.call(t):n;return lt.target&&(i.depend(),c&&(c.dep.depend(),Array.isArray(e)&&function t(e){for(var n=void 0,r=0,o=e.length;r<o;r++)(n=e[r])&&n.__ob__&&n.__ob__.dep.depend(),Array.isArray(n)&&t(n)}(e))),e},set:function(e){var r=s?s.call(t):n;e===r||e!=e&&r!=r||s&&!u||(u?u.call(t,e):n=e,c=!o&&St(e),i.notify())}})}}function Rt(t,e,n){if(Array.isArray(t)&&p(e))return t.length=Math.max(t.length,e),t.splice(e,1,n),n;if(e in t&&!(e in Object.prototype))return t[e]=n,n;var r=t.__ob__;return t._isVue||r&&r.vmCount?n:r?(At(r.value,e,n),r.dep.notify(),n):(t[e]=n,n)}function Tt(t,e){if(Array.isArray(t)&&p(e))t.splice(e,1);else{var n=t.__ob__;t._isVue||n&&n.vmCount||b(t,e)&&(delete t[e],n&&n.dep.notify())}}It.prototype.walk=function(t){for(var e=Object.keys(t),n=0;n<e.length;n++)At(t,e[n])},It.prototype.observeArray=function(t){for(var e=0,n=t.length;e<n;e++)St(t[e])};var Lt=U.optionMergeStrategies;function Ct(t,e){if(!e)return t;for(var n,r,o,i=ut?Reflect.ownKeys(e):Object.keys(e),a=0;a<i.length;a++)"__ob__"!==(n=i[a])&&(r=t[n],o=e[n],b(t,n)?r!==o&&f(r)&&f(o)&&Ct(r,o):Rt(t,n,o));return t}function Nt(t,e,n){return n?function(){var r="function"==typeof e?e.call(n,n):e,o="function"==typeof t?t.call(n,n):t;return r?Ct(r,o):o}:e?t?function(){return Ct("function"==typeof e?e.call(this,this):e,"function"==typeof t?t.call(this,this):t)}:e:t}function jt(t,e){var n=e?t?t.concat(e):Array.isArray(e)?e:[e]:t;return n?function(t){for(var e=[],n=0;n<t.length;n++)-1===e.indexOf(t[n])&&e.push(t[n]);return e}(n):n}function Pt(t,e,n,r){var o=Object.create(t||null);return e?T(o,e):o}Lt.data=function(t,e,n){return n?Nt(t,e,n):e&&"function"!=typeof e?t:Nt(t,e)},F.forEach((function(t){Lt[t]=jt})),$.forEach((function(t){Lt[t+"s"]=Pt})),Lt.watch=function(t,e,n,r){if(t===et&&(t=void 0),e===et&&(e=void 0),!e)return Object.create(t||null);if(!t)return e;var o={};for(var i in T(o,t),e){var a=o[i],s=e[i];a&&!Array.isArray(a)&&(a=[a]),o[i]=a?a.concat(s):Array.isArray(s)?s:[s]}return o},Lt.props=Lt.methods=Lt.inject=Lt.computed=function(t,e,n,r){if(!t)return e;var o=Object.create(null);return T(o,t),e&&T(o,e),o},Lt.provide=Nt;var kt=function(t,e){return void 0===e?t:e};function Mt(t,e,n){if("function"==typeof e&&(e=e.options),function(t,e){var n=t.props;if(n){var r,o,i={};if(Array.isArray(n))for(r=n.length;r--;)"string"==typeof(o=n[r])&&(i[w(o)]={type:null});else if(f(n))for(var a in n)o=n[a],i[w(a)]=f(o)?o:{type:o};else 0;t.props=i}}(e),function(t,e){var n=t.inject;if(n){var r=t.inject={};if(Array.isArray(n))for(var o=0;o<n.length;o++)r[n[o]]={from:n[o]};else if(f(n))for(var i in n){var a=n[i];r[i]=f(a)?T({from:i},a):{from:a}}else 0}}(e),function(t){var e=t.directives;if(e)for(var n in e){var r=e[n];"function"==typeof r&&(e[n]={bind:r,update:r})}}(e),!e._base&&(e.extends&&(t=Mt(t,e.extends,n)),e.mixins))for(var r=0,o=e.mixins.length;r<o;r++)t=Mt(t,e.mixins[r],n);var i,a={};for(i in t)s(i);for(i in e)b(t,i)||s(i);function s(r){var o=Lt[r]||kt;a[r]=o(t[r],e[r],n,r)}return a}function Dt(t,e,n,r){if("string"==typeof n){var o=t[e];if(b(o,n))return o[n];var i=w(n);if(b(o,i))return o[i];var a=_(i);return b(o,a)?o[a]:o[n]||o[i]||o[a]}}function $t(t,e,n,r){var o=e[t],i=!b(n,t),a=n[t],s=Gt(Boolean,o.type);if(s>-1)if(i&&!b(o,"default"))a=!1;else if(""===a||a===S(t)){var u=Gt(String,o.type);(u<0||s<u)&&(a=!0)}if(void 0===a){a=function(t,e,n){if(!b(e,"default"))return;var r=e.default;0;if(t&&t.$options.propsData&&void 0===t.$options.propsData[n]&&void 0!==t._props[n])return t._props[n];return"function"==typeof r&&"Function"!==Ft(e.type)?r.call(t):r}(r,o,t);var c=wt;_t(!0),St(a),_t(c)}return a}function Ft(t){var e=t&&t.toString().match(/^\s*function (\w+)/);return e?e[1]:""}function Ut(t,e){return Ft(t)===Ft(e)}function Gt(t,e){if(!Array.isArray(e))return Ut(e,t)?0:-1;for(var n=0,r=e.length;n<r;n++)if(Ut(e[n],t))return n;return-1}function Bt(t,e,n){dt();try{if(e)for(var r=e;r=r.$parent;){var o=r.$options.errorCaptured;if(o)for(var i=0;i<o.length;i++)try{if(!1===o[i].call(r,t,e,n))return}catch(t){Xt(t,r,"errorCaptured hook")}}Xt(t,e,n)}finally{vt()}}function Vt(t,e,n,r,o){var i;try{(i=n?t.apply(e,n):t.call(e))&&!i._isVue&&d(i)&&!i._handled&&(i.catch((function(t){return Bt(t,r,o+" (Promise/async)")})),i._handled=!0)}catch(t){Bt(t,r,o)}return i}function Xt(t,e,n){if(U.errorHandler)try{return U.errorHandler.call(null,t,e,n)}catch(e){e!==t&&zt(e,null,"config.errorHandler")}zt(t,e,n)}function zt(t,e,n){if(!q&&!H||"undefined"==typeof console)throw t;console.error(t)}var qt,Ht=!1,Wt=[],Yt=!1;function Kt(){Yt=!1;var t=Wt.slice(0);Wt.length=0;for(var e=0;e<t.length;e++)t[e]()}if("undefined"!=typeof Promise&&at(Promise)){var Jt=Promise.resolve();qt=function(){Jt.then(Kt),Q&&setTimeout(C)},Ht=!0}else if(K||"undefined"==typeof MutationObserver||!at(MutationObserver)&&"[object MutationObserverConstructor]"!==MutationObserver.toString())qt=void 0!==n&&at(n)?function(){n(Kt)}:function(){setTimeout(Kt,0)};else{var Zt=1,Qt=new MutationObserver(Kt),te=document.createTextNode(String(Zt));Qt.observe(te,{characterData:!0}),qt=function(){Zt=(Zt+1)%2,te.data=String(Zt)},Ht=!0}function ee(t,e){var n;if(Wt.push((function(){if(t)try{t.call(e)}catch(t){Bt(t,e,"nextTick")}else n&&n(e)})),Yt||(Yt=!0,qt()),!t&&"undefined"!=typeof Promise)return new Promise((function(t){n=t}))}var ne=new st;function re(t){!function t(e,n){var r,o,i=Array.isArray(e);if(!i&&!u(e)||Object.isFrozen(e)||e instanceof ht)return;if(e.__ob__){var a=e.__ob__.dep.id;if(n.has(a))return;n.add(a)}if(i)for(r=e.length;r--;)t(e[r],n);else for(o=Object.keys(e),r=o.length;r--;)t(e[o[r]],n)}(t,ne),ne.clear()}var oe=O((function(t){var e="&"===t.charAt(0),n="~"===(t=e?t.slice(1):t).charAt(0),r="!"===(t=n?t.slice(1):t).charAt(0);return{name:t=r?t.slice(1):t,once:n,capture:r,passive:e}}));function ie(t,e){function n(){var t=arguments,r=n.fns;if(!Array.isArray(r))return Vt(r,null,arguments,e,"v-on handler");for(var o=r.slice(),i=0;i<o.length;i++)Vt(o[i],null,t,e,"v-on handler")}return n.fns=t,n}function ae(t,e,n,r,i,s){var u,c,f,l;for(u in t)c=t[u],f=e[u],l=oe(u),o(c)||(o(f)?(o(c.fns)&&(c=t[u]=ie(c,s)),a(l.once)&&(c=t[u]=i(l.name,c,l.capture)),n(l.name,c,l.capture,l.passive,l.params)):c!==f&&(f.fns=c,t[u]=f));for(u in e)o(t[u])&&r((l=oe(u)).name,e[u],l.capture)}function se(t,e,n){var r;t instanceof ht&&(t=t.data.hook||(t.data.hook={}));var s=t[e];function u(){n.apply(this,arguments),g(r.fns,u)}o(s)?r=ie([u]):i(s.fns)&&a(s.merged)?(r=s).fns.push(u):r=ie([s,u]),r.merged=!0,t[e]=r}function ue(t,e,n,r,o){if(i(e)){if(b(e,n))return t[n]=e[n],o||delete e[n],!0;if(b(e,r))return t[n]=e[r],o||delete e[r],!0}return!1}function ce(t){return s(t)?[gt(t)]:Array.isArray(t)?function t(e,n){var r,u,c,f,l=[];for(r=0;r<e.length;r++)o(u=e[r])||"boolean"==typeof u||(c=l.length-1,f=l[c],Array.isArray(u)?u.length>0&&(fe((u=t(u,(n||"")+"_"+r))[0])&&fe(f)&&(l[c]=gt(f.text+u[0].text),u.shift()),l.push.apply(l,u)):s(u)?fe(f)?l[c]=gt(f.text+u):""!==u&&l.push(gt(u)):fe(u)&&fe(f)?l[c]=gt(f.text+u.text):(a(e._isVList)&&i(u.tag)&&o(u.key)&&i(n)&&(u.key="__vlist"+n+"_"+r+"__"),l.push(u)));return l}(t):void 0}function fe(t){return i(t)&&i(t.text)&&!1===t.isComment}function le(t,e){if(t){for(var n=Object.create(null),r=ut?Reflect.ownKeys(t):Object.keys(t),o=0;o<r.length;o++){var i=r[o];if("__ob__"!==i){for(var a=t[i].from,s=e;s;){if(s._provided&&b(s._provided,a)){n[i]=s._provided[a];break}s=s.$parent}if(!s)if("default"in t[i]){var u=t[i].default;n[i]="function"==typeof u?u.call(e):u}else 0}}return n}}function pe(t,e){if(!t||!t.length)return{};for(var n={},r=0,o=t.length;r<o;r++){var i=t[r],a=i.data;if(a&&a.attrs&&a.attrs.slot&&delete a.attrs.slot,i.context!==e&&i.fnContext!==e||!a||null==a.slot)(n.default||(n.default=[])).push(i);else{var s=a.slot,u=n[s]||(n[s]=[]);"template"===i.tag?u.push.apply(u,i.children||[]):u.push(i)}}for(var c in n)n[c].every(de)&&delete n[c];return n}function de(t){return t.isComment&&!t.asyncFactory||" "===t.text}function ve(t,e,n){var o,i=Object.keys(e).length>0,a=t?!!t.$stable:!i,s=t&&t.$key;if(t){if(t._normalized)return t._normalized;if(a&&n&&n!==r&&s===n.$key&&!i&&!n.$hasNormal)return n;for(var u in o={},t)t[u]&&"$"!==u[0]&&(o[u]=he(e,u,t[u]))}else o={};for(var c in e)c in o||(o[c]=me(e,c));return t&&Object.isExtensible(t)&&(t._normalized=o),B(o,"$stable",a),B(o,"$key",s),B(o,"$hasNormal",i),o}function he(t,e,n){var r=function(){var t=arguments.length?n.apply(null,arguments):n({});return(t=t&&"object"==typeof t&&!Array.isArray(t)?[t]:ce(t))&&(0===t.length||1===t.length&&t[0].isComment)?void 0:t};return n.proxy&&Object.defineProperty(t,e,{get:r,enumerable:!0,configurable:!0}),r}function me(t,e){return function(){return t[e]}}function ye(t,e){var n,r,o,a,s;if(Array.isArray(t)||"string"==typeof t)for(n=new Array(t.length),r=0,o=t.length;r<o;r++)n[r]=e(t[r],r);else if("number"==typeof t)for(n=new Array(t),r=0;r<t;r++)n[r]=e(r+1,r);else if(u(t))if(ut&&t[Symbol.iterator]){n=[];for(var c=t[Symbol.iterator](),f=c.next();!f.done;)n.push(e(f.value,n.length)),f=c.next()}else for(a=Object.keys(t),n=new Array(a.length),r=0,o=a.length;r<o;r++)s=a[r],n[r]=e(t[s],s,r);return i(n)||(n=[]),n._isVList=!0,n}function ge(t,e,n,r){var o,i=this.$scopedSlots[t];i?(n=n||{},r&&(n=T(T({},r),n)),o=i(n)||e):o=this.$slots[t]||e;var a=n&&n.slot;return a?this.$createElement("template",{slot:a},o):o}function Ee(t){return Dt(this.$options,"filters",t)||j}function be(t,e){return Array.isArray(t)?-1===t.indexOf(e):t!==e}function Oe(t,e,n,r,o){var i=U.keyCodes[e]||n;return o&&r&&!U.keyCodes[e]?be(o,r):i?be(i,t):r?S(r)!==e:void 0}function xe(t,e,n,r,o){if(n)if(u(n)){var i;Array.isArray(n)&&(n=L(n));var a=function(a){if("class"===a||"style"===a||y(a))i=t;else{var s=t.attrs&&t.attrs.type;i=r||U.mustUseProp(e,s,a)?t.domProps||(t.domProps={}):t.attrs||(t.attrs={})}var u=w(a),c=S(a);u in i||c in i||(i[a]=n[a],o&&((t.on||(t.on={}))["update:"+a]=function(t){n[a]=t}))};for(var s in n)a(s)}else;return t}function we(t,e){var n=this._staticTrees||(this._staticTrees=[]),r=n[t];return r&&!e?r:(Ie(r=n[t]=this.$options.staticRenderFns[t].call(this._renderProxy,null,this),"__static__"+t,!1),r)}function _e(t,e,n){return Ie(t,"__once__"+e+(n?"_"+n:""),!0),t}function Ie(t,e,n){if(Array.isArray(t))for(var r=0;r<t.length;r++)t[r]&&"string"!=typeof t[r]&&Se(t[r],e+"_"+r,n);else Se(t,e,n)}function Se(t,e,n){t.isStatic=!0,t.key=e,t.isOnce=n}function Ae(t,e){if(e)if(f(e)){var n=t.on=t.on?T({},t.on):{};for(var r in e){var o=n[r],i=e[r];n[r]=o?[].concat(o,i):i}}else;return t}function Re(t,e,n,r){e=e||{$stable:!n};for(var o=0;o<t.length;o++){var i=t[o];Array.isArray(i)?Re(i,e,n):i&&(i.proxy&&(i.fn.proxy=!0),e[i.key]=i.fn)}return r&&(e.$key=r),e}function Te(t,e){for(var n=0;n<e.length;n+=2){var r=e[n];"string"==typeof r&&r&&(t[e[n]]=e[n+1])}return t}function Le(t,e){return"string"==typeof t?e+t:t}function Ce(t){t._o=_e,t._n=h,t._s=v,t._l=ye,t._t=ge,t._q=P,t._i=k,t._m=we,t._f=Ee,t._k=Oe,t._b=xe,t._v=gt,t._e=yt,t._u=Re,t._g=Ae,t._d=Te,t._p=Le}function Ne(t,e,n,o,i){var s,u=this,c=i.options;b(o,"_uid")?(s=Object.create(o))._original=o:(s=o,o=o._original);var f=a(c._compiled),l=!f;this.data=t,this.props=e,this.children=n,this.parent=o,this.listeners=t.on||r,this.injections=le(c.inject,o),this.slots=function(){return u.$slots||ve(t.scopedSlots,u.$slots=pe(n,o)),u.$slots},Object.defineProperty(this,"scopedSlots",{enumerable:!0,get:function(){return ve(t.scopedSlots,this.slots())}}),f&&(this.$options=c,this.$slots=this.slots(),this.$scopedSlots=ve(t.scopedSlots,this.$slots)),c._scopeId?this._c=function(t,e,n,r){var i=Ge(s,t,e,n,r,l);return i&&!Array.isArray(i)&&(i.fnScopeId=c._scopeId,i.fnContext=o),i}:this._c=function(t,e,n,r){return Ge(s,t,e,n,r,l)}}function je(t,e,n,r,o){var i=Et(t);return i.fnContext=n,i.fnOptions=r,e.slot&&((i.data||(i.data={})).slot=e.slot),i}function Pe(t,e){for(var n in e)t[w(n)]=e[n]}Ce(Ne.prototype);var ke={init:function(t,e){if(t.componentInstance&&!t.componentInstance._isDestroyed&&t.data.keepAlive){var n=t;ke.prepatch(n,n)}else{(t.componentInstance=function(t,e){var n={_isComponent:!0,_parentVnode:t,parent:e},r=t.data.inlineTemplate;i(r)&&(n.render=r.render,n.staticRenderFns=r.staticRenderFns);return new t.componentOptions.Ctor(n)}(t,Je)).$mount(e?t.elm:void 0,e)}},prepatch:function(t,e){var n=e.componentOptions;!function(t,e,n,o,i){0;var a=o.data.scopedSlots,s=t.$scopedSlots,u=!!(a&&!a.$stable||s!==r&&!s.$stable||a&&t.$scopedSlots.$key!==a.$key),c=!!(i||t.$options._renderChildren||u);t.$options._parentVnode=o,t.$vnode=o,t._vnode&&(t._vnode.parent=o);if(t.$options._renderChildren=i,t.$attrs=o.data.attrs||r,t.$listeners=n||r,e&&t.$options.props){_t(!1);for(var f=t._props,l=t.$options._propKeys||[],p=0;p<l.length;p++){var d=l[p],v=t.$options.props;f[d]=$t(d,v,e,t)}_t(!0),t.$options.propsData=e}n=n||r;var h=t.$options._parentListeners;t.$options._parentListeners=n,Ke(t,n,h),c&&(t.$slots=pe(i,o.context),t.$forceUpdate());0}(e.componentInstance=t.componentInstance,n.propsData,n.listeners,e,n.children)},insert:function(t){var e,n=t.context,r=t.componentInstance;r._isMounted||(r._isMounted=!0,en(r,"mounted")),t.data.keepAlive&&(n._isMounted?((e=r)._inactive=!1,rn.push(e)):tn(r,!0))},destroy:function(t){var e=t.componentInstance;e._isDestroyed||(t.data.keepAlive?function t(e,n){if(n&&(e._directInactive=!0,Qe(e)))return;if(!e._inactive){e._inactive=!0;for(var r=0;r<e.$children.length;r++)t(e.$children[r]);en(e,"deactivated")}}(e,!0):e.$destroy())}},Me=Object.keys(ke);function De(t,e,n,s,c){if(!o(t)){var f=n.$options._base;if(u(t)&&(t=f.extend(t)),"function"==typeof t){var l;if(o(t.cid)&&void 0===(t=function(t,e){if(a(t.error)&&i(t.errorComp))return t.errorComp;if(i(t.resolved))return t.resolved;var n=Ve;n&&i(t.owners)&&-1===t.owners.indexOf(n)&&t.owners.push(n);if(a(t.loading)&&i(t.loadingComp))return t.loadingComp;if(n&&!i(t.owners)){var r=t.owners=[n],s=!0,c=null,f=null;n.$on("hook:destroyed",(function(){return g(r,n)}));var l=function(t){for(var e=0,n=r.length;e<n;e++)r[e].$forceUpdate();t&&(r.length=0,null!==c&&(clearTimeout(c),c=null),null!==f&&(clearTimeout(f),f=null))},p=M((function(n){t.resolved=Xe(n,e),s?r.length=0:l(!0)})),v=M((function(e){i(t.errorComp)&&(t.error=!0,l(!0))})),h=t(p,v);return u(h)&&(d(h)?o(t.resolved)&&h.then(p,v):d(h.component)&&(h.component.then(p,v),i(h.error)&&(t.errorComp=Xe(h.error,e)),i(h.loading)&&(t.loadingComp=Xe(h.loading,e),0===h.delay?t.loading=!0:c=setTimeout((function(){c=null,o(t.resolved)&&o(t.error)&&(t.loading=!0,l(!1))}),h.delay||200)),i(h.timeout)&&(f=setTimeout((function(){f=null,o(t.resolved)&&v(null)}),h.timeout)))),s=!1,t.loading?t.loadingComp:t.resolved}}(l=t,f)))return function(t,e,n,r,o){var i=yt();return i.asyncFactory=t,i.asyncMeta={data:e,context:n,children:r,tag:o},i}(l,e,n,s,c);e=e||{},_n(t),i(e.model)&&function(t,e){var n=t.model&&t.model.prop||"value",r=t.model&&t.model.event||"input";(e.attrs||(e.attrs={}))[n]=e.model.value;var o=e.on||(e.on={}),a=o[r],s=e.model.callback;i(a)?(Array.isArray(a)?-1===a.indexOf(s):a!==s)&&(o[r]=[s].concat(a)):o[r]=s}(t.options,e);var p=function(t,e,n){var r=e.options.props;if(!o(r)){var a={},s=t.attrs,u=t.props;if(i(s)||i(u))for(var c in r){var f=S(c);ue(a,u,c,f,!0)||ue(a,s,c,f,!1)}return a}}(e,t);if(a(t.options.functional))return function(t,e,n,o,a){var s=t.options,u={},c=s.props;if(i(c))for(var f in c)u[f]=$t(f,c,e||r);else i(n.attrs)&&Pe(u,n.attrs),i(n.props)&&Pe(u,n.props);var l=new Ne(n,u,a,o,t),p=s.render.call(null,l._c,l);if(p instanceof ht)return je(p,n,l.parent,s,l);if(Array.isArray(p)){for(var d=ce(p)||[],v=new Array(d.length),h=0;h<d.length;h++)v[h]=je(d[h],n,l.parent,s,l);return v}}(t,p,e,n,s);var v=e.on;if(e.on=e.nativeOn,a(t.options.abstract)){var h=e.slot;e={},h&&(e.slot=h)}!function(t){for(var e=t.hook||(t.hook={}),n=0;n<Me.length;n++){var r=Me[n],o=e[r],i=ke[r];o===i||o&&o._merged||(e[r]=o?$e(i,o):i)}}(e);var m=t.options.name||c;return new ht("vue-component-"+t.cid+(m?"-"+m:""),e,void 0,void 0,void 0,n,{Ctor:t,propsData:p,listeners:v,tag:c,children:s},l)}}}function $e(t,e){var n=function(n,r){t(n,r),e(n,r)};return n._merged=!0,n}var Fe=1,Ue=2;function Ge(t,e,n,r,c,f){return(Array.isArray(n)||s(n))&&(c=r,r=n,n=void 0),a(f)&&(c=Ue),function(t,e,n,r,s){if(i(n)&&i(n.__ob__))return yt();i(n)&&i(n.is)&&(e=n.is);if(!e)return yt();0;Array.isArray(r)&&"function"==typeof r[0]&&((n=n||{}).scopedSlots={default:r[0]},r.length=0);s===Ue?r=ce(r):s===Fe&&(r=function(t){for(var e=0;e<t.length;e++)if(Array.isArray(t[e]))return Array.prototype.concat.apply([],t);return t}(r));var c,f;if("string"==typeof e){var l;f=t.$vnode&&t.$vnode.ns||U.getTagNamespace(e),c=U.isReservedTag(e)?new ht(U.parsePlatformTagName(e),n,r,void 0,void 0,t):n&&n.pre||!i(l=Dt(t.$options,"components",e))?new ht(e,n,r,void 0,void 0,t):De(l,n,t,r,e)}else c=De(e,n,t,r);return Array.isArray(c)?c:i(c)?(i(f)&&function t(e,n,r){e.ns=n,"foreignObject"===e.tag&&(n=void 0,r=!0);if(i(e.children))for(var s=0,u=e.children.length;s<u;s++){var c=e.children[s];i(c.tag)&&(o(c.ns)||a(r)&&"svg"!==c.tag)&&t(c,n,r)}}(c,f),i(n)&&function(t){u(t.style)&&re(t.style);u(t.class)&&re(t.class)}(n),c):yt()}(t,e,n,r,c)}var Be,Ve=null;function Xe(t,e){return(t.__esModule||ut&&"Module"===t[Symbol.toStringTag])&&(t=t.default),u(t)?e.extend(t):t}function ze(t){return t.isComment&&t.asyncFactory}function qe(t){if(Array.isArray(t))for(var e=0;e<t.length;e++){var n=t[e];if(i(n)&&(i(n.componentOptions)||ze(n)))return n}}function He(t,e){Be.$on(t,e)}function We(t,e){Be.$off(t,e)}function Ye(t,e){var n=Be;return function r(){var o=e.apply(null,arguments);null!==o&&n.$off(t,r)}}function Ke(t,e,n){Be=t,ae(e,n||{},He,We,Ye,t),Be=void 0}var Je=null;function Ze(t){var e=Je;return Je=t,function(){Je=e}}function Qe(t){for(;t&&(t=t.$parent);)if(t._inactive)return!0;return!1}function tn(t,e){if(e){if(t._directInactive=!1,Qe(t))return}else if(t._directInactive)return;if(t._inactive||null===t._inactive){t._inactive=!1;for(var n=0;n<t.$children.length;n++)tn(t.$children[n]);en(t,"activated")}}function en(t,e){dt();var n=t.$options[e],r=e+" hook";if(n)for(var o=0,i=n.length;o<i;o++)Vt(n[o],t,null,t,r);t._hasHookEvent&&t.$emit("hook:"+e),vt()}var nn=[],rn=[],on={},an=!1,sn=!1,un=0;var cn=0,fn=Date.now;if(q&&!K){var ln=window.performance;ln&&"function"==typeof ln.now&&fn()>document.createEvent("Event").timeStamp&&(fn=function(){return ln.now()})}function pn(){var t,e;for(cn=fn(),sn=!0,nn.sort((function(t,e){return t.id-e.id})),un=0;un<nn.length;un++)(t=nn[un]).before&&t.before(),e=t.id,on[e]=null,t.run();var n=rn.slice(),r=nn.slice();un=nn.length=rn.length=0,on={},an=sn=!1,function(t){for(var e=0;e<t.length;e++)t[e]._inactive=!0,tn(t[e],!0)}(n),function(t){var e=t.length;for(;e--;){var n=t[e],r=n.vm;r._watcher===n&&r._isMounted&&!r._isDestroyed&&en(r,"updated")}}(r),it&&U.devtools&&it.emit("flush")}var dn=0,vn=function(t,e,n,r,o){this.vm=t,o&&(t._watcher=this),t._watchers.push(this),r?(this.deep=!!r.deep,this.user=!!r.user,this.lazy=!!r.lazy,this.sync=!!r.sync,this.before=r.before):this.deep=this.user=this.lazy=this.sync=!1,this.cb=n,this.id=++dn,this.active=!0,this.dirty=this.lazy,this.deps=[],this.newDeps=[],this.depIds=new st,this.newDepIds=new st,this.expression="","function"==typeof e?this.getter=e:(this.getter=function(t){if(!V.test(t)){var e=t.split(".");return function(t){for(var n=0;n<e.length;n++){if(!t)return;t=t[e[n]]}return t}}}(e),this.getter||(this.getter=C)),this.value=this.lazy?void 0:this.get()};vn.prototype.get=function(){var t;dt(this);var e=this.vm;try{t=this.getter.call(e,e)}catch(t){if(!this.user)throw t;Bt(t,e,'getter for watcher "'+this.expression+'"')}finally{this.deep&&re(t),vt(),this.cleanupDeps()}return t},vn.prototype.addDep=function(t){var e=t.id;this.newDepIds.has(e)||(this.newDepIds.add(e),this.newDeps.push(t),this.depIds.has(e)||t.addSub(this))},vn.prototype.cleanupDeps=function(){for(var t=this.deps.length;t--;){var e=this.deps[t];this.newDepIds.has(e.id)||e.removeSub(this)}var n=this.depIds;this.depIds=this.newDepIds,this.newDepIds=n,this.newDepIds.clear(),n=this.deps,this.deps=this.newDeps,this.newDeps=n,this.newDeps.length=0},vn.prototype.update=function(){this.lazy?this.dirty=!0:this.sync?this.run():function(t){var e=t.id;if(null==on[e]){if(on[e]=!0,sn){for(var n=nn.length-1;n>un&&nn[n].id>t.id;)n--;nn.splice(n+1,0,t)}else nn.push(t);an||(an=!0,ee(pn))}}(this)},vn.prototype.run=function(){if(this.active){var t=this.get();if(t!==this.value||u(t)||this.deep){var e=this.value;if(this.value=t,this.user)try{this.cb.call(this.vm,t,e)}catch(t){Bt(t,this.vm,'callback for watcher "'+this.expression+'"')}else this.cb.call(this.vm,t,e)}}},vn.prototype.evaluate=function(){this.value=this.get(),this.dirty=!1},vn.prototype.depend=function(){for(var t=this.deps.length;t--;)this.deps[t].depend()},vn.prototype.teardown=function(){if(this.active){this.vm._isBeingDestroyed||g(this.vm._watchers,this);for(var t=this.deps.length;t--;)this.deps[t].removeSub(this);this.active=!1}};var hn={enumerable:!0,configurable:!0,get:C,set:C};function mn(t,e,n){hn.get=function(){return this[e][n]},hn.set=function(t){this[e][n]=t},Object.defineProperty(t,n,hn)}function yn(t){t._watchers=[];var e=t.$options;e.props&&function(t,e){var n=t.$options.propsData||{},r=t._props={},o=t.$options._propKeys=[];t.$parent&&_t(!1);var i=function(i){o.push(i);var a=$t(i,e,n,t);At(r,i,a),i in t||mn(t,"_props",i)};for(var a in e)i(a);_t(!0)}(t,e.props),e.methods&&function(t,e){t.$options.props;for(var n in e)t[n]="function"!=typeof e[n]?C:A(e[n],t)}(t,e.methods),e.data?function(t){var e=t.$options.data;f(e=t._data="function"==typeof e?function(t,e){dt();try{return t.call(e,e)}catch(t){return Bt(t,e,"data()"),{}}finally{vt()}}(e,t):e||{})||(e={});var n=Object.keys(e),r=t.$options.props,o=(t.$options.methods,n.length);for(;o--;){var i=n[o];0,r&&b(r,i)||(a=void 0,36!==(a=(i+"").charCodeAt(0))&&95!==a&&mn(t,"_data",i))}var a;St(e,!0)}(t):St(t._data={},!0),e.computed&&function(t,e){var n=t._computedWatchers=Object.create(null),r=ot();for(var o in e){var i=e[o],a="function"==typeof i?i:i.get;0,r||(n[o]=new vn(t,a||C,C,gn)),o in t||En(t,o,i)}}(t,e.computed),e.watch&&e.watch!==et&&function(t,e){for(var n in e){var r=e[n];if(Array.isArray(r))for(var o=0;o<r.length;o++)xn(t,n,r[o]);else xn(t,n,r)}}(t,e.watch)}var gn={lazy:!0};function En(t,e,n){var r=!ot();"function"==typeof n?(hn.get=r?bn(e):On(n),hn.set=C):(hn.get=n.get?r&&!1!==n.cache?bn(e):On(n.get):C,hn.set=n.set||C),Object.defineProperty(t,e,hn)}function bn(t){return function(){var e=this._computedWatchers&&this._computedWatchers[t];if(e)return e.dirty&&e.evaluate(),lt.target&&e.depend(),e.value}}function On(t){return function(){return t.call(this,this)}}function xn(t,e,n,r){return f(n)&&(r=n,n=n.handler),"string"==typeof n&&(n=t[n]),t.$watch(e,n,r)}var wn=0;function _n(t){var e=t.options;if(t.super){var n=_n(t.super);if(n!==t.superOptions){t.superOptions=n;var r=function(t){var e,n=t.options,r=t.sealedOptions;for(var o in n)n[o]!==r[o]&&(e||(e={}),e[o]=n[o]);return e}(t);r&&T(t.extendOptions,r),(e=t.options=Mt(n,t.extendOptions)).name&&(e.components[e.name]=t)}}return e}function In(t){this._init(t)}function Sn(t){t.cid=0;var e=1;t.extend=function(t){t=t||{};var n=this,r=n.cid,o=t._Ctor||(t._Ctor={});if(o[r])return o[r];var i=t.name||n.options.name;var a=function(t){this._init(t)};return(a.prototype=Object.create(n.prototype)).constructor=a,a.cid=e++,a.options=Mt(n.options,t),a.super=n,a.options.props&&function(t){var e=t.options.props;for(var n in e)mn(t.prototype,"_props",n)}(a),a.options.computed&&function(t){var e=t.options.computed;for(var n in e)En(t.prototype,n,e[n])}(a),a.extend=n.extend,a.mixin=n.mixin,a.use=n.use,$.forEach((function(t){a[t]=n[t]})),i&&(a.options.components[i]=a),a.superOptions=n.options,a.extendOptions=t,a.sealedOptions=T({},a.options),o[r]=a,a}}function An(t){return t&&(t.Ctor.options.name||t.tag)}function Rn(t,e){return Array.isArray(t)?t.indexOf(e)>-1:"string"==typeof t?t.split(",").indexOf(e)>-1:!!l(t)&&t.test(e)}function Tn(t,e){var n=t.cache,r=t.keys,o=t._vnode;for(var i in n){var a=n[i];if(a){var s=An(a.componentOptions);s&&!e(s)&&Ln(n,i,r,o)}}}function Ln(t,e,n,r){var o=t[e];!o||r&&o.tag===r.tag||o.componentInstance.$destroy(),t[e]=null,g(n,e)}!function(t){t.prototype._init=function(t){var e=this;e._uid=wn++,e._isVue=!0,t&&t._isComponent?function(t,e){var n=t.$options=Object.create(t.constructor.options),r=e._parentVnode;n.parent=e.parent,n._parentVnode=r;var o=r.componentOptions;n.propsData=o.propsData,n._parentListeners=o.listeners,n._renderChildren=o.children,n._componentTag=o.tag,e.render&&(n.render=e.render,n.staticRenderFns=e.staticRenderFns)}(e,t):e.$options=Mt(_n(e.constructor),t||{},e),e._renderProxy=e,e._self=e,function(t){var e=t.$options,n=e.parent;if(n&&!e.abstract){for(;n.$options.abstract&&n.$parent;)n=n.$parent;n.$children.push(t)}t.$parent=n,t.$root=n?n.$root:t,t.$children=[],t.$refs={},t._watcher=null,t._inactive=null,t._directInactive=!1,t._isMounted=!1,t._isDestroyed=!1,t._isBeingDestroyed=!1}(e),function(t){t._events=Object.create(null),t._hasHookEvent=!1;var e=t.$options._parentListeners;e&&Ke(t,e)}(e),function(t){t._vnode=null,t._staticTrees=null;var e=t.$options,n=t.$vnode=e._parentVnode,o=n&&n.context;t.$slots=pe(e._renderChildren,o),t.$scopedSlots=r,t._c=function(e,n,r,o){return Ge(t,e,n,r,o,!1)},t.$createElement=function(e,n,r,o){return Ge(t,e,n,r,o,!0)};var i=n&&n.data;At(t,"$attrs",i&&i.attrs||r,null,!0),At(t,"$listeners",e._parentListeners||r,null,!0)}(e),en(e,"beforeCreate"),function(t){var e=le(t.$options.inject,t);e&&(_t(!1),Object.keys(e).forEach((function(n){At(t,n,e[n])})),_t(!0))}(e),yn(e),function(t){var e=t.$options.provide;e&&(t._provided="function"==typeof e?e.call(t):e)}(e),en(e,"created"),e.$options.el&&e.$mount(e.$options.el)}}(In),function(t){var e={get:function(){return this._data}},n={get:function(){return this._props}};Object.defineProperty(t.prototype,"$data",e),Object.defineProperty(t.prototype,"$props",n),t.prototype.$set=Rt,t.prototype.$delete=Tt,t.prototype.$watch=function(t,e,n){if(f(e))return xn(this,t,e,n);(n=n||{}).user=!0;var r=new vn(this,t,e,n);if(n.immediate)try{e.call(this,r.value)}catch(t){Bt(t,this,'callback for immediate watcher "'+r.expression+'"')}return function(){r.teardown()}}}(In),function(t){var e=/^hook:/;t.prototype.$on=function(t,n){var r=this;if(Array.isArray(t))for(var o=0,i=t.length;o<i;o++)r.$on(t[o],n);else(r._events[t]||(r._events[t]=[])).push(n),e.test(t)&&(r._hasHookEvent=!0);return r},t.prototype.$once=function(t,e){var n=this;function r(){n.$off(t,r),e.apply(n,arguments)}return r.fn=e,n.$on(t,r),n},t.prototype.$off=function(t,e){var n=this;if(!arguments.length)return n._events=Object.create(null),n;if(Array.isArray(t)){for(var r=0,o=t.length;r<o;r++)n.$off(t[r],e);return n}var i,a=n._events[t];if(!a)return n;if(!e)return n._events[t]=null,n;for(var s=a.length;s--;)if((i=a[s])===e||i.fn===e){a.splice(s,1);break}return n},t.prototype.$emit=function(t){var e=this,n=e._events[t];if(n){n=n.length>1?R(n):n;for(var r=R(arguments,1),o='event handler for "'+t+'"',i=0,a=n.length;i<a;i++)Vt(n[i],e,r,e,o)}return e}}(In),function(t){t.prototype._update=function(t,e){var n=this,r=n.$el,o=n._vnode,i=Ze(n);n._vnode=t,n.$el=o?n.__patch__(o,t):n.__patch__(n.$el,t,e,!1),i(),r&&(r.__vue__=null),n.$el&&(n.$el.__vue__=n),n.$vnode&&n.$parent&&n.$vnode===n.$parent._vnode&&(n.$parent.$el=n.$el)},t.prototype.$forceUpdate=function(){this._watcher&&this._watcher.update()},t.prototype.$destroy=function(){var t=this;if(!t._isBeingDestroyed){en(t,"beforeDestroy"),t._isBeingDestroyed=!0;var e=t.$parent;!e||e._isBeingDestroyed||t.$options.abstract||g(e.$children,t),t._watcher&&t._watcher.teardown();for(var n=t._watchers.length;n--;)t._watchers[n].teardown();t._data.__ob__&&t._data.__ob__.vmCount--,t._isDestroyed=!0,t.__patch__(t._vnode,null),en(t,"destroyed"),t.$off(),t.$el&&(t.$el.__vue__=null),t.$vnode&&(t.$vnode.parent=null)}}}(In),function(t){Ce(t.prototype),t.prototype.$nextTick=function(t){return ee(t,this)},t.prototype._render=function(){var t,e=this,n=e.$options,r=n.render,o=n._parentVnode;o&&(e.$scopedSlots=ve(o.data.scopedSlots,e.$slots,e.$scopedSlots)),e.$vnode=o;try{Ve=e,t=r.call(e._renderProxy,e.$createElement)}catch(n){Bt(n,e,"render"),t=e._vnode}finally{Ve=null}return Array.isArray(t)&&1===t.length&&(t=t[0]),t instanceof ht||(t=yt()),t.parent=o,t}}(In);var Cn=[String,RegExp,Array],Nn={KeepAlive:{name:"keep-alive",abstract:!0,props:{include:Cn,exclude:Cn,max:[String,Number]},created:function(){this.cache=Object.create(null),this.keys=[]},destroyed:function(){for(var t in this.cache)Ln(this.cache,t,this.keys)},mounted:function(){var t=this;this.$watch("include",(function(e){Tn(t,(function(t){return Rn(e,t)}))})),this.$watch("exclude",(function(e){Tn(t,(function(t){return!Rn(e,t)}))}))},render:function(){var t=this.$slots.default,e=qe(t),n=e&&e.componentOptions;if(n){var r=An(n),o=this.include,i=this.exclude;if(o&&(!r||!Rn(o,r))||i&&r&&Rn(i,r))return e;var a=this.cache,s=this.keys,u=null==e.key?n.Ctor.cid+(n.tag?"::"+n.tag:""):e.key;a[u]?(e.componentInstance=a[u].componentInstance,g(s,u),s.push(u)):(a[u]=e,s.push(u),this.max&&s.length>parseInt(this.max)&&Ln(a,s[0],s,this._vnode)),e.data.keepAlive=!0}return e||t&&t[0]}}};!function(t){var e={get:function(){return U}};Object.defineProperty(t,"config",e),t.util={warn:ct,extend:T,mergeOptions:Mt,defineReactive:At},t.set=Rt,t.delete=Tt,t.nextTick=ee,t.observable=function(t){return St(t),t},t.options=Object.create(null),$.forEach((function(e){t.options[e+"s"]=Object.create(null)})),t.options._base=t,T(t.options.components,Nn),function(t){t.use=function(t){var e=this._installedPlugins||(this._installedPlugins=[]);if(e.indexOf(t)>-1)return this;var n=R(arguments,1);return n.unshift(this),"function"==typeof t.install?t.install.apply(t,n):"function"==typeof t&&t.apply(null,n),e.push(t),this}}(t),function(t){t.mixin=function(t){return this.options=Mt(this.options,t),this}}(t),Sn(t),function(t){$.forEach((function(e){t[e]=function(t,n){return n?("component"===e&&f(n)&&(n.name=n.name||t,n=this.options._base.extend(n)),"directive"===e&&"function"==typeof n&&(n={bind:n,update:n}),this.options[e+"s"][t]=n,n):this.options[e+"s"][t]}}))}(t)}(In),Object.defineProperty(In.prototype,"$isServer",{get:ot}),Object.defineProperty(In.prototype,"$ssrContext",{get:function(){return this.$vnode&&this.$vnode.ssrContext}}),Object.defineProperty(In,"FunctionalRenderContext",{value:Ne}),In.version="2.6.11";var jn=m("style,class"),Pn=m("input,textarea,option,select,progress"),kn=m("contenteditable,draggable,spellcheck"),Mn=m("events,caret,typing,plaintext-only"),Dn=function(t,e){return Bn(e)||"false"===e?"false":"contenteditable"===t&&Mn(e)?e:"true"},$n=m("allowfullscreen,async,autofocus,autoplay,checked,compact,controls,declare,default,defaultchecked,defaultmuted,defaultselected,defer,disabled,enabled,formnovalidate,hidden,indeterminate,inert,ismap,itemscope,loop,multiple,muted,nohref,noresize,noshade,novalidate,nowrap,open,pauseonexit,readonly,required,reversed,scoped,seamless,selected,sortable,translate,truespeed,typemustmatch,visible"),Fn="http://www.w3.org/1999/xlink",Un=function(t){return":"===t.charAt(5)&&"xlink"===t.slice(0,5)},Gn=function(t){return Un(t)?t.slice(6,t.length):""},Bn=function(t){return null==t||!1===t};function Vn(t){for(var e=t.data,n=t,r=t;i(r.componentInstance);)(r=r.componentInstance._vnode)&&r.data&&(e=Xn(r.data,e));for(;i(n=n.parent);)n&&n.data&&(e=Xn(e,n.data));return function(t,e){if(i(t)||i(e))return zn(t,qn(e));return""}(e.staticClass,e.class)}function Xn(t,e){return{staticClass:zn(t.staticClass,e.staticClass),class:i(t.class)?[t.class,e.class]:e.class}}function zn(t,e){return t?e?t+" "+e:t:e||""}function qn(t){return Array.isArray(t)?function(t){for(var e,n="",r=0,o=t.length;r<o;r++)i(e=qn(t[r]))&&""!==e&&(n&&(n+=" "),n+=e);return n}(t):u(t)?function(t){var e="";for(var n in t)t[n]&&(e&&(e+=" "),e+=n);return e}(t):"string"==typeof t?t:""}var Hn={svg:"http://www.w3.org/2000/svg",math:"http://www.w3.org/1998/Math/MathML"},Wn=m("html,body,base,head,link,meta,style,title,address,article,aside,footer,header,h1,h2,h3,h4,h5,h6,hgroup,nav,section,div,dd,dl,dt,figcaption,figure,picture,hr,img,li,main,ol,p,pre,ul,a,b,abbr,bdi,bdo,br,cite,code,data,dfn,em,i,kbd,mark,q,rp,rt,rtc,ruby,s,samp,small,span,strong,sub,sup,time,u,var,wbr,area,audio,map,track,video,embed,object,param,source,canvas,script,noscript,del,ins,caption,col,colgroup,table,thead,tbody,td,th,tr,button,datalist,fieldset,form,input,label,legend,meter,optgroup,option,output,progress,select,textarea,details,dialog,menu,menuitem,summary,content,element,shadow,template,blockquote,iframe,tfoot"),Yn=m("svg,animate,circle,clippath,cursor,defs,desc,ellipse,filter,font-face,foreignObject,g,glyph,image,line,marker,mask,missing-glyph,path,pattern,polygon,polyline,rect,switch,symbol,text,textpath,tspan,use,view",!0),Kn=function(t){return Wn(t)||Yn(t)};var Jn=Object.create(null);var Zn=m("text,number,password,search,email,tel,url");var Qn=Object.freeze({createElement:function(t,e){var n=document.createElement(t);return"select"!==t?n:(e.data&&e.data.attrs&&void 0!==e.data.attrs.multiple&&n.setAttribute("multiple","multiple"),n)},createElementNS:function(t,e){return document.createElementNS(Hn[t],e)},createTextNode:function(t){return document.createTextNode(t)},createComment:function(t){return document.createComment(t)},insertBefore:function(t,e,n){t.insertBefore(e,n)},removeChild:function(t,e){t.removeChild(e)},appendChild:function(t,e){t.appendChild(e)},parentNode:function(t){return t.parentNode},nextSibling:function(t){return t.nextSibling},tagName:function(t){return t.tagName},setTextContent:function(t,e){t.textContent=e},setStyleScope:function(t,e){t.setAttribute(e,"")}}),tr={create:function(t,e){er(e)},update:function(t,e){t.data.ref!==e.data.ref&&(er(t,!0),er(e))},destroy:function(t){er(t,!0)}};function er(t,e){var n=t.data.ref;if(i(n)){var r=t.context,o=t.componentInstance||t.elm,a=r.$refs;e?Array.isArray(a[n])?g(a[n],o):a[n]===o&&(a[n]=void 0):t.data.refInFor?Array.isArray(a[n])?a[n].indexOf(o)<0&&a[n].push(o):a[n]=[o]:a[n]=o}}var nr=new ht("",{},[]),rr=["create","activate","update","remove","destroy"];function or(t,e){return t.key===e.key&&(t.tag===e.tag&&t.isComment===e.isComment&&i(t.data)===i(e.data)&&function(t,e){if("input"!==t.tag)return!0;var n,r=i(n=t.data)&&i(n=n.attrs)&&n.type,o=i(n=e.data)&&i(n=n.attrs)&&n.type;return r===o||Zn(r)&&Zn(o)}(t,e)||a(t.isAsyncPlaceholder)&&t.asyncFactory===e.asyncFactory&&o(e.asyncFactory.error))}function ir(t,e,n){var r,o,a={};for(r=e;r<=n;++r)i(o=t[r].key)&&(a[o]=r);return a}var ar={create:sr,update:sr,destroy:function(t){sr(t,nr)}};function sr(t,e){(t.data.directives||e.data.directives)&&function(t,e){var n,r,o,i=t===nr,a=e===nr,s=cr(t.data.directives,t.context),u=cr(e.data.directives,e.context),c=[],f=[];for(n in u)r=s[n],o=u[n],r?(o.oldValue=r.value,o.oldArg=r.arg,lr(o,"update",e,t),o.def&&o.def.componentUpdated&&f.push(o)):(lr(o,"bind",e,t),o.def&&o.def.inserted&&c.push(o));if(c.length){var l=function(){for(var n=0;n<c.length;n++)lr(c[n],"inserted",e,t)};i?se(e,"insert",l):l()}f.length&&se(e,"postpatch",(function(){for(var n=0;n<f.length;n++)lr(f[n],"componentUpdated",e,t)}));if(!i)for(n in s)u[n]||lr(s[n],"unbind",t,t,a)}(t,e)}var ur=Object.create(null);function cr(t,e){var n,r,o=Object.create(null);if(!t)return o;for(n=0;n<t.length;n++)(r=t[n]).modifiers||(r.modifiers=ur),o[fr(r)]=r,r.def=Dt(e.$options,"directives",r.name);return o}function fr(t){return t.rawName||t.name+"."+Object.keys(t.modifiers||{}).join(".")}function lr(t,e,n,r,o){var i=t.def&&t.def[e];if(i)try{i(n.elm,t,n,r,o)}catch(r){Bt(r,n.context,"directive "+t.name+" "+e+" hook")}}var pr=[tr,ar];function dr(t,e){var n=e.componentOptions;if(!(i(n)&&!1===n.Ctor.options.inheritAttrs||o(t.data.attrs)&&o(e.data.attrs))){var r,a,s=e.elm,u=t.data.attrs||{},c=e.data.attrs||{};for(r in i(c.__ob__)&&(c=e.data.attrs=T({},c)),c)a=c[r],u[r]!==a&&vr(s,r,a);for(r in(K||Z)&&c.value!==u.value&&vr(s,"value",c.value),u)o(c[r])&&(Un(r)?s.removeAttributeNS(Fn,Gn(r)):kn(r)||s.removeAttribute(r))}}function vr(t,e,n){t.tagName.indexOf("-")>-1?hr(t,e,n):$n(e)?Bn(n)?t.removeAttribute(e):(n="allowfullscreen"===e&&"EMBED"===t.tagName?"true":e,t.setAttribute(e,n)):kn(e)?t.setAttribute(e,Dn(e,n)):Un(e)?Bn(n)?t.removeAttributeNS(Fn,Gn(e)):t.setAttributeNS(Fn,e,n):hr(t,e,n)}function hr(t,e,n){if(Bn(n))t.removeAttribute(e);else{if(K&&!J&&"TEXTAREA"===t.tagName&&"placeholder"===e&&""!==n&&!t.__ieph){var r=function(e){e.stopImmediatePropagation(),t.removeEventListener("input",r)};t.addEventListener("input",r),t.__ieph=!0}t.setAttribute(e,n)}}var mr={create:dr,update:dr};function yr(t,e){var n=e.elm,r=e.data,a=t.data;if(!(o(r.staticClass)&&o(r.class)&&(o(a)||o(a.staticClass)&&o(a.class)))){var s=Vn(e),u=n._transitionClasses;i(u)&&(s=zn(s,qn(u))),s!==n._prevClass&&(n.setAttribute("class",s),n._prevClass=s)}}var gr,Er={create:yr,update:yr},br="__r",Or="__c";function xr(t,e,n){var r=gr;return function o(){var i=e.apply(null,arguments);null!==i&&Ir(t,o,n,r)}}var wr=Ht&&!(tt&&Number(tt[1])<=53);function _r(t,e,n,r){if(wr){var o=cn,i=e;e=i._wrapper=function(t){if(t.target===t.currentTarget||t.timeStamp>=o||t.timeStamp<=0||t.target.ownerDocument!==document)return i.apply(this,arguments)}}gr.addEventListener(t,e,nt?{capture:n,passive:r}:n)}function Ir(t,e,n,r){(r||gr).removeEventListener(t,e._wrapper||e,n)}function Sr(t,e){if(!o(t.data.on)||!o(e.data.on)){var n=e.data.on||{},r=t.data.on||{};gr=e.elm,function(t){if(i(t[br])){var e=K?"change":"input";t[e]=[].concat(t[br],t[e]||[]),delete t[br]}i(t[Or])&&(t.change=[].concat(t[Or],t.change||[]),delete t[Or])}(n),ae(n,r,_r,Ir,xr,e.context),gr=void 0}}var Ar,Rr={create:Sr,update:Sr};function Tr(t,e){if(!o(t.data.domProps)||!o(e.data.domProps)){var n,r,a=e.elm,s=t.data.domProps||{},u=e.data.domProps||{};for(n in i(u.__ob__)&&(u=e.data.domProps=T({},u)),s)n in u||(a[n]="");for(n in u){if(r=u[n],"textContent"===n||"innerHTML"===n){if(e.children&&(e.children.length=0),r===s[n])continue;1===a.childNodes.length&&a.removeChild(a.childNodes[0])}if("value"===n&&"PROGRESS"!==a.tagName){a._value=r;var c=o(r)?"":String(r);Lr(a,c)&&(a.value=c)}else if("innerHTML"===n&&Yn(a.tagName)&&o(a.innerHTML)){(Ar=Ar||document.createElement("div")).innerHTML="<svg>"+r+"</svg>";for(var f=Ar.firstChild;a.firstChild;)a.removeChild(a.firstChild);for(;f.firstChild;)a.appendChild(f.firstChild)}else if(r!==s[n])try{a[n]=r}catch(t){}}}}function Lr(t,e){return!t.composing&&("OPTION"===t.tagName||function(t,e){var n=!0;try{n=document.activeElement!==t}catch(t){}return n&&t.value!==e}(t,e)||function(t,e){var n=t.value,r=t._vModifiers;if(i(r)){if(r.number)return h(n)!==h(e);if(r.trim)return n.trim()!==e.trim()}return n!==e}(t,e))}var Cr={create:Tr,update:Tr},Nr=O((function(t){var e={},n=/:(.+)/;return t.split(/;(?![^(]*\))/g).forEach((function(t){if(t){var r=t.split(n);r.length>1&&(e[r[0].trim()]=r[1].trim())}})),e}));function jr(t){var e=Pr(t.style);return t.staticStyle?T(t.staticStyle,e):e}function Pr(t){return Array.isArray(t)?L(t):"string"==typeof t?Nr(t):t}var kr,Mr=/^--/,Dr=/\s*!important$/,$r=function(t,e,n){if(Mr.test(e))t.style.setProperty(e,n);else if(Dr.test(n))t.style.setProperty(S(e),n.replace(Dr,""),"important");else{var r=Ur(e);if(Array.isArray(n))for(var o=0,i=n.length;o<i;o++)t.style[r]=n[o];else t.style[r]=n}},Fr=["Webkit","Moz","ms"],Ur=O((function(t){if(kr=kr||document.createElement("div").style,"filter"!==(t=w(t))&&t in kr)return t;for(var e=t.charAt(0).toUpperCase()+t.slice(1),n=0;n<Fr.length;n++){var r=Fr[n]+e;if(r in kr)return r}}));function Gr(t,e){var n=e.data,r=t.data;if(!(o(n.staticStyle)&&o(n.style)&&o(r.staticStyle)&&o(r.style))){var a,s,u=e.elm,c=r.staticStyle,f=r.normalizedStyle||r.style||{},l=c||f,p=Pr(e.data.style)||{};e.data.normalizedStyle=i(p.__ob__)?T({},p):p;var d=function(t,e){var n,r={};if(e)for(var o=t;o.componentInstance;)(o=o.componentInstance._vnode)&&o.data&&(n=jr(o.data))&&T(r,n);(n=jr(t.data))&&T(r,n);for(var i=t;i=i.parent;)i.data&&(n=jr(i.data))&&T(r,n);return r}(e,!0);for(s in l)o(d[s])&&$r(u,s,"");for(s in d)(a=d[s])!==l[s]&&$r(u,s,null==a?"":a)}}var Br={create:Gr,update:Gr},Vr=/\s+/;function Xr(t,e){if(e&&(e=e.trim()))if(t.classList)e.indexOf(" ")>-1?e.split(Vr).forEach((function(e){return t.classList.add(e)})):t.classList.add(e);else{var n=" "+(t.getAttribute("class")||"")+" ";n.indexOf(" "+e+" ")<0&&t.setAttribute("class",(n+e).trim())}}function zr(t,e){if(e&&(e=e.trim()))if(t.classList)e.indexOf(" ")>-1?e.split(Vr).forEach((function(e){return t.classList.remove(e)})):t.classList.remove(e),t.classList.length||t.removeAttribute("class");else{for(var n=" "+(t.getAttribute("class")||"")+" ",r=" "+e+" ";n.indexOf(r)>=0;)n=n.replace(r," ");(n=n.trim())?t.setAttribute("class",n):t.removeAttribute("class")}}function qr(t){if(t){if("object"==typeof t){var e={};return!1!==t.css&&T(e,Hr(t.name||"v")),T(e,t),e}return"string"==typeof t?Hr(t):void 0}}var Hr=O((function(t){return{enterClass:t+"-enter",enterToClass:t+"-enter-to",enterActiveClass:t+"-enter-active",leaveClass:t+"-leave",leaveToClass:t+"-leave-to",leaveActiveClass:t+"-leave-active"}})),Wr=q&&!J,Yr="transition",Kr="animation",Jr="transition",Zr="transitionend",Qr="animation",to="animationend";Wr&&(void 0===window.ontransitionend&&void 0!==window.onwebkittransitionend&&(Jr="WebkitTransition",Zr="webkitTransitionEnd"),void 0===window.onanimationend&&void 0!==window.onwebkitanimationend&&(Qr="WebkitAnimation",to="webkitAnimationEnd"));var eo=q?window.requestAnimationFrame?window.requestAnimationFrame.bind(window):setTimeout:function(t){return t()};function no(t){eo((function(){eo(t)}))}function ro(t,e){var n=t._transitionClasses||(t._transitionClasses=[]);n.indexOf(e)<0&&(n.push(e),Xr(t,e))}function oo(t,e){t._transitionClasses&&g(t._transitionClasses,e),zr(t,e)}function io(t,e,n){var r=so(t,e),o=r.type,i=r.timeout,a=r.propCount;if(!o)return n();var s=o===Yr?Zr:to,u=0,c=function(){t.removeEventListener(s,f),n()},f=function(e){e.target===t&&++u>=a&&c()};setTimeout((function(){u<a&&c()}),i+1),t.addEventListener(s,f)}var ao=/\b(transform|all)(,|$)/;function so(t,e){var n,r=window.getComputedStyle(t),o=(r[Jr+"Delay"]||"").split(", "),i=(r[Jr+"Duration"]||"").split(", "),a=uo(o,i),s=(r[Qr+"Delay"]||"").split(", "),u=(r[Qr+"Duration"]||"").split(", "),c=uo(s,u),f=0,l=0;return e===Yr?a>0&&(n=Yr,f=a,l=i.length):e===Kr?c>0&&(n=Kr,f=c,l=u.length):l=(n=(f=Math.max(a,c))>0?a>c?Yr:Kr:null)?n===Yr?i.length:u.length:0,{type:n,timeout:f,propCount:l,hasTransform:n===Yr&&ao.test(r[Jr+"Property"])}}function uo(t,e){for(;t.length<e.length;)t=t.concat(t);return Math.max.apply(null,e.map((function(e,n){return co(e)+co(t[n])})))}function co(t){return 1e3*Number(t.slice(0,-1).replace(",","."))}function fo(t,e){var n=t.elm;i(n._leaveCb)&&(n._leaveCb.cancelled=!0,n._leaveCb());var r=qr(t.data.transition);if(!o(r)&&!i(n._enterCb)&&1===n.nodeType){for(var a=r.css,s=r.type,c=r.enterClass,f=r.enterToClass,l=r.enterActiveClass,p=r.appearClass,d=r.appearToClass,v=r.appearActiveClass,m=r.beforeEnter,y=r.enter,g=r.afterEnter,E=r.enterCancelled,b=r.beforeAppear,O=r.appear,x=r.afterAppear,w=r.appearCancelled,_=r.duration,I=Je,S=Je.$vnode;S&&S.parent;)I=S.context,S=S.parent;var A=!I._isMounted||!t.isRootInsert;if(!A||O||""===O){var R=A&&p?p:c,T=A&&v?v:l,L=A&&d?d:f,C=A&&b||m,N=A&&"function"==typeof O?O:y,j=A&&x||g,P=A&&w||E,k=h(u(_)?_.enter:_);0;var D=!1!==a&&!J,$=vo(N),F=n._enterCb=M((function(){D&&(oo(n,L),oo(n,T)),F.cancelled?(D&&oo(n,R),P&&P(n)):j&&j(n),n._enterCb=null}));t.data.show||se(t,"insert",(function(){var e=n.parentNode,r=e&&e._pending&&e._pending[t.key];r&&r.tag===t.tag&&r.elm._leaveCb&&r.elm._leaveCb(),N&&N(n,F)})),C&&C(n),D&&(ro(n,R),ro(n,T),no((function(){oo(n,R),F.cancelled||(ro(n,L),$||(po(k)?setTimeout(F,k):io(n,s,F)))}))),t.data.show&&(e&&e(),N&&N(n,F)),D||$||F()}}}function lo(t,e){var n=t.elm;i(n._enterCb)&&(n._enterCb.cancelled=!0,n._enterCb());var r=qr(t.data.transition);if(o(r)||1!==n.nodeType)return e();if(!i(n._leaveCb)){var a=r.css,s=r.type,c=r.leaveClass,f=r.leaveToClass,l=r.leaveActiveClass,p=r.beforeLeave,d=r.leave,v=r.afterLeave,m=r.leaveCancelled,y=r.delayLeave,g=r.duration,E=!1!==a&&!J,b=vo(d),O=h(u(g)?g.leave:g);0;var x=n._leaveCb=M((function(){n.parentNode&&n.parentNode._pending&&(n.parentNode._pending[t.key]=null),E&&(oo(n,f),oo(n,l)),x.cancelled?(E&&oo(n,c),m&&m(n)):(e(),v&&v(n)),n._leaveCb=null}));y?y(w):w()}function w(){x.cancelled||(!t.data.show&&n.parentNode&&((n.parentNode._pending||(n.parentNode._pending={}))[t.key]=t),p&&p(n),E&&(ro(n,c),ro(n,l),no((function(){oo(n,c),x.cancelled||(ro(n,f),b||(po(O)?setTimeout(x,O):io(n,s,x)))}))),d&&d(n,x),E||b||x())}}function po(t){return"number"==typeof t&&!isNaN(t)}function vo(t){if(o(t))return!1;var e=t.fns;return i(e)?vo(Array.isArray(e)?e[0]:e):(t._length||t.length)>1}function ho(t,e){!0!==e.data.show&&fo(e)}var mo=function(t){var e,n,r={},u=t.modules,c=t.nodeOps;for(e=0;e<rr.length;++e)for(r[rr[e]]=[],n=0;n<u.length;++n)i(u[n][rr[e]])&&r[rr[e]].push(u[n][rr[e]]);function f(t){var e=c.parentNode(t);i(e)&&c.removeChild(e,t)}function l(t,e,n,o,s,u,f){if(i(t.elm)&&i(u)&&(t=u[f]=Et(t)),t.isRootInsert=!s,!function(t,e,n,o){var s=t.data;if(i(s)){var u=i(t.componentInstance)&&s.keepAlive;if(i(s=s.hook)&&i(s=s.init)&&s(t,!1),i(t.componentInstance))return p(t,e),d(n,t.elm,o),a(u)&&function(t,e,n,o){var a,s=t;for(;s.componentInstance;)if(s=s.componentInstance._vnode,i(a=s.data)&&i(a=a.transition)){for(a=0;a<r.activate.length;++a)r.activate[a](nr,s);e.push(s);break}d(n,t.elm,o)}(t,e,n,o),!0}}(t,e,n,o)){var l=t.data,h=t.children,m=t.tag;i(m)?(t.elm=t.ns?c.createElementNS(t.ns,m):c.createElement(m,t),g(t),v(t,h,e),i(l)&&y(t,e),d(n,t.elm,o)):a(t.isComment)?(t.elm=c.createComment(t.text),d(n,t.elm,o)):(t.elm=c.createTextNode(t.text),d(n,t.elm,o))}}function p(t,e){i(t.data.pendingInsert)&&(e.push.apply(e,t.data.pendingInsert),t.data.pendingInsert=null),t.elm=t.componentInstance.$el,h(t)?(y(t,e),g(t)):(er(t),e.push(t))}function d(t,e,n){i(t)&&(i(n)?c.parentNode(n)===t&&c.insertBefore(t,e,n):c.appendChild(t,e))}function v(t,e,n){if(Array.isArray(e)){0;for(var r=0;r<e.length;++r)l(e[r],n,t.elm,null,!0,e,r)}else s(t.text)&&c.appendChild(t.elm,c.createTextNode(String(t.text)))}function h(t){for(;t.componentInstance;)t=t.componentInstance._vnode;return i(t.tag)}function y(t,n){for(var o=0;o<r.create.length;++o)r.create[o](nr,t);i(e=t.data.hook)&&(i(e.create)&&e.create(nr,t),i(e.insert)&&n.push(t))}function g(t){var e;if(i(e=t.fnScopeId))c.setStyleScope(t.elm,e);else for(var n=t;n;)i(e=n.context)&&i(e=e.$options._scopeId)&&c.setStyleScope(t.elm,e),n=n.parent;i(e=Je)&&e!==t.context&&e!==t.fnContext&&i(e=e.$options._scopeId)&&c.setStyleScope(t.elm,e)}function E(t,e,n,r,o,i){for(;r<=o;++r)l(n[r],i,t,e,!1,n,r)}function b(t){var e,n,o=t.data;if(i(o))for(i(e=o.hook)&&i(e=e.destroy)&&e(t),e=0;e<r.destroy.length;++e)r.destroy[e](t);if(i(e=t.children))for(n=0;n<t.children.length;++n)b(t.children[n])}function O(t,e,n){for(;e<=n;++e){var r=t[e];i(r)&&(i(r.tag)?(x(r),b(r)):f(r.elm))}}function x(t,e){if(i(e)||i(t.data)){var n,o=r.remove.length+1;for(i(e)?e.listeners+=o:e=function(t,e){function n(){0==--n.listeners&&f(t)}return n.listeners=e,n}(t.elm,o),i(n=t.componentInstance)&&i(n=n._vnode)&&i(n.data)&&x(n,e),n=0;n<r.remove.length;++n)r.remove[n](t,e);i(n=t.data.hook)&&i(n=n.remove)?n(t,e):e()}else f(t.elm)}function w(t,e,n,r){for(var o=n;o<r;o++){var a=e[o];if(i(a)&&or(t,a))return o}}function _(t,e,n,s,u,f){if(t!==e){i(e.elm)&&i(s)&&(e=s[u]=Et(e));var p=e.elm=t.elm;if(a(t.isAsyncPlaceholder))i(e.asyncFactory.resolved)?A(t.elm,e,n):e.isAsyncPlaceholder=!0;else if(a(e.isStatic)&&a(t.isStatic)&&e.key===t.key&&(a(e.isCloned)||a(e.isOnce)))e.componentInstance=t.componentInstance;else{var d,v=e.data;i(v)&&i(d=v.hook)&&i(d=d.prepatch)&&d(t,e);var m=t.children,y=e.children;if(i(v)&&h(e)){for(d=0;d<r.update.length;++d)r.update[d](t,e);i(d=v.hook)&&i(d=d.update)&&d(t,e)}o(e.text)?i(m)&&i(y)?m!==y&&function(t,e,n,r,a){var s,u,f,p=0,d=0,v=e.length-1,h=e[0],m=e[v],y=n.length-1,g=n[0],b=n[y],x=!a;for(0;p<=v&&d<=y;)o(h)?h=e[++p]:o(m)?m=e[--v]:or(h,g)?(_(h,g,r,n,d),h=e[++p],g=n[++d]):or(m,b)?(_(m,b,r,n,y),m=e[--v],b=n[--y]):or(h,b)?(_(h,b,r,n,y),x&&c.insertBefore(t,h.elm,c.nextSibling(m.elm)),h=e[++p],b=n[--y]):or(m,g)?(_(m,g,r,n,d),x&&c.insertBefore(t,m.elm,h.elm),m=e[--v],g=n[++d]):(o(s)&&(s=ir(e,p,v)),o(u=i(g.key)?s[g.key]:w(g,e,p,v))?l(g,r,t,h.elm,!1,n,d):or(f=e[u],g)?(_(f,g,r,n,d),e[u]=void 0,x&&c.insertBefore(t,f.elm,h.elm)):l(g,r,t,h.elm,!1,n,d),g=n[++d]);p>v?E(t,o(n[y+1])?null:n[y+1].elm,n,d,y,r):d>y&&O(e,p,v)}(p,m,y,n,f):i(y)?(i(t.text)&&c.setTextContent(p,""),E(p,null,y,0,y.length-1,n)):i(m)?O(m,0,m.length-1):i(t.text)&&c.setTextContent(p,""):t.text!==e.text&&c.setTextContent(p,e.text),i(v)&&i(d=v.hook)&&i(d=d.postpatch)&&d(t,e)}}}function I(t,e,n){if(a(n)&&i(t.parent))t.parent.data.pendingInsert=e;else for(var r=0;r<e.length;++r)e[r].data.hook.insert(e[r])}var S=m("attrs,class,staticClass,staticStyle,key");function A(t,e,n,r){var o,s=e.tag,u=e.data,c=e.children;if(r=r||u&&u.pre,e.elm=t,a(e.isComment)&&i(e.asyncFactory))return e.isAsyncPlaceholder=!0,!0;if(i(u)&&(i(o=u.hook)&&i(o=o.init)&&o(e,!0),i(o=e.componentInstance)))return p(e,n),!0;if(i(s)){if(i(c))if(t.hasChildNodes())if(i(o=u)&&i(o=o.domProps)&&i(o=o.innerHTML)){if(o!==t.innerHTML)return!1}else{for(var f=!0,l=t.firstChild,d=0;d<c.length;d++){if(!l||!A(l,c[d],n,r)){f=!1;break}l=l.nextSibling}if(!f||l)return!1}else v(e,c,n);if(i(u)){var h=!1;for(var m in u)if(!S(m)){h=!0,y(e,n);break}!h&&u.class&&re(u.class)}}else t.data!==e.text&&(t.data=e.text);return!0}return function(t,e,n,s){if(!o(e)){var u,f=!1,p=[];if(o(t))f=!0,l(e,p);else{var d=i(t.nodeType);if(!d&&or(t,e))_(t,e,p,null,null,s);else{if(d){if(1===t.nodeType&&t.hasAttribute(D)&&(t.removeAttribute(D),n=!0),a(n)&&A(t,e,p))return I(e,p,!0),t;u=t,t=new ht(c.tagName(u).toLowerCase(),{},[],void 0,u)}var v=t.elm,m=c.parentNode(v);if(l(e,p,v._leaveCb?null:m,c.nextSibling(v)),i(e.parent))for(var y=e.parent,g=h(e);y;){for(var E=0;E<r.destroy.length;++E)r.destroy[E](y);if(y.elm=e.elm,g){for(var x=0;x<r.create.length;++x)r.create[x](nr,y);var w=y.data.hook.insert;if(w.merged)for(var S=1;S<w.fns.length;S++)w.fns[S]()}else er(y);y=y.parent}i(m)?O([t],0,0):i(t.tag)&&b(t)}}return I(e,p,f),e.elm}i(t)&&b(t)}}({nodeOps:Qn,modules:[mr,Er,Rr,Cr,Br,q?{create:ho,activate:ho,remove:function(t,e){!0!==t.data.show?lo(t,e):e()}}:{}].concat(pr)});J&&document.addEventListener("selectionchange",(function(){var t=document.activeElement;t&&t.vmodel&&_o(t,"input")}));var yo={inserted:function(t,e,n,r){"select"===n.tag?(r.elm&&!r.elm._vOptions?se(n,"postpatch",(function(){yo.componentUpdated(t,e,n)})):go(t,e,n.context),t._vOptions=[].map.call(t.options,Oo)):("textarea"===n.tag||Zn(t.type))&&(t._vModifiers=e.modifiers,e.modifiers.lazy||(t.addEventListener("compositionstart",xo),t.addEventListener("compositionend",wo),t.addEventListener("change",wo),J&&(t.vmodel=!0)))},componentUpdated:function(t,e,n){if("select"===n.tag){go(t,e,n.context);var r=t._vOptions,o=t._vOptions=[].map.call(t.options,Oo);if(o.some((function(t,e){return!P(t,r[e])})))(t.multiple?e.value.some((function(t){return bo(t,o)})):e.value!==e.oldValue&&bo(e.value,o))&&_o(t,"change")}}};function go(t,e,n){Eo(t,e,n),(K||Z)&&setTimeout((function(){Eo(t,e,n)}),0)}function Eo(t,e,n){var r=e.value,o=t.multiple;if(!o||Array.isArray(r)){for(var i,a,s=0,u=t.options.length;s<u;s++)if(a=t.options[s],o)i=k(r,Oo(a))>-1,a.selected!==i&&(a.selected=i);else if(P(Oo(a),r))return void(t.selectedIndex!==s&&(t.selectedIndex=s));o||(t.selectedIndex=-1)}}function bo(t,e){return e.every((function(e){return!P(e,t)}))}function Oo(t){return"_value"in t?t._value:t.value}function xo(t){t.target.composing=!0}function wo(t){t.target.composing&&(t.target.composing=!1,_o(t.target,"input"))}function _o(t,e){var n=document.createEvent("HTMLEvents");n.initEvent(e,!0,!0),t.dispatchEvent(n)}function Io(t){return!t.componentInstance||t.data&&t.data.transition?t:Io(t.componentInstance._vnode)}var So={model:yo,show:{bind:function(t,e,n){var r=e.value,o=(n=Io(n)).data&&n.data.transition,i=t.__vOriginalDisplay="none"===t.style.display?"":t.style.display;r&&o?(n.data.show=!0,fo(n,(function(){t.style.display=i}))):t.style.display=r?i:"none"},update:function(t,e,n){var r=e.value;!r!=!e.oldValue&&((n=Io(n)).data&&n.data.transition?(n.data.show=!0,r?fo(n,(function(){t.style.display=t.__vOriginalDisplay})):lo(n,(function(){t.style.display="none"}))):t.style.display=r?t.__vOriginalDisplay:"none")},unbind:function(t,e,n,r,o){o||(t.style.display=t.__vOriginalDisplay)}}},Ao={name:String,appear:Boolean,css:Boolean,mode:String,type:String,enterClass:String,leaveClass:String,enterToClass:String,leaveToClass:String,enterActiveClass:String,leaveActiveClass:String,appearClass:String,appearActiveClass:String,appearToClass:String,duration:[Number,String,Object]};function Ro(t){var e=t&&t.componentOptions;return e&&e.Ctor.options.abstract?Ro(qe(e.children)):t}function To(t){var e={},n=t.$options;for(var r in n.propsData)e[r]=t[r];var o=n._parentListeners;for(var i in o)e[w(i)]=o[i];return e}function Lo(t,e){if(/\d-keep-alive$/.test(e.tag))return t("keep-alive",{props:e.componentOptions.propsData})}var Co=function(t){return t.tag||ze(t)},No=function(t){return"show"===t.name},jo={name:"transition",props:Ao,abstract:!0,render:function(t){var e=this,n=this.$slots.default;if(n&&(n=n.filter(Co)).length){0;var r=this.mode;0;var o=n[0];if(function(t){for(;t=t.parent;)if(t.data.transition)return!0}(this.$vnode))return o;var i=Ro(o);if(!i)return o;if(this._leaving)return Lo(t,o);var a="__transition-"+this._uid+"-";i.key=null==i.key?i.isComment?a+"comment":a+i.tag:s(i.key)?0===String(i.key).indexOf(a)?i.key:a+i.key:i.key;var u=(i.data||(i.data={})).transition=To(this),c=this._vnode,f=Ro(c);if(i.data.directives&&i.data.directives.some(No)&&(i.data.show=!0),f&&f.data&&!function(t,e){return e.key===t.key&&e.tag===t.tag}(i,f)&&!ze(f)&&(!f.componentInstance||!f.componentInstance._vnode.isComment)){var l=f.data.transition=T({},u);if("out-in"===r)return this._leaving=!0,se(l,"afterLeave",(function(){e._leaving=!1,e.$forceUpdate()})),Lo(t,o);if("in-out"===r){if(ze(i))return c;var p,d=function(){p()};se(u,"afterEnter",d),se(u,"enterCancelled",d),se(l,"delayLeave",(function(t){p=t}))}}return o}}},Po=T({tag:String,moveClass:String},Ao);function ko(t){t.elm._moveCb&&t.elm._moveCb(),t.elm._enterCb&&t.elm._enterCb()}function Mo(t){t.data.newPos=t.elm.getBoundingClientRect()}function Do(t){var e=t.data.pos,n=t.data.newPos,r=e.left-n.left,o=e.top-n.top;if(r||o){t.data.moved=!0;var i=t.elm.style;i.transform=i.WebkitTransform="translate("+r+"px,"+o+"px)",i.transitionDuration="0s"}}delete Po.mode;var $o={Transition:jo,TransitionGroup:{props:Po,beforeMount:function(){var t=this,e=this._update;this._update=function(n,r){var o=Ze(t);t.__patch__(t._vnode,t.kept,!1,!0),t._vnode=t.kept,o(),e.call(t,n,r)}},render:function(t){for(var e=this.tag||this.$vnode.data.tag||"span",n=Object.create(null),r=this.prevChildren=this.children,o=this.$slots.default||[],i=this.children=[],a=To(this),s=0;s<o.length;s++){var u=o[s];if(u.tag)if(null!=u.key&&0!==String(u.key).indexOf("__vlist"))i.push(u),n[u.key]=u,(u.data||(u.data={})).transition=a;else;}if(r){for(var c=[],f=[],l=0;l<r.length;l++){var p=r[l];p.data.transition=a,p.data.pos=p.elm.getBoundingClientRect(),n[p.key]?c.push(p):f.push(p)}this.kept=t(e,null,c),this.removed=f}return t(e,null,i)},updated:function(){var t=this.prevChildren,e=this.moveClass||(this.name||"v")+"-move";t.length&&this.hasMove(t[0].elm,e)&&(t.forEach(ko),t.forEach(Mo),t.forEach(Do),this._reflow=document.body.offsetHeight,t.forEach((function(t){if(t.data.moved){var n=t.elm,r=n.style;ro(n,e),r.transform=r.WebkitTransform=r.transitionDuration="",n.addEventListener(Zr,n._moveCb=function t(r){r&&r.target!==n||r&&!/transform$/.test(r.propertyName)||(n.removeEventListener(Zr,t),n._moveCb=null,oo(n,e))})}})))},methods:{hasMove:function(t,e){if(!Wr)return!1;if(this._hasMove)return this._hasMove;var n=t.cloneNode();t._transitionClasses&&t._transitionClasses.forEach((function(t){zr(n,t)})),Xr(n,e),n.style.display="none",this.$el.appendChild(n);var r=so(n);return this.$el.removeChild(n),this._hasMove=r.hasTransform}}}};In.config.mustUseProp=function(t,e,n){return"value"===n&&Pn(t)&&"button"!==e||"selected"===n&&"option"===t||"checked"===n&&"input"===t||"muted"===n&&"video"===t},In.config.isReservedTag=Kn,In.config.isReservedAttr=jn,In.config.getTagNamespace=function(t){return Yn(t)?"svg":"math"===t?"math":void 0},In.config.isUnknownElement=function(t){if(!q)return!0;if(Kn(t))return!1;if(t=t.toLowerCase(),null!=Jn[t])return Jn[t];var e=document.createElement(t);return t.indexOf("-")>-1?Jn[t]=e.constructor===window.HTMLUnknownElement||e.constructor===window.HTMLElement:Jn[t]=/HTMLUnknownElement/.test(e.toString())},T(In.options.directives,So),T(In.options.components,$o),In.prototype.__patch__=q?mo:C,In.prototype.$mount=function(t,e){return function(t,e,n){var r;return t.$el=e,t.$options.render||(t.$options.render=yt),en(t,"beforeMount"),r=function(){t._update(t._render(),n)},new vn(t,r,C,{before:function(){t._isMounted&&!t._isDestroyed&&en(t,"beforeUpdate")}},!0),n=!1,null==t.$vnode&&(t._isMounted=!0,en(t,"mounted")),t}(this,t=t&&q?function(t){if("string"==typeof t){var e=document.querySelector(t);return e||document.createElement("div")}return t}(t):void 0,e)},q&&setTimeout((function(){U.devtools&&it&&it.emit("init",In)}),0),e.a=In}).call(this,n(17),n(635).setImmediate)},,,,,,,function(t,e){var n={}.hasOwnProperty;t.exports=function(t,e){return n.call(t,e)}},,function(t,e,n){"use strict";var r=n(457),o=n(37),i=n(201),a=n(46),s=n(476),u=n(199),c=n(477),f=n(478),l=n(480),p=n(117),d=n(203),v=p("isConcatSpreadable"),h=d>=51||!o((function(){var t=[];return t[v]=!1,t.concat()[0]!==t})),m=l("concat"),y=function(t){if(!a(t))return!1;var e=t[v];return void 0!==e?!!e:i(t)};r({target:"Array",proto:!0,forced:!h||!m},{concat:function(t){var e,n,r,o,i,a=s(this),l=f(a,0),p=0;for(e=-1,r=arguments.length;e<r;e++)if(i=-1===e?a:arguments[e],y(i)){if(p+(o=u(i.length))>9007199254740991)throw TypeError("Maximum allowed index exceeded");for(n=0;n<o;n++,p++)n in i&&c(l,p,i[n])}else{if(p>=9007199254740991)throw TypeError("Maximum allowed index exceeded");c(l,p++,i)}return l.length=p,l}})},function(t,e,n){var r=n(19),o=n(188).f,i=n(90),a=n(461),s=n(116),u=n(466),c=n(475);t.exports=function(t,e){var n,f,l,p,d,v=t.target,h=t.global,m=t.stat;if(n=h?r:m?r[v]||s(v,{}):(r[v]||{}).prototype)for(f in e){if(p=e[f],l=t.noTargetGet?(d=o(n,f))&&d.value:n[f],!c(h?f:v+(m?".":"#")+f,t.forced)&&void 0!==l){if(typeof p==typeof l)continue;u(p,l)}(t.sham||l&&l.sham)&&i(p,"sham",!0),a(n,f,p,t)}}},function(t,e,n){"use strict";var r={}.propertyIsEnumerable,o=Object.getOwnPropertyDescriptor,i=o&&!r.call({1:2},1);e.f=i?function(t){var e=o(this,t);return!!e&&e.enumerable}:r},function(t,e,n){var r=n(37),o=n(189),i="".split;t.exports=r((function(){return!Object("z").propertyIsEnumerable(0)}))?function(t){return"String"==o(t)?i.call(t,""):Object(t)}:Object},function(t,e,n){var r=n(19),o=n(46),i=r.document,a=o(i)&&o(i.createElement);t.exports=function(t){return a?i.createElement(t):{}}},function(t,e,n){var r=n(19),o=n(90),i=n(47),a=n(116),s=n(193),u=n(462),c=u.get,f=u.enforce,l=String(String).split("String");(t.exports=function(t,e,n,s){var u=!!s&&!!s.unsafe,c=!!s&&!!s.enumerable,p=!!s&&!!s.noTargetGet;"function"==typeof n&&("string"!=typeof e||i(n,"name")||o(n,"name",e),f(n).source=l.join("string"==typeof e?e:"")),t!==r?(u?!p&&t[e]&&(c=!0):delete t[e],c?t[e]=n:o(t,e,n)):c?t[e]=n:a(e,n)})(Function.prototype,"toString",(function(){return"function"==typeof this&&c(this).source||s(this)}))},function(t,e,n){var r,o,i,a=n(463),s=n(19),u=n(46),c=n(90),f=n(47),l=n(464),p=n(197),d=s.WeakMap;if(a){var v=new d,h=v.get,m=v.has,y=v.set;r=function(t,e){return y.call(v,t,e),e},o=function(t){return h.call(v,t)||{}},i=function(t){return m.call(v,t)}}else{var g=l("state");p[g]=!0,r=function(t,e){return c(t,g,e),e},o=function(t){return f(t,g)?t[g]:{}},i=function(t){return f(t,g)}}t.exports={set:r,get:o,has:i,enforce:function(t){return i(t)?o(t):r(t,{})},getterFor:function(t){return function(e){var n;if(!u(e)||(n=o(e)).type!==t)throw TypeError("Incompatible receiver, "+t+" required");return n}}}},function(t,e,n){var r=n(19),o=n(193),i=r.WeakMap;t.exports="function"==typeof i&&/native code/.test(o(i))},function(t,e,n){var r=n(195),o=n(196),i=r("keys");t.exports=function(t){return i[t]||(i[t]=o(t))}},function(t,e){t.exports=!1},function(t,e,n){var r=n(47),o=n(467),i=n(188),a=n(115);t.exports=function(t,e){for(var n=o(e),s=a.f,u=i.f,c=0;c<n.length;c++){var f=n[c];r(t,f)||s(t,f,u(e,f))}}},function(t,e,n){var r=n(198),o=n(469),i=n(474),a=n(192);t.exports=r("Reflect","ownKeys")||function(t){var e=o.f(a(t)),n=i.f;return n?e.concat(n(t)):e}},function(t,e,n){var r=n(19);t.exports=r},function(t,e,n){var r=n(470),o=n(473).concat("length","prototype");e.f=Object.getOwnPropertyNames||function(t){return r(t,o)}},function(t,e,n){var r=n(47),o=n(113),i=n(471).indexOf,a=n(197);t.exports=function(t,e){var n,s=o(t),u=0,c=[];for(n in s)!r(a,n)&&r(s,n)&&c.push(n);for(;e.length>u;)r(s,n=e[u++])&&(~i(c,n)||c.push(n));return c}},function(t,e,n){var r=n(113),o=n(199),i=n(472),a=function(t){return function(e,n,a){var s,u=r(e),c=o(u.length),f=i(a,c);if(t&&n!=n){for(;c>f;)if((s=u[f++])!=s)return!0}else for(;c>f;f++)if((t||f in u)&&u[f]===n)return t||f||0;return!t&&-1}};t.exports={includes:a(!0),indexOf:a(!1)}},function(t,e,n){var r=n(200),o=Math.max,i=Math.min;t.exports=function(t,e){var n=r(t);return n<0?o(n+e,0):i(n,e)}},function(t,e){t.exports=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"]},function(t,e){e.f=Object.getOwnPropertySymbols},function(t,e,n){var r=n(37),o=/#|\.prototype\./,i=function(t,e){var n=s[a(t)];return n==c||n!=u&&("function"==typeof e?r(e):!!e)},a=i.normalize=function(t){return String(t).replace(o,".").toLowerCase()},s=i.data={},u=i.NATIVE="N",c=i.POLYFILL="P";t.exports=i},function(t,e,n){var r=n(190);t.exports=function(t){return Object(r(t))}},function(t,e,n){"use strict";var r=n(114),o=n(115),i=n(112);t.exports=function(t,e,n){var a=r(e);a in t?o.f(t,a,i(0,n)):t[a]=n}},function(t,e,n){var r=n(46),o=n(201),i=n(117)("species");t.exports=function(t,e){var n;return o(t)&&("function"!=typeof(n=t.constructor)||n!==Array&&!o(n.prototype)?r(n)&&null===(n=n[i])&&(n=void 0):n=void 0),new(void 0===n?Array:n)(0===e?0:e)}},function(t,e,n){var r=n(202);t.exports=r&&!Symbol.sham&&"symbol"==typeof Symbol.iterator},function(t,e,n){var r=n(37),o=n(117),i=n(203),a=o("species");t.exports=function(t){return i>=51||!r((function(){var e=[];return(e.constructor={})[a]=function(){return{foo:1}},1!==e[t](Boolean).foo}))}},function(t,e,n){var r=n(198);t.exports=r("navigator","userAgent")||""},,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,function(t,e,n){var r=n(68),o=n(541);r({target:"Object",stat:!0,forced:Object.assign!==o},{assign:o})},function(t,e,n){var r=n(10),o=n(358),i=r.WeakMap;t.exports="function"==typeof i&&/native code/.test(o(i))},function(t,e,n){var r=n(23),o=n(536),i=n(354),a=n(32);t.exports=function(t,e){for(var n=o(e),s=a.f,u=i.f,c=0;c<n.length;c++){var f=n[c];r(t,f)||s(t,f,u(e,f))}}},function(t,e,n){var r=n(100),o=n(538),i=n(362),a=n(42);t.exports=r("Reflect","ownKeys")||function(t){var e=o.f(a(t)),n=i.f;return n?e.concat(n(t)):e}},function(t,e,n){var r=n(10);t.exports=r},function(t,e,n){var r=n(361),o=n(160).concat("length","prototype");e.f=Object.getOwnPropertyNames||function(t){return r(t,o)}},function(t,e,n){var r=n(97),o=n(101),i=n(540),a=function(t){return function(e,n,a){var s,u=r(e),c=o(u.length),f=i(a,c);if(t&&n!=n){for(;c>f;)if((s=u[f++])!=s)return!0}else for(;c>f;f++)if((t||f in u)&&u[f]===n)return t||f||0;return!t&&-1}};t.exports={includes:a(!0),indexOf:a(!1)}},function(t,e,n){var r=n(159),o=Math.max,i=Math.min;t.exports=function(t,e){var n=r(t);return n<0?o(n+e,0):i(n,e)}},function(t,e,n){"use strict";var r=n(31),o=n(14),i=n(364),a=n(362),s=n(355),u=n(102),c=n(151),f=Object.assign,l=Object.defineProperty;t.exports=!f||o((function(){if(r&&1!==f({b:1},f(l({},"a",{enumerable:!0,get:function(){l(this,"b",{value:3,enumerable:!1})}}),{b:2})).b)return!0;var t={},e={},n=Symbol();return t[n]=7,"abcdefghijklmnopqrst".split("").forEach((function(t){e[t]=t})),7!=f({},t)[n]||"abcdefghijklmnopqrst"!=i(f({},e)).join("")}))?function(t,e){for(var n=u(t),o=arguments.length,f=1,l=a.f,p=s.f;o>f;)for(var d,v=c(arguments[f++]),h=l?i(v).concat(l(v)):i(v),m=h.length,y=0;m>y;)d=h[y++],r&&!p.call(v,d)||(n[d]=v[d]);return n}:f},function(t,e,n){t.exports=n(543)},function(t,e,n){"use strict";var r=n(15),o=n(365),i=n(544),a=n(371);function s(t){var e=new i(t),n=o(i.prototype.request,e);return r.extend(n,i.prototype,e),r.extend(n,e),n}var u=s(n(368));u.Axios=i,u.create=function(t){return s(a(u.defaults,t))},u.Cancel=n(372),u.CancelToken=n(558),u.isCancel=n(367),u.all=function(t){return Promise.all(t)},u.spread=n(559),t.exports=u,t.exports.default=u},function(t,e,n){"use strict";var r=n(15),o=n(366),i=n(545),a=n(546),s=n(371);function u(t){this.defaults=t,this.interceptors={request:new i,response:new i}}u.prototype.request=function(t){"string"==typeof t?(t=arguments[1]||{}).url=arguments[0]:t=t||{},(t=s(this.defaults,t)).method?t.method=t.method.toLowerCase():this.defaults.method?t.method=this.defaults.method.toLowerCase():t.method="get";var e=[a,void 0],n=Promise.resolve(t);for(this.interceptors.request.forEach((function(t){e.unshift(t.fulfilled,t.rejected)})),this.interceptors.response.forEach((function(t){e.push(t.fulfilled,t.rejected)}));e.length;)n=n.then(e.shift(),e.shift());return n},u.prototype.getUri=function(t){return t=s(this.defaults,t),o(t.url,t.params,t.paramsSerializer).replace(/^\?/,"")},r.forEach(["delete","get","head","options"],(function(t){u.prototype[t]=function(e,n){return this.request(r.merge(n||{},{method:t,url:e}))}})),r.forEach(["post","put","patch"],(function(t){u.prototype[t]=function(e,n,o){return this.request(r.merge(o||{},{method:t,url:e,data:n}))}})),t.exports=u},function(t,e,n){"use strict";var r=n(15);function o(){this.handlers=[]}o.prototype.use=function(t,e){return this.handlers.push({fulfilled:t,rejected:e}),this.handlers.length-1},o.prototype.eject=function(t){this.handlers[t]&&(this.handlers[t]=null)},o.prototype.forEach=function(t){r.forEach(this.handlers,(function(e){null!==e&&t(e)}))},t.exports=o},function(t,e,n){"use strict";var r=n(15),o=n(547),i=n(367),a=n(368);function s(t){t.cancelToken&&t.cancelToken.throwIfRequested()}t.exports=function(t){return s(t),t.headers=t.headers||{},t.data=o(t.data,t.headers,t.transformRequest),t.headers=r.merge(t.headers.common||{},t.headers[t.method]||{},t.headers),r.forEach(["delete","get","head","post","put","patch","common"],(function(e){delete t.headers[e]})),(t.adapter||a.adapter)(t).then((function(e){return s(t),e.data=o(e.data,e.headers,t.transformResponse),e}),(function(e){return i(e)||(s(t),e&&e.response&&(e.response.data=o(e.response.data,e.response.headers,t.transformResponse))),Promise.reject(e)}))}},function(t,e,n){"use strict";var r=n(15);t.exports=function(t,e,n){return r.forEach(n,(function(n){t=n(t,e)})),t}},function(t,e,n){"use strict";var r=n(15);t.exports=function(t,e){r.forEach(t,(function(n,r){r!==e&&r.toUpperCase()===e.toUpperCase()&&(t[e]=n,delete t[r])}))}},function(t,e,n){"use strict";var r=n(370);t.exports=function(t,e,n){var o=n.config.validateStatus;!o||o(n.status)?t(n):e(r("Request failed with status code "+n.status,n.config,null,n.request,n))}},function(t,e,n){"use strict";t.exports=function(t,e,n,r,o){return t.config=e,n&&(t.code=n),t.request=r,t.response=o,t.isAxiosError=!0,t.toJSON=function(){return{message:this.message,name:this.name,description:this.description,number:this.number,fileName:this.fileName,lineNumber:this.lineNumber,columnNumber:this.columnNumber,stack:this.stack,config:this.config,code:this.code}},t}},function(t,e,n){"use strict";var r=n(552),o=n(553);t.exports=function(t,e){return t&&!r(e)?o(t,e):e}},function(t,e,n){"use strict";t.exports=function(t){return/^([a-z][a-z\d\+\-\.]*:)?\/\//i.test(t)}},function(t,e,n){"use strict";t.exports=function(t,e){return e?t.replace(/\/+$/,"")+"/"+e.replace(/^\/+/,""):t}},function(t,e,n){"use strict";var r=n(15),o=["age","authorization","content-length","content-type","etag","expires","from","host","if-modified-since","if-unmodified-since","last-modified","location","max-forwards","proxy-authorization","referer","retry-after","user-agent"];t.exports=function(t){var e,n,i,a={};return t?(r.forEach(t.split("\n"),(function(t){if(i=t.indexOf(":"),e=r.trim(t.substr(0,i)).toLowerCase(),n=r.trim(t.substr(i+1)),e){if(a[e]&&o.indexOf(e)>=0)return;a[e]="set-cookie"===e?(a[e]?a[e]:[]).concat([n]):a[e]?a[e]+", "+n:n}})),a):a}},function(t,e,n){"use strict";var r=n(15),o=n(556);t.exports=r.isStandardBrowserEnv()?function(){var t,e=/(msie|trident)/i.test(navigator.userAgent),n=document.createElement("a");function i(t){var r=t;if(o(t))throw new Error("URL contains XSS injection attempt");return e&&(n.setAttribute("href",r),r=n.href),n.setAttribute("href",r),{href:n.href,protocol:n.protocol?n.protocol.replace(/:$/,""):"",host:n.host,search:n.search?n.search.replace(/^\?/,""):"",hash:n.hash?n.hash.replace(/^#/,""):"",hostname:n.hostname,port:n.port,pathname:"/"===n.pathname.charAt(0)?n.pathname:"/"+n.pathname}}return t=i(window.location.href),function(e){var n=r.isString(e)?i(e):e;return n.protocol===t.protocol&&n.host===t.host}}():function(){return!0}},function(t,e,n){"use strict";t.exports=function(t){return/(\b)(on\w+)=|javascript|(<\s*)(\/*)script/gi.test(t)}},function(t,e,n){"use strict";var r=n(15);t.exports=r.isStandardBrowserEnv()?{write:function(t,e,n,o,i,a){var s=[];s.push(t+"="+encodeURIComponent(e)),r.isNumber(n)&&s.push("expires="+new Date(n).toGMTString()),r.isString(o)&&s.push("path="+o),r.isString(i)&&s.push("domain="+i),!0===a&&s.push("secure"),document.cookie=s.join("; ")},read:function(t){var e=document.cookie.match(new RegExp("(^|;\\s*)("+t+")=([^;]*)"));return e?decodeURIComponent(e[3]):null},remove:function(t){this.write(t,"",Date.now()-864e5)}}:{write:function(){},read:function(){return null},remove:function(){}}},function(t,e,n){"use strict";var r=n(372);function o(t){if("function"!=typeof t)throw new TypeError("executor must be a function.");var e;this.promise=new Promise((function(t){e=t}));var n=this;t((function(t){n.reason||(n.reason=new r(t),e(n.reason))}))}o.prototype.throwIfRequested=function(){if(this.reason)throw this.reason},o.source=function(){var t;return{token:new o((function(e){t=e})),cancel:t}},t.exports=o},function(t,e,n){"use strict";t.exports=function(t){return function(e){return t.apply(null,e)}}},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),Object.defineProperty(e,"getRequestToken",{enumerable:!0,get:function(){return r.getRequestToken}}),Object.defineProperty(e,"onRequestTokenUpdate",{enumerable:!0,get:function(){return r.onRequestTokenUpdate}}),Object.defineProperty(e,"getCurrentUser",{enumerable:!0,get:function(){return o.getCurrentUser}});var r=n(561),o=n(597)},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.getRequestToken=function(){return i},e.onRequestTokenUpdate=function(t){a.push(t)};var r=n(562),o=document.getElementsByTagName("head")[0],i=o?o.getAttribute("data-requesttoken"):null,a=[];(0,r.subscribe)("csrf-token-update",(function(t){i=t.token,a.forEach((function(e){try{e(t.token)}catch(t){console.error("error updating CSRF token observer",t)}}))}))},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.subscribe=function(t,e){i.subscribe(t,e)},e.unsubscribe=function(t,e){i.unsubscribe(t,e)},e.emit=function(t,e){i.emit(t,e)};var r=n(563),o=n(565);var i=(void 0!==window.OC&&window.OC._eventBus&&void 0===window._nc_event_bus&&(console.warn("found old event bus instance at OC._eventBus. Update your version!"),window._nc_event_bus=window.OC._eventBus),void 0!==window._nc_event_bus?new r.ProxyBus(window._nc_event_bus):window._nc_event_bus=new o.SimpleBus)},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.ProxyBus=void 0;var r,o=(r=n(564))&&r.__esModule?r:{default:r};function i(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}var a="1.1.2",s=function(){function t(e){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),function(t,e,n){e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n}(this,"bus",void 0),"function"==typeof e.getVersion&&o.default.valid(e.getVersion())?o.default.major(e.getVersion())!==o.default.major(this.getVersion())&&console.warn("Proxying an event bus of version "+e.getVersion()+" with "+this.getVersion()):console.warn("Proxying an event bus with an unknown or invalid version"),this.bus=e}var e,n,r;return e=t,(n=[{key:"getVersion",value:function(){return a}},{key:"subscribe",value:function(t,e){this.bus.subscribe(t,e)}},{key:"unsubscribe",value:function(t,e){this.bus.unsubscribe(t,e)}},{key:"emit",value:function(t,e){this.bus.emit(t,e)}}])&&i(e.prototype,n),r&&i(e,r),t}();e.ProxyBus=s},function(t,e,n){(function(n){var r;e=t.exports=d,r="object"==typeof n&&n.env&&n.env.NODE_DEBUG&&/\bsemver\b/i.test(n.env.NODE_DEBUG)?function(){var t=Array.prototype.slice.call(arguments,0);t.unshift("SEMVER"),console.log.apply(console,t)}:function(){},e.SEMVER_SPEC_VERSION="2.0.0";var o=256,i=Number.MAX_SAFE_INTEGER||9007199254740991,a=e.re=[],s=e.src=[],u=e.tokens={},c=0;function f(t){u[t]=c++}f("NUMERICIDENTIFIER"),s[u.NUMERICIDENTIFIER]="0|[1-9]\\d*",f("NUMERICIDENTIFIERLOOSE"),s[u.NUMERICIDENTIFIERLOOSE]="[0-9]+",f("NONNUMERICIDENTIFIER"),s[u.NONNUMERICIDENTIFIER]="\\d*[a-zA-Z-][a-zA-Z0-9-]*",f("MAINVERSION"),s[u.MAINVERSION]="("+s[u.NUMERICIDENTIFIER]+")\\.("+s[u.NUMERICIDENTIFIER]+")\\.("+s[u.NUMERICIDENTIFIER]+")",f("MAINVERSIONLOOSE"),s[u.MAINVERSIONLOOSE]="("+s[u.NUMERICIDENTIFIERLOOSE]+")\\.("+s[u.NUMERICIDENTIFIERLOOSE]+")\\.("+s[u.NUMERICIDENTIFIERLOOSE]+")",f("PRERELEASEIDENTIFIER"),s[u.PRERELEASEIDENTIFIER]="(?:"+s[u.NUMERICIDENTIFIER]+"|"+s[u.NONNUMERICIDENTIFIER]+")",f("PRERELEASEIDENTIFIERLOOSE"),s[u.PRERELEASEIDENTIFIERLOOSE]="(?:"+s[u.NUMERICIDENTIFIERLOOSE]+"|"+s[u.NONNUMERICIDENTIFIER]+")",f("PRERELEASE"),s[u.PRERELEASE]="(?:-("+s[u.PRERELEASEIDENTIFIER]+"(?:\\."+s[u.PRERELEASEIDENTIFIER]+")*))",f("PRERELEASELOOSE"),s[u.PRERELEASELOOSE]="(?:-?("+s[u.PRERELEASEIDENTIFIERLOOSE]+"(?:\\."+s[u.PRERELEASEIDENTIFIERLOOSE]+")*))",f("BUILDIDENTIFIER"),s[u.BUILDIDENTIFIER]="[0-9A-Za-z-]+",f("BUILD"),s[u.BUILD]="(?:\\+("+s[u.BUILDIDENTIFIER]+"(?:\\."+s[u.BUILDIDENTIFIER]+")*))",f("FULL"),f("FULLPLAIN"),s[u.FULLPLAIN]="v?"+s[u.MAINVERSION]+s[u.PRERELEASE]+"?"+s[u.BUILD]+"?",s[u.FULL]="^"+s[u.FULLPLAIN]+"$",f("LOOSEPLAIN"),s[u.LOOSEPLAIN]="[v=\\s]*"+s[u.MAINVERSIONLOOSE]+s[u.PRERELEASELOOSE]+"?"+s[u.BUILD]+"?",f("LOOSE"),s[u.LOOSE]="^"+s[u.LOOSEPLAIN]+"$",f("GTLT"),s[u.GTLT]="((?:<|>)?=?)",f("XRANGEIDENTIFIERLOOSE"),s[u.XRANGEIDENTIFIERLOOSE]=s[u.NUMERICIDENTIFIERLOOSE]+"|x|X|\\*",f("XRANGEIDENTIFIER"),s[u.XRANGEIDENTIFIER]=s[u.NUMERICIDENTIFIER]+"|x|X|\\*",f("XRANGEPLAIN"),s[u.XRANGEPLAIN]="[v=\\s]*("+s[u.XRANGEIDENTIFIER]+")(?:\\.("+s[u.XRANGEIDENTIFIER]+")(?:\\.("+s[u.XRANGEIDENTIFIER]+")(?:"+s[u.PRERELEASE]+")?"+s[u.BUILD]+"?)?)?",f("XRANGEPLAINLOOSE"),s[u.XRANGEPLAINLOOSE]="[v=\\s]*("+s[u.XRANGEIDENTIFIERLOOSE]+")(?:\\.("+s[u.XRANGEIDENTIFIERLOOSE]+")(?:\\.("+s[u.XRANGEIDENTIFIERLOOSE]+")(?:"+s[u.PRERELEASELOOSE]+")?"+s[u.BUILD]+"?)?)?",f("XRANGE"),s[u.XRANGE]="^"+s[u.GTLT]+"\\s*"+s[u.XRANGEPLAIN]+"$",f("XRANGELOOSE"),s[u.XRANGELOOSE]="^"+s[u.GTLT]+"\\s*"+s[u.XRANGEPLAINLOOSE]+"$",f("COERCE"),s[u.COERCE]="(^|[^\\d])(\\d{1,16})(?:\\.(\\d{1,16}))?(?:\\.(\\d{1,16}))?(?:$|[^\\d])",f("COERCERTL"),a[u.COERCERTL]=new RegExp(s[u.COERCE],"g"),f("LONETILDE"),s[u.LONETILDE]="(?:~>?)",f("TILDETRIM"),s[u.TILDETRIM]="(\\s*)"+s[u.LONETILDE]+"\\s+",a[u.TILDETRIM]=new RegExp(s[u.TILDETRIM],"g");f("TILDE"),s[u.TILDE]="^"+s[u.LONETILDE]+s[u.XRANGEPLAIN]+"$",f("TILDELOOSE"),s[u.TILDELOOSE]="^"+s[u.LONETILDE]+s[u.XRANGEPLAINLOOSE]+"$",f("LONECARET"),s[u.LONECARET]="(?:\\^)",f("CARETTRIM"),s[u.CARETTRIM]="(\\s*)"+s[u.LONECARET]+"\\s+",a[u.CARETTRIM]=new RegExp(s[u.CARETTRIM],"g");f("CARET"),s[u.CARET]="^"+s[u.LONECARET]+s[u.XRANGEPLAIN]+"$",f("CARETLOOSE"),s[u.CARETLOOSE]="^"+s[u.LONECARET]+s[u.XRANGEPLAINLOOSE]+"$",f("COMPARATORLOOSE"),s[u.COMPARATORLOOSE]="^"+s[u.GTLT]+"\\s*("+s[u.LOOSEPLAIN]+")$|^$",f("COMPARATOR"),s[u.COMPARATOR]="^"+s[u.GTLT]+"\\s*("+s[u.FULLPLAIN]+")$|^$",f("COMPARATORTRIM"),s[u.COMPARATORTRIM]="(\\s*)"+s[u.GTLT]+"\\s*("+s[u.LOOSEPLAIN]+"|"+s[u.XRANGEPLAIN]+")",a[u.COMPARATORTRIM]=new RegExp(s[u.COMPARATORTRIM],"g");f("HYPHENRANGE"),s[u.HYPHENRANGE]="^\\s*("+s[u.XRANGEPLAIN]+")\\s+-\\s+("+s[u.XRANGEPLAIN]+")\\s*$",f("HYPHENRANGELOOSE"),s[u.HYPHENRANGELOOSE]="^\\s*("+s[u.XRANGEPLAINLOOSE]+")\\s+-\\s+("+s[u.XRANGEPLAINLOOSE]+")\\s*$",f("STAR"),s[u.STAR]="(<|>)?=?\\s*\\*";for(var l=0;l<c;l++)r(l,s[l]),a[l]||(a[l]=new RegExp(s[l]));function p(t,e){if(e&&"object"==typeof e||(e={loose:!!e,includePrerelease:!1}),t instanceof d)return t;if("string"!=typeof t)return null;if(t.length>o)return null;if(!(e.loose?a[u.LOOSE]:a[u.FULL]).test(t))return null;try{return new d(t,e)}catch(t){return null}}function d(t,e){if(e&&"object"==typeof e||(e={loose:!!e,includePrerelease:!1}),t instanceof d){if(t.loose===e.loose)return t;t=t.version}else if("string"!=typeof t)throw new TypeError("Invalid Version: "+t);if(t.length>o)throw new TypeError("version is longer than "+o+" characters");if(!(this instanceof d))return new d(t,e);r("SemVer",t,e),this.options=e,this.loose=!!e.loose;var n=t.trim().match(e.loose?a[u.LOOSE]:a[u.FULL]);if(!n)throw new TypeError("Invalid Version: "+t);if(this.raw=t,this.major=+n[1],this.minor=+n[2],this.patch=+n[3],this.major>i||this.major<0)throw new TypeError("Invalid major version");if(this.minor>i||this.minor<0)throw new TypeError("Invalid minor version");if(this.patch>i||this.patch<0)throw new TypeError("Invalid patch version");n[4]?this.prerelease=n[4].split(".").map((function(t){if(/^[0-9]+$/.test(t)){var e=+t;if(e>=0&&e<i)return e}return t})):this.prerelease=[],this.build=n[5]?n[5].split("."):[],this.format()}e.parse=p,e.valid=function(t,e){var n=p(t,e);return n?n.version:null},e.clean=function(t,e){var n=p(t.trim().replace(/^[=v]+/,""),e);return n?n.version:null},e.SemVer=d,d.prototype.format=function(){return this.version=this.major+"."+this.minor+"."+this.patch,this.prerelease.length&&(this.version+="-"+this.prerelease.join(".")),this.version},d.prototype.toString=function(){return this.version},d.prototype.compare=function(t){return r("SemVer.compare",this.version,this.options,t),t instanceof d||(t=new d(t,this.options)),this.compareMain(t)||this.comparePre(t)},d.prototype.compareMain=function(t){return t instanceof d||(t=new d(t,this.options)),h(this.major,t.major)||h(this.minor,t.minor)||h(this.patch,t.patch)},d.prototype.comparePre=function(t){if(t instanceof d||(t=new d(t,this.options)),this.prerelease.length&&!t.prerelease.length)return-1;if(!this.prerelease.length&&t.prerelease.length)return 1;if(!this.prerelease.length&&!t.prerelease.length)return 0;var e=0;do{var n=this.prerelease[e],o=t.prerelease[e];if(r("prerelease compare",e,n,o),void 0===n&&void 0===o)return 0;if(void 0===o)return 1;if(void 0===n)return-1;if(n!==o)return h(n,o)}while(++e)},d.prototype.compareBuild=function(t){t instanceof d||(t=new d(t,this.options));var e=0;do{var n=this.build[e],o=t.build[e];if(r("prerelease compare",e,n,o),void 0===n&&void 0===o)return 0;if(void 0===o)return 1;if(void 0===n)return-1;if(n!==o)return h(n,o)}while(++e)},d.prototype.inc=function(t,e){switch(t){case"premajor":this.prerelease.length=0,this.patch=0,this.minor=0,this.major++,this.inc("pre",e);break;case"preminor":this.prerelease.length=0,this.patch=0,this.minor++,this.inc("pre",e);break;case"prepatch":this.prerelease.length=0,this.inc("patch",e),this.inc("pre",e);break;case"prerelease":0===this.prerelease.length&&this.inc("patch",e),this.inc("pre",e);break;case"major":0===this.minor&&0===this.patch&&0!==this.prerelease.length||this.major++,this.minor=0,this.patch=0,this.prerelease=[];break;case"minor":0===this.patch&&0!==this.prerelease.length||this.minor++,this.patch=0,this.prerelease=[];break;case"patch":0===this.prerelease.length&&this.patch++,this.prerelease=[];break;case"pre":if(0===this.prerelease.length)this.prerelease=[0];else{for(var n=this.prerelease.length;--n>=0;)"number"==typeof this.prerelease[n]&&(this.prerelease[n]++,n=-2);-1===n&&this.prerelease.push(0)}e&&(this.prerelease[0]===e?isNaN(this.prerelease[1])&&(this.prerelease=[e,0]):this.prerelease=[e,0]);break;default:throw new Error("invalid increment argument: "+t)}return this.format(),this.raw=this.version,this},e.inc=function(t,e,n,r){"string"==typeof n&&(r=n,n=void 0);try{return new d(t,n).inc(e,r).version}catch(t){return null}},e.diff=function(t,e){if(E(t,e))return null;var n=p(t),r=p(e),o="";if(n.prerelease.length||r.prerelease.length){o="pre";var i="prerelease"}for(var a in n)if(("major"===a||"minor"===a||"patch"===a)&&n[a]!==r[a])return o+a;return i},e.compareIdentifiers=h;var v=/^[0-9]+$/;function h(t,e){var n=v.test(t),r=v.test(e);return n&&r&&(t=+t,e=+e),t===e?0:n&&!r?-1:r&&!n?1:t<e?-1:1}function m(t,e,n){return new d(t,n).compare(new d(e,n))}function y(t,e,n){return m(t,e,n)>0}function g(t,e,n){return m(t,e,n)<0}function E(t,e,n){return 0===m(t,e,n)}function b(t,e,n){return 0!==m(t,e,n)}function O(t,e,n){return m(t,e,n)>=0}function x(t,e,n){return m(t,e,n)<=0}function w(t,e,n,r){switch(e){case"===":return"object"==typeof t&&(t=t.version),"object"==typeof n&&(n=n.version),t===n;case"!==":return"object"==typeof t&&(t=t.version),"object"==typeof n&&(n=n.version),t!==n;case"":case"=":case"==":return E(t,n,r);case"!=":return b(t,n,r);case">":return y(t,n,r);case">=":return O(t,n,r);case"<":return g(t,n,r);case"<=":return x(t,n,r);default:throw new TypeError("Invalid operator: "+e)}}function _(t,e){if(e&&"object"==typeof e||(e={loose:!!e,includePrerelease:!1}),t instanceof _){if(t.loose===!!e.loose)return t;t=t.value}if(!(this instanceof _))return new _(t,e);r("comparator",t,e),this.options=e,this.loose=!!e.loose,this.parse(t),this.semver===I?this.value="":this.value=this.operator+this.semver.version,r("comp",this)}e.rcompareIdentifiers=function(t,e){return h(e,t)},e.major=function(t,e){return new d(t,e).major},e.minor=function(t,e){return new d(t,e).minor},e.patch=function(t,e){return new d(t,e).patch},e.compare=m,e.compareLoose=function(t,e){return m(t,e,!0)},e.compareBuild=function(t,e,n){var r=new d(t,n),o=new d(e,n);return r.compare(o)||r.compareBuild(o)},e.rcompare=function(t,e,n){return m(e,t,n)},e.sort=function(t,n){return t.sort((function(t,r){return e.compareBuild(t,r,n)}))},e.rsort=function(t,n){return t.sort((function(t,r){return e.compareBuild(r,t,n)}))},e.gt=y,e.lt=g,e.eq=E,e.neq=b,e.gte=O,e.lte=x,e.cmp=w,e.Comparator=_;var I={};function S(t,e){if(e&&"object"==typeof e||(e={loose:!!e,includePrerelease:!1}),t instanceof S)return t.loose===!!e.loose&&t.includePrerelease===!!e.includePrerelease?t:new S(t.raw,e);if(t instanceof _)return new S(t.value,e);if(!(this instanceof S))return new S(t,e);if(this.options=e,this.loose=!!e.loose,this.includePrerelease=!!e.includePrerelease,this.raw=t,this.set=t.split(/\s*\|\|\s*/).map((function(t){return this.parseRange(t.trim())}),this).filter((function(t){return t.length})),!this.set.length)throw new TypeError("Invalid SemVer Range: "+t);this.format()}function A(t,e){for(var n=!0,r=t.slice(),o=r.pop();n&&r.length;)n=r.every((function(t){return o.intersects(t,e)})),o=r.pop();return n}function R(t){return!t||"x"===t.toLowerCase()||"*"===t}function T(t,e,n,r,o,i,a,s,u,c,f,l,p){return((e=R(n)?"":R(r)?">="+n+".0.0":R(o)?">="+n+"."+r+".0":">="+e)+" "+(s=R(u)?"":R(c)?"<"+(+u+1)+".0.0":R(f)?"<"+u+"."+(+c+1)+".0":l?"<="+u+"."+c+"."+f+"-"+l:"<="+s)).trim()}function L(t,e,n){for(var o=0;o<t.length;o++)if(!t[o].test(e))return!1;if(e.prerelease.length&&!n.includePrerelease){for(o=0;o<t.length;o++)if(r(t[o].semver),t[o].semver!==I&&t[o].semver.prerelease.length>0){var i=t[o].semver;if(i.major===e.major&&i.minor===e.minor&&i.patch===e.patch)return!0}return!1}return!0}function C(t,e,n){try{e=new S(e,n)}catch(t){return!1}return e.test(t)}function N(t,e,n,r){var o,i,a,s,u;switch(t=new d(t,r),e=new S(e,r),n){case">":o=y,i=x,a=g,s=">",u=">=";break;case"<":o=g,i=O,a=y,s="<",u="<=";break;default:throw new TypeError('Must provide a hilo val of "<" or ">"')}if(C(t,e,r))return!1;for(var c=0;c<e.set.length;++c){var f=e.set[c],l=null,p=null;if(f.forEach((function(t){t.semver===I&&(t=new _(">=0.0.0")),l=l||t,p=p||t,o(t.semver,l.semver,r)?l=t:a(t.semver,p.semver,r)&&(p=t)})),l.operator===s||l.operator===u)return!1;if((!p.operator||p.operator===s)&&i(t,p.semver))return!1;if(p.operator===u&&a(t,p.semver))return!1}return!0}_.prototype.parse=function(t){var e=this.options.loose?a[u.COMPARATORLOOSE]:a[u.COMPARATOR],n=t.match(e);if(!n)throw new TypeError("Invalid comparator: "+t);this.operator=void 0!==n[1]?n[1]:"","="===this.operator&&(this.operator=""),n[2]?this.semver=new d(n[2],this.options.loose):this.semver=I},_.prototype.toString=function(){return this.value},_.prototype.test=function(t){if(r("Comparator.test",t,this.options.loose),this.semver===I||t===I)return!0;if("string"==typeof t)try{t=new d(t,this.options)}catch(t){return!1}return w(t,this.operator,this.semver,this.options)},_.prototype.intersects=function(t,e){if(!(t instanceof _))throw new TypeError("a Comparator is required");var n;if(e&&"object"==typeof e||(e={loose:!!e,includePrerelease:!1}),""===this.operator)return""===this.value||(n=new S(t.value,e),C(this.value,n,e));if(""===t.operator)return""===t.value||(n=new S(this.value,e),C(t.semver,n,e));var r=!(">="!==this.operator&&">"!==this.operator||">="!==t.operator&&">"!==t.operator),o=!("<="!==this.operator&&"<"!==this.operator||"<="!==t.operator&&"<"!==t.operator),i=this.semver.version===t.semver.version,a=!(">="!==this.operator&&"<="!==this.operator||">="!==t.operator&&"<="!==t.operator),s=w(this.semver,"<",t.semver,e)&&(">="===this.operator||">"===this.operator)&&("<="===t.operator||"<"===t.operator),u=w(this.semver,">",t.semver,e)&&("<="===this.operator||"<"===this.operator)&&(">="===t.operator||">"===t.operator);return r||o||i&&a||s||u},e.Range=S,S.prototype.format=function(){return this.range=this.set.map((function(t){return t.join(" ").trim()})).join("||").trim(),this.range},S.prototype.toString=function(){return this.range},S.prototype.parseRange=function(t){var e=this.options.loose;t=t.trim();var n=e?a[u.HYPHENRANGELOOSE]:a[u.HYPHENRANGE];t=t.replace(n,T),r("hyphen replace",t),t=t.replace(a[u.COMPARATORTRIM],"$1$2$3"),r("comparator trim",t,a[u.COMPARATORTRIM]),t=(t=(t=t.replace(a[u.TILDETRIM],"$1~")).replace(a[u.CARETTRIM],"$1^")).split(/\s+/).join(" ");var o=e?a[u.COMPARATORLOOSE]:a[u.COMPARATOR],i=t.split(" ").map((function(t){return function(t,e){return r("comp",t,e),t=function(t,e){return t.trim().split(/\s+/).map((function(t){return function(t,e){r("caret",t,e);var n=e.loose?a[u.CARETLOOSE]:a[u.CARET];return t.replace(n,(function(e,n,o,i,a){var s;return r("caret",t,e,n,o,i,a),R(n)?s="":R(o)?s=">="+n+".0.0 <"+(+n+1)+".0.0":R(i)?s="0"===n?">="+n+"."+o+".0 <"+n+"."+(+o+1)+".0":">="+n+"."+o+".0 <"+(+n+1)+".0.0":a?(r("replaceCaret pr",a),s="0"===n?"0"===o?">="+n+"."+o+"."+i+"-"+a+" <"+n+"."+o+"."+(+i+1):">="+n+"."+o+"."+i+"-"+a+" <"+n+"."+(+o+1)+".0":">="+n+"."+o+"."+i+"-"+a+" <"+(+n+1)+".0.0"):(r("no pr"),s="0"===n?"0"===o?">="+n+"."+o+"."+i+" <"+n+"."+o+"."+(+i+1):">="+n+"."+o+"."+i+" <"+n+"."+(+o+1)+".0":">="+n+"."+o+"."+i+" <"+(+n+1)+".0.0"),r("caret return",s),s}))}(t,e)})).join(" ")}(t,e),r("caret",t),t=function(t,e){return t.trim().split(/\s+/).map((function(t){return function(t,e){var n=e.loose?a[u.TILDELOOSE]:a[u.TILDE];return t.replace(n,(function(e,n,o,i,a){var s;return r("tilde",t,e,n,o,i,a),R(n)?s="":R(o)?s=">="+n+".0.0 <"+(+n+1)+".0.0":R(i)?s=">="+n+"."+o+".0 <"+n+"."+(+o+1)+".0":a?(r("replaceTilde pr",a),s=">="+n+"."+o+"."+i+"-"+a+" <"+n+"."+(+o+1)+".0"):s=">="+n+"."+o+"."+i+" <"+n+"."+(+o+1)+".0",r("tilde return",s),s}))}(t,e)})).join(" ")}(t,e),r("tildes",t),t=function(t,e){return r("replaceXRanges",t,e),t.split(/\s+/).map((function(t){return function(t,e){t=t.trim();var n=e.loose?a[u.XRANGELOOSE]:a[u.XRANGE];return t.replace(n,(function(n,o,i,a,s,u){r("xRange",t,n,o,i,a,s,u);var c=R(i),f=c||R(a),l=f||R(s),p=l;return"="===o&&p&&(o=""),u=e.includePrerelease?"-0":"",c?n=">"===o||"<"===o?"<0.0.0-0":"*":o&&p?(f&&(a=0),s=0,">"===o?(o=">=",f?(i=+i+1,a=0,s=0):(a=+a+1,s=0)):"<="===o&&(o="<",f?i=+i+1:a=+a+1),n=o+i+"."+a+"."+s+u):f?n=">="+i+".0.0"+u+" <"+(+i+1)+".0.0"+u:l&&(n=">="+i+"."+a+".0"+u+" <"+i+"."+(+a+1)+".0"+u),r("xRange return",n),n}))}(t,e)})).join(" ")}(t,e),r("xrange",t),t=function(t,e){return r("replaceStars",t,e),t.trim().replace(a[u.STAR],"")}(t,e),r("stars",t),t}(t,this.options)}),this).join(" ").split(/\s+/);return this.options.loose&&(i=i.filter((function(t){return!!t.match(o)}))),i=i.map((function(t){return new _(t,this.options)}),this)},S.prototype.intersects=function(t,e){if(!(t instanceof S))throw new TypeError("a Range is required");return this.set.some((function(n){return A(n,e)&&t.set.some((function(t){return A(t,e)&&n.every((function(n){return t.every((function(t){return n.intersects(t,e)}))}))}))}))},e.toComparators=function(t,e){return new S(t,e).set.map((function(t){return t.map((function(t){return t.value})).join(" ").trim().split(" ")}))},S.prototype.test=function(t){if(!t)return!1;if("string"==typeof t)try{t=new d(t,this.options)}catch(t){return!1}for(var e=0;e<this.set.length;e++)if(L(this.set[e],t,this.options))return!0;return!1},e.satisfies=C,e.maxSatisfying=function(t,e,n){var r=null,o=null;try{var i=new S(e,n)}catch(t){return null}return t.forEach((function(t){i.test(t)&&(r&&-1!==o.compare(t)||(o=new d(r=t,n)))})),r},e.minSatisfying=function(t,e,n){var r=null,o=null;try{var i=new S(e,n)}catch(t){return null}return t.forEach((function(t){i.test(t)&&(r&&1!==o.compare(t)||(o=new d(r=t,n)))})),r},e.minVersion=function(t,e){t=new S(t,e);var n=new d("0.0.0");if(t.test(n))return n;if(n=new d("0.0.0-0"),t.test(n))return n;n=null;for(var r=0;r<t.set.length;++r){t.set[r].forEach((function(t){var e=new d(t.semver.version);switch(t.operator){case">":0===e.prerelease.length?e.patch++:e.prerelease.push(0),e.raw=e.format();case"":case">=":n&&!y(n,e)||(n=e);break;case"<":case"<=":break;default:throw new Error("Unexpected operation: "+t.operator)}}))}if(n&&t.test(n))return n;return null},e.validRange=function(t,e){try{return new S(t,e).range||"*"}catch(t){return null}},e.ltr=function(t,e,n){return N(t,e,"<",n)},e.gtr=function(t,e,n){return N(t,e,">",n)},e.outside=N,e.prerelease=function(t,e){var n=p(t,e);return n&&n.prerelease.length?n.prerelease:null},e.intersects=function(t,e,n){return t=new S(t,n),e=new S(e,n),t.intersects(e)},e.coerce=function(t,e){if(t instanceof d)return t;"number"==typeof t&&(t=String(t));if("string"!=typeof t)return null;var n=null;if((e=e||{}).rtl){for(var r;(r=a[u.COERCERTL].exec(t))&&(!n||n.index+n[0].length!==t.length);)n&&r.index+r[0].length===n.index+n[0].length||(n=r),a[u.COERCERTL].lastIndex=r.index+r[1].length+r[2].length;a[u.COERCERTL].lastIndex=-1}else n=t.match(a[u.COERCE]);if(null===n)return null;return p(n[2]+"."+(n[3]||"0")+"."+(n[4]||"0"),e)}}).call(this,n(72))},function(t,e,n){"use strict";function r(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}n(566),n(570),n(380),n(578),n(589),n(591),n(593),n(596),Object.defineProperty(e,"__esModule",{value:!0}),e.SimpleBus=void 0;var o="1.1.2",i=function(){function t(){var e,n,r;!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),e=this,n="handlers",r=new Map,n in e?Object.defineProperty(e,n,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[n]=r}var e,n,i;return e=t,(n=[{key:"getVersion",value:function(){return o}},{key:"subscribe",value:function(t,e){this.handlers.set(t,(this.handlers.get(t)||[]).concat(e))}},{key:"unsubscribe",value:function(t,e){this.handlers.set(t,(this.handlers.get(t)||[]).filter((function(t){return t!=e})))}},{key:"emit",value:function(t,e){(this.handlers.get(t)||[]).forEach((function(t){try{t(e)}catch(t){console.error("could not invoke event listener",t)}}))}}])&&r(e.prototype,n),i&&r(e,i),t}();e.SimpleBus=i},function(t,e,n){"use strict";var r=n(68),o=n(14),i=n(373),a=n(25),s=n(102),u=n(101),c=n(567),f=n(374),l=n(376),p=n(11),d=n(377),v=p("isConcatSpreadable"),h=d>=51||!o((function(){var t=[];return t[v]=!1,t.concat()[0]!==t})),m=l("concat"),y=function(t){if(!a(t))return!1;var e=t[v];return void 0!==e?!!e:i(t)};r({target:"Array",proto:!0,forced:!h||!m},{concat:function(t){var e,n,r,o,i,a=s(this),l=f(a,0),p=0;for(e=-1,r=arguments.length;e<r;e++)if(i=-1===e?a:arguments[e],y(i)){if(p+(o=u(i.length))>9007199254740991)throw TypeError("Maximum allowed index exceeded");for(n=0;n<o;n++,p++)n in i&&c(l,p,i[n])}else{if(p>=9007199254740991)throw TypeError("Maximum allowed index exceeded");c(l,p++,i)}return l.length=p,l}})},function(t,e,n){"use strict";var r=n(154),o=n(32),i=n(96);t.exports=function(t,e,n){var a=r(e);a in t?o.f(t,a,i(0,n)):t[a]=n}},function(t,e,n){var r=n(375);t.exports=r&&!Symbol.sham&&"symbol"==typeof Symbol.iterator},function(t,e,n){var r=n(100);t.exports=r("navigator","userAgent")||""},function(t,e,n){"use strict";var r=n(68),o=n(378).filter,i=n(376),a=n(379),s=i("filter"),u=a("filter");r({target:"Array",proto:!0,forced:!s||!u},{filter:function(t){return o(this,t,arguments.length>1?arguments[1]:void 0)}})},function(t,e){t.exports=function(t){if("function"!=typeof t)throw TypeError(String(t)+" is not a function");return t}},function(t,e,n){var r=n(11),o=n(162),i=n(32),a=r("unscopables"),s=Array.prototype;null==s[a]&&i.f(s,a,{configurable:!0,value:o(null)}),t.exports=function(t){s[a][t]=!0}},function(t,e,n){var r=n(31),o=n(32),i=n(42),a=n(364);t.exports=r?Object.defineProperties:function(t,e){i(t);for(var n,r=a(e),s=r.length,u=0;s>u;)o.f(t,n=r[u++],e[n]);return t}},function(t,e,n){var r=n(100);t.exports=r("document","documentElement")},function(t,e,n){"use strict";var r=n(381).IteratorPrototype,o=n(162),i=n(96),a=n(164),s=n(70),u=function(){return this};t.exports=function(t,e,n){var c=e+" Iterator";return t.prototype=o(r,{next:i(1,n)}),a(t,c,!1,!0),s[c]=u,t}},function(t,e,n){var r=n(14);t.exports=!r((function(){function t(){}return t.prototype.constructor=null,Object.getPrototypeOf(new t)!==t.prototype}))},function(t,e,n){var r=n(25);t.exports=function(t){if(!r(t)&&null!==t)throw TypeError("Can't set "+String(t)+" as a prototype");return t}},function(t,e,n){"use strict";var r=n(579),o=n(586);t.exports=r("Map",(function(t){return function(){return t(this,arguments.length?arguments[0]:void 0)}}),o)},function(t,e,n){"use strict";var r=n(68),o=n(10),i=n(363),a=n(69),s=n(384),u=n(385),c=n(387),f=n(25),l=n(14),p=n(584),d=n(164),v=n(585);t.exports=function(t,e,n){var h=-1!==t.indexOf("Map"),m=-1!==t.indexOf("Weak"),y=h?"set":"add",g=o[t],E=g&&g.prototype,b=g,O={},x=function(t){var e=E[t];a(E,t,"add"==t?function(t){return e.call(this,0===t?0:t),this}:"delete"==t?function(t){return!(m&&!f(t))&&e.call(this,0===t?0:t)}:"get"==t?function(t){return m&&!f(t)?void 0:e.call(this,0===t?0:t)}:"has"==t?function(t){return!(m&&!f(t))&&e.call(this,0===t?0:t)}:function(t,n){return e.call(this,0===t?0:t,n),this})};if(i(t,"function"!=typeof g||!(m||E.forEach&&!l((function(){(new g).entries().next()})))))b=n.getConstructor(e,t,h,y),s.REQUIRED=!0;else if(i(t,!0)){var w=new b,_=w[y](m?{}:-0,1)!=w,I=l((function(){w.has(1)})),S=p((function(t){new g(t)})),A=!m&&l((function(){for(var t=new g,e=5;e--;)t[y](e,e);return!t.has(-0)}));S||((b=e((function(e,n){c(e,b,t);var r=v(new g,e,b);return null!=n&&u(n,r[y],r,h),r}))).prototype=E,E.constructor=b),(I||A)&&(x("delete"),x("has"),h&&x("get")),(A||_)&&x(y),m&&E.clear&&delete E.clear}return O[t]=b,r({global:!0,forced:b!=g},O),d(b,t),m||n.setStrong(b,t,h),b}},function(t,e,n){var r=n(14);t.exports=!r((function(){return Object.isExtensible(Object.preventExtensions({}))}))},function(t,e,n){var r=n(11),o=n(70),i=r("iterator"),a=Array.prototype;t.exports=function(t){return void 0!==t&&(o.Array===t||a[i]===t)}},function(t,e,n){var r=n(386),o=n(70),i=n(11)("iterator");t.exports=function(t){if(null!=t)return t[i]||t["@@iterator"]||o[r(t)]}},function(t,e,n){var r=n(42);t.exports=function(t,e,n,o){try{return o?e(r(n)[0],n[1]):e(n)}catch(e){var i=t.return;throw void 0!==i&&r(i.call(t)),e}}},function(t,e,n){var r=n(11)("iterator"),o=!1;try{var i=0,a={next:function(){return{done:!!i++}},return:function(){o=!0}};a[r]=function(){return this},Array.from(a,(function(){throw 2}))}catch(t){}t.exports=function(t,e){if(!e&&!o)return!1;var n=!1;try{var i={};i[r]=function(){return{next:function(){return{done:n=!0}}}},t(i)}catch(t){}return n}},function(t,e,n){var r=n(25),o=n(383);t.exports=function(t,e,n){var i,a;return o&&"function"==typeof(i=e.constructor)&&i!==n&&r(a=i.prototype)&&a!==n.prototype&&o(t,a),t}},function(t,e,n){"use strict";var r=n(32).f,o=n(162),i=n(587),a=n(161),s=n(387),u=n(385),c=n(163),f=n(588),l=n(31),p=n(384).fastKey,d=n(98),v=d.set,h=d.getterFor;t.exports={getConstructor:function(t,e,n,c){var f=t((function(t,r){s(t,f,e),v(t,{type:e,index:o(null),first:void 0,last:void 0,size:0}),l||(t.size=0),null!=r&&u(r,t[c],t,n)})),d=h(e),m=function(t,e,n){var r,o,i=d(t),a=y(t,e);return a?a.value=n:(i.last=a={index:o=p(e,!0),key:e,value:n,previous:r=i.last,next:void 0,removed:!1},i.first||(i.first=a),r&&(r.next=a),l?i.size++:t.size++,"F"!==o&&(i.index[o]=a)),t},y=function(t,e){var n,r=d(t),o=p(e);if("F"!==o)return r.index[o];for(n=r.first;n;n=n.next)if(n.key==e)return n};return i(f.prototype,{clear:function(){for(var t=d(this),e=t.index,n=t.first;n;)n.removed=!0,n.previous&&(n.previous=n.previous.next=void 0),delete e[n.index],n=n.next;t.first=t.last=void 0,l?t.size=0:this.size=0},delete:function(t){var e=d(this),n=y(this,t);if(n){var r=n.next,o=n.previous;delete e.index[n.index],n.removed=!0,o&&(o.next=r),r&&(r.previous=o),e.first==n&&(e.first=r),e.last==n&&(e.last=o),l?e.size--:this.size--}return!!n},forEach:function(t){for(var e,n=d(this),r=a(t,arguments.length>1?arguments[1]:void 0,3);e=e?e.next:n.first;)for(r(e.value,e.key,this);e&&e.removed;)e=e.previous},has:function(t){return!!y(this,t)}}),i(f.prototype,n?{get:function(t){var e=y(this,t);return e&&e.value},set:function(t,e){return m(this,0===t?0:t,e)}}:{add:function(t){return m(this,t=0===t?0:t,t)}}),l&&r(f.prototype,"size",{get:function(){return d(this).size}}),f},setStrong:function(t,e,n){var r=e+" Iterator",o=h(e),i=h(r);c(t,e,(function(t,e){v(this,{type:r,target:t,state:o(t),kind:e,last:void 0})}),(function(){for(var t=i(this),e=t.kind,n=t.last;n&&n.removed;)n=n.previous;return t.target&&(t.last=n=n?n.next:t.state.first)?"keys"==e?{value:n.key,done:!1}:"values"==e?{value:n.value,done:!1}:{value:[n.key,n.value],done:!1}:(t.target=void 0,{value:void 0,done:!0})}),n?"entries":"values",!n,!0),f(e)}}},function(t,e,n){var r=n(69);t.exports=function(t,e,n){for(var o in e)r(t,o,e[o],n);return t}},function(t,e,n){"use strict";var r=n(100),o=n(32),i=n(11),a=n(31),s=i("species");t.exports=function(t){var e=r(t),n=o.f;a&&e&&!e[s]&&n(e,s,{configurable:!0,get:function(){return this}})}},function(t,e,n){var r=n(165),o=n(69),i=n(590);r||o(Object.prototype,"toString",i,{unsafe:!0})},function(t,e,n){"use strict";var r=n(165),o=n(386);t.exports=r?{}.toString:function(){return"[object "+o(this)+"]"}},function(t,e,n){"use strict";var r=n(592).charAt,o=n(98),i=n(163),a=o.set,s=o.getterFor("String Iterator");i(String,"String",(function(t){a(this,{type:"String Iterator",string:String(t),index:0})}),(function(){var t,e=s(this),n=e.string,o=e.index;return o>=n.length?{value:void 0,done:!0}:(t=r(n,o),e.index+=t.length,{value:t,done:!1})}))},function(t,e,n){var r=n(159),o=n(153),i=function(t){return function(e,n){var i,a,s=String(o(e)),u=r(n),c=s.length;return u<0||u>=c?t?"":void 0:(i=s.charCodeAt(u))<55296||i>56319||u+1===c||(a=s.charCodeAt(u+1))<56320||a>57343?t?s.charAt(u):i:t?s.slice(u,u+2):a-56320+(i-55296<<10)+65536}};t.exports={codeAt:i(!1),charAt:i(!0)}},function(t,e,n){var r=n(10),o=n(388),i=n(594),a=n(34);for(var s in o){var u=r[s],c=u&&u.prototype;if(c&&c.forEach!==i)try{a(c,"forEach",i)}catch(t){c.forEach=i}}},function(t,e,n){"use strict";var r=n(378).forEach,o=n(595),i=n(379),a=o("forEach"),s=i("forEach");t.exports=a&&s?[].forEach:function(t){return r(this,t,arguments.length>1?arguments[1]:void 0)}},function(t,e,n){"use strict";var r=n(14);t.exports=function(t,e){var n=[][t];return!!n&&r((function(){n.call(null,e||function(){throw 1},1)}))}},function(t,e,n){var r=n(10),o=n(388),i=n(380),a=n(34),s=n(11),u=s("iterator"),c=s("toStringTag"),f=i.values;for(var l in o){var p=r[l],d=p&&p.prototype;if(d){if(d[u]!==f)try{a(d,u,f)}catch(t){d[u]=f}if(d[c]||a(d,c,l),o[l])for(var v in i)if(d[v]!==i[v])try{a(d,v,i[v])}catch(t){d[v]=i[v]}}}},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.getCurrentUser=function(){if(null===o)return null;return{uid:o,displayName:a}};var r=document.getElementsByTagName("head")[0],o=r?r.getAttribute("data-user"):null,i=document.getElementsByTagName("head")[0],a=i?i.getAttribute("data-user-displayname"):null},,,,,,function(t,e,n){var r=n(184);t.exports=!r((function(){return 7!=Object.defineProperty({},"a",{get:function(){return 7}}).a}))},function(t,e,n){var r=n(603),o=n(720),i=n(716);t.exports=r?function(t,e,n){return o.f(t,e,i(1,n))}:function(t,e,n){return t[e]=n,t}},function(t,e,n){var r=n(622);t.exports=function(t){if(!r(t))throw TypeError(String(t)+" is not an object");return t}},function(t,e,n){var r=n(607);t.exports=!r((function(){return 7!=Object.defineProperty({},"a",{get:function(){return 7}}).a}))},function(t,e){t.exports=function(t){try{return!!t()}catch(t){return!0}}},function(t,e){var n={}.hasOwnProperty;t.exports=function(t,e){return n.call(t,e)}},,,,,,,,,,,,,function(t,e){t.exports=function(t){if(null==t)throw TypeError("Can't call method on "+t);return t}},function(t,e){t.exports=function(t){return"object"==typeof t?null!==t:"function"==typeof t}},function(t,e,n){var r=n(176),o=n(604),i=n(454),a=n(667),s=n(721),u=n(997),c=u.get,f=u.enforce,l=String(String).split("String");(t.exports=function(t,e,n,s){var u=!!s&&!!s.unsafe,c=!!s&&!!s.enumerable,p=!!s&&!!s.noTargetGet;"function"==typeof n&&("string"!=typeof e||i(n,"name")||o(n,"name",e),f(n).source=l.join("string"==typeof e?e:"")),t!==r?(u?!p&&t[e]&&(c=!0):delete t[e],c?t[e]=n:o(t,e,n)):c?t[e]=n:a(e,n)})(Function.prototype,"toString",(function(){return"function"==typeof this&&c(this).source||s(this)}))},function(t,e){var n=Math.ceil,r=Math.floor;t.exports=function(t){return isNaN(t=+t)?0:(t>0?r:n)(t)}},function(t,e){t.exports=function(t){return"object"==typeof t?null!==t:"function"==typeof t}},function(t,e,n){var r=n(606),o=n(742),i=n(737);t.exports=r?function(t,e,n){return o.f(t,e,i(1,n))}:function(t,e,n){return t[e]=n,t}},,,,function(t,e,n){var r=n(1050);"string"==typeof r&&(r=[[t.i,r,""]]),r.locals&&(t.exports=r.locals);(0,n(106).default)("34b3c1e4",r,!0,{})},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),Object.defineProperty(e,"getRequestToken",{enumerable:!0,get:function(){return r.getRequestToken}}),Object.defineProperty(e,"onRequestTokenUpdate",{enumerable:!0,get:function(){return r.onRequestTokenUpdate}}),Object.defineProperty(e,"getCurrentUser",{enumerable:!0,get:function(){return o.getCurrentUser}});var r=n(993),o=n(994)},,,,function(t,e,n){(function(t){var r=void 0!==t&&t||"undefined"!=typeof self&&self||window,o=Function.prototype.apply;function i(t,e){this._id=t,this._clearFn=e}e.setTimeout=function(){return new i(o.call(setTimeout,r,arguments),clearTimeout)},e.setInterval=function(){return new i(o.call(setInterval,r,arguments),clearInterval)},e.clearTimeout=e.clearInterval=function(t){t&&t.close()},i.prototype.unref=i.prototype.ref=function(){},i.prototype.close=function(){this._clearFn.call(r,this._id)},e.enroll=function(t,e){clearTimeout(t._idleTimeoutId),t._idleTimeout=e},e.unenroll=function(t){clearTimeout(t._idleTimeoutId),t._idleTimeout=-1},e._unrefActive=e.active=function(t){clearTimeout(t._idleTimeoutId);var e=t._idleTimeout;e>=0&&(t._idleTimeoutId=setTimeout((function(){t._onTimeout&&t._onTimeout()}),e))},n(636),e.setImmediate="undefined"!=typeof self&&self.setImmediate||void 0!==t&&t.setImmediate||this&&this.setImmediate,e.clearImmediate="undefined"!=typeof self&&self.clearImmediate||void 0!==t&&t.clearImmediate||this&&this.clearImmediate}).call(this,n(17))},function(t,e,n){(function(t,e){!function(t,n){"use strict";if(!t.setImmediate){var r,o,i,a,s,u=1,c={},f=!1,l=t.document,p=Object.getPrototypeOf&&Object.getPrototypeOf(t);p=p&&p.setTimeout?p:t,"[object process]"==={}.toString.call(t.process)?r=function(t){e.nextTick((function(){v(t)}))}:!function(){if(t.postMessage&&!t.importScripts){var e=!0,n=t.onmessage;return t.onmessage=function(){e=!1},t.postMessage("","*"),t.onmessage=n,e}}()?t.MessageChannel?((i=new MessageChannel).port1.onmessage=function(t){v(t.data)},r=function(t){i.port2.postMessage(t)}):l&&"onreadystatechange"in l.createElement("script")?(o=l.documentElement,r=function(t){var e=l.createElement("script");e.onreadystatechange=function(){v(t),e.onreadystatechange=null,o.removeChild(e),e=null},o.appendChild(e)}):r=function(t){setTimeout(v,0,t)}:(a="setImmediate$"+Math.random()+"$",s=function(e){e.source===t&&"string"==typeof e.data&&0===e.data.indexOf(a)&&v(+e.data.slice(a.length))},t.addEventListener?t.addEventListener("message",s,!1):t.attachEvent("onmessage",s),r=function(e){t.postMessage(a+e,"*")}),p.setImmediate=function(t){"function"!=typeof t&&(t=new Function(""+t));for(var e=new Array(arguments.length-1),n=0;n<e.length;n++)e[n]=arguments[n+1];var o={callback:t,args:e};return c[u]=o,r(u),u++},p.clearImmediate=d}function d(t){delete c[t]}function v(t){if(f)setTimeout(v,0,t);else{var e=c[t];if(e){f=!0;try{!function(t){var e=t.callback,r=t.args;switch(r.length){case 0:e();break;case 1:e(r[0]);break;case 2:e(r[0],r[1]);break;case 3:e(r[0],r[1],r[2]);break;default:e.apply(n,r)}}(e)}finally{d(t),f=!1}}}}}("undefined"==typeof self?void 0===t?this:t:self)}).call(this,n(17),n(72))},,,,,,,,,,,,,,,,,,,,,,,,,,,,,function(t,e,n){var r=n(717),o=n(621);t.exports=function(t){return r(o(t))}},function(t,e){var n={}.toString;t.exports=function(t){return n.call(t).slice(8,-1)}},function(t,e,n){var r=n(176),o=n(604);t.exports=function(t,e){try{o(r,t,e)}catch(n){r[t]=e}return e}},function(t,e,n){var r={};r[n(669)("toStringTag")]="z",t.exports="[object z]"===String(r)},function(t,e,n){var r=n(176),o=n(723),i=n(454),a=n(724),s=n(732),u=n(1013),c=o("wks"),f=r.Symbol,l=u?f:a;t.exports=function(t){return i(c,t)||(s&&i(f,t)?c[t]=f[t]:c[t]=l("Symbol."+t)),c[t]}},function(t,e,n){var r=n(738),o=n(739);t.exports=function(t){return r(o(t))}},function(t,e,n){var r=n(185),o=n(626);t.exports=function(t,e){try{o(r,t,e)}catch(n){r[t]=e}return e}},,function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.getLoggerBuilder=i,e.getLogger=function(){return i().build()};var r=n(1022),o=n(1047);function i(){return new o.LoggerBuilder(r.buildConsoleLogger)}},,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,function(t,e,n){var r=n(176),o=n(714).f,i=n(604),a=n(623),s=n(667),u=n(1001),c=n(1007);t.exports=function(t,e){var n,f,l,p,d,v=t.target,h=t.global,m=t.stat;if(n=h?r:m?r[v]||s(v,{}):(r[v]||{}).prototype)for(f in e){if(p=e[f],l=t.noTargetGet?(d=o(n,f))&&d.value:n[f],!c(h?f:v+(m?".":"#")+f,t.forced)&&void 0!==l){if(typeof p==typeof l)continue;u(p,l)}(t.sham||l&&l.sham)&&i(p,"sham",!0),a(n,f,p,t)}}},function(t,e,n){var r=n(603),o=n(715),i=n(716),a=n(665),s=n(718),u=n(454),c=n(719),f=Object.getOwnPropertyDescriptor;e.f=r?f:function(t,e){if(t=a(t),e=s(e,!0),c)try{return f(t,e)}catch(t){}if(u(t,e))return i(!o.f.call(t,e),t[e])}},function(t,e,n){"use strict";var r={}.propertyIsEnumerable,o=Object.getOwnPropertyDescriptor,i=o&&!r.call({1:2},1);e.f=i?function(t){var e=o(this,t);return!!e&&e.enumerable}:r},function(t,e){t.exports=function(t,e){return{enumerable:!(1&t),configurable:!(2&t),writable:!(4&t),value:e}}},function(t,e,n){var r=n(184),o=n(666),i="".split;t.exports=r((function(){return!Object("z").propertyIsEnumerable(0)}))?function(t){return"String"==o(t)?i.call(t,""):Object(t)}:Object},function(t,e,n){var r=n(622);t.exports=function(t,e){if(!r(t))return t;var n,o;if(e&&"function"==typeof(n=t.toString)&&!r(o=n.call(t)))return o;if("function"==typeof(n=t.valueOf)&&!r(o=n.call(t)))return o;if(!e&&"function"==typeof(n=t.toString)&&!r(o=n.call(t)))return o;throw TypeError("Can't convert object to primitive value")}},function(t,e,n){var r=n(603),o=n(184),i=n(996);t.exports=!r&&!o((function(){return 7!=Object.defineProperty(i("div"),"a",{get:function(){return 7}}).a}))},function(t,e,n){var r=n(603),o=n(719),i=n(605),a=n(718),s=Object.defineProperty;e.f=r?s:function(t,e,n){if(i(t),e=a(e,!0),i(n),o)try{return s(t,e,n)}catch(t){}if("get"in n||"set"in n)throw TypeError("Accessors not supported");return"value"in n&&(t[e]=n.value),t}},function(t,e,n){var r=n(722),o=Function.toString;"function"!=typeof r.inspectSource&&(r.inspectSource=function(t){return o.call(t)}),t.exports=r.inspectSource},function(t,e,n){var r=n(176),o=n(667),i=r["__core-js_shared__"]||o("__core-js_shared__",{});t.exports=i},function(t,e,n){var r=n(1e3),o=n(722);(t.exports=function(t,e){return o[t]||(o[t]=void 0!==e?e:{})})("versions",[]).push({version:"3.5.0",mode:r?"pure":"global",copyright:"© 2019 Denis Pushkarev (zloirock.ru)"})},function(t,e){var n=0,r=Math.random();t.exports=function(t){return"Symbol("+String(void 0===t?"":t)+")_"+(++n+r).toString(36)}},function(t,e){t.exports={}},function(t,e,n){var r=n(454),o=n(665),i=n(727).indexOf,a=n(725);t.exports=function(t,e){var n,s=o(t),u=0,c=[];for(n in s)!r(a,n)&&r(s,n)&&c.push(n);for(;e.length>u;)r(s,n=e[u++])&&(~i(c,n)||c.push(n));return c}},function(t,e,n){var r=n(665),o=n(728),i=n(1006),a=function(t){return function(e,n,a){var s,u=r(e),c=o(u.length),f=i(a,c);if(t&&n!=n){for(;c>f;)if((s=u[f++])!=s)return!0}else for(;c>f;f++)if((t||f in u)&&u[f]===n)return t||f||0;return!t&&-1}};t.exports={includes:a(!0),indexOf:a(!1)}},function(t,e,n){var r=n(624),o=Math.min;t.exports=function(t){return t>0?o(r(t),9007199254740991):0}},function(t,e){t.exports=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"]},function(t,e){e.f=Object.getOwnPropertySymbols},function(t,e,n){var r=n(621);t.exports=function(t){return Object(r(t))}},function(t,e,n){var r=n(184);t.exports=!!Object.getOwnPropertySymbols&&!r((function(){return!String(Symbol())}))},function(t,e,n){"use strict";var r=n(605);t.exports=function(){var t=r(this),e="";return t.global&&(e+="g"),t.ignoreCase&&(e+="i"),t.multiline&&(e+="m"),t.dotAll&&(e+="s"),t.unicode&&(e+="u"),t.sticky&&(e+="y"),e}},function(t,e,n){"use strict";var r,o,i=n(733),a=RegExp.prototype.exec,s=String.prototype.replace,u=a,c=(r=/a/,o=/b*/g,a.call(r,"a"),a.call(o,"a"),0!==r.lastIndex||0!==o.lastIndex),f=void 0!==/()??/.exec("")[1];(c||f)&&(u=function(t){var e,n,r,o,u=this;return f&&(n=new RegExp("^"+u.source+"$(?!\\s)",i.call(u))),c&&(e=u.lastIndex),r=a.call(u,t),c&&r&&(u.lastIndex=u.global?r.index+r[0].length:e),f&&r&&r.length>1&&s.call(r[0],n,(function(){for(o=1;o<arguments.length-2;o++)void 0===arguments[o]&&(r[o]=void 0)})),r}),t.exports=u},function(t,e,n){var r=n(606),o=n(736),i=n(737),a=n(670),s=n(740),u=n(608),c=n(741),f=Object.getOwnPropertyDescriptor;e.f=r?f:function(t,e){if(t=a(t),e=s(e,!0),c)try{return f(t,e)}catch(t){}if(u(t,e))return i(!o.f.call(t,e),t[e])}},function(t,e,n){"use strict";var r={}.propertyIsEnumerable,o=Object.getOwnPropertyDescriptor,i=o&&!r.call({1:2},1);e.f=i?function(t){var e=o(this,t);return!!e&&e.enumerable}:r},function(t,e){t.exports=function(t,e){return{enumerable:!(1&t),configurable:!(2&t),writable:!(4&t),value:e}}},function(t,e,n){var r=n(607),o=n(1025),i="".split;t.exports=r((function(){return!Object("z").propertyIsEnumerable(0)}))?function(t){return"String"==o(t)?i.call(t,""):Object(t)}:Object},function(t,e){t.exports=function(t){if(null==t)throw TypeError("Can't call method on "+t);return t}},function(t,e,n){var r=n(625);t.exports=function(t,e){if(!r(t))return t;var n,o;if(e&&"function"==typeof(n=t.toString)&&!r(o=n.call(t)))return o;if("function"==typeof(n=t.valueOf)&&!r(o=n.call(t)))return o;if(!e&&"function"==typeof(n=t.toString)&&!r(o=n.call(t)))return o;throw TypeError("Can't convert object to primitive value")}},function(t,e,n){var r=n(606),o=n(607),i=n(1026);t.exports=!r&&!o((function(){return 7!=Object.defineProperty(i("div"),"a",{get:function(){return 7}}).a}))},function(t,e,n){var r=n(606),o=n(741),i=n(743),a=n(740),s=Object.defineProperty;e.f=r?s:function(t,e,n){if(i(t),e=a(e,!0),i(n),o)try{return s(t,e,n)}catch(t){}if("get"in n||"set"in n)throw TypeError("Accessors not supported");return"value"in n&&(t[e]=n.value),t}},function(t,e,n){var r=n(625);t.exports=function(t){if(!r(t))throw TypeError(String(t)+" is not an object");return t}},function(t,e,n){var r=n(745),o=Function.toString;"function"!=typeof r.inspectSource&&(r.inspectSource=function(t){return o.call(t)}),t.exports=r.inspectSource},function(t,e,n){var r=n(185),o=n(671),i=r["__core-js_shared__"]||o("__core-js_shared__",{});t.exports=i},function(t,e){t.exports={}},function(t,e,n){var r=n(608),o=n(670),i=n(1039).indexOf,a=n(746);t.exports=function(t,e){var n,s=o(t),u=0,c=[];for(n in s)!r(a,n)&&r(s,n)&&c.push(n);for(;e.length>u;)r(s,n=e[u++])&&(~i(c,n)||c.push(n));return c}},function(t,e){var n=Math.ceil,r=Math.floor;t.exports=function(t){return isNaN(t=+t)?0:(t>0?r:n)(t)}},function(t,e){t.exports=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"]},function(t,e){e.f=Object.getOwnPropertySymbols},,,,,,,function(t,e,n){"use strict";var r=n(1048),o=function(t){if(!Number.isInteger(t)&&t!==1/0||!(t>0))return Promise.reject(new TypeError("Expected `concurrency` to be a number from 1 and up"));var e=[],n=0,o=function(){n--,e.length>0&&e.shift()()},i=function(t,e){n++;for(var i=arguments.length,a=new Array(i>2?i-2:0),s=2;s<i;s++)a[s-2]=arguments[s];var u=r.apply(void 0,[t].concat(a));e(u),u.then(o,o)},a=function(r,o){for(var a=arguments.length,s=new Array(a>2?a-2:0),u=2;u<a;u++)s[u-2]=arguments[u];n<t?i.apply(void 0,[r,o].concat(s)):e.push(i.bind.apply(i,[null,r,o].concat(s)))},s=function(t){for(var e=arguments.length,n=new Array(e>1?e-1:0),r=1;r<e;r++)n[r-1]=arguments[r];return new Promise((function(e){return a.apply(void 0,[t,e].concat(n))}))};return Object.defineProperties(s,{activeCount:{get:function(){return n}},pendingCount:{get:function(){return e.length}}}),s};t.exports=o,t.exports.default=o},,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.getRequestToken=function(){return i},e.onRequestTokenUpdate=function(t){a.push(t)};var r=n(71),o=document.getElementsByTagName("head")[0],i=o?o.getAttribute("data-requesttoken"):null,a=[];(0,r.subscribe)("csrf-token-update",(function(t){i=t.token,a.forEach((function(e){try{e(t.token)}catch(t){console.error("error updating CSRF token observer",t)}}))}))},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.getCurrentUser=function(){if(null===o)return null;return{uid:o,displayName:a}};var r=document.getElementsByTagName("head")[0],o=r?r.getAttribute("data-user"):null,i=document.getElementsByTagName("head")[0],a=i?i.getAttribute("data-user-displayname"):null},function(t,e,n){"use strict";var r=n(713),o=n(727).indexOf,i=n(1008),a=[].indexOf,s=!!a&&1/[1].indexOf(1,-0)<0,u=i("indexOf");r({target:"Array",proto:!0,forced:s||u},{indexOf:function(t){return s?a.apply(this,arguments)||0:o(this,t,arguments.length>1?arguments[1]:void 0)}})},function(t,e,n){var r=n(176),o=n(622),i=r.document,a=o(i)&&o(i.createElement);t.exports=function(t){return a?i.createElement(t):{}}},function(t,e,n){var r,o,i,a=n(998),s=n(176),u=n(622),c=n(604),f=n(454),l=n(999),p=n(725),d=s.WeakMap;if(a){var v=new d,h=v.get,m=v.has,y=v.set;r=function(t,e){return y.call(v,t,e),e},o=function(t){return h.call(v,t)||{}},i=function(t){return m.call(v,t)}}else{var g=l("state");p[g]=!0,r=function(t,e){return c(t,g,e),e},o=function(t){return f(t,g)?t[g]:{}},i=function(t){return f(t,g)}}t.exports={set:r,get:o,has:i,enforce:function(t){return i(t)?o(t):r(t,{})},getterFor:function(t){return function(e){var n;if(!u(e)||(n=o(e)).type!==t)throw TypeError("Incompatible receiver, "+t+" required");return n}}}},function(t,e,n){var r=n(176),o=n(721),i=r.WeakMap;t.exports="function"==typeof i&&/native code/.test(o(i))},function(t,e,n){var r=n(723),o=n(724),i=r("keys");t.exports=function(t){return i[t]||(i[t]=o(t))}},function(t,e){t.exports=!1},function(t,e,n){var r=n(454),o=n(1002),i=n(714),a=n(720);t.exports=function(t,e){for(var n=o(e),s=a.f,u=i.f,c=0;c<n.length;c++){var f=n[c];r(t,f)||s(t,f,u(e,f))}}},function(t,e,n){var r=n(1003),o=n(1005),i=n(730),a=n(605);t.exports=r("Reflect","ownKeys")||function(t){var e=o.f(a(t)),n=i.f;return n?e.concat(n(t)):e}},function(t,e,n){var r=n(1004),o=n(176),i=function(t){return"function"==typeof t?t:void 0};t.exports=function(t,e){return arguments.length<2?i(r[t])||i(o[t]):r[t]&&r[t][e]||o[t]&&o[t][e]}},function(t,e,n){var r=n(176);t.exports=r},function(t,e,n){var r=n(726),o=n(729).concat("length","prototype");e.f=Object.getOwnPropertyNames||function(t){return r(t,o)}},function(t,e,n){var r=n(624),o=Math.max,i=Math.min;t.exports=function(t,e){var n=r(t);return n<0?o(n+e,0):i(n,e)}},function(t,e,n){var r=n(184),o=/#|\.prototype\./,i=function(t,e){var n=s[a(t)];return n==c||n!=u&&("function"==typeof e?r(e):!!e)},a=i.normalize=function(t){return String(t).replace(o,".").toLowerCase()},s=i.data={},u=i.NATIVE="N",c=i.POLYFILL="P";t.exports=i},function(t,e,n){"use strict";var r=n(184);t.exports=function(t,e){var n=[][t];return!n||!r((function(){n.call(null,e||function(){throw 1},1)}))}},function(t,e,n){var r=n(713),o=n(1010);r({target:"Object",stat:!0,forced:Object.assign!==o},{assign:o})},function(t,e,n){"use strict";var r=n(603),o=n(184),i=n(1011),a=n(730),s=n(715),u=n(731),c=n(717),f=Object.assign,l=Object.defineProperty;t.exports=!f||o((function(){if(r&&1!==f({b:1},f(l({},"a",{enumerable:!0,get:function(){l(this,"b",{value:3,enumerable:!1})}}),{b:2})).b)return!0;var t={},e={},n=Symbol();return t[n]=7,"abcdefghijklmnopqrst".split("").forEach((function(t){e[t]=t})),7!=f({},t)[n]||"abcdefghijklmnopqrst"!=i(f({},e)).join("")}))?function(t,e){for(var n=u(t),o=arguments.length,f=1,l=a.f,p=s.f;o>f;)for(var d,v=c(arguments[f++]),h=l?i(v).concat(l(v)):i(v),m=h.length,y=0;m>y;)d=h[y++],r&&!p.call(v,d)||(n[d]=v[d]);return n}:f},function(t,e,n){var r=n(726),o=n(729);t.exports=Object.keys||function(t){return r(t,o)}},function(t,e,n){var r=n(668),o=n(623),i=n(1014);r||o(Object.prototype,"toString",i,{unsafe:!0})},function(t,e,n){var r=n(732);t.exports=r&&!Symbol.sham&&"symbol"==typeof Symbol()},function(t,e,n){"use strict";var r=n(668),o=n(1015);t.exports=r?{}.toString:function(){return"[object "+o(this)+"]"}},function(t,e,n){var r=n(668),o=n(666),i=n(669)("toStringTag"),a="Arguments"==o(function(){return arguments}());t.exports=r?o:function(t){var e,n,r;return void 0===t?"Undefined":null===t?"Null":"string"==typeof(n=function(t,e){try{return t[e]}catch(t){}}(e=Object(t),i))?n:a?o(e):"Object"==(r=o(e))&&"function"==typeof e.callee?"Arguments":r}},function(t,e,n){"use strict";var r=n(623),o=n(605),i=n(184),a=n(733),s=RegExp.prototype,u=s.toString,c=i((function(){return"/a/b"!=u.call({source:"a",flags:"b"})})),f="toString"!=u.name;(c||f)&&r(RegExp.prototype,"toString",(function(){var t=o(this),e=String(t.source),n=t.flags;return"/"+e+"/"+String(void 0===n&&t instanceof RegExp&&!("flags"in s)?a.call(t):n)}),{unsafe:!0})},function(t,e,n){"use strict";var r=n(1018),o=n(605),i=n(731),a=n(728),s=n(624),u=n(621),c=n(1019),f=n(1021),l=Math.max,p=Math.min,d=Math.floor,v=/\$([$&'`]|\d\d?|<[^>]*>)/g,h=/\$([$&'`]|\d\d?)/g;r("replace",2,(function(t,e,n){return[function(n,r){var o=u(this),i=null==n?void 0:n[t];return void 0!==i?i.call(n,o,r):e.call(String(o),n,r)},function(t,i){var u=n(e,t,this,i);if(u.done)return u.value;var d=o(t),v=String(this),h="function"==typeof i;h||(i=String(i));var m=d.global;if(m){var y=d.unicode;d.lastIndex=0}for(var g=[];;){var E=f(d,v);if(null===E)break;if(g.push(E),!m)break;""===String(E[0])&&(d.lastIndex=c(v,a(d.lastIndex),y))}for(var b,O="",x=0,w=0;w<g.length;w++){E=g[w];for(var _=String(E[0]),I=l(p(s(E.index),v.length),0),S=[],A=1;A<E.length;A++)S.push(void 0===(b=E[A])?b:String(b));var R=E.groups;if(h){var T=[_].concat(S,I,v);void 0!==R&&T.push(R);var L=String(i.apply(void 0,T))}else L=r(_,v,I,S,R,i);I>=x&&(O+=v.slice(x,I)+L,x=I+_.length)}return O+v.slice(x)}];function r(t,n,r,o,a,s){var u=r+t.length,c=o.length,f=h;return void 0!==a&&(a=i(a),f=v),e.call(s,f,(function(e,i){var s;switch(i.charAt(0)){case"$":return"$";case"&":return t;case"`":return n.slice(0,r);case"'":return n.slice(u);case"<":s=a[i.slice(1,-1)];break;default:var f=+i;if(0===f)return e;if(f>c){var l=d(f/10);return 0===l?e:l<=c?void 0===o[l-1]?i.charAt(1):o[l-1]+i.charAt(1):e}s=o[f-1]}return void 0===s?"":s}))}}))},function(t,e,n){"use strict";var r=n(604),o=n(623),i=n(184),a=n(669),s=n(734),u=a("species"),c=!i((function(){var t=/./;return t.exec=function(){var t=[];return t.groups={a:"7"},t},"7"!=="".replace(t,"$<a>")})),f=!i((function(){var t=/(?:)/,e=t.exec;t.exec=function(){return e.apply(this,arguments)};var n="ab".split(t);return 2!==n.length||"a"!==n[0]||"b"!==n[1]}));t.exports=function(t,e,n,l){var p=a(t),d=!i((function(){var e={};return e[p]=function(){return 7},7!=""[t](e)})),v=d&&!i((function(){var e=!1,n=/a/;return"split"===t&&((n={}).constructor={},n.constructor[u]=function(){return n},n.flags="",n[p]=/./[p]),n.exec=function(){return e=!0,null},n[p](""),!e}));if(!d||!v||"replace"===t&&!c||"split"===t&&!f){var h=/./[p],m=n(p,""[t],(function(t,e,n,r,o){return e.exec===s?d&&!o?{done:!0,value:h.call(e,n,r)}:{done:!0,value:t.call(n,e,r)}:{done:!1}})),y=m[0],g=m[1];o(String.prototype,t,y),o(RegExp.prototype,p,2==e?function(t,e){return g.call(t,this,e)}:function(t){return g.call(t,this)}),l&&r(RegExp.prototype[p],"sham",!0)}}},function(t,e,n){"use strict";var r=n(1020).charAt;t.exports=function(t,e,n){return e+(n?r(t,e).length:1)}},function(t,e,n){var r=n(624),o=n(621),i=function(t){return function(e,n){var i,a,s=String(o(e)),u=r(n),c=s.length;return u<0||u>=c?t?"":void 0:(i=s.charCodeAt(u))<55296||i>56319||u+1===c||(a=s.charCodeAt(u+1))<56320||a>57343?t?s.charAt(u):i:t?s.slice(u,u+2):a-56320+(i-55296<<10)+65536}};t.exports={codeAt:i(!1),charAt:i(!0)}},function(t,e,n){var r=n(666),o=n(734);t.exports=function(t,e){var n=t.exec;if("function"==typeof n){var i=n.call(t,e);if("object"!=typeof i)throw TypeError("RegExp exec method returned something other than an Object or null");return i}if("RegExp"!==r(t))throw TypeError("RegExp#exec called on incompatible receiver");return o.call(t,e)}},function(t,e,n){"use strict";n(1023),Object.defineProperty(e,"__esModule",{value:!0}),e.buildConsoleLogger=function(t){return new i(t)},e.ConsoleLogger=void 0;var r=n(1046);function o(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}var i=function(){function t(e){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),this.context=e}var e,n,i;return e=t,(n=[{key:"formatMessage",value:function(t,e,n){var r="["+e+"]";return n&&n.app&&(r+=" "+n.app+": "),r+t}},{key:"log",value:function(t,e,n){switch(t){case 0:console.debug(this.formatMessage(e,r.LogLevel.Debug,n),n);break;case 1:console.info(this.formatMessage(e,r.LogLevel.Info,n),n);break;case 2:console.warn(this.formatMessage(e,r.LogLevel.Warn,n),n);break;case 3:console.error(this.formatMessage(e,r.LogLevel.Error,n),n);break;default:console.error(this.formatMessage(e,r.LogLevel.Fatal,n),n)}}},{key:"debug",value:function(t,e){this.log(0,t,Object.assign({},this.context,e))}},{key:"info",value:function(t,e){this.log(1,t,Object.assign({},this.context,e))}},{key:"warn",value:function(t,e){this.log(2,t,Object.assign({},this.context,e))}},{key:"error",value:function(t,e){this.log(3,t,Object.assign({},this.context,e))}},{key:"fatal",value:function(t,e){this.log(4,t,Object.assign({},this.context,e))}}])&&o(e.prototype,n),i&&o(e,i),t}();e.ConsoleLogger=i},function(t,e,n){var r=n(1024),o=n(1043);r({target:"Object",stat:!0,forced:Object.assign!==o},{assign:o})},function(t,e,n){var r=n(185),o=n(735).f,i=n(626),a=n(1027),s=n(671),u=n(1034),c=n(1042);t.exports=function(t,e){var n,f,l,p,d,v=t.target,h=t.global,m=t.stat;if(n=h?r:m?r[v]||s(v,{}):(r[v]||{}).prototype)for(f in e){if(p=e[f],l=t.noTargetGet?(d=o(n,f))&&d.value:n[f],!c(h?f:v+(m?".":"#")+f,t.forced)&&void 0!==l){if(typeof p==typeof l)continue;u(p,l)}(t.sham||l&&l.sham)&&i(p,"sham",!0),a(n,f,p,t)}}},function(t,e){var n={}.toString;t.exports=function(t){return n.call(t).slice(8,-1)}},function(t,e,n){var r=n(185),o=n(625),i=r.document,a=o(i)&&o(i.createElement);t.exports=function(t){return a?i.createElement(t):{}}},function(t,e,n){var r=n(185),o=n(626),i=n(608),a=n(671),s=n(744),u=n(1028),c=u.get,f=u.enforce,l=String(String).split("String");(t.exports=function(t,e,n,s){var u=!!s&&!!s.unsafe,c=!!s&&!!s.enumerable,p=!!s&&!!s.noTargetGet;"function"==typeof n&&("string"!=typeof e||i(n,"name")||o(n,"name",e),f(n).source=l.join("string"==typeof e?e:"")),t!==r?(u?!p&&t[e]&&(c=!0):delete t[e],c?t[e]=n:o(t,e,n)):c?t[e]=n:a(e,n)})(Function.prototype,"toString",(function(){return"function"==typeof this&&c(this).source||s(this)}))},function(t,e,n){var r,o,i,a=n(1029),s=n(185),u=n(625),c=n(626),f=n(608),l=n(1030),p=n(746),d=s.WeakMap;if(a){var v=new d,h=v.get,m=v.has,y=v.set;r=function(t,e){return y.call(v,t,e),e},o=function(t){return h.call(v,t)||{}},i=function(t){return m.call(v,t)}}else{var g=l("state");p[g]=!0,r=function(t,e){return c(t,g,e),e},o=function(t){return f(t,g)?t[g]:{}},i=function(t){return f(t,g)}}t.exports={set:r,get:o,has:i,enforce:function(t){return i(t)?o(t):r(t,{})},getterFor:function(t){return function(e){var n;if(!u(e)||(n=o(e)).type!==t)throw TypeError("Incompatible receiver, "+t+" required");return n}}}},function(t,e,n){var r=n(185),o=n(744),i=r.WeakMap;t.exports="function"==typeof i&&/native code/.test(o(i))},function(t,e,n){var r=n(1031),o=n(1033),i=r("keys");t.exports=function(t){return i[t]||(i[t]=o(t))}},function(t,e,n){var r=n(1032),o=n(745);(t.exports=function(t,e){return o[t]||(o[t]=void 0!==e?e:{})})("versions",[]).push({version:"3.5.0",mode:r?"pure":"global",copyright:"© 2019 Denis Pushkarev (zloirock.ru)"})},function(t,e){t.exports=!1},function(t,e){var n=0,r=Math.random();t.exports=function(t){return"Symbol("+String(void 0===t?"":t)+")_"+(++n+r).toString(36)}},function(t,e,n){var r=n(608),o=n(1035),i=n(735),a=n(742);t.exports=function(t,e){for(var n=o(e),s=a.f,u=i.f,c=0;c<n.length;c++){var f=n[c];r(t,f)||s(t,f,u(e,f))}}},function(t,e,n){var r=n(1036),o=n(1038),i=n(750),a=n(743);t.exports=r("Reflect","ownKeys")||function(t){var e=o.f(a(t)),n=i.f;return n?e.concat(n(t)):e}},function(t,e,n){var r=n(1037),o=n(185),i=function(t){return"function"==typeof t?t:void 0};t.exports=function(t,e){return arguments.length<2?i(r[t])||i(o[t]):r[t]&&r[t][e]||o[t]&&o[t][e]}},function(t,e,n){var r=n(185);t.exports=r},function(t,e,n){var r=n(747),o=n(749).concat("length","prototype");e.f=Object.getOwnPropertyNames||function(t){return r(t,o)}},function(t,e,n){var r=n(670),o=n(1040),i=n(1041),a=function(t){return function(e,n,a){var s,u=r(e),c=o(u.length),f=i(a,c);if(t&&n!=n){for(;c>f;)if((s=u[f++])!=s)return!0}else for(;c>f;f++)if((t||f in u)&&u[f]===n)return t||f||0;return!t&&-1}};t.exports={includes:a(!0),indexOf:a(!1)}},function(t,e,n){var r=n(748),o=Math.min;t.exports=function(t){return t>0?o(r(t),9007199254740991):0}},function(t,e,n){var r=n(748),o=Math.max,i=Math.min;t.exports=function(t,e){var n=r(t);return n<0?o(n+e,0):i(n,e)}},function(t,e,n){var r=n(607),o=/#|\.prototype\./,i=function(t,e){var n=s[a(t)];return n==c||n!=u&&("function"==typeof e?r(e):!!e)},a=i.normalize=function(t){return String(t).replace(o,".").toLowerCase()},s=i.data={},u=i.NATIVE="N",c=i.POLYFILL="P";t.exports=i},function(t,e,n){"use strict";var r=n(606),o=n(607),i=n(1044),a=n(750),s=n(736),u=n(1045),c=n(738),f=Object.assign,l=Object.defineProperty;t.exports=!f||o((function(){if(r&&1!==f({b:1},f(l({},"a",{enumerable:!0,get:function(){l(this,"b",{value:3,enumerable:!1})}}),{b:2})).b)return!0;var t={},e={},n=Symbol();return t[n]=7,"abcdefghijklmnopqrst".split("").forEach((function(t){e[t]=t})),7!=f({},t)[n]||"abcdefghijklmnopqrst"!=i(f({},e)).join("")}))?function(t,e){for(var n=u(t),o=arguments.length,f=1,l=a.f,p=s.f;o>f;)for(var d,v=c(arguments[f++]),h=l?i(v).concat(l(v)):i(v),m=h.length,y=0;m>y;)d=h[y++],r&&!p.call(v,d)||(n[d]=v[d]);return n}:f},function(t,e,n){var r=n(747),o=n(749);t.exports=Object.keys||function(t){return r(t,o)}},function(t,e,n){var r=n(739);t.exports=function(t){return Object(r(t))}},function(t,e,n){"use strict";var r;Object.defineProperty(e,"__esModule",{value:!0}),e.LogLevel=void 0,e.LogLevel=r,function(t){t.Debug="DEBUG",t.Info="INFO",t.Warn="WARN",t.Error="ERROR",t.Fatal="FATAL"}(r||(e.LogLevel=r={}))},function(t,e,n){"use strict";function r(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}Object.defineProperty(e,"__esModule",{value:!0}),e.LoggerBuilder=void 0;var o=function(){function t(e){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),this.context={},this.factory=e}var e,n,o;return e=t,(n=[{key:"setApp",value:function(t){return this.context.app=t,this}},{key:"setUid",value:function(t){return this.context.uid=t,this}},{key:"build",value:function(){return this.factory(this.context)}}])&&r(e.prototype,n),o&&r(e,o),t}();e.LoggerBuilder=o},function(t,e,n){"use strict";var r=function(t){for(var e=arguments.length,n=new Array(e>1?e-1:0),r=1;r<e;r++)n[r-1]=arguments[r];return new Promise((function(e){e(t.apply(void 0,n))}))};t.exports=r,t.exports.default=r},function(t,e,n){"use strict";var r=n(630);n.n(r).a},function(t,e,n){(e=n(103)(!1)).push([t.i,".body-login-container[data-v-2dd1bdfa]{max-width:290px}p.loading[data-v-2dd1bdfa],p.loading-error[data-v-2dd1bdfa]{height:100px}.text-center[data-v-2dd1bdfa]{text-align:center}.app[data-v-2dd1bdfa]{display:flex;flex-direction:row}.app img[data-v-2dd1bdfa]{height:50px;width:50px;filter:invert(1)}.app img[data-v-2dd1bdfa],.app .info[data-v-2dd1bdfa]{padding:12px}.app .info h3[data-v-2dd1bdfa],.app .info p[data-v-2dd1bdfa]{text-align:left}.app .info h3[data-v-2dd1bdfa]{color:#fff;margin-top:0}.app .info h3>span.icon[data-v-2dd1bdfa]{display:inline-block}\n",""]),t.exports=e},,,,function(t,e,n){"use strict";n.r(e);var r,o=n(631),i=n(186),a=n(187),s=n(447),u=n(673),c=null===(r=Object(o.getCurrentUser)())?Object(u.getLoggerBuilder)().setApp("core").build():Object(u.getLoggerBuilder)().setApp("core").setUid(r.uid).build(),f=n(168),l=n.n(f),p=n(391),d=n(757),v=n.n(d),h={calendar:{description:Object(a.translate)("core","Schedule work & meetings, synced with all your devices."),icon:Object(i.imagePath)("core","places/calendar.svg")},contacts:{description:Object(a.translate)("core","Keep your colleagues and friends in one place without leaking their private info."),icon:Object(i.imagePath)("core","places/contacts.svg")},mail:{description:Object(a.translate)("core","Simple email app nicely integrated with Files, Contacts and Calendar."),icon:Object(i.imagePath)("core","actions/mail.svg")},talk:{description:Object(a.translate)("core","Screensharing, online meetings and web conferencing – on desktop and with mobile apps.")},onlyoffice:{description:Object(a.translate)("core","Collaboratively edit office documents.")},documentserver_community:{description:Object(a.translate)("core","Local document editing back-end used by the OnlyOffice app.")}},m=Object.keys(h),y=Object(p.loadState)("core","defaultPageUrl"),g={name:"RecommendedApps",data:function(){return{loadingApps:!0,loadingAppsError:!1,apps:[],defaultPageUrl:y}},computed:{recommendedApps:function(){return this.apps.filter((function(t){return m.includes(t.id)}))}},mounted:function(){var t=this;return l.a.get(Object(i.generateUrl)("settings/apps/list")).then((function(t){return t.data})).then((function(e){c.info("".concat(e.apps.length," apps fetched")),t.apps=e.apps.map((function(t){return Object.assign(t,{loading:!1,installationError:!1})})),c.debug("".concat(t.recommendedApps.length," recommended apps found"),{apps:t.recommendedApps}),t.installApps()})).catch((function(e){c.error("could not fetch app list",{error:e}),t.loadingAppsError=!0})).then((function(){t.loadingApps=!1}))},methods:{installApps:function(){var t=v()(1),e=this.recommendedApps.filter((function(t){return!t.active&&t.isCompatible&&t.canInstall})).map((function(e){return t((function(){return c.info("installing ".concat(e.id)),e.loading=!0,l.a.post(Object(i.generateUrl)("settings/apps/enable"),{appIds:[e.id],groups:[]}).catch((function(t){c.error("could not install ".concat(e.id),{error:t}),e.installationError=!0})).then((function(){c.info("installed ".concat(e.id)),e.loading=!1}))}))}));c.debug("installing ".concat(e.length," recommended apps")),Promise.all(e).then((function(){c.info("all recommended apps installed, redirecting …"),window.location=y})).catch((function(t){return c.error("could not install recommended apps",{error:t})}))},customIcon:function(t){return t in h?h[t].icon:(c.warn("no app icon for recommended app ".concat(t)),Object(i.imagePath)("core","places/default-app-icon.svg"))},customDescription:function(t){return t in h?h[t].description:(c.warn("no app description for recommended app ".concat(t)),"")}}},E=(n(1049),n(167)),b=Object(E.a)(g,(function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"body-login-container"},[n("h2",[t._v(t._s(t.t("core","Recommended apps")))]),t._v(" "),t.loadingApps?n("p",{staticClass:"loading text-center"},[t._v("\n\t\t"+t._s(t.t("core","Loading apps …"))+"\n\t")]):t.loadingAppsError?n("p",{staticClass:"loading-error text-center"},[t._v("\n\t\t"+t._s(t.t("core","Could not fetch list of apps from the app store."))+"\n\t")]):n("p",{staticClass:"text-center"},[t._v("\n\t\t"+t._s(t.t("core","Installing apps …"))+"\n\t")]),t._v(" "),t._l(t.recommendedApps,(function(e){return n("div",{key:e.id,staticClass:"app"},[n("img",{attrs:{src:t.customIcon(e.id),alt:t.t("core","Nextcloud {app}",{app:e.name})}}),t._v(" "),n("div",{staticClass:"info"},[n("h3",[t._v("\n\t\t\t\t"+t._s(e.name)+"\n\t\t\t\t"),e.loading?n("span",{staticClass:"icon icon-loading-small"}):e.active?n("span",{staticClass:"icon icon-checkmark-white"}):t._e()]),t._v(" "),n("p",{domProps:{innerHTML:t._s(t.customDescription(e.id))}}),t._v(" "),e.installationError?n("p",[n("strong",[t._v(t._s(t.t("core","App download or installation failed")))])]):e.isCompatible?e.canInstall?t._e():n("p",[n("strong",[t._v(t._s(t.t("core","Can't install this app")))])]):n("p",[n("strong",[t._v(t._s(t.t("core","Can't install this app because it is not compatible")))])])])])})),t._v(" "),n("p",{staticClass:"text-center"},[n("a",{attrs:{href:t.defaultPageUrl}},[t._v(t._s(t.t("core","Cancel")))])])],2)}),[],!1,null,"2dd1bdfa",null).exports;
+var r=Object.freeze({});function o(t){return null==t}function i(t){return null!=t}function a(t){return!0===t}function s(t){return"string"==typeof t||"number"==typeof t||"symbol"==typeof t||"boolean"==typeof t}function u(t){return null!==t&&"object"==typeof t}var c=Object.prototype.toString;function f(t){return"[object Object]"===c.call(t)}function l(t){return"[object RegExp]"===c.call(t)}function p(t){var e=parseFloat(String(t));return e>=0&&Math.floor(e)===e&&isFinite(t)}function d(t){return i(t)&&"function"==typeof t.then&&"function"==typeof t.catch}function v(t){return null==t?"":Array.isArray(t)||f(t)&&t.toString===c?JSON.stringify(t,null,2):String(t)}function h(t){var e=parseFloat(t);return isNaN(e)?t:e}function m(t,e){for(var n=Object.create(null),r=t.split(","),o=0;o<r.length;o++)n[r[o]]=!0;return e?function(t){return n[t.toLowerCase()]}:function(t){return n[t]}}m("slot,component",!0);var y=m("key,ref,slot,slot-scope,is");function g(t,e){if(t.length){var n=t.indexOf(e);if(n>-1)return t.splice(n,1)}}var E=Object.prototype.hasOwnProperty;function b(t,e){return E.call(t,e)}function O(t){var e=Object.create(null);return function(n){return e[n]||(e[n]=t(n))}}var x=/-(\w)/g,w=O((function(t){return t.replace(x,(function(t,e){return e?e.toUpperCase():""}))})),_=O((function(t){return t.charAt(0).toUpperCase()+t.slice(1)})),I=/\B([A-Z])/g,S=O((function(t){return t.replace(I,"-$1").toLowerCase()}));var A=Function.prototype.bind?function(t,e){return t.bind(e)}:function(t,e){function n(n){var r=arguments.length;return r?r>1?t.apply(e,arguments):t.call(e,n):t.call(e)}return n._length=t.length,n};function R(t,e){e=e||0;for(var n=t.length-e,r=new Array(n);n--;)r[n]=t[n+e];return r}function T(t,e){for(var n in e)t[n]=e[n];return t}function L(t){for(var e={},n=0;n<t.length;n++)t[n]&&T(e,t[n]);return e}function C(t,e,n){}var N=function(t,e,n){return!1},j=function(t){return t};function P(t,e){if(t===e)return!0;var n=u(t),r=u(e);if(!n||!r)return!n&&!r&&String(t)===String(e);try{var o=Array.isArray(t),i=Array.isArray(e);if(o&&i)return t.length===e.length&&t.every((function(t,n){return P(t,e[n])}));if(t instanceof Date&&e instanceof Date)return t.getTime()===e.getTime();if(o||i)return!1;var a=Object.keys(t),s=Object.keys(e);return a.length===s.length&&a.every((function(n){return P(t[n],e[n])}))}catch(t){return!1}}function k(t,e){for(var n=0;n<t.length;n++)if(P(t[n],e))return n;return-1}function M(t){var e=!1;return function(){e||(e=!0,t.apply(this,arguments))}}var D="data-server-rendered",$=["component","directive","filter"],F=["beforeCreate","created","beforeMount","mounted","beforeUpdate","updated","beforeDestroy","destroyed","activated","deactivated","errorCaptured","serverPrefetch"],U={optionMergeStrategies:Object.create(null),silent:!1,productionTip:!1,devtools:!1,performance:!1,errorHandler:null,warnHandler:null,ignoredElements:[],keyCodes:Object.create(null),isReservedTag:N,isReservedAttr:N,isUnknownElement:N,getTagNamespace:C,parsePlatformTagName:j,mustUseProp:N,async:!0,_lifecycleHooks:F},G=/a-zA-Z\u00B7\u00C0-\u00D6\u00D8-\u00F6\u00F8-\u037D\u037F-\u1FFF\u200C-\u200D\u203F-\u2040\u2070-\u218F\u2C00-\u2FEF\u3001-\uD7FF\uF900-\uFDCF\uFDF0-\uFFFD/;function B(t,e,n,r){Object.defineProperty(t,e,{value:n,enumerable:!!r,writable:!0,configurable:!0})}var V=new RegExp("[^"+G.source+".$_\\d]");var X,z="__proto__"in{},q="undefined"!=typeof window,H="undefined"!=typeof WXEnvironment&&!!WXEnvironment.platform,W=H&&WXEnvironment.platform.toLowerCase(),Y=q&&window.navigator.userAgent.toLowerCase(),K=Y&&/msie|trident/.test(Y),J=Y&&Y.indexOf("msie 9.0")>0,Z=Y&&Y.indexOf("edge/")>0,Q=(Y&&Y.indexOf("android"),Y&&/iphone|ipad|ipod|ios/.test(Y)||"ios"===W),tt=(Y&&/chrome\/\d+/.test(Y),Y&&/phantomjs/.test(Y),Y&&Y.match(/firefox\/(\d+)/)),et={}.watch,nt=!1;if(q)try{var rt={};Object.defineProperty(rt,"passive",{get:function(){nt=!0}}),window.addEventListener("test-passive",null,rt)}catch(t){}var ot=function(){return void 0===X&&(X=!q&&!H&&void 0!==t&&(t.process&&"server"===t.process.env.VUE_ENV)),X},it=q&&window.__VUE_DEVTOOLS_GLOBAL_HOOK__;function at(t){return"function"==typeof t&&/native code/.test(t.toString())}var st,ut="undefined"!=typeof Symbol&&at(Symbol)&&"undefined"!=typeof Reflect&&at(Reflect.ownKeys);st="undefined"!=typeof Set&&at(Set)?Set:function(){function t(){this.set=Object.create(null)}return t.prototype.has=function(t){return!0===this.set[t]},t.prototype.add=function(t){this.set[t]=!0},t.prototype.clear=function(){this.set=Object.create(null)},t}();var ct=C,ft=0,lt=function(){this.id=ft++,this.subs=[]};lt.prototype.addSub=function(t){this.subs.push(t)},lt.prototype.removeSub=function(t){g(this.subs,t)},lt.prototype.depend=function(){lt.target&&lt.target.addDep(this)},lt.prototype.notify=function(){var t=this.subs.slice();for(var e=0,n=t.length;e<n;e++)t[e].update()},lt.target=null;var pt=[];function dt(t){pt.push(t),lt.target=t}function vt(){pt.pop(),lt.target=pt[pt.length-1]}var ht=function(t,e,n,r,o,i,a,s){this.tag=t,this.data=e,this.children=n,this.text=r,this.elm=o,this.ns=void 0,this.context=i,this.fnContext=void 0,this.fnOptions=void 0,this.fnScopeId=void 0,this.key=e&&e.key,this.componentOptions=a,this.componentInstance=void 0,this.parent=void 0,this.raw=!1,this.isStatic=!1,this.isRootInsert=!0,this.isComment=!1,this.isCloned=!1,this.isOnce=!1,this.asyncFactory=s,this.asyncMeta=void 0,this.isAsyncPlaceholder=!1},mt={child:{configurable:!0}};mt.child.get=function(){return this.componentInstance},Object.defineProperties(ht.prototype,mt);var yt=function(t){void 0===t&&(t="");var e=new ht;return e.text=t,e.isComment=!0,e};function gt(t){return new ht(void 0,void 0,void 0,String(t))}function Et(t){var e=new ht(t.tag,t.data,t.children&&t.children.slice(),t.text,t.elm,t.context,t.componentOptions,t.asyncFactory);return e.ns=t.ns,e.isStatic=t.isStatic,e.key=t.key,e.isComment=t.isComment,e.fnContext=t.fnContext,e.fnOptions=t.fnOptions,e.fnScopeId=t.fnScopeId,e.asyncMeta=t.asyncMeta,e.isCloned=!0,e}var bt=Array.prototype,Ot=Object.create(bt);["push","pop","shift","unshift","splice","sort","reverse"].forEach((function(t){var e=bt[t];B(Ot,t,(function(){for(var n=[],r=arguments.length;r--;)n[r]=arguments[r];var o,i=e.apply(this,n),a=this.__ob__;switch(t){case"push":case"unshift":o=n;break;case"splice":o=n.slice(2)}return o&&a.observeArray(o),a.dep.notify(),i}))}));var xt=Object.getOwnPropertyNames(Ot),wt=!0;function _t(t){wt=t}var It=function(t){this.value=t,this.dep=new lt,this.vmCount=0,B(t,"__ob__",this),Array.isArray(t)?(z?function(t,e){t.__proto__=e}(t,Ot):function(t,e,n){for(var r=0,o=n.length;r<o;r++){var i=n[r];B(t,i,e[i])}}(t,Ot,xt),this.observeArray(t)):this.walk(t)};function St(t,e){var n;if(u(t)&&!(t instanceof ht))return b(t,"__ob__")&&t.__ob__ instanceof It?n=t.__ob__:wt&&!ot()&&(Array.isArray(t)||f(t))&&Object.isExtensible(t)&&!t._isVue&&(n=new It(t)),e&&n&&n.vmCount++,n}function At(t,e,n,r,o){var i=new lt,a=Object.getOwnPropertyDescriptor(t,e);if(!a||!1!==a.configurable){var s=a&&a.get,u=a&&a.set;s&&!u||2!==arguments.length||(n=t[e]);var c=!o&&St(n);Object.defineProperty(t,e,{enumerable:!0,configurable:!0,get:function(){var e=s?s.call(t):n;return lt.target&&(i.depend(),c&&(c.dep.depend(),Array.isArray(e)&&function t(e){for(var n=void 0,r=0,o=e.length;r<o;r++)(n=e[r])&&n.__ob__&&n.__ob__.dep.depend(),Array.isArray(n)&&t(n)}(e))),e},set:function(e){var r=s?s.call(t):n;e===r||e!=e&&r!=r||s&&!u||(u?u.call(t,e):n=e,c=!o&&St(e),i.notify())}})}}function Rt(t,e,n){if(Array.isArray(t)&&p(e))return t.length=Math.max(t.length,e),t.splice(e,1,n),n;if(e in t&&!(e in Object.prototype))return t[e]=n,n;var r=t.__ob__;return t._isVue||r&&r.vmCount?n:r?(At(r.value,e,n),r.dep.notify(),n):(t[e]=n,n)}function Tt(t,e){if(Array.isArray(t)&&p(e))t.splice(e,1);else{var n=t.__ob__;t._isVue||n&&n.vmCount||b(t,e)&&(delete t[e],n&&n.dep.notify())}}It.prototype.walk=function(t){for(var e=Object.keys(t),n=0;n<e.length;n++)At(t,e[n])},It.prototype.observeArray=function(t){for(var e=0,n=t.length;e<n;e++)St(t[e])};var Lt=U.optionMergeStrategies;function Ct(t,e){if(!e)return t;for(var n,r,o,i=ut?Reflect.ownKeys(e):Object.keys(e),a=0;a<i.length;a++)"__ob__"!==(n=i[a])&&(r=t[n],o=e[n],b(t,n)?r!==o&&f(r)&&f(o)&&Ct(r,o):Rt(t,n,o));return t}function Nt(t,e,n){return n?function(){var r="function"==typeof e?e.call(n,n):e,o="function"==typeof t?t.call(n,n):t;return r?Ct(r,o):o}:e?t?function(){return Ct("function"==typeof e?e.call(this,this):e,"function"==typeof t?t.call(this,this):t)}:e:t}function jt(t,e){var n=e?t?t.concat(e):Array.isArray(e)?e:[e]:t;return n?function(t){for(var e=[],n=0;n<t.length;n++)-1===e.indexOf(t[n])&&e.push(t[n]);return e}(n):n}function Pt(t,e,n,r){var o=Object.create(t||null);return e?T(o,e):o}Lt.data=function(t,e,n){return n?Nt(t,e,n):e&&"function"!=typeof e?t:Nt(t,e)},F.forEach((function(t){Lt[t]=jt})),$.forEach((function(t){Lt[t+"s"]=Pt})),Lt.watch=function(t,e,n,r){if(t===et&&(t=void 0),e===et&&(e=void 0),!e)return Object.create(t||null);if(!t)return e;var o={};for(var i in T(o,t),e){var a=o[i],s=e[i];a&&!Array.isArray(a)&&(a=[a]),o[i]=a?a.concat(s):Array.isArray(s)?s:[s]}return o},Lt.props=Lt.methods=Lt.inject=Lt.computed=function(t,e,n,r){if(!t)return e;var o=Object.create(null);return T(o,t),e&&T(o,e),o},Lt.provide=Nt;var kt=function(t,e){return void 0===e?t:e};function Mt(t,e,n){if("function"==typeof e&&(e=e.options),function(t,e){var n=t.props;if(n){var r,o,i={};if(Array.isArray(n))for(r=n.length;r--;)"string"==typeof(o=n[r])&&(i[w(o)]={type:null});else if(f(n))for(var a in n)o=n[a],i[w(a)]=f(o)?o:{type:o};else 0;t.props=i}}(e),function(t,e){var n=t.inject;if(n){var r=t.inject={};if(Array.isArray(n))for(var o=0;o<n.length;o++)r[n[o]]={from:n[o]};else if(f(n))for(var i in n){var a=n[i];r[i]=f(a)?T({from:i},a):{from:a}}else 0}}(e),function(t){var e=t.directives;if(e)for(var n in e){var r=e[n];"function"==typeof r&&(e[n]={bind:r,update:r})}}(e),!e._base&&(e.extends&&(t=Mt(t,e.extends,n)),e.mixins))for(var r=0,o=e.mixins.length;r<o;r++)t=Mt(t,e.mixins[r],n);var i,a={};for(i in t)s(i);for(i in e)b(t,i)||s(i);function s(r){var o=Lt[r]||kt;a[r]=o(t[r],e[r],n,r)}return a}function Dt(t,e,n,r){if("string"==typeof n){var o=t[e];if(b(o,n))return o[n];var i=w(n);if(b(o,i))return o[i];var a=_(i);return b(o,a)?o[a]:o[n]||o[i]||o[a]}}function $t(t,e,n,r){var o=e[t],i=!b(n,t),a=n[t],s=Gt(Boolean,o.type);if(s>-1)if(i&&!b(o,"default"))a=!1;else if(""===a||a===S(t)){var u=Gt(String,o.type);(u<0||s<u)&&(a=!0)}if(void 0===a){a=function(t,e,n){if(!b(e,"default"))return;var r=e.default;0;if(t&&t.$options.propsData&&void 0===t.$options.propsData[n]&&void 0!==t._props[n])return t._props[n];return"function"==typeof r&&"Function"!==Ft(e.type)?r.call(t):r}(r,o,t);var c=wt;_t(!0),St(a),_t(c)}return a}function Ft(t){var e=t&&t.toString().match(/^\s*function (\w+)/);return e?e[1]:""}function Ut(t,e){return Ft(t)===Ft(e)}function Gt(t,e){if(!Array.isArray(e))return Ut(e,t)?0:-1;for(var n=0,r=e.length;n<r;n++)if(Ut(e[n],t))return n;return-1}function Bt(t,e,n){dt();try{if(e)for(var r=e;r=r.$parent;){var o=r.$options.errorCaptured;if(o)for(var i=0;i<o.length;i++)try{if(!1===o[i].call(r,t,e,n))return}catch(t){Xt(t,r,"errorCaptured hook")}}Xt(t,e,n)}finally{vt()}}function Vt(t,e,n,r,o){var i;try{(i=n?t.apply(e,n):t.call(e))&&!i._isVue&&d(i)&&!i._handled&&(i.catch((function(t){return Bt(t,r,o+" (Promise/async)")})),i._handled=!0)}catch(t){Bt(t,r,o)}return i}function Xt(t,e,n){if(U.errorHandler)try{return U.errorHandler.call(null,t,e,n)}catch(e){e!==t&&zt(e,null,"config.errorHandler")}zt(t,e,n)}function zt(t,e,n){if(!q&&!H||"undefined"==typeof console)throw t;console.error(t)}var qt,Ht=!1,Wt=[],Yt=!1;function Kt(){Yt=!1;var t=Wt.slice(0);Wt.length=0;for(var e=0;e<t.length;e++)t[e]()}if("undefined"!=typeof Promise&&at(Promise)){var Jt=Promise.resolve();qt=function(){Jt.then(Kt),Q&&setTimeout(C)},Ht=!0}else if(K||"undefined"==typeof MutationObserver||!at(MutationObserver)&&"[object MutationObserverConstructor]"!==MutationObserver.toString())qt=void 0!==n&&at(n)?function(){n(Kt)}:function(){setTimeout(Kt,0)};else{var Zt=1,Qt=new MutationObserver(Kt),te=document.createTextNode(String(Zt));Qt.observe(te,{characterData:!0}),qt=function(){Zt=(Zt+1)%2,te.data=String(Zt)},Ht=!0}function ee(t,e){var n;if(Wt.push((function(){if(t)try{t.call(e)}catch(t){Bt(t,e,"nextTick")}else n&&n(e)})),Yt||(Yt=!0,qt()),!t&&"undefined"!=typeof Promise)return new Promise((function(t){n=t}))}var ne=new st;function re(t){!function t(e,n){var r,o,i=Array.isArray(e);if(!i&&!u(e)||Object.isFrozen(e)||e instanceof ht)return;if(e.__ob__){var a=e.__ob__.dep.id;if(n.has(a))return;n.add(a)}if(i)for(r=e.length;r--;)t(e[r],n);else for(o=Object.keys(e),r=o.length;r--;)t(e[o[r]],n)}(t,ne),ne.clear()}var oe=O((function(t){var e="&"===t.charAt(0),n="~"===(t=e?t.slice(1):t).charAt(0),r="!"===(t=n?t.slice(1):t).charAt(0);return{name:t=r?t.slice(1):t,once:n,capture:r,passive:e}}));function ie(t,e){function n(){var t=arguments,r=n.fns;if(!Array.isArray(r))return Vt(r,null,arguments,e,"v-on handler");for(var o=r.slice(),i=0;i<o.length;i++)Vt(o[i],null,t,e,"v-on handler")}return n.fns=t,n}function ae(t,e,n,r,i,s){var u,c,f,l;for(u in t)c=t[u],f=e[u],l=oe(u),o(c)||(o(f)?(o(c.fns)&&(c=t[u]=ie(c,s)),a(l.once)&&(c=t[u]=i(l.name,c,l.capture)),n(l.name,c,l.capture,l.passive,l.params)):c!==f&&(f.fns=c,t[u]=f));for(u in e)o(t[u])&&r((l=oe(u)).name,e[u],l.capture)}function se(t,e,n){var r;t instanceof ht&&(t=t.data.hook||(t.data.hook={}));var s=t[e];function u(){n.apply(this,arguments),g(r.fns,u)}o(s)?r=ie([u]):i(s.fns)&&a(s.merged)?(r=s).fns.push(u):r=ie([s,u]),r.merged=!0,t[e]=r}function ue(t,e,n,r,o){if(i(e)){if(b(e,n))return t[n]=e[n],o||delete e[n],!0;if(b(e,r))return t[n]=e[r],o||delete e[r],!0}return!1}function ce(t){return s(t)?[gt(t)]:Array.isArray(t)?function t(e,n){var r,u,c,f,l=[];for(r=0;r<e.length;r++)o(u=e[r])||"boolean"==typeof u||(c=l.length-1,f=l[c],Array.isArray(u)?u.length>0&&(fe((u=t(u,(n||"")+"_"+r))[0])&&fe(f)&&(l[c]=gt(f.text+u[0].text),u.shift()),l.push.apply(l,u)):s(u)?fe(f)?l[c]=gt(f.text+u):""!==u&&l.push(gt(u)):fe(u)&&fe(f)?l[c]=gt(f.text+u.text):(a(e._isVList)&&i(u.tag)&&o(u.key)&&i(n)&&(u.key="__vlist"+n+"_"+r+"__"),l.push(u)));return l}(t):void 0}function fe(t){return i(t)&&i(t.text)&&!1===t.isComment}function le(t,e){if(t){for(var n=Object.create(null),r=ut?Reflect.ownKeys(t):Object.keys(t),o=0;o<r.length;o++){var i=r[o];if("__ob__"!==i){for(var a=t[i].from,s=e;s;){if(s._provided&&b(s._provided,a)){n[i]=s._provided[a];break}s=s.$parent}if(!s)if("default"in t[i]){var u=t[i].default;n[i]="function"==typeof u?u.call(e):u}else 0}}return n}}function pe(t,e){if(!t||!t.length)return{};for(var n={},r=0,o=t.length;r<o;r++){var i=t[r],a=i.data;if(a&&a.attrs&&a.attrs.slot&&delete a.attrs.slot,i.context!==e&&i.fnContext!==e||!a||null==a.slot)(n.default||(n.default=[])).push(i);else{var s=a.slot,u=n[s]||(n[s]=[]);"template"===i.tag?u.push.apply(u,i.children||[]):u.push(i)}}for(var c in n)n[c].every(de)&&delete n[c];return n}function de(t){return t.isComment&&!t.asyncFactory||" "===t.text}function ve(t,e,n){var o,i=Object.keys(e).length>0,a=t?!!t.$stable:!i,s=t&&t.$key;if(t){if(t._normalized)return t._normalized;if(a&&n&&n!==r&&s===n.$key&&!i&&!n.$hasNormal)return n;for(var u in o={},t)t[u]&&"$"!==u[0]&&(o[u]=he(e,u,t[u]))}else o={};for(var c in e)c in o||(o[c]=me(e,c));return t&&Object.isExtensible(t)&&(t._normalized=o),B(o,"$stable",a),B(o,"$key",s),B(o,"$hasNormal",i),o}function he(t,e,n){var r=function(){var t=arguments.length?n.apply(null,arguments):n({});return(t=t&&"object"==typeof t&&!Array.isArray(t)?[t]:ce(t))&&(0===t.length||1===t.length&&t[0].isComment)?void 0:t};return n.proxy&&Object.defineProperty(t,e,{get:r,enumerable:!0,configurable:!0}),r}function me(t,e){return function(){return t[e]}}function ye(t,e){var n,r,o,a,s;if(Array.isArray(t)||"string"==typeof t)for(n=new Array(t.length),r=0,o=t.length;r<o;r++)n[r]=e(t[r],r);else if("number"==typeof t)for(n=new Array(t),r=0;r<t;r++)n[r]=e(r+1,r);else if(u(t))if(ut&&t[Symbol.iterator]){n=[];for(var c=t[Symbol.iterator](),f=c.next();!f.done;)n.push(e(f.value,n.length)),f=c.next()}else for(a=Object.keys(t),n=new Array(a.length),r=0,o=a.length;r<o;r++)s=a[r],n[r]=e(t[s],s,r);return i(n)||(n=[]),n._isVList=!0,n}function ge(t,e,n,r){var o,i=this.$scopedSlots[t];i?(n=n||{},r&&(n=T(T({},r),n)),o=i(n)||e):o=this.$slots[t]||e;var a=n&&n.slot;return a?this.$createElement("template",{slot:a},o):o}function Ee(t){return Dt(this.$options,"filters",t)||j}function be(t,e){return Array.isArray(t)?-1===t.indexOf(e):t!==e}function Oe(t,e,n,r,o){var i=U.keyCodes[e]||n;return o&&r&&!U.keyCodes[e]?be(o,r):i?be(i,t):r?S(r)!==e:void 0}function xe(t,e,n,r,o){if(n)if(u(n)){var i;Array.isArray(n)&&(n=L(n));var a=function(a){if("class"===a||"style"===a||y(a))i=t;else{var s=t.attrs&&t.attrs.type;i=r||U.mustUseProp(e,s,a)?t.domProps||(t.domProps={}):t.attrs||(t.attrs={})}var u=w(a),c=S(a);u in i||c in i||(i[a]=n[a],o&&((t.on||(t.on={}))["update:"+a]=function(t){n[a]=t}))};for(var s in n)a(s)}else;return t}function we(t,e){var n=this._staticTrees||(this._staticTrees=[]),r=n[t];return r&&!e?r:(Ie(r=n[t]=this.$options.staticRenderFns[t].call(this._renderProxy,null,this),"__static__"+t,!1),r)}function _e(t,e,n){return Ie(t,"__once__"+e+(n?"_"+n:""),!0),t}function Ie(t,e,n){if(Array.isArray(t))for(var r=0;r<t.length;r++)t[r]&&"string"!=typeof t[r]&&Se(t[r],e+"_"+r,n);else Se(t,e,n)}function Se(t,e,n){t.isStatic=!0,t.key=e,t.isOnce=n}function Ae(t,e){if(e)if(f(e)){var n=t.on=t.on?T({},t.on):{};for(var r in e){var o=n[r],i=e[r];n[r]=o?[].concat(o,i):i}}else;return t}function Re(t,e,n,r){e=e||{$stable:!n};for(var o=0;o<t.length;o++){var i=t[o];Array.isArray(i)?Re(i,e,n):i&&(i.proxy&&(i.fn.proxy=!0),e[i.key]=i.fn)}return r&&(e.$key=r),e}function Te(t,e){for(var n=0;n<e.length;n+=2){var r=e[n];"string"==typeof r&&r&&(t[e[n]]=e[n+1])}return t}function Le(t,e){return"string"==typeof t?e+t:t}function Ce(t){t._o=_e,t._n=h,t._s=v,t._l=ye,t._t=ge,t._q=P,t._i=k,t._m=we,t._f=Ee,t._k=Oe,t._b=xe,t._v=gt,t._e=yt,t._u=Re,t._g=Ae,t._d=Te,t._p=Le}function Ne(t,e,n,o,i){var s,u=this,c=i.options;b(o,"_uid")?(s=Object.create(o))._original=o:(s=o,o=o._original);var f=a(c._compiled),l=!f;this.data=t,this.props=e,this.children=n,this.parent=o,this.listeners=t.on||r,this.injections=le(c.inject,o),this.slots=function(){return u.$slots||ve(t.scopedSlots,u.$slots=pe(n,o)),u.$slots},Object.defineProperty(this,"scopedSlots",{enumerable:!0,get:function(){return ve(t.scopedSlots,this.slots())}}),f&&(this.$options=c,this.$slots=this.slots(),this.$scopedSlots=ve(t.scopedSlots,this.$slots)),c._scopeId?this._c=function(t,e,n,r){var i=Ge(s,t,e,n,r,l);return i&&!Array.isArray(i)&&(i.fnScopeId=c._scopeId,i.fnContext=o),i}:this._c=function(t,e,n,r){return Ge(s,t,e,n,r,l)}}function je(t,e,n,r,o){var i=Et(t);return i.fnContext=n,i.fnOptions=r,e.slot&&((i.data||(i.data={})).slot=e.slot),i}function Pe(t,e){for(var n in e)t[w(n)]=e[n]}Ce(Ne.prototype);var ke={init:function(t,e){if(t.componentInstance&&!t.componentInstance._isDestroyed&&t.data.keepAlive){var n=t;ke.prepatch(n,n)}else{(t.componentInstance=function(t,e){var n={_isComponent:!0,_parentVnode:t,parent:e},r=t.data.inlineTemplate;i(r)&&(n.render=r.render,n.staticRenderFns=r.staticRenderFns);return new t.componentOptions.Ctor(n)}(t,Je)).$mount(e?t.elm:void 0,e)}},prepatch:function(t,e){var n=e.componentOptions;!function(t,e,n,o,i){0;var a=o.data.scopedSlots,s=t.$scopedSlots,u=!!(a&&!a.$stable||s!==r&&!s.$stable||a&&t.$scopedSlots.$key!==a.$key),c=!!(i||t.$options._renderChildren||u);t.$options._parentVnode=o,t.$vnode=o,t._vnode&&(t._vnode.parent=o);if(t.$options._renderChildren=i,t.$attrs=o.data.attrs||r,t.$listeners=n||r,e&&t.$options.props){_t(!1);for(var f=t._props,l=t.$options._propKeys||[],p=0;p<l.length;p++){var d=l[p],v=t.$options.props;f[d]=$t(d,v,e,t)}_t(!0),t.$options.propsData=e}n=n||r;var h=t.$options._parentListeners;t.$options._parentListeners=n,Ke(t,n,h),c&&(t.$slots=pe(i,o.context),t.$forceUpdate());0}(e.componentInstance=t.componentInstance,n.propsData,n.listeners,e,n.children)},insert:function(t){var e,n=t.context,r=t.componentInstance;r._isMounted||(r._isMounted=!0,en(r,"mounted")),t.data.keepAlive&&(n._isMounted?((e=r)._inactive=!1,rn.push(e)):tn(r,!0))},destroy:function(t){var e=t.componentInstance;e._isDestroyed||(t.data.keepAlive?function t(e,n){if(n&&(e._directInactive=!0,Qe(e)))return;if(!e._inactive){e._inactive=!0;for(var r=0;r<e.$children.length;r++)t(e.$children[r]);en(e,"deactivated")}}(e,!0):e.$destroy())}},Me=Object.keys(ke);function De(t,e,n,s,c){if(!o(t)){var f=n.$options._base;if(u(t)&&(t=f.extend(t)),"function"==typeof t){var l;if(o(t.cid)&&void 0===(t=function(t,e){if(a(t.error)&&i(t.errorComp))return t.errorComp;if(i(t.resolved))return t.resolved;var n=Ve;n&&i(t.owners)&&-1===t.owners.indexOf(n)&&t.owners.push(n);if(a(t.loading)&&i(t.loadingComp))return t.loadingComp;if(n&&!i(t.owners)){var r=t.owners=[n],s=!0,c=null,f=null;n.$on("hook:destroyed",(function(){return g(r,n)}));var l=function(t){for(var e=0,n=r.length;e<n;e++)r[e].$forceUpdate();t&&(r.length=0,null!==c&&(clearTimeout(c),c=null),null!==f&&(clearTimeout(f),f=null))},p=M((function(n){t.resolved=Xe(n,e),s?r.length=0:l(!0)})),v=M((function(e){i(t.errorComp)&&(t.error=!0,l(!0))})),h=t(p,v);return u(h)&&(d(h)?o(t.resolved)&&h.then(p,v):d(h.component)&&(h.component.then(p,v),i(h.error)&&(t.errorComp=Xe(h.error,e)),i(h.loading)&&(t.loadingComp=Xe(h.loading,e),0===h.delay?t.loading=!0:c=setTimeout((function(){c=null,o(t.resolved)&&o(t.error)&&(t.loading=!0,l(!1))}),h.delay||200)),i(h.timeout)&&(f=setTimeout((function(){f=null,o(t.resolved)&&v(null)}),h.timeout)))),s=!1,t.loading?t.loadingComp:t.resolved}}(l=t,f)))return function(t,e,n,r,o){var i=yt();return i.asyncFactory=t,i.asyncMeta={data:e,context:n,children:r,tag:o},i}(l,e,n,s,c);e=e||{},_n(t),i(e.model)&&function(t,e){var n=t.model&&t.model.prop||"value",r=t.model&&t.model.event||"input";(e.attrs||(e.attrs={}))[n]=e.model.value;var o=e.on||(e.on={}),a=o[r],s=e.model.callback;i(a)?(Array.isArray(a)?-1===a.indexOf(s):a!==s)&&(o[r]=[s].concat(a)):o[r]=s}(t.options,e);var p=function(t,e,n){var r=e.options.props;if(!o(r)){var a={},s=t.attrs,u=t.props;if(i(s)||i(u))for(var c in r){var f=S(c);ue(a,u,c,f,!0)||ue(a,s,c,f,!1)}return a}}(e,t);if(a(t.options.functional))return function(t,e,n,o,a){var s=t.options,u={},c=s.props;if(i(c))for(var f in c)u[f]=$t(f,c,e||r);else i(n.attrs)&&Pe(u,n.attrs),i(n.props)&&Pe(u,n.props);var l=new Ne(n,u,a,o,t),p=s.render.call(null,l._c,l);if(p instanceof ht)return je(p,n,l.parent,s,l);if(Array.isArray(p)){for(var d=ce(p)||[],v=new Array(d.length),h=0;h<d.length;h++)v[h]=je(d[h],n,l.parent,s,l);return v}}(t,p,e,n,s);var v=e.on;if(e.on=e.nativeOn,a(t.options.abstract)){var h=e.slot;e={},h&&(e.slot=h)}!function(t){for(var e=t.hook||(t.hook={}),n=0;n<Me.length;n++){var r=Me[n],o=e[r],i=ke[r];o===i||o&&o._merged||(e[r]=o?$e(i,o):i)}}(e);var m=t.options.name||c;return new ht("vue-component-"+t.cid+(m?"-"+m:""),e,void 0,void 0,void 0,n,{Ctor:t,propsData:p,listeners:v,tag:c,children:s},l)}}}function $e(t,e){var n=function(n,r){t(n,r),e(n,r)};return n._merged=!0,n}var Fe=1,Ue=2;function Ge(t,e,n,r,c,f){return(Array.isArray(n)||s(n))&&(c=r,r=n,n=void 0),a(f)&&(c=Ue),function(t,e,n,r,s){if(i(n)&&i(n.__ob__))return yt();i(n)&&i(n.is)&&(e=n.is);if(!e)return yt();0;Array.isArray(r)&&"function"==typeof r[0]&&((n=n||{}).scopedSlots={default:r[0]},r.length=0);s===Ue?r=ce(r):s===Fe&&(r=function(t){for(var e=0;e<t.length;e++)if(Array.isArray(t[e]))return Array.prototype.concat.apply([],t);return t}(r));var c,f;if("string"==typeof e){var l;f=t.$vnode&&t.$vnode.ns||U.getTagNamespace(e),c=U.isReservedTag(e)?new ht(U.parsePlatformTagName(e),n,r,void 0,void 0,t):n&&n.pre||!i(l=Dt(t.$options,"components",e))?new ht(e,n,r,void 0,void 0,t):De(l,n,t,r,e)}else c=De(e,n,t,r);return Array.isArray(c)?c:i(c)?(i(f)&&function t(e,n,r){e.ns=n,"foreignObject"===e.tag&&(n=void 0,r=!0);if(i(e.children))for(var s=0,u=e.children.length;s<u;s++){var c=e.children[s];i(c.tag)&&(o(c.ns)||a(r)&&"svg"!==c.tag)&&t(c,n,r)}}(c,f),i(n)&&function(t){u(t.style)&&re(t.style);u(t.class)&&re(t.class)}(n),c):yt()}(t,e,n,r,c)}var Be,Ve=null;function Xe(t,e){return(t.__esModule||ut&&"Module"===t[Symbol.toStringTag])&&(t=t.default),u(t)?e.extend(t):t}function ze(t){return t.isComment&&t.asyncFactory}function qe(t){if(Array.isArray(t))for(var e=0;e<t.length;e++){var n=t[e];if(i(n)&&(i(n.componentOptions)||ze(n)))return n}}function He(t,e){Be.$on(t,e)}function We(t,e){Be.$off(t,e)}function Ye(t,e){var n=Be;return function r(){var o=e.apply(null,arguments);null!==o&&n.$off(t,r)}}function Ke(t,e,n){Be=t,ae(e,n||{},He,We,Ye,t),Be=void 0}var Je=null;function Ze(t){var e=Je;return Je=t,function(){Je=e}}function Qe(t){for(;t&&(t=t.$parent);)if(t._inactive)return!0;return!1}function tn(t,e){if(e){if(t._directInactive=!1,Qe(t))return}else if(t._directInactive)return;if(t._inactive||null===t._inactive){t._inactive=!1;for(var n=0;n<t.$children.length;n++)tn(t.$children[n]);en(t,"activated")}}function en(t,e){dt();var n=t.$options[e],r=e+" hook";if(n)for(var o=0,i=n.length;o<i;o++)Vt(n[o],t,null,t,r);t._hasHookEvent&&t.$emit("hook:"+e),vt()}var nn=[],rn=[],on={},an=!1,sn=!1,un=0;var cn=0,fn=Date.now;if(q&&!K){var ln=window.performance;ln&&"function"==typeof ln.now&&fn()>document.createEvent("Event").timeStamp&&(fn=function(){return ln.now()})}function pn(){var t,e;for(cn=fn(),sn=!0,nn.sort((function(t,e){return t.id-e.id})),un=0;un<nn.length;un++)(t=nn[un]).before&&t.before(),e=t.id,on[e]=null,t.run();var n=rn.slice(),r=nn.slice();un=nn.length=rn.length=0,on={},an=sn=!1,function(t){for(var e=0;e<t.length;e++)t[e]._inactive=!0,tn(t[e],!0)}(n),function(t){var e=t.length;for(;e--;){var n=t[e],r=n.vm;r._watcher===n&&r._isMounted&&!r._isDestroyed&&en(r,"updated")}}(r),it&&U.devtools&&it.emit("flush")}var dn=0,vn=function(t,e,n,r,o){this.vm=t,o&&(t._watcher=this),t._watchers.push(this),r?(this.deep=!!r.deep,this.user=!!r.user,this.lazy=!!r.lazy,this.sync=!!r.sync,this.before=r.before):this.deep=this.user=this.lazy=this.sync=!1,this.cb=n,this.id=++dn,this.active=!0,this.dirty=this.lazy,this.deps=[],this.newDeps=[],this.depIds=new st,this.newDepIds=new st,this.expression="","function"==typeof e?this.getter=e:(this.getter=function(t){if(!V.test(t)){var e=t.split(".");return function(t){for(var n=0;n<e.length;n++){if(!t)return;t=t[e[n]]}return t}}}(e),this.getter||(this.getter=C)),this.value=this.lazy?void 0:this.get()};vn.prototype.get=function(){var t;dt(this);var e=this.vm;try{t=this.getter.call(e,e)}catch(t){if(!this.user)throw t;Bt(t,e,'getter for watcher "'+this.expression+'"')}finally{this.deep&&re(t),vt(),this.cleanupDeps()}return t},vn.prototype.addDep=function(t){var e=t.id;this.newDepIds.has(e)||(this.newDepIds.add(e),this.newDeps.push(t),this.depIds.has(e)||t.addSub(this))},vn.prototype.cleanupDeps=function(){for(var t=this.deps.length;t--;){var e=this.deps[t];this.newDepIds.has(e.id)||e.removeSub(this)}var n=this.depIds;this.depIds=this.newDepIds,this.newDepIds=n,this.newDepIds.clear(),n=this.deps,this.deps=this.newDeps,this.newDeps=n,this.newDeps.length=0},vn.prototype.update=function(){this.lazy?this.dirty=!0:this.sync?this.run():function(t){var e=t.id;if(null==on[e]){if(on[e]=!0,sn){for(var n=nn.length-1;n>un&&nn[n].id>t.id;)n--;nn.splice(n+1,0,t)}else nn.push(t);an||(an=!0,ee(pn))}}(this)},vn.prototype.run=function(){if(this.active){var t=this.get();if(t!==this.value||u(t)||this.deep){var e=this.value;if(this.value=t,this.user)try{this.cb.call(this.vm,t,e)}catch(t){Bt(t,this.vm,'callback for watcher "'+this.expression+'"')}else this.cb.call(this.vm,t,e)}}},vn.prototype.evaluate=function(){this.value=this.get(),this.dirty=!1},vn.prototype.depend=function(){for(var t=this.deps.length;t--;)this.deps[t].depend()},vn.prototype.teardown=function(){if(this.active){this.vm._isBeingDestroyed||g(this.vm._watchers,this);for(var t=this.deps.length;t--;)this.deps[t].removeSub(this);this.active=!1}};var hn={enumerable:!0,configurable:!0,get:C,set:C};function mn(t,e,n){hn.get=function(){return this[e][n]},hn.set=function(t){this[e][n]=t},Object.defineProperty(t,n,hn)}function yn(t){t._watchers=[];var e=t.$options;e.props&&function(t,e){var n=t.$options.propsData||{},r=t._props={},o=t.$options._propKeys=[];t.$parent&&_t(!1);var i=function(i){o.push(i);var a=$t(i,e,n,t);At(r,i,a),i in t||mn(t,"_props",i)};for(var a in e)i(a);_t(!0)}(t,e.props),e.methods&&function(t,e){t.$options.props;for(var n in e)t[n]="function"!=typeof e[n]?C:A(e[n],t)}(t,e.methods),e.data?function(t){var e=t.$options.data;f(e=t._data="function"==typeof e?function(t,e){dt();try{return t.call(e,e)}catch(t){return Bt(t,e,"data()"),{}}finally{vt()}}(e,t):e||{})||(e={});var n=Object.keys(e),r=t.$options.props,o=(t.$options.methods,n.length);for(;o--;){var i=n[o];0,r&&b(r,i)||(a=void 0,36!==(a=(i+"").charCodeAt(0))&&95!==a&&mn(t,"_data",i))}var a;St(e,!0)}(t):St(t._data={},!0),e.computed&&function(t,e){var n=t._computedWatchers=Object.create(null),r=ot();for(var o in e){var i=e[o],a="function"==typeof i?i:i.get;0,r||(n[o]=new vn(t,a||C,C,gn)),o in t||En(t,o,i)}}(t,e.computed),e.watch&&e.watch!==et&&function(t,e){for(var n in e){var r=e[n];if(Array.isArray(r))for(var o=0;o<r.length;o++)xn(t,n,r[o]);else xn(t,n,r)}}(t,e.watch)}var gn={lazy:!0};function En(t,e,n){var r=!ot();"function"==typeof n?(hn.get=r?bn(e):On(n),hn.set=C):(hn.get=n.get?r&&!1!==n.cache?bn(e):On(n.get):C,hn.set=n.set||C),Object.defineProperty(t,e,hn)}function bn(t){return function(){var e=this._computedWatchers&&this._computedWatchers[t];if(e)return e.dirty&&e.evaluate(),lt.target&&e.depend(),e.value}}function On(t){return function(){return t.call(this,this)}}function xn(t,e,n,r){return f(n)&&(r=n,n=n.handler),"string"==typeof n&&(n=t[n]),t.$watch(e,n,r)}var wn=0;function _n(t){var e=t.options;if(t.super){var n=_n(t.super);if(n!==t.superOptions){t.superOptions=n;var r=function(t){var e,n=t.options,r=t.sealedOptions;for(var o in n)n[o]!==r[o]&&(e||(e={}),e[o]=n[o]);return e}(t);r&&T(t.extendOptions,r),(e=t.options=Mt(n,t.extendOptions)).name&&(e.components[e.name]=t)}}return e}function In(t){this._init(t)}function Sn(t){t.cid=0;var e=1;t.extend=function(t){t=t||{};var n=this,r=n.cid,o=t._Ctor||(t._Ctor={});if(o[r])return o[r];var i=t.name||n.options.name;var a=function(t){this._init(t)};return(a.prototype=Object.create(n.prototype)).constructor=a,a.cid=e++,a.options=Mt(n.options,t),a.super=n,a.options.props&&function(t){var e=t.options.props;for(var n in e)mn(t.prototype,"_props",n)}(a),a.options.computed&&function(t){var e=t.options.computed;for(var n in e)En(t.prototype,n,e[n])}(a),a.extend=n.extend,a.mixin=n.mixin,a.use=n.use,$.forEach((function(t){a[t]=n[t]})),i&&(a.options.components[i]=a),a.superOptions=n.options,a.extendOptions=t,a.sealedOptions=T({},a.options),o[r]=a,a}}function An(t){return t&&(t.Ctor.options.name||t.tag)}function Rn(t,e){return Array.isArray(t)?t.indexOf(e)>-1:"string"==typeof t?t.split(",").indexOf(e)>-1:!!l(t)&&t.test(e)}function Tn(t,e){var n=t.cache,r=t.keys,o=t._vnode;for(var i in n){var a=n[i];if(a){var s=An(a.componentOptions);s&&!e(s)&&Ln(n,i,r,o)}}}function Ln(t,e,n,r){var o=t[e];!o||r&&o.tag===r.tag||o.componentInstance.$destroy(),t[e]=null,g(n,e)}!function(t){t.prototype._init=function(t){var e=this;e._uid=wn++,e._isVue=!0,t&&t._isComponent?function(t,e){var n=t.$options=Object.create(t.constructor.options),r=e._parentVnode;n.parent=e.parent,n._parentVnode=r;var o=r.componentOptions;n.propsData=o.propsData,n._parentListeners=o.listeners,n._renderChildren=o.children,n._componentTag=o.tag,e.render&&(n.render=e.render,n.staticRenderFns=e.staticRenderFns)}(e,t):e.$options=Mt(_n(e.constructor),t||{},e),e._renderProxy=e,e._self=e,function(t){var e=t.$options,n=e.parent;if(n&&!e.abstract){for(;n.$options.abstract&&n.$parent;)n=n.$parent;n.$children.push(t)}t.$parent=n,t.$root=n?n.$root:t,t.$children=[],t.$refs={},t._watcher=null,t._inactive=null,t._directInactive=!1,t._isMounted=!1,t._isDestroyed=!1,t._isBeingDestroyed=!1}(e),function(t){t._events=Object.create(null),t._hasHookEvent=!1;var e=t.$options._parentListeners;e&&Ke(t,e)}(e),function(t){t._vnode=null,t._staticTrees=null;var e=t.$options,n=t.$vnode=e._parentVnode,o=n&&n.context;t.$slots=pe(e._renderChildren,o),t.$scopedSlots=r,t._c=function(e,n,r,o){return Ge(t,e,n,r,o,!1)},t.$createElement=function(e,n,r,o){return Ge(t,e,n,r,o,!0)};var i=n&&n.data;At(t,"$attrs",i&&i.attrs||r,null,!0),At(t,"$listeners",e._parentListeners||r,null,!0)}(e),en(e,"beforeCreate"),function(t){var e=le(t.$options.inject,t);e&&(_t(!1),Object.keys(e).forEach((function(n){At(t,n,e[n])})),_t(!0))}(e),yn(e),function(t){var e=t.$options.provide;e&&(t._provided="function"==typeof e?e.call(t):e)}(e),en(e,"created"),e.$options.el&&e.$mount(e.$options.el)}}(In),function(t){var e={get:function(){return this._data}},n={get:function(){return this._props}};Object.defineProperty(t.prototype,"$data",e),Object.defineProperty(t.prototype,"$props",n),t.prototype.$set=Rt,t.prototype.$delete=Tt,t.prototype.$watch=function(t,e,n){if(f(e))return xn(this,t,e,n);(n=n||{}).user=!0;var r=new vn(this,t,e,n);if(n.immediate)try{e.call(this,r.value)}catch(t){Bt(t,this,'callback for immediate watcher "'+r.expression+'"')}return function(){r.teardown()}}}(In),function(t){var e=/^hook:/;t.prototype.$on=function(t,n){var r=this;if(Array.isArray(t))for(var o=0,i=t.length;o<i;o++)r.$on(t[o],n);else(r._events[t]||(r._events[t]=[])).push(n),e.test(t)&&(r._hasHookEvent=!0);return r},t.prototype.$once=function(t,e){var n=this;function r(){n.$off(t,r),e.apply(n,arguments)}return r.fn=e,n.$on(t,r),n},t.prototype.$off=function(t,e){var n=this;if(!arguments.length)return n._events=Object.create(null),n;if(Array.isArray(t)){for(var r=0,o=t.length;r<o;r++)n.$off(t[r],e);return n}var i,a=n._events[t];if(!a)return n;if(!e)return n._events[t]=null,n;for(var s=a.length;s--;)if((i=a[s])===e||i.fn===e){a.splice(s,1);break}return n},t.prototype.$emit=function(t){var e=this,n=e._events[t];if(n){n=n.length>1?R(n):n;for(var r=R(arguments,1),o='event handler for "'+t+'"',i=0,a=n.length;i<a;i++)Vt(n[i],e,r,e,o)}return e}}(In),function(t){t.prototype._update=function(t,e){var n=this,r=n.$el,o=n._vnode,i=Ze(n);n._vnode=t,n.$el=o?n.__patch__(o,t):n.__patch__(n.$el,t,e,!1),i(),r&&(r.__vue__=null),n.$el&&(n.$el.__vue__=n),n.$vnode&&n.$parent&&n.$vnode===n.$parent._vnode&&(n.$parent.$el=n.$el)},t.prototype.$forceUpdate=function(){this._watcher&&this._watcher.update()},t.prototype.$destroy=function(){var t=this;if(!t._isBeingDestroyed){en(t,"beforeDestroy"),t._isBeingDestroyed=!0;var e=t.$parent;!e||e._isBeingDestroyed||t.$options.abstract||g(e.$children,t),t._watcher&&t._watcher.teardown();for(var n=t._watchers.length;n--;)t._watchers[n].teardown();t._data.__ob__&&t._data.__ob__.vmCount--,t._isDestroyed=!0,t.__patch__(t._vnode,null),en(t,"destroyed"),t.$off(),t.$el&&(t.$el.__vue__=null),t.$vnode&&(t.$vnode.parent=null)}}}(In),function(t){Ce(t.prototype),t.prototype.$nextTick=function(t){return ee(t,this)},t.prototype._render=function(){var t,e=this,n=e.$options,r=n.render,o=n._parentVnode;o&&(e.$scopedSlots=ve(o.data.scopedSlots,e.$slots,e.$scopedSlots)),e.$vnode=o;try{Ve=e,t=r.call(e._renderProxy,e.$createElement)}catch(n){Bt(n,e,"render"),t=e._vnode}finally{Ve=null}return Array.isArray(t)&&1===t.length&&(t=t[0]),t instanceof ht||(t=yt()),t.parent=o,t}}(In);var Cn=[String,RegExp,Array],Nn={KeepAlive:{name:"keep-alive",abstract:!0,props:{include:Cn,exclude:Cn,max:[String,Number]},created:function(){this.cache=Object.create(null),this.keys=[]},destroyed:function(){for(var t in this.cache)Ln(this.cache,t,this.keys)},mounted:function(){var t=this;this.$watch("include",(function(e){Tn(t,(function(t){return Rn(e,t)}))})),this.$watch("exclude",(function(e){Tn(t,(function(t){return!Rn(e,t)}))}))},render:function(){var t=this.$slots.default,e=qe(t),n=e&&e.componentOptions;if(n){var r=An(n),o=this.include,i=this.exclude;if(o&&(!r||!Rn(o,r))||i&&r&&Rn(i,r))return e;var a=this.cache,s=this.keys,u=null==e.key?n.Ctor.cid+(n.tag?"::"+n.tag:""):e.key;a[u]?(e.componentInstance=a[u].componentInstance,g(s,u),s.push(u)):(a[u]=e,s.push(u),this.max&&s.length>parseInt(this.max)&&Ln(a,s[0],s,this._vnode)),e.data.keepAlive=!0}return e||t&&t[0]}}};!function(t){var e={get:function(){return U}};Object.defineProperty(t,"config",e),t.util={warn:ct,extend:T,mergeOptions:Mt,defineReactive:At},t.set=Rt,t.delete=Tt,t.nextTick=ee,t.observable=function(t){return St(t),t},t.options=Object.create(null),$.forEach((function(e){t.options[e+"s"]=Object.create(null)})),t.options._base=t,T(t.options.components,Nn),function(t){t.use=function(t){var e=this._installedPlugins||(this._installedPlugins=[]);if(e.indexOf(t)>-1)return this;var n=R(arguments,1);return n.unshift(this),"function"==typeof t.install?t.install.apply(t,n):"function"==typeof t&&t.apply(null,n),e.push(t),this}}(t),function(t){t.mixin=function(t){return this.options=Mt(this.options,t),this}}(t),Sn(t),function(t){$.forEach((function(e){t[e]=function(t,n){return n?("component"===e&&f(n)&&(n.name=n.name||t,n=this.options._base.extend(n)),"directive"===e&&"function"==typeof n&&(n={bind:n,update:n}),this.options[e+"s"][t]=n,n):this.options[e+"s"][t]}}))}(t)}(In),Object.defineProperty(In.prototype,"$isServer",{get:ot}),Object.defineProperty(In.prototype,"$ssrContext",{get:function(){return this.$vnode&&this.$vnode.ssrContext}}),Object.defineProperty(In,"FunctionalRenderContext",{value:Ne}),In.version="2.6.11";var jn=m("style,class"),Pn=m("input,textarea,option,select,progress"),kn=m("contenteditable,draggable,spellcheck"),Mn=m("events,caret,typing,plaintext-only"),Dn=function(t,e){return Bn(e)||"false"===e?"false":"contenteditable"===t&&Mn(e)?e:"true"},$n=m("allowfullscreen,async,autofocus,autoplay,checked,compact,controls,declare,default,defaultchecked,defaultmuted,defaultselected,defer,disabled,enabled,formnovalidate,hidden,indeterminate,inert,ismap,itemscope,loop,multiple,muted,nohref,noresize,noshade,novalidate,nowrap,open,pauseonexit,readonly,required,reversed,scoped,seamless,selected,sortable,translate,truespeed,typemustmatch,visible"),Fn="http://www.w3.org/1999/xlink",Un=function(t){return":"===t.charAt(5)&&"xlink"===t.slice(0,5)},Gn=function(t){return Un(t)?t.slice(6,t.length):""},Bn=function(t){return null==t||!1===t};function Vn(t){for(var e=t.data,n=t,r=t;i(r.componentInstance);)(r=r.componentInstance._vnode)&&r.data&&(e=Xn(r.data,e));for(;i(n=n.parent);)n&&n.data&&(e=Xn(e,n.data));return function(t,e){if(i(t)||i(e))return zn(t,qn(e));return""}(e.staticClass,e.class)}function Xn(t,e){return{staticClass:zn(t.staticClass,e.staticClass),class:i(t.class)?[t.class,e.class]:e.class}}function zn(t,e){return t?e?t+" "+e:t:e||""}function qn(t){return Array.isArray(t)?function(t){for(var e,n="",r=0,o=t.length;r<o;r++)i(e=qn(t[r]))&&""!==e&&(n&&(n+=" "),n+=e);return n}(t):u(t)?function(t){var e="";for(var n in t)t[n]&&(e&&(e+=" "),e+=n);return e}(t):"string"==typeof t?t:""}var Hn={svg:"http://www.w3.org/2000/svg",math:"http://www.w3.org/1998/Math/MathML"},Wn=m("html,body,base,head,link,meta,style,title,address,article,aside,footer,header,h1,h2,h3,h4,h5,h6,hgroup,nav,section,div,dd,dl,dt,figcaption,figure,picture,hr,img,li,main,ol,p,pre,ul,a,b,abbr,bdi,bdo,br,cite,code,data,dfn,em,i,kbd,mark,q,rp,rt,rtc,ruby,s,samp,small,span,strong,sub,sup,time,u,var,wbr,area,audio,map,track,video,embed,object,param,source,canvas,script,noscript,del,ins,caption,col,colgroup,table,thead,tbody,td,th,tr,button,datalist,fieldset,form,input,label,legend,meter,optgroup,option,output,progress,select,textarea,details,dialog,menu,menuitem,summary,content,element,shadow,template,blockquote,iframe,tfoot"),Yn=m("svg,animate,circle,clippath,cursor,defs,desc,ellipse,filter,font-face,foreignObject,g,glyph,image,line,marker,mask,missing-glyph,path,pattern,polygon,polyline,rect,switch,symbol,text,textpath,tspan,use,view",!0),Kn=function(t){return Wn(t)||Yn(t)};var Jn=Object.create(null);var Zn=m("text,number,password,search,email,tel,url");var Qn=Object.freeze({createElement:function(t,e){var n=document.createElement(t);return"select"!==t?n:(e.data&&e.data.attrs&&void 0!==e.data.attrs.multiple&&n.setAttribute("multiple","multiple"),n)},createElementNS:function(t,e){return document.createElementNS(Hn[t],e)},createTextNode:function(t){return document.createTextNode(t)},createComment:function(t){return document.createComment(t)},insertBefore:function(t,e,n){t.insertBefore(e,n)},removeChild:function(t,e){t.removeChild(e)},appendChild:function(t,e){t.appendChild(e)},parentNode:function(t){return t.parentNode},nextSibling:function(t){return t.nextSibling},tagName:function(t){return t.tagName},setTextContent:function(t,e){t.textContent=e},setStyleScope:function(t,e){t.setAttribute(e,"")}}),tr={create:function(t,e){er(e)},update:function(t,e){t.data.ref!==e.data.ref&&(er(t,!0),er(e))},destroy:function(t){er(t,!0)}};function er(t,e){var n=t.data.ref;if(i(n)){var r=t.context,o=t.componentInstance||t.elm,a=r.$refs;e?Array.isArray(a[n])?g(a[n],o):a[n]===o&&(a[n]=void 0):t.data.refInFor?Array.isArray(a[n])?a[n].indexOf(o)<0&&a[n].push(o):a[n]=[o]:a[n]=o}}var nr=new ht("",{},[]),rr=["create","activate","update","remove","destroy"];function or(t,e){return t.key===e.key&&(t.tag===e.tag&&t.isComment===e.isComment&&i(t.data)===i(e.data)&&function(t,e){if("input"!==t.tag)return!0;var n,r=i(n=t.data)&&i(n=n.attrs)&&n.type,o=i(n=e.data)&&i(n=n.attrs)&&n.type;return r===o||Zn(r)&&Zn(o)}(t,e)||a(t.isAsyncPlaceholder)&&t.asyncFactory===e.asyncFactory&&o(e.asyncFactory.error))}function ir(t,e,n){var r,o,a={};for(r=e;r<=n;++r)i(o=t[r].key)&&(a[o]=r);return a}var ar={create:sr,update:sr,destroy:function(t){sr(t,nr)}};function sr(t,e){(t.data.directives||e.data.directives)&&function(t,e){var n,r,o,i=t===nr,a=e===nr,s=cr(t.data.directives,t.context),u=cr(e.data.directives,e.context),c=[],f=[];for(n in u)r=s[n],o=u[n],r?(o.oldValue=r.value,o.oldArg=r.arg,lr(o,"update",e,t),o.def&&o.def.componentUpdated&&f.push(o)):(lr(o,"bind",e,t),o.def&&o.def.inserted&&c.push(o));if(c.length){var l=function(){for(var n=0;n<c.length;n++)lr(c[n],"inserted",e,t)};i?se(e,"insert",l):l()}f.length&&se(e,"postpatch",(function(){for(var n=0;n<f.length;n++)lr(f[n],"componentUpdated",e,t)}));if(!i)for(n in s)u[n]||lr(s[n],"unbind",t,t,a)}(t,e)}var ur=Object.create(null);function cr(t,e){var n,r,o=Object.create(null);if(!t)return o;for(n=0;n<t.length;n++)(r=t[n]).modifiers||(r.modifiers=ur),o[fr(r)]=r,r.def=Dt(e.$options,"directives",r.name);return o}function fr(t){return t.rawName||t.name+"."+Object.keys(t.modifiers||{}).join(".")}function lr(t,e,n,r,o){var i=t.def&&t.def[e];if(i)try{i(n.elm,t,n,r,o)}catch(r){Bt(r,n.context,"directive "+t.name+" "+e+" hook")}}var pr=[tr,ar];function dr(t,e){var n=e.componentOptions;if(!(i(n)&&!1===n.Ctor.options.inheritAttrs||o(t.data.attrs)&&o(e.data.attrs))){var r,a,s=e.elm,u=t.data.attrs||{},c=e.data.attrs||{};for(r in i(c.__ob__)&&(c=e.data.attrs=T({},c)),c)a=c[r],u[r]!==a&&vr(s,r,a);for(r in(K||Z)&&c.value!==u.value&&vr(s,"value",c.value),u)o(c[r])&&(Un(r)?s.removeAttributeNS(Fn,Gn(r)):kn(r)||s.removeAttribute(r))}}function vr(t,e,n){t.tagName.indexOf("-")>-1?hr(t,e,n):$n(e)?Bn(n)?t.removeAttribute(e):(n="allowfullscreen"===e&&"EMBED"===t.tagName?"true":e,t.setAttribute(e,n)):kn(e)?t.setAttribute(e,Dn(e,n)):Un(e)?Bn(n)?t.removeAttributeNS(Fn,Gn(e)):t.setAttributeNS(Fn,e,n):hr(t,e,n)}function hr(t,e,n){if(Bn(n))t.removeAttribute(e);else{if(K&&!J&&"TEXTAREA"===t.tagName&&"placeholder"===e&&""!==n&&!t.__ieph){var r=function(e){e.stopImmediatePropagation(),t.removeEventListener("input",r)};t.addEventListener("input",r),t.__ieph=!0}t.setAttribute(e,n)}}var mr={create:dr,update:dr};function yr(t,e){var n=e.elm,r=e.data,a=t.data;if(!(o(r.staticClass)&&o(r.class)&&(o(a)||o(a.staticClass)&&o(a.class)))){var s=Vn(e),u=n._transitionClasses;i(u)&&(s=zn(s,qn(u))),s!==n._prevClass&&(n.setAttribute("class",s),n._prevClass=s)}}var gr,Er={create:yr,update:yr},br="__r",Or="__c";function xr(t,e,n){var r=gr;return function o(){var i=e.apply(null,arguments);null!==i&&Ir(t,o,n,r)}}var wr=Ht&&!(tt&&Number(tt[1])<=53);function _r(t,e,n,r){if(wr){var o=cn,i=e;e=i._wrapper=function(t){if(t.target===t.currentTarget||t.timeStamp>=o||t.timeStamp<=0||t.target.ownerDocument!==document)return i.apply(this,arguments)}}gr.addEventListener(t,e,nt?{capture:n,passive:r}:n)}function Ir(t,e,n,r){(r||gr).removeEventListener(t,e._wrapper||e,n)}function Sr(t,e){if(!o(t.data.on)||!o(e.data.on)){var n=e.data.on||{},r=t.data.on||{};gr=e.elm,function(t){if(i(t[br])){var e=K?"change":"input";t[e]=[].concat(t[br],t[e]||[]),delete t[br]}i(t[Or])&&(t.change=[].concat(t[Or],t.change||[]),delete t[Or])}(n),ae(n,r,_r,Ir,xr,e.context),gr=void 0}}var Ar,Rr={create:Sr,update:Sr};function Tr(t,e){if(!o(t.data.domProps)||!o(e.data.domProps)){var n,r,a=e.elm,s=t.data.domProps||{},u=e.data.domProps||{};for(n in i(u.__ob__)&&(u=e.data.domProps=T({},u)),s)n in u||(a[n]="");for(n in u){if(r=u[n],"textContent"===n||"innerHTML"===n){if(e.children&&(e.children.length=0),r===s[n])continue;1===a.childNodes.length&&a.removeChild(a.childNodes[0])}if("value"===n&&"PROGRESS"!==a.tagName){a._value=r;var c=o(r)?"":String(r);Lr(a,c)&&(a.value=c)}else if("innerHTML"===n&&Yn(a.tagName)&&o(a.innerHTML)){(Ar=Ar||document.createElement("div")).innerHTML="<svg>"+r+"</svg>";for(var f=Ar.firstChild;a.firstChild;)a.removeChild(a.firstChild);for(;f.firstChild;)a.appendChild(f.firstChild)}else if(r!==s[n])try{a[n]=r}catch(t){}}}}function Lr(t,e){return!t.composing&&("OPTION"===t.tagName||function(t,e){var n=!0;try{n=document.activeElement!==t}catch(t){}return n&&t.value!==e}(t,e)||function(t,e){var n=t.value,r=t._vModifiers;if(i(r)){if(r.number)return h(n)!==h(e);if(r.trim)return n.trim()!==e.trim()}return n!==e}(t,e))}var Cr={create:Tr,update:Tr},Nr=O((function(t){var e={},n=/:(.+)/;return t.split(/;(?![^(]*\))/g).forEach((function(t){if(t){var r=t.split(n);r.length>1&&(e[r[0].trim()]=r[1].trim())}})),e}));function jr(t){var e=Pr(t.style);return t.staticStyle?T(t.staticStyle,e):e}function Pr(t){return Array.isArray(t)?L(t):"string"==typeof t?Nr(t):t}var kr,Mr=/^--/,Dr=/\s*!important$/,$r=function(t,e,n){if(Mr.test(e))t.style.setProperty(e,n);else if(Dr.test(n))t.style.setProperty(S(e),n.replace(Dr,""),"important");else{var r=Ur(e);if(Array.isArray(n))for(var o=0,i=n.length;o<i;o++)t.style[r]=n[o];else t.style[r]=n}},Fr=["Webkit","Moz","ms"],Ur=O((function(t){if(kr=kr||document.createElement("div").style,"filter"!==(t=w(t))&&t in kr)return t;for(var e=t.charAt(0).toUpperCase()+t.slice(1),n=0;n<Fr.length;n++){var r=Fr[n]+e;if(r in kr)return r}}));function Gr(t,e){var n=e.data,r=t.data;if(!(o(n.staticStyle)&&o(n.style)&&o(r.staticStyle)&&o(r.style))){var a,s,u=e.elm,c=r.staticStyle,f=r.normalizedStyle||r.style||{},l=c||f,p=Pr(e.data.style)||{};e.data.normalizedStyle=i(p.__ob__)?T({},p):p;var d=function(t,e){var n,r={};if(e)for(var o=t;o.componentInstance;)(o=o.componentInstance._vnode)&&o.data&&(n=jr(o.data))&&T(r,n);(n=jr(t.data))&&T(r,n);for(var i=t;i=i.parent;)i.data&&(n=jr(i.data))&&T(r,n);return r}(e,!0);for(s in l)o(d[s])&&$r(u,s,"");for(s in d)(a=d[s])!==l[s]&&$r(u,s,null==a?"":a)}}var Br={create:Gr,update:Gr},Vr=/\s+/;function Xr(t,e){if(e&&(e=e.trim()))if(t.classList)e.indexOf(" ")>-1?e.split(Vr).forEach((function(e){return t.classList.add(e)})):t.classList.add(e);else{var n=" "+(t.getAttribute("class")||"")+" ";n.indexOf(" "+e+" ")<0&&t.setAttribute("class",(n+e).trim())}}function zr(t,e){if(e&&(e=e.trim()))if(t.classList)e.indexOf(" ")>-1?e.split(Vr).forEach((function(e){return t.classList.remove(e)})):t.classList.remove(e),t.classList.length||t.removeAttribute("class");else{for(var n=" "+(t.getAttribute("class")||"")+" ",r=" "+e+" ";n.indexOf(r)>=0;)n=n.replace(r," ");(n=n.trim())?t.setAttribute("class",n):t.removeAttribute("class")}}function qr(t){if(t){if("object"==typeof t){var e={};return!1!==t.css&&T(e,Hr(t.name||"v")),T(e,t),e}return"string"==typeof t?Hr(t):void 0}}var Hr=O((function(t){return{enterClass:t+"-enter",enterToClass:t+"-enter-to",enterActiveClass:t+"-enter-active",leaveClass:t+"-leave",leaveToClass:t+"-leave-to",leaveActiveClass:t+"-leave-active"}})),Wr=q&&!J,Yr="transition",Kr="animation",Jr="transition",Zr="transitionend",Qr="animation",to="animationend";Wr&&(void 0===window.ontransitionend&&void 0!==window.onwebkittransitionend&&(Jr="WebkitTransition",Zr="webkitTransitionEnd"),void 0===window.onanimationend&&void 0!==window.onwebkitanimationend&&(Qr="WebkitAnimation",to="webkitAnimationEnd"));var eo=q?window.requestAnimationFrame?window.requestAnimationFrame.bind(window):setTimeout:function(t){return t()};function no(t){eo((function(){eo(t)}))}function ro(t,e){var n=t._transitionClasses||(t._transitionClasses=[]);n.indexOf(e)<0&&(n.push(e),Xr(t,e))}function oo(t,e){t._transitionClasses&&g(t._transitionClasses,e),zr(t,e)}function io(t,e,n){var r=so(t,e),o=r.type,i=r.timeout,a=r.propCount;if(!o)return n();var s=o===Yr?Zr:to,u=0,c=function(){t.removeEventListener(s,f),n()},f=function(e){e.target===t&&++u>=a&&c()};setTimeout((function(){u<a&&c()}),i+1),t.addEventListener(s,f)}var ao=/\b(transform|all)(,|$)/;function so(t,e){var n,r=window.getComputedStyle(t),o=(r[Jr+"Delay"]||"").split(", "),i=(r[Jr+"Duration"]||"").split(", "),a=uo(o,i),s=(r[Qr+"Delay"]||"").split(", "),u=(r[Qr+"Duration"]||"").split(", "),c=uo(s,u),f=0,l=0;return e===Yr?a>0&&(n=Yr,f=a,l=i.length):e===Kr?c>0&&(n=Kr,f=c,l=u.length):l=(n=(f=Math.max(a,c))>0?a>c?Yr:Kr:null)?n===Yr?i.length:u.length:0,{type:n,timeout:f,propCount:l,hasTransform:n===Yr&&ao.test(r[Jr+"Property"])}}function uo(t,e){for(;t.length<e.length;)t=t.concat(t);return Math.max.apply(null,e.map((function(e,n){return co(e)+co(t[n])})))}function co(t){return 1e3*Number(t.slice(0,-1).replace(",","."))}function fo(t,e){var n=t.elm;i(n._leaveCb)&&(n._leaveCb.cancelled=!0,n._leaveCb());var r=qr(t.data.transition);if(!o(r)&&!i(n._enterCb)&&1===n.nodeType){for(var a=r.css,s=r.type,c=r.enterClass,f=r.enterToClass,l=r.enterActiveClass,p=r.appearClass,d=r.appearToClass,v=r.appearActiveClass,m=r.beforeEnter,y=r.enter,g=r.afterEnter,E=r.enterCancelled,b=r.beforeAppear,O=r.appear,x=r.afterAppear,w=r.appearCancelled,_=r.duration,I=Je,S=Je.$vnode;S&&S.parent;)I=S.context,S=S.parent;var A=!I._isMounted||!t.isRootInsert;if(!A||O||""===O){var R=A&&p?p:c,T=A&&v?v:l,L=A&&d?d:f,C=A&&b||m,N=A&&"function"==typeof O?O:y,j=A&&x||g,P=A&&w||E,k=h(u(_)?_.enter:_);0;var D=!1!==a&&!J,$=vo(N),F=n._enterCb=M((function(){D&&(oo(n,L),oo(n,T)),F.cancelled?(D&&oo(n,R),P&&P(n)):j&&j(n),n._enterCb=null}));t.data.show||se(t,"insert",(function(){var e=n.parentNode,r=e&&e._pending&&e._pending[t.key];r&&r.tag===t.tag&&r.elm._leaveCb&&r.elm._leaveCb(),N&&N(n,F)})),C&&C(n),D&&(ro(n,R),ro(n,T),no((function(){oo(n,R),F.cancelled||(ro(n,L),$||(po(k)?setTimeout(F,k):io(n,s,F)))}))),t.data.show&&(e&&e(),N&&N(n,F)),D||$||F()}}}function lo(t,e){var n=t.elm;i(n._enterCb)&&(n._enterCb.cancelled=!0,n._enterCb());var r=qr(t.data.transition);if(o(r)||1!==n.nodeType)return e();if(!i(n._leaveCb)){var a=r.css,s=r.type,c=r.leaveClass,f=r.leaveToClass,l=r.leaveActiveClass,p=r.beforeLeave,d=r.leave,v=r.afterLeave,m=r.leaveCancelled,y=r.delayLeave,g=r.duration,E=!1!==a&&!J,b=vo(d),O=h(u(g)?g.leave:g);0;var x=n._leaveCb=M((function(){n.parentNode&&n.parentNode._pending&&(n.parentNode._pending[t.key]=null),E&&(oo(n,f),oo(n,l)),x.cancelled?(E&&oo(n,c),m&&m(n)):(e(),v&&v(n)),n._leaveCb=null}));y?y(w):w()}function w(){x.cancelled||(!t.data.show&&n.parentNode&&((n.parentNode._pending||(n.parentNode._pending={}))[t.key]=t),p&&p(n),E&&(ro(n,c),ro(n,l),no((function(){oo(n,c),x.cancelled||(ro(n,f),b||(po(O)?setTimeout(x,O):io(n,s,x)))}))),d&&d(n,x),E||b||x())}}function po(t){return"number"==typeof t&&!isNaN(t)}function vo(t){if(o(t))return!1;var e=t.fns;return i(e)?vo(Array.isArray(e)?e[0]:e):(t._length||t.length)>1}function ho(t,e){!0!==e.data.show&&fo(e)}var mo=function(t){var e,n,r={},u=t.modules,c=t.nodeOps;for(e=0;e<rr.length;++e)for(r[rr[e]]=[],n=0;n<u.length;++n)i(u[n][rr[e]])&&r[rr[e]].push(u[n][rr[e]]);function f(t){var e=c.parentNode(t);i(e)&&c.removeChild(e,t)}function l(t,e,n,o,s,u,f){if(i(t.elm)&&i(u)&&(t=u[f]=Et(t)),t.isRootInsert=!s,!function(t,e,n,o){var s=t.data;if(i(s)){var u=i(t.componentInstance)&&s.keepAlive;if(i(s=s.hook)&&i(s=s.init)&&s(t,!1),i(t.componentInstance))return p(t,e),d(n,t.elm,o),a(u)&&function(t,e,n,o){var a,s=t;for(;s.componentInstance;)if(s=s.componentInstance._vnode,i(a=s.data)&&i(a=a.transition)){for(a=0;a<r.activate.length;++a)r.activate[a](nr,s);e.push(s);break}d(n,t.elm,o)}(t,e,n,o),!0}}(t,e,n,o)){var l=t.data,h=t.children,m=t.tag;i(m)?(t.elm=t.ns?c.createElementNS(t.ns,m):c.createElement(m,t),g(t),v(t,h,e),i(l)&&y(t,e),d(n,t.elm,o)):a(t.isComment)?(t.elm=c.createComment(t.text),d(n,t.elm,o)):(t.elm=c.createTextNode(t.text),d(n,t.elm,o))}}function p(t,e){i(t.data.pendingInsert)&&(e.push.apply(e,t.data.pendingInsert),t.data.pendingInsert=null),t.elm=t.componentInstance.$el,h(t)?(y(t,e),g(t)):(er(t),e.push(t))}function d(t,e,n){i(t)&&(i(n)?c.parentNode(n)===t&&c.insertBefore(t,e,n):c.appendChild(t,e))}function v(t,e,n){if(Array.isArray(e)){0;for(var r=0;r<e.length;++r)l(e[r],n,t.elm,null,!0,e,r)}else s(t.text)&&c.appendChild(t.elm,c.createTextNode(String(t.text)))}function h(t){for(;t.componentInstance;)t=t.componentInstance._vnode;return i(t.tag)}function y(t,n){for(var o=0;o<r.create.length;++o)r.create[o](nr,t);i(e=t.data.hook)&&(i(e.create)&&e.create(nr,t),i(e.insert)&&n.push(t))}function g(t){var e;if(i(e=t.fnScopeId))c.setStyleScope(t.elm,e);else for(var n=t;n;)i(e=n.context)&&i(e=e.$options._scopeId)&&c.setStyleScope(t.elm,e),n=n.parent;i(e=Je)&&e!==t.context&&e!==t.fnContext&&i(e=e.$options._scopeId)&&c.setStyleScope(t.elm,e)}function E(t,e,n,r,o,i){for(;r<=o;++r)l(n[r],i,t,e,!1,n,r)}function b(t){var e,n,o=t.data;if(i(o))for(i(e=o.hook)&&i(e=e.destroy)&&e(t),e=0;e<r.destroy.length;++e)r.destroy[e](t);if(i(e=t.children))for(n=0;n<t.children.length;++n)b(t.children[n])}function O(t,e,n){for(;e<=n;++e){var r=t[e];i(r)&&(i(r.tag)?(x(r),b(r)):f(r.elm))}}function x(t,e){if(i(e)||i(t.data)){var n,o=r.remove.length+1;for(i(e)?e.listeners+=o:e=function(t,e){function n(){0==--n.listeners&&f(t)}return n.listeners=e,n}(t.elm,o),i(n=t.componentInstance)&&i(n=n._vnode)&&i(n.data)&&x(n,e),n=0;n<r.remove.length;++n)r.remove[n](t,e);i(n=t.data.hook)&&i(n=n.remove)?n(t,e):e()}else f(t.elm)}function w(t,e,n,r){for(var o=n;o<r;o++){var a=e[o];if(i(a)&&or(t,a))return o}}function _(t,e,n,s,u,f){if(t!==e){i(e.elm)&&i(s)&&(e=s[u]=Et(e));var p=e.elm=t.elm;if(a(t.isAsyncPlaceholder))i(e.asyncFactory.resolved)?A(t.elm,e,n):e.isAsyncPlaceholder=!0;else if(a(e.isStatic)&&a(t.isStatic)&&e.key===t.key&&(a(e.isCloned)||a(e.isOnce)))e.componentInstance=t.componentInstance;else{var d,v=e.data;i(v)&&i(d=v.hook)&&i(d=d.prepatch)&&d(t,e);var m=t.children,y=e.children;if(i(v)&&h(e)){for(d=0;d<r.update.length;++d)r.update[d](t,e);i(d=v.hook)&&i(d=d.update)&&d(t,e)}o(e.text)?i(m)&&i(y)?m!==y&&function(t,e,n,r,a){var s,u,f,p=0,d=0,v=e.length-1,h=e[0],m=e[v],y=n.length-1,g=n[0],b=n[y],x=!a;for(0;p<=v&&d<=y;)o(h)?h=e[++p]:o(m)?m=e[--v]:or(h,g)?(_(h,g,r,n,d),h=e[++p],g=n[++d]):or(m,b)?(_(m,b,r,n,y),m=e[--v],b=n[--y]):or(h,b)?(_(h,b,r,n,y),x&&c.insertBefore(t,h.elm,c.nextSibling(m.elm)),h=e[++p],b=n[--y]):or(m,g)?(_(m,g,r,n,d),x&&c.insertBefore(t,m.elm,h.elm),m=e[--v],g=n[++d]):(o(s)&&(s=ir(e,p,v)),o(u=i(g.key)?s[g.key]:w(g,e,p,v))?l(g,r,t,h.elm,!1,n,d):or(f=e[u],g)?(_(f,g,r,n,d),e[u]=void 0,x&&c.insertBefore(t,f.elm,h.elm)):l(g,r,t,h.elm,!1,n,d),g=n[++d]);p>v?E(t,o(n[y+1])?null:n[y+1].elm,n,d,y,r):d>y&&O(e,p,v)}(p,m,y,n,f):i(y)?(i(t.text)&&c.setTextContent(p,""),E(p,null,y,0,y.length-1,n)):i(m)?O(m,0,m.length-1):i(t.text)&&c.setTextContent(p,""):t.text!==e.text&&c.setTextContent(p,e.text),i(v)&&i(d=v.hook)&&i(d=d.postpatch)&&d(t,e)}}}function I(t,e,n){if(a(n)&&i(t.parent))t.parent.data.pendingInsert=e;else for(var r=0;r<e.length;++r)e[r].data.hook.insert(e[r])}var S=m("attrs,class,staticClass,staticStyle,key");function A(t,e,n,r){var o,s=e.tag,u=e.data,c=e.children;if(r=r||u&&u.pre,e.elm=t,a(e.isComment)&&i(e.asyncFactory))return e.isAsyncPlaceholder=!0,!0;if(i(u)&&(i(o=u.hook)&&i(o=o.init)&&o(e,!0),i(o=e.componentInstance)))return p(e,n),!0;if(i(s)){if(i(c))if(t.hasChildNodes())if(i(o=u)&&i(o=o.domProps)&&i(o=o.innerHTML)){if(o!==t.innerHTML)return!1}else{for(var f=!0,l=t.firstChild,d=0;d<c.length;d++){if(!l||!A(l,c[d],n,r)){f=!1;break}l=l.nextSibling}if(!f||l)return!1}else v(e,c,n);if(i(u)){var h=!1;for(var m in u)if(!S(m)){h=!0,y(e,n);break}!h&&u.class&&re(u.class)}}else t.data!==e.text&&(t.data=e.text);return!0}return function(t,e,n,s){if(!o(e)){var u,f=!1,p=[];if(o(t))f=!0,l(e,p);else{var d=i(t.nodeType);if(!d&&or(t,e))_(t,e,p,null,null,s);else{if(d){if(1===t.nodeType&&t.hasAttribute(D)&&(t.removeAttribute(D),n=!0),a(n)&&A(t,e,p))return I(e,p,!0),t;u=t,t=new ht(c.tagName(u).toLowerCase(),{},[],void 0,u)}var v=t.elm,m=c.parentNode(v);if(l(e,p,v._leaveCb?null:m,c.nextSibling(v)),i(e.parent))for(var y=e.parent,g=h(e);y;){for(var E=0;E<r.destroy.length;++E)r.destroy[E](y);if(y.elm=e.elm,g){for(var x=0;x<r.create.length;++x)r.create[x](nr,y);var w=y.data.hook.insert;if(w.merged)for(var S=1;S<w.fns.length;S++)w.fns[S]()}else er(y);y=y.parent}i(m)?O([t],0,0):i(t.tag)&&b(t)}}return I(e,p,f),e.elm}i(t)&&b(t)}}({nodeOps:Qn,modules:[mr,Er,Rr,Cr,Br,q?{create:ho,activate:ho,remove:function(t,e){!0!==t.data.show?lo(t,e):e()}}:{}].concat(pr)});J&&document.addEventListener("selectionchange",(function(){var t=document.activeElement;t&&t.vmodel&&_o(t,"input")}));var yo={inserted:function(t,e,n,r){"select"===n.tag?(r.elm&&!r.elm._vOptions?se(n,"postpatch",(function(){yo.componentUpdated(t,e,n)})):go(t,e,n.context),t._vOptions=[].map.call(t.options,Oo)):("textarea"===n.tag||Zn(t.type))&&(t._vModifiers=e.modifiers,e.modifiers.lazy||(t.addEventListener("compositionstart",xo),t.addEventListener("compositionend",wo),t.addEventListener("change",wo),J&&(t.vmodel=!0)))},componentUpdated:function(t,e,n){if("select"===n.tag){go(t,e,n.context);var r=t._vOptions,o=t._vOptions=[].map.call(t.options,Oo);if(o.some((function(t,e){return!P(t,r[e])})))(t.multiple?e.value.some((function(t){return bo(t,o)})):e.value!==e.oldValue&&bo(e.value,o))&&_o(t,"change")}}};function go(t,e,n){Eo(t,e,n),(K||Z)&&setTimeout((function(){Eo(t,e,n)}),0)}function Eo(t,e,n){var r=e.value,o=t.multiple;if(!o||Array.isArray(r)){for(var i,a,s=0,u=t.options.length;s<u;s++)if(a=t.options[s],o)i=k(r,Oo(a))>-1,a.selected!==i&&(a.selected=i);else if(P(Oo(a),r))return void(t.selectedIndex!==s&&(t.selectedIndex=s));o||(t.selectedIndex=-1)}}function bo(t,e){return e.every((function(e){return!P(e,t)}))}function Oo(t){return"_value"in t?t._value:t.value}function xo(t){t.target.composing=!0}function wo(t){t.target.composing&&(t.target.composing=!1,_o(t.target,"input"))}function _o(t,e){var n=document.createEvent("HTMLEvents");n.initEvent(e,!0,!0),t.dispatchEvent(n)}function Io(t){return!t.componentInstance||t.data&&t.data.transition?t:Io(t.componentInstance._vnode)}var So={model:yo,show:{bind:function(t,e,n){var r=e.value,o=(n=Io(n)).data&&n.data.transition,i=t.__vOriginalDisplay="none"===t.style.display?"":t.style.display;r&&o?(n.data.show=!0,fo(n,(function(){t.style.display=i}))):t.style.display=r?i:"none"},update:function(t,e,n){var r=e.value;!r!=!e.oldValue&&((n=Io(n)).data&&n.data.transition?(n.data.show=!0,r?fo(n,(function(){t.style.display=t.__vOriginalDisplay})):lo(n,(function(){t.style.display="none"}))):t.style.display=r?t.__vOriginalDisplay:"none")},unbind:function(t,e,n,r,o){o||(t.style.display=t.__vOriginalDisplay)}}},Ao={name:String,appear:Boolean,css:Boolean,mode:String,type:String,enterClass:String,leaveClass:String,enterToClass:String,leaveToClass:String,enterActiveClass:String,leaveActiveClass:String,appearClass:String,appearActiveClass:String,appearToClass:String,duration:[Number,String,Object]};function Ro(t){var e=t&&t.componentOptions;return e&&e.Ctor.options.abstract?Ro(qe(e.children)):t}function To(t){var e={},n=t.$options;for(var r in n.propsData)e[r]=t[r];var o=n._parentListeners;for(var i in o)e[w(i)]=o[i];return e}function Lo(t,e){if(/\d-keep-alive$/.test(e.tag))return t("keep-alive",{props:e.componentOptions.propsData})}var Co=function(t){return t.tag||ze(t)},No=function(t){return"show"===t.name},jo={name:"transition",props:Ao,abstract:!0,render:function(t){var e=this,n=this.$slots.default;if(n&&(n=n.filter(Co)).length){0;var r=this.mode;0;var o=n[0];if(function(t){for(;t=t.parent;)if(t.data.transition)return!0}(this.$vnode))return o;var i=Ro(o);if(!i)return o;if(this._leaving)return Lo(t,o);var a="__transition-"+this._uid+"-";i.key=null==i.key?i.isComment?a+"comment":a+i.tag:s(i.key)?0===String(i.key).indexOf(a)?i.key:a+i.key:i.key;var u=(i.data||(i.data={})).transition=To(this),c=this._vnode,f=Ro(c);if(i.data.directives&&i.data.directives.some(No)&&(i.data.show=!0),f&&f.data&&!function(t,e){return e.key===t.key&&e.tag===t.tag}(i,f)&&!ze(f)&&(!f.componentInstance||!f.componentInstance._vnode.isComment)){var l=f.data.transition=T({},u);if("out-in"===r)return this._leaving=!0,se(l,"afterLeave",(function(){e._leaving=!1,e.$forceUpdate()})),Lo(t,o);if("in-out"===r){if(ze(i))return c;var p,d=function(){p()};se(u,"afterEnter",d),se(u,"enterCancelled",d),se(l,"delayLeave",(function(t){p=t}))}}return o}}},Po=T({tag:String,moveClass:String},Ao);function ko(t){t.elm._moveCb&&t.elm._moveCb(),t.elm._enterCb&&t.elm._enterCb()}function Mo(t){t.data.newPos=t.elm.getBoundingClientRect()}function Do(t){var e=t.data.pos,n=t.data.newPos,r=e.left-n.left,o=e.top-n.top;if(r||o){t.data.moved=!0;var i=t.elm.style;i.transform=i.WebkitTransform="translate("+r+"px,"+o+"px)",i.transitionDuration="0s"}}delete Po.mode;var $o={Transition:jo,TransitionGroup:{props:Po,beforeMount:function(){var t=this,e=this._update;this._update=function(n,r){var o=Ze(t);t.__patch__(t._vnode,t.kept,!1,!0),t._vnode=t.kept,o(),e.call(t,n,r)}},render:function(t){for(var e=this.tag||this.$vnode.data.tag||"span",n=Object.create(null),r=this.prevChildren=this.children,o=this.$slots.default||[],i=this.children=[],a=To(this),s=0;s<o.length;s++){var u=o[s];if(u.tag)if(null!=u.key&&0!==String(u.key).indexOf("__vlist"))i.push(u),n[u.key]=u,(u.data||(u.data={})).transition=a;else;}if(r){for(var c=[],f=[],l=0;l<r.length;l++){var p=r[l];p.data.transition=a,p.data.pos=p.elm.getBoundingClientRect(),n[p.key]?c.push(p):f.push(p)}this.kept=t(e,null,c),this.removed=f}return t(e,null,i)},updated:function(){var t=this.prevChildren,e=this.moveClass||(this.name||"v")+"-move";t.length&&this.hasMove(t[0].elm,e)&&(t.forEach(ko),t.forEach(Mo),t.forEach(Do),this._reflow=document.body.offsetHeight,t.forEach((function(t){if(t.data.moved){var n=t.elm,r=n.style;ro(n,e),r.transform=r.WebkitTransform=r.transitionDuration="",n.addEventListener(Zr,n._moveCb=function t(r){r&&r.target!==n||r&&!/transform$/.test(r.propertyName)||(n.removeEventListener(Zr,t),n._moveCb=null,oo(n,e))})}})))},methods:{hasMove:function(t,e){if(!Wr)return!1;if(this._hasMove)return this._hasMove;var n=t.cloneNode();t._transitionClasses&&t._transitionClasses.forEach((function(t){zr(n,t)})),Xr(n,e),n.style.display="none",this.$el.appendChild(n);var r=so(n);return this.$el.removeChild(n),this._hasMove=r.hasTransform}}}};In.config.mustUseProp=function(t,e,n){return"value"===n&&Pn(t)&&"button"!==e||"selected"===n&&"option"===t||"checked"===n&&"input"===t||"muted"===n&&"video"===t},In.config.isReservedTag=Kn,In.config.isReservedAttr=jn,In.config.getTagNamespace=function(t){return Yn(t)?"svg":"math"===t?"math":void 0},In.config.isUnknownElement=function(t){if(!q)return!0;if(Kn(t))return!1;if(t=t.toLowerCase(),null!=Jn[t])return Jn[t];var e=document.createElement(t);return t.indexOf("-")>-1?Jn[t]=e.constructor===window.HTMLUnknownElement||e.constructor===window.HTMLElement:Jn[t]=/HTMLUnknownElement/.test(e.toString())},T(In.options.directives,So),T(In.options.components,$o),In.prototype.__patch__=q?mo:C,In.prototype.$mount=function(t,e){return function(t,e,n){var r;return t.$el=e,t.$options.render||(t.$options.render=yt),en(t,"beforeMount"),r=function(){t._update(t._render(),n)},new vn(t,r,C,{before:function(){t._isMounted&&!t._isDestroyed&&en(t,"beforeUpdate")}},!0),n=!1,null==t.$vnode&&(t._isMounted=!0,en(t,"mounted")),t}(this,t=t&&q?function(t){if("string"==typeof t){var e=document.querySelector(t);return e||document.createElement("div")}return t}(t):void 0,e)},q&&setTimeout((function(){U.devtools&&it&&it.emit("init",In)}),0),e.a=In}).call(this,n(17),n(635).setImmediate)},,,,,,,function(t,e){var n={}.hasOwnProperty;t.exports=function(t,e){return n.call(t,e)}},,function(t,e,n){"use strict";var r=n(457),o=n(37),i=n(201),a=n(46),s=n(476),u=n(199),c=n(477),f=n(478),l=n(480),p=n(117),d=n(203),v=p("isConcatSpreadable"),h=d>=51||!o((function(){var t=[];return t[v]=!1,t.concat()[0]!==t})),m=l("concat"),y=function(t){if(!a(t))return!1;var e=t[v];return void 0!==e?!!e:i(t)};r({target:"Array",proto:!0,forced:!h||!m},{concat:function(t){var e,n,r,o,i,a=s(this),l=f(a,0),p=0;for(e=-1,r=arguments.length;e<r;e++)if(i=-1===e?a:arguments[e],y(i)){if(p+(o=u(i.length))>9007199254740991)throw TypeError("Maximum allowed index exceeded");for(n=0;n<o;n++,p++)n in i&&c(l,p,i[n])}else{if(p>=9007199254740991)throw TypeError("Maximum allowed index exceeded");c(l,p++,i)}return l.length=p,l}})},function(t,e,n){var r=n(19),o=n(188).f,i=n(90),a=n(461),s=n(116),u=n(466),c=n(475);t.exports=function(t,e){var n,f,l,p,d,v=t.target,h=t.global,m=t.stat;if(n=h?r:m?r[v]||s(v,{}):(r[v]||{}).prototype)for(f in e){if(p=e[f],l=t.noTargetGet?(d=o(n,f))&&d.value:n[f],!c(h?f:v+(m?".":"#")+f,t.forced)&&void 0!==l){if(typeof p==typeof l)continue;u(p,l)}(t.sham||l&&l.sham)&&i(p,"sham",!0),a(n,f,p,t)}}},function(t,e,n){"use strict";var r={}.propertyIsEnumerable,o=Object.getOwnPropertyDescriptor,i=o&&!r.call({1:2},1);e.f=i?function(t){var e=o(this,t);return!!e&&e.enumerable}:r},function(t,e,n){var r=n(37),o=n(189),i="".split;t.exports=r((function(){return!Object("z").propertyIsEnumerable(0)}))?function(t){return"String"==o(t)?i.call(t,""):Object(t)}:Object},function(t,e,n){var r=n(19),o=n(46),i=r.document,a=o(i)&&o(i.createElement);t.exports=function(t){return a?i.createElement(t):{}}},function(t,e,n){var r=n(19),o=n(90),i=n(47),a=n(116),s=n(193),u=n(462),c=u.get,f=u.enforce,l=String(String).split("String");(t.exports=function(t,e,n,s){var u=!!s&&!!s.unsafe,c=!!s&&!!s.enumerable,p=!!s&&!!s.noTargetGet;"function"==typeof n&&("string"!=typeof e||i(n,"name")||o(n,"name",e),f(n).source=l.join("string"==typeof e?e:"")),t!==r?(u?!p&&t[e]&&(c=!0):delete t[e],c?t[e]=n:o(t,e,n)):c?t[e]=n:a(e,n)})(Function.prototype,"toString",(function(){return"function"==typeof this&&c(this).source||s(this)}))},function(t,e,n){var r,o,i,a=n(463),s=n(19),u=n(46),c=n(90),f=n(47),l=n(464),p=n(197),d=s.WeakMap;if(a){var v=new d,h=v.get,m=v.has,y=v.set;r=function(t,e){return y.call(v,t,e),e},o=function(t){return h.call(v,t)||{}},i=function(t){return m.call(v,t)}}else{var g=l("state");p[g]=!0,r=function(t,e){return c(t,g,e),e},o=function(t){return f(t,g)?t[g]:{}},i=function(t){return f(t,g)}}t.exports={set:r,get:o,has:i,enforce:function(t){return i(t)?o(t):r(t,{})},getterFor:function(t){return function(e){var n;if(!u(e)||(n=o(e)).type!==t)throw TypeError("Incompatible receiver, "+t+" required");return n}}}},function(t,e,n){var r=n(19),o=n(193),i=r.WeakMap;t.exports="function"==typeof i&&/native code/.test(o(i))},function(t,e,n){var r=n(195),o=n(196),i=r("keys");t.exports=function(t){return i[t]||(i[t]=o(t))}},function(t,e){t.exports=!1},function(t,e,n){var r=n(47),o=n(467),i=n(188),a=n(115);t.exports=function(t,e){for(var n=o(e),s=a.f,u=i.f,c=0;c<n.length;c++){var f=n[c];r(t,f)||s(t,f,u(e,f))}}},function(t,e,n){var r=n(198),o=n(469),i=n(474),a=n(192);t.exports=r("Reflect","ownKeys")||function(t){var e=o.f(a(t)),n=i.f;return n?e.concat(n(t)):e}},function(t,e,n){var r=n(19);t.exports=r},function(t,e,n){var r=n(470),o=n(473).concat("length","prototype");e.f=Object.getOwnPropertyNames||function(t){return r(t,o)}},function(t,e,n){var r=n(47),o=n(113),i=n(471).indexOf,a=n(197);t.exports=function(t,e){var n,s=o(t),u=0,c=[];for(n in s)!r(a,n)&&r(s,n)&&c.push(n);for(;e.length>u;)r(s,n=e[u++])&&(~i(c,n)||c.push(n));return c}},function(t,e,n){var r=n(113),o=n(199),i=n(472),a=function(t){return function(e,n,a){var s,u=r(e),c=o(u.length),f=i(a,c);if(t&&n!=n){for(;c>f;)if((s=u[f++])!=s)return!0}else for(;c>f;f++)if((t||f in u)&&u[f]===n)return t||f||0;return!t&&-1}};t.exports={includes:a(!0),indexOf:a(!1)}},function(t,e,n){var r=n(200),o=Math.max,i=Math.min;t.exports=function(t,e){var n=r(t);return n<0?o(n+e,0):i(n,e)}},function(t,e){t.exports=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"]},function(t,e){e.f=Object.getOwnPropertySymbols},function(t,e,n){var r=n(37),o=/#|\.prototype\./,i=function(t,e){var n=s[a(t)];return n==c||n!=u&&("function"==typeof e?r(e):!!e)},a=i.normalize=function(t){return String(t).replace(o,".").toLowerCase()},s=i.data={},u=i.NATIVE="N",c=i.POLYFILL="P";t.exports=i},function(t,e,n){var r=n(190);t.exports=function(t){return Object(r(t))}},function(t,e,n){"use strict";var r=n(114),o=n(115),i=n(112);t.exports=function(t,e,n){var a=r(e);a in t?o.f(t,a,i(0,n)):t[a]=n}},function(t,e,n){var r=n(46),o=n(201),i=n(117)("species");t.exports=function(t,e){var n;return o(t)&&("function"!=typeof(n=t.constructor)||n!==Array&&!o(n.prototype)?r(n)&&null===(n=n[i])&&(n=void 0):n=void 0),new(void 0===n?Array:n)(0===e?0:e)}},function(t,e,n){var r=n(202);t.exports=r&&!Symbol.sham&&"symbol"==typeof Symbol.iterator},function(t,e,n){var r=n(37),o=n(117),i=n(203),a=o("species");t.exports=function(t){return i>=51||!r((function(){var e=[];return(e.constructor={})[a]=function(){return{foo:1}},1!==e[t](Boolean).foo}))}},function(t,e,n){var r=n(198);t.exports=r("navigator","userAgent")||""},,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,function(t,e,n){var r=n(68),o=n(541);r({target:"Object",stat:!0,forced:Object.assign!==o},{assign:o})},function(t,e,n){var r=n(10),o=n(358),i=r.WeakMap;t.exports="function"==typeof i&&/native code/.test(o(i))},function(t,e,n){var r=n(23),o=n(536),i=n(354),a=n(32);t.exports=function(t,e){for(var n=o(e),s=a.f,u=i.f,c=0;c<n.length;c++){var f=n[c];r(t,f)||s(t,f,u(e,f))}}},function(t,e,n){var r=n(100),o=n(538),i=n(362),a=n(42);t.exports=r("Reflect","ownKeys")||function(t){var e=o.f(a(t)),n=i.f;return n?e.concat(n(t)):e}},function(t,e,n){var r=n(10);t.exports=r},function(t,e,n){var r=n(361),o=n(160).concat("length","prototype");e.f=Object.getOwnPropertyNames||function(t){return r(t,o)}},function(t,e,n){var r=n(97),o=n(101),i=n(540),a=function(t){return function(e,n,a){var s,u=r(e),c=o(u.length),f=i(a,c);if(t&&n!=n){for(;c>f;)if((s=u[f++])!=s)return!0}else for(;c>f;f++)if((t||f in u)&&u[f]===n)return t||f||0;return!t&&-1}};t.exports={includes:a(!0),indexOf:a(!1)}},function(t,e,n){var r=n(159),o=Math.max,i=Math.min;t.exports=function(t,e){var n=r(t);return n<0?o(n+e,0):i(n,e)}},function(t,e,n){"use strict";var r=n(31),o=n(14),i=n(364),a=n(362),s=n(355),u=n(102),c=n(151),f=Object.assign,l=Object.defineProperty;t.exports=!f||o((function(){if(r&&1!==f({b:1},f(l({},"a",{enumerable:!0,get:function(){l(this,"b",{value:3,enumerable:!1})}}),{b:2})).b)return!0;var t={},e={},n=Symbol();return t[n]=7,"abcdefghijklmnopqrst".split("").forEach((function(t){e[t]=t})),7!=f({},t)[n]||"abcdefghijklmnopqrst"!=i(f({},e)).join("")}))?function(t,e){for(var n=u(t),o=arguments.length,f=1,l=a.f,p=s.f;o>f;)for(var d,v=c(arguments[f++]),h=l?i(v).concat(l(v)):i(v),m=h.length,y=0;m>y;)d=h[y++],r&&!p.call(v,d)||(n[d]=v[d]);return n}:f},function(t,e,n){t.exports=n(543)},function(t,e,n){"use strict";var r=n(15),o=n(365),i=n(544),a=n(371);function s(t){var e=new i(t),n=o(i.prototype.request,e);return r.extend(n,i.prototype,e),r.extend(n,e),n}var u=s(n(368));u.Axios=i,u.create=function(t){return s(a(u.defaults,t))},u.Cancel=n(372),u.CancelToken=n(558),u.isCancel=n(367),u.all=function(t){return Promise.all(t)},u.spread=n(559),t.exports=u,t.exports.default=u},function(t,e,n){"use strict";var r=n(15),o=n(366),i=n(545),a=n(546),s=n(371);function u(t){this.defaults=t,this.interceptors={request:new i,response:new i}}u.prototype.request=function(t){"string"==typeof t?(t=arguments[1]||{}).url=arguments[0]:t=t||{},(t=s(this.defaults,t)).method?t.method=t.method.toLowerCase():this.defaults.method?t.method=this.defaults.method.toLowerCase():t.method="get";var e=[a,void 0],n=Promise.resolve(t);for(this.interceptors.request.forEach((function(t){e.unshift(t.fulfilled,t.rejected)})),this.interceptors.response.forEach((function(t){e.push(t.fulfilled,t.rejected)}));e.length;)n=n.then(e.shift(),e.shift());return n},u.prototype.getUri=function(t){return t=s(this.defaults,t),o(t.url,t.params,t.paramsSerializer).replace(/^\?/,"")},r.forEach(["delete","get","head","options"],(function(t){u.prototype[t]=function(e,n){return this.request(r.merge(n||{},{method:t,url:e}))}})),r.forEach(["post","put","patch"],(function(t){u.prototype[t]=function(e,n,o){return this.request(r.merge(o||{},{method:t,url:e,data:n}))}})),t.exports=u},function(t,e,n){"use strict";var r=n(15);function o(){this.handlers=[]}o.prototype.use=function(t,e){return this.handlers.push({fulfilled:t,rejected:e}),this.handlers.length-1},o.prototype.eject=function(t){this.handlers[t]&&(this.handlers[t]=null)},o.prototype.forEach=function(t){r.forEach(this.handlers,(function(e){null!==e&&t(e)}))},t.exports=o},function(t,e,n){"use strict";var r=n(15),o=n(547),i=n(367),a=n(368);function s(t){t.cancelToken&&t.cancelToken.throwIfRequested()}t.exports=function(t){return s(t),t.headers=t.headers||{},t.data=o(t.data,t.headers,t.transformRequest),t.headers=r.merge(t.headers.common||{},t.headers[t.method]||{},t.headers),r.forEach(["delete","get","head","post","put","patch","common"],(function(e){delete t.headers[e]})),(t.adapter||a.adapter)(t).then((function(e){return s(t),e.data=o(e.data,e.headers,t.transformResponse),e}),(function(e){return i(e)||(s(t),e&&e.response&&(e.response.data=o(e.response.data,e.response.headers,t.transformResponse))),Promise.reject(e)}))}},function(t,e,n){"use strict";var r=n(15);t.exports=function(t,e,n){return r.forEach(n,(function(n){t=n(t,e)})),t}},function(t,e,n){"use strict";var r=n(15);t.exports=function(t,e){r.forEach(t,(function(n,r){r!==e&&r.toUpperCase()===e.toUpperCase()&&(t[e]=n,delete t[r])}))}},function(t,e,n){"use strict";var r=n(370);t.exports=function(t,e,n){var o=n.config.validateStatus;!o||o(n.status)?t(n):e(r("Request failed with status code "+n.status,n.config,null,n.request,n))}},function(t,e,n){"use strict";t.exports=function(t,e,n,r,o){return t.config=e,n&&(t.code=n),t.request=r,t.response=o,t.isAxiosError=!0,t.toJSON=function(){return{message:this.message,name:this.name,description:this.description,number:this.number,fileName:this.fileName,lineNumber:this.lineNumber,columnNumber:this.columnNumber,stack:this.stack,config:this.config,code:this.code}},t}},function(t,e,n){"use strict";var r=n(552),o=n(553);t.exports=function(t,e){return t&&!r(e)?o(t,e):e}},function(t,e,n){"use strict";t.exports=function(t){return/^([a-z][a-z\d\+\-\.]*:)?\/\//i.test(t)}},function(t,e,n){"use strict";t.exports=function(t,e){return e?t.replace(/\/+$/,"")+"/"+e.replace(/^\/+/,""):t}},function(t,e,n){"use strict";var r=n(15),o=["age","authorization","content-length","content-type","etag","expires","from","host","if-modified-since","if-unmodified-since","last-modified","location","max-forwards","proxy-authorization","referer","retry-after","user-agent"];t.exports=function(t){var e,n,i,a={};return t?(r.forEach(t.split("\n"),(function(t){if(i=t.indexOf(":"),e=r.trim(t.substr(0,i)).toLowerCase(),n=r.trim(t.substr(i+1)),e){if(a[e]&&o.indexOf(e)>=0)return;a[e]="set-cookie"===e?(a[e]?a[e]:[]).concat([n]):a[e]?a[e]+", "+n:n}})),a):a}},function(t,e,n){"use strict";var r=n(15),o=n(556);t.exports=r.isStandardBrowserEnv()?function(){var t,e=/(msie|trident)/i.test(navigator.userAgent),n=document.createElement("a");function i(t){var r=t;if(o(t))throw new Error("URL contains XSS injection attempt");return e&&(n.setAttribute("href",r),r=n.href),n.setAttribute("href",r),{href:n.href,protocol:n.protocol?n.protocol.replace(/:$/,""):"",host:n.host,search:n.search?n.search.replace(/^\?/,""):"",hash:n.hash?n.hash.replace(/^#/,""):"",hostname:n.hostname,port:n.port,pathname:"/"===n.pathname.charAt(0)?n.pathname:"/"+n.pathname}}return t=i(window.location.href),function(e){var n=r.isString(e)?i(e):e;return n.protocol===t.protocol&&n.host===t.host}}():function(){return!0}},function(t,e,n){"use strict";t.exports=function(t){return/(\b)(on\w+)=|javascript|(<\s*)(\/*)script/gi.test(t)}},function(t,e,n){"use strict";var r=n(15);t.exports=r.isStandardBrowserEnv()?{write:function(t,e,n,o,i,a){var s=[];s.push(t+"="+encodeURIComponent(e)),r.isNumber(n)&&s.push("expires="+new Date(n).toGMTString()),r.isString(o)&&s.push("path="+o),r.isString(i)&&s.push("domain="+i),!0===a&&s.push("secure"),document.cookie=s.join("; ")},read:function(t){var e=document.cookie.match(new RegExp("(^|;\\s*)("+t+")=([^;]*)"));return e?decodeURIComponent(e[3]):null},remove:function(t){this.write(t,"",Date.now()-864e5)}}:{write:function(){},read:function(){return null},remove:function(){}}},function(t,e,n){"use strict";var r=n(372);function o(t){if("function"!=typeof t)throw new TypeError("executor must be a function.");var e;this.promise=new Promise((function(t){e=t}));var n=this;t((function(t){n.reason||(n.reason=new r(t),e(n.reason))}))}o.prototype.throwIfRequested=function(){if(this.reason)throw this.reason},o.source=function(){var t;return{token:new o((function(e){t=e})),cancel:t}},t.exports=o},function(t,e,n){"use strict";t.exports=function(t){return function(e){return t.apply(null,e)}}},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),Object.defineProperty(e,"getRequestToken",{enumerable:!0,get:function(){return r.getRequestToken}}),Object.defineProperty(e,"onRequestTokenUpdate",{enumerable:!0,get:function(){return r.onRequestTokenUpdate}}),Object.defineProperty(e,"getCurrentUser",{enumerable:!0,get:function(){return o.getCurrentUser}});var r=n(561),o=n(597)},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.getRequestToken=function(){return i},e.onRequestTokenUpdate=function(t){a.push(t)};var r=n(562),o=document.getElementsByTagName("head")[0],i=o?o.getAttribute("data-requesttoken"):null,a=[];(0,r.subscribe)("csrf-token-update",(function(t){i=t.token,a.forEach((function(e){try{e(t.token)}catch(t){console.error("error updating CSRF token observer",t)}}))}))},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.subscribe=function(t,e){i.subscribe(t,e)},e.unsubscribe=function(t,e){i.unsubscribe(t,e)},e.emit=function(t,e){i.emit(t,e)};var r=n(563),o=n(565);var i=(void 0!==window.OC&&window.OC._eventBus&&void 0===window._nc_event_bus&&(console.warn("found old event bus instance at OC._eventBus. Update your version!"),window._nc_event_bus=window.OC._eventBus),void 0!==window._nc_event_bus?new r.ProxyBus(window._nc_event_bus):window._nc_event_bus=new o.SimpleBus)},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.ProxyBus=void 0;var r,o=(r=n(564))&&r.__esModule?r:{default:r};function i(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}var a="1.1.2",s=function(){function t(e){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),function(t,e,n){e in t?Object.defineProperty(t,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):t[e]=n}(this,"bus",void 0),"function"==typeof e.getVersion&&o.default.valid(e.getVersion())?o.default.major(e.getVersion())!==o.default.major(this.getVersion())&&console.warn("Proxying an event bus of version "+e.getVersion()+" with "+this.getVersion()):console.warn("Proxying an event bus with an unknown or invalid version"),this.bus=e}var e,n,r;return e=t,(n=[{key:"getVersion",value:function(){return a}},{key:"subscribe",value:function(t,e){this.bus.subscribe(t,e)}},{key:"unsubscribe",value:function(t,e){this.bus.unsubscribe(t,e)}},{key:"emit",value:function(t,e){this.bus.emit(t,e)}}])&&i(e.prototype,n),r&&i(e,r),t}();e.ProxyBus=s},function(t,e,n){(function(n){var r;e=t.exports=d,r="object"==typeof n&&n.env&&n.env.NODE_DEBUG&&/\bsemver\b/i.test(n.env.NODE_DEBUG)?function(){var t=Array.prototype.slice.call(arguments,0);t.unshift("SEMVER"),console.log.apply(console,t)}:function(){},e.SEMVER_SPEC_VERSION="2.0.0";var o=256,i=Number.MAX_SAFE_INTEGER||9007199254740991,a=e.re=[],s=e.src=[],u=e.tokens={},c=0;function f(t){u[t]=c++}f("NUMERICIDENTIFIER"),s[u.NUMERICIDENTIFIER]="0|[1-9]\\d*",f("NUMERICIDENTIFIERLOOSE"),s[u.NUMERICIDENTIFIERLOOSE]="[0-9]+",f("NONNUMERICIDENTIFIER"),s[u.NONNUMERICIDENTIFIER]="\\d*[a-zA-Z-][a-zA-Z0-9-]*",f("MAINVERSION"),s[u.MAINVERSION]="("+s[u.NUMERICIDENTIFIER]+")\\.("+s[u.NUMERICIDENTIFIER]+")\\.("+s[u.NUMERICIDENTIFIER]+")",f("MAINVERSIONLOOSE"),s[u.MAINVERSIONLOOSE]="("+s[u.NUMERICIDENTIFIERLOOSE]+")\\.("+s[u.NUMERICIDENTIFIERLOOSE]+")\\.("+s[u.NUMERICIDENTIFIERLOOSE]+")",f("PRERELEASEIDENTIFIER"),s[u.PRERELEASEIDENTIFIER]="(?:"+s[u.NUMERICIDENTIFIER]+"|"+s[u.NONNUMERICIDENTIFIER]+")",f("PRERELEASEIDENTIFIERLOOSE"),s[u.PRERELEASEIDENTIFIERLOOSE]="(?:"+s[u.NUMERICIDENTIFIERLOOSE]+"|"+s[u.NONNUMERICIDENTIFIER]+")",f("PRERELEASE"),s[u.PRERELEASE]="(?:-("+s[u.PRERELEASEIDENTIFIER]+"(?:\\."+s[u.PRERELEASEIDENTIFIER]+")*))",f("PRERELEASELOOSE"),s[u.PRERELEASELOOSE]="(?:-?("+s[u.PRERELEASEIDENTIFIERLOOSE]+"(?:\\."+s[u.PRERELEASEIDENTIFIERLOOSE]+")*))",f("BUILDIDENTIFIER"),s[u.BUILDIDENTIFIER]="[0-9A-Za-z-]+",f("BUILD"),s[u.BUILD]="(?:\\+("+s[u.BUILDIDENTIFIER]+"(?:\\."+s[u.BUILDIDENTIFIER]+")*))",f("FULL"),f("FULLPLAIN"),s[u.FULLPLAIN]="v?"+s[u.MAINVERSION]+s[u.PRERELEASE]+"?"+s[u.BUILD]+"?",s[u.FULL]="^"+s[u.FULLPLAIN]+"$",f("LOOSEPLAIN"),s[u.LOOSEPLAIN]="[v=\\s]*"+s[u.MAINVERSIONLOOSE]+s[u.PRERELEASELOOSE]+"?"+s[u.BUILD]+"?",f("LOOSE"),s[u.LOOSE]="^"+s[u.LOOSEPLAIN]+"$",f("GTLT"),s[u.GTLT]="((?:<|>)?=?)",f("XRANGEIDENTIFIERLOOSE"),s[u.XRANGEIDENTIFIERLOOSE]=s[u.NUMERICIDENTIFIERLOOSE]+"|x|X|\\*",f("XRANGEIDENTIFIER"),s[u.XRANGEIDENTIFIER]=s[u.NUMERICIDENTIFIER]+"|x|X|\\*",f("XRANGEPLAIN"),s[u.XRANGEPLAIN]="[v=\\s]*("+s[u.XRANGEIDENTIFIER]+")(?:\\.("+s[u.XRANGEIDENTIFIER]+")(?:\\.("+s[u.XRANGEIDENTIFIER]+")(?:"+s[u.PRERELEASE]+")?"+s[u.BUILD]+"?)?)?",f("XRANGEPLAINLOOSE"),s[u.XRANGEPLAINLOOSE]="[v=\\s]*("+s[u.XRANGEIDENTIFIERLOOSE]+")(?:\\.("+s[u.XRANGEIDENTIFIERLOOSE]+")(?:\\.("+s[u.XRANGEIDENTIFIERLOOSE]+")(?:"+s[u.PRERELEASELOOSE]+")?"+s[u.BUILD]+"?)?)?",f("XRANGE"),s[u.XRANGE]="^"+s[u.GTLT]+"\\s*"+s[u.XRANGEPLAIN]+"$",f("XRANGELOOSE"),s[u.XRANGELOOSE]="^"+s[u.GTLT]+"\\s*"+s[u.XRANGEPLAINLOOSE]+"$",f("COERCE"),s[u.COERCE]="(^|[^\\d])(\\d{1,16})(?:\\.(\\d{1,16}))?(?:\\.(\\d{1,16}))?(?:$|[^\\d])",f("COERCERTL"),a[u.COERCERTL]=new RegExp(s[u.COERCE],"g"),f("LONETILDE"),s[u.LONETILDE]="(?:~>?)",f("TILDETRIM"),s[u.TILDETRIM]="(\\s*)"+s[u.LONETILDE]+"\\s+",a[u.TILDETRIM]=new RegExp(s[u.TILDETRIM],"g");f("TILDE"),s[u.TILDE]="^"+s[u.LONETILDE]+s[u.XRANGEPLAIN]+"$",f("TILDELOOSE"),s[u.TILDELOOSE]="^"+s[u.LONETILDE]+s[u.XRANGEPLAINLOOSE]+"$",f("LONECARET"),s[u.LONECARET]="(?:\\^)",f("CARETTRIM"),s[u.CARETTRIM]="(\\s*)"+s[u.LONECARET]+"\\s+",a[u.CARETTRIM]=new RegExp(s[u.CARETTRIM],"g");f("CARET"),s[u.CARET]="^"+s[u.LONECARET]+s[u.XRANGEPLAIN]+"$",f("CARETLOOSE"),s[u.CARETLOOSE]="^"+s[u.LONECARET]+s[u.XRANGEPLAINLOOSE]+"$",f("COMPARATORLOOSE"),s[u.COMPARATORLOOSE]="^"+s[u.GTLT]+"\\s*("+s[u.LOOSEPLAIN]+")$|^$",f("COMPARATOR"),s[u.COMPARATOR]="^"+s[u.GTLT]+"\\s*("+s[u.FULLPLAIN]+")$|^$",f("COMPARATORTRIM"),s[u.COMPARATORTRIM]="(\\s*)"+s[u.GTLT]+"\\s*("+s[u.LOOSEPLAIN]+"|"+s[u.XRANGEPLAIN]+")",a[u.COMPARATORTRIM]=new RegExp(s[u.COMPARATORTRIM],"g");f("HYPHENRANGE"),s[u.HYPHENRANGE]="^\\s*("+s[u.XRANGEPLAIN]+")\\s+-\\s+("+s[u.XRANGEPLAIN]+")\\s*$",f("HYPHENRANGELOOSE"),s[u.HYPHENRANGELOOSE]="^\\s*("+s[u.XRANGEPLAINLOOSE]+")\\s+-\\s+("+s[u.XRANGEPLAINLOOSE]+")\\s*$",f("STAR"),s[u.STAR]="(<|>)?=?\\s*\\*";for(var l=0;l<c;l++)r(l,s[l]),a[l]||(a[l]=new RegExp(s[l]));function p(t,e){if(e&&"object"==typeof e||(e={loose:!!e,includePrerelease:!1}),t instanceof d)return t;if("string"!=typeof t)return null;if(t.length>o)return null;if(!(e.loose?a[u.LOOSE]:a[u.FULL]).test(t))return null;try{return new d(t,e)}catch(t){return null}}function d(t,e){if(e&&"object"==typeof e||(e={loose:!!e,includePrerelease:!1}),t instanceof d){if(t.loose===e.loose)return t;t=t.version}else if("string"!=typeof t)throw new TypeError("Invalid Version: "+t);if(t.length>o)throw new TypeError("version is longer than "+o+" characters");if(!(this instanceof d))return new d(t,e);r("SemVer",t,e),this.options=e,this.loose=!!e.loose;var n=t.trim().match(e.loose?a[u.LOOSE]:a[u.FULL]);if(!n)throw new TypeError("Invalid Version: "+t);if(this.raw=t,this.major=+n[1],this.minor=+n[2],this.patch=+n[3],this.major>i||this.major<0)throw new TypeError("Invalid major version");if(this.minor>i||this.minor<0)throw new TypeError("Invalid minor version");if(this.patch>i||this.patch<0)throw new TypeError("Invalid patch version");n[4]?this.prerelease=n[4].split(".").map((function(t){if(/^[0-9]+$/.test(t)){var e=+t;if(e>=0&&e<i)return e}return t})):this.prerelease=[],this.build=n[5]?n[5].split("."):[],this.format()}e.parse=p,e.valid=function(t,e){var n=p(t,e);return n?n.version:null},e.clean=function(t,e){var n=p(t.trim().replace(/^[=v]+/,""),e);return n?n.version:null},e.SemVer=d,d.prototype.format=function(){return this.version=this.major+"."+this.minor+"."+this.patch,this.prerelease.length&&(this.version+="-"+this.prerelease.join(".")),this.version},d.prototype.toString=function(){return this.version},d.prototype.compare=function(t){return r("SemVer.compare",this.version,this.options,t),t instanceof d||(t=new d(t,this.options)),this.compareMain(t)||this.comparePre(t)},d.prototype.compareMain=function(t){return t instanceof d||(t=new d(t,this.options)),h(this.major,t.major)||h(this.minor,t.minor)||h(this.patch,t.patch)},d.prototype.comparePre=function(t){if(t instanceof d||(t=new d(t,this.options)),this.prerelease.length&&!t.prerelease.length)return-1;if(!this.prerelease.length&&t.prerelease.length)return 1;if(!this.prerelease.length&&!t.prerelease.length)return 0;var e=0;do{var n=this.prerelease[e],o=t.prerelease[e];if(r("prerelease compare",e,n,o),void 0===n&&void 0===o)return 0;if(void 0===o)return 1;if(void 0===n)return-1;if(n!==o)return h(n,o)}while(++e)},d.prototype.compareBuild=function(t){t instanceof d||(t=new d(t,this.options));var e=0;do{var n=this.build[e],o=t.build[e];if(r("prerelease compare",e,n,o),void 0===n&&void 0===o)return 0;if(void 0===o)return 1;if(void 0===n)return-1;if(n!==o)return h(n,o)}while(++e)},d.prototype.inc=function(t,e){switch(t){case"premajor":this.prerelease.length=0,this.patch=0,this.minor=0,this.major++,this.inc("pre",e);break;case"preminor":this.prerelease.length=0,this.patch=0,this.minor++,this.inc("pre",e);break;case"prepatch":this.prerelease.length=0,this.inc("patch",e),this.inc("pre",e);break;case"prerelease":0===this.prerelease.length&&this.inc("patch",e),this.inc("pre",e);break;case"major":0===this.minor&&0===this.patch&&0!==this.prerelease.length||this.major++,this.minor=0,this.patch=0,this.prerelease=[];break;case"minor":0===this.patch&&0!==this.prerelease.length||this.minor++,this.patch=0,this.prerelease=[];break;case"patch":0===this.prerelease.length&&this.patch++,this.prerelease=[];break;case"pre":if(0===this.prerelease.length)this.prerelease=[0];else{for(var n=this.prerelease.length;--n>=0;)"number"==typeof this.prerelease[n]&&(this.prerelease[n]++,n=-2);-1===n&&this.prerelease.push(0)}e&&(this.prerelease[0]===e?isNaN(this.prerelease[1])&&(this.prerelease=[e,0]):this.prerelease=[e,0]);break;default:throw new Error("invalid increment argument: "+t)}return this.format(),this.raw=this.version,this},e.inc=function(t,e,n,r){"string"==typeof n&&(r=n,n=void 0);try{return new d(t,n).inc(e,r).version}catch(t){return null}},e.diff=function(t,e){if(E(t,e))return null;var n=p(t),r=p(e),o="";if(n.prerelease.length||r.prerelease.length){o="pre";var i="prerelease"}for(var a in n)if(("major"===a||"minor"===a||"patch"===a)&&n[a]!==r[a])return o+a;return i},e.compareIdentifiers=h;var v=/^[0-9]+$/;function h(t,e){var n=v.test(t),r=v.test(e);return n&&r&&(t=+t,e=+e),t===e?0:n&&!r?-1:r&&!n?1:t<e?-1:1}function m(t,e,n){return new d(t,n).compare(new d(e,n))}function y(t,e,n){return m(t,e,n)>0}function g(t,e,n){return m(t,e,n)<0}function E(t,e,n){return 0===m(t,e,n)}function b(t,e,n){return 0!==m(t,e,n)}function O(t,e,n){return m(t,e,n)>=0}function x(t,e,n){return m(t,e,n)<=0}function w(t,e,n,r){switch(e){case"===":return"object"==typeof t&&(t=t.version),"object"==typeof n&&(n=n.version),t===n;case"!==":return"object"==typeof t&&(t=t.version),"object"==typeof n&&(n=n.version),t!==n;case"":case"=":case"==":return E(t,n,r);case"!=":return b(t,n,r);case">":return y(t,n,r);case">=":return O(t,n,r);case"<":return g(t,n,r);case"<=":return x(t,n,r);default:throw new TypeError("Invalid operator: "+e)}}function _(t,e){if(e&&"object"==typeof e||(e={loose:!!e,includePrerelease:!1}),t instanceof _){if(t.loose===!!e.loose)return t;t=t.value}if(!(this instanceof _))return new _(t,e);r("comparator",t,e),this.options=e,this.loose=!!e.loose,this.parse(t),this.semver===I?this.value="":this.value=this.operator+this.semver.version,r("comp",this)}e.rcompareIdentifiers=function(t,e){return h(e,t)},e.major=function(t,e){return new d(t,e).major},e.minor=function(t,e){return new d(t,e).minor},e.patch=function(t,e){return new d(t,e).patch},e.compare=m,e.compareLoose=function(t,e){return m(t,e,!0)},e.compareBuild=function(t,e,n){var r=new d(t,n),o=new d(e,n);return r.compare(o)||r.compareBuild(o)},e.rcompare=function(t,e,n){return m(e,t,n)},e.sort=function(t,n){return t.sort((function(t,r){return e.compareBuild(t,r,n)}))},e.rsort=function(t,n){return t.sort((function(t,r){return e.compareBuild(r,t,n)}))},e.gt=y,e.lt=g,e.eq=E,e.neq=b,e.gte=O,e.lte=x,e.cmp=w,e.Comparator=_;var I={};function S(t,e){if(e&&"object"==typeof e||(e={loose:!!e,includePrerelease:!1}),t instanceof S)return t.loose===!!e.loose&&t.includePrerelease===!!e.includePrerelease?t:new S(t.raw,e);if(t instanceof _)return new S(t.value,e);if(!(this instanceof S))return new S(t,e);if(this.options=e,this.loose=!!e.loose,this.includePrerelease=!!e.includePrerelease,this.raw=t,this.set=t.split(/\s*\|\|\s*/).map((function(t){return this.parseRange(t.trim())}),this).filter((function(t){return t.length})),!this.set.length)throw new TypeError("Invalid SemVer Range: "+t);this.format()}function A(t,e){for(var n=!0,r=t.slice(),o=r.pop();n&&r.length;)n=r.every((function(t){return o.intersects(t,e)})),o=r.pop();return n}function R(t){return!t||"x"===t.toLowerCase()||"*"===t}function T(t,e,n,r,o,i,a,s,u,c,f,l,p){return((e=R(n)?"":R(r)?">="+n+".0.0":R(o)?">="+n+"."+r+".0":">="+e)+" "+(s=R(u)?"":R(c)?"<"+(+u+1)+".0.0":R(f)?"<"+u+"."+(+c+1)+".0":l?"<="+u+"."+c+"."+f+"-"+l:"<="+s)).trim()}function L(t,e,n){for(var o=0;o<t.length;o++)if(!t[o].test(e))return!1;if(e.prerelease.length&&!n.includePrerelease){for(o=0;o<t.length;o++)if(r(t[o].semver),t[o].semver!==I&&t[o].semver.prerelease.length>0){var i=t[o].semver;if(i.major===e.major&&i.minor===e.minor&&i.patch===e.patch)return!0}return!1}return!0}function C(t,e,n){try{e=new S(e,n)}catch(t){return!1}return e.test(t)}function N(t,e,n,r){var o,i,a,s,u;switch(t=new d(t,r),e=new S(e,r),n){case">":o=y,i=x,a=g,s=">",u=">=";break;case"<":o=g,i=O,a=y,s="<",u="<=";break;default:throw new TypeError('Must provide a hilo val of "<" or ">"')}if(C(t,e,r))return!1;for(var c=0;c<e.set.length;++c){var f=e.set[c],l=null,p=null;if(f.forEach((function(t){t.semver===I&&(t=new _(">=0.0.0")),l=l||t,p=p||t,o(t.semver,l.semver,r)?l=t:a(t.semver,p.semver,r)&&(p=t)})),l.operator===s||l.operator===u)return!1;if((!p.operator||p.operator===s)&&i(t,p.semver))return!1;if(p.operator===u&&a(t,p.semver))return!1}return!0}_.prototype.parse=function(t){var e=this.options.loose?a[u.COMPARATORLOOSE]:a[u.COMPARATOR],n=t.match(e);if(!n)throw new TypeError("Invalid comparator: "+t);this.operator=void 0!==n[1]?n[1]:"","="===this.operator&&(this.operator=""),n[2]?this.semver=new d(n[2],this.options.loose):this.semver=I},_.prototype.toString=function(){return this.value},_.prototype.test=function(t){if(r("Comparator.test",t,this.options.loose),this.semver===I||t===I)return!0;if("string"==typeof t)try{t=new d(t,this.options)}catch(t){return!1}return w(t,this.operator,this.semver,this.options)},_.prototype.intersects=function(t,e){if(!(t instanceof _))throw new TypeError("a Comparator is required");var n;if(e&&"object"==typeof e||(e={loose:!!e,includePrerelease:!1}),""===this.operator)return""===this.value||(n=new S(t.value,e),C(this.value,n,e));if(""===t.operator)return""===t.value||(n=new S(this.value,e),C(t.semver,n,e));var r=!(">="!==this.operator&&">"!==this.operator||">="!==t.operator&&">"!==t.operator),o=!("<="!==this.operator&&"<"!==this.operator||"<="!==t.operator&&"<"!==t.operator),i=this.semver.version===t.semver.version,a=!(">="!==this.operator&&"<="!==this.operator||">="!==t.operator&&"<="!==t.operator),s=w(this.semver,"<",t.semver,e)&&(">="===this.operator||">"===this.operator)&&("<="===t.operator||"<"===t.operator),u=w(this.semver,">",t.semver,e)&&("<="===this.operator||"<"===this.operator)&&(">="===t.operator||">"===t.operator);return r||o||i&&a||s||u},e.Range=S,S.prototype.format=function(){return this.range=this.set.map((function(t){return t.join(" ").trim()})).join("||").trim(),this.range},S.prototype.toString=function(){return this.range},S.prototype.parseRange=function(t){var e=this.options.loose;t=t.trim();var n=e?a[u.HYPHENRANGELOOSE]:a[u.HYPHENRANGE];t=t.replace(n,T),r("hyphen replace",t),t=t.replace(a[u.COMPARATORTRIM],"$1$2$3"),r("comparator trim",t,a[u.COMPARATORTRIM]),t=(t=(t=t.replace(a[u.TILDETRIM],"$1~")).replace(a[u.CARETTRIM],"$1^")).split(/\s+/).join(" ");var o=e?a[u.COMPARATORLOOSE]:a[u.COMPARATOR],i=t.split(" ").map((function(t){return function(t,e){return r("comp",t,e),t=function(t,e){return t.trim().split(/\s+/).map((function(t){return function(t,e){r("caret",t,e);var n=e.loose?a[u.CARETLOOSE]:a[u.CARET];return t.replace(n,(function(e,n,o,i,a){var s;return r("caret",t,e,n,o,i,a),R(n)?s="":R(o)?s=">="+n+".0.0 <"+(+n+1)+".0.0":R(i)?s="0"===n?">="+n+"."+o+".0 <"+n+"."+(+o+1)+".0":">="+n+"."+o+".0 <"+(+n+1)+".0.0":a?(r("replaceCaret pr",a),s="0"===n?"0"===o?">="+n+"."+o+"."+i+"-"+a+" <"+n+"."+o+"."+(+i+1):">="+n+"."+o+"."+i+"-"+a+" <"+n+"."+(+o+1)+".0":">="+n+"."+o+"."+i+"-"+a+" <"+(+n+1)+".0.0"):(r("no pr"),s="0"===n?"0"===o?">="+n+"."+o+"."+i+" <"+n+"."+o+"."+(+i+1):">="+n+"."+o+"."+i+" <"+n+"."+(+o+1)+".0":">="+n+"."+o+"."+i+" <"+(+n+1)+".0.0"),r("caret return",s),s}))}(t,e)})).join(" ")}(t,e),r("caret",t),t=function(t,e){return t.trim().split(/\s+/).map((function(t){return function(t,e){var n=e.loose?a[u.TILDELOOSE]:a[u.TILDE];return t.replace(n,(function(e,n,o,i,a){var s;return r("tilde",t,e,n,o,i,a),R(n)?s="":R(o)?s=">="+n+".0.0 <"+(+n+1)+".0.0":R(i)?s=">="+n+"."+o+".0 <"+n+"."+(+o+1)+".0":a?(r("replaceTilde pr",a),s=">="+n+"."+o+"."+i+"-"+a+" <"+n+"."+(+o+1)+".0"):s=">="+n+"."+o+"."+i+" <"+n+"."+(+o+1)+".0",r("tilde return",s),s}))}(t,e)})).join(" ")}(t,e),r("tildes",t),t=function(t,e){return r("replaceXRanges",t,e),t.split(/\s+/).map((function(t){return function(t,e){t=t.trim();var n=e.loose?a[u.XRANGELOOSE]:a[u.XRANGE];return t.replace(n,(function(n,o,i,a,s,u){r("xRange",t,n,o,i,a,s,u);var c=R(i),f=c||R(a),l=f||R(s),p=l;return"="===o&&p&&(o=""),u=e.includePrerelease?"-0":"",c?n=">"===o||"<"===o?"<0.0.0-0":"*":o&&p?(f&&(a=0),s=0,">"===o?(o=">=",f?(i=+i+1,a=0,s=0):(a=+a+1,s=0)):"<="===o&&(o="<",f?i=+i+1:a=+a+1),n=o+i+"."+a+"."+s+u):f?n=">="+i+".0.0"+u+" <"+(+i+1)+".0.0"+u:l&&(n=">="+i+"."+a+".0"+u+" <"+i+"."+(+a+1)+".0"+u),r("xRange return",n),n}))}(t,e)})).join(" ")}(t,e),r("xrange",t),t=function(t,e){return r("replaceStars",t,e),t.trim().replace(a[u.STAR],"")}(t,e),r("stars",t),t}(t,this.options)}),this).join(" ").split(/\s+/);return this.options.loose&&(i=i.filter((function(t){return!!t.match(o)}))),i=i.map((function(t){return new _(t,this.options)}),this)},S.prototype.intersects=function(t,e){if(!(t instanceof S))throw new TypeError("a Range is required");return this.set.some((function(n){return A(n,e)&&t.set.some((function(t){return A(t,e)&&n.every((function(n){return t.every((function(t){return n.intersects(t,e)}))}))}))}))},e.toComparators=function(t,e){return new S(t,e).set.map((function(t){return t.map((function(t){return t.value})).join(" ").trim().split(" ")}))},S.prototype.test=function(t){if(!t)return!1;if("string"==typeof t)try{t=new d(t,this.options)}catch(t){return!1}for(var e=0;e<this.set.length;e++)if(L(this.set[e],t,this.options))return!0;return!1},e.satisfies=C,e.maxSatisfying=function(t,e,n){var r=null,o=null;try{var i=new S(e,n)}catch(t){return null}return t.forEach((function(t){i.test(t)&&(r&&-1!==o.compare(t)||(o=new d(r=t,n)))})),r},e.minSatisfying=function(t,e,n){var r=null,o=null;try{var i=new S(e,n)}catch(t){return null}return t.forEach((function(t){i.test(t)&&(r&&1!==o.compare(t)||(o=new d(r=t,n)))})),r},e.minVersion=function(t,e){t=new S(t,e);var n=new d("0.0.0");if(t.test(n))return n;if(n=new d("0.0.0-0"),t.test(n))return n;n=null;for(var r=0;r<t.set.length;++r){t.set[r].forEach((function(t){var e=new d(t.semver.version);switch(t.operator){case">":0===e.prerelease.length?e.patch++:e.prerelease.push(0),e.raw=e.format();case"":case">=":n&&!y(n,e)||(n=e);break;case"<":case"<=":break;default:throw new Error("Unexpected operation: "+t.operator)}}))}if(n&&t.test(n))return n;return null},e.validRange=function(t,e){try{return new S(t,e).range||"*"}catch(t){return null}},e.ltr=function(t,e,n){return N(t,e,"<",n)},e.gtr=function(t,e,n){return N(t,e,">",n)},e.outside=N,e.prerelease=function(t,e){var n=p(t,e);return n&&n.prerelease.length?n.prerelease:null},e.intersects=function(t,e,n){return t=new S(t,n),e=new S(e,n),t.intersects(e)},e.coerce=function(t,e){if(t instanceof d)return t;"number"==typeof t&&(t=String(t));if("string"!=typeof t)return null;var n=null;if((e=e||{}).rtl){for(var r;(r=a[u.COERCERTL].exec(t))&&(!n||n.index+n[0].length!==t.length);)n&&r.index+r[0].length===n.index+n[0].length||(n=r),a[u.COERCERTL].lastIndex=r.index+r[1].length+r[2].length;a[u.COERCERTL].lastIndex=-1}else n=t.match(a[u.COERCE]);if(null===n)return null;return p(n[2]+"."+(n[3]||"0")+"."+(n[4]||"0"),e)}}).call(this,n(72))},function(t,e,n){"use strict";function r(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}n(566),n(570),n(380),n(578),n(589),n(591),n(593),n(596),Object.defineProperty(e,"__esModule",{value:!0}),e.SimpleBus=void 0;var o="1.1.2",i=function(){function t(){var e,n,r;!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),e=this,n="handlers",r=new Map,n in e?Object.defineProperty(e,n,{value:r,enumerable:!0,configurable:!0,writable:!0}):e[n]=r}var e,n,i;return e=t,(n=[{key:"getVersion",value:function(){return o}},{key:"subscribe",value:function(t,e){this.handlers.set(t,(this.handlers.get(t)||[]).concat(e))}},{key:"unsubscribe",value:function(t,e){this.handlers.set(t,(this.handlers.get(t)||[]).filter((function(t){return t!=e})))}},{key:"emit",value:function(t,e){(this.handlers.get(t)||[]).forEach((function(t){try{t(e)}catch(t){console.error("could not invoke event listener",t)}}))}}])&&r(e.prototype,n),i&&r(e,i),t}();e.SimpleBus=i},function(t,e,n){"use strict";var r=n(68),o=n(14),i=n(373),a=n(25),s=n(102),u=n(101),c=n(567),f=n(374),l=n(376),p=n(11),d=n(377),v=p("isConcatSpreadable"),h=d>=51||!o((function(){var t=[];return t[v]=!1,t.concat()[0]!==t})),m=l("concat"),y=function(t){if(!a(t))return!1;var e=t[v];return void 0!==e?!!e:i(t)};r({target:"Array",proto:!0,forced:!h||!m},{concat:function(t){var e,n,r,o,i,a=s(this),l=f(a,0),p=0;for(e=-1,r=arguments.length;e<r;e++)if(i=-1===e?a:arguments[e],y(i)){if(p+(o=u(i.length))>9007199254740991)throw TypeError("Maximum allowed index exceeded");for(n=0;n<o;n++,p++)n in i&&c(l,p,i[n])}else{if(p>=9007199254740991)throw TypeError("Maximum allowed index exceeded");c(l,p++,i)}return l.length=p,l}})},function(t,e,n){"use strict";var r=n(154),o=n(32),i=n(96);t.exports=function(t,e,n){var a=r(e);a in t?o.f(t,a,i(0,n)):t[a]=n}},function(t,e,n){var r=n(375);t.exports=r&&!Symbol.sham&&"symbol"==typeof Symbol.iterator},function(t,e,n){var r=n(100);t.exports=r("navigator","userAgent")||""},function(t,e,n){"use strict";var r=n(68),o=n(378).filter,i=n(376),a=n(379),s=i("filter"),u=a("filter");r({target:"Array",proto:!0,forced:!s||!u},{filter:function(t){return o(this,t,arguments.length>1?arguments[1]:void 0)}})},function(t,e){t.exports=function(t){if("function"!=typeof t)throw TypeError(String(t)+" is not a function");return t}},function(t,e,n){var r=n(11),o=n(162),i=n(32),a=r("unscopables"),s=Array.prototype;null==s[a]&&i.f(s,a,{configurable:!0,value:o(null)}),t.exports=function(t){s[a][t]=!0}},function(t,e,n){var r=n(31),o=n(32),i=n(42),a=n(364);t.exports=r?Object.defineProperties:function(t,e){i(t);for(var n,r=a(e),s=r.length,u=0;s>u;)o.f(t,n=r[u++],e[n]);return t}},function(t,e,n){var r=n(100);t.exports=r("document","documentElement")},function(t,e,n){"use strict";var r=n(381).IteratorPrototype,o=n(162),i=n(96),a=n(164),s=n(70),u=function(){return this};t.exports=function(t,e,n){var c=e+" Iterator";return t.prototype=o(r,{next:i(1,n)}),a(t,c,!1,!0),s[c]=u,t}},function(t,e,n){var r=n(14);t.exports=!r((function(){function t(){}return t.prototype.constructor=null,Object.getPrototypeOf(new t)!==t.prototype}))},function(t,e,n){var r=n(25);t.exports=function(t){if(!r(t)&&null!==t)throw TypeError("Can't set "+String(t)+" as a prototype");return t}},function(t,e,n){"use strict";var r=n(579),o=n(586);t.exports=r("Map",(function(t){return function(){return t(this,arguments.length?arguments[0]:void 0)}}),o)},function(t,e,n){"use strict";var r=n(68),o=n(10),i=n(363),a=n(69),s=n(384),u=n(385),c=n(387),f=n(25),l=n(14),p=n(584),d=n(164),v=n(585);t.exports=function(t,e,n){var h=-1!==t.indexOf("Map"),m=-1!==t.indexOf("Weak"),y=h?"set":"add",g=o[t],E=g&&g.prototype,b=g,O={},x=function(t){var e=E[t];a(E,t,"add"==t?function(t){return e.call(this,0===t?0:t),this}:"delete"==t?function(t){return!(m&&!f(t))&&e.call(this,0===t?0:t)}:"get"==t?function(t){return m&&!f(t)?void 0:e.call(this,0===t?0:t)}:"has"==t?function(t){return!(m&&!f(t))&&e.call(this,0===t?0:t)}:function(t,n){return e.call(this,0===t?0:t,n),this})};if(i(t,"function"!=typeof g||!(m||E.forEach&&!l((function(){(new g).entries().next()})))))b=n.getConstructor(e,t,h,y),s.REQUIRED=!0;else if(i(t,!0)){var w=new b,_=w[y](m?{}:-0,1)!=w,I=l((function(){w.has(1)})),S=p((function(t){new g(t)})),A=!m&&l((function(){for(var t=new g,e=5;e--;)t[y](e,e);return!t.has(-0)}));S||((b=e((function(e,n){c(e,b,t);var r=v(new g,e,b);return null!=n&&u(n,r[y],r,h),r}))).prototype=E,E.constructor=b),(I||A)&&(x("delete"),x("has"),h&&x("get")),(A||_)&&x(y),m&&E.clear&&delete E.clear}return O[t]=b,r({global:!0,forced:b!=g},O),d(b,t),m||n.setStrong(b,t,h),b}},function(t,e,n){var r=n(14);t.exports=!r((function(){return Object.isExtensible(Object.preventExtensions({}))}))},function(t,e,n){var r=n(11),o=n(70),i=r("iterator"),a=Array.prototype;t.exports=function(t){return void 0!==t&&(o.Array===t||a[i]===t)}},function(t,e,n){var r=n(386),o=n(70),i=n(11)("iterator");t.exports=function(t){if(null!=t)return t[i]||t["@@iterator"]||o[r(t)]}},function(t,e,n){var r=n(42);t.exports=function(t,e,n,o){try{return o?e(r(n)[0],n[1]):e(n)}catch(e){var i=t.return;throw void 0!==i&&r(i.call(t)),e}}},function(t,e,n){var r=n(11)("iterator"),o=!1;try{var i=0,a={next:function(){return{done:!!i++}},return:function(){o=!0}};a[r]=function(){return this},Array.from(a,(function(){throw 2}))}catch(t){}t.exports=function(t,e){if(!e&&!o)return!1;var n=!1;try{var i={};i[r]=function(){return{next:function(){return{done:n=!0}}}},t(i)}catch(t){}return n}},function(t,e,n){var r=n(25),o=n(383);t.exports=function(t,e,n){var i,a;return o&&"function"==typeof(i=e.constructor)&&i!==n&&r(a=i.prototype)&&a!==n.prototype&&o(t,a),t}},function(t,e,n){"use strict";var r=n(32).f,o=n(162),i=n(587),a=n(161),s=n(387),u=n(385),c=n(163),f=n(588),l=n(31),p=n(384).fastKey,d=n(98),v=d.set,h=d.getterFor;t.exports={getConstructor:function(t,e,n,c){var f=t((function(t,r){s(t,f,e),v(t,{type:e,index:o(null),first:void 0,last:void 0,size:0}),l||(t.size=0),null!=r&&u(r,t[c],t,n)})),d=h(e),m=function(t,e,n){var r,o,i=d(t),a=y(t,e);return a?a.value=n:(i.last=a={index:o=p(e,!0),key:e,value:n,previous:r=i.last,next:void 0,removed:!1},i.first||(i.first=a),r&&(r.next=a),l?i.size++:t.size++,"F"!==o&&(i.index[o]=a)),t},y=function(t,e){var n,r=d(t),o=p(e);if("F"!==o)return r.index[o];for(n=r.first;n;n=n.next)if(n.key==e)return n};return i(f.prototype,{clear:function(){for(var t=d(this),e=t.index,n=t.first;n;)n.removed=!0,n.previous&&(n.previous=n.previous.next=void 0),delete e[n.index],n=n.next;t.first=t.last=void 0,l?t.size=0:this.size=0},delete:function(t){var e=d(this),n=y(this,t);if(n){var r=n.next,o=n.previous;delete e.index[n.index],n.removed=!0,o&&(o.next=r),r&&(r.previous=o),e.first==n&&(e.first=r),e.last==n&&(e.last=o),l?e.size--:this.size--}return!!n},forEach:function(t){for(var e,n=d(this),r=a(t,arguments.length>1?arguments[1]:void 0,3);e=e?e.next:n.first;)for(r(e.value,e.key,this);e&&e.removed;)e=e.previous},has:function(t){return!!y(this,t)}}),i(f.prototype,n?{get:function(t){var e=y(this,t);return e&&e.value},set:function(t,e){return m(this,0===t?0:t,e)}}:{add:function(t){return m(this,t=0===t?0:t,t)}}),l&&r(f.prototype,"size",{get:function(){return d(this).size}}),f},setStrong:function(t,e,n){var r=e+" Iterator",o=h(e),i=h(r);c(t,e,(function(t,e){v(this,{type:r,target:t,state:o(t),kind:e,last:void 0})}),(function(){for(var t=i(this),e=t.kind,n=t.last;n&&n.removed;)n=n.previous;return t.target&&(t.last=n=n?n.next:t.state.first)?"keys"==e?{value:n.key,done:!1}:"values"==e?{value:n.value,done:!1}:{value:[n.key,n.value],done:!1}:(t.target=void 0,{value:void 0,done:!0})}),n?"entries":"values",!n,!0),f(e)}}},function(t,e,n){var r=n(69);t.exports=function(t,e,n){for(var o in e)r(t,o,e[o],n);return t}},function(t,e,n){"use strict";var r=n(100),o=n(32),i=n(11),a=n(31),s=i("species");t.exports=function(t){var e=r(t),n=o.f;a&&e&&!e[s]&&n(e,s,{configurable:!0,get:function(){return this}})}},function(t,e,n){var r=n(165),o=n(69),i=n(590);r||o(Object.prototype,"toString",i,{unsafe:!0})},function(t,e,n){"use strict";var r=n(165),o=n(386);t.exports=r?{}.toString:function(){return"[object "+o(this)+"]"}},function(t,e,n){"use strict";var r=n(592).charAt,o=n(98),i=n(163),a=o.set,s=o.getterFor("String Iterator");i(String,"String",(function(t){a(this,{type:"String Iterator",string:String(t),index:0})}),(function(){var t,e=s(this),n=e.string,o=e.index;return o>=n.length?{value:void 0,done:!0}:(t=r(n,o),e.index+=t.length,{value:t,done:!1})}))},function(t,e,n){var r=n(159),o=n(153),i=function(t){return function(e,n){var i,a,s=String(o(e)),u=r(n),c=s.length;return u<0||u>=c?t?"":void 0:(i=s.charCodeAt(u))<55296||i>56319||u+1===c||(a=s.charCodeAt(u+1))<56320||a>57343?t?s.charAt(u):i:t?s.slice(u,u+2):a-56320+(i-55296<<10)+65536}};t.exports={codeAt:i(!1),charAt:i(!0)}},function(t,e,n){var r=n(10),o=n(388),i=n(594),a=n(34);for(var s in o){var u=r[s],c=u&&u.prototype;if(c&&c.forEach!==i)try{a(c,"forEach",i)}catch(t){c.forEach=i}}},function(t,e,n){"use strict";var r=n(378).forEach,o=n(595),i=n(379),a=o("forEach"),s=i("forEach");t.exports=a&&s?[].forEach:function(t){return r(this,t,arguments.length>1?arguments[1]:void 0)}},function(t,e,n){"use strict";var r=n(14);t.exports=function(t,e){var n=[][t];return!!n&&r((function(){n.call(null,e||function(){throw 1},1)}))}},function(t,e,n){var r=n(10),o=n(388),i=n(380),a=n(34),s=n(11),u=s("iterator"),c=s("toStringTag"),f=i.values;for(var l in o){var p=r[l],d=p&&p.prototype;if(d){if(d[u]!==f)try{a(d,u,f)}catch(t){d[u]=f}if(d[c]||a(d,c,l),o[l])for(var v in i)if(d[v]!==i[v])try{a(d,v,i[v])}catch(t){d[v]=i[v]}}}},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.getCurrentUser=function(){if(null===o)return null;return{uid:o,displayName:a}};var r=document.getElementsByTagName("head")[0],o=r?r.getAttribute("data-user"):null,i=document.getElementsByTagName("head")[0],a=i?i.getAttribute("data-user-displayname"):null},,,,,,function(t,e,n){var r=n(184);t.exports=!r((function(){return 7!=Object.defineProperty({},"a",{get:function(){return 7}}).a}))},function(t,e,n){var r=n(603),o=n(720),i=n(716);t.exports=r?function(t,e,n){return o.f(t,e,i(1,n))}:function(t,e,n){return t[e]=n,t}},function(t,e,n){var r=n(622);t.exports=function(t){if(!r(t))throw TypeError(String(t)+" is not an object");return t}},function(t,e,n){var r=n(607);t.exports=!r((function(){return 7!=Object.defineProperty({},"a",{get:function(){return 7}}).a}))},function(t,e){t.exports=function(t){try{return!!t()}catch(t){return!0}}},function(t,e){var n={}.hasOwnProperty;t.exports=function(t,e){return n.call(t,e)}},,,,,,,,,,,,,function(t,e){t.exports=function(t){if(null==t)throw TypeError("Can't call method on "+t);return t}},function(t,e){t.exports=function(t){return"object"==typeof t?null!==t:"function"==typeof t}},function(t,e,n){var r=n(176),o=n(604),i=n(454),a=n(667),s=n(721),u=n(997),c=u.get,f=u.enforce,l=String(String).split("String");(t.exports=function(t,e,n,s){var u=!!s&&!!s.unsafe,c=!!s&&!!s.enumerable,p=!!s&&!!s.noTargetGet;"function"==typeof n&&("string"!=typeof e||i(n,"name")||o(n,"name",e),f(n).source=l.join("string"==typeof e?e:"")),t!==r?(u?!p&&t[e]&&(c=!0):delete t[e],c?t[e]=n:o(t,e,n)):c?t[e]=n:a(e,n)})(Function.prototype,"toString",(function(){return"function"==typeof this&&c(this).source||s(this)}))},function(t,e){var n=Math.ceil,r=Math.floor;t.exports=function(t){return isNaN(t=+t)?0:(t>0?r:n)(t)}},function(t,e){t.exports=function(t){return"object"==typeof t?null!==t:"function"==typeof t}},function(t,e,n){var r=n(606),o=n(742),i=n(737);t.exports=r?function(t,e,n){return o.f(t,e,i(1,n))}:function(t,e,n){return t[e]=n,t}},,,,function(t,e,n){var r=n(1050);"string"==typeof r&&(r=[[t.i,r,""]]),r.locals&&(t.exports=r.locals);(0,n(106).default)("9a4915b8",r,!0,{})},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),Object.defineProperty(e,"getRequestToken",{enumerable:!0,get:function(){return r.getRequestToken}}),Object.defineProperty(e,"onRequestTokenUpdate",{enumerable:!0,get:function(){return r.onRequestTokenUpdate}}),Object.defineProperty(e,"getCurrentUser",{enumerable:!0,get:function(){return o.getCurrentUser}});var r=n(993),o=n(994)},,,,function(t,e,n){(function(t){var r=void 0!==t&&t||"undefined"!=typeof self&&self||window,o=Function.prototype.apply;function i(t,e){this._id=t,this._clearFn=e}e.setTimeout=function(){return new i(o.call(setTimeout,r,arguments),clearTimeout)},e.setInterval=function(){return new i(o.call(setInterval,r,arguments),clearInterval)},e.clearTimeout=e.clearInterval=function(t){t&&t.close()},i.prototype.unref=i.prototype.ref=function(){},i.prototype.close=function(){this._clearFn.call(r,this._id)},e.enroll=function(t,e){clearTimeout(t._idleTimeoutId),t._idleTimeout=e},e.unenroll=function(t){clearTimeout(t._idleTimeoutId),t._idleTimeout=-1},e._unrefActive=e.active=function(t){clearTimeout(t._idleTimeoutId);var e=t._idleTimeout;e>=0&&(t._idleTimeoutId=setTimeout((function(){t._onTimeout&&t._onTimeout()}),e))},n(636),e.setImmediate="undefined"!=typeof self&&self.setImmediate||void 0!==t&&t.setImmediate||this&&this.setImmediate,e.clearImmediate="undefined"!=typeof self&&self.clearImmediate||void 0!==t&&t.clearImmediate||this&&this.clearImmediate}).call(this,n(17))},function(t,e,n){(function(t,e){!function(t,n){"use strict";if(!t.setImmediate){var r,o,i,a,s,u=1,c={},f=!1,l=t.document,p=Object.getPrototypeOf&&Object.getPrototypeOf(t);p=p&&p.setTimeout?p:t,"[object process]"==={}.toString.call(t.process)?r=function(t){e.nextTick((function(){v(t)}))}:!function(){if(t.postMessage&&!t.importScripts){var e=!0,n=t.onmessage;return t.onmessage=function(){e=!1},t.postMessage("","*"),t.onmessage=n,e}}()?t.MessageChannel?((i=new MessageChannel).port1.onmessage=function(t){v(t.data)},r=function(t){i.port2.postMessage(t)}):l&&"onreadystatechange"in l.createElement("script")?(o=l.documentElement,r=function(t){var e=l.createElement("script");e.onreadystatechange=function(){v(t),e.onreadystatechange=null,o.removeChild(e),e=null},o.appendChild(e)}):r=function(t){setTimeout(v,0,t)}:(a="setImmediate$"+Math.random()+"$",s=function(e){e.source===t&&"string"==typeof e.data&&0===e.data.indexOf(a)&&v(+e.data.slice(a.length))},t.addEventListener?t.addEventListener("message",s,!1):t.attachEvent("onmessage",s),r=function(e){t.postMessage(a+e,"*")}),p.setImmediate=function(t){"function"!=typeof t&&(t=new Function(""+t));for(var e=new Array(arguments.length-1),n=0;n<e.length;n++)e[n]=arguments[n+1];var o={callback:t,args:e};return c[u]=o,r(u),u++},p.clearImmediate=d}function d(t){delete c[t]}function v(t){if(f)setTimeout(v,0,t);else{var e=c[t];if(e){f=!0;try{!function(t){var e=t.callback,r=t.args;switch(r.length){case 0:e();break;case 1:e(r[0]);break;case 2:e(r[0],r[1]);break;case 3:e(r[0],r[1],r[2]);break;default:e.apply(n,r)}}(e)}finally{d(t),f=!1}}}}}("undefined"==typeof self?void 0===t?this:t:self)}).call(this,n(17),n(72))},,,,,,,,,,,,,,,,,,,,,,,,,,,,,function(t,e,n){var r=n(717),o=n(621);t.exports=function(t){return r(o(t))}},function(t,e){var n={}.toString;t.exports=function(t){return n.call(t).slice(8,-1)}},function(t,e,n){var r=n(176),o=n(604);t.exports=function(t,e){try{o(r,t,e)}catch(n){r[t]=e}return e}},function(t,e,n){var r={};r[n(669)("toStringTag")]="z",t.exports="[object z]"===String(r)},function(t,e,n){var r=n(176),o=n(723),i=n(454),a=n(724),s=n(732),u=n(1013),c=o("wks"),f=r.Symbol,l=u?f:a;t.exports=function(t){return i(c,t)||(s&&i(f,t)?c[t]=f[t]:c[t]=l("Symbol."+t)),c[t]}},function(t,e,n){var r=n(738),o=n(739);t.exports=function(t){return r(o(t))}},function(t,e,n){var r=n(185),o=n(626);t.exports=function(t,e){try{o(r,t,e)}catch(n){r[t]=e}return e}},,function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.getLoggerBuilder=i,e.getLogger=function(){return i().build()};var r=n(1022),o=n(1047);function i(){return new o.LoggerBuilder(r.buildConsoleLogger)}},,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,function(t,e,n){var r=n(176),o=n(714).f,i=n(604),a=n(623),s=n(667),u=n(1001),c=n(1007);t.exports=function(t,e){var n,f,l,p,d,v=t.target,h=t.global,m=t.stat;if(n=h?r:m?r[v]||s(v,{}):(r[v]||{}).prototype)for(f in e){if(p=e[f],l=t.noTargetGet?(d=o(n,f))&&d.value:n[f],!c(h?f:v+(m?".":"#")+f,t.forced)&&void 0!==l){if(typeof p==typeof l)continue;u(p,l)}(t.sham||l&&l.sham)&&i(p,"sham",!0),a(n,f,p,t)}}},function(t,e,n){var r=n(603),o=n(715),i=n(716),a=n(665),s=n(718),u=n(454),c=n(719),f=Object.getOwnPropertyDescriptor;e.f=r?f:function(t,e){if(t=a(t),e=s(e,!0),c)try{return f(t,e)}catch(t){}if(u(t,e))return i(!o.f.call(t,e),t[e])}},function(t,e,n){"use strict";var r={}.propertyIsEnumerable,o=Object.getOwnPropertyDescriptor,i=o&&!r.call({1:2},1);e.f=i?function(t){var e=o(this,t);return!!e&&e.enumerable}:r},function(t,e){t.exports=function(t,e){return{enumerable:!(1&t),configurable:!(2&t),writable:!(4&t),value:e}}},function(t,e,n){var r=n(184),o=n(666),i="".split;t.exports=r((function(){return!Object("z").propertyIsEnumerable(0)}))?function(t){return"String"==o(t)?i.call(t,""):Object(t)}:Object},function(t,e,n){var r=n(622);t.exports=function(t,e){if(!r(t))return t;var n,o;if(e&&"function"==typeof(n=t.toString)&&!r(o=n.call(t)))return o;if("function"==typeof(n=t.valueOf)&&!r(o=n.call(t)))return o;if(!e&&"function"==typeof(n=t.toString)&&!r(o=n.call(t)))return o;throw TypeError("Can't convert object to primitive value")}},function(t,e,n){var r=n(603),o=n(184),i=n(996);t.exports=!r&&!o((function(){return 7!=Object.defineProperty(i("div"),"a",{get:function(){return 7}}).a}))},function(t,e,n){var r=n(603),o=n(719),i=n(605),a=n(718),s=Object.defineProperty;e.f=r?s:function(t,e,n){if(i(t),e=a(e,!0),i(n),o)try{return s(t,e,n)}catch(t){}if("get"in n||"set"in n)throw TypeError("Accessors not supported");return"value"in n&&(t[e]=n.value),t}},function(t,e,n){var r=n(722),o=Function.toString;"function"!=typeof r.inspectSource&&(r.inspectSource=function(t){return o.call(t)}),t.exports=r.inspectSource},function(t,e,n){var r=n(176),o=n(667),i=r["__core-js_shared__"]||o("__core-js_shared__",{});t.exports=i},function(t,e,n){var r=n(1e3),o=n(722);(t.exports=function(t,e){return o[t]||(o[t]=void 0!==e?e:{})})("versions",[]).push({version:"3.5.0",mode:r?"pure":"global",copyright:"© 2019 Denis Pushkarev (zloirock.ru)"})},function(t,e){var n=0,r=Math.random();t.exports=function(t){return"Symbol("+String(void 0===t?"":t)+")_"+(++n+r).toString(36)}},function(t,e){t.exports={}},function(t,e,n){var r=n(454),o=n(665),i=n(727).indexOf,a=n(725);t.exports=function(t,e){var n,s=o(t),u=0,c=[];for(n in s)!r(a,n)&&r(s,n)&&c.push(n);for(;e.length>u;)r(s,n=e[u++])&&(~i(c,n)||c.push(n));return c}},function(t,e,n){var r=n(665),o=n(728),i=n(1006),a=function(t){return function(e,n,a){var s,u=r(e),c=o(u.length),f=i(a,c);if(t&&n!=n){for(;c>f;)if((s=u[f++])!=s)return!0}else for(;c>f;f++)if((t||f in u)&&u[f]===n)return t||f||0;return!t&&-1}};t.exports={includes:a(!0),indexOf:a(!1)}},function(t,e,n){var r=n(624),o=Math.min;t.exports=function(t){return t>0?o(r(t),9007199254740991):0}},function(t,e){t.exports=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"]},function(t,e){e.f=Object.getOwnPropertySymbols},function(t,e,n){var r=n(621);t.exports=function(t){return Object(r(t))}},function(t,e,n){var r=n(184);t.exports=!!Object.getOwnPropertySymbols&&!r((function(){return!String(Symbol())}))},function(t,e,n){"use strict";var r=n(605);t.exports=function(){var t=r(this),e="";return t.global&&(e+="g"),t.ignoreCase&&(e+="i"),t.multiline&&(e+="m"),t.dotAll&&(e+="s"),t.unicode&&(e+="u"),t.sticky&&(e+="y"),e}},function(t,e,n){"use strict";var r,o,i=n(733),a=RegExp.prototype.exec,s=String.prototype.replace,u=a,c=(r=/a/,o=/b*/g,a.call(r,"a"),a.call(o,"a"),0!==r.lastIndex||0!==o.lastIndex),f=void 0!==/()??/.exec("")[1];(c||f)&&(u=function(t){var e,n,r,o,u=this;return f&&(n=new RegExp("^"+u.source+"$(?!\\s)",i.call(u))),c&&(e=u.lastIndex),r=a.call(u,t),c&&r&&(u.lastIndex=u.global?r.index+r[0].length:e),f&&r&&r.length>1&&s.call(r[0],n,(function(){for(o=1;o<arguments.length-2;o++)void 0===arguments[o]&&(r[o]=void 0)})),r}),t.exports=u},function(t,e,n){var r=n(606),o=n(736),i=n(737),a=n(670),s=n(740),u=n(608),c=n(741),f=Object.getOwnPropertyDescriptor;e.f=r?f:function(t,e){if(t=a(t),e=s(e,!0),c)try{return f(t,e)}catch(t){}if(u(t,e))return i(!o.f.call(t,e),t[e])}},function(t,e,n){"use strict";var r={}.propertyIsEnumerable,o=Object.getOwnPropertyDescriptor,i=o&&!r.call({1:2},1);e.f=i?function(t){var e=o(this,t);return!!e&&e.enumerable}:r},function(t,e){t.exports=function(t,e){return{enumerable:!(1&t),configurable:!(2&t),writable:!(4&t),value:e}}},function(t,e,n){var r=n(607),o=n(1025),i="".split;t.exports=r((function(){return!Object("z").propertyIsEnumerable(0)}))?function(t){return"String"==o(t)?i.call(t,""):Object(t)}:Object},function(t,e){t.exports=function(t){if(null==t)throw TypeError("Can't call method on "+t);return t}},function(t,e,n){var r=n(625);t.exports=function(t,e){if(!r(t))return t;var n,o;if(e&&"function"==typeof(n=t.toString)&&!r(o=n.call(t)))return o;if("function"==typeof(n=t.valueOf)&&!r(o=n.call(t)))return o;if(!e&&"function"==typeof(n=t.toString)&&!r(o=n.call(t)))return o;throw TypeError("Can't convert object to primitive value")}},function(t,e,n){var r=n(606),o=n(607),i=n(1026);t.exports=!r&&!o((function(){return 7!=Object.defineProperty(i("div"),"a",{get:function(){return 7}}).a}))},function(t,e,n){var r=n(606),o=n(741),i=n(743),a=n(740),s=Object.defineProperty;e.f=r?s:function(t,e,n){if(i(t),e=a(e,!0),i(n),o)try{return s(t,e,n)}catch(t){}if("get"in n||"set"in n)throw TypeError("Accessors not supported");return"value"in n&&(t[e]=n.value),t}},function(t,e,n){var r=n(625);t.exports=function(t){if(!r(t))throw TypeError(String(t)+" is not an object");return t}},function(t,e,n){var r=n(745),o=Function.toString;"function"!=typeof r.inspectSource&&(r.inspectSource=function(t){return o.call(t)}),t.exports=r.inspectSource},function(t,e,n){var r=n(185),o=n(671),i=r["__core-js_shared__"]||o("__core-js_shared__",{});t.exports=i},function(t,e){t.exports={}},function(t,e,n){var r=n(608),o=n(670),i=n(1039).indexOf,a=n(746);t.exports=function(t,e){var n,s=o(t),u=0,c=[];for(n in s)!r(a,n)&&r(s,n)&&c.push(n);for(;e.length>u;)r(s,n=e[u++])&&(~i(c,n)||c.push(n));return c}},function(t,e){var n=Math.ceil,r=Math.floor;t.exports=function(t){return isNaN(t=+t)?0:(t>0?r:n)(t)}},function(t,e){t.exports=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"]},function(t,e){e.f=Object.getOwnPropertySymbols},,,,,,,function(t,e,n){"use strict";var r=n(1048),o=function(t){if(!Number.isInteger(t)&&t!==1/0||!(t>0))return Promise.reject(new TypeError("Expected `concurrency` to be a number from 1 and up"));var e=[],n=0,o=function(){n--,e.length>0&&e.shift()()},i=function(t,e){n++;for(var i=arguments.length,a=new Array(i>2?i-2:0),s=2;s<i;s++)a[s-2]=arguments[s];var u=r.apply(void 0,[t].concat(a));e(u),u.then(o,o)},a=function(r,o){for(var a=arguments.length,s=new Array(a>2?a-2:0),u=2;u<a;u++)s[u-2]=arguments[u];n<t?i.apply(void 0,[r,o].concat(s)):e.push(i.bind.apply(i,[null,r,o].concat(s)))},s=function(t){for(var e=arguments.length,n=new Array(e>1?e-1:0),r=1;r<e;r++)n[r-1]=arguments[r];return new Promise((function(e){return a.apply(void 0,[t,e].concat(n))}))};return Object.defineProperties(s,{activeCount:{get:function(){return n}},pendingCount:{get:function(){return e.length}}}),s};t.exports=o,t.exports.default=o},,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.getRequestToken=function(){return i},e.onRequestTokenUpdate=function(t){a.push(t)};var r=n(71),o=document.getElementsByTagName("head")[0],i=o?o.getAttribute("data-requesttoken"):null,a=[];(0,r.subscribe)("csrf-token-update",(function(t){i=t.token,a.forEach((function(e){try{e(t.token)}catch(t){console.error("error updating CSRF token observer",t)}}))}))},function(t,e,n){"use strict";Object.defineProperty(e,"__esModule",{value:!0}),e.getCurrentUser=function(){if(null===o)return null;return{uid:o,displayName:a}};var r=document.getElementsByTagName("head")[0],o=r?r.getAttribute("data-user"):null,i=document.getElementsByTagName("head")[0],a=i?i.getAttribute("data-user-displayname"):null},function(t,e,n){"use strict";var r=n(713),o=n(727).indexOf,i=n(1008),a=[].indexOf,s=!!a&&1/[1].indexOf(1,-0)<0,u=i("indexOf");r({target:"Array",proto:!0,forced:s||u},{indexOf:function(t){return s?a.apply(this,arguments)||0:o(this,t,arguments.length>1?arguments[1]:void 0)}})},function(t,e,n){var r=n(176),o=n(622),i=r.document,a=o(i)&&o(i.createElement);t.exports=function(t){return a?i.createElement(t):{}}},function(t,e,n){var r,o,i,a=n(998),s=n(176),u=n(622),c=n(604),f=n(454),l=n(999),p=n(725),d=s.WeakMap;if(a){var v=new d,h=v.get,m=v.has,y=v.set;r=function(t,e){return y.call(v,t,e),e},o=function(t){return h.call(v,t)||{}},i=function(t){return m.call(v,t)}}else{var g=l("state");p[g]=!0,r=function(t,e){return c(t,g,e),e},o=function(t){return f(t,g)?t[g]:{}},i=function(t){return f(t,g)}}t.exports={set:r,get:o,has:i,enforce:function(t){return i(t)?o(t):r(t,{})},getterFor:function(t){return function(e){var n;if(!u(e)||(n=o(e)).type!==t)throw TypeError("Incompatible receiver, "+t+" required");return n}}}},function(t,e,n){var r=n(176),o=n(721),i=r.WeakMap;t.exports="function"==typeof i&&/native code/.test(o(i))},function(t,e,n){var r=n(723),o=n(724),i=r("keys");t.exports=function(t){return i[t]||(i[t]=o(t))}},function(t,e){t.exports=!1},function(t,e,n){var r=n(454),o=n(1002),i=n(714),a=n(720);t.exports=function(t,e){for(var n=o(e),s=a.f,u=i.f,c=0;c<n.length;c++){var f=n[c];r(t,f)||s(t,f,u(e,f))}}},function(t,e,n){var r=n(1003),o=n(1005),i=n(730),a=n(605);t.exports=r("Reflect","ownKeys")||function(t){var e=o.f(a(t)),n=i.f;return n?e.concat(n(t)):e}},function(t,e,n){var r=n(1004),o=n(176),i=function(t){return"function"==typeof t?t:void 0};t.exports=function(t,e){return arguments.length<2?i(r[t])||i(o[t]):r[t]&&r[t][e]||o[t]&&o[t][e]}},function(t,e,n){var r=n(176);t.exports=r},function(t,e,n){var r=n(726),o=n(729).concat("length","prototype");e.f=Object.getOwnPropertyNames||function(t){return r(t,o)}},function(t,e,n){var r=n(624),o=Math.max,i=Math.min;t.exports=function(t,e){var n=r(t);return n<0?o(n+e,0):i(n,e)}},function(t,e,n){var r=n(184),o=/#|\.prototype\./,i=function(t,e){var n=s[a(t)];return n==c||n!=u&&("function"==typeof e?r(e):!!e)},a=i.normalize=function(t){return String(t).replace(o,".").toLowerCase()},s=i.data={},u=i.NATIVE="N",c=i.POLYFILL="P";t.exports=i},function(t,e,n){"use strict";var r=n(184);t.exports=function(t,e){var n=[][t];return!n||!r((function(){n.call(null,e||function(){throw 1},1)}))}},function(t,e,n){var r=n(713),o=n(1010);r({target:"Object",stat:!0,forced:Object.assign!==o},{assign:o})},function(t,e,n){"use strict";var r=n(603),o=n(184),i=n(1011),a=n(730),s=n(715),u=n(731),c=n(717),f=Object.assign,l=Object.defineProperty;t.exports=!f||o((function(){if(r&&1!==f({b:1},f(l({},"a",{enumerable:!0,get:function(){l(this,"b",{value:3,enumerable:!1})}}),{b:2})).b)return!0;var t={},e={},n=Symbol();return t[n]=7,"abcdefghijklmnopqrst".split("").forEach((function(t){e[t]=t})),7!=f({},t)[n]||"abcdefghijklmnopqrst"!=i(f({},e)).join("")}))?function(t,e){for(var n=u(t),o=arguments.length,f=1,l=a.f,p=s.f;o>f;)for(var d,v=c(arguments[f++]),h=l?i(v).concat(l(v)):i(v),m=h.length,y=0;m>y;)d=h[y++],r&&!p.call(v,d)||(n[d]=v[d]);return n}:f},function(t,e,n){var r=n(726),o=n(729);t.exports=Object.keys||function(t){return r(t,o)}},function(t,e,n){var r=n(668),o=n(623),i=n(1014);r||o(Object.prototype,"toString",i,{unsafe:!0})},function(t,e,n){var r=n(732);t.exports=r&&!Symbol.sham&&"symbol"==typeof Symbol()},function(t,e,n){"use strict";var r=n(668),o=n(1015);t.exports=r?{}.toString:function(){return"[object "+o(this)+"]"}},function(t,e,n){var r=n(668),o=n(666),i=n(669)("toStringTag"),a="Arguments"==o(function(){return arguments}());t.exports=r?o:function(t){var e,n,r;return void 0===t?"Undefined":null===t?"Null":"string"==typeof(n=function(t,e){try{return t[e]}catch(t){}}(e=Object(t),i))?n:a?o(e):"Object"==(r=o(e))&&"function"==typeof e.callee?"Arguments":r}},function(t,e,n){"use strict";var r=n(623),o=n(605),i=n(184),a=n(733),s=RegExp.prototype,u=s.toString,c=i((function(){return"/a/b"!=u.call({source:"a",flags:"b"})})),f="toString"!=u.name;(c||f)&&r(RegExp.prototype,"toString",(function(){var t=o(this),e=String(t.source),n=t.flags;return"/"+e+"/"+String(void 0===n&&t instanceof RegExp&&!("flags"in s)?a.call(t):n)}),{unsafe:!0})},function(t,e,n){"use strict";var r=n(1018),o=n(605),i=n(731),a=n(728),s=n(624),u=n(621),c=n(1019),f=n(1021),l=Math.max,p=Math.min,d=Math.floor,v=/\$([$&'`]|\d\d?|<[^>]*>)/g,h=/\$([$&'`]|\d\d?)/g;r("replace",2,(function(t,e,n){return[function(n,r){var o=u(this),i=null==n?void 0:n[t];return void 0!==i?i.call(n,o,r):e.call(String(o),n,r)},function(t,i){var u=n(e,t,this,i);if(u.done)return u.value;var d=o(t),v=String(this),h="function"==typeof i;h||(i=String(i));var m=d.global;if(m){var y=d.unicode;d.lastIndex=0}for(var g=[];;){var E=f(d,v);if(null===E)break;if(g.push(E),!m)break;""===String(E[0])&&(d.lastIndex=c(v,a(d.lastIndex),y))}for(var b,O="",x=0,w=0;w<g.length;w++){E=g[w];for(var _=String(E[0]),I=l(p(s(E.index),v.length),0),S=[],A=1;A<E.length;A++)S.push(void 0===(b=E[A])?b:String(b));var R=E.groups;if(h){var T=[_].concat(S,I,v);void 0!==R&&T.push(R);var L=String(i.apply(void 0,T))}else L=r(_,v,I,S,R,i);I>=x&&(O+=v.slice(x,I)+L,x=I+_.length)}return O+v.slice(x)}];function r(t,n,r,o,a,s){var u=r+t.length,c=o.length,f=h;return void 0!==a&&(a=i(a),f=v),e.call(s,f,(function(e,i){var s;switch(i.charAt(0)){case"$":return"$";case"&":return t;case"`":return n.slice(0,r);case"'":return n.slice(u);case"<":s=a[i.slice(1,-1)];break;default:var f=+i;if(0===f)return e;if(f>c){var l=d(f/10);return 0===l?e:l<=c?void 0===o[l-1]?i.charAt(1):o[l-1]+i.charAt(1):e}s=o[f-1]}return void 0===s?"":s}))}}))},function(t,e,n){"use strict";var r=n(604),o=n(623),i=n(184),a=n(669),s=n(734),u=a("species"),c=!i((function(){var t=/./;return t.exec=function(){var t=[];return t.groups={a:"7"},t},"7"!=="".replace(t,"$<a>")})),f=!i((function(){var t=/(?:)/,e=t.exec;t.exec=function(){return e.apply(this,arguments)};var n="ab".split(t);return 2!==n.length||"a"!==n[0]||"b"!==n[1]}));t.exports=function(t,e,n,l){var p=a(t),d=!i((function(){var e={};return e[p]=function(){return 7},7!=""[t](e)})),v=d&&!i((function(){var e=!1,n=/a/;return"split"===t&&((n={}).constructor={},n.constructor[u]=function(){return n},n.flags="",n[p]=/./[p]),n.exec=function(){return e=!0,null},n[p](""),!e}));if(!d||!v||"replace"===t&&!c||"split"===t&&!f){var h=/./[p],m=n(p,""[t],(function(t,e,n,r,o){return e.exec===s?d&&!o?{done:!0,value:h.call(e,n,r)}:{done:!0,value:t.call(n,e,r)}:{done:!1}})),y=m[0],g=m[1];o(String.prototype,t,y),o(RegExp.prototype,p,2==e?function(t,e){return g.call(t,this,e)}:function(t){return g.call(t,this)}),l&&r(RegExp.prototype[p],"sham",!0)}}},function(t,e,n){"use strict";var r=n(1020).charAt;t.exports=function(t,e,n){return e+(n?r(t,e).length:1)}},function(t,e,n){var r=n(624),o=n(621),i=function(t){return function(e,n){var i,a,s=String(o(e)),u=r(n),c=s.length;return u<0||u>=c?t?"":void 0:(i=s.charCodeAt(u))<55296||i>56319||u+1===c||(a=s.charCodeAt(u+1))<56320||a>57343?t?s.charAt(u):i:t?s.slice(u,u+2):a-56320+(i-55296<<10)+65536}};t.exports={codeAt:i(!1),charAt:i(!0)}},function(t,e,n){var r=n(666),o=n(734);t.exports=function(t,e){var n=t.exec;if("function"==typeof n){var i=n.call(t,e);if("object"!=typeof i)throw TypeError("RegExp exec method returned something other than an Object or null");return i}if("RegExp"!==r(t))throw TypeError("RegExp#exec called on incompatible receiver");return o.call(t,e)}},function(t,e,n){"use strict";n(1023),Object.defineProperty(e,"__esModule",{value:!0}),e.buildConsoleLogger=function(t){return new i(t)},e.ConsoleLogger=void 0;var r=n(1046);function o(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}var i=function(){function t(e){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),this.context=e}var e,n,i;return e=t,(n=[{key:"formatMessage",value:function(t,e,n){var r="["+e+"]";return n&&n.app&&(r+=" "+n.app+": "),r+t}},{key:"log",value:function(t,e,n){switch(t){case 0:console.debug(this.formatMessage(e,r.LogLevel.Debug,n),n);break;case 1:console.info(this.formatMessage(e,r.LogLevel.Info,n),n);break;case 2:console.warn(this.formatMessage(e,r.LogLevel.Warn,n),n);break;case 3:console.error(this.formatMessage(e,r.LogLevel.Error,n),n);break;default:console.error(this.formatMessage(e,r.LogLevel.Fatal,n),n)}}},{key:"debug",value:function(t,e){this.log(0,t,Object.assign({},this.context,e))}},{key:"info",value:function(t,e){this.log(1,t,Object.assign({},this.context,e))}},{key:"warn",value:function(t,e){this.log(2,t,Object.assign({},this.context,e))}},{key:"error",value:function(t,e){this.log(3,t,Object.assign({},this.context,e))}},{key:"fatal",value:function(t,e){this.log(4,t,Object.assign({},this.context,e))}}])&&o(e.prototype,n),i&&o(e,i),t}();e.ConsoleLogger=i},function(t,e,n){var r=n(1024),o=n(1043);r({target:"Object",stat:!0,forced:Object.assign!==o},{assign:o})},function(t,e,n){var r=n(185),o=n(735).f,i=n(626),a=n(1027),s=n(671),u=n(1034),c=n(1042);t.exports=function(t,e){var n,f,l,p,d,v=t.target,h=t.global,m=t.stat;if(n=h?r:m?r[v]||s(v,{}):(r[v]||{}).prototype)for(f in e){if(p=e[f],l=t.noTargetGet?(d=o(n,f))&&d.value:n[f],!c(h?f:v+(m?".":"#")+f,t.forced)&&void 0!==l){if(typeof p==typeof l)continue;u(p,l)}(t.sham||l&&l.sham)&&i(p,"sham",!0),a(n,f,p,t)}}},function(t,e){var n={}.toString;t.exports=function(t){return n.call(t).slice(8,-1)}},function(t,e,n){var r=n(185),o=n(625),i=r.document,a=o(i)&&o(i.createElement);t.exports=function(t){return a?i.createElement(t):{}}},function(t,e,n){var r=n(185),o=n(626),i=n(608),a=n(671),s=n(744),u=n(1028),c=u.get,f=u.enforce,l=String(String).split("String");(t.exports=function(t,e,n,s){var u=!!s&&!!s.unsafe,c=!!s&&!!s.enumerable,p=!!s&&!!s.noTargetGet;"function"==typeof n&&("string"!=typeof e||i(n,"name")||o(n,"name",e),f(n).source=l.join("string"==typeof e?e:"")),t!==r?(u?!p&&t[e]&&(c=!0):delete t[e],c?t[e]=n:o(t,e,n)):c?t[e]=n:a(e,n)})(Function.prototype,"toString",(function(){return"function"==typeof this&&c(this).source||s(this)}))},function(t,e,n){var r,o,i,a=n(1029),s=n(185),u=n(625),c=n(626),f=n(608),l=n(1030),p=n(746),d=s.WeakMap;if(a){var v=new d,h=v.get,m=v.has,y=v.set;r=function(t,e){return y.call(v,t,e),e},o=function(t){return h.call(v,t)||{}},i=function(t){return m.call(v,t)}}else{var g=l("state");p[g]=!0,r=function(t,e){return c(t,g,e),e},o=function(t){return f(t,g)?t[g]:{}},i=function(t){return f(t,g)}}t.exports={set:r,get:o,has:i,enforce:function(t){return i(t)?o(t):r(t,{})},getterFor:function(t){return function(e){var n;if(!u(e)||(n=o(e)).type!==t)throw TypeError("Incompatible receiver, "+t+" required");return n}}}},function(t,e,n){var r=n(185),o=n(744),i=r.WeakMap;t.exports="function"==typeof i&&/native code/.test(o(i))},function(t,e,n){var r=n(1031),o=n(1033),i=r("keys");t.exports=function(t){return i[t]||(i[t]=o(t))}},function(t,e,n){var r=n(1032),o=n(745);(t.exports=function(t,e){return o[t]||(o[t]=void 0!==e?e:{})})("versions",[]).push({version:"3.5.0",mode:r?"pure":"global",copyright:"© 2019 Denis Pushkarev (zloirock.ru)"})},function(t,e){t.exports=!1},function(t,e){var n=0,r=Math.random();t.exports=function(t){return"Symbol("+String(void 0===t?"":t)+")_"+(++n+r).toString(36)}},function(t,e,n){var r=n(608),o=n(1035),i=n(735),a=n(742);t.exports=function(t,e){for(var n=o(e),s=a.f,u=i.f,c=0;c<n.length;c++){var f=n[c];r(t,f)||s(t,f,u(e,f))}}},function(t,e,n){var r=n(1036),o=n(1038),i=n(750),a=n(743);t.exports=r("Reflect","ownKeys")||function(t){var e=o.f(a(t)),n=i.f;return n?e.concat(n(t)):e}},function(t,e,n){var r=n(1037),o=n(185),i=function(t){return"function"==typeof t?t:void 0};t.exports=function(t,e){return arguments.length<2?i(r[t])||i(o[t]):r[t]&&r[t][e]||o[t]&&o[t][e]}},function(t,e,n){var r=n(185);t.exports=r},function(t,e,n){var r=n(747),o=n(749).concat("length","prototype");e.f=Object.getOwnPropertyNames||function(t){return r(t,o)}},function(t,e,n){var r=n(670),o=n(1040),i=n(1041),a=function(t){return function(e,n,a){var s,u=r(e),c=o(u.length),f=i(a,c);if(t&&n!=n){for(;c>f;)if((s=u[f++])!=s)return!0}else for(;c>f;f++)if((t||f in u)&&u[f]===n)return t||f||0;return!t&&-1}};t.exports={includes:a(!0),indexOf:a(!1)}},function(t,e,n){var r=n(748),o=Math.min;t.exports=function(t){return t>0?o(r(t),9007199254740991):0}},function(t,e,n){var r=n(748),o=Math.max,i=Math.min;t.exports=function(t,e){var n=r(t);return n<0?o(n+e,0):i(n,e)}},function(t,e,n){var r=n(607),o=/#|\.prototype\./,i=function(t,e){var n=s[a(t)];return n==c||n!=u&&("function"==typeof e?r(e):!!e)},a=i.normalize=function(t){return String(t).replace(o,".").toLowerCase()},s=i.data={},u=i.NATIVE="N",c=i.POLYFILL="P";t.exports=i},function(t,e,n){"use strict";var r=n(606),o=n(607),i=n(1044),a=n(750),s=n(736),u=n(1045),c=n(738),f=Object.assign,l=Object.defineProperty;t.exports=!f||o((function(){if(r&&1!==f({b:1},f(l({},"a",{enumerable:!0,get:function(){l(this,"b",{value:3,enumerable:!1})}}),{b:2})).b)return!0;var t={},e={},n=Symbol();return t[n]=7,"abcdefghijklmnopqrst".split("").forEach((function(t){e[t]=t})),7!=f({},t)[n]||"abcdefghijklmnopqrst"!=i(f({},e)).join("")}))?function(t,e){for(var n=u(t),o=arguments.length,f=1,l=a.f,p=s.f;o>f;)for(var d,v=c(arguments[f++]),h=l?i(v).concat(l(v)):i(v),m=h.length,y=0;m>y;)d=h[y++],r&&!p.call(v,d)||(n[d]=v[d]);return n}:f},function(t,e,n){var r=n(747),o=n(749);t.exports=Object.keys||function(t){return r(t,o)}},function(t,e,n){var r=n(739);t.exports=function(t){return Object(r(t))}},function(t,e,n){"use strict";var r;Object.defineProperty(e,"__esModule",{value:!0}),e.LogLevel=void 0,e.LogLevel=r,function(t){t.Debug="DEBUG",t.Info="INFO",t.Warn="WARN",t.Error="ERROR",t.Fatal="FATAL"}(r||(e.LogLevel=r={}))},function(t,e,n){"use strict";function r(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}Object.defineProperty(e,"__esModule",{value:!0}),e.LoggerBuilder=void 0;var o=function(){function t(e){!function(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}(this,t),this.context={},this.factory=e}var e,n,o;return e=t,(n=[{key:"setApp",value:function(t){return this.context.app=t,this}},{key:"setUid",value:function(t){return this.context.uid=t,this}},{key:"build",value:function(){return this.factory(this.context)}}])&&r(e.prototype,n),o&&r(e,o),t}();e.LoggerBuilder=o},function(t,e,n){"use strict";var r=function(t){for(var e=arguments.length,n=new Array(e>1?e-1:0),r=1;r<e;r++)n[r-1]=arguments[r];return new Promise((function(e){e(t.apply(void 0,n))}))};t.exports=r,t.exports.default=r},function(t,e,n){"use strict";var r=n(630);n.n(r).a},function(t,e,n){(e=n(103)(!1)).push([t.i,"p.loading[data-v-26577283],p.loading-error[data-v-26577283]{height:100px}.text-center[data-v-26577283]{text-align:center}.app[data-v-26577283]{display:flex;flex-direction:row}.app img[data-v-26577283]{height:50px;width:50px;filter:invert(1)}.app img[data-v-26577283],.app .info[data-v-26577283]{padding:12px}.app .info h3[data-v-26577283],.app .info p[data-v-26577283]{text-align:left}.app .info h3[data-v-26577283]{color:#fff;margin-top:0}.app .info h3>span.icon[data-v-26577283]{display:inline-block}\n",""]),t.exports=e},,,,function(t,e,n){"use strict";n.r(e);var r,o=n(631),i=n(186),a=n(187),s=n(447),u=n(673),c=null===(r=Object(o.getCurrentUser)())?Object(u.getLoggerBuilder)().setApp("core").build():Object(u.getLoggerBuilder)().setApp("core").setUid(r.uid).build(),f=n(168),l=n.n(f),p=n(391),d=n(757),v=n.n(d),h={calendar:{description:Object(a.translate)("core","Schedule work & meetings, synced with all your devices."),icon:Object(i.imagePath)("core","places/calendar.svg")},contacts:{description:Object(a.translate)("core","Keep your colleagues and friends in one place without leaking their private info."),icon:Object(i.imagePath)("core","places/contacts.svg")},mail:{description:Object(a.translate)("core","Simple email app nicely integrated with Files, Contacts and Calendar."),icon:Object(i.imagePath)("core","actions/mail.svg")},talk:{description:Object(a.translate)("core","Screensharing, online meetings and web conferencing – on desktop and with mobile apps.")},onlyoffice:{description:Object(a.translate)("core","Collaboratively edit office documents.")},documentserver_community:{description:Object(a.translate)("core","Local document editing back-end used by the OnlyOffice app.")}},m=Object.keys(h),y=Object(p.loadState)("core","defaultPageUrl"),g={name:"RecommendedApps",data:function(){return{loadingApps:!0,loadingAppsError:!1,apps:[],defaultPageUrl:y}},computed:{recommendedApps:function(){return this.apps.filter((function(t){return m.includes(t.id)}))}},mounted:function(){var t=this;return l.a.get(Object(i.generateUrl)("settings/apps/list")).then((function(t){return t.data})).then((function(e){c.info("".concat(e.apps.length," apps fetched")),t.apps=e.apps.map((function(t){return Object.assign(t,{loading:!1,installationError:!1})})),c.debug("".concat(t.recommendedApps.length," recommended apps found"),{apps:t.recommendedApps}),t.installApps()})).catch((function(e){c.error("could not fetch app list",{error:e}),t.loadingAppsError=!0})).then((function(){t.loadingApps=!1}))},methods:{installApps:function(){var t=v()(1),e=this.recommendedApps.filter((function(t){return!t.active&&t.isCompatible&&t.canInstall})).map((function(e){return t((function(){return c.info("installing ".concat(e.id)),e.loading=!0,l.a.post(Object(i.generateUrl)("settings/apps/enable"),{appIds:[e.id],groups:[]}).catch((function(t){c.error("could not install ".concat(e.id),{error:t}),e.installationError=!0})).then((function(){c.info("installed ".concat(e.id)),e.loading=!1}))}))}));c.debug("installing ".concat(e.length," recommended apps")),Promise.all(e).then((function(){c.info("all recommended apps installed, redirecting …"),window.location=y})).catch((function(t){return c.error("could not install recommended apps",{error:t})}))},customIcon:function(t){return t in h&&h[t].icon?h[t].icon:(c.warn("no app icon for recommended app ".concat(t)),Object(i.imagePath)("core","places/default-app-icon.svg"))},customDescription:function(t){return t in h?h[t].description:(c.warn("no app description for recommended app ".concat(t)),"")}}},E=(n(1049),n(167)),b=Object(E.a)(g,(function(){var t=this,e=t.$createElement,n=t._self._c||e;return n("div",{staticClass:"body-login-container"},[n("h2",[t._v(t._s(t.t("core","Recommended apps")))]),t._v(" "),t.loadingApps?n("p",{staticClass:"loading text-center"},[t._v("\n\t\t"+t._s(t.t("core","Loading apps …"))+"\n\t")]):t.loadingAppsError?n("p",{staticClass:"loading-error text-center"},[t._v("\n\t\t"+t._s(t.t("core","Could not fetch list of apps from the app store."))+"\n\t")]):n("p",{staticClass:"text-center"},[t._v("\n\t\t"+t._s(t.t("core","Installing apps …"))+"\n\t")]),t._v(" "),t._l(t.recommendedApps,(function(e){return n("div",{key:e.id,staticClass:"app"},[n("img",{attrs:{src:t.customIcon(e.id),alt:t.t("core","Nextcloud {app}",{app:e.name})}}),t._v(" "),n("div",{staticClass:"info"},[n("h3",[t._v("\n\t\t\t\t"+t._s(e.name)+"\n\t\t\t\t"),e.loading?n("span",{staticClass:"icon icon-loading-small"}):e.active?n("span",{staticClass:"icon icon-checkmark-white"}):t._e()]),t._v(" "),n("p",{domProps:{innerHTML:t._s(t.customDescription(e.id))}}),t._v(" "),e.installationError?n("p",[n("strong",[t._v(t._s(t.t("core","App download or installation failed")))])]):e.isCompatible?e.canInstall?t._e():n("p",[n("strong",[t._v(t._s(t.t("core","Can't install this app")))])]):n("p",[n("strong",[t._v(t._s(t.t("core","Can't install this app because it is not compatible")))])])])])})),t._v(" "),n("p",{staticClass:"text-center"},[n("a",{attrs:{href:t.defaultPageUrl}},[t._v(t._s(t.t("core","Cancel")))])])],2)}),[],!1,null,"26577283",null).exports;
/*
* @copyright 2019 Christoph Wurst <christoph@winzerhof-wurst.at>
*
diff --git a/core/js/dist/recommendedapps.js.map b/core/js/dist/recommendedapps.js.map
index 06ad22de731..fbaf4ddada5 100644
--- a/core/js/dist/recommendedapps.js.map
+++ b/core/js/dist/recommendedapps.js.map
@@ -1 +1 @@
-{"version":3,"sources":["webpack:///webpack/bootstrap","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/global.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/well-known-symbol.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/fails.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/has.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/global.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/well-known-symbol.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/is-object.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/fails.js","webpack:///./node_modules/@nextcloud/axios/node_modules/axios/lib/utils.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/object-define-property.js","webpack:///(webpack)/buildin/global.js","webpack:///./node_modules/@nextcloud/initial-state/node_modules/core-js/internals/global.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/descriptors.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/create-non-enumerable-property.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/has.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/is-object.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/an-object.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/descriptors.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/object-define-property.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/create-non-enumerable-property.js","webpack:///./node_modules/@nextcloud/initial-state/node_modules/core-js/internals/fails.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/redefine.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/iterators.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/an-object.js","webpack:///./node_modules/@nextcloud/initial-state/node_modules/core-js/internals/is-object.js","webpack:///./node_modules/@nextcloud/initial-state/node_modules/core-js/internals/has.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/export.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/create-property-descriptor.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/to-indexed-object.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/internal-state.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/hidden-keys.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/get-built-in.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/to-length.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/export.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/redefine.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/iterators.js","webpack:///./node_modules/@nextcloud/event-bus/dist/index.js","webpack:///./node_modules/process/browser.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/classof-raw.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/require-object-coercible.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/to-primitive.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/set-global.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/shared-key.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/is-pure.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/uid.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/to-integer.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/enum-bug-keys.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/to-object.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/function-bind-context.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/object-create.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/define-iterator.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/set-to-string-tag.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/to-string-tag-support.js","webpack:///./node_modules/@nextcloud/initial-state/node_modules/core-js/internals/descriptors.js","webpack:///./node_modules/@nextcloud/initial-state/node_modules/core-js/internals/create-non-enumerable-property.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/create-property-descriptor.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/to-indexed-object.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/internal-state.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/hidden-keys.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/get-built-in.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/to-length.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/to-object.js","webpack:///./node_modules/css-loader/dist/runtime/api.js","webpack:///./node_modules/vue-style-loader/lib/listToStyles.js","webpack:///./node_modules/vue-style-loader/lib/addStylesClient.js","webpack:///./node_modules/@nextcloud/initial-state/node_modules/core-js/internals/create-property-descriptor.js","webpack:///./node_modules/@nextcloud/initial-state/node_modules/core-js/internals/to-indexed-object.js","webpack:///./node_modules/@nextcloud/initial-state/node_modules/core-js/internals/to-primitive.js","webpack:///./node_modules/@nextcloud/initial-state/node_modules/core-js/internals/object-define-property.js","webpack:///./node_modules/@nextcloud/initial-state/node_modules/core-js/internals/set-global.js","webpack:///./node_modules/@nextcloud/initial-state/node_modules/core-js/internals/well-known-symbol.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/object-get-own-property-descriptor.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/indexed-object.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/ie8-dom-define.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/document-create-element.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/inspect-source.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/shared-store.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/shared.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/object-keys-internal.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/is-forced.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/is-array.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/array-species-create.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/native-symbol.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/array-method-has-species-support.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/engine-v8-version.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/array-iteration.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/array-method-uses-to-length.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/modules/es.array.iterator.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/iterators-core.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/object-get-prototype-of.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/object-set-prototype-of.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/internal-metadata.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/iterate.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/classof.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/an-instance.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/dom-iterables.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/indexed-object.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/classof-raw.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/require-object-coercible.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/to-primitive.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/set-global.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/shared-key.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/is-pure.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/uid.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/to-integer.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/enum-bug-keys.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/function-bind-context.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/object-create.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/define-iterator.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/set-to-string-tag.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/to-string-tag-support.js","webpack:///./node_modules/vue-loader/lib/runtime/componentNormalizer.js","webpack:///./node_modules/@nextcloud/axios/dist/index.js","webpack:///./node_modules/@nextcloud/router/node_modules/core-js/internals/global.js","webpack:///./node_modules/@nextcloud/router/node_modules/core-js/internals/fails.js","webpack:///./node_modules/@nextcloud/logger/node_modules/core-js/internals/global.js","webpack:///./node_modules/@nextcloud/router/dist/index.js","webpack:///./node_modules/@nextcloud/l10n/dist/index.js","webpack:///./node_modules/@nextcloud/initial-state/node_modules/core-js/internals/object-get-own-property-descriptor.js","webpack:///./node_modules/@nextcloud/initial-state/node_modules/core-js/internals/classof-raw.js","webpack:///./node_modules/@nextcloud/initial-state/node_modules/core-js/internals/require-object-coercible.js","webpack:///./node_modules/@nextcloud/initial-state/node_modules/core-js/internals/ie8-dom-define.js","webpack:///./node_modules/@nextcloud/initial-state/node_modules/core-js/internals/an-object.js","webpack:///./node_modules/@nextcloud/initial-state/node_modules/core-js/internals/inspect-source.js","webpack:///./node_modules/@nextcloud/initial-state/node_modules/core-js/internals/shared-store.js","webpack:///./node_modules/@nextcloud/initial-state/node_modules/core-js/internals/shared.js","webpack:///./node_modules/@nextcloud/initial-state/node_modules/core-js/internals/uid.js","webpack:///./node_modules/@nextcloud/initial-state/node_modules/core-js/internals/hidden-keys.js","webpack:///./node_modules/@nextcloud/initial-state/node_modules/core-js/internals/get-built-in.js","webpack:///./node_modules/@nextcloud/initial-state/node_modules/core-js/internals/to-length.js","webpack:///./node_modules/@nextcloud/initial-state/node_modules/core-js/internals/to-integer.js","webpack:///./node_modules/@nextcloud/initial-state/node_modules/core-js/internals/is-array.js","webpack:///./node_modules/@nextcloud/initial-state/node_modules/core-js/internals/native-symbol.js","webpack:///./node_modules/@nextcloud/initial-state/node_modules/core-js/internals/v8-version.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/object-get-own-property-descriptor.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/object-property-is-enumerable.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/ie8-dom-define.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/document-create-element.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/inspect-source.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/shared-store.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/shared.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/object-keys-internal.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/object-get-own-property-symbols.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/is-forced.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/object-keys.js","webpack:///./node_modules/@nextcloud/axios/node_modules/axios/lib/helpers/bind.js","webpack:///./node_modules/@nextcloud/axios/node_modules/axios/lib/helpers/buildURL.js","webpack:///./node_modules/@nextcloud/axios/node_modules/axios/lib/cancel/isCancel.js","webpack:///./node_modules/@nextcloud/axios/node_modules/axios/lib/defaults.js","webpack:///./node_modules/@nextcloud/axios/node_modules/axios/lib/adapters/xhr.js","webpack:///./node_modules/@nextcloud/axios/node_modules/axios/lib/core/createError.js","webpack:///./node_modules/@nextcloud/axios/node_modules/axios/lib/core/mergeConfig.js","webpack:///./node_modules/@nextcloud/axios/node_modules/axios/lib/cancel/Cancel.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/is-array.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/array-species-create.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/native-symbol.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/array-method-has-species-support.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/engine-v8-version.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/array-iteration.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/array-method-uses-to-length.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/modules/es.array.iterator.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/iterators-core.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/object-get-prototype-of.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/object-set-prototype-of.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/internal-metadata.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/iterate.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/classof.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/an-instance.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/dom-iterables.js","webpack:///./node_modules/@nextcloud/initial-state/dist/index.js","webpack:///./node_modules/@nextcloud/event-bus/dist/ProxyBus.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/semver/semver.js","webpack:///./node_modules/@nextcloud/event-bus/dist/SimpleBus.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/modules/es.array.concat.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/object-property-is-enumerable.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/native-weak-map.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/copy-constructor-properties.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/own-keys.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/path.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/object-get-own-property-names.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/array-includes.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/to-absolute-index.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/object-get-own-property-symbols.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/create-property.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/use-symbol-as-uid.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/engine-user-agent.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/modules/es.array.filter.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/a-function.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/add-to-unscopables.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/object-define-properties.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/object-keys.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/html.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/create-iterator-constructor.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/correct-prototype-getter.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/a-possible-prototype.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/modules/es.map.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/collection.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/freezing.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/is-array-iterator-method.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/get-iterator-method.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/call-with-safe-iteration-closing.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/check-correctness-of-iteration.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/inherit-if-required.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/collection-strong.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/redefine-all.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/set-species.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/modules/es.object.to-string.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/object-to-string.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/modules/es.string.iterator.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/string-multibyte.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/modules/web.dom-collections.for-each.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/array-for-each.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/array-method-is-strict.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/modules/web.dom-collections.iterator.js","webpack:///./node_modules/vue/dist/vue.runtime.esm.js","webpack:///./node_modules/@nextcloud/router/node_modules/core-js/internals/has.js","webpack:///./node_modules/@nextcloud/initial-state/node_modules/core-js/modules/es.array.concat.js","webpack:///./node_modules/@nextcloud/initial-state/node_modules/core-js/internals/export.js","webpack:///./node_modules/@nextcloud/initial-state/node_modules/core-js/internals/object-property-is-enumerable.js","webpack:///./node_modules/@nextcloud/initial-state/node_modules/core-js/internals/indexed-object.js","webpack:///./node_modules/@nextcloud/initial-state/node_modules/core-js/internals/document-create-element.js","webpack:///./node_modules/@nextcloud/initial-state/node_modules/core-js/internals/redefine.js","webpack:///./node_modules/@nextcloud/initial-state/node_modules/core-js/internals/internal-state.js","webpack:///./node_modules/@nextcloud/initial-state/node_modules/core-js/internals/native-weak-map.js","webpack:///./node_modules/@nextcloud/initial-state/node_modules/core-js/internals/shared-key.js","webpack:///./node_modules/@nextcloud/initial-state/node_modules/core-js/internals/is-pure.js","webpack:///./node_modules/@nextcloud/initial-state/node_modules/core-js/internals/copy-constructor-properties.js","webpack:///./node_modules/@nextcloud/initial-state/node_modules/core-js/internals/own-keys.js","webpack:///./node_modules/@nextcloud/initial-state/node_modules/core-js/internals/path.js","webpack:///./node_modules/@nextcloud/initial-state/node_modules/core-js/internals/object-get-own-property-names.js","webpack:///./node_modules/@nextcloud/initial-state/node_modules/core-js/internals/object-keys-internal.js","webpack:///./node_modules/@nextcloud/initial-state/node_modules/core-js/internals/array-includes.js","webpack:///./node_modules/@nextcloud/initial-state/node_modules/core-js/internals/to-absolute-index.js","webpack:///./node_modules/@nextcloud/initial-state/node_modules/core-js/internals/enum-bug-keys.js","webpack:///./node_modules/@nextcloud/initial-state/node_modules/core-js/internals/object-get-own-property-symbols.js","webpack:///./node_modules/@nextcloud/initial-state/node_modules/core-js/internals/is-forced.js","webpack:///./node_modules/@nextcloud/initial-state/node_modules/core-js/internals/to-object.js","webpack:///./node_modules/@nextcloud/initial-state/node_modules/core-js/internals/create-property.js","webpack:///./node_modules/@nextcloud/initial-state/node_modules/core-js/internals/array-species-create.js","webpack:///./node_modules/@nextcloud/initial-state/node_modules/core-js/internals/use-symbol-as-uid.js","webpack:///./node_modules/@nextcloud/initial-state/node_modules/core-js/internals/array-method-has-species-support.js","webpack:///./node_modules/@nextcloud/initial-state/node_modules/core-js/internals/user-agent.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/modules/es.object.assign.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/native-weak-map.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/copy-constructor-properties.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/own-keys.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/path.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/object-get-own-property-names.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/array-includes.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/to-absolute-index.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/object-assign.js","webpack:///./node_modules/@nextcloud/axios/node_modules/axios/index.js","webpack:///./node_modules/@nextcloud/axios/node_modules/axios/lib/axios.js","webpack:///./node_modules/@nextcloud/axios/node_modules/axios/lib/core/Axios.js","webpack:///./node_modules/@nextcloud/axios/node_modules/axios/lib/core/InterceptorManager.js","webpack:///./node_modules/@nextcloud/axios/node_modules/axios/lib/core/dispatchRequest.js","webpack:///./node_modules/@nextcloud/axios/node_modules/axios/lib/core/transformData.js","webpack:///./node_modules/@nextcloud/axios/node_modules/axios/lib/helpers/normalizeHeaderName.js","webpack:///./node_modules/@nextcloud/axios/node_modules/axios/lib/core/settle.js","webpack:///./node_modules/@nextcloud/axios/node_modules/axios/lib/core/enhanceError.js","webpack:///./node_modules/@nextcloud/axios/node_modules/axios/lib/core/buildFullPath.js","webpack:///./node_modules/@nextcloud/axios/node_modules/axios/lib/helpers/isAbsoluteURL.js","webpack:///./node_modules/@nextcloud/axios/node_modules/axios/lib/helpers/combineURLs.js","webpack:///./node_modules/@nextcloud/axios/node_modules/axios/lib/helpers/parseHeaders.js","webpack:///./node_modules/@nextcloud/axios/node_modules/axios/lib/helpers/isURLSameOrigin.js","webpack:///./node_modules/@nextcloud/axios/node_modules/axios/lib/helpers/isValidXss.js","webpack:///./node_modules/@nextcloud/axios/node_modules/axios/lib/helpers/cookies.js","webpack:///./node_modules/@nextcloud/axios/node_modules/axios/lib/cancel/CancelToken.js","webpack:///./node_modules/@nextcloud/axios/node_modules/axios/lib/helpers/spread.js","webpack:///./node_modules/@nextcloud/axios/node_modules/@nextcloud/auth/dist/index.js","webpack:///./node_modules/@nextcloud/axios/node_modules/@nextcloud/auth/dist/requesttoken.js","webpack:///./node_modules/@nextcloud/axios/node_modules/@nextcloud/event-bus/dist/index.js","webpack:///./node_modules/@nextcloud/axios/node_modules/@nextcloud/event-bus/dist/ProxyBus.js","webpack:///./node_modules/@nextcloud/axios/node_modules/semver/semver.js","webpack:///./node_modules/@nextcloud/axios/node_modules/@nextcloud/event-bus/dist/SimpleBus.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/modules/es.array.concat.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/create-property.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/use-symbol-as-uid.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/engine-user-agent.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/modules/es.array.filter.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/a-function.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/add-to-unscopables.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/object-define-properties.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/html.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/create-iterator-constructor.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/correct-prototype-getter.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/a-possible-prototype.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/modules/es.map.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/collection.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/freezing.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/is-array-iterator-method.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/get-iterator-method.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/call-with-safe-iteration-closing.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/check-correctness-of-iteration.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/inherit-if-required.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/collection-strong.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/redefine-all.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/set-species.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/modules/es.object.to-string.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/object-to-string.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/modules/es.string.iterator.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/string-multibyte.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/modules/web.dom-collections.for-each.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/array-for-each.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/array-method-is-strict.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/modules/web.dom-collections.iterator.js","webpack:///./node_modules/@nextcloud/axios/node_modules/@nextcloud/auth/dist/user.js","webpack:///./node_modules/@nextcloud/router/node_modules/core-js/internals/descriptors.js","webpack:///./node_modules/@nextcloud/router/node_modules/core-js/internals/create-non-enumerable-property.js","webpack:///./node_modules/@nextcloud/router/node_modules/core-js/internals/an-object.js","webpack:///./node_modules/@nextcloud/logger/node_modules/core-js/internals/descriptors.js","webpack:///./node_modules/@nextcloud/logger/node_modules/core-js/internals/fails.js","webpack:///./node_modules/@nextcloud/logger/node_modules/core-js/internals/has.js","webpack:///./node_modules/@nextcloud/router/node_modules/core-js/internals/require-object-coercible.js","webpack:///./node_modules/@nextcloud/router/node_modules/core-js/internals/is-object.js","webpack:///./node_modules/@nextcloud/router/node_modules/core-js/internals/redefine.js","webpack:///./node_modules/@nextcloud/router/node_modules/core-js/internals/to-integer.js","webpack:///./node_modules/@nextcloud/logger/node_modules/core-js/internals/is-object.js","webpack:///./node_modules/@nextcloud/logger/node_modules/core-js/internals/create-non-enumerable-property.js","webpack:///./core/src/components/setup/RecommendedApps.vue?5bfe","webpack:///./node_modules/@nextcloud/auth/dist/index.js","webpack:///./node_modules/timers-browserify/main.js","webpack:///./node_modules/setimmediate/setImmediate.js","webpack:///./node_modules/@nextcloud/router/node_modules/core-js/internals/to-indexed-object.js","webpack:///./node_modules/@nextcloud/router/node_modules/core-js/internals/classof-raw.js","webpack:///./node_modules/@nextcloud/router/node_modules/core-js/internals/set-global.js","webpack:///./node_modules/@nextcloud/router/node_modules/core-js/internals/to-string-tag-support.js","webpack:///./node_modules/@nextcloud/router/node_modules/core-js/internals/well-known-symbol.js","webpack:///./node_modules/@nextcloud/logger/node_modules/core-js/internals/to-indexed-object.js","webpack:///./node_modules/@nextcloud/logger/node_modules/core-js/internals/set-global.js","webpack:///./node_modules/@nextcloud/logger/dist/index.js","webpack:///./node_modules/@nextcloud/router/node_modules/core-js/internals/export.js","webpack:///./node_modules/@nextcloud/router/node_modules/core-js/internals/object-get-own-property-descriptor.js","webpack:///./node_modules/@nextcloud/router/node_modules/core-js/internals/object-property-is-enumerable.js","webpack:///./node_modules/@nextcloud/router/node_modules/core-js/internals/create-property-descriptor.js","webpack:///./node_modules/@nextcloud/router/node_modules/core-js/internals/indexed-object.js","webpack:///./node_modules/@nextcloud/router/node_modules/core-js/internals/to-primitive.js","webpack:///./node_modules/@nextcloud/router/node_modules/core-js/internals/ie8-dom-define.js","webpack:///./node_modules/@nextcloud/router/node_modules/core-js/internals/object-define-property.js","webpack:///./node_modules/@nextcloud/router/node_modules/core-js/internals/inspect-source.js","webpack:///./node_modules/@nextcloud/router/node_modules/core-js/internals/shared-store.js","webpack:///./node_modules/@nextcloud/router/node_modules/core-js/internals/shared.js","webpack:///./node_modules/@nextcloud/router/node_modules/core-js/internals/uid.js","webpack:///./node_modules/@nextcloud/router/node_modules/core-js/internals/hidden-keys.js","webpack:///./node_modules/@nextcloud/router/node_modules/core-js/internals/object-keys-internal.js","webpack:///./node_modules/@nextcloud/router/node_modules/core-js/internals/array-includes.js","webpack:///./node_modules/@nextcloud/router/node_modules/core-js/internals/to-length.js","webpack:///./node_modules/@nextcloud/router/node_modules/core-js/internals/enum-bug-keys.js","webpack:///./node_modules/@nextcloud/router/node_modules/core-js/internals/object-get-own-property-symbols.js","webpack:///./node_modules/@nextcloud/router/node_modules/core-js/internals/to-object.js","webpack:///./node_modules/@nextcloud/router/node_modules/core-js/internals/native-symbol.js","webpack:///./node_modules/@nextcloud/router/node_modules/core-js/internals/regexp-flags.js","webpack:///./node_modules/@nextcloud/router/node_modules/core-js/internals/regexp-exec.js","webpack:///./node_modules/@nextcloud/logger/node_modules/core-js/internals/object-get-own-property-descriptor.js","webpack:///./node_modules/@nextcloud/logger/node_modules/core-js/internals/object-property-is-enumerable.js","webpack:///./node_modules/@nextcloud/logger/node_modules/core-js/internals/create-property-descriptor.js","webpack:///./node_modules/@nextcloud/logger/node_modules/core-js/internals/indexed-object.js","webpack:///./node_modules/@nextcloud/logger/node_modules/core-js/internals/require-object-coercible.js","webpack:///./node_modules/@nextcloud/logger/node_modules/core-js/internals/to-primitive.js","webpack:///./node_modules/@nextcloud/logger/node_modules/core-js/internals/ie8-dom-define.js","webpack:///./node_modules/@nextcloud/logger/node_modules/core-js/internals/object-define-property.js","webpack:///./node_modules/@nextcloud/logger/node_modules/core-js/internals/an-object.js","webpack:///./node_modules/@nextcloud/logger/node_modules/core-js/internals/inspect-source.js","webpack:///./node_modules/@nextcloud/logger/node_modules/core-js/internals/shared-store.js","webpack:///./node_modules/@nextcloud/logger/node_modules/core-js/internals/hidden-keys.js","webpack:///./node_modules/@nextcloud/logger/node_modules/core-js/internals/object-keys-internal.js","webpack:///./node_modules/@nextcloud/logger/node_modules/core-js/internals/to-integer.js","webpack:///./node_modules/@nextcloud/logger/node_modules/core-js/internals/enum-bug-keys.js","webpack:///./node_modules/@nextcloud/logger/node_modules/core-js/internals/object-get-own-property-symbols.js","webpack:///./node_modules/p-limit/index.js","webpack:///./node_modules/@nextcloud/auth/dist/requesttoken.js","webpack:///./node_modules/@nextcloud/auth/dist/user.js","webpack:///./node_modules/@nextcloud/router/node_modules/core-js/modules/es.array.index-of.js","webpack:///./node_modules/@nextcloud/router/node_modules/core-js/internals/document-create-element.js","webpack:///./node_modules/@nextcloud/router/node_modules/core-js/internals/internal-state.js","webpack:///./node_modules/@nextcloud/router/node_modules/core-js/internals/native-weak-map.js","webpack:///./node_modules/@nextcloud/router/node_modules/core-js/internals/shared-key.js","webpack:///./node_modules/@nextcloud/router/node_modules/core-js/internals/is-pure.js","webpack:///./node_modules/@nextcloud/router/node_modules/core-js/internals/copy-constructor-properties.js","webpack:///./node_modules/@nextcloud/router/node_modules/core-js/internals/own-keys.js","webpack:///./node_modules/@nextcloud/router/node_modules/core-js/internals/get-built-in.js","webpack:///./node_modules/@nextcloud/router/node_modules/core-js/internals/path.js","webpack:///./node_modules/@nextcloud/router/node_modules/core-js/internals/object-get-own-property-names.js","webpack:///./node_modules/@nextcloud/router/node_modules/core-js/internals/to-absolute-index.js","webpack:///./node_modules/@nextcloud/router/node_modules/core-js/internals/is-forced.js","webpack:///./node_modules/@nextcloud/router/node_modules/core-js/internals/sloppy-array-method.js","webpack:///./node_modules/@nextcloud/router/node_modules/core-js/modules/es.object.assign.js","webpack:///./node_modules/@nextcloud/router/node_modules/core-js/internals/object-assign.js","webpack:///./node_modules/@nextcloud/router/node_modules/core-js/internals/object-keys.js","webpack:///./node_modules/@nextcloud/router/node_modules/core-js/modules/es.object.to-string.js","webpack:///./node_modules/@nextcloud/router/node_modules/core-js/internals/use-symbol-as-uid.js","webpack:///./node_modules/@nextcloud/router/node_modules/core-js/internals/object-to-string.js","webpack:///./node_modules/@nextcloud/router/node_modules/core-js/internals/classof.js","webpack:///./node_modules/@nextcloud/router/node_modules/core-js/modules/es.regexp.to-string.js","webpack:///./node_modules/@nextcloud/router/node_modules/core-js/modules/es.string.replace.js","webpack:///./node_modules/@nextcloud/router/node_modules/core-js/internals/fix-regexp-well-known-symbol-logic.js","webpack:///./node_modules/@nextcloud/router/node_modules/core-js/internals/advance-string-index.js","webpack:///./node_modules/@nextcloud/router/node_modules/core-js/internals/string-multibyte.js","webpack:///./node_modules/@nextcloud/router/node_modules/core-js/internals/regexp-exec-abstract.js","webpack:///./node_modules/@nextcloud/logger/dist/ConsoleLogger.js","webpack:///./node_modules/@nextcloud/logger/node_modules/core-js/modules/es.object.assign.js","webpack:///./node_modules/@nextcloud/logger/node_modules/core-js/internals/export.js","webpack:///./node_modules/@nextcloud/logger/node_modules/core-js/internals/classof-raw.js","webpack:///./node_modules/@nextcloud/logger/node_modules/core-js/internals/document-create-element.js","webpack:///./node_modules/@nextcloud/logger/node_modules/core-js/internals/redefine.js","webpack:///./node_modules/@nextcloud/logger/node_modules/core-js/internals/internal-state.js","webpack:///./node_modules/@nextcloud/logger/node_modules/core-js/internals/native-weak-map.js","webpack:///./node_modules/@nextcloud/logger/node_modules/core-js/internals/shared-key.js","webpack:///./node_modules/@nextcloud/logger/node_modules/core-js/internals/shared.js","webpack:///./node_modules/@nextcloud/logger/node_modules/core-js/internals/is-pure.js","webpack:///./node_modules/@nextcloud/logger/node_modules/core-js/internals/uid.js","webpack:///./node_modules/@nextcloud/logger/node_modules/core-js/internals/copy-constructor-properties.js","webpack:///./node_modules/@nextcloud/logger/node_modules/core-js/internals/own-keys.js","webpack:///./node_modules/@nextcloud/logger/node_modules/core-js/internals/get-built-in.js","webpack:///./node_modules/@nextcloud/logger/node_modules/core-js/internals/path.js","webpack:///./node_modules/@nextcloud/logger/node_modules/core-js/internals/object-get-own-property-names.js","webpack:///./node_modules/@nextcloud/logger/node_modules/core-js/internals/array-includes.js","webpack:///./node_modules/@nextcloud/logger/node_modules/core-js/internals/to-length.js","webpack:///./node_modules/@nextcloud/logger/node_modules/core-js/internals/to-absolute-index.js","webpack:///./node_modules/@nextcloud/logger/node_modules/core-js/internals/is-forced.js","webpack:///./node_modules/@nextcloud/logger/node_modules/core-js/internals/object-assign.js","webpack:///./node_modules/@nextcloud/logger/node_modules/core-js/internals/object-keys.js","webpack:///./node_modules/@nextcloud/logger/node_modules/core-js/internals/to-object.js","webpack:///./node_modules/@nextcloud/logger/dist/contracts.js","webpack:///./node_modules/@nextcloud/logger/dist/Builder.js","webpack:///./node_modules/p-try/index.js","webpack:///./core/src/components/setup/RecommendedApps.vue?ceb6","webpack:///./core/src/components/setup/RecommendedApps.vue?fd81","webpack:///./core/src/logger.js","webpack:///core/src/components/setup/RecommendedApps.vue","webpack:///./core/src/components/setup/RecommendedApps.vue?7e27","webpack:///./core/src/components/setup/RecommendedApps.vue","webpack:///./core/src/components/setup/RecommendedApps.vue?2de2","webpack:///./core/src/recommendedapps.js"],"names":["installedModules","__webpack_require__","moduleId","exports","module","i","l","modules","call","m","c","d","name","getter","o","Object","defineProperty","enumerable","get","r","Symbol","toStringTag","value","t","mode","__esModule","ns","create","key","bind","n","object","property","prototype","hasOwnProperty","p","s","it","Math","check","globalThis","window","self","global","Function","shared","has","uid","NATIVE_SYMBOL","USE_SYMBOL_AS_UID","WellKnownSymbolsStore","createWellKnownSymbol","withoutSetter","exec","error","toString","isArray","val","isUndefined","isObject","isFunction","forEach","obj","fn","length","isArrayBuffer","isBuffer","constructor","isFormData","FormData","isArrayBufferView","ArrayBuffer","isView","buffer","isString","isNumber","isDate","isFile","isBlob","isStream","pipe","isURLSearchParams","URLSearchParams","isStandardBrowserEnv","navigator","product","document","merge","result","assignValue","arguments","deepMerge","extend","a","b","thisArg","trim","str","replace","DESCRIPTORS","IE8_DOM_DEFINE","anObject","toPrimitive","nativeDefineProperty","f","O","P","Attributes","TypeError","g","this","e","fails","definePropertyModule","createPropertyDescriptor","String","createNonEnumerableProperty","setGlobal","inspectSource","InternalStateModule","getInternalState","enforceInternalState","enforce","TEMPLATE","split","options","unsafe","simple","noTargetGet","source","join","getOwnPropertyDescriptor","redefine","copyConstructorProperties","isForced","target","targetProperty","sourceProperty","descriptor","TARGET","GLOBAL","STATIC","stat","forced","undefined","sham","bitmap","configurable","writable","IndexedObject","requireObjectCoercible","set","NATIVE_WEAK_MAP","objectHas","sharedKey","hiddenKeys","WeakMap","store","wmget","wmhas","wmset","metadata","STATE","getterFor","TYPE","state","type","path","aFunction","variable","namespace","method","toInteger","min","argument","subscribe","handler","bus","unsubscribe","emit","event","_ProxyBus","_SimpleBus","OC","_eventBus","_nc_event_bus","console","warn","ProxyBus","SimpleBus","cachedSetTimeout","cachedClearTimeout","process","defaultSetTimout","Error","defaultClearTimeout","runTimeout","fun","setTimeout","clearTimeout","currentQueue","queue","draining","queueIndex","cleanUpNextTick","concat","drainQueue","timeout","len","run","marker","runClearTimeout","Item","array","noop","nextTick","args","Array","push","apply","title","browser","env","argv","version","versions","on","addListener","once","off","removeListener","removeAllListeners","prependListener","prependOnceListener","listeners","binding","cwd","chdir","dir","umask","slice","input","PREFERRED_STRING","valueOf","keys","id","postfix","random","ceil","floor","isNaN","that","activeXDocument","defineProperties","enumBugKeys","html","documentCreateElement","IE_PROTO","EmptyConstructor","scriptTag","content","LT","NullProtoObject","domain","ActiveXObject","iframeDocument","iframe","write","close","temp","parentWindow","NullProtoObjectViaActiveX","style","display","appendChild","src","contentWindow","open","F","Properties","$","createIteratorConstructor","getPrototypeOf","setPrototypeOf","setToStringTag","wellKnownSymbol","IS_PURE","Iterators","IteratorsCore","IteratorPrototype","BUGGY_SAFARI_ITERATORS","ITERATOR","returnThis","Iterable","NAME","IteratorConstructor","next","DEFAULT","IS_SET","FORCED","CurrentIteratorPrototype","methods","KEY","getIterationMethod","KIND","defaultIterator","IterablePrototype","TO_STRING_TAG","INCORRECT_VALUES_NAME","nativeIterator","anyNativeIterator","entries","values","proto","TAG","test","useSourceMap","list","map","item","cssMapping","btoa","sourceMapping","sourceMap","base64","unescape","encodeURIComponent","JSON","stringify","data","sourceURLs","sources","sourceRoot","cssWithMappingToString","mediaQuery","listToStyles","parentId","styles","newStyles","part","css","media","parts","hasDocument","DEBUG","stylesInDom","head","getElementsByTagName","singletonElement","singletonCounter","isProduction","ssrIdKey","isOldIE","userAgent","toLowerCase","addStylesClient","_isProduction","_options","addStylesToDom","newList","mayRemove","domStyle","refs","j","addStyle","createStyleElement","styleElement","createElement","update","remove","querySelector","parentNode","removeChild","styleIndex","applyToSingletonTag","applyToTag","newObj","textStore","replaceText","index","replacement","filter","Boolean","styleSheet","cssText","cssNode","createTextNode","childNodes","insertBefore","setAttribute","ssrId","firstChild","propertyIsEnumerableModule","toIndexedObject","nativeGetOwnPropertyDescriptor","classof","propertyIsEnumerable","EXISTS","functionToString","copyright","indexOf","names","feature","detection","normalize","POLYFILL","NATIVE","string","arg","SPECIES","originalArray","C","getOwnPropertySymbols","V8_VERSION","METHOD_NAME","foo","match","v8","toObject","toLength","arraySpeciesCreate","createMethod","IS_MAP","IS_FILTER","IS_SOME","IS_EVERY","IS_FIND_INDEX","NO_HOLES","$this","callbackfn","specificCreate","boundFunction","some","every","find","findIndex","cache","thrower","ACCESSORS","argument0","argument1","addToUnscopables","defineIterator","setInternalState","iterated","kind","done","Arguments","PrototypeOfArrayIteratorPrototype","arrayIterator","CORRECT_PROTOTYPE_GETTER","ObjectPrototype","aPossiblePrototype","setter","CORRECT_SETTER","__proto__","FREEZING","METADATA","isExtensible","setMetadata","objectID","weakData","meta","REQUIRED","fastKey","getWeakData","onFreeze","isArrayIteratorMethod","getIteratorMethod","callWithSafeIterationClosing","Result","stopped","iterable","AS_ENTRIES","IS_ITERATOR","iterator","iterFn","step","stop","TO_STRING_TAG_SUPPORT","classofRaw","CORRECT_ARGUMENTS","tag","tryGet","callee","Constructor","CSSRuleList","CSSStyleDeclaration","CSSValueList","ClientRectList","DOMRectList","DOMStringList","DOMTokenList","DataTransferItemList","FileList","HTMLAllCollection","HTMLCollection","HTMLFormElement","HTMLSelectElement","MediaList","MimeTypeArray","NamedNodeMap","NodeList","PaintRequestList","Plugin","PluginArray","SVGLengthList","SVGNumberList","SVGPathSegList","SVGPointList","SVGStringList","SVGTransformList","SourceBufferList","StyleSheetList","TextTrackCueList","TextTrackList","TouchList","normalizeComponent","scriptExports","render","staticRenderFns","functionalTemplate","injectStyles","scopeId","moduleIdentifier","shadowMode","hook","_compiled","functional","_scopeId","context","$vnode","ssrContext","parent","__VUE_SSR_CONTEXT__","_registeredComponents","add","_ssrRegister","$root","$options","shadowRoot","_injectStyles","originalRender","h","existing","beforeCreate","default","_axios","_auth","client","headers","requesttoken","getRequestToken","cancelableClient","assign","CancelToken","isCancel","onRequestTokenUpdate","token","defaults","_default","getRootUrl","generateFilePath","imagePath","generateUrl","generateOcsUrl","generateRemoteUrl","linkTo","app","file","service","location","protocol","host","linkToRemoteBase","url","params","allOptions","escape","noRewrite","_build","text","vars","charAt","config","modRewriteWorking","isCore","coreApps","link","substring","appswebroots","encodeURI","webroot","getLocale","getLanguage","translate","count","L10N","translatePlural","textSingular","textPlural","getFirstDay","firstDay","getDayNames","dayNames","getDayNamesShort","dayNamesShort","getDayNamesMin","dayNamesMin","getMonthNames","monthNames","getMonthNamesShort","monthNamesShort","nativePropertyIsEnumerable","NASHORN_BUG","1","V","internalObjectKeys","utils","encode","paramsSerializer","serializedParams","v","toISOString","hashmarkIndex","__CANCEL__","normalizeHeaderName","DEFAULT_CONTENT_TYPE","setContentTypeIfUnset","adapter","XMLHttpRequest","transformRequest","transformResponse","parse","xsrfCookieName","xsrfHeaderName","maxContentLength","validateStatus","status","common","settle","buildURL","buildFullPath","parseHeaders","isURLSameOrigin","createError","Promise","resolve","reject","requestData","requestHeaders","request","auth","username","password","Authorization","fullPath","baseURL","toUpperCase","onreadystatechange","readyState","responseURL","responseHeaders","getAllResponseHeaders","response","responseType","responseText","statusText","onabort","onerror","ontimeout","timeoutErrorMessage","cookies","xsrfValue","withCredentials","read","setRequestHeader","onDownloadProgress","addEventListener","onUploadProgress","upload","cancelToken","promise","then","cancel","abort","send","enhanceError","message","code","config1","config2","valueFromConfig2Keys","mergeDeepPropertiesKeys","defaultToConfig2Keys","prop","axiosKeys","otherKeys","Cancel","loadState","elem","atob","_semver","_defineProperties","props","packageJson","instance","_classCallCheck","_defineProperty","getVersion","valid","major","protoProps","staticProps","debug","NODE_DEBUG","unshift","log","SEMVER_SPEC_VERSION","MAX_LENGTH","MAX_SAFE_INTEGER","Number","re","tokens","R","tok","NUMERICIDENTIFIER","NUMERICIDENTIFIERLOOSE","NONNUMERICIDENTIFIER","MAINVERSION","MAINVERSIONLOOSE","PRERELEASEIDENTIFIER","PRERELEASEIDENTIFIERLOOSE","PRERELEASE","PRERELEASELOOSE","BUILDIDENTIFIER","BUILD","FULLPLAIN","FULL","LOOSEPLAIN","LOOSE","GTLT","XRANGEIDENTIFIERLOOSE","XRANGEIDENTIFIER","XRANGEPLAIN","XRANGEPLAINLOOSE","XRANGE","XRANGELOOSE","COERCE","COERCERTL","RegExp","LONETILDE","TILDETRIM","TILDE","TILDELOOSE","LONECARET","CARETTRIM","CARET","CARETLOOSE","COMPARATORLOOSE","COMPARATOR","COMPARATORTRIM","HYPHENRANGE","HYPHENRANGELOOSE","STAR","loose","includePrerelease","SemVer","er","raw","minor","patch","prerelease","num","build","format","clean","compare","other","compareMain","comparePre","compareIdentifiers","compareBuild","inc","release","identifier","diff","version1","version2","eq","v1","v2","prefix","defaultResult","numeric","anum","bnum","gt","lt","neq","gte","lte","cmp","op","Comparator","comp","semver","ANY","operator","rcompareIdentifiers","compareLoose","versionA","versionB","rcompare","sort","rsort","Range","range","parseRange","isSatisfiable","comparators","remainingComparators","testComparator","pop","otherComparator","intersects","isX","hyphenReplace","$0","from","fM","fm","fp","fpr","fb","to","tM","tm","tp","tpr","tb","testSet","allowed","satisfies","outside","hilo","gtfn","ltefn","ltfn","ecomp","high","low","comparator","rangeTmp","sameDirectionIncreasing","sameDirectionDecreasing","sameSemVer","differentDirectionsInclusive","oppositeDirectionsLessThan","oppositeDirectionsGreaterThan","comps","hr","compRe","_","M","pr","ret","replaceCaret","replaceCarets","replaceTilde","replaceTildes","gtlt","xM","xm","xp","anyX","replaceXRange","replaceXRanges","replaceStars","parseComparator","thisComparators","rangeComparators","thisComparator","rangeComparator","toComparators","maxSatisfying","max","maxSV","rangeObj","minSatisfying","minSV","minVersion","minver","compver","validRange","ltr","gtr","parsed","r1","r2","coerce","rtl","lastIndex","Map","handlers","createProperty","arrayMethodHasSpeciesSupport","IS_CONCAT_SPREADABLE","IS_CONCAT_SPREADABLE_SUPPORT","SPECIES_SUPPORT","isConcatSpreadable","spreadable","k","E","A","ownKeys","getOwnPropertyDescriptorModule","getBuiltIn","getOwnPropertyNamesModule","getOwnPropertySymbolsModule","getOwnPropertyNames","toAbsoluteIndex","IS_INCLUDES","el","fromIndex","includes","integer","propertyKey","$filter","arrayMethodUsesToLength","HAS_SPECIES_SUPPORT","USES_TO_LENGTH","UNSCOPABLES","ArrayPrototype","objectKeys","collection","collectionStrong","init","InternalMetadataModule","iterate","anInstance","checkCorrectnessOfIteration","inheritIfRequired","CONSTRUCTOR_NAME","wrapper","IS_WEAK","ADDER","NativeConstructor","NativePrototype","exported","fixMethod","nativeMethod","getConstructor","HASNT_CHAINING","THROWS_ON_PRIMITIVES","ACCEPT_ITERABLES","BUGGY_ZERO","$instance","dummy","clear","setStrong","preventExtensions","ENTRIES","returnMethod","SAFE_CLOSING","called","iteratorWithReturn","SKIP_CLOSING","ITERATION_SUPPORT","Wrapper","NewTarget","NewTargetPrototype","redefineAll","setSpecies","internalStateGetterFor","first","last","size","define","previous","entry","getEntry","removed","prev","ITERATOR_NAME","getInternalCollectionState","getInternalIteratorState","point","CONVERT_TO_STRING","pos","second","S","position","charCodeAt","codeAt","DOMIterables","COLLECTION_NAME","Collection","CollectionPrototype","$forEach","arrayMethodIsStrict","STRICT_METHOD","ArrayIteratorMethods","ArrayValues","emptyObject","freeze","isUndef","isDef","isTrue","isPrimitive","_toString","isPlainObject","isRegExp","isValidArrayIndex","parseFloat","isFinite","isPromise","catch","toNumber","makeMap","expectsLowerCase","isReservedAttribute","arr","splice","hasOwn","cached","camelizeRE","camelize","capitalize","hyphenateRE","hyphenate","ctx","boundFn","_length","toArray","start","_from","res","no","identity","looseEqual","isObjectA","isObjectB","isArrayA","isArrayB","Date","getTime","keysA","keysB","looseIndexOf","SSR_ATTR","ASSET_TYPES","LIFECYCLE_HOOKS","optionMergeStrategies","silent","productionTip","devtools","performance","errorHandler","warnHandler","ignoredElements","keyCodes","isReservedTag","isReservedAttr","isUnknownElement","getTagNamespace","parsePlatformTagName","mustUseProp","async","_lifecycleHooks","unicodeRegExp","def","bailRE","_isServer","hasProto","inBrowser","inWeex","WXEnvironment","platform","weexPlatform","UA","isIE","isIE9","isEdge","isIOS","isFF","nativeWatch","watch","supportsPassive","opts","isServerRendering","VUE_ENV","__VUE_DEVTOOLS_GLOBAL_HOOK__","isNative","Ctor","_Set","hasSymbol","Reflect","Set","Dep","subs","addSub","sub","removeSub","depend","addDep","notify","targetStack","pushTarget","popTarget","VNode","children","elm","componentOptions","asyncFactory","fnContext","fnOptions","fnScopeId","componentInstance","isStatic","isRootInsert","isComment","isCloned","isOnce","asyncMeta","isAsyncPlaceholder","prototypeAccessors","child","createEmptyVNode","node","createTextVNode","cloneVNode","vnode","cloned","arrayProto","arrayMethods","original","inserted","ob","__ob__","observeArray","dep","arrayKeys","shouldObserve","toggleObserving","Observer","vmCount","protoAugment","copyAugment","walk","observe","asRootData","_isVue","defineReactive$$1","customSetter","shallow","childOb","dependArray","newVal","del","items","strats","mergeData","toVal","fromVal","mergeDataOrFn","parentVal","childVal","vm","instanceData","defaultData","mergeHook","hooks","dedupeHooks","mergeAssets","key$1","inject","computed","provide","defaultStrat","mergeOptions","normalizeProps","normalized","normalizeInject","dirs","directives","def$$1","normalizeDirectives","_base","extends","mixins","mergeField","strat","resolveAsset","warnMissing","assets","camelizedId","PascalCaseId","validateProp","propOptions","propsData","absent","booleanIndex","getTypeIndex","stringIndex","_props","getType","getPropDefaultValue","prevShouldObserve","isSameType","expectedTypes","handleError","err","info","cur","$parent","errorCaptured","globalHandleError","invokeWithErrorHandling","_handled","logError","timerFunc","isUsingMicroTask","callbacks","pending","flushCallbacks","copies","MutationObserver","setImmediate","counter","observer","textNode","characterData","cb","_resolve","seenObjects","traverse","_traverse","seen","isA","isFrozen","depId","normalizeEvent","passive","once$$1","capture","createFnInvoker","fns","invoker","arguments$1","updateListeners","oldOn","remove$$1","createOnceHandler","old","mergeVNodeHook","hookKey","oldHook","wrappedHook","merged","checkProp","hash","altKey","preserve","normalizeChildren","normalizeArrayChildren","nestedIndex","isTextNode","shift","_isVList","resolveInject","provideKey","_provided","provideDefault","resolveSlots","slots","attrs","slot","name$1","isWhitespace","normalizeScopedSlots","normalSlots","prevSlots","hasNormalSlots","isStable","$stable","$key","_normalized","$hasNormal","normalizeScopedSlot","key$2","proxyNormalSlot","proxy","renderList","renderSlot","fallback","bindObject","nodes","scopedSlotFn","$scopedSlots","$slots","$createElement","resolveFilter","isKeyNotMatch","expect","actual","checkKeyCodes","eventKeyCode","builtInKeyCode","eventKeyName","builtInKeyName","mappedKeyCode","bindObjectProps","asProp","isSync","loop","domProps","camelizedKey","hyphenatedKey","$event","renderStatic","isInFor","_staticTrees","tree","markStatic","_renderProxy","markOnce","markStaticNode","bindObjectListeners","ours","resolveScopedSlots","hasDynamicKeys","contentHashKey","bindDynamicKeys","baseObj","prependModifier","symbol","installRenderHelpers","_o","_n","_s","_l","_t","_q","_i","_m","_f","_k","_b","_v","_e","_u","_g","_d","_p","FunctionalRenderContext","contextVm","this$1","_original","isCompiled","needNormalization","injections","scopedSlots","_c","cloneAndMarkFunctionalResult","renderContext","clone","mergeProps","componentVNodeHooks","hydrating","_isDestroyed","keepAlive","mountedNode","prepatch","_isComponent","_parentVnode","inlineTemplate","createComponentInstanceForVnode","activeInstance","$mount","oldVnode","parentVnode","renderChildren","newScopedSlots","oldScopedSlots","hasDynamicScopedSlot","needsForceUpdate","_renderChildren","_vnode","$attrs","$listeners","propKeys","_propKeys","oldListeners","_parentListeners","updateComponentListeners","$forceUpdate","updateChildComponent","insert","_isMounted","callHook","_inactive","activatedChildren","activateChildComponent","destroy","deactivateChildComponent","direct","_directInactive","isInInactiveTree","$children","$destroy","hooksToMerge","createComponent","baseCtor","cid","factory","errorComp","resolved","owner","currentRenderingInstance","owners","loading","loadingComp","sync","timerLoading","timerTimeout","$on","forceRender","renderCompleted","ensureCtor","reason","component","delay","resolveAsyncComponent","createAsyncPlaceholder","resolveConstructorOptions","model","callback","transformModel","extractPropsFromVNodeData","vnodes","createFunctionalComponent","nativeOn","abstract","toMerge","_merged","mergeHook$1","installComponentHooks","f1","f2","SIMPLE_NORMALIZE","ALWAYS_NORMALIZE","normalizationType","alwaysNormalize","is","simpleNormalizeChildren","pre","applyNS","force","class","registerDeepBindings","_createElement","base","getFirstComponentChild","remove$1","$off","_target","onceHandler","setActiveInstance","prevActiveInstance","_hasHookEvent","$emit","waiting","flushing","currentFlushTimestamp","getNow","now","createEvent","timeStamp","flushSchedulerQueue","watcher","before","activatedQueue","updatedQueue","callActivatedHooks","_watcher","callUpdatedHooks","uid$2","Watcher","expOrFn","isRenderWatcher","_watchers","deep","user","lazy","active","dirty","deps","newDeps","depIds","newDepIds","expression","segments","parsePath","cleanupDeps","tmp","queueWatcher","oldValue","evaluate","teardown","_isBeingDestroyed","sharedPropertyDefinition","sourceKey","initState","propsOptions","initProps","initMethods","_data","getData","initData","watchers","_computedWatchers","isSSR","userDef","computedWatcherOptions","defineComputed","initComputed","createWatcher","initWatch","shouldCache","createComputedGetter","createGetterInvoker","$watch","uid$3","super","superOptions","modifiedOptions","modified","latest","sealed","sealedOptions","resolveModifiedOptions","extendOptions","components","Vue","_init","initExtend","Super","SuperId","cachedCtors","_Ctor","Sub","Comp","initProps$1","initComputed$1","mixin","use","getComponentName","matches","pattern","pruneCache","keepAliveInstance","cachedNode","pruneCacheEntry","current","cached$$1","_uid","vnodeComponentOptions","_componentTag","initInternalComponent","_self","$refs","initLifecycle","_events","initEvents","parentData","initRender","initInjections","initProvide","initMixin","dataDef","propsDef","$set","$delete","immediate","stateMixin","hookRE","$once","i$1","cbs","eventsMixin","_update","prevEl","$el","prevVnode","restoreActiveInstance","__patch__","__vue__","lifecycleMixin","$nextTick","_render","ref","renderMixin","patternTypes","builtInComponents","KeepAlive","include","exclude","created","destroyed","mounted","parseInt","configDef","util","defineReactive","delete","observable","plugin","installedPlugins","_installedPlugins","install","initUse","initMixin$1","definition","initAssetRegisters","initGlobalAPI","acceptValue","isEnumeratedAttr","isValidContentEditableValue","convertEnumeratedValue","isFalsyAttrValue","isBooleanAttr","xlinkNS","isXlink","getXlinkProp","genClassForVnode","childNode","mergeClassData","staticClass","dynamicClass","stringifyClass","renderClass","stringified","stringifyArray","stringifyObject","namespaceMap","svg","math","isHTMLTag","isSVG","unknownElementCache","isTextInputType","nodeOps","tagName","multiple","createElementNS","createComment","newNode","referenceNode","nextSibling","setTextContent","textContent","setStyleScope","registerRef","isRemoval","refInFor","emptyNode","sameVnode","typeA","typeB","sameInputType","createKeyToOldIdx","beginIdx","endIdx","updateDirectives","oldDir","isCreate","isDestroy","oldDirs","normalizeDirectives$1","newDirs","dirsWithInsert","dirsWithPostpatch","oldArg","callHook$1","componentUpdated","callInsert","emptyModifiers","modifiers","getRawDirName","rawName","baseModules","updateAttrs","inheritAttrs","oldAttrs","setAttr","removeAttributeNS","removeAttribute","baseSetAttr","setAttributeNS","__ieph","blocker","stopImmediatePropagation","removeEventListener","updateClass","oldData","cls","transitionClass","_transitionClasses","_prevClass","target$1","klass","RANGE_TOKEN","CHECKBOX_RADIO_TOKEN","createOnceHandler$1","remove$2","useMicrotaskFix","add$1","attachedTimestamp","_wrapper","currentTarget","ownerDocument","updateDOMListeners","change","normalizeEvents","svgContainer","events","updateDOMProps","oldProps","_value","strCur","shouldUpdateValue","innerHTML","checkVal","composing","notInFocus","activeElement","isNotInFocusAndDirty","_vModifiers","number","isDirtyWithModifiers","parseStyleText","propertyDelimiter","normalizeStyleData","normalizeStyleBinding","staticStyle","bindingStyle","emptyStyle","cssVarRE","importantRE","setProp","setProperty","normalizedName","vendorNames","capName","updateStyle","oldStaticStyle","oldStyleBinding","normalizedStyle","oldStyle","newStyle","checkChild","styleData","getStyle","whitespaceRE","addClass","classList","getAttribute","removeClass","tar","resolveTransition","autoCssTransition","enterClass","enterToClass","enterActiveClass","leaveClass","leaveToClass","leaveActiveClass","hasTransition","TRANSITION","ANIMATION","transitionProp","transitionEndEvent","animationProp","animationEndEvent","ontransitionend","onwebkittransitionend","onanimationend","onwebkitanimationend","raf","requestAnimationFrame","nextFrame","addTransitionClass","transitionClasses","removeTransitionClass","whenTransitionEnds","expectedType","getTransitionInfo","propCount","ended","end","onEnd","transformRE","getComputedStyle","transitionDelays","transitionDurations","transitionTimeout","getTimeout","animationDelays","animationDurations","animationTimeout","hasTransform","delays","durations","toMs","enter","toggleDisplay","_leaveCb","cancelled","transition","_enterCb","nodeType","appearClass","appearToClass","appearActiveClass","beforeEnter","afterEnter","enterCancelled","beforeAppear","appear","afterAppear","appearCancelled","duration","transitionNode","isAppear","startClass","activeClass","toClass","beforeEnterHook","enterHook","afterEnterHook","enterCancelledHook","explicitEnterDuration","expectsCSS","userWantsControl","getHookArgumentsLength","show","pendingNode","_pending","isValidDuration","leave","rm","beforeLeave","afterLeave","leaveCancelled","delayLeave","explicitLeaveDuration","performLeave","invokerFns","_enter","backend","removeNode","createElm","insertedVnodeQueue","parentElm","refElm","nested","ownerArray","isReactivated","initComponent","innerNode","activate","reactivateComponent","setScope","createChildren","invokeCreateHooks","pendingInsert","isPatchable","ref$$1","ancestor","addVnodes","startIdx","invokeDestroyHook","removeVnodes","ch","removeAndInvokeRemoveHook","childElm","createRmCb","findIdxInOld","oldCh","patchVnode","removeOnly","hydrate","newCh","oldKeyToIdx","idxInOld","vnodeToMove","oldStartIdx","newStartIdx","oldEndIdx","oldStartVnode","oldEndVnode","newEndIdx","newStartVnode","newEndVnode","canMove","updateChildren","postpatch","invokeInsertHook","initial","isRenderedModule","inVPre","hasChildNodes","childrenMatch","fullInvoke","isInitialPatch","isRealElement","hasAttribute","oldElm","patchable","i$2","createPatchFunction","vmodel","trigger","directive","_vOptions","setSelected","getValue","onCompositionStart","onCompositionEnd","prevOptions","curOptions","hasNoMatchingOption","actuallySetSelected","isMultiple","selected","option","selectedIndex","initEvent","dispatchEvent","locateNode","platformDirectives","transition$$1","originalDisplay","__vOriginalDisplay","unbind","transitionProps","getRealChild","compOptions","extractTransitionData","placeholder","rawChild","isNotTextNode","isVShowDirective","Transition","hasParentTransition","_leaving","oldRawChild","oldChild","isSameChild","delayedLeave","moveClass","callPendingCbs","_moveCb","recordPosition","newPos","getBoundingClientRect","applyTranslation","oldPos","dx","left","dy","top","moved","transform","WebkitTransform","transitionDuration","platformComponents","TransitionGroup","beforeMount","kept","prevChildren","rawChildren","transitionData","c$1","updated","hasMove","_reflow","body","offsetHeight","propertyName","_hasMove","cloneNode","attr","HTMLUnknownElement","HTMLElement","updateComponent","mountComponent","query","nativeAssign","B","chr","T","argumentsLength","Axios","mergeConfig","createInstance","defaultConfig","axios","instanceConfig","all","promises","spread","InterceptorManager","dispatchRequest","interceptors","chain","interceptor","fulfilled","rejected","getUri","eject","transformData","throwIfCancellationRequested","throwIfRequested","isAxiosError","toJSON","description","fileName","lineNumber","columnNumber","stack","isAbsoluteURL","combineURLs","requestedURL","relativeURL","ignoreDuplicateOf","line","substr","isValidXss","originURL","msie","urlParsingNode","resolveURL","href","search","hostname","port","pathname","requestURL","expires","secure","cookie","toGMTString","decodeURIComponent","executor","resolvePromise","_requesttoken","_user","getCurrentUser","observers","tokenElement","displayName","uidElement","displayNameElement","locals","Timeout","clearFn","_id","_clearFn","scope","setInterval","clearInterval","unref","enroll","msecs","_idleTimeoutId","_idleTimeout","unenroll","_unrefActive","_onTimeout","clearImmediate","registerImmediate","channel","messagePrefix","onGlobalMessage","nextHandle","tasksByHandle","currentlyRunningATask","doc","attachTo","handle","runIfPresent","postMessage","importScripts","postMessageIsAsynchronous","oldOnMessage","onmessage","canUsePostMessage","MessageChannel","port1","port2","documentElement","script","attachEvent","task","getLoggerBuilder","getLogger","_ConsoleLogger","_Builder","LoggerBuilder","buildConsoleLogger","ignoreCase","multiline","dotAll","unicode","sticky","re1","re2","regexpFlags","nativeExec","nativeReplace","patchedExec","UPDATES_LAST_INDEX_WRONG","NPCG_INCLUDED","reCopy","pTry","require","pLimit","concurrency","isInteger","Infinity","activeCount","enqueue","generator","pendingCount","$indexOf","sloppyArrayMethod","nativeIndexOf","NEGATIVE_ZERO","SLOPPY_METHOD","searchElement","flags","RegExpPrototype","nativeToString","NOT_GENERIC","INCORRECT_NAME","rf","fixRegExpWellKnownSymbolLogic","advanceStringIndex","regExpExec","SUBSTITUTION_SYMBOLS","SUBSTITUTION_SYMBOLS_NO_NAMED","REPLACE","maybeCallNative","searchValue","replaceValue","replacer","regexp","rx","functionalReplace","fullUnicode","results","accumulatedResult","nextSourcePosition","matched","captures","namedCaptures","groups","replacerArgs","getSubstitution","tailPos","symbols","regexpExec","REPLACE_SUPPORTS_NAMED_GROUPS","SPLIT_WORKS_WITH_OVERWRITTEN_EXEC","originalExec","SYMBOL","DELEGATES_TO_SYMBOL","DELEGATES_TO_EXEC","execCalled","nativeRegExpMethod","arg2","forceStringMethod","stringMethod","regexMethod","ConsoleLogger","_contracts","level","msg","formatMessage","LogLevel","Debug","Info","Warn","Fatal","appId","arguments_","___CSS_LOADER_API_IMPORT___","setApp","setUid","_vm","_h","customIcon","customDescription","isCompatible","canInstall","defaultPageUrl","__webpack_nonce__","__webpack_public_path__","RecommendedApps","logger"],"mappings":"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","file":"recommendedapps.js","sourcesContent":[" \t// The module cache\n \tvar installedModules = {};\n\n \t// The require function\n \tfunction __webpack_require__(moduleId) {\n\n \t\t// Check if module is in cache\n \t\tif(installedModules[moduleId]) {\n \t\t\treturn installedModules[moduleId].exports;\n \t\t}\n \t\t// Create a new module (and put it into the cache)\n \t\tvar module = installedModules[moduleId] = {\n \t\t\ti: moduleId,\n \t\t\tl: false,\n \t\t\texports: {}\n \t\t};\n\n \t\t// Execute the module function\n \t\tmodules[moduleId].call(module.exports, module, module.exports, __webpack_require__);\n\n \t\t// Flag the module as loaded\n \t\tmodule.l = true;\n\n \t\t// Return the exports of the module\n \t\treturn module.exports;\n \t}\n\n\n \t// expose the modules object (__webpack_modules__)\n \t__webpack_require__.m = modules;\n\n \t// expose the module cache\n \t__webpack_require__.c = installedModules;\n\n \t// define getter function for harmony exports\n \t__webpack_require__.d = function(exports, name, getter) {\n \t\tif(!__webpack_require__.o(exports, name)) {\n \t\t\tObject.defineProperty(exports, name, { enumerable: true, get: getter });\n \t\t}\n \t};\n\n \t// define __esModule on exports\n \t__webpack_require__.r = function(exports) {\n \t\tif(typeof Symbol !== 'undefined' && Symbol.toStringTag) {\n \t\t\tObject.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });\n \t\t}\n \t\tObject.defineProperty(exports, '__esModule', { value: true });\n \t};\n\n \t// create a fake namespace object\n \t// mode & 1: value is a module id, require it\n \t// mode & 2: merge all properties of value into the ns\n \t// mode & 4: return value when already ns object\n \t// mode & 8|1: behave like require\n \t__webpack_require__.t = function(value, mode) {\n \t\tif(mode & 1) value = __webpack_require__(value);\n \t\tif(mode & 8) return value;\n \t\tif((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;\n \t\tvar ns = Object.create(null);\n \t\t__webpack_require__.r(ns);\n \t\tObject.defineProperty(ns, 'default', { enumerable: true, value: value });\n \t\tif(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));\n \t\treturn ns;\n \t};\n\n \t// getDefaultExport function for compatibility with non-harmony modules\n \t__webpack_require__.n = function(module) {\n \t\tvar getter = module && module.__esModule ?\n \t\t\tfunction getDefault() { return module['default']; } :\n \t\t\tfunction getModuleExports() { return module; };\n \t\t__webpack_require__.d(getter, 'a', getter);\n \t\treturn getter;\n \t};\n\n \t// Object.prototype.hasOwnProperty.call\n \t__webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };\n\n \t// __webpack_public_path__\n \t__webpack_require__.p = \"\";\n\n\n \t// Load entry module and return exports\n \treturn __webpack_require__(__webpack_require__.s = 1054);\n","var check = function (it) {\n return it && it.Math == Math && it;\n};\n\n// https://github.com/zloirock/core-js/issues/86#issuecomment-115759028\nmodule.exports =\n // eslint-disable-next-line no-undef\n check(typeof globalThis == 'object' && globalThis) ||\n check(typeof window == 'object' && window) ||\n check(typeof self == 'object' && self) ||\n check(typeof global == 'object' && global) ||\n // eslint-disable-next-line no-new-func\n Function('return this')();\n","var global = require('../internals/global');\nvar shared = require('../internals/shared');\nvar has = require('../internals/has');\nvar uid = require('../internals/uid');\nvar NATIVE_SYMBOL = require('../internals/native-symbol');\nvar USE_SYMBOL_AS_UID = require('../internals/use-symbol-as-uid');\n\nvar WellKnownSymbolsStore = shared('wks');\nvar Symbol = global.Symbol;\nvar createWellKnownSymbol = USE_SYMBOL_AS_UID ? Symbol : Symbol && Symbol.withoutSetter || uid;\n\nmodule.exports = function (name) {\n if (!has(WellKnownSymbolsStore, name)) {\n if (NATIVE_SYMBOL && has(Symbol, name)) WellKnownSymbolsStore[name] = Symbol[name];\n else WellKnownSymbolsStore[name] = createWellKnownSymbol('Symbol.' + name);\n } return WellKnownSymbolsStore[name];\n};\n","module.exports = function (exec) {\n try {\n return !!exec();\n } catch (error) {\n return true;\n }\n};\n","var hasOwnProperty = {}.hasOwnProperty;\n\nmodule.exports = function (it, key) {\n return hasOwnProperty.call(it, key);\n};\n","var check = function (it) {\n return it && it.Math == Math && it;\n};\n\n// https://github.com/zloirock/core-js/issues/86#issuecomment-115759028\nmodule.exports =\n // eslint-disable-next-line no-undef\n check(typeof globalThis == 'object' && globalThis) ||\n check(typeof window == 'object' && window) ||\n check(typeof self == 'object' && self) ||\n check(typeof global == 'object' && global) ||\n // eslint-disable-next-line no-new-func\n Function('return this')();\n","var global = require('../internals/global');\nvar shared = require('../internals/shared');\nvar has = require('../internals/has');\nvar uid = require('../internals/uid');\nvar NATIVE_SYMBOL = require('../internals/native-symbol');\nvar USE_SYMBOL_AS_UID = require('../internals/use-symbol-as-uid');\n\nvar WellKnownSymbolsStore = shared('wks');\nvar Symbol = global.Symbol;\nvar createWellKnownSymbol = USE_SYMBOL_AS_UID ? Symbol : Symbol && Symbol.withoutSetter || uid;\n\nmodule.exports = function (name) {\n if (!has(WellKnownSymbolsStore, name)) {\n if (NATIVE_SYMBOL && has(Symbol, name)) WellKnownSymbolsStore[name] = Symbol[name];\n else WellKnownSymbolsStore[name] = createWellKnownSymbol('Symbol.' + name);\n } return WellKnownSymbolsStore[name];\n};\n","module.exports = function (it) {\n return typeof it === 'object' ? it !== null : typeof it === 'function';\n};\n","module.exports = function (exec) {\n try {\n return !!exec();\n } catch (error) {\n return true;\n }\n};\n","'use strict';\n\nvar bind = require('./helpers/bind');\n\n/*global toString:true*/\n\n// utils is a library of generic helper functions non-specific to axios\n\nvar toString = Object.prototype.toString;\n\n/**\n * Determine if a value is an Array\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if value is an Array, otherwise false\n */\nfunction isArray(val) {\n return toString.call(val) === '[object Array]';\n}\n\n/**\n * Determine if a value is undefined\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if the value is undefined, otherwise false\n */\nfunction isUndefined(val) {\n return typeof val === 'undefined';\n}\n\n/**\n * Determine if a value is a Buffer\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if value is a Buffer, otherwise false\n */\nfunction isBuffer(val) {\n return val !== null && !isUndefined(val) && val.constructor !== null && !isUndefined(val.constructor)\n && typeof val.constructor.isBuffer === 'function' && val.constructor.isBuffer(val);\n}\n\n/**\n * Determine if a value is an ArrayBuffer\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if value is an ArrayBuffer, otherwise false\n */\nfunction isArrayBuffer(val) {\n return toString.call(val) === '[object ArrayBuffer]';\n}\n\n/**\n * Determine if a value is a FormData\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if value is an FormData, otherwise false\n */\nfunction isFormData(val) {\n return (typeof FormData !== 'undefined') && (val instanceof FormData);\n}\n\n/**\n * Determine if a value is a view on an ArrayBuffer\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if value is a view on an ArrayBuffer, otherwise false\n */\nfunction isArrayBufferView(val) {\n var result;\n if ((typeof ArrayBuffer !== 'undefined') && (ArrayBuffer.isView)) {\n result = ArrayBuffer.isView(val);\n } else {\n result = (val) && (val.buffer) && (val.buffer instanceof ArrayBuffer);\n }\n return result;\n}\n\n/**\n * Determine if a value is a String\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if value is a String, otherwise false\n */\nfunction isString(val) {\n return typeof val === 'string';\n}\n\n/**\n * Determine if a value is a Number\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if value is a Number, otherwise false\n */\nfunction isNumber(val) {\n return typeof val === 'number';\n}\n\n/**\n * Determine if a value is an Object\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if value is an Object, otherwise false\n */\nfunction isObject(val) {\n return val !== null && typeof val === 'object';\n}\n\n/**\n * Determine if a value is a Date\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if value is a Date, otherwise false\n */\nfunction isDate(val) {\n return toString.call(val) === '[object Date]';\n}\n\n/**\n * Determine if a value is a File\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if value is a File, otherwise false\n */\nfunction isFile(val) {\n return toString.call(val) === '[object File]';\n}\n\n/**\n * Determine if a value is a Blob\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if value is a Blob, otherwise false\n */\nfunction isBlob(val) {\n return toString.call(val) === '[object Blob]';\n}\n\n/**\n * Determine if a value is a Function\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if value is a Function, otherwise false\n */\nfunction isFunction(val) {\n return toString.call(val) === '[object Function]';\n}\n\n/**\n * Determine if a value is a Stream\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if value is a Stream, otherwise false\n */\nfunction isStream(val) {\n return isObject(val) && isFunction(val.pipe);\n}\n\n/**\n * Determine if a value is a URLSearchParams object\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if value is a URLSearchParams object, otherwise false\n */\nfunction isURLSearchParams(val) {\n return typeof URLSearchParams !== 'undefined' && val instanceof URLSearchParams;\n}\n\n/**\n * Trim excess whitespace off the beginning and end of a string\n *\n * @param {String} str The String to trim\n * @returns {String} The String freed of excess whitespace\n */\nfunction trim(str) {\n return str.replace(/^\\s*/, '').replace(/\\s*$/, '');\n}\n\n/**\n * Determine if we're running in a standard browser environment\n *\n * This allows axios to run in a web worker, and react-native.\n * Both environments support XMLHttpRequest, but not fully standard globals.\n *\n * web workers:\n * typeof window -> undefined\n * typeof document -> undefined\n *\n * react-native:\n * navigator.product -> 'ReactNative'\n * nativescript\n * navigator.product -> 'NativeScript' or 'NS'\n */\nfunction isStandardBrowserEnv() {\n if (typeof navigator !== 'undefined' && (navigator.product === 'ReactNative' ||\n navigator.product === 'NativeScript' ||\n navigator.product === 'NS')) {\n return false;\n }\n return (\n typeof window !== 'undefined' &&\n typeof document !== 'undefined'\n );\n}\n\n/**\n * Iterate over an Array or an Object invoking a function for each item.\n *\n * If `obj` is an Array callback will be called passing\n * the value, index, and complete array for each item.\n *\n * If 'obj' is an Object callback will be called passing\n * the value, key, and complete object for each property.\n *\n * @param {Object|Array} obj The object to iterate\n * @param {Function} fn The callback to invoke for each item\n */\nfunction forEach(obj, fn) {\n // Don't bother if no value provided\n if (obj === null || typeof obj === 'undefined') {\n return;\n }\n\n // Force an array if not already something iterable\n if (typeof obj !== 'object') {\n /*eslint no-param-reassign:0*/\n obj = [obj];\n }\n\n if (isArray(obj)) {\n // Iterate over array values\n for (var i = 0, l = obj.length; i < l; i++) {\n fn.call(null, obj[i], i, obj);\n }\n } else {\n // Iterate over object keys\n for (var key in obj) {\n if (Object.prototype.hasOwnProperty.call(obj, key)) {\n fn.call(null, obj[key], key, obj);\n }\n }\n }\n}\n\n/**\n * Accepts varargs expecting each argument to be an object, then\n * immutably merges the properties of each object and returns result.\n *\n * When multiple objects contain the same key the later object in\n * the arguments list will take precedence.\n *\n * Example:\n *\n * ```js\n * var result = merge({foo: 123}, {foo: 456});\n * console.log(result.foo); // outputs 456\n * ```\n *\n * @param {Object} obj1 Object to merge\n * @returns {Object} Result of all merge properties\n */\nfunction merge(/* obj1, obj2, obj3, ... */) {\n var result = {};\n function assignValue(val, key) {\n if (typeof result[key] === 'object' && typeof val === 'object') {\n result[key] = merge(result[key], val);\n } else {\n result[key] = val;\n }\n }\n\n for (var i = 0, l = arguments.length; i < l; i++) {\n forEach(arguments[i], assignValue);\n }\n return result;\n}\n\n/**\n * Function equal to merge with the difference being that no reference\n * to original objects is kept.\n *\n * @see merge\n * @param {Object} obj1 Object to merge\n * @returns {Object} Result of all merge properties\n */\nfunction deepMerge(/* obj1, obj2, obj3, ... */) {\n var result = {};\n function assignValue(val, key) {\n if (typeof result[key] === 'object' && typeof val === 'object') {\n result[key] = deepMerge(result[key], val);\n } else if (typeof val === 'object') {\n result[key] = deepMerge({}, val);\n } else {\n result[key] = val;\n }\n }\n\n for (var i = 0, l = arguments.length; i < l; i++) {\n forEach(arguments[i], assignValue);\n }\n return result;\n}\n\n/**\n * Extends object a by mutably adding to it the properties of object b.\n *\n * @param {Object} a The object to be extended\n * @param {Object} b The object to copy properties from\n * @param {Object} thisArg The object to bind function to\n * @return {Object} The resulting value of object a\n */\nfunction extend(a, b, thisArg) {\n forEach(b, function assignValue(val, key) {\n if (thisArg && typeof val === 'function') {\n a[key] = bind(val, thisArg);\n } else {\n a[key] = val;\n }\n });\n return a;\n}\n\nmodule.exports = {\n isArray: isArray,\n isArrayBuffer: isArrayBuffer,\n isBuffer: isBuffer,\n isFormData: isFormData,\n isArrayBufferView: isArrayBufferView,\n isString: isString,\n isNumber: isNumber,\n isObject: isObject,\n isUndefined: isUndefined,\n isDate: isDate,\n isFile: isFile,\n isBlob: isBlob,\n isFunction: isFunction,\n isStream: isStream,\n isURLSearchParams: isURLSearchParams,\n isStandardBrowserEnv: isStandardBrowserEnv,\n forEach: forEach,\n merge: merge,\n deepMerge: deepMerge,\n extend: extend,\n trim: trim\n};\n","var DESCRIPTORS = require('../internals/descriptors');\nvar IE8_DOM_DEFINE = require('../internals/ie8-dom-define');\nvar anObject = require('../internals/an-object');\nvar toPrimitive = require('../internals/to-primitive');\n\nvar nativeDefineProperty = Object.defineProperty;\n\n// `Object.defineProperty` method\n// https://tc39.github.io/ecma262/#sec-object.defineproperty\nexports.f = DESCRIPTORS ? nativeDefineProperty : function defineProperty(O, P, Attributes) {\n anObject(O);\n P = toPrimitive(P, true);\n anObject(Attributes);\n if (IE8_DOM_DEFINE) try {\n return nativeDefineProperty(O, P, Attributes);\n } catch (error) { /* empty */ }\n if ('get' in Attributes || 'set' in Attributes) throw TypeError('Accessors not supported');\n if ('value' in Attributes) O[P] = Attributes.value;\n return O;\n};\n","var g;\n\n// This works in non-strict mode\ng = (function() {\n\treturn this;\n})();\n\ntry {\n\t// This works if eval is allowed (see CSP)\n\tg = g || new Function(\"return this\")();\n} catch (e) {\n\t// This works if the window reference is available\n\tif (typeof window === \"object\") g = window;\n}\n\n// g can still be undefined, but nothing to do about it...\n// We return undefined, instead of nothing here, so it's\n// easier to handle this case. if(!global) { ...}\n\nmodule.exports = g;\n","var check = function (it) {\n return it && it.Math == Math && it;\n};\n\n// https://github.com/zloirock/core-js/issues/86#issuecomment-115759028\nmodule.exports =\n // eslint-disable-next-line no-undef\n check(typeof globalThis == 'object' && globalThis) ||\n check(typeof window == 'object' && window) ||\n check(typeof self == 'object' && self) ||\n check(typeof global == 'object' && global) ||\n // eslint-disable-next-line no-new-func\n Function('return this')();\n","var fails = require('../internals/fails');\n\n// Thank's IE8 for his funny defineProperty\nmodule.exports = !fails(function () {\n return Object.defineProperty({}, 1, { get: function () { return 7; } })[1] != 7;\n});\n","var DESCRIPTORS = require('../internals/descriptors');\nvar definePropertyModule = require('../internals/object-define-property');\nvar createPropertyDescriptor = require('../internals/create-property-descriptor');\n\nmodule.exports = DESCRIPTORS ? function (object, key, value) {\n return definePropertyModule.f(object, key, createPropertyDescriptor(1, value));\n} : function (object, key, value) {\n object[key] = value;\n return object;\n};\n","var hasOwnProperty = {}.hasOwnProperty;\n\nmodule.exports = function (it, key) {\n return hasOwnProperty.call(it, key);\n};\n","module.exports = function (it) {\n return typeof it === 'object' ? it !== null : typeof it === 'function';\n};\n","var isObject = require('../internals/is-object');\n\nmodule.exports = function (it) {\n if (!isObject(it)) {\n throw TypeError(String(it) + ' is not an object');\n } return it;\n};\n","var fails = require('../internals/fails');\n\n// Thank's IE8 for his funny defineProperty\nmodule.exports = !fails(function () {\n return Object.defineProperty({}, 1, { get: function () { return 7; } })[1] != 7;\n});\n","var DESCRIPTORS = require('../internals/descriptors');\nvar IE8_DOM_DEFINE = require('../internals/ie8-dom-define');\nvar anObject = require('../internals/an-object');\nvar toPrimitive = require('../internals/to-primitive');\n\nvar nativeDefineProperty = Object.defineProperty;\n\n// `Object.defineProperty` method\n// https://tc39.github.io/ecma262/#sec-object.defineproperty\nexports.f = DESCRIPTORS ? nativeDefineProperty : function defineProperty(O, P, Attributes) {\n anObject(O);\n P = toPrimitive(P, true);\n anObject(Attributes);\n if (IE8_DOM_DEFINE) try {\n return nativeDefineProperty(O, P, Attributes);\n } catch (error) { /* empty */ }\n if ('get' in Attributes || 'set' in Attributes) throw TypeError('Accessors not supported');\n if ('value' in Attributes) O[P] = Attributes.value;\n return O;\n};\n","var DESCRIPTORS = require('../internals/descriptors');\nvar definePropertyModule = require('../internals/object-define-property');\nvar createPropertyDescriptor = require('../internals/create-property-descriptor');\n\nmodule.exports = DESCRIPTORS ? function (object, key, value) {\n return definePropertyModule.f(object, key, createPropertyDescriptor(1, value));\n} : function (object, key, value) {\n object[key] = value;\n return object;\n};\n","module.exports = function (exec) {\n try {\n return !!exec();\n } catch (error) {\n return true;\n }\n};\n","var global = require('../internals/global');\nvar createNonEnumerableProperty = require('../internals/create-non-enumerable-property');\nvar has = require('../internals/has');\nvar setGlobal = require('../internals/set-global');\nvar inspectSource = require('../internals/inspect-source');\nvar InternalStateModule = require('../internals/internal-state');\n\nvar getInternalState = InternalStateModule.get;\nvar enforceInternalState = InternalStateModule.enforce;\nvar TEMPLATE = String(String).split('String');\n\n(module.exports = function (O, key, value, options) {\n var unsafe = options ? !!options.unsafe : false;\n var simple = options ? !!options.enumerable : false;\n var noTargetGet = options ? !!options.noTargetGet : false;\n if (typeof value == 'function') {\n if (typeof key == 'string' && !has(value, 'name')) createNonEnumerableProperty(value, 'name', key);\n enforceInternalState(value).source = TEMPLATE.join(typeof key == 'string' ? key : '');\n }\n if (O === global) {\n if (simple) O[key] = value;\n else setGlobal(key, value);\n return;\n } else if (!unsafe) {\n delete O[key];\n } else if (!noTargetGet && O[key]) {\n simple = true;\n }\n if (simple) O[key] = value;\n else createNonEnumerableProperty(O, key, value);\n// add fake Function#toString for correct work wrapped methods / constructors with methods like LoDash isNative\n})(Function.prototype, 'toString', function toString() {\n return typeof this == 'function' && getInternalState(this).source || inspectSource(this);\n});\n","module.exports = {};\n","var isObject = require('../internals/is-object');\n\nmodule.exports = function (it) {\n if (!isObject(it)) {\n throw TypeError(String(it) + ' is not an object');\n } return it;\n};\n","module.exports = function (it) {\n return typeof it === 'object' ? it !== null : typeof it === 'function';\n};\n","var hasOwnProperty = {}.hasOwnProperty;\n\nmodule.exports = function (it, key) {\n return hasOwnProperty.call(it, key);\n};\n","var global = require('../internals/global');\nvar getOwnPropertyDescriptor = require('../internals/object-get-own-property-descriptor').f;\nvar createNonEnumerableProperty = require('../internals/create-non-enumerable-property');\nvar redefine = require('../internals/redefine');\nvar setGlobal = require('../internals/set-global');\nvar copyConstructorProperties = require('../internals/copy-constructor-properties');\nvar isForced = require('../internals/is-forced');\n\n/*\n options.target - name of the target object\n options.global - target is the global object\n options.stat - export as static methods of target\n options.proto - export as prototype methods of target\n options.real - real prototype method for the `pure` version\n options.forced - export even if the native feature is available\n options.bind - bind methods to the target, required for the `pure` version\n options.wrap - wrap constructors to preventing global pollution, required for the `pure` version\n options.unsafe - use the simple assignment of property instead of delete + defineProperty\n options.sham - add a flag to not completely full polyfills\n options.enumerable - export as enumerable property\n options.noTargetGet - prevent calling a getter on target\n*/\nmodule.exports = function (options, source) {\n var TARGET = options.target;\n var GLOBAL = options.global;\n var STATIC = options.stat;\n var FORCED, target, key, targetProperty, sourceProperty, descriptor;\n if (GLOBAL) {\n target = global;\n } else if (STATIC) {\n target = global[TARGET] || setGlobal(TARGET, {});\n } else {\n target = (global[TARGET] || {}).prototype;\n }\n if (target) for (key in source) {\n sourceProperty = source[key];\n if (options.noTargetGet) {\n descriptor = getOwnPropertyDescriptor(target, key);\n targetProperty = descriptor && descriptor.value;\n } else targetProperty = target[key];\n FORCED = isForced(GLOBAL ? key : TARGET + (STATIC ? '.' : '#') + key, options.forced);\n // contained in target\n if (!FORCED && targetProperty !== undefined) {\n if (typeof sourceProperty === typeof targetProperty) continue;\n copyConstructorProperties(sourceProperty, targetProperty);\n }\n // add a flag to not completely full polyfills\n if (options.sham || (targetProperty && targetProperty.sham)) {\n createNonEnumerableProperty(sourceProperty, 'sham', true);\n }\n // extend global\n redefine(target, key, sourceProperty, options);\n }\n};\n","module.exports = function (bitmap, value) {\n return {\n enumerable: !(bitmap & 1),\n configurable: !(bitmap & 2),\n writable: !(bitmap & 4),\n value: value\n };\n};\n","// toObject with fallback for non-array-like ES3 strings\nvar IndexedObject = require('../internals/indexed-object');\nvar requireObjectCoercible = require('../internals/require-object-coercible');\n\nmodule.exports = function (it) {\n return IndexedObject(requireObjectCoercible(it));\n};\n","var NATIVE_WEAK_MAP = require('../internals/native-weak-map');\nvar global = require('../internals/global');\nvar isObject = require('../internals/is-object');\nvar createNonEnumerableProperty = require('../internals/create-non-enumerable-property');\nvar objectHas = require('../internals/has');\nvar sharedKey = require('../internals/shared-key');\nvar hiddenKeys = require('../internals/hidden-keys');\n\nvar WeakMap = global.WeakMap;\nvar set, get, has;\n\nvar enforce = function (it) {\n return has(it) ? get(it) : set(it, {});\n};\n\nvar getterFor = function (TYPE) {\n return function (it) {\n var state;\n if (!isObject(it) || (state = get(it)).type !== TYPE) {\n throw TypeError('Incompatible receiver, ' + TYPE + ' required');\n } return state;\n };\n};\n\nif (NATIVE_WEAK_MAP) {\n var store = new WeakMap();\n var wmget = store.get;\n var wmhas = store.has;\n var wmset = store.set;\n set = function (it, metadata) {\n wmset.call(store, it, metadata);\n return metadata;\n };\n get = function (it) {\n return wmget.call(store, it) || {};\n };\n has = function (it) {\n return wmhas.call(store, it);\n };\n} else {\n var STATE = sharedKey('state');\n hiddenKeys[STATE] = true;\n set = function (it, metadata) {\n createNonEnumerableProperty(it, STATE, metadata);\n return metadata;\n };\n get = function (it) {\n return objectHas(it, STATE) ? it[STATE] : {};\n };\n has = function (it) {\n return objectHas(it, STATE);\n };\n}\n\nmodule.exports = {\n set: set,\n get: get,\n has: has,\n enforce: enforce,\n getterFor: getterFor\n};\n","module.exports = {};\n","var path = require('../internals/path');\nvar global = require('../internals/global');\n\nvar aFunction = function (variable) {\n return typeof variable == 'function' ? variable : undefined;\n};\n\nmodule.exports = function (namespace, method) {\n return arguments.length < 2 ? aFunction(path[namespace]) || aFunction(global[namespace])\n : path[namespace] && path[namespace][method] || global[namespace] && global[namespace][method];\n};\n","var toInteger = require('../internals/to-integer');\n\nvar min = Math.min;\n\n// `ToLength` abstract operation\n// https://tc39.github.io/ecma262/#sec-tolength\nmodule.exports = function (argument) {\n return argument > 0 ? min(toInteger(argument), 0x1FFFFFFFFFFFFF) : 0; // 2 ** 53 - 1 == 9007199254740991\n};\n","var global = require('../internals/global');\nvar getOwnPropertyDescriptor = require('../internals/object-get-own-property-descriptor').f;\nvar createNonEnumerableProperty = require('../internals/create-non-enumerable-property');\nvar redefine = require('../internals/redefine');\nvar setGlobal = require('../internals/set-global');\nvar copyConstructorProperties = require('../internals/copy-constructor-properties');\nvar isForced = require('../internals/is-forced');\n\n/*\n options.target - name of the target object\n options.global - target is the global object\n options.stat - export as static methods of target\n options.proto - export as prototype methods of target\n options.real - real prototype method for the `pure` version\n options.forced - export even if the native feature is available\n options.bind - bind methods to the target, required for the `pure` version\n options.wrap - wrap constructors to preventing global pollution, required for the `pure` version\n options.unsafe - use the simple assignment of property instead of delete + defineProperty\n options.sham - add a flag to not completely full polyfills\n options.enumerable - export as enumerable property\n options.noTargetGet - prevent calling a getter on target\n*/\nmodule.exports = function (options, source) {\n var TARGET = options.target;\n var GLOBAL = options.global;\n var STATIC = options.stat;\n var FORCED, target, key, targetProperty, sourceProperty, descriptor;\n if (GLOBAL) {\n target = global;\n } else if (STATIC) {\n target = global[TARGET] || setGlobal(TARGET, {});\n } else {\n target = (global[TARGET] || {}).prototype;\n }\n if (target) for (key in source) {\n sourceProperty = source[key];\n if (options.noTargetGet) {\n descriptor = getOwnPropertyDescriptor(target, key);\n targetProperty = descriptor && descriptor.value;\n } else targetProperty = target[key];\n FORCED = isForced(GLOBAL ? key : TARGET + (STATIC ? '.' : '#') + key, options.forced);\n // contained in target\n if (!FORCED && targetProperty !== undefined) {\n if (typeof sourceProperty === typeof targetProperty) continue;\n copyConstructorProperties(sourceProperty, targetProperty);\n }\n // add a flag to not completely full polyfills\n if (options.sham || (targetProperty && targetProperty.sham)) {\n createNonEnumerableProperty(sourceProperty, 'sham', true);\n }\n // extend global\n redefine(target, key, sourceProperty, options);\n }\n};\n","var global = require('../internals/global');\nvar createNonEnumerableProperty = require('../internals/create-non-enumerable-property');\nvar has = require('../internals/has');\nvar setGlobal = require('../internals/set-global');\nvar inspectSource = require('../internals/inspect-source');\nvar InternalStateModule = require('../internals/internal-state');\n\nvar getInternalState = InternalStateModule.get;\nvar enforceInternalState = InternalStateModule.enforce;\nvar TEMPLATE = String(String).split('String');\n\n(module.exports = function (O, key, value, options) {\n var unsafe = options ? !!options.unsafe : false;\n var simple = options ? !!options.enumerable : false;\n var noTargetGet = options ? !!options.noTargetGet : false;\n if (typeof value == 'function') {\n if (typeof key == 'string' && !has(value, 'name')) createNonEnumerableProperty(value, 'name', key);\n enforceInternalState(value).source = TEMPLATE.join(typeof key == 'string' ? key : '');\n }\n if (O === global) {\n if (simple) O[key] = value;\n else setGlobal(key, value);\n return;\n } else if (!unsafe) {\n delete O[key];\n } else if (!noTargetGet && O[key]) {\n simple = true;\n }\n if (simple) O[key] = value;\n else createNonEnumerableProperty(O, key, value);\n// add fake Function#toString for correct work wrapped methods / constructors with methods like LoDash isNative\n})(Function.prototype, 'toString', function toString() {\n return typeof this == 'function' && getInternalState(this).source || inspectSource(this);\n});\n","module.exports = {};\n","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.subscribe = subscribe;\nexports.unsubscribe = unsubscribe;\nexports.emit = emit;\n\nvar _ProxyBus = require(\"./ProxyBus\");\n\nvar _SimpleBus = require(\"./SimpleBus\");\n\nfunction getBus() {\n if (typeof window.OC !== 'undefined' && window.OC._eventBus && typeof window._nc_event_bus === 'undefined') {\n console.warn('found old event bus instance at OC._eventBus. Update your version!');\n window._nc_event_bus = window.OC._eventBus;\n } // Either use an existing event bus instance or create one\n\n\n if (typeof window._nc_event_bus !== 'undefined') {\n return new _ProxyBus.ProxyBus(window._nc_event_bus);\n } else {\n return window._nc_event_bus = new _SimpleBus.SimpleBus();\n }\n}\n\nvar bus = getBus();\n/**\n * Register an event listener\n *\n * @param name name of the event\n * @param handler callback invoked for every matching event emitted on the bus\n */\n\nfunction subscribe(name, handler) {\n bus.subscribe(name, handler);\n}\n/**\n * Unregister a previously registered event listener\n *\n * Note: doesn't work with anonymous functions (closures). Use method of an object or store listener function in variable.\n *\n * @param name name of the event\n * @param handler callback passed to `subscribed`\n */\n\n\nfunction unsubscribe(name, handler) {\n bus.unsubscribe(name, handler);\n}\n/**\n * Emit an event\n *\n * @param name name of the event\n * @param event event payload\n */\n\n\nfunction emit(name, event) {\n bus.emit(name, event);\n}\n//# sourceMappingURL=index.js.map","// shim for using process in browser\nvar process = module.exports = {};\n\n// cached from whatever global is present so that test runners that stub it\n// don't break things. But we need to wrap it in a try catch in case it is\n// wrapped in strict mode code which doesn't define any globals. It's inside a\n// function because try/catches deoptimize in certain engines.\n\nvar cachedSetTimeout;\nvar cachedClearTimeout;\n\nfunction defaultSetTimout() {\n throw new Error('setTimeout has not been defined');\n}\nfunction defaultClearTimeout () {\n throw new Error('clearTimeout has not been defined');\n}\n(function () {\n try {\n if (typeof setTimeout === 'function') {\n cachedSetTimeout = setTimeout;\n } else {\n cachedSetTimeout = defaultSetTimout;\n }\n } catch (e) {\n cachedSetTimeout = defaultSetTimout;\n }\n try {\n if (typeof clearTimeout === 'function') {\n cachedClearTimeout = clearTimeout;\n } else {\n cachedClearTimeout = defaultClearTimeout;\n }\n } catch (e) {\n cachedClearTimeout = defaultClearTimeout;\n }\n} ())\nfunction runTimeout(fun) {\n if (cachedSetTimeout === setTimeout) {\n //normal enviroments in sane situations\n return setTimeout(fun, 0);\n }\n // if setTimeout wasn't available but was latter defined\n if ((cachedSetTimeout === defaultSetTimout || !cachedSetTimeout) && setTimeout) {\n cachedSetTimeout = setTimeout;\n return setTimeout(fun, 0);\n }\n try {\n // when when somebody has screwed with setTimeout but no I.E. maddness\n return cachedSetTimeout(fun, 0);\n } catch(e){\n try {\n // When we are in I.E. but the script has been evaled so I.E. doesn't trust the global object when called normally\n return cachedSetTimeout.call(null, fun, 0);\n } catch(e){\n // same as above but when it's a version of I.E. that must have the global object for 'this', hopfully our context correct otherwise it will throw a global error\n return cachedSetTimeout.call(this, fun, 0);\n }\n }\n\n\n}\nfunction runClearTimeout(marker) {\n if (cachedClearTimeout === clearTimeout) {\n //normal enviroments in sane situations\n return clearTimeout(marker);\n }\n // if clearTimeout wasn't available but was latter defined\n if ((cachedClearTimeout === defaultClearTimeout || !cachedClearTimeout) && clearTimeout) {\n cachedClearTimeout = clearTimeout;\n return clearTimeout(marker);\n }\n try {\n // when when somebody has screwed with setTimeout but no I.E. maddness\n return cachedClearTimeout(marker);\n } catch (e){\n try {\n // When we are in I.E. but the script has been evaled so I.E. doesn't trust the global object when called normally\n return cachedClearTimeout.call(null, marker);\n } catch (e){\n // same as above but when it's a version of I.E. that must have the global object for 'this', hopfully our context correct otherwise it will throw a global error.\n // Some versions of I.E. have different rules for clearTimeout vs setTimeout\n return cachedClearTimeout.call(this, marker);\n }\n }\n\n\n\n}\nvar queue = [];\nvar draining = false;\nvar currentQueue;\nvar queueIndex = -1;\n\nfunction cleanUpNextTick() {\n if (!draining || !currentQueue) {\n return;\n }\n draining = false;\n if (currentQueue.length) {\n queue = currentQueue.concat(queue);\n } else {\n queueIndex = -1;\n }\n if (queue.length) {\n drainQueue();\n }\n}\n\nfunction drainQueue() {\n if (draining) {\n return;\n }\n var timeout = runTimeout(cleanUpNextTick);\n draining = true;\n\n var len = queue.length;\n while(len) {\n currentQueue = queue;\n queue = [];\n while (++queueIndex < len) {\n if (currentQueue) {\n currentQueue[queueIndex].run();\n }\n }\n queueIndex = -1;\n len = queue.length;\n }\n currentQueue = null;\n draining = false;\n runClearTimeout(timeout);\n}\n\nprocess.nextTick = function (fun) {\n var args = new Array(arguments.length - 1);\n if (arguments.length > 1) {\n for (var i = 1; i < arguments.length; i++) {\n args[i - 1] = arguments[i];\n }\n }\n queue.push(new Item(fun, args));\n if (queue.length === 1 && !draining) {\n runTimeout(drainQueue);\n }\n};\n\n// v8 likes predictible objects\nfunction Item(fun, array) {\n this.fun = fun;\n this.array = array;\n}\nItem.prototype.run = function () {\n this.fun.apply(null, this.array);\n};\nprocess.title = 'browser';\nprocess.browser = true;\nprocess.env = {};\nprocess.argv = [];\nprocess.version = ''; // empty string to avoid regexp issues\nprocess.versions = {};\n\nfunction noop() {}\n\nprocess.on = noop;\nprocess.addListener = noop;\nprocess.once = noop;\nprocess.off = noop;\nprocess.removeListener = noop;\nprocess.removeAllListeners = noop;\nprocess.emit = noop;\nprocess.prependListener = noop;\nprocess.prependOnceListener = noop;\n\nprocess.listeners = function (name) { return [] }\n\nprocess.binding = function (name) {\n throw new Error('process.binding is not supported');\n};\n\nprocess.cwd = function () { return '/' };\nprocess.chdir = function (dir) {\n throw new Error('process.chdir is not supported');\n};\nprocess.umask = function() { return 0; };\n","var toString = {}.toString;\n\nmodule.exports = function (it) {\n return toString.call(it).slice(8, -1);\n};\n","// `RequireObjectCoercible` abstract operation\n// https://tc39.github.io/ecma262/#sec-requireobjectcoercible\nmodule.exports = function (it) {\n if (it == undefined) throw TypeError(\"Can't call method on \" + it);\n return it;\n};\n","var isObject = require('../internals/is-object');\n\n// `ToPrimitive` abstract operation\n// https://tc39.github.io/ecma262/#sec-toprimitive\n// instead of the ES6 spec version, we didn't implement @@toPrimitive case\n// and the second argument - flag - preferred type is a string\nmodule.exports = function (input, PREFERRED_STRING) {\n if (!isObject(input)) return input;\n var fn, val;\n if (PREFERRED_STRING && typeof (fn = input.toString) == 'function' && !isObject(val = fn.call(input))) return val;\n if (typeof (fn = input.valueOf) == 'function' && !isObject(val = fn.call(input))) return val;\n if (!PREFERRED_STRING && typeof (fn = input.toString) == 'function' && !isObject(val = fn.call(input))) return val;\n throw TypeError(\"Can't convert object to primitive value\");\n};\n","var global = require('../internals/global');\nvar createNonEnumerableProperty = require('../internals/create-non-enumerable-property');\n\nmodule.exports = function (key, value) {\n try {\n createNonEnumerableProperty(global, key, value);\n } catch (error) {\n global[key] = value;\n } return value;\n};\n","var shared = require('../internals/shared');\nvar uid = require('../internals/uid');\n\nvar keys = shared('keys');\n\nmodule.exports = function (key) {\n return keys[key] || (keys[key] = uid(key));\n};\n","module.exports = false;\n","var id = 0;\nvar postfix = Math.random();\n\nmodule.exports = function (key) {\n return 'Symbol(' + String(key === undefined ? '' : key) + ')_' + (++id + postfix).toString(36);\n};\n","var ceil = Math.ceil;\nvar floor = Math.floor;\n\n// `ToInteger` abstract operation\n// https://tc39.github.io/ecma262/#sec-tointeger\nmodule.exports = function (argument) {\n return isNaN(argument = +argument) ? 0 : (argument > 0 ? floor : ceil)(argument);\n};\n","// IE8- don't enum bug keys\nmodule.exports = [\n 'constructor',\n 'hasOwnProperty',\n 'isPrototypeOf',\n 'propertyIsEnumerable',\n 'toLocaleString',\n 'toString',\n 'valueOf'\n];\n","var requireObjectCoercible = require('../internals/require-object-coercible');\n\n// `ToObject` abstract operation\n// https://tc39.github.io/ecma262/#sec-toobject\nmodule.exports = function (argument) {\n return Object(requireObjectCoercible(argument));\n};\n","var aFunction = require('../internals/a-function');\n\n// optional / simple context binding\nmodule.exports = function (fn, that, length) {\n aFunction(fn);\n if (that === undefined) return fn;\n switch (length) {\n case 0: return function () {\n return fn.call(that);\n };\n case 1: return function (a) {\n return fn.call(that, a);\n };\n case 2: return function (a, b) {\n return fn.call(that, a, b);\n };\n case 3: return function (a, b, c) {\n return fn.call(that, a, b, c);\n };\n }\n return function (/* ...args */) {\n return fn.apply(that, arguments);\n };\n};\n","var anObject = require('../internals/an-object');\nvar defineProperties = require('../internals/object-define-properties');\nvar enumBugKeys = require('../internals/enum-bug-keys');\nvar hiddenKeys = require('../internals/hidden-keys');\nvar html = require('../internals/html');\nvar documentCreateElement = require('../internals/document-create-element');\nvar sharedKey = require('../internals/shared-key');\n\nvar GT = '>';\nvar LT = '<';\nvar PROTOTYPE = 'prototype';\nvar SCRIPT = 'script';\nvar IE_PROTO = sharedKey('IE_PROTO');\n\nvar EmptyConstructor = function () { /* empty */ };\n\nvar scriptTag = function (content) {\n return LT + SCRIPT + GT + content + LT + '/' + SCRIPT + GT;\n};\n\n// Create object with fake `null` prototype: use ActiveX Object with cleared prototype\nvar NullProtoObjectViaActiveX = function (activeXDocument) {\n activeXDocument.write(scriptTag(''));\n activeXDocument.close();\n var temp = activeXDocument.parentWindow.Object;\n activeXDocument = null; // avoid memory leak\n return temp;\n};\n\n// Create object with fake `null` prototype: use iframe Object with cleared prototype\nvar NullProtoObjectViaIFrame = function () {\n // Thrash, waste and sodomy: IE GC bug\n var iframe = documentCreateElement('iframe');\n var JS = 'java' + SCRIPT + ':';\n var iframeDocument;\n iframe.style.display = 'none';\n html.appendChild(iframe);\n // https://github.com/zloirock/core-js/issues/475\n iframe.src = String(JS);\n iframeDocument = iframe.contentWindow.document;\n iframeDocument.open();\n iframeDocument.write(scriptTag('document.F=Object'));\n iframeDocument.close();\n return iframeDocument.F;\n};\n\n// Check for document.domain and active x support\n// No need to use active x approach when document.domain is not set\n// see https://github.com/es-shims/es5-shim/issues/150\n// variation of https://github.com/kitcambridge/es5-shim/commit/4f738ac066346\n// avoid IE GC bug\nvar activeXDocument;\nvar NullProtoObject = function () {\n try {\n /* global ActiveXObject */\n activeXDocument = document.domain && new ActiveXObject('htmlfile');\n } catch (error) { /* ignore */ }\n NullProtoObject = activeXDocument ? NullProtoObjectViaActiveX(activeXDocument) : NullProtoObjectViaIFrame();\n var length = enumBugKeys.length;\n while (length--) delete NullProtoObject[PROTOTYPE][enumBugKeys[length]];\n return NullProtoObject();\n};\n\nhiddenKeys[IE_PROTO] = true;\n\n// `Object.create` method\n// https://tc39.github.io/ecma262/#sec-object.create\nmodule.exports = Object.create || function create(O, Properties) {\n var result;\n if (O !== null) {\n EmptyConstructor[PROTOTYPE] = anObject(O);\n result = new EmptyConstructor();\n EmptyConstructor[PROTOTYPE] = null;\n // add \"__proto__\" for Object.getPrototypeOf polyfill\n result[IE_PROTO] = O;\n } else result = NullProtoObject();\n return Properties === undefined ? result : defineProperties(result, Properties);\n};\n","'use strict';\nvar $ = require('../internals/export');\nvar createIteratorConstructor = require('../internals/create-iterator-constructor');\nvar getPrototypeOf = require('../internals/object-get-prototype-of');\nvar setPrototypeOf = require('../internals/object-set-prototype-of');\nvar setToStringTag = require('../internals/set-to-string-tag');\nvar createNonEnumerableProperty = require('../internals/create-non-enumerable-property');\nvar redefine = require('../internals/redefine');\nvar wellKnownSymbol = require('../internals/well-known-symbol');\nvar IS_PURE = require('../internals/is-pure');\nvar Iterators = require('../internals/iterators');\nvar IteratorsCore = require('../internals/iterators-core');\n\nvar IteratorPrototype = IteratorsCore.IteratorPrototype;\nvar BUGGY_SAFARI_ITERATORS = IteratorsCore.BUGGY_SAFARI_ITERATORS;\nvar ITERATOR = wellKnownSymbol('iterator');\nvar KEYS = 'keys';\nvar VALUES = 'values';\nvar ENTRIES = 'entries';\n\nvar returnThis = function () { return this; };\n\nmodule.exports = function (Iterable, NAME, IteratorConstructor, next, DEFAULT, IS_SET, FORCED) {\n createIteratorConstructor(IteratorConstructor, NAME, next);\n\n var getIterationMethod = function (KIND) {\n if (KIND === DEFAULT && defaultIterator) return defaultIterator;\n if (!BUGGY_SAFARI_ITERATORS && KIND in IterablePrototype) return IterablePrototype[KIND];\n switch (KIND) {\n case KEYS: return function keys() { return new IteratorConstructor(this, KIND); };\n case VALUES: return function values() { return new IteratorConstructor(this, KIND); };\n case ENTRIES: return function entries() { return new IteratorConstructor(this, KIND); };\n } return function () { return new IteratorConstructor(this); };\n };\n\n var TO_STRING_TAG = NAME + ' Iterator';\n var INCORRECT_VALUES_NAME = false;\n var IterablePrototype = Iterable.prototype;\n var nativeIterator = IterablePrototype[ITERATOR]\n || IterablePrototype['@@iterator']\n || DEFAULT && IterablePrototype[DEFAULT];\n var defaultIterator = !BUGGY_SAFARI_ITERATORS && nativeIterator || getIterationMethod(DEFAULT);\n var anyNativeIterator = NAME == 'Array' ? IterablePrototype.entries || nativeIterator : nativeIterator;\n var CurrentIteratorPrototype, methods, KEY;\n\n // fix native\n if (anyNativeIterator) {\n CurrentIteratorPrototype = getPrototypeOf(anyNativeIterator.call(new Iterable()));\n if (IteratorPrototype !== Object.prototype && CurrentIteratorPrototype.next) {\n if (!IS_PURE && getPrototypeOf(CurrentIteratorPrototype) !== IteratorPrototype) {\n if (setPrototypeOf) {\n setPrototypeOf(CurrentIteratorPrototype, IteratorPrototype);\n } else if (typeof CurrentIteratorPrototype[ITERATOR] != 'function') {\n createNonEnumerableProperty(CurrentIteratorPrototype, ITERATOR, returnThis);\n }\n }\n // Set @@toStringTag to native iterators\n setToStringTag(CurrentIteratorPrototype, TO_STRING_TAG, true, true);\n if (IS_PURE) Iterators[TO_STRING_TAG] = returnThis;\n }\n }\n\n // fix Array#{values, @@iterator}.name in V8 / FF\n if (DEFAULT == VALUES && nativeIterator && nativeIterator.name !== VALUES) {\n INCORRECT_VALUES_NAME = true;\n defaultIterator = function values() { return nativeIterator.call(this); };\n }\n\n // define iterator\n if ((!IS_PURE || FORCED) && IterablePrototype[ITERATOR] !== defaultIterator) {\n createNonEnumerableProperty(IterablePrototype, ITERATOR, defaultIterator);\n }\n Iterators[NAME] = defaultIterator;\n\n // export additional methods\n if (DEFAULT) {\n methods = {\n values: getIterationMethod(VALUES),\n keys: IS_SET ? defaultIterator : getIterationMethod(KEYS),\n entries: getIterationMethod(ENTRIES)\n };\n if (FORCED) for (KEY in methods) {\n if (BUGGY_SAFARI_ITERATORS || INCORRECT_VALUES_NAME || !(KEY in IterablePrototype)) {\n redefine(IterablePrototype, KEY, methods[KEY]);\n }\n } else $({ target: NAME, proto: true, forced: BUGGY_SAFARI_ITERATORS || INCORRECT_VALUES_NAME }, methods);\n }\n\n return methods;\n};\n","var defineProperty = require('../internals/object-define-property').f;\nvar has = require('../internals/has');\nvar wellKnownSymbol = require('../internals/well-known-symbol');\n\nvar TO_STRING_TAG = wellKnownSymbol('toStringTag');\n\nmodule.exports = function (it, TAG, STATIC) {\n if (it && !has(it = STATIC ? it : it.prototype, TO_STRING_TAG)) {\n defineProperty(it, TO_STRING_TAG, { configurable: true, value: TAG });\n }\n};\n","var wellKnownSymbol = require('../internals/well-known-symbol');\n\nvar TO_STRING_TAG = wellKnownSymbol('toStringTag');\nvar test = {};\n\ntest[TO_STRING_TAG] = 'z';\n\nmodule.exports = String(test) === '[object z]';\n","var fails = require('../internals/fails');\n\n// Thank's IE8 for his funny defineProperty\nmodule.exports = !fails(function () {\n return Object.defineProperty({}, 'a', { get: function () { return 7; } }).a != 7;\n});\n","var DESCRIPTORS = require('../internals/descriptors');\nvar definePropertyModule = require('../internals/object-define-property');\nvar createPropertyDescriptor = require('../internals/create-property-descriptor');\n\nmodule.exports = DESCRIPTORS ? function (object, key, value) {\n return definePropertyModule.f(object, key, createPropertyDescriptor(1, value));\n} : function (object, key, value) {\n object[key] = value;\n return object;\n};\n","module.exports = function (bitmap, value) {\n return {\n enumerable: !(bitmap & 1),\n configurable: !(bitmap & 2),\n writable: !(bitmap & 4),\n value: value\n };\n};\n","// toObject with fallback for non-array-like ES3 strings\nvar IndexedObject = require('../internals/indexed-object');\nvar requireObjectCoercible = require('../internals/require-object-coercible');\n\nmodule.exports = function (it) {\n return IndexedObject(requireObjectCoercible(it));\n};\n","var NATIVE_WEAK_MAP = require('../internals/native-weak-map');\nvar global = require('../internals/global');\nvar isObject = require('../internals/is-object');\nvar createNonEnumerableProperty = require('../internals/create-non-enumerable-property');\nvar objectHas = require('../internals/has');\nvar sharedKey = require('../internals/shared-key');\nvar hiddenKeys = require('../internals/hidden-keys');\n\nvar WeakMap = global.WeakMap;\nvar set, get, has;\n\nvar enforce = function (it) {\n return has(it) ? get(it) : set(it, {});\n};\n\nvar getterFor = function (TYPE) {\n return function (it) {\n var state;\n if (!isObject(it) || (state = get(it)).type !== TYPE) {\n throw TypeError('Incompatible receiver, ' + TYPE + ' required');\n } return state;\n };\n};\n\nif (NATIVE_WEAK_MAP) {\n var store = new WeakMap();\n var wmget = store.get;\n var wmhas = store.has;\n var wmset = store.set;\n set = function (it, metadata) {\n wmset.call(store, it, metadata);\n return metadata;\n };\n get = function (it) {\n return wmget.call(store, it) || {};\n };\n has = function (it) {\n return wmhas.call(store, it);\n };\n} else {\n var STATE = sharedKey('state');\n hiddenKeys[STATE] = true;\n set = function (it, metadata) {\n createNonEnumerableProperty(it, STATE, metadata);\n return metadata;\n };\n get = function (it) {\n return objectHas(it, STATE) ? it[STATE] : {};\n };\n has = function (it) {\n return objectHas(it, STATE);\n };\n}\n\nmodule.exports = {\n set: set,\n get: get,\n has: has,\n enforce: enforce,\n getterFor: getterFor\n};\n","module.exports = {};\n","var path = require('../internals/path');\nvar global = require('../internals/global');\n\nvar aFunction = function (variable) {\n return typeof variable == 'function' ? variable : undefined;\n};\n\nmodule.exports = function (namespace, method) {\n return arguments.length < 2 ? aFunction(path[namespace]) || aFunction(global[namespace])\n : path[namespace] && path[namespace][method] || global[namespace] && global[namespace][method];\n};\n","var toInteger = require('../internals/to-integer');\n\nvar min = Math.min;\n\n// `ToLength` abstract operation\n// https://tc39.github.io/ecma262/#sec-tolength\nmodule.exports = function (argument) {\n return argument > 0 ? min(toInteger(argument), 0x1FFFFFFFFFFFFF) : 0; // 2 ** 53 - 1 == 9007199254740991\n};\n","var requireObjectCoercible = require('../internals/require-object-coercible');\n\n// `ToObject` abstract operation\n// https://tc39.github.io/ecma262/#sec-toobject\nmodule.exports = function (argument) {\n return Object(requireObjectCoercible(argument));\n};\n","\"use strict\";\n\n/*\n MIT License http://www.opensource.org/licenses/mit-license.php\n Author Tobias Koppers @sokra\n*/\n// css base code, injected by the css-loader\n// eslint-disable-next-line func-names\nmodule.exports = function (useSourceMap) {\n var list = []; // return the list of modules as css string\n\n list.toString = function toString() {\n return this.map(function (item) {\n var content = cssWithMappingToString(item, useSourceMap);\n\n if (item[2]) {\n return \"@media \".concat(item[2], \" {\").concat(content, \"}\");\n }\n\n return content;\n }).join('');\n }; // import a list of modules into the list\n // eslint-disable-next-line func-names\n\n\n list.i = function (modules, mediaQuery) {\n if (typeof modules === 'string') {\n // eslint-disable-next-line no-param-reassign\n modules = [[null, modules, '']];\n }\n\n for (var i = 0; i < modules.length; i++) {\n var item = [].concat(modules[i]);\n\n if (mediaQuery) {\n if (!item[2]) {\n item[2] = mediaQuery;\n } else {\n item[2] = \"\".concat(mediaQuery, \" and \").concat(item[2]);\n }\n }\n\n list.push(item);\n }\n };\n\n return list;\n};\n\nfunction cssWithMappingToString(item, useSourceMap) {\n var content = item[1] || ''; // eslint-disable-next-line prefer-destructuring\n\n var cssMapping = item[3];\n\n if (!cssMapping) {\n return content;\n }\n\n if (useSourceMap && typeof btoa === 'function') {\n var sourceMapping = toComment(cssMapping);\n var sourceURLs = cssMapping.sources.map(function (source) {\n return \"/*# sourceURL=\".concat(cssMapping.sourceRoot || '').concat(source, \" */\");\n });\n return [content].concat(sourceURLs).concat([sourceMapping]).join('\\n');\n }\n\n return [content].join('\\n');\n} // Adapted from convert-source-map (MIT)\n\n\nfunction toComment(sourceMap) {\n // eslint-disable-next-line no-undef\n var base64 = btoa(unescape(encodeURIComponent(JSON.stringify(sourceMap))));\n var data = \"sourceMappingURL=data:application/json;charset=utf-8;base64,\".concat(base64);\n return \"/*# \".concat(data, \" */\");\n}","/**\n * Translates the list format produced by css-loader into something\n * easier to manipulate.\n */\nexport default function listToStyles (parentId, list) {\n var styles = []\n var newStyles = {}\n for (var i = 0; i < list.length; i++) {\n var item = list[i]\n var id = item[0]\n var css = item[1]\n var media = item[2]\n var sourceMap = item[3]\n var part = {\n id: parentId + ':' + i,\n css: css,\n media: media,\n sourceMap: sourceMap\n }\n if (!newStyles[id]) {\n styles.push(newStyles[id] = { id: id, parts: [part] })\n } else {\n newStyles[id].parts.push(part)\n }\n }\n return styles\n}\n","/*\n MIT License http://www.opensource.org/licenses/mit-license.php\n Author Tobias Koppers @sokra\n Modified by Evan You @yyx990803\n*/\n\nimport listToStyles from './listToStyles'\n\nvar hasDocument = typeof document !== 'undefined'\n\nif (typeof DEBUG !== 'undefined' && DEBUG) {\n if (!hasDocument) {\n throw new Error(\n 'vue-style-loader cannot be used in a non-browser environment. ' +\n \"Use { target: 'node' } in your Webpack config to indicate a server-rendering environment.\"\n ) }\n}\n\n/*\ntype StyleObject = {\n id: number;\n parts: Array<StyleObjectPart>\n}\n\ntype StyleObjectPart = {\n css: string;\n media: string;\n sourceMap: ?string\n}\n*/\n\nvar stylesInDom = {/*\n [id: number]: {\n id: number,\n refs: number,\n parts: Array<(obj?: StyleObjectPart) => void>\n }\n*/}\n\nvar head = hasDocument && (document.head || document.getElementsByTagName('head')[0])\nvar singletonElement = null\nvar singletonCounter = 0\nvar isProduction = false\nvar noop = function () {}\nvar options = null\nvar ssrIdKey = 'data-vue-ssr-id'\n\n// Force single-tag solution on IE6-9, which has a hard limit on the # of <style>\n// tags it will allow on a page\nvar isOldIE = typeof navigator !== 'undefined' && /msie [6-9]\\b/.test(navigator.userAgent.toLowerCase())\n\nexport default function addStylesClient (parentId, list, _isProduction, _options) {\n isProduction = _isProduction\n\n options = _options || {}\n\n var styles = listToStyles(parentId, list)\n addStylesToDom(styles)\n\n return function update (newList) {\n var mayRemove = []\n for (var i = 0; i < styles.length; i++) {\n var item = styles[i]\n var domStyle = stylesInDom[item.id]\n domStyle.refs--\n mayRemove.push(domStyle)\n }\n if (newList) {\n styles = listToStyles(parentId, newList)\n addStylesToDom(styles)\n } else {\n styles = []\n }\n for (var i = 0; i < mayRemove.length; i++) {\n var domStyle = mayRemove[i]\n if (domStyle.refs === 0) {\n for (var j = 0; j < domStyle.parts.length; j++) {\n domStyle.parts[j]()\n }\n delete stylesInDom[domStyle.id]\n }\n }\n }\n}\n\nfunction addStylesToDom (styles /* Array<StyleObject> */) {\n for (var i = 0; i < styles.length; i++) {\n var item = styles[i]\n var domStyle = stylesInDom[item.id]\n if (domStyle) {\n domStyle.refs++\n for (var j = 0; j < domStyle.parts.length; j++) {\n domStyle.parts[j](item.parts[j])\n }\n for (; j < item.parts.length; j++) {\n domStyle.parts.push(addStyle(item.parts[j]))\n }\n if (domStyle.parts.length > item.parts.length) {\n domStyle.parts.length = item.parts.length\n }\n } else {\n var parts = []\n for (var j = 0; j < item.parts.length; j++) {\n parts.push(addStyle(item.parts[j]))\n }\n stylesInDom[item.id] = { id: item.id, refs: 1, parts: parts }\n }\n }\n}\n\nfunction createStyleElement () {\n var styleElement = document.createElement('style')\n styleElement.type = 'text/css'\n head.appendChild(styleElement)\n return styleElement\n}\n\nfunction addStyle (obj /* StyleObjectPart */) {\n var update, remove\n var styleElement = document.querySelector('style[' + ssrIdKey + '~=\"' + obj.id + '\"]')\n\n if (styleElement) {\n if (isProduction) {\n // has SSR styles and in production mode.\n // simply do nothing.\n return noop\n } else {\n // has SSR styles but in dev mode.\n // for some reason Chrome can't handle source map in server-rendered\n // style tags - source maps in <style> only works if the style tag is\n // created and inserted dynamically. So we remove the server rendered\n // styles and inject new ones.\n styleElement.parentNode.removeChild(styleElement)\n }\n }\n\n if (isOldIE) {\n // use singleton mode for IE9.\n var styleIndex = singletonCounter++\n styleElement = singletonElement || (singletonElement = createStyleElement())\n update = applyToSingletonTag.bind(null, styleElement, styleIndex, false)\n remove = applyToSingletonTag.bind(null, styleElement, styleIndex, true)\n } else {\n // use multi-style-tag mode in all other cases\n styleElement = createStyleElement()\n update = applyToTag.bind(null, styleElement)\n remove = function () {\n styleElement.parentNode.removeChild(styleElement)\n }\n }\n\n update(obj)\n\n return function updateStyle (newObj /* StyleObjectPart */) {\n if (newObj) {\n if (newObj.css === obj.css &&\n newObj.media === obj.media &&\n newObj.sourceMap === obj.sourceMap) {\n return\n }\n update(obj = newObj)\n } else {\n remove()\n }\n }\n}\n\nvar replaceText = (function () {\n var textStore = []\n\n return function (index, replacement) {\n textStore[index] = replacement\n return textStore.filter(Boolean).join('\\n')\n }\n})()\n\nfunction applyToSingletonTag (styleElement, index, remove, obj) {\n var css = remove ? '' : obj.css\n\n if (styleElement.styleSheet) {\n styleElement.styleSheet.cssText = replaceText(index, css)\n } else {\n var cssNode = document.createTextNode(css)\n var childNodes = styleElement.childNodes\n if (childNodes[index]) styleElement.removeChild(childNodes[index])\n if (childNodes.length) {\n styleElement.insertBefore(cssNode, childNodes[index])\n } else {\n styleElement.appendChild(cssNode)\n }\n }\n}\n\nfunction applyToTag (styleElement, obj) {\n var css = obj.css\n var media = obj.media\n var sourceMap = obj.sourceMap\n\n if (media) {\n styleElement.setAttribute('media', media)\n }\n if (options.ssrId) {\n styleElement.setAttribute(ssrIdKey, obj.id)\n }\n\n if (sourceMap) {\n // https://developer.chrome.com/devtools/docs/javascript-debugging\n // this makes source maps inside style tags work properly in Chrome\n css += '\\n/*# sourceURL=' + sourceMap.sources[0] + ' */'\n // http://stackoverflow.com/a/26603875\n css += '\\n/*# sourceMappingURL=data:application/json;base64,' + btoa(unescape(encodeURIComponent(JSON.stringify(sourceMap)))) + ' */'\n }\n\n if (styleElement.styleSheet) {\n styleElement.styleSheet.cssText = css\n } else {\n while (styleElement.firstChild) {\n styleElement.removeChild(styleElement.firstChild)\n }\n styleElement.appendChild(document.createTextNode(css))\n }\n}\n","module.exports = function (bitmap, value) {\n return {\n enumerable: !(bitmap & 1),\n configurable: !(bitmap & 2),\n writable: !(bitmap & 4),\n value: value\n };\n};\n","// toObject with fallback for non-array-like ES3 strings\nvar IndexedObject = require('../internals/indexed-object');\nvar requireObjectCoercible = require('../internals/require-object-coercible');\n\nmodule.exports = function (it) {\n return IndexedObject(requireObjectCoercible(it));\n};\n","var isObject = require('../internals/is-object');\n\n// `ToPrimitive` abstract operation\n// https://tc39.github.io/ecma262/#sec-toprimitive\n// instead of the ES6 spec version, we didn't implement @@toPrimitive case\n// and the second argument - flag - preferred type is a string\nmodule.exports = function (input, PREFERRED_STRING) {\n if (!isObject(input)) return input;\n var fn, val;\n if (PREFERRED_STRING && typeof (fn = input.toString) == 'function' && !isObject(val = fn.call(input))) return val;\n if (typeof (fn = input.valueOf) == 'function' && !isObject(val = fn.call(input))) return val;\n if (!PREFERRED_STRING && typeof (fn = input.toString) == 'function' && !isObject(val = fn.call(input))) return val;\n throw TypeError(\"Can't convert object to primitive value\");\n};\n","var DESCRIPTORS = require('../internals/descriptors');\nvar IE8_DOM_DEFINE = require('../internals/ie8-dom-define');\nvar anObject = require('../internals/an-object');\nvar toPrimitive = require('../internals/to-primitive');\n\nvar nativeDefineProperty = Object.defineProperty;\n\n// `Object.defineProperty` method\n// https://tc39.github.io/ecma262/#sec-object.defineproperty\nexports.f = DESCRIPTORS ? nativeDefineProperty : function defineProperty(O, P, Attributes) {\n anObject(O);\n P = toPrimitive(P, true);\n anObject(Attributes);\n if (IE8_DOM_DEFINE) try {\n return nativeDefineProperty(O, P, Attributes);\n } catch (error) { /* empty */ }\n if ('get' in Attributes || 'set' in Attributes) throw TypeError('Accessors not supported');\n if ('value' in Attributes) O[P] = Attributes.value;\n return O;\n};\n","var global = require('../internals/global');\nvar createNonEnumerableProperty = require('../internals/create-non-enumerable-property');\n\nmodule.exports = function (key, value) {\n try {\n createNonEnumerableProperty(global, key, value);\n } catch (error) {\n global[key] = value;\n } return value;\n};\n","var global = require('../internals/global');\nvar shared = require('../internals/shared');\nvar has = require('../internals/has');\nvar uid = require('../internals/uid');\nvar NATIVE_SYMBOL = require('../internals/native-symbol');\nvar USE_SYMBOL_AS_UID = require('../internals/use-symbol-as-uid');\n\nvar WellKnownSymbolsStore = shared('wks');\nvar Symbol = global.Symbol;\nvar createWellKnownSymbol = USE_SYMBOL_AS_UID ? Symbol : Symbol && Symbol.withoutSetter || uid;\n\nmodule.exports = function (name) {\n if (!has(WellKnownSymbolsStore, name)) {\n if (NATIVE_SYMBOL && has(Symbol, name)) WellKnownSymbolsStore[name] = Symbol[name];\n else WellKnownSymbolsStore[name] = createWellKnownSymbol('Symbol.' + name);\n } return WellKnownSymbolsStore[name];\n};\n","var DESCRIPTORS = require('../internals/descriptors');\nvar propertyIsEnumerableModule = require('../internals/object-property-is-enumerable');\nvar createPropertyDescriptor = require('../internals/create-property-descriptor');\nvar toIndexedObject = require('../internals/to-indexed-object');\nvar toPrimitive = require('../internals/to-primitive');\nvar has = require('../internals/has');\nvar IE8_DOM_DEFINE = require('../internals/ie8-dom-define');\n\nvar nativeGetOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;\n\n// `Object.getOwnPropertyDescriptor` method\n// https://tc39.github.io/ecma262/#sec-object.getownpropertydescriptor\nexports.f = DESCRIPTORS ? nativeGetOwnPropertyDescriptor : function getOwnPropertyDescriptor(O, P) {\n O = toIndexedObject(O);\n P = toPrimitive(P, true);\n if (IE8_DOM_DEFINE) try {\n return nativeGetOwnPropertyDescriptor(O, P);\n } catch (error) { /* empty */ }\n if (has(O, P)) return createPropertyDescriptor(!propertyIsEnumerableModule.f.call(O, P), O[P]);\n};\n","var fails = require('../internals/fails');\nvar classof = require('../internals/classof-raw');\n\nvar split = ''.split;\n\n// fallback for non-array-like ES3 and non-enumerable old V8 strings\nmodule.exports = fails(function () {\n // throws an error in rhino, see https://github.com/mozilla/rhino/issues/346\n // eslint-disable-next-line no-prototype-builtins\n return !Object('z').propertyIsEnumerable(0);\n}) ? function (it) {\n return classof(it) == 'String' ? split.call(it, '') : Object(it);\n} : Object;\n","var DESCRIPTORS = require('../internals/descriptors');\nvar fails = require('../internals/fails');\nvar createElement = require('../internals/document-create-element');\n\n// Thank's IE8 for his funny defineProperty\nmodule.exports = !DESCRIPTORS && !fails(function () {\n return Object.defineProperty(createElement('div'), 'a', {\n get: function () { return 7; }\n }).a != 7;\n});\n","var global = require('../internals/global');\nvar isObject = require('../internals/is-object');\n\nvar document = global.document;\n// typeof document.createElement is 'object' in old IE\nvar EXISTS = isObject(document) && isObject(document.createElement);\n\nmodule.exports = function (it) {\n return EXISTS ? document.createElement(it) : {};\n};\n","var store = require('../internals/shared-store');\n\nvar functionToString = Function.toString;\n\n// this helper broken in `3.4.1-3.4.4`, so we can't use `shared` helper\nif (typeof store.inspectSource != 'function') {\n store.inspectSource = function (it) {\n return functionToString.call(it);\n };\n}\n\nmodule.exports = store.inspectSource;\n","var global = require('../internals/global');\nvar setGlobal = require('../internals/set-global');\n\nvar SHARED = '__core-js_shared__';\nvar store = global[SHARED] || setGlobal(SHARED, {});\n\nmodule.exports = store;\n","var IS_PURE = require('../internals/is-pure');\nvar store = require('../internals/shared-store');\n\n(module.exports = function (key, value) {\n return store[key] || (store[key] = value !== undefined ? value : {});\n})('versions', []).push({\n version: '3.6.4',\n mode: IS_PURE ? 'pure' : 'global',\n copyright: '© 2020 Denis Pushkarev (zloirock.ru)'\n});\n","var has = require('../internals/has');\nvar toIndexedObject = require('../internals/to-indexed-object');\nvar indexOf = require('../internals/array-includes').indexOf;\nvar hiddenKeys = require('../internals/hidden-keys');\n\nmodule.exports = function (object, names) {\n var O = toIndexedObject(object);\n var i = 0;\n var result = [];\n var key;\n for (key in O) !has(hiddenKeys, key) && has(O, key) && result.push(key);\n // Don't enum bug & hidden keys\n while (names.length > i) if (has(O, key = names[i++])) {\n ~indexOf(result, key) || result.push(key);\n }\n return result;\n};\n","var fails = require('../internals/fails');\n\nvar replacement = /#|\\.prototype\\./;\n\nvar isForced = function (feature, detection) {\n var value = data[normalize(feature)];\n return value == POLYFILL ? true\n : value == NATIVE ? false\n : typeof detection == 'function' ? fails(detection)\n : !!detection;\n};\n\nvar normalize = isForced.normalize = function (string) {\n return String(string).replace(replacement, '.').toLowerCase();\n};\n\nvar data = isForced.data = {};\nvar NATIVE = isForced.NATIVE = 'N';\nvar POLYFILL = isForced.POLYFILL = 'P';\n\nmodule.exports = isForced;\n","var classof = require('../internals/classof-raw');\n\n// `IsArray` abstract operation\n// https://tc39.github.io/ecma262/#sec-isarray\nmodule.exports = Array.isArray || function isArray(arg) {\n return classof(arg) == 'Array';\n};\n","var isObject = require('../internals/is-object');\nvar isArray = require('../internals/is-array');\nvar wellKnownSymbol = require('../internals/well-known-symbol');\n\nvar SPECIES = wellKnownSymbol('species');\n\n// `ArraySpeciesCreate` abstract operation\n// https://tc39.github.io/ecma262/#sec-arrayspeciescreate\nmodule.exports = function (originalArray, length) {\n var C;\n if (isArray(originalArray)) {\n C = originalArray.constructor;\n // cross-realm fallback\n if (typeof C == 'function' && (C === Array || isArray(C.prototype))) C = undefined;\n else if (isObject(C)) {\n C = C[SPECIES];\n if (C === null) C = undefined;\n }\n } return new (C === undefined ? Array : C)(length === 0 ? 0 : length);\n};\n","var fails = require('../internals/fails');\n\nmodule.exports = !!Object.getOwnPropertySymbols && !fails(function () {\n // Chrome 38 Symbol has incorrect toString conversion\n // eslint-disable-next-line no-undef\n return !String(Symbol());\n});\n","var fails = require('../internals/fails');\nvar wellKnownSymbol = require('../internals/well-known-symbol');\nvar V8_VERSION = require('../internals/engine-v8-version');\n\nvar SPECIES = wellKnownSymbol('species');\n\nmodule.exports = function (METHOD_NAME) {\n // We can't use this feature detection in V8 since it causes\n // deoptimization and serious performance degradation\n // https://github.com/zloirock/core-js/issues/677\n return V8_VERSION >= 51 || !fails(function () {\n var array = [];\n var constructor = array.constructor = {};\n constructor[SPECIES] = function () {\n return { foo: 1 };\n };\n return array[METHOD_NAME](Boolean).foo !== 1;\n });\n};\n","var global = require('../internals/global');\nvar userAgent = require('../internals/engine-user-agent');\n\nvar process = global.process;\nvar versions = process && process.versions;\nvar v8 = versions && versions.v8;\nvar match, version;\n\nif (v8) {\n match = v8.split('.');\n version = match[0] + match[1];\n} else if (userAgent) {\n match = userAgent.match(/Edge\\/(\\d+)/);\n if (!match || match[1] >= 74) {\n match = userAgent.match(/Chrome\\/(\\d+)/);\n if (match) version = match[1];\n }\n}\n\nmodule.exports = version && +version;\n","var bind = require('../internals/function-bind-context');\nvar IndexedObject = require('../internals/indexed-object');\nvar toObject = require('../internals/to-object');\nvar toLength = require('../internals/to-length');\nvar arraySpeciesCreate = require('../internals/array-species-create');\n\nvar push = [].push;\n\n// `Array.prototype.{ forEach, map, filter, some, every, find, findIndex }` methods implementation\nvar createMethod = function (TYPE) {\n var IS_MAP = TYPE == 1;\n var IS_FILTER = TYPE == 2;\n var IS_SOME = TYPE == 3;\n var IS_EVERY = TYPE == 4;\n var IS_FIND_INDEX = TYPE == 6;\n var NO_HOLES = TYPE == 5 || IS_FIND_INDEX;\n return function ($this, callbackfn, that, specificCreate) {\n var O = toObject($this);\n var self = IndexedObject(O);\n var boundFunction = bind(callbackfn, that, 3);\n var length = toLength(self.length);\n var index = 0;\n var create = specificCreate || arraySpeciesCreate;\n var target = IS_MAP ? create($this, length) : IS_FILTER ? create($this, 0) : undefined;\n var value, result;\n for (;length > index; index++) if (NO_HOLES || index in self) {\n value = self[index];\n result = boundFunction(value, index, O);\n if (TYPE) {\n if (IS_MAP) target[index] = result; // map\n else if (result) switch (TYPE) {\n case 3: return true; // some\n case 5: return value; // find\n case 6: return index; // findIndex\n case 2: push.call(target, value); // filter\n } else if (IS_EVERY) return false; // every\n }\n }\n return IS_FIND_INDEX ? -1 : IS_SOME || IS_EVERY ? IS_EVERY : target;\n };\n};\n\nmodule.exports = {\n // `Array.prototype.forEach` method\n // https://tc39.github.io/ecma262/#sec-array.prototype.foreach\n forEach: createMethod(0),\n // `Array.prototype.map` method\n // https://tc39.github.io/ecma262/#sec-array.prototype.map\n map: createMethod(1),\n // `Array.prototype.filter` method\n // https://tc39.github.io/ecma262/#sec-array.prototype.filter\n filter: createMethod(2),\n // `Array.prototype.some` method\n // https://tc39.github.io/ecma262/#sec-array.prototype.some\n some: createMethod(3),\n // `Array.prototype.every` method\n // https://tc39.github.io/ecma262/#sec-array.prototype.every\n every: createMethod(4),\n // `Array.prototype.find` method\n // https://tc39.github.io/ecma262/#sec-array.prototype.find\n find: createMethod(5),\n // `Array.prototype.findIndex` method\n // https://tc39.github.io/ecma262/#sec-array.prototype.findIndex\n findIndex: createMethod(6)\n};\n","var DESCRIPTORS = require('../internals/descriptors');\nvar fails = require('../internals/fails');\nvar has = require('../internals/has');\n\nvar defineProperty = Object.defineProperty;\nvar cache = {};\n\nvar thrower = function (it) { throw it; };\n\nmodule.exports = function (METHOD_NAME, options) {\n if (has(cache, METHOD_NAME)) return cache[METHOD_NAME];\n if (!options) options = {};\n var method = [][METHOD_NAME];\n var ACCESSORS = has(options, 'ACCESSORS') ? options.ACCESSORS : false;\n var argument0 = has(options, 0) ? options[0] : thrower;\n var argument1 = has(options, 1) ? options[1] : undefined;\n\n return cache[METHOD_NAME] = !!method && !fails(function () {\n if (ACCESSORS && !DESCRIPTORS) return true;\n var O = { length: -1 };\n\n if (ACCESSORS) defineProperty(O, 1, { enumerable: true, get: thrower });\n else O[1] = 1;\n\n method.call(O, argument0, argument1);\n });\n};\n","'use strict';\nvar toIndexedObject = require('../internals/to-indexed-object');\nvar addToUnscopables = require('../internals/add-to-unscopables');\nvar Iterators = require('../internals/iterators');\nvar InternalStateModule = require('../internals/internal-state');\nvar defineIterator = require('../internals/define-iterator');\n\nvar ARRAY_ITERATOR = 'Array Iterator';\nvar setInternalState = InternalStateModule.set;\nvar getInternalState = InternalStateModule.getterFor(ARRAY_ITERATOR);\n\n// `Array.prototype.entries` method\n// https://tc39.github.io/ecma262/#sec-array.prototype.entries\n// `Array.prototype.keys` method\n// https://tc39.github.io/ecma262/#sec-array.prototype.keys\n// `Array.prototype.values` method\n// https://tc39.github.io/ecma262/#sec-array.prototype.values\n// `Array.prototype[@@iterator]` method\n// https://tc39.github.io/ecma262/#sec-array.prototype-@@iterator\n// `CreateArrayIterator` internal method\n// https://tc39.github.io/ecma262/#sec-createarrayiterator\nmodule.exports = defineIterator(Array, 'Array', function (iterated, kind) {\n setInternalState(this, {\n type: ARRAY_ITERATOR,\n target: toIndexedObject(iterated), // target\n index: 0, // next index\n kind: kind // kind\n });\n// `%ArrayIteratorPrototype%.next` method\n// https://tc39.github.io/ecma262/#sec-%arrayiteratorprototype%.next\n}, function () {\n var state = getInternalState(this);\n var target = state.target;\n var kind = state.kind;\n var index = state.index++;\n if (!target || index >= target.length) {\n state.target = undefined;\n return { value: undefined, done: true };\n }\n if (kind == 'keys') return { value: index, done: false };\n if (kind == 'values') return { value: target[index], done: false };\n return { value: [index, target[index]], done: false };\n}, 'values');\n\n// argumentsList[@@iterator] is %ArrayProto_values%\n// https://tc39.github.io/ecma262/#sec-createunmappedargumentsobject\n// https://tc39.github.io/ecma262/#sec-createmappedargumentsobject\nIterators.Arguments = Iterators.Array;\n\n// https://tc39.github.io/ecma262/#sec-array.prototype-@@unscopables\naddToUnscopables('keys');\naddToUnscopables('values');\naddToUnscopables('entries');\n","'use strict';\nvar getPrototypeOf = require('../internals/object-get-prototype-of');\nvar createNonEnumerableProperty = require('../internals/create-non-enumerable-property');\nvar has = require('../internals/has');\nvar wellKnownSymbol = require('../internals/well-known-symbol');\nvar IS_PURE = require('../internals/is-pure');\n\nvar ITERATOR = wellKnownSymbol('iterator');\nvar BUGGY_SAFARI_ITERATORS = false;\n\nvar returnThis = function () { return this; };\n\n// `%IteratorPrototype%` object\n// https://tc39.github.io/ecma262/#sec-%iteratorprototype%-object\nvar IteratorPrototype, PrototypeOfArrayIteratorPrototype, arrayIterator;\n\nif ([].keys) {\n arrayIterator = [].keys();\n // Safari 8 has buggy iterators w/o `next`\n if (!('next' in arrayIterator)) BUGGY_SAFARI_ITERATORS = true;\n else {\n PrototypeOfArrayIteratorPrototype = getPrototypeOf(getPrototypeOf(arrayIterator));\n if (PrototypeOfArrayIteratorPrototype !== Object.prototype) IteratorPrototype = PrototypeOfArrayIteratorPrototype;\n }\n}\n\nif (IteratorPrototype == undefined) IteratorPrototype = {};\n\n// 25.1.2.1.1 %IteratorPrototype%[@@iterator]()\nif (!IS_PURE && !has(IteratorPrototype, ITERATOR)) {\n createNonEnumerableProperty(IteratorPrototype, ITERATOR, returnThis);\n}\n\nmodule.exports = {\n IteratorPrototype: IteratorPrototype,\n BUGGY_SAFARI_ITERATORS: BUGGY_SAFARI_ITERATORS\n};\n","var has = require('../internals/has');\nvar toObject = require('../internals/to-object');\nvar sharedKey = require('../internals/shared-key');\nvar CORRECT_PROTOTYPE_GETTER = require('../internals/correct-prototype-getter');\n\nvar IE_PROTO = sharedKey('IE_PROTO');\nvar ObjectPrototype = Object.prototype;\n\n// `Object.getPrototypeOf` method\n// https://tc39.github.io/ecma262/#sec-object.getprototypeof\nmodule.exports = CORRECT_PROTOTYPE_GETTER ? Object.getPrototypeOf : function (O) {\n O = toObject(O);\n if (has(O, IE_PROTO)) return O[IE_PROTO];\n if (typeof O.constructor == 'function' && O instanceof O.constructor) {\n return O.constructor.prototype;\n } return O instanceof Object ? ObjectPrototype : null;\n};\n","var anObject = require('../internals/an-object');\nvar aPossiblePrototype = require('../internals/a-possible-prototype');\n\n// `Object.setPrototypeOf` method\n// https://tc39.github.io/ecma262/#sec-object.setprototypeof\n// Works with __proto__ only. Old v8 can't work with null proto objects.\n/* eslint-disable no-proto */\nmodule.exports = Object.setPrototypeOf || ('__proto__' in {} ? function () {\n var CORRECT_SETTER = false;\n var test = {};\n var setter;\n try {\n setter = Object.getOwnPropertyDescriptor(Object.prototype, '__proto__').set;\n setter.call(test, []);\n CORRECT_SETTER = test instanceof Array;\n } catch (error) { /* empty */ }\n return function setPrototypeOf(O, proto) {\n anObject(O);\n aPossiblePrototype(proto);\n if (CORRECT_SETTER) setter.call(O, proto);\n else O.__proto__ = proto;\n return O;\n };\n}() : undefined);\n","var hiddenKeys = require('../internals/hidden-keys');\nvar isObject = require('../internals/is-object');\nvar has = require('../internals/has');\nvar defineProperty = require('../internals/object-define-property').f;\nvar uid = require('../internals/uid');\nvar FREEZING = require('../internals/freezing');\n\nvar METADATA = uid('meta');\nvar id = 0;\n\nvar isExtensible = Object.isExtensible || function () {\n return true;\n};\n\nvar setMetadata = function (it) {\n defineProperty(it, METADATA, { value: {\n objectID: 'O' + ++id, // object ID\n weakData: {} // weak collections IDs\n } });\n};\n\nvar fastKey = function (it, create) {\n // return a primitive with prefix\n if (!isObject(it)) return typeof it == 'symbol' ? it : (typeof it == 'string' ? 'S' : 'P') + it;\n if (!has(it, METADATA)) {\n // can't set metadata to uncaught frozen object\n if (!isExtensible(it)) return 'F';\n // not necessary to add metadata\n if (!create) return 'E';\n // add missing metadata\n setMetadata(it);\n // return object ID\n } return it[METADATA].objectID;\n};\n\nvar getWeakData = function (it, create) {\n if (!has(it, METADATA)) {\n // can't set metadata to uncaught frozen object\n if (!isExtensible(it)) return true;\n // not necessary to add metadata\n if (!create) return false;\n // add missing metadata\n setMetadata(it);\n // return the store of weak collections IDs\n } return it[METADATA].weakData;\n};\n\n// add metadata on freeze-family methods calling\nvar onFreeze = function (it) {\n if (FREEZING && meta.REQUIRED && isExtensible(it) && !has(it, METADATA)) setMetadata(it);\n return it;\n};\n\nvar meta = module.exports = {\n REQUIRED: false,\n fastKey: fastKey,\n getWeakData: getWeakData,\n onFreeze: onFreeze\n};\n\nhiddenKeys[METADATA] = true;\n","var anObject = require('../internals/an-object');\nvar isArrayIteratorMethod = require('../internals/is-array-iterator-method');\nvar toLength = require('../internals/to-length');\nvar bind = require('../internals/function-bind-context');\nvar getIteratorMethod = require('../internals/get-iterator-method');\nvar callWithSafeIterationClosing = require('../internals/call-with-safe-iteration-closing');\n\nvar Result = function (stopped, result) {\n this.stopped = stopped;\n this.result = result;\n};\n\nvar iterate = module.exports = function (iterable, fn, that, AS_ENTRIES, IS_ITERATOR) {\n var boundFunction = bind(fn, that, AS_ENTRIES ? 2 : 1);\n var iterator, iterFn, index, length, result, next, step;\n\n if (IS_ITERATOR) {\n iterator = iterable;\n } else {\n iterFn = getIteratorMethod(iterable);\n if (typeof iterFn != 'function') throw TypeError('Target is not iterable');\n // optimisation for array iterators\n if (isArrayIteratorMethod(iterFn)) {\n for (index = 0, length = toLength(iterable.length); length > index; index++) {\n result = AS_ENTRIES\n ? boundFunction(anObject(step = iterable[index])[0], step[1])\n : boundFunction(iterable[index]);\n if (result && result instanceof Result) return result;\n } return new Result(false);\n }\n iterator = iterFn.call(iterable);\n }\n\n next = iterator.next;\n while (!(step = next.call(iterator)).done) {\n result = callWithSafeIterationClosing(iterator, boundFunction, step.value, AS_ENTRIES);\n if (typeof result == 'object' && result && result instanceof Result) return result;\n } return new Result(false);\n};\n\niterate.stop = function (result) {\n return new Result(true, result);\n};\n","var TO_STRING_TAG_SUPPORT = require('../internals/to-string-tag-support');\nvar classofRaw = require('../internals/classof-raw');\nvar wellKnownSymbol = require('../internals/well-known-symbol');\n\nvar TO_STRING_TAG = wellKnownSymbol('toStringTag');\n// ES3 wrong here\nvar CORRECT_ARGUMENTS = classofRaw(function () { return arguments; }()) == 'Arguments';\n\n// fallback for IE11 Script Access Denied error\nvar tryGet = function (it, key) {\n try {\n return it[key];\n } catch (error) { /* empty */ }\n};\n\n// getting tag from ES6+ `Object.prototype.toString`\nmodule.exports = TO_STRING_TAG_SUPPORT ? classofRaw : function (it) {\n var O, tag, result;\n return it === undefined ? 'Undefined' : it === null ? 'Null'\n // @@toStringTag case\n : typeof (tag = tryGet(O = Object(it), TO_STRING_TAG)) == 'string' ? tag\n // builtinTag case\n : CORRECT_ARGUMENTS ? classofRaw(O)\n // ES3 arguments fallback\n : (result = classofRaw(O)) == 'Object' && typeof O.callee == 'function' ? 'Arguments' : result;\n};\n","module.exports = function (it, Constructor, name) {\n if (!(it instanceof Constructor)) {\n throw TypeError('Incorrect ' + (name ? name + ' ' : '') + 'invocation');\n } return it;\n};\n","// iterable DOM collections\n// flag - `iterable` interface - 'entries', 'keys', 'values', 'forEach' methods\nmodule.exports = {\n CSSRuleList: 0,\n CSSStyleDeclaration: 0,\n CSSValueList: 0,\n ClientRectList: 0,\n DOMRectList: 0,\n DOMStringList: 0,\n DOMTokenList: 1,\n DataTransferItemList: 0,\n FileList: 0,\n HTMLAllCollection: 0,\n HTMLCollection: 0,\n HTMLFormElement: 0,\n HTMLSelectElement: 0,\n MediaList: 0,\n MimeTypeArray: 0,\n NamedNodeMap: 0,\n NodeList: 1,\n PaintRequestList: 0,\n Plugin: 0,\n PluginArray: 0,\n SVGLengthList: 0,\n SVGNumberList: 0,\n SVGPathSegList: 0,\n SVGPointList: 0,\n SVGStringList: 0,\n SVGTransformList: 0,\n SourceBufferList: 0,\n StyleSheetList: 0,\n TextTrackCueList: 0,\n TextTrackList: 0,\n TouchList: 0\n};\n","var fails = require('../internals/fails');\nvar classof = require('../internals/classof-raw');\n\nvar split = ''.split;\n\n// fallback for non-array-like ES3 and non-enumerable old V8 strings\nmodule.exports = fails(function () {\n // throws an error in rhino, see https://github.com/mozilla/rhino/issues/346\n // eslint-disable-next-line no-prototype-builtins\n return !Object('z').propertyIsEnumerable(0);\n}) ? function (it) {\n return classof(it) == 'String' ? split.call(it, '') : Object(it);\n} : Object;\n","var toString = {}.toString;\n\nmodule.exports = function (it) {\n return toString.call(it).slice(8, -1);\n};\n","// `RequireObjectCoercible` abstract operation\n// https://tc39.github.io/ecma262/#sec-requireobjectcoercible\nmodule.exports = function (it) {\n if (it == undefined) throw TypeError(\"Can't call method on \" + it);\n return it;\n};\n","var isObject = require('../internals/is-object');\n\n// `ToPrimitive` abstract operation\n// https://tc39.github.io/ecma262/#sec-toprimitive\n// instead of the ES6 spec version, we didn't implement @@toPrimitive case\n// and the second argument - flag - preferred type is a string\nmodule.exports = function (input, PREFERRED_STRING) {\n if (!isObject(input)) return input;\n var fn, val;\n if (PREFERRED_STRING && typeof (fn = input.toString) == 'function' && !isObject(val = fn.call(input))) return val;\n if (typeof (fn = input.valueOf) == 'function' && !isObject(val = fn.call(input))) return val;\n if (!PREFERRED_STRING && typeof (fn = input.toString) == 'function' && !isObject(val = fn.call(input))) return val;\n throw TypeError(\"Can't convert object to primitive value\");\n};\n","var global = require('../internals/global');\nvar createNonEnumerableProperty = require('../internals/create-non-enumerable-property');\n\nmodule.exports = function (key, value) {\n try {\n createNonEnumerableProperty(global, key, value);\n } catch (error) {\n global[key] = value;\n } return value;\n};\n","var shared = require('../internals/shared');\nvar uid = require('../internals/uid');\n\nvar keys = shared('keys');\n\nmodule.exports = function (key) {\n return keys[key] || (keys[key] = uid(key));\n};\n","module.exports = false;\n","var id = 0;\nvar postfix = Math.random();\n\nmodule.exports = function (key) {\n return 'Symbol(' + String(key === undefined ? '' : key) + ')_' + (++id + postfix).toString(36);\n};\n","var ceil = Math.ceil;\nvar floor = Math.floor;\n\n// `ToInteger` abstract operation\n// https://tc39.github.io/ecma262/#sec-tointeger\nmodule.exports = function (argument) {\n return isNaN(argument = +argument) ? 0 : (argument > 0 ? floor : ceil)(argument);\n};\n","// IE8- don't enum bug keys\nmodule.exports = [\n 'constructor',\n 'hasOwnProperty',\n 'isPrototypeOf',\n 'propertyIsEnumerable',\n 'toLocaleString',\n 'toString',\n 'valueOf'\n];\n","var aFunction = require('../internals/a-function');\n\n// optional / simple context binding\nmodule.exports = function (fn, that, length) {\n aFunction(fn);\n if (that === undefined) return fn;\n switch (length) {\n case 0: return function () {\n return fn.call(that);\n };\n case 1: return function (a) {\n return fn.call(that, a);\n };\n case 2: return function (a, b) {\n return fn.call(that, a, b);\n };\n case 3: return function (a, b, c) {\n return fn.call(that, a, b, c);\n };\n }\n return function (/* ...args */) {\n return fn.apply(that, arguments);\n };\n};\n","var anObject = require('../internals/an-object');\nvar defineProperties = require('../internals/object-define-properties');\nvar enumBugKeys = require('../internals/enum-bug-keys');\nvar hiddenKeys = require('../internals/hidden-keys');\nvar html = require('../internals/html');\nvar documentCreateElement = require('../internals/document-create-element');\nvar sharedKey = require('../internals/shared-key');\n\nvar GT = '>';\nvar LT = '<';\nvar PROTOTYPE = 'prototype';\nvar SCRIPT = 'script';\nvar IE_PROTO = sharedKey('IE_PROTO');\n\nvar EmptyConstructor = function () { /* empty */ };\n\nvar scriptTag = function (content) {\n return LT + SCRIPT + GT + content + LT + '/' + SCRIPT + GT;\n};\n\n// Create object with fake `null` prototype: use ActiveX Object with cleared prototype\nvar NullProtoObjectViaActiveX = function (activeXDocument) {\n activeXDocument.write(scriptTag(''));\n activeXDocument.close();\n var temp = activeXDocument.parentWindow.Object;\n activeXDocument = null; // avoid memory leak\n return temp;\n};\n\n// Create object with fake `null` prototype: use iframe Object with cleared prototype\nvar NullProtoObjectViaIFrame = function () {\n // Thrash, waste and sodomy: IE GC bug\n var iframe = documentCreateElement('iframe');\n var JS = 'java' + SCRIPT + ':';\n var iframeDocument;\n iframe.style.display = 'none';\n html.appendChild(iframe);\n // https://github.com/zloirock/core-js/issues/475\n iframe.src = String(JS);\n iframeDocument = iframe.contentWindow.document;\n iframeDocument.open();\n iframeDocument.write(scriptTag('document.F=Object'));\n iframeDocument.close();\n return iframeDocument.F;\n};\n\n// Check for document.domain and active x support\n// No need to use active x approach when document.domain is not set\n// see https://github.com/es-shims/es5-shim/issues/150\n// variation of https://github.com/kitcambridge/es5-shim/commit/4f738ac066346\n// avoid IE GC bug\nvar activeXDocument;\nvar NullProtoObject = function () {\n try {\n /* global ActiveXObject */\n activeXDocument = document.domain && new ActiveXObject('htmlfile');\n } catch (error) { /* ignore */ }\n NullProtoObject = activeXDocument ? NullProtoObjectViaActiveX(activeXDocument) : NullProtoObjectViaIFrame();\n var length = enumBugKeys.length;\n while (length--) delete NullProtoObject[PROTOTYPE][enumBugKeys[length]];\n return NullProtoObject();\n};\n\nhiddenKeys[IE_PROTO] = true;\n\n// `Object.create` method\n// https://tc39.github.io/ecma262/#sec-object.create\nmodule.exports = Object.create || function create(O, Properties) {\n var result;\n if (O !== null) {\n EmptyConstructor[PROTOTYPE] = anObject(O);\n result = new EmptyConstructor();\n EmptyConstructor[PROTOTYPE] = null;\n // add \"__proto__\" for Object.getPrototypeOf polyfill\n result[IE_PROTO] = O;\n } else result = NullProtoObject();\n return Properties === undefined ? result : defineProperties(result, Properties);\n};\n","'use strict';\nvar $ = require('../internals/export');\nvar createIteratorConstructor = require('../internals/create-iterator-constructor');\nvar getPrototypeOf = require('../internals/object-get-prototype-of');\nvar setPrototypeOf = require('../internals/object-set-prototype-of');\nvar setToStringTag = require('../internals/set-to-string-tag');\nvar createNonEnumerableProperty = require('../internals/create-non-enumerable-property');\nvar redefine = require('../internals/redefine');\nvar wellKnownSymbol = require('../internals/well-known-symbol');\nvar IS_PURE = require('../internals/is-pure');\nvar Iterators = require('../internals/iterators');\nvar IteratorsCore = require('../internals/iterators-core');\n\nvar IteratorPrototype = IteratorsCore.IteratorPrototype;\nvar BUGGY_SAFARI_ITERATORS = IteratorsCore.BUGGY_SAFARI_ITERATORS;\nvar ITERATOR = wellKnownSymbol('iterator');\nvar KEYS = 'keys';\nvar VALUES = 'values';\nvar ENTRIES = 'entries';\n\nvar returnThis = function () { return this; };\n\nmodule.exports = function (Iterable, NAME, IteratorConstructor, next, DEFAULT, IS_SET, FORCED) {\n createIteratorConstructor(IteratorConstructor, NAME, next);\n\n var getIterationMethod = function (KIND) {\n if (KIND === DEFAULT && defaultIterator) return defaultIterator;\n if (!BUGGY_SAFARI_ITERATORS && KIND in IterablePrototype) return IterablePrototype[KIND];\n switch (KIND) {\n case KEYS: return function keys() { return new IteratorConstructor(this, KIND); };\n case VALUES: return function values() { return new IteratorConstructor(this, KIND); };\n case ENTRIES: return function entries() { return new IteratorConstructor(this, KIND); };\n } return function () { return new IteratorConstructor(this); };\n };\n\n var TO_STRING_TAG = NAME + ' Iterator';\n var INCORRECT_VALUES_NAME = false;\n var IterablePrototype = Iterable.prototype;\n var nativeIterator = IterablePrototype[ITERATOR]\n || IterablePrototype['@@iterator']\n || DEFAULT && IterablePrototype[DEFAULT];\n var defaultIterator = !BUGGY_SAFARI_ITERATORS && nativeIterator || getIterationMethod(DEFAULT);\n var anyNativeIterator = NAME == 'Array' ? IterablePrototype.entries || nativeIterator : nativeIterator;\n var CurrentIteratorPrototype, methods, KEY;\n\n // fix native\n if (anyNativeIterator) {\n CurrentIteratorPrototype = getPrototypeOf(anyNativeIterator.call(new Iterable()));\n if (IteratorPrototype !== Object.prototype && CurrentIteratorPrototype.next) {\n if (!IS_PURE && getPrototypeOf(CurrentIteratorPrototype) !== IteratorPrototype) {\n if (setPrototypeOf) {\n setPrototypeOf(CurrentIteratorPrototype, IteratorPrototype);\n } else if (typeof CurrentIteratorPrototype[ITERATOR] != 'function') {\n createNonEnumerableProperty(CurrentIteratorPrototype, ITERATOR, returnThis);\n }\n }\n // Set @@toStringTag to native iterators\n setToStringTag(CurrentIteratorPrototype, TO_STRING_TAG, true, true);\n if (IS_PURE) Iterators[TO_STRING_TAG] = returnThis;\n }\n }\n\n // fix Array#{values, @@iterator}.name in V8 / FF\n if (DEFAULT == VALUES && nativeIterator && nativeIterator.name !== VALUES) {\n INCORRECT_VALUES_NAME = true;\n defaultIterator = function values() { return nativeIterator.call(this); };\n }\n\n // define iterator\n if ((!IS_PURE || FORCED) && IterablePrototype[ITERATOR] !== defaultIterator) {\n createNonEnumerableProperty(IterablePrototype, ITERATOR, defaultIterator);\n }\n Iterators[NAME] = defaultIterator;\n\n // export additional methods\n if (DEFAULT) {\n methods = {\n values: getIterationMethod(VALUES),\n keys: IS_SET ? defaultIterator : getIterationMethod(KEYS),\n entries: getIterationMethod(ENTRIES)\n };\n if (FORCED) for (KEY in methods) {\n if (BUGGY_SAFARI_ITERATORS || INCORRECT_VALUES_NAME || !(KEY in IterablePrototype)) {\n redefine(IterablePrototype, KEY, methods[KEY]);\n }\n } else $({ target: NAME, proto: true, forced: BUGGY_SAFARI_ITERATORS || INCORRECT_VALUES_NAME }, methods);\n }\n\n return methods;\n};\n","var defineProperty = require('../internals/object-define-property').f;\nvar has = require('../internals/has');\nvar wellKnownSymbol = require('../internals/well-known-symbol');\n\nvar TO_STRING_TAG = wellKnownSymbol('toStringTag');\n\nmodule.exports = function (it, TAG, STATIC) {\n if (it && !has(it = STATIC ? it : it.prototype, TO_STRING_TAG)) {\n defineProperty(it, TO_STRING_TAG, { configurable: true, value: TAG });\n }\n};\n","var wellKnownSymbol = require('../internals/well-known-symbol');\n\nvar TO_STRING_TAG = wellKnownSymbol('toStringTag');\nvar test = {};\n\ntest[TO_STRING_TAG] = 'z';\n\nmodule.exports = String(test) === '[object z]';\n","/* globals __VUE_SSR_CONTEXT__ */\n\n// IMPORTANT: Do NOT use ES2015 features in this file (except for modules).\n// This module is a runtime utility for cleaner component module output and will\n// be included in the final webpack user bundle.\n\nexport default function normalizeComponent (\n scriptExports,\n render,\n staticRenderFns,\n functionalTemplate,\n injectStyles,\n scopeId,\n moduleIdentifier, /* server only */\n shadowMode /* vue-cli only */\n) {\n // Vue.extend constructor export interop\n var options = typeof scriptExports === 'function'\n ? scriptExports.options\n : scriptExports\n\n // render functions\n if (render) {\n options.render = render\n options.staticRenderFns = staticRenderFns\n options._compiled = true\n }\n\n // functional template\n if (functionalTemplate) {\n options.functional = true\n }\n\n // scopedId\n if (scopeId) {\n options._scopeId = 'data-v-' + scopeId\n }\n\n var hook\n if (moduleIdentifier) { // server build\n hook = function (context) {\n // 2.3 injection\n context =\n context || // cached call\n (this.$vnode && this.$vnode.ssrContext) || // stateful\n (this.parent && this.parent.$vnode && this.parent.$vnode.ssrContext) // functional\n // 2.2 with runInNewContext: true\n if (!context && typeof __VUE_SSR_CONTEXT__ !== 'undefined') {\n context = __VUE_SSR_CONTEXT__\n }\n // inject component styles\n if (injectStyles) {\n injectStyles.call(this, context)\n }\n // register component module identifier for async chunk inferrence\n if (context && context._registeredComponents) {\n context._registeredComponents.add(moduleIdentifier)\n }\n }\n // used by ssr in case component is cached and beforeCreate\n // never gets called\n options._ssrRegister = hook\n } else if (injectStyles) {\n hook = shadowMode\n ? function () { injectStyles.call(this, this.$root.$options.shadowRoot) }\n : injectStyles\n }\n\n if (hook) {\n if (options.functional) {\n // for template-only hot-reload because in that case the render fn doesn't\n // go through the normalizer\n options._injectStyles = hook\n // register for functioal component in vue file\n var originalRender = options.render\n options.render = function renderWithStyleInjection (h, context) {\n hook.call(context)\n return originalRender(h, context)\n }\n } else {\n // inject component registration as beforeCreate hook\n var existing = options.beforeCreate\n options.beforeCreate = existing\n ? [].concat(existing, hook)\n : [hook]\n }\n }\n\n return {\n exports: scriptExports,\n options: options\n }\n}\n","\"use strict\";\n\nrequire(\"core-js/modules/es.object.assign\");\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\n\nvar _axios = _interopRequireDefault(require(\"axios\"));\n\nvar _auth = require(\"@nextcloud/auth\");\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\nvar client = _axios.default.create({\n headers: {\n requesttoken: (0, _auth.getRequestToken)()\n }\n});\n\nvar cancelableClient = Object.assign(client, {\n CancelToken: _axios.default.CancelToken,\n isCancel: _axios.default.isCancel\n});\n(0, _auth.onRequestTokenUpdate)(function (token) {\n return client.defaults.headers.requesttoken = token;\n});\nvar _default = cancelableClient;\nexports.default = _default;\n//# sourceMappingURL=index.js.map","var check = function (it) {\n return it && it.Math == Math && it;\n};\n\n// https://github.com/zloirock/core-js/issues/86#issuecomment-115759028\nmodule.exports =\n // eslint-disable-next-line no-undef\n check(typeof globalThis == 'object' && globalThis) ||\n check(typeof window == 'object' && window) ||\n check(typeof self == 'object' && self) ||\n check(typeof global == 'object' && global) ||\n // eslint-disable-next-line no-new-func\n Function('return this')();\n","module.exports = function (exec) {\n try {\n return !!exec();\n } catch (error) {\n return true;\n }\n};\n","var check = function (it) {\n return it && it.Math == Math && it;\n};\n\n// https://github.com/zloirock/core-js/issues/86#issuecomment-115759028\nmodule.exports =\n // eslint-disable-next-line no-undef\n check(typeof globalThis == 'object' && globalThis) ||\n check(typeof window == 'object' && window) ||\n check(typeof self == 'object' && self) ||\n check(typeof global == 'object' && global) ||\n // eslint-disable-next-line no-new-func\n Function('return this')();\n","\"use strict\";\n\nrequire(\"core-js/modules/es.array.index-of\");\n\nrequire(\"core-js/modules/es.object.assign\");\n\nrequire(\"core-js/modules/es.object.to-string\");\n\nrequire(\"core-js/modules/es.regexp.to-string\");\n\nrequire(\"core-js/modules/es.string.replace\");\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.getRootUrl = exports.generateFilePath = exports.imagePath = exports.generateUrl = exports.generateOcsUrl = exports.generateRemoteUrl = exports.linkTo = void 0;\n\n/// <reference types=\"@nextcloud/typings\" />\n\n/**\n * Get an absolute url to a file in an app\n *\n * @param {string} app the id of the app the file belongs to\n * @param {string} file the file path relative to the app folder\n * @return {string} Absolute URL to a file\n */\nvar linkTo = function linkTo(app, file) {\n return generateFilePath(app, '', file);\n};\n/**\n * Creates a relative url for remote use\n *\n * @param {string} service id\n * @return {string} the url\n */\n\n\nexports.linkTo = linkTo;\n\nvar linkToRemoteBase = function linkToRemoteBase(service) {\n return getRootUrl() + '/remote.php/' + service;\n};\n/**\n * @brief Creates an absolute url for remote use\n * @param {string} service id\n * @return {string} the url\n */\n\n\nvar generateRemoteUrl = function generateRemoteUrl(service) {\n return window.location.protocol + '//' + window.location.host + linkToRemoteBase(service);\n};\n/**\n * Get the base path for the given OCS API service\n *\n * @param {string} service name\n * @param {int} version OCS API version\n * @return {string} OCS API base path\n */\n\n\nexports.generateRemoteUrl = generateRemoteUrl;\n\nvar generateOcsUrl = function generateOcsUrl(service, version) {\n version = version !== 2 ? 1 : 2;\n return window.location.protocol + '//' + window.location.host + getRootUrl() + '/ocs/v' + version + '.php/' + service + '/';\n};\n\nexports.generateOcsUrl = generateOcsUrl;\n\n/**\n * Generate the absolute url for the given relative url, which can contain parameters\n *\n * Parameters will be URL encoded automatically\n *\n * @return {string} Absolute URL for the given relative URL\n */\nvar generateUrl = function generateUrl(url, params, options) {\n var allOptions = Object.assign({\n escape: true,\n noRewrite: false\n }, options || {});\n\n var _build = function _build(text, vars) {\n vars = vars || {};\n return text.replace(/{([^{}]*)}/g, function (a, b) {\n var r = vars[b];\n\n if (allOptions.escape) {\n return typeof r === 'string' || typeof r === 'number' ? encodeURIComponent(r.toString()) : encodeURIComponent(a);\n } else {\n return typeof r === 'string' || typeof r === 'number' ? r.toString() : a;\n }\n });\n };\n\n if (url.charAt(0) !== '/') {\n url = '/' + url;\n }\n\n if (OC.config.modRewriteWorking === true && !allOptions.noRewrite) {\n return getRootUrl() + _build(url, params || {});\n }\n\n return getRootUrl() + '/index.php' + _build(url, params || {});\n};\n/**\n * Get the absolute path to an image file\n * if no extension is given for the image, it will automatically decide\n * between .png and .svg based on what the browser supports\n *\n * @param {string} app the app id to which the image belongs\n * @param {string} file the name of the image file\n * @return {string}\n */\n\n\nexports.generateUrl = generateUrl;\n\nvar imagePath = function imagePath(app, file) {\n if (file.indexOf('.') === -1) {\n //if no extension is given, use svg\n return generateFilePath(app, 'img', file + '.svg');\n }\n\n return generateFilePath(app, 'img', file);\n};\n/**\n * Get the absolute url for a file in an app\n *\n * @param {string} app the id of the app\n * @param {string} type the type of the file to link to (e.g. css,img,ajax.template)\n * @param {string} file the filename\n * @return {string} Absolute URL for a file in an app\n */\n\n\nexports.imagePath = imagePath;\n\nvar generateFilePath = function generateFilePath(app, type, file) {\n var isCore = OC.coreApps.indexOf(app) !== -1;\n var link = getRootUrl();\n\n if (file.substring(file.length - 3) === 'php' && !isCore) {\n link += '/index.php/apps/' + app;\n\n if (file !== 'index.php') {\n link += '/';\n\n if (type) {\n link += encodeURI(type + '/');\n }\n\n link += file;\n }\n } else if (file.substring(file.length - 3) !== 'php' && !isCore) {\n link = OC.appswebroots[app];\n\n if (type) {\n link += '/' + type + '/';\n }\n\n if (link.substring(link.length - 1) !== '/') {\n link += '/';\n }\n\n link += file;\n } else {\n if ((app === 'settings' || app === 'core' || app === 'search') && type === 'ajax') {\n link += '/index.php/';\n } else {\n link += '/';\n }\n\n if (!isCore) {\n link += 'apps/';\n }\n\n if (app !== '') {\n app += '/';\n link += app;\n }\n\n if (type) {\n link += type + '/';\n }\n\n link += file;\n }\n\n return link;\n};\n/**\n * Return the web root path where this Nextcloud instance\n * is accessible, with a leading slash.\n * For example \"/nextcloud\".\n *\n * @return {string} web root path\n */\n\n\nexports.generateFilePath = generateFilePath;\n\nvar getRootUrl = function getRootUrl() {\n return OC.webroot;\n};\n\nexports.getRootUrl = getRootUrl;\n//# sourceMappingURL=index.js.map","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.getLocale = getLocale;\nexports.getLanguage = getLanguage;\nexports.translate = translate;\nexports.translatePlural = translatePlural;\nexports.getFirstDay = getFirstDay;\nexports.getDayNames = getDayNames;\nexports.getDayNamesShort = getDayNamesShort;\nexports.getDayNamesMin = getDayNamesMin;\nexports.getMonthNames = getMonthNames;\nexports.getMonthNamesShort = getMonthNamesShort;\n\n/// <reference types=\"@nextcloud/typings\" />\n\n/**\n * Returns the user's locale\n */\nfunction getLocale() {\n if (typeof OC === 'undefined') {\n console.warn('No OC found');\n return 'en';\n }\n\n return OC.getLocale();\n}\n/**\n * Returns the user's language\n */\n\n\nfunction getLanguage() {\n if (typeof OC === 'undefined') {\n console.warn('No OC found');\n return 'en';\n }\n\n return OC.getLanguage();\n}\n\n/**\n * Translate a string\n *\n * @param {string} app the id of the app for which to translate the string\n * @param {string} text the string to translate\n * @param {object} vars map of placeholder key to value\n * @param {number} number to replace %n with\n * @param {object} [options] options object\n * @return {string}\n */\nfunction translate(app, text, vars, count, options) {\n if (typeof OC === 'undefined') {\n console.warn('No OC found');\n return text;\n }\n\n return OC.L10N.translate(app, text, vars, count, options);\n}\n/**\n * Translate a plural string\n *\n * @param {string} app the id of the app for which to translate the string\n * @param {string} textSingular the string to translate for exactly one object\n * @param {string} textPlural the string to translate for n objects\n * @param {number} count number to determine whether to use singular or plural\n * @param {Object} vars of placeholder key to value\n * @param {object} options options object\n * @return {string}\n */\n\n\nfunction translatePlural(app, textSingular, textPlural, count, vars, options) {\n if (typeof OC === 'undefined') {\n console.warn('No OC found');\n return textSingular;\n }\n\n return OC.L10N.translatePlural(app, textSingular, textPlural, count, vars, options);\n}\n/**\n * Get the first day of the week\n *\n * @return {number}\n */\n\n\nfunction getFirstDay() {\n if (typeof window.firstDay === 'undefined') {\n console.warn('No firstDay found');\n return 1;\n }\n\n return window.firstDay;\n}\n/**\n * Get a list of day names (full names)\n *\n * @return {string[]}\n */\n\n\nfunction getDayNames() {\n if (typeof window.dayNames === 'undefined') {\n console.warn('No dayNames found');\n return ['Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday'];\n }\n\n return window.dayNames;\n}\n/**\n * Get a list of day names (short names)\n *\n * @return {string[]}\n */\n\n\nfunction getDayNamesShort() {\n if (typeof window.dayNamesShort === 'undefined') {\n console.warn('No dayNamesShort found');\n return ['Sun.', 'Mon.', 'Tue.', 'Wed.', 'Thu.', 'Fri.', 'Sat.'];\n }\n\n return window.dayNamesShort;\n}\n/**\n * Get a list of day names (minified names)\n *\n * @return {string[]}\n */\n\n\nfunction getDayNamesMin() {\n if (typeof window.dayNamesMin === 'undefined') {\n console.warn('No dayNamesMin found');\n return ['Su', 'Mo', 'Tu', 'We', 'Th', 'Fr', 'Sa'];\n }\n\n return window.dayNamesMin;\n}\n/**\n * Get a list of month names (full names)\n *\n * @return {string[]}\n */\n\n\nfunction getMonthNames() {\n if (typeof window.monthNames === 'undefined') {\n console.warn('No monthNames found');\n return ['January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December'];\n }\n\n return window.monthNames;\n}\n/**\n * Get a list of month names (short names)\n *\n * @return {string[]}\n */\n\n\nfunction getMonthNamesShort() {\n if (typeof window.monthNamesShort === 'undefined') {\n console.warn('No monthNamesShort found');\n return ['Jan.', 'Feb.', 'Mar.', 'Apr.', 'May.', 'Jun.', 'Jul.', 'Aug.', 'Sep.', 'Oct.', 'Nov.', 'Dec.'];\n }\n\n return window.monthNamesShort;\n}\n//# sourceMappingURL=index.js.map","var DESCRIPTORS = require('../internals/descriptors');\nvar propertyIsEnumerableModule = require('../internals/object-property-is-enumerable');\nvar createPropertyDescriptor = require('../internals/create-property-descriptor');\nvar toIndexedObject = require('../internals/to-indexed-object');\nvar toPrimitive = require('../internals/to-primitive');\nvar has = require('../internals/has');\nvar IE8_DOM_DEFINE = require('../internals/ie8-dom-define');\n\nvar nativeGetOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;\n\n// `Object.getOwnPropertyDescriptor` method\n// https://tc39.github.io/ecma262/#sec-object.getownpropertydescriptor\nexports.f = DESCRIPTORS ? nativeGetOwnPropertyDescriptor : function getOwnPropertyDescriptor(O, P) {\n O = toIndexedObject(O);\n P = toPrimitive(P, true);\n if (IE8_DOM_DEFINE) try {\n return nativeGetOwnPropertyDescriptor(O, P);\n } catch (error) { /* empty */ }\n if (has(O, P)) return createPropertyDescriptor(!propertyIsEnumerableModule.f.call(O, P), O[P]);\n};\n","var toString = {}.toString;\n\nmodule.exports = function (it) {\n return toString.call(it).slice(8, -1);\n};\n","// `RequireObjectCoercible` abstract operation\n// https://tc39.github.io/ecma262/#sec-requireobjectcoercible\nmodule.exports = function (it) {\n if (it == undefined) throw TypeError(\"Can't call method on \" + it);\n return it;\n};\n","var DESCRIPTORS = require('../internals/descriptors');\nvar fails = require('../internals/fails');\nvar createElement = require('../internals/document-create-element');\n\n// Thank's IE8 for his funny defineProperty\nmodule.exports = !DESCRIPTORS && !fails(function () {\n return Object.defineProperty(createElement('div'), 'a', {\n get: function () { return 7; }\n }).a != 7;\n});\n","var isObject = require('../internals/is-object');\n\nmodule.exports = function (it) {\n if (!isObject(it)) {\n throw TypeError(String(it) + ' is not an object');\n } return it;\n};\n","var store = require('../internals/shared-store');\n\nvar functionToString = Function.toString;\n\n// this helper broken in `3.4.1-3.4.4`, so we can't use `shared` helper\nif (typeof store.inspectSource != 'function') {\n store.inspectSource = function (it) {\n return functionToString.call(it);\n };\n}\n\nmodule.exports = store.inspectSource;\n","var global = require('../internals/global');\nvar setGlobal = require('../internals/set-global');\n\nvar SHARED = '__core-js_shared__';\nvar store = global[SHARED] || setGlobal(SHARED, {});\n\nmodule.exports = store;\n","var IS_PURE = require('../internals/is-pure');\nvar store = require('../internals/shared-store');\n\n(module.exports = function (key, value) {\n return store[key] || (store[key] = value !== undefined ? value : {});\n})('versions', []).push({\n version: '3.6.1',\n mode: IS_PURE ? 'pure' : 'global',\n copyright: '© 2019 Denis Pushkarev (zloirock.ru)'\n});\n","var id = 0;\nvar postfix = Math.random();\n\nmodule.exports = function (key) {\n return 'Symbol(' + String(key === undefined ? '' : key) + ')_' + (++id + postfix).toString(36);\n};\n","module.exports = {};\n","var path = require('../internals/path');\nvar global = require('../internals/global');\n\nvar aFunction = function (variable) {\n return typeof variable == 'function' ? variable : undefined;\n};\n\nmodule.exports = function (namespace, method) {\n return arguments.length < 2 ? aFunction(path[namespace]) || aFunction(global[namespace])\n : path[namespace] && path[namespace][method] || global[namespace] && global[namespace][method];\n};\n","var toInteger = require('../internals/to-integer');\n\nvar min = Math.min;\n\n// `ToLength` abstract operation\n// https://tc39.github.io/ecma262/#sec-tolength\nmodule.exports = function (argument) {\n return argument > 0 ? min(toInteger(argument), 0x1FFFFFFFFFFFFF) : 0; // 2 ** 53 - 1 == 9007199254740991\n};\n","var ceil = Math.ceil;\nvar floor = Math.floor;\n\n// `ToInteger` abstract operation\n// https://tc39.github.io/ecma262/#sec-tointeger\nmodule.exports = function (argument) {\n return isNaN(argument = +argument) ? 0 : (argument > 0 ? floor : ceil)(argument);\n};\n","var classof = require('../internals/classof-raw');\n\n// `IsArray` abstract operation\n// https://tc39.github.io/ecma262/#sec-isarray\nmodule.exports = Array.isArray || function isArray(arg) {\n return classof(arg) == 'Array';\n};\n","var fails = require('../internals/fails');\n\nmodule.exports = !!Object.getOwnPropertySymbols && !fails(function () {\n // Chrome 38 Symbol has incorrect toString conversion\n // eslint-disable-next-line no-undef\n return !String(Symbol());\n});\n","var global = require('../internals/global');\nvar userAgent = require('../internals/user-agent');\n\nvar process = global.process;\nvar versions = process && process.versions;\nvar v8 = versions && versions.v8;\nvar match, version;\n\nif (v8) {\n match = v8.split('.');\n version = match[0] + match[1];\n} else if (userAgent) {\n match = userAgent.match(/Edge\\/(\\d+)/);\n if (!match || match[1] >= 74) {\n match = userAgent.match(/Chrome\\/(\\d+)/);\n if (match) version = match[1];\n }\n}\n\nmodule.exports = version && +version;\n","var DESCRIPTORS = require('../internals/descriptors');\nvar propertyIsEnumerableModule = require('../internals/object-property-is-enumerable');\nvar createPropertyDescriptor = require('../internals/create-property-descriptor');\nvar toIndexedObject = require('../internals/to-indexed-object');\nvar toPrimitive = require('../internals/to-primitive');\nvar has = require('../internals/has');\nvar IE8_DOM_DEFINE = require('../internals/ie8-dom-define');\n\nvar nativeGetOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;\n\n// `Object.getOwnPropertyDescriptor` method\n// https://tc39.github.io/ecma262/#sec-object.getownpropertydescriptor\nexports.f = DESCRIPTORS ? nativeGetOwnPropertyDescriptor : function getOwnPropertyDescriptor(O, P) {\n O = toIndexedObject(O);\n P = toPrimitive(P, true);\n if (IE8_DOM_DEFINE) try {\n return nativeGetOwnPropertyDescriptor(O, P);\n } catch (error) { /* empty */ }\n if (has(O, P)) return createPropertyDescriptor(!propertyIsEnumerableModule.f.call(O, P), O[P]);\n};\n","'use strict';\nvar nativePropertyIsEnumerable = {}.propertyIsEnumerable;\nvar getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;\n\n// Nashorn ~ JDK8 bug\nvar NASHORN_BUG = getOwnPropertyDescriptor && !nativePropertyIsEnumerable.call({ 1: 2 }, 1);\n\n// `Object.prototype.propertyIsEnumerable` method implementation\n// https://tc39.github.io/ecma262/#sec-object.prototype.propertyisenumerable\nexports.f = NASHORN_BUG ? function propertyIsEnumerable(V) {\n var descriptor = getOwnPropertyDescriptor(this, V);\n return !!descriptor && descriptor.enumerable;\n} : nativePropertyIsEnumerable;\n","var DESCRIPTORS = require('../internals/descriptors');\nvar fails = require('../internals/fails');\nvar createElement = require('../internals/document-create-element');\n\n// Thank's IE8 for his funny defineProperty\nmodule.exports = !DESCRIPTORS && !fails(function () {\n return Object.defineProperty(createElement('div'), 'a', {\n get: function () { return 7; }\n }).a != 7;\n});\n","var global = require('../internals/global');\nvar isObject = require('../internals/is-object');\n\nvar document = global.document;\n// typeof document.createElement is 'object' in old IE\nvar EXISTS = isObject(document) && isObject(document.createElement);\n\nmodule.exports = function (it) {\n return EXISTS ? document.createElement(it) : {};\n};\n","var store = require('../internals/shared-store');\n\nvar functionToString = Function.toString;\n\n// this helper broken in `3.4.1-3.4.4`, so we can't use `shared` helper\nif (typeof store.inspectSource != 'function') {\n store.inspectSource = function (it) {\n return functionToString.call(it);\n };\n}\n\nmodule.exports = store.inspectSource;\n","var global = require('../internals/global');\nvar setGlobal = require('../internals/set-global');\n\nvar SHARED = '__core-js_shared__';\nvar store = global[SHARED] || setGlobal(SHARED, {});\n\nmodule.exports = store;\n","var IS_PURE = require('../internals/is-pure');\nvar store = require('../internals/shared-store');\n\n(module.exports = function (key, value) {\n return store[key] || (store[key] = value !== undefined ? value : {});\n})('versions', []).push({\n version: '3.6.4',\n mode: IS_PURE ? 'pure' : 'global',\n copyright: '© 2020 Denis Pushkarev (zloirock.ru)'\n});\n","var has = require('../internals/has');\nvar toIndexedObject = require('../internals/to-indexed-object');\nvar indexOf = require('../internals/array-includes').indexOf;\nvar hiddenKeys = require('../internals/hidden-keys');\n\nmodule.exports = function (object, names) {\n var O = toIndexedObject(object);\n var i = 0;\n var result = [];\n var key;\n for (key in O) !has(hiddenKeys, key) && has(O, key) && result.push(key);\n // Don't enum bug & hidden keys\n while (names.length > i) if (has(O, key = names[i++])) {\n ~indexOf(result, key) || result.push(key);\n }\n return result;\n};\n","exports.f = Object.getOwnPropertySymbols;\n","var fails = require('../internals/fails');\n\nvar replacement = /#|\\.prototype\\./;\n\nvar isForced = function (feature, detection) {\n var value = data[normalize(feature)];\n return value == POLYFILL ? true\n : value == NATIVE ? false\n : typeof detection == 'function' ? fails(detection)\n : !!detection;\n};\n\nvar normalize = isForced.normalize = function (string) {\n return String(string).replace(replacement, '.').toLowerCase();\n};\n\nvar data = isForced.data = {};\nvar NATIVE = isForced.NATIVE = 'N';\nvar POLYFILL = isForced.POLYFILL = 'P';\n\nmodule.exports = isForced;\n","var internalObjectKeys = require('../internals/object-keys-internal');\nvar enumBugKeys = require('../internals/enum-bug-keys');\n\n// `Object.keys` method\n// https://tc39.github.io/ecma262/#sec-object.keys\nmodule.exports = Object.keys || function keys(O) {\n return internalObjectKeys(O, enumBugKeys);\n};\n","'use strict';\n\nmodule.exports = function bind(fn, thisArg) {\n return function wrap() {\n var args = new Array(arguments.length);\n for (var i = 0; i < args.length; i++) {\n args[i] = arguments[i];\n }\n return fn.apply(thisArg, args);\n };\n};\n","'use strict';\n\nvar utils = require('./../utils');\n\nfunction encode(val) {\n return encodeURIComponent(val).\n replace(/%40/gi, '@').\n replace(/%3A/gi, ':').\n replace(/%24/g, '$').\n replace(/%2C/gi, ',').\n replace(/%20/g, '+').\n replace(/%5B/gi, '[').\n replace(/%5D/gi, ']');\n}\n\n/**\n * Build a URL by appending params to the end\n *\n * @param {string} url The base of the url (e.g., http://www.google.com)\n * @param {object} [params] The params to be appended\n * @returns {string} The formatted url\n */\nmodule.exports = function buildURL(url, params, paramsSerializer) {\n /*eslint no-param-reassign:0*/\n if (!params) {\n return url;\n }\n\n var serializedParams;\n if (paramsSerializer) {\n serializedParams = paramsSerializer(params);\n } else if (utils.isURLSearchParams(params)) {\n serializedParams = params.toString();\n } else {\n var parts = [];\n\n utils.forEach(params, function serialize(val, key) {\n if (val === null || typeof val === 'undefined') {\n return;\n }\n\n if (utils.isArray(val)) {\n key = key + '[]';\n } else {\n val = [val];\n }\n\n utils.forEach(val, function parseValue(v) {\n if (utils.isDate(v)) {\n v = v.toISOString();\n } else if (utils.isObject(v)) {\n v = JSON.stringify(v);\n }\n parts.push(encode(key) + '=' + encode(v));\n });\n });\n\n serializedParams = parts.join('&');\n }\n\n if (serializedParams) {\n var hashmarkIndex = url.indexOf('#');\n if (hashmarkIndex !== -1) {\n url = url.slice(0, hashmarkIndex);\n }\n\n url += (url.indexOf('?') === -1 ? '?' : '&') + serializedParams;\n }\n\n return url;\n};\n","'use strict';\n\nmodule.exports = function isCancel(value) {\n return !!(value && value.__CANCEL__);\n};\n","'use strict';\n\nvar utils = require('./utils');\nvar normalizeHeaderName = require('./helpers/normalizeHeaderName');\n\nvar DEFAULT_CONTENT_TYPE = {\n 'Content-Type': 'application/x-www-form-urlencoded'\n};\n\nfunction setContentTypeIfUnset(headers, value) {\n if (!utils.isUndefined(headers) && utils.isUndefined(headers['Content-Type'])) {\n headers['Content-Type'] = value;\n }\n}\n\nfunction getDefaultAdapter() {\n var adapter;\n if (typeof XMLHttpRequest !== 'undefined') {\n // For browsers use XHR adapter\n adapter = require('./adapters/xhr');\n } else if (typeof process !== 'undefined' && Object.prototype.toString.call(process) === '[object process]') {\n // For node use HTTP adapter\n adapter = require('./adapters/http');\n }\n return adapter;\n}\n\nvar defaults = {\n adapter: getDefaultAdapter(),\n\n transformRequest: [function transformRequest(data, headers) {\n normalizeHeaderName(headers, 'Accept');\n normalizeHeaderName(headers, 'Content-Type');\n if (utils.isFormData(data) ||\n utils.isArrayBuffer(data) ||\n utils.isBuffer(data) ||\n utils.isStream(data) ||\n utils.isFile(data) ||\n utils.isBlob(data)\n ) {\n return data;\n }\n if (utils.isArrayBufferView(data)) {\n return data.buffer;\n }\n if (utils.isURLSearchParams(data)) {\n setContentTypeIfUnset(headers, 'application/x-www-form-urlencoded;charset=utf-8');\n return data.toString();\n }\n if (utils.isObject(data)) {\n setContentTypeIfUnset(headers, 'application/json;charset=utf-8');\n return JSON.stringify(data);\n }\n return data;\n }],\n\n transformResponse: [function transformResponse(data) {\n /*eslint no-param-reassign:0*/\n if (typeof data === 'string') {\n try {\n data = JSON.parse(data);\n } catch (e) { /* Ignore */ }\n }\n return data;\n }],\n\n /**\n * A timeout in milliseconds to abort a request. If set to 0 (default) a\n * timeout is not created.\n */\n timeout: 0,\n\n xsrfCookieName: 'XSRF-TOKEN',\n xsrfHeaderName: 'X-XSRF-TOKEN',\n\n maxContentLength: -1,\n\n validateStatus: function validateStatus(status) {\n return status >= 200 && status < 300;\n }\n};\n\ndefaults.headers = {\n common: {\n 'Accept': 'application/json, text/plain, */*'\n }\n};\n\nutils.forEach(['delete', 'get', 'head'], function forEachMethodNoData(method) {\n defaults.headers[method] = {};\n});\n\nutils.forEach(['post', 'put', 'patch'], function forEachMethodWithData(method) {\n defaults.headers[method] = utils.merge(DEFAULT_CONTENT_TYPE);\n});\n\nmodule.exports = defaults;\n","'use strict';\n\nvar utils = require('./../utils');\nvar settle = require('./../core/settle');\nvar buildURL = require('./../helpers/buildURL');\nvar buildFullPath = require('../core/buildFullPath');\nvar parseHeaders = require('./../helpers/parseHeaders');\nvar isURLSameOrigin = require('./../helpers/isURLSameOrigin');\nvar createError = require('../core/createError');\n\nmodule.exports = function xhrAdapter(config) {\n return new Promise(function dispatchXhrRequest(resolve, reject) {\n var requestData = config.data;\n var requestHeaders = config.headers;\n\n if (utils.isFormData(requestData)) {\n delete requestHeaders['Content-Type']; // Let the browser set it\n }\n\n var request = new XMLHttpRequest();\n\n // HTTP basic authentication\n if (config.auth) {\n var username = config.auth.username || '';\n var password = config.auth.password || '';\n requestHeaders.Authorization = 'Basic ' + btoa(username + ':' + password);\n }\n\n var fullPath = buildFullPath(config.baseURL, config.url);\n request.open(config.method.toUpperCase(), buildURL(fullPath, config.params, config.paramsSerializer), true);\n\n // Set the request timeout in MS\n request.timeout = config.timeout;\n\n // Listen for ready state\n request.onreadystatechange = function handleLoad() {\n if (!request || request.readyState !== 4) {\n return;\n }\n\n // The request errored out and we didn't get a response, this will be\n // handled by onerror instead\n // With one exception: request that using file: protocol, most browsers\n // will return status as 0 even though it's a successful request\n if (request.status === 0 && !(request.responseURL && request.responseURL.indexOf('file:') === 0)) {\n return;\n }\n\n // Prepare the response\n var responseHeaders = 'getAllResponseHeaders' in request ? parseHeaders(request.getAllResponseHeaders()) : null;\n var responseData = !config.responseType || config.responseType === 'text' ? request.responseText : request.response;\n var response = {\n data: responseData,\n status: request.status,\n statusText: request.statusText,\n headers: responseHeaders,\n config: config,\n request: request\n };\n\n settle(resolve, reject, response);\n\n // Clean up request\n request = null;\n };\n\n // Handle browser request cancellation (as opposed to a manual cancellation)\n request.onabort = function handleAbort() {\n if (!request) {\n return;\n }\n\n reject(createError('Request aborted', config, 'ECONNABORTED', request));\n\n // Clean up request\n request = null;\n };\n\n // Handle low level network errors\n request.onerror = function handleError() {\n // Real errors are hidden from us by the browser\n // onerror should only fire if it's a network error\n reject(createError('Network Error', config, null, request));\n\n // Clean up request\n request = null;\n };\n\n // Handle timeout\n request.ontimeout = function handleTimeout() {\n var timeoutErrorMessage = 'timeout of ' + config.timeout + 'ms exceeded';\n if (config.timeoutErrorMessage) {\n timeoutErrorMessage = config.timeoutErrorMessage;\n }\n reject(createError(timeoutErrorMessage, config, 'ECONNABORTED',\n request));\n\n // Clean up request\n request = null;\n };\n\n // Add xsrf header\n // This is only done if running in a standard browser environment.\n // Specifically not if we're in a web worker, or react-native.\n if (utils.isStandardBrowserEnv()) {\n var cookies = require('./../helpers/cookies');\n\n // Add xsrf header\n var xsrfValue = (config.withCredentials || isURLSameOrigin(fullPath)) && config.xsrfCookieName ?\n cookies.read(config.xsrfCookieName) :\n undefined;\n\n if (xsrfValue) {\n requestHeaders[config.xsrfHeaderName] = xsrfValue;\n }\n }\n\n // Add headers to the request\n if ('setRequestHeader' in request) {\n utils.forEach(requestHeaders, function setRequestHeader(val, key) {\n if (typeof requestData === 'undefined' && key.toLowerCase() === 'content-type') {\n // Remove Content-Type if data is undefined\n delete requestHeaders[key];\n } else {\n // Otherwise add header to the request\n request.setRequestHeader(key, val);\n }\n });\n }\n\n // Add withCredentials to request if needed\n if (!utils.isUndefined(config.withCredentials)) {\n request.withCredentials = !!config.withCredentials;\n }\n\n // Add responseType to request if needed\n if (config.responseType) {\n try {\n request.responseType = config.responseType;\n } catch (e) {\n // Expected DOMException thrown by browsers not compatible XMLHttpRequest Level 2.\n // But, this can be suppressed for 'json' type as it can be parsed by default 'transformResponse' function.\n if (config.responseType !== 'json') {\n throw e;\n }\n }\n }\n\n // Handle progress if needed\n if (typeof config.onDownloadProgress === 'function') {\n request.addEventListener('progress', config.onDownloadProgress);\n }\n\n // Not all browsers support upload events\n if (typeof config.onUploadProgress === 'function' && request.upload) {\n request.upload.addEventListener('progress', config.onUploadProgress);\n }\n\n if (config.cancelToken) {\n // Handle cancellation\n config.cancelToken.promise.then(function onCanceled(cancel) {\n if (!request) {\n return;\n }\n\n request.abort();\n reject(cancel);\n // Clean up request\n request = null;\n });\n }\n\n if (requestData === undefined) {\n requestData = null;\n }\n\n // Send the request\n request.send(requestData);\n });\n};\n","'use strict';\n\nvar enhanceError = require('./enhanceError');\n\n/**\n * Create an Error with the specified message, config, error code, request and response.\n *\n * @param {string} message The error message.\n * @param {Object} config The config.\n * @param {string} [code] The error code (for example, 'ECONNABORTED').\n * @param {Object} [request] The request.\n * @param {Object} [response] The response.\n * @returns {Error} The created error.\n */\nmodule.exports = function createError(message, config, code, request, response) {\n var error = new Error(message);\n return enhanceError(error, config, code, request, response);\n};\n","'use strict';\n\nvar utils = require('../utils');\n\n/**\n * Config-specific merge-function which creates a new config-object\n * by merging two configuration objects together.\n *\n * @param {Object} config1\n * @param {Object} config2\n * @returns {Object} New object resulting from merging config2 to config1\n */\nmodule.exports = function mergeConfig(config1, config2) {\n // eslint-disable-next-line no-param-reassign\n config2 = config2 || {};\n var config = {};\n\n var valueFromConfig2Keys = ['url', 'method', 'params', 'data'];\n var mergeDeepPropertiesKeys = ['headers', 'auth', 'proxy'];\n var defaultToConfig2Keys = [\n 'baseURL', 'url', 'transformRequest', 'transformResponse', 'paramsSerializer',\n 'timeout', 'withCredentials', 'adapter', 'responseType', 'xsrfCookieName',\n 'xsrfHeaderName', 'onUploadProgress', 'onDownloadProgress',\n 'maxContentLength', 'validateStatus', 'maxRedirects', 'httpAgent',\n 'httpsAgent', 'cancelToken', 'socketPath'\n ];\n\n utils.forEach(valueFromConfig2Keys, function valueFromConfig2(prop) {\n if (typeof config2[prop] !== 'undefined') {\n config[prop] = config2[prop];\n }\n });\n\n utils.forEach(mergeDeepPropertiesKeys, function mergeDeepProperties(prop) {\n if (utils.isObject(config2[prop])) {\n config[prop] = utils.deepMerge(config1[prop], config2[prop]);\n } else if (typeof config2[prop] !== 'undefined') {\n config[prop] = config2[prop];\n } else if (utils.isObject(config1[prop])) {\n config[prop] = utils.deepMerge(config1[prop]);\n } else if (typeof config1[prop] !== 'undefined') {\n config[prop] = config1[prop];\n }\n });\n\n utils.forEach(defaultToConfig2Keys, function defaultToConfig2(prop) {\n if (typeof config2[prop] !== 'undefined') {\n config[prop] = config2[prop];\n } else if (typeof config1[prop] !== 'undefined') {\n config[prop] = config1[prop];\n }\n });\n\n var axiosKeys = valueFromConfig2Keys\n .concat(mergeDeepPropertiesKeys)\n .concat(defaultToConfig2Keys);\n\n var otherKeys = Object\n .keys(config2)\n .filter(function filterAxiosKeys(key) {\n return axiosKeys.indexOf(key) === -1;\n });\n\n utils.forEach(otherKeys, function otherKeysDefaultToConfig2(prop) {\n if (typeof config2[prop] !== 'undefined') {\n config[prop] = config2[prop];\n } else if (typeof config1[prop] !== 'undefined') {\n config[prop] = config1[prop];\n }\n });\n\n return config;\n};\n","'use strict';\n\n/**\n * A `Cancel` is an object that is thrown when an operation is canceled.\n *\n * @class\n * @param {string=} message The message.\n */\nfunction Cancel(message) {\n this.message = message;\n}\n\nCancel.prototype.toString = function toString() {\n return 'Cancel' + (this.message ? ': ' + this.message : '');\n};\n\nCancel.prototype.__CANCEL__ = true;\n\nmodule.exports = Cancel;\n","var classof = require('../internals/classof-raw');\n\n// `IsArray` abstract operation\n// https://tc39.github.io/ecma262/#sec-isarray\nmodule.exports = Array.isArray || function isArray(arg) {\n return classof(arg) == 'Array';\n};\n","var isObject = require('../internals/is-object');\nvar isArray = require('../internals/is-array');\nvar wellKnownSymbol = require('../internals/well-known-symbol');\n\nvar SPECIES = wellKnownSymbol('species');\n\n// `ArraySpeciesCreate` abstract operation\n// https://tc39.github.io/ecma262/#sec-arrayspeciescreate\nmodule.exports = function (originalArray, length) {\n var C;\n if (isArray(originalArray)) {\n C = originalArray.constructor;\n // cross-realm fallback\n if (typeof C == 'function' && (C === Array || isArray(C.prototype))) C = undefined;\n else if (isObject(C)) {\n C = C[SPECIES];\n if (C === null) C = undefined;\n }\n } return new (C === undefined ? Array : C)(length === 0 ? 0 : length);\n};\n","var fails = require('../internals/fails');\n\nmodule.exports = !!Object.getOwnPropertySymbols && !fails(function () {\n // Chrome 38 Symbol has incorrect toString conversion\n // eslint-disable-next-line no-undef\n return !String(Symbol());\n});\n","var fails = require('../internals/fails');\nvar wellKnownSymbol = require('../internals/well-known-symbol');\nvar V8_VERSION = require('../internals/engine-v8-version');\n\nvar SPECIES = wellKnownSymbol('species');\n\nmodule.exports = function (METHOD_NAME) {\n // We can't use this feature detection in V8 since it causes\n // deoptimization and serious performance degradation\n // https://github.com/zloirock/core-js/issues/677\n return V8_VERSION >= 51 || !fails(function () {\n var array = [];\n var constructor = array.constructor = {};\n constructor[SPECIES] = function () {\n return { foo: 1 };\n };\n return array[METHOD_NAME](Boolean).foo !== 1;\n });\n};\n","var global = require('../internals/global');\nvar userAgent = require('../internals/engine-user-agent');\n\nvar process = global.process;\nvar versions = process && process.versions;\nvar v8 = versions && versions.v8;\nvar match, version;\n\nif (v8) {\n match = v8.split('.');\n version = match[0] + match[1];\n} else if (userAgent) {\n match = userAgent.match(/Edge\\/(\\d+)/);\n if (!match || match[1] >= 74) {\n match = userAgent.match(/Chrome\\/(\\d+)/);\n if (match) version = match[1];\n }\n}\n\nmodule.exports = version && +version;\n","var bind = require('../internals/function-bind-context');\nvar IndexedObject = require('../internals/indexed-object');\nvar toObject = require('../internals/to-object');\nvar toLength = require('../internals/to-length');\nvar arraySpeciesCreate = require('../internals/array-species-create');\n\nvar push = [].push;\n\n// `Array.prototype.{ forEach, map, filter, some, every, find, findIndex }` methods implementation\nvar createMethod = function (TYPE) {\n var IS_MAP = TYPE == 1;\n var IS_FILTER = TYPE == 2;\n var IS_SOME = TYPE == 3;\n var IS_EVERY = TYPE == 4;\n var IS_FIND_INDEX = TYPE == 6;\n var NO_HOLES = TYPE == 5 || IS_FIND_INDEX;\n return function ($this, callbackfn, that, specificCreate) {\n var O = toObject($this);\n var self = IndexedObject(O);\n var boundFunction = bind(callbackfn, that, 3);\n var length = toLength(self.length);\n var index = 0;\n var create = specificCreate || arraySpeciesCreate;\n var target = IS_MAP ? create($this, length) : IS_FILTER ? create($this, 0) : undefined;\n var value, result;\n for (;length > index; index++) if (NO_HOLES || index in self) {\n value = self[index];\n result = boundFunction(value, index, O);\n if (TYPE) {\n if (IS_MAP) target[index] = result; // map\n else if (result) switch (TYPE) {\n case 3: return true; // some\n case 5: return value; // find\n case 6: return index; // findIndex\n case 2: push.call(target, value); // filter\n } else if (IS_EVERY) return false; // every\n }\n }\n return IS_FIND_INDEX ? -1 : IS_SOME || IS_EVERY ? IS_EVERY : target;\n };\n};\n\nmodule.exports = {\n // `Array.prototype.forEach` method\n // https://tc39.github.io/ecma262/#sec-array.prototype.foreach\n forEach: createMethod(0),\n // `Array.prototype.map` method\n // https://tc39.github.io/ecma262/#sec-array.prototype.map\n map: createMethod(1),\n // `Array.prototype.filter` method\n // https://tc39.github.io/ecma262/#sec-array.prototype.filter\n filter: createMethod(2),\n // `Array.prototype.some` method\n // https://tc39.github.io/ecma262/#sec-array.prototype.some\n some: createMethod(3),\n // `Array.prototype.every` method\n // https://tc39.github.io/ecma262/#sec-array.prototype.every\n every: createMethod(4),\n // `Array.prototype.find` method\n // https://tc39.github.io/ecma262/#sec-array.prototype.find\n find: createMethod(5),\n // `Array.prototype.findIndex` method\n // https://tc39.github.io/ecma262/#sec-array.prototype.findIndex\n findIndex: createMethod(6)\n};\n","var DESCRIPTORS = require('../internals/descriptors');\nvar fails = require('../internals/fails');\nvar has = require('../internals/has');\n\nvar defineProperty = Object.defineProperty;\nvar cache = {};\n\nvar thrower = function (it) { throw it; };\n\nmodule.exports = function (METHOD_NAME, options) {\n if (has(cache, METHOD_NAME)) return cache[METHOD_NAME];\n if (!options) options = {};\n var method = [][METHOD_NAME];\n var ACCESSORS = has(options, 'ACCESSORS') ? options.ACCESSORS : false;\n var argument0 = has(options, 0) ? options[0] : thrower;\n var argument1 = has(options, 1) ? options[1] : undefined;\n\n return cache[METHOD_NAME] = !!method && !fails(function () {\n if (ACCESSORS && !DESCRIPTORS) return true;\n var O = { length: -1 };\n\n if (ACCESSORS) defineProperty(O, 1, { enumerable: true, get: thrower });\n else O[1] = 1;\n\n method.call(O, argument0, argument1);\n });\n};\n","'use strict';\nvar toIndexedObject = require('../internals/to-indexed-object');\nvar addToUnscopables = require('../internals/add-to-unscopables');\nvar Iterators = require('../internals/iterators');\nvar InternalStateModule = require('../internals/internal-state');\nvar defineIterator = require('../internals/define-iterator');\n\nvar ARRAY_ITERATOR = 'Array Iterator';\nvar setInternalState = InternalStateModule.set;\nvar getInternalState = InternalStateModule.getterFor(ARRAY_ITERATOR);\n\n// `Array.prototype.entries` method\n// https://tc39.github.io/ecma262/#sec-array.prototype.entries\n// `Array.prototype.keys` method\n// https://tc39.github.io/ecma262/#sec-array.prototype.keys\n// `Array.prototype.values` method\n// https://tc39.github.io/ecma262/#sec-array.prototype.values\n// `Array.prototype[@@iterator]` method\n// https://tc39.github.io/ecma262/#sec-array.prototype-@@iterator\n// `CreateArrayIterator` internal method\n// https://tc39.github.io/ecma262/#sec-createarrayiterator\nmodule.exports = defineIterator(Array, 'Array', function (iterated, kind) {\n setInternalState(this, {\n type: ARRAY_ITERATOR,\n target: toIndexedObject(iterated), // target\n index: 0, // next index\n kind: kind // kind\n });\n// `%ArrayIteratorPrototype%.next` method\n// https://tc39.github.io/ecma262/#sec-%arrayiteratorprototype%.next\n}, function () {\n var state = getInternalState(this);\n var target = state.target;\n var kind = state.kind;\n var index = state.index++;\n if (!target || index >= target.length) {\n state.target = undefined;\n return { value: undefined, done: true };\n }\n if (kind == 'keys') return { value: index, done: false };\n if (kind == 'values') return { value: target[index], done: false };\n return { value: [index, target[index]], done: false };\n}, 'values');\n\n// argumentsList[@@iterator] is %ArrayProto_values%\n// https://tc39.github.io/ecma262/#sec-createunmappedargumentsobject\n// https://tc39.github.io/ecma262/#sec-createmappedargumentsobject\nIterators.Arguments = Iterators.Array;\n\n// https://tc39.github.io/ecma262/#sec-array.prototype-@@unscopables\naddToUnscopables('keys');\naddToUnscopables('values');\naddToUnscopables('entries');\n","'use strict';\nvar getPrototypeOf = require('../internals/object-get-prototype-of');\nvar createNonEnumerableProperty = require('../internals/create-non-enumerable-property');\nvar has = require('../internals/has');\nvar wellKnownSymbol = require('../internals/well-known-symbol');\nvar IS_PURE = require('../internals/is-pure');\n\nvar ITERATOR = wellKnownSymbol('iterator');\nvar BUGGY_SAFARI_ITERATORS = false;\n\nvar returnThis = function () { return this; };\n\n// `%IteratorPrototype%` object\n// https://tc39.github.io/ecma262/#sec-%iteratorprototype%-object\nvar IteratorPrototype, PrototypeOfArrayIteratorPrototype, arrayIterator;\n\nif ([].keys) {\n arrayIterator = [].keys();\n // Safari 8 has buggy iterators w/o `next`\n if (!('next' in arrayIterator)) BUGGY_SAFARI_ITERATORS = true;\n else {\n PrototypeOfArrayIteratorPrototype = getPrototypeOf(getPrototypeOf(arrayIterator));\n if (PrototypeOfArrayIteratorPrototype !== Object.prototype) IteratorPrototype = PrototypeOfArrayIteratorPrototype;\n }\n}\n\nif (IteratorPrototype == undefined) IteratorPrototype = {};\n\n// 25.1.2.1.1 %IteratorPrototype%[@@iterator]()\nif (!IS_PURE && !has(IteratorPrototype, ITERATOR)) {\n createNonEnumerableProperty(IteratorPrototype, ITERATOR, returnThis);\n}\n\nmodule.exports = {\n IteratorPrototype: IteratorPrototype,\n BUGGY_SAFARI_ITERATORS: BUGGY_SAFARI_ITERATORS\n};\n","var has = require('../internals/has');\nvar toObject = require('../internals/to-object');\nvar sharedKey = require('../internals/shared-key');\nvar CORRECT_PROTOTYPE_GETTER = require('../internals/correct-prototype-getter');\n\nvar IE_PROTO = sharedKey('IE_PROTO');\nvar ObjectPrototype = Object.prototype;\n\n// `Object.getPrototypeOf` method\n// https://tc39.github.io/ecma262/#sec-object.getprototypeof\nmodule.exports = CORRECT_PROTOTYPE_GETTER ? Object.getPrototypeOf : function (O) {\n O = toObject(O);\n if (has(O, IE_PROTO)) return O[IE_PROTO];\n if (typeof O.constructor == 'function' && O instanceof O.constructor) {\n return O.constructor.prototype;\n } return O instanceof Object ? ObjectPrototype : null;\n};\n","var anObject = require('../internals/an-object');\nvar aPossiblePrototype = require('../internals/a-possible-prototype');\n\n// `Object.setPrototypeOf` method\n// https://tc39.github.io/ecma262/#sec-object.setprototypeof\n// Works with __proto__ only. Old v8 can't work with null proto objects.\n/* eslint-disable no-proto */\nmodule.exports = Object.setPrototypeOf || ('__proto__' in {} ? function () {\n var CORRECT_SETTER = false;\n var test = {};\n var setter;\n try {\n setter = Object.getOwnPropertyDescriptor(Object.prototype, '__proto__').set;\n setter.call(test, []);\n CORRECT_SETTER = test instanceof Array;\n } catch (error) { /* empty */ }\n return function setPrototypeOf(O, proto) {\n anObject(O);\n aPossiblePrototype(proto);\n if (CORRECT_SETTER) setter.call(O, proto);\n else O.__proto__ = proto;\n return O;\n };\n}() : undefined);\n","var hiddenKeys = require('../internals/hidden-keys');\nvar isObject = require('../internals/is-object');\nvar has = require('../internals/has');\nvar defineProperty = require('../internals/object-define-property').f;\nvar uid = require('../internals/uid');\nvar FREEZING = require('../internals/freezing');\n\nvar METADATA = uid('meta');\nvar id = 0;\n\nvar isExtensible = Object.isExtensible || function () {\n return true;\n};\n\nvar setMetadata = function (it) {\n defineProperty(it, METADATA, { value: {\n objectID: 'O' + ++id, // object ID\n weakData: {} // weak collections IDs\n } });\n};\n\nvar fastKey = function (it, create) {\n // return a primitive with prefix\n if (!isObject(it)) return typeof it == 'symbol' ? it : (typeof it == 'string' ? 'S' : 'P') + it;\n if (!has(it, METADATA)) {\n // can't set metadata to uncaught frozen object\n if (!isExtensible(it)) return 'F';\n // not necessary to add metadata\n if (!create) return 'E';\n // add missing metadata\n setMetadata(it);\n // return object ID\n } return it[METADATA].objectID;\n};\n\nvar getWeakData = function (it, create) {\n if (!has(it, METADATA)) {\n // can't set metadata to uncaught frozen object\n if (!isExtensible(it)) return true;\n // not necessary to add metadata\n if (!create) return false;\n // add missing metadata\n setMetadata(it);\n // return the store of weak collections IDs\n } return it[METADATA].weakData;\n};\n\n// add metadata on freeze-family methods calling\nvar onFreeze = function (it) {\n if (FREEZING && meta.REQUIRED && isExtensible(it) && !has(it, METADATA)) setMetadata(it);\n return it;\n};\n\nvar meta = module.exports = {\n REQUIRED: false,\n fastKey: fastKey,\n getWeakData: getWeakData,\n onFreeze: onFreeze\n};\n\nhiddenKeys[METADATA] = true;\n","var anObject = require('../internals/an-object');\nvar isArrayIteratorMethod = require('../internals/is-array-iterator-method');\nvar toLength = require('../internals/to-length');\nvar bind = require('../internals/function-bind-context');\nvar getIteratorMethod = require('../internals/get-iterator-method');\nvar callWithSafeIterationClosing = require('../internals/call-with-safe-iteration-closing');\n\nvar Result = function (stopped, result) {\n this.stopped = stopped;\n this.result = result;\n};\n\nvar iterate = module.exports = function (iterable, fn, that, AS_ENTRIES, IS_ITERATOR) {\n var boundFunction = bind(fn, that, AS_ENTRIES ? 2 : 1);\n var iterator, iterFn, index, length, result, next, step;\n\n if (IS_ITERATOR) {\n iterator = iterable;\n } else {\n iterFn = getIteratorMethod(iterable);\n if (typeof iterFn != 'function') throw TypeError('Target is not iterable');\n // optimisation for array iterators\n if (isArrayIteratorMethod(iterFn)) {\n for (index = 0, length = toLength(iterable.length); length > index; index++) {\n result = AS_ENTRIES\n ? boundFunction(anObject(step = iterable[index])[0], step[1])\n : boundFunction(iterable[index]);\n if (result && result instanceof Result) return result;\n } return new Result(false);\n }\n iterator = iterFn.call(iterable);\n }\n\n next = iterator.next;\n while (!(step = next.call(iterator)).done) {\n result = callWithSafeIterationClosing(iterator, boundFunction, step.value, AS_ENTRIES);\n if (typeof result == 'object' && result && result instanceof Result) return result;\n } return new Result(false);\n};\n\niterate.stop = function (result) {\n return new Result(true, result);\n};\n","var TO_STRING_TAG_SUPPORT = require('../internals/to-string-tag-support');\nvar classofRaw = require('../internals/classof-raw');\nvar wellKnownSymbol = require('../internals/well-known-symbol');\n\nvar TO_STRING_TAG = wellKnownSymbol('toStringTag');\n// ES3 wrong here\nvar CORRECT_ARGUMENTS = classofRaw(function () { return arguments; }()) == 'Arguments';\n\n// fallback for IE11 Script Access Denied error\nvar tryGet = function (it, key) {\n try {\n return it[key];\n } catch (error) { /* empty */ }\n};\n\n// getting tag from ES6+ `Object.prototype.toString`\nmodule.exports = TO_STRING_TAG_SUPPORT ? classofRaw : function (it) {\n var O, tag, result;\n return it === undefined ? 'Undefined' : it === null ? 'Null'\n // @@toStringTag case\n : typeof (tag = tryGet(O = Object(it), TO_STRING_TAG)) == 'string' ? tag\n // builtinTag case\n : CORRECT_ARGUMENTS ? classofRaw(O)\n // ES3 arguments fallback\n : (result = classofRaw(O)) == 'Object' && typeof O.callee == 'function' ? 'Arguments' : result;\n};\n","module.exports = function (it, Constructor, name) {\n if (!(it instanceof Constructor)) {\n throw TypeError('Incorrect ' + (name ? name + ' ' : '') + 'invocation');\n } return it;\n};\n","// iterable DOM collections\n// flag - `iterable` interface - 'entries', 'keys', 'values', 'forEach' methods\nmodule.exports = {\n CSSRuleList: 0,\n CSSStyleDeclaration: 0,\n CSSValueList: 0,\n ClientRectList: 0,\n DOMRectList: 0,\n DOMStringList: 0,\n DOMTokenList: 1,\n DataTransferItemList: 0,\n FileList: 0,\n HTMLAllCollection: 0,\n HTMLCollection: 0,\n HTMLFormElement: 0,\n HTMLSelectElement: 0,\n MediaList: 0,\n MimeTypeArray: 0,\n NamedNodeMap: 0,\n NodeList: 1,\n PaintRequestList: 0,\n Plugin: 0,\n PluginArray: 0,\n SVGLengthList: 0,\n SVGNumberList: 0,\n SVGPathSegList: 0,\n SVGPointList: 0,\n SVGStringList: 0,\n SVGTransformList: 0,\n SourceBufferList: 0,\n StyleSheetList: 0,\n TextTrackCueList: 0,\n TextTrackList: 0,\n TouchList: 0\n};\n","\"use strict\";\n\nrequire(\"core-js/modules/es.array.concat\");\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.loadState = loadState;\n\n/**\n * @param app app ID, e.g. \"mail\"\n * @param key name of the property\n * @throws if the key can't be found\n */\nfunction loadState(app, key) {\n var elem = document.querySelector(\"#initial-state-\".concat(app, \"-\").concat(key));\n\n if (elem === null) {\n throw new Error(\"Could not find initial state \".concat(key, \" of \").concat(app));\n }\n\n try {\n return JSON.parse(atob(elem.value));\n } catch (e) {\n throw new Error(\"Could not parse initial state \".concat(key, \" of \").concat(app));\n }\n}\n//# sourceMappingURL=index.js.map","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.ProxyBus = void 0;\n\nvar _semver = _interopRequireDefault(require(\"semver\"));\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nfunction _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }\n\nfunction _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }\n\nfunction _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }\n\nvar packageJson = {\n name: \"@nextcloud/event-bus\",\n version: \"1.1.2\",\n description: \"\",\n main: \"dist/index.js\",\n types: \"dist/index.d.ts\",\n scripts: {\n build: \"babel ./lib --out-dir dist --extensions '.ts,.tsx' --source-maps && tsc --emitDeclarationOnly\",\n \"build:doc\": \"typedoc --excludeNotExported --mode file --out dist/doc lib/index.ts && touch dist/doc/.nojekyll\",\n \"check-types\": \"tsc\",\n dev: \"babel ./lib --out-dir dist --extensions '.ts,.tsx' --watch\",\n test: \"jest\",\n \"test:watch\": \"jest --watchAll\"\n },\n keywords: [\"nextcloud\"],\n homepage: \"https://github.com/nextcloud/nextcloud-event-bus#readme\",\n author: \"Christoph Wurst\",\n license: \"GPL-3.0-or-later\",\n repository: {\n type: \"git\",\n url: \"https://github.com/nextcloud/nextcloud-event-bus\"\n },\n dependencies: {\n \"@types/semver\": \"^6.2.0\",\n \"core-js\": \"^3.6.2\",\n semver: \"^6.3.0\"\n },\n devDependencies: {\n \"@babel/cli\": \"^7.6.0\",\n \"@babel/core\": \"^7.6.0\",\n \"@babel/plugin-proposal-class-properties\": \"^7.5.5\",\n \"@babel/preset-env\": \"^7.6.0\",\n \"@babel/preset-typescript\": \"^7.6.0\",\n \"@nextcloud/browserslist-config\": \"^1.0.0\",\n \"babel-jest\": \"^24.9.0\",\n \"babel-plugin-inline-json-import\": \"^0.3.2\",\n jest: \"^24.9.0\",\n typedoc: \"^0.15.7\",\n typescript: \"^3.6.3\"\n },\n browserslist: [\"extends @nextcloud/browserslist-config\"]\n};\n\nvar ProxyBus =\n/*#__PURE__*/\nfunction () {\n function ProxyBus(bus) {\n _classCallCheck(this, ProxyBus);\n\n _defineProperty(this, \"bus\", void 0);\n\n if (typeof bus.getVersion !== 'function' || !_semver.default.valid(bus.getVersion())) {\n console.warn('Proxying an event bus with an unknown or invalid version');\n } else if (_semver.default.major(bus.getVersion()) !== _semver.default.major(this.getVersion())) {\n console.warn('Proxying an event bus of version ' + bus.getVersion() + ' with ' + this.getVersion());\n }\n\n this.bus = bus;\n }\n\n _createClass(ProxyBus, [{\n key: \"getVersion\",\n value: function getVersion() {\n return packageJson.version;\n }\n }, {\n key: \"subscribe\",\n value: function subscribe(name, handler) {\n this.bus.subscribe(name, handler);\n }\n }, {\n key: \"unsubscribe\",\n value: function unsubscribe(name, handler) {\n this.bus.unsubscribe(name, handler);\n }\n }, {\n key: \"emit\",\n value: function emit(name, event) {\n this.bus.emit(name, event);\n }\n }]);\n\n return ProxyBus;\n}();\n\nexports.ProxyBus = ProxyBus;\n//# sourceMappingURL=ProxyBus.js.map","exports = module.exports = SemVer\n\nvar debug\n/* istanbul ignore next */\nif (typeof process === 'object' &&\n process.env &&\n process.env.NODE_DEBUG &&\n /\\bsemver\\b/i.test(process.env.NODE_DEBUG)) {\n debug = function () {\n var args = Array.prototype.slice.call(arguments, 0)\n args.unshift('SEMVER')\n console.log.apply(console, args)\n }\n} else {\n debug = function () {}\n}\n\n// Note: this is the semver.org version of the spec that it implements\n// Not necessarily the package version of this code.\nexports.SEMVER_SPEC_VERSION = '2.0.0'\n\nvar MAX_LENGTH = 256\nvar MAX_SAFE_INTEGER = Number.MAX_SAFE_INTEGER ||\n /* istanbul ignore next */ 9007199254740991\n\n// Max safe segment length for coercion.\nvar MAX_SAFE_COMPONENT_LENGTH = 16\n\n// The actual regexps go on exports.re\nvar re = exports.re = []\nvar src = exports.src = []\nvar t = exports.tokens = {}\nvar R = 0\n\nfunction tok (n) {\n t[n] = R++\n}\n\n// The following Regular Expressions can be used for tokenizing,\n// validating, and parsing SemVer version strings.\n\n// ## Numeric Identifier\n// A single `0`, or a non-zero digit followed by zero or more digits.\n\ntok('NUMERICIDENTIFIER')\nsrc[t.NUMERICIDENTIFIER] = '0|[1-9]\\\\d*'\ntok('NUMERICIDENTIFIERLOOSE')\nsrc[t.NUMERICIDENTIFIERLOOSE] = '[0-9]+'\n\n// ## Non-numeric Identifier\n// Zero or more digits, followed by a letter or hyphen, and then zero or\n// more letters, digits, or hyphens.\n\ntok('NONNUMERICIDENTIFIER')\nsrc[t.NONNUMERICIDENTIFIER] = '\\\\d*[a-zA-Z-][a-zA-Z0-9-]*'\n\n// ## Main Version\n// Three dot-separated numeric identifiers.\n\ntok('MAINVERSION')\nsrc[t.MAINVERSION] = '(' + src[t.NUMERICIDENTIFIER] + ')\\\\.' +\n '(' + src[t.NUMERICIDENTIFIER] + ')\\\\.' +\n '(' + src[t.NUMERICIDENTIFIER] + ')'\n\ntok('MAINVERSIONLOOSE')\nsrc[t.MAINVERSIONLOOSE] = '(' + src[t.NUMERICIDENTIFIERLOOSE] + ')\\\\.' +\n '(' + src[t.NUMERICIDENTIFIERLOOSE] + ')\\\\.' +\n '(' + src[t.NUMERICIDENTIFIERLOOSE] + ')'\n\n// ## Pre-release Version Identifier\n// A numeric identifier, or a non-numeric identifier.\n\ntok('PRERELEASEIDENTIFIER')\nsrc[t.PRERELEASEIDENTIFIER] = '(?:' + src[t.NUMERICIDENTIFIER] +\n '|' + src[t.NONNUMERICIDENTIFIER] + ')'\n\ntok('PRERELEASEIDENTIFIERLOOSE')\nsrc[t.PRERELEASEIDENTIFIERLOOSE] = '(?:' + src[t.NUMERICIDENTIFIERLOOSE] +\n '|' + src[t.NONNUMERICIDENTIFIER] + ')'\n\n// ## Pre-release Version\n// Hyphen, followed by one or more dot-separated pre-release version\n// identifiers.\n\ntok('PRERELEASE')\nsrc[t.PRERELEASE] = '(?:-(' + src[t.PRERELEASEIDENTIFIER] +\n '(?:\\\\.' + src[t.PRERELEASEIDENTIFIER] + ')*))'\n\ntok('PRERELEASELOOSE')\nsrc[t.PRERELEASELOOSE] = '(?:-?(' + src[t.PRERELEASEIDENTIFIERLOOSE] +\n '(?:\\\\.' + src[t.PRERELEASEIDENTIFIERLOOSE] + ')*))'\n\n// ## Build Metadata Identifier\n// Any combination of digits, letters, or hyphens.\n\ntok('BUILDIDENTIFIER')\nsrc[t.BUILDIDENTIFIER] = '[0-9A-Za-z-]+'\n\n// ## Build Metadata\n// Plus sign, followed by one or more period-separated build metadata\n// identifiers.\n\ntok('BUILD')\nsrc[t.BUILD] = '(?:\\\\+(' + src[t.BUILDIDENTIFIER] +\n '(?:\\\\.' + src[t.BUILDIDENTIFIER] + ')*))'\n\n// ## Full Version String\n// A main version, followed optionally by a pre-release version and\n// build metadata.\n\n// Note that the only major, minor, patch, and pre-release sections of\n// the version string are capturing groups. The build metadata is not a\n// capturing group, because it should not ever be used in version\n// comparison.\n\ntok('FULL')\ntok('FULLPLAIN')\nsrc[t.FULLPLAIN] = 'v?' + src[t.MAINVERSION] +\n src[t.PRERELEASE] + '?' +\n src[t.BUILD] + '?'\n\nsrc[t.FULL] = '^' + src[t.FULLPLAIN] + '$'\n\n// like full, but allows v1.2.3 and =1.2.3, which people do sometimes.\n// also, 1.0.0alpha1 (prerelease without the hyphen) which is pretty\n// common in the npm registry.\ntok('LOOSEPLAIN')\nsrc[t.LOOSEPLAIN] = '[v=\\\\s]*' + src[t.MAINVERSIONLOOSE] +\n src[t.PRERELEASELOOSE] + '?' +\n src[t.BUILD] + '?'\n\ntok('LOOSE')\nsrc[t.LOOSE] = '^' + src[t.LOOSEPLAIN] + '$'\n\ntok('GTLT')\nsrc[t.GTLT] = '((?:<|>)?=?)'\n\n// Something like \"2.*\" or \"1.2.x\".\n// Note that \"x.x\" is a valid xRange identifer, meaning \"any version\"\n// Only the first item is strictly required.\ntok('XRANGEIDENTIFIERLOOSE')\nsrc[t.XRANGEIDENTIFIERLOOSE] = src[t.NUMERICIDENTIFIERLOOSE] + '|x|X|\\\\*'\ntok('XRANGEIDENTIFIER')\nsrc[t.XRANGEIDENTIFIER] = src[t.NUMERICIDENTIFIER] + '|x|X|\\\\*'\n\ntok('XRANGEPLAIN')\nsrc[t.XRANGEPLAIN] = '[v=\\\\s]*(' + src[t.XRANGEIDENTIFIER] + ')' +\n '(?:\\\\.(' + src[t.XRANGEIDENTIFIER] + ')' +\n '(?:\\\\.(' + src[t.XRANGEIDENTIFIER] + ')' +\n '(?:' + src[t.PRERELEASE] + ')?' +\n src[t.BUILD] + '?' +\n ')?)?'\n\ntok('XRANGEPLAINLOOSE')\nsrc[t.XRANGEPLAINLOOSE] = '[v=\\\\s]*(' + src[t.XRANGEIDENTIFIERLOOSE] + ')' +\n '(?:\\\\.(' + src[t.XRANGEIDENTIFIERLOOSE] + ')' +\n '(?:\\\\.(' + src[t.XRANGEIDENTIFIERLOOSE] + ')' +\n '(?:' + src[t.PRERELEASELOOSE] + ')?' +\n src[t.BUILD] + '?' +\n ')?)?'\n\ntok('XRANGE')\nsrc[t.XRANGE] = '^' + src[t.GTLT] + '\\\\s*' + src[t.XRANGEPLAIN] + '$'\ntok('XRANGELOOSE')\nsrc[t.XRANGELOOSE] = '^' + src[t.GTLT] + '\\\\s*' + src[t.XRANGEPLAINLOOSE] + '$'\n\n// Coercion.\n// Extract anything that could conceivably be a part of a valid semver\ntok('COERCE')\nsrc[t.COERCE] = '(^|[^\\\\d])' +\n '(\\\\d{1,' + MAX_SAFE_COMPONENT_LENGTH + '})' +\n '(?:\\\\.(\\\\d{1,' + MAX_SAFE_COMPONENT_LENGTH + '}))?' +\n '(?:\\\\.(\\\\d{1,' + MAX_SAFE_COMPONENT_LENGTH + '}))?' +\n '(?:$|[^\\\\d])'\ntok('COERCERTL')\nre[t.COERCERTL] = new RegExp(src[t.COERCE], 'g')\n\n// Tilde ranges.\n// Meaning is \"reasonably at or greater than\"\ntok('LONETILDE')\nsrc[t.LONETILDE] = '(?:~>?)'\n\ntok('TILDETRIM')\nsrc[t.TILDETRIM] = '(\\\\s*)' + src[t.LONETILDE] + '\\\\s+'\nre[t.TILDETRIM] = new RegExp(src[t.TILDETRIM], 'g')\nvar tildeTrimReplace = '$1~'\n\ntok('TILDE')\nsrc[t.TILDE] = '^' + src[t.LONETILDE] + src[t.XRANGEPLAIN] + '$'\ntok('TILDELOOSE')\nsrc[t.TILDELOOSE] = '^' + src[t.LONETILDE] + src[t.XRANGEPLAINLOOSE] + '$'\n\n// Caret ranges.\n// Meaning is \"at least and backwards compatible with\"\ntok('LONECARET')\nsrc[t.LONECARET] = '(?:\\\\^)'\n\ntok('CARETTRIM')\nsrc[t.CARETTRIM] = '(\\\\s*)' + src[t.LONECARET] + '\\\\s+'\nre[t.CARETTRIM] = new RegExp(src[t.CARETTRIM], 'g')\nvar caretTrimReplace = '$1^'\n\ntok('CARET')\nsrc[t.CARET] = '^' + src[t.LONECARET] + src[t.XRANGEPLAIN] + '$'\ntok('CARETLOOSE')\nsrc[t.CARETLOOSE] = '^' + src[t.LONECARET] + src[t.XRANGEPLAINLOOSE] + '$'\n\n// A simple gt/lt/eq thing, or just \"\" to indicate \"any version\"\ntok('COMPARATORLOOSE')\nsrc[t.COMPARATORLOOSE] = '^' + src[t.GTLT] + '\\\\s*(' + src[t.LOOSEPLAIN] + ')$|^$'\ntok('COMPARATOR')\nsrc[t.COMPARATOR] = '^' + src[t.GTLT] + '\\\\s*(' + src[t.FULLPLAIN] + ')$|^$'\n\n// An expression to strip any whitespace between the gtlt and the thing\n// it modifies, so that `> 1.2.3` ==> `>1.2.3`\ntok('COMPARATORTRIM')\nsrc[t.COMPARATORTRIM] = '(\\\\s*)' + src[t.GTLT] +\n '\\\\s*(' + src[t.LOOSEPLAIN] + '|' + src[t.XRANGEPLAIN] + ')'\n\n// this one has to use the /g flag\nre[t.COMPARATORTRIM] = new RegExp(src[t.COMPARATORTRIM], 'g')\nvar comparatorTrimReplace = '$1$2$3'\n\n// Something like `1.2.3 - 1.2.4`\n// Note that these all use the loose form, because they'll be\n// checked against either the strict or loose comparator form\n// later.\ntok('HYPHENRANGE')\nsrc[t.HYPHENRANGE] = '^\\\\s*(' + src[t.XRANGEPLAIN] + ')' +\n '\\\\s+-\\\\s+' +\n '(' + src[t.XRANGEPLAIN] + ')' +\n '\\\\s*$'\n\ntok('HYPHENRANGELOOSE')\nsrc[t.HYPHENRANGELOOSE] = '^\\\\s*(' + src[t.XRANGEPLAINLOOSE] + ')' +\n '\\\\s+-\\\\s+' +\n '(' + src[t.XRANGEPLAINLOOSE] + ')' +\n '\\\\s*$'\n\n// Star ranges basically just allow anything at all.\ntok('STAR')\nsrc[t.STAR] = '(<|>)?=?\\\\s*\\\\*'\n\n// Compile to actual regexp objects.\n// All are flag-free, unless they were created above with a flag.\nfor (var i = 0; i < R; i++) {\n debug(i, src[i])\n if (!re[i]) {\n re[i] = new RegExp(src[i])\n }\n}\n\nexports.parse = parse\nfunction parse (version, options) {\n if (!options || typeof options !== 'object') {\n options = {\n loose: !!options,\n includePrerelease: false\n }\n }\n\n if (version instanceof SemVer) {\n return version\n }\n\n if (typeof version !== 'string') {\n return null\n }\n\n if (version.length > MAX_LENGTH) {\n return null\n }\n\n var r = options.loose ? re[t.LOOSE] : re[t.FULL]\n if (!r.test(version)) {\n return null\n }\n\n try {\n return new SemVer(version, options)\n } catch (er) {\n return null\n }\n}\n\nexports.valid = valid\nfunction valid (version, options) {\n var v = parse(version, options)\n return v ? v.version : null\n}\n\nexports.clean = clean\nfunction clean (version, options) {\n var s = parse(version.trim().replace(/^[=v]+/, ''), options)\n return s ? s.version : null\n}\n\nexports.SemVer = SemVer\n\nfunction SemVer (version, options) {\n if (!options || typeof options !== 'object') {\n options = {\n loose: !!options,\n includePrerelease: false\n }\n }\n if (version instanceof SemVer) {\n if (version.loose === options.loose) {\n return version\n } else {\n version = version.version\n }\n } else if (typeof version !== 'string') {\n throw new TypeError('Invalid Version: ' + version)\n }\n\n if (version.length > MAX_LENGTH) {\n throw new TypeError('version is longer than ' + MAX_LENGTH + ' characters')\n }\n\n if (!(this instanceof SemVer)) {\n return new SemVer(version, options)\n }\n\n debug('SemVer', version, options)\n this.options = options\n this.loose = !!options.loose\n\n var m = version.trim().match(options.loose ? re[t.LOOSE] : re[t.FULL])\n\n if (!m) {\n throw new TypeError('Invalid Version: ' + version)\n }\n\n this.raw = version\n\n // these are actually numbers\n this.major = +m[1]\n this.minor = +m[2]\n this.patch = +m[3]\n\n if (this.major > MAX_SAFE_INTEGER || this.major < 0) {\n throw new TypeError('Invalid major version')\n }\n\n if (this.minor > MAX_SAFE_INTEGER || this.minor < 0) {\n throw new TypeError('Invalid minor version')\n }\n\n if (this.patch > MAX_SAFE_INTEGER || this.patch < 0) {\n throw new TypeError('Invalid patch version')\n }\n\n // numberify any prerelease numeric ids\n if (!m[4]) {\n this.prerelease = []\n } else {\n this.prerelease = m[4].split('.').map(function (id) {\n if (/^[0-9]+$/.test(id)) {\n var num = +id\n if (num >= 0 && num < MAX_SAFE_INTEGER) {\n return num\n }\n }\n return id\n })\n }\n\n this.build = m[5] ? m[5].split('.') : []\n this.format()\n}\n\nSemVer.prototype.format = function () {\n this.version = this.major + '.' + this.minor + '.' + this.patch\n if (this.prerelease.length) {\n this.version += '-' + this.prerelease.join('.')\n }\n return this.version\n}\n\nSemVer.prototype.toString = function () {\n return this.version\n}\n\nSemVer.prototype.compare = function (other) {\n debug('SemVer.compare', this.version, this.options, other)\n if (!(other instanceof SemVer)) {\n other = new SemVer(other, this.options)\n }\n\n return this.compareMain(other) || this.comparePre(other)\n}\n\nSemVer.prototype.compareMain = function (other) {\n if (!(other instanceof SemVer)) {\n other = new SemVer(other, this.options)\n }\n\n return compareIdentifiers(this.major, other.major) ||\n compareIdentifiers(this.minor, other.minor) ||\n compareIdentifiers(this.patch, other.patch)\n}\n\nSemVer.prototype.comparePre = function (other) {\n if (!(other instanceof SemVer)) {\n other = new SemVer(other, this.options)\n }\n\n // NOT having a prerelease is > having one\n if (this.prerelease.length && !other.prerelease.length) {\n return -1\n } else if (!this.prerelease.length && other.prerelease.length) {\n return 1\n } else if (!this.prerelease.length && !other.prerelease.length) {\n return 0\n }\n\n var i = 0\n do {\n var a = this.prerelease[i]\n var b = other.prerelease[i]\n debug('prerelease compare', i, a, b)\n if (a === undefined && b === undefined) {\n return 0\n } else if (b === undefined) {\n return 1\n } else if (a === undefined) {\n return -1\n } else if (a === b) {\n continue\n } else {\n return compareIdentifiers(a, b)\n }\n } while (++i)\n}\n\nSemVer.prototype.compareBuild = function (other) {\n if (!(other instanceof SemVer)) {\n other = new SemVer(other, this.options)\n }\n\n var i = 0\n do {\n var a = this.build[i]\n var b = other.build[i]\n debug('prerelease compare', i, a, b)\n if (a === undefined && b === undefined) {\n return 0\n } else if (b === undefined) {\n return 1\n } else if (a === undefined) {\n return -1\n } else if (a === b) {\n continue\n } else {\n return compareIdentifiers(a, b)\n }\n } while (++i)\n}\n\n// preminor will bump the version up to the next minor release, and immediately\n// down to pre-release. premajor and prepatch work the same way.\nSemVer.prototype.inc = function (release, identifier) {\n switch (release) {\n case 'premajor':\n this.prerelease.length = 0\n this.patch = 0\n this.minor = 0\n this.major++\n this.inc('pre', identifier)\n break\n case 'preminor':\n this.prerelease.length = 0\n this.patch = 0\n this.minor++\n this.inc('pre', identifier)\n break\n case 'prepatch':\n // If this is already a prerelease, it will bump to the next version\n // drop any prereleases that might already exist, since they are not\n // relevant at this point.\n this.prerelease.length = 0\n this.inc('patch', identifier)\n this.inc('pre', identifier)\n break\n // If the input is a non-prerelease version, this acts the same as\n // prepatch.\n case 'prerelease':\n if (this.prerelease.length === 0) {\n this.inc('patch', identifier)\n }\n this.inc('pre', identifier)\n break\n\n case 'major':\n // If this is a pre-major version, bump up to the same major version.\n // Otherwise increment major.\n // 1.0.0-5 bumps to 1.0.0\n // 1.1.0 bumps to 2.0.0\n if (this.minor !== 0 ||\n this.patch !== 0 ||\n this.prerelease.length === 0) {\n this.major++\n }\n this.minor = 0\n this.patch = 0\n this.prerelease = []\n break\n case 'minor':\n // If this is a pre-minor version, bump up to the same minor version.\n // Otherwise increment minor.\n // 1.2.0-5 bumps to 1.2.0\n // 1.2.1 bumps to 1.3.0\n if (this.patch !== 0 || this.prerelease.length === 0) {\n this.minor++\n }\n this.patch = 0\n this.prerelease = []\n break\n case 'patch':\n // If this is not a pre-release version, it will increment the patch.\n // If it is a pre-release it will bump up to the same patch version.\n // 1.2.0-5 patches to 1.2.0\n // 1.2.0 patches to 1.2.1\n if (this.prerelease.length === 0) {\n this.patch++\n }\n this.prerelease = []\n break\n // This probably shouldn't be used publicly.\n // 1.0.0 \"pre\" would become 1.0.0-0 which is the wrong direction.\n case 'pre':\n if (this.prerelease.length === 0) {\n this.prerelease = [0]\n } else {\n var i = this.prerelease.length\n while (--i >= 0) {\n if (typeof this.prerelease[i] === 'number') {\n this.prerelease[i]++\n i = -2\n }\n }\n if (i === -1) {\n // didn't increment anything\n this.prerelease.push(0)\n }\n }\n if (identifier) {\n // 1.2.0-beta.1 bumps to 1.2.0-beta.2,\n // 1.2.0-beta.fooblz or 1.2.0-beta bumps to 1.2.0-beta.0\n if (this.prerelease[0] === identifier) {\n if (isNaN(this.prerelease[1])) {\n this.prerelease = [identifier, 0]\n }\n } else {\n this.prerelease = [identifier, 0]\n }\n }\n break\n\n default:\n throw new Error('invalid increment argument: ' + release)\n }\n this.format()\n this.raw = this.version\n return this\n}\n\nexports.inc = inc\nfunction inc (version, release, loose, identifier) {\n if (typeof (loose) === 'string') {\n identifier = loose\n loose = undefined\n }\n\n try {\n return new SemVer(version, loose).inc(release, identifier).version\n } catch (er) {\n return null\n }\n}\n\nexports.diff = diff\nfunction diff (version1, version2) {\n if (eq(version1, version2)) {\n return null\n } else {\n var v1 = parse(version1)\n var v2 = parse(version2)\n var prefix = ''\n if (v1.prerelease.length || v2.prerelease.length) {\n prefix = 'pre'\n var defaultResult = 'prerelease'\n }\n for (var key in v1) {\n if (key === 'major' || key === 'minor' || key === 'patch') {\n if (v1[key] !== v2[key]) {\n return prefix + key\n }\n }\n }\n return defaultResult // may be undefined\n }\n}\n\nexports.compareIdentifiers = compareIdentifiers\n\nvar numeric = /^[0-9]+$/\nfunction compareIdentifiers (a, b) {\n var anum = numeric.test(a)\n var bnum = numeric.test(b)\n\n if (anum && bnum) {\n a = +a\n b = +b\n }\n\n return a === b ? 0\n : (anum && !bnum) ? -1\n : (bnum && !anum) ? 1\n : a < b ? -1\n : 1\n}\n\nexports.rcompareIdentifiers = rcompareIdentifiers\nfunction rcompareIdentifiers (a, b) {\n return compareIdentifiers(b, a)\n}\n\nexports.major = major\nfunction major (a, loose) {\n return new SemVer(a, loose).major\n}\n\nexports.minor = minor\nfunction minor (a, loose) {\n return new SemVer(a, loose).minor\n}\n\nexports.patch = patch\nfunction patch (a, loose) {\n return new SemVer(a, loose).patch\n}\n\nexports.compare = compare\nfunction compare (a, b, loose) {\n return new SemVer(a, loose).compare(new SemVer(b, loose))\n}\n\nexports.compareLoose = compareLoose\nfunction compareLoose (a, b) {\n return compare(a, b, true)\n}\n\nexports.compareBuild = compareBuild\nfunction compareBuild (a, b, loose) {\n var versionA = new SemVer(a, loose)\n var versionB = new SemVer(b, loose)\n return versionA.compare(versionB) || versionA.compareBuild(versionB)\n}\n\nexports.rcompare = rcompare\nfunction rcompare (a, b, loose) {\n return compare(b, a, loose)\n}\n\nexports.sort = sort\nfunction sort (list, loose) {\n return list.sort(function (a, b) {\n return exports.compareBuild(a, b, loose)\n })\n}\n\nexports.rsort = rsort\nfunction rsort (list, loose) {\n return list.sort(function (a, b) {\n return exports.compareBuild(b, a, loose)\n })\n}\n\nexports.gt = gt\nfunction gt (a, b, loose) {\n return compare(a, b, loose) > 0\n}\n\nexports.lt = lt\nfunction lt (a, b, loose) {\n return compare(a, b, loose) < 0\n}\n\nexports.eq = eq\nfunction eq (a, b, loose) {\n return compare(a, b, loose) === 0\n}\n\nexports.neq = neq\nfunction neq (a, b, loose) {\n return compare(a, b, loose) !== 0\n}\n\nexports.gte = gte\nfunction gte (a, b, loose) {\n return compare(a, b, loose) >= 0\n}\n\nexports.lte = lte\nfunction lte (a, b, loose) {\n return compare(a, b, loose) <= 0\n}\n\nexports.cmp = cmp\nfunction cmp (a, op, b, loose) {\n switch (op) {\n case '===':\n if (typeof a === 'object')\n a = a.version\n if (typeof b === 'object')\n b = b.version\n return a === b\n\n case '!==':\n if (typeof a === 'object')\n a = a.version\n if (typeof b === 'object')\n b = b.version\n return a !== b\n\n case '':\n case '=':\n case '==':\n return eq(a, b, loose)\n\n case '!=':\n return neq(a, b, loose)\n\n case '>':\n return gt(a, b, loose)\n\n case '>=':\n return gte(a, b, loose)\n\n case '<':\n return lt(a, b, loose)\n\n case '<=':\n return lte(a, b, loose)\n\n default:\n throw new TypeError('Invalid operator: ' + op)\n }\n}\n\nexports.Comparator = Comparator\nfunction Comparator (comp, options) {\n if (!options || typeof options !== 'object') {\n options = {\n loose: !!options,\n includePrerelease: false\n }\n }\n\n if (comp instanceof Comparator) {\n if (comp.loose === !!options.loose) {\n return comp\n } else {\n comp = comp.value\n }\n }\n\n if (!(this instanceof Comparator)) {\n return new Comparator(comp, options)\n }\n\n debug('comparator', comp, options)\n this.options = options\n this.loose = !!options.loose\n this.parse(comp)\n\n if (this.semver === ANY) {\n this.value = ''\n } else {\n this.value = this.operator + this.semver.version\n }\n\n debug('comp', this)\n}\n\nvar ANY = {}\nComparator.prototype.parse = function (comp) {\n var r = this.options.loose ? re[t.COMPARATORLOOSE] : re[t.COMPARATOR]\n var m = comp.match(r)\n\n if (!m) {\n throw new TypeError('Invalid comparator: ' + comp)\n }\n\n this.operator = m[1] !== undefined ? m[1] : ''\n if (this.operator === '=') {\n this.operator = ''\n }\n\n // if it literally is just '>' or '' then allow anything.\n if (!m[2]) {\n this.semver = ANY\n } else {\n this.semver = new SemVer(m[2], this.options.loose)\n }\n}\n\nComparator.prototype.toString = function () {\n return this.value\n}\n\nComparator.prototype.test = function (version) {\n debug('Comparator.test', version, this.options.loose)\n\n if (this.semver === ANY || version === ANY) {\n return true\n }\n\n if (typeof version === 'string') {\n try {\n version = new SemVer(version, this.options)\n } catch (er) {\n return false\n }\n }\n\n return cmp(version, this.operator, this.semver, this.options)\n}\n\nComparator.prototype.intersects = function (comp, options) {\n if (!(comp instanceof Comparator)) {\n throw new TypeError('a Comparator is required')\n }\n\n if (!options || typeof options !== 'object') {\n options = {\n loose: !!options,\n includePrerelease: false\n }\n }\n\n var rangeTmp\n\n if (this.operator === '') {\n if (this.value === '') {\n return true\n }\n rangeTmp = new Range(comp.value, options)\n return satisfies(this.value, rangeTmp, options)\n } else if (comp.operator === '') {\n if (comp.value === '') {\n return true\n }\n rangeTmp = new Range(this.value, options)\n return satisfies(comp.semver, rangeTmp, options)\n }\n\n var sameDirectionIncreasing =\n (this.operator === '>=' || this.operator === '>') &&\n (comp.operator === '>=' || comp.operator === '>')\n var sameDirectionDecreasing =\n (this.operator === '<=' || this.operator === '<') &&\n (comp.operator === '<=' || comp.operator === '<')\n var sameSemVer = this.semver.version === comp.semver.version\n var differentDirectionsInclusive =\n (this.operator === '>=' || this.operator === '<=') &&\n (comp.operator === '>=' || comp.operator === '<=')\n var oppositeDirectionsLessThan =\n cmp(this.semver, '<', comp.semver, options) &&\n ((this.operator === '>=' || this.operator === '>') &&\n (comp.operator === '<=' || comp.operator === '<'))\n var oppositeDirectionsGreaterThan =\n cmp(this.semver, '>', comp.semver, options) &&\n ((this.operator === '<=' || this.operator === '<') &&\n (comp.operator === '>=' || comp.operator === '>'))\n\n return sameDirectionIncreasing || sameDirectionDecreasing ||\n (sameSemVer && differentDirectionsInclusive) ||\n oppositeDirectionsLessThan || oppositeDirectionsGreaterThan\n}\n\nexports.Range = Range\nfunction Range (range, options) {\n if (!options || typeof options !== 'object') {\n options = {\n loose: !!options,\n includePrerelease: false\n }\n }\n\n if (range instanceof Range) {\n if (range.loose === !!options.loose &&\n range.includePrerelease === !!options.includePrerelease) {\n return range\n } else {\n return new Range(range.raw, options)\n }\n }\n\n if (range instanceof Comparator) {\n return new Range(range.value, options)\n }\n\n if (!(this instanceof Range)) {\n return new Range(range, options)\n }\n\n this.options = options\n this.loose = !!options.loose\n this.includePrerelease = !!options.includePrerelease\n\n // First, split based on boolean or ||\n this.raw = range\n this.set = range.split(/\\s*\\|\\|\\s*/).map(function (range) {\n return this.parseRange(range.trim())\n }, this).filter(function (c) {\n // throw out any that are not relevant for whatever reason\n return c.length\n })\n\n if (!this.set.length) {\n throw new TypeError('Invalid SemVer Range: ' + range)\n }\n\n this.format()\n}\n\nRange.prototype.format = function () {\n this.range = this.set.map(function (comps) {\n return comps.join(' ').trim()\n }).join('||').trim()\n return this.range\n}\n\nRange.prototype.toString = function () {\n return this.range\n}\n\nRange.prototype.parseRange = function (range) {\n var loose = this.options.loose\n range = range.trim()\n // `1.2.3 - 1.2.4` => `>=1.2.3 <=1.2.4`\n var hr = loose ? re[t.HYPHENRANGELOOSE] : re[t.HYPHENRANGE]\n range = range.replace(hr, hyphenReplace)\n debug('hyphen replace', range)\n // `> 1.2.3 < 1.2.5` => `>1.2.3 <1.2.5`\n range = range.replace(re[t.COMPARATORTRIM], comparatorTrimReplace)\n debug('comparator trim', range, re[t.COMPARATORTRIM])\n\n // `~ 1.2.3` => `~1.2.3`\n range = range.replace(re[t.TILDETRIM], tildeTrimReplace)\n\n // `^ 1.2.3` => `^1.2.3`\n range = range.replace(re[t.CARETTRIM], caretTrimReplace)\n\n // normalize spaces\n range = range.split(/\\s+/).join(' ')\n\n // At this point, the range is completely trimmed and\n // ready to be split into comparators.\n\n var compRe = loose ? re[t.COMPARATORLOOSE] : re[t.COMPARATOR]\n var set = range.split(' ').map(function (comp) {\n return parseComparator(comp, this.options)\n }, this).join(' ').split(/\\s+/)\n if (this.options.loose) {\n // in loose mode, throw out any that are not valid comparators\n set = set.filter(function (comp) {\n return !!comp.match(compRe)\n })\n }\n set = set.map(function (comp) {\n return new Comparator(comp, this.options)\n }, this)\n\n return set\n}\n\nRange.prototype.intersects = function (range, options) {\n if (!(range instanceof Range)) {\n throw new TypeError('a Range is required')\n }\n\n return this.set.some(function (thisComparators) {\n return (\n isSatisfiable(thisComparators, options) &&\n range.set.some(function (rangeComparators) {\n return (\n isSatisfiable(rangeComparators, options) &&\n thisComparators.every(function (thisComparator) {\n return rangeComparators.every(function (rangeComparator) {\n return thisComparator.intersects(rangeComparator, options)\n })\n })\n )\n })\n )\n })\n}\n\n// take a set of comparators and determine whether there\n// exists a version which can satisfy it\nfunction isSatisfiable (comparators, options) {\n var result = true\n var remainingComparators = comparators.slice()\n var testComparator = remainingComparators.pop()\n\n while (result && remainingComparators.length) {\n result = remainingComparators.every(function (otherComparator) {\n return testComparator.intersects(otherComparator, options)\n })\n\n testComparator = remainingComparators.pop()\n }\n\n return result\n}\n\n// Mostly just for testing and legacy API reasons\nexports.toComparators = toComparators\nfunction toComparators (range, options) {\n return new Range(range, options).set.map(function (comp) {\n return comp.map(function (c) {\n return c.value\n }).join(' ').trim().split(' ')\n })\n}\n\n// comprised of xranges, tildes, stars, and gtlt's at this point.\n// already replaced the hyphen ranges\n// turn into a set of JUST comparators.\nfunction parseComparator (comp, options) {\n debug('comp', comp, options)\n comp = replaceCarets(comp, options)\n debug('caret', comp)\n comp = replaceTildes(comp, options)\n debug('tildes', comp)\n comp = replaceXRanges(comp, options)\n debug('xrange', comp)\n comp = replaceStars(comp, options)\n debug('stars', comp)\n return comp\n}\n\nfunction isX (id) {\n return !id || id.toLowerCase() === 'x' || id === '*'\n}\n\n// ~, ~> --> * (any, kinda silly)\n// ~2, ~2.x, ~2.x.x, ~>2, ~>2.x ~>2.x.x --> >=2.0.0 <3.0.0\n// ~2.0, ~2.0.x, ~>2.0, ~>2.0.x --> >=2.0.0 <2.1.0\n// ~1.2, ~1.2.x, ~>1.2, ~>1.2.x --> >=1.2.0 <1.3.0\n// ~1.2.3, ~>1.2.3 --> >=1.2.3 <1.3.0\n// ~1.2.0, ~>1.2.0 --> >=1.2.0 <1.3.0\nfunction replaceTildes (comp, options) {\n return comp.trim().split(/\\s+/).map(function (comp) {\n return replaceTilde(comp, options)\n }).join(' ')\n}\n\nfunction replaceTilde (comp, options) {\n var r = options.loose ? re[t.TILDELOOSE] : re[t.TILDE]\n return comp.replace(r, function (_, M, m, p, pr) {\n debug('tilde', comp, _, M, m, p, pr)\n var ret\n\n if (isX(M)) {\n ret = ''\n } else if (isX(m)) {\n ret = '>=' + M + '.0.0 <' + (+M + 1) + '.0.0'\n } else if (isX(p)) {\n // ~1.2 == >=1.2.0 <1.3.0\n ret = '>=' + M + '.' + m + '.0 <' + M + '.' + (+m + 1) + '.0'\n } else if (pr) {\n debug('replaceTilde pr', pr)\n ret = '>=' + M + '.' + m + '.' + p + '-' + pr +\n ' <' + M + '.' + (+m + 1) + '.0'\n } else {\n // ~1.2.3 == >=1.2.3 <1.3.0\n ret = '>=' + M + '.' + m + '.' + p +\n ' <' + M + '.' + (+m + 1) + '.0'\n }\n\n debug('tilde return', ret)\n return ret\n })\n}\n\n// ^ --> * (any, kinda silly)\n// ^2, ^2.x, ^2.x.x --> >=2.0.0 <3.0.0\n// ^2.0, ^2.0.x --> >=2.0.0 <3.0.0\n// ^1.2, ^1.2.x --> >=1.2.0 <2.0.0\n// ^1.2.3 --> >=1.2.3 <2.0.0\n// ^1.2.0 --> >=1.2.0 <2.0.0\nfunction replaceCarets (comp, options) {\n return comp.trim().split(/\\s+/).map(function (comp) {\n return replaceCaret(comp, options)\n }).join(' ')\n}\n\nfunction replaceCaret (comp, options) {\n debug('caret', comp, options)\n var r = options.loose ? re[t.CARETLOOSE] : re[t.CARET]\n return comp.replace(r, function (_, M, m, p, pr) {\n debug('caret', comp, _, M, m, p, pr)\n var ret\n\n if (isX(M)) {\n ret = ''\n } else if (isX(m)) {\n ret = '>=' + M + '.0.0 <' + (+M + 1) + '.0.0'\n } else if (isX(p)) {\n if (M === '0') {\n ret = '>=' + M + '.' + m + '.0 <' + M + '.' + (+m + 1) + '.0'\n } else {\n ret = '>=' + M + '.' + m + '.0 <' + (+M + 1) + '.0.0'\n }\n } else if (pr) {\n debug('replaceCaret pr', pr)\n if (M === '0') {\n if (m === '0') {\n ret = '>=' + M + '.' + m + '.' + p + '-' + pr +\n ' <' + M + '.' + m + '.' + (+p + 1)\n } else {\n ret = '>=' + M + '.' + m + '.' + p + '-' + pr +\n ' <' + M + '.' + (+m + 1) + '.0'\n }\n } else {\n ret = '>=' + M + '.' + m + '.' + p + '-' + pr +\n ' <' + (+M + 1) + '.0.0'\n }\n } else {\n debug('no pr')\n if (M === '0') {\n if (m === '0') {\n ret = '>=' + M + '.' + m + '.' + p +\n ' <' + M + '.' + m + '.' + (+p + 1)\n } else {\n ret = '>=' + M + '.' + m + '.' + p +\n ' <' + M + '.' + (+m + 1) + '.0'\n }\n } else {\n ret = '>=' + M + '.' + m + '.' + p +\n ' <' + (+M + 1) + '.0.0'\n }\n }\n\n debug('caret return', ret)\n return ret\n })\n}\n\nfunction replaceXRanges (comp, options) {\n debug('replaceXRanges', comp, options)\n return comp.split(/\\s+/).map(function (comp) {\n return replaceXRange(comp, options)\n }).join(' ')\n}\n\nfunction replaceXRange (comp, options) {\n comp = comp.trim()\n var r = options.loose ? re[t.XRANGELOOSE] : re[t.XRANGE]\n return comp.replace(r, function (ret, gtlt, M, m, p, pr) {\n debug('xRange', comp, ret, gtlt, M, m, p, pr)\n var xM = isX(M)\n var xm = xM || isX(m)\n var xp = xm || isX(p)\n var anyX = xp\n\n if (gtlt === '=' && anyX) {\n gtlt = ''\n }\n\n // if we're including prereleases in the match, then we need\n // to fix this to -0, the lowest possible prerelease value\n pr = options.includePrerelease ? '-0' : ''\n\n if (xM) {\n if (gtlt === '>' || gtlt === '<') {\n // nothing is allowed\n ret = '<0.0.0-0'\n } else {\n // nothing is forbidden\n ret = '*'\n }\n } else if (gtlt && anyX) {\n // we know patch is an x, because we have any x at all.\n // replace X with 0\n if (xm) {\n m = 0\n }\n p = 0\n\n if (gtlt === '>') {\n // >1 => >=2.0.0\n // >1.2 => >=1.3.0\n // >1.2.3 => >= 1.2.4\n gtlt = '>='\n if (xm) {\n M = +M + 1\n m = 0\n p = 0\n } else {\n m = +m + 1\n p = 0\n }\n } else if (gtlt === '<=') {\n // <=0.7.x is actually <0.8.0, since any 0.7.x should\n // pass. Similarly, <=7.x is actually <8.0.0, etc.\n gtlt = '<'\n if (xm) {\n M = +M + 1\n } else {\n m = +m + 1\n }\n }\n\n ret = gtlt + M + '.' + m + '.' + p + pr\n } else if (xm) {\n ret = '>=' + M + '.0.0' + pr + ' <' + (+M + 1) + '.0.0' + pr\n } else if (xp) {\n ret = '>=' + M + '.' + m + '.0' + pr +\n ' <' + M + '.' + (+m + 1) + '.0' + pr\n }\n\n debug('xRange return', ret)\n\n return ret\n })\n}\n\n// Because * is AND-ed with everything else in the comparator,\n// and '' means \"any version\", just remove the *s entirely.\nfunction replaceStars (comp, options) {\n debug('replaceStars', comp, options)\n // Looseness is ignored here. star is always as loose as it gets!\n return comp.trim().replace(re[t.STAR], '')\n}\n\n// This function is passed to string.replace(re[t.HYPHENRANGE])\n// M, m, patch, prerelease, build\n// 1.2 - 3.4.5 => >=1.2.0 <=3.4.5\n// 1.2.3 - 3.4 => >=1.2.0 <3.5.0 Any 3.4.x will do\n// 1.2 - 3.4 => >=1.2.0 <3.5.0\nfunction hyphenReplace ($0,\n from, fM, fm, fp, fpr, fb,\n to, tM, tm, tp, tpr, tb) {\n if (isX(fM)) {\n from = ''\n } else if (isX(fm)) {\n from = '>=' + fM + '.0.0'\n } else if (isX(fp)) {\n from = '>=' + fM + '.' + fm + '.0'\n } else {\n from = '>=' + from\n }\n\n if (isX(tM)) {\n to = ''\n } else if (isX(tm)) {\n to = '<' + (+tM + 1) + '.0.0'\n } else if (isX(tp)) {\n to = '<' + tM + '.' + (+tm + 1) + '.0'\n } else if (tpr) {\n to = '<=' + tM + '.' + tm + '.' + tp + '-' + tpr\n } else {\n to = '<=' + to\n }\n\n return (from + ' ' + to).trim()\n}\n\n// if ANY of the sets match ALL of its comparators, then pass\nRange.prototype.test = function (version) {\n if (!version) {\n return false\n }\n\n if (typeof version === 'string') {\n try {\n version = new SemVer(version, this.options)\n } catch (er) {\n return false\n }\n }\n\n for (var i = 0; i < this.set.length; i++) {\n if (testSet(this.set[i], version, this.options)) {\n return true\n }\n }\n return false\n}\n\nfunction testSet (set, version, options) {\n for (var i = 0; i < set.length; i++) {\n if (!set[i].test(version)) {\n return false\n }\n }\n\n if (version.prerelease.length && !options.includePrerelease) {\n // Find the set of versions that are allowed to have prereleases\n // For example, ^1.2.3-pr.1 desugars to >=1.2.3-pr.1 <2.0.0\n // That should allow `1.2.3-pr.2` to pass.\n // However, `1.2.4-alpha.notready` should NOT be allowed,\n // even though it's within the range set by the comparators.\n for (i = 0; i < set.length; i++) {\n debug(set[i].semver)\n if (set[i].semver === ANY) {\n continue\n }\n\n if (set[i].semver.prerelease.length > 0) {\n var allowed = set[i].semver\n if (allowed.major === version.major &&\n allowed.minor === version.minor &&\n allowed.patch === version.patch) {\n return true\n }\n }\n }\n\n // Version has a -pre, but it's not one of the ones we like.\n return false\n }\n\n return true\n}\n\nexports.satisfies = satisfies\nfunction satisfies (version, range, options) {\n try {\n range = new Range(range, options)\n } catch (er) {\n return false\n }\n return range.test(version)\n}\n\nexports.maxSatisfying = maxSatisfying\nfunction maxSatisfying (versions, range, options) {\n var max = null\n var maxSV = null\n try {\n var rangeObj = new Range(range, options)\n } catch (er) {\n return null\n }\n versions.forEach(function (v) {\n if (rangeObj.test(v)) {\n // satisfies(v, range, options)\n if (!max || maxSV.compare(v) === -1) {\n // compare(max, v, true)\n max = v\n maxSV = new SemVer(max, options)\n }\n }\n })\n return max\n}\n\nexports.minSatisfying = minSatisfying\nfunction minSatisfying (versions, range, options) {\n var min = null\n var minSV = null\n try {\n var rangeObj = new Range(range, options)\n } catch (er) {\n return null\n }\n versions.forEach(function (v) {\n if (rangeObj.test(v)) {\n // satisfies(v, range, options)\n if (!min || minSV.compare(v) === 1) {\n // compare(min, v, true)\n min = v\n minSV = new SemVer(min, options)\n }\n }\n })\n return min\n}\n\nexports.minVersion = minVersion\nfunction minVersion (range, loose) {\n range = new Range(range, loose)\n\n var minver = new SemVer('0.0.0')\n if (range.test(minver)) {\n return minver\n }\n\n minver = new SemVer('0.0.0-0')\n if (range.test(minver)) {\n return minver\n }\n\n minver = null\n for (var i = 0; i < range.set.length; ++i) {\n var comparators = range.set[i]\n\n comparators.forEach(function (comparator) {\n // Clone to avoid manipulating the comparator's semver object.\n var compver = new SemVer(comparator.semver.version)\n switch (comparator.operator) {\n case '>':\n if (compver.prerelease.length === 0) {\n compver.patch++\n } else {\n compver.prerelease.push(0)\n }\n compver.raw = compver.format()\n /* fallthrough */\n case '':\n case '>=':\n if (!minver || gt(minver, compver)) {\n minver = compver\n }\n break\n case '<':\n case '<=':\n /* Ignore maximum versions */\n break\n /* istanbul ignore next */\n default:\n throw new Error('Unexpected operation: ' + comparator.operator)\n }\n })\n }\n\n if (minver && range.test(minver)) {\n return minver\n }\n\n return null\n}\n\nexports.validRange = validRange\nfunction validRange (range, options) {\n try {\n // Return '*' instead of '' so that truthiness works.\n // This will throw if it's invalid anyway\n return new Range(range, options).range || '*'\n } catch (er) {\n return null\n }\n}\n\n// Determine if version is less than all the versions possible in the range\nexports.ltr = ltr\nfunction ltr (version, range, options) {\n return outside(version, range, '<', options)\n}\n\n// Determine if version is greater than all the versions possible in the range.\nexports.gtr = gtr\nfunction gtr (version, range, options) {\n return outside(version, range, '>', options)\n}\n\nexports.outside = outside\nfunction outside (version, range, hilo, options) {\n version = new SemVer(version, options)\n range = new Range(range, options)\n\n var gtfn, ltefn, ltfn, comp, ecomp\n switch (hilo) {\n case '>':\n gtfn = gt\n ltefn = lte\n ltfn = lt\n comp = '>'\n ecomp = '>='\n break\n case '<':\n gtfn = lt\n ltefn = gte\n ltfn = gt\n comp = '<'\n ecomp = '<='\n break\n default:\n throw new TypeError('Must provide a hilo val of \"<\" or \">\"')\n }\n\n // If it satisifes the range it is not outside\n if (satisfies(version, range, options)) {\n return false\n }\n\n // From now on, variable terms are as if we're in \"gtr\" mode.\n // but note that everything is flipped for the \"ltr\" function.\n\n for (var i = 0; i < range.set.length; ++i) {\n var comparators = range.set[i]\n\n var high = null\n var low = null\n\n comparators.forEach(function (comparator) {\n if (comparator.semver === ANY) {\n comparator = new Comparator('>=0.0.0')\n }\n high = high || comparator\n low = low || comparator\n if (gtfn(comparator.semver, high.semver, options)) {\n high = comparator\n } else if (ltfn(comparator.semver, low.semver, options)) {\n low = comparator\n }\n })\n\n // If the edge version comparator has a operator then our version\n // isn't outside it\n if (high.operator === comp || high.operator === ecomp) {\n return false\n }\n\n // If the lowest version comparator has an operator and our version\n // is less than it then it isn't higher than the range\n if ((!low.operator || low.operator === comp) &&\n ltefn(version, low.semver)) {\n return false\n } else if (low.operator === ecomp && ltfn(version, low.semver)) {\n return false\n }\n }\n return true\n}\n\nexports.prerelease = prerelease\nfunction prerelease (version, options) {\n var parsed = parse(version, options)\n return (parsed && parsed.prerelease.length) ? parsed.prerelease : null\n}\n\nexports.intersects = intersects\nfunction intersects (r1, r2, options) {\n r1 = new Range(r1, options)\n r2 = new Range(r2, options)\n return r1.intersects(r2)\n}\n\nexports.coerce = coerce\nfunction coerce (version, options) {\n if (version instanceof SemVer) {\n return version\n }\n\n if (typeof version === 'number') {\n version = String(version)\n }\n\n if (typeof version !== 'string') {\n return null\n }\n\n options = options || {}\n\n var match = null\n if (!options.rtl) {\n match = version.match(re[t.COERCE])\n } else {\n // Find the right-most coercible string that does not share\n // a terminus with a more left-ward coercible string.\n // Eg, '1.2.3.4' wants to coerce '2.3.4', not '3.4' or '4'\n //\n // Walk through the string checking with a /g regexp\n // Manually set the index so as to pick up overlapping matches.\n // Stop when we get a match that ends at the string end, since no\n // coercible string can be more right-ward without the same terminus.\n var next\n while ((next = re[t.COERCERTL].exec(version)) &&\n (!match || match.index + match[0].length !== version.length)\n ) {\n if (!match ||\n next.index + next[0].length !== match.index + match[0].length) {\n match = next\n }\n re[t.COERCERTL].lastIndex = next.index + next[1].length + next[2].length\n }\n // leave it in a clean state\n re[t.COERCERTL].lastIndex = -1\n }\n\n if (match === null) {\n return null\n }\n\n return parse(match[2] +\n '.' + (match[3] || '0') +\n '.' + (match[4] || '0'), options)\n}\n","\"use strict\";\n\nrequire(\"core-js/modules/es.array.concat\");\n\nrequire(\"core-js/modules/es.array.filter\");\n\nrequire(\"core-js/modules/es.array.iterator\");\n\nrequire(\"core-js/modules/es.map\");\n\nrequire(\"core-js/modules/es.object.to-string\");\n\nrequire(\"core-js/modules/es.string.iterator\");\n\nrequire(\"core-js/modules/web.dom-collections.for-each\");\n\nrequire(\"core-js/modules/web.dom-collections.iterator\");\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.SimpleBus = void 0;\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nfunction _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }\n\nfunction _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }\n\nfunction _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }\n\nvar packageJson = {\n name: \"@nextcloud/event-bus\",\n version: \"1.1.2\",\n description: \"\",\n main: \"dist/index.js\",\n types: \"dist/index.d.ts\",\n scripts: {\n build: \"babel ./lib --out-dir dist --extensions '.ts,.tsx' --source-maps && tsc --emitDeclarationOnly\",\n \"build:doc\": \"typedoc --excludeNotExported --mode file --out dist/doc lib/index.ts && touch dist/doc/.nojekyll\",\n \"check-types\": \"tsc\",\n dev: \"babel ./lib --out-dir dist --extensions '.ts,.tsx' --watch\",\n test: \"jest\",\n \"test:watch\": \"jest --watchAll\"\n },\n keywords: [\"nextcloud\"],\n homepage: \"https://github.com/nextcloud/nextcloud-event-bus#readme\",\n author: \"Christoph Wurst\",\n license: \"GPL-3.0-or-later\",\n repository: {\n type: \"git\",\n url: \"https://github.com/nextcloud/nextcloud-event-bus\"\n },\n dependencies: {\n \"@types/semver\": \"^6.2.0\",\n \"core-js\": \"^3.6.2\",\n semver: \"^6.3.0\"\n },\n devDependencies: {\n \"@babel/cli\": \"^7.6.0\",\n \"@babel/core\": \"^7.6.0\",\n \"@babel/plugin-proposal-class-properties\": \"^7.5.5\",\n \"@babel/preset-env\": \"^7.6.0\",\n \"@babel/preset-typescript\": \"^7.6.0\",\n \"@nextcloud/browserslist-config\": \"^1.0.0\",\n \"babel-jest\": \"^24.9.0\",\n \"babel-plugin-inline-json-import\": \"^0.3.2\",\n jest: \"^24.9.0\",\n typedoc: \"^0.15.7\",\n typescript: \"^3.6.3\"\n },\n browserslist: [\"extends @nextcloud/browserslist-config\"]\n};\n\nvar SimpleBus =\n/*#__PURE__*/\nfunction () {\n function SimpleBus() {\n _classCallCheck(this, SimpleBus);\n\n _defineProperty(this, \"handlers\", new Map());\n }\n\n _createClass(SimpleBus, [{\n key: \"getVersion\",\n value: function getVersion() {\n return packageJson.version;\n }\n }, {\n key: \"subscribe\",\n value: function subscribe(name, handler) {\n this.handlers.set(name, (this.handlers.get(name) || []).concat(handler));\n }\n }, {\n key: \"unsubscribe\",\n value: function unsubscribe(name, handler) {\n this.handlers.set(name, (this.handlers.get(name) || []).filter(function (h) {\n return h != handler;\n }));\n }\n }, {\n key: \"emit\",\n value: function emit(name, event) {\n (this.handlers.get(name) || []).forEach(function (h) {\n try {\n h(event);\n } catch (e) {\n console.error('could not invoke event listener', e);\n }\n });\n }\n }]);\n\n return SimpleBus;\n}();\n\nexports.SimpleBus = SimpleBus;\n//# sourceMappingURL=SimpleBus.js.map","'use strict';\nvar $ = require('../internals/export');\nvar fails = require('../internals/fails');\nvar isArray = require('../internals/is-array');\nvar isObject = require('../internals/is-object');\nvar toObject = require('../internals/to-object');\nvar toLength = require('../internals/to-length');\nvar createProperty = require('../internals/create-property');\nvar arraySpeciesCreate = require('../internals/array-species-create');\nvar arrayMethodHasSpeciesSupport = require('../internals/array-method-has-species-support');\nvar wellKnownSymbol = require('../internals/well-known-symbol');\nvar V8_VERSION = require('../internals/engine-v8-version');\n\nvar IS_CONCAT_SPREADABLE = wellKnownSymbol('isConcatSpreadable');\nvar MAX_SAFE_INTEGER = 0x1FFFFFFFFFFFFF;\nvar MAXIMUM_ALLOWED_INDEX_EXCEEDED = 'Maximum allowed index exceeded';\n\n// We can't use this feature detection in V8 since it causes\n// deoptimization and serious performance degradation\n// https://github.com/zloirock/core-js/issues/679\nvar IS_CONCAT_SPREADABLE_SUPPORT = V8_VERSION >= 51 || !fails(function () {\n var array = [];\n array[IS_CONCAT_SPREADABLE] = false;\n return array.concat()[0] !== array;\n});\n\nvar SPECIES_SUPPORT = arrayMethodHasSpeciesSupport('concat');\n\nvar isConcatSpreadable = function (O) {\n if (!isObject(O)) return false;\n var spreadable = O[IS_CONCAT_SPREADABLE];\n return spreadable !== undefined ? !!spreadable : isArray(O);\n};\n\nvar FORCED = !IS_CONCAT_SPREADABLE_SUPPORT || !SPECIES_SUPPORT;\n\n// `Array.prototype.concat` method\n// https://tc39.github.io/ecma262/#sec-array.prototype.concat\n// with adding support of @@isConcatSpreadable and @@species\n$({ target: 'Array', proto: true, forced: FORCED }, {\n concat: function concat(arg) { // eslint-disable-line no-unused-vars\n var O = toObject(this);\n var A = arraySpeciesCreate(O, 0);\n var n = 0;\n var i, k, length, len, E;\n for (i = -1, length = arguments.length; i < length; i++) {\n E = i === -1 ? O : arguments[i];\n if (isConcatSpreadable(E)) {\n len = toLength(E.length);\n if (n + len > MAX_SAFE_INTEGER) throw TypeError(MAXIMUM_ALLOWED_INDEX_EXCEEDED);\n for (k = 0; k < len; k++, n++) if (k in E) createProperty(A, n, E[k]);\n } else {\n if (n >= MAX_SAFE_INTEGER) throw TypeError(MAXIMUM_ALLOWED_INDEX_EXCEEDED);\n createProperty(A, n++, E);\n }\n }\n A.length = n;\n return A;\n }\n});\n","'use strict';\nvar nativePropertyIsEnumerable = {}.propertyIsEnumerable;\nvar getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;\n\n// Nashorn ~ JDK8 bug\nvar NASHORN_BUG = getOwnPropertyDescriptor && !nativePropertyIsEnumerable.call({ 1: 2 }, 1);\n\n// `Object.prototype.propertyIsEnumerable` method implementation\n// https://tc39.github.io/ecma262/#sec-object.prototype.propertyisenumerable\nexports.f = NASHORN_BUG ? function propertyIsEnumerable(V) {\n var descriptor = getOwnPropertyDescriptor(this, V);\n return !!descriptor && descriptor.enumerable;\n} : nativePropertyIsEnumerable;\n","var global = require('../internals/global');\nvar inspectSource = require('../internals/inspect-source');\n\nvar WeakMap = global.WeakMap;\n\nmodule.exports = typeof WeakMap === 'function' && /native code/.test(inspectSource(WeakMap));\n","var has = require('../internals/has');\nvar ownKeys = require('../internals/own-keys');\nvar getOwnPropertyDescriptorModule = require('../internals/object-get-own-property-descriptor');\nvar definePropertyModule = require('../internals/object-define-property');\n\nmodule.exports = function (target, source) {\n var keys = ownKeys(source);\n var defineProperty = definePropertyModule.f;\n var getOwnPropertyDescriptor = getOwnPropertyDescriptorModule.f;\n for (var i = 0; i < keys.length; i++) {\n var key = keys[i];\n if (!has(target, key)) defineProperty(target, key, getOwnPropertyDescriptor(source, key));\n }\n};\n","var getBuiltIn = require('../internals/get-built-in');\nvar getOwnPropertyNamesModule = require('../internals/object-get-own-property-names');\nvar getOwnPropertySymbolsModule = require('../internals/object-get-own-property-symbols');\nvar anObject = require('../internals/an-object');\n\n// all object keys, includes non-enumerable and symbols\nmodule.exports = getBuiltIn('Reflect', 'ownKeys') || function ownKeys(it) {\n var keys = getOwnPropertyNamesModule.f(anObject(it));\n var getOwnPropertySymbols = getOwnPropertySymbolsModule.f;\n return getOwnPropertySymbols ? keys.concat(getOwnPropertySymbols(it)) : keys;\n};\n","var global = require('../internals/global');\n\nmodule.exports = global;\n","var internalObjectKeys = require('../internals/object-keys-internal');\nvar enumBugKeys = require('../internals/enum-bug-keys');\n\nvar hiddenKeys = enumBugKeys.concat('length', 'prototype');\n\n// `Object.getOwnPropertyNames` method\n// https://tc39.github.io/ecma262/#sec-object.getownpropertynames\nexports.f = Object.getOwnPropertyNames || function getOwnPropertyNames(O) {\n return internalObjectKeys(O, hiddenKeys);\n};\n","var toIndexedObject = require('../internals/to-indexed-object');\nvar toLength = require('../internals/to-length');\nvar toAbsoluteIndex = require('../internals/to-absolute-index');\n\n// `Array.prototype.{ indexOf, includes }` methods implementation\nvar createMethod = function (IS_INCLUDES) {\n return function ($this, el, fromIndex) {\n var O = toIndexedObject($this);\n var length = toLength(O.length);\n var index = toAbsoluteIndex(fromIndex, length);\n var value;\n // Array#includes uses SameValueZero equality algorithm\n // eslint-disable-next-line no-self-compare\n if (IS_INCLUDES && el != el) while (length > index) {\n value = O[index++];\n // eslint-disable-next-line no-self-compare\n if (value != value) return true;\n // Array#indexOf ignores holes, Array#includes - not\n } else for (;length > index; index++) {\n if ((IS_INCLUDES || index in O) && O[index] === el) return IS_INCLUDES || index || 0;\n } return !IS_INCLUDES && -1;\n };\n};\n\nmodule.exports = {\n // `Array.prototype.includes` method\n // https://tc39.github.io/ecma262/#sec-array.prototype.includes\n includes: createMethod(true),\n // `Array.prototype.indexOf` method\n // https://tc39.github.io/ecma262/#sec-array.prototype.indexof\n indexOf: createMethod(false)\n};\n","var toInteger = require('../internals/to-integer');\n\nvar max = Math.max;\nvar min = Math.min;\n\n// Helper for a popular repeating case of the spec:\n// Let integer be ? ToInteger(index).\n// If integer < 0, let result be max((length + integer), 0); else let result be min(integer, length).\nmodule.exports = function (index, length) {\n var integer = toInteger(index);\n return integer < 0 ? max(integer + length, 0) : min(integer, length);\n};\n","exports.f = Object.getOwnPropertySymbols;\n","'use strict';\nvar toPrimitive = require('../internals/to-primitive');\nvar definePropertyModule = require('../internals/object-define-property');\nvar createPropertyDescriptor = require('../internals/create-property-descriptor');\n\nmodule.exports = function (object, key, value) {\n var propertyKey = toPrimitive(key);\n if (propertyKey in object) definePropertyModule.f(object, propertyKey, createPropertyDescriptor(0, value));\n else object[propertyKey] = value;\n};\n","var NATIVE_SYMBOL = require('../internals/native-symbol');\n\nmodule.exports = NATIVE_SYMBOL\n // eslint-disable-next-line no-undef\n && !Symbol.sham\n // eslint-disable-next-line no-undef\n && typeof Symbol.iterator == 'symbol';\n","var getBuiltIn = require('../internals/get-built-in');\n\nmodule.exports = getBuiltIn('navigator', 'userAgent') || '';\n","'use strict';\nvar $ = require('../internals/export');\nvar $filter = require('../internals/array-iteration').filter;\nvar arrayMethodHasSpeciesSupport = require('../internals/array-method-has-species-support');\nvar arrayMethodUsesToLength = require('../internals/array-method-uses-to-length');\n\nvar HAS_SPECIES_SUPPORT = arrayMethodHasSpeciesSupport('filter');\n// Edge 14- issue\nvar USES_TO_LENGTH = arrayMethodUsesToLength('filter');\n\n// `Array.prototype.filter` method\n// https://tc39.github.io/ecma262/#sec-array.prototype.filter\n// with adding support of @@species\n$({ target: 'Array', proto: true, forced: !HAS_SPECIES_SUPPORT || !USES_TO_LENGTH }, {\n filter: function filter(callbackfn /* , thisArg */) {\n return $filter(this, callbackfn, arguments.length > 1 ? arguments[1] : undefined);\n }\n});\n","module.exports = function (it) {\n if (typeof it != 'function') {\n throw TypeError(String(it) + ' is not a function');\n } return it;\n};\n","var wellKnownSymbol = require('../internals/well-known-symbol');\nvar create = require('../internals/object-create');\nvar definePropertyModule = require('../internals/object-define-property');\n\nvar UNSCOPABLES = wellKnownSymbol('unscopables');\nvar ArrayPrototype = Array.prototype;\n\n// Array.prototype[@@unscopables]\n// https://tc39.github.io/ecma262/#sec-array.prototype-@@unscopables\nif (ArrayPrototype[UNSCOPABLES] == undefined) {\n definePropertyModule.f(ArrayPrototype, UNSCOPABLES, {\n configurable: true,\n value: create(null)\n });\n}\n\n// add a key to Array.prototype[@@unscopables]\nmodule.exports = function (key) {\n ArrayPrototype[UNSCOPABLES][key] = true;\n};\n","var DESCRIPTORS = require('../internals/descriptors');\nvar definePropertyModule = require('../internals/object-define-property');\nvar anObject = require('../internals/an-object');\nvar objectKeys = require('../internals/object-keys');\n\n// `Object.defineProperties` method\n// https://tc39.github.io/ecma262/#sec-object.defineproperties\nmodule.exports = DESCRIPTORS ? Object.defineProperties : function defineProperties(O, Properties) {\n anObject(O);\n var keys = objectKeys(Properties);\n var length = keys.length;\n var index = 0;\n var key;\n while (length > index) definePropertyModule.f(O, key = keys[index++], Properties[key]);\n return O;\n};\n","var internalObjectKeys = require('../internals/object-keys-internal');\nvar enumBugKeys = require('../internals/enum-bug-keys');\n\n// `Object.keys` method\n// https://tc39.github.io/ecma262/#sec-object.keys\nmodule.exports = Object.keys || function keys(O) {\n return internalObjectKeys(O, enumBugKeys);\n};\n","var getBuiltIn = require('../internals/get-built-in');\n\nmodule.exports = getBuiltIn('document', 'documentElement');\n","'use strict';\nvar IteratorPrototype = require('../internals/iterators-core').IteratorPrototype;\nvar create = require('../internals/object-create');\nvar createPropertyDescriptor = require('../internals/create-property-descriptor');\nvar setToStringTag = require('../internals/set-to-string-tag');\nvar Iterators = require('../internals/iterators');\n\nvar returnThis = function () { return this; };\n\nmodule.exports = function (IteratorConstructor, NAME, next) {\n var TO_STRING_TAG = NAME + ' Iterator';\n IteratorConstructor.prototype = create(IteratorPrototype, { next: createPropertyDescriptor(1, next) });\n setToStringTag(IteratorConstructor, TO_STRING_TAG, false, true);\n Iterators[TO_STRING_TAG] = returnThis;\n return IteratorConstructor;\n};\n","var fails = require('../internals/fails');\n\nmodule.exports = !fails(function () {\n function F() { /* empty */ }\n F.prototype.constructor = null;\n return Object.getPrototypeOf(new F()) !== F.prototype;\n});\n","var isObject = require('../internals/is-object');\n\nmodule.exports = function (it) {\n if (!isObject(it) && it !== null) {\n throw TypeError(\"Can't set \" + String(it) + ' as a prototype');\n } return it;\n};\n","'use strict';\nvar collection = require('../internals/collection');\nvar collectionStrong = require('../internals/collection-strong');\n\n// `Map` constructor\n// https://tc39.github.io/ecma262/#sec-map-objects\nmodule.exports = collection('Map', function (init) {\n return function Map() { return init(this, arguments.length ? arguments[0] : undefined); };\n}, collectionStrong);\n","'use strict';\nvar $ = require('../internals/export');\nvar global = require('../internals/global');\nvar isForced = require('../internals/is-forced');\nvar redefine = require('../internals/redefine');\nvar InternalMetadataModule = require('../internals/internal-metadata');\nvar iterate = require('../internals/iterate');\nvar anInstance = require('../internals/an-instance');\nvar isObject = require('../internals/is-object');\nvar fails = require('../internals/fails');\nvar checkCorrectnessOfIteration = require('../internals/check-correctness-of-iteration');\nvar setToStringTag = require('../internals/set-to-string-tag');\nvar inheritIfRequired = require('../internals/inherit-if-required');\n\nmodule.exports = function (CONSTRUCTOR_NAME, wrapper, common) {\n var IS_MAP = CONSTRUCTOR_NAME.indexOf('Map') !== -1;\n var IS_WEAK = CONSTRUCTOR_NAME.indexOf('Weak') !== -1;\n var ADDER = IS_MAP ? 'set' : 'add';\n var NativeConstructor = global[CONSTRUCTOR_NAME];\n var NativePrototype = NativeConstructor && NativeConstructor.prototype;\n var Constructor = NativeConstructor;\n var exported = {};\n\n var fixMethod = function (KEY) {\n var nativeMethod = NativePrototype[KEY];\n redefine(NativePrototype, KEY,\n KEY == 'add' ? function add(value) {\n nativeMethod.call(this, value === 0 ? 0 : value);\n return this;\n } : KEY == 'delete' ? function (key) {\n return IS_WEAK && !isObject(key) ? false : nativeMethod.call(this, key === 0 ? 0 : key);\n } : KEY == 'get' ? function get(key) {\n return IS_WEAK && !isObject(key) ? undefined : nativeMethod.call(this, key === 0 ? 0 : key);\n } : KEY == 'has' ? function has(key) {\n return IS_WEAK && !isObject(key) ? false : nativeMethod.call(this, key === 0 ? 0 : key);\n } : function set(key, value) {\n nativeMethod.call(this, key === 0 ? 0 : key, value);\n return this;\n }\n );\n };\n\n // eslint-disable-next-line max-len\n if (isForced(CONSTRUCTOR_NAME, typeof NativeConstructor != 'function' || !(IS_WEAK || NativePrototype.forEach && !fails(function () {\n new NativeConstructor().entries().next();\n })))) {\n // create collection constructor\n Constructor = common.getConstructor(wrapper, CONSTRUCTOR_NAME, IS_MAP, ADDER);\n InternalMetadataModule.REQUIRED = true;\n } else if (isForced(CONSTRUCTOR_NAME, true)) {\n var instance = new Constructor();\n // early implementations not supports chaining\n var HASNT_CHAINING = instance[ADDER](IS_WEAK ? {} : -0, 1) != instance;\n // V8 ~ Chromium 40- weak-collections throws on primitives, but should return false\n var THROWS_ON_PRIMITIVES = fails(function () { instance.has(1); });\n // most early implementations doesn't supports iterables, most modern - not close it correctly\n // eslint-disable-next-line no-new\n var ACCEPT_ITERABLES = checkCorrectnessOfIteration(function (iterable) { new NativeConstructor(iterable); });\n // for early implementations -0 and +0 not the same\n var BUGGY_ZERO = !IS_WEAK && fails(function () {\n // V8 ~ Chromium 42- fails only with 5+ elements\n var $instance = new NativeConstructor();\n var index = 5;\n while (index--) $instance[ADDER](index, index);\n return !$instance.has(-0);\n });\n\n if (!ACCEPT_ITERABLES) {\n Constructor = wrapper(function (dummy, iterable) {\n anInstance(dummy, Constructor, CONSTRUCTOR_NAME);\n var that = inheritIfRequired(new NativeConstructor(), dummy, Constructor);\n if (iterable != undefined) iterate(iterable, that[ADDER], that, IS_MAP);\n return that;\n });\n Constructor.prototype = NativePrototype;\n NativePrototype.constructor = Constructor;\n }\n\n if (THROWS_ON_PRIMITIVES || BUGGY_ZERO) {\n fixMethod('delete');\n fixMethod('has');\n IS_MAP && fixMethod('get');\n }\n\n if (BUGGY_ZERO || HASNT_CHAINING) fixMethod(ADDER);\n\n // weak collections should not contains .clear method\n if (IS_WEAK && NativePrototype.clear) delete NativePrototype.clear;\n }\n\n exported[CONSTRUCTOR_NAME] = Constructor;\n $({ global: true, forced: Constructor != NativeConstructor }, exported);\n\n setToStringTag(Constructor, CONSTRUCTOR_NAME);\n\n if (!IS_WEAK) common.setStrong(Constructor, CONSTRUCTOR_NAME, IS_MAP);\n\n return Constructor;\n};\n","var fails = require('../internals/fails');\n\nmodule.exports = !fails(function () {\n return Object.isExtensible(Object.preventExtensions({}));\n});\n","var wellKnownSymbol = require('../internals/well-known-symbol');\nvar Iterators = require('../internals/iterators');\n\nvar ITERATOR = wellKnownSymbol('iterator');\nvar ArrayPrototype = Array.prototype;\n\n// check on default Array iterator\nmodule.exports = function (it) {\n return it !== undefined && (Iterators.Array === it || ArrayPrototype[ITERATOR] === it);\n};\n","var classof = require('../internals/classof');\nvar Iterators = require('../internals/iterators');\nvar wellKnownSymbol = require('../internals/well-known-symbol');\n\nvar ITERATOR = wellKnownSymbol('iterator');\n\nmodule.exports = function (it) {\n if (it != undefined) return it[ITERATOR]\n || it['@@iterator']\n || Iterators[classof(it)];\n};\n","var anObject = require('../internals/an-object');\n\n// call something on iterator step with safe closing on error\nmodule.exports = function (iterator, fn, value, ENTRIES) {\n try {\n return ENTRIES ? fn(anObject(value)[0], value[1]) : fn(value);\n // 7.4.6 IteratorClose(iterator, completion)\n } catch (error) {\n var returnMethod = iterator['return'];\n if (returnMethod !== undefined) anObject(returnMethod.call(iterator));\n throw error;\n }\n};\n","var wellKnownSymbol = require('../internals/well-known-symbol');\n\nvar ITERATOR = wellKnownSymbol('iterator');\nvar SAFE_CLOSING = false;\n\ntry {\n var called = 0;\n var iteratorWithReturn = {\n next: function () {\n return { done: !!called++ };\n },\n 'return': function () {\n SAFE_CLOSING = true;\n }\n };\n iteratorWithReturn[ITERATOR] = function () {\n return this;\n };\n // eslint-disable-next-line no-throw-literal\n Array.from(iteratorWithReturn, function () { throw 2; });\n} catch (error) { /* empty */ }\n\nmodule.exports = function (exec, SKIP_CLOSING) {\n if (!SKIP_CLOSING && !SAFE_CLOSING) return false;\n var ITERATION_SUPPORT = false;\n try {\n var object = {};\n object[ITERATOR] = function () {\n return {\n next: function () {\n return { done: ITERATION_SUPPORT = true };\n }\n };\n };\n exec(object);\n } catch (error) { /* empty */ }\n return ITERATION_SUPPORT;\n};\n","var isObject = require('../internals/is-object');\nvar setPrototypeOf = require('../internals/object-set-prototype-of');\n\n// makes subclassing work correct for wrapped built-ins\nmodule.exports = function ($this, dummy, Wrapper) {\n var NewTarget, NewTargetPrototype;\n if (\n // it can work only with native `setPrototypeOf`\n setPrototypeOf &&\n // we haven't completely correct pre-ES6 way for getting `new.target`, so use this\n typeof (NewTarget = dummy.constructor) == 'function' &&\n NewTarget !== Wrapper &&\n isObject(NewTargetPrototype = NewTarget.prototype) &&\n NewTargetPrototype !== Wrapper.prototype\n ) setPrototypeOf($this, NewTargetPrototype);\n return $this;\n};\n","'use strict';\nvar defineProperty = require('../internals/object-define-property').f;\nvar create = require('../internals/object-create');\nvar redefineAll = require('../internals/redefine-all');\nvar bind = require('../internals/function-bind-context');\nvar anInstance = require('../internals/an-instance');\nvar iterate = require('../internals/iterate');\nvar defineIterator = require('../internals/define-iterator');\nvar setSpecies = require('../internals/set-species');\nvar DESCRIPTORS = require('../internals/descriptors');\nvar fastKey = require('../internals/internal-metadata').fastKey;\nvar InternalStateModule = require('../internals/internal-state');\n\nvar setInternalState = InternalStateModule.set;\nvar internalStateGetterFor = InternalStateModule.getterFor;\n\nmodule.exports = {\n getConstructor: function (wrapper, CONSTRUCTOR_NAME, IS_MAP, ADDER) {\n var C = wrapper(function (that, iterable) {\n anInstance(that, C, CONSTRUCTOR_NAME);\n setInternalState(that, {\n type: CONSTRUCTOR_NAME,\n index: create(null),\n first: undefined,\n last: undefined,\n size: 0\n });\n if (!DESCRIPTORS) that.size = 0;\n if (iterable != undefined) iterate(iterable, that[ADDER], that, IS_MAP);\n });\n\n var getInternalState = internalStateGetterFor(CONSTRUCTOR_NAME);\n\n var define = function (that, key, value) {\n var state = getInternalState(that);\n var entry = getEntry(that, key);\n var previous, index;\n // change existing entry\n if (entry) {\n entry.value = value;\n // create new entry\n } else {\n state.last = entry = {\n index: index = fastKey(key, true),\n key: key,\n value: value,\n previous: previous = state.last,\n next: undefined,\n removed: false\n };\n if (!state.first) state.first = entry;\n if (previous) previous.next = entry;\n if (DESCRIPTORS) state.size++;\n else that.size++;\n // add to index\n if (index !== 'F') state.index[index] = entry;\n } return that;\n };\n\n var getEntry = function (that, key) {\n var state = getInternalState(that);\n // fast case\n var index = fastKey(key);\n var entry;\n if (index !== 'F') return state.index[index];\n // frozen object case\n for (entry = state.first; entry; entry = entry.next) {\n if (entry.key == key) return entry;\n }\n };\n\n redefineAll(C.prototype, {\n // 23.1.3.1 Map.prototype.clear()\n // 23.2.3.2 Set.prototype.clear()\n clear: function clear() {\n var that = this;\n var state = getInternalState(that);\n var data = state.index;\n var entry = state.first;\n while (entry) {\n entry.removed = true;\n if (entry.previous) entry.previous = entry.previous.next = undefined;\n delete data[entry.index];\n entry = entry.next;\n }\n state.first = state.last = undefined;\n if (DESCRIPTORS) state.size = 0;\n else that.size = 0;\n },\n // 23.1.3.3 Map.prototype.delete(key)\n // 23.2.3.4 Set.prototype.delete(value)\n 'delete': function (key) {\n var that = this;\n var state = getInternalState(that);\n var entry = getEntry(that, key);\n if (entry) {\n var next = entry.next;\n var prev = entry.previous;\n delete state.index[entry.index];\n entry.removed = true;\n if (prev) prev.next = next;\n if (next) next.previous = prev;\n if (state.first == entry) state.first = next;\n if (state.last == entry) state.last = prev;\n if (DESCRIPTORS) state.size--;\n else that.size--;\n } return !!entry;\n },\n // 23.2.3.6 Set.prototype.forEach(callbackfn, thisArg = undefined)\n // 23.1.3.5 Map.prototype.forEach(callbackfn, thisArg = undefined)\n forEach: function forEach(callbackfn /* , that = undefined */) {\n var state = getInternalState(this);\n var boundFunction = bind(callbackfn, arguments.length > 1 ? arguments[1] : undefined, 3);\n var entry;\n while (entry = entry ? entry.next : state.first) {\n boundFunction(entry.value, entry.key, this);\n // revert to the last existing entry\n while (entry && entry.removed) entry = entry.previous;\n }\n },\n // 23.1.3.7 Map.prototype.has(key)\n // 23.2.3.7 Set.prototype.has(value)\n has: function has(key) {\n return !!getEntry(this, key);\n }\n });\n\n redefineAll(C.prototype, IS_MAP ? {\n // 23.1.3.6 Map.prototype.get(key)\n get: function get(key) {\n var entry = getEntry(this, key);\n return entry && entry.value;\n },\n // 23.1.3.9 Map.prototype.set(key, value)\n set: function set(key, value) {\n return define(this, key === 0 ? 0 : key, value);\n }\n } : {\n // 23.2.3.1 Set.prototype.add(value)\n add: function add(value) {\n return define(this, value = value === 0 ? 0 : value, value);\n }\n });\n if (DESCRIPTORS) defineProperty(C.prototype, 'size', {\n get: function () {\n return getInternalState(this).size;\n }\n });\n return C;\n },\n setStrong: function (C, CONSTRUCTOR_NAME, IS_MAP) {\n var ITERATOR_NAME = CONSTRUCTOR_NAME + ' Iterator';\n var getInternalCollectionState = internalStateGetterFor(CONSTRUCTOR_NAME);\n var getInternalIteratorState = internalStateGetterFor(ITERATOR_NAME);\n // add .keys, .values, .entries, [@@iterator]\n // 23.1.3.4, 23.1.3.8, 23.1.3.11, 23.1.3.12, 23.2.3.5, 23.2.3.8, 23.2.3.10, 23.2.3.11\n defineIterator(C, CONSTRUCTOR_NAME, function (iterated, kind) {\n setInternalState(this, {\n type: ITERATOR_NAME,\n target: iterated,\n state: getInternalCollectionState(iterated),\n kind: kind,\n last: undefined\n });\n }, function () {\n var state = getInternalIteratorState(this);\n var kind = state.kind;\n var entry = state.last;\n // revert to the last existing entry\n while (entry && entry.removed) entry = entry.previous;\n // get next entry\n if (!state.target || !(state.last = entry = entry ? entry.next : state.state.first)) {\n // or finish the iteration\n state.target = undefined;\n return { value: undefined, done: true };\n }\n // return step by kind\n if (kind == 'keys') return { value: entry.key, done: false };\n if (kind == 'values') return { value: entry.value, done: false };\n return { value: [entry.key, entry.value], done: false };\n }, IS_MAP ? 'entries' : 'values', !IS_MAP, true);\n\n // add [@@species], 23.1.2.2, 23.2.2.2\n setSpecies(CONSTRUCTOR_NAME);\n }\n};\n","var redefine = require('../internals/redefine');\n\nmodule.exports = function (target, src, options) {\n for (var key in src) redefine(target, key, src[key], options);\n return target;\n};\n","'use strict';\nvar getBuiltIn = require('../internals/get-built-in');\nvar definePropertyModule = require('../internals/object-define-property');\nvar wellKnownSymbol = require('../internals/well-known-symbol');\nvar DESCRIPTORS = require('../internals/descriptors');\n\nvar SPECIES = wellKnownSymbol('species');\n\nmodule.exports = function (CONSTRUCTOR_NAME) {\n var Constructor = getBuiltIn(CONSTRUCTOR_NAME);\n var defineProperty = definePropertyModule.f;\n\n if (DESCRIPTORS && Constructor && !Constructor[SPECIES]) {\n defineProperty(Constructor, SPECIES, {\n configurable: true,\n get: function () { return this; }\n });\n }\n};\n","var TO_STRING_TAG_SUPPORT = require('../internals/to-string-tag-support');\nvar redefine = require('../internals/redefine');\nvar toString = require('../internals/object-to-string');\n\n// `Object.prototype.toString` method\n// https://tc39.github.io/ecma262/#sec-object.prototype.tostring\nif (!TO_STRING_TAG_SUPPORT) {\n redefine(Object.prototype, 'toString', toString, { unsafe: true });\n}\n","'use strict';\nvar TO_STRING_TAG_SUPPORT = require('../internals/to-string-tag-support');\nvar classof = require('../internals/classof');\n\n// `Object.prototype.toString` method implementation\n// https://tc39.github.io/ecma262/#sec-object.prototype.tostring\nmodule.exports = TO_STRING_TAG_SUPPORT ? {}.toString : function toString() {\n return '[object ' + classof(this) + ']';\n};\n","'use strict';\nvar charAt = require('../internals/string-multibyte').charAt;\nvar InternalStateModule = require('../internals/internal-state');\nvar defineIterator = require('../internals/define-iterator');\n\nvar STRING_ITERATOR = 'String Iterator';\nvar setInternalState = InternalStateModule.set;\nvar getInternalState = InternalStateModule.getterFor(STRING_ITERATOR);\n\n// `String.prototype[@@iterator]` method\n// https://tc39.github.io/ecma262/#sec-string.prototype-@@iterator\ndefineIterator(String, 'String', function (iterated) {\n setInternalState(this, {\n type: STRING_ITERATOR,\n string: String(iterated),\n index: 0\n });\n// `%StringIteratorPrototype%.next` method\n// https://tc39.github.io/ecma262/#sec-%stringiteratorprototype%.next\n}, function next() {\n var state = getInternalState(this);\n var string = state.string;\n var index = state.index;\n var point;\n if (index >= string.length) return { value: undefined, done: true };\n point = charAt(string, index);\n state.index += point.length;\n return { value: point, done: false };\n});\n","var toInteger = require('../internals/to-integer');\nvar requireObjectCoercible = require('../internals/require-object-coercible');\n\n// `String.prototype.{ codePointAt, at }` methods implementation\nvar createMethod = function (CONVERT_TO_STRING) {\n return function ($this, pos) {\n var S = String(requireObjectCoercible($this));\n var position = toInteger(pos);\n var size = S.length;\n var first, second;\n if (position < 0 || position >= size) return CONVERT_TO_STRING ? '' : undefined;\n first = S.charCodeAt(position);\n return first < 0xD800 || first > 0xDBFF || position + 1 === size\n || (second = S.charCodeAt(position + 1)) < 0xDC00 || second > 0xDFFF\n ? CONVERT_TO_STRING ? S.charAt(position) : first\n : CONVERT_TO_STRING ? S.slice(position, position + 2) : (first - 0xD800 << 10) + (second - 0xDC00) + 0x10000;\n };\n};\n\nmodule.exports = {\n // `String.prototype.codePointAt` method\n // https://tc39.github.io/ecma262/#sec-string.prototype.codepointat\n codeAt: createMethod(false),\n // `String.prototype.at` method\n // https://github.com/mathiasbynens/String.prototype.at\n charAt: createMethod(true)\n};\n","var global = require('../internals/global');\nvar DOMIterables = require('../internals/dom-iterables');\nvar forEach = require('../internals/array-for-each');\nvar createNonEnumerableProperty = require('../internals/create-non-enumerable-property');\n\nfor (var COLLECTION_NAME in DOMIterables) {\n var Collection = global[COLLECTION_NAME];\n var CollectionPrototype = Collection && Collection.prototype;\n // some Chrome versions have non-configurable methods on DOMTokenList\n if (CollectionPrototype && CollectionPrototype.forEach !== forEach) try {\n createNonEnumerableProperty(CollectionPrototype, 'forEach', forEach);\n } catch (error) {\n CollectionPrototype.forEach = forEach;\n }\n}\n","'use strict';\nvar $forEach = require('../internals/array-iteration').forEach;\nvar arrayMethodIsStrict = require('../internals/array-method-is-strict');\nvar arrayMethodUsesToLength = require('../internals/array-method-uses-to-length');\n\nvar STRICT_METHOD = arrayMethodIsStrict('forEach');\nvar USES_TO_LENGTH = arrayMethodUsesToLength('forEach');\n\n// `Array.prototype.forEach` method implementation\n// https://tc39.github.io/ecma262/#sec-array.prototype.foreach\nmodule.exports = (!STRICT_METHOD || !USES_TO_LENGTH) ? function forEach(callbackfn /* , thisArg */) {\n return $forEach(this, callbackfn, arguments.length > 1 ? arguments[1] : undefined);\n} : [].forEach;\n","'use strict';\nvar fails = require('../internals/fails');\n\nmodule.exports = function (METHOD_NAME, argument) {\n var method = [][METHOD_NAME];\n return !!method && fails(function () {\n // eslint-disable-next-line no-useless-call,no-throw-literal\n method.call(null, argument || function () { throw 1; }, 1);\n });\n};\n","var global = require('../internals/global');\nvar DOMIterables = require('../internals/dom-iterables');\nvar ArrayIteratorMethods = require('../modules/es.array.iterator');\nvar createNonEnumerableProperty = require('../internals/create-non-enumerable-property');\nvar wellKnownSymbol = require('../internals/well-known-symbol');\n\nvar ITERATOR = wellKnownSymbol('iterator');\nvar TO_STRING_TAG = wellKnownSymbol('toStringTag');\nvar ArrayValues = ArrayIteratorMethods.values;\n\nfor (var COLLECTION_NAME in DOMIterables) {\n var Collection = global[COLLECTION_NAME];\n var CollectionPrototype = Collection && Collection.prototype;\n if (CollectionPrototype) {\n // some Chrome versions have non-configurable methods on DOMTokenList\n if (CollectionPrototype[ITERATOR] !== ArrayValues) try {\n createNonEnumerableProperty(CollectionPrototype, ITERATOR, ArrayValues);\n } catch (error) {\n CollectionPrototype[ITERATOR] = ArrayValues;\n }\n if (!CollectionPrototype[TO_STRING_TAG]) {\n createNonEnumerableProperty(CollectionPrototype, TO_STRING_TAG, COLLECTION_NAME);\n }\n if (DOMIterables[COLLECTION_NAME]) for (var METHOD_NAME in ArrayIteratorMethods) {\n // some Chrome versions have non-configurable methods on DOMTokenList\n if (CollectionPrototype[METHOD_NAME] !== ArrayIteratorMethods[METHOD_NAME]) try {\n createNonEnumerableProperty(CollectionPrototype, METHOD_NAME, ArrayIteratorMethods[METHOD_NAME]);\n } catch (error) {\n CollectionPrototype[METHOD_NAME] = ArrayIteratorMethods[METHOD_NAME];\n }\n }\n }\n}\n","/*!\n * Vue.js v2.6.11\n * (c) 2014-2019 Evan You\n * Released under the MIT License.\n */\n/* */\n\nvar emptyObject = Object.freeze({});\n\n// These helpers produce better VM code in JS engines due to their\n// explicitness and function inlining.\nfunction isUndef (v) {\n return v === undefined || v === null\n}\n\nfunction isDef (v) {\n return v !== undefined && v !== null\n}\n\nfunction isTrue (v) {\n return v === true\n}\n\nfunction isFalse (v) {\n return v === false\n}\n\n/**\n * Check if value is primitive.\n */\nfunction isPrimitive (value) {\n return (\n typeof value === 'string' ||\n typeof value === 'number' ||\n // $flow-disable-line\n typeof value === 'symbol' ||\n typeof value === 'boolean'\n )\n}\n\n/**\n * Quick object check - this is primarily used to tell\n * Objects from primitive values when we know the value\n * is a JSON-compliant type.\n */\nfunction isObject (obj) {\n return obj !== null && typeof obj === 'object'\n}\n\n/**\n * Get the raw type string of a value, e.g., [object Object].\n */\nvar _toString = Object.prototype.toString;\n\nfunction toRawType (value) {\n return _toString.call(value).slice(8, -1)\n}\n\n/**\n * Strict object type check. Only returns true\n * for plain JavaScript objects.\n */\nfunction isPlainObject (obj) {\n return _toString.call(obj) === '[object Object]'\n}\n\nfunction isRegExp (v) {\n return _toString.call(v) === '[object RegExp]'\n}\n\n/**\n * Check if val is a valid array index.\n */\nfunction isValidArrayIndex (val) {\n var n = parseFloat(String(val));\n return n >= 0 && Math.floor(n) === n && isFinite(val)\n}\n\nfunction isPromise (val) {\n return (\n isDef(val) &&\n typeof val.then === 'function' &&\n typeof val.catch === 'function'\n )\n}\n\n/**\n * Convert a value to a string that is actually rendered.\n */\nfunction toString (val) {\n return val == null\n ? ''\n : Array.isArray(val) || (isPlainObject(val) && val.toString === _toString)\n ? JSON.stringify(val, null, 2)\n : String(val)\n}\n\n/**\n * Convert an input value to a number for persistence.\n * If the conversion fails, return original string.\n */\nfunction toNumber (val) {\n var n = parseFloat(val);\n return isNaN(n) ? val : n\n}\n\n/**\n * Make a map and return a function for checking if a key\n * is in that map.\n */\nfunction makeMap (\n str,\n expectsLowerCase\n) {\n var map = Object.create(null);\n var list = str.split(',');\n for (var i = 0; i < list.length; i++) {\n map[list[i]] = true;\n }\n return expectsLowerCase\n ? function (val) { return map[val.toLowerCase()]; }\n : function (val) { return map[val]; }\n}\n\n/**\n * Check if a tag is a built-in tag.\n */\nvar isBuiltInTag = makeMap('slot,component', true);\n\n/**\n * Check if an attribute is a reserved attribute.\n */\nvar isReservedAttribute = makeMap('key,ref,slot,slot-scope,is');\n\n/**\n * Remove an item from an array.\n */\nfunction remove (arr, item) {\n if (arr.length) {\n var index = arr.indexOf(item);\n if (index > -1) {\n return arr.splice(index, 1)\n }\n }\n}\n\n/**\n * Check whether an object has the property.\n */\nvar hasOwnProperty = Object.prototype.hasOwnProperty;\nfunction hasOwn (obj, key) {\n return hasOwnProperty.call(obj, key)\n}\n\n/**\n * Create a cached version of a pure function.\n */\nfunction cached (fn) {\n var cache = Object.create(null);\n return (function cachedFn (str) {\n var hit = cache[str];\n return hit || (cache[str] = fn(str))\n })\n}\n\n/**\n * Camelize a hyphen-delimited string.\n */\nvar camelizeRE = /-(\\w)/g;\nvar camelize = cached(function (str) {\n return str.replace(camelizeRE, function (_, c) { return c ? c.toUpperCase() : ''; })\n});\n\n/**\n * Capitalize a string.\n */\nvar capitalize = cached(function (str) {\n return str.charAt(0).toUpperCase() + str.slice(1)\n});\n\n/**\n * Hyphenate a camelCase string.\n */\nvar hyphenateRE = /\\B([A-Z])/g;\nvar hyphenate = cached(function (str) {\n return str.replace(hyphenateRE, '-$1').toLowerCase()\n});\n\n/**\n * Simple bind polyfill for environments that do not support it,\n * e.g., PhantomJS 1.x. Technically, we don't need this anymore\n * since native bind is now performant enough in most browsers.\n * But removing it would mean breaking code that was able to run in\n * PhantomJS 1.x, so this must be kept for backward compatibility.\n */\n\n/* istanbul ignore next */\nfunction polyfillBind (fn, ctx) {\n function boundFn (a) {\n var l = arguments.length;\n return l\n ? l > 1\n ? fn.apply(ctx, arguments)\n : fn.call(ctx, a)\n : fn.call(ctx)\n }\n\n boundFn._length = fn.length;\n return boundFn\n}\n\nfunction nativeBind (fn, ctx) {\n return fn.bind(ctx)\n}\n\nvar bind = Function.prototype.bind\n ? nativeBind\n : polyfillBind;\n\n/**\n * Convert an Array-like object to a real Array.\n */\nfunction toArray (list, start) {\n start = start || 0;\n var i = list.length - start;\n var ret = new Array(i);\n while (i--) {\n ret[i] = list[i + start];\n }\n return ret\n}\n\n/**\n * Mix properties into target object.\n */\nfunction extend (to, _from) {\n for (var key in _from) {\n to[key] = _from[key];\n }\n return to\n}\n\n/**\n * Merge an Array of Objects into a single Object.\n */\nfunction toObject (arr) {\n var res = {};\n for (var i = 0; i < arr.length; i++) {\n if (arr[i]) {\n extend(res, arr[i]);\n }\n }\n return res\n}\n\n/* eslint-disable no-unused-vars */\n\n/**\n * Perform no operation.\n * Stubbing args to make Flow happy without leaving useless transpiled code\n * with ...rest (https://flow.org/blog/2017/05/07/Strict-Function-Call-Arity/).\n */\nfunction noop (a, b, c) {}\n\n/**\n * Always return false.\n */\nvar no = function (a, b, c) { return false; };\n\n/* eslint-enable no-unused-vars */\n\n/**\n * Return the same value.\n */\nvar identity = function (_) { return _; };\n\n/**\n * Check if two values are loosely equal - that is,\n * if they are plain objects, do they have the same shape?\n */\nfunction looseEqual (a, b) {\n if (a === b) { return true }\n var isObjectA = isObject(a);\n var isObjectB = isObject(b);\n if (isObjectA && isObjectB) {\n try {\n var isArrayA = Array.isArray(a);\n var isArrayB = Array.isArray(b);\n if (isArrayA && isArrayB) {\n return a.length === b.length && a.every(function (e, i) {\n return looseEqual(e, b[i])\n })\n } else if (a instanceof Date && b instanceof Date) {\n return a.getTime() === b.getTime()\n } else if (!isArrayA && !isArrayB) {\n var keysA = Object.keys(a);\n var keysB = Object.keys(b);\n return keysA.length === keysB.length && keysA.every(function (key) {\n return looseEqual(a[key], b[key])\n })\n } else {\n /* istanbul ignore next */\n return false\n }\n } catch (e) {\n /* istanbul ignore next */\n return false\n }\n } else if (!isObjectA && !isObjectB) {\n return String(a) === String(b)\n } else {\n return false\n }\n}\n\n/**\n * Return the first index at which a loosely equal value can be\n * found in the array (if value is a plain object, the array must\n * contain an object of the same shape), or -1 if it is not present.\n */\nfunction looseIndexOf (arr, val) {\n for (var i = 0; i < arr.length; i++) {\n if (looseEqual(arr[i], val)) { return i }\n }\n return -1\n}\n\n/**\n * Ensure a function is called only once.\n */\nfunction once (fn) {\n var called = false;\n return function () {\n if (!called) {\n called = true;\n fn.apply(this, arguments);\n }\n }\n}\n\nvar SSR_ATTR = 'data-server-rendered';\n\nvar ASSET_TYPES = [\n 'component',\n 'directive',\n 'filter'\n];\n\nvar LIFECYCLE_HOOKS = [\n 'beforeCreate',\n 'created',\n 'beforeMount',\n 'mounted',\n 'beforeUpdate',\n 'updated',\n 'beforeDestroy',\n 'destroyed',\n 'activated',\n 'deactivated',\n 'errorCaptured',\n 'serverPrefetch'\n];\n\n/* */\n\n\n\nvar config = ({\n /**\n * Option merge strategies (used in core/util/options)\n */\n // $flow-disable-line\n optionMergeStrategies: Object.create(null),\n\n /**\n * Whether to suppress warnings.\n */\n silent: false,\n\n /**\n * Show production mode tip message on boot?\n */\n productionTip: process.env.NODE_ENV !== 'production',\n\n /**\n * Whether to enable devtools\n */\n devtools: process.env.NODE_ENV !== 'production',\n\n /**\n * Whether to record perf\n */\n performance: false,\n\n /**\n * Error handler for watcher errors\n */\n errorHandler: null,\n\n /**\n * Warn handler for watcher warns\n */\n warnHandler: null,\n\n /**\n * Ignore certain custom elements\n */\n ignoredElements: [],\n\n /**\n * Custom user key aliases for v-on\n */\n // $flow-disable-line\n keyCodes: Object.create(null),\n\n /**\n * Check if a tag is reserved so that it cannot be registered as a\n * component. This is platform-dependent and may be overwritten.\n */\n isReservedTag: no,\n\n /**\n * Check if an attribute is reserved so that it cannot be used as a component\n * prop. This is platform-dependent and may be overwritten.\n */\n isReservedAttr: no,\n\n /**\n * Check if a tag is an unknown element.\n * Platform-dependent.\n */\n isUnknownElement: no,\n\n /**\n * Get the namespace of an element\n */\n getTagNamespace: noop,\n\n /**\n * Parse the real tag name for the specific platform.\n */\n parsePlatformTagName: identity,\n\n /**\n * Check if an attribute must be bound using property, e.g. value\n * Platform-dependent.\n */\n mustUseProp: no,\n\n /**\n * Perform updates asynchronously. Intended to be used by Vue Test Utils\n * This will significantly reduce performance if set to false.\n */\n async: true,\n\n /**\n * Exposed for legacy reasons\n */\n _lifecycleHooks: LIFECYCLE_HOOKS\n});\n\n/* */\n\n/**\n * unicode letters used for parsing html tags, component names and property paths.\n * using https://www.w3.org/TR/html53/semantics-scripting.html#potentialcustomelementname\n * skipping \\u10000-\\uEFFFF due to it freezing up PhantomJS\n */\nvar unicodeRegExp = /a-zA-Z\\u00B7\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u037D\\u037F-\\u1FFF\\u200C-\\u200D\\u203F-\\u2040\\u2070-\\u218F\\u2C00-\\u2FEF\\u3001-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFFD/;\n\n/**\n * Check if a string starts with $ or _\n */\nfunction isReserved (str) {\n var c = (str + '').charCodeAt(0);\n return c === 0x24 || c === 0x5F\n}\n\n/**\n * Define a property.\n */\nfunction def (obj, key, val, enumerable) {\n Object.defineProperty(obj, key, {\n value: val,\n enumerable: !!enumerable,\n writable: true,\n configurable: true\n });\n}\n\n/**\n * Parse simple path.\n */\nvar bailRE = new RegExp((\"[^\" + (unicodeRegExp.source) + \".$_\\\\d]\"));\nfunction parsePath (path) {\n if (bailRE.test(path)) {\n return\n }\n var segments = path.split('.');\n return function (obj) {\n for (var i = 0; i < segments.length; i++) {\n if (!obj) { return }\n obj = obj[segments[i]];\n }\n return obj\n }\n}\n\n/* */\n\n// can we use __proto__?\nvar hasProto = '__proto__' in {};\n\n// Browser environment sniffing\nvar inBrowser = typeof window !== 'undefined';\nvar inWeex = typeof WXEnvironment !== 'undefined' && !!WXEnvironment.platform;\nvar weexPlatform = inWeex && WXEnvironment.platform.toLowerCase();\nvar UA = inBrowser && window.navigator.userAgent.toLowerCase();\nvar isIE = UA && /msie|trident/.test(UA);\nvar isIE9 = UA && UA.indexOf('msie 9.0') > 0;\nvar isEdge = UA && UA.indexOf('edge/') > 0;\nvar isAndroid = (UA && UA.indexOf('android') > 0) || (weexPlatform === 'android');\nvar isIOS = (UA && /iphone|ipad|ipod|ios/.test(UA)) || (weexPlatform === 'ios');\nvar isChrome = UA && /chrome\\/\\d+/.test(UA) && !isEdge;\nvar isPhantomJS = UA && /phantomjs/.test(UA);\nvar isFF = UA && UA.match(/firefox\\/(\\d+)/);\n\n// Firefox has a \"watch\" function on Object.prototype...\nvar nativeWatch = ({}).watch;\n\nvar supportsPassive = false;\nif (inBrowser) {\n try {\n var opts = {};\n Object.defineProperty(opts, 'passive', ({\n get: function get () {\n /* istanbul ignore next */\n supportsPassive = true;\n }\n })); // https://github.com/facebook/flow/issues/285\n window.addEventListener('test-passive', null, opts);\n } catch (e) {}\n}\n\n// this needs to be lazy-evaled because vue may be required before\n// vue-server-renderer can set VUE_ENV\nvar _isServer;\nvar isServerRendering = function () {\n if (_isServer === undefined) {\n /* istanbul ignore if */\n if (!inBrowser && !inWeex && typeof global !== 'undefined') {\n // detect presence of vue-server-renderer and avoid\n // Webpack shimming the process\n _isServer = global['process'] && global['process'].env.VUE_ENV === 'server';\n } else {\n _isServer = false;\n }\n }\n return _isServer\n};\n\n// detect devtools\nvar devtools = inBrowser && window.__VUE_DEVTOOLS_GLOBAL_HOOK__;\n\n/* istanbul ignore next */\nfunction isNative (Ctor) {\n return typeof Ctor === 'function' && /native code/.test(Ctor.toString())\n}\n\nvar hasSymbol =\n typeof Symbol !== 'undefined' && isNative(Symbol) &&\n typeof Reflect !== 'undefined' && isNative(Reflect.ownKeys);\n\nvar _Set;\n/* istanbul ignore if */ // $flow-disable-line\nif (typeof Set !== 'undefined' && isNative(Set)) {\n // use native Set when available.\n _Set = Set;\n} else {\n // a non-standard Set polyfill that only works with primitive keys.\n _Set = /*@__PURE__*/(function () {\n function Set () {\n this.set = Object.create(null);\n }\n Set.prototype.has = function has (key) {\n return this.set[key] === true\n };\n Set.prototype.add = function add (key) {\n this.set[key] = true;\n };\n Set.prototype.clear = function clear () {\n this.set = Object.create(null);\n };\n\n return Set;\n }());\n}\n\n/* */\n\nvar warn = noop;\nvar tip = noop;\nvar generateComponentTrace = (noop); // work around flow check\nvar formatComponentName = (noop);\n\nif (process.env.NODE_ENV !== 'production') {\n var hasConsole = typeof console !== 'undefined';\n var classifyRE = /(?:^|[-_])(\\w)/g;\n var classify = function (str) { return str\n .replace(classifyRE, function (c) { return c.toUpperCase(); })\n .replace(/[-_]/g, ''); };\n\n warn = function (msg, vm) {\n var trace = vm ? generateComponentTrace(vm) : '';\n\n if (config.warnHandler) {\n config.warnHandler.call(null, msg, vm, trace);\n } else if (hasConsole && (!config.silent)) {\n console.error((\"[Vue warn]: \" + msg + trace));\n }\n };\n\n tip = function (msg, vm) {\n if (hasConsole && (!config.silent)) {\n console.warn(\"[Vue tip]: \" + msg + (\n vm ? generateComponentTrace(vm) : ''\n ));\n }\n };\n\n formatComponentName = function (vm, includeFile) {\n if (vm.$root === vm) {\n return '<Root>'\n }\n var options = typeof vm === 'function' && vm.cid != null\n ? vm.options\n : vm._isVue\n ? vm.$options || vm.constructor.options\n : vm;\n var name = options.name || options._componentTag;\n var file = options.__file;\n if (!name && file) {\n var match = file.match(/([^/\\\\]+)\\.vue$/);\n name = match && match[1];\n }\n\n return (\n (name ? (\"<\" + (classify(name)) + \">\") : \"<Anonymous>\") +\n (file && includeFile !== false ? (\" at \" + file) : '')\n )\n };\n\n var repeat = function (str, n) {\n var res = '';\n while (n) {\n if (n % 2 === 1) { res += str; }\n if (n > 1) { str += str; }\n n >>= 1;\n }\n return res\n };\n\n generateComponentTrace = function (vm) {\n if (vm._isVue && vm.$parent) {\n var tree = [];\n var currentRecursiveSequence = 0;\n while (vm) {\n if (tree.length > 0) {\n var last = tree[tree.length - 1];\n if (last.constructor === vm.constructor) {\n currentRecursiveSequence++;\n vm = vm.$parent;\n continue\n } else if (currentRecursiveSequence > 0) {\n tree[tree.length - 1] = [last, currentRecursiveSequence];\n currentRecursiveSequence = 0;\n }\n }\n tree.push(vm);\n vm = vm.$parent;\n }\n return '\\n\\nfound in\\n\\n' + tree\n .map(function (vm, i) { return (\"\" + (i === 0 ? '---> ' : repeat(' ', 5 + i * 2)) + (Array.isArray(vm)\n ? ((formatComponentName(vm[0])) + \"... (\" + (vm[1]) + \" recursive calls)\")\n : formatComponentName(vm))); })\n .join('\\n')\n } else {\n return (\"\\n\\n(found in \" + (formatComponentName(vm)) + \")\")\n }\n };\n}\n\n/* */\n\nvar uid = 0;\n\n/**\n * A dep is an observable that can have multiple\n * directives subscribing to it.\n */\nvar Dep = function Dep () {\n this.id = uid++;\n this.subs = [];\n};\n\nDep.prototype.addSub = function addSub (sub) {\n this.subs.push(sub);\n};\n\nDep.prototype.removeSub = function removeSub (sub) {\n remove(this.subs, sub);\n};\n\nDep.prototype.depend = function depend () {\n if (Dep.target) {\n Dep.target.addDep(this);\n }\n};\n\nDep.prototype.notify = function notify () {\n // stabilize the subscriber list first\n var subs = this.subs.slice();\n if (process.env.NODE_ENV !== 'production' && !config.async) {\n // subs aren't sorted in scheduler if not running async\n // we need to sort them now to make sure they fire in correct\n // order\n subs.sort(function (a, b) { return a.id - b.id; });\n }\n for (var i = 0, l = subs.length; i < l; i++) {\n subs[i].update();\n }\n};\n\n// The current target watcher being evaluated.\n// This is globally unique because only one watcher\n// can be evaluated at a time.\nDep.target = null;\nvar targetStack = [];\n\nfunction pushTarget (target) {\n targetStack.push(target);\n Dep.target = target;\n}\n\nfunction popTarget () {\n targetStack.pop();\n Dep.target = targetStack[targetStack.length - 1];\n}\n\n/* */\n\nvar VNode = function VNode (\n tag,\n data,\n children,\n text,\n elm,\n context,\n componentOptions,\n asyncFactory\n) {\n this.tag = tag;\n this.data = data;\n this.children = children;\n this.text = text;\n this.elm = elm;\n this.ns = undefined;\n this.context = context;\n this.fnContext = undefined;\n this.fnOptions = undefined;\n this.fnScopeId = undefined;\n this.key = data && data.key;\n this.componentOptions = componentOptions;\n this.componentInstance = undefined;\n this.parent = undefined;\n this.raw = false;\n this.isStatic = false;\n this.isRootInsert = true;\n this.isComment = false;\n this.isCloned = false;\n this.isOnce = false;\n this.asyncFactory = asyncFactory;\n this.asyncMeta = undefined;\n this.isAsyncPlaceholder = false;\n};\n\nvar prototypeAccessors = { child: { configurable: true } };\n\n// DEPRECATED: alias for componentInstance for backwards compat.\n/* istanbul ignore next */\nprototypeAccessors.child.get = function () {\n return this.componentInstance\n};\n\nObject.defineProperties( VNode.prototype, prototypeAccessors );\n\nvar createEmptyVNode = function (text) {\n if ( text === void 0 ) text = '';\n\n var node = new VNode();\n node.text = text;\n node.isComment = true;\n return node\n};\n\nfunction createTextVNode (val) {\n return new VNode(undefined, undefined, undefined, String(val))\n}\n\n// optimized shallow clone\n// used for static nodes and slot nodes because they may be reused across\n// multiple renders, cloning them avoids errors when DOM manipulations rely\n// on their elm reference.\nfunction cloneVNode (vnode) {\n var cloned = new VNode(\n vnode.tag,\n vnode.data,\n // #7975\n // clone children array to avoid mutating original in case of cloning\n // a child.\n vnode.children && vnode.children.slice(),\n vnode.text,\n vnode.elm,\n vnode.context,\n vnode.componentOptions,\n vnode.asyncFactory\n );\n cloned.ns = vnode.ns;\n cloned.isStatic = vnode.isStatic;\n cloned.key = vnode.key;\n cloned.isComment = vnode.isComment;\n cloned.fnContext = vnode.fnContext;\n cloned.fnOptions = vnode.fnOptions;\n cloned.fnScopeId = vnode.fnScopeId;\n cloned.asyncMeta = vnode.asyncMeta;\n cloned.isCloned = true;\n return cloned\n}\n\n/*\n * not type checking this file because flow doesn't play well with\n * dynamically accessing methods on Array prototype\n */\n\nvar arrayProto = Array.prototype;\nvar arrayMethods = Object.create(arrayProto);\n\nvar methodsToPatch = [\n 'push',\n 'pop',\n 'shift',\n 'unshift',\n 'splice',\n 'sort',\n 'reverse'\n];\n\n/**\n * Intercept mutating methods and emit events\n */\nmethodsToPatch.forEach(function (method) {\n // cache original method\n var original = arrayProto[method];\n def(arrayMethods, method, function mutator () {\n var args = [], len = arguments.length;\n while ( len-- ) args[ len ] = arguments[ len ];\n\n var result = original.apply(this, args);\n var ob = this.__ob__;\n var inserted;\n switch (method) {\n case 'push':\n case 'unshift':\n inserted = args;\n break\n case 'splice':\n inserted = args.slice(2);\n break\n }\n if (inserted) { ob.observeArray(inserted); }\n // notify change\n ob.dep.notify();\n return result\n });\n});\n\n/* */\n\nvar arrayKeys = Object.getOwnPropertyNames(arrayMethods);\n\n/**\n * In some cases we may want to disable observation inside a component's\n * update computation.\n */\nvar shouldObserve = true;\n\nfunction toggleObserving (value) {\n shouldObserve = value;\n}\n\n/**\n * Observer class that is attached to each observed\n * object. Once attached, the observer converts the target\n * object's property keys into getter/setters that\n * collect dependencies and dispatch updates.\n */\nvar Observer = function Observer (value) {\n this.value = value;\n this.dep = new Dep();\n this.vmCount = 0;\n def(value, '__ob__', this);\n if (Array.isArray(value)) {\n if (hasProto) {\n protoAugment(value, arrayMethods);\n } else {\n copyAugment(value, arrayMethods, arrayKeys);\n }\n this.observeArray(value);\n } else {\n this.walk(value);\n }\n};\n\n/**\n * Walk through all properties and convert them into\n * getter/setters. This method should only be called when\n * value type is Object.\n */\nObserver.prototype.walk = function walk (obj) {\n var keys = Object.keys(obj);\n for (var i = 0; i < keys.length; i++) {\n defineReactive$$1(obj, keys[i]);\n }\n};\n\n/**\n * Observe a list of Array items.\n */\nObserver.prototype.observeArray = function observeArray (items) {\n for (var i = 0, l = items.length; i < l; i++) {\n observe(items[i]);\n }\n};\n\n// helpers\n\n/**\n * Augment a target Object or Array by intercepting\n * the prototype chain using __proto__\n */\nfunction protoAugment (target, src) {\n /* eslint-disable no-proto */\n target.__proto__ = src;\n /* eslint-enable no-proto */\n}\n\n/**\n * Augment a target Object or Array by defining\n * hidden properties.\n */\n/* istanbul ignore next */\nfunction copyAugment (target, src, keys) {\n for (var i = 0, l = keys.length; i < l; i++) {\n var key = keys[i];\n def(target, key, src[key]);\n }\n}\n\n/**\n * Attempt to create an observer instance for a value,\n * returns the new observer if successfully observed,\n * or the existing observer if the value already has one.\n */\nfunction observe (value, asRootData) {\n if (!isObject(value) || value instanceof VNode) {\n return\n }\n var ob;\n if (hasOwn(value, '__ob__') && value.__ob__ instanceof Observer) {\n ob = value.__ob__;\n } else if (\n shouldObserve &&\n !isServerRendering() &&\n (Array.isArray(value) || isPlainObject(value)) &&\n Object.isExtensible(value) &&\n !value._isVue\n ) {\n ob = new Observer(value);\n }\n if (asRootData && ob) {\n ob.vmCount++;\n }\n return ob\n}\n\n/**\n * Define a reactive property on an Object.\n */\nfunction defineReactive$$1 (\n obj,\n key,\n val,\n customSetter,\n shallow\n) {\n var dep = new Dep();\n\n var property = Object.getOwnPropertyDescriptor(obj, key);\n if (property && property.configurable === false) {\n return\n }\n\n // cater for pre-defined getter/setters\n var getter = property && property.get;\n var setter = property && property.set;\n if ((!getter || setter) && arguments.length === 2) {\n val = obj[key];\n }\n\n var childOb = !shallow && observe(val);\n Object.defineProperty(obj, key, {\n enumerable: true,\n configurable: true,\n get: function reactiveGetter () {\n var value = getter ? getter.call(obj) : val;\n if (Dep.target) {\n dep.depend();\n if (childOb) {\n childOb.dep.depend();\n if (Array.isArray(value)) {\n dependArray(value);\n }\n }\n }\n return value\n },\n set: function reactiveSetter (newVal) {\n var value = getter ? getter.call(obj) : val;\n /* eslint-disable no-self-compare */\n if (newVal === value || (newVal !== newVal && value !== value)) {\n return\n }\n /* eslint-enable no-self-compare */\n if (process.env.NODE_ENV !== 'production' && customSetter) {\n customSetter();\n }\n // #7981: for accessor properties without setter\n if (getter && !setter) { return }\n if (setter) {\n setter.call(obj, newVal);\n } else {\n val = newVal;\n }\n childOb = !shallow && observe(newVal);\n dep.notify();\n }\n });\n}\n\n/**\n * Set a property on an object. Adds the new property and\n * triggers change notification if the property doesn't\n * already exist.\n */\nfunction set (target, key, val) {\n if (process.env.NODE_ENV !== 'production' &&\n (isUndef(target) || isPrimitive(target))\n ) {\n warn((\"Cannot set reactive property on undefined, null, or primitive value: \" + ((target))));\n }\n if (Array.isArray(target) && isValidArrayIndex(key)) {\n target.length = Math.max(target.length, key);\n target.splice(key, 1, val);\n return val\n }\n if (key in target && !(key in Object.prototype)) {\n target[key] = val;\n return val\n }\n var ob = (target).__ob__;\n if (target._isVue || (ob && ob.vmCount)) {\n process.env.NODE_ENV !== 'production' && warn(\n 'Avoid adding reactive properties to a Vue instance or its root $data ' +\n 'at runtime - declare it upfront in the data option.'\n );\n return val\n }\n if (!ob) {\n target[key] = val;\n return val\n }\n defineReactive$$1(ob.value, key, val);\n ob.dep.notify();\n return val\n}\n\n/**\n * Delete a property and trigger change if necessary.\n */\nfunction del (target, key) {\n if (process.env.NODE_ENV !== 'production' &&\n (isUndef(target) || isPrimitive(target))\n ) {\n warn((\"Cannot delete reactive property on undefined, null, or primitive value: \" + ((target))));\n }\n if (Array.isArray(target) && isValidArrayIndex(key)) {\n target.splice(key, 1);\n return\n }\n var ob = (target).__ob__;\n if (target._isVue || (ob && ob.vmCount)) {\n process.env.NODE_ENV !== 'production' && warn(\n 'Avoid deleting properties on a Vue instance or its root $data ' +\n '- just set it to null.'\n );\n return\n }\n if (!hasOwn(target, key)) {\n return\n }\n delete target[key];\n if (!ob) {\n return\n }\n ob.dep.notify();\n}\n\n/**\n * Collect dependencies on array elements when the array is touched, since\n * we cannot intercept array element access like property getters.\n */\nfunction dependArray (value) {\n for (var e = (void 0), i = 0, l = value.length; i < l; i++) {\n e = value[i];\n e && e.__ob__ && e.__ob__.dep.depend();\n if (Array.isArray(e)) {\n dependArray(e);\n }\n }\n}\n\n/* */\n\n/**\n * Option overwriting strategies are functions that handle\n * how to merge a parent option value and a child option\n * value into the final value.\n */\nvar strats = config.optionMergeStrategies;\n\n/**\n * Options with restrictions\n */\nif (process.env.NODE_ENV !== 'production') {\n strats.el = strats.propsData = function (parent, child, vm, key) {\n if (!vm) {\n warn(\n \"option \\\"\" + key + \"\\\" can only be used during instance \" +\n 'creation with the `new` keyword.'\n );\n }\n return defaultStrat(parent, child)\n };\n}\n\n/**\n * Helper that recursively merges two data objects together.\n */\nfunction mergeData (to, from) {\n if (!from) { return to }\n var key, toVal, fromVal;\n\n var keys = hasSymbol\n ? Reflect.ownKeys(from)\n : Object.keys(from);\n\n for (var i = 0; i < keys.length; i++) {\n key = keys[i];\n // in case the object is already observed...\n if (key === '__ob__') { continue }\n toVal = to[key];\n fromVal = from[key];\n if (!hasOwn(to, key)) {\n set(to, key, fromVal);\n } else if (\n toVal !== fromVal &&\n isPlainObject(toVal) &&\n isPlainObject(fromVal)\n ) {\n mergeData(toVal, fromVal);\n }\n }\n return to\n}\n\n/**\n * Data\n */\nfunction mergeDataOrFn (\n parentVal,\n childVal,\n vm\n) {\n if (!vm) {\n // in a Vue.extend merge, both should be functions\n if (!childVal) {\n return parentVal\n }\n if (!parentVal) {\n return childVal\n }\n // when parentVal & childVal are both present,\n // we need to return a function that returns the\n // merged result of both functions... no need to\n // check if parentVal is a function here because\n // it has to be a function to pass previous merges.\n return function mergedDataFn () {\n return mergeData(\n typeof childVal === 'function' ? childVal.call(this, this) : childVal,\n typeof parentVal === 'function' ? parentVal.call(this, this) : parentVal\n )\n }\n } else {\n return function mergedInstanceDataFn () {\n // instance merge\n var instanceData = typeof childVal === 'function'\n ? childVal.call(vm, vm)\n : childVal;\n var defaultData = typeof parentVal === 'function'\n ? parentVal.call(vm, vm)\n : parentVal;\n if (instanceData) {\n return mergeData(instanceData, defaultData)\n } else {\n return defaultData\n }\n }\n }\n}\n\nstrats.data = function (\n parentVal,\n childVal,\n vm\n) {\n if (!vm) {\n if (childVal && typeof childVal !== 'function') {\n process.env.NODE_ENV !== 'production' && warn(\n 'The \"data\" option should be a function ' +\n 'that returns a per-instance value in component ' +\n 'definitions.',\n vm\n );\n\n return parentVal\n }\n return mergeDataOrFn(parentVal, childVal)\n }\n\n return mergeDataOrFn(parentVal, childVal, vm)\n};\n\n/**\n * Hooks and props are merged as arrays.\n */\nfunction mergeHook (\n parentVal,\n childVal\n) {\n var res = childVal\n ? parentVal\n ? parentVal.concat(childVal)\n : Array.isArray(childVal)\n ? childVal\n : [childVal]\n : parentVal;\n return res\n ? dedupeHooks(res)\n : res\n}\n\nfunction dedupeHooks (hooks) {\n var res = [];\n for (var i = 0; i < hooks.length; i++) {\n if (res.indexOf(hooks[i]) === -1) {\n res.push(hooks[i]);\n }\n }\n return res\n}\n\nLIFECYCLE_HOOKS.forEach(function (hook) {\n strats[hook] = mergeHook;\n});\n\n/**\n * Assets\n *\n * When a vm is present (instance creation), we need to do\n * a three-way merge between constructor options, instance\n * options and parent options.\n */\nfunction mergeAssets (\n parentVal,\n childVal,\n vm,\n key\n) {\n var res = Object.create(parentVal || null);\n if (childVal) {\n process.env.NODE_ENV !== 'production' && assertObjectType(key, childVal, vm);\n return extend(res, childVal)\n } else {\n return res\n }\n}\n\nASSET_TYPES.forEach(function (type) {\n strats[type + 's'] = mergeAssets;\n});\n\n/**\n * Watchers.\n *\n * Watchers hashes should not overwrite one\n * another, so we merge them as arrays.\n */\nstrats.watch = function (\n parentVal,\n childVal,\n vm,\n key\n) {\n // work around Firefox's Object.prototype.watch...\n if (parentVal === nativeWatch) { parentVal = undefined; }\n if (childVal === nativeWatch) { childVal = undefined; }\n /* istanbul ignore if */\n if (!childVal) { return Object.create(parentVal || null) }\n if (process.env.NODE_ENV !== 'production') {\n assertObjectType(key, childVal, vm);\n }\n if (!parentVal) { return childVal }\n var ret = {};\n extend(ret, parentVal);\n for (var key$1 in childVal) {\n var parent = ret[key$1];\n var child = childVal[key$1];\n if (parent && !Array.isArray(parent)) {\n parent = [parent];\n }\n ret[key$1] = parent\n ? parent.concat(child)\n : Array.isArray(child) ? child : [child];\n }\n return ret\n};\n\n/**\n * Other object hashes.\n */\nstrats.props =\nstrats.methods =\nstrats.inject =\nstrats.computed = function (\n parentVal,\n childVal,\n vm,\n key\n) {\n if (childVal && process.env.NODE_ENV !== 'production') {\n assertObjectType(key, childVal, vm);\n }\n if (!parentVal) { return childVal }\n var ret = Object.create(null);\n extend(ret, parentVal);\n if (childVal) { extend(ret, childVal); }\n return ret\n};\nstrats.provide = mergeDataOrFn;\n\n/**\n * Default strategy.\n */\nvar defaultStrat = function (parentVal, childVal) {\n return childVal === undefined\n ? parentVal\n : childVal\n};\n\n/**\n * Validate component names\n */\nfunction checkComponents (options) {\n for (var key in options.components) {\n validateComponentName(key);\n }\n}\n\nfunction validateComponentName (name) {\n if (!new RegExp((\"^[a-zA-Z][\\\\-\\\\.0-9_\" + (unicodeRegExp.source) + \"]*$\")).test(name)) {\n warn(\n 'Invalid component name: \"' + name + '\". Component names ' +\n 'should conform to valid custom element name in html5 specification.'\n );\n }\n if (isBuiltInTag(name) || config.isReservedTag(name)) {\n warn(\n 'Do not use built-in or reserved HTML elements as component ' +\n 'id: ' + name\n );\n }\n}\n\n/**\n * Ensure all props option syntax are normalized into the\n * Object-based format.\n */\nfunction normalizeProps (options, vm) {\n var props = options.props;\n if (!props) { return }\n var res = {};\n var i, val, name;\n if (Array.isArray(props)) {\n i = props.length;\n while (i--) {\n val = props[i];\n if (typeof val === 'string') {\n name = camelize(val);\n res[name] = { type: null };\n } else if (process.env.NODE_ENV !== 'production') {\n warn('props must be strings when using array syntax.');\n }\n }\n } else if (isPlainObject(props)) {\n for (var key in props) {\n val = props[key];\n name = camelize(key);\n res[name] = isPlainObject(val)\n ? val\n : { type: val };\n }\n } else if (process.env.NODE_ENV !== 'production') {\n warn(\n \"Invalid value for option \\\"props\\\": expected an Array or an Object, \" +\n \"but got \" + (toRawType(props)) + \".\",\n vm\n );\n }\n options.props = res;\n}\n\n/**\n * Normalize all injections into Object-based format\n */\nfunction normalizeInject (options, vm) {\n var inject = options.inject;\n if (!inject) { return }\n var normalized = options.inject = {};\n if (Array.isArray(inject)) {\n for (var i = 0; i < inject.length; i++) {\n normalized[inject[i]] = { from: inject[i] };\n }\n } else if (isPlainObject(inject)) {\n for (var key in inject) {\n var val = inject[key];\n normalized[key] = isPlainObject(val)\n ? extend({ from: key }, val)\n : { from: val };\n }\n } else if (process.env.NODE_ENV !== 'production') {\n warn(\n \"Invalid value for option \\\"inject\\\": expected an Array or an Object, \" +\n \"but got \" + (toRawType(inject)) + \".\",\n vm\n );\n }\n}\n\n/**\n * Normalize raw function directives into object format.\n */\nfunction normalizeDirectives (options) {\n var dirs = options.directives;\n if (dirs) {\n for (var key in dirs) {\n var def$$1 = dirs[key];\n if (typeof def$$1 === 'function') {\n dirs[key] = { bind: def$$1, update: def$$1 };\n }\n }\n }\n}\n\nfunction assertObjectType (name, value, vm) {\n if (!isPlainObject(value)) {\n warn(\n \"Invalid value for option \\\"\" + name + \"\\\": expected an Object, \" +\n \"but got \" + (toRawType(value)) + \".\",\n vm\n );\n }\n}\n\n/**\n * Merge two option objects into a new one.\n * Core utility used in both instantiation and inheritance.\n */\nfunction mergeOptions (\n parent,\n child,\n vm\n) {\n if (process.env.NODE_ENV !== 'production') {\n checkComponents(child);\n }\n\n if (typeof child === 'function') {\n child = child.options;\n }\n\n normalizeProps(child, vm);\n normalizeInject(child, vm);\n normalizeDirectives(child);\n\n // Apply extends and mixins on the child options,\n // but only if it is a raw options object that isn't\n // the result of another mergeOptions call.\n // Only merged options has the _base property.\n if (!child._base) {\n if (child.extends) {\n parent = mergeOptions(parent, child.extends, vm);\n }\n if (child.mixins) {\n for (var i = 0, l = child.mixins.length; i < l; i++) {\n parent = mergeOptions(parent, child.mixins[i], vm);\n }\n }\n }\n\n var options = {};\n var key;\n for (key in parent) {\n mergeField(key);\n }\n for (key in child) {\n if (!hasOwn(parent, key)) {\n mergeField(key);\n }\n }\n function mergeField (key) {\n var strat = strats[key] || defaultStrat;\n options[key] = strat(parent[key], child[key], vm, key);\n }\n return options\n}\n\n/**\n * Resolve an asset.\n * This function is used because child instances need access\n * to assets defined in its ancestor chain.\n */\nfunction resolveAsset (\n options,\n type,\n id,\n warnMissing\n) {\n /* istanbul ignore if */\n if (typeof id !== 'string') {\n return\n }\n var assets = options[type];\n // check local registration variations first\n if (hasOwn(assets, id)) { return assets[id] }\n var camelizedId = camelize(id);\n if (hasOwn(assets, camelizedId)) { return assets[camelizedId] }\n var PascalCaseId = capitalize(camelizedId);\n if (hasOwn(assets, PascalCaseId)) { return assets[PascalCaseId] }\n // fallback to prototype chain\n var res = assets[id] || assets[camelizedId] || assets[PascalCaseId];\n if (process.env.NODE_ENV !== 'production' && warnMissing && !res) {\n warn(\n 'Failed to resolve ' + type.slice(0, -1) + ': ' + id,\n options\n );\n }\n return res\n}\n\n/* */\n\n\n\nfunction validateProp (\n key,\n propOptions,\n propsData,\n vm\n) {\n var prop = propOptions[key];\n var absent = !hasOwn(propsData, key);\n var value = propsData[key];\n // boolean casting\n var booleanIndex = getTypeIndex(Boolean, prop.type);\n if (booleanIndex > -1) {\n if (absent && !hasOwn(prop, 'default')) {\n value = false;\n } else if (value === '' || value === hyphenate(key)) {\n // only cast empty string / same name to boolean if\n // boolean has higher priority\n var stringIndex = getTypeIndex(String, prop.type);\n if (stringIndex < 0 || booleanIndex < stringIndex) {\n value = true;\n }\n }\n }\n // check default value\n if (value === undefined) {\n value = getPropDefaultValue(vm, prop, key);\n // since the default value is a fresh copy,\n // make sure to observe it.\n var prevShouldObserve = shouldObserve;\n toggleObserving(true);\n observe(value);\n toggleObserving(prevShouldObserve);\n }\n if (\n process.env.NODE_ENV !== 'production' &&\n // skip validation for weex recycle-list child component props\n !(false)\n ) {\n assertProp(prop, key, value, vm, absent);\n }\n return value\n}\n\n/**\n * Get the default value of a prop.\n */\nfunction getPropDefaultValue (vm, prop, key) {\n // no default, return undefined\n if (!hasOwn(prop, 'default')) {\n return undefined\n }\n var def = prop.default;\n // warn against non-factory defaults for Object & Array\n if (process.env.NODE_ENV !== 'production' && isObject(def)) {\n warn(\n 'Invalid default value for prop \"' + key + '\": ' +\n 'Props with type Object/Array must use a factory function ' +\n 'to return the default value.',\n vm\n );\n }\n // the raw prop value was also undefined from previous render,\n // return previous default value to avoid unnecessary watcher trigger\n if (vm && vm.$options.propsData &&\n vm.$options.propsData[key] === undefined &&\n vm._props[key] !== undefined\n ) {\n return vm._props[key]\n }\n // call factory function for non-Function types\n // a value is Function if its prototype is function even across different execution context\n return typeof def === 'function' && getType(prop.type) !== 'Function'\n ? def.call(vm)\n : def\n}\n\n/**\n * Assert whether a prop is valid.\n */\nfunction assertProp (\n prop,\n name,\n value,\n vm,\n absent\n) {\n if (prop.required && absent) {\n warn(\n 'Missing required prop: \"' + name + '\"',\n vm\n );\n return\n }\n if (value == null && !prop.required) {\n return\n }\n var type = prop.type;\n var valid = !type || type === true;\n var expectedTypes = [];\n if (type) {\n if (!Array.isArray(type)) {\n type = [type];\n }\n for (var i = 0; i < type.length && !valid; i++) {\n var assertedType = assertType(value, type[i]);\n expectedTypes.push(assertedType.expectedType || '');\n valid = assertedType.valid;\n }\n }\n\n if (!valid) {\n warn(\n getInvalidTypeMessage(name, value, expectedTypes),\n vm\n );\n return\n }\n var validator = prop.validator;\n if (validator) {\n if (!validator(value)) {\n warn(\n 'Invalid prop: custom validator check failed for prop \"' + name + '\".',\n vm\n );\n }\n }\n}\n\nvar simpleCheckRE = /^(String|Number|Boolean|Function|Symbol)$/;\n\nfunction assertType (value, type) {\n var valid;\n var expectedType = getType(type);\n if (simpleCheckRE.test(expectedType)) {\n var t = typeof value;\n valid = t === expectedType.toLowerCase();\n // for primitive wrapper objects\n if (!valid && t === 'object') {\n valid = value instanceof type;\n }\n } else if (expectedType === 'Object') {\n valid = isPlainObject(value);\n } else if (expectedType === 'Array') {\n valid = Array.isArray(value);\n } else {\n valid = value instanceof type;\n }\n return {\n valid: valid,\n expectedType: expectedType\n }\n}\n\n/**\n * Use function string name to check built-in types,\n * because a simple equality check will fail when running\n * across different vms / iframes.\n */\nfunction getType (fn) {\n var match = fn && fn.toString().match(/^\\s*function (\\w+)/);\n return match ? match[1] : ''\n}\n\nfunction isSameType (a, b) {\n return getType(a) === getType(b)\n}\n\nfunction getTypeIndex (type, expectedTypes) {\n if (!Array.isArray(expectedTypes)) {\n return isSameType(expectedTypes, type) ? 0 : -1\n }\n for (var i = 0, len = expectedTypes.length; i < len; i++) {\n if (isSameType(expectedTypes[i], type)) {\n return i\n }\n }\n return -1\n}\n\nfunction getInvalidTypeMessage (name, value, expectedTypes) {\n var message = \"Invalid prop: type check failed for prop \\\"\" + name + \"\\\".\" +\n \" Expected \" + (expectedTypes.map(capitalize).join(', '));\n var expectedType = expectedTypes[0];\n var receivedType = toRawType(value);\n var expectedValue = styleValue(value, expectedType);\n var receivedValue = styleValue(value, receivedType);\n // check if we need to specify expected value\n if (expectedTypes.length === 1 &&\n isExplicable(expectedType) &&\n !isBoolean(expectedType, receivedType)) {\n message += \" with value \" + expectedValue;\n }\n message += \", got \" + receivedType + \" \";\n // check if we need to specify received value\n if (isExplicable(receivedType)) {\n message += \"with value \" + receivedValue + \".\";\n }\n return message\n}\n\nfunction styleValue (value, type) {\n if (type === 'String') {\n return (\"\\\"\" + value + \"\\\"\")\n } else if (type === 'Number') {\n return (\"\" + (Number(value)))\n } else {\n return (\"\" + value)\n }\n}\n\nfunction isExplicable (value) {\n var explicitTypes = ['string', 'number', 'boolean'];\n return explicitTypes.some(function (elem) { return value.toLowerCase() === elem; })\n}\n\nfunction isBoolean () {\n var args = [], len = arguments.length;\n while ( len-- ) args[ len ] = arguments[ len ];\n\n return args.some(function (elem) { return elem.toLowerCase() === 'boolean'; })\n}\n\n/* */\n\nfunction handleError (err, vm, info) {\n // Deactivate deps tracking while processing error handler to avoid possible infinite rendering.\n // See: https://github.com/vuejs/vuex/issues/1505\n pushTarget();\n try {\n if (vm) {\n var cur = vm;\n while ((cur = cur.$parent)) {\n var hooks = cur.$options.errorCaptured;\n if (hooks) {\n for (var i = 0; i < hooks.length; i++) {\n try {\n var capture = hooks[i].call(cur, err, vm, info) === false;\n if (capture) { return }\n } catch (e) {\n globalHandleError(e, cur, 'errorCaptured hook');\n }\n }\n }\n }\n }\n globalHandleError(err, vm, info);\n } finally {\n popTarget();\n }\n}\n\nfunction invokeWithErrorHandling (\n handler,\n context,\n args,\n vm,\n info\n) {\n var res;\n try {\n res = args ? handler.apply(context, args) : handler.call(context);\n if (res && !res._isVue && isPromise(res) && !res._handled) {\n res.catch(function (e) { return handleError(e, vm, info + \" (Promise/async)\"); });\n // issue #9511\n // avoid catch triggering multiple times when nested calls\n res._handled = true;\n }\n } catch (e) {\n handleError(e, vm, info);\n }\n return res\n}\n\nfunction globalHandleError (err, vm, info) {\n if (config.errorHandler) {\n try {\n return config.errorHandler.call(null, err, vm, info)\n } catch (e) {\n // if the user intentionally throws the original error in the handler,\n // do not log it twice\n if (e !== err) {\n logError(e, null, 'config.errorHandler');\n }\n }\n }\n logError(err, vm, info);\n}\n\nfunction logError (err, vm, info) {\n if (process.env.NODE_ENV !== 'production') {\n warn((\"Error in \" + info + \": \\\"\" + (err.toString()) + \"\\\"\"), vm);\n }\n /* istanbul ignore else */\n if ((inBrowser || inWeex) && typeof console !== 'undefined') {\n console.error(err);\n } else {\n throw err\n }\n}\n\n/* */\n\nvar isUsingMicroTask = false;\n\nvar callbacks = [];\nvar pending = false;\n\nfunction flushCallbacks () {\n pending = false;\n var copies = callbacks.slice(0);\n callbacks.length = 0;\n for (var i = 0; i < copies.length; i++) {\n copies[i]();\n }\n}\n\n// Here we have async deferring wrappers using microtasks.\n// In 2.5 we used (macro) tasks (in combination with microtasks).\n// However, it has subtle problems when state is changed right before repaint\n// (e.g. #6813, out-in transitions).\n// Also, using (macro) tasks in event handler would cause some weird behaviors\n// that cannot be circumvented (e.g. #7109, #7153, #7546, #7834, #8109).\n// So we now use microtasks everywhere, again.\n// A major drawback of this tradeoff is that there are some scenarios\n// where microtasks have too high a priority and fire in between supposedly\n// sequential events (e.g. #4521, #6690, which have workarounds)\n// or even between bubbling of the same event (#6566).\nvar timerFunc;\n\n// The nextTick behavior leverages the microtask queue, which can be accessed\n// via either native Promise.then or MutationObserver.\n// MutationObserver has wider support, however it is seriously bugged in\n// UIWebView in iOS >= 9.3.3 when triggered in touch event handlers. It\n// completely stops working after triggering a few times... so, if native\n// Promise is available, we will use it:\n/* istanbul ignore next, $flow-disable-line */\nif (typeof Promise !== 'undefined' && isNative(Promise)) {\n var p = Promise.resolve();\n timerFunc = function () {\n p.then(flushCallbacks);\n // In problematic UIWebViews, Promise.then doesn't completely break, but\n // it can get stuck in a weird state where callbacks are pushed into the\n // microtask queue but the queue isn't being flushed, until the browser\n // needs to do some other work, e.g. handle a timer. Therefore we can\n // \"force\" the microtask queue to be flushed by adding an empty timer.\n if (isIOS) { setTimeout(noop); }\n };\n isUsingMicroTask = true;\n} else if (!isIE && typeof MutationObserver !== 'undefined' && (\n isNative(MutationObserver) ||\n // PhantomJS and iOS 7.x\n MutationObserver.toString() === '[object MutationObserverConstructor]'\n)) {\n // Use MutationObserver where native Promise is not available,\n // e.g. PhantomJS, iOS7, Android 4.4\n // (#6466 MutationObserver is unreliable in IE11)\n var counter = 1;\n var observer = new MutationObserver(flushCallbacks);\n var textNode = document.createTextNode(String(counter));\n observer.observe(textNode, {\n characterData: true\n });\n timerFunc = function () {\n counter = (counter + 1) % 2;\n textNode.data = String(counter);\n };\n isUsingMicroTask = true;\n} else if (typeof setImmediate !== 'undefined' && isNative(setImmediate)) {\n // Fallback to setImmediate.\n // Technically it leverages the (macro) task queue,\n // but it is still a better choice than setTimeout.\n timerFunc = function () {\n setImmediate(flushCallbacks);\n };\n} else {\n // Fallback to setTimeout.\n timerFunc = function () {\n setTimeout(flushCallbacks, 0);\n };\n}\n\nfunction nextTick (cb, ctx) {\n var _resolve;\n callbacks.push(function () {\n if (cb) {\n try {\n cb.call(ctx);\n } catch (e) {\n handleError(e, ctx, 'nextTick');\n }\n } else if (_resolve) {\n _resolve(ctx);\n }\n });\n if (!pending) {\n pending = true;\n timerFunc();\n }\n // $flow-disable-line\n if (!cb && typeof Promise !== 'undefined') {\n return new Promise(function (resolve) {\n _resolve = resolve;\n })\n }\n}\n\n/* */\n\n/* not type checking this file because flow doesn't play well with Proxy */\n\nvar initProxy;\n\nif (process.env.NODE_ENV !== 'production') {\n var allowedGlobals = makeMap(\n 'Infinity,undefined,NaN,isFinite,isNaN,' +\n 'parseFloat,parseInt,decodeURI,decodeURIComponent,encodeURI,encodeURIComponent,' +\n 'Math,Number,Date,Array,Object,Boolean,String,RegExp,Map,Set,JSON,Intl,' +\n 'require' // for Webpack/Browserify\n );\n\n var warnNonPresent = function (target, key) {\n warn(\n \"Property or method \\\"\" + key + \"\\\" is not defined on the instance but \" +\n 'referenced during render. Make sure that this property is reactive, ' +\n 'either in the data option, or for class-based components, by ' +\n 'initializing the property. ' +\n 'See: https://vuejs.org/v2/guide/reactivity.html#Declaring-Reactive-Properties.',\n target\n );\n };\n\n var warnReservedPrefix = function (target, key) {\n warn(\n \"Property \\\"\" + key + \"\\\" must be accessed with \\\"$data.\" + key + \"\\\" because \" +\n 'properties starting with \"$\" or \"_\" are not proxied in the Vue instance to ' +\n 'prevent conflicts with Vue internals. ' +\n 'See: https://vuejs.org/v2/api/#data',\n target\n );\n };\n\n var hasProxy =\n typeof Proxy !== 'undefined' && isNative(Proxy);\n\n if (hasProxy) {\n var isBuiltInModifier = makeMap('stop,prevent,self,ctrl,shift,alt,meta,exact');\n config.keyCodes = new Proxy(config.keyCodes, {\n set: function set (target, key, value) {\n if (isBuiltInModifier(key)) {\n warn((\"Avoid overwriting built-in modifier in config.keyCodes: .\" + key));\n return false\n } else {\n target[key] = value;\n return true\n }\n }\n });\n }\n\n var hasHandler = {\n has: function has (target, key) {\n var has = key in target;\n var isAllowed = allowedGlobals(key) ||\n (typeof key === 'string' && key.charAt(0) === '_' && !(key in target.$data));\n if (!has && !isAllowed) {\n if (key in target.$data) { warnReservedPrefix(target, key); }\n else { warnNonPresent(target, key); }\n }\n return has || !isAllowed\n }\n };\n\n var getHandler = {\n get: function get (target, key) {\n if (typeof key === 'string' && !(key in target)) {\n if (key in target.$data) { warnReservedPrefix(target, key); }\n else { warnNonPresent(target, key); }\n }\n return target[key]\n }\n };\n\n initProxy = function initProxy (vm) {\n if (hasProxy) {\n // determine which proxy handler to use\n var options = vm.$options;\n var handlers = options.render && options.render._withStripped\n ? getHandler\n : hasHandler;\n vm._renderProxy = new Proxy(vm, handlers);\n } else {\n vm._renderProxy = vm;\n }\n };\n}\n\n/* */\n\nvar seenObjects = new _Set();\n\n/**\n * Recursively traverse an object to evoke all converted\n * getters, so that every nested property inside the object\n * is collected as a \"deep\" dependency.\n */\nfunction traverse (val) {\n _traverse(val, seenObjects);\n seenObjects.clear();\n}\n\nfunction _traverse (val, seen) {\n var i, keys;\n var isA = Array.isArray(val);\n if ((!isA && !isObject(val)) || Object.isFrozen(val) || val instanceof VNode) {\n return\n }\n if (val.__ob__) {\n var depId = val.__ob__.dep.id;\n if (seen.has(depId)) {\n return\n }\n seen.add(depId);\n }\n if (isA) {\n i = val.length;\n while (i--) { _traverse(val[i], seen); }\n } else {\n keys = Object.keys(val);\n i = keys.length;\n while (i--) { _traverse(val[keys[i]], seen); }\n }\n}\n\nvar mark;\nvar measure;\n\nif (process.env.NODE_ENV !== 'production') {\n var perf = inBrowser && window.performance;\n /* istanbul ignore if */\n if (\n perf &&\n perf.mark &&\n perf.measure &&\n perf.clearMarks &&\n perf.clearMeasures\n ) {\n mark = function (tag) { return perf.mark(tag); };\n measure = function (name, startTag, endTag) {\n perf.measure(name, startTag, endTag);\n perf.clearMarks(startTag);\n perf.clearMarks(endTag);\n // perf.clearMeasures(name)\n };\n }\n}\n\n/* */\n\nvar normalizeEvent = cached(function (name) {\n var passive = name.charAt(0) === '&';\n name = passive ? name.slice(1) : name;\n var once$$1 = name.charAt(0) === '~'; // Prefixed last, checked first\n name = once$$1 ? name.slice(1) : name;\n var capture = name.charAt(0) === '!';\n name = capture ? name.slice(1) : name;\n return {\n name: name,\n once: once$$1,\n capture: capture,\n passive: passive\n }\n});\n\nfunction createFnInvoker (fns, vm) {\n function invoker () {\n var arguments$1 = arguments;\n\n var fns = invoker.fns;\n if (Array.isArray(fns)) {\n var cloned = fns.slice();\n for (var i = 0; i < cloned.length; i++) {\n invokeWithErrorHandling(cloned[i], null, arguments$1, vm, \"v-on handler\");\n }\n } else {\n // return handler return value for single handlers\n return invokeWithErrorHandling(fns, null, arguments, vm, \"v-on handler\")\n }\n }\n invoker.fns = fns;\n return invoker\n}\n\nfunction updateListeners (\n on,\n oldOn,\n add,\n remove$$1,\n createOnceHandler,\n vm\n) {\n var name, def$$1, cur, old, event;\n for (name in on) {\n def$$1 = cur = on[name];\n old = oldOn[name];\n event = normalizeEvent(name);\n if (isUndef(cur)) {\n process.env.NODE_ENV !== 'production' && warn(\n \"Invalid handler for event \\\"\" + (event.name) + \"\\\": got \" + String(cur),\n vm\n );\n } else if (isUndef(old)) {\n if (isUndef(cur.fns)) {\n cur = on[name] = createFnInvoker(cur, vm);\n }\n if (isTrue(event.once)) {\n cur = on[name] = createOnceHandler(event.name, cur, event.capture);\n }\n add(event.name, cur, event.capture, event.passive, event.params);\n } else if (cur !== old) {\n old.fns = cur;\n on[name] = old;\n }\n }\n for (name in oldOn) {\n if (isUndef(on[name])) {\n event = normalizeEvent(name);\n remove$$1(event.name, oldOn[name], event.capture);\n }\n }\n}\n\n/* */\n\nfunction mergeVNodeHook (def, hookKey, hook) {\n if (def instanceof VNode) {\n def = def.data.hook || (def.data.hook = {});\n }\n var invoker;\n var oldHook = def[hookKey];\n\n function wrappedHook () {\n hook.apply(this, arguments);\n // important: remove merged hook to ensure it's called only once\n // and prevent memory leak\n remove(invoker.fns, wrappedHook);\n }\n\n if (isUndef(oldHook)) {\n // no existing hook\n invoker = createFnInvoker([wrappedHook]);\n } else {\n /* istanbul ignore if */\n if (isDef(oldHook.fns) && isTrue(oldHook.merged)) {\n // already a merged invoker\n invoker = oldHook;\n invoker.fns.push(wrappedHook);\n } else {\n // existing plain hook\n invoker = createFnInvoker([oldHook, wrappedHook]);\n }\n }\n\n invoker.merged = true;\n def[hookKey] = invoker;\n}\n\n/* */\n\nfunction extractPropsFromVNodeData (\n data,\n Ctor,\n tag\n) {\n // we are only extracting raw values here.\n // validation and default values are handled in the child\n // component itself.\n var propOptions = Ctor.options.props;\n if (isUndef(propOptions)) {\n return\n }\n var res = {};\n var attrs = data.attrs;\n var props = data.props;\n if (isDef(attrs) || isDef(props)) {\n for (var key in propOptions) {\n var altKey = hyphenate(key);\n if (process.env.NODE_ENV !== 'production') {\n var keyInLowerCase = key.toLowerCase();\n if (\n key !== keyInLowerCase &&\n attrs && hasOwn(attrs, keyInLowerCase)\n ) {\n tip(\n \"Prop \\\"\" + keyInLowerCase + \"\\\" is passed to component \" +\n (formatComponentName(tag || Ctor)) + \", but the declared prop name is\" +\n \" \\\"\" + key + \"\\\". \" +\n \"Note that HTML attributes are case-insensitive and camelCased \" +\n \"props need to use their kebab-case equivalents when using in-DOM \" +\n \"templates. You should probably use \\\"\" + altKey + \"\\\" instead of \\\"\" + key + \"\\\".\"\n );\n }\n }\n checkProp(res, props, key, altKey, true) ||\n checkProp(res, attrs, key, altKey, false);\n }\n }\n return res\n}\n\nfunction checkProp (\n res,\n hash,\n key,\n altKey,\n preserve\n) {\n if (isDef(hash)) {\n if (hasOwn(hash, key)) {\n res[key] = hash[key];\n if (!preserve) {\n delete hash[key];\n }\n return true\n } else if (hasOwn(hash, altKey)) {\n res[key] = hash[altKey];\n if (!preserve) {\n delete hash[altKey];\n }\n return true\n }\n }\n return false\n}\n\n/* */\n\n// The template compiler attempts to minimize the need for normalization by\n// statically analyzing the template at compile time.\n//\n// For plain HTML markup, normalization can be completely skipped because the\n// generated render function is guaranteed to return Array<VNode>. There are\n// two cases where extra normalization is needed:\n\n// 1. When the children contains components - because a functional component\n// may return an Array instead of a single root. In this case, just a simple\n// normalization is needed - if any child is an Array, we flatten the whole\n// thing with Array.prototype.concat. It is guaranteed to be only 1-level deep\n// because functional components already normalize their own children.\nfunction simpleNormalizeChildren (children) {\n for (var i = 0; i < children.length; i++) {\n if (Array.isArray(children[i])) {\n return Array.prototype.concat.apply([], children)\n }\n }\n return children\n}\n\n// 2. When the children contains constructs that always generated nested Arrays,\n// e.g. <template>, <slot>, v-for, or when the children is provided by user\n// with hand-written render functions / JSX. In such cases a full normalization\n// is needed to cater to all possible types of children values.\nfunction normalizeChildren (children) {\n return isPrimitive(children)\n ? [createTextVNode(children)]\n : Array.isArray(children)\n ? normalizeArrayChildren(children)\n : undefined\n}\n\nfunction isTextNode (node) {\n return isDef(node) && isDef(node.text) && isFalse(node.isComment)\n}\n\nfunction normalizeArrayChildren (children, nestedIndex) {\n var res = [];\n var i, c, lastIndex, last;\n for (i = 0; i < children.length; i++) {\n c = children[i];\n if (isUndef(c) || typeof c === 'boolean') { continue }\n lastIndex = res.length - 1;\n last = res[lastIndex];\n // nested\n if (Array.isArray(c)) {\n if (c.length > 0) {\n c = normalizeArrayChildren(c, ((nestedIndex || '') + \"_\" + i));\n // merge adjacent text nodes\n if (isTextNode(c[0]) && isTextNode(last)) {\n res[lastIndex] = createTextVNode(last.text + (c[0]).text);\n c.shift();\n }\n res.push.apply(res, c);\n }\n } else if (isPrimitive(c)) {\n if (isTextNode(last)) {\n // merge adjacent text nodes\n // this is necessary for SSR hydration because text nodes are\n // essentially merged when rendered to HTML strings\n res[lastIndex] = createTextVNode(last.text + c);\n } else if (c !== '') {\n // convert primitive to vnode\n res.push(createTextVNode(c));\n }\n } else {\n if (isTextNode(c) && isTextNode(last)) {\n // merge adjacent text nodes\n res[lastIndex] = createTextVNode(last.text + c.text);\n } else {\n // default key for nested array children (likely generated by v-for)\n if (isTrue(children._isVList) &&\n isDef(c.tag) &&\n isUndef(c.key) &&\n isDef(nestedIndex)) {\n c.key = \"__vlist\" + nestedIndex + \"_\" + i + \"__\";\n }\n res.push(c);\n }\n }\n }\n return res\n}\n\n/* */\n\nfunction initProvide (vm) {\n var provide = vm.$options.provide;\n if (provide) {\n vm._provided = typeof provide === 'function'\n ? provide.call(vm)\n : provide;\n }\n}\n\nfunction initInjections (vm) {\n var result = resolveInject(vm.$options.inject, vm);\n if (result) {\n toggleObserving(false);\n Object.keys(result).forEach(function (key) {\n /* istanbul ignore else */\n if (process.env.NODE_ENV !== 'production') {\n defineReactive$$1(vm, key, result[key], function () {\n warn(\n \"Avoid mutating an injected value directly since the changes will be \" +\n \"overwritten whenever the provided component re-renders. \" +\n \"injection being mutated: \\\"\" + key + \"\\\"\",\n vm\n );\n });\n } else {\n defineReactive$$1(vm, key, result[key]);\n }\n });\n toggleObserving(true);\n }\n}\n\nfunction resolveInject (inject, vm) {\n if (inject) {\n // inject is :any because flow is not smart enough to figure out cached\n var result = Object.create(null);\n var keys = hasSymbol\n ? Reflect.ownKeys(inject)\n : Object.keys(inject);\n\n for (var i = 0; i < keys.length; i++) {\n var key = keys[i];\n // #6574 in case the inject object is observed...\n if (key === '__ob__') { continue }\n var provideKey = inject[key].from;\n var source = vm;\n while (source) {\n if (source._provided && hasOwn(source._provided, provideKey)) {\n result[key] = source._provided[provideKey];\n break\n }\n source = source.$parent;\n }\n if (!source) {\n if ('default' in inject[key]) {\n var provideDefault = inject[key].default;\n result[key] = typeof provideDefault === 'function'\n ? provideDefault.call(vm)\n : provideDefault;\n } else if (process.env.NODE_ENV !== 'production') {\n warn((\"Injection \\\"\" + key + \"\\\" not found\"), vm);\n }\n }\n }\n return result\n }\n}\n\n/* */\n\n\n\n/**\n * Runtime helper for resolving raw children VNodes into a slot object.\n */\nfunction resolveSlots (\n children,\n context\n) {\n if (!children || !children.length) {\n return {}\n }\n var slots = {};\n for (var i = 0, l = children.length; i < l; i++) {\n var child = children[i];\n var data = child.data;\n // remove slot attribute if the node is resolved as a Vue slot node\n if (data && data.attrs && data.attrs.slot) {\n delete data.attrs.slot;\n }\n // named slots should only be respected if the vnode was rendered in the\n // same context.\n if ((child.context === context || child.fnContext === context) &&\n data && data.slot != null\n ) {\n var name = data.slot;\n var slot = (slots[name] || (slots[name] = []));\n if (child.tag === 'template') {\n slot.push.apply(slot, child.children || []);\n } else {\n slot.push(child);\n }\n } else {\n (slots.default || (slots.default = [])).push(child);\n }\n }\n // ignore slots that contains only whitespace\n for (var name$1 in slots) {\n if (slots[name$1].every(isWhitespace)) {\n delete slots[name$1];\n }\n }\n return slots\n}\n\nfunction isWhitespace (node) {\n return (node.isComment && !node.asyncFactory) || node.text === ' '\n}\n\n/* */\n\nfunction normalizeScopedSlots (\n slots,\n normalSlots,\n prevSlots\n) {\n var res;\n var hasNormalSlots = Object.keys(normalSlots).length > 0;\n var isStable = slots ? !!slots.$stable : !hasNormalSlots;\n var key = slots && slots.$key;\n if (!slots) {\n res = {};\n } else if (slots._normalized) {\n // fast path 1: child component re-render only, parent did not change\n return slots._normalized\n } else if (\n isStable &&\n prevSlots &&\n prevSlots !== emptyObject &&\n key === prevSlots.$key &&\n !hasNormalSlots &&\n !prevSlots.$hasNormal\n ) {\n // fast path 2: stable scoped slots w/ no normal slots to proxy,\n // only need to normalize once\n return prevSlots\n } else {\n res = {};\n for (var key$1 in slots) {\n if (slots[key$1] && key$1[0] !== '$') {\n res[key$1] = normalizeScopedSlot(normalSlots, key$1, slots[key$1]);\n }\n }\n }\n // expose normal slots on scopedSlots\n for (var key$2 in normalSlots) {\n if (!(key$2 in res)) {\n res[key$2] = proxyNormalSlot(normalSlots, key$2);\n }\n }\n // avoriaz seems to mock a non-extensible $scopedSlots object\n // and when that is passed down this would cause an error\n if (slots && Object.isExtensible(slots)) {\n (slots)._normalized = res;\n }\n def(res, '$stable', isStable);\n def(res, '$key', key);\n def(res, '$hasNormal', hasNormalSlots);\n return res\n}\n\nfunction normalizeScopedSlot(normalSlots, key, fn) {\n var normalized = function () {\n var res = arguments.length ? fn.apply(null, arguments) : fn({});\n res = res && typeof res === 'object' && !Array.isArray(res)\n ? [res] // single vnode\n : normalizeChildren(res);\n return res && (\n res.length === 0 ||\n (res.length === 1 && res[0].isComment) // #9658\n ) ? undefined\n : res\n };\n // this is a slot using the new v-slot syntax without scope. although it is\n // compiled as a scoped slot, render fn users would expect it to be present\n // on this.$slots because the usage is semantically a normal slot.\n if (fn.proxy) {\n Object.defineProperty(normalSlots, key, {\n get: normalized,\n enumerable: true,\n configurable: true\n });\n }\n return normalized\n}\n\nfunction proxyNormalSlot(slots, key) {\n return function () { return slots[key]; }\n}\n\n/* */\n\n/**\n * Runtime helper for rendering v-for lists.\n */\nfunction renderList (\n val,\n render\n) {\n var ret, i, l, keys, key;\n if (Array.isArray(val) || typeof val === 'string') {\n ret = new Array(val.length);\n for (i = 0, l = val.length; i < l; i++) {\n ret[i] = render(val[i], i);\n }\n } else if (typeof val === 'number') {\n ret = new Array(val);\n for (i = 0; i < val; i++) {\n ret[i] = render(i + 1, i);\n }\n } else if (isObject(val)) {\n if (hasSymbol && val[Symbol.iterator]) {\n ret = [];\n var iterator = val[Symbol.iterator]();\n var result = iterator.next();\n while (!result.done) {\n ret.push(render(result.value, ret.length));\n result = iterator.next();\n }\n } else {\n keys = Object.keys(val);\n ret = new Array(keys.length);\n for (i = 0, l = keys.length; i < l; i++) {\n key = keys[i];\n ret[i] = render(val[key], key, i);\n }\n }\n }\n if (!isDef(ret)) {\n ret = [];\n }\n (ret)._isVList = true;\n return ret\n}\n\n/* */\n\n/**\n * Runtime helper for rendering <slot>\n */\nfunction renderSlot (\n name,\n fallback,\n props,\n bindObject\n) {\n var scopedSlotFn = this.$scopedSlots[name];\n var nodes;\n if (scopedSlotFn) { // scoped slot\n props = props || {};\n if (bindObject) {\n if (process.env.NODE_ENV !== 'production' && !isObject(bindObject)) {\n warn(\n 'slot v-bind without argument expects an Object',\n this\n );\n }\n props = extend(extend({}, bindObject), props);\n }\n nodes = scopedSlotFn(props) || fallback;\n } else {\n nodes = this.$slots[name] || fallback;\n }\n\n var target = props && props.slot;\n if (target) {\n return this.$createElement('template', { slot: target }, nodes)\n } else {\n return nodes\n }\n}\n\n/* */\n\n/**\n * Runtime helper for resolving filters\n */\nfunction resolveFilter (id) {\n return resolveAsset(this.$options, 'filters', id, true) || identity\n}\n\n/* */\n\nfunction isKeyNotMatch (expect, actual) {\n if (Array.isArray(expect)) {\n return expect.indexOf(actual) === -1\n } else {\n return expect !== actual\n }\n}\n\n/**\n * Runtime helper for checking keyCodes from config.\n * exposed as Vue.prototype._k\n * passing in eventKeyName as last argument separately for backwards compat\n */\nfunction checkKeyCodes (\n eventKeyCode,\n key,\n builtInKeyCode,\n eventKeyName,\n builtInKeyName\n) {\n var mappedKeyCode = config.keyCodes[key] || builtInKeyCode;\n if (builtInKeyName && eventKeyName && !config.keyCodes[key]) {\n return isKeyNotMatch(builtInKeyName, eventKeyName)\n } else if (mappedKeyCode) {\n return isKeyNotMatch(mappedKeyCode, eventKeyCode)\n } else if (eventKeyName) {\n return hyphenate(eventKeyName) !== key\n }\n}\n\n/* */\n\n/**\n * Runtime helper for merging v-bind=\"object\" into a VNode's data.\n */\nfunction bindObjectProps (\n data,\n tag,\n value,\n asProp,\n isSync\n) {\n if (value) {\n if (!isObject(value)) {\n process.env.NODE_ENV !== 'production' && warn(\n 'v-bind without argument expects an Object or Array value',\n this\n );\n } else {\n if (Array.isArray(value)) {\n value = toObject(value);\n }\n var hash;\n var loop = function ( key ) {\n if (\n key === 'class' ||\n key === 'style' ||\n isReservedAttribute(key)\n ) {\n hash = data;\n } else {\n var type = data.attrs && data.attrs.type;\n hash = asProp || config.mustUseProp(tag, type, key)\n ? data.domProps || (data.domProps = {})\n : data.attrs || (data.attrs = {});\n }\n var camelizedKey = camelize(key);\n var hyphenatedKey = hyphenate(key);\n if (!(camelizedKey in hash) && !(hyphenatedKey in hash)) {\n hash[key] = value[key];\n\n if (isSync) {\n var on = data.on || (data.on = {});\n on[(\"update:\" + key)] = function ($event) {\n value[key] = $event;\n };\n }\n }\n };\n\n for (var key in value) loop( key );\n }\n }\n return data\n}\n\n/* */\n\n/**\n * Runtime helper for rendering static trees.\n */\nfunction renderStatic (\n index,\n isInFor\n) {\n var cached = this._staticTrees || (this._staticTrees = []);\n var tree = cached[index];\n // if has already-rendered static tree and not inside v-for,\n // we can reuse the same tree.\n if (tree && !isInFor) {\n return tree\n }\n // otherwise, render a fresh tree.\n tree = cached[index] = this.$options.staticRenderFns[index].call(\n this._renderProxy,\n null,\n this // for render fns generated for functional component templates\n );\n markStatic(tree, (\"__static__\" + index), false);\n return tree\n}\n\n/**\n * Runtime helper for v-once.\n * Effectively it means marking the node as static with a unique key.\n */\nfunction markOnce (\n tree,\n index,\n key\n) {\n markStatic(tree, (\"__once__\" + index + (key ? (\"_\" + key) : \"\")), true);\n return tree\n}\n\nfunction markStatic (\n tree,\n key,\n isOnce\n) {\n if (Array.isArray(tree)) {\n for (var i = 0; i < tree.length; i++) {\n if (tree[i] && typeof tree[i] !== 'string') {\n markStaticNode(tree[i], (key + \"_\" + i), isOnce);\n }\n }\n } else {\n markStaticNode(tree, key, isOnce);\n }\n}\n\nfunction markStaticNode (node, key, isOnce) {\n node.isStatic = true;\n node.key = key;\n node.isOnce = isOnce;\n}\n\n/* */\n\nfunction bindObjectListeners (data, value) {\n if (value) {\n if (!isPlainObject(value)) {\n process.env.NODE_ENV !== 'production' && warn(\n 'v-on without argument expects an Object value',\n this\n );\n } else {\n var on = data.on = data.on ? extend({}, data.on) : {};\n for (var key in value) {\n var existing = on[key];\n var ours = value[key];\n on[key] = existing ? [].concat(existing, ours) : ours;\n }\n }\n }\n return data\n}\n\n/* */\n\nfunction resolveScopedSlots (\n fns, // see flow/vnode\n res,\n // the following are added in 2.6\n hasDynamicKeys,\n contentHashKey\n) {\n res = res || { $stable: !hasDynamicKeys };\n for (var i = 0; i < fns.length; i++) {\n var slot = fns[i];\n if (Array.isArray(slot)) {\n resolveScopedSlots(slot, res, hasDynamicKeys);\n } else if (slot) {\n // marker for reverse proxying v-slot without scope on this.$slots\n if (slot.proxy) {\n slot.fn.proxy = true;\n }\n res[slot.key] = slot.fn;\n }\n }\n if (contentHashKey) {\n (res).$key = contentHashKey;\n }\n return res\n}\n\n/* */\n\nfunction bindDynamicKeys (baseObj, values) {\n for (var i = 0; i < values.length; i += 2) {\n var key = values[i];\n if (typeof key === 'string' && key) {\n baseObj[values[i]] = values[i + 1];\n } else if (process.env.NODE_ENV !== 'production' && key !== '' && key !== null) {\n // null is a special value for explicitly removing a binding\n warn(\n (\"Invalid value for dynamic directive argument (expected string or null): \" + key),\n this\n );\n }\n }\n return baseObj\n}\n\n// helper to dynamically append modifier runtime markers to event names.\n// ensure only append when value is already string, otherwise it will be cast\n// to string and cause the type check to miss.\nfunction prependModifier (value, symbol) {\n return typeof value === 'string' ? symbol + value : value\n}\n\n/* */\n\nfunction installRenderHelpers (target) {\n target._o = markOnce;\n target._n = toNumber;\n target._s = toString;\n target._l = renderList;\n target._t = renderSlot;\n target._q = looseEqual;\n target._i = looseIndexOf;\n target._m = renderStatic;\n target._f = resolveFilter;\n target._k = checkKeyCodes;\n target._b = bindObjectProps;\n target._v = createTextVNode;\n target._e = createEmptyVNode;\n target._u = resolveScopedSlots;\n target._g = bindObjectListeners;\n target._d = bindDynamicKeys;\n target._p = prependModifier;\n}\n\n/* */\n\nfunction FunctionalRenderContext (\n data,\n props,\n children,\n parent,\n Ctor\n) {\n var this$1 = this;\n\n var options = Ctor.options;\n // ensure the createElement function in functional components\n // gets a unique context - this is necessary for correct named slot check\n var contextVm;\n if (hasOwn(parent, '_uid')) {\n contextVm = Object.create(parent);\n // $flow-disable-line\n contextVm._original = parent;\n } else {\n // the context vm passed in is a functional context as well.\n // in this case we want to make sure we are able to get a hold to the\n // real context instance.\n contextVm = parent;\n // $flow-disable-line\n parent = parent._original;\n }\n var isCompiled = isTrue(options._compiled);\n var needNormalization = !isCompiled;\n\n this.data = data;\n this.props = props;\n this.children = children;\n this.parent = parent;\n this.listeners = data.on || emptyObject;\n this.injections = resolveInject(options.inject, parent);\n this.slots = function () {\n if (!this$1.$slots) {\n normalizeScopedSlots(\n data.scopedSlots,\n this$1.$slots = resolveSlots(children, parent)\n );\n }\n return this$1.$slots\n };\n\n Object.defineProperty(this, 'scopedSlots', ({\n enumerable: true,\n get: function get () {\n return normalizeScopedSlots(data.scopedSlots, this.slots())\n }\n }));\n\n // support for compiled functional template\n if (isCompiled) {\n // exposing $options for renderStatic()\n this.$options = options;\n // pre-resolve slots for renderSlot()\n this.$slots = this.slots();\n this.$scopedSlots = normalizeScopedSlots(data.scopedSlots, this.$slots);\n }\n\n if (options._scopeId) {\n this._c = function (a, b, c, d) {\n var vnode = createElement(contextVm, a, b, c, d, needNormalization);\n if (vnode && !Array.isArray(vnode)) {\n vnode.fnScopeId = options._scopeId;\n vnode.fnContext = parent;\n }\n return vnode\n };\n } else {\n this._c = function (a, b, c, d) { return createElement(contextVm, a, b, c, d, needNormalization); };\n }\n}\n\ninstallRenderHelpers(FunctionalRenderContext.prototype);\n\nfunction createFunctionalComponent (\n Ctor,\n propsData,\n data,\n contextVm,\n children\n) {\n var options = Ctor.options;\n var props = {};\n var propOptions = options.props;\n if (isDef(propOptions)) {\n for (var key in propOptions) {\n props[key] = validateProp(key, propOptions, propsData || emptyObject);\n }\n } else {\n if (isDef(data.attrs)) { mergeProps(props, data.attrs); }\n if (isDef(data.props)) { mergeProps(props, data.props); }\n }\n\n var renderContext = new FunctionalRenderContext(\n data,\n props,\n children,\n contextVm,\n Ctor\n );\n\n var vnode = options.render.call(null, renderContext._c, renderContext);\n\n if (vnode instanceof VNode) {\n return cloneAndMarkFunctionalResult(vnode, data, renderContext.parent, options, renderContext)\n } else if (Array.isArray(vnode)) {\n var vnodes = normalizeChildren(vnode) || [];\n var res = new Array(vnodes.length);\n for (var i = 0; i < vnodes.length; i++) {\n res[i] = cloneAndMarkFunctionalResult(vnodes[i], data, renderContext.parent, options, renderContext);\n }\n return res\n }\n}\n\nfunction cloneAndMarkFunctionalResult (vnode, data, contextVm, options, renderContext) {\n // #7817 clone node before setting fnContext, otherwise if the node is reused\n // (e.g. it was from a cached normal slot) the fnContext causes named slots\n // that should not be matched to match.\n var clone = cloneVNode(vnode);\n clone.fnContext = contextVm;\n clone.fnOptions = options;\n if (process.env.NODE_ENV !== 'production') {\n (clone.devtoolsMeta = clone.devtoolsMeta || {}).renderContext = renderContext;\n }\n if (data.slot) {\n (clone.data || (clone.data = {})).slot = data.slot;\n }\n return clone\n}\n\nfunction mergeProps (to, from) {\n for (var key in from) {\n to[camelize(key)] = from[key];\n }\n}\n\n/* */\n\n/* */\n\n/* */\n\n/* */\n\n// inline hooks to be invoked on component VNodes during patch\nvar componentVNodeHooks = {\n init: function init (vnode, hydrating) {\n if (\n vnode.componentInstance &&\n !vnode.componentInstance._isDestroyed &&\n vnode.data.keepAlive\n ) {\n // kept-alive components, treat as a patch\n var mountedNode = vnode; // work around flow\n componentVNodeHooks.prepatch(mountedNode, mountedNode);\n } else {\n var child = vnode.componentInstance = createComponentInstanceForVnode(\n vnode,\n activeInstance\n );\n child.$mount(hydrating ? vnode.elm : undefined, hydrating);\n }\n },\n\n prepatch: function prepatch (oldVnode, vnode) {\n var options = vnode.componentOptions;\n var child = vnode.componentInstance = oldVnode.componentInstance;\n updateChildComponent(\n child,\n options.propsData, // updated props\n options.listeners, // updated listeners\n vnode, // new parent vnode\n options.children // new children\n );\n },\n\n insert: function insert (vnode) {\n var context = vnode.context;\n var componentInstance = vnode.componentInstance;\n if (!componentInstance._isMounted) {\n componentInstance._isMounted = true;\n callHook(componentInstance, 'mounted');\n }\n if (vnode.data.keepAlive) {\n if (context._isMounted) {\n // vue-router#1212\n // During updates, a kept-alive component's child components may\n // change, so directly walking the tree here may call activated hooks\n // on incorrect children. Instead we push them into a queue which will\n // be processed after the whole patch process ended.\n queueActivatedComponent(componentInstance);\n } else {\n activateChildComponent(componentInstance, true /* direct */);\n }\n }\n },\n\n destroy: function destroy (vnode) {\n var componentInstance = vnode.componentInstance;\n if (!componentInstance._isDestroyed) {\n if (!vnode.data.keepAlive) {\n componentInstance.$destroy();\n } else {\n deactivateChildComponent(componentInstance, true /* direct */);\n }\n }\n }\n};\n\nvar hooksToMerge = Object.keys(componentVNodeHooks);\n\nfunction createComponent (\n Ctor,\n data,\n context,\n children,\n tag\n) {\n if (isUndef(Ctor)) {\n return\n }\n\n var baseCtor = context.$options._base;\n\n // plain options object: turn it into a constructor\n if (isObject(Ctor)) {\n Ctor = baseCtor.extend(Ctor);\n }\n\n // if at this stage it's not a constructor or an async component factory,\n // reject.\n if (typeof Ctor !== 'function') {\n if (process.env.NODE_ENV !== 'production') {\n warn((\"Invalid Component definition: \" + (String(Ctor))), context);\n }\n return\n }\n\n // async component\n var asyncFactory;\n if (isUndef(Ctor.cid)) {\n asyncFactory = Ctor;\n Ctor = resolveAsyncComponent(asyncFactory, baseCtor);\n if (Ctor === undefined) {\n // return a placeholder node for async component, which is rendered\n // as a comment node but preserves all the raw information for the node.\n // the information will be used for async server-rendering and hydration.\n return createAsyncPlaceholder(\n asyncFactory,\n data,\n context,\n children,\n tag\n )\n }\n }\n\n data = data || {};\n\n // resolve constructor options in case global mixins are applied after\n // component constructor creation\n resolveConstructorOptions(Ctor);\n\n // transform component v-model data into props & events\n if (isDef(data.model)) {\n transformModel(Ctor.options, data);\n }\n\n // extract props\n var propsData = extractPropsFromVNodeData(data, Ctor, tag);\n\n // functional component\n if (isTrue(Ctor.options.functional)) {\n return createFunctionalComponent(Ctor, propsData, data, context, children)\n }\n\n // extract listeners, since these needs to be treated as\n // child component listeners instead of DOM listeners\n var listeners = data.on;\n // replace with listeners with .native modifier\n // so it gets processed during parent component patch.\n data.on = data.nativeOn;\n\n if (isTrue(Ctor.options.abstract)) {\n // abstract components do not keep anything\n // other than props & listeners & slot\n\n // work around flow\n var slot = data.slot;\n data = {};\n if (slot) {\n data.slot = slot;\n }\n }\n\n // install component management hooks onto the placeholder node\n installComponentHooks(data);\n\n // return a placeholder vnode\n var name = Ctor.options.name || tag;\n var vnode = new VNode(\n (\"vue-component-\" + (Ctor.cid) + (name ? (\"-\" + name) : '')),\n data, undefined, undefined, undefined, context,\n { Ctor: Ctor, propsData: propsData, listeners: listeners, tag: tag, children: children },\n asyncFactory\n );\n\n return vnode\n}\n\nfunction createComponentInstanceForVnode (\n vnode, // we know it's MountedComponentVNode but flow doesn't\n parent // activeInstance in lifecycle state\n) {\n var options = {\n _isComponent: true,\n _parentVnode: vnode,\n parent: parent\n };\n // check inline-template render functions\n var inlineTemplate = vnode.data.inlineTemplate;\n if (isDef(inlineTemplate)) {\n options.render = inlineTemplate.render;\n options.staticRenderFns = inlineTemplate.staticRenderFns;\n }\n return new vnode.componentOptions.Ctor(options)\n}\n\nfunction installComponentHooks (data) {\n var hooks = data.hook || (data.hook = {});\n for (var i = 0; i < hooksToMerge.length; i++) {\n var key = hooksToMerge[i];\n var existing = hooks[key];\n var toMerge = componentVNodeHooks[key];\n if (existing !== toMerge && !(existing && existing._merged)) {\n hooks[key] = existing ? mergeHook$1(toMerge, existing) : toMerge;\n }\n }\n}\n\nfunction mergeHook$1 (f1, f2) {\n var merged = function (a, b) {\n // flow complains about extra args which is why we use any\n f1(a, b);\n f2(a, b);\n };\n merged._merged = true;\n return merged\n}\n\n// transform component v-model info (value and callback) into\n// prop and event handler respectively.\nfunction transformModel (options, data) {\n var prop = (options.model && options.model.prop) || 'value';\n var event = (options.model && options.model.event) || 'input'\n ;(data.attrs || (data.attrs = {}))[prop] = data.model.value;\n var on = data.on || (data.on = {});\n var existing = on[event];\n var callback = data.model.callback;\n if (isDef(existing)) {\n if (\n Array.isArray(existing)\n ? existing.indexOf(callback) === -1\n : existing !== callback\n ) {\n on[event] = [callback].concat(existing);\n }\n } else {\n on[event] = callback;\n }\n}\n\n/* */\n\nvar SIMPLE_NORMALIZE = 1;\nvar ALWAYS_NORMALIZE = 2;\n\n// wrapper function for providing a more flexible interface\n// without getting yelled at by flow\nfunction createElement (\n context,\n tag,\n data,\n children,\n normalizationType,\n alwaysNormalize\n) {\n if (Array.isArray(data) || isPrimitive(data)) {\n normalizationType = children;\n children = data;\n data = undefined;\n }\n if (isTrue(alwaysNormalize)) {\n normalizationType = ALWAYS_NORMALIZE;\n }\n return _createElement(context, tag, data, children, normalizationType)\n}\n\nfunction _createElement (\n context,\n tag,\n data,\n children,\n normalizationType\n) {\n if (isDef(data) && isDef((data).__ob__)) {\n process.env.NODE_ENV !== 'production' && warn(\n \"Avoid using observed data object as vnode data: \" + (JSON.stringify(data)) + \"\\n\" +\n 'Always create fresh vnode data objects in each render!',\n context\n );\n return createEmptyVNode()\n }\n // object syntax in v-bind\n if (isDef(data) && isDef(data.is)) {\n tag = data.is;\n }\n if (!tag) {\n // in case of component :is set to falsy value\n return createEmptyVNode()\n }\n // warn against non-primitive key\n if (process.env.NODE_ENV !== 'production' &&\n isDef(data) && isDef(data.key) && !isPrimitive(data.key)\n ) {\n {\n warn(\n 'Avoid using non-primitive value as key, ' +\n 'use string/number value instead.',\n context\n );\n }\n }\n // support single function children as default scoped slot\n if (Array.isArray(children) &&\n typeof children[0] === 'function'\n ) {\n data = data || {};\n data.scopedSlots = { default: children[0] };\n children.length = 0;\n }\n if (normalizationType === ALWAYS_NORMALIZE) {\n children = normalizeChildren(children);\n } else if (normalizationType === SIMPLE_NORMALIZE) {\n children = simpleNormalizeChildren(children);\n }\n var vnode, ns;\n if (typeof tag === 'string') {\n var Ctor;\n ns = (context.$vnode && context.$vnode.ns) || config.getTagNamespace(tag);\n if (config.isReservedTag(tag)) {\n // platform built-in elements\n if (process.env.NODE_ENV !== 'production' && isDef(data) && isDef(data.nativeOn)) {\n warn(\n (\"The .native modifier for v-on is only valid on components but it was used on <\" + tag + \">.\"),\n context\n );\n }\n vnode = new VNode(\n config.parsePlatformTagName(tag), data, children,\n undefined, undefined, context\n );\n } else if ((!data || !data.pre) && isDef(Ctor = resolveAsset(context.$options, 'components', tag))) {\n // component\n vnode = createComponent(Ctor, data, context, children, tag);\n } else {\n // unknown or unlisted namespaced elements\n // check at runtime because it may get assigned a namespace when its\n // parent normalizes children\n vnode = new VNode(\n tag, data, children,\n undefined, undefined, context\n );\n }\n } else {\n // direct component options / constructor\n vnode = createComponent(tag, data, context, children);\n }\n if (Array.isArray(vnode)) {\n return vnode\n } else if (isDef(vnode)) {\n if (isDef(ns)) { applyNS(vnode, ns); }\n if (isDef(data)) { registerDeepBindings(data); }\n return vnode\n } else {\n return createEmptyVNode()\n }\n}\n\nfunction applyNS (vnode, ns, force) {\n vnode.ns = ns;\n if (vnode.tag === 'foreignObject') {\n // use default namespace inside foreignObject\n ns = undefined;\n force = true;\n }\n if (isDef(vnode.children)) {\n for (var i = 0, l = vnode.children.length; i < l; i++) {\n var child = vnode.children[i];\n if (isDef(child.tag) && (\n isUndef(child.ns) || (isTrue(force) && child.tag !== 'svg'))) {\n applyNS(child, ns, force);\n }\n }\n }\n}\n\n// ref #5318\n// necessary to ensure parent re-render when deep bindings like :style and\n// :class are used on slot nodes\nfunction registerDeepBindings (data) {\n if (isObject(data.style)) {\n traverse(data.style);\n }\n if (isObject(data.class)) {\n traverse(data.class);\n }\n}\n\n/* */\n\nfunction initRender (vm) {\n vm._vnode = null; // the root of the child tree\n vm._staticTrees = null; // v-once cached trees\n var options = vm.$options;\n var parentVnode = vm.$vnode = options._parentVnode; // the placeholder node in parent tree\n var renderContext = parentVnode && parentVnode.context;\n vm.$slots = resolveSlots(options._renderChildren, renderContext);\n vm.$scopedSlots = emptyObject;\n // bind the createElement fn to this instance\n // so that we get proper render context inside it.\n // args order: tag, data, children, normalizationType, alwaysNormalize\n // internal version is used by render functions compiled from templates\n vm._c = function (a, b, c, d) { return createElement(vm, a, b, c, d, false); };\n // normalization is always applied for the public version, used in\n // user-written render functions.\n vm.$createElement = function (a, b, c, d) { return createElement(vm, a, b, c, d, true); };\n\n // $attrs & $listeners are exposed for easier HOC creation.\n // they need to be reactive so that HOCs using them are always updated\n var parentData = parentVnode && parentVnode.data;\n\n /* istanbul ignore else */\n if (process.env.NODE_ENV !== 'production') {\n defineReactive$$1(vm, '$attrs', parentData && parentData.attrs || emptyObject, function () {\n !isUpdatingChildComponent && warn(\"$attrs is readonly.\", vm);\n }, true);\n defineReactive$$1(vm, '$listeners', options._parentListeners || emptyObject, function () {\n !isUpdatingChildComponent && warn(\"$listeners is readonly.\", vm);\n }, true);\n } else {\n defineReactive$$1(vm, '$attrs', parentData && parentData.attrs || emptyObject, null, true);\n defineReactive$$1(vm, '$listeners', options._parentListeners || emptyObject, null, true);\n }\n}\n\nvar currentRenderingInstance = null;\n\nfunction renderMixin (Vue) {\n // install runtime convenience helpers\n installRenderHelpers(Vue.prototype);\n\n Vue.prototype.$nextTick = function (fn) {\n return nextTick(fn, this)\n };\n\n Vue.prototype._render = function () {\n var vm = this;\n var ref = vm.$options;\n var render = ref.render;\n var _parentVnode = ref._parentVnode;\n\n if (_parentVnode) {\n vm.$scopedSlots = normalizeScopedSlots(\n _parentVnode.data.scopedSlots,\n vm.$slots,\n vm.$scopedSlots\n );\n }\n\n // set parent vnode. this allows render functions to have access\n // to the data on the placeholder node.\n vm.$vnode = _parentVnode;\n // render self\n var vnode;\n try {\n // There's no need to maintain a stack because all render fns are called\n // separately from one another. Nested component's render fns are called\n // when parent component is patched.\n currentRenderingInstance = vm;\n vnode = render.call(vm._renderProxy, vm.$createElement);\n } catch (e) {\n handleError(e, vm, \"render\");\n // return error render result,\n // or previous vnode to prevent render error causing blank component\n /* istanbul ignore else */\n if (process.env.NODE_ENV !== 'production' && vm.$options.renderError) {\n try {\n vnode = vm.$options.renderError.call(vm._renderProxy, vm.$createElement, e);\n } catch (e) {\n handleError(e, vm, \"renderError\");\n vnode = vm._vnode;\n }\n } else {\n vnode = vm._vnode;\n }\n } finally {\n currentRenderingInstance = null;\n }\n // if the returned array contains only a single node, allow it\n if (Array.isArray(vnode) && vnode.length === 1) {\n vnode = vnode[0];\n }\n // return empty vnode in case the render function errored out\n if (!(vnode instanceof VNode)) {\n if (process.env.NODE_ENV !== 'production' && Array.isArray(vnode)) {\n warn(\n 'Multiple root nodes returned from render function. Render function ' +\n 'should return a single root node.',\n vm\n );\n }\n vnode = createEmptyVNode();\n }\n // set parent\n vnode.parent = _parentVnode;\n return vnode\n };\n}\n\n/* */\n\nfunction ensureCtor (comp, base) {\n if (\n comp.__esModule ||\n (hasSymbol && comp[Symbol.toStringTag] === 'Module')\n ) {\n comp = comp.default;\n }\n return isObject(comp)\n ? base.extend(comp)\n : comp\n}\n\nfunction createAsyncPlaceholder (\n factory,\n data,\n context,\n children,\n tag\n) {\n var node = createEmptyVNode();\n node.asyncFactory = factory;\n node.asyncMeta = { data: data, context: context, children: children, tag: tag };\n return node\n}\n\nfunction resolveAsyncComponent (\n factory,\n baseCtor\n) {\n if (isTrue(factory.error) && isDef(factory.errorComp)) {\n return factory.errorComp\n }\n\n if (isDef(factory.resolved)) {\n return factory.resolved\n }\n\n var owner = currentRenderingInstance;\n if (owner && isDef(factory.owners) && factory.owners.indexOf(owner) === -1) {\n // already pending\n factory.owners.push(owner);\n }\n\n if (isTrue(factory.loading) && isDef(factory.loadingComp)) {\n return factory.loadingComp\n }\n\n if (owner && !isDef(factory.owners)) {\n var owners = factory.owners = [owner];\n var sync = true;\n var timerLoading = null;\n var timerTimeout = null\n\n ;(owner).$on('hook:destroyed', function () { return remove(owners, owner); });\n\n var forceRender = function (renderCompleted) {\n for (var i = 0, l = owners.length; i < l; i++) {\n (owners[i]).$forceUpdate();\n }\n\n if (renderCompleted) {\n owners.length = 0;\n if (timerLoading !== null) {\n clearTimeout(timerLoading);\n timerLoading = null;\n }\n if (timerTimeout !== null) {\n clearTimeout(timerTimeout);\n timerTimeout = null;\n }\n }\n };\n\n var resolve = once(function (res) {\n // cache resolved\n factory.resolved = ensureCtor(res, baseCtor);\n // invoke callbacks only if this is not a synchronous resolve\n // (async resolves are shimmed as synchronous during SSR)\n if (!sync) {\n forceRender(true);\n } else {\n owners.length = 0;\n }\n });\n\n var reject = once(function (reason) {\n process.env.NODE_ENV !== 'production' && warn(\n \"Failed to resolve async component: \" + (String(factory)) +\n (reason ? (\"\\nReason: \" + reason) : '')\n );\n if (isDef(factory.errorComp)) {\n factory.error = true;\n forceRender(true);\n }\n });\n\n var res = factory(resolve, reject);\n\n if (isObject(res)) {\n if (isPromise(res)) {\n // () => Promise\n if (isUndef(factory.resolved)) {\n res.then(resolve, reject);\n }\n } else if (isPromise(res.component)) {\n res.component.then(resolve, reject);\n\n if (isDef(res.error)) {\n factory.errorComp = ensureCtor(res.error, baseCtor);\n }\n\n if (isDef(res.loading)) {\n factory.loadingComp = ensureCtor(res.loading, baseCtor);\n if (res.delay === 0) {\n factory.loading = true;\n } else {\n timerLoading = setTimeout(function () {\n timerLoading = null;\n if (isUndef(factory.resolved) && isUndef(factory.error)) {\n factory.loading = true;\n forceRender(false);\n }\n }, res.delay || 200);\n }\n }\n\n if (isDef(res.timeout)) {\n timerTimeout = setTimeout(function () {\n timerTimeout = null;\n if (isUndef(factory.resolved)) {\n reject(\n process.env.NODE_ENV !== 'production'\n ? (\"timeout (\" + (res.timeout) + \"ms)\")\n : null\n );\n }\n }, res.timeout);\n }\n }\n }\n\n sync = false;\n // return in case resolved synchronously\n return factory.loading\n ? factory.loadingComp\n : factory.resolved\n }\n}\n\n/* */\n\nfunction isAsyncPlaceholder (node) {\n return node.isComment && node.asyncFactory\n}\n\n/* */\n\nfunction getFirstComponentChild (children) {\n if (Array.isArray(children)) {\n for (var i = 0; i < children.length; i++) {\n var c = children[i];\n if (isDef(c) && (isDef(c.componentOptions) || isAsyncPlaceholder(c))) {\n return c\n }\n }\n }\n}\n\n/* */\n\n/* */\n\nfunction initEvents (vm) {\n vm._events = Object.create(null);\n vm._hasHookEvent = false;\n // init parent attached events\n var listeners = vm.$options._parentListeners;\n if (listeners) {\n updateComponentListeners(vm, listeners);\n }\n}\n\nvar target;\n\nfunction add (event, fn) {\n target.$on(event, fn);\n}\n\nfunction remove$1 (event, fn) {\n target.$off(event, fn);\n}\n\nfunction createOnceHandler (event, fn) {\n var _target = target;\n return function onceHandler () {\n var res = fn.apply(null, arguments);\n if (res !== null) {\n _target.$off(event, onceHandler);\n }\n }\n}\n\nfunction updateComponentListeners (\n vm,\n listeners,\n oldListeners\n) {\n target = vm;\n updateListeners(listeners, oldListeners || {}, add, remove$1, createOnceHandler, vm);\n target = undefined;\n}\n\nfunction eventsMixin (Vue) {\n var hookRE = /^hook:/;\n Vue.prototype.$on = function (event, fn) {\n var vm = this;\n if (Array.isArray(event)) {\n for (var i = 0, l = event.length; i < l; i++) {\n vm.$on(event[i], fn);\n }\n } else {\n (vm._events[event] || (vm._events[event] = [])).push(fn);\n // optimize hook:event cost by using a boolean flag marked at registration\n // instead of a hash lookup\n if (hookRE.test(event)) {\n vm._hasHookEvent = true;\n }\n }\n return vm\n };\n\n Vue.prototype.$once = function (event, fn) {\n var vm = this;\n function on () {\n vm.$off(event, on);\n fn.apply(vm, arguments);\n }\n on.fn = fn;\n vm.$on(event, on);\n return vm\n };\n\n Vue.prototype.$off = function (event, fn) {\n var vm = this;\n // all\n if (!arguments.length) {\n vm._events = Object.create(null);\n return vm\n }\n // array of events\n if (Array.isArray(event)) {\n for (var i$1 = 0, l = event.length; i$1 < l; i$1++) {\n vm.$off(event[i$1], fn);\n }\n return vm\n }\n // specific event\n var cbs = vm._events[event];\n if (!cbs) {\n return vm\n }\n if (!fn) {\n vm._events[event] = null;\n return vm\n }\n // specific handler\n var cb;\n var i = cbs.length;\n while (i--) {\n cb = cbs[i];\n if (cb === fn || cb.fn === fn) {\n cbs.splice(i, 1);\n break\n }\n }\n return vm\n };\n\n Vue.prototype.$emit = function (event) {\n var vm = this;\n if (process.env.NODE_ENV !== 'production') {\n var lowerCaseEvent = event.toLowerCase();\n if (lowerCaseEvent !== event && vm._events[lowerCaseEvent]) {\n tip(\n \"Event \\\"\" + lowerCaseEvent + \"\\\" is emitted in component \" +\n (formatComponentName(vm)) + \" but the handler is registered for \\\"\" + event + \"\\\". \" +\n \"Note that HTML attributes are case-insensitive and you cannot use \" +\n \"v-on to listen to camelCase events when using in-DOM templates. \" +\n \"You should probably use \\\"\" + (hyphenate(event)) + \"\\\" instead of \\\"\" + event + \"\\\".\"\n );\n }\n }\n var cbs = vm._events[event];\n if (cbs) {\n cbs = cbs.length > 1 ? toArray(cbs) : cbs;\n var args = toArray(arguments, 1);\n var info = \"event handler for \\\"\" + event + \"\\\"\";\n for (var i = 0, l = cbs.length; i < l; i++) {\n invokeWithErrorHandling(cbs[i], vm, args, vm, info);\n }\n }\n return vm\n };\n}\n\n/* */\n\nvar activeInstance = null;\nvar isUpdatingChildComponent = false;\n\nfunction setActiveInstance(vm) {\n var prevActiveInstance = activeInstance;\n activeInstance = vm;\n return function () {\n activeInstance = prevActiveInstance;\n }\n}\n\nfunction initLifecycle (vm) {\n var options = vm.$options;\n\n // locate first non-abstract parent\n var parent = options.parent;\n if (parent && !options.abstract) {\n while (parent.$options.abstract && parent.$parent) {\n parent = parent.$parent;\n }\n parent.$children.push(vm);\n }\n\n vm.$parent = parent;\n vm.$root = parent ? parent.$root : vm;\n\n vm.$children = [];\n vm.$refs = {};\n\n vm._watcher = null;\n vm._inactive = null;\n vm._directInactive = false;\n vm._isMounted = false;\n vm._isDestroyed = false;\n vm._isBeingDestroyed = false;\n}\n\nfunction lifecycleMixin (Vue) {\n Vue.prototype._update = function (vnode, hydrating) {\n var vm = this;\n var prevEl = vm.$el;\n var prevVnode = vm._vnode;\n var restoreActiveInstance = setActiveInstance(vm);\n vm._vnode = vnode;\n // Vue.prototype.__patch__ is injected in entry points\n // based on the rendering backend used.\n if (!prevVnode) {\n // initial render\n vm.$el = vm.__patch__(vm.$el, vnode, hydrating, false /* removeOnly */);\n } else {\n // updates\n vm.$el = vm.__patch__(prevVnode, vnode);\n }\n restoreActiveInstance();\n // update __vue__ reference\n if (prevEl) {\n prevEl.__vue__ = null;\n }\n if (vm.$el) {\n vm.$el.__vue__ = vm;\n }\n // if parent is an HOC, update its $el as well\n if (vm.$vnode && vm.$parent && vm.$vnode === vm.$parent._vnode) {\n vm.$parent.$el = vm.$el;\n }\n // updated hook is called by the scheduler to ensure that children are\n // updated in a parent's updated hook.\n };\n\n Vue.prototype.$forceUpdate = function () {\n var vm = this;\n if (vm._watcher) {\n vm._watcher.update();\n }\n };\n\n Vue.prototype.$destroy = function () {\n var vm = this;\n if (vm._isBeingDestroyed) {\n return\n }\n callHook(vm, 'beforeDestroy');\n vm._isBeingDestroyed = true;\n // remove self from parent\n var parent = vm.$parent;\n if (parent && !parent._isBeingDestroyed && !vm.$options.abstract) {\n remove(parent.$children, vm);\n }\n // teardown watchers\n if (vm._watcher) {\n vm._watcher.teardown();\n }\n var i = vm._watchers.length;\n while (i--) {\n vm._watchers[i].teardown();\n }\n // remove reference from data ob\n // frozen object may not have observer.\n if (vm._data.__ob__) {\n vm._data.__ob__.vmCount--;\n }\n // call the last hook...\n vm._isDestroyed = true;\n // invoke destroy hooks on current rendered tree\n vm.__patch__(vm._vnode, null);\n // fire destroyed hook\n callHook(vm, 'destroyed');\n // turn off all instance listeners.\n vm.$off();\n // remove __vue__ reference\n if (vm.$el) {\n vm.$el.__vue__ = null;\n }\n // release circular reference (#6759)\n if (vm.$vnode) {\n vm.$vnode.parent = null;\n }\n };\n}\n\nfunction mountComponent (\n vm,\n el,\n hydrating\n) {\n vm.$el = el;\n if (!vm.$options.render) {\n vm.$options.render = createEmptyVNode;\n if (process.env.NODE_ENV !== 'production') {\n /* istanbul ignore if */\n if ((vm.$options.template && vm.$options.template.charAt(0) !== '#') ||\n vm.$options.el || el) {\n warn(\n 'You are using the runtime-only build of Vue where the template ' +\n 'compiler is not available. Either pre-compile the templates into ' +\n 'render functions, or use the compiler-included build.',\n vm\n );\n } else {\n warn(\n 'Failed to mount component: template or render function not defined.',\n vm\n );\n }\n }\n }\n callHook(vm, 'beforeMount');\n\n var updateComponent;\n /* istanbul ignore if */\n if (process.env.NODE_ENV !== 'production' && config.performance && mark) {\n updateComponent = function () {\n var name = vm._name;\n var id = vm._uid;\n var startTag = \"vue-perf-start:\" + id;\n var endTag = \"vue-perf-end:\" + id;\n\n mark(startTag);\n var vnode = vm._render();\n mark(endTag);\n measure((\"vue \" + name + \" render\"), startTag, endTag);\n\n mark(startTag);\n vm._update(vnode, hydrating);\n mark(endTag);\n measure((\"vue \" + name + \" patch\"), startTag, endTag);\n };\n } else {\n updateComponent = function () {\n vm._update(vm._render(), hydrating);\n };\n }\n\n // we set this to vm._watcher inside the watcher's constructor\n // since the watcher's initial patch may call $forceUpdate (e.g. inside child\n // component's mounted hook), which relies on vm._watcher being already defined\n new Watcher(vm, updateComponent, noop, {\n before: function before () {\n if (vm._isMounted && !vm._isDestroyed) {\n callHook(vm, 'beforeUpdate');\n }\n }\n }, true /* isRenderWatcher */);\n hydrating = false;\n\n // manually mounted instance, call mounted on self\n // mounted is called for render-created child components in its inserted hook\n if (vm.$vnode == null) {\n vm._isMounted = true;\n callHook(vm, 'mounted');\n }\n return vm\n}\n\nfunction updateChildComponent (\n vm,\n propsData,\n listeners,\n parentVnode,\n renderChildren\n) {\n if (process.env.NODE_ENV !== 'production') {\n isUpdatingChildComponent = true;\n }\n\n // determine whether component has slot children\n // we need to do this before overwriting $options._renderChildren.\n\n // check if there are dynamic scopedSlots (hand-written or compiled but with\n // dynamic slot names). Static scoped slots compiled from template has the\n // \"$stable\" marker.\n var newScopedSlots = parentVnode.data.scopedSlots;\n var oldScopedSlots = vm.$scopedSlots;\n var hasDynamicScopedSlot = !!(\n (newScopedSlots && !newScopedSlots.$stable) ||\n (oldScopedSlots !== emptyObject && !oldScopedSlots.$stable) ||\n (newScopedSlots && vm.$scopedSlots.$key !== newScopedSlots.$key)\n );\n\n // Any static slot children from the parent may have changed during parent's\n // update. Dynamic scoped slots may also have changed. In such cases, a forced\n // update is necessary to ensure correctness.\n var needsForceUpdate = !!(\n renderChildren || // has new static slots\n vm.$options._renderChildren || // has old static slots\n hasDynamicScopedSlot\n );\n\n vm.$options._parentVnode = parentVnode;\n vm.$vnode = parentVnode; // update vm's placeholder node without re-render\n\n if (vm._vnode) { // update child tree's parent\n vm._vnode.parent = parentVnode;\n }\n vm.$options._renderChildren = renderChildren;\n\n // update $attrs and $listeners hash\n // these are also reactive so they may trigger child update if the child\n // used them during render\n vm.$attrs = parentVnode.data.attrs || emptyObject;\n vm.$listeners = listeners || emptyObject;\n\n // update props\n if (propsData && vm.$options.props) {\n toggleObserving(false);\n var props = vm._props;\n var propKeys = vm.$options._propKeys || [];\n for (var i = 0; i < propKeys.length; i++) {\n var key = propKeys[i];\n var propOptions = vm.$options.props; // wtf flow?\n props[key] = validateProp(key, propOptions, propsData, vm);\n }\n toggleObserving(true);\n // keep a copy of raw propsData\n vm.$options.propsData = propsData;\n }\n\n // update listeners\n listeners = listeners || emptyObject;\n var oldListeners = vm.$options._parentListeners;\n vm.$options._parentListeners = listeners;\n updateComponentListeners(vm, listeners, oldListeners);\n\n // resolve slots + force update if has children\n if (needsForceUpdate) {\n vm.$slots = resolveSlots(renderChildren, parentVnode.context);\n vm.$forceUpdate();\n }\n\n if (process.env.NODE_ENV !== 'production') {\n isUpdatingChildComponent = false;\n }\n}\n\nfunction isInInactiveTree (vm) {\n while (vm && (vm = vm.$parent)) {\n if (vm._inactive) { return true }\n }\n return false\n}\n\nfunction activateChildComponent (vm, direct) {\n if (direct) {\n vm._directInactive = false;\n if (isInInactiveTree(vm)) {\n return\n }\n } else if (vm._directInactive) {\n return\n }\n if (vm._inactive || vm._inactive === null) {\n vm._inactive = false;\n for (var i = 0; i < vm.$children.length; i++) {\n activateChildComponent(vm.$children[i]);\n }\n callHook(vm, 'activated');\n }\n}\n\nfunction deactivateChildComponent (vm, direct) {\n if (direct) {\n vm._directInactive = true;\n if (isInInactiveTree(vm)) {\n return\n }\n }\n if (!vm._inactive) {\n vm._inactive = true;\n for (var i = 0; i < vm.$children.length; i++) {\n deactivateChildComponent(vm.$children[i]);\n }\n callHook(vm, 'deactivated');\n }\n}\n\nfunction callHook (vm, hook) {\n // #7573 disable dep collection when invoking lifecycle hooks\n pushTarget();\n var handlers = vm.$options[hook];\n var info = hook + \" hook\";\n if (handlers) {\n for (var i = 0, j = handlers.length; i < j; i++) {\n invokeWithErrorHandling(handlers[i], vm, null, vm, info);\n }\n }\n if (vm._hasHookEvent) {\n vm.$emit('hook:' + hook);\n }\n popTarget();\n}\n\n/* */\n\nvar MAX_UPDATE_COUNT = 100;\n\nvar queue = [];\nvar activatedChildren = [];\nvar has = {};\nvar circular = {};\nvar waiting = false;\nvar flushing = false;\nvar index = 0;\n\n/**\n * Reset the scheduler's state.\n */\nfunction resetSchedulerState () {\n index = queue.length = activatedChildren.length = 0;\n has = {};\n if (process.env.NODE_ENV !== 'production') {\n circular = {};\n }\n waiting = flushing = false;\n}\n\n// Async edge case #6566 requires saving the timestamp when event listeners are\n// attached. However, calling performance.now() has a perf overhead especially\n// if the page has thousands of event listeners. Instead, we take a timestamp\n// every time the scheduler flushes and use that for all event listeners\n// attached during that flush.\nvar currentFlushTimestamp = 0;\n\n// Async edge case fix requires storing an event listener's attach timestamp.\nvar getNow = Date.now;\n\n// Determine what event timestamp the browser is using. Annoyingly, the\n// timestamp can either be hi-res (relative to page load) or low-res\n// (relative to UNIX epoch), so in order to compare time we have to use the\n// same timestamp type when saving the flush timestamp.\n// All IE versions use low-res event timestamps, and have problematic clock\n// implementations (#9632)\nif (inBrowser && !isIE) {\n var performance = window.performance;\n if (\n performance &&\n typeof performance.now === 'function' &&\n getNow() > document.createEvent('Event').timeStamp\n ) {\n // if the event timestamp, although evaluated AFTER the Date.now(), is\n // smaller than it, it means the event is using a hi-res timestamp,\n // and we need to use the hi-res version for event listener timestamps as\n // well.\n getNow = function () { return performance.now(); };\n }\n}\n\n/**\n * Flush both queues and run the watchers.\n */\nfunction flushSchedulerQueue () {\n currentFlushTimestamp = getNow();\n flushing = true;\n var watcher, id;\n\n // Sort queue before flush.\n // This ensures that:\n // 1. Components are updated from parent to child. (because parent is always\n // created before the child)\n // 2. A component's user watchers are run before its render watcher (because\n // user watchers are created before the render watcher)\n // 3. If a component is destroyed during a parent component's watcher run,\n // its watchers can be skipped.\n queue.sort(function (a, b) { return a.id - b.id; });\n\n // do not cache length because more watchers might be pushed\n // as we run existing watchers\n for (index = 0; index < queue.length; index++) {\n watcher = queue[index];\n if (watcher.before) {\n watcher.before();\n }\n id = watcher.id;\n has[id] = null;\n watcher.run();\n // in dev build, check and stop circular updates.\n if (process.env.NODE_ENV !== 'production' && has[id] != null) {\n circular[id] = (circular[id] || 0) + 1;\n if (circular[id] > MAX_UPDATE_COUNT) {\n warn(\n 'You may have an infinite update loop ' + (\n watcher.user\n ? (\"in watcher with expression \\\"\" + (watcher.expression) + \"\\\"\")\n : \"in a component render function.\"\n ),\n watcher.vm\n );\n break\n }\n }\n }\n\n // keep copies of post queues before resetting state\n var activatedQueue = activatedChildren.slice();\n var updatedQueue = queue.slice();\n\n resetSchedulerState();\n\n // call component updated and activated hooks\n callActivatedHooks(activatedQueue);\n callUpdatedHooks(updatedQueue);\n\n // devtool hook\n /* istanbul ignore if */\n if (devtools && config.devtools) {\n devtools.emit('flush');\n }\n}\n\nfunction callUpdatedHooks (queue) {\n var i = queue.length;\n while (i--) {\n var watcher = queue[i];\n var vm = watcher.vm;\n if (vm._watcher === watcher && vm._isMounted && !vm._isDestroyed) {\n callHook(vm, 'updated');\n }\n }\n}\n\n/**\n * Queue a kept-alive component that was activated during patch.\n * The queue will be processed after the entire tree has been patched.\n */\nfunction queueActivatedComponent (vm) {\n // setting _inactive to false here so that a render function can\n // rely on checking whether it's in an inactive tree (e.g. router-view)\n vm._inactive = false;\n activatedChildren.push(vm);\n}\n\nfunction callActivatedHooks (queue) {\n for (var i = 0; i < queue.length; i++) {\n queue[i]._inactive = true;\n activateChildComponent(queue[i], true /* true */);\n }\n}\n\n/**\n * Push a watcher into the watcher queue.\n * Jobs with duplicate IDs will be skipped unless it's\n * pushed when the queue is being flushed.\n */\nfunction queueWatcher (watcher) {\n var id = watcher.id;\n if (has[id] == null) {\n has[id] = true;\n if (!flushing) {\n queue.push(watcher);\n } else {\n // if already flushing, splice the watcher based on its id\n // if already past its id, it will be run next immediately.\n var i = queue.length - 1;\n while (i > index && queue[i].id > watcher.id) {\n i--;\n }\n queue.splice(i + 1, 0, watcher);\n }\n // queue the flush\n if (!waiting) {\n waiting = true;\n\n if (process.env.NODE_ENV !== 'production' && !config.async) {\n flushSchedulerQueue();\n return\n }\n nextTick(flushSchedulerQueue);\n }\n }\n}\n\n/* */\n\n\n\nvar uid$2 = 0;\n\n/**\n * A watcher parses an expression, collects dependencies,\n * and fires callback when the expression value changes.\n * This is used for both the $watch() api and directives.\n */\nvar Watcher = function Watcher (\n vm,\n expOrFn,\n cb,\n options,\n isRenderWatcher\n) {\n this.vm = vm;\n if (isRenderWatcher) {\n vm._watcher = this;\n }\n vm._watchers.push(this);\n // options\n if (options) {\n this.deep = !!options.deep;\n this.user = !!options.user;\n this.lazy = !!options.lazy;\n this.sync = !!options.sync;\n this.before = options.before;\n } else {\n this.deep = this.user = this.lazy = this.sync = false;\n }\n this.cb = cb;\n this.id = ++uid$2; // uid for batching\n this.active = true;\n this.dirty = this.lazy; // for lazy watchers\n this.deps = [];\n this.newDeps = [];\n this.depIds = new _Set();\n this.newDepIds = new _Set();\n this.expression = process.env.NODE_ENV !== 'production'\n ? expOrFn.toString()\n : '';\n // parse expression for getter\n if (typeof expOrFn === 'function') {\n this.getter = expOrFn;\n } else {\n this.getter = parsePath(expOrFn);\n if (!this.getter) {\n this.getter = noop;\n process.env.NODE_ENV !== 'production' && warn(\n \"Failed watching path: \\\"\" + expOrFn + \"\\\" \" +\n 'Watcher only accepts simple dot-delimited paths. ' +\n 'For full control, use a function instead.',\n vm\n );\n }\n }\n this.value = this.lazy\n ? undefined\n : this.get();\n};\n\n/**\n * Evaluate the getter, and re-collect dependencies.\n */\nWatcher.prototype.get = function get () {\n pushTarget(this);\n var value;\n var vm = this.vm;\n try {\n value = this.getter.call(vm, vm);\n } catch (e) {\n if (this.user) {\n handleError(e, vm, (\"getter for watcher \\\"\" + (this.expression) + \"\\\"\"));\n } else {\n throw e\n }\n } finally {\n // \"touch\" every property so they are all tracked as\n // dependencies for deep watching\n if (this.deep) {\n traverse(value);\n }\n popTarget();\n this.cleanupDeps();\n }\n return value\n};\n\n/**\n * Add a dependency to this directive.\n */\nWatcher.prototype.addDep = function addDep (dep) {\n var id = dep.id;\n if (!this.newDepIds.has(id)) {\n this.newDepIds.add(id);\n this.newDeps.push(dep);\n if (!this.depIds.has(id)) {\n dep.addSub(this);\n }\n }\n};\n\n/**\n * Clean up for dependency collection.\n */\nWatcher.prototype.cleanupDeps = function cleanupDeps () {\n var i = this.deps.length;\n while (i--) {\n var dep = this.deps[i];\n if (!this.newDepIds.has(dep.id)) {\n dep.removeSub(this);\n }\n }\n var tmp = this.depIds;\n this.depIds = this.newDepIds;\n this.newDepIds = tmp;\n this.newDepIds.clear();\n tmp = this.deps;\n this.deps = this.newDeps;\n this.newDeps = tmp;\n this.newDeps.length = 0;\n};\n\n/**\n * Subscriber interface.\n * Will be called when a dependency changes.\n */\nWatcher.prototype.update = function update () {\n /* istanbul ignore else */\n if (this.lazy) {\n this.dirty = true;\n } else if (this.sync) {\n this.run();\n } else {\n queueWatcher(this);\n }\n};\n\n/**\n * Scheduler job interface.\n * Will be called by the scheduler.\n */\nWatcher.prototype.run = function run () {\n if (this.active) {\n var value = this.get();\n if (\n value !== this.value ||\n // Deep watchers and watchers on Object/Arrays should fire even\n // when the value is the same, because the value may\n // have mutated.\n isObject(value) ||\n this.deep\n ) {\n // set new value\n var oldValue = this.value;\n this.value = value;\n if (this.user) {\n try {\n this.cb.call(this.vm, value, oldValue);\n } catch (e) {\n handleError(e, this.vm, (\"callback for watcher \\\"\" + (this.expression) + \"\\\"\"));\n }\n } else {\n this.cb.call(this.vm, value, oldValue);\n }\n }\n }\n};\n\n/**\n * Evaluate the value of the watcher.\n * This only gets called for lazy watchers.\n */\nWatcher.prototype.evaluate = function evaluate () {\n this.value = this.get();\n this.dirty = false;\n};\n\n/**\n * Depend on all deps collected by this watcher.\n */\nWatcher.prototype.depend = function depend () {\n var i = this.deps.length;\n while (i--) {\n this.deps[i].depend();\n }\n};\n\n/**\n * Remove self from all dependencies' subscriber list.\n */\nWatcher.prototype.teardown = function teardown () {\n if (this.active) {\n // remove self from vm's watcher list\n // this is a somewhat expensive operation so we skip it\n // if the vm is being destroyed.\n if (!this.vm._isBeingDestroyed) {\n remove(this.vm._watchers, this);\n }\n var i = this.deps.length;\n while (i--) {\n this.deps[i].removeSub(this);\n }\n this.active = false;\n }\n};\n\n/* */\n\nvar sharedPropertyDefinition = {\n enumerable: true,\n configurable: true,\n get: noop,\n set: noop\n};\n\nfunction proxy (target, sourceKey, key) {\n sharedPropertyDefinition.get = function proxyGetter () {\n return this[sourceKey][key]\n };\n sharedPropertyDefinition.set = function proxySetter (val) {\n this[sourceKey][key] = val;\n };\n Object.defineProperty(target, key, sharedPropertyDefinition);\n}\n\nfunction initState (vm) {\n vm._watchers = [];\n var opts = vm.$options;\n if (opts.props) { initProps(vm, opts.props); }\n if (opts.methods) { initMethods(vm, opts.methods); }\n if (opts.data) {\n initData(vm);\n } else {\n observe(vm._data = {}, true /* asRootData */);\n }\n if (opts.computed) { initComputed(vm, opts.computed); }\n if (opts.watch && opts.watch !== nativeWatch) {\n initWatch(vm, opts.watch);\n }\n}\n\nfunction initProps (vm, propsOptions) {\n var propsData = vm.$options.propsData || {};\n var props = vm._props = {};\n // cache prop keys so that future props updates can iterate using Array\n // instead of dynamic object key enumeration.\n var keys = vm.$options._propKeys = [];\n var isRoot = !vm.$parent;\n // root instance props should be converted\n if (!isRoot) {\n toggleObserving(false);\n }\n var loop = function ( key ) {\n keys.push(key);\n var value = validateProp(key, propsOptions, propsData, vm);\n /* istanbul ignore else */\n if (process.env.NODE_ENV !== 'production') {\n var hyphenatedKey = hyphenate(key);\n if (isReservedAttribute(hyphenatedKey) ||\n config.isReservedAttr(hyphenatedKey)) {\n warn(\n (\"\\\"\" + hyphenatedKey + \"\\\" is a reserved attribute and cannot be used as component prop.\"),\n vm\n );\n }\n defineReactive$$1(props, key, value, function () {\n if (!isRoot && !isUpdatingChildComponent) {\n warn(\n \"Avoid mutating a prop directly since the value will be \" +\n \"overwritten whenever the parent component re-renders. \" +\n \"Instead, use a data or computed property based on the prop's \" +\n \"value. Prop being mutated: \\\"\" + key + \"\\\"\",\n vm\n );\n }\n });\n } else {\n defineReactive$$1(props, key, value);\n }\n // static props are already proxied on the component's prototype\n // during Vue.extend(). We only need to proxy props defined at\n // instantiation here.\n if (!(key in vm)) {\n proxy(vm, \"_props\", key);\n }\n };\n\n for (var key in propsOptions) loop( key );\n toggleObserving(true);\n}\n\nfunction initData (vm) {\n var data = vm.$options.data;\n data = vm._data = typeof data === 'function'\n ? getData(data, vm)\n : data || {};\n if (!isPlainObject(data)) {\n data = {};\n process.env.NODE_ENV !== 'production' && warn(\n 'data functions should return an object:\\n' +\n 'https://vuejs.org/v2/guide/components.html#data-Must-Be-a-Function',\n vm\n );\n }\n // proxy data on instance\n var keys = Object.keys(data);\n var props = vm.$options.props;\n var methods = vm.$options.methods;\n var i = keys.length;\n while (i--) {\n var key = keys[i];\n if (process.env.NODE_ENV !== 'production') {\n if (methods && hasOwn(methods, key)) {\n warn(\n (\"Method \\\"\" + key + \"\\\" has already been defined as a data property.\"),\n vm\n );\n }\n }\n if (props && hasOwn(props, key)) {\n process.env.NODE_ENV !== 'production' && warn(\n \"The data property \\\"\" + key + \"\\\" is already declared as a prop. \" +\n \"Use prop default value instead.\",\n vm\n );\n } else if (!isReserved(key)) {\n proxy(vm, \"_data\", key);\n }\n }\n // observe data\n observe(data, true /* asRootData */);\n}\n\nfunction getData (data, vm) {\n // #7573 disable dep collection when invoking data getters\n pushTarget();\n try {\n return data.call(vm, vm)\n } catch (e) {\n handleError(e, vm, \"data()\");\n return {}\n } finally {\n popTarget();\n }\n}\n\nvar computedWatcherOptions = { lazy: true };\n\nfunction initComputed (vm, computed) {\n // $flow-disable-line\n var watchers = vm._computedWatchers = Object.create(null);\n // computed properties are just getters during SSR\n var isSSR = isServerRendering();\n\n for (var key in computed) {\n var userDef = computed[key];\n var getter = typeof userDef === 'function' ? userDef : userDef.get;\n if (process.env.NODE_ENV !== 'production' && getter == null) {\n warn(\n (\"Getter is missing for computed property \\\"\" + key + \"\\\".\"),\n vm\n );\n }\n\n if (!isSSR) {\n // create internal watcher for the computed property.\n watchers[key] = new Watcher(\n vm,\n getter || noop,\n noop,\n computedWatcherOptions\n );\n }\n\n // component-defined computed properties are already defined on the\n // component prototype. We only need to define computed properties defined\n // at instantiation here.\n if (!(key in vm)) {\n defineComputed(vm, key, userDef);\n } else if (process.env.NODE_ENV !== 'production') {\n if (key in vm.$data) {\n warn((\"The computed property \\\"\" + key + \"\\\" is already defined in data.\"), vm);\n } else if (vm.$options.props && key in vm.$options.props) {\n warn((\"The computed property \\\"\" + key + \"\\\" is already defined as a prop.\"), vm);\n }\n }\n }\n}\n\nfunction defineComputed (\n target,\n key,\n userDef\n) {\n var shouldCache = !isServerRendering();\n if (typeof userDef === 'function') {\n sharedPropertyDefinition.get = shouldCache\n ? createComputedGetter(key)\n : createGetterInvoker(userDef);\n sharedPropertyDefinition.set = noop;\n } else {\n sharedPropertyDefinition.get = userDef.get\n ? shouldCache && userDef.cache !== false\n ? createComputedGetter(key)\n : createGetterInvoker(userDef.get)\n : noop;\n sharedPropertyDefinition.set = userDef.set || noop;\n }\n if (process.env.NODE_ENV !== 'production' &&\n sharedPropertyDefinition.set === noop) {\n sharedPropertyDefinition.set = function () {\n warn(\n (\"Computed property \\\"\" + key + \"\\\" was assigned to but it has no setter.\"),\n this\n );\n };\n }\n Object.defineProperty(target, key, sharedPropertyDefinition);\n}\n\nfunction createComputedGetter (key) {\n return function computedGetter () {\n var watcher = this._computedWatchers && this._computedWatchers[key];\n if (watcher) {\n if (watcher.dirty) {\n watcher.evaluate();\n }\n if (Dep.target) {\n watcher.depend();\n }\n return watcher.value\n }\n }\n}\n\nfunction createGetterInvoker(fn) {\n return function computedGetter () {\n return fn.call(this, this)\n }\n}\n\nfunction initMethods (vm, methods) {\n var props = vm.$options.props;\n for (var key in methods) {\n if (process.env.NODE_ENV !== 'production') {\n if (typeof methods[key] !== 'function') {\n warn(\n \"Method \\\"\" + key + \"\\\" has type \\\"\" + (typeof methods[key]) + \"\\\" in the component definition. \" +\n \"Did you reference the function correctly?\",\n vm\n );\n }\n if (props && hasOwn(props, key)) {\n warn(\n (\"Method \\\"\" + key + \"\\\" has already been defined as a prop.\"),\n vm\n );\n }\n if ((key in vm) && isReserved(key)) {\n warn(\n \"Method \\\"\" + key + \"\\\" conflicts with an existing Vue instance method. \" +\n \"Avoid defining component methods that start with _ or $.\"\n );\n }\n }\n vm[key] = typeof methods[key] !== 'function' ? noop : bind(methods[key], vm);\n }\n}\n\nfunction initWatch (vm, watch) {\n for (var key in watch) {\n var handler = watch[key];\n if (Array.isArray(handler)) {\n for (var i = 0; i < handler.length; i++) {\n createWatcher(vm, key, handler[i]);\n }\n } else {\n createWatcher(vm, key, handler);\n }\n }\n}\n\nfunction createWatcher (\n vm,\n expOrFn,\n handler,\n options\n) {\n if (isPlainObject(handler)) {\n options = handler;\n handler = handler.handler;\n }\n if (typeof handler === 'string') {\n handler = vm[handler];\n }\n return vm.$watch(expOrFn, handler, options)\n}\n\nfunction stateMixin (Vue) {\n // flow somehow has problems with directly declared definition object\n // when using Object.defineProperty, so we have to procedurally build up\n // the object here.\n var dataDef = {};\n dataDef.get = function () { return this._data };\n var propsDef = {};\n propsDef.get = function () { return this._props };\n if (process.env.NODE_ENV !== 'production') {\n dataDef.set = function () {\n warn(\n 'Avoid replacing instance root $data. ' +\n 'Use nested data properties instead.',\n this\n );\n };\n propsDef.set = function () {\n warn(\"$props is readonly.\", this);\n };\n }\n Object.defineProperty(Vue.prototype, '$data', dataDef);\n Object.defineProperty(Vue.prototype, '$props', propsDef);\n\n Vue.prototype.$set = set;\n Vue.prototype.$delete = del;\n\n Vue.prototype.$watch = function (\n expOrFn,\n cb,\n options\n ) {\n var vm = this;\n if (isPlainObject(cb)) {\n return createWatcher(vm, expOrFn, cb, options)\n }\n options = options || {};\n options.user = true;\n var watcher = new Watcher(vm, expOrFn, cb, options);\n if (options.immediate) {\n try {\n cb.call(vm, watcher.value);\n } catch (error) {\n handleError(error, vm, (\"callback for immediate watcher \\\"\" + (watcher.expression) + \"\\\"\"));\n }\n }\n return function unwatchFn () {\n watcher.teardown();\n }\n };\n}\n\n/* */\n\nvar uid$3 = 0;\n\nfunction initMixin (Vue) {\n Vue.prototype._init = function (options) {\n var vm = this;\n // a uid\n vm._uid = uid$3++;\n\n var startTag, endTag;\n /* istanbul ignore if */\n if (process.env.NODE_ENV !== 'production' && config.performance && mark) {\n startTag = \"vue-perf-start:\" + (vm._uid);\n endTag = \"vue-perf-end:\" + (vm._uid);\n mark(startTag);\n }\n\n // a flag to avoid this being observed\n vm._isVue = true;\n // merge options\n if (options && options._isComponent) {\n // optimize internal component instantiation\n // since dynamic options merging is pretty slow, and none of the\n // internal component options needs special treatment.\n initInternalComponent(vm, options);\n } else {\n vm.$options = mergeOptions(\n resolveConstructorOptions(vm.constructor),\n options || {},\n vm\n );\n }\n /* istanbul ignore else */\n if (process.env.NODE_ENV !== 'production') {\n initProxy(vm);\n } else {\n vm._renderProxy = vm;\n }\n // expose real self\n vm._self = vm;\n initLifecycle(vm);\n initEvents(vm);\n initRender(vm);\n callHook(vm, 'beforeCreate');\n initInjections(vm); // resolve injections before data/props\n initState(vm);\n initProvide(vm); // resolve provide after data/props\n callHook(vm, 'created');\n\n /* istanbul ignore if */\n if (process.env.NODE_ENV !== 'production' && config.performance && mark) {\n vm._name = formatComponentName(vm, false);\n mark(endTag);\n measure((\"vue \" + (vm._name) + \" init\"), startTag, endTag);\n }\n\n if (vm.$options.el) {\n vm.$mount(vm.$options.el);\n }\n };\n}\n\nfunction initInternalComponent (vm, options) {\n var opts = vm.$options = Object.create(vm.constructor.options);\n // doing this because it's faster than dynamic enumeration.\n var parentVnode = options._parentVnode;\n opts.parent = options.parent;\n opts._parentVnode = parentVnode;\n\n var vnodeComponentOptions = parentVnode.componentOptions;\n opts.propsData = vnodeComponentOptions.propsData;\n opts._parentListeners = vnodeComponentOptions.listeners;\n opts._renderChildren = vnodeComponentOptions.children;\n opts._componentTag = vnodeComponentOptions.tag;\n\n if (options.render) {\n opts.render = options.render;\n opts.staticRenderFns = options.staticRenderFns;\n }\n}\n\nfunction resolveConstructorOptions (Ctor) {\n var options = Ctor.options;\n if (Ctor.super) {\n var superOptions = resolveConstructorOptions(Ctor.super);\n var cachedSuperOptions = Ctor.superOptions;\n if (superOptions !== cachedSuperOptions) {\n // super option changed,\n // need to resolve new options.\n Ctor.superOptions = superOptions;\n // check if there are any late-modified/attached options (#4976)\n var modifiedOptions = resolveModifiedOptions(Ctor);\n // update base extend options\n if (modifiedOptions) {\n extend(Ctor.extendOptions, modifiedOptions);\n }\n options = Ctor.options = mergeOptions(superOptions, Ctor.extendOptions);\n if (options.name) {\n options.components[options.name] = Ctor;\n }\n }\n }\n return options\n}\n\nfunction resolveModifiedOptions (Ctor) {\n var modified;\n var latest = Ctor.options;\n var sealed = Ctor.sealedOptions;\n for (var key in latest) {\n if (latest[key] !== sealed[key]) {\n if (!modified) { modified = {}; }\n modified[key] = latest[key];\n }\n }\n return modified\n}\n\nfunction Vue (options) {\n if (process.env.NODE_ENV !== 'production' &&\n !(this instanceof Vue)\n ) {\n warn('Vue is a constructor and should be called with the `new` keyword');\n }\n this._init(options);\n}\n\ninitMixin(Vue);\nstateMixin(Vue);\neventsMixin(Vue);\nlifecycleMixin(Vue);\nrenderMixin(Vue);\n\n/* */\n\nfunction initUse (Vue) {\n Vue.use = function (plugin) {\n var installedPlugins = (this._installedPlugins || (this._installedPlugins = []));\n if (installedPlugins.indexOf(plugin) > -1) {\n return this\n }\n\n // additional parameters\n var args = toArray(arguments, 1);\n args.unshift(this);\n if (typeof plugin.install === 'function') {\n plugin.install.apply(plugin, args);\n } else if (typeof plugin === 'function') {\n plugin.apply(null, args);\n }\n installedPlugins.push(plugin);\n return this\n };\n}\n\n/* */\n\nfunction initMixin$1 (Vue) {\n Vue.mixin = function (mixin) {\n this.options = mergeOptions(this.options, mixin);\n return this\n };\n}\n\n/* */\n\nfunction initExtend (Vue) {\n /**\n * Each instance constructor, including Vue, has a unique\n * cid. This enables us to create wrapped \"child\n * constructors\" for prototypal inheritance and cache them.\n */\n Vue.cid = 0;\n var cid = 1;\n\n /**\n * Class inheritance\n */\n Vue.extend = function (extendOptions) {\n extendOptions = extendOptions || {};\n var Super = this;\n var SuperId = Super.cid;\n var cachedCtors = extendOptions._Ctor || (extendOptions._Ctor = {});\n if (cachedCtors[SuperId]) {\n return cachedCtors[SuperId]\n }\n\n var name = extendOptions.name || Super.options.name;\n if (process.env.NODE_ENV !== 'production' && name) {\n validateComponentName(name);\n }\n\n var Sub = function VueComponent (options) {\n this._init(options);\n };\n Sub.prototype = Object.create(Super.prototype);\n Sub.prototype.constructor = Sub;\n Sub.cid = cid++;\n Sub.options = mergeOptions(\n Super.options,\n extendOptions\n );\n Sub['super'] = Super;\n\n // For props and computed properties, we define the proxy getters on\n // the Vue instances at extension time, on the extended prototype. This\n // avoids Object.defineProperty calls for each instance created.\n if (Sub.options.props) {\n initProps$1(Sub);\n }\n if (Sub.options.computed) {\n initComputed$1(Sub);\n }\n\n // allow further extension/mixin/plugin usage\n Sub.extend = Super.extend;\n Sub.mixin = Super.mixin;\n Sub.use = Super.use;\n\n // create asset registers, so extended classes\n // can have their private assets too.\n ASSET_TYPES.forEach(function (type) {\n Sub[type] = Super[type];\n });\n // enable recursive self-lookup\n if (name) {\n Sub.options.components[name] = Sub;\n }\n\n // keep a reference to the super options at extension time.\n // later at instantiation we can check if Super's options have\n // been updated.\n Sub.superOptions = Super.options;\n Sub.extendOptions = extendOptions;\n Sub.sealedOptions = extend({}, Sub.options);\n\n // cache constructor\n cachedCtors[SuperId] = Sub;\n return Sub\n };\n}\n\nfunction initProps$1 (Comp) {\n var props = Comp.options.props;\n for (var key in props) {\n proxy(Comp.prototype, \"_props\", key);\n }\n}\n\nfunction initComputed$1 (Comp) {\n var computed = Comp.options.computed;\n for (var key in computed) {\n defineComputed(Comp.prototype, key, computed[key]);\n }\n}\n\n/* */\n\nfunction initAssetRegisters (Vue) {\n /**\n * Create asset registration methods.\n */\n ASSET_TYPES.forEach(function (type) {\n Vue[type] = function (\n id,\n definition\n ) {\n if (!definition) {\n return this.options[type + 's'][id]\n } else {\n /* istanbul ignore if */\n if (process.env.NODE_ENV !== 'production' && type === 'component') {\n validateComponentName(id);\n }\n if (type === 'component' && isPlainObject(definition)) {\n definition.name = definition.name || id;\n definition = this.options._base.extend(definition);\n }\n if (type === 'directive' && typeof definition === 'function') {\n definition = { bind: definition, update: definition };\n }\n this.options[type + 's'][id] = definition;\n return definition\n }\n };\n });\n}\n\n/* */\n\n\n\nfunction getComponentName (opts) {\n return opts && (opts.Ctor.options.name || opts.tag)\n}\n\nfunction matches (pattern, name) {\n if (Array.isArray(pattern)) {\n return pattern.indexOf(name) > -1\n } else if (typeof pattern === 'string') {\n return pattern.split(',').indexOf(name) > -1\n } else if (isRegExp(pattern)) {\n return pattern.test(name)\n }\n /* istanbul ignore next */\n return false\n}\n\nfunction pruneCache (keepAliveInstance, filter) {\n var cache = keepAliveInstance.cache;\n var keys = keepAliveInstance.keys;\n var _vnode = keepAliveInstance._vnode;\n for (var key in cache) {\n var cachedNode = cache[key];\n if (cachedNode) {\n var name = getComponentName(cachedNode.componentOptions);\n if (name && !filter(name)) {\n pruneCacheEntry(cache, key, keys, _vnode);\n }\n }\n }\n}\n\nfunction pruneCacheEntry (\n cache,\n key,\n keys,\n current\n) {\n var cached$$1 = cache[key];\n if (cached$$1 && (!current || cached$$1.tag !== current.tag)) {\n cached$$1.componentInstance.$destroy();\n }\n cache[key] = null;\n remove(keys, key);\n}\n\nvar patternTypes = [String, RegExp, Array];\n\nvar KeepAlive = {\n name: 'keep-alive',\n abstract: true,\n\n props: {\n include: patternTypes,\n exclude: patternTypes,\n max: [String, Number]\n },\n\n created: function created () {\n this.cache = Object.create(null);\n this.keys = [];\n },\n\n destroyed: function destroyed () {\n for (var key in this.cache) {\n pruneCacheEntry(this.cache, key, this.keys);\n }\n },\n\n mounted: function mounted () {\n var this$1 = this;\n\n this.$watch('include', function (val) {\n pruneCache(this$1, function (name) { return matches(val, name); });\n });\n this.$watch('exclude', function (val) {\n pruneCache(this$1, function (name) { return !matches(val, name); });\n });\n },\n\n render: function render () {\n var slot = this.$slots.default;\n var vnode = getFirstComponentChild(slot);\n var componentOptions = vnode && vnode.componentOptions;\n if (componentOptions) {\n // check pattern\n var name = getComponentName(componentOptions);\n var ref = this;\n var include = ref.include;\n var exclude = ref.exclude;\n if (\n // not included\n (include && (!name || !matches(include, name))) ||\n // excluded\n (exclude && name && matches(exclude, name))\n ) {\n return vnode\n }\n\n var ref$1 = this;\n var cache = ref$1.cache;\n var keys = ref$1.keys;\n var key = vnode.key == null\n // same constructor may get registered as different local components\n // so cid alone is not enough (#3269)\n ? componentOptions.Ctor.cid + (componentOptions.tag ? (\"::\" + (componentOptions.tag)) : '')\n : vnode.key;\n if (cache[key]) {\n vnode.componentInstance = cache[key].componentInstance;\n // make current key freshest\n remove(keys, key);\n keys.push(key);\n } else {\n cache[key] = vnode;\n keys.push(key);\n // prune oldest entry\n if (this.max && keys.length > parseInt(this.max)) {\n pruneCacheEntry(cache, keys[0], keys, this._vnode);\n }\n }\n\n vnode.data.keepAlive = true;\n }\n return vnode || (slot && slot[0])\n }\n};\n\nvar builtInComponents = {\n KeepAlive: KeepAlive\n};\n\n/* */\n\nfunction initGlobalAPI (Vue) {\n // config\n var configDef = {};\n configDef.get = function () { return config; };\n if (process.env.NODE_ENV !== 'production') {\n configDef.set = function () {\n warn(\n 'Do not replace the Vue.config object, set individual fields instead.'\n );\n };\n }\n Object.defineProperty(Vue, 'config', configDef);\n\n // exposed util methods.\n // NOTE: these are not considered part of the public API - avoid relying on\n // them unless you are aware of the risk.\n Vue.util = {\n warn: warn,\n extend: extend,\n mergeOptions: mergeOptions,\n defineReactive: defineReactive$$1\n };\n\n Vue.set = set;\n Vue.delete = del;\n Vue.nextTick = nextTick;\n\n // 2.6 explicit observable API\n Vue.observable = function (obj) {\n observe(obj);\n return obj\n };\n\n Vue.options = Object.create(null);\n ASSET_TYPES.forEach(function (type) {\n Vue.options[type + 's'] = Object.create(null);\n });\n\n // this is used to identify the \"base\" constructor to extend all plain-object\n // components with in Weex's multi-instance scenarios.\n Vue.options._base = Vue;\n\n extend(Vue.options.components, builtInComponents);\n\n initUse(Vue);\n initMixin$1(Vue);\n initExtend(Vue);\n initAssetRegisters(Vue);\n}\n\ninitGlobalAPI(Vue);\n\nObject.defineProperty(Vue.prototype, '$isServer', {\n get: isServerRendering\n});\n\nObject.defineProperty(Vue.prototype, '$ssrContext', {\n get: function get () {\n /* istanbul ignore next */\n return this.$vnode && this.$vnode.ssrContext\n }\n});\n\n// expose FunctionalRenderContext for ssr runtime helper installation\nObject.defineProperty(Vue, 'FunctionalRenderContext', {\n value: FunctionalRenderContext\n});\n\nVue.version = '2.6.11';\n\n/* */\n\n// these are reserved for web because they are directly compiled away\n// during template compilation\nvar isReservedAttr = makeMap('style,class');\n\n// attributes that should be using props for binding\nvar acceptValue = makeMap('input,textarea,option,select,progress');\nvar mustUseProp = function (tag, type, attr) {\n return (\n (attr === 'value' && acceptValue(tag)) && type !== 'button' ||\n (attr === 'selected' && tag === 'option') ||\n (attr === 'checked' && tag === 'input') ||\n (attr === 'muted' && tag === 'video')\n )\n};\n\nvar isEnumeratedAttr = makeMap('contenteditable,draggable,spellcheck');\n\nvar isValidContentEditableValue = makeMap('events,caret,typing,plaintext-only');\n\nvar convertEnumeratedValue = function (key, value) {\n return isFalsyAttrValue(value) || value === 'false'\n ? 'false'\n // allow arbitrary string value for contenteditable\n : key === 'contenteditable' && isValidContentEditableValue(value)\n ? value\n : 'true'\n};\n\nvar isBooleanAttr = makeMap(\n 'allowfullscreen,async,autofocus,autoplay,checked,compact,controls,declare,' +\n 'default,defaultchecked,defaultmuted,defaultselected,defer,disabled,' +\n 'enabled,formnovalidate,hidden,indeterminate,inert,ismap,itemscope,loop,multiple,' +\n 'muted,nohref,noresize,noshade,novalidate,nowrap,open,pauseonexit,readonly,' +\n 'required,reversed,scoped,seamless,selected,sortable,translate,' +\n 'truespeed,typemustmatch,visible'\n);\n\nvar xlinkNS = 'http://www.w3.org/1999/xlink';\n\nvar isXlink = function (name) {\n return name.charAt(5) === ':' && name.slice(0, 5) === 'xlink'\n};\n\nvar getXlinkProp = function (name) {\n return isXlink(name) ? name.slice(6, name.length) : ''\n};\n\nvar isFalsyAttrValue = function (val) {\n return val == null || val === false\n};\n\n/* */\n\nfunction genClassForVnode (vnode) {\n var data = vnode.data;\n var parentNode = vnode;\n var childNode = vnode;\n while (isDef(childNode.componentInstance)) {\n childNode = childNode.componentInstance._vnode;\n if (childNode && childNode.data) {\n data = mergeClassData(childNode.data, data);\n }\n }\n while (isDef(parentNode = parentNode.parent)) {\n if (parentNode && parentNode.data) {\n data = mergeClassData(data, parentNode.data);\n }\n }\n return renderClass(data.staticClass, data.class)\n}\n\nfunction mergeClassData (child, parent) {\n return {\n staticClass: concat(child.staticClass, parent.staticClass),\n class: isDef(child.class)\n ? [child.class, parent.class]\n : parent.class\n }\n}\n\nfunction renderClass (\n staticClass,\n dynamicClass\n) {\n if (isDef(staticClass) || isDef(dynamicClass)) {\n return concat(staticClass, stringifyClass(dynamicClass))\n }\n /* istanbul ignore next */\n return ''\n}\n\nfunction concat (a, b) {\n return a ? b ? (a + ' ' + b) : a : (b || '')\n}\n\nfunction stringifyClass (value) {\n if (Array.isArray(value)) {\n return stringifyArray(value)\n }\n if (isObject(value)) {\n return stringifyObject(value)\n }\n if (typeof value === 'string') {\n return value\n }\n /* istanbul ignore next */\n return ''\n}\n\nfunction stringifyArray (value) {\n var res = '';\n var stringified;\n for (var i = 0, l = value.length; i < l; i++) {\n if (isDef(stringified = stringifyClass(value[i])) && stringified !== '') {\n if (res) { res += ' '; }\n res += stringified;\n }\n }\n return res\n}\n\nfunction stringifyObject (value) {\n var res = '';\n for (var key in value) {\n if (value[key]) {\n if (res) { res += ' '; }\n res += key;\n }\n }\n return res\n}\n\n/* */\n\nvar namespaceMap = {\n svg: 'http://www.w3.org/2000/svg',\n math: 'http://www.w3.org/1998/Math/MathML'\n};\n\nvar isHTMLTag = makeMap(\n 'html,body,base,head,link,meta,style,title,' +\n 'address,article,aside,footer,header,h1,h2,h3,h4,h5,h6,hgroup,nav,section,' +\n 'div,dd,dl,dt,figcaption,figure,picture,hr,img,li,main,ol,p,pre,ul,' +\n 'a,b,abbr,bdi,bdo,br,cite,code,data,dfn,em,i,kbd,mark,q,rp,rt,rtc,ruby,' +\n 's,samp,small,span,strong,sub,sup,time,u,var,wbr,area,audio,map,track,video,' +\n 'embed,object,param,source,canvas,script,noscript,del,ins,' +\n 'caption,col,colgroup,table,thead,tbody,td,th,tr,' +\n 'button,datalist,fieldset,form,input,label,legend,meter,optgroup,option,' +\n 'output,progress,select,textarea,' +\n 'details,dialog,menu,menuitem,summary,' +\n 'content,element,shadow,template,blockquote,iframe,tfoot'\n);\n\n// this map is intentionally selective, only covering SVG elements that may\n// contain child elements.\nvar isSVG = makeMap(\n 'svg,animate,circle,clippath,cursor,defs,desc,ellipse,filter,font-face,' +\n 'foreignObject,g,glyph,image,line,marker,mask,missing-glyph,path,pattern,' +\n 'polygon,polyline,rect,switch,symbol,text,textpath,tspan,use,view',\n true\n);\n\nvar isReservedTag = function (tag) {\n return isHTMLTag(tag) || isSVG(tag)\n};\n\nfunction getTagNamespace (tag) {\n if (isSVG(tag)) {\n return 'svg'\n }\n // basic support for MathML\n // note it doesn't support other MathML elements being component roots\n if (tag === 'math') {\n return 'math'\n }\n}\n\nvar unknownElementCache = Object.create(null);\nfunction isUnknownElement (tag) {\n /* istanbul ignore if */\n if (!inBrowser) {\n return true\n }\n if (isReservedTag(tag)) {\n return false\n }\n tag = tag.toLowerCase();\n /* istanbul ignore if */\n if (unknownElementCache[tag] != null) {\n return unknownElementCache[tag]\n }\n var el = document.createElement(tag);\n if (tag.indexOf('-') > -1) {\n // http://stackoverflow.com/a/28210364/1070244\n return (unknownElementCache[tag] = (\n el.constructor === window.HTMLUnknownElement ||\n el.constructor === window.HTMLElement\n ))\n } else {\n return (unknownElementCache[tag] = /HTMLUnknownElement/.test(el.toString()))\n }\n}\n\nvar isTextInputType = makeMap('text,number,password,search,email,tel,url');\n\n/* */\n\n/**\n * Query an element selector if it's not an element already.\n */\nfunction query (el) {\n if (typeof el === 'string') {\n var selected = document.querySelector(el);\n if (!selected) {\n process.env.NODE_ENV !== 'production' && warn(\n 'Cannot find element: ' + el\n );\n return document.createElement('div')\n }\n return selected\n } else {\n return el\n }\n}\n\n/* */\n\nfunction createElement$1 (tagName, vnode) {\n var elm = document.createElement(tagName);\n if (tagName !== 'select') {\n return elm\n }\n // false or null will remove the attribute but undefined will not\n if (vnode.data && vnode.data.attrs && vnode.data.attrs.multiple !== undefined) {\n elm.setAttribute('multiple', 'multiple');\n }\n return elm\n}\n\nfunction createElementNS (namespace, tagName) {\n return document.createElementNS(namespaceMap[namespace], tagName)\n}\n\nfunction createTextNode (text) {\n return document.createTextNode(text)\n}\n\nfunction createComment (text) {\n return document.createComment(text)\n}\n\nfunction insertBefore (parentNode, newNode, referenceNode) {\n parentNode.insertBefore(newNode, referenceNode);\n}\n\nfunction removeChild (node, child) {\n node.removeChild(child);\n}\n\nfunction appendChild (node, child) {\n node.appendChild(child);\n}\n\nfunction parentNode (node) {\n return node.parentNode\n}\n\nfunction nextSibling (node) {\n return node.nextSibling\n}\n\nfunction tagName (node) {\n return node.tagName\n}\n\nfunction setTextContent (node, text) {\n node.textContent = text;\n}\n\nfunction setStyleScope (node, scopeId) {\n node.setAttribute(scopeId, '');\n}\n\nvar nodeOps = /*#__PURE__*/Object.freeze({\n createElement: createElement$1,\n createElementNS: createElementNS,\n createTextNode: createTextNode,\n createComment: createComment,\n insertBefore: insertBefore,\n removeChild: removeChild,\n appendChild: appendChild,\n parentNode: parentNode,\n nextSibling: nextSibling,\n tagName: tagName,\n setTextContent: setTextContent,\n setStyleScope: setStyleScope\n});\n\n/* */\n\nvar ref = {\n create: function create (_, vnode) {\n registerRef(vnode);\n },\n update: function update (oldVnode, vnode) {\n if (oldVnode.data.ref !== vnode.data.ref) {\n registerRef(oldVnode, true);\n registerRef(vnode);\n }\n },\n destroy: function destroy (vnode) {\n registerRef(vnode, true);\n }\n};\n\nfunction registerRef (vnode, isRemoval) {\n var key = vnode.data.ref;\n if (!isDef(key)) { return }\n\n var vm = vnode.context;\n var ref = vnode.componentInstance || vnode.elm;\n var refs = vm.$refs;\n if (isRemoval) {\n if (Array.isArray(refs[key])) {\n remove(refs[key], ref);\n } else if (refs[key] === ref) {\n refs[key] = undefined;\n }\n } else {\n if (vnode.data.refInFor) {\n if (!Array.isArray(refs[key])) {\n refs[key] = [ref];\n } else if (refs[key].indexOf(ref) < 0) {\n // $flow-disable-line\n refs[key].push(ref);\n }\n } else {\n refs[key] = ref;\n }\n }\n}\n\n/**\n * Virtual DOM patching algorithm based on Snabbdom by\n * Simon Friis Vindum (@paldepind)\n * Licensed under the MIT License\n * https://github.com/paldepind/snabbdom/blob/master/LICENSE\n *\n * modified by Evan You (@yyx990803)\n *\n * Not type-checking this because this file is perf-critical and the cost\n * of making flow understand it is not worth it.\n */\n\nvar emptyNode = new VNode('', {}, []);\n\nvar hooks = ['create', 'activate', 'update', 'remove', 'destroy'];\n\nfunction sameVnode (a, b) {\n return (\n a.key === b.key && (\n (\n a.tag === b.tag &&\n a.isComment === b.isComment &&\n isDef(a.data) === isDef(b.data) &&\n sameInputType(a, b)\n ) || (\n isTrue(a.isAsyncPlaceholder) &&\n a.asyncFactory === b.asyncFactory &&\n isUndef(b.asyncFactory.error)\n )\n )\n )\n}\n\nfunction sameInputType (a, b) {\n if (a.tag !== 'input') { return true }\n var i;\n var typeA = isDef(i = a.data) && isDef(i = i.attrs) && i.type;\n var typeB = isDef(i = b.data) && isDef(i = i.attrs) && i.type;\n return typeA === typeB || isTextInputType(typeA) && isTextInputType(typeB)\n}\n\nfunction createKeyToOldIdx (children, beginIdx, endIdx) {\n var i, key;\n var map = {};\n for (i = beginIdx; i <= endIdx; ++i) {\n key = children[i].key;\n if (isDef(key)) { map[key] = i; }\n }\n return map\n}\n\nfunction createPatchFunction (backend) {\n var i, j;\n var cbs = {};\n\n var modules = backend.modules;\n var nodeOps = backend.nodeOps;\n\n for (i = 0; i < hooks.length; ++i) {\n cbs[hooks[i]] = [];\n for (j = 0; j < modules.length; ++j) {\n if (isDef(modules[j][hooks[i]])) {\n cbs[hooks[i]].push(modules[j][hooks[i]]);\n }\n }\n }\n\n function emptyNodeAt (elm) {\n return new VNode(nodeOps.tagName(elm).toLowerCase(), {}, [], undefined, elm)\n }\n\n function createRmCb (childElm, listeners) {\n function remove$$1 () {\n if (--remove$$1.listeners === 0) {\n removeNode(childElm);\n }\n }\n remove$$1.listeners = listeners;\n return remove$$1\n }\n\n function removeNode (el) {\n var parent = nodeOps.parentNode(el);\n // element may have already been removed due to v-html / v-text\n if (isDef(parent)) {\n nodeOps.removeChild(parent, el);\n }\n }\n\n function isUnknownElement$$1 (vnode, inVPre) {\n return (\n !inVPre &&\n !vnode.ns &&\n !(\n config.ignoredElements.length &&\n config.ignoredElements.some(function (ignore) {\n return isRegExp(ignore)\n ? ignore.test(vnode.tag)\n : ignore === vnode.tag\n })\n ) &&\n config.isUnknownElement(vnode.tag)\n )\n }\n\n var creatingElmInVPre = 0;\n\n function createElm (\n vnode,\n insertedVnodeQueue,\n parentElm,\n refElm,\n nested,\n ownerArray,\n index\n ) {\n if (isDef(vnode.elm) && isDef(ownerArray)) {\n // This vnode was used in a previous render!\n // now it's used as a new node, overwriting its elm would cause\n // potential patch errors down the road when it's used as an insertion\n // reference node. Instead, we clone the node on-demand before creating\n // associated DOM element for it.\n vnode = ownerArray[index] = cloneVNode(vnode);\n }\n\n vnode.isRootInsert = !nested; // for transition enter check\n if (createComponent(vnode, insertedVnodeQueue, parentElm, refElm)) {\n return\n }\n\n var data = vnode.data;\n var children = vnode.children;\n var tag = vnode.tag;\n if (isDef(tag)) {\n if (process.env.NODE_ENV !== 'production') {\n if (data && data.pre) {\n creatingElmInVPre++;\n }\n if (isUnknownElement$$1(vnode, creatingElmInVPre)) {\n warn(\n 'Unknown custom element: <' + tag + '> - did you ' +\n 'register the component correctly? For recursive components, ' +\n 'make sure to provide the \"name\" option.',\n vnode.context\n );\n }\n }\n\n vnode.elm = vnode.ns\n ? nodeOps.createElementNS(vnode.ns, tag)\n : nodeOps.createElement(tag, vnode);\n setScope(vnode);\n\n /* istanbul ignore if */\n {\n createChildren(vnode, children, insertedVnodeQueue);\n if (isDef(data)) {\n invokeCreateHooks(vnode, insertedVnodeQueue);\n }\n insert(parentElm, vnode.elm, refElm);\n }\n\n if (process.env.NODE_ENV !== 'production' && data && data.pre) {\n creatingElmInVPre--;\n }\n } else if (isTrue(vnode.isComment)) {\n vnode.elm = nodeOps.createComment(vnode.text);\n insert(parentElm, vnode.elm, refElm);\n } else {\n vnode.elm = nodeOps.createTextNode(vnode.text);\n insert(parentElm, vnode.elm, refElm);\n }\n }\n\n function createComponent (vnode, insertedVnodeQueue, parentElm, refElm) {\n var i = vnode.data;\n if (isDef(i)) {\n var isReactivated = isDef(vnode.componentInstance) && i.keepAlive;\n if (isDef(i = i.hook) && isDef(i = i.init)) {\n i(vnode, false /* hydrating */);\n }\n // after calling the init hook, if the vnode is a child component\n // it should've created a child instance and mounted it. the child\n // component also has set the placeholder vnode's elm.\n // in that case we can just return the element and be done.\n if (isDef(vnode.componentInstance)) {\n initComponent(vnode, insertedVnodeQueue);\n insert(parentElm, vnode.elm, refElm);\n if (isTrue(isReactivated)) {\n reactivateComponent(vnode, insertedVnodeQueue, parentElm, refElm);\n }\n return true\n }\n }\n }\n\n function initComponent (vnode, insertedVnodeQueue) {\n if (isDef(vnode.data.pendingInsert)) {\n insertedVnodeQueue.push.apply(insertedVnodeQueue, vnode.data.pendingInsert);\n vnode.data.pendingInsert = null;\n }\n vnode.elm = vnode.componentInstance.$el;\n if (isPatchable(vnode)) {\n invokeCreateHooks(vnode, insertedVnodeQueue);\n setScope(vnode);\n } else {\n // empty component root.\n // skip all element-related modules except for ref (#3455)\n registerRef(vnode);\n // make sure to invoke the insert hook\n insertedVnodeQueue.push(vnode);\n }\n }\n\n function reactivateComponent (vnode, insertedVnodeQueue, parentElm, refElm) {\n var i;\n // hack for #4339: a reactivated component with inner transition\n // does not trigger because the inner node's created hooks are not called\n // again. It's not ideal to involve module-specific logic in here but\n // there doesn't seem to be a better way to do it.\n var innerNode = vnode;\n while (innerNode.componentInstance) {\n innerNode = innerNode.componentInstance._vnode;\n if (isDef(i = innerNode.data) && isDef(i = i.transition)) {\n for (i = 0; i < cbs.activate.length; ++i) {\n cbs.activate[i](emptyNode, innerNode);\n }\n insertedVnodeQueue.push(innerNode);\n break\n }\n }\n // unlike a newly created component,\n // a reactivated keep-alive component doesn't insert itself\n insert(parentElm, vnode.elm, refElm);\n }\n\n function insert (parent, elm, ref$$1) {\n if (isDef(parent)) {\n if (isDef(ref$$1)) {\n if (nodeOps.parentNode(ref$$1) === parent) {\n nodeOps.insertBefore(parent, elm, ref$$1);\n }\n } else {\n nodeOps.appendChild(parent, elm);\n }\n }\n }\n\n function createChildren (vnode, children, insertedVnodeQueue) {\n if (Array.isArray(children)) {\n if (process.env.NODE_ENV !== 'production') {\n checkDuplicateKeys(children);\n }\n for (var i = 0; i < children.length; ++i) {\n createElm(children[i], insertedVnodeQueue, vnode.elm, null, true, children, i);\n }\n } else if (isPrimitive(vnode.text)) {\n nodeOps.appendChild(vnode.elm, nodeOps.createTextNode(String(vnode.text)));\n }\n }\n\n function isPatchable (vnode) {\n while (vnode.componentInstance) {\n vnode = vnode.componentInstance._vnode;\n }\n return isDef(vnode.tag)\n }\n\n function invokeCreateHooks (vnode, insertedVnodeQueue) {\n for (var i$1 = 0; i$1 < cbs.create.length; ++i$1) {\n cbs.create[i$1](emptyNode, vnode);\n }\n i = vnode.data.hook; // Reuse variable\n if (isDef(i)) {\n if (isDef(i.create)) { i.create(emptyNode, vnode); }\n if (isDef(i.insert)) { insertedVnodeQueue.push(vnode); }\n }\n }\n\n // set scope id attribute for scoped CSS.\n // this is implemented as a special case to avoid the overhead\n // of going through the normal attribute patching process.\n function setScope (vnode) {\n var i;\n if (isDef(i = vnode.fnScopeId)) {\n nodeOps.setStyleScope(vnode.elm, i);\n } else {\n var ancestor = vnode;\n while (ancestor) {\n if (isDef(i = ancestor.context) && isDef(i = i.$options._scopeId)) {\n nodeOps.setStyleScope(vnode.elm, i);\n }\n ancestor = ancestor.parent;\n }\n }\n // for slot content they should also get the scopeId from the host instance.\n if (isDef(i = activeInstance) &&\n i !== vnode.context &&\n i !== vnode.fnContext &&\n isDef(i = i.$options._scopeId)\n ) {\n nodeOps.setStyleScope(vnode.elm, i);\n }\n }\n\n function addVnodes (parentElm, refElm, vnodes, startIdx, endIdx, insertedVnodeQueue) {\n for (; startIdx <= endIdx; ++startIdx) {\n createElm(vnodes[startIdx], insertedVnodeQueue, parentElm, refElm, false, vnodes, startIdx);\n }\n }\n\n function invokeDestroyHook (vnode) {\n var i, j;\n var data = vnode.data;\n if (isDef(data)) {\n if (isDef(i = data.hook) && isDef(i = i.destroy)) { i(vnode); }\n for (i = 0; i < cbs.destroy.length; ++i) { cbs.destroy[i](vnode); }\n }\n if (isDef(i = vnode.children)) {\n for (j = 0; j < vnode.children.length; ++j) {\n invokeDestroyHook(vnode.children[j]);\n }\n }\n }\n\n function removeVnodes (vnodes, startIdx, endIdx) {\n for (; startIdx <= endIdx; ++startIdx) {\n var ch = vnodes[startIdx];\n if (isDef(ch)) {\n if (isDef(ch.tag)) {\n removeAndInvokeRemoveHook(ch);\n invokeDestroyHook(ch);\n } else { // Text node\n removeNode(ch.elm);\n }\n }\n }\n }\n\n function removeAndInvokeRemoveHook (vnode, rm) {\n if (isDef(rm) || isDef(vnode.data)) {\n var i;\n var listeners = cbs.remove.length + 1;\n if (isDef(rm)) {\n // we have a recursively passed down rm callback\n // increase the listeners count\n rm.listeners += listeners;\n } else {\n // directly removing\n rm = createRmCb(vnode.elm, listeners);\n }\n // recursively invoke hooks on child component root node\n if (isDef(i = vnode.componentInstance) && isDef(i = i._vnode) && isDef(i.data)) {\n removeAndInvokeRemoveHook(i, rm);\n }\n for (i = 0; i < cbs.remove.length; ++i) {\n cbs.remove[i](vnode, rm);\n }\n if (isDef(i = vnode.data.hook) && isDef(i = i.remove)) {\n i(vnode, rm);\n } else {\n rm();\n }\n } else {\n removeNode(vnode.elm);\n }\n }\n\n function updateChildren (parentElm, oldCh, newCh, insertedVnodeQueue, removeOnly) {\n var oldStartIdx = 0;\n var newStartIdx = 0;\n var oldEndIdx = oldCh.length - 1;\n var oldStartVnode = oldCh[0];\n var oldEndVnode = oldCh[oldEndIdx];\n var newEndIdx = newCh.length - 1;\n var newStartVnode = newCh[0];\n var newEndVnode = newCh[newEndIdx];\n var oldKeyToIdx, idxInOld, vnodeToMove, refElm;\n\n // removeOnly is a special flag used only by <transition-group>\n // to ensure removed elements stay in correct relative positions\n // during leaving transitions\n var canMove = !removeOnly;\n\n if (process.env.NODE_ENV !== 'production') {\n checkDuplicateKeys(newCh);\n }\n\n while (oldStartIdx <= oldEndIdx && newStartIdx <= newEndIdx) {\n if (isUndef(oldStartVnode)) {\n oldStartVnode = oldCh[++oldStartIdx]; // Vnode has been moved left\n } else if (isUndef(oldEndVnode)) {\n oldEndVnode = oldCh[--oldEndIdx];\n } else if (sameVnode(oldStartVnode, newStartVnode)) {\n patchVnode(oldStartVnode, newStartVnode, insertedVnodeQueue, newCh, newStartIdx);\n oldStartVnode = oldCh[++oldStartIdx];\n newStartVnode = newCh[++newStartIdx];\n } else if (sameVnode(oldEndVnode, newEndVnode)) {\n patchVnode(oldEndVnode, newEndVnode, insertedVnodeQueue, newCh, newEndIdx);\n oldEndVnode = oldCh[--oldEndIdx];\n newEndVnode = newCh[--newEndIdx];\n } else if (sameVnode(oldStartVnode, newEndVnode)) { // Vnode moved right\n patchVnode(oldStartVnode, newEndVnode, insertedVnodeQueue, newCh, newEndIdx);\n canMove && nodeOps.insertBefore(parentElm, oldStartVnode.elm, nodeOps.nextSibling(oldEndVnode.elm));\n oldStartVnode = oldCh[++oldStartIdx];\n newEndVnode = newCh[--newEndIdx];\n } else if (sameVnode(oldEndVnode, newStartVnode)) { // Vnode moved left\n patchVnode(oldEndVnode, newStartVnode, insertedVnodeQueue, newCh, newStartIdx);\n canMove && nodeOps.insertBefore(parentElm, oldEndVnode.elm, oldStartVnode.elm);\n oldEndVnode = oldCh[--oldEndIdx];\n newStartVnode = newCh[++newStartIdx];\n } else {\n if (isUndef(oldKeyToIdx)) { oldKeyToIdx = createKeyToOldIdx(oldCh, oldStartIdx, oldEndIdx); }\n idxInOld = isDef(newStartVnode.key)\n ? oldKeyToIdx[newStartVnode.key]\n : findIdxInOld(newStartVnode, oldCh, oldStartIdx, oldEndIdx);\n if (isUndef(idxInOld)) { // New element\n createElm(newStartVnode, insertedVnodeQueue, parentElm, oldStartVnode.elm, false, newCh, newStartIdx);\n } else {\n vnodeToMove = oldCh[idxInOld];\n if (sameVnode(vnodeToMove, newStartVnode)) {\n patchVnode(vnodeToMove, newStartVnode, insertedVnodeQueue, newCh, newStartIdx);\n oldCh[idxInOld] = undefined;\n canMove && nodeOps.insertBefore(parentElm, vnodeToMove.elm, oldStartVnode.elm);\n } else {\n // same key but different element. treat as new element\n createElm(newStartVnode, insertedVnodeQueue, parentElm, oldStartVnode.elm, false, newCh, newStartIdx);\n }\n }\n newStartVnode = newCh[++newStartIdx];\n }\n }\n if (oldStartIdx > oldEndIdx) {\n refElm = isUndef(newCh[newEndIdx + 1]) ? null : newCh[newEndIdx + 1].elm;\n addVnodes(parentElm, refElm, newCh, newStartIdx, newEndIdx, insertedVnodeQueue);\n } else if (newStartIdx > newEndIdx) {\n removeVnodes(oldCh, oldStartIdx, oldEndIdx);\n }\n }\n\n function checkDuplicateKeys (children) {\n var seenKeys = {};\n for (var i = 0; i < children.length; i++) {\n var vnode = children[i];\n var key = vnode.key;\n if (isDef(key)) {\n if (seenKeys[key]) {\n warn(\n (\"Duplicate keys detected: '\" + key + \"'. This may cause an update error.\"),\n vnode.context\n );\n } else {\n seenKeys[key] = true;\n }\n }\n }\n }\n\n function findIdxInOld (node, oldCh, start, end) {\n for (var i = start; i < end; i++) {\n var c = oldCh[i];\n if (isDef(c) && sameVnode(node, c)) { return i }\n }\n }\n\n function patchVnode (\n oldVnode,\n vnode,\n insertedVnodeQueue,\n ownerArray,\n index,\n removeOnly\n ) {\n if (oldVnode === vnode) {\n return\n }\n\n if (isDef(vnode.elm) && isDef(ownerArray)) {\n // clone reused vnode\n vnode = ownerArray[index] = cloneVNode(vnode);\n }\n\n var elm = vnode.elm = oldVnode.elm;\n\n if (isTrue(oldVnode.isAsyncPlaceholder)) {\n if (isDef(vnode.asyncFactory.resolved)) {\n hydrate(oldVnode.elm, vnode, insertedVnodeQueue);\n } else {\n vnode.isAsyncPlaceholder = true;\n }\n return\n }\n\n // reuse element for static trees.\n // note we only do this if the vnode is cloned -\n // if the new node is not cloned it means the render functions have been\n // reset by the hot-reload-api and we need to do a proper re-render.\n if (isTrue(vnode.isStatic) &&\n isTrue(oldVnode.isStatic) &&\n vnode.key === oldVnode.key &&\n (isTrue(vnode.isCloned) || isTrue(vnode.isOnce))\n ) {\n vnode.componentInstance = oldVnode.componentInstance;\n return\n }\n\n var i;\n var data = vnode.data;\n if (isDef(data) && isDef(i = data.hook) && isDef(i = i.prepatch)) {\n i(oldVnode, vnode);\n }\n\n var oldCh = oldVnode.children;\n var ch = vnode.children;\n if (isDef(data) && isPatchable(vnode)) {\n for (i = 0; i < cbs.update.length; ++i) { cbs.update[i](oldVnode, vnode); }\n if (isDef(i = data.hook) && isDef(i = i.update)) { i(oldVnode, vnode); }\n }\n if (isUndef(vnode.text)) {\n if (isDef(oldCh) && isDef(ch)) {\n if (oldCh !== ch) { updateChildren(elm, oldCh, ch, insertedVnodeQueue, removeOnly); }\n } else if (isDef(ch)) {\n if (process.env.NODE_ENV !== 'production') {\n checkDuplicateKeys(ch);\n }\n if (isDef(oldVnode.text)) { nodeOps.setTextContent(elm, ''); }\n addVnodes(elm, null, ch, 0, ch.length - 1, insertedVnodeQueue);\n } else if (isDef(oldCh)) {\n removeVnodes(oldCh, 0, oldCh.length - 1);\n } else if (isDef(oldVnode.text)) {\n nodeOps.setTextContent(elm, '');\n }\n } else if (oldVnode.text !== vnode.text) {\n nodeOps.setTextContent(elm, vnode.text);\n }\n if (isDef(data)) {\n if (isDef(i = data.hook) && isDef(i = i.postpatch)) { i(oldVnode, vnode); }\n }\n }\n\n function invokeInsertHook (vnode, queue, initial) {\n // delay insert hooks for component root nodes, invoke them after the\n // element is really inserted\n if (isTrue(initial) && isDef(vnode.parent)) {\n vnode.parent.data.pendingInsert = queue;\n } else {\n for (var i = 0; i < queue.length; ++i) {\n queue[i].data.hook.insert(queue[i]);\n }\n }\n }\n\n var hydrationBailed = false;\n // list of modules that can skip create hook during hydration because they\n // are already rendered on the client or has no need for initialization\n // Note: style is excluded because it relies on initial clone for future\n // deep updates (#7063).\n var isRenderedModule = makeMap('attrs,class,staticClass,staticStyle,key');\n\n // Note: this is a browser-only function so we can assume elms are DOM nodes.\n function hydrate (elm, vnode, insertedVnodeQueue, inVPre) {\n var i;\n var tag = vnode.tag;\n var data = vnode.data;\n var children = vnode.children;\n inVPre = inVPre || (data && data.pre);\n vnode.elm = elm;\n\n if (isTrue(vnode.isComment) && isDef(vnode.asyncFactory)) {\n vnode.isAsyncPlaceholder = true;\n return true\n }\n // assert node match\n if (process.env.NODE_ENV !== 'production') {\n if (!assertNodeMatch(elm, vnode, inVPre)) {\n return false\n }\n }\n if (isDef(data)) {\n if (isDef(i = data.hook) && isDef(i = i.init)) { i(vnode, true /* hydrating */); }\n if (isDef(i = vnode.componentInstance)) {\n // child component. it should have hydrated its own tree.\n initComponent(vnode, insertedVnodeQueue);\n return true\n }\n }\n if (isDef(tag)) {\n if (isDef(children)) {\n // empty element, allow client to pick up and populate children\n if (!elm.hasChildNodes()) {\n createChildren(vnode, children, insertedVnodeQueue);\n } else {\n // v-html and domProps: innerHTML\n if (isDef(i = data) && isDef(i = i.domProps) && isDef(i = i.innerHTML)) {\n if (i !== elm.innerHTML) {\n /* istanbul ignore if */\n if (process.env.NODE_ENV !== 'production' &&\n typeof console !== 'undefined' &&\n !hydrationBailed\n ) {\n hydrationBailed = true;\n console.warn('Parent: ', elm);\n console.warn('server innerHTML: ', i);\n console.warn('client innerHTML: ', elm.innerHTML);\n }\n return false\n }\n } else {\n // iterate and compare children lists\n var childrenMatch = true;\n var childNode = elm.firstChild;\n for (var i$1 = 0; i$1 < children.length; i$1++) {\n if (!childNode || !hydrate(childNode, children[i$1], insertedVnodeQueue, inVPre)) {\n childrenMatch = false;\n break\n }\n childNode = childNode.nextSibling;\n }\n // if childNode is not null, it means the actual childNodes list is\n // longer than the virtual children list.\n if (!childrenMatch || childNode) {\n /* istanbul ignore if */\n if (process.env.NODE_ENV !== 'production' &&\n typeof console !== 'undefined' &&\n !hydrationBailed\n ) {\n hydrationBailed = true;\n console.warn('Parent: ', elm);\n console.warn('Mismatching childNodes vs. VNodes: ', elm.childNodes, children);\n }\n return false\n }\n }\n }\n }\n if (isDef(data)) {\n var fullInvoke = false;\n for (var key in data) {\n if (!isRenderedModule(key)) {\n fullInvoke = true;\n invokeCreateHooks(vnode, insertedVnodeQueue);\n break\n }\n }\n if (!fullInvoke && data['class']) {\n // ensure collecting deps for deep class bindings for future updates\n traverse(data['class']);\n }\n }\n } else if (elm.data !== vnode.text) {\n elm.data = vnode.text;\n }\n return true\n }\n\n function assertNodeMatch (node, vnode, inVPre) {\n if (isDef(vnode.tag)) {\n return vnode.tag.indexOf('vue-component') === 0 || (\n !isUnknownElement$$1(vnode, inVPre) &&\n vnode.tag.toLowerCase() === (node.tagName && node.tagName.toLowerCase())\n )\n } else {\n return node.nodeType === (vnode.isComment ? 8 : 3)\n }\n }\n\n return function patch (oldVnode, vnode, hydrating, removeOnly) {\n if (isUndef(vnode)) {\n if (isDef(oldVnode)) { invokeDestroyHook(oldVnode); }\n return\n }\n\n var isInitialPatch = false;\n var insertedVnodeQueue = [];\n\n if (isUndef(oldVnode)) {\n // empty mount (likely as component), create new root element\n isInitialPatch = true;\n createElm(vnode, insertedVnodeQueue);\n } else {\n var isRealElement = isDef(oldVnode.nodeType);\n if (!isRealElement && sameVnode(oldVnode, vnode)) {\n // patch existing root node\n patchVnode(oldVnode, vnode, insertedVnodeQueue, null, null, removeOnly);\n } else {\n if (isRealElement) {\n // mounting to a real element\n // check if this is server-rendered content and if we can perform\n // a successful hydration.\n if (oldVnode.nodeType === 1 && oldVnode.hasAttribute(SSR_ATTR)) {\n oldVnode.removeAttribute(SSR_ATTR);\n hydrating = true;\n }\n if (isTrue(hydrating)) {\n if (hydrate(oldVnode, vnode, insertedVnodeQueue)) {\n invokeInsertHook(vnode, insertedVnodeQueue, true);\n return oldVnode\n } else if (process.env.NODE_ENV !== 'production') {\n warn(\n 'The client-side rendered virtual DOM tree is not matching ' +\n 'server-rendered content. This is likely caused by incorrect ' +\n 'HTML markup, for example nesting block-level elements inside ' +\n '<p>, or missing <tbody>. Bailing hydration and performing ' +\n 'full client-side render.'\n );\n }\n }\n // either not server-rendered, or hydration failed.\n // create an empty node and replace it\n oldVnode = emptyNodeAt(oldVnode);\n }\n\n // replacing existing element\n var oldElm = oldVnode.elm;\n var parentElm = nodeOps.parentNode(oldElm);\n\n // create new node\n createElm(\n vnode,\n insertedVnodeQueue,\n // extremely rare edge case: do not insert if old element is in a\n // leaving transition. Only happens when combining transition +\n // keep-alive + HOCs. (#4590)\n oldElm._leaveCb ? null : parentElm,\n nodeOps.nextSibling(oldElm)\n );\n\n // update parent placeholder node element, recursively\n if (isDef(vnode.parent)) {\n var ancestor = vnode.parent;\n var patchable = isPatchable(vnode);\n while (ancestor) {\n for (var i = 0; i < cbs.destroy.length; ++i) {\n cbs.destroy[i](ancestor);\n }\n ancestor.elm = vnode.elm;\n if (patchable) {\n for (var i$1 = 0; i$1 < cbs.create.length; ++i$1) {\n cbs.create[i$1](emptyNode, ancestor);\n }\n // #6513\n // invoke insert hooks that may have been merged by create hooks.\n // e.g. for directives that uses the \"inserted\" hook.\n var insert = ancestor.data.hook.insert;\n if (insert.merged) {\n // start at index 1 to avoid re-invoking component mounted hook\n for (var i$2 = 1; i$2 < insert.fns.length; i$2++) {\n insert.fns[i$2]();\n }\n }\n } else {\n registerRef(ancestor);\n }\n ancestor = ancestor.parent;\n }\n }\n\n // destroy old node\n if (isDef(parentElm)) {\n removeVnodes([oldVnode], 0, 0);\n } else if (isDef(oldVnode.tag)) {\n invokeDestroyHook(oldVnode);\n }\n }\n }\n\n invokeInsertHook(vnode, insertedVnodeQueue, isInitialPatch);\n return vnode.elm\n }\n}\n\n/* */\n\nvar directives = {\n create: updateDirectives,\n update: updateDirectives,\n destroy: function unbindDirectives (vnode) {\n updateDirectives(vnode, emptyNode);\n }\n};\n\nfunction updateDirectives (oldVnode, vnode) {\n if (oldVnode.data.directives || vnode.data.directives) {\n _update(oldVnode, vnode);\n }\n}\n\nfunction _update (oldVnode, vnode) {\n var isCreate = oldVnode === emptyNode;\n var isDestroy = vnode === emptyNode;\n var oldDirs = normalizeDirectives$1(oldVnode.data.directives, oldVnode.context);\n var newDirs = normalizeDirectives$1(vnode.data.directives, vnode.context);\n\n var dirsWithInsert = [];\n var dirsWithPostpatch = [];\n\n var key, oldDir, dir;\n for (key in newDirs) {\n oldDir = oldDirs[key];\n dir = newDirs[key];\n if (!oldDir) {\n // new directive, bind\n callHook$1(dir, 'bind', vnode, oldVnode);\n if (dir.def && dir.def.inserted) {\n dirsWithInsert.push(dir);\n }\n } else {\n // existing directive, update\n dir.oldValue = oldDir.value;\n dir.oldArg = oldDir.arg;\n callHook$1(dir, 'update', vnode, oldVnode);\n if (dir.def && dir.def.componentUpdated) {\n dirsWithPostpatch.push(dir);\n }\n }\n }\n\n if (dirsWithInsert.length) {\n var callInsert = function () {\n for (var i = 0; i < dirsWithInsert.length; i++) {\n callHook$1(dirsWithInsert[i], 'inserted', vnode, oldVnode);\n }\n };\n if (isCreate) {\n mergeVNodeHook(vnode, 'insert', callInsert);\n } else {\n callInsert();\n }\n }\n\n if (dirsWithPostpatch.length) {\n mergeVNodeHook(vnode, 'postpatch', function () {\n for (var i = 0; i < dirsWithPostpatch.length; i++) {\n callHook$1(dirsWithPostpatch[i], 'componentUpdated', vnode, oldVnode);\n }\n });\n }\n\n if (!isCreate) {\n for (key in oldDirs) {\n if (!newDirs[key]) {\n // no longer present, unbind\n callHook$1(oldDirs[key], 'unbind', oldVnode, oldVnode, isDestroy);\n }\n }\n }\n}\n\nvar emptyModifiers = Object.create(null);\n\nfunction normalizeDirectives$1 (\n dirs,\n vm\n) {\n var res = Object.create(null);\n if (!dirs) {\n // $flow-disable-line\n return res\n }\n var i, dir;\n for (i = 0; i < dirs.length; i++) {\n dir = dirs[i];\n if (!dir.modifiers) {\n // $flow-disable-line\n dir.modifiers = emptyModifiers;\n }\n res[getRawDirName(dir)] = dir;\n dir.def = resolveAsset(vm.$options, 'directives', dir.name, true);\n }\n // $flow-disable-line\n return res\n}\n\nfunction getRawDirName (dir) {\n return dir.rawName || ((dir.name) + \".\" + (Object.keys(dir.modifiers || {}).join('.')))\n}\n\nfunction callHook$1 (dir, hook, vnode, oldVnode, isDestroy) {\n var fn = dir.def && dir.def[hook];\n if (fn) {\n try {\n fn(vnode.elm, dir, vnode, oldVnode, isDestroy);\n } catch (e) {\n handleError(e, vnode.context, (\"directive \" + (dir.name) + \" \" + hook + \" hook\"));\n }\n }\n}\n\nvar baseModules = [\n ref,\n directives\n];\n\n/* */\n\nfunction updateAttrs (oldVnode, vnode) {\n var opts = vnode.componentOptions;\n if (isDef(opts) && opts.Ctor.options.inheritAttrs === false) {\n return\n }\n if (isUndef(oldVnode.data.attrs) && isUndef(vnode.data.attrs)) {\n return\n }\n var key, cur, old;\n var elm = vnode.elm;\n var oldAttrs = oldVnode.data.attrs || {};\n var attrs = vnode.data.attrs || {};\n // clone observed objects, as the user probably wants to mutate it\n if (isDef(attrs.__ob__)) {\n attrs = vnode.data.attrs = extend({}, attrs);\n }\n\n for (key in attrs) {\n cur = attrs[key];\n old = oldAttrs[key];\n if (old !== cur) {\n setAttr(elm, key, cur);\n }\n }\n // #4391: in IE9, setting type can reset value for input[type=radio]\n // #6666: IE/Edge forces progress value down to 1 before setting a max\n /* istanbul ignore if */\n if ((isIE || isEdge) && attrs.value !== oldAttrs.value) {\n setAttr(elm, 'value', attrs.value);\n }\n for (key in oldAttrs) {\n if (isUndef(attrs[key])) {\n if (isXlink(key)) {\n elm.removeAttributeNS(xlinkNS, getXlinkProp(key));\n } else if (!isEnumeratedAttr(key)) {\n elm.removeAttribute(key);\n }\n }\n }\n}\n\nfunction setAttr (el, key, value) {\n if (el.tagName.indexOf('-') > -1) {\n baseSetAttr(el, key, value);\n } else if (isBooleanAttr(key)) {\n // set attribute for blank value\n // e.g. <option disabled>Select one</option>\n if (isFalsyAttrValue(value)) {\n el.removeAttribute(key);\n } else {\n // technically allowfullscreen is a boolean attribute for <iframe>,\n // but Flash expects a value of \"true\" when used on <embed> tag\n value = key === 'allowfullscreen' && el.tagName === 'EMBED'\n ? 'true'\n : key;\n el.setAttribute(key, value);\n }\n } else if (isEnumeratedAttr(key)) {\n el.setAttribute(key, convertEnumeratedValue(key, value));\n } else if (isXlink(key)) {\n if (isFalsyAttrValue(value)) {\n el.removeAttributeNS(xlinkNS, getXlinkProp(key));\n } else {\n el.setAttributeNS(xlinkNS, key, value);\n }\n } else {\n baseSetAttr(el, key, value);\n }\n}\n\nfunction baseSetAttr (el, key, value) {\n if (isFalsyAttrValue(value)) {\n el.removeAttribute(key);\n } else {\n // #7138: IE10 & 11 fires input event when setting placeholder on\n // <textarea>... block the first input event and remove the blocker\n // immediately.\n /* istanbul ignore if */\n if (\n isIE && !isIE9 &&\n el.tagName === 'TEXTAREA' &&\n key === 'placeholder' && value !== '' && !el.__ieph\n ) {\n var blocker = function (e) {\n e.stopImmediatePropagation();\n el.removeEventListener('input', blocker);\n };\n el.addEventListener('input', blocker);\n // $flow-disable-line\n el.__ieph = true; /* IE placeholder patched */\n }\n el.setAttribute(key, value);\n }\n}\n\nvar attrs = {\n create: updateAttrs,\n update: updateAttrs\n};\n\n/* */\n\nfunction updateClass (oldVnode, vnode) {\n var el = vnode.elm;\n var data = vnode.data;\n var oldData = oldVnode.data;\n if (\n isUndef(data.staticClass) &&\n isUndef(data.class) && (\n isUndef(oldData) || (\n isUndef(oldData.staticClass) &&\n isUndef(oldData.class)\n )\n )\n ) {\n return\n }\n\n var cls = genClassForVnode(vnode);\n\n // handle transition classes\n var transitionClass = el._transitionClasses;\n if (isDef(transitionClass)) {\n cls = concat(cls, stringifyClass(transitionClass));\n }\n\n // set the class\n if (cls !== el._prevClass) {\n el.setAttribute('class', cls);\n el._prevClass = cls;\n }\n}\n\nvar klass = {\n create: updateClass,\n update: updateClass\n};\n\n/* */\n\n/* */\n\n/* */\n\n/* */\n\n// in some cases, the event used has to be determined at runtime\n// so we used some reserved tokens during compile.\nvar RANGE_TOKEN = '__r';\nvar CHECKBOX_RADIO_TOKEN = '__c';\n\n/* */\n\n// normalize v-model event tokens that can only be determined at runtime.\n// it's important to place the event as the first in the array because\n// the whole point is ensuring the v-model callback gets called before\n// user-attached handlers.\nfunction normalizeEvents (on) {\n /* istanbul ignore if */\n if (isDef(on[RANGE_TOKEN])) {\n // IE input[type=range] only supports `change` event\n var event = isIE ? 'change' : 'input';\n on[event] = [].concat(on[RANGE_TOKEN], on[event] || []);\n delete on[RANGE_TOKEN];\n }\n // This was originally intended to fix #4521 but no longer necessary\n // after 2.5. Keeping it for backwards compat with generated code from < 2.4\n /* istanbul ignore if */\n if (isDef(on[CHECKBOX_RADIO_TOKEN])) {\n on.change = [].concat(on[CHECKBOX_RADIO_TOKEN], on.change || []);\n delete on[CHECKBOX_RADIO_TOKEN];\n }\n}\n\nvar target$1;\n\nfunction createOnceHandler$1 (event, handler, capture) {\n var _target = target$1; // save current target element in closure\n return function onceHandler () {\n var res = handler.apply(null, arguments);\n if (res !== null) {\n remove$2(event, onceHandler, capture, _target);\n }\n }\n}\n\n// #9446: Firefox <= 53 (in particular, ESR 52) has incorrect Event.timeStamp\n// implementation and does not fire microtasks in between event propagation, so\n// safe to exclude.\nvar useMicrotaskFix = isUsingMicroTask && !(isFF && Number(isFF[1]) <= 53);\n\nfunction add$1 (\n name,\n handler,\n capture,\n passive\n) {\n // async edge case #6566: inner click event triggers patch, event handler\n // attached to outer element during patch, and triggered again. This\n // happens because browsers fire microtask ticks between event propagation.\n // the solution is simple: we save the timestamp when a handler is attached,\n // and the handler would only fire if the event passed to it was fired\n // AFTER it was attached.\n if (useMicrotaskFix) {\n var attachedTimestamp = currentFlushTimestamp;\n var original = handler;\n handler = original._wrapper = function (e) {\n if (\n // no bubbling, should always fire.\n // this is just a safety net in case event.timeStamp is unreliable in\n // certain weird environments...\n e.target === e.currentTarget ||\n // event is fired after handler attachment\n e.timeStamp >= attachedTimestamp ||\n // bail for environments that have buggy event.timeStamp implementations\n // #9462 iOS 9 bug: event.timeStamp is 0 after history.pushState\n // #9681 QtWebEngine event.timeStamp is negative value\n e.timeStamp <= 0 ||\n // #9448 bail if event is fired in another document in a multi-page\n // electron/nw.js app, since event.timeStamp will be using a different\n // starting reference\n e.target.ownerDocument !== document\n ) {\n return original.apply(this, arguments)\n }\n };\n }\n target$1.addEventListener(\n name,\n handler,\n supportsPassive\n ? { capture: capture, passive: passive }\n : capture\n );\n}\n\nfunction remove$2 (\n name,\n handler,\n capture,\n _target\n) {\n (_target || target$1).removeEventListener(\n name,\n handler._wrapper || handler,\n capture\n );\n}\n\nfunction updateDOMListeners (oldVnode, vnode) {\n if (isUndef(oldVnode.data.on) && isUndef(vnode.data.on)) {\n return\n }\n var on = vnode.data.on || {};\n var oldOn = oldVnode.data.on || {};\n target$1 = vnode.elm;\n normalizeEvents(on);\n updateListeners(on, oldOn, add$1, remove$2, createOnceHandler$1, vnode.context);\n target$1 = undefined;\n}\n\nvar events = {\n create: updateDOMListeners,\n update: updateDOMListeners\n};\n\n/* */\n\nvar svgContainer;\n\nfunction updateDOMProps (oldVnode, vnode) {\n if (isUndef(oldVnode.data.domProps) && isUndef(vnode.data.domProps)) {\n return\n }\n var key, cur;\n var elm = vnode.elm;\n var oldProps = oldVnode.data.domProps || {};\n var props = vnode.data.domProps || {};\n // clone observed objects, as the user probably wants to mutate it\n if (isDef(props.__ob__)) {\n props = vnode.data.domProps = extend({}, props);\n }\n\n for (key in oldProps) {\n if (!(key in props)) {\n elm[key] = '';\n }\n }\n\n for (key in props) {\n cur = props[key];\n // ignore children if the node has textContent or innerHTML,\n // as these will throw away existing DOM nodes and cause removal errors\n // on subsequent patches (#3360)\n if (key === 'textContent' || key === 'innerHTML') {\n if (vnode.children) { vnode.children.length = 0; }\n if (cur === oldProps[key]) { continue }\n // #6601 work around Chrome version <= 55 bug where single textNode\n // replaced by innerHTML/textContent retains its parentNode property\n if (elm.childNodes.length === 1) {\n elm.removeChild(elm.childNodes[0]);\n }\n }\n\n if (key === 'value' && elm.tagName !== 'PROGRESS') {\n // store value as _value as well since\n // non-string values will be stringified\n elm._value = cur;\n // avoid resetting cursor position when value is the same\n var strCur = isUndef(cur) ? '' : String(cur);\n if (shouldUpdateValue(elm, strCur)) {\n elm.value = strCur;\n }\n } else if (key === 'innerHTML' && isSVG(elm.tagName) && isUndef(elm.innerHTML)) {\n // IE doesn't support innerHTML for SVG elements\n svgContainer = svgContainer || document.createElement('div');\n svgContainer.innerHTML = \"<svg>\" + cur + \"</svg>\";\n var svg = svgContainer.firstChild;\n while (elm.firstChild) {\n elm.removeChild(elm.firstChild);\n }\n while (svg.firstChild) {\n elm.appendChild(svg.firstChild);\n }\n } else if (\n // skip the update if old and new VDOM state is the same.\n // `value` is handled separately because the DOM value may be temporarily\n // out of sync with VDOM state due to focus, composition and modifiers.\n // This #4521 by skipping the unnecesarry `checked` update.\n cur !== oldProps[key]\n ) {\n // some property updates can throw\n // e.g. `value` on <progress> w/ non-finite value\n try {\n elm[key] = cur;\n } catch (e) {}\n }\n }\n}\n\n// check platforms/web/util/attrs.js acceptValue\n\n\nfunction shouldUpdateValue (elm, checkVal) {\n return (!elm.composing && (\n elm.tagName === 'OPTION' ||\n isNotInFocusAndDirty(elm, checkVal) ||\n isDirtyWithModifiers(elm, checkVal)\n ))\n}\n\nfunction isNotInFocusAndDirty (elm, checkVal) {\n // return true when textbox (.number and .trim) loses focus and its value is\n // not equal to the updated value\n var notInFocus = true;\n // #6157\n // work around IE bug when accessing document.activeElement in an iframe\n try { notInFocus = document.activeElement !== elm; } catch (e) {}\n return notInFocus && elm.value !== checkVal\n}\n\nfunction isDirtyWithModifiers (elm, newVal) {\n var value = elm.value;\n var modifiers = elm._vModifiers; // injected by v-model runtime\n if (isDef(modifiers)) {\n if (modifiers.number) {\n return toNumber(value) !== toNumber(newVal)\n }\n if (modifiers.trim) {\n return value.trim() !== newVal.trim()\n }\n }\n return value !== newVal\n}\n\nvar domProps = {\n create: updateDOMProps,\n update: updateDOMProps\n};\n\n/* */\n\nvar parseStyleText = cached(function (cssText) {\n var res = {};\n var listDelimiter = /;(?![^(]*\\))/g;\n var propertyDelimiter = /:(.+)/;\n cssText.split(listDelimiter).forEach(function (item) {\n if (item) {\n var tmp = item.split(propertyDelimiter);\n tmp.length > 1 && (res[tmp[0].trim()] = tmp[1].trim());\n }\n });\n return res\n});\n\n// merge static and dynamic style data on the same vnode\nfunction normalizeStyleData (data) {\n var style = normalizeStyleBinding(data.style);\n // static style is pre-processed into an object during compilation\n // and is always a fresh object, so it's safe to merge into it\n return data.staticStyle\n ? extend(data.staticStyle, style)\n : style\n}\n\n// normalize possible array / string values into Object\nfunction normalizeStyleBinding (bindingStyle) {\n if (Array.isArray(bindingStyle)) {\n return toObject(bindingStyle)\n }\n if (typeof bindingStyle === 'string') {\n return parseStyleText(bindingStyle)\n }\n return bindingStyle\n}\n\n/**\n * parent component style should be after child's\n * so that parent component's style could override it\n */\nfunction getStyle (vnode, checkChild) {\n var res = {};\n var styleData;\n\n if (checkChild) {\n var childNode = vnode;\n while (childNode.componentInstance) {\n childNode = childNode.componentInstance._vnode;\n if (\n childNode && childNode.data &&\n (styleData = normalizeStyleData(childNode.data))\n ) {\n extend(res, styleData);\n }\n }\n }\n\n if ((styleData = normalizeStyleData(vnode.data))) {\n extend(res, styleData);\n }\n\n var parentNode = vnode;\n while ((parentNode = parentNode.parent)) {\n if (parentNode.data && (styleData = normalizeStyleData(parentNode.data))) {\n extend(res, styleData);\n }\n }\n return res\n}\n\n/* */\n\nvar cssVarRE = /^--/;\nvar importantRE = /\\s*!important$/;\nvar setProp = function (el, name, val) {\n /* istanbul ignore if */\n if (cssVarRE.test(name)) {\n el.style.setProperty(name, val);\n } else if (importantRE.test(val)) {\n el.style.setProperty(hyphenate(name), val.replace(importantRE, ''), 'important');\n } else {\n var normalizedName = normalize(name);\n if (Array.isArray(val)) {\n // Support values array created by autoprefixer, e.g.\n // {display: [\"-webkit-box\", \"-ms-flexbox\", \"flex\"]}\n // Set them one by one, and the browser will only set those it can recognize\n for (var i = 0, len = val.length; i < len; i++) {\n el.style[normalizedName] = val[i];\n }\n } else {\n el.style[normalizedName] = val;\n }\n }\n};\n\nvar vendorNames = ['Webkit', 'Moz', 'ms'];\n\nvar emptyStyle;\nvar normalize = cached(function (prop) {\n emptyStyle = emptyStyle || document.createElement('div').style;\n prop = camelize(prop);\n if (prop !== 'filter' && (prop in emptyStyle)) {\n return prop\n }\n var capName = prop.charAt(0).toUpperCase() + prop.slice(1);\n for (var i = 0; i < vendorNames.length; i++) {\n var name = vendorNames[i] + capName;\n if (name in emptyStyle) {\n return name\n }\n }\n});\n\nfunction updateStyle (oldVnode, vnode) {\n var data = vnode.data;\n var oldData = oldVnode.data;\n\n if (isUndef(data.staticStyle) && isUndef(data.style) &&\n isUndef(oldData.staticStyle) && isUndef(oldData.style)\n ) {\n return\n }\n\n var cur, name;\n var el = vnode.elm;\n var oldStaticStyle = oldData.staticStyle;\n var oldStyleBinding = oldData.normalizedStyle || oldData.style || {};\n\n // if static style exists, stylebinding already merged into it when doing normalizeStyleData\n var oldStyle = oldStaticStyle || oldStyleBinding;\n\n var style = normalizeStyleBinding(vnode.data.style) || {};\n\n // store normalized style under a different key for next diff\n // make sure to clone it if it's reactive, since the user likely wants\n // to mutate it.\n vnode.data.normalizedStyle = isDef(style.__ob__)\n ? extend({}, style)\n : style;\n\n var newStyle = getStyle(vnode, true);\n\n for (name in oldStyle) {\n if (isUndef(newStyle[name])) {\n setProp(el, name, '');\n }\n }\n for (name in newStyle) {\n cur = newStyle[name];\n if (cur !== oldStyle[name]) {\n // ie9 setting to null has no effect, must use empty string\n setProp(el, name, cur == null ? '' : cur);\n }\n }\n}\n\nvar style = {\n create: updateStyle,\n update: updateStyle\n};\n\n/* */\n\nvar whitespaceRE = /\\s+/;\n\n/**\n * Add class with compatibility for SVG since classList is not supported on\n * SVG elements in IE\n */\nfunction addClass (el, cls) {\n /* istanbul ignore if */\n if (!cls || !(cls = cls.trim())) {\n return\n }\n\n /* istanbul ignore else */\n if (el.classList) {\n if (cls.indexOf(' ') > -1) {\n cls.split(whitespaceRE).forEach(function (c) { return el.classList.add(c); });\n } else {\n el.classList.add(cls);\n }\n } else {\n var cur = \" \" + (el.getAttribute('class') || '') + \" \";\n if (cur.indexOf(' ' + cls + ' ') < 0) {\n el.setAttribute('class', (cur + cls).trim());\n }\n }\n}\n\n/**\n * Remove class with compatibility for SVG since classList is not supported on\n * SVG elements in IE\n */\nfunction removeClass (el, cls) {\n /* istanbul ignore if */\n if (!cls || !(cls = cls.trim())) {\n return\n }\n\n /* istanbul ignore else */\n if (el.classList) {\n if (cls.indexOf(' ') > -1) {\n cls.split(whitespaceRE).forEach(function (c) { return el.classList.remove(c); });\n } else {\n el.classList.remove(cls);\n }\n if (!el.classList.length) {\n el.removeAttribute('class');\n }\n } else {\n var cur = \" \" + (el.getAttribute('class') || '') + \" \";\n var tar = ' ' + cls + ' ';\n while (cur.indexOf(tar) >= 0) {\n cur = cur.replace(tar, ' ');\n }\n cur = cur.trim();\n if (cur) {\n el.setAttribute('class', cur);\n } else {\n el.removeAttribute('class');\n }\n }\n}\n\n/* */\n\nfunction resolveTransition (def$$1) {\n if (!def$$1) {\n return\n }\n /* istanbul ignore else */\n if (typeof def$$1 === 'object') {\n var res = {};\n if (def$$1.css !== false) {\n extend(res, autoCssTransition(def$$1.name || 'v'));\n }\n extend(res, def$$1);\n return res\n } else if (typeof def$$1 === 'string') {\n return autoCssTransition(def$$1)\n }\n}\n\nvar autoCssTransition = cached(function (name) {\n return {\n enterClass: (name + \"-enter\"),\n enterToClass: (name + \"-enter-to\"),\n enterActiveClass: (name + \"-enter-active\"),\n leaveClass: (name + \"-leave\"),\n leaveToClass: (name + \"-leave-to\"),\n leaveActiveClass: (name + \"-leave-active\")\n }\n});\n\nvar hasTransition = inBrowser && !isIE9;\nvar TRANSITION = 'transition';\nvar ANIMATION = 'animation';\n\n// Transition property/event sniffing\nvar transitionProp = 'transition';\nvar transitionEndEvent = 'transitionend';\nvar animationProp = 'animation';\nvar animationEndEvent = 'animationend';\nif (hasTransition) {\n /* istanbul ignore if */\n if (window.ontransitionend === undefined &&\n window.onwebkittransitionend !== undefined\n ) {\n transitionProp = 'WebkitTransition';\n transitionEndEvent = 'webkitTransitionEnd';\n }\n if (window.onanimationend === undefined &&\n window.onwebkitanimationend !== undefined\n ) {\n animationProp = 'WebkitAnimation';\n animationEndEvent = 'webkitAnimationEnd';\n }\n}\n\n// binding to window is necessary to make hot reload work in IE in strict mode\nvar raf = inBrowser\n ? window.requestAnimationFrame\n ? window.requestAnimationFrame.bind(window)\n : setTimeout\n : /* istanbul ignore next */ function (fn) { return fn(); };\n\nfunction nextFrame (fn) {\n raf(function () {\n raf(fn);\n });\n}\n\nfunction addTransitionClass (el, cls) {\n var transitionClasses = el._transitionClasses || (el._transitionClasses = []);\n if (transitionClasses.indexOf(cls) < 0) {\n transitionClasses.push(cls);\n addClass(el, cls);\n }\n}\n\nfunction removeTransitionClass (el, cls) {\n if (el._transitionClasses) {\n remove(el._transitionClasses, cls);\n }\n removeClass(el, cls);\n}\n\nfunction whenTransitionEnds (\n el,\n expectedType,\n cb\n) {\n var ref = getTransitionInfo(el, expectedType);\n var type = ref.type;\n var timeout = ref.timeout;\n var propCount = ref.propCount;\n if (!type) { return cb() }\n var event = type === TRANSITION ? transitionEndEvent : animationEndEvent;\n var ended = 0;\n var end = function () {\n el.removeEventListener(event, onEnd);\n cb();\n };\n var onEnd = function (e) {\n if (e.target === el) {\n if (++ended >= propCount) {\n end();\n }\n }\n };\n setTimeout(function () {\n if (ended < propCount) {\n end();\n }\n }, timeout + 1);\n el.addEventListener(event, onEnd);\n}\n\nvar transformRE = /\\b(transform|all)(,|$)/;\n\nfunction getTransitionInfo (el, expectedType) {\n var styles = window.getComputedStyle(el);\n // JSDOM may return undefined for transition properties\n var transitionDelays = (styles[transitionProp + 'Delay'] || '').split(', ');\n var transitionDurations = (styles[transitionProp + 'Duration'] || '').split(', ');\n var transitionTimeout = getTimeout(transitionDelays, transitionDurations);\n var animationDelays = (styles[animationProp + 'Delay'] || '').split(', ');\n var animationDurations = (styles[animationProp + 'Duration'] || '').split(', ');\n var animationTimeout = getTimeout(animationDelays, animationDurations);\n\n var type;\n var timeout = 0;\n var propCount = 0;\n /* istanbul ignore if */\n if (expectedType === TRANSITION) {\n if (transitionTimeout > 0) {\n type = TRANSITION;\n timeout = transitionTimeout;\n propCount = transitionDurations.length;\n }\n } else if (expectedType === ANIMATION) {\n if (animationTimeout > 0) {\n type = ANIMATION;\n timeout = animationTimeout;\n propCount = animationDurations.length;\n }\n } else {\n timeout = Math.max(transitionTimeout, animationTimeout);\n type = timeout > 0\n ? transitionTimeout > animationTimeout\n ? TRANSITION\n : ANIMATION\n : null;\n propCount = type\n ? type === TRANSITION\n ? transitionDurations.length\n : animationDurations.length\n : 0;\n }\n var hasTransform =\n type === TRANSITION &&\n transformRE.test(styles[transitionProp + 'Property']);\n return {\n type: type,\n timeout: timeout,\n propCount: propCount,\n hasTransform: hasTransform\n }\n}\n\nfunction getTimeout (delays, durations) {\n /* istanbul ignore next */\n while (delays.length < durations.length) {\n delays = delays.concat(delays);\n }\n\n return Math.max.apply(null, durations.map(function (d, i) {\n return toMs(d) + toMs(delays[i])\n }))\n}\n\n// Old versions of Chromium (below 61.0.3163.100) formats floating pointer numbers\n// in a locale-dependent way, using a comma instead of a dot.\n// If comma is not replaced with a dot, the input will be rounded down (i.e. acting\n// as a floor function) causing unexpected behaviors\nfunction toMs (s) {\n return Number(s.slice(0, -1).replace(',', '.')) * 1000\n}\n\n/* */\n\nfunction enter (vnode, toggleDisplay) {\n var el = vnode.elm;\n\n // call leave callback now\n if (isDef(el._leaveCb)) {\n el._leaveCb.cancelled = true;\n el._leaveCb();\n }\n\n var data = resolveTransition(vnode.data.transition);\n if (isUndef(data)) {\n return\n }\n\n /* istanbul ignore if */\n if (isDef(el._enterCb) || el.nodeType !== 1) {\n return\n }\n\n var css = data.css;\n var type = data.type;\n var enterClass = data.enterClass;\n var enterToClass = data.enterToClass;\n var enterActiveClass = data.enterActiveClass;\n var appearClass = data.appearClass;\n var appearToClass = data.appearToClass;\n var appearActiveClass = data.appearActiveClass;\n var beforeEnter = data.beforeEnter;\n var enter = data.enter;\n var afterEnter = data.afterEnter;\n var enterCancelled = data.enterCancelled;\n var beforeAppear = data.beforeAppear;\n var appear = data.appear;\n var afterAppear = data.afterAppear;\n var appearCancelled = data.appearCancelled;\n var duration = data.duration;\n\n // activeInstance will always be the <transition> component managing this\n // transition. One edge case to check is when the <transition> is placed\n // as the root node of a child component. In that case we need to check\n // <transition>'s parent for appear check.\n var context = activeInstance;\n var transitionNode = activeInstance.$vnode;\n while (transitionNode && transitionNode.parent) {\n context = transitionNode.context;\n transitionNode = transitionNode.parent;\n }\n\n var isAppear = !context._isMounted || !vnode.isRootInsert;\n\n if (isAppear && !appear && appear !== '') {\n return\n }\n\n var startClass = isAppear && appearClass\n ? appearClass\n : enterClass;\n var activeClass = isAppear && appearActiveClass\n ? appearActiveClass\n : enterActiveClass;\n var toClass = isAppear && appearToClass\n ? appearToClass\n : enterToClass;\n\n var beforeEnterHook = isAppear\n ? (beforeAppear || beforeEnter)\n : beforeEnter;\n var enterHook = isAppear\n ? (typeof appear === 'function' ? appear : enter)\n : enter;\n var afterEnterHook = isAppear\n ? (afterAppear || afterEnter)\n : afterEnter;\n var enterCancelledHook = isAppear\n ? (appearCancelled || enterCancelled)\n : enterCancelled;\n\n var explicitEnterDuration = toNumber(\n isObject(duration)\n ? duration.enter\n : duration\n );\n\n if (process.env.NODE_ENV !== 'production' && explicitEnterDuration != null) {\n checkDuration(explicitEnterDuration, 'enter', vnode);\n }\n\n var expectsCSS = css !== false && !isIE9;\n var userWantsControl = getHookArgumentsLength(enterHook);\n\n var cb = el._enterCb = once(function () {\n if (expectsCSS) {\n removeTransitionClass(el, toClass);\n removeTransitionClass(el, activeClass);\n }\n if (cb.cancelled) {\n if (expectsCSS) {\n removeTransitionClass(el, startClass);\n }\n enterCancelledHook && enterCancelledHook(el);\n } else {\n afterEnterHook && afterEnterHook(el);\n }\n el._enterCb = null;\n });\n\n if (!vnode.data.show) {\n // remove pending leave element on enter by injecting an insert hook\n mergeVNodeHook(vnode, 'insert', function () {\n var parent = el.parentNode;\n var pendingNode = parent && parent._pending && parent._pending[vnode.key];\n if (pendingNode &&\n pendingNode.tag === vnode.tag &&\n pendingNode.elm._leaveCb\n ) {\n pendingNode.elm._leaveCb();\n }\n enterHook && enterHook(el, cb);\n });\n }\n\n // start enter transition\n beforeEnterHook && beforeEnterHook(el);\n if (expectsCSS) {\n addTransitionClass(el, startClass);\n addTransitionClass(el, activeClass);\n nextFrame(function () {\n removeTransitionClass(el, startClass);\n if (!cb.cancelled) {\n addTransitionClass(el, toClass);\n if (!userWantsControl) {\n if (isValidDuration(explicitEnterDuration)) {\n setTimeout(cb, explicitEnterDuration);\n } else {\n whenTransitionEnds(el, type, cb);\n }\n }\n }\n });\n }\n\n if (vnode.data.show) {\n toggleDisplay && toggleDisplay();\n enterHook && enterHook(el, cb);\n }\n\n if (!expectsCSS && !userWantsControl) {\n cb();\n }\n}\n\nfunction leave (vnode, rm) {\n var el = vnode.elm;\n\n // call enter callback now\n if (isDef(el._enterCb)) {\n el._enterCb.cancelled = true;\n el._enterCb();\n }\n\n var data = resolveTransition(vnode.data.transition);\n if (isUndef(data) || el.nodeType !== 1) {\n return rm()\n }\n\n /* istanbul ignore if */\n if (isDef(el._leaveCb)) {\n return\n }\n\n var css = data.css;\n var type = data.type;\n var leaveClass = data.leaveClass;\n var leaveToClass = data.leaveToClass;\n var leaveActiveClass = data.leaveActiveClass;\n var beforeLeave = data.beforeLeave;\n var leave = data.leave;\n var afterLeave = data.afterLeave;\n var leaveCancelled = data.leaveCancelled;\n var delayLeave = data.delayLeave;\n var duration = data.duration;\n\n var expectsCSS = css !== false && !isIE9;\n var userWantsControl = getHookArgumentsLength(leave);\n\n var explicitLeaveDuration = toNumber(\n isObject(duration)\n ? duration.leave\n : duration\n );\n\n if (process.env.NODE_ENV !== 'production' && isDef(explicitLeaveDuration)) {\n checkDuration(explicitLeaveDuration, 'leave', vnode);\n }\n\n var cb = el._leaveCb = once(function () {\n if (el.parentNode && el.parentNode._pending) {\n el.parentNode._pending[vnode.key] = null;\n }\n if (expectsCSS) {\n removeTransitionClass(el, leaveToClass);\n removeTransitionClass(el, leaveActiveClass);\n }\n if (cb.cancelled) {\n if (expectsCSS) {\n removeTransitionClass(el, leaveClass);\n }\n leaveCancelled && leaveCancelled(el);\n } else {\n rm();\n afterLeave && afterLeave(el);\n }\n el._leaveCb = null;\n });\n\n if (delayLeave) {\n delayLeave(performLeave);\n } else {\n performLeave();\n }\n\n function performLeave () {\n // the delayed leave may have already been cancelled\n if (cb.cancelled) {\n return\n }\n // record leaving element\n if (!vnode.data.show && el.parentNode) {\n (el.parentNode._pending || (el.parentNode._pending = {}))[(vnode.key)] = vnode;\n }\n beforeLeave && beforeLeave(el);\n if (expectsCSS) {\n addTransitionClass(el, leaveClass);\n addTransitionClass(el, leaveActiveClass);\n nextFrame(function () {\n removeTransitionClass(el, leaveClass);\n if (!cb.cancelled) {\n addTransitionClass(el, leaveToClass);\n if (!userWantsControl) {\n if (isValidDuration(explicitLeaveDuration)) {\n setTimeout(cb, explicitLeaveDuration);\n } else {\n whenTransitionEnds(el, type, cb);\n }\n }\n }\n });\n }\n leave && leave(el, cb);\n if (!expectsCSS && !userWantsControl) {\n cb();\n }\n }\n}\n\n// only used in dev mode\nfunction checkDuration (val, name, vnode) {\n if (typeof val !== 'number') {\n warn(\n \"<transition> explicit \" + name + \" duration is not a valid number - \" +\n \"got \" + (JSON.stringify(val)) + \".\",\n vnode.context\n );\n } else if (isNaN(val)) {\n warn(\n \"<transition> explicit \" + name + \" duration is NaN - \" +\n 'the duration expression might be incorrect.',\n vnode.context\n );\n }\n}\n\nfunction isValidDuration (val) {\n return typeof val === 'number' && !isNaN(val)\n}\n\n/**\n * Normalize a transition hook's argument length. The hook may be:\n * - a merged hook (invoker) with the original in .fns\n * - a wrapped component method (check ._length)\n * - a plain function (.length)\n */\nfunction getHookArgumentsLength (fn) {\n if (isUndef(fn)) {\n return false\n }\n var invokerFns = fn.fns;\n if (isDef(invokerFns)) {\n // invoker\n return getHookArgumentsLength(\n Array.isArray(invokerFns)\n ? invokerFns[0]\n : invokerFns\n )\n } else {\n return (fn._length || fn.length) > 1\n }\n}\n\nfunction _enter (_, vnode) {\n if (vnode.data.show !== true) {\n enter(vnode);\n }\n}\n\nvar transition = inBrowser ? {\n create: _enter,\n activate: _enter,\n remove: function remove$$1 (vnode, rm) {\n /* istanbul ignore else */\n if (vnode.data.show !== true) {\n leave(vnode, rm);\n } else {\n rm();\n }\n }\n} : {};\n\nvar platformModules = [\n attrs,\n klass,\n events,\n domProps,\n style,\n transition\n];\n\n/* */\n\n// the directive module should be applied last, after all\n// built-in modules have been applied.\nvar modules = platformModules.concat(baseModules);\n\nvar patch = createPatchFunction({ nodeOps: nodeOps, modules: modules });\n\n/**\n * Not type checking this file because flow doesn't like attaching\n * properties to Elements.\n */\n\n/* istanbul ignore if */\nif (isIE9) {\n // http://www.matts411.com/post/internet-explorer-9-oninput/\n document.addEventListener('selectionchange', function () {\n var el = document.activeElement;\n if (el && el.vmodel) {\n trigger(el, 'input');\n }\n });\n}\n\nvar directive = {\n inserted: function inserted (el, binding, vnode, oldVnode) {\n if (vnode.tag === 'select') {\n // #6903\n if (oldVnode.elm && !oldVnode.elm._vOptions) {\n mergeVNodeHook(vnode, 'postpatch', function () {\n directive.componentUpdated(el, binding, vnode);\n });\n } else {\n setSelected(el, binding, vnode.context);\n }\n el._vOptions = [].map.call(el.options, getValue);\n } else if (vnode.tag === 'textarea' || isTextInputType(el.type)) {\n el._vModifiers = binding.modifiers;\n if (!binding.modifiers.lazy) {\n el.addEventListener('compositionstart', onCompositionStart);\n el.addEventListener('compositionend', onCompositionEnd);\n // Safari < 10.2 & UIWebView doesn't fire compositionend when\n // switching focus before confirming composition choice\n // this also fixes the issue where some browsers e.g. iOS Chrome\n // fires \"change\" instead of \"input\" on autocomplete.\n el.addEventListener('change', onCompositionEnd);\n /* istanbul ignore if */\n if (isIE9) {\n el.vmodel = true;\n }\n }\n }\n },\n\n componentUpdated: function componentUpdated (el, binding, vnode) {\n if (vnode.tag === 'select') {\n setSelected(el, binding, vnode.context);\n // in case the options rendered by v-for have changed,\n // it's possible that the value is out-of-sync with the rendered options.\n // detect such cases and filter out values that no longer has a matching\n // option in the DOM.\n var prevOptions = el._vOptions;\n var curOptions = el._vOptions = [].map.call(el.options, getValue);\n if (curOptions.some(function (o, i) { return !looseEqual(o, prevOptions[i]); })) {\n // trigger change event if\n // no matching option found for at least one value\n var needReset = el.multiple\n ? binding.value.some(function (v) { return hasNoMatchingOption(v, curOptions); })\n : binding.value !== binding.oldValue && hasNoMatchingOption(binding.value, curOptions);\n if (needReset) {\n trigger(el, 'change');\n }\n }\n }\n }\n};\n\nfunction setSelected (el, binding, vm) {\n actuallySetSelected(el, binding, vm);\n /* istanbul ignore if */\n if (isIE || isEdge) {\n setTimeout(function () {\n actuallySetSelected(el, binding, vm);\n }, 0);\n }\n}\n\nfunction actuallySetSelected (el, binding, vm) {\n var value = binding.value;\n var isMultiple = el.multiple;\n if (isMultiple && !Array.isArray(value)) {\n process.env.NODE_ENV !== 'production' && warn(\n \"<select multiple v-model=\\\"\" + (binding.expression) + \"\\\"> \" +\n \"expects an Array value for its binding, but got \" + (Object.prototype.toString.call(value).slice(8, -1)),\n vm\n );\n return\n }\n var selected, option;\n for (var i = 0, l = el.options.length; i < l; i++) {\n option = el.options[i];\n if (isMultiple) {\n selected = looseIndexOf(value, getValue(option)) > -1;\n if (option.selected !== selected) {\n option.selected = selected;\n }\n } else {\n if (looseEqual(getValue(option), value)) {\n if (el.selectedIndex !== i) {\n el.selectedIndex = i;\n }\n return\n }\n }\n }\n if (!isMultiple) {\n el.selectedIndex = -1;\n }\n}\n\nfunction hasNoMatchingOption (value, options) {\n return options.every(function (o) { return !looseEqual(o, value); })\n}\n\nfunction getValue (option) {\n return '_value' in option\n ? option._value\n : option.value\n}\n\nfunction onCompositionStart (e) {\n e.target.composing = true;\n}\n\nfunction onCompositionEnd (e) {\n // prevent triggering an input event for no reason\n if (!e.target.composing) { return }\n e.target.composing = false;\n trigger(e.target, 'input');\n}\n\nfunction trigger (el, type) {\n var e = document.createEvent('HTMLEvents');\n e.initEvent(type, true, true);\n el.dispatchEvent(e);\n}\n\n/* */\n\n// recursively search for possible transition defined inside the component root\nfunction locateNode (vnode) {\n return vnode.componentInstance && (!vnode.data || !vnode.data.transition)\n ? locateNode(vnode.componentInstance._vnode)\n : vnode\n}\n\nvar show = {\n bind: function bind (el, ref, vnode) {\n var value = ref.value;\n\n vnode = locateNode(vnode);\n var transition$$1 = vnode.data && vnode.data.transition;\n var originalDisplay = el.__vOriginalDisplay =\n el.style.display === 'none' ? '' : el.style.display;\n if (value && transition$$1) {\n vnode.data.show = true;\n enter(vnode, function () {\n el.style.display = originalDisplay;\n });\n } else {\n el.style.display = value ? originalDisplay : 'none';\n }\n },\n\n update: function update (el, ref, vnode) {\n var value = ref.value;\n var oldValue = ref.oldValue;\n\n /* istanbul ignore if */\n if (!value === !oldValue) { return }\n vnode = locateNode(vnode);\n var transition$$1 = vnode.data && vnode.data.transition;\n if (transition$$1) {\n vnode.data.show = true;\n if (value) {\n enter(vnode, function () {\n el.style.display = el.__vOriginalDisplay;\n });\n } else {\n leave(vnode, function () {\n el.style.display = 'none';\n });\n }\n } else {\n el.style.display = value ? el.__vOriginalDisplay : 'none';\n }\n },\n\n unbind: function unbind (\n el,\n binding,\n vnode,\n oldVnode,\n isDestroy\n ) {\n if (!isDestroy) {\n el.style.display = el.__vOriginalDisplay;\n }\n }\n};\n\nvar platformDirectives = {\n model: directive,\n show: show\n};\n\n/* */\n\nvar transitionProps = {\n name: String,\n appear: Boolean,\n css: Boolean,\n mode: String,\n type: String,\n enterClass: String,\n leaveClass: String,\n enterToClass: String,\n leaveToClass: String,\n enterActiveClass: String,\n leaveActiveClass: String,\n appearClass: String,\n appearActiveClass: String,\n appearToClass: String,\n duration: [Number, String, Object]\n};\n\n// in case the child is also an abstract component, e.g. <keep-alive>\n// we want to recursively retrieve the real component to be rendered\nfunction getRealChild (vnode) {\n var compOptions = vnode && vnode.componentOptions;\n if (compOptions && compOptions.Ctor.options.abstract) {\n return getRealChild(getFirstComponentChild(compOptions.children))\n } else {\n return vnode\n }\n}\n\nfunction extractTransitionData (comp) {\n var data = {};\n var options = comp.$options;\n // props\n for (var key in options.propsData) {\n data[key] = comp[key];\n }\n // events.\n // extract listeners and pass them directly to the transition methods\n var listeners = options._parentListeners;\n for (var key$1 in listeners) {\n data[camelize(key$1)] = listeners[key$1];\n }\n return data\n}\n\nfunction placeholder (h, rawChild) {\n if (/\\d-keep-alive$/.test(rawChild.tag)) {\n return h('keep-alive', {\n props: rawChild.componentOptions.propsData\n })\n }\n}\n\nfunction hasParentTransition (vnode) {\n while ((vnode = vnode.parent)) {\n if (vnode.data.transition) {\n return true\n }\n }\n}\n\nfunction isSameChild (child, oldChild) {\n return oldChild.key === child.key && oldChild.tag === child.tag\n}\n\nvar isNotTextNode = function (c) { return c.tag || isAsyncPlaceholder(c); };\n\nvar isVShowDirective = function (d) { return d.name === 'show'; };\n\nvar Transition = {\n name: 'transition',\n props: transitionProps,\n abstract: true,\n\n render: function render (h) {\n var this$1 = this;\n\n var children = this.$slots.default;\n if (!children) {\n return\n }\n\n // filter out text nodes (possible whitespaces)\n children = children.filter(isNotTextNode);\n /* istanbul ignore if */\n if (!children.length) {\n return\n }\n\n // warn multiple elements\n if (process.env.NODE_ENV !== 'production' && children.length > 1) {\n warn(\n '<transition> can only be used on a single element. Use ' +\n '<transition-group> for lists.',\n this.$parent\n );\n }\n\n var mode = this.mode;\n\n // warn invalid mode\n if (process.env.NODE_ENV !== 'production' &&\n mode && mode !== 'in-out' && mode !== 'out-in'\n ) {\n warn(\n 'invalid <transition> mode: ' + mode,\n this.$parent\n );\n }\n\n var rawChild = children[0];\n\n // if this is a component root node and the component's\n // parent container node also has transition, skip.\n if (hasParentTransition(this.$vnode)) {\n return rawChild\n }\n\n // apply transition data to child\n // use getRealChild() to ignore abstract components e.g. keep-alive\n var child = getRealChild(rawChild);\n /* istanbul ignore if */\n if (!child) {\n return rawChild\n }\n\n if (this._leaving) {\n return placeholder(h, rawChild)\n }\n\n // ensure a key that is unique to the vnode type and to this transition\n // component instance. This key will be used to remove pending leaving nodes\n // during entering.\n var id = \"__transition-\" + (this._uid) + \"-\";\n child.key = child.key == null\n ? child.isComment\n ? id + 'comment'\n : id + child.tag\n : isPrimitive(child.key)\n ? (String(child.key).indexOf(id) === 0 ? child.key : id + child.key)\n : child.key;\n\n var data = (child.data || (child.data = {})).transition = extractTransitionData(this);\n var oldRawChild = this._vnode;\n var oldChild = getRealChild(oldRawChild);\n\n // mark v-show\n // so that the transition module can hand over the control to the directive\n if (child.data.directives && child.data.directives.some(isVShowDirective)) {\n child.data.show = true;\n }\n\n if (\n oldChild &&\n oldChild.data &&\n !isSameChild(child, oldChild) &&\n !isAsyncPlaceholder(oldChild) &&\n // #6687 component root is a comment node\n !(oldChild.componentInstance && oldChild.componentInstance._vnode.isComment)\n ) {\n // replace old child transition data with fresh one\n // important for dynamic transitions!\n var oldData = oldChild.data.transition = extend({}, data);\n // handle transition mode\n if (mode === 'out-in') {\n // return placeholder node and queue update when leave finishes\n this._leaving = true;\n mergeVNodeHook(oldData, 'afterLeave', function () {\n this$1._leaving = false;\n this$1.$forceUpdate();\n });\n return placeholder(h, rawChild)\n } else if (mode === 'in-out') {\n if (isAsyncPlaceholder(child)) {\n return oldRawChild\n }\n var delayedLeave;\n var performLeave = function () { delayedLeave(); };\n mergeVNodeHook(data, 'afterEnter', performLeave);\n mergeVNodeHook(data, 'enterCancelled', performLeave);\n mergeVNodeHook(oldData, 'delayLeave', function (leave) { delayedLeave = leave; });\n }\n }\n\n return rawChild\n }\n};\n\n/* */\n\nvar props = extend({\n tag: String,\n moveClass: String\n}, transitionProps);\n\ndelete props.mode;\n\nvar TransitionGroup = {\n props: props,\n\n beforeMount: function beforeMount () {\n var this$1 = this;\n\n var update = this._update;\n this._update = function (vnode, hydrating) {\n var restoreActiveInstance = setActiveInstance(this$1);\n // force removing pass\n this$1.__patch__(\n this$1._vnode,\n this$1.kept,\n false, // hydrating\n true // removeOnly (!important, avoids unnecessary moves)\n );\n this$1._vnode = this$1.kept;\n restoreActiveInstance();\n update.call(this$1, vnode, hydrating);\n };\n },\n\n render: function render (h) {\n var tag = this.tag || this.$vnode.data.tag || 'span';\n var map = Object.create(null);\n var prevChildren = this.prevChildren = this.children;\n var rawChildren = this.$slots.default || [];\n var children = this.children = [];\n var transitionData = extractTransitionData(this);\n\n for (var i = 0; i < rawChildren.length; i++) {\n var c = rawChildren[i];\n if (c.tag) {\n if (c.key != null && String(c.key).indexOf('__vlist') !== 0) {\n children.push(c);\n map[c.key] = c\n ;(c.data || (c.data = {})).transition = transitionData;\n } else if (process.env.NODE_ENV !== 'production') {\n var opts = c.componentOptions;\n var name = opts ? (opts.Ctor.options.name || opts.tag || '') : c.tag;\n warn((\"<transition-group> children must be keyed: <\" + name + \">\"));\n }\n }\n }\n\n if (prevChildren) {\n var kept = [];\n var removed = [];\n for (var i$1 = 0; i$1 < prevChildren.length; i$1++) {\n var c$1 = prevChildren[i$1];\n c$1.data.transition = transitionData;\n c$1.data.pos = c$1.elm.getBoundingClientRect();\n if (map[c$1.key]) {\n kept.push(c$1);\n } else {\n removed.push(c$1);\n }\n }\n this.kept = h(tag, null, kept);\n this.removed = removed;\n }\n\n return h(tag, null, children)\n },\n\n updated: function updated () {\n var children = this.prevChildren;\n var moveClass = this.moveClass || ((this.name || 'v') + '-move');\n if (!children.length || !this.hasMove(children[0].elm, moveClass)) {\n return\n }\n\n // we divide the work into three loops to avoid mixing DOM reads and writes\n // in each iteration - which helps prevent layout thrashing.\n children.forEach(callPendingCbs);\n children.forEach(recordPosition);\n children.forEach(applyTranslation);\n\n // force reflow to put everything in position\n // assign to this to avoid being removed in tree-shaking\n // $flow-disable-line\n this._reflow = document.body.offsetHeight;\n\n children.forEach(function (c) {\n if (c.data.moved) {\n var el = c.elm;\n var s = el.style;\n addTransitionClass(el, moveClass);\n s.transform = s.WebkitTransform = s.transitionDuration = '';\n el.addEventListener(transitionEndEvent, el._moveCb = function cb (e) {\n if (e && e.target !== el) {\n return\n }\n if (!e || /transform$/.test(e.propertyName)) {\n el.removeEventListener(transitionEndEvent, cb);\n el._moveCb = null;\n removeTransitionClass(el, moveClass);\n }\n });\n }\n });\n },\n\n methods: {\n hasMove: function hasMove (el, moveClass) {\n /* istanbul ignore if */\n if (!hasTransition) {\n return false\n }\n /* istanbul ignore if */\n if (this._hasMove) {\n return this._hasMove\n }\n // Detect whether an element with the move class applied has\n // CSS transitions. Since the element may be inside an entering\n // transition at this very moment, we make a clone of it and remove\n // all other transition classes applied to ensure only the move class\n // is applied.\n var clone = el.cloneNode();\n if (el._transitionClasses) {\n el._transitionClasses.forEach(function (cls) { removeClass(clone, cls); });\n }\n addClass(clone, moveClass);\n clone.style.display = 'none';\n this.$el.appendChild(clone);\n var info = getTransitionInfo(clone);\n this.$el.removeChild(clone);\n return (this._hasMove = info.hasTransform)\n }\n }\n};\n\nfunction callPendingCbs (c) {\n /* istanbul ignore if */\n if (c.elm._moveCb) {\n c.elm._moveCb();\n }\n /* istanbul ignore if */\n if (c.elm._enterCb) {\n c.elm._enterCb();\n }\n}\n\nfunction recordPosition (c) {\n c.data.newPos = c.elm.getBoundingClientRect();\n}\n\nfunction applyTranslation (c) {\n var oldPos = c.data.pos;\n var newPos = c.data.newPos;\n var dx = oldPos.left - newPos.left;\n var dy = oldPos.top - newPos.top;\n if (dx || dy) {\n c.data.moved = true;\n var s = c.elm.style;\n s.transform = s.WebkitTransform = \"translate(\" + dx + \"px,\" + dy + \"px)\";\n s.transitionDuration = '0s';\n }\n}\n\nvar platformComponents = {\n Transition: Transition,\n TransitionGroup: TransitionGroup\n};\n\n/* */\n\n// install platform specific utils\nVue.config.mustUseProp = mustUseProp;\nVue.config.isReservedTag = isReservedTag;\nVue.config.isReservedAttr = isReservedAttr;\nVue.config.getTagNamespace = getTagNamespace;\nVue.config.isUnknownElement = isUnknownElement;\n\n// install platform runtime directives & components\nextend(Vue.options.directives, platformDirectives);\nextend(Vue.options.components, platformComponents);\n\n// install platform patch function\nVue.prototype.__patch__ = inBrowser ? patch : noop;\n\n// public mount method\nVue.prototype.$mount = function (\n el,\n hydrating\n) {\n el = el && inBrowser ? query(el) : undefined;\n return mountComponent(this, el, hydrating)\n};\n\n// devtools global hook\n/* istanbul ignore next */\nif (inBrowser) {\n setTimeout(function () {\n if (config.devtools) {\n if (devtools) {\n devtools.emit('init', Vue);\n } else if (\n process.env.NODE_ENV !== 'production' &&\n process.env.NODE_ENV !== 'test'\n ) {\n console[console.info ? 'info' : 'log'](\n 'Download the Vue Devtools extension for a better development experience:\\n' +\n 'https://github.com/vuejs/vue-devtools'\n );\n }\n }\n if (process.env.NODE_ENV !== 'production' &&\n process.env.NODE_ENV !== 'test' &&\n config.productionTip !== false &&\n typeof console !== 'undefined'\n ) {\n console[console.info ? 'info' : 'log'](\n \"You are running Vue in development mode.\\n\" +\n \"Make sure to turn on production mode when deploying for production.\\n\" +\n \"See more tips at https://vuejs.org/guide/deployment.html\"\n );\n }\n }, 0);\n}\n\n/* */\n\nexport default Vue;\n","var hasOwnProperty = {}.hasOwnProperty;\n\nmodule.exports = function (it, key) {\n return hasOwnProperty.call(it, key);\n};\n","'use strict';\nvar $ = require('../internals/export');\nvar fails = require('../internals/fails');\nvar isArray = require('../internals/is-array');\nvar isObject = require('../internals/is-object');\nvar toObject = require('../internals/to-object');\nvar toLength = require('../internals/to-length');\nvar createProperty = require('../internals/create-property');\nvar arraySpeciesCreate = require('../internals/array-species-create');\nvar arrayMethodHasSpeciesSupport = require('../internals/array-method-has-species-support');\nvar wellKnownSymbol = require('../internals/well-known-symbol');\nvar V8_VERSION = require('../internals/v8-version');\n\nvar IS_CONCAT_SPREADABLE = wellKnownSymbol('isConcatSpreadable');\nvar MAX_SAFE_INTEGER = 0x1FFFFFFFFFFFFF;\nvar MAXIMUM_ALLOWED_INDEX_EXCEEDED = 'Maximum allowed index exceeded';\n\n// We can't use this feature detection in V8 since it causes\n// deoptimization and serious performance degradation\n// https://github.com/zloirock/core-js/issues/679\nvar IS_CONCAT_SPREADABLE_SUPPORT = V8_VERSION >= 51 || !fails(function () {\n var array = [];\n array[IS_CONCAT_SPREADABLE] = false;\n return array.concat()[0] !== array;\n});\n\nvar SPECIES_SUPPORT = arrayMethodHasSpeciesSupport('concat');\n\nvar isConcatSpreadable = function (O) {\n if (!isObject(O)) return false;\n var spreadable = O[IS_CONCAT_SPREADABLE];\n return spreadable !== undefined ? !!spreadable : isArray(O);\n};\n\nvar FORCED = !IS_CONCAT_SPREADABLE_SUPPORT || !SPECIES_SUPPORT;\n\n// `Array.prototype.concat` method\n// https://tc39.github.io/ecma262/#sec-array.prototype.concat\n// with adding support of @@isConcatSpreadable and @@species\n$({ target: 'Array', proto: true, forced: FORCED }, {\n concat: function concat(arg) { // eslint-disable-line no-unused-vars\n var O = toObject(this);\n var A = arraySpeciesCreate(O, 0);\n var n = 0;\n var i, k, length, len, E;\n for (i = -1, length = arguments.length; i < length; i++) {\n E = i === -1 ? O : arguments[i];\n if (isConcatSpreadable(E)) {\n len = toLength(E.length);\n if (n + len > MAX_SAFE_INTEGER) throw TypeError(MAXIMUM_ALLOWED_INDEX_EXCEEDED);\n for (k = 0; k < len; k++, n++) if (k in E) createProperty(A, n, E[k]);\n } else {\n if (n >= MAX_SAFE_INTEGER) throw TypeError(MAXIMUM_ALLOWED_INDEX_EXCEEDED);\n createProperty(A, n++, E);\n }\n }\n A.length = n;\n return A;\n }\n});\n","var global = require('../internals/global');\nvar getOwnPropertyDescriptor = require('../internals/object-get-own-property-descriptor').f;\nvar createNonEnumerableProperty = require('../internals/create-non-enumerable-property');\nvar redefine = require('../internals/redefine');\nvar setGlobal = require('../internals/set-global');\nvar copyConstructorProperties = require('../internals/copy-constructor-properties');\nvar isForced = require('../internals/is-forced');\n\n/*\n options.target - name of the target object\n options.global - target is the global object\n options.stat - export as static methods of target\n options.proto - export as prototype methods of target\n options.real - real prototype method for the `pure` version\n options.forced - export even if the native feature is available\n options.bind - bind methods to the target, required for the `pure` version\n options.wrap - wrap constructors to preventing global pollution, required for the `pure` version\n options.unsafe - use the simple assignment of property instead of delete + defineProperty\n options.sham - add a flag to not completely full polyfills\n options.enumerable - export as enumerable property\n options.noTargetGet - prevent calling a getter on target\n*/\nmodule.exports = function (options, source) {\n var TARGET = options.target;\n var GLOBAL = options.global;\n var STATIC = options.stat;\n var FORCED, target, key, targetProperty, sourceProperty, descriptor;\n if (GLOBAL) {\n target = global;\n } else if (STATIC) {\n target = global[TARGET] || setGlobal(TARGET, {});\n } else {\n target = (global[TARGET] || {}).prototype;\n }\n if (target) for (key in source) {\n sourceProperty = source[key];\n if (options.noTargetGet) {\n descriptor = getOwnPropertyDescriptor(target, key);\n targetProperty = descriptor && descriptor.value;\n } else targetProperty = target[key];\n FORCED = isForced(GLOBAL ? key : TARGET + (STATIC ? '.' : '#') + key, options.forced);\n // contained in target\n if (!FORCED && targetProperty !== undefined) {\n if (typeof sourceProperty === typeof targetProperty) continue;\n copyConstructorProperties(sourceProperty, targetProperty);\n }\n // add a flag to not completely full polyfills\n if (options.sham || (targetProperty && targetProperty.sham)) {\n createNonEnumerableProperty(sourceProperty, 'sham', true);\n }\n // extend global\n redefine(target, key, sourceProperty, options);\n }\n};\n","'use strict';\nvar nativePropertyIsEnumerable = {}.propertyIsEnumerable;\nvar getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;\n\n// Nashorn ~ JDK8 bug\nvar NASHORN_BUG = getOwnPropertyDescriptor && !nativePropertyIsEnumerable.call({ 1: 2 }, 1);\n\n// `Object.prototype.propertyIsEnumerable` method implementation\n// https://tc39.github.io/ecma262/#sec-object.prototype.propertyisenumerable\nexports.f = NASHORN_BUG ? function propertyIsEnumerable(V) {\n var descriptor = getOwnPropertyDescriptor(this, V);\n return !!descriptor && descriptor.enumerable;\n} : nativePropertyIsEnumerable;\n","var fails = require('../internals/fails');\nvar classof = require('../internals/classof-raw');\n\nvar split = ''.split;\n\n// fallback for non-array-like ES3 and non-enumerable old V8 strings\nmodule.exports = fails(function () {\n // throws an error in rhino, see https://github.com/mozilla/rhino/issues/346\n // eslint-disable-next-line no-prototype-builtins\n return !Object('z').propertyIsEnumerable(0);\n}) ? function (it) {\n return classof(it) == 'String' ? split.call(it, '') : Object(it);\n} : Object;\n","var global = require('../internals/global');\nvar isObject = require('../internals/is-object');\n\nvar document = global.document;\n// typeof document.createElement is 'object' in old IE\nvar EXISTS = isObject(document) && isObject(document.createElement);\n\nmodule.exports = function (it) {\n return EXISTS ? document.createElement(it) : {};\n};\n","var global = require('../internals/global');\nvar createNonEnumerableProperty = require('../internals/create-non-enumerable-property');\nvar has = require('../internals/has');\nvar setGlobal = require('../internals/set-global');\nvar inspectSource = require('../internals/inspect-source');\nvar InternalStateModule = require('../internals/internal-state');\n\nvar getInternalState = InternalStateModule.get;\nvar enforceInternalState = InternalStateModule.enforce;\nvar TEMPLATE = String(String).split('String');\n\n(module.exports = function (O, key, value, options) {\n var unsafe = options ? !!options.unsafe : false;\n var simple = options ? !!options.enumerable : false;\n var noTargetGet = options ? !!options.noTargetGet : false;\n if (typeof value == 'function') {\n if (typeof key == 'string' && !has(value, 'name')) createNonEnumerableProperty(value, 'name', key);\n enforceInternalState(value).source = TEMPLATE.join(typeof key == 'string' ? key : '');\n }\n if (O === global) {\n if (simple) O[key] = value;\n else setGlobal(key, value);\n return;\n } else if (!unsafe) {\n delete O[key];\n } else if (!noTargetGet && O[key]) {\n simple = true;\n }\n if (simple) O[key] = value;\n else createNonEnumerableProperty(O, key, value);\n// add fake Function#toString for correct work wrapped methods / constructors with methods like LoDash isNative\n})(Function.prototype, 'toString', function toString() {\n return typeof this == 'function' && getInternalState(this).source || inspectSource(this);\n});\n","var NATIVE_WEAK_MAP = require('../internals/native-weak-map');\nvar global = require('../internals/global');\nvar isObject = require('../internals/is-object');\nvar createNonEnumerableProperty = require('../internals/create-non-enumerable-property');\nvar objectHas = require('../internals/has');\nvar sharedKey = require('../internals/shared-key');\nvar hiddenKeys = require('../internals/hidden-keys');\n\nvar WeakMap = global.WeakMap;\nvar set, get, has;\n\nvar enforce = function (it) {\n return has(it) ? get(it) : set(it, {});\n};\n\nvar getterFor = function (TYPE) {\n return function (it) {\n var state;\n if (!isObject(it) || (state = get(it)).type !== TYPE) {\n throw TypeError('Incompatible receiver, ' + TYPE + ' required');\n } return state;\n };\n};\n\nif (NATIVE_WEAK_MAP) {\n var store = new WeakMap();\n var wmget = store.get;\n var wmhas = store.has;\n var wmset = store.set;\n set = function (it, metadata) {\n wmset.call(store, it, metadata);\n return metadata;\n };\n get = function (it) {\n return wmget.call(store, it) || {};\n };\n has = function (it) {\n return wmhas.call(store, it);\n };\n} else {\n var STATE = sharedKey('state');\n hiddenKeys[STATE] = true;\n set = function (it, metadata) {\n createNonEnumerableProperty(it, STATE, metadata);\n return metadata;\n };\n get = function (it) {\n return objectHas(it, STATE) ? it[STATE] : {};\n };\n has = function (it) {\n return objectHas(it, STATE);\n };\n}\n\nmodule.exports = {\n set: set,\n get: get,\n has: has,\n enforce: enforce,\n getterFor: getterFor\n};\n","var global = require('../internals/global');\nvar inspectSource = require('../internals/inspect-source');\n\nvar WeakMap = global.WeakMap;\n\nmodule.exports = typeof WeakMap === 'function' && /native code/.test(inspectSource(WeakMap));\n","var shared = require('../internals/shared');\nvar uid = require('../internals/uid');\n\nvar keys = shared('keys');\n\nmodule.exports = function (key) {\n return keys[key] || (keys[key] = uid(key));\n};\n","module.exports = false;\n","var has = require('../internals/has');\nvar ownKeys = require('../internals/own-keys');\nvar getOwnPropertyDescriptorModule = require('../internals/object-get-own-property-descriptor');\nvar definePropertyModule = require('../internals/object-define-property');\n\nmodule.exports = function (target, source) {\n var keys = ownKeys(source);\n var defineProperty = definePropertyModule.f;\n var getOwnPropertyDescriptor = getOwnPropertyDescriptorModule.f;\n for (var i = 0; i < keys.length; i++) {\n var key = keys[i];\n if (!has(target, key)) defineProperty(target, key, getOwnPropertyDescriptor(source, key));\n }\n};\n","var getBuiltIn = require('../internals/get-built-in');\nvar getOwnPropertyNamesModule = require('../internals/object-get-own-property-names');\nvar getOwnPropertySymbolsModule = require('../internals/object-get-own-property-symbols');\nvar anObject = require('../internals/an-object');\n\n// all object keys, includes non-enumerable and symbols\nmodule.exports = getBuiltIn('Reflect', 'ownKeys') || function ownKeys(it) {\n var keys = getOwnPropertyNamesModule.f(anObject(it));\n var getOwnPropertySymbols = getOwnPropertySymbolsModule.f;\n return getOwnPropertySymbols ? keys.concat(getOwnPropertySymbols(it)) : keys;\n};\n","var global = require('../internals/global');\n\nmodule.exports = global;\n","var internalObjectKeys = require('../internals/object-keys-internal');\nvar enumBugKeys = require('../internals/enum-bug-keys');\n\nvar hiddenKeys = enumBugKeys.concat('length', 'prototype');\n\n// `Object.getOwnPropertyNames` method\n// https://tc39.github.io/ecma262/#sec-object.getownpropertynames\nexports.f = Object.getOwnPropertyNames || function getOwnPropertyNames(O) {\n return internalObjectKeys(O, hiddenKeys);\n};\n","var has = require('../internals/has');\nvar toIndexedObject = require('../internals/to-indexed-object');\nvar indexOf = require('../internals/array-includes').indexOf;\nvar hiddenKeys = require('../internals/hidden-keys');\n\nmodule.exports = function (object, names) {\n var O = toIndexedObject(object);\n var i = 0;\n var result = [];\n var key;\n for (key in O) !has(hiddenKeys, key) && has(O, key) && result.push(key);\n // Don't enum bug & hidden keys\n while (names.length > i) if (has(O, key = names[i++])) {\n ~indexOf(result, key) || result.push(key);\n }\n return result;\n};\n","var toIndexedObject = require('../internals/to-indexed-object');\nvar toLength = require('../internals/to-length');\nvar toAbsoluteIndex = require('../internals/to-absolute-index');\n\n// `Array.prototype.{ indexOf, includes }` methods implementation\nvar createMethod = function (IS_INCLUDES) {\n return function ($this, el, fromIndex) {\n var O = toIndexedObject($this);\n var length = toLength(O.length);\n var index = toAbsoluteIndex(fromIndex, length);\n var value;\n // Array#includes uses SameValueZero equality algorithm\n // eslint-disable-next-line no-self-compare\n if (IS_INCLUDES && el != el) while (length > index) {\n value = O[index++];\n // eslint-disable-next-line no-self-compare\n if (value != value) return true;\n // Array#indexOf ignores holes, Array#includes - not\n } else for (;length > index; index++) {\n if ((IS_INCLUDES || index in O) && O[index] === el) return IS_INCLUDES || index || 0;\n } return !IS_INCLUDES && -1;\n };\n};\n\nmodule.exports = {\n // `Array.prototype.includes` method\n // https://tc39.github.io/ecma262/#sec-array.prototype.includes\n includes: createMethod(true),\n // `Array.prototype.indexOf` method\n // https://tc39.github.io/ecma262/#sec-array.prototype.indexof\n indexOf: createMethod(false)\n};\n","var toInteger = require('../internals/to-integer');\n\nvar max = Math.max;\nvar min = Math.min;\n\n// Helper for a popular repeating case of the spec:\n// Let integer be ? ToInteger(index).\n// If integer < 0, let result be max((length + integer), 0); else let result be min(integer, length).\nmodule.exports = function (index, length) {\n var integer = toInteger(index);\n return integer < 0 ? max(integer + length, 0) : min(integer, length);\n};\n","// IE8- don't enum bug keys\nmodule.exports = [\n 'constructor',\n 'hasOwnProperty',\n 'isPrototypeOf',\n 'propertyIsEnumerable',\n 'toLocaleString',\n 'toString',\n 'valueOf'\n];\n","exports.f = Object.getOwnPropertySymbols;\n","var fails = require('../internals/fails');\n\nvar replacement = /#|\\.prototype\\./;\n\nvar isForced = function (feature, detection) {\n var value = data[normalize(feature)];\n return value == POLYFILL ? true\n : value == NATIVE ? false\n : typeof detection == 'function' ? fails(detection)\n : !!detection;\n};\n\nvar normalize = isForced.normalize = function (string) {\n return String(string).replace(replacement, '.').toLowerCase();\n};\n\nvar data = isForced.data = {};\nvar NATIVE = isForced.NATIVE = 'N';\nvar POLYFILL = isForced.POLYFILL = 'P';\n\nmodule.exports = isForced;\n","var requireObjectCoercible = require('../internals/require-object-coercible');\n\n// `ToObject` abstract operation\n// https://tc39.github.io/ecma262/#sec-toobject\nmodule.exports = function (argument) {\n return Object(requireObjectCoercible(argument));\n};\n","'use strict';\nvar toPrimitive = require('../internals/to-primitive');\nvar definePropertyModule = require('../internals/object-define-property');\nvar createPropertyDescriptor = require('../internals/create-property-descriptor');\n\nmodule.exports = function (object, key, value) {\n var propertyKey = toPrimitive(key);\n if (propertyKey in object) definePropertyModule.f(object, propertyKey, createPropertyDescriptor(0, value));\n else object[propertyKey] = value;\n};\n","var isObject = require('../internals/is-object');\nvar isArray = require('../internals/is-array');\nvar wellKnownSymbol = require('../internals/well-known-symbol');\n\nvar SPECIES = wellKnownSymbol('species');\n\n// `ArraySpeciesCreate` abstract operation\n// https://tc39.github.io/ecma262/#sec-arrayspeciescreate\nmodule.exports = function (originalArray, length) {\n var C;\n if (isArray(originalArray)) {\n C = originalArray.constructor;\n // cross-realm fallback\n if (typeof C == 'function' && (C === Array || isArray(C.prototype))) C = undefined;\n else if (isObject(C)) {\n C = C[SPECIES];\n if (C === null) C = undefined;\n }\n } return new (C === undefined ? Array : C)(length === 0 ? 0 : length);\n};\n","var NATIVE_SYMBOL = require('../internals/native-symbol');\n\nmodule.exports = NATIVE_SYMBOL\n // eslint-disable-next-line no-undef\n && !Symbol.sham\n // eslint-disable-next-line no-undef\n && typeof Symbol.iterator == 'symbol';\n","var fails = require('../internals/fails');\nvar wellKnownSymbol = require('../internals/well-known-symbol');\nvar V8_VERSION = require('../internals/v8-version');\n\nvar SPECIES = wellKnownSymbol('species');\n\nmodule.exports = function (METHOD_NAME) {\n // We can't use this feature detection in V8 since it causes\n // deoptimization and serious performance degradation\n // https://github.com/zloirock/core-js/issues/677\n return V8_VERSION >= 51 || !fails(function () {\n var array = [];\n var constructor = array.constructor = {};\n constructor[SPECIES] = function () {\n return { foo: 1 };\n };\n return array[METHOD_NAME](Boolean).foo !== 1;\n });\n};\n","var getBuiltIn = require('../internals/get-built-in');\n\nmodule.exports = getBuiltIn('navigator', 'userAgent') || '';\n","var $ = require('../internals/export');\nvar assign = require('../internals/object-assign');\n\n// `Object.assign` method\n// https://tc39.github.io/ecma262/#sec-object.assign\n$({ target: 'Object', stat: true, forced: Object.assign !== assign }, {\n assign: assign\n});\n","var global = require('../internals/global');\nvar inspectSource = require('../internals/inspect-source');\n\nvar WeakMap = global.WeakMap;\n\nmodule.exports = typeof WeakMap === 'function' && /native code/.test(inspectSource(WeakMap));\n","var has = require('../internals/has');\nvar ownKeys = require('../internals/own-keys');\nvar getOwnPropertyDescriptorModule = require('../internals/object-get-own-property-descriptor');\nvar definePropertyModule = require('../internals/object-define-property');\n\nmodule.exports = function (target, source) {\n var keys = ownKeys(source);\n var defineProperty = definePropertyModule.f;\n var getOwnPropertyDescriptor = getOwnPropertyDescriptorModule.f;\n for (var i = 0; i < keys.length; i++) {\n var key = keys[i];\n if (!has(target, key)) defineProperty(target, key, getOwnPropertyDescriptor(source, key));\n }\n};\n","var getBuiltIn = require('../internals/get-built-in');\nvar getOwnPropertyNamesModule = require('../internals/object-get-own-property-names');\nvar getOwnPropertySymbolsModule = require('../internals/object-get-own-property-symbols');\nvar anObject = require('../internals/an-object');\n\n// all object keys, includes non-enumerable and symbols\nmodule.exports = getBuiltIn('Reflect', 'ownKeys') || function ownKeys(it) {\n var keys = getOwnPropertyNamesModule.f(anObject(it));\n var getOwnPropertySymbols = getOwnPropertySymbolsModule.f;\n return getOwnPropertySymbols ? keys.concat(getOwnPropertySymbols(it)) : keys;\n};\n","var global = require('../internals/global');\n\nmodule.exports = global;\n","var internalObjectKeys = require('../internals/object-keys-internal');\nvar enumBugKeys = require('../internals/enum-bug-keys');\n\nvar hiddenKeys = enumBugKeys.concat('length', 'prototype');\n\n// `Object.getOwnPropertyNames` method\n// https://tc39.github.io/ecma262/#sec-object.getownpropertynames\nexports.f = Object.getOwnPropertyNames || function getOwnPropertyNames(O) {\n return internalObjectKeys(O, hiddenKeys);\n};\n","var toIndexedObject = require('../internals/to-indexed-object');\nvar toLength = require('../internals/to-length');\nvar toAbsoluteIndex = require('../internals/to-absolute-index');\n\n// `Array.prototype.{ indexOf, includes }` methods implementation\nvar createMethod = function (IS_INCLUDES) {\n return function ($this, el, fromIndex) {\n var O = toIndexedObject($this);\n var length = toLength(O.length);\n var index = toAbsoluteIndex(fromIndex, length);\n var value;\n // Array#includes uses SameValueZero equality algorithm\n // eslint-disable-next-line no-self-compare\n if (IS_INCLUDES && el != el) while (length > index) {\n value = O[index++];\n // eslint-disable-next-line no-self-compare\n if (value != value) return true;\n // Array#indexOf ignores holes, Array#includes - not\n } else for (;length > index; index++) {\n if ((IS_INCLUDES || index in O) && O[index] === el) return IS_INCLUDES || index || 0;\n } return !IS_INCLUDES && -1;\n };\n};\n\nmodule.exports = {\n // `Array.prototype.includes` method\n // https://tc39.github.io/ecma262/#sec-array.prototype.includes\n includes: createMethod(true),\n // `Array.prototype.indexOf` method\n // https://tc39.github.io/ecma262/#sec-array.prototype.indexof\n indexOf: createMethod(false)\n};\n","var toInteger = require('../internals/to-integer');\n\nvar max = Math.max;\nvar min = Math.min;\n\n// Helper for a popular repeating case of the spec:\n// Let integer be ? ToInteger(index).\n// If integer < 0, let result be max((length + integer), 0); else let result be min(integer, length).\nmodule.exports = function (index, length) {\n var integer = toInteger(index);\n return integer < 0 ? max(integer + length, 0) : min(integer, length);\n};\n","'use strict';\nvar DESCRIPTORS = require('../internals/descriptors');\nvar fails = require('../internals/fails');\nvar objectKeys = require('../internals/object-keys');\nvar getOwnPropertySymbolsModule = require('../internals/object-get-own-property-symbols');\nvar propertyIsEnumerableModule = require('../internals/object-property-is-enumerable');\nvar toObject = require('../internals/to-object');\nvar IndexedObject = require('../internals/indexed-object');\n\nvar nativeAssign = Object.assign;\nvar defineProperty = Object.defineProperty;\n\n// `Object.assign` method\n// https://tc39.github.io/ecma262/#sec-object.assign\nmodule.exports = !nativeAssign || fails(function () {\n // should have correct order of operations (Edge bug)\n if (DESCRIPTORS && nativeAssign({ b: 1 }, nativeAssign(defineProperty({}, 'a', {\n enumerable: true,\n get: function () {\n defineProperty(this, 'b', {\n value: 3,\n enumerable: false\n });\n }\n }), { b: 2 })).b !== 1) return true;\n // should work with symbols and should have deterministic property order (V8 bug)\n var A = {};\n var B = {};\n // eslint-disable-next-line no-undef\n var symbol = Symbol();\n var alphabet = 'abcdefghijklmnopqrst';\n A[symbol] = 7;\n alphabet.split('').forEach(function (chr) { B[chr] = chr; });\n return nativeAssign({}, A)[symbol] != 7 || objectKeys(nativeAssign({}, B)).join('') != alphabet;\n}) ? function assign(target, source) { // eslint-disable-line no-unused-vars\n var T = toObject(target);\n var argumentsLength = arguments.length;\n var index = 1;\n var getOwnPropertySymbols = getOwnPropertySymbolsModule.f;\n var propertyIsEnumerable = propertyIsEnumerableModule.f;\n while (argumentsLength > index) {\n var S = IndexedObject(arguments[index++]);\n var keys = getOwnPropertySymbols ? objectKeys(S).concat(getOwnPropertySymbols(S)) : objectKeys(S);\n var length = keys.length;\n var j = 0;\n var key;\n while (length > j) {\n key = keys[j++];\n if (!DESCRIPTORS || propertyIsEnumerable.call(S, key)) T[key] = S[key];\n }\n } return T;\n} : nativeAssign;\n","module.exports = require('./lib/axios');","'use strict';\n\nvar utils = require('./utils');\nvar bind = require('./helpers/bind');\nvar Axios = require('./core/Axios');\nvar mergeConfig = require('./core/mergeConfig');\nvar defaults = require('./defaults');\n\n/**\n * Create an instance of Axios\n *\n * @param {Object} defaultConfig The default config for the instance\n * @return {Axios} A new instance of Axios\n */\nfunction createInstance(defaultConfig) {\n var context = new Axios(defaultConfig);\n var instance = bind(Axios.prototype.request, context);\n\n // Copy axios.prototype to instance\n utils.extend(instance, Axios.prototype, context);\n\n // Copy context to instance\n utils.extend(instance, context);\n\n return instance;\n}\n\n// Create the default instance to be exported\nvar axios = createInstance(defaults);\n\n// Expose Axios class to allow class inheritance\naxios.Axios = Axios;\n\n// Factory for creating new instances\naxios.create = function create(instanceConfig) {\n return createInstance(mergeConfig(axios.defaults, instanceConfig));\n};\n\n// Expose Cancel & CancelToken\naxios.Cancel = require('./cancel/Cancel');\naxios.CancelToken = require('./cancel/CancelToken');\naxios.isCancel = require('./cancel/isCancel');\n\n// Expose all/spread\naxios.all = function all(promises) {\n return Promise.all(promises);\n};\naxios.spread = require('./helpers/spread');\n\nmodule.exports = axios;\n\n// Allow use of default import syntax in TypeScript\nmodule.exports.default = axios;\n","'use strict';\n\nvar utils = require('./../utils');\nvar buildURL = require('../helpers/buildURL');\nvar InterceptorManager = require('./InterceptorManager');\nvar dispatchRequest = require('./dispatchRequest');\nvar mergeConfig = require('./mergeConfig');\n\n/**\n * Create a new instance of Axios\n *\n * @param {Object} instanceConfig The default config for the instance\n */\nfunction Axios(instanceConfig) {\n this.defaults = instanceConfig;\n this.interceptors = {\n request: new InterceptorManager(),\n response: new InterceptorManager()\n };\n}\n\n/**\n * Dispatch a request\n *\n * @param {Object} config The config specific for this request (merged with this.defaults)\n */\nAxios.prototype.request = function request(config) {\n /*eslint no-param-reassign:0*/\n // Allow for axios('example/url'[, config]) a la fetch API\n if (typeof config === 'string') {\n config = arguments[1] || {};\n config.url = arguments[0];\n } else {\n config = config || {};\n }\n\n config = mergeConfig(this.defaults, config);\n\n // Set config.method\n if (config.method) {\n config.method = config.method.toLowerCase();\n } else if (this.defaults.method) {\n config.method = this.defaults.method.toLowerCase();\n } else {\n config.method = 'get';\n }\n\n // Hook up interceptors middleware\n var chain = [dispatchRequest, undefined];\n var promise = Promise.resolve(config);\n\n this.interceptors.request.forEach(function unshiftRequestInterceptors(interceptor) {\n chain.unshift(interceptor.fulfilled, interceptor.rejected);\n });\n\n this.interceptors.response.forEach(function pushResponseInterceptors(interceptor) {\n chain.push(interceptor.fulfilled, interceptor.rejected);\n });\n\n while (chain.length) {\n promise = promise.then(chain.shift(), chain.shift());\n }\n\n return promise;\n};\n\nAxios.prototype.getUri = function getUri(config) {\n config = mergeConfig(this.defaults, config);\n return buildURL(config.url, config.params, config.paramsSerializer).replace(/^\\?/, '');\n};\n\n// Provide aliases for supported request methods\nutils.forEach(['delete', 'get', 'head', 'options'], function forEachMethodNoData(method) {\n /*eslint func-names:0*/\n Axios.prototype[method] = function(url, config) {\n return this.request(utils.merge(config || {}, {\n method: method,\n url: url\n }));\n };\n});\n\nutils.forEach(['post', 'put', 'patch'], function forEachMethodWithData(method) {\n /*eslint func-names:0*/\n Axios.prototype[method] = function(url, data, config) {\n return this.request(utils.merge(config || {}, {\n method: method,\n url: url,\n data: data\n }));\n };\n});\n\nmodule.exports = Axios;\n","'use strict';\n\nvar utils = require('./../utils');\n\nfunction InterceptorManager() {\n this.handlers = [];\n}\n\n/**\n * Add a new interceptor to the stack\n *\n * @param {Function} fulfilled The function to handle `then` for a `Promise`\n * @param {Function} rejected The function to handle `reject` for a `Promise`\n *\n * @return {Number} An ID used to remove interceptor later\n */\nInterceptorManager.prototype.use = function use(fulfilled, rejected) {\n this.handlers.push({\n fulfilled: fulfilled,\n rejected: rejected\n });\n return this.handlers.length - 1;\n};\n\n/**\n * Remove an interceptor from the stack\n *\n * @param {Number} id The ID that was returned by `use`\n */\nInterceptorManager.prototype.eject = function eject(id) {\n if (this.handlers[id]) {\n this.handlers[id] = null;\n }\n};\n\n/**\n * Iterate over all the registered interceptors\n *\n * This method is particularly useful for skipping over any\n * interceptors that may have become `null` calling `eject`.\n *\n * @param {Function} fn The function to call for each interceptor\n */\nInterceptorManager.prototype.forEach = function forEach(fn) {\n utils.forEach(this.handlers, function forEachHandler(h) {\n if (h !== null) {\n fn(h);\n }\n });\n};\n\nmodule.exports = InterceptorManager;\n","'use strict';\n\nvar utils = require('./../utils');\nvar transformData = require('./transformData');\nvar isCancel = require('../cancel/isCancel');\nvar defaults = require('../defaults');\n\n/**\n * Throws a `Cancel` if cancellation has been requested.\n */\nfunction throwIfCancellationRequested(config) {\n if (config.cancelToken) {\n config.cancelToken.throwIfRequested();\n }\n}\n\n/**\n * Dispatch a request to the server using the configured adapter.\n *\n * @param {object} config The config that is to be used for the request\n * @returns {Promise} The Promise to be fulfilled\n */\nmodule.exports = function dispatchRequest(config) {\n throwIfCancellationRequested(config);\n\n // Ensure headers exist\n config.headers = config.headers || {};\n\n // Transform request data\n config.data = transformData(\n config.data,\n config.headers,\n config.transformRequest\n );\n\n // Flatten headers\n config.headers = utils.merge(\n config.headers.common || {},\n config.headers[config.method] || {},\n config.headers\n );\n\n utils.forEach(\n ['delete', 'get', 'head', 'post', 'put', 'patch', 'common'],\n function cleanHeaderConfig(method) {\n delete config.headers[method];\n }\n );\n\n var adapter = config.adapter || defaults.adapter;\n\n return adapter(config).then(function onAdapterResolution(response) {\n throwIfCancellationRequested(config);\n\n // Transform response data\n response.data = transformData(\n response.data,\n response.headers,\n config.transformResponse\n );\n\n return response;\n }, function onAdapterRejection(reason) {\n if (!isCancel(reason)) {\n throwIfCancellationRequested(config);\n\n // Transform response data\n if (reason && reason.response) {\n reason.response.data = transformData(\n reason.response.data,\n reason.response.headers,\n config.transformResponse\n );\n }\n }\n\n return Promise.reject(reason);\n });\n};\n","'use strict';\n\nvar utils = require('./../utils');\n\n/**\n * Transform the data for a request or a response\n *\n * @param {Object|String} data The data to be transformed\n * @param {Array} headers The headers for the request or response\n * @param {Array|Function} fns A single function or Array of functions\n * @returns {*} The resulting transformed data\n */\nmodule.exports = function transformData(data, headers, fns) {\n /*eslint no-param-reassign:0*/\n utils.forEach(fns, function transform(fn) {\n data = fn(data, headers);\n });\n\n return data;\n};\n","'use strict';\n\nvar utils = require('../utils');\n\nmodule.exports = function normalizeHeaderName(headers, normalizedName) {\n utils.forEach(headers, function processHeader(value, name) {\n if (name !== normalizedName && name.toUpperCase() === normalizedName.toUpperCase()) {\n headers[normalizedName] = value;\n delete headers[name];\n }\n });\n};\n","'use strict';\n\nvar createError = require('./createError');\n\n/**\n * Resolve or reject a Promise based on response status.\n *\n * @param {Function} resolve A function that resolves the promise.\n * @param {Function} reject A function that rejects the promise.\n * @param {object} response The response.\n */\nmodule.exports = function settle(resolve, reject, response) {\n var validateStatus = response.config.validateStatus;\n if (!validateStatus || validateStatus(response.status)) {\n resolve(response);\n } else {\n reject(createError(\n 'Request failed with status code ' + response.status,\n response.config,\n null,\n response.request,\n response\n ));\n }\n};\n","'use strict';\n\n/**\n * Update an Error with the specified config, error code, and response.\n *\n * @param {Error} error The error to update.\n * @param {Object} config The config.\n * @param {string} [code] The error code (for example, 'ECONNABORTED').\n * @param {Object} [request] The request.\n * @param {Object} [response] The response.\n * @returns {Error} The error.\n */\nmodule.exports = function enhanceError(error, config, code, request, response) {\n error.config = config;\n if (code) {\n error.code = code;\n }\n\n error.request = request;\n error.response = response;\n error.isAxiosError = true;\n\n error.toJSON = function() {\n return {\n // Standard\n message: this.message,\n name: this.name,\n // Microsoft\n description: this.description,\n number: this.number,\n // Mozilla\n fileName: this.fileName,\n lineNumber: this.lineNumber,\n columnNumber: this.columnNumber,\n stack: this.stack,\n // Axios\n config: this.config,\n code: this.code\n };\n };\n return error;\n};\n","'use strict';\n\nvar isAbsoluteURL = require('../helpers/isAbsoluteURL');\nvar combineURLs = require('../helpers/combineURLs');\n\n/**\n * Creates a new URL by combining the baseURL with the requestedURL,\n * only when the requestedURL is not already an absolute URL.\n * If the requestURL is absolute, this function returns the requestedURL untouched.\n *\n * @param {string} baseURL The base URL\n * @param {string} requestedURL Absolute or relative URL to combine\n * @returns {string} The combined full path\n */\nmodule.exports = function buildFullPath(baseURL, requestedURL) {\n if (baseURL && !isAbsoluteURL(requestedURL)) {\n return combineURLs(baseURL, requestedURL);\n }\n return requestedURL;\n};\n","'use strict';\n\n/**\n * Determines whether the specified URL is absolute\n *\n * @param {string} url The URL to test\n * @returns {boolean} True if the specified URL is absolute, otherwise false\n */\nmodule.exports = function isAbsoluteURL(url) {\n // A URL is considered absolute if it begins with \"<scheme>://\" or \"//\" (protocol-relative URL).\n // RFC 3986 defines scheme name as a sequence of characters beginning with a letter and followed\n // by any combination of letters, digits, plus, period, or hyphen.\n return /^([a-z][a-z\\d\\+\\-\\.]*:)?\\/\\//i.test(url);\n};\n","'use strict';\n\n/**\n * Creates a new URL by combining the specified URLs\n *\n * @param {string} baseURL The base URL\n * @param {string} relativeURL The relative URL\n * @returns {string} The combined URL\n */\nmodule.exports = function combineURLs(baseURL, relativeURL) {\n return relativeURL\n ? baseURL.replace(/\\/+$/, '') + '/' + relativeURL.replace(/^\\/+/, '')\n : baseURL;\n};\n","'use strict';\n\nvar utils = require('./../utils');\n\n// Headers whose duplicates are ignored by node\n// c.f. https://nodejs.org/api/http.html#http_message_headers\nvar ignoreDuplicateOf = [\n 'age', 'authorization', 'content-length', 'content-type', 'etag',\n 'expires', 'from', 'host', 'if-modified-since', 'if-unmodified-since',\n 'last-modified', 'location', 'max-forwards', 'proxy-authorization',\n 'referer', 'retry-after', 'user-agent'\n];\n\n/**\n * Parse headers into an object\n *\n * ```\n * Date: Wed, 27 Aug 2014 08:58:49 GMT\n * Content-Type: application/json\n * Connection: keep-alive\n * Transfer-Encoding: chunked\n * ```\n *\n * @param {String} headers Headers needing to be parsed\n * @returns {Object} Headers parsed into an object\n */\nmodule.exports = function parseHeaders(headers) {\n var parsed = {};\n var key;\n var val;\n var i;\n\n if (!headers) { return parsed; }\n\n utils.forEach(headers.split('\\n'), function parser(line) {\n i = line.indexOf(':');\n key = utils.trim(line.substr(0, i)).toLowerCase();\n val = utils.trim(line.substr(i + 1));\n\n if (key) {\n if (parsed[key] && ignoreDuplicateOf.indexOf(key) >= 0) {\n return;\n }\n if (key === 'set-cookie') {\n parsed[key] = (parsed[key] ? parsed[key] : []).concat([val]);\n } else {\n parsed[key] = parsed[key] ? parsed[key] + ', ' + val : val;\n }\n }\n });\n\n return parsed;\n};\n","'use strict';\n\nvar utils = require('./../utils');\nvar isValidXss = require('./isValidXss');\n\nmodule.exports = (\n utils.isStandardBrowserEnv() ?\n\n // Standard browser envs have full support of the APIs needed to test\n // whether the request URL is of the same origin as current location.\n (function standardBrowserEnv() {\n var msie = /(msie|trident)/i.test(navigator.userAgent);\n var urlParsingNode = document.createElement('a');\n var originURL;\n\n /**\n * Parse a URL to discover it's components\n *\n * @param {String} url The URL to be parsed\n * @returns {Object}\n */\n function resolveURL(url) {\n var href = url;\n\n if (isValidXss(url)) {\n throw new Error('URL contains XSS injection attempt');\n }\n\n if (msie) {\n // IE needs attribute set twice to normalize properties\n urlParsingNode.setAttribute('href', href);\n href = urlParsingNode.href;\n }\n\n urlParsingNode.setAttribute('href', href);\n\n // urlParsingNode provides the UrlUtils interface - http://url.spec.whatwg.org/#urlutils\n return {\n href: urlParsingNode.href,\n protocol: urlParsingNode.protocol ? urlParsingNode.protocol.replace(/:$/, '') : '',\n host: urlParsingNode.host,\n search: urlParsingNode.search ? urlParsingNode.search.replace(/^\\?/, '') : '',\n hash: urlParsingNode.hash ? urlParsingNode.hash.replace(/^#/, '') : '',\n hostname: urlParsingNode.hostname,\n port: urlParsingNode.port,\n pathname: (urlParsingNode.pathname.charAt(0) === '/') ?\n urlParsingNode.pathname :\n '/' + urlParsingNode.pathname\n };\n }\n\n originURL = resolveURL(window.location.href);\n\n /**\n * Determine if a URL shares the same origin as the current location\n *\n * @param {String} requestURL The URL to test\n * @returns {boolean} True if URL shares the same origin, otherwise false\n */\n return function isURLSameOrigin(requestURL) {\n var parsed = (utils.isString(requestURL)) ? resolveURL(requestURL) : requestURL;\n return (parsed.protocol === originURL.protocol &&\n parsed.host === originURL.host);\n };\n })() :\n\n // Non standard browser envs (web workers, react-native) lack needed support.\n (function nonStandardBrowserEnv() {\n return function isURLSameOrigin() {\n return true;\n };\n })()\n);\n","'use strict';\n\nmodule.exports = function isValidXss(requestURL) {\n var xssRegex = /(\\b)(on\\w+)=|javascript|(<\\s*)(\\/*)script/gi;\n return xssRegex.test(requestURL);\n};\n\n","'use strict';\n\nvar utils = require('./../utils');\n\nmodule.exports = (\n utils.isStandardBrowserEnv() ?\n\n // Standard browser envs support document.cookie\n (function standardBrowserEnv() {\n return {\n write: function write(name, value, expires, path, domain, secure) {\n var cookie = [];\n cookie.push(name + '=' + encodeURIComponent(value));\n\n if (utils.isNumber(expires)) {\n cookie.push('expires=' + new Date(expires).toGMTString());\n }\n\n if (utils.isString(path)) {\n cookie.push('path=' + path);\n }\n\n if (utils.isString(domain)) {\n cookie.push('domain=' + domain);\n }\n\n if (secure === true) {\n cookie.push('secure');\n }\n\n document.cookie = cookie.join('; ');\n },\n\n read: function read(name) {\n var match = document.cookie.match(new RegExp('(^|;\\\\s*)(' + name + ')=([^;]*)'));\n return (match ? decodeURIComponent(match[3]) : null);\n },\n\n remove: function remove(name) {\n this.write(name, '', Date.now() - 86400000);\n }\n };\n })() :\n\n // Non standard browser env (web workers, react-native) lack needed support.\n (function nonStandardBrowserEnv() {\n return {\n write: function write() {},\n read: function read() { return null; },\n remove: function remove() {}\n };\n })()\n);\n","'use strict';\n\nvar Cancel = require('./Cancel');\n\n/**\n * A `CancelToken` is an object that can be used to request cancellation of an operation.\n *\n * @class\n * @param {Function} executor The executor function.\n */\nfunction CancelToken(executor) {\n if (typeof executor !== 'function') {\n throw new TypeError('executor must be a function.');\n }\n\n var resolvePromise;\n this.promise = new Promise(function promiseExecutor(resolve) {\n resolvePromise = resolve;\n });\n\n var token = this;\n executor(function cancel(message) {\n if (token.reason) {\n // Cancellation has already been requested\n return;\n }\n\n token.reason = new Cancel(message);\n resolvePromise(token.reason);\n });\n}\n\n/**\n * Throws a `Cancel` if cancellation has been requested.\n */\nCancelToken.prototype.throwIfRequested = function throwIfRequested() {\n if (this.reason) {\n throw this.reason;\n }\n};\n\n/**\n * Returns an object that contains a new `CancelToken` and a function that, when called,\n * cancels the `CancelToken`.\n */\nCancelToken.source = function source() {\n var cancel;\n var token = new CancelToken(function executor(c) {\n cancel = c;\n });\n return {\n token: token,\n cancel: cancel\n };\n};\n\nmodule.exports = CancelToken;\n","'use strict';\n\n/**\n * Syntactic sugar for invoking a function and expanding an array for arguments.\n *\n * Common use case would be to use `Function.prototype.apply`.\n *\n * ```js\n * function f(x, y, z) {}\n * var args = [1, 2, 3];\n * f.apply(null, args);\n * ```\n *\n * With `spread` this example can be re-written.\n *\n * ```js\n * spread(function(x, y, z) {})([1, 2, 3]);\n * ```\n *\n * @param {Function} callback\n * @returns {Function}\n */\nmodule.exports = function spread(callback) {\n return function wrap(arr) {\n return callback.apply(null, arr);\n };\n};\n","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nObject.defineProperty(exports, \"getRequestToken\", {\n enumerable: true,\n get: function get() {\n return _requesttoken.getRequestToken;\n }\n});\nObject.defineProperty(exports, \"onRequestTokenUpdate\", {\n enumerable: true,\n get: function get() {\n return _requesttoken.onRequestTokenUpdate;\n }\n});\nObject.defineProperty(exports, \"getCurrentUser\", {\n enumerable: true,\n get: function get() {\n return _user.getCurrentUser;\n }\n});\n\nvar _requesttoken = require(\"./requesttoken\");\n\nvar _user = require(\"./user\");\n//# sourceMappingURL=index.js.map","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.getRequestToken = getRequestToken;\nexports.onRequestTokenUpdate = onRequestTokenUpdate;\n\nvar _eventBus = require(\"@nextcloud/event-bus\");\n\nvar tokenElement = document.getElementsByTagName('head')[0];\nvar token = tokenElement ? tokenElement.getAttribute('data-requesttoken') : null;\nvar observers = [];\n\nfunction getRequestToken() {\n return token;\n}\n\nfunction onRequestTokenUpdate(observer) {\n observers.push(observer);\n} // Listen to server event and keep token in sync\n\n\n(0, _eventBus.subscribe)('csrf-token-update', function (e) {\n token = e.token;\n observers.forEach(function (observer) {\n try {\n observer(e.token);\n } catch (e) {\n console.error('error updating CSRF token observer', e);\n }\n });\n});\n//# sourceMappingURL=requesttoken.js.map","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.subscribe = subscribe;\nexports.unsubscribe = unsubscribe;\nexports.emit = emit;\n\nvar _ProxyBus = require(\"./ProxyBus\");\n\nvar _SimpleBus = require(\"./SimpleBus\");\n\nfunction getBus() {\n if (typeof window.OC !== 'undefined' && window.OC._eventBus && typeof window._nc_event_bus === 'undefined') {\n console.warn('found old event bus instance at OC._eventBus. Update your version!');\n window._nc_event_bus = window.OC._eventBus;\n } // Either use an existing event bus instance or create one\n\n\n if (typeof window._nc_event_bus !== 'undefined') {\n return new _ProxyBus.ProxyBus(window._nc_event_bus);\n } else {\n return window._nc_event_bus = new _SimpleBus.SimpleBus();\n }\n}\n\nvar bus = getBus();\n/**\n * Register an event listener\n *\n * @param name name of the event\n * @param handler callback invoked for every matching event emitted on the bus\n */\n\nfunction subscribe(name, handler) {\n bus.subscribe(name, handler);\n}\n/**\n * Unregister a previously registered event listener\n *\n * Note: doesn't work with anonymous functions (closures). Use method of an object or store listener function in variable.\n *\n * @param name name of the event\n * @param handler callback passed to `subscribed`\n */\n\n\nfunction unsubscribe(name, handler) {\n bus.unsubscribe(name, handler);\n}\n/**\n * Emit an event\n *\n * @param name name of the event\n * @param event event payload\n */\n\n\nfunction emit(name, event) {\n bus.emit(name, event);\n}\n//# sourceMappingURL=index.js.map","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.ProxyBus = void 0;\n\nvar _semver = _interopRequireDefault(require(\"semver\"));\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nfunction _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }\n\nfunction _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }\n\nfunction _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }\n\nvar packageJson = {\n name: \"@nextcloud/event-bus\",\n version: \"1.1.2\",\n description: \"\",\n main: \"dist/index.js\",\n types: \"dist/index.d.ts\",\n scripts: {\n build: \"babel ./lib --out-dir dist --extensions '.ts,.tsx' --source-maps && tsc --emitDeclarationOnly\",\n \"build:doc\": \"typedoc --excludeNotExported --mode file --out dist/doc lib/index.ts && touch dist/doc/.nojekyll\",\n \"check-types\": \"tsc\",\n dev: \"babel ./lib --out-dir dist --extensions '.ts,.tsx' --watch\",\n test: \"jest\",\n \"test:watch\": \"jest --watchAll\"\n },\n keywords: [\"nextcloud\"],\n homepage: \"https://github.com/nextcloud/nextcloud-event-bus#readme\",\n author: \"Christoph Wurst\",\n license: \"GPL-3.0-or-later\",\n repository: {\n type: \"git\",\n url: \"https://github.com/nextcloud/nextcloud-event-bus\"\n },\n dependencies: {\n \"@types/semver\": \"^6.2.0\",\n \"core-js\": \"^3.6.2\",\n semver: \"^6.3.0\"\n },\n devDependencies: {\n \"@babel/cli\": \"^7.6.0\",\n \"@babel/core\": \"^7.6.0\",\n \"@babel/plugin-proposal-class-properties\": \"^7.5.5\",\n \"@babel/preset-env\": \"^7.6.0\",\n \"@babel/preset-typescript\": \"^7.6.0\",\n \"@nextcloud/browserslist-config\": \"^1.0.0\",\n \"babel-jest\": \"^24.9.0\",\n \"babel-plugin-inline-json-import\": \"^0.3.2\",\n jest: \"^24.9.0\",\n typedoc: \"^0.15.7\",\n typescript: \"^3.6.3\"\n },\n browserslist: [\"extends @nextcloud/browserslist-config\"]\n};\n\nvar ProxyBus =\n/*#__PURE__*/\nfunction () {\n function ProxyBus(bus) {\n _classCallCheck(this, ProxyBus);\n\n _defineProperty(this, \"bus\", void 0);\n\n if (typeof bus.getVersion !== 'function' || !_semver.default.valid(bus.getVersion())) {\n console.warn('Proxying an event bus with an unknown or invalid version');\n } else if (_semver.default.major(bus.getVersion()) !== _semver.default.major(this.getVersion())) {\n console.warn('Proxying an event bus of version ' + bus.getVersion() + ' with ' + this.getVersion());\n }\n\n this.bus = bus;\n }\n\n _createClass(ProxyBus, [{\n key: \"getVersion\",\n value: function getVersion() {\n return packageJson.version;\n }\n }, {\n key: \"subscribe\",\n value: function subscribe(name, handler) {\n this.bus.subscribe(name, handler);\n }\n }, {\n key: \"unsubscribe\",\n value: function unsubscribe(name, handler) {\n this.bus.unsubscribe(name, handler);\n }\n }, {\n key: \"emit\",\n value: function emit(name, event) {\n this.bus.emit(name, event);\n }\n }]);\n\n return ProxyBus;\n}();\n\nexports.ProxyBus = ProxyBus;\n//# sourceMappingURL=ProxyBus.js.map","exports = module.exports = SemVer\n\nvar debug\n/* istanbul ignore next */\nif (typeof process === 'object' &&\n process.env &&\n process.env.NODE_DEBUG &&\n /\\bsemver\\b/i.test(process.env.NODE_DEBUG)) {\n debug = function () {\n var args = Array.prototype.slice.call(arguments, 0)\n args.unshift('SEMVER')\n console.log.apply(console, args)\n }\n} else {\n debug = function () {}\n}\n\n// Note: this is the semver.org version of the spec that it implements\n// Not necessarily the package version of this code.\nexports.SEMVER_SPEC_VERSION = '2.0.0'\n\nvar MAX_LENGTH = 256\nvar MAX_SAFE_INTEGER = Number.MAX_SAFE_INTEGER ||\n /* istanbul ignore next */ 9007199254740991\n\n// Max safe segment length for coercion.\nvar MAX_SAFE_COMPONENT_LENGTH = 16\n\n// The actual regexps go on exports.re\nvar re = exports.re = []\nvar src = exports.src = []\nvar t = exports.tokens = {}\nvar R = 0\n\nfunction tok (n) {\n t[n] = R++\n}\n\n// The following Regular Expressions can be used for tokenizing,\n// validating, and parsing SemVer version strings.\n\n// ## Numeric Identifier\n// A single `0`, or a non-zero digit followed by zero or more digits.\n\ntok('NUMERICIDENTIFIER')\nsrc[t.NUMERICIDENTIFIER] = '0|[1-9]\\\\d*'\ntok('NUMERICIDENTIFIERLOOSE')\nsrc[t.NUMERICIDENTIFIERLOOSE] = '[0-9]+'\n\n// ## Non-numeric Identifier\n// Zero or more digits, followed by a letter or hyphen, and then zero or\n// more letters, digits, or hyphens.\n\ntok('NONNUMERICIDENTIFIER')\nsrc[t.NONNUMERICIDENTIFIER] = '\\\\d*[a-zA-Z-][a-zA-Z0-9-]*'\n\n// ## Main Version\n// Three dot-separated numeric identifiers.\n\ntok('MAINVERSION')\nsrc[t.MAINVERSION] = '(' + src[t.NUMERICIDENTIFIER] + ')\\\\.' +\n '(' + src[t.NUMERICIDENTIFIER] + ')\\\\.' +\n '(' + src[t.NUMERICIDENTIFIER] + ')'\n\ntok('MAINVERSIONLOOSE')\nsrc[t.MAINVERSIONLOOSE] = '(' + src[t.NUMERICIDENTIFIERLOOSE] + ')\\\\.' +\n '(' + src[t.NUMERICIDENTIFIERLOOSE] + ')\\\\.' +\n '(' + src[t.NUMERICIDENTIFIERLOOSE] + ')'\n\n// ## Pre-release Version Identifier\n// A numeric identifier, or a non-numeric identifier.\n\ntok('PRERELEASEIDENTIFIER')\nsrc[t.PRERELEASEIDENTIFIER] = '(?:' + src[t.NUMERICIDENTIFIER] +\n '|' + src[t.NONNUMERICIDENTIFIER] + ')'\n\ntok('PRERELEASEIDENTIFIERLOOSE')\nsrc[t.PRERELEASEIDENTIFIERLOOSE] = '(?:' + src[t.NUMERICIDENTIFIERLOOSE] +\n '|' + src[t.NONNUMERICIDENTIFIER] + ')'\n\n// ## Pre-release Version\n// Hyphen, followed by one or more dot-separated pre-release version\n// identifiers.\n\ntok('PRERELEASE')\nsrc[t.PRERELEASE] = '(?:-(' + src[t.PRERELEASEIDENTIFIER] +\n '(?:\\\\.' + src[t.PRERELEASEIDENTIFIER] + ')*))'\n\ntok('PRERELEASELOOSE')\nsrc[t.PRERELEASELOOSE] = '(?:-?(' + src[t.PRERELEASEIDENTIFIERLOOSE] +\n '(?:\\\\.' + src[t.PRERELEASEIDENTIFIERLOOSE] + ')*))'\n\n// ## Build Metadata Identifier\n// Any combination of digits, letters, or hyphens.\n\ntok('BUILDIDENTIFIER')\nsrc[t.BUILDIDENTIFIER] = '[0-9A-Za-z-]+'\n\n// ## Build Metadata\n// Plus sign, followed by one or more period-separated build metadata\n// identifiers.\n\ntok('BUILD')\nsrc[t.BUILD] = '(?:\\\\+(' + src[t.BUILDIDENTIFIER] +\n '(?:\\\\.' + src[t.BUILDIDENTIFIER] + ')*))'\n\n// ## Full Version String\n// A main version, followed optionally by a pre-release version and\n// build metadata.\n\n// Note that the only major, minor, patch, and pre-release sections of\n// the version string are capturing groups. The build metadata is not a\n// capturing group, because it should not ever be used in version\n// comparison.\n\ntok('FULL')\ntok('FULLPLAIN')\nsrc[t.FULLPLAIN] = 'v?' + src[t.MAINVERSION] +\n src[t.PRERELEASE] + '?' +\n src[t.BUILD] + '?'\n\nsrc[t.FULL] = '^' + src[t.FULLPLAIN] + '$'\n\n// like full, but allows v1.2.3 and =1.2.3, which people do sometimes.\n// also, 1.0.0alpha1 (prerelease without the hyphen) which is pretty\n// common in the npm registry.\ntok('LOOSEPLAIN')\nsrc[t.LOOSEPLAIN] = '[v=\\\\s]*' + src[t.MAINVERSIONLOOSE] +\n src[t.PRERELEASELOOSE] + '?' +\n src[t.BUILD] + '?'\n\ntok('LOOSE')\nsrc[t.LOOSE] = '^' + src[t.LOOSEPLAIN] + '$'\n\ntok('GTLT')\nsrc[t.GTLT] = '((?:<|>)?=?)'\n\n// Something like \"2.*\" or \"1.2.x\".\n// Note that \"x.x\" is a valid xRange identifer, meaning \"any version\"\n// Only the first item is strictly required.\ntok('XRANGEIDENTIFIERLOOSE')\nsrc[t.XRANGEIDENTIFIERLOOSE] = src[t.NUMERICIDENTIFIERLOOSE] + '|x|X|\\\\*'\ntok('XRANGEIDENTIFIER')\nsrc[t.XRANGEIDENTIFIER] = src[t.NUMERICIDENTIFIER] + '|x|X|\\\\*'\n\ntok('XRANGEPLAIN')\nsrc[t.XRANGEPLAIN] = '[v=\\\\s]*(' + src[t.XRANGEIDENTIFIER] + ')' +\n '(?:\\\\.(' + src[t.XRANGEIDENTIFIER] + ')' +\n '(?:\\\\.(' + src[t.XRANGEIDENTIFIER] + ')' +\n '(?:' + src[t.PRERELEASE] + ')?' +\n src[t.BUILD] + '?' +\n ')?)?'\n\ntok('XRANGEPLAINLOOSE')\nsrc[t.XRANGEPLAINLOOSE] = '[v=\\\\s]*(' + src[t.XRANGEIDENTIFIERLOOSE] + ')' +\n '(?:\\\\.(' + src[t.XRANGEIDENTIFIERLOOSE] + ')' +\n '(?:\\\\.(' + src[t.XRANGEIDENTIFIERLOOSE] + ')' +\n '(?:' + src[t.PRERELEASELOOSE] + ')?' +\n src[t.BUILD] + '?' +\n ')?)?'\n\ntok('XRANGE')\nsrc[t.XRANGE] = '^' + src[t.GTLT] + '\\\\s*' + src[t.XRANGEPLAIN] + '$'\ntok('XRANGELOOSE')\nsrc[t.XRANGELOOSE] = '^' + src[t.GTLT] + '\\\\s*' + src[t.XRANGEPLAINLOOSE] + '$'\n\n// Coercion.\n// Extract anything that could conceivably be a part of a valid semver\ntok('COERCE')\nsrc[t.COERCE] = '(^|[^\\\\d])' +\n '(\\\\d{1,' + MAX_SAFE_COMPONENT_LENGTH + '})' +\n '(?:\\\\.(\\\\d{1,' + MAX_SAFE_COMPONENT_LENGTH + '}))?' +\n '(?:\\\\.(\\\\d{1,' + MAX_SAFE_COMPONENT_LENGTH + '}))?' +\n '(?:$|[^\\\\d])'\ntok('COERCERTL')\nre[t.COERCERTL] = new RegExp(src[t.COERCE], 'g')\n\n// Tilde ranges.\n// Meaning is \"reasonably at or greater than\"\ntok('LONETILDE')\nsrc[t.LONETILDE] = '(?:~>?)'\n\ntok('TILDETRIM')\nsrc[t.TILDETRIM] = '(\\\\s*)' + src[t.LONETILDE] + '\\\\s+'\nre[t.TILDETRIM] = new RegExp(src[t.TILDETRIM], 'g')\nvar tildeTrimReplace = '$1~'\n\ntok('TILDE')\nsrc[t.TILDE] = '^' + src[t.LONETILDE] + src[t.XRANGEPLAIN] + '$'\ntok('TILDELOOSE')\nsrc[t.TILDELOOSE] = '^' + src[t.LONETILDE] + src[t.XRANGEPLAINLOOSE] + '$'\n\n// Caret ranges.\n// Meaning is \"at least and backwards compatible with\"\ntok('LONECARET')\nsrc[t.LONECARET] = '(?:\\\\^)'\n\ntok('CARETTRIM')\nsrc[t.CARETTRIM] = '(\\\\s*)' + src[t.LONECARET] + '\\\\s+'\nre[t.CARETTRIM] = new RegExp(src[t.CARETTRIM], 'g')\nvar caretTrimReplace = '$1^'\n\ntok('CARET')\nsrc[t.CARET] = '^' + src[t.LONECARET] + src[t.XRANGEPLAIN] + '$'\ntok('CARETLOOSE')\nsrc[t.CARETLOOSE] = '^' + src[t.LONECARET] + src[t.XRANGEPLAINLOOSE] + '$'\n\n// A simple gt/lt/eq thing, or just \"\" to indicate \"any version\"\ntok('COMPARATORLOOSE')\nsrc[t.COMPARATORLOOSE] = '^' + src[t.GTLT] + '\\\\s*(' + src[t.LOOSEPLAIN] + ')$|^$'\ntok('COMPARATOR')\nsrc[t.COMPARATOR] = '^' + src[t.GTLT] + '\\\\s*(' + src[t.FULLPLAIN] + ')$|^$'\n\n// An expression to strip any whitespace between the gtlt and the thing\n// it modifies, so that `> 1.2.3` ==> `>1.2.3`\ntok('COMPARATORTRIM')\nsrc[t.COMPARATORTRIM] = '(\\\\s*)' + src[t.GTLT] +\n '\\\\s*(' + src[t.LOOSEPLAIN] + '|' + src[t.XRANGEPLAIN] + ')'\n\n// this one has to use the /g flag\nre[t.COMPARATORTRIM] = new RegExp(src[t.COMPARATORTRIM], 'g')\nvar comparatorTrimReplace = '$1$2$3'\n\n// Something like `1.2.3 - 1.2.4`\n// Note that these all use the loose form, because they'll be\n// checked against either the strict or loose comparator form\n// later.\ntok('HYPHENRANGE')\nsrc[t.HYPHENRANGE] = '^\\\\s*(' + src[t.XRANGEPLAIN] + ')' +\n '\\\\s+-\\\\s+' +\n '(' + src[t.XRANGEPLAIN] + ')' +\n '\\\\s*$'\n\ntok('HYPHENRANGELOOSE')\nsrc[t.HYPHENRANGELOOSE] = '^\\\\s*(' + src[t.XRANGEPLAINLOOSE] + ')' +\n '\\\\s+-\\\\s+' +\n '(' + src[t.XRANGEPLAINLOOSE] + ')' +\n '\\\\s*$'\n\n// Star ranges basically just allow anything at all.\ntok('STAR')\nsrc[t.STAR] = '(<|>)?=?\\\\s*\\\\*'\n\n// Compile to actual regexp objects.\n// All are flag-free, unless they were created above with a flag.\nfor (var i = 0; i < R; i++) {\n debug(i, src[i])\n if (!re[i]) {\n re[i] = new RegExp(src[i])\n }\n}\n\nexports.parse = parse\nfunction parse (version, options) {\n if (!options || typeof options !== 'object') {\n options = {\n loose: !!options,\n includePrerelease: false\n }\n }\n\n if (version instanceof SemVer) {\n return version\n }\n\n if (typeof version !== 'string') {\n return null\n }\n\n if (version.length > MAX_LENGTH) {\n return null\n }\n\n var r = options.loose ? re[t.LOOSE] : re[t.FULL]\n if (!r.test(version)) {\n return null\n }\n\n try {\n return new SemVer(version, options)\n } catch (er) {\n return null\n }\n}\n\nexports.valid = valid\nfunction valid (version, options) {\n var v = parse(version, options)\n return v ? v.version : null\n}\n\nexports.clean = clean\nfunction clean (version, options) {\n var s = parse(version.trim().replace(/^[=v]+/, ''), options)\n return s ? s.version : null\n}\n\nexports.SemVer = SemVer\n\nfunction SemVer (version, options) {\n if (!options || typeof options !== 'object') {\n options = {\n loose: !!options,\n includePrerelease: false\n }\n }\n if (version instanceof SemVer) {\n if (version.loose === options.loose) {\n return version\n } else {\n version = version.version\n }\n } else if (typeof version !== 'string') {\n throw new TypeError('Invalid Version: ' + version)\n }\n\n if (version.length > MAX_LENGTH) {\n throw new TypeError('version is longer than ' + MAX_LENGTH + ' characters')\n }\n\n if (!(this instanceof SemVer)) {\n return new SemVer(version, options)\n }\n\n debug('SemVer', version, options)\n this.options = options\n this.loose = !!options.loose\n\n var m = version.trim().match(options.loose ? re[t.LOOSE] : re[t.FULL])\n\n if (!m) {\n throw new TypeError('Invalid Version: ' + version)\n }\n\n this.raw = version\n\n // these are actually numbers\n this.major = +m[1]\n this.minor = +m[2]\n this.patch = +m[3]\n\n if (this.major > MAX_SAFE_INTEGER || this.major < 0) {\n throw new TypeError('Invalid major version')\n }\n\n if (this.minor > MAX_SAFE_INTEGER || this.minor < 0) {\n throw new TypeError('Invalid minor version')\n }\n\n if (this.patch > MAX_SAFE_INTEGER || this.patch < 0) {\n throw new TypeError('Invalid patch version')\n }\n\n // numberify any prerelease numeric ids\n if (!m[4]) {\n this.prerelease = []\n } else {\n this.prerelease = m[4].split('.').map(function (id) {\n if (/^[0-9]+$/.test(id)) {\n var num = +id\n if (num >= 0 && num < MAX_SAFE_INTEGER) {\n return num\n }\n }\n return id\n })\n }\n\n this.build = m[5] ? m[5].split('.') : []\n this.format()\n}\n\nSemVer.prototype.format = function () {\n this.version = this.major + '.' + this.minor + '.' + this.patch\n if (this.prerelease.length) {\n this.version += '-' + this.prerelease.join('.')\n }\n return this.version\n}\n\nSemVer.prototype.toString = function () {\n return this.version\n}\n\nSemVer.prototype.compare = function (other) {\n debug('SemVer.compare', this.version, this.options, other)\n if (!(other instanceof SemVer)) {\n other = new SemVer(other, this.options)\n }\n\n return this.compareMain(other) || this.comparePre(other)\n}\n\nSemVer.prototype.compareMain = function (other) {\n if (!(other instanceof SemVer)) {\n other = new SemVer(other, this.options)\n }\n\n return compareIdentifiers(this.major, other.major) ||\n compareIdentifiers(this.minor, other.minor) ||\n compareIdentifiers(this.patch, other.patch)\n}\n\nSemVer.prototype.comparePre = function (other) {\n if (!(other instanceof SemVer)) {\n other = new SemVer(other, this.options)\n }\n\n // NOT having a prerelease is > having one\n if (this.prerelease.length && !other.prerelease.length) {\n return -1\n } else if (!this.prerelease.length && other.prerelease.length) {\n return 1\n } else if (!this.prerelease.length && !other.prerelease.length) {\n return 0\n }\n\n var i = 0\n do {\n var a = this.prerelease[i]\n var b = other.prerelease[i]\n debug('prerelease compare', i, a, b)\n if (a === undefined && b === undefined) {\n return 0\n } else if (b === undefined) {\n return 1\n } else if (a === undefined) {\n return -1\n } else if (a === b) {\n continue\n } else {\n return compareIdentifiers(a, b)\n }\n } while (++i)\n}\n\nSemVer.prototype.compareBuild = function (other) {\n if (!(other instanceof SemVer)) {\n other = new SemVer(other, this.options)\n }\n\n var i = 0\n do {\n var a = this.build[i]\n var b = other.build[i]\n debug('prerelease compare', i, a, b)\n if (a === undefined && b === undefined) {\n return 0\n } else if (b === undefined) {\n return 1\n } else if (a === undefined) {\n return -1\n } else if (a === b) {\n continue\n } else {\n return compareIdentifiers(a, b)\n }\n } while (++i)\n}\n\n// preminor will bump the version up to the next minor release, and immediately\n// down to pre-release. premajor and prepatch work the same way.\nSemVer.prototype.inc = function (release, identifier) {\n switch (release) {\n case 'premajor':\n this.prerelease.length = 0\n this.patch = 0\n this.minor = 0\n this.major++\n this.inc('pre', identifier)\n break\n case 'preminor':\n this.prerelease.length = 0\n this.patch = 0\n this.minor++\n this.inc('pre', identifier)\n break\n case 'prepatch':\n // If this is already a prerelease, it will bump to the next version\n // drop any prereleases that might already exist, since they are not\n // relevant at this point.\n this.prerelease.length = 0\n this.inc('patch', identifier)\n this.inc('pre', identifier)\n break\n // If the input is a non-prerelease version, this acts the same as\n // prepatch.\n case 'prerelease':\n if (this.prerelease.length === 0) {\n this.inc('patch', identifier)\n }\n this.inc('pre', identifier)\n break\n\n case 'major':\n // If this is a pre-major version, bump up to the same major version.\n // Otherwise increment major.\n // 1.0.0-5 bumps to 1.0.0\n // 1.1.0 bumps to 2.0.0\n if (this.minor !== 0 ||\n this.patch !== 0 ||\n this.prerelease.length === 0) {\n this.major++\n }\n this.minor = 0\n this.patch = 0\n this.prerelease = []\n break\n case 'minor':\n // If this is a pre-minor version, bump up to the same minor version.\n // Otherwise increment minor.\n // 1.2.0-5 bumps to 1.2.0\n // 1.2.1 bumps to 1.3.0\n if (this.patch !== 0 || this.prerelease.length === 0) {\n this.minor++\n }\n this.patch = 0\n this.prerelease = []\n break\n case 'patch':\n // If this is not a pre-release version, it will increment the patch.\n // If it is a pre-release it will bump up to the same patch version.\n // 1.2.0-5 patches to 1.2.0\n // 1.2.0 patches to 1.2.1\n if (this.prerelease.length === 0) {\n this.patch++\n }\n this.prerelease = []\n break\n // This probably shouldn't be used publicly.\n // 1.0.0 \"pre\" would become 1.0.0-0 which is the wrong direction.\n case 'pre':\n if (this.prerelease.length === 0) {\n this.prerelease = [0]\n } else {\n var i = this.prerelease.length\n while (--i >= 0) {\n if (typeof this.prerelease[i] === 'number') {\n this.prerelease[i]++\n i = -2\n }\n }\n if (i === -1) {\n // didn't increment anything\n this.prerelease.push(0)\n }\n }\n if (identifier) {\n // 1.2.0-beta.1 bumps to 1.2.0-beta.2,\n // 1.2.0-beta.fooblz or 1.2.0-beta bumps to 1.2.0-beta.0\n if (this.prerelease[0] === identifier) {\n if (isNaN(this.prerelease[1])) {\n this.prerelease = [identifier, 0]\n }\n } else {\n this.prerelease = [identifier, 0]\n }\n }\n break\n\n default:\n throw new Error('invalid increment argument: ' + release)\n }\n this.format()\n this.raw = this.version\n return this\n}\n\nexports.inc = inc\nfunction inc (version, release, loose, identifier) {\n if (typeof (loose) === 'string') {\n identifier = loose\n loose = undefined\n }\n\n try {\n return new SemVer(version, loose).inc(release, identifier).version\n } catch (er) {\n return null\n }\n}\n\nexports.diff = diff\nfunction diff (version1, version2) {\n if (eq(version1, version2)) {\n return null\n } else {\n var v1 = parse(version1)\n var v2 = parse(version2)\n var prefix = ''\n if (v1.prerelease.length || v2.prerelease.length) {\n prefix = 'pre'\n var defaultResult = 'prerelease'\n }\n for (var key in v1) {\n if (key === 'major' || key === 'minor' || key === 'patch') {\n if (v1[key] !== v2[key]) {\n return prefix + key\n }\n }\n }\n return defaultResult // may be undefined\n }\n}\n\nexports.compareIdentifiers = compareIdentifiers\n\nvar numeric = /^[0-9]+$/\nfunction compareIdentifiers (a, b) {\n var anum = numeric.test(a)\n var bnum = numeric.test(b)\n\n if (anum && bnum) {\n a = +a\n b = +b\n }\n\n return a === b ? 0\n : (anum && !bnum) ? -1\n : (bnum && !anum) ? 1\n : a < b ? -1\n : 1\n}\n\nexports.rcompareIdentifiers = rcompareIdentifiers\nfunction rcompareIdentifiers (a, b) {\n return compareIdentifiers(b, a)\n}\n\nexports.major = major\nfunction major (a, loose) {\n return new SemVer(a, loose).major\n}\n\nexports.minor = minor\nfunction minor (a, loose) {\n return new SemVer(a, loose).minor\n}\n\nexports.patch = patch\nfunction patch (a, loose) {\n return new SemVer(a, loose).patch\n}\n\nexports.compare = compare\nfunction compare (a, b, loose) {\n return new SemVer(a, loose).compare(new SemVer(b, loose))\n}\n\nexports.compareLoose = compareLoose\nfunction compareLoose (a, b) {\n return compare(a, b, true)\n}\n\nexports.compareBuild = compareBuild\nfunction compareBuild (a, b, loose) {\n var versionA = new SemVer(a, loose)\n var versionB = new SemVer(b, loose)\n return versionA.compare(versionB) || versionA.compareBuild(versionB)\n}\n\nexports.rcompare = rcompare\nfunction rcompare (a, b, loose) {\n return compare(b, a, loose)\n}\n\nexports.sort = sort\nfunction sort (list, loose) {\n return list.sort(function (a, b) {\n return exports.compareBuild(a, b, loose)\n })\n}\n\nexports.rsort = rsort\nfunction rsort (list, loose) {\n return list.sort(function (a, b) {\n return exports.compareBuild(b, a, loose)\n })\n}\n\nexports.gt = gt\nfunction gt (a, b, loose) {\n return compare(a, b, loose) > 0\n}\n\nexports.lt = lt\nfunction lt (a, b, loose) {\n return compare(a, b, loose) < 0\n}\n\nexports.eq = eq\nfunction eq (a, b, loose) {\n return compare(a, b, loose) === 0\n}\n\nexports.neq = neq\nfunction neq (a, b, loose) {\n return compare(a, b, loose) !== 0\n}\n\nexports.gte = gte\nfunction gte (a, b, loose) {\n return compare(a, b, loose) >= 0\n}\n\nexports.lte = lte\nfunction lte (a, b, loose) {\n return compare(a, b, loose) <= 0\n}\n\nexports.cmp = cmp\nfunction cmp (a, op, b, loose) {\n switch (op) {\n case '===':\n if (typeof a === 'object')\n a = a.version\n if (typeof b === 'object')\n b = b.version\n return a === b\n\n case '!==':\n if (typeof a === 'object')\n a = a.version\n if (typeof b === 'object')\n b = b.version\n return a !== b\n\n case '':\n case '=':\n case '==':\n return eq(a, b, loose)\n\n case '!=':\n return neq(a, b, loose)\n\n case '>':\n return gt(a, b, loose)\n\n case '>=':\n return gte(a, b, loose)\n\n case '<':\n return lt(a, b, loose)\n\n case '<=':\n return lte(a, b, loose)\n\n default:\n throw new TypeError('Invalid operator: ' + op)\n }\n}\n\nexports.Comparator = Comparator\nfunction Comparator (comp, options) {\n if (!options || typeof options !== 'object') {\n options = {\n loose: !!options,\n includePrerelease: false\n }\n }\n\n if (comp instanceof Comparator) {\n if (comp.loose === !!options.loose) {\n return comp\n } else {\n comp = comp.value\n }\n }\n\n if (!(this instanceof Comparator)) {\n return new Comparator(comp, options)\n }\n\n debug('comparator', comp, options)\n this.options = options\n this.loose = !!options.loose\n this.parse(comp)\n\n if (this.semver === ANY) {\n this.value = ''\n } else {\n this.value = this.operator + this.semver.version\n }\n\n debug('comp', this)\n}\n\nvar ANY = {}\nComparator.prototype.parse = function (comp) {\n var r = this.options.loose ? re[t.COMPARATORLOOSE] : re[t.COMPARATOR]\n var m = comp.match(r)\n\n if (!m) {\n throw new TypeError('Invalid comparator: ' + comp)\n }\n\n this.operator = m[1] !== undefined ? m[1] : ''\n if (this.operator === '=') {\n this.operator = ''\n }\n\n // if it literally is just '>' or '' then allow anything.\n if (!m[2]) {\n this.semver = ANY\n } else {\n this.semver = new SemVer(m[2], this.options.loose)\n }\n}\n\nComparator.prototype.toString = function () {\n return this.value\n}\n\nComparator.prototype.test = function (version) {\n debug('Comparator.test', version, this.options.loose)\n\n if (this.semver === ANY || version === ANY) {\n return true\n }\n\n if (typeof version === 'string') {\n try {\n version = new SemVer(version, this.options)\n } catch (er) {\n return false\n }\n }\n\n return cmp(version, this.operator, this.semver, this.options)\n}\n\nComparator.prototype.intersects = function (comp, options) {\n if (!(comp instanceof Comparator)) {\n throw new TypeError('a Comparator is required')\n }\n\n if (!options || typeof options !== 'object') {\n options = {\n loose: !!options,\n includePrerelease: false\n }\n }\n\n var rangeTmp\n\n if (this.operator === '') {\n if (this.value === '') {\n return true\n }\n rangeTmp = new Range(comp.value, options)\n return satisfies(this.value, rangeTmp, options)\n } else if (comp.operator === '') {\n if (comp.value === '') {\n return true\n }\n rangeTmp = new Range(this.value, options)\n return satisfies(comp.semver, rangeTmp, options)\n }\n\n var sameDirectionIncreasing =\n (this.operator === '>=' || this.operator === '>') &&\n (comp.operator === '>=' || comp.operator === '>')\n var sameDirectionDecreasing =\n (this.operator === '<=' || this.operator === '<') &&\n (comp.operator === '<=' || comp.operator === '<')\n var sameSemVer = this.semver.version === comp.semver.version\n var differentDirectionsInclusive =\n (this.operator === '>=' || this.operator === '<=') &&\n (comp.operator === '>=' || comp.operator === '<=')\n var oppositeDirectionsLessThan =\n cmp(this.semver, '<', comp.semver, options) &&\n ((this.operator === '>=' || this.operator === '>') &&\n (comp.operator === '<=' || comp.operator === '<'))\n var oppositeDirectionsGreaterThan =\n cmp(this.semver, '>', comp.semver, options) &&\n ((this.operator === '<=' || this.operator === '<') &&\n (comp.operator === '>=' || comp.operator === '>'))\n\n return sameDirectionIncreasing || sameDirectionDecreasing ||\n (sameSemVer && differentDirectionsInclusive) ||\n oppositeDirectionsLessThan || oppositeDirectionsGreaterThan\n}\n\nexports.Range = Range\nfunction Range (range, options) {\n if (!options || typeof options !== 'object') {\n options = {\n loose: !!options,\n includePrerelease: false\n }\n }\n\n if (range instanceof Range) {\n if (range.loose === !!options.loose &&\n range.includePrerelease === !!options.includePrerelease) {\n return range\n } else {\n return new Range(range.raw, options)\n }\n }\n\n if (range instanceof Comparator) {\n return new Range(range.value, options)\n }\n\n if (!(this instanceof Range)) {\n return new Range(range, options)\n }\n\n this.options = options\n this.loose = !!options.loose\n this.includePrerelease = !!options.includePrerelease\n\n // First, split based on boolean or ||\n this.raw = range\n this.set = range.split(/\\s*\\|\\|\\s*/).map(function (range) {\n return this.parseRange(range.trim())\n }, this).filter(function (c) {\n // throw out any that are not relevant for whatever reason\n return c.length\n })\n\n if (!this.set.length) {\n throw new TypeError('Invalid SemVer Range: ' + range)\n }\n\n this.format()\n}\n\nRange.prototype.format = function () {\n this.range = this.set.map(function (comps) {\n return comps.join(' ').trim()\n }).join('||').trim()\n return this.range\n}\n\nRange.prototype.toString = function () {\n return this.range\n}\n\nRange.prototype.parseRange = function (range) {\n var loose = this.options.loose\n range = range.trim()\n // `1.2.3 - 1.2.4` => `>=1.2.3 <=1.2.4`\n var hr = loose ? re[t.HYPHENRANGELOOSE] : re[t.HYPHENRANGE]\n range = range.replace(hr, hyphenReplace)\n debug('hyphen replace', range)\n // `> 1.2.3 < 1.2.5` => `>1.2.3 <1.2.5`\n range = range.replace(re[t.COMPARATORTRIM], comparatorTrimReplace)\n debug('comparator trim', range, re[t.COMPARATORTRIM])\n\n // `~ 1.2.3` => `~1.2.3`\n range = range.replace(re[t.TILDETRIM], tildeTrimReplace)\n\n // `^ 1.2.3` => `^1.2.3`\n range = range.replace(re[t.CARETTRIM], caretTrimReplace)\n\n // normalize spaces\n range = range.split(/\\s+/).join(' ')\n\n // At this point, the range is completely trimmed and\n // ready to be split into comparators.\n\n var compRe = loose ? re[t.COMPARATORLOOSE] : re[t.COMPARATOR]\n var set = range.split(' ').map(function (comp) {\n return parseComparator(comp, this.options)\n }, this).join(' ').split(/\\s+/)\n if (this.options.loose) {\n // in loose mode, throw out any that are not valid comparators\n set = set.filter(function (comp) {\n return !!comp.match(compRe)\n })\n }\n set = set.map(function (comp) {\n return new Comparator(comp, this.options)\n }, this)\n\n return set\n}\n\nRange.prototype.intersects = function (range, options) {\n if (!(range instanceof Range)) {\n throw new TypeError('a Range is required')\n }\n\n return this.set.some(function (thisComparators) {\n return (\n isSatisfiable(thisComparators, options) &&\n range.set.some(function (rangeComparators) {\n return (\n isSatisfiable(rangeComparators, options) &&\n thisComparators.every(function (thisComparator) {\n return rangeComparators.every(function (rangeComparator) {\n return thisComparator.intersects(rangeComparator, options)\n })\n })\n )\n })\n )\n })\n}\n\n// take a set of comparators and determine whether there\n// exists a version which can satisfy it\nfunction isSatisfiable (comparators, options) {\n var result = true\n var remainingComparators = comparators.slice()\n var testComparator = remainingComparators.pop()\n\n while (result && remainingComparators.length) {\n result = remainingComparators.every(function (otherComparator) {\n return testComparator.intersects(otherComparator, options)\n })\n\n testComparator = remainingComparators.pop()\n }\n\n return result\n}\n\n// Mostly just for testing and legacy API reasons\nexports.toComparators = toComparators\nfunction toComparators (range, options) {\n return new Range(range, options).set.map(function (comp) {\n return comp.map(function (c) {\n return c.value\n }).join(' ').trim().split(' ')\n })\n}\n\n// comprised of xranges, tildes, stars, and gtlt's at this point.\n// already replaced the hyphen ranges\n// turn into a set of JUST comparators.\nfunction parseComparator (comp, options) {\n debug('comp', comp, options)\n comp = replaceCarets(comp, options)\n debug('caret', comp)\n comp = replaceTildes(comp, options)\n debug('tildes', comp)\n comp = replaceXRanges(comp, options)\n debug('xrange', comp)\n comp = replaceStars(comp, options)\n debug('stars', comp)\n return comp\n}\n\nfunction isX (id) {\n return !id || id.toLowerCase() === 'x' || id === '*'\n}\n\n// ~, ~> --> * (any, kinda silly)\n// ~2, ~2.x, ~2.x.x, ~>2, ~>2.x ~>2.x.x --> >=2.0.0 <3.0.0\n// ~2.0, ~2.0.x, ~>2.0, ~>2.0.x --> >=2.0.0 <2.1.0\n// ~1.2, ~1.2.x, ~>1.2, ~>1.2.x --> >=1.2.0 <1.3.0\n// ~1.2.3, ~>1.2.3 --> >=1.2.3 <1.3.0\n// ~1.2.0, ~>1.2.0 --> >=1.2.0 <1.3.0\nfunction replaceTildes (comp, options) {\n return comp.trim().split(/\\s+/).map(function (comp) {\n return replaceTilde(comp, options)\n }).join(' ')\n}\n\nfunction replaceTilde (comp, options) {\n var r = options.loose ? re[t.TILDELOOSE] : re[t.TILDE]\n return comp.replace(r, function (_, M, m, p, pr) {\n debug('tilde', comp, _, M, m, p, pr)\n var ret\n\n if (isX(M)) {\n ret = ''\n } else if (isX(m)) {\n ret = '>=' + M + '.0.0 <' + (+M + 1) + '.0.0'\n } else if (isX(p)) {\n // ~1.2 == >=1.2.0 <1.3.0\n ret = '>=' + M + '.' + m + '.0 <' + M + '.' + (+m + 1) + '.0'\n } else if (pr) {\n debug('replaceTilde pr', pr)\n ret = '>=' + M + '.' + m + '.' + p + '-' + pr +\n ' <' + M + '.' + (+m + 1) + '.0'\n } else {\n // ~1.2.3 == >=1.2.3 <1.3.0\n ret = '>=' + M + '.' + m + '.' + p +\n ' <' + M + '.' + (+m + 1) + '.0'\n }\n\n debug('tilde return', ret)\n return ret\n })\n}\n\n// ^ --> * (any, kinda silly)\n// ^2, ^2.x, ^2.x.x --> >=2.0.0 <3.0.0\n// ^2.0, ^2.0.x --> >=2.0.0 <3.0.0\n// ^1.2, ^1.2.x --> >=1.2.0 <2.0.0\n// ^1.2.3 --> >=1.2.3 <2.0.0\n// ^1.2.0 --> >=1.2.0 <2.0.0\nfunction replaceCarets (comp, options) {\n return comp.trim().split(/\\s+/).map(function (comp) {\n return replaceCaret(comp, options)\n }).join(' ')\n}\n\nfunction replaceCaret (comp, options) {\n debug('caret', comp, options)\n var r = options.loose ? re[t.CARETLOOSE] : re[t.CARET]\n return comp.replace(r, function (_, M, m, p, pr) {\n debug('caret', comp, _, M, m, p, pr)\n var ret\n\n if (isX(M)) {\n ret = ''\n } else if (isX(m)) {\n ret = '>=' + M + '.0.0 <' + (+M + 1) + '.0.0'\n } else if (isX(p)) {\n if (M === '0') {\n ret = '>=' + M + '.' + m + '.0 <' + M + '.' + (+m + 1) + '.0'\n } else {\n ret = '>=' + M + '.' + m + '.0 <' + (+M + 1) + '.0.0'\n }\n } else if (pr) {\n debug('replaceCaret pr', pr)\n if (M === '0') {\n if (m === '0') {\n ret = '>=' + M + '.' + m + '.' + p + '-' + pr +\n ' <' + M + '.' + m + '.' + (+p + 1)\n } else {\n ret = '>=' + M + '.' + m + '.' + p + '-' + pr +\n ' <' + M + '.' + (+m + 1) + '.0'\n }\n } else {\n ret = '>=' + M + '.' + m + '.' + p + '-' + pr +\n ' <' + (+M + 1) + '.0.0'\n }\n } else {\n debug('no pr')\n if (M === '0') {\n if (m === '0') {\n ret = '>=' + M + '.' + m + '.' + p +\n ' <' + M + '.' + m + '.' + (+p + 1)\n } else {\n ret = '>=' + M + '.' + m + '.' + p +\n ' <' + M + '.' + (+m + 1) + '.0'\n }\n } else {\n ret = '>=' + M + '.' + m + '.' + p +\n ' <' + (+M + 1) + '.0.0'\n }\n }\n\n debug('caret return', ret)\n return ret\n })\n}\n\nfunction replaceXRanges (comp, options) {\n debug('replaceXRanges', comp, options)\n return comp.split(/\\s+/).map(function (comp) {\n return replaceXRange(comp, options)\n }).join(' ')\n}\n\nfunction replaceXRange (comp, options) {\n comp = comp.trim()\n var r = options.loose ? re[t.XRANGELOOSE] : re[t.XRANGE]\n return comp.replace(r, function (ret, gtlt, M, m, p, pr) {\n debug('xRange', comp, ret, gtlt, M, m, p, pr)\n var xM = isX(M)\n var xm = xM || isX(m)\n var xp = xm || isX(p)\n var anyX = xp\n\n if (gtlt === '=' && anyX) {\n gtlt = ''\n }\n\n // if we're including prereleases in the match, then we need\n // to fix this to -0, the lowest possible prerelease value\n pr = options.includePrerelease ? '-0' : ''\n\n if (xM) {\n if (gtlt === '>' || gtlt === '<') {\n // nothing is allowed\n ret = '<0.0.0-0'\n } else {\n // nothing is forbidden\n ret = '*'\n }\n } else if (gtlt && anyX) {\n // we know patch is an x, because we have any x at all.\n // replace X with 0\n if (xm) {\n m = 0\n }\n p = 0\n\n if (gtlt === '>') {\n // >1 => >=2.0.0\n // >1.2 => >=1.3.0\n // >1.2.3 => >= 1.2.4\n gtlt = '>='\n if (xm) {\n M = +M + 1\n m = 0\n p = 0\n } else {\n m = +m + 1\n p = 0\n }\n } else if (gtlt === '<=') {\n // <=0.7.x is actually <0.8.0, since any 0.7.x should\n // pass. Similarly, <=7.x is actually <8.0.0, etc.\n gtlt = '<'\n if (xm) {\n M = +M + 1\n } else {\n m = +m + 1\n }\n }\n\n ret = gtlt + M + '.' + m + '.' + p + pr\n } else if (xm) {\n ret = '>=' + M + '.0.0' + pr + ' <' + (+M + 1) + '.0.0' + pr\n } else if (xp) {\n ret = '>=' + M + '.' + m + '.0' + pr +\n ' <' + M + '.' + (+m + 1) + '.0' + pr\n }\n\n debug('xRange return', ret)\n\n return ret\n })\n}\n\n// Because * is AND-ed with everything else in the comparator,\n// and '' means \"any version\", just remove the *s entirely.\nfunction replaceStars (comp, options) {\n debug('replaceStars', comp, options)\n // Looseness is ignored here. star is always as loose as it gets!\n return comp.trim().replace(re[t.STAR], '')\n}\n\n// This function is passed to string.replace(re[t.HYPHENRANGE])\n// M, m, patch, prerelease, build\n// 1.2 - 3.4.5 => >=1.2.0 <=3.4.5\n// 1.2.3 - 3.4 => >=1.2.0 <3.5.0 Any 3.4.x will do\n// 1.2 - 3.4 => >=1.2.0 <3.5.0\nfunction hyphenReplace ($0,\n from, fM, fm, fp, fpr, fb,\n to, tM, tm, tp, tpr, tb) {\n if (isX(fM)) {\n from = ''\n } else if (isX(fm)) {\n from = '>=' + fM + '.0.0'\n } else if (isX(fp)) {\n from = '>=' + fM + '.' + fm + '.0'\n } else {\n from = '>=' + from\n }\n\n if (isX(tM)) {\n to = ''\n } else if (isX(tm)) {\n to = '<' + (+tM + 1) + '.0.0'\n } else if (isX(tp)) {\n to = '<' + tM + '.' + (+tm + 1) + '.0'\n } else if (tpr) {\n to = '<=' + tM + '.' + tm + '.' + tp + '-' + tpr\n } else {\n to = '<=' + to\n }\n\n return (from + ' ' + to).trim()\n}\n\n// if ANY of the sets match ALL of its comparators, then pass\nRange.prototype.test = function (version) {\n if (!version) {\n return false\n }\n\n if (typeof version === 'string') {\n try {\n version = new SemVer(version, this.options)\n } catch (er) {\n return false\n }\n }\n\n for (var i = 0; i < this.set.length; i++) {\n if (testSet(this.set[i], version, this.options)) {\n return true\n }\n }\n return false\n}\n\nfunction testSet (set, version, options) {\n for (var i = 0; i < set.length; i++) {\n if (!set[i].test(version)) {\n return false\n }\n }\n\n if (version.prerelease.length && !options.includePrerelease) {\n // Find the set of versions that are allowed to have prereleases\n // For example, ^1.2.3-pr.1 desugars to >=1.2.3-pr.1 <2.0.0\n // That should allow `1.2.3-pr.2` to pass.\n // However, `1.2.4-alpha.notready` should NOT be allowed,\n // even though it's within the range set by the comparators.\n for (i = 0; i < set.length; i++) {\n debug(set[i].semver)\n if (set[i].semver === ANY) {\n continue\n }\n\n if (set[i].semver.prerelease.length > 0) {\n var allowed = set[i].semver\n if (allowed.major === version.major &&\n allowed.minor === version.minor &&\n allowed.patch === version.patch) {\n return true\n }\n }\n }\n\n // Version has a -pre, but it's not one of the ones we like.\n return false\n }\n\n return true\n}\n\nexports.satisfies = satisfies\nfunction satisfies (version, range, options) {\n try {\n range = new Range(range, options)\n } catch (er) {\n return false\n }\n return range.test(version)\n}\n\nexports.maxSatisfying = maxSatisfying\nfunction maxSatisfying (versions, range, options) {\n var max = null\n var maxSV = null\n try {\n var rangeObj = new Range(range, options)\n } catch (er) {\n return null\n }\n versions.forEach(function (v) {\n if (rangeObj.test(v)) {\n // satisfies(v, range, options)\n if (!max || maxSV.compare(v) === -1) {\n // compare(max, v, true)\n max = v\n maxSV = new SemVer(max, options)\n }\n }\n })\n return max\n}\n\nexports.minSatisfying = minSatisfying\nfunction minSatisfying (versions, range, options) {\n var min = null\n var minSV = null\n try {\n var rangeObj = new Range(range, options)\n } catch (er) {\n return null\n }\n versions.forEach(function (v) {\n if (rangeObj.test(v)) {\n // satisfies(v, range, options)\n if (!min || minSV.compare(v) === 1) {\n // compare(min, v, true)\n min = v\n minSV = new SemVer(min, options)\n }\n }\n })\n return min\n}\n\nexports.minVersion = minVersion\nfunction minVersion (range, loose) {\n range = new Range(range, loose)\n\n var minver = new SemVer('0.0.0')\n if (range.test(minver)) {\n return minver\n }\n\n minver = new SemVer('0.0.0-0')\n if (range.test(minver)) {\n return minver\n }\n\n minver = null\n for (var i = 0; i < range.set.length; ++i) {\n var comparators = range.set[i]\n\n comparators.forEach(function (comparator) {\n // Clone to avoid manipulating the comparator's semver object.\n var compver = new SemVer(comparator.semver.version)\n switch (comparator.operator) {\n case '>':\n if (compver.prerelease.length === 0) {\n compver.patch++\n } else {\n compver.prerelease.push(0)\n }\n compver.raw = compver.format()\n /* fallthrough */\n case '':\n case '>=':\n if (!minver || gt(minver, compver)) {\n minver = compver\n }\n break\n case '<':\n case '<=':\n /* Ignore maximum versions */\n break\n /* istanbul ignore next */\n default:\n throw new Error('Unexpected operation: ' + comparator.operator)\n }\n })\n }\n\n if (minver && range.test(minver)) {\n return minver\n }\n\n return null\n}\n\nexports.validRange = validRange\nfunction validRange (range, options) {\n try {\n // Return '*' instead of '' so that truthiness works.\n // This will throw if it's invalid anyway\n return new Range(range, options).range || '*'\n } catch (er) {\n return null\n }\n}\n\n// Determine if version is less than all the versions possible in the range\nexports.ltr = ltr\nfunction ltr (version, range, options) {\n return outside(version, range, '<', options)\n}\n\n// Determine if version is greater than all the versions possible in the range.\nexports.gtr = gtr\nfunction gtr (version, range, options) {\n return outside(version, range, '>', options)\n}\n\nexports.outside = outside\nfunction outside (version, range, hilo, options) {\n version = new SemVer(version, options)\n range = new Range(range, options)\n\n var gtfn, ltefn, ltfn, comp, ecomp\n switch (hilo) {\n case '>':\n gtfn = gt\n ltefn = lte\n ltfn = lt\n comp = '>'\n ecomp = '>='\n break\n case '<':\n gtfn = lt\n ltefn = gte\n ltfn = gt\n comp = '<'\n ecomp = '<='\n break\n default:\n throw new TypeError('Must provide a hilo val of \"<\" or \">\"')\n }\n\n // If it satisifes the range it is not outside\n if (satisfies(version, range, options)) {\n return false\n }\n\n // From now on, variable terms are as if we're in \"gtr\" mode.\n // but note that everything is flipped for the \"ltr\" function.\n\n for (var i = 0; i < range.set.length; ++i) {\n var comparators = range.set[i]\n\n var high = null\n var low = null\n\n comparators.forEach(function (comparator) {\n if (comparator.semver === ANY) {\n comparator = new Comparator('>=0.0.0')\n }\n high = high || comparator\n low = low || comparator\n if (gtfn(comparator.semver, high.semver, options)) {\n high = comparator\n } else if (ltfn(comparator.semver, low.semver, options)) {\n low = comparator\n }\n })\n\n // If the edge version comparator has a operator then our version\n // isn't outside it\n if (high.operator === comp || high.operator === ecomp) {\n return false\n }\n\n // If the lowest version comparator has an operator and our version\n // is less than it then it isn't higher than the range\n if ((!low.operator || low.operator === comp) &&\n ltefn(version, low.semver)) {\n return false\n } else if (low.operator === ecomp && ltfn(version, low.semver)) {\n return false\n }\n }\n return true\n}\n\nexports.prerelease = prerelease\nfunction prerelease (version, options) {\n var parsed = parse(version, options)\n return (parsed && parsed.prerelease.length) ? parsed.prerelease : null\n}\n\nexports.intersects = intersects\nfunction intersects (r1, r2, options) {\n r1 = new Range(r1, options)\n r2 = new Range(r2, options)\n return r1.intersects(r2)\n}\n\nexports.coerce = coerce\nfunction coerce (version, options) {\n if (version instanceof SemVer) {\n return version\n }\n\n if (typeof version === 'number') {\n version = String(version)\n }\n\n if (typeof version !== 'string') {\n return null\n }\n\n options = options || {}\n\n var match = null\n if (!options.rtl) {\n match = version.match(re[t.COERCE])\n } else {\n // Find the right-most coercible string that does not share\n // a terminus with a more left-ward coercible string.\n // Eg, '1.2.3.4' wants to coerce '2.3.4', not '3.4' or '4'\n //\n // Walk through the string checking with a /g regexp\n // Manually set the index so as to pick up overlapping matches.\n // Stop when we get a match that ends at the string end, since no\n // coercible string can be more right-ward without the same terminus.\n var next\n while ((next = re[t.COERCERTL].exec(version)) &&\n (!match || match.index + match[0].length !== version.length)\n ) {\n if (!match ||\n next.index + next[0].length !== match.index + match[0].length) {\n match = next\n }\n re[t.COERCERTL].lastIndex = next.index + next[1].length + next[2].length\n }\n // leave it in a clean state\n re[t.COERCERTL].lastIndex = -1\n }\n\n if (match === null) {\n return null\n }\n\n return parse(match[2] +\n '.' + (match[3] || '0') +\n '.' + (match[4] || '0'), options)\n}\n","\"use strict\";\n\nrequire(\"core-js/modules/es.array.concat\");\n\nrequire(\"core-js/modules/es.array.filter\");\n\nrequire(\"core-js/modules/es.array.iterator\");\n\nrequire(\"core-js/modules/es.map\");\n\nrequire(\"core-js/modules/es.object.to-string\");\n\nrequire(\"core-js/modules/es.string.iterator\");\n\nrequire(\"core-js/modules/web.dom-collections.for-each\");\n\nrequire(\"core-js/modules/web.dom-collections.iterator\");\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.SimpleBus = void 0;\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nfunction _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }\n\nfunction _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }\n\nfunction _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }\n\nvar packageJson = {\n name: \"@nextcloud/event-bus\",\n version: \"1.1.2\",\n description: \"\",\n main: \"dist/index.js\",\n types: \"dist/index.d.ts\",\n scripts: {\n build: \"babel ./lib --out-dir dist --extensions '.ts,.tsx' --source-maps && tsc --emitDeclarationOnly\",\n \"build:doc\": \"typedoc --excludeNotExported --mode file --out dist/doc lib/index.ts && touch dist/doc/.nojekyll\",\n \"check-types\": \"tsc\",\n dev: \"babel ./lib --out-dir dist --extensions '.ts,.tsx' --watch\",\n test: \"jest\",\n \"test:watch\": \"jest --watchAll\"\n },\n keywords: [\"nextcloud\"],\n homepage: \"https://github.com/nextcloud/nextcloud-event-bus#readme\",\n author: \"Christoph Wurst\",\n license: \"GPL-3.0-or-later\",\n repository: {\n type: \"git\",\n url: \"https://github.com/nextcloud/nextcloud-event-bus\"\n },\n dependencies: {\n \"@types/semver\": \"^6.2.0\",\n \"core-js\": \"^3.6.2\",\n semver: \"^6.3.0\"\n },\n devDependencies: {\n \"@babel/cli\": \"^7.6.0\",\n \"@babel/core\": \"^7.6.0\",\n \"@babel/plugin-proposal-class-properties\": \"^7.5.5\",\n \"@babel/preset-env\": \"^7.6.0\",\n \"@babel/preset-typescript\": \"^7.6.0\",\n \"@nextcloud/browserslist-config\": \"^1.0.0\",\n \"babel-jest\": \"^24.9.0\",\n \"babel-plugin-inline-json-import\": \"^0.3.2\",\n jest: \"^24.9.0\",\n typedoc: \"^0.15.7\",\n typescript: \"^3.6.3\"\n },\n browserslist: [\"extends @nextcloud/browserslist-config\"]\n};\n\nvar SimpleBus =\n/*#__PURE__*/\nfunction () {\n function SimpleBus() {\n _classCallCheck(this, SimpleBus);\n\n _defineProperty(this, \"handlers\", new Map());\n }\n\n _createClass(SimpleBus, [{\n key: \"getVersion\",\n value: function getVersion() {\n return packageJson.version;\n }\n }, {\n key: \"subscribe\",\n value: function subscribe(name, handler) {\n this.handlers.set(name, (this.handlers.get(name) || []).concat(handler));\n }\n }, {\n key: \"unsubscribe\",\n value: function unsubscribe(name, handler) {\n this.handlers.set(name, (this.handlers.get(name) || []).filter(function (h) {\n return h != handler;\n }));\n }\n }, {\n key: \"emit\",\n value: function emit(name, event) {\n (this.handlers.get(name) || []).forEach(function (h) {\n try {\n h(event);\n } catch (e) {\n console.error('could not invoke event listener', e);\n }\n });\n }\n }]);\n\n return SimpleBus;\n}();\n\nexports.SimpleBus = SimpleBus;\n//# sourceMappingURL=SimpleBus.js.map","'use strict';\nvar $ = require('../internals/export');\nvar fails = require('../internals/fails');\nvar isArray = require('../internals/is-array');\nvar isObject = require('../internals/is-object');\nvar toObject = require('../internals/to-object');\nvar toLength = require('../internals/to-length');\nvar createProperty = require('../internals/create-property');\nvar arraySpeciesCreate = require('../internals/array-species-create');\nvar arrayMethodHasSpeciesSupport = require('../internals/array-method-has-species-support');\nvar wellKnownSymbol = require('../internals/well-known-symbol');\nvar V8_VERSION = require('../internals/engine-v8-version');\n\nvar IS_CONCAT_SPREADABLE = wellKnownSymbol('isConcatSpreadable');\nvar MAX_SAFE_INTEGER = 0x1FFFFFFFFFFFFF;\nvar MAXIMUM_ALLOWED_INDEX_EXCEEDED = 'Maximum allowed index exceeded';\n\n// We can't use this feature detection in V8 since it causes\n// deoptimization and serious performance degradation\n// https://github.com/zloirock/core-js/issues/679\nvar IS_CONCAT_SPREADABLE_SUPPORT = V8_VERSION >= 51 || !fails(function () {\n var array = [];\n array[IS_CONCAT_SPREADABLE] = false;\n return array.concat()[0] !== array;\n});\n\nvar SPECIES_SUPPORT = arrayMethodHasSpeciesSupport('concat');\n\nvar isConcatSpreadable = function (O) {\n if (!isObject(O)) return false;\n var spreadable = O[IS_CONCAT_SPREADABLE];\n return spreadable !== undefined ? !!spreadable : isArray(O);\n};\n\nvar FORCED = !IS_CONCAT_SPREADABLE_SUPPORT || !SPECIES_SUPPORT;\n\n// `Array.prototype.concat` method\n// https://tc39.github.io/ecma262/#sec-array.prototype.concat\n// with adding support of @@isConcatSpreadable and @@species\n$({ target: 'Array', proto: true, forced: FORCED }, {\n concat: function concat(arg) { // eslint-disable-line no-unused-vars\n var O = toObject(this);\n var A = arraySpeciesCreate(O, 0);\n var n = 0;\n var i, k, length, len, E;\n for (i = -1, length = arguments.length; i < length; i++) {\n E = i === -1 ? O : arguments[i];\n if (isConcatSpreadable(E)) {\n len = toLength(E.length);\n if (n + len > MAX_SAFE_INTEGER) throw TypeError(MAXIMUM_ALLOWED_INDEX_EXCEEDED);\n for (k = 0; k < len; k++, n++) if (k in E) createProperty(A, n, E[k]);\n } else {\n if (n >= MAX_SAFE_INTEGER) throw TypeError(MAXIMUM_ALLOWED_INDEX_EXCEEDED);\n createProperty(A, n++, E);\n }\n }\n A.length = n;\n return A;\n }\n});\n","'use strict';\nvar toPrimitive = require('../internals/to-primitive');\nvar definePropertyModule = require('../internals/object-define-property');\nvar createPropertyDescriptor = require('../internals/create-property-descriptor');\n\nmodule.exports = function (object, key, value) {\n var propertyKey = toPrimitive(key);\n if (propertyKey in object) definePropertyModule.f(object, propertyKey, createPropertyDescriptor(0, value));\n else object[propertyKey] = value;\n};\n","var NATIVE_SYMBOL = require('../internals/native-symbol');\n\nmodule.exports = NATIVE_SYMBOL\n // eslint-disable-next-line no-undef\n && !Symbol.sham\n // eslint-disable-next-line no-undef\n && typeof Symbol.iterator == 'symbol';\n","var getBuiltIn = require('../internals/get-built-in');\n\nmodule.exports = getBuiltIn('navigator', 'userAgent') || '';\n","'use strict';\nvar $ = require('../internals/export');\nvar $filter = require('../internals/array-iteration').filter;\nvar arrayMethodHasSpeciesSupport = require('../internals/array-method-has-species-support');\nvar arrayMethodUsesToLength = require('../internals/array-method-uses-to-length');\n\nvar HAS_SPECIES_SUPPORT = arrayMethodHasSpeciesSupport('filter');\n// Edge 14- issue\nvar USES_TO_LENGTH = arrayMethodUsesToLength('filter');\n\n// `Array.prototype.filter` method\n// https://tc39.github.io/ecma262/#sec-array.prototype.filter\n// with adding support of @@species\n$({ target: 'Array', proto: true, forced: !HAS_SPECIES_SUPPORT || !USES_TO_LENGTH }, {\n filter: function filter(callbackfn /* , thisArg */) {\n return $filter(this, callbackfn, arguments.length > 1 ? arguments[1] : undefined);\n }\n});\n","module.exports = function (it) {\n if (typeof it != 'function') {\n throw TypeError(String(it) + ' is not a function');\n } return it;\n};\n","var wellKnownSymbol = require('../internals/well-known-symbol');\nvar create = require('../internals/object-create');\nvar definePropertyModule = require('../internals/object-define-property');\n\nvar UNSCOPABLES = wellKnownSymbol('unscopables');\nvar ArrayPrototype = Array.prototype;\n\n// Array.prototype[@@unscopables]\n// https://tc39.github.io/ecma262/#sec-array.prototype-@@unscopables\nif (ArrayPrototype[UNSCOPABLES] == undefined) {\n definePropertyModule.f(ArrayPrototype, UNSCOPABLES, {\n configurable: true,\n value: create(null)\n });\n}\n\n// add a key to Array.prototype[@@unscopables]\nmodule.exports = function (key) {\n ArrayPrototype[UNSCOPABLES][key] = true;\n};\n","var DESCRIPTORS = require('../internals/descriptors');\nvar definePropertyModule = require('../internals/object-define-property');\nvar anObject = require('../internals/an-object');\nvar objectKeys = require('../internals/object-keys');\n\n// `Object.defineProperties` method\n// https://tc39.github.io/ecma262/#sec-object.defineproperties\nmodule.exports = DESCRIPTORS ? Object.defineProperties : function defineProperties(O, Properties) {\n anObject(O);\n var keys = objectKeys(Properties);\n var length = keys.length;\n var index = 0;\n var key;\n while (length > index) definePropertyModule.f(O, key = keys[index++], Properties[key]);\n return O;\n};\n","var getBuiltIn = require('../internals/get-built-in');\n\nmodule.exports = getBuiltIn('document', 'documentElement');\n","'use strict';\nvar IteratorPrototype = require('../internals/iterators-core').IteratorPrototype;\nvar create = require('../internals/object-create');\nvar createPropertyDescriptor = require('../internals/create-property-descriptor');\nvar setToStringTag = require('../internals/set-to-string-tag');\nvar Iterators = require('../internals/iterators');\n\nvar returnThis = function () { return this; };\n\nmodule.exports = function (IteratorConstructor, NAME, next) {\n var TO_STRING_TAG = NAME + ' Iterator';\n IteratorConstructor.prototype = create(IteratorPrototype, { next: createPropertyDescriptor(1, next) });\n setToStringTag(IteratorConstructor, TO_STRING_TAG, false, true);\n Iterators[TO_STRING_TAG] = returnThis;\n return IteratorConstructor;\n};\n","var fails = require('../internals/fails');\n\nmodule.exports = !fails(function () {\n function F() { /* empty */ }\n F.prototype.constructor = null;\n return Object.getPrototypeOf(new F()) !== F.prototype;\n});\n","var isObject = require('../internals/is-object');\n\nmodule.exports = function (it) {\n if (!isObject(it) && it !== null) {\n throw TypeError(\"Can't set \" + String(it) + ' as a prototype');\n } return it;\n};\n","'use strict';\nvar collection = require('../internals/collection');\nvar collectionStrong = require('../internals/collection-strong');\n\n// `Map` constructor\n// https://tc39.github.io/ecma262/#sec-map-objects\nmodule.exports = collection('Map', function (init) {\n return function Map() { return init(this, arguments.length ? arguments[0] : undefined); };\n}, collectionStrong);\n","'use strict';\nvar $ = require('../internals/export');\nvar global = require('../internals/global');\nvar isForced = require('../internals/is-forced');\nvar redefine = require('../internals/redefine');\nvar InternalMetadataModule = require('../internals/internal-metadata');\nvar iterate = require('../internals/iterate');\nvar anInstance = require('../internals/an-instance');\nvar isObject = require('../internals/is-object');\nvar fails = require('../internals/fails');\nvar checkCorrectnessOfIteration = require('../internals/check-correctness-of-iteration');\nvar setToStringTag = require('../internals/set-to-string-tag');\nvar inheritIfRequired = require('../internals/inherit-if-required');\n\nmodule.exports = function (CONSTRUCTOR_NAME, wrapper, common) {\n var IS_MAP = CONSTRUCTOR_NAME.indexOf('Map') !== -1;\n var IS_WEAK = CONSTRUCTOR_NAME.indexOf('Weak') !== -1;\n var ADDER = IS_MAP ? 'set' : 'add';\n var NativeConstructor = global[CONSTRUCTOR_NAME];\n var NativePrototype = NativeConstructor && NativeConstructor.prototype;\n var Constructor = NativeConstructor;\n var exported = {};\n\n var fixMethod = function (KEY) {\n var nativeMethod = NativePrototype[KEY];\n redefine(NativePrototype, KEY,\n KEY == 'add' ? function add(value) {\n nativeMethod.call(this, value === 0 ? 0 : value);\n return this;\n } : KEY == 'delete' ? function (key) {\n return IS_WEAK && !isObject(key) ? false : nativeMethod.call(this, key === 0 ? 0 : key);\n } : KEY == 'get' ? function get(key) {\n return IS_WEAK && !isObject(key) ? undefined : nativeMethod.call(this, key === 0 ? 0 : key);\n } : KEY == 'has' ? function has(key) {\n return IS_WEAK && !isObject(key) ? false : nativeMethod.call(this, key === 0 ? 0 : key);\n } : function set(key, value) {\n nativeMethod.call(this, key === 0 ? 0 : key, value);\n return this;\n }\n );\n };\n\n // eslint-disable-next-line max-len\n if (isForced(CONSTRUCTOR_NAME, typeof NativeConstructor != 'function' || !(IS_WEAK || NativePrototype.forEach && !fails(function () {\n new NativeConstructor().entries().next();\n })))) {\n // create collection constructor\n Constructor = common.getConstructor(wrapper, CONSTRUCTOR_NAME, IS_MAP, ADDER);\n InternalMetadataModule.REQUIRED = true;\n } else if (isForced(CONSTRUCTOR_NAME, true)) {\n var instance = new Constructor();\n // early implementations not supports chaining\n var HASNT_CHAINING = instance[ADDER](IS_WEAK ? {} : -0, 1) != instance;\n // V8 ~ Chromium 40- weak-collections throws on primitives, but should return false\n var THROWS_ON_PRIMITIVES = fails(function () { instance.has(1); });\n // most early implementations doesn't supports iterables, most modern - not close it correctly\n // eslint-disable-next-line no-new\n var ACCEPT_ITERABLES = checkCorrectnessOfIteration(function (iterable) { new NativeConstructor(iterable); });\n // for early implementations -0 and +0 not the same\n var BUGGY_ZERO = !IS_WEAK && fails(function () {\n // V8 ~ Chromium 42- fails only with 5+ elements\n var $instance = new NativeConstructor();\n var index = 5;\n while (index--) $instance[ADDER](index, index);\n return !$instance.has(-0);\n });\n\n if (!ACCEPT_ITERABLES) {\n Constructor = wrapper(function (dummy, iterable) {\n anInstance(dummy, Constructor, CONSTRUCTOR_NAME);\n var that = inheritIfRequired(new NativeConstructor(), dummy, Constructor);\n if (iterable != undefined) iterate(iterable, that[ADDER], that, IS_MAP);\n return that;\n });\n Constructor.prototype = NativePrototype;\n NativePrototype.constructor = Constructor;\n }\n\n if (THROWS_ON_PRIMITIVES || BUGGY_ZERO) {\n fixMethod('delete');\n fixMethod('has');\n IS_MAP && fixMethod('get');\n }\n\n if (BUGGY_ZERO || HASNT_CHAINING) fixMethod(ADDER);\n\n // weak collections should not contains .clear method\n if (IS_WEAK && NativePrototype.clear) delete NativePrototype.clear;\n }\n\n exported[CONSTRUCTOR_NAME] = Constructor;\n $({ global: true, forced: Constructor != NativeConstructor }, exported);\n\n setToStringTag(Constructor, CONSTRUCTOR_NAME);\n\n if (!IS_WEAK) common.setStrong(Constructor, CONSTRUCTOR_NAME, IS_MAP);\n\n return Constructor;\n};\n","var fails = require('../internals/fails');\n\nmodule.exports = !fails(function () {\n return Object.isExtensible(Object.preventExtensions({}));\n});\n","var wellKnownSymbol = require('../internals/well-known-symbol');\nvar Iterators = require('../internals/iterators');\n\nvar ITERATOR = wellKnownSymbol('iterator');\nvar ArrayPrototype = Array.prototype;\n\n// check on default Array iterator\nmodule.exports = function (it) {\n return it !== undefined && (Iterators.Array === it || ArrayPrototype[ITERATOR] === it);\n};\n","var classof = require('../internals/classof');\nvar Iterators = require('../internals/iterators');\nvar wellKnownSymbol = require('../internals/well-known-symbol');\n\nvar ITERATOR = wellKnownSymbol('iterator');\n\nmodule.exports = function (it) {\n if (it != undefined) return it[ITERATOR]\n || it['@@iterator']\n || Iterators[classof(it)];\n};\n","var anObject = require('../internals/an-object');\n\n// call something on iterator step with safe closing on error\nmodule.exports = function (iterator, fn, value, ENTRIES) {\n try {\n return ENTRIES ? fn(anObject(value)[0], value[1]) : fn(value);\n // 7.4.6 IteratorClose(iterator, completion)\n } catch (error) {\n var returnMethod = iterator['return'];\n if (returnMethod !== undefined) anObject(returnMethod.call(iterator));\n throw error;\n }\n};\n","var wellKnownSymbol = require('../internals/well-known-symbol');\n\nvar ITERATOR = wellKnownSymbol('iterator');\nvar SAFE_CLOSING = false;\n\ntry {\n var called = 0;\n var iteratorWithReturn = {\n next: function () {\n return { done: !!called++ };\n },\n 'return': function () {\n SAFE_CLOSING = true;\n }\n };\n iteratorWithReturn[ITERATOR] = function () {\n return this;\n };\n // eslint-disable-next-line no-throw-literal\n Array.from(iteratorWithReturn, function () { throw 2; });\n} catch (error) { /* empty */ }\n\nmodule.exports = function (exec, SKIP_CLOSING) {\n if (!SKIP_CLOSING && !SAFE_CLOSING) return false;\n var ITERATION_SUPPORT = false;\n try {\n var object = {};\n object[ITERATOR] = function () {\n return {\n next: function () {\n return { done: ITERATION_SUPPORT = true };\n }\n };\n };\n exec(object);\n } catch (error) { /* empty */ }\n return ITERATION_SUPPORT;\n};\n","var isObject = require('../internals/is-object');\nvar setPrototypeOf = require('../internals/object-set-prototype-of');\n\n// makes subclassing work correct for wrapped built-ins\nmodule.exports = function ($this, dummy, Wrapper) {\n var NewTarget, NewTargetPrototype;\n if (\n // it can work only with native `setPrototypeOf`\n setPrototypeOf &&\n // we haven't completely correct pre-ES6 way for getting `new.target`, so use this\n typeof (NewTarget = dummy.constructor) == 'function' &&\n NewTarget !== Wrapper &&\n isObject(NewTargetPrototype = NewTarget.prototype) &&\n NewTargetPrototype !== Wrapper.prototype\n ) setPrototypeOf($this, NewTargetPrototype);\n return $this;\n};\n","'use strict';\nvar defineProperty = require('../internals/object-define-property').f;\nvar create = require('../internals/object-create');\nvar redefineAll = require('../internals/redefine-all');\nvar bind = require('../internals/function-bind-context');\nvar anInstance = require('../internals/an-instance');\nvar iterate = require('../internals/iterate');\nvar defineIterator = require('../internals/define-iterator');\nvar setSpecies = require('../internals/set-species');\nvar DESCRIPTORS = require('../internals/descriptors');\nvar fastKey = require('../internals/internal-metadata').fastKey;\nvar InternalStateModule = require('../internals/internal-state');\n\nvar setInternalState = InternalStateModule.set;\nvar internalStateGetterFor = InternalStateModule.getterFor;\n\nmodule.exports = {\n getConstructor: function (wrapper, CONSTRUCTOR_NAME, IS_MAP, ADDER) {\n var C = wrapper(function (that, iterable) {\n anInstance(that, C, CONSTRUCTOR_NAME);\n setInternalState(that, {\n type: CONSTRUCTOR_NAME,\n index: create(null),\n first: undefined,\n last: undefined,\n size: 0\n });\n if (!DESCRIPTORS) that.size = 0;\n if (iterable != undefined) iterate(iterable, that[ADDER], that, IS_MAP);\n });\n\n var getInternalState = internalStateGetterFor(CONSTRUCTOR_NAME);\n\n var define = function (that, key, value) {\n var state = getInternalState(that);\n var entry = getEntry(that, key);\n var previous, index;\n // change existing entry\n if (entry) {\n entry.value = value;\n // create new entry\n } else {\n state.last = entry = {\n index: index = fastKey(key, true),\n key: key,\n value: value,\n previous: previous = state.last,\n next: undefined,\n removed: false\n };\n if (!state.first) state.first = entry;\n if (previous) previous.next = entry;\n if (DESCRIPTORS) state.size++;\n else that.size++;\n // add to index\n if (index !== 'F') state.index[index] = entry;\n } return that;\n };\n\n var getEntry = function (that, key) {\n var state = getInternalState(that);\n // fast case\n var index = fastKey(key);\n var entry;\n if (index !== 'F') return state.index[index];\n // frozen object case\n for (entry = state.first; entry; entry = entry.next) {\n if (entry.key == key) return entry;\n }\n };\n\n redefineAll(C.prototype, {\n // 23.1.3.1 Map.prototype.clear()\n // 23.2.3.2 Set.prototype.clear()\n clear: function clear() {\n var that = this;\n var state = getInternalState(that);\n var data = state.index;\n var entry = state.first;\n while (entry) {\n entry.removed = true;\n if (entry.previous) entry.previous = entry.previous.next = undefined;\n delete data[entry.index];\n entry = entry.next;\n }\n state.first = state.last = undefined;\n if (DESCRIPTORS) state.size = 0;\n else that.size = 0;\n },\n // 23.1.3.3 Map.prototype.delete(key)\n // 23.2.3.4 Set.prototype.delete(value)\n 'delete': function (key) {\n var that = this;\n var state = getInternalState(that);\n var entry = getEntry(that, key);\n if (entry) {\n var next = entry.next;\n var prev = entry.previous;\n delete state.index[entry.index];\n entry.removed = true;\n if (prev) prev.next = next;\n if (next) next.previous = prev;\n if (state.first == entry) state.first = next;\n if (state.last == entry) state.last = prev;\n if (DESCRIPTORS) state.size--;\n else that.size--;\n } return !!entry;\n },\n // 23.2.3.6 Set.prototype.forEach(callbackfn, thisArg = undefined)\n // 23.1.3.5 Map.prototype.forEach(callbackfn, thisArg = undefined)\n forEach: function forEach(callbackfn /* , that = undefined */) {\n var state = getInternalState(this);\n var boundFunction = bind(callbackfn, arguments.length > 1 ? arguments[1] : undefined, 3);\n var entry;\n while (entry = entry ? entry.next : state.first) {\n boundFunction(entry.value, entry.key, this);\n // revert to the last existing entry\n while (entry && entry.removed) entry = entry.previous;\n }\n },\n // 23.1.3.7 Map.prototype.has(key)\n // 23.2.3.7 Set.prototype.has(value)\n has: function has(key) {\n return !!getEntry(this, key);\n }\n });\n\n redefineAll(C.prototype, IS_MAP ? {\n // 23.1.3.6 Map.prototype.get(key)\n get: function get(key) {\n var entry = getEntry(this, key);\n return entry && entry.value;\n },\n // 23.1.3.9 Map.prototype.set(key, value)\n set: function set(key, value) {\n return define(this, key === 0 ? 0 : key, value);\n }\n } : {\n // 23.2.3.1 Set.prototype.add(value)\n add: function add(value) {\n return define(this, value = value === 0 ? 0 : value, value);\n }\n });\n if (DESCRIPTORS) defineProperty(C.prototype, 'size', {\n get: function () {\n return getInternalState(this).size;\n }\n });\n return C;\n },\n setStrong: function (C, CONSTRUCTOR_NAME, IS_MAP) {\n var ITERATOR_NAME = CONSTRUCTOR_NAME + ' Iterator';\n var getInternalCollectionState = internalStateGetterFor(CONSTRUCTOR_NAME);\n var getInternalIteratorState = internalStateGetterFor(ITERATOR_NAME);\n // add .keys, .values, .entries, [@@iterator]\n // 23.1.3.4, 23.1.3.8, 23.1.3.11, 23.1.3.12, 23.2.3.5, 23.2.3.8, 23.2.3.10, 23.2.3.11\n defineIterator(C, CONSTRUCTOR_NAME, function (iterated, kind) {\n setInternalState(this, {\n type: ITERATOR_NAME,\n target: iterated,\n state: getInternalCollectionState(iterated),\n kind: kind,\n last: undefined\n });\n }, function () {\n var state = getInternalIteratorState(this);\n var kind = state.kind;\n var entry = state.last;\n // revert to the last existing entry\n while (entry && entry.removed) entry = entry.previous;\n // get next entry\n if (!state.target || !(state.last = entry = entry ? entry.next : state.state.first)) {\n // or finish the iteration\n state.target = undefined;\n return { value: undefined, done: true };\n }\n // return step by kind\n if (kind == 'keys') return { value: entry.key, done: false };\n if (kind == 'values') return { value: entry.value, done: false };\n return { value: [entry.key, entry.value], done: false };\n }, IS_MAP ? 'entries' : 'values', !IS_MAP, true);\n\n // add [@@species], 23.1.2.2, 23.2.2.2\n setSpecies(CONSTRUCTOR_NAME);\n }\n};\n","var redefine = require('../internals/redefine');\n\nmodule.exports = function (target, src, options) {\n for (var key in src) redefine(target, key, src[key], options);\n return target;\n};\n","'use strict';\nvar getBuiltIn = require('../internals/get-built-in');\nvar definePropertyModule = require('../internals/object-define-property');\nvar wellKnownSymbol = require('../internals/well-known-symbol');\nvar DESCRIPTORS = require('../internals/descriptors');\n\nvar SPECIES = wellKnownSymbol('species');\n\nmodule.exports = function (CONSTRUCTOR_NAME) {\n var Constructor = getBuiltIn(CONSTRUCTOR_NAME);\n var defineProperty = definePropertyModule.f;\n\n if (DESCRIPTORS && Constructor && !Constructor[SPECIES]) {\n defineProperty(Constructor, SPECIES, {\n configurable: true,\n get: function () { return this; }\n });\n }\n};\n","var TO_STRING_TAG_SUPPORT = require('../internals/to-string-tag-support');\nvar redefine = require('../internals/redefine');\nvar toString = require('../internals/object-to-string');\n\n// `Object.prototype.toString` method\n// https://tc39.github.io/ecma262/#sec-object.prototype.tostring\nif (!TO_STRING_TAG_SUPPORT) {\n redefine(Object.prototype, 'toString', toString, { unsafe: true });\n}\n","'use strict';\nvar TO_STRING_TAG_SUPPORT = require('../internals/to-string-tag-support');\nvar classof = require('../internals/classof');\n\n// `Object.prototype.toString` method implementation\n// https://tc39.github.io/ecma262/#sec-object.prototype.tostring\nmodule.exports = TO_STRING_TAG_SUPPORT ? {}.toString : function toString() {\n return '[object ' + classof(this) + ']';\n};\n","'use strict';\nvar charAt = require('../internals/string-multibyte').charAt;\nvar InternalStateModule = require('../internals/internal-state');\nvar defineIterator = require('../internals/define-iterator');\n\nvar STRING_ITERATOR = 'String Iterator';\nvar setInternalState = InternalStateModule.set;\nvar getInternalState = InternalStateModule.getterFor(STRING_ITERATOR);\n\n// `String.prototype[@@iterator]` method\n// https://tc39.github.io/ecma262/#sec-string.prototype-@@iterator\ndefineIterator(String, 'String', function (iterated) {\n setInternalState(this, {\n type: STRING_ITERATOR,\n string: String(iterated),\n index: 0\n });\n// `%StringIteratorPrototype%.next` method\n// https://tc39.github.io/ecma262/#sec-%stringiteratorprototype%.next\n}, function next() {\n var state = getInternalState(this);\n var string = state.string;\n var index = state.index;\n var point;\n if (index >= string.length) return { value: undefined, done: true };\n point = charAt(string, index);\n state.index += point.length;\n return { value: point, done: false };\n});\n","var toInteger = require('../internals/to-integer');\nvar requireObjectCoercible = require('../internals/require-object-coercible');\n\n// `String.prototype.{ codePointAt, at }` methods implementation\nvar createMethod = function (CONVERT_TO_STRING) {\n return function ($this, pos) {\n var S = String(requireObjectCoercible($this));\n var position = toInteger(pos);\n var size = S.length;\n var first, second;\n if (position < 0 || position >= size) return CONVERT_TO_STRING ? '' : undefined;\n first = S.charCodeAt(position);\n return first < 0xD800 || first > 0xDBFF || position + 1 === size\n || (second = S.charCodeAt(position + 1)) < 0xDC00 || second > 0xDFFF\n ? CONVERT_TO_STRING ? S.charAt(position) : first\n : CONVERT_TO_STRING ? S.slice(position, position + 2) : (first - 0xD800 << 10) + (second - 0xDC00) + 0x10000;\n };\n};\n\nmodule.exports = {\n // `String.prototype.codePointAt` method\n // https://tc39.github.io/ecma262/#sec-string.prototype.codepointat\n codeAt: createMethod(false),\n // `String.prototype.at` method\n // https://github.com/mathiasbynens/String.prototype.at\n charAt: createMethod(true)\n};\n","var global = require('../internals/global');\nvar DOMIterables = require('../internals/dom-iterables');\nvar forEach = require('../internals/array-for-each');\nvar createNonEnumerableProperty = require('../internals/create-non-enumerable-property');\n\nfor (var COLLECTION_NAME in DOMIterables) {\n var Collection = global[COLLECTION_NAME];\n var CollectionPrototype = Collection && Collection.prototype;\n // some Chrome versions have non-configurable methods on DOMTokenList\n if (CollectionPrototype && CollectionPrototype.forEach !== forEach) try {\n createNonEnumerableProperty(CollectionPrototype, 'forEach', forEach);\n } catch (error) {\n CollectionPrototype.forEach = forEach;\n }\n}\n","'use strict';\nvar $forEach = require('../internals/array-iteration').forEach;\nvar arrayMethodIsStrict = require('../internals/array-method-is-strict');\nvar arrayMethodUsesToLength = require('../internals/array-method-uses-to-length');\n\nvar STRICT_METHOD = arrayMethodIsStrict('forEach');\nvar USES_TO_LENGTH = arrayMethodUsesToLength('forEach');\n\n// `Array.prototype.forEach` method implementation\n// https://tc39.github.io/ecma262/#sec-array.prototype.foreach\nmodule.exports = (!STRICT_METHOD || !USES_TO_LENGTH) ? function forEach(callbackfn /* , thisArg */) {\n return $forEach(this, callbackfn, arguments.length > 1 ? arguments[1] : undefined);\n} : [].forEach;\n","'use strict';\nvar fails = require('../internals/fails');\n\nmodule.exports = function (METHOD_NAME, argument) {\n var method = [][METHOD_NAME];\n return !!method && fails(function () {\n // eslint-disable-next-line no-useless-call,no-throw-literal\n method.call(null, argument || function () { throw 1; }, 1);\n });\n};\n","var global = require('../internals/global');\nvar DOMIterables = require('../internals/dom-iterables');\nvar ArrayIteratorMethods = require('../modules/es.array.iterator');\nvar createNonEnumerableProperty = require('../internals/create-non-enumerable-property');\nvar wellKnownSymbol = require('../internals/well-known-symbol');\n\nvar ITERATOR = wellKnownSymbol('iterator');\nvar TO_STRING_TAG = wellKnownSymbol('toStringTag');\nvar ArrayValues = ArrayIteratorMethods.values;\n\nfor (var COLLECTION_NAME in DOMIterables) {\n var Collection = global[COLLECTION_NAME];\n var CollectionPrototype = Collection && Collection.prototype;\n if (CollectionPrototype) {\n // some Chrome versions have non-configurable methods on DOMTokenList\n if (CollectionPrototype[ITERATOR] !== ArrayValues) try {\n createNonEnumerableProperty(CollectionPrototype, ITERATOR, ArrayValues);\n } catch (error) {\n CollectionPrototype[ITERATOR] = ArrayValues;\n }\n if (!CollectionPrototype[TO_STRING_TAG]) {\n createNonEnumerableProperty(CollectionPrototype, TO_STRING_TAG, COLLECTION_NAME);\n }\n if (DOMIterables[COLLECTION_NAME]) for (var METHOD_NAME in ArrayIteratorMethods) {\n // some Chrome versions have non-configurable methods on DOMTokenList\n if (CollectionPrototype[METHOD_NAME] !== ArrayIteratorMethods[METHOD_NAME]) try {\n createNonEnumerableProperty(CollectionPrototype, METHOD_NAME, ArrayIteratorMethods[METHOD_NAME]);\n } catch (error) {\n CollectionPrototype[METHOD_NAME] = ArrayIteratorMethods[METHOD_NAME];\n }\n }\n }\n}\n","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.getCurrentUser = getCurrentUser;\nvar uidElement = document.getElementsByTagName('head')[0];\nvar uid = uidElement ? uidElement.getAttribute('data-user') : null;\nvar displayNameElement = document.getElementsByTagName('head')[0];\nvar displayName = displayNameElement ? displayNameElement.getAttribute('data-user-displayname') : null;\n\nfunction getCurrentUser() {\n if (uid === null) {\n return null;\n }\n\n return {\n uid: uid,\n displayName: displayName\n };\n}\n//# sourceMappingURL=user.js.map","var fails = require('../internals/fails');\n\n// Thank's IE8 for his funny defineProperty\nmodule.exports = !fails(function () {\n return Object.defineProperty({}, 'a', { get: function () { return 7; } }).a != 7;\n});\n","var DESCRIPTORS = require('../internals/descriptors');\nvar definePropertyModule = require('../internals/object-define-property');\nvar createPropertyDescriptor = require('../internals/create-property-descriptor');\n\nmodule.exports = DESCRIPTORS ? function (object, key, value) {\n return definePropertyModule.f(object, key, createPropertyDescriptor(1, value));\n} : function (object, key, value) {\n object[key] = value;\n return object;\n};\n","var isObject = require('../internals/is-object');\n\nmodule.exports = function (it) {\n if (!isObject(it)) {\n throw TypeError(String(it) + ' is not an object');\n } return it;\n};\n","var fails = require('../internals/fails');\n\n// Thank's IE8 for his funny defineProperty\nmodule.exports = !fails(function () {\n return Object.defineProperty({}, 'a', { get: function () { return 7; } }).a != 7;\n});\n","module.exports = function (exec) {\n try {\n return !!exec();\n } catch (error) {\n return true;\n }\n};\n","var hasOwnProperty = {}.hasOwnProperty;\n\nmodule.exports = function (it, key) {\n return hasOwnProperty.call(it, key);\n};\n","// `RequireObjectCoercible` abstract operation\n// https://tc39.github.io/ecma262/#sec-requireobjectcoercible\nmodule.exports = function (it) {\n if (it == undefined) throw TypeError(\"Can't call method on \" + it);\n return it;\n};\n","module.exports = function (it) {\n return typeof it === 'object' ? it !== null : typeof it === 'function';\n};\n","var global = require('../internals/global');\nvar createNonEnumerableProperty = require('../internals/create-non-enumerable-property');\nvar has = require('../internals/has');\nvar setGlobal = require('../internals/set-global');\nvar inspectSource = require('../internals/inspect-source');\nvar InternalStateModule = require('../internals/internal-state');\n\nvar getInternalState = InternalStateModule.get;\nvar enforceInternalState = InternalStateModule.enforce;\nvar TEMPLATE = String(String).split('String');\n\n(module.exports = function (O, key, value, options) {\n var unsafe = options ? !!options.unsafe : false;\n var simple = options ? !!options.enumerable : false;\n var noTargetGet = options ? !!options.noTargetGet : false;\n if (typeof value == 'function') {\n if (typeof key == 'string' && !has(value, 'name')) createNonEnumerableProperty(value, 'name', key);\n enforceInternalState(value).source = TEMPLATE.join(typeof key == 'string' ? key : '');\n }\n if (O === global) {\n if (simple) O[key] = value;\n else setGlobal(key, value);\n return;\n } else if (!unsafe) {\n delete O[key];\n } else if (!noTargetGet && O[key]) {\n simple = true;\n }\n if (simple) O[key] = value;\n else createNonEnumerableProperty(O, key, value);\n// add fake Function#toString for correct work wrapped methods / constructors with methods like LoDash isNative\n})(Function.prototype, 'toString', function toString() {\n return typeof this == 'function' && getInternalState(this).source || inspectSource(this);\n});\n","var ceil = Math.ceil;\nvar floor = Math.floor;\n\n// `ToInteger` abstract operation\n// https://tc39.github.io/ecma262/#sec-tointeger\nmodule.exports = function (argument) {\n return isNaN(argument = +argument) ? 0 : (argument > 0 ? floor : ceil)(argument);\n};\n","module.exports = function (it) {\n return typeof it === 'object' ? it !== null : typeof it === 'function';\n};\n","var DESCRIPTORS = require('../internals/descriptors');\nvar definePropertyModule = require('../internals/object-define-property');\nvar createPropertyDescriptor = require('../internals/create-property-descriptor');\n\nmodule.exports = DESCRIPTORS ? function (object, key, value) {\n return definePropertyModule.f(object, key, createPropertyDescriptor(1, value));\n} : function (object, key, value) {\n object[key] = value;\n return object;\n};\n","// style-loader: Adds some css to the DOM by adding a <style> tag\n\n// load the styles\nvar content = require(\"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./RecommendedApps.vue?vue&type=style&index=0&id=2dd1bdfa&lang=scss&scoped=true&\");\nif(typeof content === 'string') content = [[module.id, content, '']];\nif(content.locals) module.exports = content.locals;\n// add the styles to the DOM\nvar add = require(\"!../../../../node_modules/vue-style-loader/lib/addStylesClient.js\").default\nvar update = add(\"34b3c1e4\", content, true, {});","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nObject.defineProperty(exports, \"getRequestToken\", {\n enumerable: true,\n get: function get() {\n return _requesttoken.getRequestToken;\n }\n});\nObject.defineProperty(exports, \"onRequestTokenUpdate\", {\n enumerable: true,\n get: function get() {\n return _requesttoken.onRequestTokenUpdate;\n }\n});\nObject.defineProperty(exports, \"getCurrentUser\", {\n enumerable: true,\n get: function get() {\n return _user.getCurrentUser;\n }\n});\n\nvar _requesttoken = require(\"./requesttoken\");\n\nvar _user = require(\"./user\");\n//# sourceMappingURL=index.js.map","var scope = (typeof global !== \"undefined\" && global) ||\n (typeof self !== \"undefined\" && self) ||\n window;\nvar apply = Function.prototype.apply;\n\n// DOM APIs, for completeness\n\nexports.setTimeout = function() {\n return new Timeout(apply.call(setTimeout, scope, arguments), clearTimeout);\n};\nexports.setInterval = function() {\n return new Timeout(apply.call(setInterval, scope, arguments), clearInterval);\n};\nexports.clearTimeout =\nexports.clearInterval = function(timeout) {\n if (timeout) {\n timeout.close();\n }\n};\n\nfunction Timeout(id, clearFn) {\n this._id = id;\n this._clearFn = clearFn;\n}\nTimeout.prototype.unref = Timeout.prototype.ref = function() {};\nTimeout.prototype.close = function() {\n this._clearFn.call(scope, this._id);\n};\n\n// Does not start the time, just sets up the members needed.\nexports.enroll = function(item, msecs) {\n clearTimeout(item._idleTimeoutId);\n item._idleTimeout = msecs;\n};\n\nexports.unenroll = function(item) {\n clearTimeout(item._idleTimeoutId);\n item._idleTimeout = -1;\n};\n\nexports._unrefActive = exports.active = function(item) {\n clearTimeout(item._idleTimeoutId);\n\n var msecs = item._idleTimeout;\n if (msecs >= 0) {\n item._idleTimeoutId = setTimeout(function onTimeout() {\n if (item._onTimeout)\n item._onTimeout();\n }, msecs);\n }\n};\n\n// setimmediate attaches itself to the global object\nrequire(\"setimmediate\");\n// On some exotic environments, it's not clear which object `setimmediate` was\n// able to install onto. Search each possibility in the same order as the\n// `setimmediate` library.\nexports.setImmediate = (typeof self !== \"undefined\" && self.setImmediate) ||\n (typeof global !== \"undefined\" && global.setImmediate) ||\n (this && this.setImmediate);\nexports.clearImmediate = (typeof self !== \"undefined\" && self.clearImmediate) ||\n (typeof global !== \"undefined\" && global.clearImmediate) ||\n (this && this.clearImmediate);\n","(function (global, undefined) {\n \"use strict\";\n\n if (global.setImmediate) {\n return;\n }\n\n var nextHandle = 1; // Spec says greater than zero\n var tasksByHandle = {};\n var currentlyRunningATask = false;\n var doc = global.document;\n var registerImmediate;\n\n function setImmediate(callback) {\n // Callback can either be a function or a string\n if (typeof callback !== \"function\") {\n callback = new Function(\"\" + callback);\n }\n // Copy function arguments\n var args = new Array(arguments.length - 1);\n for (var i = 0; i < args.length; i++) {\n args[i] = arguments[i + 1];\n }\n // Store and register the task\n var task = { callback: callback, args: args };\n tasksByHandle[nextHandle] = task;\n registerImmediate(nextHandle);\n return nextHandle++;\n }\n\n function clearImmediate(handle) {\n delete tasksByHandle[handle];\n }\n\n function run(task) {\n var callback = task.callback;\n var args = task.args;\n switch (args.length) {\n case 0:\n callback();\n break;\n case 1:\n callback(args[0]);\n break;\n case 2:\n callback(args[0], args[1]);\n break;\n case 3:\n callback(args[0], args[1], args[2]);\n break;\n default:\n callback.apply(undefined, args);\n break;\n }\n }\n\n function runIfPresent(handle) {\n // From the spec: \"Wait until any invocations of this algorithm started before this one have completed.\"\n // So if we're currently running a task, we'll need to delay this invocation.\n if (currentlyRunningATask) {\n // Delay by doing a setTimeout. setImmediate was tried instead, but in Firefox 7 it generated a\n // \"too much recursion\" error.\n setTimeout(runIfPresent, 0, handle);\n } else {\n var task = tasksByHandle[handle];\n if (task) {\n currentlyRunningATask = true;\n try {\n run(task);\n } finally {\n clearImmediate(handle);\n currentlyRunningATask = false;\n }\n }\n }\n }\n\n function installNextTickImplementation() {\n registerImmediate = function(handle) {\n process.nextTick(function () { runIfPresent(handle); });\n };\n }\n\n function canUsePostMessage() {\n // The test against `importScripts` prevents this implementation from being installed inside a web worker,\n // where `global.postMessage` means something completely different and can't be used for this purpose.\n if (global.postMessage && !global.importScripts) {\n var postMessageIsAsynchronous = true;\n var oldOnMessage = global.onmessage;\n global.onmessage = function() {\n postMessageIsAsynchronous = false;\n };\n global.postMessage(\"\", \"*\");\n global.onmessage = oldOnMessage;\n return postMessageIsAsynchronous;\n }\n }\n\n function installPostMessageImplementation() {\n // Installs an event handler on `global` for the `message` event: see\n // * https://developer.mozilla.org/en/DOM/window.postMessage\n // * http://www.whatwg.org/specs/web-apps/current-work/multipage/comms.html#crossDocumentMessages\n\n var messagePrefix = \"setImmediate$\" + Math.random() + \"$\";\n var onGlobalMessage = function(event) {\n if (event.source === global &&\n typeof event.data === \"string\" &&\n event.data.indexOf(messagePrefix) === 0) {\n runIfPresent(+event.data.slice(messagePrefix.length));\n }\n };\n\n if (global.addEventListener) {\n global.addEventListener(\"message\", onGlobalMessage, false);\n } else {\n global.attachEvent(\"onmessage\", onGlobalMessage);\n }\n\n registerImmediate = function(handle) {\n global.postMessage(messagePrefix + handle, \"*\");\n };\n }\n\n function installMessageChannelImplementation() {\n var channel = new MessageChannel();\n channel.port1.onmessage = function(event) {\n var handle = event.data;\n runIfPresent(handle);\n };\n\n registerImmediate = function(handle) {\n channel.port2.postMessage(handle);\n };\n }\n\n function installReadyStateChangeImplementation() {\n var html = doc.documentElement;\n registerImmediate = function(handle) {\n // Create a <script> element; its readystatechange event will be fired asynchronously once it is inserted\n // into the document. Do so, thus queuing up the task. Remember to clean up once it's been called.\n var script = doc.createElement(\"script\");\n script.onreadystatechange = function () {\n runIfPresent(handle);\n script.onreadystatechange = null;\n html.removeChild(script);\n script = null;\n };\n html.appendChild(script);\n };\n }\n\n function installSetTimeoutImplementation() {\n registerImmediate = function(handle) {\n setTimeout(runIfPresent, 0, handle);\n };\n }\n\n // If supported, we should attach to the prototype of global, since that is where setTimeout et al. live.\n var attachTo = Object.getPrototypeOf && Object.getPrototypeOf(global);\n attachTo = attachTo && attachTo.setTimeout ? attachTo : global;\n\n // Don't get fooled by e.g. browserify environments.\n if ({}.toString.call(global.process) === \"[object process]\") {\n // For Node.js before 0.9\n installNextTickImplementation();\n\n } else if (canUsePostMessage()) {\n // For non-IE10 modern browsers\n installPostMessageImplementation();\n\n } else if (global.MessageChannel) {\n // For web workers, where supported\n installMessageChannelImplementation();\n\n } else if (doc && \"onreadystatechange\" in doc.createElement(\"script\")) {\n // For IE 6–8\n installReadyStateChangeImplementation();\n\n } else {\n // For older browsers\n installSetTimeoutImplementation();\n }\n\n attachTo.setImmediate = setImmediate;\n attachTo.clearImmediate = clearImmediate;\n}(typeof self === \"undefined\" ? typeof global === \"undefined\" ? this : global : self));\n","// toObject with fallback for non-array-like ES3 strings\nvar IndexedObject = require('../internals/indexed-object');\nvar requireObjectCoercible = require('../internals/require-object-coercible');\n\nmodule.exports = function (it) {\n return IndexedObject(requireObjectCoercible(it));\n};\n","var toString = {}.toString;\n\nmodule.exports = function (it) {\n return toString.call(it).slice(8, -1);\n};\n","var global = require('../internals/global');\nvar createNonEnumerableProperty = require('../internals/create-non-enumerable-property');\n\nmodule.exports = function (key, value) {\n try {\n createNonEnumerableProperty(global, key, value);\n } catch (error) {\n global[key] = value;\n } return value;\n};\n","var wellKnownSymbol = require('../internals/well-known-symbol');\n\nvar TO_STRING_TAG = wellKnownSymbol('toStringTag');\nvar test = {};\n\ntest[TO_STRING_TAG] = 'z';\n\nmodule.exports = String(test) === '[object z]';\n","var global = require('../internals/global');\nvar shared = require('../internals/shared');\nvar has = require('../internals/has');\nvar uid = require('../internals/uid');\nvar NATIVE_SYMBOL = require('../internals/native-symbol');\nvar USE_SYMBOL_AS_UID = require('../internals/use-symbol-as-uid');\n\nvar WellKnownSymbolsStore = shared('wks');\nvar Symbol = global.Symbol;\nvar createWellKnownSymbol = USE_SYMBOL_AS_UID ? Symbol : uid;\n\nmodule.exports = function (name) {\n if (!has(WellKnownSymbolsStore, name)) {\n if (NATIVE_SYMBOL && has(Symbol, name)) WellKnownSymbolsStore[name] = Symbol[name];\n else WellKnownSymbolsStore[name] = createWellKnownSymbol('Symbol.' + name);\n } return WellKnownSymbolsStore[name];\n};\n","// toObject with fallback for non-array-like ES3 strings\nvar IndexedObject = require('../internals/indexed-object');\nvar requireObjectCoercible = require('../internals/require-object-coercible');\n\nmodule.exports = function (it) {\n return IndexedObject(requireObjectCoercible(it));\n};\n","var global = require('../internals/global');\nvar createNonEnumerableProperty = require('../internals/create-non-enumerable-property');\n\nmodule.exports = function (key, value) {\n try {\n createNonEnumerableProperty(global, key, value);\n } catch (error) {\n global[key] = value;\n } return value;\n};\n","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.getLoggerBuilder = getLoggerBuilder;\nexports.getLogger = getLogger;\n\nvar _ConsoleLogger = require(\"./ConsoleLogger\");\n\nvar _Builder = require(\"./Builder\");\n\nfunction getLoggerBuilder() {\n return new _Builder.LoggerBuilder(_ConsoleLogger.buildConsoleLogger);\n}\n\nfunction getLogger() {\n return getLoggerBuilder().build();\n}\n//# sourceMappingURL=index.js.map","var global = require('../internals/global');\nvar getOwnPropertyDescriptor = require('../internals/object-get-own-property-descriptor').f;\nvar createNonEnumerableProperty = require('../internals/create-non-enumerable-property');\nvar redefine = require('../internals/redefine');\nvar setGlobal = require('../internals/set-global');\nvar copyConstructorProperties = require('../internals/copy-constructor-properties');\nvar isForced = require('../internals/is-forced');\n\n/*\n options.target - name of the target object\n options.global - target is the global object\n options.stat - export as static methods of target\n options.proto - export as prototype methods of target\n options.real - real prototype method for the `pure` version\n options.forced - export even if the native feature is available\n options.bind - bind methods to the target, required for the `pure` version\n options.wrap - wrap constructors to preventing global pollution, required for the `pure` version\n options.unsafe - use the simple assignment of property instead of delete + defineProperty\n options.sham - add a flag to not completely full polyfills\n options.enumerable - export as enumerable property\n options.noTargetGet - prevent calling a getter on target\n*/\nmodule.exports = function (options, source) {\n var TARGET = options.target;\n var GLOBAL = options.global;\n var STATIC = options.stat;\n var FORCED, target, key, targetProperty, sourceProperty, descriptor;\n if (GLOBAL) {\n target = global;\n } else if (STATIC) {\n target = global[TARGET] || setGlobal(TARGET, {});\n } else {\n target = (global[TARGET] || {}).prototype;\n }\n if (target) for (key in source) {\n sourceProperty = source[key];\n if (options.noTargetGet) {\n descriptor = getOwnPropertyDescriptor(target, key);\n targetProperty = descriptor && descriptor.value;\n } else targetProperty = target[key];\n FORCED = isForced(GLOBAL ? key : TARGET + (STATIC ? '.' : '#') + key, options.forced);\n // contained in target\n if (!FORCED && targetProperty !== undefined) {\n if (typeof sourceProperty === typeof targetProperty) continue;\n copyConstructorProperties(sourceProperty, targetProperty);\n }\n // add a flag to not completely full polyfills\n if (options.sham || (targetProperty && targetProperty.sham)) {\n createNonEnumerableProperty(sourceProperty, 'sham', true);\n }\n // extend global\n redefine(target, key, sourceProperty, options);\n }\n};\n","var DESCRIPTORS = require('../internals/descriptors');\nvar propertyIsEnumerableModule = require('../internals/object-property-is-enumerable');\nvar createPropertyDescriptor = require('../internals/create-property-descriptor');\nvar toIndexedObject = require('../internals/to-indexed-object');\nvar toPrimitive = require('../internals/to-primitive');\nvar has = require('../internals/has');\nvar IE8_DOM_DEFINE = require('../internals/ie8-dom-define');\n\nvar nativeGetOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;\n\n// `Object.getOwnPropertyDescriptor` method\n// https://tc39.github.io/ecma262/#sec-object.getownpropertydescriptor\nexports.f = DESCRIPTORS ? nativeGetOwnPropertyDescriptor : function getOwnPropertyDescriptor(O, P) {\n O = toIndexedObject(O);\n P = toPrimitive(P, true);\n if (IE8_DOM_DEFINE) try {\n return nativeGetOwnPropertyDescriptor(O, P);\n } catch (error) { /* empty */ }\n if (has(O, P)) return createPropertyDescriptor(!propertyIsEnumerableModule.f.call(O, P), O[P]);\n};\n","'use strict';\nvar nativePropertyIsEnumerable = {}.propertyIsEnumerable;\nvar getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;\n\n// Nashorn ~ JDK8 bug\nvar NASHORN_BUG = getOwnPropertyDescriptor && !nativePropertyIsEnumerable.call({ 1: 2 }, 1);\n\n// `Object.prototype.propertyIsEnumerable` method implementation\n// https://tc39.github.io/ecma262/#sec-object.prototype.propertyisenumerable\nexports.f = NASHORN_BUG ? function propertyIsEnumerable(V) {\n var descriptor = getOwnPropertyDescriptor(this, V);\n return !!descriptor && descriptor.enumerable;\n} : nativePropertyIsEnumerable;\n","module.exports = function (bitmap, value) {\n return {\n enumerable: !(bitmap & 1),\n configurable: !(bitmap & 2),\n writable: !(bitmap & 4),\n value: value\n };\n};\n","var fails = require('../internals/fails');\nvar classof = require('../internals/classof-raw');\n\nvar split = ''.split;\n\n// fallback for non-array-like ES3 and non-enumerable old V8 strings\nmodule.exports = fails(function () {\n // throws an error in rhino, see https://github.com/mozilla/rhino/issues/346\n // eslint-disable-next-line no-prototype-builtins\n return !Object('z').propertyIsEnumerable(0);\n}) ? function (it) {\n return classof(it) == 'String' ? split.call(it, '') : Object(it);\n} : Object;\n","var isObject = require('../internals/is-object');\n\n// `ToPrimitive` abstract operation\n// https://tc39.github.io/ecma262/#sec-toprimitive\n// instead of the ES6 spec version, we didn't implement @@toPrimitive case\n// and the second argument - flag - preferred type is a string\nmodule.exports = function (input, PREFERRED_STRING) {\n if (!isObject(input)) return input;\n var fn, val;\n if (PREFERRED_STRING && typeof (fn = input.toString) == 'function' && !isObject(val = fn.call(input))) return val;\n if (typeof (fn = input.valueOf) == 'function' && !isObject(val = fn.call(input))) return val;\n if (!PREFERRED_STRING && typeof (fn = input.toString) == 'function' && !isObject(val = fn.call(input))) return val;\n throw TypeError(\"Can't convert object to primitive value\");\n};\n","var DESCRIPTORS = require('../internals/descriptors');\nvar fails = require('../internals/fails');\nvar createElement = require('../internals/document-create-element');\n\n// Thank's IE8 for his funny defineProperty\nmodule.exports = !DESCRIPTORS && !fails(function () {\n return Object.defineProperty(createElement('div'), 'a', {\n get: function () { return 7; }\n }).a != 7;\n});\n","var DESCRIPTORS = require('../internals/descriptors');\nvar IE8_DOM_DEFINE = require('../internals/ie8-dom-define');\nvar anObject = require('../internals/an-object');\nvar toPrimitive = require('../internals/to-primitive');\n\nvar nativeDefineProperty = Object.defineProperty;\n\n// `Object.defineProperty` method\n// https://tc39.github.io/ecma262/#sec-object.defineproperty\nexports.f = DESCRIPTORS ? nativeDefineProperty : function defineProperty(O, P, Attributes) {\n anObject(O);\n P = toPrimitive(P, true);\n anObject(Attributes);\n if (IE8_DOM_DEFINE) try {\n return nativeDefineProperty(O, P, Attributes);\n } catch (error) { /* empty */ }\n if ('get' in Attributes || 'set' in Attributes) throw TypeError('Accessors not supported');\n if ('value' in Attributes) O[P] = Attributes.value;\n return O;\n};\n","var store = require('../internals/shared-store');\n\nvar functionToString = Function.toString;\n\n// this helper broken in `3.4.1-3.4.4`, so we can't use `shared` helper\nif (typeof store.inspectSource != 'function') {\n store.inspectSource = function (it) {\n return functionToString.call(it);\n };\n}\n\nmodule.exports = store.inspectSource;\n","var global = require('../internals/global');\nvar setGlobal = require('../internals/set-global');\n\nvar SHARED = '__core-js_shared__';\nvar store = global[SHARED] || setGlobal(SHARED, {});\n\nmodule.exports = store;\n","var IS_PURE = require('../internals/is-pure');\nvar store = require('../internals/shared-store');\n\n(module.exports = function (key, value) {\n return store[key] || (store[key] = value !== undefined ? value : {});\n})('versions', []).push({\n version: '3.5.0',\n mode: IS_PURE ? 'pure' : 'global',\n copyright: '© 2019 Denis Pushkarev (zloirock.ru)'\n});\n","var id = 0;\nvar postfix = Math.random();\n\nmodule.exports = function (key) {\n return 'Symbol(' + String(key === undefined ? '' : key) + ')_' + (++id + postfix).toString(36);\n};\n","module.exports = {};\n","var has = require('../internals/has');\nvar toIndexedObject = require('../internals/to-indexed-object');\nvar indexOf = require('../internals/array-includes').indexOf;\nvar hiddenKeys = require('../internals/hidden-keys');\n\nmodule.exports = function (object, names) {\n var O = toIndexedObject(object);\n var i = 0;\n var result = [];\n var key;\n for (key in O) !has(hiddenKeys, key) && has(O, key) && result.push(key);\n // Don't enum bug & hidden keys\n while (names.length > i) if (has(O, key = names[i++])) {\n ~indexOf(result, key) || result.push(key);\n }\n return result;\n};\n","var toIndexedObject = require('../internals/to-indexed-object');\nvar toLength = require('../internals/to-length');\nvar toAbsoluteIndex = require('../internals/to-absolute-index');\n\n// `Array.prototype.{ indexOf, includes }` methods implementation\nvar createMethod = function (IS_INCLUDES) {\n return function ($this, el, fromIndex) {\n var O = toIndexedObject($this);\n var length = toLength(O.length);\n var index = toAbsoluteIndex(fromIndex, length);\n var value;\n // Array#includes uses SameValueZero equality algorithm\n // eslint-disable-next-line no-self-compare\n if (IS_INCLUDES && el != el) while (length > index) {\n value = O[index++];\n // eslint-disable-next-line no-self-compare\n if (value != value) return true;\n // Array#indexOf ignores holes, Array#includes - not\n } else for (;length > index; index++) {\n if ((IS_INCLUDES || index in O) && O[index] === el) return IS_INCLUDES || index || 0;\n } return !IS_INCLUDES && -1;\n };\n};\n\nmodule.exports = {\n // `Array.prototype.includes` method\n // https://tc39.github.io/ecma262/#sec-array.prototype.includes\n includes: createMethod(true),\n // `Array.prototype.indexOf` method\n // https://tc39.github.io/ecma262/#sec-array.prototype.indexof\n indexOf: createMethod(false)\n};\n","var toInteger = require('../internals/to-integer');\n\nvar min = Math.min;\n\n// `ToLength` abstract operation\n// https://tc39.github.io/ecma262/#sec-tolength\nmodule.exports = function (argument) {\n return argument > 0 ? min(toInteger(argument), 0x1FFFFFFFFFFFFF) : 0; // 2 ** 53 - 1 == 9007199254740991\n};\n","// IE8- don't enum bug keys\nmodule.exports = [\n 'constructor',\n 'hasOwnProperty',\n 'isPrototypeOf',\n 'propertyIsEnumerable',\n 'toLocaleString',\n 'toString',\n 'valueOf'\n];\n","exports.f = Object.getOwnPropertySymbols;\n","var requireObjectCoercible = require('../internals/require-object-coercible');\n\n// `ToObject` abstract operation\n// https://tc39.github.io/ecma262/#sec-toobject\nmodule.exports = function (argument) {\n return Object(requireObjectCoercible(argument));\n};\n","var fails = require('../internals/fails');\n\nmodule.exports = !!Object.getOwnPropertySymbols && !fails(function () {\n // Chrome 38 Symbol has incorrect toString conversion\n // eslint-disable-next-line no-undef\n return !String(Symbol());\n});\n","'use strict';\nvar anObject = require('../internals/an-object');\n\n// `RegExp.prototype.flags` getter implementation\n// https://tc39.github.io/ecma262/#sec-get-regexp.prototype.flags\nmodule.exports = function () {\n var that = anObject(this);\n var result = '';\n if (that.global) result += 'g';\n if (that.ignoreCase) result += 'i';\n if (that.multiline) result += 'm';\n if (that.dotAll) result += 's';\n if (that.unicode) result += 'u';\n if (that.sticky) result += 'y';\n return result;\n};\n","'use strict';\nvar regexpFlags = require('./regexp-flags');\n\nvar nativeExec = RegExp.prototype.exec;\n// This always refers to the native implementation, because the\n// String#replace polyfill uses ./fix-regexp-well-known-symbol-logic.js,\n// which loads this file before patching the method.\nvar nativeReplace = String.prototype.replace;\n\nvar patchedExec = nativeExec;\n\nvar UPDATES_LAST_INDEX_WRONG = (function () {\n var re1 = /a/;\n var re2 = /b*/g;\n nativeExec.call(re1, 'a');\n nativeExec.call(re2, 'a');\n return re1.lastIndex !== 0 || re2.lastIndex !== 0;\n})();\n\n// nonparticipating capturing group, copied from es5-shim's String#split patch.\nvar NPCG_INCLUDED = /()??/.exec('')[1] !== undefined;\n\nvar PATCH = UPDATES_LAST_INDEX_WRONG || NPCG_INCLUDED;\n\nif (PATCH) {\n patchedExec = function exec(str) {\n var re = this;\n var lastIndex, reCopy, match, i;\n\n if (NPCG_INCLUDED) {\n reCopy = new RegExp('^' + re.source + '$(?!\\\\s)', regexpFlags.call(re));\n }\n if (UPDATES_LAST_INDEX_WRONG) lastIndex = re.lastIndex;\n\n match = nativeExec.call(re, str);\n\n if (UPDATES_LAST_INDEX_WRONG && match) {\n re.lastIndex = re.global ? match.index + match[0].length : lastIndex;\n }\n if (NPCG_INCLUDED && match && match.length > 1) {\n // Fix browsers whose `exec` methods don't consistently return `undefined`\n // for NPCG, like IE8. NOTE: This doesn' work for /(.?)?/\n nativeReplace.call(match[0], reCopy, function () {\n for (i = 1; i < arguments.length - 2; i++) {\n if (arguments[i] === undefined) match[i] = undefined;\n }\n });\n }\n\n return match;\n };\n}\n\nmodule.exports = patchedExec;\n","var DESCRIPTORS = require('../internals/descriptors');\nvar propertyIsEnumerableModule = require('../internals/object-property-is-enumerable');\nvar createPropertyDescriptor = require('../internals/create-property-descriptor');\nvar toIndexedObject = require('../internals/to-indexed-object');\nvar toPrimitive = require('../internals/to-primitive');\nvar has = require('../internals/has');\nvar IE8_DOM_DEFINE = require('../internals/ie8-dom-define');\n\nvar nativeGetOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;\n\n// `Object.getOwnPropertyDescriptor` method\n// https://tc39.github.io/ecma262/#sec-object.getownpropertydescriptor\nexports.f = DESCRIPTORS ? nativeGetOwnPropertyDescriptor : function getOwnPropertyDescriptor(O, P) {\n O = toIndexedObject(O);\n P = toPrimitive(P, true);\n if (IE8_DOM_DEFINE) try {\n return nativeGetOwnPropertyDescriptor(O, P);\n } catch (error) { /* empty */ }\n if (has(O, P)) return createPropertyDescriptor(!propertyIsEnumerableModule.f.call(O, P), O[P]);\n};\n","'use strict';\nvar nativePropertyIsEnumerable = {}.propertyIsEnumerable;\nvar getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;\n\n// Nashorn ~ JDK8 bug\nvar NASHORN_BUG = getOwnPropertyDescriptor && !nativePropertyIsEnumerable.call({ 1: 2 }, 1);\n\n// `Object.prototype.propertyIsEnumerable` method implementation\n// https://tc39.github.io/ecma262/#sec-object.prototype.propertyisenumerable\nexports.f = NASHORN_BUG ? function propertyIsEnumerable(V) {\n var descriptor = getOwnPropertyDescriptor(this, V);\n return !!descriptor && descriptor.enumerable;\n} : nativePropertyIsEnumerable;\n","module.exports = function (bitmap, value) {\n return {\n enumerable: !(bitmap & 1),\n configurable: !(bitmap & 2),\n writable: !(bitmap & 4),\n value: value\n };\n};\n","var fails = require('../internals/fails');\nvar classof = require('../internals/classof-raw');\n\nvar split = ''.split;\n\n// fallback for non-array-like ES3 and non-enumerable old V8 strings\nmodule.exports = fails(function () {\n // throws an error in rhino, see https://github.com/mozilla/rhino/issues/346\n // eslint-disable-next-line no-prototype-builtins\n return !Object('z').propertyIsEnumerable(0);\n}) ? function (it) {\n return classof(it) == 'String' ? split.call(it, '') : Object(it);\n} : Object;\n","// `RequireObjectCoercible` abstract operation\n// https://tc39.github.io/ecma262/#sec-requireobjectcoercible\nmodule.exports = function (it) {\n if (it == undefined) throw TypeError(\"Can't call method on \" + it);\n return it;\n};\n","var isObject = require('../internals/is-object');\n\n// `ToPrimitive` abstract operation\n// https://tc39.github.io/ecma262/#sec-toprimitive\n// instead of the ES6 spec version, we didn't implement @@toPrimitive case\n// and the second argument - flag - preferred type is a string\nmodule.exports = function (input, PREFERRED_STRING) {\n if (!isObject(input)) return input;\n var fn, val;\n if (PREFERRED_STRING && typeof (fn = input.toString) == 'function' && !isObject(val = fn.call(input))) return val;\n if (typeof (fn = input.valueOf) == 'function' && !isObject(val = fn.call(input))) return val;\n if (!PREFERRED_STRING && typeof (fn = input.toString) == 'function' && !isObject(val = fn.call(input))) return val;\n throw TypeError(\"Can't convert object to primitive value\");\n};\n","var DESCRIPTORS = require('../internals/descriptors');\nvar fails = require('../internals/fails');\nvar createElement = require('../internals/document-create-element');\n\n// Thank's IE8 for his funny defineProperty\nmodule.exports = !DESCRIPTORS && !fails(function () {\n return Object.defineProperty(createElement('div'), 'a', {\n get: function () { return 7; }\n }).a != 7;\n});\n","var DESCRIPTORS = require('../internals/descriptors');\nvar IE8_DOM_DEFINE = require('../internals/ie8-dom-define');\nvar anObject = require('../internals/an-object');\nvar toPrimitive = require('../internals/to-primitive');\n\nvar nativeDefineProperty = Object.defineProperty;\n\n// `Object.defineProperty` method\n// https://tc39.github.io/ecma262/#sec-object.defineproperty\nexports.f = DESCRIPTORS ? nativeDefineProperty : function defineProperty(O, P, Attributes) {\n anObject(O);\n P = toPrimitive(P, true);\n anObject(Attributes);\n if (IE8_DOM_DEFINE) try {\n return nativeDefineProperty(O, P, Attributes);\n } catch (error) { /* empty */ }\n if ('get' in Attributes || 'set' in Attributes) throw TypeError('Accessors not supported');\n if ('value' in Attributes) O[P] = Attributes.value;\n return O;\n};\n","var isObject = require('../internals/is-object');\n\nmodule.exports = function (it) {\n if (!isObject(it)) {\n throw TypeError(String(it) + ' is not an object');\n } return it;\n};\n","var store = require('../internals/shared-store');\n\nvar functionToString = Function.toString;\n\n// this helper broken in `3.4.1-3.4.4`, so we can't use `shared` helper\nif (typeof store.inspectSource != 'function') {\n store.inspectSource = function (it) {\n return functionToString.call(it);\n };\n}\n\nmodule.exports = store.inspectSource;\n","var global = require('../internals/global');\nvar setGlobal = require('../internals/set-global');\n\nvar SHARED = '__core-js_shared__';\nvar store = global[SHARED] || setGlobal(SHARED, {});\n\nmodule.exports = store;\n","module.exports = {};\n","var has = require('../internals/has');\nvar toIndexedObject = require('../internals/to-indexed-object');\nvar indexOf = require('../internals/array-includes').indexOf;\nvar hiddenKeys = require('../internals/hidden-keys');\n\nmodule.exports = function (object, names) {\n var O = toIndexedObject(object);\n var i = 0;\n var result = [];\n var key;\n for (key in O) !has(hiddenKeys, key) && has(O, key) && result.push(key);\n // Don't enum bug & hidden keys\n while (names.length > i) if (has(O, key = names[i++])) {\n ~indexOf(result, key) || result.push(key);\n }\n return result;\n};\n","var ceil = Math.ceil;\nvar floor = Math.floor;\n\n// `ToInteger` abstract operation\n// https://tc39.github.io/ecma262/#sec-tointeger\nmodule.exports = function (argument) {\n return isNaN(argument = +argument) ? 0 : (argument > 0 ? floor : ceil)(argument);\n};\n","// IE8- don't enum bug keys\nmodule.exports = [\n 'constructor',\n 'hasOwnProperty',\n 'isPrototypeOf',\n 'propertyIsEnumerable',\n 'toLocaleString',\n 'toString',\n 'valueOf'\n];\n","exports.f = Object.getOwnPropertySymbols;\n","'use strict';\nconst pTry = require('p-try');\n\nconst pLimit = concurrency => {\n\tif (!((Number.isInteger(concurrency) || concurrency === Infinity) && concurrency > 0)) {\n\t\treturn Promise.reject(new TypeError('Expected `concurrency` to be a number from 1 and up'));\n\t}\n\n\tconst queue = [];\n\tlet activeCount = 0;\n\n\tconst next = () => {\n\t\tactiveCount--;\n\n\t\tif (queue.length > 0) {\n\t\t\tqueue.shift()();\n\t\t}\n\t};\n\n\tconst run = (fn, resolve, ...args) => {\n\t\tactiveCount++;\n\n\t\tconst result = pTry(fn, ...args);\n\n\t\tresolve(result);\n\n\t\tresult.then(next, next);\n\t};\n\n\tconst enqueue = (fn, resolve, ...args) => {\n\t\tif (activeCount < concurrency) {\n\t\t\trun(fn, resolve, ...args);\n\t\t} else {\n\t\t\tqueue.push(run.bind(null, fn, resolve, ...args));\n\t\t}\n\t};\n\n\tconst generator = (fn, ...args) => new Promise(resolve => enqueue(fn, resolve, ...args));\n\tObject.defineProperties(generator, {\n\t\tactiveCount: {\n\t\t\tget: () => activeCount\n\t\t},\n\t\tpendingCount: {\n\t\t\tget: () => queue.length\n\t\t}\n\t});\n\n\treturn generator;\n};\n\nmodule.exports = pLimit;\nmodule.exports.default = pLimit;\n","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.getRequestToken = getRequestToken;\nexports.onRequestTokenUpdate = onRequestTokenUpdate;\n\nvar _eventBus = require(\"@nextcloud/event-bus\");\n\nvar tokenElement = document.getElementsByTagName('head')[0];\nvar token = tokenElement ? tokenElement.getAttribute('data-requesttoken') : null;\nvar observers = [];\n\nfunction getRequestToken() {\n return token;\n}\n\nfunction onRequestTokenUpdate(observer) {\n observers.push(observer);\n} // Listen to server event and keep token in sync\n\n\n(0, _eventBus.subscribe)('csrf-token-update', function (e) {\n token = e.token;\n observers.forEach(function (observer) {\n try {\n observer(e.token);\n } catch (e) {\n console.error('error updating CSRF token observer', e);\n }\n });\n});\n//# sourceMappingURL=requesttoken.js.map","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.getCurrentUser = getCurrentUser;\nvar uidElement = document.getElementsByTagName('head')[0];\nvar uid = uidElement ? uidElement.getAttribute('data-user') : null;\nvar displayNameElement = document.getElementsByTagName('head')[0];\nvar displayName = displayNameElement ? displayNameElement.getAttribute('data-user-displayname') : null;\n\nfunction getCurrentUser() {\n if (uid === null) {\n return null;\n }\n\n return {\n uid: uid,\n displayName: displayName\n };\n}\n//# sourceMappingURL=user.js.map","'use strict';\nvar $ = require('../internals/export');\nvar $indexOf = require('../internals/array-includes').indexOf;\nvar sloppyArrayMethod = require('../internals/sloppy-array-method');\n\nvar nativeIndexOf = [].indexOf;\n\nvar NEGATIVE_ZERO = !!nativeIndexOf && 1 / [1].indexOf(1, -0) < 0;\nvar SLOPPY_METHOD = sloppyArrayMethod('indexOf');\n\n// `Array.prototype.indexOf` method\n// https://tc39.github.io/ecma262/#sec-array.prototype.indexof\n$({ target: 'Array', proto: true, forced: NEGATIVE_ZERO || SLOPPY_METHOD }, {\n indexOf: function indexOf(searchElement /* , fromIndex = 0 */) {\n return NEGATIVE_ZERO\n // convert -0 to +0\n ? nativeIndexOf.apply(this, arguments) || 0\n : $indexOf(this, searchElement, arguments.length > 1 ? arguments[1] : undefined);\n }\n});\n","var global = require('../internals/global');\nvar isObject = require('../internals/is-object');\n\nvar document = global.document;\n// typeof document.createElement is 'object' in old IE\nvar EXISTS = isObject(document) && isObject(document.createElement);\n\nmodule.exports = function (it) {\n return EXISTS ? document.createElement(it) : {};\n};\n","var NATIVE_WEAK_MAP = require('../internals/native-weak-map');\nvar global = require('../internals/global');\nvar isObject = require('../internals/is-object');\nvar createNonEnumerableProperty = require('../internals/create-non-enumerable-property');\nvar objectHas = require('../internals/has');\nvar sharedKey = require('../internals/shared-key');\nvar hiddenKeys = require('../internals/hidden-keys');\n\nvar WeakMap = global.WeakMap;\nvar set, get, has;\n\nvar enforce = function (it) {\n return has(it) ? get(it) : set(it, {});\n};\n\nvar getterFor = function (TYPE) {\n return function (it) {\n var state;\n if (!isObject(it) || (state = get(it)).type !== TYPE) {\n throw TypeError('Incompatible receiver, ' + TYPE + ' required');\n } return state;\n };\n};\n\nif (NATIVE_WEAK_MAP) {\n var store = new WeakMap();\n var wmget = store.get;\n var wmhas = store.has;\n var wmset = store.set;\n set = function (it, metadata) {\n wmset.call(store, it, metadata);\n return metadata;\n };\n get = function (it) {\n return wmget.call(store, it) || {};\n };\n has = function (it) {\n return wmhas.call(store, it);\n };\n} else {\n var STATE = sharedKey('state');\n hiddenKeys[STATE] = true;\n set = function (it, metadata) {\n createNonEnumerableProperty(it, STATE, metadata);\n return metadata;\n };\n get = function (it) {\n return objectHas(it, STATE) ? it[STATE] : {};\n };\n has = function (it) {\n return objectHas(it, STATE);\n };\n}\n\nmodule.exports = {\n set: set,\n get: get,\n has: has,\n enforce: enforce,\n getterFor: getterFor\n};\n","var global = require('../internals/global');\nvar inspectSource = require('../internals/inspect-source');\n\nvar WeakMap = global.WeakMap;\n\nmodule.exports = typeof WeakMap === 'function' && /native code/.test(inspectSource(WeakMap));\n","var shared = require('../internals/shared');\nvar uid = require('../internals/uid');\n\nvar keys = shared('keys');\n\nmodule.exports = function (key) {\n return keys[key] || (keys[key] = uid(key));\n};\n","module.exports = false;\n","var has = require('../internals/has');\nvar ownKeys = require('../internals/own-keys');\nvar getOwnPropertyDescriptorModule = require('../internals/object-get-own-property-descriptor');\nvar definePropertyModule = require('../internals/object-define-property');\n\nmodule.exports = function (target, source) {\n var keys = ownKeys(source);\n var defineProperty = definePropertyModule.f;\n var getOwnPropertyDescriptor = getOwnPropertyDescriptorModule.f;\n for (var i = 0; i < keys.length; i++) {\n var key = keys[i];\n if (!has(target, key)) defineProperty(target, key, getOwnPropertyDescriptor(source, key));\n }\n};\n","var getBuiltIn = require('../internals/get-built-in');\nvar getOwnPropertyNamesModule = require('../internals/object-get-own-property-names');\nvar getOwnPropertySymbolsModule = require('../internals/object-get-own-property-symbols');\nvar anObject = require('../internals/an-object');\n\n// all object keys, includes non-enumerable and symbols\nmodule.exports = getBuiltIn('Reflect', 'ownKeys') || function ownKeys(it) {\n var keys = getOwnPropertyNamesModule.f(anObject(it));\n var getOwnPropertySymbols = getOwnPropertySymbolsModule.f;\n return getOwnPropertySymbols ? keys.concat(getOwnPropertySymbols(it)) : keys;\n};\n","var path = require('../internals/path');\nvar global = require('../internals/global');\n\nvar aFunction = function (variable) {\n return typeof variable == 'function' ? variable : undefined;\n};\n\nmodule.exports = function (namespace, method) {\n return arguments.length < 2 ? aFunction(path[namespace]) || aFunction(global[namespace])\n : path[namespace] && path[namespace][method] || global[namespace] && global[namespace][method];\n};\n","var global = require('../internals/global');\n\nmodule.exports = global;\n","var internalObjectKeys = require('../internals/object-keys-internal');\nvar enumBugKeys = require('../internals/enum-bug-keys');\n\nvar hiddenKeys = enumBugKeys.concat('length', 'prototype');\n\n// `Object.getOwnPropertyNames` method\n// https://tc39.github.io/ecma262/#sec-object.getownpropertynames\nexports.f = Object.getOwnPropertyNames || function getOwnPropertyNames(O) {\n return internalObjectKeys(O, hiddenKeys);\n};\n","var toInteger = require('../internals/to-integer');\n\nvar max = Math.max;\nvar min = Math.min;\n\n// Helper for a popular repeating case of the spec:\n// Let integer be ? ToInteger(index).\n// If integer < 0, let result be max((length + integer), 0); else let result be min(integer, length).\nmodule.exports = function (index, length) {\n var integer = toInteger(index);\n return integer < 0 ? max(integer + length, 0) : min(integer, length);\n};\n","var fails = require('../internals/fails');\n\nvar replacement = /#|\\.prototype\\./;\n\nvar isForced = function (feature, detection) {\n var value = data[normalize(feature)];\n return value == POLYFILL ? true\n : value == NATIVE ? false\n : typeof detection == 'function' ? fails(detection)\n : !!detection;\n};\n\nvar normalize = isForced.normalize = function (string) {\n return String(string).replace(replacement, '.').toLowerCase();\n};\n\nvar data = isForced.data = {};\nvar NATIVE = isForced.NATIVE = 'N';\nvar POLYFILL = isForced.POLYFILL = 'P';\n\nmodule.exports = isForced;\n","'use strict';\nvar fails = require('../internals/fails');\n\nmodule.exports = function (METHOD_NAME, argument) {\n var method = [][METHOD_NAME];\n return !method || !fails(function () {\n // eslint-disable-next-line no-useless-call,no-throw-literal\n method.call(null, argument || function () { throw 1; }, 1);\n });\n};\n","var $ = require('../internals/export');\nvar assign = require('../internals/object-assign');\n\n// `Object.assign` method\n// https://tc39.github.io/ecma262/#sec-object.assign\n$({ target: 'Object', stat: true, forced: Object.assign !== assign }, {\n assign: assign\n});\n","'use strict';\nvar DESCRIPTORS = require('../internals/descriptors');\nvar fails = require('../internals/fails');\nvar objectKeys = require('../internals/object-keys');\nvar getOwnPropertySymbolsModule = require('../internals/object-get-own-property-symbols');\nvar propertyIsEnumerableModule = require('../internals/object-property-is-enumerable');\nvar toObject = require('../internals/to-object');\nvar IndexedObject = require('../internals/indexed-object');\n\nvar nativeAssign = Object.assign;\nvar defineProperty = Object.defineProperty;\n\n// `Object.assign` method\n// https://tc39.github.io/ecma262/#sec-object.assign\nmodule.exports = !nativeAssign || fails(function () {\n // should have correct order of operations (Edge bug)\n if (DESCRIPTORS && nativeAssign({ b: 1 }, nativeAssign(defineProperty({}, 'a', {\n enumerable: true,\n get: function () {\n defineProperty(this, 'b', {\n value: 3,\n enumerable: false\n });\n }\n }), { b: 2 })).b !== 1) return true;\n // should work with symbols and should have deterministic property order (V8 bug)\n var A = {};\n var B = {};\n // eslint-disable-next-line no-undef\n var symbol = Symbol();\n var alphabet = 'abcdefghijklmnopqrst';\n A[symbol] = 7;\n alphabet.split('').forEach(function (chr) { B[chr] = chr; });\n return nativeAssign({}, A)[symbol] != 7 || objectKeys(nativeAssign({}, B)).join('') != alphabet;\n}) ? function assign(target, source) { // eslint-disable-line no-unused-vars\n var T = toObject(target);\n var argumentsLength = arguments.length;\n var index = 1;\n var getOwnPropertySymbols = getOwnPropertySymbolsModule.f;\n var propertyIsEnumerable = propertyIsEnumerableModule.f;\n while (argumentsLength > index) {\n var S = IndexedObject(arguments[index++]);\n var keys = getOwnPropertySymbols ? objectKeys(S).concat(getOwnPropertySymbols(S)) : objectKeys(S);\n var length = keys.length;\n var j = 0;\n var key;\n while (length > j) {\n key = keys[j++];\n if (!DESCRIPTORS || propertyIsEnumerable.call(S, key)) T[key] = S[key];\n }\n } return T;\n} : nativeAssign;\n","var internalObjectKeys = require('../internals/object-keys-internal');\nvar enumBugKeys = require('../internals/enum-bug-keys');\n\n// `Object.keys` method\n// https://tc39.github.io/ecma262/#sec-object.keys\nmodule.exports = Object.keys || function keys(O) {\n return internalObjectKeys(O, enumBugKeys);\n};\n","var TO_STRING_TAG_SUPPORT = require('../internals/to-string-tag-support');\nvar redefine = require('../internals/redefine');\nvar toString = require('../internals/object-to-string');\n\n// `Object.prototype.toString` method\n// https://tc39.github.io/ecma262/#sec-object.prototype.tostring\nif (!TO_STRING_TAG_SUPPORT) {\n redefine(Object.prototype, 'toString', toString, { unsafe: true });\n}\n","var NATIVE_SYMBOL = require('../internals/native-symbol');\n\nmodule.exports = NATIVE_SYMBOL\n // eslint-disable-next-line no-undef\n && !Symbol.sham\n // eslint-disable-next-line no-undef\n && typeof Symbol() == 'symbol';\n","'use strict';\nvar TO_STRING_TAG_SUPPORT = require('../internals/to-string-tag-support');\nvar classof = require('../internals/classof');\n\n// `Object.prototype.toString` method implementation\n// https://tc39.github.io/ecma262/#sec-object.prototype.tostring\nmodule.exports = TO_STRING_TAG_SUPPORT ? {}.toString : function toString() {\n return '[object ' + classof(this) + ']';\n};\n","var TO_STRING_TAG_SUPPORT = require('../internals/to-string-tag-support');\nvar classofRaw = require('../internals/classof-raw');\nvar wellKnownSymbol = require('../internals/well-known-symbol');\n\nvar TO_STRING_TAG = wellKnownSymbol('toStringTag');\n// ES3 wrong here\nvar CORRECT_ARGUMENTS = classofRaw(function () { return arguments; }()) == 'Arguments';\n\n// fallback for IE11 Script Access Denied error\nvar tryGet = function (it, key) {\n try {\n return it[key];\n } catch (error) { /* empty */ }\n};\n\n// getting tag from ES6+ `Object.prototype.toString`\nmodule.exports = TO_STRING_TAG_SUPPORT ? classofRaw : function (it) {\n var O, tag, result;\n return it === undefined ? 'Undefined' : it === null ? 'Null'\n // @@toStringTag case\n : typeof (tag = tryGet(O = Object(it), TO_STRING_TAG)) == 'string' ? tag\n // builtinTag case\n : CORRECT_ARGUMENTS ? classofRaw(O)\n // ES3 arguments fallback\n : (result = classofRaw(O)) == 'Object' && typeof O.callee == 'function' ? 'Arguments' : result;\n};\n","'use strict';\nvar redefine = require('../internals/redefine');\nvar anObject = require('../internals/an-object');\nvar fails = require('../internals/fails');\nvar flags = require('../internals/regexp-flags');\n\nvar TO_STRING = 'toString';\nvar RegExpPrototype = RegExp.prototype;\nvar nativeToString = RegExpPrototype[TO_STRING];\n\nvar NOT_GENERIC = fails(function () { return nativeToString.call({ source: 'a', flags: 'b' }) != '/a/b'; });\n// FF44- RegExp#toString has a wrong name\nvar INCORRECT_NAME = nativeToString.name != TO_STRING;\n\n// `RegExp.prototype.toString` method\n// https://tc39.github.io/ecma262/#sec-regexp.prototype.tostring\nif (NOT_GENERIC || INCORRECT_NAME) {\n redefine(RegExp.prototype, TO_STRING, function toString() {\n var R = anObject(this);\n var p = String(R.source);\n var rf = R.flags;\n var f = String(rf === undefined && R instanceof RegExp && !('flags' in RegExpPrototype) ? flags.call(R) : rf);\n return '/' + p + '/' + f;\n }, { unsafe: true });\n}\n","'use strict';\nvar fixRegExpWellKnownSymbolLogic = require('../internals/fix-regexp-well-known-symbol-logic');\nvar anObject = require('../internals/an-object');\nvar toObject = require('../internals/to-object');\nvar toLength = require('../internals/to-length');\nvar toInteger = require('../internals/to-integer');\nvar requireObjectCoercible = require('../internals/require-object-coercible');\nvar advanceStringIndex = require('../internals/advance-string-index');\nvar regExpExec = require('../internals/regexp-exec-abstract');\n\nvar max = Math.max;\nvar min = Math.min;\nvar floor = Math.floor;\nvar SUBSTITUTION_SYMBOLS = /\\$([$&'`]|\\d\\d?|<[^>]*>)/g;\nvar SUBSTITUTION_SYMBOLS_NO_NAMED = /\\$([$&'`]|\\d\\d?)/g;\n\nvar maybeToString = function (it) {\n return it === undefined ? it : String(it);\n};\n\n// @@replace logic\nfixRegExpWellKnownSymbolLogic('replace', 2, function (REPLACE, nativeReplace, maybeCallNative) {\n return [\n // `String.prototype.replace` method\n // https://tc39.github.io/ecma262/#sec-string.prototype.replace\n function replace(searchValue, replaceValue) {\n var O = requireObjectCoercible(this);\n var replacer = searchValue == undefined ? undefined : searchValue[REPLACE];\n return replacer !== undefined\n ? replacer.call(searchValue, O, replaceValue)\n : nativeReplace.call(String(O), searchValue, replaceValue);\n },\n // `RegExp.prototype[@@replace]` method\n // https://tc39.github.io/ecma262/#sec-regexp.prototype-@@replace\n function (regexp, replaceValue) {\n var res = maybeCallNative(nativeReplace, regexp, this, replaceValue);\n if (res.done) return res.value;\n\n var rx = anObject(regexp);\n var S = String(this);\n\n var functionalReplace = typeof replaceValue === 'function';\n if (!functionalReplace) replaceValue = String(replaceValue);\n\n var global = rx.global;\n if (global) {\n var fullUnicode = rx.unicode;\n rx.lastIndex = 0;\n }\n var results = [];\n while (true) {\n var result = regExpExec(rx, S);\n if (result === null) break;\n\n results.push(result);\n if (!global) break;\n\n var matchStr = String(result[0]);\n if (matchStr === '') rx.lastIndex = advanceStringIndex(S, toLength(rx.lastIndex), fullUnicode);\n }\n\n var accumulatedResult = '';\n var nextSourcePosition = 0;\n for (var i = 0; i < results.length; i++) {\n result = results[i];\n\n var matched = String(result[0]);\n var position = max(min(toInteger(result.index), S.length), 0);\n var captures = [];\n // NOTE: This is equivalent to\n // captures = result.slice(1).map(maybeToString)\n // but for some reason `nativeSlice.call(result, 1, result.length)` (called in\n // the slice polyfill when slicing native arrays) \"doesn't work\" in safari 9 and\n // causes a crash (https://pastebin.com/N21QzeQA) when trying to debug it.\n for (var j = 1; j < result.length; j++) captures.push(maybeToString(result[j]));\n var namedCaptures = result.groups;\n if (functionalReplace) {\n var replacerArgs = [matched].concat(captures, position, S);\n if (namedCaptures !== undefined) replacerArgs.push(namedCaptures);\n var replacement = String(replaceValue.apply(undefined, replacerArgs));\n } else {\n replacement = getSubstitution(matched, S, position, captures, namedCaptures, replaceValue);\n }\n if (position >= nextSourcePosition) {\n accumulatedResult += S.slice(nextSourcePosition, position) + replacement;\n nextSourcePosition = position + matched.length;\n }\n }\n return accumulatedResult + S.slice(nextSourcePosition);\n }\n ];\n\n // https://tc39.github.io/ecma262/#sec-getsubstitution\n function getSubstitution(matched, str, position, captures, namedCaptures, replacement) {\n var tailPos = position + matched.length;\n var m = captures.length;\n var symbols = SUBSTITUTION_SYMBOLS_NO_NAMED;\n if (namedCaptures !== undefined) {\n namedCaptures = toObject(namedCaptures);\n symbols = SUBSTITUTION_SYMBOLS;\n }\n return nativeReplace.call(replacement, symbols, function (match, ch) {\n var capture;\n switch (ch.charAt(0)) {\n case '$': return '$';\n case '&': return matched;\n case '`': return str.slice(0, position);\n case \"'\": return str.slice(tailPos);\n case '<':\n capture = namedCaptures[ch.slice(1, -1)];\n break;\n default: // \\d\\d?\n var n = +ch;\n if (n === 0) return match;\n if (n > m) {\n var f = floor(n / 10);\n if (f === 0) return match;\n if (f <= m) return captures[f - 1] === undefined ? ch.charAt(1) : captures[f - 1] + ch.charAt(1);\n return match;\n }\n capture = captures[n - 1];\n }\n return capture === undefined ? '' : capture;\n });\n }\n});\n","'use strict';\nvar createNonEnumerableProperty = require('../internals/create-non-enumerable-property');\nvar redefine = require('../internals/redefine');\nvar fails = require('../internals/fails');\nvar wellKnownSymbol = require('../internals/well-known-symbol');\nvar regexpExec = require('../internals/regexp-exec');\n\nvar SPECIES = wellKnownSymbol('species');\n\nvar REPLACE_SUPPORTS_NAMED_GROUPS = !fails(function () {\n // #replace needs built-in support for named groups.\n // #match works fine because it just return the exec results, even if it has\n // a \"grops\" property.\n var re = /./;\n re.exec = function () {\n var result = [];\n result.groups = { a: '7' };\n return result;\n };\n return ''.replace(re, '$<a>') !== '7';\n});\n\n// Chrome 51 has a buggy \"split\" implementation when RegExp#exec !== nativeExec\n// Weex JS has frozen built-in prototypes, so use try / catch wrapper\nvar SPLIT_WORKS_WITH_OVERWRITTEN_EXEC = !fails(function () {\n var re = /(?:)/;\n var originalExec = re.exec;\n re.exec = function () { return originalExec.apply(this, arguments); };\n var result = 'ab'.split(re);\n return result.length !== 2 || result[0] !== 'a' || result[1] !== 'b';\n});\n\nmodule.exports = function (KEY, length, exec, sham) {\n var SYMBOL = wellKnownSymbol(KEY);\n\n var DELEGATES_TO_SYMBOL = !fails(function () {\n // String methods call symbol-named RegEp methods\n var O = {};\n O[SYMBOL] = function () { return 7; };\n return ''[KEY](O) != 7;\n });\n\n var DELEGATES_TO_EXEC = DELEGATES_TO_SYMBOL && !fails(function () {\n // Symbol-named RegExp methods call .exec\n var execCalled = false;\n var re = /a/;\n\n if (KEY === 'split') {\n // We can't use real regex here since it causes deoptimization\n // and serious performance degradation in V8\n // https://github.com/zloirock/core-js/issues/306\n re = {};\n // RegExp[@@split] doesn't call the regex's exec method, but first creates\n // a new one. We need to return the patched regex when creating the new one.\n re.constructor = {};\n re.constructor[SPECIES] = function () { return re; };\n re.flags = '';\n re[SYMBOL] = /./[SYMBOL];\n }\n\n re.exec = function () { execCalled = true; return null; };\n\n re[SYMBOL]('');\n return !execCalled;\n });\n\n if (\n !DELEGATES_TO_SYMBOL ||\n !DELEGATES_TO_EXEC ||\n (KEY === 'replace' && !REPLACE_SUPPORTS_NAMED_GROUPS) ||\n (KEY === 'split' && !SPLIT_WORKS_WITH_OVERWRITTEN_EXEC)\n ) {\n var nativeRegExpMethod = /./[SYMBOL];\n var methods = exec(SYMBOL, ''[KEY], function (nativeMethod, regexp, str, arg2, forceStringMethod) {\n if (regexp.exec === regexpExec) {\n if (DELEGATES_TO_SYMBOL && !forceStringMethod) {\n // The native String method already delegates to @@method (this\n // polyfilled function), leasing to infinite recursion.\n // We avoid it by directly calling the native @@method method.\n return { done: true, value: nativeRegExpMethod.call(regexp, str, arg2) };\n }\n return { done: true, value: nativeMethod.call(str, regexp, arg2) };\n }\n return { done: false };\n });\n var stringMethod = methods[0];\n var regexMethod = methods[1];\n\n redefine(String.prototype, KEY, stringMethod);\n redefine(RegExp.prototype, SYMBOL, length == 2\n // 21.2.5.8 RegExp.prototype[@@replace](string, replaceValue)\n // 21.2.5.11 RegExp.prototype[@@split](string, limit)\n ? function (string, arg) { return regexMethod.call(string, this, arg); }\n // 21.2.5.6 RegExp.prototype[@@match](string)\n // 21.2.5.9 RegExp.prototype[@@search](string)\n : function (string) { return regexMethod.call(string, this); }\n );\n if (sham) createNonEnumerableProperty(RegExp.prototype[SYMBOL], 'sham', true);\n }\n};\n","'use strict';\nvar charAt = require('../internals/string-multibyte').charAt;\n\n// `AdvanceStringIndex` abstract operation\n// https://tc39.github.io/ecma262/#sec-advancestringindex\nmodule.exports = function (S, index, unicode) {\n return index + (unicode ? charAt(S, index).length : 1);\n};\n","var toInteger = require('../internals/to-integer');\nvar requireObjectCoercible = require('../internals/require-object-coercible');\n\n// `String.prototype.{ codePointAt, at }` methods implementation\nvar createMethod = function (CONVERT_TO_STRING) {\n return function ($this, pos) {\n var S = String(requireObjectCoercible($this));\n var position = toInteger(pos);\n var size = S.length;\n var first, second;\n if (position < 0 || position >= size) return CONVERT_TO_STRING ? '' : undefined;\n first = S.charCodeAt(position);\n return first < 0xD800 || first > 0xDBFF || position + 1 === size\n || (second = S.charCodeAt(position + 1)) < 0xDC00 || second > 0xDFFF\n ? CONVERT_TO_STRING ? S.charAt(position) : first\n : CONVERT_TO_STRING ? S.slice(position, position + 2) : (first - 0xD800 << 10) + (second - 0xDC00) + 0x10000;\n };\n};\n\nmodule.exports = {\n // `String.prototype.codePointAt` method\n // https://tc39.github.io/ecma262/#sec-string.prototype.codepointat\n codeAt: createMethod(false),\n // `String.prototype.at` method\n // https://github.com/mathiasbynens/String.prototype.at\n charAt: createMethod(true)\n};\n","var classof = require('./classof-raw');\nvar regexpExec = require('./regexp-exec');\n\n// `RegExpExec` abstract operation\n// https://tc39.github.io/ecma262/#sec-regexpexec\nmodule.exports = function (R, S) {\n var exec = R.exec;\n if (typeof exec === 'function') {\n var result = exec.call(R, S);\n if (typeof result !== 'object') {\n throw TypeError('RegExp exec method returned something other than an Object or null');\n }\n return result;\n }\n\n if (classof(R) !== 'RegExp') {\n throw TypeError('RegExp#exec called on incompatible receiver');\n }\n\n return regexpExec.call(R, S);\n};\n\n","\"use strict\";\n\nrequire(\"core-js/modules/es.object.assign\");\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.buildConsoleLogger = buildConsoleLogger;\nexports.ConsoleLogger = void 0;\n\nvar _contracts = require(\"./contracts\");\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nfunction _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }\n\nfunction _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }\n\nvar ConsoleLogger =\n/*#__PURE__*/\nfunction () {\n function ConsoleLogger(context) {\n _classCallCheck(this, ConsoleLogger);\n\n this.context = context;\n }\n\n _createClass(ConsoleLogger, [{\n key: \"formatMessage\",\n value: function formatMessage(message, level, context) {\n var msg = '[' + level + ']';\n\n if (context && context.app) {\n msg += ' ' + context.app + ': ';\n }\n\n return msg + message;\n }\n }, {\n key: \"log\",\n value: function log(level, message, context) {\n switch (level) {\n case 0:\n console.debug(this.formatMessage(message, _contracts.LogLevel.Debug, context), context);\n break;\n\n case 1:\n console.info(this.formatMessage(message, _contracts.LogLevel.Info, context), context);\n break;\n\n case 2:\n console.warn(this.formatMessage(message, _contracts.LogLevel.Warn, context), context);\n break;\n\n case 3:\n console.error(this.formatMessage(message, _contracts.LogLevel.Error, context), context);\n break;\n\n default:\n console.error(this.formatMessage(message, _contracts.LogLevel.Fatal, context), context);\n break;\n }\n }\n }, {\n key: \"debug\",\n value: function debug(message, context) {\n this.log(0, message, Object.assign({}, this.context, context));\n }\n }, {\n key: \"info\",\n value: function info(message, context) {\n this.log(1, message, Object.assign({}, this.context, context));\n }\n }, {\n key: \"warn\",\n value: function warn(message, context) {\n this.log(2, message, Object.assign({}, this.context, context));\n }\n }, {\n key: \"error\",\n value: function error(message, context) {\n this.log(3, message, Object.assign({}, this.context, context));\n }\n }, {\n key: \"fatal\",\n value: function fatal(message, context) {\n this.log(4, message, Object.assign({}, this.context, context));\n }\n }]);\n\n return ConsoleLogger;\n}();\n\nexports.ConsoleLogger = ConsoleLogger;\n\nfunction buildConsoleLogger(context) {\n return new ConsoleLogger(context);\n}\n//# sourceMappingURL=ConsoleLogger.js.map","var $ = require('../internals/export');\nvar assign = require('../internals/object-assign');\n\n// `Object.assign` method\n// https://tc39.github.io/ecma262/#sec-object.assign\n$({ target: 'Object', stat: true, forced: Object.assign !== assign }, {\n assign: assign\n});\n","var global = require('../internals/global');\nvar getOwnPropertyDescriptor = require('../internals/object-get-own-property-descriptor').f;\nvar createNonEnumerableProperty = require('../internals/create-non-enumerable-property');\nvar redefine = require('../internals/redefine');\nvar setGlobal = require('../internals/set-global');\nvar copyConstructorProperties = require('../internals/copy-constructor-properties');\nvar isForced = require('../internals/is-forced');\n\n/*\n options.target - name of the target object\n options.global - target is the global object\n options.stat - export as static methods of target\n options.proto - export as prototype methods of target\n options.real - real prototype method for the `pure` version\n options.forced - export even if the native feature is available\n options.bind - bind methods to the target, required for the `pure` version\n options.wrap - wrap constructors to preventing global pollution, required for the `pure` version\n options.unsafe - use the simple assignment of property instead of delete + defineProperty\n options.sham - add a flag to not completely full polyfills\n options.enumerable - export as enumerable property\n options.noTargetGet - prevent calling a getter on target\n*/\nmodule.exports = function (options, source) {\n var TARGET = options.target;\n var GLOBAL = options.global;\n var STATIC = options.stat;\n var FORCED, target, key, targetProperty, sourceProperty, descriptor;\n if (GLOBAL) {\n target = global;\n } else if (STATIC) {\n target = global[TARGET] || setGlobal(TARGET, {});\n } else {\n target = (global[TARGET] || {}).prototype;\n }\n if (target) for (key in source) {\n sourceProperty = source[key];\n if (options.noTargetGet) {\n descriptor = getOwnPropertyDescriptor(target, key);\n targetProperty = descriptor && descriptor.value;\n } else targetProperty = target[key];\n FORCED = isForced(GLOBAL ? key : TARGET + (STATIC ? '.' : '#') + key, options.forced);\n // contained in target\n if (!FORCED && targetProperty !== undefined) {\n if (typeof sourceProperty === typeof targetProperty) continue;\n copyConstructorProperties(sourceProperty, targetProperty);\n }\n // add a flag to not completely full polyfills\n if (options.sham || (targetProperty && targetProperty.sham)) {\n createNonEnumerableProperty(sourceProperty, 'sham', true);\n }\n // extend global\n redefine(target, key, sourceProperty, options);\n }\n};\n","var toString = {}.toString;\n\nmodule.exports = function (it) {\n return toString.call(it).slice(8, -1);\n};\n","var global = require('../internals/global');\nvar isObject = require('../internals/is-object');\n\nvar document = global.document;\n// typeof document.createElement is 'object' in old IE\nvar EXISTS = isObject(document) && isObject(document.createElement);\n\nmodule.exports = function (it) {\n return EXISTS ? document.createElement(it) : {};\n};\n","var global = require('../internals/global');\nvar createNonEnumerableProperty = require('../internals/create-non-enumerable-property');\nvar has = require('../internals/has');\nvar setGlobal = require('../internals/set-global');\nvar inspectSource = require('../internals/inspect-source');\nvar InternalStateModule = require('../internals/internal-state');\n\nvar getInternalState = InternalStateModule.get;\nvar enforceInternalState = InternalStateModule.enforce;\nvar TEMPLATE = String(String).split('String');\n\n(module.exports = function (O, key, value, options) {\n var unsafe = options ? !!options.unsafe : false;\n var simple = options ? !!options.enumerable : false;\n var noTargetGet = options ? !!options.noTargetGet : false;\n if (typeof value == 'function') {\n if (typeof key == 'string' && !has(value, 'name')) createNonEnumerableProperty(value, 'name', key);\n enforceInternalState(value).source = TEMPLATE.join(typeof key == 'string' ? key : '');\n }\n if (O === global) {\n if (simple) O[key] = value;\n else setGlobal(key, value);\n return;\n } else if (!unsafe) {\n delete O[key];\n } else if (!noTargetGet && O[key]) {\n simple = true;\n }\n if (simple) O[key] = value;\n else createNonEnumerableProperty(O, key, value);\n// add fake Function#toString for correct work wrapped methods / constructors with methods like LoDash isNative\n})(Function.prototype, 'toString', function toString() {\n return typeof this == 'function' && getInternalState(this).source || inspectSource(this);\n});\n","var NATIVE_WEAK_MAP = require('../internals/native-weak-map');\nvar global = require('../internals/global');\nvar isObject = require('../internals/is-object');\nvar createNonEnumerableProperty = require('../internals/create-non-enumerable-property');\nvar objectHas = require('../internals/has');\nvar sharedKey = require('../internals/shared-key');\nvar hiddenKeys = require('../internals/hidden-keys');\n\nvar WeakMap = global.WeakMap;\nvar set, get, has;\n\nvar enforce = function (it) {\n return has(it) ? get(it) : set(it, {});\n};\n\nvar getterFor = function (TYPE) {\n return function (it) {\n var state;\n if (!isObject(it) || (state = get(it)).type !== TYPE) {\n throw TypeError('Incompatible receiver, ' + TYPE + ' required');\n } return state;\n };\n};\n\nif (NATIVE_WEAK_MAP) {\n var store = new WeakMap();\n var wmget = store.get;\n var wmhas = store.has;\n var wmset = store.set;\n set = function (it, metadata) {\n wmset.call(store, it, metadata);\n return metadata;\n };\n get = function (it) {\n return wmget.call(store, it) || {};\n };\n has = function (it) {\n return wmhas.call(store, it);\n };\n} else {\n var STATE = sharedKey('state');\n hiddenKeys[STATE] = true;\n set = function (it, metadata) {\n createNonEnumerableProperty(it, STATE, metadata);\n return metadata;\n };\n get = function (it) {\n return objectHas(it, STATE) ? it[STATE] : {};\n };\n has = function (it) {\n return objectHas(it, STATE);\n };\n}\n\nmodule.exports = {\n set: set,\n get: get,\n has: has,\n enforce: enforce,\n getterFor: getterFor\n};\n","var global = require('../internals/global');\nvar inspectSource = require('../internals/inspect-source');\n\nvar WeakMap = global.WeakMap;\n\nmodule.exports = typeof WeakMap === 'function' && /native code/.test(inspectSource(WeakMap));\n","var shared = require('../internals/shared');\nvar uid = require('../internals/uid');\n\nvar keys = shared('keys');\n\nmodule.exports = function (key) {\n return keys[key] || (keys[key] = uid(key));\n};\n","var IS_PURE = require('../internals/is-pure');\nvar store = require('../internals/shared-store');\n\n(module.exports = function (key, value) {\n return store[key] || (store[key] = value !== undefined ? value : {});\n})('versions', []).push({\n version: '3.5.0',\n mode: IS_PURE ? 'pure' : 'global',\n copyright: '© 2019 Denis Pushkarev (zloirock.ru)'\n});\n","module.exports = false;\n","var id = 0;\nvar postfix = Math.random();\n\nmodule.exports = function (key) {\n return 'Symbol(' + String(key === undefined ? '' : key) + ')_' + (++id + postfix).toString(36);\n};\n","var has = require('../internals/has');\nvar ownKeys = require('../internals/own-keys');\nvar getOwnPropertyDescriptorModule = require('../internals/object-get-own-property-descriptor');\nvar definePropertyModule = require('../internals/object-define-property');\n\nmodule.exports = function (target, source) {\n var keys = ownKeys(source);\n var defineProperty = definePropertyModule.f;\n var getOwnPropertyDescriptor = getOwnPropertyDescriptorModule.f;\n for (var i = 0; i < keys.length; i++) {\n var key = keys[i];\n if (!has(target, key)) defineProperty(target, key, getOwnPropertyDescriptor(source, key));\n }\n};\n","var getBuiltIn = require('../internals/get-built-in');\nvar getOwnPropertyNamesModule = require('../internals/object-get-own-property-names');\nvar getOwnPropertySymbolsModule = require('../internals/object-get-own-property-symbols');\nvar anObject = require('../internals/an-object');\n\n// all object keys, includes non-enumerable and symbols\nmodule.exports = getBuiltIn('Reflect', 'ownKeys') || function ownKeys(it) {\n var keys = getOwnPropertyNamesModule.f(anObject(it));\n var getOwnPropertySymbols = getOwnPropertySymbolsModule.f;\n return getOwnPropertySymbols ? keys.concat(getOwnPropertySymbols(it)) : keys;\n};\n","var path = require('../internals/path');\nvar global = require('../internals/global');\n\nvar aFunction = function (variable) {\n return typeof variable == 'function' ? variable : undefined;\n};\n\nmodule.exports = function (namespace, method) {\n return arguments.length < 2 ? aFunction(path[namespace]) || aFunction(global[namespace])\n : path[namespace] && path[namespace][method] || global[namespace] && global[namespace][method];\n};\n","var global = require('../internals/global');\n\nmodule.exports = global;\n","var internalObjectKeys = require('../internals/object-keys-internal');\nvar enumBugKeys = require('../internals/enum-bug-keys');\n\nvar hiddenKeys = enumBugKeys.concat('length', 'prototype');\n\n// `Object.getOwnPropertyNames` method\n// https://tc39.github.io/ecma262/#sec-object.getownpropertynames\nexports.f = Object.getOwnPropertyNames || function getOwnPropertyNames(O) {\n return internalObjectKeys(O, hiddenKeys);\n};\n","var toIndexedObject = require('../internals/to-indexed-object');\nvar toLength = require('../internals/to-length');\nvar toAbsoluteIndex = require('../internals/to-absolute-index');\n\n// `Array.prototype.{ indexOf, includes }` methods implementation\nvar createMethod = function (IS_INCLUDES) {\n return function ($this, el, fromIndex) {\n var O = toIndexedObject($this);\n var length = toLength(O.length);\n var index = toAbsoluteIndex(fromIndex, length);\n var value;\n // Array#includes uses SameValueZero equality algorithm\n // eslint-disable-next-line no-self-compare\n if (IS_INCLUDES && el != el) while (length > index) {\n value = O[index++];\n // eslint-disable-next-line no-self-compare\n if (value != value) return true;\n // Array#indexOf ignores holes, Array#includes - not\n } else for (;length > index; index++) {\n if ((IS_INCLUDES || index in O) && O[index] === el) return IS_INCLUDES || index || 0;\n } return !IS_INCLUDES && -1;\n };\n};\n\nmodule.exports = {\n // `Array.prototype.includes` method\n // https://tc39.github.io/ecma262/#sec-array.prototype.includes\n includes: createMethod(true),\n // `Array.prototype.indexOf` method\n // https://tc39.github.io/ecma262/#sec-array.prototype.indexof\n indexOf: createMethod(false)\n};\n","var toInteger = require('../internals/to-integer');\n\nvar min = Math.min;\n\n// `ToLength` abstract operation\n// https://tc39.github.io/ecma262/#sec-tolength\nmodule.exports = function (argument) {\n return argument > 0 ? min(toInteger(argument), 0x1FFFFFFFFFFFFF) : 0; // 2 ** 53 - 1 == 9007199254740991\n};\n","var toInteger = require('../internals/to-integer');\n\nvar max = Math.max;\nvar min = Math.min;\n\n// Helper for a popular repeating case of the spec:\n// Let integer be ? ToInteger(index).\n// If integer < 0, let result be max((length + integer), 0); else let result be min(integer, length).\nmodule.exports = function (index, length) {\n var integer = toInteger(index);\n return integer < 0 ? max(integer + length, 0) : min(integer, length);\n};\n","var fails = require('../internals/fails');\n\nvar replacement = /#|\\.prototype\\./;\n\nvar isForced = function (feature, detection) {\n var value = data[normalize(feature)];\n return value == POLYFILL ? true\n : value == NATIVE ? false\n : typeof detection == 'function' ? fails(detection)\n : !!detection;\n};\n\nvar normalize = isForced.normalize = function (string) {\n return String(string).replace(replacement, '.').toLowerCase();\n};\n\nvar data = isForced.data = {};\nvar NATIVE = isForced.NATIVE = 'N';\nvar POLYFILL = isForced.POLYFILL = 'P';\n\nmodule.exports = isForced;\n","'use strict';\nvar DESCRIPTORS = require('../internals/descriptors');\nvar fails = require('../internals/fails');\nvar objectKeys = require('../internals/object-keys');\nvar getOwnPropertySymbolsModule = require('../internals/object-get-own-property-symbols');\nvar propertyIsEnumerableModule = require('../internals/object-property-is-enumerable');\nvar toObject = require('../internals/to-object');\nvar IndexedObject = require('../internals/indexed-object');\n\nvar nativeAssign = Object.assign;\nvar defineProperty = Object.defineProperty;\n\n// `Object.assign` method\n// https://tc39.github.io/ecma262/#sec-object.assign\nmodule.exports = !nativeAssign || fails(function () {\n // should have correct order of operations (Edge bug)\n if (DESCRIPTORS && nativeAssign({ b: 1 }, nativeAssign(defineProperty({}, 'a', {\n enumerable: true,\n get: function () {\n defineProperty(this, 'b', {\n value: 3,\n enumerable: false\n });\n }\n }), { b: 2 })).b !== 1) return true;\n // should work with symbols and should have deterministic property order (V8 bug)\n var A = {};\n var B = {};\n // eslint-disable-next-line no-undef\n var symbol = Symbol();\n var alphabet = 'abcdefghijklmnopqrst';\n A[symbol] = 7;\n alphabet.split('').forEach(function (chr) { B[chr] = chr; });\n return nativeAssign({}, A)[symbol] != 7 || objectKeys(nativeAssign({}, B)).join('') != alphabet;\n}) ? function assign(target, source) { // eslint-disable-line no-unused-vars\n var T = toObject(target);\n var argumentsLength = arguments.length;\n var index = 1;\n var getOwnPropertySymbols = getOwnPropertySymbolsModule.f;\n var propertyIsEnumerable = propertyIsEnumerableModule.f;\n while (argumentsLength > index) {\n var S = IndexedObject(arguments[index++]);\n var keys = getOwnPropertySymbols ? objectKeys(S).concat(getOwnPropertySymbols(S)) : objectKeys(S);\n var length = keys.length;\n var j = 0;\n var key;\n while (length > j) {\n key = keys[j++];\n if (!DESCRIPTORS || propertyIsEnumerable.call(S, key)) T[key] = S[key];\n }\n } return T;\n} : nativeAssign;\n","var internalObjectKeys = require('../internals/object-keys-internal');\nvar enumBugKeys = require('../internals/enum-bug-keys');\n\n// `Object.keys` method\n// https://tc39.github.io/ecma262/#sec-object.keys\nmodule.exports = Object.keys || function keys(O) {\n return internalObjectKeys(O, enumBugKeys);\n};\n","var requireObjectCoercible = require('../internals/require-object-coercible');\n\n// `ToObject` abstract operation\n// https://tc39.github.io/ecma262/#sec-toobject\nmodule.exports = function (argument) {\n return Object(requireObjectCoercible(argument));\n};\n","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.LogLevel = void 0;\nvar LogLevel;\nexports.LogLevel = LogLevel;\n\n(function (LogLevel) {\n LogLevel[\"Debug\"] = \"DEBUG\";\n LogLevel[\"Info\"] = \"INFO\";\n LogLevel[\"Warn\"] = \"WARN\";\n LogLevel[\"Error\"] = \"ERROR\";\n LogLevel[\"Fatal\"] = \"FATAL\";\n})(LogLevel || (exports.LogLevel = LogLevel = {}));\n//# sourceMappingURL=contracts.js.map","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.LoggerBuilder = void 0;\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nfunction _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }\n\nfunction _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }\n\nvar LoggerBuilder =\n/*#__PURE__*/\nfunction () {\n function LoggerBuilder(factory) {\n _classCallCheck(this, LoggerBuilder);\n\n this.context = {};\n this.factory = factory;\n }\n\n _createClass(LoggerBuilder, [{\n key: \"setApp\",\n value: function setApp(appId) {\n this.context.app = appId;\n return this;\n }\n }, {\n key: \"setUid\",\n value: function setUid(uid) {\n this.context.uid = uid;\n return this;\n }\n }, {\n key: \"build\",\n value: function build() {\n return this.factory(this.context);\n }\n }]);\n\n return LoggerBuilder;\n}();\n\nexports.LoggerBuilder = LoggerBuilder;\n//# sourceMappingURL=Builder.js.map","'use strict';\n\nconst pTry = (fn, ...arguments_) => new Promise(resolve => {\n\tresolve(fn(...arguments_));\n});\n\nmodule.exports = pTry;\n// TODO: remove this in the next major version\nmodule.exports.default = pTry;\n","import mod from \"-!../../../../node_modules/vue-style-loader/index.js!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./RecommendedApps.vue?vue&type=style&index=0&id=2dd1bdfa&lang=scss&scoped=true&\"; export default mod; export * from \"-!../../../../node_modules/vue-style-loader/index.js!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./RecommendedApps.vue?vue&type=style&index=0&id=2dd1bdfa&lang=scss&scoped=true&\"","// Imports\nvar ___CSS_LOADER_API_IMPORT___ = require(\"../../../../node_modules/css-loader/dist/runtime/api.js\");\nexports = ___CSS_LOADER_API_IMPORT___(false);\n// Module\nexports.push([module.id, \".body-login-container[data-v-2dd1bdfa]{max-width:290px}p.loading[data-v-2dd1bdfa],p.loading-error[data-v-2dd1bdfa]{height:100px}.text-center[data-v-2dd1bdfa]{text-align:center}.app[data-v-2dd1bdfa]{display:flex;flex-direction:row}.app img[data-v-2dd1bdfa]{height:50px;width:50px;filter:invert(1)}.app img[data-v-2dd1bdfa],.app .info[data-v-2dd1bdfa]{padding:12px}.app .info h3[data-v-2dd1bdfa],.app .info p[data-v-2dd1bdfa]{text-align:left}.app .info h3[data-v-2dd1bdfa]{color:#fff;margin-top:0}.app .info h3>span.icon[data-v-2dd1bdfa]{display:inline-block}\\n\", \"\"]);\n// Exports\nmodule.exports = exports;\n","/*\n * @copyright 2019 Christoph Wurst <christoph@winzerhof-wurst.at>\n *\n * @author 2019 Christoph Wurst <christoph@winzerhof-wurst.at>\n *\n * @license GNU AGPL version 3 or any later version\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n */\n\nimport { getCurrentUser } from '@nextcloud/auth'\nimport { getLoggerBuilder } from '@nextcloud/logger'\n\nconst getLogger = user => {\n\tif (user === null) {\n\t\treturn getLoggerBuilder()\n\t\t\t.setApp('core')\n\t\t\t.build()\n\t}\n\treturn getLoggerBuilder()\n\t\t.setApp('core')\n\t\t.setUid(user.uid)\n\t\t.build()\n}\n\nexport default getLogger(getCurrentUser())\n","<!--\n - @copyright 2019 Christoph Wurst <christoph@winzerhof-wurst.at>\n -\n - @author 2019 Christoph Wurst <christoph@winzerhof-wurst.at>\n -\n - @license GNU AGPL version 3 or any later version\n -\n - This program is free software: you can redistribute it and/or modify\n - it under the terms of the GNU Affero General Public License as\n - published by the Free Software Foundation, either version 3 of the\n - License, or (at your option) any later version.\n -\n - This program is distributed in the hope that it will be useful,\n - but WITHOUT ANY WARRANTY; without even the implied warranty of\n - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n - GNU Affero General Public License for more details.\n -\n - You should have received a copy of the GNU Affero General Public License\n - along with this program. If not, see <http://www.gnu.org/licenses/>.\n -->\n\n<template>\n\t<div class=\"body-login-container\">\n\t\t<h2>{{ t('core', 'Recommended apps') }}</h2>\n\t\t<p v-if=\"loadingApps\" class=\"loading text-center\">\n\t\t\t{{ t('core', 'Loading apps …') }}\n\t\t</p>\n\t\t<p v-else-if=\"loadingAppsError\" class=\"loading-error text-center\">\n\t\t\t{{ t('core', 'Could not fetch list of apps from the app store.') }}\n\t\t</p>\n\t\t<p v-else class=\"text-center\">\n\t\t\t{{ t('core', 'Installing apps …') }}\n\t\t</p>\n\t\t<div v-for=\"app in recommendedApps\" :key=\"app.id\" class=\"app\">\n\t\t\t<img :src=\"customIcon(app.id)\" :alt=\"t('core', 'Nextcloud {app}', { app: app.name })\">\n\t\t\t<div class=\"info\">\n\t\t\t\t<h3>\n\t\t\t\t\t{{ app.name }}\n\t\t\t\t\t<span v-if=\"app.loading\" class=\"icon icon-loading-small\" />\n\t\t\t\t\t<span v-else-if=\"app.active\" class=\"icon icon-checkmark-white\" />\n\t\t\t\t</h3>\n\t\t\t\t<p v-html=\"customDescription(app.id)\" />\n\t\t\t\t<p v-if=\"app.installationError\">\n\t\t\t\t\t<strong>{{ t('core', 'App download or installation failed') }}</strong>\n\t\t\t\t</p>\n\t\t\t\t<p v-else-if=\"!app.isCompatible\">\n\t\t\t\t\t<strong>{{ t('core', 'Can\\'t install this app because it is not compatible') }}</strong>\n\t\t\t\t</p>\n\t\t\t\t<p v-else-if=\"!app.canInstall\">\n\t\t\t\t\t<strong>{{ t('core', 'Can\\'t install this app') }}</strong>\n\t\t\t\t</p>\n\t\t\t</div>\n\t\t</div>\n\t\t<p class=\"text-center\">\n\t\t\t<a :href=\"defaultPageUrl\">{{ t('core', 'Cancel') }}</a>\n\t\t</p>\n\t</div>\n</template>\n\n<script>\nimport axios from '@nextcloud/axios'\nimport { generateUrl, imagePath } from '@nextcloud/router'\nimport { loadState } from '@nextcloud/initial-state'\nimport pLimit from 'p-limit'\nimport { translate as t } from '@nextcloud/l10n'\n\nimport logger from '../../logger'\n\nconst recommended = {\n\tcalendar: {\n\t\tdescription: t('core', 'Schedule work & meetings, synced with all your devices.'),\n\t\ticon: imagePath('core', 'places/calendar.svg'),\n\t},\n\tcontacts: {\n\t\tdescription: t('core', 'Keep your colleagues and friends in one place without leaking their private info.'),\n\t\ticon: imagePath('core', 'places/contacts.svg'),\n\t},\n\tmail: {\n\t\tdescription: t('core', 'Simple email app nicely integrated with Files, Contacts and Calendar.'),\n\t\ticon: imagePath('core', 'actions/mail.svg'),\n\t},\n\ttalk: {\n\t\tdescription: t('core', 'Screensharing, online meetings and web conferencing – on desktop and with mobile apps.'),\n\t},\n\tonlyoffice: {\n\t\tdescription: t('core', 'Collaboratively edit office documents.'),\n\t},\n\tdocumentserver_community: {\n\t\tdescription: t('core', 'Local document editing back-end used by the OnlyOffice app.'),\n\t},\n}\nconst recommendedIds = Object.keys(recommended)\nconst defaultPageUrl = loadState('core', 'defaultPageUrl')\n\nexport default {\n\tname: 'RecommendedApps',\n\tdata() {\n\t\treturn {\n\t\t\tloadingApps: true,\n\t\t\tloadingAppsError: false,\n\t\t\tapps: [],\n\t\t\tdefaultPageUrl,\n\t\t}\n\t},\n\tcomputed: {\n\t\trecommendedApps() {\n\t\t\treturn this.apps.filter(app => recommendedIds.includes(app.id))\n\t\t},\n\t},\n\tmounted() {\n\t\treturn axios.get(generateUrl('settings/apps/list'))\n\t\t\t.then(resp => resp.data)\n\t\t\t.then(data => {\n\t\t\t\tlogger.info(`${data.apps.length} apps fetched`)\n\n\t\t\t\tthis.apps = data.apps.map(app => Object.assign(app, { loading: false, installationError: false }))\n\t\t\t\tlogger.debug(`${this.recommendedApps.length} recommended apps found`, { apps: this.recommendedApps })\n\n\t\t\t\tthis.installApps()\n\t\t\t})\n\t\t\t.catch(error => {\n\t\t\t\tlogger.error('could not fetch app list', { error })\n\n\t\t\t\tthis.loadingAppsError = true\n\t\t\t})\n\t\t\t.then(() => {\n\t\t\t\tthis.loadingApps = false\n\t\t\t})\n\t},\n\tmethods: {\n\t\tinstallApps() {\n\t\t\tconst limit = pLimit(1)\n\t\t\tconst installing = this.recommendedApps\n\t\t\t\t.filter(app => !app.active && app.isCompatible && app.canInstall)\n\t\t\t\t.map(app => limit(() => {\n\t\t\t\t\tlogger.info(`installing ${app.id}`)\n\t\t\t\t\tapp.loading = true\n\t\t\t\t\treturn axios.post(generateUrl(`settings/apps/enable`), { appIds: [app.id], groups: [] })\n\t\t\t\t\t\t.catch(error => {\n\t\t\t\t\t\t\tlogger.error(`could not install ${app.id}`, { error })\n\t\t\t\t\t\t\tapp.installationError = true\n\t\t\t\t\t\t})\n\t\t\t\t\t\t.then(() => {\n\t\t\t\t\t\t\tlogger.info(`installed ${app.id}`)\n\t\t\t\t\t\t\tapp.loading = false\n\t\t\t\t\t\t})\n\t\t\t\t}))\n\t\t\tlogger.debug(`installing ${installing.length} recommended apps`)\n\t\t\tPromise.all(installing)\n\t\t\t\t.then(() => {\n\t\t\t\t\tlogger.info('all recommended apps installed, redirecting …')\n\n\t\t\t\t\twindow.location = defaultPageUrl\n\t\t\t\t})\n\t\t\t\t.catch(error => logger.error('could not install recommended apps', { error }))\n\t\t},\n\t\tcustomIcon(appId) {\n\t\t\tif (!(appId in recommended)) {\n\t\t\t\tlogger.warn(`no app icon for recommended app ${appId}`)\n\t\t\t\treturn imagePath('core', 'places/default-app-icon.svg')\n\t\t\t}\n\t\t\treturn recommended[appId].icon\n\t\t},\n\t\tcustomDescription(appId) {\n\t\t\tif (!(appId in recommended)) {\n\t\t\t\tlogger.warn(`no app description for recommended app ${appId}`)\n\t\t\t\treturn ''\n\t\t\t}\n\t\t\treturn recommended[appId].description\n\t\t},\n\t},\n}\n</script>\n\n<style lang=\"scss\" scoped>\n.body-login-container {\n\tmax-width: 290px;\n}\n\np.loading, p.loading-error {\n\theight: 100px;\n}\n\n.text-center {\n\ttext-align: center;\n}\n\n.app {\n\tdisplay: flex;\n\tflex-direction: row;\n\n\timg {\n\t\theight: 50px;\n\t\twidth: 50px;\n\t\tfilter: invert(1);\n\t}\n\n\timg, .info {\n\t\tpadding: 12px;\n\t}\n\n\t.info {\n\t\th3, p {\n\t\t\ttext-align: left;\n\t\t}\n\n\t\th3 {\n\t\t\tcolor: #fff;\n\t\t\tmargin-top: 0;\n\t\t}\n\n\t\th3 > span.icon {\n\t\t\tdisplay: inline-block;\n\t\t}\n\t}\n}\n</style>\n","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./RecommendedApps.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./RecommendedApps.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./RecommendedApps.vue?vue&type=template&id=2dd1bdfa&scoped=true&\"\nimport script from \"./RecommendedApps.vue?vue&type=script&lang=js&\"\nexport * from \"./RecommendedApps.vue?vue&type=script&lang=js&\"\nimport style0 from \"./RecommendedApps.vue?vue&type=style&index=0&id=2dd1bdfa&lang=scss&scoped=true&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n \"2dd1bdfa\",\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:\"body-login-container\"},[_c('h2',[_vm._v(_vm._s(_vm.t('core', 'Recommended apps')))]),_vm._v(\" \"),(_vm.loadingApps)?_c('p',{staticClass:\"loading text-center\"},[_vm._v(\"\\n\\t\\t\"+_vm._s(_vm.t('core', 'Loading apps …'))+\"\\n\\t\")]):(_vm.loadingAppsError)?_c('p',{staticClass:\"loading-error text-center\"},[_vm._v(\"\\n\\t\\t\"+_vm._s(_vm.t('core', 'Could not fetch list of apps from the app store.'))+\"\\n\\t\")]):_c('p',{staticClass:\"text-center\"},[_vm._v(\"\\n\\t\\t\"+_vm._s(_vm.t('core', 'Installing apps …'))+\"\\n\\t\")]),_vm._v(\" \"),_vm._l((_vm.recommendedApps),function(app){return _c('div',{key:app.id,staticClass:\"app\"},[_c('img',{attrs:{\"src\":_vm.customIcon(app.id),\"alt\":_vm.t('core', 'Nextcloud {app}', { app: app.name })}}),_vm._v(\" \"),_c('div',{staticClass:\"info\"},[_c('h3',[_vm._v(\"\\n\\t\\t\\t\\t\"+_vm._s(app.name)+\"\\n\\t\\t\\t\\t\"),(app.loading)?_c('span',{staticClass:\"icon icon-loading-small\"}):(app.active)?_c('span',{staticClass:\"icon icon-checkmark-white\"}):_vm._e()]),_vm._v(\" \"),_c('p',{domProps:{\"innerHTML\":_vm._s(_vm.customDescription(app.id))}}),_vm._v(\" \"),(app.installationError)?_c('p',[_c('strong',[_vm._v(_vm._s(_vm.t('core', 'App download or installation failed')))])]):(!app.isCompatible)?_c('p',[_c('strong',[_vm._v(_vm._s(_vm.t('core', 'Can\\'t install this app because it is not compatible')))])]):(!app.canInstall)?_c('p',[_c('strong',[_vm._v(_vm._s(_vm.t('core', 'Can\\'t install this app')))])]):_vm._e()])])}),_vm._v(\" \"),_c('p',{staticClass:\"text-center\"},[_c('a',{attrs:{\"href\":_vm.defaultPageUrl}},[_vm._v(_vm._s(_vm.t('core', 'Cancel')))])])],2)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","/*\n * @copyright 2019 Christoph Wurst <christoph@winzerhof-wurst.at>\n *\n * @author 2019 Christoph Wurst <christoph@winzerhof-wurst.at>\n *\n * @license GNU AGPL version 3 or any later version\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n */\n\nimport { getRequestToken } from '@nextcloud/auth'\nimport { generateFilePath } from '@nextcloud/router'\nimport { translate as t } from '@nextcloud/l10n'\nimport Vue from 'vue'\n\nimport logger from './logger'\nimport RecommendedApps from './components/setup/RecommendedApps'\n\n// eslint-disable-next-line camelcase\n__webpack_nonce__ = btoa(getRequestToken())\n// eslint-disable-next-line camelcase\n__webpack_public_path__ = generateFilePath('core', '', 'js/')\n\nVue.mixin({\n\tmethods: {\n\t\tt,\n\t},\n})\n\nconst View = Vue.extend(RecommendedApps)\nnew View().$mount('#recommended-apps')\n\nlogger.debug('recommended apps view rendered')\n"],"sourceRoot":""} \ No newline at end of file
+{"version":3,"sources":["webpack:///webpack/bootstrap","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/global.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/well-known-symbol.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/fails.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/has.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/global.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/well-known-symbol.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/is-object.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/fails.js","webpack:///./node_modules/@nextcloud/axios/node_modules/axios/lib/utils.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/object-define-property.js","webpack:///(webpack)/buildin/global.js","webpack:///./node_modules/@nextcloud/initial-state/node_modules/core-js/internals/global.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/descriptors.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/create-non-enumerable-property.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/has.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/is-object.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/an-object.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/descriptors.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/object-define-property.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/create-non-enumerable-property.js","webpack:///./node_modules/@nextcloud/initial-state/node_modules/core-js/internals/fails.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/redefine.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/iterators.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/an-object.js","webpack:///./node_modules/@nextcloud/initial-state/node_modules/core-js/internals/is-object.js","webpack:///./node_modules/@nextcloud/initial-state/node_modules/core-js/internals/has.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/export.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/create-property-descriptor.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/to-indexed-object.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/internal-state.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/hidden-keys.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/get-built-in.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/to-length.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/export.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/redefine.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/iterators.js","webpack:///./node_modules/@nextcloud/event-bus/dist/index.js","webpack:///./node_modules/process/browser.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/classof-raw.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/require-object-coercible.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/to-primitive.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/set-global.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/shared-key.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/is-pure.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/uid.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/to-integer.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/enum-bug-keys.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/to-object.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/function-bind-context.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/object-create.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/define-iterator.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/set-to-string-tag.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/to-string-tag-support.js","webpack:///./node_modules/@nextcloud/initial-state/node_modules/core-js/internals/descriptors.js","webpack:///./node_modules/@nextcloud/initial-state/node_modules/core-js/internals/create-non-enumerable-property.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/create-property-descriptor.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/to-indexed-object.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/internal-state.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/hidden-keys.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/get-built-in.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/to-length.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/to-object.js","webpack:///./node_modules/css-loader/dist/runtime/api.js","webpack:///./node_modules/vue-style-loader/lib/listToStyles.js","webpack:///./node_modules/vue-style-loader/lib/addStylesClient.js","webpack:///./node_modules/@nextcloud/initial-state/node_modules/core-js/internals/create-property-descriptor.js","webpack:///./node_modules/@nextcloud/initial-state/node_modules/core-js/internals/to-indexed-object.js","webpack:///./node_modules/@nextcloud/initial-state/node_modules/core-js/internals/to-primitive.js","webpack:///./node_modules/@nextcloud/initial-state/node_modules/core-js/internals/object-define-property.js","webpack:///./node_modules/@nextcloud/initial-state/node_modules/core-js/internals/set-global.js","webpack:///./node_modules/@nextcloud/initial-state/node_modules/core-js/internals/well-known-symbol.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/object-get-own-property-descriptor.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/indexed-object.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/ie8-dom-define.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/document-create-element.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/inspect-source.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/shared-store.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/shared.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/object-keys-internal.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/is-forced.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/is-array.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/array-species-create.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/native-symbol.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/array-method-has-species-support.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/engine-v8-version.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/array-iteration.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/array-method-uses-to-length.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/modules/es.array.iterator.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/iterators-core.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/object-get-prototype-of.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/object-set-prototype-of.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/internal-metadata.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/iterate.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/classof.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/an-instance.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/dom-iterables.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/indexed-object.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/classof-raw.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/require-object-coercible.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/to-primitive.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/set-global.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/shared-key.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/is-pure.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/uid.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/to-integer.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/enum-bug-keys.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/function-bind-context.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/object-create.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/define-iterator.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/set-to-string-tag.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/to-string-tag-support.js","webpack:///./node_modules/vue-loader/lib/runtime/componentNormalizer.js","webpack:///./node_modules/@nextcloud/axios/dist/index.js","webpack:///./node_modules/@nextcloud/router/node_modules/core-js/internals/global.js","webpack:///./node_modules/@nextcloud/router/node_modules/core-js/internals/fails.js","webpack:///./node_modules/@nextcloud/logger/node_modules/core-js/internals/global.js","webpack:///./node_modules/@nextcloud/router/dist/index.js","webpack:///./node_modules/@nextcloud/l10n/dist/index.js","webpack:///./node_modules/@nextcloud/initial-state/node_modules/core-js/internals/object-get-own-property-descriptor.js","webpack:///./node_modules/@nextcloud/initial-state/node_modules/core-js/internals/classof-raw.js","webpack:///./node_modules/@nextcloud/initial-state/node_modules/core-js/internals/require-object-coercible.js","webpack:///./node_modules/@nextcloud/initial-state/node_modules/core-js/internals/ie8-dom-define.js","webpack:///./node_modules/@nextcloud/initial-state/node_modules/core-js/internals/an-object.js","webpack:///./node_modules/@nextcloud/initial-state/node_modules/core-js/internals/inspect-source.js","webpack:///./node_modules/@nextcloud/initial-state/node_modules/core-js/internals/shared-store.js","webpack:///./node_modules/@nextcloud/initial-state/node_modules/core-js/internals/shared.js","webpack:///./node_modules/@nextcloud/initial-state/node_modules/core-js/internals/uid.js","webpack:///./node_modules/@nextcloud/initial-state/node_modules/core-js/internals/hidden-keys.js","webpack:///./node_modules/@nextcloud/initial-state/node_modules/core-js/internals/get-built-in.js","webpack:///./node_modules/@nextcloud/initial-state/node_modules/core-js/internals/to-length.js","webpack:///./node_modules/@nextcloud/initial-state/node_modules/core-js/internals/to-integer.js","webpack:///./node_modules/@nextcloud/initial-state/node_modules/core-js/internals/is-array.js","webpack:///./node_modules/@nextcloud/initial-state/node_modules/core-js/internals/native-symbol.js","webpack:///./node_modules/@nextcloud/initial-state/node_modules/core-js/internals/v8-version.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/object-get-own-property-descriptor.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/object-property-is-enumerable.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/ie8-dom-define.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/document-create-element.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/inspect-source.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/shared-store.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/shared.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/object-keys-internal.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/object-get-own-property-symbols.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/is-forced.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/object-keys.js","webpack:///./node_modules/@nextcloud/axios/node_modules/axios/lib/helpers/bind.js","webpack:///./node_modules/@nextcloud/axios/node_modules/axios/lib/helpers/buildURL.js","webpack:///./node_modules/@nextcloud/axios/node_modules/axios/lib/cancel/isCancel.js","webpack:///./node_modules/@nextcloud/axios/node_modules/axios/lib/defaults.js","webpack:///./node_modules/@nextcloud/axios/node_modules/axios/lib/adapters/xhr.js","webpack:///./node_modules/@nextcloud/axios/node_modules/axios/lib/core/createError.js","webpack:///./node_modules/@nextcloud/axios/node_modules/axios/lib/core/mergeConfig.js","webpack:///./node_modules/@nextcloud/axios/node_modules/axios/lib/cancel/Cancel.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/is-array.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/array-species-create.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/native-symbol.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/array-method-has-species-support.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/engine-v8-version.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/array-iteration.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/array-method-uses-to-length.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/modules/es.array.iterator.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/iterators-core.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/object-get-prototype-of.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/object-set-prototype-of.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/internal-metadata.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/iterate.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/classof.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/an-instance.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/dom-iterables.js","webpack:///./node_modules/@nextcloud/initial-state/dist/index.js","webpack:///./node_modules/@nextcloud/event-bus/dist/ProxyBus.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/semver/semver.js","webpack:///./node_modules/@nextcloud/event-bus/dist/SimpleBus.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/modules/es.array.concat.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/object-property-is-enumerable.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/native-weak-map.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/copy-constructor-properties.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/own-keys.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/path.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/object-get-own-property-names.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/array-includes.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/to-absolute-index.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/object-get-own-property-symbols.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/create-property.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/use-symbol-as-uid.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/engine-user-agent.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/modules/es.array.filter.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/a-function.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/add-to-unscopables.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/object-define-properties.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/object-keys.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/html.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/create-iterator-constructor.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/correct-prototype-getter.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/a-possible-prototype.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/modules/es.map.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/collection.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/freezing.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/is-array-iterator-method.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/get-iterator-method.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/call-with-safe-iteration-closing.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/check-correctness-of-iteration.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/inherit-if-required.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/collection-strong.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/redefine-all.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/set-species.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/modules/es.object.to-string.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/object-to-string.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/modules/es.string.iterator.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/string-multibyte.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/modules/web.dom-collections.for-each.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/array-for-each.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/internals/array-method-is-strict.js","webpack:///./node_modules/@nextcloud/event-bus/node_modules/core-js/modules/web.dom-collections.iterator.js","webpack:///./node_modules/vue/dist/vue.runtime.esm.js","webpack:///./node_modules/@nextcloud/router/node_modules/core-js/internals/has.js","webpack:///./node_modules/@nextcloud/initial-state/node_modules/core-js/modules/es.array.concat.js","webpack:///./node_modules/@nextcloud/initial-state/node_modules/core-js/internals/export.js","webpack:///./node_modules/@nextcloud/initial-state/node_modules/core-js/internals/object-property-is-enumerable.js","webpack:///./node_modules/@nextcloud/initial-state/node_modules/core-js/internals/indexed-object.js","webpack:///./node_modules/@nextcloud/initial-state/node_modules/core-js/internals/document-create-element.js","webpack:///./node_modules/@nextcloud/initial-state/node_modules/core-js/internals/redefine.js","webpack:///./node_modules/@nextcloud/initial-state/node_modules/core-js/internals/internal-state.js","webpack:///./node_modules/@nextcloud/initial-state/node_modules/core-js/internals/native-weak-map.js","webpack:///./node_modules/@nextcloud/initial-state/node_modules/core-js/internals/shared-key.js","webpack:///./node_modules/@nextcloud/initial-state/node_modules/core-js/internals/is-pure.js","webpack:///./node_modules/@nextcloud/initial-state/node_modules/core-js/internals/copy-constructor-properties.js","webpack:///./node_modules/@nextcloud/initial-state/node_modules/core-js/internals/own-keys.js","webpack:///./node_modules/@nextcloud/initial-state/node_modules/core-js/internals/path.js","webpack:///./node_modules/@nextcloud/initial-state/node_modules/core-js/internals/object-get-own-property-names.js","webpack:///./node_modules/@nextcloud/initial-state/node_modules/core-js/internals/object-keys-internal.js","webpack:///./node_modules/@nextcloud/initial-state/node_modules/core-js/internals/array-includes.js","webpack:///./node_modules/@nextcloud/initial-state/node_modules/core-js/internals/to-absolute-index.js","webpack:///./node_modules/@nextcloud/initial-state/node_modules/core-js/internals/enum-bug-keys.js","webpack:///./node_modules/@nextcloud/initial-state/node_modules/core-js/internals/object-get-own-property-symbols.js","webpack:///./node_modules/@nextcloud/initial-state/node_modules/core-js/internals/is-forced.js","webpack:///./node_modules/@nextcloud/initial-state/node_modules/core-js/internals/to-object.js","webpack:///./node_modules/@nextcloud/initial-state/node_modules/core-js/internals/create-property.js","webpack:///./node_modules/@nextcloud/initial-state/node_modules/core-js/internals/array-species-create.js","webpack:///./node_modules/@nextcloud/initial-state/node_modules/core-js/internals/use-symbol-as-uid.js","webpack:///./node_modules/@nextcloud/initial-state/node_modules/core-js/internals/array-method-has-species-support.js","webpack:///./node_modules/@nextcloud/initial-state/node_modules/core-js/internals/user-agent.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/modules/es.object.assign.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/native-weak-map.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/copy-constructor-properties.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/own-keys.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/path.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/object-get-own-property-names.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/array-includes.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/to-absolute-index.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/object-assign.js","webpack:///./node_modules/@nextcloud/axios/node_modules/axios/index.js","webpack:///./node_modules/@nextcloud/axios/node_modules/axios/lib/axios.js","webpack:///./node_modules/@nextcloud/axios/node_modules/axios/lib/core/Axios.js","webpack:///./node_modules/@nextcloud/axios/node_modules/axios/lib/core/InterceptorManager.js","webpack:///./node_modules/@nextcloud/axios/node_modules/axios/lib/core/dispatchRequest.js","webpack:///./node_modules/@nextcloud/axios/node_modules/axios/lib/core/transformData.js","webpack:///./node_modules/@nextcloud/axios/node_modules/axios/lib/helpers/normalizeHeaderName.js","webpack:///./node_modules/@nextcloud/axios/node_modules/axios/lib/core/settle.js","webpack:///./node_modules/@nextcloud/axios/node_modules/axios/lib/core/enhanceError.js","webpack:///./node_modules/@nextcloud/axios/node_modules/axios/lib/core/buildFullPath.js","webpack:///./node_modules/@nextcloud/axios/node_modules/axios/lib/helpers/isAbsoluteURL.js","webpack:///./node_modules/@nextcloud/axios/node_modules/axios/lib/helpers/combineURLs.js","webpack:///./node_modules/@nextcloud/axios/node_modules/axios/lib/helpers/parseHeaders.js","webpack:///./node_modules/@nextcloud/axios/node_modules/axios/lib/helpers/isURLSameOrigin.js","webpack:///./node_modules/@nextcloud/axios/node_modules/axios/lib/helpers/isValidXss.js","webpack:///./node_modules/@nextcloud/axios/node_modules/axios/lib/helpers/cookies.js","webpack:///./node_modules/@nextcloud/axios/node_modules/axios/lib/cancel/CancelToken.js","webpack:///./node_modules/@nextcloud/axios/node_modules/axios/lib/helpers/spread.js","webpack:///./node_modules/@nextcloud/axios/node_modules/@nextcloud/auth/dist/index.js","webpack:///./node_modules/@nextcloud/axios/node_modules/@nextcloud/auth/dist/requesttoken.js","webpack:///./node_modules/@nextcloud/axios/node_modules/@nextcloud/event-bus/dist/index.js","webpack:///./node_modules/@nextcloud/axios/node_modules/@nextcloud/event-bus/dist/ProxyBus.js","webpack:///./node_modules/@nextcloud/axios/node_modules/semver/semver.js","webpack:///./node_modules/@nextcloud/axios/node_modules/@nextcloud/event-bus/dist/SimpleBus.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/modules/es.array.concat.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/create-property.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/use-symbol-as-uid.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/engine-user-agent.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/modules/es.array.filter.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/a-function.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/add-to-unscopables.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/object-define-properties.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/html.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/create-iterator-constructor.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/correct-prototype-getter.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/a-possible-prototype.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/modules/es.map.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/collection.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/freezing.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/is-array-iterator-method.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/get-iterator-method.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/call-with-safe-iteration-closing.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/check-correctness-of-iteration.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/inherit-if-required.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/collection-strong.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/redefine-all.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/set-species.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/modules/es.object.to-string.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/object-to-string.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/modules/es.string.iterator.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/string-multibyte.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/modules/web.dom-collections.for-each.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/array-for-each.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/internals/array-method-is-strict.js","webpack:///./node_modules/@nextcloud/axios/node_modules/core-js/modules/web.dom-collections.iterator.js","webpack:///./node_modules/@nextcloud/axios/node_modules/@nextcloud/auth/dist/user.js","webpack:///./node_modules/@nextcloud/router/node_modules/core-js/internals/descriptors.js","webpack:///./node_modules/@nextcloud/router/node_modules/core-js/internals/create-non-enumerable-property.js","webpack:///./node_modules/@nextcloud/router/node_modules/core-js/internals/an-object.js","webpack:///./node_modules/@nextcloud/logger/node_modules/core-js/internals/descriptors.js","webpack:///./node_modules/@nextcloud/logger/node_modules/core-js/internals/fails.js","webpack:///./node_modules/@nextcloud/logger/node_modules/core-js/internals/has.js","webpack:///./node_modules/@nextcloud/router/node_modules/core-js/internals/require-object-coercible.js","webpack:///./node_modules/@nextcloud/router/node_modules/core-js/internals/is-object.js","webpack:///./node_modules/@nextcloud/router/node_modules/core-js/internals/redefine.js","webpack:///./node_modules/@nextcloud/router/node_modules/core-js/internals/to-integer.js","webpack:///./node_modules/@nextcloud/logger/node_modules/core-js/internals/is-object.js","webpack:///./node_modules/@nextcloud/logger/node_modules/core-js/internals/create-non-enumerable-property.js","webpack:///./core/src/components/setup/RecommendedApps.vue?4bed","webpack:///./node_modules/@nextcloud/auth/dist/index.js","webpack:///./node_modules/timers-browserify/main.js","webpack:///./node_modules/setimmediate/setImmediate.js","webpack:///./node_modules/@nextcloud/router/node_modules/core-js/internals/to-indexed-object.js","webpack:///./node_modules/@nextcloud/router/node_modules/core-js/internals/classof-raw.js","webpack:///./node_modules/@nextcloud/router/node_modules/core-js/internals/set-global.js","webpack:///./node_modules/@nextcloud/router/node_modules/core-js/internals/to-string-tag-support.js","webpack:///./node_modules/@nextcloud/router/node_modules/core-js/internals/well-known-symbol.js","webpack:///./node_modules/@nextcloud/logger/node_modules/core-js/internals/to-indexed-object.js","webpack:///./node_modules/@nextcloud/logger/node_modules/core-js/internals/set-global.js","webpack:///./node_modules/@nextcloud/logger/dist/index.js","webpack:///./node_modules/@nextcloud/router/node_modules/core-js/internals/export.js","webpack:///./node_modules/@nextcloud/router/node_modules/core-js/internals/object-get-own-property-descriptor.js","webpack:///./node_modules/@nextcloud/router/node_modules/core-js/internals/object-property-is-enumerable.js","webpack:///./node_modules/@nextcloud/router/node_modules/core-js/internals/create-property-descriptor.js","webpack:///./node_modules/@nextcloud/router/node_modules/core-js/internals/indexed-object.js","webpack:///./node_modules/@nextcloud/router/node_modules/core-js/internals/to-primitive.js","webpack:///./node_modules/@nextcloud/router/node_modules/core-js/internals/ie8-dom-define.js","webpack:///./node_modules/@nextcloud/router/node_modules/core-js/internals/object-define-property.js","webpack:///./node_modules/@nextcloud/router/node_modules/core-js/internals/inspect-source.js","webpack:///./node_modules/@nextcloud/router/node_modules/core-js/internals/shared-store.js","webpack:///./node_modules/@nextcloud/router/node_modules/core-js/internals/shared.js","webpack:///./node_modules/@nextcloud/router/node_modules/core-js/internals/uid.js","webpack:///./node_modules/@nextcloud/router/node_modules/core-js/internals/hidden-keys.js","webpack:///./node_modules/@nextcloud/router/node_modules/core-js/internals/object-keys-internal.js","webpack:///./node_modules/@nextcloud/router/node_modules/core-js/internals/array-includes.js","webpack:///./node_modules/@nextcloud/router/node_modules/core-js/internals/to-length.js","webpack:///./node_modules/@nextcloud/router/node_modules/core-js/internals/enum-bug-keys.js","webpack:///./node_modules/@nextcloud/router/node_modules/core-js/internals/object-get-own-property-symbols.js","webpack:///./node_modules/@nextcloud/router/node_modules/core-js/internals/to-object.js","webpack:///./node_modules/@nextcloud/router/node_modules/core-js/internals/native-symbol.js","webpack:///./node_modules/@nextcloud/router/node_modules/core-js/internals/regexp-flags.js","webpack:///./node_modules/@nextcloud/router/node_modules/core-js/internals/regexp-exec.js","webpack:///./node_modules/@nextcloud/logger/node_modules/core-js/internals/object-get-own-property-descriptor.js","webpack:///./node_modules/@nextcloud/logger/node_modules/core-js/internals/object-property-is-enumerable.js","webpack:///./node_modules/@nextcloud/logger/node_modules/core-js/internals/create-property-descriptor.js","webpack:///./node_modules/@nextcloud/logger/node_modules/core-js/internals/indexed-object.js","webpack:///./node_modules/@nextcloud/logger/node_modules/core-js/internals/require-object-coercible.js","webpack:///./node_modules/@nextcloud/logger/node_modules/core-js/internals/to-primitive.js","webpack:///./node_modules/@nextcloud/logger/node_modules/core-js/internals/ie8-dom-define.js","webpack:///./node_modules/@nextcloud/logger/node_modules/core-js/internals/object-define-property.js","webpack:///./node_modules/@nextcloud/logger/node_modules/core-js/internals/an-object.js","webpack:///./node_modules/@nextcloud/logger/node_modules/core-js/internals/inspect-source.js","webpack:///./node_modules/@nextcloud/logger/node_modules/core-js/internals/shared-store.js","webpack:///./node_modules/@nextcloud/logger/node_modules/core-js/internals/hidden-keys.js","webpack:///./node_modules/@nextcloud/logger/node_modules/core-js/internals/object-keys-internal.js","webpack:///./node_modules/@nextcloud/logger/node_modules/core-js/internals/to-integer.js","webpack:///./node_modules/@nextcloud/logger/node_modules/core-js/internals/enum-bug-keys.js","webpack:///./node_modules/@nextcloud/logger/node_modules/core-js/internals/object-get-own-property-symbols.js","webpack:///./node_modules/p-limit/index.js","webpack:///./node_modules/@nextcloud/auth/dist/requesttoken.js","webpack:///./node_modules/@nextcloud/auth/dist/user.js","webpack:///./node_modules/@nextcloud/router/node_modules/core-js/modules/es.array.index-of.js","webpack:///./node_modules/@nextcloud/router/node_modules/core-js/internals/document-create-element.js","webpack:///./node_modules/@nextcloud/router/node_modules/core-js/internals/internal-state.js","webpack:///./node_modules/@nextcloud/router/node_modules/core-js/internals/native-weak-map.js","webpack:///./node_modules/@nextcloud/router/node_modules/core-js/internals/shared-key.js","webpack:///./node_modules/@nextcloud/router/node_modules/core-js/internals/is-pure.js","webpack:///./node_modules/@nextcloud/router/node_modules/core-js/internals/copy-constructor-properties.js","webpack:///./node_modules/@nextcloud/router/node_modules/core-js/internals/own-keys.js","webpack:///./node_modules/@nextcloud/router/node_modules/core-js/internals/get-built-in.js","webpack:///./node_modules/@nextcloud/router/node_modules/core-js/internals/path.js","webpack:///./node_modules/@nextcloud/router/node_modules/core-js/internals/object-get-own-property-names.js","webpack:///./node_modules/@nextcloud/router/node_modules/core-js/internals/to-absolute-index.js","webpack:///./node_modules/@nextcloud/router/node_modules/core-js/internals/is-forced.js","webpack:///./node_modules/@nextcloud/router/node_modules/core-js/internals/sloppy-array-method.js","webpack:///./node_modules/@nextcloud/router/node_modules/core-js/modules/es.object.assign.js","webpack:///./node_modules/@nextcloud/router/node_modules/core-js/internals/object-assign.js","webpack:///./node_modules/@nextcloud/router/node_modules/core-js/internals/object-keys.js","webpack:///./node_modules/@nextcloud/router/node_modules/core-js/modules/es.object.to-string.js","webpack:///./node_modules/@nextcloud/router/node_modules/core-js/internals/use-symbol-as-uid.js","webpack:///./node_modules/@nextcloud/router/node_modules/core-js/internals/object-to-string.js","webpack:///./node_modules/@nextcloud/router/node_modules/core-js/internals/classof.js","webpack:///./node_modules/@nextcloud/router/node_modules/core-js/modules/es.regexp.to-string.js","webpack:///./node_modules/@nextcloud/router/node_modules/core-js/modules/es.string.replace.js","webpack:///./node_modules/@nextcloud/router/node_modules/core-js/internals/fix-regexp-well-known-symbol-logic.js","webpack:///./node_modules/@nextcloud/router/node_modules/core-js/internals/advance-string-index.js","webpack:///./node_modules/@nextcloud/router/node_modules/core-js/internals/string-multibyte.js","webpack:///./node_modules/@nextcloud/router/node_modules/core-js/internals/regexp-exec-abstract.js","webpack:///./node_modules/@nextcloud/logger/dist/ConsoleLogger.js","webpack:///./node_modules/@nextcloud/logger/node_modules/core-js/modules/es.object.assign.js","webpack:///./node_modules/@nextcloud/logger/node_modules/core-js/internals/export.js","webpack:///./node_modules/@nextcloud/logger/node_modules/core-js/internals/classof-raw.js","webpack:///./node_modules/@nextcloud/logger/node_modules/core-js/internals/document-create-element.js","webpack:///./node_modules/@nextcloud/logger/node_modules/core-js/internals/redefine.js","webpack:///./node_modules/@nextcloud/logger/node_modules/core-js/internals/internal-state.js","webpack:///./node_modules/@nextcloud/logger/node_modules/core-js/internals/native-weak-map.js","webpack:///./node_modules/@nextcloud/logger/node_modules/core-js/internals/shared-key.js","webpack:///./node_modules/@nextcloud/logger/node_modules/core-js/internals/shared.js","webpack:///./node_modules/@nextcloud/logger/node_modules/core-js/internals/is-pure.js","webpack:///./node_modules/@nextcloud/logger/node_modules/core-js/internals/uid.js","webpack:///./node_modules/@nextcloud/logger/node_modules/core-js/internals/copy-constructor-properties.js","webpack:///./node_modules/@nextcloud/logger/node_modules/core-js/internals/own-keys.js","webpack:///./node_modules/@nextcloud/logger/node_modules/core-js/internals/get-built-in.js","webpack:///./node_modules/@nextcloud/logger/node_modules/core-js/internals/path.js","webpack:///./node_modules/@nextcloud/logger/node_modules/core-js/internals/object-get-own-property-names.js","webpack:///./node_modules/@nextcloud/logger/node_modules/core-js/internals/array-includes.js","webpack:///./node_modules/@nextcloud/logger/node_modules/core-js/internals/to-length.js","webpack:///./node_modules/@nextcloud/logger/node_modules/core-js/internals/to-absolute-index.js","webpack:///./node_modules/@nextcloud/logger/node_modules/core-js/internals/is-forced.js","webpack:///./node_modules/@nextcloud/logger/node_modules/core-js/internals/object-assign.js","webpack:///./node_modules/@nextcloud/logger/node_modules/core-js/internals/object-keys.js","webpack:///./node_modules/@nextcloud/logger/node_modules/core-js/internals/to-object.js","webpack:///./node_modules/@nextcloud/logger/dist/contracts.js","webpack:///./node_modules/@nextcloud/logger/dist/Builder.js","webpack:///./node_modules/p-try/index.js","webpack:///./core/src/components/setup/RecommendedApps.vue?6c20","webpack:///./core/src/components/setup/RecommendedApps.vue?f93b","webpack:///./core/src/logger.js","webpack:///core/src/components/setup/RecommendedApps.vue","webpack:///./core/src/components/setup/RecommendedApps.vue?7e27","webpack:///./core/src/components/setup/RecommendedApps.vue","webpack:///./core/src/components/setup/RecommendedApps.vue?ffa9","webpack:///./core/src/recommendedapps.js"],"names":["installedModules","__webpack_require__","moduleId","exports","module","i","l","modules","call","m","c","d","name","getter","o","Object","defineProperty","enumerable","get","r","Symbol","toStringTag","value","t","mode","__esModule","ns","create","key","bind","n","object","property","prototype","hasOwnProperty","p","s","it","Math","check","globalThis","window","self","global","Function","shared","has","uid","NATIVE_SYMBOL","USE_SYMBOL_AS_UID","WellKnownSymbolsStore","createWellKnownSymbol","withoutSetter","exec","error","toString","isArray","val","isUndefined","isObject","isFunction","forEach","obj","fn","length","isArrayBuffer","isBuffer","constructor","isFormData","FormData","isArrayBufferView","ArrayBuffer","isView","buffer","isString","isNumber","isDate","isFile","isBlob","isStream","pipe","isURLSearchParams","URLSearchParams","isStandardBrowserEnv","navigator","product","document","merge","result","assignValue","arguments","deepMerge","extend","a","b","thisArg","trim","str","replace","DESCRIPTORS","IE8_DOM_DEFINE","anObject","toPrimitive","nativeDefineProperty","f","O","P","Attributes","TypeError","g","this","e","fails","definePropertyModule","createPropertyDescriptor","String","createNonEnumerableProperty","setGlobal","inspectSource","InternalStateModule","getInternalState","enforceInternalState","enforce","TEMPLATE","split","options","unsafe","simple","noTargetGet","source","join","getOwnPropertyDescriptor","redefine","copyConstructorProperties","isForced","target","targetProperty","sourceProperty","descriptor","TARGET","GLOBAL","STATIC","stat","forced","undefined","sham","bitmap","configurable","writable","IndexedObject","requireObjectCoercible","set","NATIVE_WEAK_MAP","objectHas","sharedKey","hiddenKeys","WeakMap","store","wmget","wmhas","wmset","metadata","STATE","getterFor","TYPE","state","type","path","aFunction","variable","namespace","method","toInteger","min","argument","subscribe","handler","bus","unsubscribe","emit","event","_ProxyBus","_SimpleBus","OC","_eventBus","_nc_event_bus","console","warn","ProxyBus","SimpleBus","cachedSetTimeout","cachedClearTimeout","process","defaultSetTimout","Error","defaultClearTimeout","runTimeout","fun","setTimeout","clearTimeout","currentQueue","queue","draining","queueIndex","cleanUpNextTick","concat","drainQueue","timeout","len","run","marker","runClearTimeout","Item","array","noop","nextTick","args","Array","push","apply","title","browser","env","argv","version","versions","on","addListener","once","off","removeListener","removeAllListeners","prependListener","prependOnceListener","listeners","binding","cwd","chdir","dir","umask","slice","input","PREFERRED_STRING","valueOf","keys","id","postfix","random","ceil","floor","isNaN","that","activeXDocument","defineProperties","enumBugKeys","html","documentCreateElement","IE_PROTO","EmptyConstructor","scriptTag","content","LT","NullProtoObject","domain","ActiveXObject","iframeDocument","iframe","write","close","temp","parentWindow","NullProtoObjectViaActiveX","style","display","appendChild","src","contentWindow","open","F","Properties","$","createIteratorConstructor","getPrototypeOf","setPrototypeOf","setToStringTag","wellKnownSymbol","IS_PURE","Iterators","IteratorsCore","IteratorPrototype","BUGGY_SAFARI_ITERATORS","ITERATOR","returnThis","Iterable","NAME","IteratorConstructor","next","DEFAULT","IS_SET","FORCED","CurrentIteratorPrototype","methods","KEY","getIterationMethod","KIND","defaultIterator","IterablePrototype","TO_STRING_TAG","INCORRECT_VALUES_NAME","nativeIterator","anyNativeIterator","entries","values","proto","TAG","test","useSourceMap","list","map","item","cssMapping","btoa","sourceMapping","sourceMap","base64","unescape","encodeURIComponent","JSON","stringify","data","sourceURLs","sources","sourceRoot","cssWithMappingToString","mediaQuery","listToStyles","parentId","styles","newStyles","part","css","media","parts","hasDocument","DEBUG","stylesInDom","head","getElementsByTagName","singletonElement","singletonCounter","isProduction","ssrIdKey","isOldIE","userAgent","toLowerCase","addStylesClient","_isProduction","_options","addStylesToDom","newList","mayRemove","domStyle","refs","j","addStyle","createStyleElement","styleElement","createElement","update","remove","querySelector","parentNode","removeChild","styleIndex","applyToSingletonTag","applyToTag","newObj","textStore","replaceText","index","replacement","filter","Boolean","styleSheet","cssText","cssNode","createTextNode","childNodes","insertBefore","setAttribute","ssrId","firstChild","propertyIsEnumerableModule","toIndexedObject","nativeGetOwnPropertyDescriptor","classof","propertyIsEnumerable","EXISTS","functionToString","copyright","indexOf","names","feature","detection","normalize","POLYFILL","NATIVE","string","arg","SPECIES","originalArray","C","getOwnPropertySymbols","V8_VERSION","METHOD_NAME","foo","match","v8","toObject","toLength","arraySpeciesCreate","createMethod","IS_MAP","IS_FILTER","IS_SOME","IS_EVERY","IS_FIND_INDEX","NO_HOLES","$this","callbackfn","specificCreate","boundFunction","some","every","find","findIndex","cache","thrower","ACCESSORS","argument0","argument1","addToUnscopables","defineIterator","setInternalState","iterated","kind","done","Arguments","PrototypeOfArrayIteratorPrototype","arrayIterator","CORRECT_PROTOTYPE_GETTER","ObjectPrototype","aPossiblePrototype","setter","CORRECT_SETTER","__proto__","FREEZING","METADATA","isExtensible","setMetadata","objectID","weakData","meta","REQUIRED","fastKey","getWeakData","onFreeze","isArrayIteratorMethod","getIteratorMethod","callWithSafeIterationClosing","Result","stopped","iterable","AS_ENTRIES","IS_ITERATOR","iterator","iterFn","step","stop","TO_STRING_TAG_SUPPORT","classofRaw","CORRECT_ARGUMENTS","tag","tryGet","callee","Constructor","CSSRuleList","CSSStyleDeclaration","CSSValueList","ClientRectList","DOMRectList","DOMStringList","DOMTokenList","DataTransferItemList","FileList","HTMLAllCollection","HTMLCollection","HTMLFormElement","HTMLSelectElement","MediaList","MimeTypeArray","NamedNodeMap","NodeList","PaintRequestList","Plugin","PluginArray","SVGLengthList","SVGNumberList","SVGPathSegList","SVGPointList","SVGStringList","SVGTransformList","SourceBufferList","StyleSheetList","TextTrackCueList","TextTrackList","TouchList","normalizeComponent","scriptExports","render","staticRenderFns","functionalTemplate","injectStyles","scopeId","moduleIdentifier","shadowMode","hook","_compiled","functional","_scopeId","context","$vnode","ssrContext","parent","__VUE_SSR_CONTEXT__","_registeredComponents","add","_ssrRegister","$root","$options","shadowRoot","_injectStyles","originalRender","h","existing","beforeCreate","default","_axios","_auth","client","headers","requesttoken","getRequestToken","cancelableClient","assign","CancelToken","isCancel","onRequestTokenUpdate","token","defaults","_default","getRootUrl","generateFilePath","imagePath","generateUrl","generateOcsUrl","generateRemoteUrl","linkTo","app","file","service","location","protocol","host","linkToRemoteBase","url","params","allOptions","escape","noRewrite","_build","text","vars","charAt","config","modRewriteWorking","isCore","coreApps","link","substring","appswebroots","encodeURI","webroot","getLocale","getLanguage","translate","count","L10N","translatePlural","textSingular","textPlural","getFirstDay","firstDay","getDayNames","dayNames","getDayNamesShort","dayNamesShort","getDayNamesMin","dayNamesMin","getMonthNames","monthNames","getMonthNamesShort","monthNamesShort","nativePropertyIsEnumerable","NASHORN_BUG","1","V","internalObjectKeys","utils","encode","paramsSerializer","serializedParams","v","toISOString","hashmarkIndex","__CANCEL__","normalizeHeaderName","DEFAULT_CONTENT_TYPE","setContentTypeIfUnset","adapter","XMLHttpRequest","transformRequest","transformResponse","parse","xsrfCookieName","xsrfHeaderName","maxContentLength","validateStatus","status","common","settle","buildURL","buildFullPath","parseHeaders","isURLSameOrigin","createError","Promise","resolve","reject","requestData","requestHeaders","request","auth","username","password","Authorization","fullPath","baseURL","toUpperCase","onreadystatechange","readyState","responseURL","responseHeaders","getAllResponseHeaders","response","responseType","responseText","statusText","onabort","onerror","ontimeout","timeoutErrorMessage","cookies","xsrfValue","withCredentials","read","setRequestHeader","onDownloadProgress","addEventListener","onUploadProgress","upload","cancelToken","promise","then","cancel","abort","send","enhanceError","message","code","config1","config2","valueFromConfig2Keys","mergeDeepPropertiesKeys","defaultToConfig2Keys","prop","axiosKeys","otherKeys","Cancel","loadState","elem","atob","_semver","_defineProperties","props","packageJson","instance","_classCallCheck","_defineProperty","getVersion","valid","major","protoProps","staticProps","debug","NODE_DEBUG","unshift","log","SEMVER_SPEC_VERSION","MAX_LENGTH","MAX_SAFE_INTEGER","Number","re","tokens","R","tok","NUMERICIDENTIFIER","NUMERICIDENTIFIERLOOSE","NONNUMERICIDENTIFIER","MAINVERSION","MAINVERSIONLOOSE","PRERELEASEIDENTIFIER","PRERELEASEIDENTIFIERLOOSE","PRERELEASE","PRERELEASELOOSE","BUILDIDENTIFIER","BUILD","FULLPLAIN","FULL","LOOSEPLAIN","LOOSE","GTLT","XRANGEIDENTIFIERLOOSE","XRANGEIDENTIFIER","XRANGEPLAIN","XRANGEPLAINLOOSE","XRANGE","XRANGELOOSE","COERCE","COERCERTL","RegExp","LONETILDE","TILDETRIM","TILDE","TILDELOOSE","LONECARET","CARETTRIM","CARET","CARETLOOSE","COMPARATORLOOSE","COMPARATOR","COMPARATORTRIM","HYPHENRANGE","HYPHENRANGELOOSE","STAR","loose","includePrerelease","SemVer","er","raw","minor","patch","prerelease","num","build","format","clean","compare","other","compareMain","comparePre","compareIdentifiers","compareBuild","inc","release","identifier","diff","version1","version2","eq","v1","v2","prefix","defaultResult","numeric","anum","bnum","gt","lt","neq","gte","lte","cmp","op","Comparator","comp","semver","ANY","operator","rcompareIdentifiers","compareLoose","versionA","versionB","rcompare","sort","rsort","Range","range","parseRange","isSatisfiable","comparators","remainingComparators","testComparator","pop","otherComparator","intersects","isX","hyphenReplace","$0","from","fM","fm","fp","fpr","fb","to","tM","tm","tp","tpr","tb","testSet","allowed","satisfies","outside","hilo","gtfn","ltefn","ltfn","ecomp","high","low","comparator","rangeTmp","sameDirectionIncreasing","sameDirectionDecreasing","sameSemVer","differentDirectionsInclusive","oppositeDirectionsLessThan","oppositeDirectionsGreaterThan","comps","hr","compRe","_","M","pr","ret","replaceCaret","replaceCarets","replaceTilde","replaceTildes","gtlt","xM","xm","xp","anyX","replaceXRange","replaceXRanges","replaceStars","parseComparator","thisComparators","rangeComparators","thisComparator","rangeComparator","toComparators","maxSatisfying","max","maxSV","rangeObj","minSatisfying","minSV","minVersion","minver","compver","validRange","ltr","gtr","parsed","r1","r2","coerce","rtl","lastIndex","Map","handlers","createProperty","arrayMethodHasSpeciesSupport","IS_CONCAT_SPREADABLE","IS_CONCAT_SPREADABLE_SUPPORT","SPECIES_SUPPORT","isConcatSpreadable","spreadable","k","E","A","ownKeys","getOwnPropertyDescriptorModule","getBuiltIn","getOwnPropertyNamesModule","getOwnPropertySymbolsModule","getOwnPropertyNames","toAbsoluteIndex","IS_INCLUDES","el","fromIndex","includes","integer","propertyKey","$filter","arrayMethodUsesToLength","HAS_SPECIES_SUPPORT","USES_TO_LENGTH","UNSCOPABLES","ArrayPrototype","objectKeys","collection","collectionStrong","init","InternalMetadataModule","iterate","anInstance","checkCorrectnessOfIteration","inheritIfRequired","CONSTRUCTOR_NAME","wrapper","IS_WEAK","ADDER","NativeConstructor","NativePrototype","exported","fixMethod","nativeMethod","getConstructor","HASNT_CHAINING","THROWS_ON_PRIMITIVES","ACCEPT_ITERABLES","BUGGY_ZERO","$instance","dummy","clear","setStrong","preventExtensions","ENTRIES","returnMethod","SAFE_CLOSING","called","iteratorWithReturn","SKIP_CLOSING","ITERATION_SUPPORT","Wrapper","NewTarget","NewTargetPrototype","redefineAll","setSpecies","internalStateGetterFor","first","last","size","define","previous","entry","getEntry","removed","prev","ITERATOR_NAME","getInternalCollectionState","getInternalIteratorState","point","CONVERT_TO_STRING","pos","second","S","position","charCodeAt","codeAt","DOMIterables","COLLECTION_NAME","Collection","CollectionPrototype","$forEach","arrayMethodIsStrict","STRICT_METHOD","ArrayIteratorMethods","ArrayValues","emptyObject","freeze","isUndef","isDef","isTrue","isPrimitive","_toString","isPlainObject","isRegExp","isValidArrayIndex","parseFloat","isFinite","isPromise","catch","toNumber","makeMap","expectsLowerCase","isReservedAttribute","arr","splice","hasOwn","cached","camelizeRE","camelize","capitalize","hyphenateRE","hyphenate","ctx","boundFn","_length","toArray","start","_from","res","no","identity","looseEqual","isObjectA","isObjectB","isArrayA","isArrayB","Date","getTime","keysA","keysB","looseIndexOf","SSR_ATTR","ASSET_TYPES","LIFECYCLE_HOOKS","optionMergeStrategies","silent","productionTip","devtools","performance","errorHandler","warnHandler","ignoredElements","keyCodes","isReservedTag","isReservedAttr","isUnknownElement","getTagNamespace","parsePlatformTagName","mustUseProp","async","_lifecycleHooks","unicodeRegExp","def","bailRE","_isServer","hasProto","inBrowser","inWeex","WXEnvironment","platform","weexPlatform","UA","isIE","isIE9","isEdge","isIOS","isFF","nativeWatch","watch","supportsPassive","opts","isServerRendering","VUE_ENV","__VUE_DEVTOOLS_GLOBAL_HOOK__","isNative","Ctor","_Set","hasSymbol","Reflect","Set","Dep","subs","addSub","sub","removeSub","depend","addDep","notify","targetStack","pushTarget","popTarget","VNode","children","elm","componentOptions","asyncFactory","fnContext","fnOptions","fnScopeId","componentInstance","isStatic","isRootInsert","isComment","isCloned","isOnce","asyncMeta","isAsyncPlaceholder","prototypeAccessors","child","createEmptyVNode","node","createTextVNode","cloneVNode","vnode","cloned","arrayProto","arrayMethods","original","inserted","ob","__ob__","observeArray","dep","arrayKeys","shouldObserve","toggleObserving","Observer","vmCount","protoAugment","copyAugment","walk","observe","asRootData","_isVue","defineReactive$$1","customSetter","shallow","childOb","dependArray","newVal","del","items","strats","mergeData","toVal","fromVal","mergeDataOrFn","parentVal","childVal","vm","instanceData","defaultData","mergeHook","hooks","dedupeHooks","mergeAssets","key$1","inject","computed","provide","defaultStrat","mergeOptions","normalizeProps","normalized","normalizeInject","dirs","directives","def$$1","normalizeDirectives","_base","extends","mixins","mergeField","strat","resolveAsset","warnMissing","assets","camelizedId","PascalCaseId","validateProp","propOptions","propsData","absent","booleanIndex","getTypeIndex","stringIndex","_props","getType","getPropDefaultValue","prevShouldObserve","isSameType","expectedTypes","handleError","err","info","cur","$parent","errorCaptured","globalHandleError","invokeWithErrorHandling","_handled","logError","timerFunc","isUsingMicroTask","callbacks","pending","flushCallbacks","copies","MutationObserver","setImmediate","counter","observer","textNode","characterData","cb","_resolve","seenObjects","traverse","_traverse","seen","isA","isFrozen","depId","normalizeEvent","passive","once$$1","capture","createFnInvoker","fns","invoker","arguments$1","updateListeners","oldOn","remove$$1","createOnceHandler","old","mergeVNodeHook","hookKey","oldHook","wrappedHook","merged","checkProp","hash","altKey","preserve","normalizeChildren","normalizeArrayChildren","nestedIndex","isTextNode","shift","_isVList","resolveInject","provideKey","_provided","provideDefault","resolveSlots","slots","attrs","slot","name$1","isWhitespace","normalizeScopedSlots","normalSlots","prevSlots","hasNormalSlots","isStable","$stable","$key","_normalized","$hasNormal","normalizeScopedSlot","key$2","proxyNormalSlot","proxy","renderList","renderSlot","fallback","bindObject","nodes","scopedSlotFn","$scopedSlots","$slots","$createElement","resolveFilter","isKeyNotMatch","expect","actual","checkKeyCodes","eventKeyCode","builtInKeyCode","eventKeyName","builtInKeyName","mappedKeyCode","bindObjectProps","asProp","isSync","loop","domProps","camelizedKey","hyphenatedKey","$event","renderStatic","isInFor","_staticTrees","tree","markStatic","_renderProxy","markOnce","markStaticNode","bindObjectListeners","ours","resolveScopedSlots","hasDynamicKeys","contentHashKey","bindDynamicKeys","baseObj","prependModifier","symbol","installRenderHelpers","_o","_n","_s","_l","_t","_q","_i","_m","_f","_k","_b","_v","_e","_u","_g","_d","_p","FunctionalRenderContext","contextVm","this$1","_original","isCompiled","needNormalization","injections","scopedSlots","_c","cloneAndMarkFunctionalResult","renderContext","clone","mergeProps","componentVNodeHooks","hydrating","_isDestroyed","keepAlive","mountedNode","prepatch","_isComponent","_parentVnode","inlineTemplate","createComponentInstanceForVnode","activeInstance","$mount","oldVnode","parentVnode","renderChildren","newScopedSlots","oldScopedSlots","hasDynamicScopedSlot","needsForceUpdate","_renderChildren","_vnode","$attrs","$listeners","propKeys","_propKeys","oldListeners","_parentListeners","updateComponentListeners","$forceUpdate","updateChildComponent","insert","_isMounted","callHook","_inactive","activatedChildren","activateChildComponent","destroy","deactivateChildComponent","direct","_directInactive","isInInactiveTree","$children","$destroy","hooksToMerge","createComponent","baseCtor","cid","factory","errorComp","resolved","owner","currentRenderingInstance","owners","loading","loadingComp","sync","timerLoading","timerTimeout","$on","forceRender","renderCompleted","ensureCtor","reason","component","delay","resolveAsyncComponent","createAsyncPlaceholder","resolveConstructorOptions","model","callback","transformModel","extractPropsFromVNodeData","vnodes","createFunctionalComponent","nativeOn","abstract","toMerge","_merged","mergeHook$1","installComponentHooks","f1","f2","SIMPLE_NORMALIZE","ALWAYS_NORMALIZE","normalizationType","alwaysNormalize","is","simpleNormalizeChildren","pre","applyNS","force","class","registerDeepBindings","_createElement","base","getFirstComponentChild","remove$1","$off","_target","onceHandler","setActiveInstance","prevActiveInstance","_hasHookEvent","$emit","waiting","flushing","currentFlushTimestamp","getNow","now","createEvent","timeStamp","flushSchedulerQueue","watcher","before","activatedQueue","updatedQueue","callActivatedHooks","_watcher","callUpdatedHooks","uid$2","Watcher","expOrFn","isRenderWatcher","_watchers","deep","user","lazy","active","dirty","deps","newDeps","depIds","newDepIds","expression","segments","parsePath","cleanupDeps","tmp","queueWatcher","oldValue","evaluate","teardown","_isBeingDestroyed","sharedPropertyDefinition","sourceKey","initState","propsOptions","initProps","initMethods","_data","getData","initData","watchers","_computedWatchers","isSSR","userDef","computedWatcherOptions","defineComputed","initComputed","createWatcher","initWatch","shouldCache","createComputedGetter","createGetterInvoker","$watch","uid$3","super","superOptions","modifiedOptions","modified","latest","sealed","sealedOptions","resolveModifiedOptions","extendOptions","components","Vue","_init","initExtend","Super","SuperId","cachedCtors","_Ctor","Sub","Comp","initProps$1","initComputed$1","mixin","use","getComponentName","matches","pattern","pruneCache","keepAliveInstance","cachedNode","pruneCacheEntry","current","cached$$1","_uid","vnodeComponentOptions","_componentTag","initInternalComponent","_self","$refs","initLifecycle","_events","initEvents","parentData","initRender","initInjections","initProvide","initMixin","dataDef","propsDef","$set","$delete","immediate","stateMixin","hookRE","$once","i$1","cbs","eventsMixin","_update","prevEl","$el","prevVnode","restoreActiveInstance","__patch__","__vue__","lifecycleMixin","$nextTick","_render","ref","renderMixin","patternTypes","builtInComponents","KeepAlive","include","exclude","created","destroyed","mounted","parseInt","configDef","util","defineReactive","delete","observable","plugin","installedPlugins","_installedPlugins","install","initUse","initMixin$1","definition","initAssetRegisters","initGlobalAPI","acceptValue","isEnumeratedAttr","isValidContentEditableValue","convertEnumeratedValue","isFalsyAttrValue","isBooleanAttr","xlinkNS","isXlink","getXlinkProp","genClassForVnode","childNode","mergeClassData","staticClass","dynamicClass","stringifyClass","renderClass","stringified","stringifyArray","stringifyObject","namespaceMap","svg","math","isHTMLTag","isSVG","unknownElementCache","isTextInputType","nodeOps","tagName","multiple","createElementNS","createComment","newNode","referenceNode","nextSibling","setTextContent","textContent","setStyleScope","registerRef","isRemoval","refInFor","emptyNode","sameVnode","typeA","typeB","sameInputType","createKeyToOldIdx","beginIdx","endIdx","updateDirectives","oldDir","isCreate","isDestroy","oldDirs","normalizeDirectives$1","newDirs","dirsWithInsert","dirsWithPostpatch","oldArg","callHook$1","componentUpdated","callInsert","emptyModifiers","modifiers","getRawDirName","rawName","baseModules","updateAttrs","inheritAttrs","oldAttrs","setAttr","removeAttributeNS","removeAttribute","baseSetAttr","setAttributeNS","__ieph","blocker","stopImmediatePropagation","removeEventListener","updateClass","oldData","cls","transitionClass","_transitionClasses","_prevClass","target$1","klass","RANGE_TOKEN","CHECKBOX_RADIO_TOKEN","createOnceHandler$1","remove$2","useMicrotaskFix","add$1","attachedTimestamp","_wrapper","currentTarget","ownerDocument","updateDOMListeners","change","normalizeEvents","svgContainer","events","updateDOMProps","oldProps","_value","strCur","shouldUpdateValue","innerHTML","checkVal","composing","notInFocus","activeElement","isNotInFocusAndDirty","_vModifiers","number","isDirtyWithModifiers","parseStyleText","propertyDelimiter","normalizeStyleData","normalizeStyleBinding","staticStyle","bindingStyle","emptyStyle","cssVarRE","importantRE","setProp","setProperty","normalizedName","vendorNames","capName","updateStyle","oldStaticStyle","oldStyleBinding","normalizedStyle","oldStyle","newStyle","checkChild","styleData","getStyle","whitespaceRE","addClass","classList","getAttribute","removeClass","tar","resolveTransition","autoCssTransition","enterClass","enterToClass","enterActiveClass","leaveClass","leaveToClass","leaveActiveClass","hasTransition","TRANSITION","ANIMATION","transitionProp","transitionEndEvent","animationProp","animationEndEvent","ontransitionend","onwebkittransitionend","onanimationend","onwebkitanimationend","raf","requestAnimationFrame","nextFrame","addTransitionClass","transitionClasses","removeTransitionClass","whenTransitionEnds","expectedType","getTransitionInfo","propCount","ended","end","onEnd","transformRE","getComputedStyle","transitionDelays","transitionDurations","transitionTimeout","getTimeout","animationDelays","animationDurations","animationTimeout","hasTransform","delays","durations","toMs","enter","toggleDisplay","_leaveCb","cancelled","transition","_enterCb","nodeType","appearClass","appearToClass","appearActiveClass","beforeEnter","afterEnter","enterCancelled","beforeAppear","appear","afterAppear","appearCancelled","duration","transitionNode","isAppear","startClass","activeClass","toClass","beforeEnterHook","enterHook","afterEnterHook","enterCancelledHook","explicitEnterDuration","expectsCSS","userWantsControl","getHookArgumentsLength","show","pendingNode","_pending","isValidDuration","leave","rm","beforeLeave","afterLeave","leaveCancelled","delayLeave","explicitLeaveDuration","performLeave","invokerFns","_enter","backend","removeNode","createElm","insertedVnodeQueue","parentElm","refElm","nested","ownerArray","isReactivated","initComponent","innerNode","activate","reactivateComponent","setScope","createChildren","invokeCreateHooks","pendingInsert","isPatchable","ref$$1","ancestor","addVnodes","startIdx","invokeDestroyHook","removeVnodes","ch","removeAndInvokeRemoveHook","childElm","createRmCb","findIdxInOld","oldCh","patchVnode","removeOnly","hydrate","newCh","oldKeyToIdx","idxInOld","vnodeToMove","oldStartIdx","newStartIdx","oldEndIdx","oldStartVnode","oldEndVnode","newEndIdx","newStartVnode","newEndVnode","canMove","updateChildren","postpatch","invokeInsertHook","initial","isRenderedModule","inVPre","hasChildNodes","childrenMatch","fullInvoke","isInitialPatch","isRealElement","hasAttribute","oldElm","patchable","i$2","createPatchFunction","vmodel","trigger","directive","_vOptions","setSelected","getValue","onCompositionStart","onCompositionEnd","prevOptions","curOptions","hasNoMatchingOption","actuallySetSelected","isMultiple","selected","option","selectedIndex","initEvent","dispatchEvent","locateNode","platformDirectives","transition$$1","originalDisplay","__vOriginalDisplay","unbind","transitionProps","getRealChild","compOptions","extractTransitionData","placeholder","rawChild","isNotTextNode","isVShowDirective","Transition","hasParentTransition","_leaving","oldRawChild","oldChild","isSameChild","delayedLeave","moveClass","callPendingCbs","_moveCb","recordPosition","newPos","getBoundingClientRect","applyTranslation","oldPos","dx","left","dy","top","moved","transform","WebkitTransform","transitionDuration","platformComponents","TransitionGroup","beforeMount","kept","prevChildren","rawChildren","transitionData","c$1","updated","hasMove","_reflow","body","offsetHeight","propertyName","_hasMove","cloneNode","attr","HTMLUnknownElement","HTMLElement","updateComponent","mountComponent","query","nativeAssign","B","chr","T","argumentsLength","Axios","mergeConfig","createInstance","defaultConfig","axios","instanceConfig","all","promises","spread","InterceptorManager","dispatchRequest","interceptors","chain","interceptor","fulfilled","rejected","getUri","eject","transformData","throwIfCancellationRequested","throwIfRequested","isAxiosError","toJSON","description","fileName","lineNumber","columnNumber","stack","isAbsoluteURL","combineURLs","requestedURL","relativeURL","ignoreDuplicateOf","line","substr","isValidXss","originURL","msie","urlParsingNode","resolveURL","href","search","hostname","port","pathname","requestURL","expires","secure","cookie","toGMTString","decodeURIComponent","executor","resolvePromise","_requesttoken","_user","getCurrentUser","observers","tokenElement","displayName","uidElement","displayNameElement","locals","Timeout","clearFn","_id","_clearFn","scope","setInterval","clearInterval","unref","enroll","msecs","_idleTimeoutId","_idleTimeout","unenroll","_unrefActive","_onTimeout","clearImmediate","registerImmediate","channel","messagePrefix","onGlobalMessage","nextHandle","tasksByHandle","currentlyRunningATask","doc","attachTo","handle","runIfPresent","postMessage","importScripts","postMessageIsAsynchronous","oldOnMessage","onmessage","canUsePostMessage","MessageChannel","port1","port2","documentElement","script","attachEvent","task","getLoggerBuilder","getLogger","_ConsoleLogger","_Builder","LoggerBuilder","buildConsoleLogger","ignoreCase","multiline","dotAll","unicode","sticky","re1","re2","regexpFlags","nativeExec","nativeReplace","patchedExec","UPDATES_LAST_INDEX_WRONG","NPCG_INCLUDED","reCopy","pTry","require","pLimit","concurrency","isInteger","Infinity","activeCount","enqueue","generator","pendingCount","$indexOf","sloppyArrayMethod","nativeIndexOf","NEGATIVE_ZERO","SLOPPY_METHOD","searchElement","flags","RegExpPrototype","nativeToString","NOT_GENERIC","INCORRECT_NAME","rf","fixRegExpWellKnownSymbolLogic","advanceStringIndex","regExpExec","SUBSTITUTION_SYMBOLS","SUBSTITUTION_SYMBOLS_NO_NAMED","REPLACE","maybeCallNative","searchValue","replaceValue","replacer","regexp","rx","functionalReplace","fullUnicode","results","accumulatedResult","nextSourcePosition","matched","captures","namedCaptures","groups","replacerArgs","getSubstitution","tailPos","symbols","regexpExec","REPLACE_SUPPORTS_NAMED_GROUPS","SPLIT_WORKS_WITH_OVERWRITTEN_EXEC","originalExec","SYMBOL","DELEGATES_TO_SYMBOL","DELEGATES_TO_EXEC","execCalled","nativeRegExpMethod","arg2","forceStringMethod","stringMethod","regexMethod","ConsoleLogger","_contracts","level","msg","formatMessage","LogLevel","Debug","Info","Warn","Fatal","appId","arguments_","___CSS_LOADER_API_IMPORT___","setApp","setUid","_vm","_h","customIcon","customDescription","isCompatible","canInstall","defaultPageUrl","__webpack_nonce__","__webpack_public_path__","RecommendedApps","logger"],"mappings":"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","file":"recommendedapps.js","sourcesContent":[" \t// The module cache\n \tvar installedModules = {};\n\n \t// The require function\n \tfunction __webpack_require__(moduleId) {\n\n \t\t// Check if module is in cache\n \t\tif(installedModules[moduleId]) {\n \t\t\treturn installedModules[moduleId].exports;\n \t\t}\n \t\t// Create a new module (and put it into the cache)\n \t\tvar module = installedModules[moduleId] = {\n \t\t\ti: moduleId,\n \t\t\tl: false,\n \t\t\texports: {}\n \t\t};\n\n \t\t// Execute the module function\n \t\tmodules[moduleId].call(module.exports, module, module.exports, __webpack_require__);\n\n \t\t// Flag the module as loaded\n \t\tmodule.l = true;\n\n \t\t// Return the exports of the module\n \t\treturn module.exports;\n \t}\n\n\n \t// expose the modules object (__webpack_modules__)\n \t__webpack_require__.m = modules;\n\n \t// expose the module cache\n \t__webpack_require__.c = installedModules;\n\n \t// define getter function for harmony exports\n \t__webpack_require__.d = function(exports, name, getter) {\n \t\tif(!__webpack_require__.o(exports, name)) {\n \t\t\tObject.defineProperty(exports, name, { enumerable: true, get: getter });\n \t\t}\n \t};\n\n \t// define __esModule on exports\n \t__webpack_require__.r = function(exports) {\n \t\tif(typeof Symbol !== 'undefined' && Symbol.toStringTag) {\n \t\t\tObject.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });\n \t\t}\n \t\tObject.defineProperty(exports, '__esModule', { value: true });\n \t};\n\n \t// create a fake namespace object\n \t// mode & 1: value is a module id, require it\n \t// mode & 2: merge all properties of value into the ns\n \t// mode & 4: return value when already ns object\n \t// mode & 8|1: behave like require\n \t__webpack_require__.t = function(value, mode) {\n \t\tif(mode & 1) value = __webpack_require__(value);\n \t\tif(mode & 8) return value;\n \t\tif((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;\n \t\tvar ns = Object.create(null);\n \t\t__webpack_require__.r(ns);\n \t\tObject.defineProperty(ns, 'default', { enumerable: true, value: value });\n \t\tif(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));\n \t\treturn ns;\n \t};\n\n \t// getDefaultExport function for compatibility with non-harmony modules\n \t__webpack_require__.n = function(module) {\n \t\tvar getter = module && module.__esModule ?\n \t\t\tfunction getDefault() { return module['default']; } :\n \t\t\tfunction getModuleExports() { return module; };\n \t\t__webpack_require__.d(getter, 'a', getter);\n \t\treturn getter;\n \t};\n\n \t// Object.prototype.hasOwnProperty.call\n \t__webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };\n\n \t// __webpack_public_path__\n \t__webpack_require__.p = \"\";\n\n\n \t// Load entry module and return exports\n \treturn __webpack_require__(__webpack_require__.s = 1054);\n","var check = function (it) {\n return it && it.Math == Math && it;\n};\n\n// https://github.com/zloirock/core-js/issues/86#issuecomment-115759028\nmodule.exports =\n // eslint-disable-next-line no-undef\n check(typeof globalThis == 'object' && globalThis) ||\n check(typeof window == 'object' && window) ||\n check(typeof self == 'object' && self) ||\n check(typeof global == 'object' && global) ||\n // eslint-disable-next-line no-new-func\n Function('return this')();\n","var global = require('../internals/global');\nvar shared = require('../internals/shared');\nvar has = require('../internals/has');\nvar uid = require('../internals/uid');\nvar NATIVE_SYMBOL = require('../internals/native-symbol');\nvar USE_SYMBOL_AS_UID = require('../internals/use-symbol-as-uid');\n\nvar WellKnownSymbolsStore = shared('wks');\nvar Symbol = global.Symbol;\nvar createWellKnownSymbol = USE_SYMBOL_AS_UID ? Symbol : Symbol && Symbol.withoutSetter || uid;\n\nmodule.exports = function (name) {\n if (!has(WellKnownSymbolsStore, name)) {\n if (NATIVE_SYMBOL && has(Symbol, name)) WellKnownSymbolsStore[name] = Symbol[name];\n else WellKnownSymbolsStore[name] = createWellKnownSymbol('Symbol.' + name);\n } return WellKnownSymbolsStore[name];\n};\n","module.exports = function (exec) {\n try {\n return !!exec();\n } catch (error) {\n return true;\n }\n};\n","var hasOwnProperty = {}.hasOwnProperty;\n\nmodule.exports = function (it, key) {\n return hasOwnProperty.call(it, key);\n};\n","var check = function (it) {\n return it && it.Math == Math && it;\n};\n\n// https://github.com/zloirock/core-js/issues/86#issuecomment-115759028\nmodule.exports =\n // eslint-disable-next-line no-undef\n check(typeof globalThis == 'object' && globalThis) ||\n check(typeof window == 'object' && window) ||\n check(typeof self == 'object' && self) ||\n check(typeof global == 'object' && global) ||\n // eslint-disable-next-line no-new-func\n Function('return this')();\n","var global = require('../internals/global');\nvar shared = require('../internals/shared');\nvar has = require('../internals/has');\nvar uid = require('../internals/uid');\nvar NATIVE_SYMBOL = require('../internals/native-symbol');\nvar USE_SYMBOL_AS_UID = require('../internals/use-symbol-as-uid');\n\nvar WellKnownSymbolsStore = shared('wks');\nvar Symbol = global.Symbol;\nvar createWellKnownSymbol = USE_SYMBOL_AS_UID ? Symbol : Symbol && Symbol.withoutSetter || uid;\n\nmodule.exports = function (name) {\n if (!has(WellKnownSymbolsStore, name)) {\n if (NATIVE_SYMBOL && has(Symbol, name)) WellKnownSymbolsStore[name] = Symbol[name];\n else WellKnownSymbolsStore[name] = createWellKnownSymbol('Symbol.' + name);\n } return WellKnownSymbolsStore[name];\n};\n","module.exports = function (it) {\n return typeof it === 'object' ? it !== null : typeof it === 'function';\n};\n","module.exports = function (exec) {\n try {\n return !!exec();\n } catch (error) {\n return true;\n }\n};\n","'use strict';\n\nvar bind = require('./helpers/bind');\n\n/*global toString:true*/\n\n// utils is a library of generic helper functions non-specific to axios\n\nvar toString = Object.prototype.toString;\n\n/**\n * Determine if a value is an Array\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if value is an Array, otherwise false\n */\nfunction isArray(val) {\n return toString.call(val) === '[object Array]';\n}\n\n/**\n * Determine if a value is undefined\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if the value is undefined, otherwise false\n */\nfunction isUndefined(val) {\n return typeof val === 'undefined';\n}\n\n/**\n * Determine if a value is a Buffer\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if value is a Buffer, otherwise false\n */\nfunction isBuffer(val) {\n return val !== null && !isUndefined(val) && val.constructor !== null && !isUndefined(val.constructor)\n && typeof val.constructor.isBuffer === 'function' && val.constructor.isBuffer(val);\n}\n\n/**\n * Determine if a value is an ArrayBuffer\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if value is an ArrayBuffer, otherwise false\n */\nfunction isArrayBuffer(val) {\n return toString.call(val) === '[object ArrayBuffer]';\n}\n\n/**\n * Determine if a value is a FormData\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if value is an FormData, otherwise false\n */\nfunction isFormData(val) {\n return (typeof FormData !== 'undefined') && (val instanceof FormData);\n}\n\n/**\n * Determine if a value is a view on an ArrayBuffer\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if value is a view on an ArrayBuffer, otherwise false\n */\nfunction isArrayBufferView(val) {\n var result;\n if ((typeof ArrayBuffer !== 'undefined') && (ArrayBuffer.isView)) {\n result = ArrayBuffer.isView(val);\n } else {\n result = (val) && (val.buffer) && (val.buffer instanceof ArrayBuffer);\n }\n return result;\n}\n\n/**\n * Determine if a value is a String\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if value is a String, otherwise false\n */\nfunction isString(val) {\n return typeof val === 'string';\n}\n\n/**\n * Determine if a value is a Number\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if value is a Number, otherwise false\n */\nfunction isNumber(val) {\n return typeof val === 'number';\n}\n\n/**\n * Determine if a value is an Object\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if value is an Object, otherwise false\n */\nfunction isObject(val) {\n return val !== null && typeof val === 'object';\n}\n\n/**\n * Determine if a value is a Date\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if value is a Date, otherwise false\n */\nfunction isDate(val) {\n return toString.call(val) === '[object Date]';\n}\n\n/**\n * Determine if a value is a File\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if value is a File, otherwise false\n */\nfunction isFile(val) {\n return toString.call(val) === '[object File]';\n}\n\n/**\n * Determine if a value is a Blob\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if value is a Blob, otherwise false\n */\nfunction isBlob(val) {\n return toString.call(val) === '[object Blob]';\n}\n\n/**\n * Determine if a value is a Function\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if value is a Function, otherwise false\n */\nfunction isFunction(val) {\n return toString.call(val) === '[object Function]';\n}\n\n/**\n * Determine if a value is a Stream\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if value is a Stream, otherwise false\n */\nfunction isStream(val) {\n return isObject(val) && isFunction(val.pipe);\n}\n\n/**\n * Determine if a value is a URLSearchParams object\n *\n * @param {Object} val The value to test\n * @returns {boolean} True if value is a URLSearchParams object, otherwise false\n */\nfunction isURLSearchParams(val) {\n return typeof URLSearchParams !== 'undefined' && val instanceof URLSearchParams;\n}\n\n/**\n * Trim excess whitespace off the beginning and end of a string\n *\n * @param {String} str The String to trim\n * @returns {String} The String freed of excess whitespace\n */\nfunction trim(str) {\n return str.replace(/^\\s*/, '').replace(/\\s*$/, '');\n}\n\n/**\n * Determine if we're running in a standard browser environment\n *\n * This allows axios to run in a web worker, and react-native.\n * Both environments support XMLHttpRequest, but not fully standard globals.\n *\n * web workers:\n * typeof window -> undefined\n * typeof document -> undefined\n *\n * react-native:\n * navigator.product -> 'ReactNative'\n * nativescript\n * navigator.product -> 'NativeScript' or 'NS'\n */\nfunction isStandardBrowserEnv() {\n if (typeof navigator !== 'undefined' && (navigator.product === 'ReactNative' ||\n navigator.product === 'NativeScript' ||\n navigator.product === 'NS')) {\n return false;\n }\n return (\n typeof window !== 'undefined' &&\n typeof document !== 'undefined'\n );\n}\n\n/**\n * Iterate over an Array or an Object invoking a function for each item.\n *\n * If `obj` is an Array callback will be called passing\n * the value, index, and complete array for each item.\n *\n * If 'obj' is an Object callback will be called passing\n * the value, key, and complete object for each property.\n *\n * @param {Object|Array} obj The object to iterate\n * @param {Function} fn The callback to invoke for each item\n */\nfunction forEach(obj, fn) {\n // Don't bother if no value provided\n if (obj === null || typeof obj === 'undefined') {\n return;\n }\n\n // Force an array if not already something iterable\n if (typeof obj !== 'object') {\n /*eslint no-param-reassign:0*/\n obj = [obj];\n }\n\n if (isArray(obj)) {\n // Iterate over array values\n for (var i = 0, l = obj.length; i < l; i++) {\n fn.call(null, obj[i], i, obj);\n }\n } else {\n // Iterate over object keys\n for (var key in obj) {\n if (Object.prototype.hasOwnProperty.call(obj, key)) {\n fn.call(null, obj[key], key, obj);\n }\n }\n }\n}\n\n/**\n * Accepts varargs expecting each argument to be an object, then\n * immutably merges the properties of each object and returns result.\n *\n * When multiple objects contain the same key the later object in\n * the arguments list will take precedence.\n *\n * Example:\n *\n * ```js\n * var result = merge({foo: 123}, {foo: 456});\n * console.log(result.foo); // outputs 456\n * ```\n *\n * @param {Object} obj1 Object to merge\n * @returns {Object} Result of all merge properties\n */\nfunction merge(/* obj1, obj2, obj3, ... */) {\n var result = {};\n function assignValue(val, key) {\n if (typeof result[key] === 'object' && typeof val === 'object') {\n result[key] = merge(result[key], val);\n } else {\n result[key] = val;\n }\n }\n\n for (var i = 0, l = arguments.length; i < l; i++) {\n forEach(arguments[i], assignValue);\n }\n return result;\n}\n\n/**\n * Function equal to merge with the difference being that no reference\n * to original objects is kept.\n *\n * @see merge\n * @param {Object} obj1 Object to merge\n * @returns {Object} Result of all merge properties\n */\nfunction deepMerge(/* obj1, obj2, obj3, ... */) {\n var result = {};\n function assignValue(val, key) {\n if (typeof result[key] === 'object' && typeof val === 'object') {\n result[key] = deepMerge(result[key], val);\n } else if (typeof val === 'object') {\n result[key] = deepMerge({}, val);\n } else {\n result[key] = val;\n }\n }\n\n for (var i = 0, l = arguments.length; i < l; i++) {\n forEach(arguments[i], assignValue);\n }\n return result;\n}\n\n/**\n * Extends object a by mutably adding to it the properties of object b.\n *\n * @param {Object} a The object to be extended\n * @param {Object} b The object to copy properties from\n * @param {Object} thisArg The object to bind function to\n * @return {Object} The resulting value of object a\n */\nfunction extend(a, b, thisArg) {\n forEach(b, function assignValue(val, key) {\n if (thisArg && typeof val === 'function') {\n a[key] = bind(val, thisArg);\n } else {\n a[key] = val;\n }\n });\n return a;\n}\n\nmodule.exports = {\n isArray: isArray,\n isArrayBuffer: isArrayBuffer,\n isBuffer: isBuffer,\n isFormData: isFormData,\n isArrayBufferView: isArrayBufferView,\n isString: isString,\n isNumber: isNumber,\n isObject: isObject,\n isUndefined: isUndefined,\n isDate: isDate,\n isFile: isFile,\n isBlob: isBlob,\n isFunction: isFunction,\n isStream: isStream,\n isURLSearchParams: isURLSearchParams,\n isStandardBrowserEnv: isStandardBrowserEnv,\n forEach: forEach,\n merge: merge,\n deepMerge: deepMerge,\n extend: extend,\n trim: trim\n};\n","var DESCRIPTORS = require('../internals/descriptors');\nvar IE8_DOM_DEFINE = require('../internals/ie8-dom-define');\nvar anObject = require('../internals/an-object');\nvar toPrimitive = require('../internals/to-primitive');\n\nvar nativeDefineProperty = Object.defineProperty;\n\n// `Object.defineProperty` method\n// https://tc39.github.io/ecma262/#sec-object.defineproperty\nexports.f = DESCRIPTORS ? nativeDefineProperty : function defineProperty(O, P, Attributes) {\n anObject(O);\n P = toPrimitive(P, true);\n anObject(Attributes);\n if (IE8_DOM_DEFINE) try {\n return nativeDefineProperty(O, P, Attributes);\n } catch (error) { /* empty */ }\n if ('get' in Attributes || 'set' in Attributes) throw TypeError('Accessors not supported');\n if ('value' in Attributes) O[P] = Attributes.value;\n return O;\n};\n","var g;\n\n// This works in non-strict mode\ng = (function() {\n\treturn this;\n})();\n\ntry {\n\t// This works if eval is allowed (see CSP)\n\tg = g || new Function(\"return this\")();\n} catch (e) {\n\t// This works if the window reference is available\n\tif (typeof window === \"object\") g = window;\n}\n\n// g can still be undefined, but nothing to do about it...\n// We return undefined, instead of nothing here, so it's\n// easier to handle this case. if(!global) { ...}\n\nmodule.exports = g;\n","var check = function (it) {\n return it && it.Math == Math && it;\n};\n\n// https://github.com/zloirock/core-js/issues/86#issuecomment-115759028\nmodule.exports =\n // eslint-disable-next-line no-undef\n check(typeof globalThis == 'object' && globalThis) ||\n check(typeof window == 'object' && window) ||\n check(typeof self == 'object' && self) ||\n check(typeof global == 'object' && global) ||\n // eslint-disable-next-line no-new-func\n Function('return this')();\n","var fails = require('../internals/fails');\n\n// Thank's IE8 for his funny defineProperty\nmodule.exports = !fails(function () {\n return Object.defineProperty({}, 1, { get: function () { return 7; } })[1] != 7;\n});\n","var DESCRIPTORS = require('../internals/descriptors');\nvar definePropertyModule = require('../internals/object-define-property');\nvar createPropertyDescriptor = require('../internals/create-property-descriptor');\n\nmodule.exports = DESCRIPTORS ? function (object, key, value) {\n return definePropertyModule.f(object, key, createPropertyDescriptor(1, value));\n} : function (object, key, value) {\n object[key] = value;\n return object;\n};\n","var hasOwnProperty = {}.hasOwnProperty;\n\nmodule.exports = function (it, key) {\n return hasOwnProperty.call(it, key);\n};\n","module.exports = function (it) {\n return typeof it === 'object' ? it !== null : typeof it === 'function';\n};\n","var isObject = require('../internals/is-object');\n\nmodule.exports = function (it) {\n if (!isObject(it)) {\n throw TypeError(String(it) + ' is not an object');\n } return it;\n};\n","var fails = require('../internals/fails');\n\n// Thank's IE8 for his funny defineProperty\nmodule.exports = !fails(function () {\n return Object.defineProperty({}, 1, { get: function () { return 7; } })[1] != 7;\n});\n","var DESCRIPTORS = require('../internals/descriptors');\nvar IE8_DOM_DEFINE = require('../internals/ie8-dom-define');\nvar anObject = require('../internals/an-object');\nvar toPrimitive = require('../internals/to-primitive');\n\nvar nativeDefineProperty = Object.defineProperty;\n\n// `Object.defineProperty` method\n// https://tc39.github.io/ecma262/#sec-object.defineproperty\nexports.f = DESCRIPTORS ? nativeDefineProperty : function defineProperty(O, P, Attributes) {\n anObject(O);\n P = toPrimitive(P, true);\n anObject(Attributes);\n if (IE8_DOM_DEFINE) try {\n return nativeDefineProperty(O, P, Attributes);\n } catch (error) { /* empty */ }\n if ('get' in Attributes || 'set' in Attributes) throw TypeError('Accessors not supported');\n if ('value' in Attributes) O[P] = Attributes.value;\n return O;\n};\n","var DESCRIPTORS = require('../internals/descriptors');\nvar definePropertyModule = require('../internals/object-define-property');\nvar createPropertyDescriptor = require('../internals/create-property-descriptor');\n\nmodule.exports = DESCRIPTORS ? function (object, key, value) {\n return definePropertyModule.f(object, key, createPropertyDescriptor(1, value));\n} : function (object, key, value) {\n object[key] = value;\n return object;\n};\n","module.exports = function (exec) {\n try {\n return !!exec();\n } catch (error) {\n return true;\n }\n};\n","var global = require('../internals/global');\nvar createNonEnumerableProperty = require('../internals/create-non-enumerable-property');\nvar has = require('../internals/has');\nvar setGlobal = require('../internals/set-global');\nvar inspectSource = require('../internals/inspect-source');\nvar InternalStateModule = require('../internals/internal-state');\n\nvar getInternalState = InternalStateModule.get;\nvar enforceInternalState = InternalStateModule.enforce;\nvar TEMPLATE = String(String).split('String');\n\n(module.exports = function (O, key, value, options) {\n var unsafe = options ? !!options.unsafe : false;\n var simple = options ? !!options.enumerable : false;\n var noTargetGet = options ? !!options.noTargetGet : false;\n if (typeof value == 'function') {\n if (typeof key == 'string' && !has(value, 'name')) createNonEnumerableProperty(value, 'name', key);\n enforceInternalState(value).source = TEMPLATE.join(typeof key == 'string' ? key : '');\n }\n if (O === global) {\n if (simple) O[key] = value;\n else setGlobal(key, value);\n return;\n } else if (!unsafe) {\n delete O[key];\n } else if (!noTargetGet && O[key]) {\n simple = true;\n }\n if (simple) O[key] = value;\n else createNonEnumerableProperty(O, key, value);\n// add fake Function#toString for correct work wrapped methods / constructors with methods like LoDash isNative\n})(Function.prototype, 'toString', function toString() {\n return typeof this == 'function' && getInternalState(this).source || inspectSource(this);\n});\n","module.exports = {};\n","var isObject = require('../internals/is-object');\n\nmodule.exports = function (it) {\n if (!isObject(it)) {\n throw TypeError(String(it) + ' is not an object');\n } return it;\n};\n","module.exports = function (it) {\n return typeof it === 'object' ? it !== null : typeof it === 'function';\n};\n","var hasOwnProperty = {}.hasOwnProperty;\n\nmodule.exports = function (it, key) {\n return hasOwnProperty.call(it, key);\n};\n","var global = require('../internals/global');\nvar getOwnPropertyDescriptor = require('../internals/object-get-own-property-descriptor').f;\nvar createNonEnumerableProperty = require('../internals/create-non-enumerable-property');\nvar redefine = require('../internals/redefine');\nvar setGlobal = require('../internals/set-global');\nvar copyConstructorProperties = require('../internals/copy-constructor-properties');\nvar isForced = require('../internals/is-forced');\n\n/*\n options.target - name of the target object\n options.global - target is the global object\n options.stat - export as static methods of target\n options.proto - export as prototype methods of target\n options.real - real prototype method for the `pure` version\n options.forced - export even if the native feature is available\n options.bind - bind methods to the target, required for the `pure` version\n options.wrap - wrap constructors to preventing global pollution, required for the `pure` version\n options.unsafe - use the simple assignment of property instead of delete + defineProperty\n options.sham - add a flag to not completely full polyfills\n options.enumerable - export as enumerable property\n options.noTargetGet - prevent calling a getter on target\n*/\nmodule.exports = function (options, source) {\n var TARGET = options.target;\n var GLOBAL = options.global;\n var STATIC = options.stat;\n var FORCED, target, key, targetProperty, sourceProperty, descriptor;\n if (GLOBAL) {\n target = global;\n } else if (STATIC) {\n target = global[TARGET] || setGlobal(TARGET, {});\n } else {\n target = (global[TARGET] || {}).prototype;\n }\n if (target) for (key in source) {\n sourceProperty = source[key];\n if (options.noTargetGet) {\n descriptor = getOwnPropertyDescriptor(target, key);\n targetProperty = descriptor && descriptor.value;\n } else targetProperty = target[key];\n FORCED = isForced(GLOBAL ? key : TARGET + (STATIC ? '.' : '#') + key, options.forced);\n // contained in target\n if (!FORCED && targetProperty !== undefined) {\n if (typeof sourceProperty === typeof targetProperty) continue;\n copyConstructorProperties(sourceProperty, targetProperty);\n }\n // add a flag to not completely full polyfills\n if (options.sham || (targetProperty && targetProperty.sham)) {\n createNonEnumerableProperty(sourceProperty, 'sham', true);\n }\n // extend global\n redefine(target, key, sourceProperty, options);\n }\n};\n","module.exports = function (bitmap, value) {\n return {\n enumerable: !(bitmap & 1),\n configurable: !(bitmap & 2),\n writable: !(bitmap & 4),\n value: value\n };\n};\n","// toObject with fallback for non-array-like ES3 strings\nvar IndexedObject = require('../internals/indexed-object');\nvar requireObjectCoercible = require('../internals/require-object-coercible');\n\nmodule.exports = function (it) {\n return IndexedObject(requireObjectCoercible(it));\n};\n","var NATIVE_WEAK_MAP = require('../internals/native-weak-map');\nvar global = require('../internals/global');\nvar isObject = require('../internals/is-object');\nvar createNonEnumerableProperty = require('../internals/create-non-enumerable-property');\nvar objectHas = require('../internals/has');\nvar sharedKey = require('../internals/shared-key');\nvar hiddenKeys = require('../internals/hidden-keys');\n\nvar WeakMap = global.WeakMap;\nvar set, get, has;\n\nvar enforce = function (it) {\n return has(it) ? get(it) : set(it, {});\n};\n\nvar getterFor = function (TYPE) {\n return function (it) {\n var state;\n if (!isObject(it) || (state = get(it)).type !== TYPE) {\n throw TypeError('Incompatible receiver, ' + TYPE + ' required');\n } return state;\n };\n};\n\nif (NATIVE_WEAK_MAP) {\n var store = new WeakMap();\n var wmget = store.get;\n var wmhas = store.has;\n var wmset = store.set;\n set = function (it, metadata) {\n wmset.call(store, it, metadata);\n return metadata;\n };\n get = function (it) {\n return wmget.call(store, it) || {};\n };\n has = function (it) {\n return wmhas.call(store, it);\n };\n} else {\n var STATE = sharedKey('state');\n hiddenKeys[STATE] = true;\n set = function (it, metadata) {\n createNonEnumerableProperty(it, STATE, metadata);\n return metadata;\n };\n get = function (it) {\n return objectHas(it, STATE) ? it[STATE] : {};\n };\n has = function (it) {\n return objectHas(it, STATE);\n };\n}\n\nmodule.exports = {\n set: set,\n get: get,\n has: has,\n enforce: enforce,\n getterFor: getterFor\n};\n","module.exports = {};\n","var path = require('../internals/path');\nvar global = require('../internals/global');\n\nvar aFunction = function (variable) {\n return typeof variable == 'function' ? variable : undefined;\n};\n\nmodule.exports = function (namespace, method) {\n return arguments.length < 2 ? aFunction(path[namespace]) || aFunction(global[namespace])\n : path[namespace] && path[namespace][method] || global[namespace] && global[namespace][method];\n};\n","var toInteger = require('../internals/to-integer');\n\nvar min = Math.min;\n\n// `ToLength` abstract operation\n// https://tc39.github.io/ecma262/#sec-tolength\nmodule.exports = function (argument) {\n return argument > 0 ? min(toInteger(argument), 0x1FFFFFFFFFFFFF) : 0; // 2 ** 53 - 1 == 9007199254740991\n};\n","var global = require('../internals/global');\nvar getOwnPropertyDescriptor = require('../internals/object-get-own-property-descriptor').f;\nvar createNonEnumerableProperty = require('../internals/create-non-enumerable-property');\nvar redefine = require('../internals/redefine');\nvar setGlobal = require('../internals/set-global');\nvar copyConstructorProperties = require('../internals/copy-constructor-properties');\nvar isForced = require('../internals/is-forced');\n\n/*\n options.target - name of the target object\n options.global - target is the global object\n options.stat - export as static methods of target\n options.proto - export as prototype methods of target\n options.real - real prototype method for the `pure` version\n options.forced - export even if the native feature is available\n options.bind - bind methods to the target, required for the `pure` version\n options.wrap - wrap constructors to preventing global pollution, required for the `pure` version\n options.unsafe - use the simple assignment of property instead of delete + defineProperty\n options.sham - add a flag to not completely full polyfills\n options.enumerable - export as enumerable property\n options.noTargetGet - prevent calling a getter on target\n*/\nmodule.exports = function (options, source) {\n var TARGET = options.target;\n var GLOBAL = options.global;\n var STATIC = options.stat;\n var FORCED, target, key, targetProperty, sourceProperty, descriptor;\n if (GLOBAL) {\n target = global;\n } else if (STATIC) {\n target = global[TARGET] || setGlobal(TARGET, {});\n } else {\n target = (global[TARGET] || {}).prototype;\n }\n if (target) for (key in source) {\n sourceProperty = source[key];\n if (options.noTargetGet) {\n descriptor = getOwnPropertyDescriptor(target, key);\n targetProperty = descriptor && descriptor.value;\n } else targetProperty = target[key];\n FORCED = isForced(GLOBAL ? key : TARGET + (STATIC ? '.' : '#') + key, options.forced);\n // contained in target\n if (!FORCED && targetProperty !== undefined) {\n if (typeof sourceProperty === typeof targetProperty) continue;\n copyConstructorProperties(sourceProperty, targetProperty);\n }\n // add a flag to not completely full polyfills\n if (options.sham || (targetProperty && targetProperty.sham)) {\n createNonEnumerableProperty(sourceProperty, 'sham', true);\n }\n // extend global\n redefine(target, key, sourceProperty, options);\n }\n};\n","var global = require('../internals/global');\nvar createNonEnumerableProperty = require('../internals/create-non-enumerable-property');\nvar has = require('../internals/has');\nvar setGlobal = require('../internals/set-global');\nvar inspectSource = require('../internals/inspect-source');\nvar InternalStateModule = require('../internals/internal-state');\n\nvar getInternalState = InternalStateModule.get;\nvar enforceInternalState = InternalStateModule.enforce;\nvar TEMPLATE = String(String).split('String');\n\n(module.exports = function (O, key, value, options) {\n var unsafe = options ? !!options.unsafe : false;\n var simple = options ? !!options.enumerable : false;\n var noTargetGet = options ? !!options.noTargetGet : false;\n if (typeof value == 'function') {\n if (typeof key == 'string' && !has(value, 'name')) createNonEnumerableProperty(value, 'name', key);\n enforceInternalState(value).source = TEMPLATE.join(typeof key == 'string' ? key : '');\n }\n if (O === global) {\n if (simple) O[key] = value;\n else setGlobal(key, value);\n return;\n } else if (!unsafe) {\n delete O[key];\n } else if (!noTargetGet && O[key]) {\n simple = true;\n }\n if (simple) O[key] = value;\n else createNonEnumerableProperty(O, key, value);\n// add fake Function#toString for correct work wrapped methods / constructors with methods like LoDash isNative\n})(Function.prototype, 'toString', function toString() {\n return typeof this == 'function' && getInternalState(this).source || inspectSource(this);\n});\n","module.exports = {};\n","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.subscribe = subscribe;\nexports.unsubscribe = unsubscribe;\nexports.emit = emit;\n\nvar _ProxyBus = require(\"./ProxyBus\");\n\nvar _SimpleBus = require(\"./SimpleBus\");\n\nfunction getBus() {\n if (typeof window.OC !== 'undefined' && window.OC._eventBus && typeof window._nc_event_bus === 'undefined') {\n console.warn('found old event bus instance at OC._eventBus. Update your version!');\n window._nc_event_bus = window.OC._eventBus;\n } // Either use an existing event bus instance or create one\n\n\n if (typeof window._nc_event_bus !== 'undefined') {\n return new _ProxyBus.ProxyBus(window._nc_event_bus);\n } else {\n return window._nc_event_bus = new _SimpleBus.SimpleBus();\n }\n}\n\nvar bus = getBus();\n/**\n * Register an event listener\n *\n * @param name name of the event\n * @param handler callback invoked for every matching event emitted on the bus\n */\n\nfunction subscribe(name, handler) {\n bus.subscribe(name, handler);\n}\n/**\n * Unregister a previously registered event listener\n *\n * Note: doesn't work with anonymous functions (closures). Use method of an object or store listener function in variable.\n *\n * @param name name of the event\n * @param handler callback passed to `subscribed`\n */\n\n\nfunction unsubscribe(name, handler) {\n bus.unsubscribe(name, handler);\n}\n/**\n * Emit an event\n *\n * @param name name of the event\n * @param event event payload\n */\n\n\nfunction emit(name, event) {\n bus.emit(name, event);\n}\n//# sourceMappingURL=index.js.map","// shim for using process in browser\nvar process = module.exports = {};\n\n// cached from whatever global is present so that test runners that stub it\n// don't break things. But we need to wrap it in a try catch in case it is\n// wrapped in strict mode code which doesn't define any globals. It's inside a\n// function because try/catches deoptimize in certain engines.\n\nvar cachedSetTimeout;\nvar cachedClearTimeout;\n\nfunction defaultSetTimout() {\n throw new Error('setTimeout has not been defined');\n}\nfunction defaultClearTimeout () {\n throw new Error('clearTimeout has not been defined');\n}\n(function () {\n try {\n if (typeof setTimeout === 'function') {\n cachedSetTimeout = setTimeout;\n } else {\n cachedSetTimeout = defaultSetTimout;\n }\n } catch (e) {\n cachedSetTimeout = defaultSetTimout;\n }\n try {\n if (typeof clearTimeout === 'function') {\n cachedClearTimeout = clearTimeout;\n } else {\n cachedClearTimeout = defaultClearTimeout;\n }\n } catch (e) {\n cachedClearTimeout = defaultClearTimeout;\n }\n} ())\nfunction runTimeout(fun) {\n if (cachedSetTimeout === setTimeout) {\n //normal enviroments in sane situations\n return setTimeout(fun, 0);\n }\n // if setTimeout wasn't available but was latter defined\n if ((cachedSetTimeout === defaultSetTimout || !cachedSetTimeout) && setTimeout) {\n cachedSetTimeout = setTimeout;\n return setTimeout(fun, 0);\n }\n try {\n // when when somebody has screwed with setTimeout but no I.E. maddness\n return cachedSetTimeout(fun, 0);\n } catch(e){\n try {\n // When we are in I.E. but the script has been evaled so I.E. doesn't trust the global object when called normally\n return cachedSetTimeout.call(null, fun, 0);\n } catch(e){\n // same as above but when it's a version of I.E. that must have the global object for 'this', hopfully our context correct otherwise it will throw a global error\n return cachedSetTimeout.call(this, fun, 0);\n }\n }\n\n\n}\nfunction runClearTimeout(marker) {\n if (cachedClearTimeout === clearTimeout) {\n //normal enviroments in sane situations\n return clearTimeout(marker);\n }\n // if clearTimeout wasn't available but was latter defined\n if ((cachedClearTimeout === defaultClearTimeout || !cachedClearTimeout) && clearTimeout) {\n cachedClearTimeout = clearTimeout;\n return clearTimeout(marker);\n }\n try {\n // when when somebody has screwed with setTimeout but no I.E. maddness\n return cachedClearTimeout(marker);\n } catch (e){\n try {\n // When we are in I.E. but the script has been evaled so I.E. doesn't trust the global object when called normally\n return cachedClearTimeout.call(null, marker);\n } catch (e){\n // same as above but when it's a version of I.E. that must have the global object for 'this', hopfully our context correct otherwise it will throw a global error.\n // Some versions of I.E. have different rules for clearTimeout vs setTimeout\n return cachedClearTimeout.call(this, marker);\n }\n }\n\n\n\n}\nvar queue = [];\nvar draining = false;\nvar currentQueue;\nvar queueIndex = -1;\n\nfunction cleanUpNextTick() {\n if (!draining || !currentQueue) {\n return;\n }\n draining = false;\n if (currentQueue.length) {\n queue = currentQueue.concat(queue);\n } else {\n queueIndex = -1;\n }\n if (queue.length) {\n drainQueue();\n }\n}\n\nfunction drainQueue() {\n if (draining) {\n return;\n }\n var timeout = runTimeout(cleanUpNextTick);\n draining = true;\n\n var len = queue.length;\n while(len) {\n currentQueue = queue;\n queue = [];\n while (++queueIndex < len) {\n if (currentQueue) {\n currentQueue[queueIndex].run();\n }\n }\n queueIndex = -1;\n len = queue.length;\n }\n currentQueue = null;\n draining = false;\n runClearTimeout(timeout);\n}\n\nprocess.nextTick = function (fun) {\n var args = new Array(arguments.length - 1);\n if (arguments.length > 1) {\n for (var i = 1; i < arguments.length; i++) {\n args[i - 1] = arguments[i];\n }\n }\n queue.push(new Item(fun, args));\n if (queue.length === 1 && !draining) {\n runTimeout(drainQueue);\n }\n};\n\n// v8 likes predictible objects\nfunction Item(fun, array) {\n this.fun = fun;\n this.array = array;\n}\nItem.prototype.run = function () {\n this.fun.apply(null, this.array);\n};\nprocess.title = 'browser';\nprocess.browser = true;\nprocess.env = {};\nprocess.argv = [];\nprocess.version = ''; // empty string to avoid regexp issues\nprocess.versions = {};\n\nfunction noop() {}\n\nprocess.on = noop;\nprocess.addListener = noop;\nprocess.once = noop;\nprocess.off = noop;\nprocess.removeListener = noop;\nprocess.removeAllListeners = noop;\nprocess.emit = noop;\nprocess.prependListener = noop;\nprocess.prependOnceListener = noop;\n\nprocess.listeners = function (name) { return [] }\n\nprocess.binding = function (name) {\n throw new Error('process.binding is not supported');\n};\n\nprocess.cwd = function () { return '/' };\nprocess.chdir = function (dir) {\n throw new Error('process.chdir is not supported');\n};\nprocess.umask = function() { return 0; };\n","var toString = {}.toString;\n\nmodule.exports = function (it) {\n return toString.call(it).slice(8, -1);\n};\n","// `RequireObjectCoercible` abstract operation\n// https://tc39.github.io/ecma262/#sec-requireobjectcoercible\nmodule.exports = function (it) {\n if (it == undefined) throw TypeError(\"Can't call method on \" + it);\n return it;\n};\n","var isObject = require('../internals/is-object');\n\n// `ToPrimitive` abstract operation\n// https://tc39.github.io/ecma262/#sec-toprimitive\n// instead of the ES6 spec version, we didn't implement @@toPrimitive case\n// and the second argument - flag - preferred type is a string\nmodule.exports = function (input, PREFERRED_STRING) {\n if (!isObject(input)) return input;\n var fn, val;\n if (PREFERRED_STRING && typeof (fn = input.toString) == 'function' && !isObject(val = fn.call(input))) return val;\n if (typeof (fn = input.valueOf) == 'function' && !isObject(val = fn.call(input))) return val;\n if (!PREFERRED_STRING && typeof (fn = input.toString) == 'function' && !isObject(val = fn.call(input))) return val;\n throw TypeError(\"Can't convert object to primitive value\");\n};\n","var global = require('../internals/global');\nvar createNonEnumerableProperty = require('../internals/create-non-enumerable-property');\n\nmodule.exports = function (key, value) {\n try {\n createNonEnumerableProperty(global, key, value);\n } catch (error) {\n global[key] = value;\n } return value;\n};\n","var shared = require('../internals/shared');\nvar uid = require('../internals/uid');\n\nvar keys = shared('keys');\n\nmodule.exports = function (key) {\n return keys[key] || (keys[key] = uid(key));\n};\n","module.exports = false;\n","var id = 0;\nvar postfix = Math.random();\n\nmodule.exports = function (key) {\n return 'Symbol(' + String(key === undefined ? '' : key) + ')_' + (++id + postfix).toString(36);\n};\n","var ceil = Math.ceil;\nvar floor = Math.floor;\n\n// `ToInteger` abstract operation\n// https://tc39.github.io/ecma262/#sec-tointeger\nmodule.exports = function (argument) {\n return isNaN(argument = +argument) ? 0 : (argument > 0 ? floor : ceil)(argument);\n};\n","// IE8- don't enum bug keys\nmodule.exports = [\n 'constructor',\n 'hasOwnProperty',\n 'isPrototypeOf',\n 'propertyIsEnumerable',\n 'toLocaleString',\n 'toString',\n 'valueOf'\n];\n","var requireObjectCoercible = require('../internals/require-object-coercible');\n\n// `ToObject` abstract operation\n// https://tc39.github.io/ecma262/#sec-toobject\nmodule.exports = function (argument) {\n return Object(requireObjectCoercible(argument));\n};\n","var aFunction = require('../internals/a-function');\n\n// optional / simple context binding\nmodule.exports = function (fn, that, length) {\n aFunction(fn);\n if (that === undefined) return fn;\n switch (length) {\n case 0: return function () {\n return fn.call(that);\n };\n case 1: return function (a) {\n return fn.call(that, a);\n };\n case 2: return function (a, b) {\n return fn.call(that, a, b);\n };\n case 3: return function (a, b, c) {\n return fn.call(that, a, b, c);\n };\n }\n return function (/* ...args */) {\n return fn.apply(that, arguments);\n };\n};\n","var anObject = require('../internals/an-object');\nvar defineProperties = require('../internals/object-define-properties');\nvar enumBugKeys = require('../internals/enum-bug-keys');\nvar hiddenKeys = require('../internals/hidden-keys');\nvar html = require('../internals/html');\nvar documentCreateElement = require('../internals/document-create-element');\nvar sharedKey = require('../internals/shared-key');\n\nvar GT = '>';\nvar LT = '<';\nvar PROTOTYPE = 'prototype';\nvar SCRIPT = 'script';\nvar IE_PROTO = sharedKey('IE_PROTO');\n\nvar EmptyConstructor = function () { /* empty */ };\n\nvar scriptTag = function (content) {\n return LT + SCRIPT + GT + content + LT + '/' + SCRIPT + GT;\n};\n\n// Create object with fake `null` prototype: use ActiveX Object with cleared prototype\nvar NullProtoObjectViaActiveX = function (activeXDocument) {\n activeXDocument.write(scriptTag(''));\n activeXDocument.close();\n var temp = activeXDocument.parentWindow.Object;\n activeXDocument = null; // avoid memory leak\n return temp;\n};\n\n// Create object with fake `null` prototype: use iframe Object with cleared prototype\nvar NullProtoObjectViaIFrame = function () {\n // Thrash, waste and sodomy: IE GC bug\n var iframe = documentCreateElement('iframe');\n var JS = 'java' + SCRIPT + ':';\n var iframeDocument;\n iframe.style.display = 'none';\n html.appendChild(iframe);\n // https://github.com/zloirock/core-js/issues/475\n iframe.src = String(JS);\n iframeDocument = iframe.contentWindow.document;\n iframeDocument.open();\n iframeDocument.write(scriptTag('document.F=Object'));\n iframeDocument.close();\n return iframeDocument.F;\n};\n\n// Check for document.domain and active x support\n// No need to use active x approach when document.domain is not set\n// see https://github.com/es-shims/es5-shim/issues/150\n// variation of https://github.com/kitcambridge/es5-shim/commit/4f738ac066346\n// avoid IE GC bug\nvar activeXDocument;\nvar NullProtoObject = function () {\n try {\n /* global ActiveXObject */\n activeXDocument = document.domain && new ActiveXObject('htmlfile');\n } catch (error) { /* ignore */ }\n NullProtoObject = activeXDocument ? NullProtoObjectViaActiveX(activeXDocument) : NullProtoObjectViaIFrame();\n var length = enumBugKeys.length;\n while (length--) delete NullProtoObject[PROTOTYPE][enumBugKeys[length]];\n return NullProtoObject();\n};\n\nhiddenKeys[IE_PROTO] = true;\n\n// `Object.create` method\n// https://tc39.github.io/ecma262/#sec-object.create\nmodule.exports = Object.create || function create(O, Properties) {\n var result;\n if (O !== null) {\n EmptyConstructor[PROTOTYPE] = anObject(O);\n result = new EmptyConstructor();\n EmptyConstructor[PROTOTYPE] = null;\n // add \"__proto__\" for Object.getPrototypeOf polyfill\n result[IE_PROTO] = O;\n } else result = NullProtoObject();\n return Properties === undefined ? result : defineProperties(result, Properties);\n};\n","'use strict';\nvar $ = require('../internals/export');\nvar createIteratorConstructor = require('../internals/create-iterator-constructor');\nvar getPrototypeOf = require('../internals/object-get-prototype-of');\nvar setPrototypeOf = require('../internals/object-set-prototype-of');\nvar setToStringTag = require('../internals/set-to-string-tag');\nvar createNonEnumerableProperty = require('../internals/create-non-enumerable-property');\nvar redefine = require('../internals/redefine');\nvar wellKnownSymbol = require('../internals/well-known-symbol');\nvar IS_PURE = require('../internals/is-pure');\nvar Iterators = require('../internals/iterators');\nvar IteratorsCore = require('../internals/iterators-core');\n\nvar IteratorPrototype = IteratorsCore.IteratorPrototype;\nvar BUGGY_SAFARI_ITERATORS = IteratorsCore.BUGGY_SAFARI_ITERATORS;\nvar ITERATOR = wellKnownSymbol('iterator');\nvar KEYS = 'keys';\nvar VALUES = 'values';\nvar ENTRIES = 'entries';\n\nvar returnThis = function () { return this; };\n\nmodule.exports = function (Iterable, NAME, IteratorConstructor, next, DEFAULT, IS_SET, FORCED) {\n createIteratorConstructor(IteratorConstructor, NAME, next);\n\n var getIterationMethod = function (KIND) {\n if (KIND === DEFAULT && defaultIterator) return defaultIterator;\n if (!BUGGY_SAFARI_ITERATORS && KIND in IterablePrototype) return IterablePrototype[KIND];\n switch (KIND) {\n case KEYS: return function keys() { return new IteratorConstructor(this, KIND); };\n case VALUES: return function values() { return new IteratorConstructor(this, KIND); };\n case ENTRIES: return function entries() { return new IteratorConstructor(this, KIND); };\n } return function () { return new IteratorConstructor(this); };\n };\n\n var TO_STRING_TAG = NAME + ' Iterator';\n var INCORRECT_VALUES_NAME = false;\n var IterablePrototype = Iterable.prototype;\n var nativeIterator = IterablePrototype[ITERATOR]\n || IterablePrototype['@@iterator']\n || DEFAULT && IterablePrototype[DEFAULT];\n var defaultIterator = !BUGGY_SAFARI_ITERATORS && nativeIterator || getIterationMethod(DEFAULT);\n var anyNativeIterator = NAME == 'Array' ? IterablePrototype.entries || nativeIterator : nativeIterator;\n var CurrentIteratorPrototype, methods, KEY;\n\n // fix native\n if (anyNativeIterator) {\n CurrentIteratorPrototype = getPrototypeOf(anyNativeIterator.call(new Iterable()));\n if (IteratorPrototype !== Object.prototype && CurrentIteratorPrototype.next) {\n if (!IS_PURE && getPrototypeOf(CurrentIteratorPrototype) !== IteratorPrototype) {\n if (setPrototypeOf) {\n setPrototypeOf(CurrentIteratorPrototype, IteratorPrototype);\n } else if (typeof CurrentIteratorPrototype[ITERATOR] != 'function') {\n createNonEnumerableProperty(CurrentIteratorPrototype, ITERATOR, returnThis);\n }\n }\n // Set @@toStringTag to native iterators\n setToStringTag(CurrentIteratorPrototype, TO_STRING_TAG, true, true);\n if (IS_PURE) Iterators[TO_STRING_TAG] = returnThis;\n }\n }\n\n // fix Array#{values, @@iterator}.name in V8 / FF\n if (DEFAULT == VALUES && nativeIterator && nativeIterator.name !== VALUES) {\n INCORRECT_VALUES_NAME = true;\n defaultIterator = function values() { return nativeIterator.call(this); };\n }\n\n // define iterator\n if ((!IS_PURE || FORCED) && IterablePrototype[ITERATOR] !== defaultIterator) {\n createNonEnumerableProperty(IterablePrototype, ITERATOR, defaultIterator);\n }\n Iterators[NAME] = defaultIterator;\n\n // export additional methods\n if (DEFAULT) {\n methods = {\n values: getIterationMethod(VALUES),\n keys: IS_SET ? defaultIterator : getIterationMethod(KEYS),\n entries: getIterationMethod(ENTRIES)\n };\n if (FORCED) for (KEY in methods) {\n if (BUGGY_SAFARI_ITERATORS || INCORRECT_VALUES_NAME || !(KEY in IterablePrototype)) {\n redefine(IterablePrototype, KEY, methods[KEY]);\n }\n } else $({ target: NAME, proto: true, forced: BUGGY_SAFARI_ITERATORS || INCORRECT_VALUES_NAME }, methods);\n }\n\n return methods;\n};\n","var defineProperty = require('../internals/object-define-property').f;\nvar has = require('../internals/has');\nvar wellKnownSymbol = require('../internals/well-known-symbol');\n\nvar TO_STRING_TAG = wellKnownSymbol('toStringTag');\n\nmodule.exports = function (it, TAG, STATIC) {\n if (it && !has(it = STATIC ? it : it.prototype, TO_STRING_TAG)) {\n defineProperty(it, TO_STRING_TAG, { configurable: true, value: TAG });\n }\n};\n","var wellKnownSymbol = require('../internals/well-known-symbol');\n\nvar TO_STRING_TAG = wellKnownSymbol('toStringTag');\nvar test = {};\n\ntest[TO_STRING_TAG] = 'z';\n\nmodule.exports = String(test) === '[object z]';\n","var fails = require('../internals/fails');\n\n// Thank's IE8 for his funny defineProperty\nmodule.exports = !fails(function () {\n return Object.defineProperty({}, 'a', { get: function () { return 7; } }).a != 7;\n});\n","var DESCRIPTORS = require('../internals/descriptors');\nvar definePropertyModule = require('../internals/object-define-property');\nvar createPropertyDescriptor = require('../internals/create-property-descriptor');\n\nmodule.exports = DESCRIPTORS ? function (object, key, value) {\n return definePropertyModule.f(object, key, createPropertyDescriptor(1, value));\n} : function (object, key, value) {\n object[key] = value;\n return object;\n};\n","module.exports = function (bitmap, value) {\n return {\n enumerable: !(bitmap & 1),\n configurable: !(bitmap & 2),\n writable: !(bitmap & 4),\n value: value\n };\n};\n","// toObject with fallback for non-array-like ES3 strings\nvar IndexedObject = require('../internals/indexed-object');\nvar requireObjectCoercible = require('../internals/require-object-coercible');\n\nmodule.exports = function (it) {\n return IndexedObject(requireObjectCoercible(it));\n};\n","var NATIVE_WEAK_MAP = require('../internals/native-weak-map');\nvar global = require('../internals/global');\nvar isObject = require('../internals/is-object');\nvar createNonEnumerableProperty = require('../internals/create-non-enumerable-property');\nvar objectHas = require('../internals/has');\nvar sharedKey = require('../internals/shared-key');\nvar hiddenKeys = require('../internals/hidden-keys');\n\nvar WeakMap = global.WeakMap;\nvar set, get, has;\n\nvar enforce = function (it) {\n return has(it) ? get(it) : set(it, {});\n};\n\nvar getterFor = function (TYPE) {\n return function (it) {\n var state;\n if (!isObject(it) || (state = get(it)).type !== TYPE) {\n throw TypeError('Incompatible receiver, ' + TYPE + ' required');\n } return state;\n };\n};\n\nif (NATIVE_WEAK_MAP) {\n var store = new WeakMap();\n var wmget = store.get;\n var wmhas = store.has;\n var wmset = store.set;\n set = function (it, metadata) {\n wmset.call(store, it, metadata);\n return metadata;\n };\n get = function (it) {\n return wmget.call(store, it) || {};\n };\n has = function (it) {\n return wmhas.call(store, it);\n };\n} else {\n var STATE = sharedKey('state');\n hiddenKeys[STATE] = true;\n set = function (it, metadata) {\n createNonEnumerableProperty(it, STATE, metadata);\n return metadata;\n };\n get = function (it) {\n return objectHas(it, STATE) ? it[STATE] : {};\n };\n has = function (it) {\n return objectHas(it, STATE);\n };\n}\n\nmodule.exports = {\n set: set,\n get: get,\n has: has,\n enforce: enforce,\n getterFor: getterFor\n};\n","module.exports = {};\n","var path = require('../internals/path');\nvar global = require('../internals/global');\n\nvar aFunction = function (variable) {\n return typeof variable == 'function' ? variable : undefined;\n};\n\nmodule.exports = function (namespace, method) {\n return arguments.length < 2 ? aFunction(path[namespace]) || aFunction(global[namespace])\n : path[namespace] && path[namespace][method] || global[namespace] && global[namespace][method];\n};\n","var toInteger = require('../internals/to-integer');\n\nvar min = Math.min;\n\n// `ToLength` abstract operation\n// https://tc39.github.io/ecma262/#sec-tolength\nmodule.exports = function (argument) {\n return argument > 0 ? min(toInteger(argument), 0x1FFFFFFFFFFFFF) : 0; // 2 ** 53 - 1 == 9007199254740991\n};\n","var requireObjectCoercible = require('../internals/require-object-coercible');\n\n// `ToObject` abstract operation\n// https://tc39.github.io/ecma262/#sec-toobject\nmodule.exports = function (argument) {\n return Object(requireObjectCoercible(argument));\n};\n","\"use strict\";\n\n/*\n MIT License http://www.opensource.org/licenses/mit-license.php\n Author Tobias Koppers @sokra\n*/\n// css base code, injected by the css-loader\n// eslint-disable-next-line func-names\nmodule.exports = function (useSourceMap) {\n var list = []; // return the list of modules as css string\n\n list.toString = function toString() {\n return this.map(function (item) {\n var content = cssWithMappingToString(item, useSourceMap);\n\n if (item[2]) {\n return \"@media \".concat(item[2], \" {\").concat(content, \"}\");\n }\n\n return content;\n }).join('');\n }; // import a list of modules into the list\n // eslint-disable-next-line func-names\n\n\n list.i = function (modules, mediaQuery) {\n if (typeof modules === 'string') {\n // eslint-disable-next-line no-param-reassign\n modules = [[null, modules, '']];\n }\n\n for (var i = 0; i < modules.length; i++) {\n var item = [].concat(modules[i]);\n\n if (mediaQuery) {\n if (!item[2]) {\n item[2] = mediaQuery;\n } else {\n item[2] = \"\".concat(mediaQuery, \" and \").concat(item[2]);\n }\n }\n\n list.push(item);\n }\n };\n\n return list;\n};\n\nfunction cssWithMappingToString(item, useSourceMap) {\n var content = item[1] || ''; // eslint-disable-next-line prefer-destructuring\n\n var cssMapping = item[3];\n\n if (!cssMapping) {\n return content;\n }\n\n if (useSourceMap && typeof btoa === 'function') {\n var sourceMapping = toComment(cssMapping);\n var sourceURLs = cssMapping.sources.map(function (source) {\n return \"/*# sourceURL=\".concat(cssMapping.sourceRoot || '').concat(source, \" */\");\n });\n return [content].concat(sourceURLs).concat([sourceMapping]).join('\\n');\n }\n\n return [content].join('\\n');\n} // Adapted from convert-source-map (MIT)\n\n\nfunction toComment(sourceMap) {\n // eslint-disable-next-line no-undef\n var base64 = btoa(unescape(encodeURIComponent(JSON.stringify(sourceMap))));\n var data = \"sourceMappingURL=data:application/json;charset=utf-8;base64,\".concat(base64);\n return \"/*# \".concat(data, \" */\");\n}","/**\n * Translates the list format produced by css-loader into something\n * easier to manipulate.\n */\nexport default function listToStyles (parentId, list) {\n var styles = []\n var newStyles = {}\n for (var i = 0; i < list.length; i++) {\n var item = list[i]\n var id = item[0]\n var css = item[1]\n var media = item[2]\n var sourceMap = item[3]\n var part = {\n id: parentId + ':' + i,\n css: css,\n media: media,\n sourceMap: sourceMap\n }\n if (!newStyles[id]) {\n styles.push(newStyles[id] = { id: id, parts: [part] })\n } else {\n newStyles[id].parts.push(part)\n }\n }\n return styles\n}\n","/*\n MIT License http://www.opensource.org/licenses/mit-license.php\n Author Tobias Koppers @sokra\n Modified by Evan You @yyx990803\n*/\n\nimport listToStyles from './listToStyles'\n\nvar hasDocument = typeof document !== 'undefined'\n\nif (typeof DEBUG !== 'undefined' && DEBUG) {\n if (!hasDocument) {\n throw new Error(\n 'vue-style-loader cannot be used in a non-browser environment. ' +\n \"Use { target: 'node' } in your Webpack config to indicate a server-rendering environment.\"\n ) }\n}\n\n/*\ntype StyleObject = {\n id: number;\n parts: Array<StyleObjectPart>\n}\n\ntype StyleObjectPart = {\n css: string;\n media: string;\n sourceMap: ?string\n}\n*/\n\nvar stylesInDom = {/*\n [id: number]: {\n id: number,\n refs: number,\n parts: Array<(obj?: StyleObjectPart) => void>\n }\n*/}\n\nvar head = hasDocument && (document.head || document.getElementsByTagName('head')[0])\nvar singletonElement = null\nvar singletonCounter = 0\nvar isProduction = false\nvar noop = function () {}\nvar options = null\nvar ssrIdKey = 'data-vue-ssr-id'\n\n// Force single-tag solution on IE6-9, which has a hard limit on the # of <style>\n// tags it will allow on a page\nvar isOldIE = typeof navigator !== 'undefined' && /msie [6-9]\\b/.test(navigator.userAgent.toLowerCase())\n\nexport default function addStylesClient (parentId, list, _isProduction, _options) {\n isProduction = _isProduction\n\n options = _options || {}\n\n var styles = listToStyles(parentId, list)\n addStylesToDom(styles)\n\n return function update (newList) {\n var mayRemove = []\n for (var i = 0; i < styles.length; i++) {\n var item = styles[i]\n var domStyle = stylesInDom[item.id]\n domStyle.refs--\n mayRemove.push(domStyle)\n }\n if (newList) {\n styles = listToStyles(parentId, newList)\n addStylesToDom(styles)\n } else {\n styles = []\n }\n for (var i = 0; i < mayRemove.length; i++) {\n var domStyle = mayRemove[i]\n if (domStyle.refs === 0) {\n for (var j = 0; j < domStyle.parts.length; j++) {\n domStyle.parts[j]()\n }\n delete stylesInDom[domStyle.id]\n }\n }\n }\n}\n\nfunction addStylesToDom (styles /* Array<StyleObject> */) {\n for (var i = 0; i < styles.length; i++) {\n var item = styles[i]\n var domStyle = stylesInDom[item.id]\n if (domStyle) {\n domStyle.refs++\n for (var j = 0; j < domStyle.parts.length; j++) {\n domStyle.parts[j](item.parts[j])\n }\n for (; j < item.parts.length; j++) {\n domStyle.parts.push(addStyle(item.parts[j]))\n }\n if (domStyle.parts.length > item.parts.length) {\n domStyle.parts.length = item.parts.length\n }\n } else {\n var parts = []\n for (var j = 0; j < item.parts.length; j++) {\n parts.push(addStyle(item.parts[j]))\n }\n stylesInDom[item.id] = { id: item.id, refs: 1, parts: parts }\n }\n }\n}\n\nfunction createStyleElement () {\n var styleElement = document.createElement('style')\n styleElement.type = 'text/css'\n head.appendChild(styleElement)\n return styleElement\n}\n\nfunction addStyle (obj /* StyleObjectPart */) {\n var update, remove\n var styleElement = document.querySelector('style[' + ssrIdKey + '~=\"' + obj.id + '\"]')\n\n if (styleElement) {\n if (isProduction) {\n // has SSR styles and in production mode.\n // simply do nothing.\n return noop\n } else {\n // has SSR styles but in dev mode.\n // for some reason Chrome can't handle source map in server-rendered\n // style tags - source maps in <style> only works if the style tag is\n // created and inserted dynamically. So we remove the server rendered\n // styles and inject new ones.\n styleElement.parentNode.removeChild(styleElement)\n }\n }\n\n if (isOldIE) {\n // use singleton mode for IE9.\n var styleIndex = singletonCounter++\n styleElement = singletonElement || (singletonElement = createStyleElement())\n update = applyToSingletonTag.bind(null, styleElement, styleIndex, false)\n remove = applyToSingletonTag.bind(null, styleElement, styleIndex, true)\n } else {\n // use multi-style-tag mode in all other cases\n styleElement = createStyleElement()\n update = applyToTag.bind(null, styleElement)\n remove = function () {\n styleElement.parentNode.removeChild(styleElement)\n }\n }\n\n update(obj)\n\n return function updateStyle (newObj /* StyleObjectPart */) {\n if (newObj) {\n if (newObj.css === obj.css &&\n newObj.media === obj.media &&\n newObj.sourceMap === obj.sourceMap) {\n return\n }\n update(obj = newObj)\n } else {\n remove()\n }\n }\n}\n\nvar replaceText = (function () {\n var textStore = []\n\n return function (index, replacement) {\n textStore[index] = replacement\n return textStore.filter(Boolean).join('\\n')\n }\n})()\n\nfunction applyToSingletonTag (styleElement, index, remove, obj) {\n var css = remove ? '' : obj.css\n\n if (styleElement.styleSheet) {\n styleElement.styleSheet.cssText = replaceText(index, css)\n } else {\n var cssNode = document.createTextNode(css)\n var childNodes = styleElement.childNodes\n if (childNodes[index]) styleElement.removeChild(childNodes[index])\n if (childNodes.length) {\n styleElement.insertBefore(cssNode, childNodes[index])\n } else {\n styleElement.appendChild(cssNode)\n }\n }\n}\n\nfunction applyToTag (styleElement, obj) {\n var css = obj.css\n var media = obj.media\n var sourceMap = obj.sourceMap\n\n if (media) {\n styleElement.setAttribute('media', media)\n }\n if (options.ssrId) {\n styleElement.setAttribute(ssrIdKey, obj.id)\n }\n\n if (sourceMap) {\n // https://developer.chrome.com/devtools/docs/javascript-debugging\n // this makes source maps inside style tags work properly in Chrome\n css += '\\n/*# sourceURL=' + sourceMap.sources[0] + ' */'\n // http://stackoverflow.com/a/26603875\n css += '\\n/*# sourceMappingURL=data:application/json;base64,' + btoa(unescape(encodeURIComponent(JSON.stringify(sourceMap)))) + ' */'\n }\n\n if (styleElement.styleSheet) {\n styleElement.styleSheet.cssText = css\n } else {\n while (styleElement.firstChild) {\n styleElement.removeChild(styleElement.firstChild)\n }\n styleElement.appendChild(document.createTextNode(css))\n }\n}\n","module.exports = function (bitmap, value) {\n return {\n enumerable: !(bitmap & 1),\n configurable: !(bitmap & 2),\n writable: !(bitmap & 4),\n value: value\n };\n};\n","// toObject with fallback for non-array-like ES3 strings\nvar IndexedObject = require('../internals/indexed-object');\nvar requireObjectCoercible = require('../internals/require-object-coercible');\n\nmodule.exports = function (it) {\n return IndexedObject(requireObjectCoercible(it));\n};\n","var isObject = require('../internals/is-object');\n\n// `ToPrimitive` abstract operation\n// https://tc39.github.io/ecma262/#sec-toprimitive\n// instead of the ES6 spec version, we didn't implement @@toPrimitive case\n// and the second argument - flag - preferred type is a string\nmodule.exports = function (input, PREFERRED_STRING) {\n if (!isObject(input)) return input;\n var fn, val;\n if (PREFERRED_STRING && typeof (fn = input.toString) == 'function' && !isObject(val = fn.call(input))) return val;\n if (typeof (fn = input.valueOf) == 'function' && !isObject(val = fn.call(input))) return val;\n if (!PREFERRED_STRING && typeof (fn = input.toString) == 'function' && !isObject(val = fn.call(input))) return val;\n throw TypeError(\"Can't convert object to primitive value\");\n};\n","var DESCRIPTORS = require('../internals/descriptors');\nvar IE8_DOM_DEFINE = require('../internals/ie8-dom-define');\nvar anObject = require('../internals/an-object');\nvar toPrimitive = require('../internals/to-primitive');\n\nvar nativeDefineProperty = Object.defineProperty;\n\n// `Object.defineProperty` method\n// https://tc39.github.io/ecma262/#sec-object.defineproperty\nexports.f = DESCRIPTORS ? nativeDefineProperty : function defineProperty(O, P, Attributes) {\n anObject(O);\n P = toPrimitive(P, true);\n anObject(Attributes);\n if (IE8_DOM_DEFINE) try {\n return nativeDefineProperty(O, P, Attributes);\n } catch (error) { /* empty */ }\n if ('get' in Attributes || 'set' in Attributes) throw TypeError('Accessors not supported');\n if ('value' in Attributes) O[P] = Attributes.value;\n return O;\n};\n","var global = require('../internals/global');\nvar createNonEnumerableProperty = require('../internals/create-non-enumerable-property');\n\nmodule.exports = function (key, value) {\n try {\n createNonEnumerableProperty(global, key, value);\n } catch (error) {\n global[key] = value;\n } return value;\n};\n","var global = require('../internals/global');\nvar shared = require('../internals/shared');\nvar has = require('../internals/has');\nvar uid = require('../internals/uid');\nvar NATIVE_SYMBOL = require('../internals/native-symbol');\nvar USE_SYMBOL_AS_UID = require('../internals/use-symbol-as-uid');\n\nvar WellKnownSymbolsStore = shared('wks');\nvar Symbol = global.Symbol;\nvar createWellKnownSymbol = USE_SYMBOL_AS_UID ? Symbol : Symbol && Symbol.withoutSetter || uid;\n\nmodule.exports = function (name) {\n if (!has(WellKnownSymbolsStore, name)) {\n if (NATIVE_SYMBOL && has(Symbol, name)) WellKnownSymbolsStore[name] = Symbol[name];\n else WellKnownSymbolsStore[name] = createWellKnownSymbol('Symbol.' + name);\n } return WellKnownSymbolsStore[name];\n};\n","var DESCRIPTORS = require('../internals/descriptors');\nvar propertyIsEnumerableModule = require('../internals/object-property-is-enumerable');\nvar createPropertyDescriptor = require('../internals/create-property-descriptor');\nvar toIndexedObject = require('../internals/to-indexed-object');\nvar toPrimitive = require('../internals/to-primitive');\nvar has = require('../internals/has');\nvar IE8_DOM_DEFINE = require('../internals/ie8-dom-define');\n\nvar nativeGetOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;\n\n// `Object.getOwnPropertyDescriptor` method\n// https://tc39.github.io/ecma262/#sec-object.getownpropertydescriptor\nexports.f = DESCRIPTORS ? nativeGetOwnPropertyDescriptor : function getOwnPropertyDescriptor(O, P) {\n O = toIndexedObject(O);\n P = toPrimitive(P, true);\n if (IE8_DOM_DEFINE) try {\n return nativeGetOwnPropertyDescriptor(O, P);\n } catch (error) { /* empty */ }\n if (has(O, P)) return createPropertyDescriptor(!propertyIsEnumerableModule.f.call(O, P), O[P]);\n};\n","var fails = require('../internals/fails');\nvar classof = require('../internals/classof-raw');\n\nvar split = ''.split;\n\n// fallback for non-array-like ES3 and non-enumerable old V8 strings\nmodule.exports = fails(function () {\n // throws an error in rhino, see https://github.com/mozilla/rhino/issues/346\n // eslint-disable-next-line no-prototype-builtins\n return !Object('z').propertyIsEnumerable(0);\n}) ? function (it) {\n return classof(it) == 'String' ? split.call(it, '') : Object(it);\n} : Object;\n","var DESCRIPTORS = require('../internals/descriptors');\nvar fails = require('../internals/fails');\nvar createElement = require('../internals/document-create-element');\n\n// Thank's IE8 for his funny defineProperty\nmodule.exports = !DESCRIPTORS && !fails(function () {\n return Object.defineProperty(createElement('div'), 'a', {\n get: function () { return 7; }\n }).a != 7;\n});\n","var global = require('../internals/global');\nvar isObject = require('../internals/is-object');\n\nvar document = global.document;\n// typeof document.createElement is 'object' in old IE\nvar EXISTS = isObject(document) && isObject(document.createElement);\n\nmodule.exports = function (it) {\n return EXISTS ? document.createElement(it) : {};\n};\n","var store = require('../internals/shared-store');\n\nvar functionToString = Function.toString;\n\n// this helper broken in `3.4.1-3.4.4`, so we can't use `shared` helper\nif (typeof store.inspectSource != 'function') {\n store.inspectSource = function (it) {\n return functionToString.call(it);\n };\n}\n\nmodule.exports = store.inspectSource;\n","var global = require('../internals/global');\nvar setGlobal = require('../internals/set-global');\n\nvar SHARED = '__core-js_shared__';\nvar store = global[SHARED] || setGlobal(SHARED, {});\n\nmodule.exports = store;\n","var IS_PURE = require('../internals/is-pure');\nvar store = require('../internals/shared-store');\n\n(module.exports = function (key, value) {\n return store[key] || (store[key] = value !== undefined ? value : {});\n})('versions', []).push({\n version: '3.6.4',\n mode: IS_PURE ? 'pure' : 'global',\n copyright: '© 2020 Denis Pushkarev (zloirock.ru)'\n});\n","var has = require('../internals/has');\nvar toIndexedObject = require('../internals/to-indexed-object');\nvar indexOf = require('../internals/array-includes').indexOf;\nvar hiddenKeys = require('../internals/hidden-keys');\n\nmodule.exports = function (object, names) {\n var O = toIndexedObject(object);\n var i = 0;\n var result = [];\n var key;\n for (key in O) !has(hiddenKeys, key) && has(O, key) && result.push(key);\n // Don't enum bug & hidden keys\n while (names.length > i) if (has(O, key = names[i++])) {\n ~indexOf(result, key) || result.push(key);\n }\n return result;\n};\n","var fails = require('../internals/fails');\n\nvar replacement = /#|\\.prototype\\./;\n\nvar isForced = function (feature, detection) {\n var value = data[normalize(feature)];\n return value == POLYFILL ? true\n : value == NATIVE ? false\n : typeof detection == 'function' ? fails(detection)\n : !!detection;\n};\n\nvar normalize = isForced.normalize = function (string) {\n return String(string).replace(replacement, '.').toLowerCase();\n};\n\nvar data = isForced.data = {};\nvar NATIVE = isForced.NATIVE = 'N';\nvar POLYFILL = isForced.POLYFILL = 'P';\n\nmodule.exports = isForced;\n","var classof = require('../internals/classof-raw');\n\n// `IsArray` abstract operation\n// https://tc39.github.io/ecma262/#sec-isarray\nmodule.exports = Array.isArray || function isArray(arg) {\n return classof(arg) == 'Array';\n};\n","var isObject = require('../internals/is-object');\nvar isArray = require('../internals/is-array');\nvar wellKnownSymbol = require('../internals/well-known-symbol');\n\nvar SPECIES = wellKnownSymbol('species');\n\n// `ArraySpeciesCreate` abstract operation\n// https://tc39.github.io/ecma262/#sec-arrayspeciescreate\nmodule.exports = function (originalArray, length) {\n var C;\n if (isArray(originalArray)) {\n C = originalArray.constructor;\n // cross-realm fallback\n if (typeof C == 'function' && (C === Array || isArray(C.prototype))) C = undefined;\n else if (isObject(C)) {\n C = C[SPECIES];\n if (C === null) C = undefined;\n }\n } return new (C === undefined ? Array : C)(length === 0 ? 0 : length);\n};\n","var fails = require('../internals/fails');\n\nmodule.exports = !!Object.getOwnPropertySymbols && !fails(function () {\n // Chrome 38 Symbol has incorrect toString conversion\n // eslint-disable-next-line no-undef\n return !String(Symbol());\n});\n","var fails = require('../internals/fails');\nvar wellKnownSymbol = require('../internals/well-known-symbol');\nvar V8_VERSION = require('../internals/engine-v8-version');\n\nvar SPECIES = wellKnownSymbol('species');\n\nmodule.exports = function (METHOD_NAME) {\n // We can't use this feature detection in V8 since it causes\n // deoptimization and serious performance degradation\n // https://github.com/zloirock/core-js/issues/677\n return V8_VERSION >= 51 || !fails(function () {\n var array = [];\n var constructor = array.constructor = {};\n constructor[SPECIES] = function () {\n return { foo: 1 };\n };\n return array[METHOD_NAME](Boolean).foo !== 1;\n });\n};\n","var global = require('../internals/global');\nvar userAgent = require('../internals/engine-user-agent');\n\nvar process = global.process;\nvar versions = process && process.versions;\nvar v8 = versions && versions.v8;\nvar match, version;\n\nif (v8) {\n match = v8.split('.');\n version = match[0] + match[1];\n} else if (userAgent) {\n match = userAgent.match(/Edge\\/(\\d+)/);\n if (!match || match[1] >= 74) {\n match = userAgent.match(/Chrome\\/(\\d+)/);\n if (match) version = match[1];\n }\n}\n\nmodule.exports = version && +version;\n","var bind = require('../internals/function-bind-context');\nvar IndexedObject = require('../internals/indexed-object');\nvar toObject = require('../internals/to-object');\nvar toLength = require('../internals/to-length');\nvar arraySpeciesCreate = require('../internals/array-species-create');\n\nvar push = [].push;\n\n// `Array.prototype.{ forEach, map, filter, some, every, find, findIndex }` methods implementation\nvar createMethod = function (TYPE) {\n var IS_MAP = TYPE == 1;\n var IS_FILTER = TYPE == 2;\n var IS_SOME = TYPE == 3;\n var IS_EVERY = TYPE == 4;\n var IS_FIND_INDEX = TYPE == 6;\n var NO_HOLES = TYPE == 5 || IS_FIND_INDEX;\n return function ($this, callbackfn, that, specificCreate) {\n var O = toObject($this);\n var self = IndexedObject(O);\n var boundFunction = bind(callbackfn, that, 3);\n var length = toLength(self.length);\n var index = 0;\n var create = specificCreate || arraySpeciesCreate;\n var target = IS_MAP ? create($this, length) : IS_FILTER ? create($this, 0) : undefined;\n var value, result;\n for (;length > index; index++) if (NO_HOLES || index in self) {\n value = self[index];\n result = boundFunction(value, index, O);\n if (TYPE) {\n if (IS_MAP) target[index] = result; // map\n else if (result) switch (TYPE) {\n case 3: return true; // some\n case 5: return value; // find\n case 6: return index; // findIndex\n case 2: push.call(target, value); // filter\n } else if (IS_EVERY) return false; // every\n }\n }\n return IS_FIND_INDEX ? -1 : IS_SOME || IS_EVERY ? IS_EVERY : target;\n };\n};\n\nmodule.exports = {\n // `Array.prototype.forEach` method\n // https://tc39.github.io/ecma262/#sec-array.prototype.foreach\n forEach: createMethod(0),\n // `Array.prototype.map` method\n // https://tc39.github.io/ecma262/#sec-array.prototype.map\n map: createMethod(1),\n // `Array.prototype.filter` method\n // https://tc39.github.io/ecma262/#sec-array.prototype.filter\n filter: createMethod(2),\n // `Array.prototype.some` method\n // https://tc39.github.io/ecma262/#sec-array.prototype.some\n some: createMethod(3),\n // `Array.prototype.every` method\n // https://tc39.github.io/ecma262/#sec-array.prototype.every\n every: createMethod(4),\n // `Array.prototype.find` method\n // https://tc39.github.io/ecma262/#sec-array.prototype.find\n find: createMethod(5),\n // `Array.prototype.findIndex` method\n // https://tc39.github.io/ecma262/#sec-array.prototype.findIndex\n findIndex: createMethod(6)\n};\n","var DESCRIPTORS = require('../internals/descriptors');\nvar fails = require('../internals/fails');\nvar has = require('../internals/has');\n\nvar defineProperty = Object.defineProperty;\nvar cache = {};\n\nvar thrower = function (it) { throw it; };\n\nmodule.exports = function (METHOD_NAME, options) {\n if (has(cache, METHOD_NAME)) return cache[METHOD_NAME];\n if (!options) options = {};\n var method = [][METHOD_NAME];\n var ACCESSORS = has(options, 'ACCESSORS') ? options.ACCESSORS : false;\n var argument0 = has(options, 0) ? options[0] : thrower;\n var argument1 = has(options, 1) ? options[1] : undefined;\n\n return cache[METHOD_NAME] = !!method && !fails(function () {\n if (ACCESSORS && !DESCRIPTORS) return true;\n var O = { length: -1 };\n\n if (ACCESSORS) defineProperty(O, 1, { enumerable: true, get: thrower });\n else O[1] = 1;\n\n method.call(O, argument0, argument1);\n });\n};\n","'use strict';\nvar toIndexedObject = require('../internals/to-indexed-object');\nvar addToUnscopables = require('../internals/add-to-unscopables');\nvar Iterators = require('../internals/iterators');\nvar InternalStateModule = require('../internals/internal-state');\nvar defineIterator = require('../internals/define-iterator');\n\nvar ARRAY_ITERATOR = 'Array Iterator';\nvar setInternalState = InternalStateModule.set;\nvar getInternalState = InternalStateModule.getterFor(ARRAY_ITERATOR);\n\n// `Array.prototype.entries` method\n// https://tc39.github.io/ecma262/#sec-array.prototype.entries\n// `Array.prototype.keys` method\n// https://tc39.github.io/ecma262/#sec-array.prototype.keys\n// `Array.prototype.values` method\n// https://tc39.github.io/ecma262/#sec-array.prototype.values\n// `Array.prototype[@@iterator]` method\n// https://tc39.github.io/ecma262/#sec-array.prototype-@@iterator\n// `CreateArrayIterator` internal method\n// https://tc39.github.io/ecma262/#sec-createarrayiterator\nmodule.exports = defineIterator(Array, 'Array', function (iterated, kind) {\n setInternalState(this, {\n type: ARRAY_ITERATOR,\n target: toIndexedObject(iterated), // target\n index: 0, // next index\n kind: kind // kind\n });\n// `%ArrayIteratorPrototype%.next` method\n// https://tc39.github.io/ecma262/#sec-%arrayiteratorprototype%.next\n}, function () {\n var state = getInternalState(this);\n var target = state.target;\n var kind = state.kind;\n var index = state.index++;\n if (!target || index >= target.length) {\n state.target = undefined;\n return { value: undefined, done: true };\n }\n if (kind == 'keys') return { value: index, done: false };\n if (kind == 'values') return { value: target[index], done: false };\n return { value: [index, target[index]], done: false };\n}, 'values');\n\n// argumentsList[@@iterator] is %ArrayProto_values%\n// https://tc39.github.io/ecma262/#sec-createunmappedargumentsobject\n// https://tc39.github.io/ecma262/#sec-createmappedargumentsobject\nIterators.Arguments = Iterators.Array;\n\n// https://tc39.github.io/ecma262/#sec-array.prototype-@@unscopables\naddToUnscopables('keys');\naddToUnscopables('values');\naddToUnscopables('entries');\n","'use strict';\nvar getPrototypeOf = require('../internals/object-get-prototype-of');\nvar createNonEnumerableProperty = require('../internals/create-non-enumerable-property');\nvar has = require('../internals/has');\nvar wellKnownSymbol = require('../internals/well-known-symbol');\nvar IS_PURE = require('../internals/is-pure');\n\nvar ITERATOR = wellKnownSymbol('iterator');\nvar BUGGY_SAFARI_ITERATORS = false;\n\nvar returnThis = function () { return this; };\n\n// `%IteratorPrototype%` object\n// https://tc39.github.io/ecma262/#sec-%iteratorprototype%-object\nvar IteratorPrototype, PrototypeOfArrayIteratorPrototype, arrayIterator;\n\nif ([].keys) {\n arrayIterator = [].keys();\n // Safari 8 has buggy iterators w/o `next`\n if (!('next' in arrayIterator)) BUGGY_SAFARI_ITERATORS = true;\n else {\n PrototypeOfArrayIteratorPrototype = getPrototypeOf(getPrototypeOf(arrayIterator));\n if (PrototypeOfArrayIteratorPrototype !== Object.prototype) IteratorPrototype = PrototypeOfArrayIteratorPrototype;\n }\n}\n\nif (IteratorPrototype == undefined) IteratorPrototype = {};\n\n// 25.1.2.1.1 %IteratorPrototype%[@@iterator]()\nif (!IS_PURE && !has(IteratorPrototype, ITERATOR)) {\n createNonEnumerableProperty(IteratorPrototype, ITERATOR, returnThis);\n}\n\nmodule.exports = {\n IteratorPrototype: IteratorPrototype,\n BUGGY_SAFARI_ITERATORS: BUGGY_SAFARI_ITERATORS\n};\n","var has = require('../internals/has');\nvar toObject = require('../internals/to-object');\nvar sharedKey = require('../internals/shared-key');\nvar CORRECT_PROTOTYPE_GETTER = require('../internals/correct-prototype-getter');\n\nvar IE_PROTO = sharedKey('IE_PROTO');\nvar ObjectPrototype = Object.prototype;\n\n// `Object.getPrototypeOf` method\n// https://tc39.github.io/ecma262/#sec-object.getprototypeof\nmodule.exports = CORRECT_PROTOTYPE_GETTER ? Object.getPrototypeOf : function (O) {\n O = toObject(O);\n if (has(O, IE_PROTO)) return O[IE_PROTO];\n if (typeof O.constructor == 'function' && O instanceof O.constructor) {\n return O.constructor.prototype;\n } return O instanceof Object ? ObjectPrototype : null;\n};\n","var anObject = require('../internals/an-object');\nvar aPossiblePrototype = require('../internals/a-possible-prototype');\n\n// `Object.setPrototypeOf` method\n// https://tc39.github.io/ecma262/#sec-object.setprototypeof\n// Works with __proto__ only. Old v8 can't work with null proto objects.\n/* eslint-disable no-proto */\nmodule.exports = Object.setPrototypeOf || ('__proto__' in {} ? function () {\n var CORRECT_SETTER = false;\n var test = {};\n var setter;\n try {\n setter = Object.getOwnPropertyDescriptor(Object.prototype, '__proto__').set;\n setter.call(test, []);\n CORRECT_SETTER = test instanceof Array;\n } catch (error) { /* empty */ }\n return function setPrototypeOf(O, proto) {\n anObject(O);\n aPossiblePrototype(proto);\n if (CORRECT_SETTER) setter.call(O, proto);\n else O.__proto__ = proto;\n return O;\n };\n}() : undefined);\n","var hiddenKeys = require('../internals/hidden-keys');\nvar isObject = require('../internals/is-object');\nvar has = require('../internals/has');\nvar defineProperty = require('../internals/object-define-property').f;\nvar uid = require('../internals/uid');\nvar FREEZING = require('../internals/freezing');\n\nvar METADATA = uid('meta');\nvar id = 0;\n\nvar isExtensible = Object.isExtensible || function () {\n return true;\n};\n\nvar setMetadata = function (it) {\n defineProperty(it, METADATA, { value: {\n objectID: 'O' + ++id, // object ID\n weakData: {} // weak collections IDs\n } });\n};\n\nvar fastKey = function (it, create) {\n // return a primitive with prefix\n if (!isObject(it)) return typeof it == 'symbol' ? it : (typeof it == 'string' ? 'S' : 'P') + it;\n if (!has(it, METADATA)) {\n // can't set metadata to uncaught frozen object\n if (!isExtensible(it)) return 'F';\n // not necessary to add metadata\n if (!create) return 'E';\n // add missing metadata\n setMetadata(it);\n // return object ID\n } return it[METADATA].objectID;\n};\n\nvar getWeakData = function (it, create) {\n if (!has(it, METADATA)) {\n // can't set metadata to uncaught frozen object\n if (!isExtensible(it)) return true;\n // not necessary to add metadata\n if (!create) return false;\n // add missing metadata\n setMetadata(it);\n // return the store of weak collections IDs\n } return it[METADATA].weakData;\n};\n\n// add metadata on freeze-family methods calling\nvar onFreeze = function (it) {\n if (FREEZING && meta.REQUIRED && isExtensible(it) && !has(it, METADATA)) setMetadata(it);\n return it;\n};\n\nvar meta = module.exports = {\n REQUIRED: false,\n fastKey: fastKey,\n getWeakData: getWeakData,\n onFreeze: onFreeze\n};\n\nhiddenKeys[METADATA] = true;\n","var anObject = require('../internals/an-object');\nvar isArrayIteratorMethod = require('../internals/is-array-iterator-method');\nvar toLength = require('../internals/to-length');\nvar bind = require('../internals/function-bind-context');\nvar getIteratorMethod = require('../internals/get-iterator-method');\nvar callWithSafeIterationClosing = require('../internals/call-with-safe-iteration-closing');\n\nvar Result = function (stopped, result) {\n this.stopped = stopped;\n this.result = result;\n};\n\nvar iterate = module.exports = function (iterable, fn, that, AS_ENTRIES, IS_ITERATOR) {\n var boundFunction = bind(fn, that, AS_ENTRIES ? 2 : 1);\n var iterator, iterFn, index, length, result, next, step;\n\n if (IS_ITERATOR) {\n iterator = iterable;\n } else {\n iterFn = getIteratorMethod(iterable);\n if (typeof iterFn != 'function') throw TypeError('Target is not iterable');\n // optimisation for array iterators\n if (isArrayIteratorMethod(iterFn)) {\n for (index = 0, length = toLength(iterable.length); length > index; index++) {\n result = AS_ENTRIES\n ? boundFunction(anObject(step = iterable[index])[0], step[1])\n : boundFunction(iterable[index]);\n if (result && result instanceof Result) return result;\n } return new Result(false);\n }\n iterator = iterFn.call(iterable);\n }\n\n next = iterator.next;\n while (!(step = next.call(iterator)).done) {\n result = callWithSafeIterationClosing(iterator, boundFunction, step.value, AS_ENTRIES);\n if (typeof result == 'object' && result && result instanceof Result) return result;\n } return new Result(false);\n};\n\niterate.stop = function (result) {\n return new Result(true, result);\n};\n","var TO_STRING_TAG_SUPPORT = require('../internals/to-string-tag-support');\nvar classofRaw = require('../internals/classof-raw');\nvar wellKnownSymbol = require('../internals/well-known-symbol');\n\nvar TO_STRING_TAG = wellKnownSymbol('toStringTag');\n// ES3 wrong here\nvar CORRECT_ARGUMENTS = classofRaw(function () { return arguments; }()) == 'Arguments';\n\n// fallback for IE11 Script Access Denied error\nvar tryGet = function (it, key) {\n try {\n return it[key];\n } catch (error) { /* empty */ }\n};\n\n// getting tag from ES6+ `Object.prototype.toString`\nmodule.exports = TO_STRING_TAG_SUPPORT ? classofRaw : function (it) {\n var O, tag, result;\n return it === undefined ? 'Undefined' : it === null ? 'Null'\n // @@toStringTag case\n : typeof (tag = tryGet(O = Object(it), TO_STRING_TAG)) == 'string' ? tag\n // builtinTag case\n : CORRECT_ARGUMENTS ? classofRaw(O)\n // ES3 arguments fallback\n : (result = classofRaw(O)) == 'Object' && typeof O.callee == 'function' ? 'Arguments' : result;\n};\n","module.exports = function (it, Constructor, name) {\n if (!(it instanceof Constructor)) {\n throw TypeError('Incorrect ' + (name ? name + ' ' : '') + 'invocation');\n } return it;\n};\n","// iterable DOM collections\n// flag - `iterable` interface - 'entries', 'keys', 'values', 'forEach' methods\nmodule.exports = {\n CSSRuleList: 0,\n CSSStyleDeclaration: 0,\n CSSValueList: 0,\n ClientRectList: 0,\n DOMRectList: 0,\n DOMStringList: 0,\n DOMTokenList: 1,\n DataTransferItemList: 0,\n FileList: 0,\n HTMLAllCollection: 0,\n HTMLCollection: 0,\n HTMLFormElement: 0,\n HTMLSelectElement: 0,\n MediaList: 0,\n MimeTypeArray: 0,\n NamedNodeMap: 0,\n NodeList: 1,\n PaintRequestList: 0,\n Plugin: 0,\n PluginArray: 0,\n SVGLengthList: 0,\n SVGNumberList: 0,\n SVGPathSegList: 0,\n SVGPointList: 0,\n SVGStringList: 0,\n SVGTransformList: 0,\n SourceBufferList: 0,\n StyleSheetList: 0,\n TextTrackCueList: 0,\n TextTrackList: 0,\n TouchList: 0\n};\n","var fails = require('../internals/fails');\nvar classof = require('../internals/classof-raw');\n\nvar split = ''.split;\n\n// fallback for non-array-like ES3 and non-enumerable old V8 strings\nmodule.exports = fails(function () {\n // throws an error in rhino, see https://github.com/mozilla/rhino/issues/346\n // eslint-disable-next-line no-prototype-builtins\n return !Object('z').propertyIsEnumerable(0);\n}) ? function (it) {\n return classof(it) == 'String' ? split.call(it, '') : Object(it);\n} : Object;\n","var toString = {}.toString;\n\nmodule.exports = function (it) {\n return toString.call(it).slice(8, -1);\n};\n","// `RequireObjectCoercible` abstract operation\n// https://tc39.github.io/ecma262/#sec-requireobjectcoercible\nmodule.exports = function (it) {\n if (it == undefined) throw TypeError(\"Can't call method on \" + it);\n return it;\n};\n","var isObject = require('../internals/is-object');\n\n// `ToPrimitive` abstract operation\n// https://tc39.github.io/ecma262/#sec-toprimitive\n// instead of the ES6 spec version, we didn't implement @@toPrimitive case\n// and the second argument - flag - preferred type is a string\nmodule.exports = function (input, PREFERRED_STRING) {\n if (!isObject(input)) return input;\n var fn, val;\n if (PREFERRED_STRING && typeof (fn = input.toString) == 'function' && !isObject(val = fn.call(input))) return val;\n if (typeof (fn = input.valueOf) == 'function' && !isObject(val = fn.call(input))) return val;\n if (!PREFERRED_STRING && typeof (fn = input.toString) == 'function' && !isObject(val = fn.call(input))) return val;\n throw TypeError(\"Can't convert object to primitive value\");\n};\n","var global = require('../internals/global');\nvar createNonEnumerableProperty = require('../internals/create-non-enumerable-property');\n\nmodule.exports = function (key, value) {\n try {\n createNonEnumerableProperty(global, key, value);\n } catch (error) {\n global[key] = value;\n } return value;\n};\n","var shared = require('../internals/shared');\nvar uid = require('../internals/uid');\n\nvar keys = shared('keys');\n\nmodule.exports = function (key) {\n return keys[key] || (keys[key] = uid(key));\n};\n","module.exports = false;\n","var id = 0;\nvar postfix = Math.random();\n\nmodule.exports = function (key) {\n return 'Symbol(' + String(key === undefined ? '' : key) + ')_' + (++id + postfix).toString(36);\n};\n","var ceil = Math.ceil;\nvar floor = Math.floor;\n\n// `ToInteger` abstract operation\n// https://tc39.github.io/ecma262/#sec-tointeger\nmodule.exports = function (argument) {\n return isNaN(argument = +argument) ? 0 : (argument > 0 ? floor : ceil)(argument);\n};\n","// IE8- don't enum bug keys\nmodule.exports = [\n 'constructor',\n 'hasOwnProperty',\n 'isPrototypeOf',\n 'propertyIsEnumerable',\n 'toLocaleString',\n 'toString',\n 'valueOf'\n];\n","var aFunction = require('../internals/a-function');\n\n// optional / simple context binding\nmodule.exports = function (fn, that, length) {\n aFunction(fn);\n if (that === undefined) return fn;\n switch (length) {\n case 0: return function () {\n return fn.call(that);\n };\n case 1: return function (a) {\n return fn.call(that, a);\n };\n case 2: return function (a, b) {\n return fn.call(that, a, b);\n };\n case 3: return function (a, b, c) {\n return fn.call(that, a, b, c);\n };\n }\n return function (/* ...args */) {\n return fn.apply(that, arguments);\n };\n};\n","var anObject = require('../internals/an-object');\nvar defineProperties = require('../internals/object-define-properties');\nvar enumBugKeys = require('../internals/enum-bug-keys');\nvar hiddenKeys = require('../internals/hidden-keys');\nvar html = require('../internals/html');\nvar documentCreateElement = require('../internals/document-create-element');\nvar sharedKey = require('../internals/shared-key');\n\nvar GT = '>';\nvar LT = '<';\nvar PROTOTYPE = 'prototype';\nvar SCRIPT = 'script';\nvar IE_PROTO = sharedKey('IE_PROTO');\n\nvar EmptyConstructor = function () { /* empty */ };\n\nvar scriptTag = function (content) {\n return LT + SCRIPT + GT + content + LT + '/' + SCRIPT + GT;\n};\n\n// Create object with fake `null` prototype: use ActiveX Object with cleared prototype\nvar NullProtoObjectViaActiveX = function (activeXDocument) {\n activeXDocument.write(scriptTag(''));\n activeXDocument.close();\n var temp = activeXDocument.parentWindow.Object;\n activeXDocument = null; // avoid memory leak\n return temp;\n};\n\n// Create object with fake `null` prototype: use iframe Object with cleared prototype\nvar NullProtoObjectViaIFrame = function () {\n // Thrash, waste and sodomy: IE GC bug\n var iframe = documentCreateElement('iframe');\n var JS = 'java' + SCRIPT + ':';\n var iframeDocument;\n iframe.style.display = 'none';\n html.appendChild(iframe);\n // https://github.com/zloirock/core-js/issues/475\n iframe.src = String(JS);\n iframeDocument = iframe.contentWindow.document;\n iframeDocument.open();\n iframeDocument.write(scriptTag('document.F=Object'));\n iframeDocument.close();\n return iframeDocument.F;\n};\n\n// Check for document.domain and active x support\n// No need to use active x approach when document.domain is not set\n// see https://github.com/es-shims/es5-shim/issues/150\n// variation of https://github.com/kitcambridge/es5-shim/commit/4f738ac066346\n// avoid IE GC bug\nvar activeXDocument;\nvar NullProtoObject = function () {\n try {\n /* global ActiveXObject */\n activeXDocument = document.domain && new ActiveXObject('htmlfile');\n } catch (error) { /* ignore */ }\n NullProtoObject = activeXDocument ? NullProtoObjectViaActiveX(activeXDocument) : NullProtoObjectViaIFrame();\n var length = enumBugKeys.length;\n while (length--) delete NullProtoObject[PROTOTYPE][enumBugKeys[length]];\n return NullProtoObject();\n};\n\nhiddenKeys[IE_PROTO] = true;\n\n// `Object.create` method\n// https://tc39.github.io/ecma262/#sec-object.create\nmodule.exports = Object.create || function create(O, Properties) {\n var result;\n if (O !== null) {\n EmptyConstructor[PROTOTYPE] = anObject(O);\n result = new EmptyConstructor();\n EmptyConstructor[PROTOTYPE] = null;\n // add \"__proto__\" for Object.getPrototypeOf polyfill\n result[IE_PROTO] = O;\n } else result = NullProtoObject();\n return Properties === undefined ? result : defineProperties(result, Properties);\n};\n","'use strict';\nvar $ = require('../internals/export');\nvar createIteratorConstructor = require('../internals/create-iterator-constructor');\nvar getPrototypeOf = require('../internals/object-get-prototype-of');\nvar setPrototypeOf = require('../internals/object-set-prototype-of');\nvar setToStringTag = require('../internals/set-to-string-tag');\nvar createNonEnumerableProperty = require('../internals/create-non-enumerable-property');\nvar redefine = require('../internals/redefine');\nvar wellKnownSymbol = require('../internals/well-known-symbol');\nvar IS_PURE = require('../internals/is-pure');\nvar Iterators = require('../internals/iterators');\nvar IteratorsCore = require('../internals/iterators-core');\n\nvar IteratorPrototype = IteratorsCore.IteratorPrototype;\nvar BUGGY_SAFARI_ITERATORS = IteratorsCore.BUGGY_SAFARI_ITERATORS;\nvar ITERATOR = wellKnownSymbol('iterator');\nvar KEYS = 'keys';\nvar VALUES = 'values';\nvar ENTRIES = 'entries';\n\nvar returnThis = function () { return this; };\n\nmodule.exports = function (Iterable, NAME, IteratorConstructor, next, DEFAULT, IS_SET, FORCED) {\n createIteratorConstructor(IteratorConstructor, NAME, next);\n\n var getIterationMethod = function (KIND) {\n if (KIND === DEFAULT && defaultIterator) return defaultIterator;\n if (!BUGGY_SAFARI_ITERATORS && KIND in IterablePrototype) return IterablePrototype[KIND];\n switch (KIND) {\n case KEYS: return function keys() { return new IteratorConstructor(this, KIND); };\n case VALUES: return function values() { return new IteratorConstructor(this, KIND); };\n case ENTRIES: return function entries() { return new IteratorConstructor(this, KIND); };\n } return function () { return new IteratorConstructor(this); };\n };\n\n var TO_STRING_TAG = NAME + ' Iterator';\n var INCORRECT_VALUES_NAME = false;\n var IterablePrototype = Iterable.prototype;\n var nativeIterator = IterablePrototype[ITERATOR]\n || IterablePrototype['@@iterator']\n || DEFAULT && IterablePrototype[DEFAULT];\n var defaultIterator = !BUGGY_SAFARI_ITERATORS && nativeIterator || getIterationMethod(DEFAULT);\n var anyNativeIterator = NAME == 'Array' ? IterablePrototype.entries || nativeIterator : nativeIterator;\n var CurrentIteratorPrototype, methods, KEY;\n\n // fix native\n if (anyNativeIterator) {\n CurrentIteratorPrototype = getPrototypeOf(anyNativeIterator.call(new Iterable()));\n if (IteratorPrototype !== Object.prototype && CurrentIteratorPrototype.next) {\n if (!IS_PURE && getPrototypeOf(CurrentIteratorPrototype) !== IteratorPrototype) {\n if (setPrototypeOf) {\n setPrototypeOf(CurrentIteratorPrototype, IteratorPrototype);\n } else if (typeof CurrentIteratorPrototype[ITERATOR] != 'function') {\n createNonEnumerableProperty(CurrentIteratorPrototype, ITERATOR, returnThis);\n }\n }\n // Set @@toStringTag to native iterators\n setToStringTag(CurrentIteratorPrototype, TO_STRING_TAG, true, true);\n if (IS_PURE) Iterators[TO_STRING_TAG] = returnThis;\n }\n }\n\n // fix Array#{values, @@iterator}.name in V8 / FF\n if (DEFAULT == VALUES && nativeIterator && nativeIterator.name !== VALUES) {\n INCORRECT_VALUES_NAME = true;\n defaultIterator = function values() { return nativeIterator.call(this); };\n }\n\n // define iterator\n if ((!IS_PURE || FORCED) && IterablePrototype[ITERATOR] !== defaultIterator) {\n createNonEnumerableProperty(IterablePrototype, ITERATOR, defaultIterator);\n }\n Iterators[NAME] = defaultIterator;\n\n // export additional methods\n if (DEFAULT) {\n methods = {\n values: getIterationMethod(VALUES),\n keys: IS_SET ? defaultIterator : getIterationMethod(KEYS),\n entries: getIterationMethod(ENTRIES)\n };\n if (FORCED) for (KEY in methods) {\n if (BUGGY_SAFARI_ITERATORS || INCORRECT_VALUES_NAME || !(KEY in IterablePrototype)) {\n redefine(IterablePrototype, KEY, methods[KEY]);\n }\n } else $({ target: NAME, proto: true, forced: BUGGY_SAFARI_ITERATORS || INCORRECT_VALUES_NAME }, methods);\n }\n\n return methods;\n};\n","var defineProperty = require('../internals/object-define-property').f;\nvar has = require('../internals/has');\nvar wellKnownSymbol = require('../internals/well-known-symbol');\n\nvar TO_STRING_TAG = wellKnownSymbol('toStringTag');\n\nmodule.exports = function (it, TAG, STATIC) {\n if (it && !has(it = STATIC ? it : it.prototype, TO_STRING_TAG)) {\n defineProperty(it, TO_STRING_TAG, { configurable: true, value: TAG });\n }\n};\n","var wellKnownSymbol = require('../internals/well-known-symbol');\n\nvar TO_STRING_TAG = wellKnownSymbol('toStringTag');\nvar test = {};\n\ntest[TO_STRING_TAG] = 'z';\n\nmodule.exports = String(test) === '[object z]';\n","/* globals __VUE_SSR_CONTEXT__ */\n\n// IMPORTANT: Do NOT use ES2015 features in this file (except for modules).\n// This module is a runtime utility for cleaner component module output and will\n// be included in the final webpack user bundle.\n\nexport default function normalizeComponent (\n scriptExports,\n render,\n staticRenderFns,\n functionalTemplate,\n injectStyles,\n scopeId,\n moduleIdentifier, /* server only */\n shadowMode /* vue-cli only */\n) {\n // Vue.extend constructor export interop\n var options = typeof scriptExports === 'function'\n ? scriptExports.options\n : scriptExports\n\n // render functions\n if (render) {\n options.render = render\n options.staticRenderFns = staticRenderFns\n options._compiled = true\n }\n\n // functional template\n if (functionalTemplate) {\n options.functional = true\n }\n\n // scopedId\n if (scopeId) {\n options._scopeId = 'data-v-' + scopeId\n }\n\n var hook\n if (moduleIdentifier) { // server build\n hook = function (context) {\n // 2.3 injection\n context =\n context || // cached call\n (this.$vnode && this.$vnode.ssrContext) || // stateful\n (this.parent && this.parent.$vnode && this.parent.$vnode.ssrContext) // functional\n // 2.2 with runInNewContext: true\n if (!context && typeof __VUE_SSR_CONTEXT__ !== 'undefined') {\n context = __VUE_SSR_CONTEXT__\n }\n // inject component styles\n if (injectStyles) {\n injectStyles.call(this, context)\n }\n // register component module identifier for async chunk inferrence\n if (context && context._registeredComponents) {\n context._registeredComponents.add(moduleIdentifier)\n }\n }\n // used by ssr in case component is cached and beforeCreate\n // never gets called\n options._ssrRegister = hook\n } else if (injectStyles) {\n hook = shadowMode\n ? function () { injectStyles.call(this, this.$root.$options.shadowRoot) }\n : injectStyles\n }\n\n if (hook) {\n if (options.functional) {\n // for template-only hot-reload because in that case the render fn doesn't\n // go through the normalizer\n options._injectStyles = hook\n // register for functioal component in vue file\n var originalRender = options.render\n options.render = function renderWithStyleInjection (h, context) {\n hook.call(context)\n return originalRender(h, context)\n }\n } else {\n // inject component registration as beforeCreate hook\n var existing = options.beforeCreate\n options.beforeCreate = existing\n ? [].concat(existing, hook)\n : [hook]\n }\n }\n\n return {\n exports: scriptExports,\n options: options\n }\n}\n","\"use strict\";\n\nrequire(\"core-js/modules/es.object.assign\");\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.default = void 0;\n\nvar _axios = _interopRequireDefault(require(\"axios\"));\n\nvar _auth = require(\"@nextcloud/auth\");\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\nvar client = _axios.default.create({\n headers: {\n requesttoken: (0, _auth.getRequestToken)()\n }\n});\n\nvar cancelableClient = Object.assign(client, {\n CancelToken: _axios.default.CancelToken,\n isCancel: _axios.default.isCancel\n});\n(0, _auth.onRequestTokenUpdate)(function (token) {\n return client.defaults.headers.requesttoken = token;\n});\nvar _default = cancelableClient;\nexports.default = _default;\n//# sourceMappingURL=index.js.map","var check = function (it) {\n return it && it.Math == Math && it;\n};\n\n// https://github.com/zloirock/core-js/issues/86#issuecomment-115759028\nmodule.exports =\n // eslint-disable-next-line no-undef\n check(typeof globalThis == 'object' && globalThis) ||\n check(typeof window == 'object' && window) ||\n check(typeof self == 'object' && self) ||\n check(typeof global == 'object' && global) ||\n // eslint-disable-next-line no-new-func\n Function('return this')();\n","module.exports = function (exec) {\n try {\n return !!exec();\n } catch (error) {\n return true;\n }\n};\n","var check = function (it) {\n return it && it.Math == Math && it;\n};\n\n// https://github.com/zloirock/core-js/issues/86#issuecomment-115759028\nmodule.exports =\n // eslint-disable-next-line no-undef\n check(typeof globalThis == 'object' && globalThis) ||\n check(typeof window == 'object' && window) ||\n check(typeof self == 'object' && self) ||\n check(typeof global == 'object' && global) ||\n // eslint-disable-next-line no-new-func\n Function('return this')();\n","\"use strict\";\n\nrequire(\"core-js/modules/es.array.index-of\");\n\nrequire(\"core-js/modules/es.object.assign\");\n\nrequire(\"core-js/modules/es.object.to-string\");\n\nrequire(\"core-js/modules/es.regexp.to-string\");\n\nrequire(\"core-js/modules/es.string.replace\");\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.getRootUrl = exports.generateFilePath = exports.imagePath = exports.generateUrl = exports.generateOcsUrl = exports.generateRemoteUrl = exports.linkTo = void 0;\n\n/// <reference types=\"@nextcloud/typings\" />\n\n/**\n * Get an absolute url to a file in an app\n *\n * @param {string} app the id of the app the file belongs to\n * @param {string} file the file path relative to the app folder\n * @return {string} Absolute URL to a file\n */\nvar linkTo = function linkTo(app, file) {\n return generateFilePath(app, '', file);\n};\n/**\n * Creates a relative url for remote use\n *\n * @param {string} service id\n * @return {string} the url\n */\n\n\nexports.linkTo = linkTo;\n\nvar linkToRemoteBase = function linkToRemoteBase(service) {\n return getRootUrl() + '/remote.php/' + service;\n};\n/**\n * @brief Creates an absolute url for remote use\n * @param {string} service id\n * @return {string} the url\n */\n\n\nvar generateRemoteUrl = function generateRemoteUrl(service) {\n return window.location.protocol + '//' + window.location.host + linkToRemoteBase(service);\n};\n/**\n * Get the base path for the given OCS API service\n *\n * @param {string} service name\n * @param {int} version OCS API version\n * @return {string} OCS API base path\n */\n\n\nexports.generateRemoteUrl = generateRemoteUrl;\n\nvar generateOcsUrl = function generateOcsUrl(service, version) {\n version = version !== 2 ? 1 : 2;\n return window.location.protocol + '//' + window.location.host + getRootUrl() + '/ocs/v' + version + '.php/' + service + '/';\n};\n\nexports.generateOcsUrl = generateOcsUrl;\n\n/**\n * Generate the absolute url for the given relative url, which can contain parameters\n *\n * Parameters will be URL encoded automatically\n *\n * @return {string} Absolute URL for the given relative URL\n */\nvar generateUrl = function generateUrl(url, params, options) {\n var allOptions = Object.assign({\n escape: true,\n noRewrite: false\n }, options || {});\n\n var _build = function _build(text, vars) {\n vars = vars || {};\n return text.replace(/{([^{}]*)}/g, function (a, b) {\n var r = vars[b];\n\n if (allOptions.escape) {\n return typeof r === 'string' || typeof r === 'number' ? encodeURIComponent(r.toString()) : encodeURIComponent(a);\n } else {\n return typeof r === 'string' || typeof r === 'number' ? r.toString() : a;\n }\n });\n };\n\n if (url.charAt(0) !== '/') {\n url = '/' + url;\n }\n\n if (OC.config.modRewriteWorking === true && !allOptions.noRewrite) {\n return getRootUrl() + _build(url, params || {});\n }\n\n return getRootUrl() + '/index.php' + _build(url, params || {});\n};\n/**\n * Get the absolute path to an image file\n * if no extension is given for the image, it will automatically decide\n * between .png and .svg based on what the browser supports\n *\n * @param {string} app the app id to which the image belongs\n * @param {string} file the name of the image file\n * @return {string}\n */\n\n\nexports.generateUrl = generateUrl;\n\nvar imagePath = function imagePath(app, file) {\n if (file.indexOf('.') === -1) {\n //if no extension is given, use svg\n return generateFilePath(app, 'img', file + '.svg');\n }\n\n return generateFilePath(app, 'img', file);\n};\n/**\n * Get the absolute url for a file in an app\n *\n * @param {string} app the id of the app\n * @param {string} type the type of the file to link to (e.g. css,img,ajax.template)\n * @param {string} file the filename\n * @return {string} Absolute URL for a file in an app\n */\n\n\nexports.imagePath = imagePath;\n\nvar generateFilePath = function generateFilePath(app, type, file) {\n var isCore = OC.coreApps.indexOf(app) !== -1;\n var link = getRootUrl();\n\n if (file.substring(file.length - 3) === 'php' && !isCore) {\n link += '/index.php/apps/' + app;\n\n if (file !== 'index.php') {\n link += '/';\n\n if (type) {\n link += encodeURI(type + '/');\n }\n\n link += file;\n }\n } else if (file.substring(file.length - 3) !== 'php' && !isCore) {\n link = OC.appswebroots[app];\n\n if (type) {\n link += '/' + type + '/';\n }\n\n if (link.substring(link.length - 1) !== '/') {\n link += '/';\n }\n\n link += file;\n } else {\n if ((app === 'settings' || app === 'core' || app === 'search') && type === 'ajax') {\n link += '/index.php/';\n } else {\n link += '/';\n }\n\n if (!isCore) {\n link += 'apps/';\n }\n\n if (app !== '') {\n app += '/';\n link += app;\n }\n\n if (type) {\n link += type + '/';\n }\n\n link += file;\n }\n\n return link;\n};\n/**\n * Return the web root path where this Nextcloud instance\n * is accessible, with a leading slash.\n * For example \"/nextcloud\".\n *\n * @return {string} web root path\n */\n\n\nexports.generateFilePath = generateFilePath;\n\nvar getRootUrl = function getRootUrl() {\n return OC.webroot;\n};\n\nexports.getRootUrl = getRootUrl;\n//# sourceMappingURL=index.js.map","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.getLocale = getLocale;\nexports.getLanguage = getLanguage;\nexports.translate = translate;\nexports.translatePlural = translatePlural;\nexports.getFirstDay = getFirstDay;\nexports.getDayNames = getDayNames;\nexports.getDayNamesShort = getDayNamesShort;\nexports.getDayNamesMin = getDayNamesMin;\nexports.getMonthNames = getMonthNames;\nexports.getMonthNamesShort = getMonthNamesShort;\n\n/// <reference types=\"@nextcloud/typings\" />\n\n/**\n * Returns the user's locale\n */\nfunction getLocale() {\n if (typeof OC === 'undefined') {\n console.warn('No OC found');\n return 'en';\n }\n\n return OC.getLocale();\n}\n/**\n * Returns the user's language\n */\n\n\nfunction getLanguage() {\n if (typeof OC === 'undefined') {\n console.warn('No OC found');\n return 'en';\n }\n\n return OC.getLanguage();\n}\n\n/**\n * Translate a string\n *\n * @param {string} app the id of the app for which to translate the string\n * @param {string} text the string to translate\n * @param {object} vars map of placeholder key to value\n * @param {number} number to replace %n with\n * @param {object} [options] options object\n * @return {string}\n */\nfunction translate(app, text, vars, count, options) {\n if (typeof OC === 'undefined') {\n console.warn('No OC found');\n return text;\n }\n\n return OC.L10N.translate(app, text, vars, count, options);\n}\n/**\n * Translate a plural string\n *\n * @param {string} app the id of the app for which to translate the string\n * @param {string} textSingular the string to translate for exactly one object\n * @param {string} textPlural the string to translate for n objects\n * @param {number} count number to determine whether to use singular or plural\n * @param {Object} vars of placeholder key to value\n * @param {object} options options object\n * @return {string}\n */\n\n\nfunction translatePlural(app, textSingular, textPlural, count, vars, options) {\n if (typeof OC === 'undefined') {\n console.warn('No OC found');\n return textSingular;\n }\n\n return OC.L10N.translatePlural(app, textSingular, textPlural, count, vars, options);\n}\n/**\n * Get the first day of the week\n *\n * @return {number}\n */\n\n\nfunction getFirstDay() {\n if (typeof window.firstDay === 'undefined') {\n console.warn('No firstDay found');\n return 1;\n }\n\n return window.firstDay;\n}\n/**\n * Get a list of day names (full names)\n *\n * @return {string[]}\n */\n\n\nfunction getDayNames() {\n if (typeof window.dayNames === 'undefined') {\n console.warn('No dayNames found');\n return ['Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', 'Saturday'];\n }\n\n return window.dayNames;\n}\n/**\n * Get a list of day names (short names)\n *\n * @return {string[]}\n */\n\n\nfunction getDayNamesShort() {\n if (typeof window.dayNamesShort === 'undefined') {\n console.warn('No dayNamesShort found');\n return ['Sun.', 'Mon.', 'Tue.', 'Wed.', 'Thu.', 'Fri.', 'Sat.'];\n }\n\n return window.dayNamesShort;\n}\n/**\n * Get a list of day names (minified names)\n *\n * @return {string[]}\n */\n\n\nfunction getDayNamesMin() {\n if (typeof window.dayNamesMin === 'undefined') {\n console.warn('No dayNamesMin found');\n return ['Su', 'Mo', 'Tu', 'We', 'Th', 'Fr', 'Sa'];\n }\n\n return window.dayNamesMin;\n}\n/**\n * Get a list of month names (full names)\n *\n * @return {string[]}\n */\n\n\nfunction getMonthNames() {\n if (typeof window.monthNames === 'undefined') {\n console.warn('No monthNames found');\n return ['January', 'February', 'March', 'April', 'May', 'June', 'July', 'August', 'September', 'October', 'November', 'December'];\n }\n\n return window.monthNames;\n}\n/**\n * Get a list of month names (short names)\n *\n * @return {string[]}\n */\n\n\nfunction getMonthNamesShort() {\n if (typeof window.monthNamesShort === 'undefined') {\n console.warn('No monthNamesShort found');\n return ['Jan.', 'Feb.', 'Mar.', 'Apr.', 'May.', 'Jun.', 'Jul.', 'Aug.', 'Sep.', 'Oct.', 'Nov.', 'Dec.'];\n }\n\n return window.monthNamesShort;\n}\n//# sourceMappingURL=index.js.map","var DESCRIPTORS = require('../internals/descriptors');\nvar propertyIsEnumerableModule = require('../internals/object-property-is-enumerable');\nvar createPropertyDescriptor = require('../internals/create-property-descriptor');\nvar toIndexedObject = require('../internals/to-indexed-object');\nvar toPrimitive = require('../internals/to-primitive');\nvar has = require('../internals/has');\nvar IE8_DOM_DEFINE = require('../internals/ie8-dom-define');\n\nvar nativeGetOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;\n\n// `Object.getOwnPropertyDescriptor` method\n// https://tc39.github.io/ecma262/#sec-object.getownpropertydescriptor\nexports.f = DESCRIPTORS ? nativeGetOwnPropertyDescriptor : function getOwnPropertyDescriptor(O, P) {\n O = toIndexedObject(O);\n P = toPrimitive(P, true);\n if (IE8_DOM_DEFINE) try {\n return nativeGetOwnPropertyDescriptor(O, P);\n } catch (error) { /* empty */ }\n if (has(O, P)) return createPropertyDescriptor(!propertyIsEnumerableModule.f.call(O, P), O[P]);\n};\n","var toString = {}.toString;\n\nmodule.exports = function (it) {\n return toString.call(it).slice(8, -1);\n};\n","// `RequireObjectCoercible` abstract operation\n// https://tc39.github.io/ecma262/#sec-requireobjectcoercible\nmodule.exports = function (it) {\n if (it == undefined) throw TypeError(\"Can't call method on \" + it);\n return it;\n};\n","var DESCRIPTORS = require('../internals/descriptors');\nvar fails = require('../internals/fails');\nvar createElement = require('../internals/document-create-element');\n\n// Thank's IE8 for his funny defineProperty\nmodule.exports = !DESCRIPTORS && !fails(function () {\n return Object.defineProperty(createElement('div'), 'a', {\n get: function () { return 7; }\n }).a != 7;\n});\n","var isObject = require('../internals/is-object');\n\nmodule.exports = function (it) {\n if (!isObject(it)) {\n throw TypeError(String(it) + ' is not an object');\n } return it;\n};\n","var store = require('../internals/shared-store');\n\nvar functionToString = Function.toString;\n\n// this helper broken in `3.4.1-3.4.4`, so we can't use `shared` helper\nif (typeof store.inspectSource != 'function') {\n store.inspectSource = function (it) {\n return functionToString.call(it);\n };\n}\n\nmodule.exports = store.inspectSource;\n","var global = require('../internals/global');\nvar setGlobal = require('../internals/set-global');\n\nvar SHARED = '__core-js_shared__';\nvar store = global[SHARED] || setGlobal(SHARED, {});\n\nmodule.exports = store;\n","var IS_PURE = require('../internals/is-pure');\nvar store = require('../internals/shared-store');\n\n(module.exports = function (key, value) {\n return store[key] || (store[key] = value !== undefined ? value : {});\n})('versions', []).push({\n version: '3.6.1',\n mode: IS_PURE ? 'pure' : 'global',\n copyright: '© 2019 Denis Pushkarev (zloirock.ru)'\n});\n","var id = 0;\nvar postfix = Math.random();\n\nmodule.exports = function (key) {\n return 'Symbol(' + String(key === undefined ? '' : key) + ')_' + (++id + postfix).toString(36);\n};\n","module.exports = {};\n","var path = require('../internals/path');\nvar global = require('../internals/global');\n\nvar aFunction = function (variable) {\n return typeof variable == 'function' ? variable : undefined;\n};\n\nmodule.exports = function (namespace, method) {\n return arguments.length < 2 ? aFunction(path[namespace]) || aFunction(global[namespace])\n : path[namespace] && path[namespace][method] || global[namespace] && global[namespace][method];\n};\n","var toInteger = require('../internals/to-integer');\n\nvar min = Math.min;\n\n// `ToLength` abstract operation\n// https://tc39.github.io/ecma262/#sec-tolength\nmodule.exports = function (argument) {\n return argument > 0 ? min(toInteger(argument), 0x1FFFFFFFFFFFFF) : 0; // 2 ** 53 - 1 == 9007199254740991\n};\n","var ceil = Math.ceil;\nvar floor = Math.floor;\n\n// `ToInteger` abstract operation\n// https://tc39.github.io/ecma262/#sec-tointeger\nmodule.exports = function (argument) {\n return isNaN(argument = +argument) ? 0 : (argument > 0 ? floor : ceil)(argument);\n};\n","var classof = require('../internals/classof-raw');\n\n// `IsArray` abstract operation\n// https://tc39.github.io/ecma262/#sec-isarray\nmodule.exports = Array.isArray || function isArray(arg) {\n return classof(arg) == 'Array';\n};\n","var fails = require('../internals/fails');\n\nmodule.exports = !!Object.getOwnPropertySymbols && !fails(function () {\n // Chrome 38 Symbol has incorrect toString conversion\n // eslint-disable-next-line no-undef\n return !String(Symbol());\n});\n","var global = require('../internals/global');\nvar userAgent = require('../internals/user-agent');\n\nvar process = global.process;\nvar versions = process && process.versions;\nvar v8 = versions && versions.v8;\nvar match, version;\n\nif (v8) {\n match = v8.split('.');\n version = match[0] + match[1];\n} else if (userAgent) {\n match = userAgent.match(/Edge\\/(\\d+)/);\n if (!match || match[1] >= 74) {\n match = userAgent.match(/Chrome\\/(\\d+)/);\n if (match) version = match[1];\n }\n}\n\nmodule.exports = version && +version;\n","var DESCRIPTORS = require('../internals/descriptors');\nvar propertyIsEnumerableModule = require('../internals/object-property-is-enumerable');\nvar createPropertyDescriptor = require('../internals/create-property-descriptor');\nvar toIndexedObject = require('../internals/to-indexed-object');\nvar toPrimitive = require('../internals/to-primitive');\nvar has = require('../internals/has');\nvar IE8_DOM_DEFINE = require('../internals/ie8-dom-define');\n\nvar nativeGetOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;\n\n// `Object.getOwnPropertyDescriptor` method\n// https://tc39.github.io/ecma262/#sec-object.getownpropertydescriptor\nexports.f = DESCRIPTORS ? nativeGetOwnPropertyDescriptor : function getOwnPropertyDescriptor(O, P) {\n O = toIndexedObject(O);\n P = toPrimitive(P, true);\n if (IE8_DOM_DEFINE) try {\n return nativeGetOwnPropertyDescriptor(O, P);\n } catch (error) { /* empty */ }\n if (has(O, P)) return createPropertyDescriptor(!propertyIsEnumerableModule.f.call(O, P), O[P]);\n};\n","'use strict';\nvar nativePropertyIsEnumerable = {}.propertyIsEnumerable;\nvar getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;\n\n// Nashorn ~ JDK8 bug\nvar NASHORN_BUG = getOwnPropertyDescriptor && !nativePropertyIsEnumerable.call({ 1: 2 }, 1);\n\n// `Object.prototype.propertyIsEnumerable` method implementation\n// https://tc39.github.io/ecma262/#sec-object.prototype.propertyisenumerable\nexports.f = NASHORN_BUG ? function propertyIsEnumerable(V) {\n var descriptor = getOwnPropertyDescriptor(this, V);\n return !!descriptor && descriptor.enumerable;\n} : nativePropertyIsEnumerable;\n","var DESCRIPTORS = require('../internals/descriptors');\nvar fails = require('../internals/fails');\nvar createElement = require('../internals/document-create-element');\n\n// Thank's IE8 for his funny defineProperty\nmodule.exports = !DESCRIPTORS && !fails(function () {\n return Object.defineProperty(createElement('div'), 'a', {\n get: function () { return 7; }\n }).a != 7;\n});\n","var global = require('../internals/global');\nvar isObject = require('../internals/is-object');\n\nvar document = global.document;\n// typeof document.createElement is 'object' in old IE\nvar EXISTS = isObject(document) && isObject(document.createElement);\n\nmodule.exports = function (it) {\n return EXISTS ? document.createElement(it) : {};\n};\n","var store = require('../internals/shared-store');\n\nvar functionToString = Function.toString;\n\n// this helper broken in `3.4.1-3.4.4`, so we can't use `shared` helper\nif (typeof store.inspectSource != 'function') {\n store.inspectSource = function (it) {\n return functionToString.call(it);\n };\n}\n\nmodule.exports = store.inspectSource;\n","var global = require('../internals/global');\nvar setGlobal = require('../internals/set-global');\n\nvar SHARED = '__core-js_shared__';\nvar store = global[SHARED] || setGlobal(SHARED, {});\n\nmodule.exports = store;\n","var IS_PURE = require('../internals/is-pure');\nvar store = require('../internals/shared-store');\n\n(module.exports = function (key, value) {\n return store[key] || (store[key] = value !== undefined ? value : {});\n})('versions', []).push({\n version: '3.6.4',\n mode: IS_PURE ? 'pure' : 'global',\n copyright: '© 2020 Denis Pushkarev (zloirock.ru)'\n});\n","var has = require('../internals/has');\nvar toIndexedObject = require('../internals/to-indexed-object');\nvar indexOf = require('../internals/array-includes').indexOf;\nvar hiddenKeys = require('../internals/hidden-keys');\n\nmodule.exports = function (object, names) {\n var O = toIndexedObject(object);\n var i = 0;\n var result = [];\n var key;\n for (key in O) !has(hiddenKeys, key) && has(O, key) && result.push(key);\n // Don't enum bug & hidden keys\n while (names.length > i) if (has(O, key = names[i++])) {\n ~indexOf(result, key) || result.push(key);\n }\n return result;\n};\n","exports.f = Object.getOwnPropertySymbols;\n","var fails = require('../internals/fails');\n\nvar replacement = /#|\\.prototype\\./;\n\nvar isForced = function (feature, detection) {\n var value = data[normalize(feature)];\n return value == POLYFILL ? true\n : value == NATIVE ? false\n : typeof detection == 'function' ? fails(detection)\n : !!detection;\n};\n\nvar normalize = isForced.normalize = function (string) {\n return String(string).replace(replacement, '.').toLowerCase();\n};\n\nvar data = isForced.data = {};\nvar NATIVE = isForced.NATIVE = 'N';\nvar POLYFILL = isForced.POLYFILL = 'P';\n\nmodule.exports = isForced;\n","var internalObjectKeys = require('../internals/object-keys-internal');\nvar enumBugKeys = require('../internals/enum-bug-keys');\n\n// `Object.keys` method\n// https://tc39.github.io/ecma262/#sec-object.keys\nmodule.exports = Object.keys || function keys(O) {\n return internalObjectKeys(O, enumBugKeys);\n};\n","'use strict';\n\nmodule.exports = function bind(fn, thisArg) {\n return function wrap() {\n var args = new Array(arguments.length);\n for (var i = 0; i < args.length; i++) {\n args[i] = arguments[i];\n }\n return fn.apply(thisArg, args);\n };\n};\n","'use strict';\n\nvar utils = require('./../utils');\n\nfunction encode(val) {\n return encodeURIComponent(val).\n replace(/%40/gi, '@').\n replace(/%3A/gi, ':').\n replace(/%24/g, '$').\n replace(/%2C/gi, ',').\n replace(/%20/g, '+').\n replace(/%5B/gi, '[').\n replace(/%5D/gi, ']');\n}\n\n/**\n * Build a URL by appending params to the end\n *\n * @param {string} url The base of the url (e.g., http://www.google.com)\n * @param {object} [params] The params to be appended\n * @returns {string} The formatted url\n */\nmodule.exports = function buildURL(url, params, paramsSerializer) {\n /*eslint no-param-reassign:0*/\n if (!params) {\n return url;\n }\n\n var serializedParams;\n if (paramsSerializer) {\n serializedParams = paramsSerializer(params);\n } else if (utils.isURLSearchParams(params)) {\n serializedParams = params.toString();\n } else {\n var parts = [];\n\n utils.forEach(params, function serialize(val, key) {\n if (val === null || typeof val === 'undefined') {\n return;\n }\n\n if (utils.isArray(val)) {\n key = key + '[]';\n } else {\n val = [val];\n }\n\n utils.forEach(val, function parseValue(v) {\n if (utils.isDate(v)) {\n v = v.toISOString();\n } else if (utils.isObject(v)) {\n v = JSON.stringify(v);\n }\n parts.push(encode(key) + '=' + encode(v));\n });\n });\n\n serializedParams = parts.join('&');\n }\n\n if (serializedParams) {\n var hashmarkIndex = url.indexOf('#');\n if (hashmarkIndex !== -1) {\n url = url.slice(0, hashmarkIndex);\n }\n\n url += (url.indexOf('?') === -1 ? '?' : '&') + serializedParams;\n }\n\n return url;\n};\n","'use strict';\n\nmodule.exports = function isCancel(value) {\n return !!(value && value.__CANCEL__);\n};\n","'use strict';\n\nvar utils = require('./utils');\nvar normalizeHeaderName = require('./helpers/normalizeHeaderName');\n\nvar DEFAULT_CONTENT_TYPE = {\n 'Content-Type': 'application/x-www-form-urlencoded'\n};\n\nfunction setContentTypeIfUnset(headers, value) {\n if (!utils.isUndefined(headers) && utils.isUndefined(headers['Content-Type'])) {\n headers['Content-Type'] = value;\n }\n}\n\nfunction getDefaultAdapter() {\n var adapter;\n if (typeof XMLHttpRequest !== 'undefined') {\n // For browsers use XHR adapter\n adapter = require('./adapters/xhr');\n } else if (typeof process !== 'undefined' && Object.prototype.toString.call(process) === '[object process]') {\n // For node use HTTP adapter\n adapter = require('./adapters/http');\n }\n return adapter;\n}\n\nvar defaults = {\n adapter: getDefaultAdapter(),\n\n transformRequest: [function transformRequest(data, headers) {\n normalizeHeaderName(headers, 'Accept');\n normalizeHeaderName(headers, 'Content-Type');\n if (utils.isFormData(data) ||\n utils.isArrayBuffer(data) ||\n utils.isBuffer(data) ||\n utils.isStream(data) ||\n utils.isFile(data) ||\n utils.isBlob(data)\n ) {\n return data;\n }\n if (utils.isArrayBufferView(data)) {\n return data.buffer;\n }\n if (utils.isURLSearchParams(data)) {\n setContentTypeIfUnset(headers, 'application/x-www-form-urlencoded;charset=utf-8');\n return data.toString();\n }\n if (utils.isObject(data)) {\n setContentTypeIfUnset(headers, 'application/json;charset=utf-8');\n return JSON.stringify(data);\n }\n return data;\n }],\n\n transformResponse: [function transformResponse(data) {\n /*eslint no-param-reassign:0*/\n if (typeof data === 'string') {\n try {\n data = JSON.parse(data);\n } catch (e) { /* Ignore */ }\n }\n return data;\n }],\n\n /**\n * A timeout in milliseconds to abort a request. If set to 0 (default) a\n * timeout is not created.\n */\n timeout: 0,\n\n xsrfCookieName: 'XSRF-TOKEN',\n xsrfHeaderName: 'X-XSRF-TOKEN',\n\n maxContentLength: -1,\n\n validateStatus: function validateStatus(status) {\n return status >= 200 && status < 300;\n }\n};\n\ndefaults.headers = {\n common: {\n 'Accept': 'application/json, text/plain, */*'\n }\n};\n\nutils.forEach(['delete', 'get', 'head'], function forEachMethodNoData(method) {\n defaults.headers[method] = {};\n});\n\nutils.forEach(['post', 'put', 'patch'], function forEachMethodWithData(method) {\n defaults.headers[method] = utils.merge(DEFAULT_CONTENT_TYPE);\n});\n\nmodule.exports = defaults;\n","'use strict';\n\nvar utils = require('./../utils');\nvar settle = require('./../core/settle');\nvar buildURL = require('./../helpers/buildURL');\nvar buildFullPath = require('../core/buildFullPath');\nvar parseHeaders = require('./../helpers/parseHeaders');\nvar isURLSameOrigin = require('./../helpers/isURLSameOrigin');\nvar createError = require('../core/createError');\n\nmodule.exports = function xhrAdapter(config) {\n return new Promise(function dispatchXhrRequest(resolve, reject) {\n var requestData = config.data;\n var requestHeaders = config.headers;\n\n if (utils.isFormData(requestData)) {\n delete requestHeaders['Content-Type']; // Let the browser set it\n }\n\n var request = new XMLHttpRequest();\n\n // HTTP basic authentication\n if (config.auth) {\n var username = config.auth.username || '';\n var password = config.auth.password || '';\n requestHeaders.Authorization = 'Basic ' + btoa(username + ':' + password);\n }\n\n var fullPath = buildFullPath(config.baseURL, config.url);\n request.open(config.method.toUpperCase(), buildURL(fullPath, config.params, config.paramsSerializer), true);\n\n // Set the request timeout in MS\n request.timeout = config.timeout;\n\n // Listen for ready state\n request.onreadystatechange = function handleLoad() {\n if (!request || request.readyState !== 4) {\n return;\n }\n\n // The request errored out and we didn't get a response, this will be\n // handled by onerror instead\n // With one exception: request that using file: protocol, most browsers\n // will return status as 0 even though it's a successful request\n if (request.status === 0 && !(request.responseURL && request.responseURL.indexOf('file:') === 0)) {\n return;\n }\n\n // Prepare the response\n var responseHeaders = 'getAllResponseHeaders' in request ? parseHeaders(request.getAllResponseHeaders()) : null;\n var responseData = !config.responseType || config.responseType === 'text' ? request.responseText : request.response;\n var response = {\n data: responseData,\n status: request.status,\n statusText: request.statusText,\n headers: responseHeaders,\n config: config,\n request: request\n };\n\n settle(resolve, reject, response);\n\n // Clean up request\n request = null;\n };\n\n // Handle browser request cancellation (as opposed to a manual cancellation)\n request.onabort = function handleAbort() {\n if (!request) {\n return;\n }\n\n reject(createError('Request aborted', config, 'ECONNABORTED', request));\n\n // Clean up request\n request = null;\n };\n\n // Handle low level network errors\n request.onerror = function handleError() {\n // Real errors are hidden from us by the browser\n // onerror should only fire if it's a network error\n reject(createError('Network Error', config, null, request));\n\n // Clean up request\n request = null;\n };\n\n // Handle timeout\n request.ontimeout = function handleTimeout() {\n var timeoutErrorMessage = 'timeout of ' + config.timeout + 'ms exceeded';\n if (config.timeoutErrorMessage) {\n timeoutErrorMessage = config.timeoutErrorMessage;\n }\n reject(createError(timeoutErrorMessage, config, 'ECONNABORTED',\n request));\n\n // Clean up request\n request = null;\n };\n\n // Add xsrf header\n // This is only done if running in a standard browser environment.\n // Specifically not if we're in a web worker, or react-native.\n if (utils.isStandardBrowserEnv()) {\n var cookies = require('./../helpers/cookies');\n\n // Add xsrf header\n var xsrfValue = (config.withCredentials || isURLSameOrigin(fullPath)) && config.xsrfCookieName ?\n cookies.read(config.xsrfCookieName) :\n undefined;\n\n if (xsrfValue) {\n requestHeaders[config.xsrfHeaderName] = xsrfValue;\n }\n }\n\n // Add headers to the request\n if ('setRequestHeader' in request) {\n utils.forEach(requestHeaders, function setRequestHeader(val, key) {\n if (typeof requestData === 'undefined' && key.toLowerCase() === 'content-type') {\n // Remove Content-Type if data is undefined\n delete requestHeaders[key];\n } else {\n // Otherwise add header to the request\n request.setRequestHeader(key, val);\n }\n });\n }\n\n // Add withCredentials to request if needed\n if (!utils.isUndefined(config.withCredentials)) {\n request.withCredentials = !!config.withCredentials;\n }\n\n // Add responseType to request if needed\n if (config.responseType) {\n try {\n request.responseType = config.responseType;\n } catch (e) {\n // Expected DOMException thrown by browsers not compatible XMLHttpRequest Level 2.\n // But, this can be suppressed for 'json' type as it can be parsed by default 'transformResponse' function.\n if (config.responseType !== 'json') {\n throw e;\n }\n }\n }\n\n // Handle progress if needed\n if (typeof config.onDownloadProgress === 'function') {\n request.addEventListener('progress', config.onDownloadProgress);\n }\n\n // Not all browsers support upload events\n if (typeof config.onUploadProgress === 'function' && request.upload) {\n request.upload.addEventListener('progress', config.onUploadProgress);\n }\n\n if (config.cancelToken) {\n // Handle cancellation\n config.cancelToken.promise.then(function onCanceled(cancel) {\n if (!request) {\n return;\n }\n\n request.abort();\n reject(cancel);\n // Clean up request\n request = null;\n });\n }\n\n if (requestData === undefined) {\n requestData = null;\n }\n\n // Send the request\n request.send(requestData);\n });\n};\n","'use strict';\n\nvar enhanceError = require('./enhanceError');\n\n/**\n * Create an Error with the specified message, config, error code, request and response.\n *\n * @param {string} message The error message.\n * @param {Object} config The config.\n * @param {string} [code] The error code (for example, 'ECONNABORTED').\n * @param {Object} [request] The request.\n * @param {Object} [response] The response.\n * @returns {Error} The created error.\n */\nmodule.exports = function createError(message, config, code, request, response) {\n var error = new Error(message);\n return enhanceError(error, config, code, request, response);\n};\n","'use strict';\n\nvar utils = require('../utils');\n\n/**\n * Config-specific merge-function which creates a new config-object\n * by merging two configuration objects together.\n *\n * @param {Object} config1\n * @param {Object} config2\n * @returns {Object} New object resulting from merging config2 to config1\n */\nmodule.exports = function mergeConfig(config1, config2) {\n // eslint-disable-next-line no-param-reassign\n config2 = config2 || {};\n var config = {};\n\n var valueFromConfig2Keys = ['url', 'method', 'params', 'data'];\n var mergeDeepPropertiesKeys = ['headers', 'auth', 'proxy'];\n var defaultToConfig2Keys = [\n 'baseURL', 'url', 'transformRequest', 'transformResponse', 'paramsSerializer',\n 'timeout', 'withCredentials', 'adapter', 'responseType', 'xsrfCookieName',\n 'xsrfHeaderName', 'onUploadProgress', 'onDownloadProgress',\n 'maxContentLength', 'validateStatus', 'maxRedirects', 'httpAgent',\n 'httpsAgent', 'cancelToken', 'socketPath'\n ];\n\n utils.forEach(valueFromConfig2Keys, function valueFromConfig2(prop) {\n if (typeof config2[prop] !== 'undefined') {\n config[prop] = config2[prop];\n }\n });\n\n utils.forEach(mergeDeepPropertiesKeys, function mergeDeepProperties(prop) {\n if (utils.isObject(config2[prop])) {\n config[prop] = utils.deepMerge(config1[prop], config2[prop]);\n } else if (typeof config2[prop] !== 'undefined') {\n config[prop] = config2[prop];\n } else if (utils.isObject(config1[prop])) {\n config[prop] = utils.deepMerge(config1[prop]);\n } else if (typeof config1[prop] !== 'undefined') {\n config[prop] = config1[prop];\n }\n });\n\n utils.forEach(defaultToConfig2Keys, function defaultToConfig2(prop) {\n if (typeof config2[prop] !== 'undefined') {\n config[prop] = config2[prop];\n } else if (typeof config1[prop] !== 'undefined') {\n config[prop] = config1[prop];\n }\n });\n\n var axiosKeys = valueFromConfig2Keys\n .concat(mergeDeepPropertiesKeys)\n .concat(defaultToConfig2Keys);\n\n var otherKeys = Object\n .keys(config2)\n .filter(function filterAxiosKeys(key) {\n return axiosKeys.indexOf(key) === -1;\n });\n\n utils.forEach(otherKeys, function otherKeysDefaultToConfig2(prop) {\n if (typeof config2[prop] !== 'undefined') {\n config[prop] = config2[prop];\n } else if (typeof config1[prop] !== 'undefined') {\n config[prop] = config1[prop];\n }\n });\n\n return config;\n};\n","'use strict';\n\n/**\n * A `Cancel` is an object that is thrown when an operation is canceled.\n *\n * @class\n * @param {string=} message The message.\n */\nfunction Cancel(message) {\n this.message = message;\n}\n\nCancel.prototype.toString = function toString() {\n return 'Cancel' + (this.message ? ': ' + this.message : '');\n};\n\nCancel.prototype.__CANCEL__ = true;\n\nmodule.exports = Cancel;\n","var classof = require('../internals/classof-raw');\n\n// `IsArray` abstract operation\n// https://tc39.github.io/ecma262/#sec-isarray\nmodule.exports = Array.isArray || function isArray(arg) {\n return classof(arg) == 'Array';\n};\n","var isObject = require('../internals/is-object');\nvar isArray = require('../internals/is-array');\nvar wellKnownSymbol = require('../internals/well-known-symbol');\n\nvar SPECIES = wellKnownSymbol('species');\n\n// `ArraySpeciesCreate` abstract operation\n// https://tc39.github.io/ecma262/#sec-arrayspeciescreate\nmodule.exports = function (originalArray, length) {\n var C;\n if (isArray(originalArray)) {\n C = originalArray.constructor;\n // cross-realm fallback\n if (typeof C == 'function' && (C === Array || isArray(C.prototype))) C = undefined;\n else if (isObject(C)) {\n C = C[SPECIES];\n if (C === null) C = undefined;\n }\n } return new (C === undefined ? Array : C)(length === 0 ? 0 : length);\n};\n","var fails = require('../internals/fails');\n\nmodule.exports = !!Object.getOwnPropertySymbols && !fails(function () {\n // Chrome 38 Symbol has incorrect toString conversion\n // eslint-disable-next-line no-undef\n return !String(Symbol());\n});\n","var fails = require('../internals/fails');\nvar wellKnownSymbol = require('../internals/well-known-symbol');\nvar V8_VERSION = require('../internals/engine-v8-version');\n\nvar SPECIES = wellKnownSymbol('species');\n\nmodule.exports = function (METHOD_NAME) {\n // We can't use this feature detection in V8 since it causes\n // deoptimization and serious performance degradation\n // https://github.com/zloirock/core-js/issues/677\n return V8_VERSION >= 51 || !fails(function () {\n var array = [];\n var constructor = array.constructor = {};\n constructor[SPECIES] = function () {\n return { foo: 1 };\n };\n return array[METHOD_NAME](Boolean).foo !== 1;\n });\n};\n","var global = require('../internals/global');\nvar userAgent = require('../internals/engine-user-agent');\n\nvar process = global.process;\nvar versions = process && process.versions;\nvar v8 = versions && versions.v8;\nvar match, version;\n\nif (v8) {\n match = v8.split('.');\n version = match[0] + match[1];\n} else if (userAgent) {\n match = userAgent.match(/Edge\\/(\\d+)/);\n if (!match || match[1] >= 74) {\n match = userAgent.match(/Chrome\\/(\\d+)/);\n if (match) version = match[1];\n }\n}\n\nmodule.exports = version && +version;\n","var bind = require('../internals/function-bind-context');\nvar IndexedObject = require('../internals/indexed-object');\nvar toObject = require('../internals/to-object');\nvar toLength = require('../internals/to-length');\nvar arraySpeciesCreate = require('../internals/array-species-create');\n\nvar push = [].push;\n\n// `Array.prototype.{ forEach, map, filter, some, every, find, findIndex }` methods implementation\nvar createMethod = function (TYPE) {\n var IS_MAP = TYPE == 1;\n var IS_FILTER = TYPE == 2;\n var IS_SOME = TYPE == 3;\n var IS_EVERY = TYPE == 4;\n var IS_FIND_INDEX = TYPE == 6;\n var NO_HOLES = TYPE == 5 || IS_FIND_INDEX;\n return function ($this, callbackfn, that, specificCreate) {\n var O = toObject($this);\n var self = IndexedObject(O);\n var boundFunction = bind(callbackfn, that, 3);\n var length = toLength(self.length);\n var index = 0;\n var create = specificCreate || arraySpeciesCreate;\n var target = IS_MAP ? create($this, length) : IS_FILTER ? create($this, 0) : undefined;\n var value, result;\n for (;length > index; index++) if (NO_HOLES || index in self) {\n value = self[index];\n result = boundFunction(value, index, O);\n if (TYPE) {\n if (IS_MAP) target[index] = result; // map\n else if (result) switch (TYPE) {\n case 3: return true; // some\n case 5: return value; // find\n case 6: return index; // findIndex\n case 2: push.call(target, value); // filter\n } else if (IS_EVERY) return false; // every\n }\n }\n return IS_FIND_INDEX ? -1 : IS_SOME || IS_EVERY ? IS_EVERY : target;\n };\n};\n\nmodule.exports = {\n // `Array.prototype.forEach` method\n // https://tc39.github.io/ecma262/#sec-array.prototype.foreach\n forEach: createMethod(0),\n // `Array.prototype.map` method\n // https://tc39.github.io/ecma262/#sec-array.prototype.map\n map: createMethod(1),\n // `Array.prototype.filter` method\n // https://tc39.github.io/ecma262/#sec-array.prototype.filter\n filter: createMethod(2),\n // `Array.prototype.some` method\n // https://tc39.github.io/ecma262/#sec-array.prototype.some\n some: createMethod(3),\n // `Array.prototype.every` method\n // https://tc39.github.io/ecma262/#sec-array.prototype.every\n every: createMethod(4),\n // `Array.prototype.find` method\n // https://tc39.github.io/ecma262/#sec-array.prototype.find\n find: createMethod(5),\n // `Array.prototype.findIndex` method\n // https://tc39.github.io/ecma262/#sec-array.prototype.findIndex\n findIndex: createMethod(6)\n};\n","var DESCRIPTORS = require('../internals/descriptors');\nvar fails = require('../internals/fails');\nvar has = require('../internals/has');\n\nvar defineProperty = Object.defineProperty;\nvar cache = {};\n\nvar thrower = function (it) { throw it; };\n\nmodule.exports = function (METHOD_NAME, options) {\n if (has(cache, METHOD_NAME)) return cache[METHOD_NAME];\n if (!options) options = {};\n var method = [][METHOD_NAME];\n var ACCESSORS = has(options, 'ACCESSORS') ? options.ACCESSORS : false;\n var argument0 = has(options, 0) ? options[0] : thrower;\n var argument1 = has(options, 1) ? options[1] : undefined;\n\n return cache[METHOD_NAME] = !!method && !fails(function () {\n if (ACCESSORS && !DESCRIPTORS) return true;\n var O = { length: -1 };\n\n if (ACCESSORS) defineProperty(O, 1, { enumerable: true, get: thrower });\n else O[1] = 1;\n\n method.call(O, argument0, argument1);\n });\n};\n","'use strict';\nvar toIndexedObject = require('../internals/to-indexed-object');\nvar addToUnscopables = require('../internals/add-to-unscopables');\nvar Iterators = require('../internals/iterators');\nvar InternalStateModule = require('../internals/internal-state');\nvar defineIterator = require('../internals/define-iterator');\n\nvar ARRAY_ITERATOR = 'Array Iterator';\nvar setInternalState = InternalStateModule.set;\nvar getInternalState = InternalStateModule.getterFor(ARRAY_ITERATOR);\n\n// `Array.prototype.entries` method\n// https://tc39.github.io/ecma262/#sec-array.prototype.entries\n// `Array.prototype.keys` method\n// https://tc39.github.io/ecma262/#sec-array.prototype.keys\n// `Array.prototype.values` method\n// https://tc39.github.io/ecma262/#sec-array.prototype.values\n// `Array.prototype[@@iterator]` method\n// https://tc39.github.io/ecma262/#sec-array.prototype-@@iterator\n// `CreateArrayIterator` internal method\n// https://tc39.github.io/ecma262/#sec-createarrayiterator\nmodule.exports = defineIterator(Array, 'Array', function (iterated, kind) {\n setInternalState(this, {\n type: ARRAY_ITERATOR,\n target: toIndexedObject(iterated), // target\n index: 0, // next index\n kind: kind // kind\n });\n// `%ArrayIteratorPrototype%.next` method\n// https://tc39.github.io/ecma262/#sec-%arrayiteratorprototype%.next\n}, function () {\n var state = getInternalState(this);\n var target = state.target;\n var kind = state.kind;\n var index = state.index++;\n if (!target || index >= target.length) {\n state.target = undefined;\n return { value: undefined, done: true };\n }\n if (kind == 'keys') return { value: index, done: false };\n if (kind == 'values') return { value: target[index], done: false };\n return { value: [index, target[index]], done: false };\n}, 'values');\n\n// argumentsList[@@iterator] is %ArrayProto_values%\n// https://tc39.github.io/ecma262/#sec-createunmappedargumentsobject\n// https://tc39.github.io/ecma262/#sec-createmappedargumentsobject\nIterators.Arguments = Iterators.Array;\n\n// https://tc39.github.io/ecma262/#sec-array.prototype-@@unscopables\naddToUnscopables('keys');\naddToUnscopables('values');\naddToUnscopables('entries');\n","'use strict';\nvar getPrototypeOf = require('../internals/object-get-prototype-of');\nvar createNonEnumerableProperty = require('../internals/create-non-enumerable-property');\nvar has = require('../internals/has');\nvar wellKnownSymbol = require('../internals/well-known-symbol');\nvar IS_PURE = require('../internals/is-pure');\n\nvar ITERATOR = wellKnownSymbol('iterator');\nvar BUGGY_SAFARI_ITERATORS = false;\n\nvar returnThis = function () { return this; };\n\n// `%IteratorPrototype%` object\n// https://tc39.github.io/ecma262/#sec-%iteratorprototype%-object\nvar IteratorPrototype, PrototypeOfArrayIteratorPrototype, arrayIterator;\n\nif ([].keys) {\n arrayIterator = [].keys();\n // Safari 8 has buggy iterators w/o `next`\n if (!('next' in arrayIterator)) BUGGY_SAFARI_ITERATORS = true;\n else {\n PrototypeOfArrayIteratorPrototype = getPrototypeOf(getPrototypeOf(arrayIterator));\n if (PrototypeOfArrayIteratorPrototype !== Object.prototype) IteratorPrototype = PrototypeOfArrayIteratorPrototype;\n }\n}\n\nif (IteratorPrototype == undefined) IteratorPrototype = {};\n\n// 25.1.2.1.1 %IteratorPrototype%[@@iterator]()\nif (!IS_PURE && !has(IteratorPrototype, ITERATOR)) {\n createNonEnumerableProperty(IteratorPrototype, ITERATOR, returnThis);\n}\n\nmodule.exports = {\n IteratorPrototype: IteratorPrototype,\n BUGGY_SAFARI_ITERATORS: BUGGY_SAFARI_ITERATORS\n};\n","var has = require('../internals/has');\nvar toObject = require('../internals/to-object');\nvar sharedKey = require('../internals/shared-key');\nvar CORRECT_PROTOTYPE_GETTER = require('../internals/correct-prototype-getter');\n\nvar IE_PROTO = sharedKey('IE_PROTO');\nvar ObjectPrototype = Object.prototype;\n\n// `Object.getPrototypeOf` method\n// https://tc39.github.io/ecma262/#sec-object.getprototypeof\nmodule.exports = CORRECT_PROTOTYPE_GETTER ? Object.getPrototypeOf : function (O) {\n O = toObject(O);\n if (has(O, IE_PROTO)) return O[IE_PROTO];\n if (typeof O.constructor == 'function' && O instanceof O.constructor) {\n return O.constructor.prototype;\n } return O instanceof Object ? ObjectPrototype : null;\n};\n","var anObject = require('../internals/an-object');\nvar aPossiblePrototype = require('../internals/a-possible-prototype');\n\n// `Object.setPrototypeOf` method\n// https://tc39.github.io/ecma262/#sec-object.setprototypeof\n// Works with __proto__ only. Old v8 can't work with null proto objects.\n/* eslint-disable no-proto */\nmodule.exports = Object.setPrototypeOf || ('__proto__' in {} ? function () {\n var CORRECT_SETTER = false;\n var test = {};\n var setter;\n try {\n setter = Object.getOwnPropertyDescriptor(Object.prototype, '__proto__').set;\n setter.call(test, []);\n CORRECT_SETTER = test instanceof Array;\n } catch (error) { /* empty */ }\n return function setPrototypeOf(O, proto) {\n anObject(O);\n aPossiblePrototype(proto);\n if (CORRECT_SETTER) setter.call(O, proto);\n else O.__proto__ = proto;\n return O;\n };\n}() : undefined);\n","var hiddenKeys = require('../internals/hidden-keys');\nvar isObject = require('../internals/is-object');\nvar has = require('../internals/has');\nvar defineProperty = require('../internals/object-define-property').f;\nvar uid = require('../internals/uid');\nvar FREEZING = require('../internals/freezing');\n\nvar METADATA = uid('meta');\nvar id = 0;\n\nvar isExtensible = Object.isExtensible || function () {\n return true;\n};\n\nvar setMetadata = function (it) {\n defineProperty(it, METADATA, { value: {\n objectID: 'O' + ++id, // object ID\n weakData: {} // weak collections IDs\n } });\n};\n\nvar fastKey = function (it, create) {\n // return a primitive with prefix\n if (!isObject(it)) return typeof it == 'symbol' ? it : (typeof it == 'string' ? 'S' : 'P') + it;\n if (!has(it, METADATA)) {\n // can't set metadata to uncaught frozen object\n if (!isExtensible(it)) return 'F';\n // not necessary to add metadata\n if (!create) return 'E';\n // add missing metadata\n setMetadata(it);\n // return object ID\n } return it[METADATA].objectID;\n};\n\nvar getWeakData = function (it, create) {\n if (!has(it, METADATA)) {\n // can't set metadata to uncaught frozen object\n if (!isExtensible(it)) return true;\n // not necessary to add metadata\n if (!create) return false;\n // add missing metadata\n setMetadata(it);\n // return the store of weak collections IDs\n } return it[METADATA].weakData;\n};\n\n// add metadata on freeze-family methods calling\nvar onFreeze = function (it) {\n if (FREEZING && meta.REQUIRED && isExtensible(it) && !has(it, METADATA)) setMetadata(it);\n return it;\n};\n\nvar meta = module.exports = {\n REQUIRED: false,\n fastKey: fastKey,\n getWeakData: getWeakData,\n onFreeze: onFreeze\n};\n\nhiddenKeys[METADATA] = true;\n","var anObject = require('../internals/an-object');\nvar isArrayIteratorMethod = require('../internals/is-array-iterator-method');\nvar toLength = require('../internals/to-length');\nvar bind = require('../internals/function-bind-context');\nvar getIteratorMethod = require('../internals/get-iterator-method');\nvar callWithSafeIterationClosing = require('../internals/call-with-safe-iteration-closing');\n\nvar Result = function (stopped, result) {\n this.stopped = stopped;\n this.result = result;\n};\n\nvar iterate = module.exports = function (iterable, fn, that, AS_ENTRIES, IS_ITERATOR) {\n var boundFunction = bind(fn, that, AS_ENTRIES ? 2 : 1);\n var iterator, iterFn, index, length, result, next, step;\n\n if (IS_ITERATOR) {\n iterator = iterable;\n } else {\n iterFn = getIteratorMethod(iterable);\n if (typeof iterFn != 'function') throw TypeError('Target is not iterable');\n // optimisation for array iterators\n if (isArrayIteratorMethod(iterFn)) {\n for (index = 0, length = toLength(iterable.length); length > index; index++) {\n result = AS_ENTRIES\n ? boundFunction(anObject(step = iterable[index])[0], step[1])\n : boundFunction(iterable[index]);\n if (result && result instanceof Result) return result;\n } return new Result(false);\n }\n iterator = iterFn.call(iterable);\n }\n\n next = iterator.next;\n while (!(step = next.call(iterator)).done) {\n result = callWithSafeIterationClosing(iterator, boundFunction, step.value, AS_ENTRIES);\n if (typeof result == 'object' && result && result instanceof Result) return result;\n } return new Result(false);\n};\n\niterate.stop = function (result) {\n return new Result(true, result);\n};\n","var TO_STRING_TAG_SUPPORT = require('../internals/to-string-tag-support');\nvar classofRaw = require('../internals/classof-raw');\nvar wellKnownSymbol = require('../internals/well-known-symbol');\n\nvar TO_STRING_TAG = wellKnownSymbol('toStringTag');\n// ES3 wrong here\nvar CORRECT_ARGUMENTS = classofRaw(function () { return arguments; }()) == 'Arguments';\n\n// fallback for IE11 Script Access Denied error\nvar tryGet = function (it, key) {\n try {\n return it[key];\n } catch (error) { /* empty */ }\n};\n\n// getting tag from ES6+ `Object.prototype.toString`\nmodule.exports = TO_STRING_TAG_SUPPORT ? classofRaw : function (it) {\n var O, tag, result;\n return it === undefined ? 'Undefined' : it === null ? 'Null'\n // @@toStringTag case\n : typeof (tag = tryGet(O = Object(it), TO_STRING_TAG)) == 'string' ? tag\n // builtinTag case\n : CORRECT_ARGUMENTS ? classofRaw(O)\n // ES3 arguments fallback\n : (result = classofRaw(O)) == 'Object' && typeof O.callee == 'function' ? 'Arguments' : result;\n};\n","module.exports = function (it, Constructor, name) {\n if (!(it instanceof Constructor)) {\n throw TypeError('Incorrect ' + (name ? name + ' ' : '') + 'invocation');\n } return it;\n};\n","// iterable DOM collections\n// flag - `iterable` interface - 'entries', 'keys', 'values', 'forEach' methods\nmodule.exports = {\n CSSRuleList: 0,\n CSSStyleDeclaration: 0,\n CSSValueList: 0,\n ClientRectList: 0,\n DOMRectList: 0,\n DOMStringList: 0,\n DOMTokenList: 1,\n DataTransferItemList: 0,\n FileList: 0,\n HTMLAllCollection: 0,\n HTMLCollection: 0,\n HTMLFormElement: 0,\n HTMLSelectElement: 0,\n MediaList: 0,\n MimeTypeArray: 0,\n NamedNodeMap: 0,\n NodeList: 1,\n PaintRequestList: 0,\n Plugin: 0,\n PluginArray: 0,\n SVGLengthList: 0,\n SVGNumberList: 0,\n SVGPathSegList: 0,\n SVGPointList: 0,\n SVGStringList: 0,\n SVGTransformList: 0,\n SourceBufferList: 0,\n StyleSheetList: 0,\n TextTrackCueList: 0,\n TextTrackList: 0,\n TouchList: 0\n};\n","\"use strict\";\n\nrequire(\"core-js/modules/es.array.concat\");\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.loadState = loadState;\n\n/**\n * @param app app ID, e.g. \"mail\"\n * @param key name of the property\n * @throws if the key can't be found\n */\nfunction loadState(app, key) {\n var elem = document.querySelector(\"#initial-state-\".concat(app, \"-\").concat(key));\n\n if (elem === null) {\n throw new Error(\"Could not find initial state \".concat(key, \" of \").concat(app));\n }\n\n try {\n return JSON.parse(atob(elem.value));\n } catch (e) {\n throw new Error(\"Could not parse initial state \".concat(key, \" of \").concat(app));\n }\n}\n//# sourceMappingURL=index.js.map","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.ProxyBus = void 0;\n\nvar _semver = _interopRequireDefault(require(\"semver\"));\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nfunction _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }\n\nfunction _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }\n\nfunction _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }\n\nvar packageJson = {\n name: \"@nextcloud/event-bus\",\n version: \"1.1.2\",\n description: \"\",\n main: \"dist/index.js\",\n types: \"dist/index.d.ts\",\n scripts: {\n build: \"babel ./lib --out-dir dist --extensions '.ts,.tsx' --source-maps && tsc --emitDeclarationOnly\",\n \"build:doc\": \"typedoc --excludeNotExported --mode file --out dist/doc lib/index.ts && touch dist/doc/.nojekyll\",\n \"check-types\": \"tsc\",\n dev: \"babel ./lib --out-dir dist --extensions '.ts,.tsx' --watch\",\n test: \"jest\",\n \"test:watch\": \"jest --watchAll\"\n },\n keywords: [\"nextcloud\"],\n homepage: \"https://github.com/nextcloud/nextcloud-event-bus#readme\",\n author: \"Christoph Wurst\",\n license: \"GPL-3.0-or-later\",\n repository: {\n type: \"git\",\n url: \"https://github.com/nextcloud/nextcloud-event-bus\"\n },\n dependencies: {\n \"@types/semver\": \"^6.2.0\",\n \"core-js\": \"^3.6.2\",\n semver: \"^6.3.0\"\n },\n devDependencies: {\n \"@babel/cli\": \"^7.6.0\",\n \"@babel/core\": \"^7.6.0\",\n \"@babel/plugin-proposal-class-properties\": \"^7.5.5\",\n \"@babel/preset-env\": \"^7.6.0\",\n \"@babel/preset-typescript\": \"^7.6.0\",\n \"@nextcloud/browserslist-config\": \"^1.0.0\",\n \"babel-jest\": \"^24.9.0\",\n \"babel-plugin-inline-json-import\": \"^0.3.2\",\n jest: \"^24.9.0\",\n typedoc: \"^0.15.7\",\n typescript: \"^3.6.3\"\n },\n browserslist: [\"extends @nextcloud/browserslist-config\"]\n};\n\nvar ProxyBus =\n/*#__PURE__*/\nfunction () {\n function ProxyBus(bus) {\n _classCallCheck(this, ProxyBus);\n\n _defineProperty(this, \"bus\", void 0);\n\n if (typeof bus.getVersion !== 'function' || !_semver.default.valid(bus.getVersion())) {\n console.warn('Proxying an event bus with an unknown or invalid version');\n } else if (_semver.default.major(bus.getVersion()) !== _semver.default.major(this.getVersion())) {\n console.warn('Proxying an event bus of version ' + bus.getVersion() + ' with ' + this.getVersion());\n }\n\n this.bus = bus;\n }\n\n _createClass(ProxyBus, [{\n key: \"getVersion\",\n value: function getVersion() {\n return packageJson.version;\n }\n }, {\n key: \"subscribe\",\n value: function subscribe(name, handler) {\n this.bus.subscribe(name, handler);\n }\n }, {\n key: \"unsubscribe\",\n value: function unsubscribe(name, handler) {\n this.bus.unsubscribe(name, handler);\n }\n }, {\n key: \"emit\",\n value: function emit(name, event) {\n this.bus.emit(name, event);\n }\n }]);\n\n return ProxyBus;\n}();\n\nexports.ProxyBus = ProxyBus;\n//# sourceMappingURL=ProxyBus.js.map","exports = module.exports = SemVer\n\nvar debug\n/* istanbul ignore next */\nif (typeof process === 'object' &&\n process.env &&\n process.env.NODE_DEBUG &&\n /\\bsemver\\b/i.test(process.env.NODE_DEBUG)) {\n debug = function () {\n var args = Array.prototype.slice.call(arguments, 0)\n args.unshift('SEMVER')\n console.log.apply(console, args)\n }\n} else {\n debug = function () {}\n}\n\n// Note: this is the semver.org version of the spec that it implements\n// Not necessarily the package version of this code.\nexports.SEMVER_SPEC_VERSION = '2.0.0'\n\nvar MAX_LENGTH = 256\nvar MAX_SAFE_INTEGER = Number.MAX_SAFE_INTEGER ||\n /* istanbul ignore next */ 9007199254740991\n\n// Max safe segment length for coercion.\nvar MAX_SAFE_COMPONENT_LENGTH = 16\n\n// The actual regexps go on exports.re\nvar re = exports.re = []\nvar src = exports.src = []\nvar t = exports.tokens = {}\nvar R = 0\n\nfunction tok (n) {\n t[n] = R++\n}\n\n// The following Regular Expressions can be used for tokenizing,\n// validating, and parsing SemVer version strings.\n\n// ## Numeric Identifier\n// A single `0`, or a non-zero digit followed by zero or more digits.\n\ntok('NUMERICIDENTIFIER')\nsrc[t.NUMERICIDENTIFIER] = '0|[1-9]\\\\d*'\ntok('NUMERICIDENTIFIERLOOSE')\nsrc[t.NUMERICIDENTIFIERLOOSE] = '[0-9]+'\n\n// ## Non-numeric Identifier\n// Zero or more digits, followed by a letter or hyphen, and then zero or\n// more letters, digits, or hyphens.\n\ntok('NONNUMERICIDENTIFIER')\nsrc[t.NONNUMERICIDENTIFIER] = '\\\\d*[a-zA-Z-][a-zA-Z0-9-]*'\n\n// ## Main Version\n// Three dot-separated numeric identifiers.\n\ntok('MAINVERSION')\nsrc[t.MAINVERSION] = '(' + src[t.NUMERICIDENTIFIER] + ')\\\\.' +\n '(' + src[t.NUMERICIDENTIFIER] + ')\\\\.' +\n '(' + src[t.NUMERICIDENTIFIER] + ')'\n\ntok('MAINVERSIONLOOSE')\nsrc[t.MAINVERSIONLOOSE] = '(' + src[t.NUMERICIDENTIFIERLOOSE] + ')\\\\.' +\n '(' + src[t.NUMERICIDENTIFIERLOOSE] + ')\\\\.' +\n '(' + src[t.NUMERICIDENTIFIERLOOSE] + ')'\n\n// ## Pre-release Version Identifier\n// A numeric identifier, or a non-numeric identifier.\n\ntok('PRERELEASEIDENTIFIER')\nsrc[t.PRERELEASEIDENTIFIER] = '(?:' + src[t.NUMERICIDENTIFIER] +\n '|' + src[t.NONNUMERICIDENTIFIER] + ')'\n\ntok('PRERELEASEIDENTIFIERLOOSE')\nsrc[t.PRERELEASEIDENTIFIERLOOSE] = '(?:' + src[t.NUMERICIDENTIFIERLOOSE] +\n '|' + src[t.NONNUMERICIDENTIFIER] + ')'\n\n// ## Pre-release Version\n// Hyphen, followed by one or more dot-separated pre-release version\n// identifiers.\n\ntok('PRERELEASE')\nsrc[t.PRERELEASE] = '(?:-(' + src[t.PRERELEASEIDENTIFIER] +\n '(?:\\\\.' + src[t.PRERELEASEIDENTIFIER] + ')*))'\n\ntok('PRERELEASELOOSE')\nsrc[t.PRERELEASELOOSE] = '(?:-?(' + src[t.PRERELEASEIDENTIFIERLOOSE] +\n '(?:\\\\.' + src[t.PRERELEASEIDENTIFIERLOOSE] + ')*))'\n\n// ## Build Metadata Identifier\n// Any combination of digits, letters, or hyphens.\n\ntok('BUILDIDENTIFIER')\nsrc[t.BUILDIDENTIFIER] = '[0-9A-Za-z-]+'\n\n// ## Build Metadata\n// Plus sign, followed by one or more period-separated build metadata\n// identifiers.\n\ntok('BUILD')\nsrc[t.BUILD] = '(?:\\\\+(' + src[t.BUILDIDENTIFIER] +\n '(?:\\\\.' + src[t.BUILDIDENTIFIER] + ')*))'\n\n// ## Full Version String\n// A main version, followed optionally by a pre-release version and\n// build metadata.\n\n// Note that the only major, minor, patch, and pre-release sections of\n// the version string are capturing groups. The build metadata is not a\n// capturing group, because it should not ever be used in version\n// comparison.\n\ntok('FULL')\ntok('FULLPLAIN')\nsrc[t.FULLPLAIN] = 'v?' + src[t.MAINVERSION] +\n src[t.PRERELEASE] + '?' +\n src[t.BUILD] + '?'\n\nsrc[t.FULL] = '^' + src[t.FULLPLAIN] + '$'\n\n// like full, but allows v1.2.3 and =1.2.3, which people do sometimes.\n// also, 1.0.0alpha1 (prerelease without the hyphen) which is pretty\n// common in the npm registry.\ntok('LOOSEPLAIN')\nsrc[t.LOOSEPLAIN] = '[v=\\\\s]*' + src[t.MAINVERSIONLOOSE] +\n src[t.PRERELEASELOOSE] + '?' +\n src[t.BUILD] + '?'\n\ntok('LOOSE')\nsrc[t.LOOSE] = '^' + src[t.LOOSEPLAIN] + '$'\n\ntok('GTLT')\nsrc[t.GTLT] = '((?:<|>)?=?)'\n\n// Something like \"2.*\" or \"1.2.x\".\n// Note that \"x.x\" is a valid xRange identifer, meaning \"any version\"\n// Only the first item is strictly required.\ntok('XRANGEIDENTIFIERLOOSE')\nsrc[t.XRANGEIDENTIFIERLOOSE] = src[t.NUMERICIDENTIFIERLOOSE] + '|x|X|\\\\*'\ntok('XRANGEIDENTIFIER')\nsrc[t.XRANGEIDENTIFIER] = src[t.NUMERICIDENTIFIER] + '|x|X|\\\\*'\n\ntok('XRANGEPLAIN')\nsrc[t.XRANGEPLAIN] = '[v=\\\\s]*(' + src[t.XRANGEIDENTIFIER] + ')' +\n '(?:\\\\.(' + src[t.XRANGEIDENTIFIER] + ')' +\n '(?:\\\\.(' + src[t.XRANGEIDENTIFIER] + ')' +\n '(?:' + src[t.PRERELEASE] + ')?' +\n src[t.BUILD] + '?' +\n ')?)?'\n\ntok('XRANGEPLAINLOOSE')\nsrc[t.XRANGEPLAINLOOSE] = '[v=\\\\s]*(' + src[t.XRANGEIDENTIFIERLOOSE] + ')' +\n '(?:\\\\.(' + src[t.XRANGEIDENTIFIERLOOSE] + ')' +\n '(?:\\\\.(' + src[t.XRANGEIDENTIFIERLOOSE] + ')' +\n '(?:' + src[t.PRERELEASELOOSE] + ')?' +\n src[t.BUILD] + '?' +\n ')?)?'\n\ntok('XRANGE')\nsrc[t.XRANGE] = '^' + src[t.GTLT] + '\\\\s*' + src[t.XRANGEPLAIN] + '$'\ntok('XRANGELOOSE')\nsrc[t.XRANGELOOSE] = '^' + src[t.GTLT] + '\\\\s*' + src[t.XRANGEPLAINLOOSE] + '$'\n\n// Coercion.\n// Extract anything that could conceivably be a part of a valid semver\ntok('COERCE')\nsrc[t.COERCE] = '(^|[^\\\\d])' +\n '(\\\\d{1,' + MAX_SAFE_COMPONENT_LENGTH + '})' +\n '(?:\\\\.(\\\\d{1,' + MAX_SAFE_COMPONENT_LENGTH + '}))?' +\n '(?:\\\\.(\\\\d{1,' + MAX_SAFE_COMPONENT_LENGTH + '}))?' +\n '(?:$|[^\\\\d])'\ntok('COERCERTL')\nre[t.COERCERTL] = new RegExp(src[t.COERCE], 'g')\n\n// Tilde ranges.\n// Meaning is \"reasonably at or greater than\"\ntok('LONETILDE')\nsrc[t.LONETILDE] = '(?:~>?)'\n\ntok('TILDETRIM')\nsrc[t.TILDETRIM] = '(\\\\s*)' + src[t.LONETILDE] + '\\\\s+'\nre[t.TILDETRIM] = new RegExp(src[t.TILDETRIM], 'g')\nvar tildeTrimReplace = '$1~'\n\ntok('TILDE')\nsrc[t.TILDE] = '^' + src[t.LONETILDE] + src[t.XRANGEPLAIN] + '$'\ntok('TILDELOOSE')\nsrc[t.TILDELOOSE] = '^' + src[t.LONETILDE] + src[t.XRANGEPLAINLOOSE] + '$'\n\n// Caret ranges.\n// Meaning is \"at least and backwards compatible with\"\ntok('LONECARET')\nsrc[t.LONECARET] = '(?:\\\\^)'\n\ntok('CARETTRIM')\nsrc[t.CARETTRIM] = '(\\\\s*)' + src[t.LONECARET] + '\\\\s+'\nre[t.CARETTRIM] = new RegExp(src[t.CARETTRIM], 'g')\nvar caretTrimReplace = '$1^'\n\ntok('CARET')\nsrc[t.CARET] = '^' + src[t.LONECARET] + src[t.XRANGEPLAIN] + '$'\ntok('CARETLOOSE')\nsrc[t.CARETLOOSE] = '^' + src[t.LONECARET] + src[t.XRANGEPLAINLOOSE] + '$'\n\n// A simple gt/lt/eq thing, or just \"\" to indicate \"any version\"\ntok('COMPARATORLOOSE')\nsrc[t.COMPARATORLOOSE] = '^' + src[t.GTLT] + '\\\\s*(' + src[t.LOOSEPLAIN] + ')$|^$'\ntok('COMPARATOR')\nsrc[t.COMPARATOR] = '^' + src[t.GTLT] + '\\\\s*(' + src[t.FULLPLAIN] + ')$|^$'\n\n// An expression to strip any whitespace between the gtlt and the thing\n// it modifies, so that `> 1.2.3` ==> `>1.2.3`\ntok('COMPARATORTRIM')\nsrc[t.COMPARATORTRIM] = '(\\\\s*)' + src[t.GTLT] +\n '\\\\s*(' + src[t.LOOSEPLAIN] + '|' + src[t.XRANGEPLAIN] + ')'\n\n// this one has to use the /g flag\nre[t.COMPARATORTRIM] = new RegExp(src[t.COMPARATORTRIM], 'g')\nvar comparatorTrimReplace = '$1$2$3'\n\n// Something like `1.2.3 - 1.2.4`\n// Note that these all use the loose form, because they'll be\n// checked against either the strict or loose comparator form\n// later.\ntok('HYPHENRANGE')\nsrc[t.HYPHENRANGE] = '^\\\\s*(' + src[t.XRANGEPLAIN] + ')' +\n '\\\\s+-\\\\s+' +\n '(' + src[t.XRANGEPLAIN] + ')' +\n '\\\\s*$'\n\ntok('HYPHENRANGELOOSE')\nsrc[t.HYPHENRANGELOOSE] = '^\\\\s*(' + src[t.XRANGEPLAINLOOSE] + ')' +\n '\\\\s+-\\\\s+' +\n '(' + src[t.XRANGEPLAINLOOSE] + ')' +\n '\\\\s*$'\n\n// Star ranges basically just allow anything at all.\ntok('STAR')\nsrc[t.STAR] = '(<|>)?=?\\\\s*\\\\*'\n\n// Compile to actual regexp objects.\n// All are flag-free, unless they were created above with a flag.\nfor (var i = 0; i < R; i++) {\n debug(i, src[i])\n if (!re[i]) {\n re[i] = new RegExp(src[i])\n }\n}\n\nexports.parse = parse\nfunction parse (version, options) {\n if (!options || typeof options !== 'object') {\n options = {\n loose: !!options,\n includePrerelease: false\n }\n }\n\n if (version instanceof SemVer) {\n return version\n }\n\n if (typeof version !== 'string') {\n return null\n }\n\n if (version.length > MAX_LENGTH) {\n return null\n }\n\n var r = options.loose ? re[t.LOOSE] : re[t.FULL]\n if (!r.test(version)) {\n return null\n }\n\n try {\n return new SemVer(version, options)\n } catch (er) {\n return null\n }\n}\n\nexports.valid = valid\nfunction valid (version, options) {\n var v = parse(version, options)\n return v ? v.version : null\n}\n\nexports.clean = clean\nfunction clean (version, options) {\n var s = parse(version.trim().replace(/^[=v]+/, ''), options)\n return s ? s.version : null\n}\n\nexports.SemVer = SemVer\n\nfunction SemVer (version, options) {\n if (!options || typeof options !== 'object') {\n options = {\n loose: !!options,\n includePrerelease: false\n }\n }\n if (version instanceof SemVer) {\n if (version.loose === options.loose) {\n return version\n } else {\n version = version.version\n }\n } else if (typeof version !== 'string') {\n throw new TypeError('Invalid Version: ' + version)\n }\n\n if (version.length > MAX_LENGTH) {\n throw new TypeError('version is longer than ' + MAX_LENGTH + ' characters')\n }\n\n if (!(this instanceof SemVer)) {\n return new SemVer(version, options)\n }\n\n debug('SemVer', version, options)\n this.options = options\n this.loose = !!options.loose\n\n var m = version.trim().match(options.loose ? re[t.LOOSE] : re[t.FULL])\n\n if (!m) {\n throw new TypeError('Invalid Version: ' + version)\n }\n\n this.raw = version\n\n // these are actually numbers\n this.major = +m[1]\n this.minor = +m[2]\n this.patch = +m[3]\n\n if (this.major > MAX_SAFE_INTEGER || this.major < 0) {\n throw new TypeError('Invalid major version')\n }\n\n if (this.minor > MAX_SAFE_INTEGER || this.minor < 0) {\n throw new TypeError('Invalid minor version')\n }\n\n if (this.patch > MAX_SAFE_INTEGER || this.patch < 0) {\n throw new TypeError('Invalid patch version')\n }\n\n // numberify any prerelease numeric ids\n if (!m[4]) {\n this.prerelease = []\n } else {\n this.prerelease = m[4].split('.').map(function (id) {\n if (/^[0-9]+$/.test(id)) {\n var num = +id\n if (num >= 0 && num < MAX_SAFE_INTEGER) {\n return num\n }\n }\n return id\n })\n }\n\n this.build = m[5] ? m[5].split('.') : []\n this.format()\n}\n\nSemVer.prototype.format = function () {\n this.version = this.major + '.' + this.minor + '.' + this.patch\n if (this.prerelease.length) {\n this.version += '-' + this.prerelease.join('.')\n }\n return this.version\n}\n\nSemVer.prototype.toString = function () {\n return this.version\n}\n\nSemVer.prototype.compare = function (other) {\n debug('SemVer.compare', this.version, this.options, other)\n if (!(other instanceof SemVer)) {\n other = new SemVer(other, this.options)\n }\n\n return this.compareMain(other) || this.comparePre(other)\n}\n\nSemVer.prototype.compareMain = function (other) {\n if (!(other instanceof SemVer)) {\n other = new SemVer(other, this.options)\n }\n\n return compareIdentifiers(this.major, other.major) ||\n compareIdentifiers(this.minor, other.minor) ||\n compareIdentifiers(this.patch, other.patch)\n}\n\nSemVer.prototype.comparePre = function (other) {\n if (!(other instanceof SemVer)) {\n other = new SemVer(other, this.options)\n }\n\n // NOT having a prerelease is > having one\n if (this.prerelease.length && !other.prerelease.length) {\n return -1\n } else if (!this.prerelease.length && other.prerelease.length) {\n return 1\n } else if (!this.prerelease.length && !other.prerelease.length) {\n return 0\n }\n\n var i = 0\n do {\n var a = this.prerelease[i]\n var b = other.prerelease[i]\n debug('prerelease compare', i, a, b)\n if (a === undefined && b === undefined) {\n return 0\n } else if (b === undefined) {\n return 1\n } else if (a === undefined) {\n return -1\n } else if (a === b) {\n continue\n } else {\n return compareIdentifiers(a, b)\n }\n } while (++i)\n}\n\nSemVer.prototype.compareBuild = function (other) {\n if (!(other instanceof SemVer)) {\n other = new SemVer(other, this.options)\n }\n\n var i = 0\n do {\n var a = this.build[i]\n var b = other.build[i]\n debug('prerelease compare', i, a, b)\n if (a === undefined && b === undefined) {\n return 0\n } else if (b === undefined) {\n return 1\n } else if (a === undefined) {\n return -1\n } else if (a === b) {\n continue\n } else {\n return compareIdentifiers(a, b)\n }\n } while (++i)\n}\n\n// preminor will bump the version up to the next minor release, and immediately\n// down to pre-release. premajor and prepatch work the same way.\nSemVer.prototype.inc = function (release, identifier) {\n switch (release) {\n case 'premajor':\n this.prerelease.length = 0\n this.patch = 0\n this.minor = 0\n this.major++\n this.inc('pre', identifier)\n break\n case 'preminor':\n this.prerelease.length = 0\n this.patch = 0\n this.minor++\n this.inc('pre', identifier)\n break\n case 'prepatch':\n // If this is already a prerelease, it will bump to the next version\n // drop any prereleases that might already exist, since they are not\n // relevant at this point.\n this.prerelease.length = 0\n this.inc('patch', identifier)\n this.inc('pre', identifier)\n break\n // If the input is a non-prerelease version, this acts the same as\n // prepatch.\n case 'prerelease':\n if (this.prerelease.length === 0) {\n this.inc('patch', identifier)\n }\n this.inc('pre', identifier)\n break\n\n case 'major':\n // If this is a pre-major version, bump up to the same major version.\n // Otherwise increment major.\n // 1.0.0-5 bumps to 1.0.0\n // 1.1.0 bumps to 2.0.0\n if (this.minor !== 0 ||\n this.patch !== 0 ||\n this.prerelease.length === 0) {\n this.major++\n }\n this.minor = 0\n this.patch = 0\n this.prerelease = []\n break\n case 'minor':\n // If this is a pre-minor version, bump up to the same minor version.\n // Otherwise increment minor.\n // 1.2.0-5 bumps to 1.2.0\n // 1.2.1 bumps to 1.3.0\n if (this.patch !== 0 || this.prerelease.length === 0) {\n this.minor++\n }\n this.patch = 0\n this.prerelease = []\n break\n case 'patch':\n // If this is not a pre-release version, it will increment the patch.\n // If it is a pre-release it will bump up to the same patch version.\n // 1.2.0-5 patches to 1.2.0\n // 1.2.0 patches to 1.2.1\n if (this.prerelease.length === 0) {\n this.patch++\n }\n this.prerelease = []\n break\n // This probably shouldn't be used publicly.\n // 1.0.0 \"pre\" would become 1.0.0-0 which is the wrong direction.\n case 'pre':\n if (this.prerelease.length === 0) {\n this.prerelease = [0]\n } else {\n var i = this.prerelease.length\n while (--i >= 0) {\n if (typeof this.prerelease[i] === 'number') {\n this.prerelease[i]++\n i = -2\n }\n }\n if (i === -1) {\n // didn't increment anything\n this.prerelease.push(0)\n }\n }\n if (identifier) {\n // 1.2.0-beta.1 bumps to 1.2.0-beta.2,\n // 1.2.0-beta.fooblz or 1.2.0-beta bumps to 1.2.0-beta.0\n if (this.prerelease[0] === identifier) {\n if (isNaN(this.prerelease[1])) {\n this.prerelease = [identifier, 0]\n }\n } else {\n this.prerelease = [identifier, 0]\n }\n }\n break\n\n default:\n throw new Error('invalid increment argument: ' + release)\n }\n this.format()\n this.raw = this.version\n return this\n}\n\nexports.inc = inc\nfunction inc (version, release, loose, identifier) {\n if (typeof (loose) === 'string') {\n identifier = loose\n loose = undefined\n }\n\n try {\n return new SemVer(version, loose).inc(release, identifier).version\n } catch (er) {\n return null\n }\n}\n\nexports.diff = diff\nfunction diff (version1, version2) {\n if (eq(version1, version2)) {\n return null\n } else {\n var v1 = parse(version1)\n var v2 = parse(version2)\n var prefix = ''\n if (v1.prerelease.length || v2.prerelease.length) {\n prefix = 'pre'\n var defaultResult = 'prerelease'\n }\n for (var key in v1) {\n if (key === 'major' || key === 'minor' || key === 'patch') {\n if (v1[key] !== v2[key]) {\n return prefix + key\n }\n }\n }\n return defaultResult // may be undefined\n }\n}\n\nexports.compareIdentifiers = compareIdentifiers\n\nvar numeric = /^[0-9]+$/\nfunction compareIdentifiers (a, b) {\n var anum = numeric.test(a)\n var bnum = numeric.test(b)\n\n if (anum && bnum) {\n a = +a\n b = +b\n }\n\n return a === b ? 0\n : (anum && !bnum) ? -1\n : (bnum && !anum) ? 1\n : a < b ? -1\n : 1\n}\n\nexports.rcompareIdentifiers = rcompareIdentifiers\nfunction rcompareIdentifiers (a, b) {\n return compareIdentifiers(b, a)\n}\n\nexports.major = major\nfunction major (a, loose) {\n return new SemVer(a, loose).major\n}\n\nexports.minor = minor\nfunction minor (a, loose) {\n return new SemVer(a, loose).minor\n}\n\nexports.patch = patch\nfunction patch (a, loose) {\n return new SemVer(a, loose).patch\n}\n\nexports.compare = compare\nfunction compare (a, b, loose) {\n return new SemVer(a, loose).compare(new SemVer(b, loose))\n}\n\nexports.compareLoose = compareLoose\nfunction compareLoose (a, b) {\n return compare(a, b, true)\n}\n\nexports.compareBuild = compareBuild\nfunction compareBuild (a, b, loose) {\n var versionA = new SemVer(a, loose)\n var versionB = new SemVer(b, loose)\n return versionA.compare(versionB) || versionA.compareBuild(versionB)\n}\n\nexports.rcompare = rcompare\nfunction rcompare (a, b, loose) {\n return compare(b, a, loose)\n}\n\nexports.sort = sort\nfunction sort (list, loose) {\n return list.sort(function (a, b) {\n return exports.compareBuild(a, b, loose)\n })\n}\n\nexports.rsort = rsort\nfunction rsort (list, loose) {\n return list.sort(function (a, b) {\n return exports.compareBuild(b, a, loose)\n })\n}\n\nexports.gt = gt\nfunction gt (a, b, loose) {\n return compare(a, b, loose) > 0\n}\n\nexports.lt = lt\nfunction lt (a, b, loose) {\n return compare(a, b, loose) < 0\n}\n\nexports.eq = eq\nfunction eq (a, b, loose) {\n return compare(a, b, loose) === 0\n}\n\nexports.neq = neq\nfunction neq (a, b, loose) {\n return compare(a, b, loose) !== 0\n}\n\nexports.gte = gte\nfunction gte (a, b, loose) {\n return compare(a, b, loose) >= 0\n}\n\nexports.lte = lte\nfunction lte (a, b, loose) {\n return compare(a, b, loose) <= 0\n}\n\nexports.cmp = cmp\nfunction cmp (a, op, b, loose) {\n switch (op) {\n case '===':\n if (typeof a === 'object')\n a = a.version\n if (typeof b === 'object')\n b = b.version\n return a === b\n\n case '!==':\n if (typeof a === 'object')\n a = a.version\n if (typeof b === 'object')\n b = b.version\n return a !== b\n\n case '':\n case '=':\n case '==':\n return eq(a, b, loose)\n\n case '!=':\n return neq(a, b, loose)\n\n case '>':\n return gt(a, b, loose)\n\n case '>=':\n return gte(a, b, loose)\n\n case '<':\n return lt(a, b, loose)\n\n case '<=':\n return lte(a, b, loose)\n\n default:\n throw new TypeError('Invalid operator: ' + op)\n }\n}\n\nexports.Comparator = Comparator\nfunction Comparator (comp, options) {\n if (!options || typeof options !== 'object') {\n options = {\n loose: !!options,\n includePrerelease: false\n }\n }\n\n if (comp instanceof Comparator) {\n if (comp.loose === !!options.loose) {\n return comp\n } else {\n comp = comp.value\n }\n }\n\n if (!(this instanceof Comparator)) {\n return new Comparator(comp, options)\n }\n\n debug('comparator', comp, options)\n this.options = options\n this.loose = !!options.loose\n this.parse(comp)\n\n if (this.semver === ANY) {\n this.value = ''\n } else {\n this.value = this.operator + this.semver.version\n }\n\n debug('comp', this)\n}\n\nvar ANY = {}\nComparator.prototype.parse = function (comp) {\n var r = this.options.loose ? re[t.COMPARATORLOOSE] : re[t.COMPARATOR]\n var m = comp.match(r)\n\n if (!m) {\n throw new TypeError('Invalid comparator: ' + comp)\n }\n\n this.operator = m[1] !== undefined ? m[1] : ''\n if (this.operator === '=') {\n this.operator = ''\n }\n\n // if it literally is just '>' or '' then allow anything.\n if (!m[2]) {\n this.semver = ANY\n } else {\n this.semver = new SemVer(m[2], this.options.loose)\n }\n}\n\nComparator.prototype.toString = function () {\n return this.value\n}\n\nComparator.prototype.test = function (version) {\n debug('Comparator.test', version, this.options.loose)\n\n if (this.semver === ANY || version === ANY) {\n return true\n }\n\n if (typeof version === 'string') {\n try {\n version = new SemVer(version, this.options)\n } catch (er) {\n return false\n }\n }\n\n return cmp(version, this.operator, this.semver, this.options)\n}\n\nComparator.prototype.intersects = function (comp, options) {\n if (!(comp instanceof Comparator)) {\n throw new TypeError('a Comparator is required')\n }\n\n if (!options || typeof options !== 'object') {\n options = {\n loose: !!options,\n includePrerelease: false\n }\n }\n\n var rangeTmp\n\n if (this.operator === '') {\n if (this.value === '') {\n return true\n }\n rangeTmp = new Range(comp.value, options)\n return satisfies(this.value, rangeTmp, options)\n } else if (comp.operator === '') {\n if (comp.value === '') {\n return true\n }\n rangeTmp = new Range(this.value, options)\n return satisfies(comp.semver, rangeTmp, options)\n }\n\n var sameDirectionIncreasing =\n (this.operator === '>=' || this.operator === '>') &&\n (comp.operator === '>=' || comp.operator === '>')\n var sameDirectionDecreasing =\n (this.operator === '<=' || this.operator === '<') &&\n (comp.operator === '<=' || comp.operator === '<')\n var sameSemVer = this.semver.version === comp.semver.version\n var differentDirectionsInclusive =\n (this.operator === '>=' || this.operator === '<=') &&\n (comp.operator === '>=' || comp.operator === '<=')\n var oppositeDirectionsLessThan =\n cmp(this.semver, '<', comp.semver, options) &&\n ((this.operator === '>=' || this.operator === '>') &&\n (comp.operator === '<=' || comp.operator === '<'))\n var oppositeDirectionsGreaterThan =\n cmp(this.semver, '>', comp.semver, options) &&\n ((this.operator === '<=' || this.operator === '<') &&\n (comp.operator === '>=' || comp.operator === '>'))\n\n return sameDirectionIncreasing || sameDirectionDecreasing ||\n (sameSemVer && differentDirectionsInclusive) ||\n oppositeDirectionsLessThan || oppositeDirectionsGreaterThan\n}\n\nexports.Range = Range\nfunction Range (range, options) {\n if (!options || typeof options !== 'object') {\n options = {\n loose: !!options,\n includePrerelease: false\n }\n }\n\n if (range instanceof Range) {\n if (range.loose === !!options.loose &&\n range.includePrerelease === !!options.includePrerelease) {\n return range\n } else {\n return new Range(range.raw, options)\n }\n }\n\n if (range instanceof Comparator) {\n return new Range(range.value, options)\n }\n\n if (!(this instanceof Range)) {\n return new Range(range, options)\n }\n\n this.options = options\n this.loose = !!options.loose\n this.includePrerelease = !!options.includePrerelease\n\n // First, split based on boolean or ||\n this.raw = range\n this.set = range.split(/\\s*\\|\\|\\s*/).map(function (range) {\n return this.parseRange(range.trim())\n }, this).filter(function (c) {\n // throw out any that are not relevant for whatever reason\n return c.length\n })\n\n if (!this.set.length) {\n throw new TypeError('Invalid SemVer Range: ' + range)\n }\n\n this.format()\n}\n\nRange.prototype.format = function () {\n this.range = this.set.map(function (comps) {\n return comps.join(' ').trim()\n }).join('||').trim()\n return this.range\n}\n\nRange.prototype.toString = function () {\n return this.range\n}\n\nRange.prototype.parseRange = function (range) {\n var loose = this.options.loose\n range = range.trim()\n // `1.2.3 - 1.2.4` => `>=1.2.3 <=1.2.4`\n var hr = loose ? re[t.HYPHENRANGELOOSE] : re[t.HYPHENRANGE]\n range = range.replace(hr, hyphenReplace)\n debug('hyphen replace', range)\n // `> 1.2.3 < 1.2.5` => `>1.2.3 <1.2.5`\n range = range.replace(re[t.COMPARATORTRIM], comparatorTrimReplace)\n debug('comparator trim', range, re[t.COMPARATORTRIM])\n\n // `~ 1.2.3` => `~1.2.3`\n range = range.replace(re[t.TILDETRIM], tildeTrimReplace)\n\n // `^ 1.2.3` => `^1.2.3`\n range = range.replace(re[t.CARETTRIM], caretTrimReplace)\n\n // normalize spaces\n range = range.split(/\\s+/).join(' ')\n\n // At this point, the range is completely trimmed and\n // ready to be split into comparators.\n\n var compRe = loose ? re[t.COMPARATORLOOSE] : re[t.COMPARATOR]\n var set = range.split(' ').map(function (comp) {\n return parseComparator(comp, this.options)\n }, this).join(' ').split(/\\s+/)\n if (this.options.loose) {\n // in loose mode, throw out any that are not valid comparators\n set = set.filter(function (comp) {\n return !!comp.match(compRe)\n })\n }\n set = set.map(function (comp) {\n return new Comparator(comp, this.options)\n }, this)\n\n return set\n}\n\nRange.prototype.intersects = function (range, options) {\n if (!(range instanceof Range)) {\n throw new TypeError('a Range is required')\n }\n\n return this.set.some(function (thisComparators) {\n return (\n isSatisfiable(thisComparators, options) &&\n range.set.some(function (rangeComparators) {\n return (\n isSatisfiable(rangeComparators, options) &&\n thisComparators.every(function (thisComparator) {\n return rangeComparators.every(function (rangeComparator) {\n return thisComparator.intersects(rangeComparator, options)\n })\n })\n )\n })\n )\n })\n}\n\n// take a set of comparators and determine whether there\n// exists a version which can satisfy it\nfunction isSatisfiable (comparators, options) {\n var result = true\n var remainingComparators = comparators.slice()\n var testComparator = remainingComparators.pop()\n\n while (result && remainingComparators.length) {\n result = remainingComparators.every(function (otherComparator) {\n return testComparator.intersects(otherComparator, options)\n })\n\n testComparator = remainingComparators.pop()\n }\n\n return result\n}\n\n// Mostly just for testing and legacy API reasons\nexports.toComparators = toComparators\nfunction toComparators (range, options) {\n return new Range(range, options).set.map(function (comp) {\n return comp.map(function (c) {\n return c.value\n }).join(' ').trim().split(' ')\n })\n}\n\n// comprised of xranges, tildes, stars, and gtlt's at this point.\n// already replaced the hyphen ranges\n// turn into a set of JUST comparators.\nfunction parseComparator (comp, options) {\n debug('comp', comp, options)\n comp = replaceCarets(comp, options)\n debug('caret', comp)\n comp = replaceTildes(comp, options)\n debug('tildes', comp)\n comp = replaceXRanges(comp, options)\n debug('xrange', comp)\n comp = replaceStars(comp, options)\n debug('stars', comp)\n return comp\n}\n\nfunction isX (id) {\n return !id || id.toLowerCase() === 'x' || id === '*'\n}\n\n// ~, ~> --> * (any, kinda silly)\n// ~2, ~2.x, ~2.x.x, ~>2, ~>2.x ~>2.x.x --> >=2.0.0 <3.0.0\n// ~2.0, ~2.0.x, ~>2.0, ~>2.0.x --> >=2.0.0 <2.1.0\n// ~1.2, ~1.2.x, ~>1.2, ~>1.2.x --> >=1.2.0 <1.3.0\n// ~1.2.3, ~>1.2.3 --> >=1.2.3 <1.3.0\n// ~1.2.0, ~>1.2.0 --> >=1.2.0 <1.3.0\nfunction replaceTildes (comp, options) {\n return comp.trim().split(/\\s+/).map(function (comp) {\n return replaceTilde(comp, options)\n }).join(' ')\n}\n\nfunction replaceTilde (comp, options) {\n var r = options.loose ? re[t.TILDELOOSE] : re[t.TILDE]\n return comp.replace(r, function (_, M, m, p, pr) {\n debug('tilde', comp, _, M, m, p, pr)\n var ret\n\n if (isX(M)) {\n ret = ''\n } else if (isX(m)) {\n ret = '>=' + M + '.0.0 <' + (+M + 1) + '.0.0'\n } else if (isX(p)) {\n // ~1.2 == >=1.2.0 <1.3.0\n ret = '>=' + M + '.' + m + '.0 <' + M + '.' + (+m + 1) + '.0'\n } else if (pr) {\n debug('replaceTilde pr', pr)\n ret = '>=' + M + '.' + m + '.' + p + '-' + pr +\n ' <' + M + '.' + (+m + 1) + '.0'\n } else {\n // ~1.2.3 == >=1.2.3 <1.3.0\n ret = '>=' + M + '.' + m + '.' + p +\n ' <' + M + '.' + (+m + 1) + '.0'\n }\n\n debug('tilde return', ret)\n return ret\n })\n}\n\n// ^ --> * (any, kinda silly)\n// ^2, ^2.x, ^2.x.x --> >=2.0.0 <3.0.0\n// ^2.0, ^2.0.x --> >=2.0.0 <3.0.0\n// ^1.2, ^1.2.x --> >=1.2.0 <2.0.0\n// ^1.2.3 --> >=1.2.3 <2.0.0\n// ^1.2.0 --> >=1.2.0 <2.0.0\nfunction replaceCarets (comp, options) {\n return comp.trim().split(/\\s+/).map(function (comp) {\n return replaceCaret(comp, options)\n }).join(' ')\n}\n\nfunction replaceCaret (comp, options) {\n debug('caret', comp, options)\n var r = options.loose ? re[t.CARETLOOSE] : re[t.CARET]\n return comp.replace(r, function (_, M, m, p, pr) {\n debug('caret', comp, _, M, m, p, pr)\n var ret\n\n if (isX(M)) {\n ret = ''\n } else if (isX(m)) {\n ret = '>=' + M + '.0.0 <' + (+M + 1) + '.0.0'\n } else if (isX(p)) {\n if (M === '0') {\n ret = '>=' + M + '.' + m + '.0 <' + M + '.' + (+m + 1) + '.0'\n } else {\n ret = '>=' + M + '.' + m + '.0 <' + (+M + 1) + '.0.0'\n }\n } else if (pr) {\n debug('replaceCaret pr', pr)\n if (M === '0') {\n if (m === '0') {\n ret = '>=' + M + '.' + m + '.' + p + '-' + pr +\n ' <' + M + '.' + m + '.' + (+p + 1)\n } else {\n ret = '>=' + M + '.' + m + '.' + p + '-' + pr +\n ' <' + M + '.' + (+m + 1) + '.0'\n }\n } else {\n ret = '>=' + M + '.' + m + '.' + p + '-' + pr +\n ' <' + (+M + 1) + '.0.0'\n }\n } else {\n debug('no pr')\n if (M === '0') {\n if (m === '0') {\n ret = '>=' + M + '.' + m + '.' + p +\n ' <' + M + '.' + m + '.' + (+p + 1)\n } else {\n ret = '>=' + M + '.' + m + '.' + p +\n ' <' + M + '.' + (+m + 1) + '.0'\n }\n } else {\n ret = '>=' + M + '.' + m + '.' + p +\n ' <' + (+M + 1) + '.0.0'\n }\n }\n\n debug('caret return', ret)\n return ret\n })\n}\n\nfunction replaceXRanges (comp, options) {\n debug('replaceXRanges', comp, options)\n return comp.split(/\\s+/).map(function (comp) {\n return replaceXRange(comp, options)\n }).join(' ')\n}\n\nfunction replaceXRange (comp, options) {\n comp = comp.trim()\n var r = options.loose ? re[t.XRANGELOOSE] : re[t.XRANGE]\n return comp.replace(r, function (ret, gtlt, M, m, p, pr) {\n debug('xRange', comp, ret, gtlt, M, m, p, pr)\n var xM = isX(M)\n var xm = xM || isX(m)\n var xp = xm || isX(p)\n var anyX = xp\n\n if (gtlt === '=' && anyX) {\n gtlt = ''\n }\n\n // if we're including prereleases in the match, then we need\n // to fix this to -0, the lowest possible prerelease value\n pr = options.includePrerelease ? '-0' : ''\n\n if (xM) {\n if (gtlt === '>' || gtlt === '<') {\n // nothing is allowed\n ret = '<0.0.0-0'\n } else {\n // nothing is forbidden\n ret = '*'\n }\n } else if (gtlt && anyX) {\n // we know patch is an x, because we have any x at all.\n // replace X with 0\n if (xm) {\n m = 0\n }\n p = 0\n\n if (gtlt === '>') {\n // >1 => >=2.0.0\n // >1.2 => >=1.3.0\n // >1.2.3 => >= 1.2.4\n gtlt = '>='\n if (xm) {\n M = +M + 1\n m = 0\n p = 0\n } else {\n m = +m + 1\n p = 0\n }\n } else if (gtlt === '<=') {\n // <=0.7.x is actually <0.8.0, since any 0.7.x should\n // pass. Similarly, <=7.x is actually <8.0.0, etc.\n gtlt = '<'\n if (xm) {\n M = +M + 1\n } else {\n m = +m + 1\n }\n }\n\n ret = gtlt + M + '.' + m + '.' + p + pr\n } else if (xm) {\n ret = '>=' + M + '.0.0' + pr + ' <' + (+M + 1) + '.0.0' + pr\n } else if (xp) {\n ret = '>=' + M + '.' + m + '.0' + pr +\n ' <' + M + '.' + (+m + 1) + '.0' + pr\n }\n\n debug('xRange return', ret)\n\n return ret\n })\n}\n\n// Because * is AND-ed with everything else in the comparator,\n// and '' means \"any version\", just remove the *s entirely.\nfunction replaceStars (comp, options) {\n debug('replaceStars', comp, options)\n // Looseness is ignored here. star is always as loose as it gets!\n return comp.trim().replace(re[t.STAR], '')\n}\n\n// This function is passed to string.replace(re[t.HYPHENRANGE])\n// M, m, patch, prerelease, build\n// 1.2 - 3.4.5 => >=1.2.0 <=3.4.5\n// 1.2.3 - 3.4 => >=1.2.0 <3.5.0 Any 3.4.x will do\n// 1.2 - 3.4 => >=1.2.0 <3.5.0\nfunction hyphenReplace ($0,\n from, fM, fm, fp, fpr, fb,\n to, tM, tm, tp, tpr, tb) {\n if (isX(fM)) {\n from = ''\n } else if (isX(fm)) {\n from = '>=' + fM + '.0.0'\n } else if (isX(fp)) {\n from = '>=' + fM + '.' + fm + '.0'\n } else {\n from = '>=' + from\n }\n\n if (isX(tM)) {\n to = ''\n } else if (isX(tm)) {\n to = '<' + (+tM + 1) + '.0.0'\n } else if (isX(tp)) {\n to = '<' + tM + '.' + (+tm + 1) + '.0'\n } else if (tpr) {\n to = '<=' + tM + '.' + tm + '.' + tp + '-' + tpr\n } else {\n to = '<=' + to\n }\n\n return (from + ' ' + to).trim()\n}\n\n// if ANY of the sets match ALL of its comparators, then pass\nRange.prototype.test = function (version) {\n if (!version) {\n return false\n }\n\n if (typeof version === 'string') {\n try {\n version = new SemVer(version, this.options)\n } catch (er) {\n return false\n }\n }\n\n for (var i = 0; i < this.set.length; i++) {\n if (testSet(this.set[i], version, this.options)) {\n return true\n }\n }\n return false\n}\n\nfunction testSet (set, version, options) {\n for (var i = 0; i < set.length; i++) {\n if (!set[i].test(version)) {\n return false\n }\n }\n\n if (version.prerelease.length && !options.includePrerelease) {\n // Find the set of versions that are allowed to have prereleases\n // For example, ^1.2.3-pr.1 desugars to >=1.2.3-pr.1 <2.0.0\n // That should allow `1.2.3-pr.2` to pass.\n // However, `1.2.4-alpha.notready` should NOT be allowed,\n // even though it's within the range set by the comparators.\n for (i = 0; i < set.length; i++) {\n debug(set[i].semver)\n if (set[i].semver === ANY) {\n continue\n }\n\n if (set[i].semver.prerelease.length > 0) {\n var allowed = set[i].semver\n if (allowed.major === version.major &&\n allowed.minor === version.minor &&\n allowed.patch === version.patch) {\n return true\n }\n }\n }\n\n // Version has a -pre, but it's not one of the ones we like.\n return false\n }\n\n return true\n}\n\nexports.satisfies = satisfies\nfunction satisfies (version, range, options) {\n try {\n range = new Range(range, options)\n } catch (er) {\n return false\n }\n return range.test(version)\n}\n\nexports.maxSatisfying = maxSatisfying\nfunction maxSatisfying (versions, range, options) {\n var max = null\n var maxSV = null\n try {\n var rangeObj = new Range(range, options)\n } catch (er) {\n return null\n }\n versions.forEach(function (v) {\n if (rangeObj.test(v)) {\n // satisfies(v, range, options)\n if (!max || maxSV.compare(v) === -1) {\n // compare(max, v, true)\n max = v\n maxSV = new SemVer(max, options)\n }\n }\n })\n return max\n}\n\nexports.minSatisfying = minSatisfying\nfunction minSatisfying (versions, range, options) {\n var min = null\n var minSV = null\n try {\n var rangeObj = new Range(range, options)\n } catch (er) {\n return null\n }\n versions.forEach(function (v) {\n if (rangeObj.test(v)) {\n // satisfies(v, range, options)\n if (!min || minSV.compare(v) === 1) {\n // compare(min, v, true)\n min = v\n minSV = new SemVer(min, options)\n }\n }\n })\n return min\n}\n\nexports.minVersion = minVersion\nfunction minVersion (range, loose) {\n range = new Range(range, loose)\n\n var minver = new SemVer('0.0.0')\n if (range.test(minver)) {\n return minver\n }\n\n minver = new SemVer('0.0.0-0')\n if (range.test(minver)) {\n return minver\n }\n\n minver = null\n for (var i = 0; i < range.set.length; ++i) {\n var comparators = range.set[i]\n\n comparators.forEach(function (comparator) {\n // Clone to avoid manipulating the comparator's semver object.\n var compver = new SemVer(comparator.semver.version)\n switch (comparator.operator) {\n case '>':\n if (compver.prerelease.length === 0) {\n compver.patch++\n } else {\n compver.prerelease.push(0)\n }\n compver.raw = compver.format()\n /* fallthrough */\n case '':\n case '>=':\n if (!minver || gt(minver, compver)) {\n minver = compver\n }\n break\n case '<':\n case '<=':\n /* Ignore maximum versions */\n break\n /* istanbul ignore next */\n default:\n throw new Error('Unexpected operation: ' + comparator.operator)\n }\n })\n }\n\n if (minver && range.test(minver)) {\n return minver\n }\n\n return null\n}\n\nexports.validRange = validRange\nfunction validRange (range, options) {\n try {\n // Return '*' instead of '' so that truthiness works.\n // This will throw if it's invalid anyway\n return new Range(range, options).range || '*'\n } catch (er) {\n return null\n }\n}\n\n// Determine if version is less than all the versions possible in the range\nexports.ltr = ltr\nfunction ltr (version, range, options) {\n return outside(version, range, '<', options)\n}\n\n// Determine if version is greater than all the versions possible in the range.\nexports.gtr = gtr\nfunction gtr (version, range, options) {\n return outside(version, range, '>', options)\n}\n\nexports.outside = outside\nfunction outside (version, range, hilo, options) {\n version = new SemVer(version, options)\n range = new Range(range, options)\n\n var gtfn, ltefn, ltfn, comp, ecomp\n switch (hilo) {\n case '>':\n gtfn = gt\n ltefn = lte\n ltfn = lt\n comp = '>'\n ecomp = '>='\n break\n case '<':\n gtfn = lt\n ltefn = gte\n ltfn = gt\n comp = '<'\n ecomp = '<='\n break\n default:\n throw new TypeError('Must provide a hilo val of \"<\" or \">\"')\n }\n\n // If it satisifes the range it is not outside\n if (satisfies(version, range, options)) {\n return false\n }\n\n // From now on, variable terms are as if we're in \"gtr\" mode.\n // but note that everything is flipped for the \"ltr\" function.\n\n for (var i = 0; i < range.set.length; ++i) {\n var comparators = range.set[i]\n\n var high = null\n var low = null\n\n comparators.forEach(function (comparator) {\n if (comparator.semver === ANY) {\n comparator = new Comparator('>=0.0.0')\n }\n high = high || comparator\n low = low || comparator\n if (gtfn(comparator.semver, high.semver, options)) {\n high = comparator\n } else if (ltfn(comparator.semver, low.semver, options)) {\n low = comparator\n }\n })\n\n // If the edge version comparator has a operator then our version\n // isn't outside it\n if (high.operator === comp || high.operator === ecomp) {\n return false\n }\n\n // If the lowest version comparator has an operator and our version\n // is less than it then it isn't higher than the range\n if ((!low.operator || low.operator === comp) &&\n ltefn(version, low.semver)) {\n return false\n } else if (low.operator === ecomp && ltfn(version, low.semver)) {\n return false\n }\n }\n return true\n}\n\nexports.prerelease = prerelease\nfunction prerelease (version, options) {\n var parsed = parse(version, options)\n return (parsed && parsed.prerelease.length) ? parsed.prerelease : null\n}\n\nexports.intersects = intersects\nfunction intersects (r1, r2, options) {\n r1 = new Range(r1, options)\n r2 = new Range(r2, options)\n return r1.intersects(r2)\n}\n\nexports.coerce = coerce\nfunction coerce (version, options) {\n if (version instanceof SemVer) {\n return version\n }\n\n if (typeof version === 'number') {\n version = String(version)\n }\n\n if (typeof version !== 'string') {\n return null\n }\n\n options = options || {}\n\n var match = null\n if (!options.rtl) {\n match = version.match(re[t.COERCE])\n } else {\n // Find the right-most coercible string that does not share\n // a terminus with a more left-ward coercible string.\n // Eg, '1.2.3.4' wants to coerce '2.3.4', not '3.4' or '4'\n //\n // Walk through the string checking with a /g regexp\n // Manually set the index so as to pick up overlapping matches.\n // Stop when we get a match that ends at the string end, since no\n // coercible string can be more right-ward without the same terminus.\n var next\n while ((next = re[t.COERCERTL].exec(version)) &&\n (!match || match.index + match[0].length !== version.length)\n ) {\n if (!match ||\n next.index + next[0].length !== match.index + match[0].length) {\n match = next\n }\n re[t.COERCERTL].lastIndex = next.index + next[1].length + next[2].length\n }\n // leave it in a clean state\n re[t.COERCERTL].lastIndex = -1\n }\n\n if (match === null) {\n return null\n }\n\n return parse(match[2] +\n '.' + (match[3] || '0') +\n '.' + (match[4] || '0'), options)\n}\n","\"use strict\";\n\nrequire(\"core-js/modules/es.array.concat\");\n\nrequire(\"core-js/modules/es.array.filter\");\n\nrequire(\"core-js/modules/es.array.iterator\");\n\nrequire(\"core-js/modules/es.map\");\n\nrequire(\"core-js/modules/es.object.to-string\");\n\nrequire(\"core-js/modules/es.string.iterator\");\n\nrequire(\"core-js/modules/web.dom-collections.for-each\");\n\nrequire(\"core-js/modules/web.dom-collections.iterator\");\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.SimpleBus = void 0;\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nfunction _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }\n\nfunction _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }\n\nfunction _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }\n\nvar packageJson = {\n name: \"@nextcloud/event-bus\",\n version: \"1.1.2\",\n description: \"\",\n main: \"dist/index.js\",\n types: \"dist/index.d.ts\",\n scripts: {\n build: \"babel ./lib --out-dir dist --extensions '.ts,.tsx' --source-maps && tsc --emitDeclarationOnly\",\n \"build:doc\": \"typedoc --excludeNotExported --mode file --out dist/doc lib/index.ts && touch dist/doc/.nojekyll\",\n \"check-types\": \"tsc\",\n dev: \"babel ./lib --out-dir dist --extensions '.ts,.tsx' --watch\",\n test: \"jest\",\n \"test:watch\": \"jest --watchAll\"\n },\n keywords: [\"nextcloud\"],\n homepage: \"https://github.com/nextcloud/nextcloud-event-bus#readme\",\n author: \"Christoph Wurst\",\n license: \"GPL-3.0-or-later\",\n repository: {\n type: \"git\",\n url: \"https://github.com/nextcloud/nextcloud-event-bus\"\n },\n dependencies: {\n \"@types/semver\": \"^6.2.0\",\n \"core-js\": \"^3.6.2\",\n semver: \"^6.3.0\"\n },\n devDependencies: {\n \"@babel/cli\": \"^7.6.0\",\n \"@babel/core\": \"^7.6.0\",\n \"@babel/plugin-proposal-class-properties\": \"^7.5.5\",\n \"@babel/preset-env\": \"^7.6.0\",\n \"@babel/preset-typescript\": \"^7.6.0\",\n \"@nextcloud/browserslist-config\": \"^1.0.0\",\n \"babel-jest\": \"^24.9.0\",\n \"babel-plugin-inline-json-import\": \"^0.3.2\",\n jest: \"^24.9.0\",\n typedoc: \"^0.15.7\",\n typescript: \"^3.6.3\"\n },\n browserslist: [\"extends @nextcloud/browserslist-config\"]\n};\n\nvar SimpleBus =\n/*#__PURE__*/\nfunction () {\n function SimpleBus() {\n _classCallCheck(this, SimpleBus);\n\n _defineProperty(this, \"handlers\", new Map());\n }\n\n _createClass(SimpleBus, [{\n key: \"getVersion\",\n value: function getVersion() {\n return packageJson.version;\n }\n }, {\n key: \"subscribe\",\n value: function subscribe(name, handler) {\n this.handlers.set(name, (this.handlers.get(name) || []).concat(handler));\n }\n }, {\n key: \"unsubscribe\",\n value: function unsubscribe(name, handler) {\n this.handlers.set(name, (this.handlers.get(name) || []).filter(function (h) {\n return h != handler;\n }));\n }\n }, {\n key: \"emit\",\n value: function emit(name, event) {\n (this.handlers.get(name) || []).forEach(function (h) {\n try {\n h(event);\n } catch (e) {\n console.error('could not invoke event listener', e);\n }\n });\n }\n }]);\n\n return SimpleBus;\n}();\n\nexports.SimpleBus = SimpleBus;\n//# sourceMappingURL=SimpleBus.js.map","'use strict';\nvar $ = require('../internals/export');\nvar fails = require('../internals/fails');\nvar isArray = require('../internals/is-array');\nvar isObject = require('../internals/is-object');\nvar toObject = require('../internals/to-object');\nvar toLength = require('../internals/to-length');\nvar createProperty = require('../internals/create-property');\nvar arraySpeciesCreate = require('../internals/array-species-create');\nvar arrayMethodHasSpeciesSupport = require('../internals/array-method-has-species-support');\nvar wellKnownSymbol = require('../internals/well-known-symbol');\nvar V8_VERSION = require('../internals/engine-v8-version');\n\nvar IS_CONCAT_SPREADABLE = wellKnownSymbol('isConcatSpreadable');\nvar MAX_SAFE_INTEGER = 0x1FFFFFFFFFFFFF;\nvar MAXIMUM_ALLOWED_INDEX_EXCEEDED = 'Maximum allowed index exceeded';\n\n// We can't use this feature detection in V8 since it causes\n// deoptimization and serious performance degradation\n// https://github.com/zloirock/core-js/issues/679\nvar IS_CONCAT_SPREADABLE_SUPPORT = V8_VERSION >= 51 || !fails(function () {\n var array = [];\n array[IS_CONCAT_SPREADABLE] = false;\n return array.concat()[0] !== array;\n});\n\nvar SPECIES_SUPPORT = arrayMethodHasSpeciesSupport('concat');\n\nvar isConcatSpreadable = function (O) {\n if (!isObject(O)) return false;\n var spreadable = O[IS_CONCAT_SPREADABLE];\n return spreadable !== undefined ? !!spreadable : isArray(O);\n};\n\nvar FORCED = !IS_CONCAT_SPREADABLE_SUPPORT || !SPECIES_SUPPORT;\n\n// `Array.prototype.concat` method\n// https://tc39.github.io/ecma262/#sec-array.prototype.concat\n// with adding support of @@isConcatSpreadable and @@species\n$({ target: 'Array', proto: true, forced: FORCED }, {\n concat: function concat(arg) { // eslint-disable-line no-unused-vars\n var O = toObject(this);\n var A = arraySpeciesCreate(O, 0);\n var n = 0;\n var i, k, length, len, E;\n for (i = -1, length = arguments.length; i < length; i++) {\n E = i === -1 ? O : arguments[i];\n if (isConcatSpreadable(E)) {\n len = toLength(E.length);\n if (n + len > MAX_SAFE_INTEGER) throw TypeError(MAXIMUM_ALLOWED_INDEX_EXCEEDED);\n for (k = 0; k < len; k++, n++) if (k in E) createProperty(A, n, E[k]);\n } else {\n if (n >= MAX_SAFE_INTEGER) throw TypeError(MAXIMUM_ALLOWED_INDEX_EXCEEDED);\n createProperty(A, n++, E);\n }\n }\n A.length = n;\n return A;\n }\n});\n","'use strict';\nvar nativePropertyIsEnumerable = {}.propertyIsEnumerable;\nvar getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;\n\n// Nashorn ~ JDK8 bug\nvar NASHORN_BUG = getOwnPropertyDescriptor && !nativePropertyIsEnumerable.call({ 1: 2 }, 1);\n\n// `Object.prototype.propertyIsEnumerable` method implementation\n// https://tc39.github.io/ecma262/#sec-object.prototype.propertyisenumerable\nexports.f = NASHORN_BUG ? function propertyIsEnumerable(V) {\n var descriptor = getOwnPropertyDescriptor(this, V);\n return !!descriptor && descriptor.enumerable;\n} : nativePropertyIsEnumerable;\n","var global = require('../internals/global');\nvar inspectSource = require('../internals/inspect-source');\n\nvar WeakMap = global.WeakMap;\n\nmodule.exports = typeof WeakMap === 'function' && /native code/.test(inspectSource(WeakMap));\n","var has = require('../internals/has');\nvar ownKeys = require('../internals/own-keys');\nvar getOwnPropertyDescriptorModule = require('../internals/object-get-own-property-descriptor');\nvar definePropertyModule = require('../internals/object-define-property');\n\nmodule.exports = function (target, source) {\n var keys = ownKeys(source);\n var defineProperty = definePropertyModule.f;\n var getOwnPropertyDescriptor = getOwnPropertyDescriptorModule.f;\n for (var i = 0; i < keys.length; i++) {\n var key = keys[i];\n if (!has(target, key)) defineProperty(target, key, getOwnPropertyDescriptor(source, key));\n }\n};\n","var getBuiltIn = require('../internals/get-built-in');\nvar getOwnPropertyNamesModule = require('../internals/object-get-own-property-names');\nvar getOwnPropertySymbolsModule = require('../internals/object-get-own-property-symbols');\nvar anObject = require('../internals/an-object');\n\n// all object keys, includes non-enumerable and symbols\nmodule.exports = getBuiltIn('Reflect', 'ownKeys') || function ownKeys(it) {\n var keys = getOwnPropertyNamesModule.f(anObject(it));\n var getOwnPropertySymbols = getOwnPropertySymbolsModule.f;\n return getOwnPropertySymbols ? keys.concat(getOwnPropertySymbols(it)) : keys;\n};\n","var global = require('../internals/global');\n\nmodule.exports = global;\n","var internalObjectKeys = require('../internals/object-keys-internal');\nvar enumBugKeys = require('../internals/enum-bug-keys');\n\nvar hiddenKeys = enumBugKeys.concat('length', 'prototype');\n\n// `Object.getOwnPropertyNames` method\n// https://tc39.github.io/ecma262/#sec-object.getownpropertynames\nexports.f = Object.getOwnPropertyNames || function getOwnPropertyNames(O) {\n return internalObjectKeys(O, hiddenKeys);\n};\n","var toIndexedObject = require('../internals/to-indexed-object');\nvar toLength = require('../internals/to-length');\nvar toAbsoluteIndex = require('../internals/to-absolute-index');\n\n// `Array.prototype.{ indexOf, includes }` methods implementation\nvar createMethod = function (IS_INCLUDES) {\n return function ($this, el, fromIndex) {\n var O = toIndexedObject($this);\n var length = toLength(O.length);\n var index = toAbsoluteIndex(fromIndex, length);\n var value;\n // Array#includes uses SameValueZero equality algorithm\n // eslint-disable-next-line no-self-compare\n if (IS_INCLUDES && el != el) while (length > index) {\n value = O[index++];\n // eslint-disable-next-line no-self-compare\n if (value != value) return true;\n // Array#indexOf ignores holes, Array#includes - not\n } else for (;length > index; index++) {\n if ((IS_INCLUDES || index in O) && O[index] === el) return IS_INCLUDES || index || 0;\n } return !IS_INCLUDES && -1;\n };\n};\n\nmodule.exports = {\n // `Array.prototype.includes` method\n // https://tc39.github.io/ecma262/#sec-array.prototype.includes\n includes: createMethod(true),\n // `Array.prototype.indexOf` method\n // https://tc39.github.io/ecma262/#sec-array.prototype.indexof\n indexOf: createMethod(false)\n};\n","var toInteger = require('../internals/to-integer');\n\nvar max = Math.max;\nvar min = Math.min;\n\n// Helper for a popular repeating case of the spec:\n// Let integer be ? ToInteger(index).\n// If integer < 0, let result be max((length + integer), 0); else let result be min(integer, length).\nmodule.exports = function (index, length) {\n var integer = toInteger(index);\n return integer < 0 ? max(integer + length, 0) : min(integer, length);\n};\n","exports.f = Object.getOwnPropertySymbols;\n","'use strict';\nvar toPrimitive = require('../internals/to-primitive');\nvar definePropertyModule = require('../internals/object-define-property');\nvar createPropertyDescriptor = require('../internals/create-property-descriptor');\n\nmodule.exports = function (object, key, value) {\n var propertyKey = toPrimitive(key);\n if (propertyKey in object) definePropertyModule.f(object, propertyKey, createPropertyDescriptor(0, value));\n else object[propertyKey] = value;\n};\n","var NATIVE_SYMBOL = require('../internals/native-symbol');\n\nmodule.exports = NATIVE_SYMBOL\n // eslint-disable-next-line no-undef\n && !Symbol.sham\n // eslint-disable-next-line no-undef\n && typeof Symbol.iterator == 'symbol';\n","var getBuiltIn = require('../internals/get-built-in');\n\nmodule.exports = getBuiltIn('navigator', 'userAgent') || '';\n","'use strict';\nvar $ = require('../internals/export');\nvar $filter = require('../internals/array-iteration').filter;\nvar arrayMethodHasSpeciesSupport = require('../internals/array-method-has-species-support');\nvar arrayMethodUsesToLength = require('../internals/array-method-uses-to-length');\n\nvar HAS_SPECIES_SUPPORT = arrayMethodHasSpeciesSupport('filter');\n// Edge 14- issue\nvar USES_TO_LENGTH = arrayMethodUsesToLength('filter');\n\n// `Array.prototype.filter` method\n// https://tc39.github.io/ecma262/#sec-array.prototype.filter\n// with adding support of @@species\n$({ target: 'Array', proto: true, forced: !HAS_SPECIES_SUPPORT || !USES_TO_LENGTH }, {\n filter: function filter(callbackfn /* , thisArg */) {\n return $filter(this, callbackfn, arguments.length > 1 ? arguments[1] : undefined);\n }\n});\n","module.exports = function (it) {\n if (typeof it != 'function') {\n throw TypeError(String(it) + ' is not a function');\n } return it;\n};\n","var wellKnownSymbol = require('../internals/well-known-symbol');\nvar create = require('../internals/object-create');\nvar definePropertyModule = require('../internals/object-define-property');\n\nvar UNSCOPABLES = wellKnownSymbol('unscopables');\nvar ArrayPrototype = Array.prototype;\n\n// Array.prototype[@@unscopables]\n// https://tc39.github.io/ecma262/#sec-array.prototype-@@unscopables\nif (ArrayPrototype[UNSCOPABLES] == undefined) {\n definePropertyModule.f(ArrayPrototype, UNSCOPABLES, {\n configurable: true,\n value: create(null)\n });\n}\n\n// add a key to Array.prototype[@@unscopables]\nmodule.exports = function (key) {\n ArrayPrototype[UNSCOPABLES][key] = true;\n};\n","var DESCRIPTORS = require('../internals/descriptors');\nvar definePropertyModule = require('../internals/object-define-property');\nvar anObject = require('../internals/an-object');\nvar objectKeys = require('../internals/object-keys');\n\n// `Object.defineProperties` method\n// https://tc39.github.io/ecma262/#sec-object.defineproperties\nmodule.exports = DESCRIPTORS ? Object.defineProperties : function defineProperties(O, Properties) {\n anObject(O);\n var keys = objectKeys(Properties);\n var length = keys.length;\n var index = 0;\n var key;\n while (length > index) definePropertyModule.f(O, key = keys[index++], Properties[key]);\n return O;\n};\n","var internalObjectKeys = require('../internals/object-keys-internal');\nvar enumBugKeys = require('../internals/enum-bug-keys');\n\n// `Object.keys` method\n// https://tc39.github.io/ecma262/#sec-object.keys\nmodule.exports = Object.keys || function keys(O) {\n return internalObjectKeys(O, enumBugKeys);\n};\n","var getBuiltIn = require('../internals/get-built-in');\n\nmodule.exports = getBuiltIn('document', 'documentElement');\n","'use strict';\nvar IteratorPrototype = require('../internals/iterators-core').IteratorPrototype;\nvar create = require('../internals/object-create');\nvar createPropertyDescriptor = require('../internals/create-property-descriptor');\nvar setToStringTag = require('../internals/set-to-string-tag');\nvar Iterators = require('../internals/iterators');\n\nvar returnThis = function () { return this; };\n\nmodule.exports = function (IteratorConstructor, NAME, next) {\n var TO_STRING_TAG = NAME + ' Iterator';\n IteratorConstructor.prototype = create(IteratorPrototype, { next: createPropertyDescriptor(1, next) });\n setToStringTag(IteratorConstructor, TO_STRING_TAG, false, true);\n Iterators[TO_STRING_TAG] = returnThis;\n return IteratorConstructor;\n};\n","var fails = require('../internals/fails');\n\nmodule.exports = !fails(function () {\n function F() { /* empty */ }\n F.prototype.constructor = null;\n return Object.getPrototypeOf(new F()) !== F.prototype;\n});\n","var isObject = require('../internals/is-object');\n\nmodule.exports = function (it) {\n if (!isObject(it) && it !== null) {\n throw TypeError(\"Can't set \" + String(it) + ' as a prototype');\n } return it;\n};\n","'use strict';\nvar collection = require('../internals/collection');\nvar collectionStrong = require('../internals/collection-strong');\n\n// `Map` constructor\n// https://tc39.github.io/ecma262/#sec-map-objects\nmodule.exports = collection('Map', function (init) {\n return function Map() { return init(this, arguments.length ? arguments[0] : undefined); };\n}, collectionStrong);\n","'use strict';\nvar $ = require('../internals/export');\nvar global = require('../internals/global');\nvar isForced = require('../internals/is-forced');\nvar redefine = require('../internals/redefine');\nvar InternalMetadataModule = require('../internals/internal-metadata');\nvar iterate = require('../internals/iterate');\nvar anInstance = require('../internals/an-instance');\nvar isObject = require('../internals/is-object');\nvar fails = require('../internals/fails');\nvar checkCorrectnessOfIteration = require('../internals/check-correctness-of-iteration');\nvar setToStringTag = require('../internals/set-to-string-tag');\nvar inheritIfRequired = require('../internals/inherit-if-required');\n\nmodule.exports = function (CONSTRUCTOR_NAME, wrapper, common) {\n var IS_MAP = CONSTRUCTOR_NAME.indexOf('Map') !== -1;\n var IS_WEAK = CONSTRUCTOR_NAME.indexOf('Weak') !== -1;\n var ADDER = IS_MAP ? 'set' : 'add';\n var NativeConstructor = global[CONSTRUCTOR_NAME];\n var NativePrototype = NativeConstructor && NativeConstructor.prototype;\n var Constructor = NativeConstructor;\n var exported = {};\n\n var fixMethod = function (KEY) {\n var nativeMethod = NativePrototype[KEY];\n redefine(NativePrototype, KEY,\n KEY == 'add' ? function add(value) {\n nativeMethod.call(this, value === 0 ? 0 : value);\n return this;\n } : KEY == 'delete' ? function (key) {\n return IS_WEAK && !isObject(key) ? false : nativeMethod.call(this, key === 0 ? 0 : key);\n } : KEY == 'get' ? function get(key) {\n return IS_WEAK && !isObject(key) ? undefined : nativeMethod.call(this, key === 0 ? 0 : key);\n } : KEY == 'has' ? function has(key) {\n return IS_WEAK && !isObject(key) ? false : nativeMethod.call(this, key === 0 ? 0 : key);\n } : function set(key, value) {\n nativeMethod.call(this, key === 0 ? 0 : key, value);\n return this;\n }\n );\n };\n\n // eslint-disable-next-line max-len\n if (isForced(CONSTRUCTOR_NAME, typeof NativeConstructor != 'function' || !(IS_WEAK || NativePrototype.forEach && !fails(function () {\n new NativeConstructor().entries().next();\n })))) {\n // create collection constructor\n Constructor = common.getConstructor(wrapper, CONSTRUCTOR_NAME, IS_MAP, ADDER);\n InternalMetadataModule.REQUIRED = true;\n } else if (isForced(CONSTRUCTOR_NAME, true)) {\n var instance = new Constructor();\n // early implementations not supports chaining\n var HASNT_CHAINING = instance[ADDER](IS_WEAK ? {} : -0, 1) != instance;\n // V8 ~ Chromium 40- weak-collections throws on primitives, but should return false\n var THROWS_ON_PRIMITIVES = fails(function () { instance.has(1); });\n // most early implementations doesn't supports iterables, most modern - not close it correctly\n // eslint-disable-next-line no-new\n var ACCEPT_ITERABLES = checkCorrectnessOfIteration(function (iterable) { new NativeConstructor(iterable); });\n // for early implementations -0 and +0 not the same\n var BUGGY_ZERO = !IS_WEAK && fails(function () {\n // V8 ~ Chromium 42- fails only with 5+ elements\n var $instance = new NativeConstructor();\n var index = 5;\n while (index--) $instance[ADDER](index, index);\n return !$instance.has(-0);\n });\n\n if (!ACCEPT_ITERABLES) {\n Constructor = wrapper(function (dummy, iterable) {\n anInstance(dummy, Constructor, CONSTRUCTOR_NAME);\n var that = inheritIfRequired(new NativeConstructor(), dummy, Constructor);\n if (iterable != undefined) iterate(iterable, that[ADDER], that, IS_MAP);\n return that;\n });\n Constructor.prototype = NativePrototype;\n NativePrototype.constructor = Constructor;\n }\n\n if (THROWS_ON_PRIMITIVES || BUGGY_ZERO) {\n fixMethod('delete');\n fixMethod('has');\n IS_MAP && fixMethod('get');\n }\n\n if (BUGGY_ZERO || HASNT_CHAINING) fixMethod(ADDER);\n\n // weak collections should not contains .clear method\n if (IS_WEAK && NativePrototype.clear) delete NativePrototype.clear;\n }\n\n exported[CONSTRUCTOR_NAME] = Constructor;\n $({ global: true, forced: Constructor != NativeConstructor }, exported);\n\n setToStringTag(Constructor, CONSTRUCTOR_NAME);\n\n if (!IS_WEAK) common.setStrong(Constructor, CONSTRUCTOR_NAME, IS_MAP);\n\n return Constructor;\n};\n","var fails = require('../internals/fails');\n\nmodule.exports = !fails(function () {\n return Object.isExtensible(Object.preventExtensions({}));\n});\n","var wellKnownSymbol = require('../internals/well-known-symbol');\nvar Iterators = require('../internals/iterators');\n\nvar ITERATOR = wellKnownSymbol('iterator');\nvar ArrayPrototype = Array.prototype;\n\n// check on default Array iterator\nmodule.exports = function (it) {\n return it !== undefined && (Iterators.Array === it || ArrayPrototype[ITERATOR] === it);\n};\n","var classof = require('../internals/classof');\nvar Iterators = require('../internals/iterators');\nvar wellKnownSymbol = require('../internals/well-known-symbol');\n\nvar ITERATOR = wellKnownSymbol('iterator');\n\nmodule.exports = function (it) {\n if (it != undefined) return it[ITERATOR]\n || it['@@iterator']\n || Iterators[classof(it)];\n};\n","var anObject = require('../internals/an-object');\n\n// call something on iterator step with safe closing on error\nmodule.exports = function (iterator, fn, value, ENTRIES) {\n try {\n return ENTRIES ? fn(anObject(value)[0], value[1]) : fn(value);\n // 7.4.6 IteratorClose(iterator, completion)\n } catch (error) {\n var returnMethod = iterator['return'];\n if (returnMethod !== undefined) anObject(returnMethod.call(iterator));\n throw error;\n }\n};\n","var wellKnownSymbol = require('../internals/well-known-symbol');\n\nvar ITERATOR = wellKnownSymbol('iterator');\nvar SAFE_CLOSING = false;\n\ntry {\n var called = 0;\n var iteratorWithReturn = {\n next: function () {\n return { done: !!called++ };\n },\n 'return': function () {\n SAFE_CLOSING = true;\n }\n };\n iteratorWithReturn[ITERATOR] = function () {\n return this;\n };\n // eslint-disable-next-line no-throw-literal\n Array.from(iteratorWithReturn, function () { throw 2; });\n} catch (error) { /* empty */ }\n\nmodule.exports = function (exec, SKIP_CLOSING) {\n if (!SKIP_CLOSING && !SAFE_CLOSING) return false;\n var ITERATION_SUPPORT = false;\n try {\n var object = {};\n object[ITERATOR] = function () {\n return {\n next: function () {\n return { done: ITERATION_SUPPORT = true };\n }\n };\n };\n exec(object);\n } catch (error) { /* empty */ }\n return ITERATION_SUPPORT;\n};\n","var isObject = require('../internals/is-object');\nvar setPrototypeOf = require('../internals/object-set-prototype-of');\n\n// makes subclassing work correct for wrapped built-ins\nmodule.exports = function ($this, dummy, Wrapper) {\n var NewTarget, NewTargetPrototype;\n if (\n // it can work only with native `setPrototypeOf`\n setPrototypeOf &&\n // we haven't completely correct pre-ES6 way for getting `new.target`, so use this\n typeof (NewTarget = dummy.constructor) == 'function' &&\n NewTarget !== Wrapper &&\n isObject(NewTargetPrototype = NewTarget.prototype) &&\n NewTargetPrototype !== Wrapper.prototype\n ) setPrototypeOf($this, NewTargetPrototype);\n return $this;\n};\n","'use strict';\nvar defineProperty = require('../internals/object-define-property').f;\nvar create = require('../internals/object-create');\nvar redefineAll = require('../internals/redefine-all');\nvar bind = require('../internals/function-bind-context');\nvar anInstance = require('../internals/an-instance');\nvar iterate = require('../internals/iterate');\nvar defineIterator = require('../internals/define-iterator');\nvar setSpecies = require('../internals/set-species');\nvar DESCRIPTORS = require('../internals/descriptors');\nvar fastKey = require('../internals/internal-metadata').fastKey;\nvar InternalStateModule = require('../internals/internal-state');\n\nvar setInternalState = InternalStateModule.set;\nvar internalStateGetterFor = InternalStateModule.getterFor;\n\nmodule.exports = {\n getConstructor: function (wrapper, CONSTRUCTOR_NAME, IS_MAP, ADDER) {\n var C = wrapper(function (that, iterable) {\n anInstance(that, C, CONSTRUCTOR_NAME);\n setInternalState(that, {\n type: CONSTRUCTOR_NAME,\n index: create(null),\n first: undefined,\n last: undefined,\n size: 0\n });\n if (!DESCRIPTORS) that.size = 0;\n if (iterable != undefined) iterate(iterable, that[ADDER], that, IS_MAP);\n });\n\n var getInternalState = internalStateGetterFor(CONSTRUCTOR_NAME);\n\n var define = function (that, key, value) {\n var state = getInternalState(that);\n var entry = getEntry(that, key);\n var previous, index;\n // change existing entry\n if (entry) {\n entry.value = value;\n // create new entry\n } else {\n state.last = entry = {\n index: index = fastKey(key, true),\n key: key,\n value: value,\n previous: previous = state.last,\n next: undefined,\n removed: false\n };\n if (!state.first) state.first = entry;\n if (previous) previous.next = entry;\n if (DESCRIPTORS) state.size++;\n else that.size++;\n // add to index\n if (index !== 'F') state.index[index] = entry;\n } return that;\n };\n\n var getEntry = function (that, key) {\n var state = getInternalState(that);\n // fast case\n var index = fastKey(key);\n var entry;\n if (index !== 'F') return state.index[index];\n // frozen object case\n for (entry = state.first; entry; entry = entry.next) {\n if (entry.key == key) return entry;\n }\n };\n\n redefineAll(C.prototype, {\n // 23.1.3.1 Map.prototype.clear()\n // 23.2.3.2 Set.prototype.clear()\n clear: function clear() {\n var that = this;\n var state = getInternalState(that);\n var data = state.index;\n var entry = state.first;\n while (entry) {\n entry.removed = true;\n if (entry.previous) entry.previous = entry.previous.next = undefined;\n delete data[entry.index];\n entry = entry.next;\n }\n state.first = state.last = undefined;\n if (DESCRIPTORS) state.size = 0;\n else that.size = 0;\n },\n // 23.1.3.3 Map.prototype.delete(key)\n // 23.2.3.4 Set.prototype.delete(value)\n 'delete': function (key) {\n var that = this;\n var state = getInternalState(that);\n var entry = getEntry(that, key);\n if (entry) {\n var next = entry.next;\n var prev = entry.previous;\n delete state.index[entry.index];\n entry.removed = true;\n if (prev) prev.next = next;\n if (next) next.previous = prev;\n if (state.first == entry) state.first = next;\n if (state.last == entry) state.last = prev;\n if (DESCRIPTORS) state.size--;\n else that.size--;\n } return !!entry;\n },\n // 23.2.3.6 Set.prototype.forEach(callbackfn, thisArg = undefined)\n // 23.1.3.5 Map.prototype.forEach(callbackfn, thisArg = undefined)\n forEach: function forEach(callbackfn /* , that = undefined */) {\n var state = getInternalState(this);\n var boundFunction = bind(callbackfn, arguments.length > 1 ? arguments[1] : undefined, 3);\n var entry;\n while (entry = entry ? entry.next : state.first) {\n boundFunction(entry.value, entry.key, this);\n // revert to the last existing entry\n while (entry && entry.removed) entry = entry.previous;\n }\n },\n // 23.1.3.7 Map.prototype.has(key)\n // 23.2.3.7 Set.prototype.has(value)\n has: function has(key) {\n return !!getEntry(this, key);\n }\n });\n\n redefineAll(C.prototype, IS_MAP ? {\n // 23.1.3.6 Map.prototype.get(key)\n get: function get(key) {\n var entry = getEntry(this, key);\n return entry && entry.value;\n },\n // 23.1.3.9 Map.prototype.set(key, value)\n set: function set(key, value) {\n return define(this, key === 0 ? 0 : key, value);\n }\n } : {\n // 23.2.3.1 Set.prototype.add(value)\n add: function add(value) {\n return define(this, value = value === 0 ? 0 : value, value);\n }\n });\n if (DESCRIPTORS) defineProperty(C.prototype, 'size', {\n get: function () {\n return getInternalState(this).size;\n }\n });\n return C;\n },\n setStrong: function (C, CONSTRUCTOR_NAME, IS_MAP) {\n var ITERATOR_NAME = CONSTRUCTOR_NAME + ' Iterator';\n var getInternalCollectionState = internalStateGetterFor(CONSTRUCTOR_NAME);\n var getInternalIteratorState = internalStateGetterFor(ITERATOR_NAME);\n // add .keys, .values, .entries, [@@iterator]\n // 23.1.3.4, 23.1.3.8, 23.1.3.11, 23.1.3.12, 23.2.3.5, 23.2.3.8, 23.2.3.10, 23.2.3.11\n defineIterator(C, CONSTRUCTOR_NAME, function (iterated, kind) {\n setInternalState(this, {\n type: ITERATOR_NAME,\n target: iterated,\n state: getInternalCollectionState(iterated),\n kind: kind,\n last: undefined\n });\n }, function () {\n var state = getInternalIteratorState(this);\n var kind = state.kind;\n var entry = state.last;\n // revert to the last existing entry\n while (entry && entry.removed) entry = entry.previous;\n // get next entry\n if (!state.target || !(state.last = entry = entry ? entry.next : state.state.first)) {\n // or finish the iteration\n state.target = undefined;\n return { value: undefined, done: true };\n }\n // return step by kind\n if (kind == 'keys') return { value: entry.key, done: false };\n if (kind == 'values') return { value: entry.value, done: false };\n return { value: [entry.key, entry.value], done: false };\n }, IS_MAP ? 'entries' : 'values', !IS_MAP, true);\n\n // add [@@species], 23.1.2.2, 23.2.2.2\n setSpecies(CONSTRUCTOR_NAME);\n }\n};\n","var redefine = require('../internals/redefine');\n\nmodule.exports = function (target, src, options) {\n for (var key in src) redefine(target, key, src[key], options);\n return target;\n};\n","'use strict';\nvar getBuiltIn = require('../internals/get-built-in');\nvar definePropertyModule = require('../internals/object-define-property');\nvar wellKnownSymbol = require('../internals/well-known-symbol');\nvar DESCRIPTORS = require('../internals/descriptors');\n\nvar SPECIES = wellKnownSymbol('species');\n\nmodule.exports = function (CONSTRUCTOR_NAME) {\n var Constructor = getBuiltIn(CONSTRUCTOR_NAME);\n var defineProperty = definePropertyModule.f;\n\n if (DESCRIPTORS && Constructor && !Constructor[SPECIES]) {\n defineProperty(Constructor, SPECIES, {\n configurable: true,\n get: function () { return this; }\n });\n }\n};\n","var TO_STRING_TAG_SUPPORT = require('../internals/to-string-tag-support');\nvar redefine = require('../internals/redefine');\nvar toString = require('../internals/object-to-string');\n\n// `Object.prototype.toString` method\n// https://tc39.github.io/ecma262/#sec-object.prototype.tostring\nif (!TO_STRING_TAG_SUPPORT) {\n redefine(Object.prototype, 'toString', toString, { unsafe: true });\n}\n","'use strict';\nvar TO_STRING_TAG_SUPPORT = require('../internals/to-string-tag-support');\nvar classof = require('../internals/classof');\n\n// `Object.prototype.toString` method implementation\n// https://tc39.github.io/ecma262/#sec-object.prototype.tostring\nmodule.exports = TO_STRING_TAG_SUPPORT ? {}.toString : function toString() {\n return '[object ' + classof(this) + ']';\n};\n","'use strict';\nvar charAt = require('../internals/string-multibyte').charAt;\nvar InternalStateModule = require('../internals/internal-state');\nvar defineIterator = require('../internals/define-iterator');\n\nvar STRING_ITERATOR = 'String Iterator';\nvar setInternalState = InternalStateModule.set;\nvar getInternalState = InternalStateModule.getterFor(STRING_ITERATOR);\n\n// `String.prototype[@@iterator]` method\n// https://tc39.github.io/ecma262/#sec-string.prototype-@@iterator\ndefineIterator(String, 'String', function (iterated) {\n setInternalState(this, {\n type: STRING_ITERATOR,\n string: String(iterated),\n index: 0\n });\n// `%StringIteratorPrototype%.next` method\n// https://tc39.github.io/ecma262/#sec-%stringiteratorprototype%.next\n}, function next() {\n var state = getInternalState(this);\n var string = state.string;\n var index = state.index;\n var point;\n if (index >= string.length) return { value: undefined, done: true };\n point = charAt(string, index);\n state.index += point.length;\n return { value: point, done: false };\n});\n","var toInteger = require('../internals/to-integer');\nvar requireObjectCoercible = require('../internals/require-object-coercible');\n\n// `String.prototype.{ codePointAt, at }` methods implementation\nvar createMethod = function (CONVERT_TO_STRING) {\n return function ($this, pos) {\n var S = String(requireObjectCoercible($this));\n var position = toInteger(pos);\n var size = S.length;\n var first, second;\n if (position < 0 || position >= size) return CONVERT_TO_STRING ? '' : undefined;\n first = S.charCodeAt(position);\n return first < 0xD800 || first > 0xDBFF || position + 1 === size\n || (second = S.charCodeAt(position + 1)) < 0xDC00 || second > 0xDFFF\n ? CONVERT_TO_STRING ? S.charAt(position) : first\n : CONVERT_TO_STRING ? S.slice(position, position + 2) : (first - 0xD800 << 10) + (second - 0xDC00) + 0x10000;\n };\n};\n\nmodule.exports = {\n // `String.prototype.codePointAt` method\n // https://tc39.github.io/ecma262/#sec-string.prototype.codepointat\n codeAt: createMethod(false),\n // `String.prototype.at` method\n // https://github.com/mathiasbynens/String.prototype.at\n charAt: createMethod(true)\n};\n","var global = require('../internals/global');\nvar DOMIterables = require('../internals/dom-iterables');\nvar forEach = require('../internals/array-for-each');\nvar createNonEnumerableProperty = require('../internals/create-non-enumerable-property');\n\nfor (var COLLECTION_NAME in DOMIterables) {\n var Collection = global[COLLECTION_NAME];\n var CollectionPrototype = Collection && Collection.prototype;\n // some Chrome versions have non-configurable methods on DOMTokenList\n if (CollectionPrototype && CollectionPrototype.forEach !== forEach) try {\n createNonEnumerableProperty(CollectionPrototype, 'forEach', forEach);\n } catch (error) {\n CollectionPrototype.forEach = forEach;\n }\n}\n","'use strict';\nvar $forEach = require('../internals/array-iteration').forEach;\nvar arrayMethodIsStrict = require('../internals/array-method-is-strict');\nvar arrayMethodUsesToLength = require('../internals/array-method-uses-to-length');\n\nvar STRICT_METHOD = arrayMethodIsStrict('forEach');\nvar USES_TO_LENGTH = arrayMethodUsesToLength('forEach');\n\n// `Array.prototype.forEach` method implementation\n// https://tc39.github.io/ecma262/#sec-array.prototype.foreach\nmodule.exports = (!STRICT_METHOD || !USES_TO_LENGTH) ? function forEach(callbackfn /* , thisArg */) {\n return $forEach(this, callbackfn, arguments.length > 1 ? arguments[1] : undefined);\n} : [].forEach;\n","'use strict';\nvar fails = require('../internals/fails');\n\nmodule.exports = function (METHOD_NAME, argument) {\n var method = [][METHOD_NAME];\n return !!method && fails(function () {\n // eslint-disable-next-line no-useless-call,no-throw-literal\n method.call(null, argument || function () { throw 1; }, 1);\n });\n};\n","var global = require('../internals/global');\nvar DOMIterables = require('../internals/dom-iterables');\nvar ArrayIteratorMethods = require('../modules/es.array.iterator');\nvar createNonEnumerableProperty = require('../internals/create-non-enumerable-property');\nvar wellKnownSymbol = require('../internals/well-known-symbol');\n\nvar ITERATOR = wellKnownSymbol('iterator');\nvar TO_STRING_TAG = wellKnownSymbol('toStringTag');\nvar ArrayValues = ArrayIteratorMethods.values;\n\nfor (var COLLECTION_NAME in DOMIterables) {\n var Collection = global[COLLECTION_NAME];\n var CollectionPrototype = Collection && Collection.prototype;\n if (CollectionPrototype) {\n // some Chrome versions have non-configurable methods on DOMTokenList\n if (CollectionPrototype[ITERATOR] !== ArrayValues) try {\n createNonEnumerableProperty(CollectionPrototype, ITERATOR, ArrayValues);\n } catch (error) {\n CollectionPrototype[ITERATOR] = ArrayValues;\n }\n if (!CollectionPrototype[TO_STRING_TAG]) {\n createNonEnumerableProperty(CollectionPrototype, TO_STRING_TAG, COLLECTION_NAME);\n }\n if (DOMIterables[COLLECTION_NAME]) for (var METHOD_NAME in ArrayIteratorMethods) {\n // some Chrome versions have non-configurable methods on DOMTokenList\n if (CollectionPrototype[METHOD_NAME] !== ArrayIteratorMethods[METHOD_NAME]) try {\n createNonEnumerableProperty(CollectionPrototype, METHOD_NAME, ArrayIteratorMethods[METHOD_NAME]);\n } catch (error) {\n CollectionPrototype[METHOD_NAME] = ArrayIteratorMethods[METHOD_NAME];\n }\n }\n }\n}\n","/*!\n * Vue.js v2.6.11\n * (c) 2014-2019 Evan You\n * Released under the MIT License.\n */\n/* */\n\nvar emptyObject = Object.freeze({});\n\n// These helpers produce better VM code in JS engines due to their\n// explicitness and function inlining.\nfunction isUndef (v) {\n return v === undefined || v === null\n}\n\nfunction isDef (v) {\n return v !== undefined && v !== null\n}\n\nfunction isTrue (v) {\n return v === true\n}\n\nfunction isFalse (v) {\n return v === false\n}\n\n/**\n * Check if value is primitive.\n */\nfunction isPrimitive (value) {\n return (\n typeof value === 'string' ||\n typeof value === 'number' ||\n // $flow-disable-line\n typeof value === 'symbol' ||\n typeof value === 'boolean'\n )\n}\n\n/**\n * Quick object check - this is primarily used to tell\n * Objects from primitive values when we know the value\n * is a JSON-compliant type.\n */\nfunction isObject (obj) {\n return obj !== null && typeof obj === 'object'\n}\n\n/**\n * Get the raw type string of a value, e.g., [object Object].\n */\nvar _toString = Object.prototype.toString;\n\nfunction toRawType (value) {\n return _toString.call(value).slice(8, -1)\n}\n\n/**\n * Strict object type check. Only returns true\n * for plain JavaScript objects.\n */\nfunction isPlainObject (obj) {\n return _toString.call(obj) === '[object Object]'\n}\n\nfunction isRegExp (v) {\n return _toString.call(v) === '[object RegExp]'\n}\n\n/**\n * Check if val is a valid array index.\n */\nfunction isValidArrayIndex (val) {\n var n = parseFloat(String(val));\n return n >= 0 && Math.floor(n) === n && isFinite(val)\n}\n\nfunction isPromise (val) {\n return (\n isDef(val) &&\n typeof val.then === 'function' &&\n typeof val.catch === 'function'\n )\n}\n\n/**\n * Convert a value to a string that is actually rendered.\n */\nfunction toString (val) {\n return val == null\n ? ''\n : Array.isArray(val) || (isPlainObject(val) && val.toString === _toString)\n ? JSON.stringify(val, null, 2)\n : String(val)\n}\n\n/**\n * Convert an input value to a number for persistence.\n * If the conversion fails, return original string.\n */\nfunction toNumber (val) {\n var n = parseFloat(val);\n return isNaN(n) ? val : n\n}\n\n/**\n * Make a map and return a function for checking if a key\n * is in that map.\n */\nfunction makeMap (\n str,\n expectsLowerCase\n) {\n var map = Object.create(null);\n var list = str.split(',');\n for (var i = 0; i < list.length; i++) {\n map[list[i]] = true;\n }\n return expectsLowerCase\n ? function (val) { return map[val.toLowerCase()]; }\n : function (val) { return map[val]; }\n}\n\n/**\n * Check if a tag is a built-in tag.\n */\nvar isBuiltInTag = makeMap('slot,component', true);\n\n/**\n * Check if an attribute is a reserved attribute.\n */\nvar isReservedAttribute = makeMap('key,ref,slot,slot-scope,is');\n\n/**\n * Remove an item from an array.\n */\nfunction remove (arr, item) {\n if (arr.length) {\n var index = arr.indexOf(item);\n if (index > -1) {\n return arr.splice(index, 1)\n }\n }\n}\n\n/**\n * Check whether an object has the property.\n */\nvar hasOwnProperty = Object.prototype.hasOwnProperty;\nfunction hasOwn (obj, key) {\n return hasOwnProperty.call(obj, key)\n}\n\n/**\n * Create a cached version of a pure function.\n */\nfunction cached (fn) {\n var cache = Object.create(null);\n return (function cachedFn (str) {\n var hit = cache[str];\n return hit || (cache[str] = fn(str))\n })\n}\n\n/**\n * Camelize a hyphen-delimited string.\n */\nvar camelizeRE = /-(\\w)/g;\nvar camelize = cached(function (str) {\n return str.replace(camelizeRE, function (_, c) { return c ? c.toUpperCase() : ''; })\n});\n\n/**\n * Capitalize a string.\n */\nvar capitalize = cached(function (str) {\n return str.charAt(0).toUpperCase() + str.slice(1)\n});\n\n/**\n * Hyphenate a camelCase string.\n */\nvar hyphenateRE = /\\B([A-Z])/g;\nvar hyphenate = cached(function (str) {\n return str.replace(hyphenateRE, '-$1').toLowerCase()\n});\n\n/**\n * Simple bind polyfill for environments that do not support it,\n * e.g., PhantomJS 1.x. Technically, we don't need this anymore\n * since native bind is now performant enough in most browsers.\n * But removing it would mean breaking code that was able to run in\n * PhantomJS 1.x, so this must be kept for backward compatibility.\n */\n\n/* istanbul ignore next */\nfunction polyfillBind (fn, ctx) {\n function boundFn (a) {\n var l = arguments.length;\n return l\n ? l > 1\n ? fn.apply(ctx, arguments)\n : fn.call(ctx, a)\n : fn.call(ctx)\n }\n\n boundFn._length = fn.length;\n return boundFn\n}\n\nfunction nativeBind (fn, ctx) {\n return fn.bind(ctx)\n}\n\nvar bind = Function.prototype.bind\n ? nativeBind\n : polyfillBind;\n\n/**\n * Convert an Array-like object to a real Array.\n */\nfunction toArray (list, start) {\n start = start || 0;\n var i = list.length - start;\n var ret = new Array(i);\n while (i--) {\n ret[i] = list[i + start];\n }\n return ret\n}\n\n/**\n * Mix properties into target object.\n */\nfunction extend (to, _from) {\n for (var key in _from) {\n to[key] = _from[key];\n }\n return to\n}\n\n/**\n * Merge an Array of Objects into a single Object.\n */\nfunction toObject (arr) {\n var res = {};\n for (var i = 0; i < arr.length; i++) {\n if (arr[i]) {\n extend(res, arr[i]);\n }\n }\n return res\n}\n\n/* eslint-disable no-unused-vars */\n\n/**\n * Perform no operation.\n * Stubbing args to make Flow happy without leaving useless transpiled code\n * with ...rest (https://flow.org/blog/2017/05/07/Strict-Function-Call-Arity/).\n */\nfunction noop (a, b, c) {}\n\n/**\n * Always return false.\n */\nvar no = function (a, b, c) { return false; };\n\n/* eslint-enable no-unused-vars */\n\n/**\n * Return the same value.\n */\nvar identity = function (_) { return _; };\n\n/**\n * Check if two values are loosely equal - that is,\n * if they are plain objects, do they have the same shape?\n */\nfunction looseEqual (a, b) {\n if (a === b) { return true }\n var isObjectA = isObject(a);\n var isObjectB = isObject(b);\n if (isObjectA && isObjectB) {\n try {\n var isArrayA = Array.isArray(a);\n var isArrayB = Array.isArray(b);\n if (isArrayA && isArrayB) {\n return a.length === b.length && a.every(function (e, i) {\n return looseEqual(e, b[i])\n })\n } else if (a instanceof Date && b instanceof Date) {\n return a.getTime() === b.getTime()\n } else if (!isArrayA && !isArrayB) {\n var keysA = Object.keys(a);\n var keysB = Object.keys(b);\n return keysA.length === keysB.length && keysA.every(function (key) {\n return looseEqual(a[key], b[key])\n })\n } else {\n /* istanbul ignore next */\n return false\n }\n } catch (e) {\n /* istanbul ignore next */\n return false\n }\n } else if (!isObjectA && !isObjectB) {\n return String(a) === String(b)\n } else {\n return false\n }\n}\n\n/**\n * Return the first index at which a loosely equal value can be\n * found in the array (if value is a plain object, the array must\n * contain an object of the same shape), or -1 if it is not present.\n */\nfunction looseIndexOf (arr, val) {\n for (var i = 0; i < arr.length; i++) {\n if (looseEqual(arr[i], val)) { return i }\n }\n return -1\n}\n\n/**\n * Ensure a function is called only once.\n */\nfunction once (fn) {\n var called = false;\n return function () {\n if (!called) {\n called = true;\n fn.apply(this, arguments);\n }\n }\n}\n\nvar SSR_ATTR = 'data-server-rendered';\n\nvar ASSET_TYPES = [\n 'component',\n 'directive',\n 'filter'\n];\n\nvar LIFECYCLE_HOOKS = [\n 'beforeCreate',\n 'created',\n 'beforeMount',\n 'mounted',\n 'beforeUpdate',\n 'updated',\n 'beforeDestroy',\n 'destroyed',\n 'activated',\n 'deactivated',\n 'errorCaptured',\n 'serverPrefetch'\n];\n\n/* */\n\n\n\nvar config = ({\n /**\n * Option merge strategies (used in core/util/options)\n */\n // $flow-disable-line\n optionMergeStrategies: Object.create(null),\n\n /**\n * Whether to suppress warnings.\n */\n silent: false,\n\n /**\n * Show production mode tip message on boot?\n */\n productionTip: process.env.NODE_ENV !== 'production',\n\n /**\n * Whether to enable devtools\n */\n devtools: process.env.NODE_ENV !== 'production',\n\n /**\n * Whether to record perf\n */\n performance: false,\n\n /**\n * Error handler for watcher errors\n */\n errorHandler: null,\n\n /**\n * Warn handler for watcher warns\n */\n warnHandler: null,\n\n /**\n * Ignore certain custom elements\n */\n ignoredElements: [],\n\n /**\n * Custom user key aliases for v-on\n */\n // $flow-disable-line\n keyCodes: Object.create(null),\n\n /**\n * Check if a tag is reserved so that it cannot be registered as a\n * component. This is platform-dependent and may be overwritten.\n */\n isReservedTag: no,\n\n /**\n * Check if an attribute is reserved so that it cannot be used as a component\n * prop. This is platform-dependent and may be overwritten.\n */\n isReservedAttr: no,\n\n /**\n * Check if a tag is an unknown element.\n * Platform-dependent.\n */\n isUnknownElement: no,\n\n /**\n * Get the namespace of an element\n */\n getTagNamespace: noop,\n\n /**\n * Parse the real tag name for the specific platform.\n */\n parsePlatformTagName: identity,\n\n /**\n * Check if an attribute must be bound using property, e.g. value\n * Platform-dependent.\n */\n mustUseProp: no,\n\n /**\n * Perform updates asynchronously. Intended to be used by Vue Test Utils\n * This will significantly reduce performance if set to false.\n */\n async: true,\n\n /**\n * Exposed for legacy reasons\n */\n _lifecycleHooks: LIFECYCLE_HOOKS\n});\n\n/* */\n\n/**\n * unicode letters used for parsing html tags, component names and property paths.\n * using https://www.w3.org/TR/html53/semantics-scripting.html#potentialcustomelementname\n * skipping \\u10000-\\uEFFFF due to it freezing up PhantomJS\n */\nvar unicodeRegExp = /a-zA-Z\\u00B7\\u00C0-\\u00D6\\u00D8-\\u00F6\\u00F8-\\u037D\\u037F-\\u1FFF\\u200C-\\u200D\\u203F-\\u2040\\u2070-\\u218F\\u2C00-\\u2FEF\\u3001-\\uD7FF\\uF900-\\uFDCF\\uFDF0-\\uFFFD/;\n\n/**\n * Check if a string starts with $ or _\n */\nfunction isReserved (str) {\n var c = (str + '').charCodeAt(0);\n return c === 0x24 || c === 0x5F\n}\n\n/**\n * Define a property.\n */\nfunction def (obj, key, val, enumerable) {\n Object.defineProperty(obj, key, {\n value: val,\n enumerable: !!enumerable,\n writable: true,\n configurable: true\n });\n}\n\n/**\n * Parse simple path.\n */\nvar bailRE = new RegExp((\"[^\" + (unicodeRegExp.source) + \".$_\\\\d]\"));\nfunction parsePath (path) {\n if (bailRE.test(path)) {\n return\n }\n var segments = path.split('.');\n return function (obj) {\n for (var i = 0; i < segments.length; i++) {\n if (!obj) { return }\n obj = obj[segments[i]];\n }\n return obj\n }\n}\n\n/* */\n\n// can we use __proto__?\nvar hasProto = '__proto__' in {};\n\n// Browser environment sniffing\nvar inBrowser = typeof window !== 'undefined';\nvar inWeex = typeof WXEnvironment !== 'undefined' && !!WXEnvironment.platform;\nvar weexPlatform = inWeex && WXEnvironment.platform.toLowerCase();\nvar UA = inBrowser && window.navigator.userAgent.toLowerCase();\nvar isIE = UA && /msie|trident/.test(UA);\nvar isIE9 = UA && UA.indexOf('msie 9.0') > 0;\nvar isEdge = UA && UA.indexOf('edge/') > 0;\nvar isAndroid = (UA && UA.indexOf('android') > 0) || (weexPlatform === 'android');\nvar isIOS = (UA && /iphone|ipad|ipod|ios/.test(UA)) || (weexPlatform === 'ios');\nvar isChrome = UA && /chrome\\/\\d+/.test(UA) && !isEdge;\nvar isPhantomJS = UA && /phantomjs/.test(UA);\nvar isFF = UA && UA.match(/firefox\\/(\\d+)/);\n\n// Firefox has a \"watch\" function on Object.prototype...\nvar nativeWatch = ({}).watch;\n\nvar supportsPassive = false;\nif (inBrowser) {\n try {\n var opts = {};\n Object.defineProperty(opts, 'passive', ({\n get: function get () {\n /* istanbul ignore next */\n supportsPassive = true;\n }\n })); // https://github.com/facebook/flow/issues/285\n window.addEventListener('test-passive', null, opts);\n } catch (e) {}\n}\n\n// this needs to be lazy-evaled because vue may be required before\n// vue-server-renderer can set VUE_ENV\nvar _isServer;\nvar isServerRendering = function () {\n if (_isServer === undefined) {\n /* istanbul ignore if */\n if (!inBrowser && !inWeex && typeof global !== 'undefined') {\n // detect presence of vue-server-renderer and avoid\n // Webpack shimming the process\n _isServer = global['process'] && global['process'].env.VUE_ENV === 'server';\n } else {\n _isServer = false;\n }\n }\n return _isServer\n};\n\n// detect devtools\nvar devtools = inBrowser && window.__VUE_DEVTOOLS_GLOBAL_HOOK__;\n\n/* istanbul ignore next */\nfunction isNative (Ctor) {\n return typeof Ctor === 'function' && /native code/.test(Ctor.toString())\n}\n\nvar hasSymbol =\n typeof Symbol !== 'undefined' && isNative(Symbol) &&\n typeof Reflect !== 'undefined' && isNative(Reflect.ownKeys);\n\nvar _Set;\n/* istanbul ignore if */ // $flow-disable-line\nif (typeof Set !== 'undefined' && isNative(Set)) {\n // use native Set when available.\n _Set = Set;\n} else {\n // a non-standard Set polyfill that only works with primitive keys.\n _Set = /*@__PURE__*/(function () {\n function Set () {\n this.set = Object.create(null);\n }\n Set.prototype.has = function has (key) {\n return this.set[key] === true\n };\n Set.prototype.add = function add (key) {\n this.set[key] = true;\n };\n Set.prototype.clear = function clear () {\n this.set = Object.create(null);\n };\n\n return Set;\n }());\n}\n\n/* */\n\nvar warn = noop;\nvar tip = noop;\nvar generateComponentTrace = (noop); // work around flow check\nvar formatComponentName = (noop);\n\nif (process.env.NODE_ENV !== 'production') {\n var hasConsole = typeof console !== 'undefined';\n var classifyRE = /(?:^|[-_])(\\w)/g;\n var classify = function (str) { return str\n .replace(classifyRE, function (c) { return c.toUpperCase(); })\n .replace(/[-_]/g, ''); };\n\n warn = function (msg, vm) {\n var trace = vm ? generateComponentTrace(vm) : '';\n\n if (config.warnHandler) {\n config.warnHandler.call(null, msg, vm, trace);\n } else if (hasConsole && (!config.silent)) {\n console.error((\"[Vue warn]: \" + msg + trace));\n }\n };\n\n tip = function (msg, vm) {\n if (hasConsole && (!config.silent)) {\n console.warn(\"[Vue tip]: \" + msg + (\n vm ? generateComponentTrace(vm) : ''\n ));\n }\n };\n\n formatComponentName = function (vm, includeFile) {\n if (vm.$root === vm) {\n return '<Root>'\n }\n var options = typeof vm === 'function' && vm.cid != null\n ? vm.options\n : vm._isVue\n ? vm.$options || vm.constructor.options\n : vm;\n var name = options.name || options._componentTag;\n var file = options.__file;\n if (!name && file) {\n var match = file.match(/([^/\\\\]+)\\.vue$/);\n name = match && match[1];\n }\n\n return (\n (name ? (\"<\" + (classify(name)) + \">\") : \"<Anonymous>\") +\n (file && includeFile !== false ? (\" at \" + file) : '')\n )\n };\n\n var repeat = function (str, n) {\n var res = '';\n while (n) {\n if (n % 2 === 1) { res += str; }\n if (n > 1) { str += str; }\n n >>= 1;\n }\n return res\n };\n\n generateComponentTrace = function (vm) {\n if (vm._isVue && vm.$parent) {\n var tree = [];\n var currentRecursiveSequence = 0;\n while (vm) {\n if (tree.length > 0) {\n var last = tree[tree.length - 1];\n if (last.constructor === vm.constructor) {\n currentRecursiveSequence++;\n vm = vm.$parent;\n continue\n } else if (currentRecursiveSequence > 0) {\n tree[tree.length - 1] = [last, currentRecursiveSequence];\n currentRecursiveSequence = 0;\n }\n }\n tree.push(vm);\n vm = vm.$parent;\n }\n return '\\n\\nfound in\\n\\n' + tree\n .map(function (vm, i) { return (\"\" + (i === 0 ? '---> ' : repeat(' ', 5 + i * 2)) + (Array.isArray(vm)\n ? ((formatComponentName(vm[0])) + \"... (\" + (vm[1]) + \" recursive calls)\")\n : formatComponentName(vm))); })\n .join('\\n')\n } else {\n return (\"\\n\\n(found in \" + (formatComponentName(vm)) + \")\")\n }\n };\n}\n\n/* */\n\nvar uid = 0;\n\n/**\n * A dep is an observable that can have multiple\n * directives subscribing to it.\n */\nvar Dep = function Dep () {\n this.id = uid++;\n this.subs = [];\n};\n\nDep.prototype.addSub = function addSub (sub) {\n this.subs.push(sub);\n};\n\nDep.prototype.removeSub = function removeSub (sub) {\n remove(this.subs, sub);\n};\n\nDep.prototype.depend = function depend () {\n if (Dep.target) {\n Dep.target.addDep(this);\n }\n};\n\nDep.prototype.notify = function notify () {\n // stabilize the subscriber list first\n var subs = this.subs.slice();\n if (process.env.NODE_ENV !== 'production' && !config.async) {\n // subs aren't sorted in scheduler if not running async\n // we need to sort them now to make sure they fire in correct\n // order\n subs.sort(function (a, b) { return a.id - b.id; });\n }\n for (var i = 0, l = subs.length; i < l; i++) {\n subs[i].update();\n }\n};\n\n// The current target watcher being evaluated.\n// This is globally unique because only one watcher\n// can be evaluated at a time.\nDep.target = null;\nvar targetStack = [];\n\nfunction pushTarget (target) {\n targetStack.push(target);\n Dep.target = target;\n}\n\nfunction popTarget () {\n targetStack.pop();\n Dep.target = targetStack[targetStack.length - 1];\n}\n\n/* */\n\nvar VNode = function VNode (\n tag,\n data,\n children,\n text,\n elm,\n context,\n componentOptions,\n asyncFactory\n) {\n this.tag = tag;\n this.data = data;\n this.children = children;\n this.text = text;\n this.elm = elm;\n this.ns = undefined;\n this.context = context;\n this.fnContext = undefined;\n this.fnOptions = undefined;\n this.fnScopeId = undefined;\n this.key = data && data.key;\n this.componentOptions = componentOptions;\n this.componentInstance = undefined;\n this.parent = undefined;\n this.raw = false;\n this.isStatic = false;\n this.isRootInsert = true;\n this.isComment = false;\n this.isCloned = false;\n this.isOnce = false;\n this.asyncFactory = asyncFactory;\n this.asyncMeta = undefined;\n this.isAsyncPlaceholder = false;\n};\n\nvar prototypeAccessors = { child: { configurable: true } };\n\n// DEPRECATED: alias for componentInstance for backwards compat.\n/* istanbul ignore next */\nprototypeAccessors.child.get = function () {\n return this.componentInstance\n};\n\nObject.defineProperties( VNode.prototype, prototypeAccessors );\n\nvar createEmptyVNode = function (text) {\n if ( text === void 0 ) text = '';\n\n var node = new VNode();\n node.text = text;\n node.isComment = true;\n return node\n};\n\nfunction createTextVNode (val) {\n return new VNode(undefined, undefined, undefined, String(val))\n}\n\n// optimized shallow clone\n// used for static nodes and slot nodes because they may be reused across\n// multiple renders, cloning them avoids errors when DOM manipulations rely\n// on their elm reference.\nfunction cloneVNode (vnode) {\n var cloned = new VNode(\n vnode.tag,\n vnode.data,\n // #7975\n // clone children array to avoid mutating original in case of cloning\n // a child.\n vnode.children && vnode.children.slice(),\n vnode.text,\n vnode.elm,\n vnode.context,\n vnode.componentOptions,\n vnode.asyncFactory\n );\n cloned.ns = vnode.ns;\n cloned.isStatic = vnode.isStatic;\n cloned.key = vnode.key;\n cloned.isComment = vnode.isComment;\n cloned.fnContext = vnode.fnContext;\n cloned.fnOptions = vnode.fnOptions;\n cloned.fnScopeId = vnode.fnScopeId;\n cloned.asyncMeta = vnode.asyncMeta;\n cloned.isCloned = true;\n return cloned\n}\n\n/*\n * not type checking this file because flow doesn't play well with\n * dynamically accessing methods on Array prototype\n */\n\nvar arrayProto = Array.prototype;\nvar arrayMethods = Object.create(arrayProto);\n\nvar methodsToPatch = [\n 'push',\n 'pop',\n 'shift',\n 'unshift',\n 'splice',\n 'sort',\n 'reverse'\n];\n\n/**\n * Intercept mutating methods and emit events\n */\nmethodsToPatch.forEach(function (method) {\n // cache original method\n var original = arrayProto[method];\n def(arrayMethods, method, function mutator () {\n var args = [], len = arguments.length;\n while ( len-- ) args[ len ] = arguments[ len ];\n\n var result = original.apply(this, args);\n var ob = this.__ob__;\n var inserted;\n switch (method) {\n case 'push':\n case 'unshift':\n inserted = args;\n break\n case 'splice':\n inserted = args.slice(2);\n break\n }\n if (inserted) { ob.observeArray(inserted); }\n // notify change\n ob.dep.notify();\n return result\n });\n});\n\n/* */\n\nvar arrayKeys = Object.getOwnPropertyNames(arrayMethods);\n\n/**\n * In some cases we may want to disable observation inside a component's\n * update computation.\n */\nvar shouldObserve = true;\n\nfunction toggleObserving (value) {\n shouldObserve = value;\n}\n\n/**\n * Observer class that is attached to each observed\n * object. Once attached, the observer converts the target\n * object's property keys into getter/setters that\n * collect dependencies and dispatch updates.\n */\nvar Observer = function Observer (value) {\n this.value = value;\n this.dep = new Dep();\n this.vmCount = 0;\n def(value, '__ob__', this);\n if (Array.isArray(value)) {\n if (hasProto) {\n protoAugment(value, arrayMethods);\n } else {\n copyAugment(value, arrayMethods, arrayKeys);\n }\n this.observeArray(value);\n } else {\n this.walk(value);\n }\n};\n\n/**\n * Walk through all properties and convert them into\n * getter/setters. This method should only be called when\n * value type is Object.\n */\nObserver.prototype.walk = function walk (obj) {\n var keys = Object.keys(obj);\n for (var i = 0; i < keys.length; i++) {\n defineReactive$$1(obj, keys[i]);\n }\n};\n\n/**\n * Observe a list of Array items.\n */\nObserver.prototype.observeArray = function observeArray (items) {\n for (var i = 0, l = items.length; i < l; i++) {\n observe(items[i]);\n }\n};\n\n// helpers\n\n/**\n * Augment a target Object or Array by intercepting\n * the prototype chain using __proto__\n */\nfunction protoAugment (target, src) {\n /* eslint-disable no-proto */\n target.__proto__ = src;\n /* eslint-enable no-proto */\n}\n\n/**\n * Augment a target Object or Array by defining\n * hidden properties.\n */\n/* istanbul ignore next */\nfunction copyAugment (target, src, keys) {\n for (var i = 0, l = keys.length; i < l; i++) {\n var key = keys[i];\n def(target, key, src[key]);\n }\n}\n\n/**\n * Attempt to create an observer instance for a value,\n * returns the new observer if successfully observed,\n * or the existing observer if the value already has one.\n */\nfunction observe (value, asRootData) {\n if (!isObject(value) || value instanceof VNode) {\n return\n }\n var ob;\n if (hasOwn(value, '__ob__') && value.__ob__ instanceof Observer) {\n ob = value.__ob__;\n } else if (\n shouldObserve &&\n !isServerRendering() &&\n (Array.isArray(value) || isPlainObject(value)) &&\n Object.isExtensible(value) &&\n !value._isVue\n ) {\n ob = new Observer(value);\n }\n if (asRootData && ob) {\n ob.vmCount++;\n }\n return ob\n}\n\n/**\n * Define a reactive property on an Object.\n */\nfunction defineReactive$$1 (\n obj,\n key,\n val,\n customSetter,\n shallow\n) {\n var dep = new Dep();\n\n var property = Object.getOwnPropertyDescriptor(obj, key);\n if (property && property.configurable === false) {\n return\n }\n\n // cater for pre-defined getter/setters\n var getter = property && property.get;\n var setter = property && property.set;\n if ((!getter || setter) && arguments.length === 2) {\n val = obj[key];\n }\n\n var childOb = !shallow && observe(val);\n Object.defineProperty(obj, key, {\n enumerable: true,\n configurable: true,\n get: function reactiveGetter () {\n var value = getter ? getter.call(obj) : val;\n if (Dep.target) {\n dep.depend();\n if (childOb) {\n childOb.dep.depend();\n if (Array.isArray(value)) {\n dependArray(value);\n }\n }\n }\n return value\n },\n set: function reactiveSetter (newVal) {\n var value = getter ? getter.call(obj) : val;\n /* eslint-disable no-self-compare */\n if (newVal === value || (newVal !== newVal && value !== value)) {\n return\n }\n /* eslint-enable no-self-compare */\n if (process.env.NODE_ENV !== 'production' && customSetter) {\n customSetter();\n }\n // #7981: for accessor properties without setter\n if (getter && !setter) { return }\n if (setter) {\n setter.call(obj, newVal);\n } else {\n val = newVal;\n }\n childOb = !shallow && observe(newVal);\n dep.notify();\n }\n });\n}\n\n/**\n * Set a property on an object. Adds the new property and\n * triggers change notification if the property doesn't\n * already exist.\n */\nfunction set (target, key, val) {\n if (process.env.NODE_ENV !== 'production' &&\n (isUndef(target) || isPrimitive(target))\n ) {\n warn((\"Cannot set reactive property on undefined, null, or primitive value: \" + ((target))));\n }\n if (Array.isArray(target) && isValidArrayIndex(key)) {\n target.length = Math.max(target.length, key);\n target.splice(key, 1, val);\n return val\n }\n if (key in target && !(key in Object.prototype)) {\n target[key] = val;\n return val\n }\n var ob = (target).__ob__;\n if (target._isVue || (ob && ob.vmCount)) {\n process.env.NODE_ENV !== 'production' && warn(\n 'Avoid adding reactive properties to a Vue instance or its root $data ' +\n 'at runtime - declare it upfront in the data option.'\n );\n return val\n }\n if (!ob) {\n target[key] = val;\n return val\n }\n defineReactive$$1(ob.value, key, val);\n ob.dep.notify();\n return val\n}\n\n/**\n * Delete a property and trigger change if necessary.\n */\nfunction del (target, key) {\n if (process.env.NODE_ENV !== 'production' &&\n (isUndef(target) || isPrimitive(target))\n ) {\n warn((\"Cannot delete reactive property on undefined, null, or primitive value: \" + ((target))));\n }\n if (Array.isArray(target) && isValidArrayIndex(key)) {\n target.splice(key, 1);\n return\n }\n var ob = (target).__ob__;\n if (target._isVue || (ob && ob.vmCount)) {\n process.env.NODE_ENV !== 'production' && warn(\n 'Avoid deleting properties on a Vue instance or its root $data ' +\n '- just set it to null.'\n );\n return\n }\n if (!hasOwn(target, key)) {\n return\n }\n delete target[key];\n if (!ob) {\n return\n }\n ob.dep.notify();\n}\n\n/**\n * Collect dependencies on array elements when the array is touched, since\n * we cannot intercept array element access like property getters.\n */\nfunction dependArray (value) {\n for (var e = (void 0), i = 0, l = value.length; i < l; i++) {\n e = value[i];\n e && e.__ob__ && e.__ob__.dep.depend();\n if (Array.isArray(e)) {\n dependArray(e);\n }\n }\n}\n\n/* */\n\n/**\n * Option overwriting strategies are functions that handle\n * how to merge a parent option value and a child option\n * value into the final value.\n */\nvar strats = config.optionMergeStrategies;\n\n/**\n * Options with restrictions\n */\nif (process.env.NODE_ENV !== 'production') {\n strats.el = strats.propsData = function (parent, child, vm, key) {\n if (!vm) {\n warn(\n \"option \\\"\" + key + \"\\\" can only be used during instance \" +\n 'creation with the `new` keyword.'\n );\n }\n return defaultStrat(parent, child)\n };\n}\n\n/**\n * Helper that recursively merges two data objects together.\n */\nfunction mergeData (to, from) {\n if (!from) { return to }\n var key, toVal, fromVal;\n\n var keys = hasSymbol\n ? Reflect.ownKeys(from)\n : Object.keys(from);\n\n for (var i = 0; i < keys.length; i++) {\n key = keys[i];\n // in case the object is already observed...\n if (key === '__ob__') { continue }\n toVal = to[key];\n fromVal = from[key];\n if (!hasOwn(to, key)) {\n set(to, key, fromVal);\n } else if (\n toVal !== fromVal &&\n isPlainObject(toVal) &&\n isPlainObject(fromVal)\n ) {\n mergeData(toVal, fromVal);\n }\n }\n return to\n}\n\n/**\n * Data\n */\nfunction mergeDataOrFn (\n parentVal,\n childVal,\n vm\n) {\n if (!vm) {\n // in a Vue.extend merge, both should be functions\n if (!childVal) {\n return parentVal\n }\n if (!parentVal) {\n return childVal\n }\n // when parentVal & childVal are both present,\n // we need to return a function that returns the\n // merged result of both functions... no need to\n // check if parentVal is a function here because\n // it has to be a function to pass previous merges.\n return function mergedDataFn () {\n return mergeData(\n typeof childVal === 'function' ? childVal.call(this, this) : childVal,\n typeof parentVal === 'function' ? parentVal.call(this, this) : parentVal\n )\n }\n } else {\n return function mergedInstanceDataFn () {\n // instance merge\n var instanceData = typeof childVal === 'function'\n ? childVal.call(vm, vm)\n : childVal;\n var defaultData = typeof parentVal === 'function'\n ? parentVal.call(vm, vm)\n : parentVal;\n if (instanceData) {\n return mergeData(instanceData, defaultData)\n } else {\n return defaultData\n }\n }\n }\n}\n\nstrats.data = function (\n parentVal,\n childVal,\n vm\n) {\n if (!vm) {\n if (childVal && typeof childVal !== 'function') {\n process.env.NODE_ENV !== 'production' && warn(\n 'The \"data\" option should be a function ' +\n 'that returns a per-instance value in component ' +\n 'definitions.',\n vm\n );\n\n return parentVal\n }\n return mergeDataOrFn(parentVal, childVal)\n }\n\n return mergeDataOrFn(parentVal, childVal, vm)\n};\n\n/**\n * Hooks and props are merged as arrays.\n */\nfunction mergeHook (\n parentVal,\n childVal\n) {\n var res = childVal\n ? parentVal\n ? parentVal.concat(childVal)\n : Array.isArray(childVal)\n ? childVal\n : [childVal]\n : parentVal;\n return res\n ? dedupeHooks(res)\n : res\n}\n\nfunction dedupeHooks (hooks) {\n var res = [];\n for (var i = 0; i < hooks.length; i++) {\n if (res.indexOf(hooks[i]) === -1) {\n res.push(hooks[i]);\n }\n }\n return res\n}\n\nLIFECYCLE_HOOKS.forEach(function (hook) {\n strats[hook] = mergeHook;\n});\n\n/**\n * Assets\n *\n * When a vm is present (instance creation), we need to do\n * a three-way merge between constructor options, instance\n * options and parent options.\n */\nfunction mergeAssets (\n parentVal,\n childVal,\n vm,\n key\n) {\n var res = Object.create(parentVal || null);\n if (childVal) {\n process.env.NODE_ENV !== 'production' && assertObjectType(key, childVal, vm);\n return extend(res, childVal)\n } else {\n return res\n }\n}\n\nASSET_TYPES.forEach(function (type) {\n strats[type + 's'] = mergeAssets;\n});\n\n/**\n * Watchers.\n *\n * Watchers hashes should not overwrite one\n * another, so we merge them as arrays.\n */\nstrats.watch = function (\n parentVal,\n childVal,\n vm,\n key\n) {\n // work around Firefox's Object.prototype.watch...\n if (parentVal === nativeWatch) { parentVal = undefined; }\n if (childVal === nativeWatch) { childVal = undefined; }\n /* istanbul ignore if */\n if (!childVal) { return Object.create(parentVal || null) }\n if (process.env.NODE_ENV !== 'production') {\n assertObjectType(key, childVal, vm);\n }\n if (!parentVal) { return childVal }\n var ret = {};\n extend(ret, parentVal);\n for (var key$1 in childVal) {\n var parent = ret[key$1];\n var child = childVal[key$1];\n if (parent && !Array.isArray(parent)) {\n parent = [parent];\n }\n ret[key$1] = parent\n ? parent.concat(child)\n : Array.isArray(child) ? child : [child];\n }\n return ret\n};\n\n/**\n * Other object hashes.\n */\nstrats.props =\nstrats.methods =\nstrats.inject =\nstrats.computed = function (\n parentVal,\n childVal,\n vm,\n key\n) {\n if (childVal && process.env.NODE_ENV !== 'production') {\n assertObjectType(key, childVal, vm);\n }\n if (!parentVal) { return childVal }\n var ret = Object.create(null);\n extend(ret, parentVal);\n if (childVal) { extend(ret, childVal); }\n return ret\n};\nstrats.provide = mergeDataOrFn;\n\n/**\n * Default strategy.\n */\nvar defaultStrat = function (parentVal, childVal) {\n return childVal === undefined\n ? parentVal\n : childVal\n};\n\n/**\n * Validate component names\n */\nfunction checkComponents (options) {\n for (var key in options.components) {\n validateComponentName(key);\n }\n}\n\nfunction validateComponentName (name) {\n if (!new RegExp((\"^[a-zA-Z][\\\\-\\\\.0-9_\" + (unicodeRegExp.source) + \"]*$\")).test(name)) {\n warn(\n 'Invalid component name: \"' + name + '\". Component names ' +\n 'should conform to valid custom element name in html5 specification.'\n );\n }\n if (isBuiltInTag(name) || config.isReservedTag(name)) {\n warn(\n 'Do not use built-in or reserved HTML elements as component ' +\n 'id: ' + name\n );\n }\n}\n\n/**\n * Ensure all props option syntax are normalized into the\n * Object-based format.\n */\nfunction normalizeProps (options, vm) {\n var props = options.props;\n if (!props) { return }\n var res = {};\n var i, val, name;\n if (Array.isArray(props)) {\n i = props.length;\n while (i--) {\n val = props[i];\n if (typeof val === 'string') {\n name = camelize(val);\n res[name] = { type: null };\n } else if (process.env.NODE_ENV !== 'production') {\n warn('props must be strings when using array syntax.');\n }\n }\n } else if (isPlainObject(props)) {\n for (var key in props) {\n val = props[key];\n name = camelize(key);\n res[name] = isPlainObject(val)\n ? val\n : { type: val };\n }\n } else if (process.env.NODE_ENV !== 'production') {\n warn(\n \"Invalid value for option \\\"props\\\": expected an Array or an Object, \" +\n \"but got \" + (toRawType(props)) + \".\",\n vm\n );\n }\n options.props = res;\n}\n\n/**\n * Normalize all injections into Object-based format\n */\nfunction normalizeInject (options, vm) {\n var inject = options.inject;\n if (!inject) { return }\n var normalized = options.inject = {};\n if (Array.isArray(inject)) {\n for (var i = 0; i < inject.length; i++) {\n normalized[inject[i]] = { from: inject[i] };\n }\n } else if (isPlainObject(inject)) {\n for (var key in inject) {\n var val = inject[key];\n normalized[key] = isPlainObject(val)\n ? extend({ from: key }, val)\n : { from: val };\n }\n } else if (process.env.NODE_ENV !== 'production') {\n warn(\n \"Invalid value for option \\\"inject\\\": expected an Array or an Object, \" +\n \"but got \" + (toRawType(inject)) + \".\",\n vm\n );\n }\n}\n\n/**\n * Normalize raw function directives into object format.\n */\nfunction normalizeDirectives (options) {\n var dirs = options.directives;\n if (dirs) {\n for (var key in dirs) {\n var def$$1 = dirs[key];\n if (typeof def$$1 === 'function') {\n dirs[key] = { bind: def$$1, update: def$$1 };\n }\n }\n }\n}\n\nfunction assertObjectType (name, value, vm) {\n if (!isPlainObject(value)) {\n warn(\n \"Invalid value for option \\\"\" + name + \"\\\": expected an Object, \" +\n \"but got \" + (toRawType(value)) + \".\",\n vm\n );\n }\n}\n\n/**\n * Merge two option objects into a new one.\n * Core utility used in both instantiation and inheritance.\n */\nfunction mergeOptions (\n parent,\n child,\n vm\n) {\n if (process.env.NODE_ENV !== 'production') {\n checkComponents(child);\n }\n\n if (typeof child === 'function') {\n child = child.options;\n }\n\n normalizeProps(child, vm);\n normalizeInject(child, vm);\n normalizeDirectives(child);\n\n // Apply extends and mixins on the child options,\n // but only if it is a raw options object that isn't\n // the result of another mergeOptions call.\n // Only merged options has the _base property.\n if (!child._base) {\n if (child.extends) {\n parent = mergeOptions(parent, child.extends, vm);\n }\n if (child.mixins) {\n for (var i = 0, l = child.mixins.length; i < l; i++) {\n parent = mergeOptions(parent, child.mixins[i], vm);\n }\n }\n }\n\n var options = {};\n var key;\n for (key in parent) {\n mergeField(key);\n }\n for (key in child) {\n if (!hasOwn(parent, key)) {\n mergeField(key);\n }\n }\n function mergeField (key) {\n var strat = strats[key] || defaultStrat;\n options[key] = strat(parent[key], child[key], vm, key);\n }\n return options\n}\n\n/**\n * Resolve an asset.\n * This function is used because child instances need access\n * to assets defined in its ancestor chain.\n */\nfunction resolveAsset (\n options,\n type,\n id,\n warnMissing\n) {\n /* istanbul ignore if */\n if (typeof id !== 'string') {\n return\n }\n var assets = options[type];\n // check local registration variations first\n if (hasOwn(assets, id)) { return assets[id] }\n var camelizedId = camelize(id);\n if (hasOwn(assets, camelizedId)) { return assets[camelizedId] }\n var PascalCaseId = capitalize(camelizedId);\n if (hasOwn(assets, PascalCaseId)) { return assets[PascalCaseId] }\n // fallback to prototype chain\n var res = assets[id] || assets[camelizedId] || assets[PascalCaseId];\n if (process.env.NODE_ENV !== 'production' && warnMissing && !res) {\n warn(\n 'Failed to resolve ' + type.slice(0, -1) + ': ' + id,\n options\n );\n }\n return res\n}\n\n/* */\n\n\n\nfunction validateProp (\n key,\n propOptions,\n propsData,\n vm\n) {\n var prop = propOptions[key];\n var absent = !hasOwn(propsData, key);\n var value = propsData[key];\n // boolean casting\n var booleanIndex = getTypeIndex(Boolean, prop.type);\n if (booleanIndex > -1) {\n if (absent && !hasOwn(prop, 'default')) {\n value = false;\n } else if (value === '' || value === hyphenate(key)) {\n // only cast empty string / same name to boolean if\n // boolean has higher priority\n var stringIndex = getTypeIndex(String, prop.type);\n if (stringIndex < 0 || booleanIndex < stringIndex) {\n value = true;\n }\n }\n }\n // check default value\n if (value === undefined) {\n value = getPropDefaultValue(vm, prop, key);\n // since the default value is a fresh copy,\n // make sure to observe it.\n var prevShouldObserve = shouldObserve;\n toggleObserving(true);\n observe(value);\n toggleObserving(prevShouldObserve);\n }\n if (\n process.env.NODE_ENV !== 'production' &&\n // skip validation for weex recycle-list child component props\n !(false)\n ) {\n assertProp(prop, key, value, vm, absent);\n }\n return value\n}\n\n/**\n * Get the default value of a prop.\n */\nfunction getPropDefaultValue (vm, prop, key) {\n // no default, return undefined\n if (!hasOwn(prop, 'default')) {\n return undefined\n }\n var def = prop.default;\n // warn against non-factory defaults for Object & Array\n if (process.env.NODE_ENV !== 'production' && isObject(def)) {\n warn(\n 'Invalid default value for prop \"' + key + '\": ' +\n 'Props with type Object/Array must use a factory function ' +\n 'to return the default value.',\n vm\n );\n }\n // the raw prop value was also undefined from previous render,\n // return previous default value to avoid unnecessary watcher trigger\n if (vm && vm.$options.propsData &&\n vm.$options.propsData[key] === undefined &&\n vm._props[key] !== undefined\n ) {\n return vm._props[key]\n }\n // call factory function for non-Function types\n // a value is Function if its prototype is function even across different execution context\n return typeof def === 'function' && getType(prop.type) !== 'Function'\n ? def.call(vm)\n : def\n}\n\n/**\n * Assert whether a prop is valid.\n */\nfunction assertProp (\n prop,\n name,\n value,\n vm,\n absent\n) {\n if (prop.required && absent) {\n warn(\n 'Missing required prop: \"' + name + '\"',\n vm\n );\n return\n }\n if (value == null && !prop.required) {\n return\n }\n var type = prop.type;\n var valid = !type || type === true;\n var expectedTypes = [];\n if (type) {\n if (!Array.isArray(type)) {\n type = [type];\n }\n for (var i = 0; i < type.length && !valid; i++) {\n var assertedType = assertType(value, type[i]);\n expectedTypes.push(assertedType.expectedType || '');\n valid = assertedType.valid;\n }\n }\n\n if (!valid) {\n warn(\n getInvalidTypeMessage(name, value, expectedTypes),\n vm\n );\n return\n }\n var validator = prop.validator;\n if (validator) {\n if (!validator(value)) {\n warn(\n 'Invalid prop: custom validator check failed for prop \"' + name + '\".',\n vm\n );\n }\n }\n}\n\nvar simpleCheckRE = /^(String|Number|Boolean|Function|Symbol)$/;\n\nfunction assertType (value, type) {\n var valid;\n var expectedType = getType(type);\n if (simpleCheckRE.test(expectedType)) {\n var t = typeof value;\n valid = t === expectedType.toLowerCase();\n // for primitive wrapper objects\n if (!valid && t === 'object') {\n valid = value instanceof type;\n }\n } else if (expectedType === 'Object') {\n valid = isPlainObject(value);\n } else if (expectedType === 'Array') {\n valid = Array.isArray(value);\n } else {\n valid = value instanceof type;\n }\n return {\n valid: valid,\n expectedType: expectedType\n }\n}\n\n/**\n * Use function string name to check built-in types,\n * because a simple equality check will fail when running\n * across different vms / iframes.\n */\nfunction getType (fn) {\n var match = fn && fn.toString().match(/^\\s*function (\\w+)/);\n return match ? match[1] : ''\n}\n\nfunction isSameType (a, b) {\n return getType(a) === getType(b)\n}\n\nfunction getTypeIndex (type, expectedTypes) {\n if (!Array.isArray(expectedTypes)) {\n return isSameType(expectedTypes, type) ? 0 : -1\n }\n for (var i = 0, len = expectedTypes.length; i < len; i++) {\n if (isSameType(expectedTypes[i], type)) {\n return i\n }\n }\n return -1\n}\n\nfunction getInvalidTypeMessage (name, value, expectedTypes) {\n var message = \"Invalid prop: type check failed for prop \\\"\" + name + \"\\\".\" +\n \" Expected \" + (expectedTypes.map(capitalize).join(', '));\n var expectedType = expectedTypes[0];\n var receivedType = toRawType(value);\n var expectedValue = styleValue(value, expectedType);\n var receivedValue = styleValue(value, receivedType);\n // check if we need to specify expected value\n if (expectedTypes.length === 1 &&\n isExplicable(expectedType) &&\n !isBoolean(expectedType, receivedType)) {\n message += \" with value \" + expectedValue;\n }\n message += \", got \" + receivedType + \" \";\n // check if we need to specify received value\n if (isExplicable(receivedType)) {\n message += \"with value \" + receivedValue + \".\";\n }\n return message\n}\n\nfunction styleValue (value, type) {\n if (type === 'String') {\n return (\"\\\"\" + value + \"\\\"\")\n } else if (type === 'Number') {\n return (\"\" + (Number(value)))\n } else {\n return (\"\" + value)\n }\n}\n\nfunction isExplicable (value) {\n var explicitTypes = ['string', 'number', 'boolean'];\n return explicitTypes.some(function (elem) { return value.toLowerCase() === elem; })\n}\n\nfunction isBoolean () {\n var args = [], len = arguments.length;\n while ( len-- ) args[ len ] = arguments[ len ];\n\n return args.some(function (elem) { return elem.toLowerCase() === 'boolean'; })\n}\n\n/* */\n\nfunction handleError (err, vm, info) {\n // Deactivate deps tracking while processing error handler to avoid possible infinite rendering.\n // See: https://github.com/vuejs/vuex/issues/1505\n pushTarget();\n try {\n if (vm) {\n var cur = vm;\n while ((cur = cur.$parent)) {\n var hooks = cur.$options.errorCaptured;\n if (hooks) {\n for (var i = 0; i < hooks.length; i++) {\n try {\n var capture = hooks[i].call(cur, err, vm, info) === false;\n if (capture) { return }\n } catch (e) {\n globalHandleError(e, cur, 'errorCaptured hook');\n }\n }\n }\n }\n }\n globalHandleError(err, vm, info);\n } finally {\n popTarget();\n }\n}\n\nfunction invokeWithErrorHandling (\n handler,\n context,\n args,\n vm,\n info\n) {\n var res;\n try {\n res = args ? handler.apply(context, args) : handler.call(context);\n if (res && !res._isVue && isPromise(res) && !res._handled) {\n res.catch(function (e) { return handleError(e, vm, info + \" (Promise/async)\"); });\n // issue #9511\n // avoid catch triggering multiple times when nested calls\n res._handled = true;\n }\n } catch (e) {\n handleError(e, vm, info);\n }\n return res\n}\n\nfunction globalHandleError (err, vm, info) {\n if (config.errorHandler) {\n try {\n return config.errorHandler.call(null, err, vm, info)\n } catch (e) {\n // if the user intentionally throws the original error in the handler,\n // do not log it twice\n if (e !== err) {\n logError(e, null, 'config.errorHandler');\n }\n }\n }\n logError(err, vm, info);\n}\n\nfunction logError (err, vm, info) {\n if (process.env.NODE_ENV !== 'production') {\n warn((\"Error in \" + info + \": \\\"\" + (err.toString()) + \"\\\"\"), vm);\n }\n /* istanbul ignore else */\n if ((inBrowser || inWeex) && typeof console !== 'undefined') {\n console.error(err);\n } else {\n throw err\n }\n}\n\n/* */\n\nvar isUsingMicroTask = false;\n\nvar callbacks = [];\nvar pending = false;\n\nfunction flushCallbacks () {\n pending = false;\n var copies = callbacks.slice(0);\n callbacks.length = 0;\n for (var i = 0; i < copies.length; i++) {\n copies[i]();\n }\n}\n\n// Here we have async deferring wrappers using microtasks.\n// In 2.5 we used (macro) tasks (in combination with microtasks).\n// However, it has subtle problems when state is changed right before repaint\n// (e.g. #6813, out-in transitions).\n// Also, using (macro) tasks in event handler would cause some weird behaviors\n// that cannot be circumvented (e.g. #7109, #7153, #7546, #7834, #8109).\n// So we now use microtasks everywhere, again.\n// A major drawback of this tradeoff is that there are some scenarios\n// where microtasks have too high a priority and fire in between supposedly\n// sequential events (e.g. #4521, #6690, which have workarounds)\n// or even between bubbling of the same event (#6566).\nvar timerFunc;\n\n// The nextTick behavior leverages the microtask queue, which can be accessed\n// via either native Promise.then or MutationObserver.\n// MutationObserver has wider support, however it is seriously bugged in\n// UIWebView in iOS >= 9.3.3 when triggered in touch event handlers. It\n// completely stops working after triggering a few times... so, if native\n// Promise is available, we will use it:\n/* istanbul ignore next, $flow-disable-line */\nif (typeof Promise !== 'undefined' && isNative(Promise)) {\n var p = Promise.resolve();\n timerFunc = function () {\n p.then(flushCallbacks);\n // In problematic UIWebViews, Promise.then doesn't completely break, but\n // it can get stuck in a weird state where callbacks are pushed into the\n // microtask queue but the queue isn't being flushed, until the browser\n // needs to do some other work, e.g. handle a timer. Therefore we can\n // \"force\" the microtask queue to be flushed by adding an empty timer.\n if (isIOS) { setTimeout(noop); }\n };\n isUsingMicroTask = true;\n} else if (!isIE && typeof MutationObserver !== 'undefined' && (\n isNative(MutationObserver) ||\n // PhantomJS and iOS 7.x\n MutationObserver.toString() === '[object MutationObserverConstructor]'\n)) {\n // Use MutationObserver where native Promise is not available,\n // e.g. PhantomJS, iOS7, Android 4.4\n // (#6466 MutationObserver is unreliable in IE11)\n var counter = 1;\n var observer = new MutationObserver(flushCallbacks);\n var textNode = document.createTextNode(String(counter));\n observer.observe(textNode, {\n characterData: true\n });\n timerFunc = function () {\n counter = (counter + 1) % 2;\n textNode.data = String(counter);\n };\n isUsingMicroTask = true;\n} else if (typeof setImmediate !== 'undefined' && isNative(setImmediate)) {\n // Fallback to setImmediate.\n // Technically it leverages the (macro) task queue,\n // but it is still a better choice than setTimeout.\n timerFunc = function () {\n setImmediate(flushCallbacks);\n };\n} else {\n // Fallback to setTimeout.\n timerFunc = function () {\n setTimeout(flushCallbacks, 0);\n };\n}\n\nfunction nextTick (cb, ctx) {\n var _resolve;\n callbacks.push(function () {\n if (cb) {\n try {\n cb.call(ctx);\n } catch (e) {\n handleError(e, ctx, 'nextTick');\n }\n } else if (_resolve) {\n _resolve(ctx);\n }\n });\n if (!pending) {\n pending = true;\n timerFunc();\n }\n // $flow-disable-line\n if (!cb && typeof Promise !== 'undefined') {\n return new Promise(function (resolve) {\n _resolve = resolve;\n })\n }\n}\n\n/* */\n\n/* not type checking this file because flow doesn't play well with Proxy */\n\nvar initProxy;\n\nif (process.env.NODE_ENV !== 'production') {\n var allowedGlobals = makeMap(\n 'Infinity,undefined,NaN,isFinite,isNaN,' +\n 'parseFloat,parseInt,decodeURI,decodeURIComponent,encodeURI,encodeURIComponent,' +\n 'Math,Number,Date,Array,Object,Boolean,String,RegExp,Map,Set,JSON,Intl,' +\n 'require' // for Webpack/Browserify\n );\n\n var warnNonPresent = function (target, key) {\n warn(\n \"Property or method \\\"\" + key + \"\\\" is not defined on the instance but \" +\n 'referenced during render. Make sure that this property is reactive, ' +\n 'either in the data option, or for class-based components, by ' +\n 'initializing the property. ' +\n 'See: https://vuejs.org/v2/guide/reactivity.html#Declaring-Reactive-Properties.',\n target\n );\n };\n\n var warnReservedPrefix = function (target, key) {\n warn(\n \"Property \\\"\" + key + \"\\\" must be accessed with \\\"$data.\" + key + \"\\\" because \" +\n 'properties starting with \"$\" or \"_\" are not proxied in the Vue instance to ' +\n 'prevent conflicts with Vue internals. ' +\n 'See: https://vuejs.org/v2/api/#data',\n target\n );\n };\n\n var hasProxy =\n typeof Proxy !== 'undefined' && isNative(Proxy);\n\n if (hasProxy) {\n var isBuiltInModifier = makeMap('stop,prevent,self,ctrl,shift,alt,meta,exact');\n config.keyCodes = new Proxy(config.keyCodes, {\n set: function set (target, key, value) {\n if (isBuiltInModifier(key)) {\n warn((\"Avoid overwriting built-in modifier in config.keyCodes: .\" + key));\n return false\n } else {\n target[key] = value;\n return true\n }\n }\n });\n }\n\n var hasHandler = {\n has: function has (target, key) {\n var has = key in target;\n var isAllowed = allowedGlobals(key) ||\n (typeof key === 'string' && key.charAt(0) === '_' && !(key in target.$data));\n if (!has && !isAllowed) {\n if (key in target.$data) { warnReservedPrefix(target, key); }\n else { warnNonPresent(target, key); }\n }\n return has || !isAllowed\n }\n };\n\n var getHandler = {\n get: function get (target, key) {\n if (typeof key === 'string' && !(key in target)) {\n if (key in target.$data) { warnReservedPrefix(target, key); }\n else { warnNonPresent(target, key); }\n }\n return target[key]\n }\n };\n\n initProxy = function initProxy (vm) {\n if (hasProxy) {\n // determine which proxy handler to use\n var options = vm.$options;\n var handlers = options.render && options.render._withStripped\n ? getHandler\n : hasHandler;\n vm._renderProxy = new Proxy(vm, handlers);\n } else {\n vm._renderProxy = vm;\n }\n };\n}\n\n/* */\n\nvar seenObjects = new _Set();\n\n/**\n * Recursively traverse an object to evoke all converted\n * getters, so that every nested property inside the object\n * is collected as a \"deep\" dependency.\n */\nfunction traverse (val) {\n _traverse(val, seenObjects);\n seenObjects.clear();\n}\n\nfunction _traverse (val, seen) {\n var i, keys;\n var isA = Array.isArray(val);\n if ((!isA && !isObject(val)) || Object.isFrozen(val) || val instanceof VNode) {\n return\n }\n if (val.__ob__) {\n var depId = val.__ob__.dep.id;\n if (seen.has(depId)) {\n return\n }\n seen.add(depId);\n }\n if (isA) {\n i = val.length;\n while (i--) { _traverse(val[i], seen); }\n } else {\n keys = Object.keys(val);\n i = keys.length;\n while (i--) { _traverse(val[keys[i]], seen); }\n }\n}\n\nvar mark;\nvar measure;\n\nif (process.env.NODE_ENV !== 'production') {\n var perf = inBrowser && window.performance;\n /* istanbul ignore if */\n if (\n perf &&\n perf.mark &&\n perf.measure &&\n perf.clearMarks &&\n perf.clearMeasures\n ) {\n mark = function (tag) { return perf.mark(tag); };\n measure = function (name, startTag, endTag) {\n perf.measure(name, startTag, endTag);\n perf.clearMarks(startTag);\n perf.clearMarks(endTag);\n // perf.clearMeasures(name)\n };\n }\n}\n\n/* */\n\nvar normalizeEvent = cached(function (name) {\n var passive = name.charAt(0) === '&';\n name = passive ? name.slice(1) : name;\n var once$$1 = name.charAt(0) === '~'; // Prefixed last, checked first\n name = once$$1 ? name.slice(1) : name;\n var capture = name.charAt(0) === '!';\n name = capture ? name.slice(1) : name;\n return {\n name: name,\n once: once$$1,\n capture: capture,\n passive: passive\n }\n});\n\nfunction createFnInvoker (fns, vm) {\n function invoker () {\n var arguments$1 = arguments;\n\n var fns = invoker.fns;\n if (Array.isArray(fns)) {\n var cloned = fns.slice();\n for (var i = 0; i < cloned.length; i++) {\n invokeWithErrorHandling(cloned[i], null, arguments$1, vm, \"v-on handler\");\n }\n } else {\n // return handler return value for single handlers\n return invokeWithErrorHandling(fns, null, arguments, vm, \"v-on handler\")\n }\n }\n invoker.fns = fns;\n return invoker\n}\n\nfunction updateListeners (\n on,\n oldOn,\n add,\n remove$$1,\n createOnceHandler,\n vm\n) {\n var name, def$$1, cur, old, event;\n for (name in on) {\n def$$1 = cur = on[name];\n old = oldOn[name];\n event = normalizeEvent(name);\n if (isUndef(cur)) {\n process.env.NODE_ENV !== 'production' && warn(\n \"Invalid handler for event \\\"\" + (event.name) + \"\\\": got \" + String(cur),\n vm\n );\n } else if (isUndef(old)) {\n if (isUndef(cur.fns)) {\n cur = on[name] = createFnInvoker(cur, vm);\n }\n if (isTrue(event.once)) {\n cur = on[name] = createOnceHandler(event.name, cur, event.capture);\n }\n add(event.name, cur, event.capture, event.passive, event.params);\n } else if (cur !== old) {\n old.fns = cur;\n on[name] = old;\n }\n }\n for (name in oldOn) {\n if (isUndef(on[name])) {\n event = normalizeEvent(name);\n remove$$1(event.name, oldOn[name], event.capture);\n }\n }\n}\n\n/* */\n\nfunction mergeVNodeHook (def, hookKey, hook) {\n if (def instanceof VNode) {\n def = def.data.hook || (def.data.hook = {});\n }\n var invoker;\n var oldHook = def[hookKey];\n\n function wrappedHook () {\n hook.apply(this, arguments);\n // important: remove merged hook to ensure it's called only once\n // and prevent memory leak\n remove(invoker.fns, wrappedHook);\n }\n\n if (isUndef(oldHook)) {\n // no existing hook\n invoker = createFnInvoker([wrappedHook]);\n } else {\n /* istanbul ignore if */\n if (isDef(oldHook.fns) && isTrue(oldHook.merged)) {\n // already a merged invoker\n invoker = oldHook;\n invoker.fns.push(wrappedHook);\n } else {\n // existing plain hook\n invoker = createFnInvoker([oldHook, wrappedHook]);\n }\n }\n\n invoker.merged = true;\n def[hookKey] = invoker;\n}\n\n/* */\n\nfunction extractPropsFromVNodeData (\n data,\n Ctor,\n tag\n) {\n // we are only extracting raw values here.\n // validation and default values are handled in the child\n // component itself.\n var propOptions = Ctor.options.props;\n if (isUndef(propOptions)) {\n return\n }\n var res = {};\n var attrs = data.attrs;\n var props = data.props;\n if (isDef(attrs) || isDef(props)) {\n for (var key in propOptions) {\n var altKey = hyphenate(key);\n if (process.env.NODE_ENV !== 'production') {\n var keyInLowerCase = key.toLowerCase();\n if (\n key !== keyInLowerCase &&\n attrs && hasOwn(attrs, keyInLowerCase)\n ) {\n tip(\n \"Prop \\\"\" + keyInLowerCase + \"\\\" is passed to component \" +\n (formatComponentName(tag || Ctor)) + \", but the declared prop name is\" +\n \" \\\"\" + key + \"\\\". \" +\n \"Note that HTML attributes are case-insensitive and camelCased \" +\n \"props need to use their kebab-case equivalents when using in-DOM \" +\n \"templates. You should probably use \\\"\" + altKey + \"\\\" instead of \\\"\" + key + \"\\\".\"\n );\n }\n }\n checkProp(res, props, key, altKey, true) ||\n checkProp(res, attrs, key, altKey, false);\n }\n }\n return res\n}\n\nfunction checkProp (\n res,\n hash,\n key,\n altKey,\n preserve\n) {\n if (isDef(hash)) {\n if (hasOwn(hash, key)) {\n res[key] = hash[key];\n if (!preserve) {\n delete hash[key];\n }\n return true\n } else if (hasOwn(hash, altKey)) {\n res[key] = hash[altKey];\n if (!preserve) {\n delete hash[altKey];\n }\n return true\n }\n }\n return false\n}\n\n/* */\n\n// The template compiler attempts to minimize the need for normalization by\n// statically analyzing the template at compile time.\n//\n// For plain HTML markup, normalization can be completely skipped because the\n// generated render function is guaranteed to return Array<VNode>. There are\n// two cases where extra normalization is needed:\n\n// 1. When the children contains components - because a functional component\n// may return an Array instead of a single root. In this case, just a simple\n// normalization is needed - if any child is an Array, we flatten the whole\n// thing with Array.prototype.concat. It is guaranteed to be only 1-level deep\n// because functional components already normalize their own children.\nfunction simpleNormalizeChildren (children) {\n for (var i = 0; i < children.length; i++) {\n if (Array.isArray(children[i])) {\n return Array.prototype.concat.apply([], children)\n }\n }\n return children\n}\n\n// 2. When the children contains constructs that always generated nested Arrays,\n// e.g. <template>, <slot>, v-for, or when the children is provided by user\n// with hand-written render functions / JSX. In such cases a full normalization\n// is needed to cater to all possible types of children values.\nfunction normalizeChildren (children) {\n return isPrimitive(children)\n ? [createTextVNode(children)]\n : Array.isArray(children)\n ? normalizeArrayChildren(children)\n : undefined\n}\n\nfunction isTextNode (node) {\n return isDef(node) && isDef(node.text) && isFalse(node.isComment)\n}\n\nfunction normalizeArrayChildren (children, nestedIndex) {\n var res = [];\n var i, c, lastIndex, last;\n for (i = 0; i < children.length; i++) {\n c = children[i];\n if (isUndef(c) || typeof c === 'boolean') { continue }\n lastIndex = res.length - 1;\n last = res[lastIndex];\n // nested\n if (Array.isArray(c)) {\n if (c.length > 0) {\n c = normalizeArrayChildren(c, ((nestedIndex || '') + \"_\" + i));\n // merge adjacent text nodes\n if (isTextNode(c[0]) && isTextNode(last)) {\n res[lastIndex] = createTextVNode(last.text + (c[0]).text);\n c.shift();\n }\n res.push.apply(res, c);\n }\n } else if (isPrimitive(c)) {\n if (isTextNode(last)) {\n // merge adjacent text nodes\n // this is necessary for SSR hydration because text nodes are\n // essentially merged when rendered to HTML strings\n res[lastIndex] = createTextVNode(last.text + c);\n } else if (c !== '') {\n // convert primitive to vnode\n res.push(createTextVNode(c));\n }\n } else {\n if (isTextNode(c) && isTextNode(last)) {\n // merge adjacent text nodes\n res[lastIndex] = createTextVNode(last.text + c.text);\n } else {\n // default key for nested array children (likely generated by v-for)\n if (isTrue(children._isVList) &&\n isDef(c.tag) &&\n isUndef(c.key) &&\n isDef(nestedIndex)) {\n c.key = \"__vlist\" + nestedIndex + \"_\" + i + \"__\";\n }\n res.push(c);\n }\n }\n }\n return res\n}\n\n/* */\n\nfunction initProvide (vm) {\n var provide = vm.$options.provide;\n if (provide) {\n vm._provided = typeof provide === 'function'\n ? provide.call(vm)\n : provide;\n }\n}\n\nfunction initInjections (vm) {\n var result = resolveInject(vm.$options.inject, vm);\n if (result) {\n toggleObserving(false);\n Object.keys(result).forEach(function (key) {\n /* istanbul ignore else */\n if (process.env.NODE_ENV !== 'production') {\n defineReactive$$1(vm, key, result[key], function () {\n warn(\n \"Avoid mutating an injected value directly since the changes will be \" +\n \"overwritten whenever the provided component re-renders. \" +\n \"injection being mutated: \\\"\" + key + \"\\\"\",\n vm\n );\n });\n } else {\n defineReactive$$1(vm, key, result[key]);\n }\n });\n toggleObserving(true);\n }\n}\n\nfunction resolveInject (inject, vm) {\n if (inject) {\n // inject is :any because flow is not smart enough to figure out cached\n var result = Object.create(null);\n var keys = hasSymbol\n ? Reflect.ownKeys(inject)\n : Object.keys(inject);\n\n for (var i = 0; i < keys.length; i++) {\n var key = keys[i];\n // #6574 in case the inject object is observed...\n if (key === '__ob__') { continue }\n var provideKey = inject[key].from;\n var source = vm;\n while (source) {\n if (source._provided && hasOwn(source._provided, provideKey)) {\n result[key] = source._provided[provideKey];\n break\n }\n source = source.$parent;\n }\n if (!source) {\n if ('default' in inject[key]) {\n var provideDefault = inject[key].default;\n result[key] = typeof provideDefault === 'function'\n ? provideDefault.call(vm)\n : provideDefault;\n } else if (process.env.NODE_ENV !== 'production') {\n warn((\"Injection \\\"\" + key + \"\\\" not found\"), vm);\n }\n }\n }\n return result\n }\n}\n\n/* */\n\n\n\n/**\n * Runtime helper for resolving raw children VNodes into a slot object.\n */\nfunction resolveSlots (\n children,\n context\n) {\n if (!children || !children.length) {\n return {}\n }\n var slots = {};\n for (var i = 0, l = children.length; i < l; i++) {\n var child = children[i];\n var data = child.data;\n // remove slot attribute if the node is resolved as a Vue slot node\n if (data && data.attrs && data.attrs.slot) {\n delete data.attrs.slot;\n }\n // named slots should only be respected if the vnode was rendered in the\n // same context.\n if ((child.context === context || child.fnContext === context) &&\n data && data.slot != null\n ) {\n var name = data.slot;\n var slot = (slots[name] || (slots[name] = []));\n if (child.tag === 'template') {\n slot.push.apply(slot, child.children || []);\n } else {\n slot.push(child);\n }\n } else {\n (slots.default || (slots.default = [])).push(child);\n }\n }\n // ignore slots that contains only whitespace\n for (var name$1 in slots) {\n if (slots[name$1].every(isWhitespace)) {\n delete slots[name$1];\n }\n }\n return slots\n}\n\nfunction isWhitespace (node) {\n return (node.isComment && !node.asyncFactory) || node.text === ' '\n}\n\n/* */\n\nfunction normalizeScopedSlots (\n slots,\n normalSlots,\n prevSlots\n) {\n var res;\n var hasNormalSlots = Object.keys(normalSlots).length > 0;\n var isStable = slots ? !!slots.$stable : !hasNormalSlots;\n var key = slots && slots.$key;\n if (!slots) {\n res = {};\n } else if (slots._normalized) {\n // fast path 1: child component re-render only, parent did not change\n return slots._normalized\n } else if (\n isStable &&\n prevSlots &&\n prevSlots !== emptyObject &&\n key === prevSlots.$key &&\n !hasNormalSlots &&\n !prevSlots.$hasNormal\n ) {\n // fast path 2: stable scoped slots w/ no normal slots to proxy,\n // only need to normalize once\n return prevSlots\n } else {\n res = {};\n for (var key$1 in slots) {\n if (slots[key$1] && key$1[0] !== '$') {\n res[key$1] = normalizeScopedSlot(normalSlots, key$1, slots[key$1]);\n }\n }\n }\n // expose normal slots on scopedSlots\n for (var key$2 in normalSlots) {\n if (!(key$2 in res)) {\n res[key$2] = proxyNormalSlot(normalSlots, key$2);\n }\n }\n // avoriaz seems to mock a non-extensible $scopedSlots object\n // and when that is passed down this would cause an error\n if (slots && Object.isExtensible(slots)) {\n (slots)._normalized = res;\n }\n def(res, '$stable', isStable);\n def(res, '$key', key);\n def(res, '$hasNormal', hasNormalSlots);\n return res\n}\n\nfunction normalizeScopedSlot(normalSlots, key, fn) {\n var normalized = function () {\n var res = arguments.length ? fn.apply(null, arguments) : fn({});\n res = res && typeof res === 'object' && !Array.isArray(res)\n ? [res] // single vnode\n : normalizeChildren(res);\n return res && (\n res.length === 0 ||\n (res.length === 1 && res[0].isComment) // #9658\n ) ? undefined\n : res\n };\n // this is a slot using the new v-slot syntax without scope. although it is\n // compiled as a scoped slot, render fn users would expect it to be present\n // on this.$slots because the usage is semantically a normal slot.\n if (fn.proxy) {\n Object.defineProperty(normalSlots, key, {\n get: normalized,\n enumerable: true,\n configurable: true\n });\n }\n return normalized\n}\n\nfunction proxyNormalSlot(slots, key) {\n return function () { return slots[key]; }\n}\n\n/* */\n\n/**\n * Runtime helper for rendering v-for lists.\n */\nfunction renderList (\n val,\n render\n) {\n var ret, i, l, keys, key;\n if (Array.isArray(val) || typeof val === 'string') {\n ret = new Array(val.length);\n for (i = 0, l = val.length; i < l; i++) {\n ret[i] = render(val[i], i);\n }\n } else if (typeof val === 'number') {\n ret = new Array(val);\n for (i = 0; i < val; i++) {\n ret[i] = render(i + 1, i);\n }\n } else if (isObject(val)) {\n if (hasSymbol && val[Symbol.iterator]) {\n ret = [];\n var iterator = val[Symbol.iterator]();\n var result = iterator.next();\n while (!result.done) {\n ret.push(render(result.value, ret.length));\n result = iterator.next();\n }\n } else {\n keys = Object.keys(val);\n ret = new Array(keys.length);\n for (i = 0, l = keys.length; i < l; i++) {\n key = keys[i];\n ret[i] = render(val[key], key, i);\n }\n }\n }\n if (!isDef(ret)) {\n ret = [];\n }\n (ret)._isVList = true;\n return ret\n}\n\n/* */\n\n/**\n * Runtime helper for rendering <slot>\n */\nfunction renderSlot (\n name,\n fallback,\n props,\n bindObject\n) {\n var scopedSlotFn = this.$scopedSlots[name];\n var nodes;\n if (scopedSlotFn) { // scoped slot\n props = props || {};\n if (bindObject) {\n if (process.env.NODE_ENV !== 'production' && !isObject(bindObject)) {\n warn(\n 'slot v-bind without argument expects an Object',\n this\n );\n }\n props = extend(extend({}, bindObject), props);\n }\n nodes = scopedSlotFn(props) || fallback;\n } else {\n nodes = this.$slots[name] || fallback;\n }\n\n var target = props && props.slot;\n if (target) {\n return this.$createElement('template', { slot: target }, nodes)\n } else {\n return nodes\n }\n}\n\n/* */\n\n/**\n * Runtime helper for resolving filters\n */\nfunction resolveFilter (id) {\n return resolveAsset(this.$options, 'filters', id, true) || identity\n}\n\n/* */\n\nfunction isKeyNotMatch (expect, actual) {\n if (Array.isArray(expect)) {\n return expect.indexOf(actual) === -1\n } else {\n return expect !== actual\n }\n}\n\n/**\n * Runtime helper for checking keyCodes from config.\n * exposed as Vue.prototype._k\n * passing in eventKeyName as last argument separately for backwards compat\n */\nfunction checkKeyCodes (\n eventKeyCode,\n key,\n builtInKeyCode,\n eventKeyName,\n builtInKeyName\n) {\n var mappedKeyCode = config.keyCodes[key] || builtInKeyCode;\n if (builtInKeyName && eventKeyName && !config.keyCodes[key]) {\n return isKeyNotMatch(builtInKeyName, eventKeyName)\n } else if (mappedKeyCode) {\n return isKeyNotMatch(mappedKeyCode, eventKeyCode)\n } else if (eventKeyName) {\n return hyphenate(eventKeyName) !== key\n }\n}\n\n/* */\n\n/**\n * Runtime helper for merging v-bind=\"object\" into a VNode's data.\n */\nfunction bindObjectProps (\n data,\n tag,\n value,\n asProp,\n isSync\n) {\n if (value) {\n if (!isObject(value)) {\n process.env.NODE_ENV !== 'production' && warn(\n 'v-bind without argument expects an Object or Array value',\n this\n );\n } else {\n if (Array.isArray(value)) {\n value = toObject(value);\n }\n var hash;\n var loop = function ( key ) {\n if (\n key === 'class' ||\n key === 'style' ||\n isReservedAttribute(key)\n ) {\n hash = data;\n } else {\n var type = data.attrs && data.attrs.type;\n hash = asProp || config.mustUseProp(tag, type, key)\n ? data.domProps || (data.domProps = {})\n : data.attrs || (data.attrs = {});\n }\n var camelizedKey = camelize(key);\n var hyphenatedKey = hyphenate(key);\n if (!(camelizedKey in hash) && !(hyphenatedKey in hash)) {\n hash[key] = value[key];\n\n if (isSync) {\n var on = data.on || (data.on = {});\n on[(\"update:\" + key)] = function ($event) {\n value[key] = $event;\n };\n }\n }\n };\n\n for (var key in value) loop( key );\n }\n }\n return data\n}\n\n/* */\n\n/**\n * Runtime helper for rendering static trees.\n */\nfunction renderStatic (\n index,\n isInFor\n) {\n var cached = this._staticTrees || (this._staticTrees = []);\n var tree = cached[index];\n // if has already-rendered static tree and not inside v-for,\n // we can reuse the same tree.\n if (tree && !isInFor) {\n return tree\n }\n // otherwise, render a fresh tree.\n tree = cached[index] = this.$options.staticRenderFns[index].call(\n this._renderProxy,\n null,\n this // for render fns generated for functional component templates\n );\n markStatic(tree, (\"__static__\" + index), false);\n return tree\n}\n\n/**\n * Runtime helper for v-once.\n * Effectively it means marking the node as static with a unique key.\n */\nfunction markOnce (\n tree,\n index,\n key\n) {\n markStatic(tree, (\"__once__\" + index + (key ? (\"_\" + key) : \"\")), true);\n return tree\n}\n\nfunction markStatic (\n tree,\n key,\n isOnce\n) {\n if (Array.isArray(tree)) {\n for (var i = 0; i < tree.length; i++) {\n if (tree[i] && typeof tree[i] !== 'string') {\n markStaticNode(tree[i], (key + \"_\" + i), isOnce);\n }\n }\n } else {\n markStaticNode(tree, key, isOnce);\n }\n}\n\nfunction markStaticNode (node, key, isOnce) {\n node.isStatic = true;\n node.key = key;\n node.isOnce = isOnce;\n}\n\n/* */\n\nfunction bindObjectListeners (data, value) {\n if (value) {\n if (!isPlainObject(value)) {\n process.env.NODE_ENV !== 'production' && warn(\n 'v-on without argument expects an Object value',\n this\n );\n } else {\n var on = data.on = data.on ? extend({}, data.on) : {};\n for (var key in value) {\n var existing = on[key];\n var ours = value[key];\n on[key] = existing ? [].concat(existing, ours) : ours;\n }\n }\n }\n return data\n}\n\n/* */\n\nfunction resolveScopedSlots (\n fns, // see flow/vnode\n res,\n // the following are added in 2.6\n hasDynamicKeys,\n contentHashKey\n) {\n res = res || { $stable: !hasDynamicKeys };\n for (var i = 0; i < fns.length; i++) {\n var slot = fns[i];\n if (Array.isArray(slot)) {\n resolveScopedSlots(slot, res, hasDynamicKeys);\n } else if (slot) {\n // marker for reverse proxying v-slot without scope on this.$slots\n if (slot.proxy) {\n slot.fn.proxy = true;\n }\n res[slot.key] = slot.fn;\n }\n }\n if (contentHashKey) {\n (res).$key = contentHashKey;\n }\n return res\n}\n\n/* */\n\nfunction bindDynamicKeys (baseObj, values) {\n for (var i = 0; i < values.length; i += 2) {\n var key = values[i];\n if (typeof key === 'string' && key) {\n baseObj[values[i]] = values[i + 1];\n } else if (process.env.NODE_ENV !== 'production' && key !== '' && key !== null) {\n // null is a special value for explicitly removing a binding\n warn(\n (\"Invalid value for dynamic directive argument (expected string or null): \" + key),\n this\n );\n }\n }\n return baseObj\n}\n\n// helper to dynamically append modifier runtime markers to event names.\n// ensure only append when value is already string, otherwise it will be cast\n// to string and cause the type check to miss.\nfunction prependModifier (value, symbol) {\n return typeof value === 'string' ? symbol + value : value\n}\n\n/* */\n\nfunction installRenderHelpers (target) {\n target._o = markOnce;\n target._n = toNumber;\n target._s = toString;\n target._l = renderList;\n target._t = renderSlot;\n target._q = looseEqual;\n target._i = looseIndexOf;\n target._m = renderStatic;\n target._f = resolveFilter;\n target._k = checkKeyCodes;\n target._b = bindObjectProps;\n target._v = createTextVNode;\n target._e = createEmptyVNode;\n target._u = resolveScopedSlots;\n target._g = bindObjectListeners;\n target._d = bindDynamicKeys;\n target._p = prependModifier;\n}\n\n/* */\n\nfunction FunctionalRenderContext (\n data,\n props,\n children,\n parent,\n Ctor\n) {\n var this$1 = this;\n\n var options = Ctor.options;\n // ensure the createElement function in functional components\n // gets a unique context - this is necessary for correct named slot check\n var contextVm;\n if (hasOwn(parent, '_uid')) {\n contextVm = Object.create(parent);\n // $flow-disable-line\n contextVm._original = parent;\n } else {\n // the context vm passed in is a functional context as well.\n // in this case we want to make sure we are able to get a hold to the\n // real context instance.\n contextVm = parent;\n // $flow-disable-line\n parent = parent._original;\n }\n var isCompiled = isTrue(options._compiled);\n var needNormalization = !isCompiled;\n\n this.data = data;\n this.props = props;\n this.children = children;\n this.parent = parent;\n this.listeners = data.on || emptyObject;\n this.injections = resolveInject(options.inject, parent);\n this.slots = function () {\n if (!this$1.$slots) {\n normalizeScopedSlots(\n data.scopedSlots,\n this$1.$slots = resolveSlots(children, parent)\n );\n }\n return this$1.$slots\n };\n\n Object.defineProperty(this, 'scopedSlots', ({\n enumerable: true,\n get: function get () {\n return normalizeScopedSlots(data.scopedSlots, this.slots())\n }\n }));\n\n // support for compiled functional template\n if (isCompiled) {\n // exposing $options for renderStatic()\n this.$options = options;\n // pre-resolve slots for renderSlot()\n this.$slots = this.slots();\n this.$scopedSlots = normalizeScopedSlots(data.scopedSlots, this.$slots);\n }\n\n if (options._scopeId) {\n this._c = function (a, b, c, d) {\n var vnode = createElement(contextVm, a, b, c, d, needNormalization);\n if (vnode && !Array.isArray(vnode)) {\n vnode.fnScopeId = options._scopeId;\n vnode.fnContext = parent;\n }\n return vnode\n };\n } else {\n this._c = function (a, b, c, d) { return createElement(contextVm, a, b, c, d, needNormalization); };\n }\n}\n\ninstallRenderHelpers(FunctionalRenderContext.prototype);\n\nfunction createFunctionalComponent (\n Ctor,\n propsData,\n data,\n contextVm,\n children\n) {\n var options = Ctor.options;\n var props = {};\n var propOptions = options.props;\n if (isDef(propOptions)) {\n for (var key in propOptions) {\n props[key] = validateProp(key, propOptions, propsData || emptyObject);\n }\n } else {\n if (isDef(data.attrs)) { mergeProps(props, data.attrs); }\n if (isDef(data.props)) { mergeProps(props, data.props); }\n }\n\n var renderContext = new FunctionalRenderContext(\n data,\n props,\n children,\n contextVm,\n Ctor\n );\n\n var vnode = options.render.call(null, renderContext._c, renderContext);\n\n if (vnode instanceof VNode) {\n return cloneAndMarkFunctionalResult(vnode, data, renderContext.parent, options, renderContext)\n } else if (Array.isArray(vnode)) {\n var vnodes = normalizeChildren(vnode) || [];\n var res = new Array(vnodes.length);\n for (var i = 0; i < vnodes.length; i++) {\n res[i] = cloneAndMarkFunctionalResult(vnodes[i], data, renderContext.parent, options, renderContext);\n }\n return res\n }\n}\n\nfunction cloneAndMarkFunctionalResult (vnode, data, contextVm, options, renderContext) {\n // #7817 clone node before setting fnContext, otherwise if the node is reused\n // (e.g. it was from a cached normal slot) the fnContext causes named slots\n // that should not be matched to match.\n var clone = cloneVNode(vnode);\n clone.fnContext = contextVm;\n clone.fnOptions = options;\n if (process.env.NODE_ENV !== 'production') {\n (clone.devtoolsMeta = clone.devtoolsMeta || {}).renderContext = renderContext;\n }\n if (data.slot) {\n (clone.data || (clone.data = {})).slot = data.slot;\n }\n return clone\n}\n\nfunction mergeProps (to, from) {\n for (var key in from) {\n to[camelize(key)] = from[key];\n }\n}\n\n/* */\n\n/* */\n\n/* */\n\n/* */\n\n// inline hooks to be invoked on component VNodes during patch\nvar componentVNodeHooks = {\n init: function init (vnode, hydrating) {\n if (\n vnode.componentInstance &&\n !vnode.componentInstance._isDestroyed &&\n vnode.data.keepAlive\n ) {\n // kept-alive components, treat as a patch\n var mountedNode = vnode; // work around flow\n componentVNodeHooks.prepatch(mountedNode, mountedNode);\n } else {\n var child = vnode.componentInstance = createComponentInstanceForVnode(\n vnode,\n activeInstance\n );\n child.$mount(hydrating ? vnode.elm : undefined, hydrating);\n }\n },\n\n prepatch: function prepatch (oldVnode, vnode) {\n var options = vnode.componentOptions;\n var child = vnode.componentInstance = oldVnode.componentInstance;\n updateChildComponent(\n child,\n options.propsData, // updated props\n options.listeners, // updated listeners\n vnode, // new parent vnode\n options.children // new children\n );\n },\n\n insert: function insert (vnode) {\n var context = vnode.context;\n var componentInstance = vnode.componentInstance;\n if (!componentInstance._isMounted) {\n componentInstance._isMounted = true;\n callHook(componentInstance, 'mounted');\n }\n if (vnode.data.keepAlive) {\n if (context._isMounted) {\n // vue-router#1212\n // During updates, a kept-alive component's child components may\n // change, so directly walking the tree here may call activated hooks\n // on incorrect children. Instead we push them into a queue which will\n // be processed after the whole patch process ended.\n queueActivatedComponent(componentInstance);\n } else {\n activateChildComponent(componentInstance, true /* direct */);\n }\n }\n },\n\n destroy: function destroy (vnode) {\n var componentInstance = vnode.componentInstance;\n if (!componentInstance._isDestroyed) {\n if (!vnode.data.keepAlive) {\n componentInstance.$destroy();\n } else {\n deactivateChildComponent(componentInstance, true /* direct */);\n }\n }\n }\n};\n\nvar hooksToMerge = Object.keys(componentVNodeHooks);\n\nfunction createComponent (\n Ctor,\n data,\n context,\n children,\n tag\n) {\n if (isUndef(Ctor)) {\n return\n }\n\n var baseCtor = context.$options._base;\n\n // plain options object: turn it into a constructor\n if (isObject(Ctor)) {\n Ctor = baseCtor.extend(Ctor);\n }\n\n // if at this stage it's not a constructor or an async component factory,\n // reject.\n if (typeof Ctor !== 'function') {\n if (process.env.NODE_ENV !== 'production') {\n warn((\"Invalid Component definition: \" + (String(Ctor))), context);\n }\n return\n }\n\n // async component\n var asyncFactory;\n if (isUndef(Ctor.cid)) {\n asyncFactory = Ctor;\n Ctor = resolveAsyncComponent(asyncFactory, baseCtor);\n if (Ctor === undefined) {\n // return a placeholder node for async component, which is rendered\n // as a comment node but preserves all the raw information for the node.\n // the information will be used for async server-rendering and hydration.\n return createAsyncPlaceholder(\n asyncFactory,\n data,\n context,\n children,\n tag\n )\n }\n }\n\n data = data || {};\n\n // resolve constructor options in case global mixins are applied after\n // component constructor creation\n resolveConstructorOptions(Ctor);\n\n // transform component v-model data into props & events\n if (isDef(data.model)) {\n transformModel(Ctor.options, data);\n }\n\n // extract props\n var propsData = extractPropsFromVNodeData(data, Ctor, tag);\n\n // functional component\n if (isTrue(Ctor.options.functional)) {\n return createFunctionalComponent(Ctor, propsData, data, context, children)\n }\n\n // extract listeners, since these needs to be treated as\n // child component listeners instead of DOM listeners\n var listeners = data.on;\n // replace with listeners with .native modifier\n // so it gets processed during parent component patch.\n data.on = data.nativeOn;\n\n if (isTrue(Ctor.options.abstract)) {\n // abstract components do not keep anything\n // other than props & listeners & slot\n\n // work around flow\n var slot = data.slot;\n data = {};\n if (slot) {\n data.slot = slot;\n }\n }\n\n // install component management hooks onto the placeholder node\n installComponentHooks(data);\n\n // return a placeholder vnode\n var name = Ctor.options.name || tag;\n var vnode = new VNode(\n (\"vue-component-\" + (Ctor.cid) + (name ? (\"-\" + name) : '')),\n data, undefined, undefined, undefined, context,\n { Ctor: Ctor, propsData: propsData, listeners: listeners, tag: tag, children: children },\n asyncFactory\n );\n\n return vnode\n}\n\nfunction createComponentInstanceForVnode (\n vnode, // we know it's MountedComponentVNode but flow doesn't\n parent // activeInstance in lifecycle state\n) {\n var options = {\n _isComponent: true,\n _parentVnode: vnode,\n parent: parent\n };\n // check inline-template render functions\n var inlineTemplate = vnode.data.inlineTemplate;\n if (isDef(inlineTemplate)) {\n options.render = inlineTemplate.render;\n options.staticRenderFns = inlineTemplate.staticRenderFns;\n }\n return new vnode.componentOptions.Ctor(options)\n}\n\nfunction installComponentHooks (data) {\n var hooks = data.hook || (data.hook = {});\n for (var i = 0; i < hooksToMerge.length; i++) {\n var key = hooksToMerge[i];\n var existing = hooks[key];\n var toMerge = componentVNodeHooks[key];\n if (existing !== toMerge && !(existing && existing._merged)) {\n hooks[key] = existing ? mergeHook$1(toMerge, existing) : toMerge;\n }\n }\n}\n\nfunction mergeHook$1 (f1, f2) {\n var merged = function (a, b) {\n // flow complains about extra args which is why we use any\n f1(a, b);\n f2(a, b);\n };\n merged._merged = true;\n return merged\n}\n\n// transform component v-model info (value and callback) into\n// prop and event handler respectively.\nfunction transformModel (options, data) {\n var prop = (options.model && options.model.prop) || 'value';\n var event = (options.model && options.model.event) || 'input'\n ;(data.attrs || (data.attrs = {}))[prop] = data.model.value;\n var on = data.on || (data.on = {});\n var existing = on[event];\n var callback = data.model.callback;\n if (isDef(existing)) {\n if (\n Array.isArray(existing)\n ? existing.indexOf(callback) === -1\n : existing !== callback\n ) {\n on[event] = [callback].concat(existing);\n }\n } else {\n on[event] = callback;\n }\n}\n\n/* */\n\nvar SIMPLE_NORMALIZE = 1;\nvar ALWAYS_NORMALIZE = 2;\n\n// wrapper function for providing a more flexible interface\n// without getting yelled at by flow\nfunction createElement (\n context,\n tag,\n data,\n children,\n normalizationType,\n alwaysNormalize\n) {\n if (Array.isArray(data) || isPrimitive(data)) {\n normalizationType = children;\n children = data;\n data = undefined;\n }\n if (isTrue(alwaysNormalize)) {\n normalizationType = ALWAYS_NORMALIZE;\n }\n return _createElement(context, tag, data, children, normalizationType)\n}\n\nfunction _createElement (\n context,\n tag,\n data,\n children,\n normalizationType\n) {\n if (isDef(data) && isDef((data).__ob__)) {\n process.env.NODE_ENV !== 'production' && warn(\n \"Avoid using observed data object as vnode data: \" + (JSON.stringify(data)) + \"\\n\" +\n 'Always create fresh vnode data objects in each render!',\n context\n );\n return createEmptyVNode()\n }\n // object syntax in v-bind\n if (isDef(data) && isDef(data.is)) {\n tag = data.is;\n }\n if (!tag) {\n // in case of component :is set to falsy value\n return createEmptyVNode()\n }\n // warn against non-primitive key\n if (process.env.NODE_ENV !== 'production' &&\n isDef(data) && isDef(data.key) && !isPrimitive(data.key)\n ) {\n {\n warn(\n 'Avoid using non-primitive value as key, ' +\n 'use string/number value instead.',\n context\n );\n }\n }\n // support single function children as default scoped slot\n if (Array.isArray(children) &&\n typeof children[0] === 'function'\n ) {\n data = data || {};\n data.scopedSlots = { default: children[0] };\n children.length = 0;\n }\n if (normalizationType === ALWAYS_NORMALIZE) {\n children = normalizeChildren(children);\n } else if (normalizationType === SIMPLE_NORMALIZE) {\n children = simpleNormalizeChildren(children);\n }\n var vnode, ns;\n if (typeof tag === 'string') {\n var Ctor;\n ns = (context.$vnode && context.$vnode.ns) || config.getTagNamespace(tag);\n if (config.isReservedTag(tag)) {\n // platform built-in elements\n if (process.env.NODE_ENV !== 'production' && isDef(data) && isDef(data.nativeOn)) {\n warn(\n (\"The .native modifier for v-on is only valid on components but it was used on <\" + tag + \">.\"),\n context\n );\n }\n vnode = new VNode(\n config.parsePlatformTagName(tag), data, children,\n undefined, undefined, context\n );\n } else if ((!data || !data.pre) && isDef(Ctor = resolveAsset(context.$options, 'components', tag))) {\n // component\n vnode = createComponent(Ctor, data, context, children, tag);\n } else {\n // unknown or unlisted namespaced elements\n // check at runtime because it may get assigned a namespace when its\n // parent normalizes children\n vnode = new VNode(\n tag, data, children,\n undefined, undefined, context\n );\n }\n } else {\n // direct component options / constructor\n vnode = createComponent(tag, data, context, children);\n }\n if (Array.isArray(vnode)) {\n return vnode\n } else if (isDef(vnode)) {\n if (isDef(ns)) { applyNS(vnode, ns); }\n if (isDef(data)) { registerDeepBindings(data); }\n return vnode\n } else {\n return createEmptyVNode()\n }\n}\n\nfunction applyNS (vnode, ns, force) {\n vnode.ns = ns;\n if (vnode.tag === 'foreignObject') {\n // use default namespace inside foreignObject\n ns = undefined;\n force = true;\n }\n if (isDef(vnode.children)) {\n for (var i = 0, l = vnode.children.length; i < l; i++) {\n var child = vnode.children[i];\n if (isDef(child.tag) && (\n isUndef(child.ns) || (isTrue(force) && child.tag !== 'svg'))) {\n applyNS(child, ns, force);\n }\n }\n }\n}\n\n// ref #5318\n// necessary to ensure parent re-render when deep bindings like :style and\n// :class are used on slot nodes\nfunction registerDeepBindings (data) {\n if (isObject(data.style)) {\n traverse(data.style);\n }\n if (isObject(data.class)) {\n traverse(data.class);\n }\n}\n\n/* */\n\nfunction initRender (vm) {\n vm._vnode = null; // the root of the child tree\n vm._staticTrees = null; // v-once cached trees\n var options = vm.$options;\n var parentVnode = vm.$vnode = options._parentVnode; // the placeholder node in parent tree\n var renderContext = parentVnode && parentVnode.context;\n vm.$slots = resolveSlots(options._renderChildren, renderContext);\n vm.$scopedSlots = emptyObject;\n // bind the createElement fn to this instance\n // so that we get proper render context inside it.\n // args order: tag, data, children, normalizationType, alwaysNormalize\n // internal version is used by render functions compiled from templates\n vm._c = function (a, b, c, d) { return createElement(vm, a, b, c, d, false); };\n // normalization is always applied for the public version, used in\n // user-written render functions.\n vm.$createElement = function (a, b, c, d) { return createElement(vm, a, b, c, d, true); };\n\n // $attrs & $listeners are exposed for easier HOC creation.\n // they need to be reactive so that HOCs using them are always updated\n var parentData = parentVnode && parentVnode.data;\n\n /* istanbul ignore else */\n if (process.env.NODE_ENV !== 'production') {\n defineReactive$$1(vm, '$attrs', parentData && parentData.attrs || emptyObject, function () {\n !isUpdatingChildComponent && warn(\"$attrs is readonly.\", vm);\n }, true);\n defineReactive$$1(vm, '$listeners', options._parentListeners || emptyObject, function () {\n !isUpdatingChildComponent && warn(\"$listeners is readonly.\", vm);\n }, true);\n } else {\n defineReactive$$1(vm, '$attrs', parentData && parentData.attrs || emptyObject, null, true);\n defineReactive$$1(vm, '$listeners', options._parentListeners || emptyObject, null, true);\n }\n}\n\nvar currentRenderingInstance = null;\n\nfunction renderMixin (Vue) {\n // install runtime convenience helpers\n installRenderHelpers(Vue.prototype);\n\n Vue.prototype.$nextTick = function (fn) {\n return nextTick(fn, this)\n };\n\n Vue.prototype._render = function () {\n var vm = this;\n var ref = vm.$options;\n var render = ref.render;\n var _parentVnode = ref._parentVnode;\n\n if (_parentVnode) {\n vm.$scopedSlots = normalizeScopedSlots(\n _parentVnode.data.scopedSlots,\n vm.$slots,\n vm.$scopedSlots\n );\n }\n\n // set parent vnode. this allows render functions to have access\n // to the data on the placeholder node.\n vm.$vnode = _parentVnode;\n // render self\n var vnode;\n try {\n // There's no need to maintain a stack because all render fns are called\n // separately from one another. Nested component's render fns are called\n // when parent component is patched.\n currentRenderingInstance = vm;\n vnode = render.call(vm._renderProxy, vm.$createElement);\n } catch (e) {\n handleError(e, vm, \"render\");\n // return error render result,\n // or previous vnode to prevent render error causing blank component\n /* istanbul ignore else */\n if (process.env.NODE_ENV !== 'production' && vm.$options.renderError) {\n try {\n vnode = vm.$options.renderError.call(vm._renderProxy, vm.$createElement, e);\n } catch (e) {\n handleError(e, vm, \"renderError\");\n vnode = vm._vnode;\n }\n } else {\n vnode = vm._vnode;\n }\n } finally {\n currentRenderingInstance = null;\n }\n // if the returned array contains only a single node, allow it\n if (Array.isArray(vnode) && vnode.length === 1) {\n vnode = vnode[0];\n }\n // return empty vnode in case the render function errored out\n if (!(vnode instanceof VNode)) {\n if (process.env.NODE_ENV !== 'production' && Array.isArray(vnode)) {\n warn(\n 'Multiple root nodes returned from render function. Render function ' +\n 'should return a single root node.',\n vm\n );\n }\n vnode = createEmptyVNode();\n }\n // set parent\n vnode.parent = _parentVnode;\n return vnode\n };\n}\n\n/* */\n\nfunction ensureCtor (comp, base) {\n if (\n comp.__esModule ||\n (hasSymbol && comp[Symbol.toStringTag] === 'Module')\n ) {\n comp = comp.default;\n }\n return isObject(comp)\n ? base.extend(comp)\n : comp\n}\n\nfunction createAsyncPlaceholder (\n factory,\n data,\n context,\n children,\n tag\n) {\n var node = createEmptyVNode();\n node.asyncFactory = factory;\n node.asyncMeta = { data: data, context: context, children: children, tag: tag };\n return node\n}\n\nfunction resolveAsyncComponent (\n factory,\n baseCtor\n) {\n if (isTrue(factory.error) && isDef(factory.errorComp)) {\n return factory.errorComp\n }\n\n if (isDef(factory.resolved)) {\n return factory.resolved\n }\n\n var owner = currentRenderingInstance;\n if (owner && isDef(factory.owners) && factory.owners.indexOf(owner) === -1) {\n // already pending\n factory.owners.push(owner);\n }\n\n if (isTrue(factory.loading) && isDef(factory.loadingComp)) {\n return factory.loadingComp\n }\n\n if (owner && !isDef(factory.owners)) {\n var owners = factory.owners = [owner];\n var sync = true;\n var timerLoading = null;\n var timerTimeout = null\n\n ;(owner).$on('hook:destroyed', function () { return remove(owners, owner); });\n\n var forceRender = function (renderCompleted) {\n for (var i = 0, l = owners.length; i < l; i++) {\n (owners[i]).$forceUpdate();\n }\n\n if (renderCompleted) {\n owners.length = 0;\n if (timerLoading !== null) {\n clearTimeout(timerLoading);\n timerLoading = null;\n }\n if (timerTimeout !== null) {\n clearTimeout(timerTimeout);\n timerTimeout = null;\n }\n }\n };\n\n var resolve = once(function (res) {\n // cache resolved\n factory.resolved = ensureCtor(res, baseCtor);\n // invoke callbacks only if this is not a synchronous resolve\n // (async resolves are shimmed as synchronous during SSR)\n if (!sync) {\n forceRender(true);\n } else {\n owners.length = 0;\n }\n });\n\n var reject = once(function (reason) {\n process.env.NODE_ENV !== 'production' && warn(\n \"Failed to resolve async component: \" + (String(factory)) +\n (reason ? (\"\\nReason: \" + reason) : '')\n );\n if (isDef(factory.errorComp)) {\n factory.error = true;\n forceRender(true);\n }\n });\n\n var res = factory(resolve, reject);\n\n if (isObject(res)) {\n if (isPromise(res)) {\n // () => Promise\n if (isUndef(factory.resolved)) {\n res.then(resolve, reject);\n }\n } else if (isPromise(res.component)) {\n res.component.then(resolve, reject);\n\n if (isDef(res.error)) {\n factory.errorComp = ensureCtor(res.error, baseCtor);\n }\n\n if (isDef(res.loading)) {\n factory.loadingComp = ensureCtor(res.loading, baseCtor);\n if (res.delay === 0) {\n factory.loading = true;\n } else {\n timerLoading = setTimeout(function () {\n timerLoading = null;\n if (isUndef(factory.resolved) && isUndef(factory.error)) {\n factory.loading = true;\n forceRender(false);\n }\n }, res.delay || 200);\n }\n }\n\n if (isDef(res.timeout)) {\n timerTimeout = setTimeout(function () {\n timerTimeout = null;\n if (isUndef(factory.resolved)) {\n reject(\n process.env.NODE_ENV !== 'production'\n ? (\"timeout (\" + (res.timeout) + \"ms)\")\n : null\n );\n }\n }, res.timeout);\n }\n }\n }\n\n sync = false;\n // return in case resolved synchronously\n return factory.loading\n ? factory.loadingComp\n : factory.resolved\n }\n}\n\n/* */\n\nfunction isAsyncPlaceholder (node) {\n return node.isComment && node.asyncFactory\n}\n\n/* */\n\nfunction getFirstComponentChild (children) {\n if (Array.isArray(children)) {\n for (var i = 0; i < children.length; i++) {\n var c = children[i];\n if (isDef(c) && (isDef(c.componentOptions) || isAsyncPlaceholder(c))) {\n return c\n }\n }\n }\n}\n\n/* */\n\n/* */\n\nfunction initEvents (vm) {\n vm._events = Object.create(null);\n vm._hasHookEvent = false;\n // init parent attached events\n var listeners = vm.$options._parentListeners;\n if (listeners) {\n updateComponentListeners(vm, listeners);\n }\n}\n\nvar target;\n\nfunction add (event, fn) {\n target.$on(event, fn);\n}\n\nfunction remove$1 (event, fn) {\n target.$off(event, fn);\n}\n\nfunction createOnceHandler (event, fn) {\n var _target = target;\n return function onceHandler () {\n var res = fn.apply(null, arguments);\n if (res !== null) {\n _target.$off(event, onceHandler);\n }\n }\n}\n\nfunction updateComponentListeners (\n vm,\n listeners,\n oldListeners\n) {\n target = vm;\n updateListeners(listeners, oldListeners || {}, add, remove$1, createOnceHandler, vm);\n target = undefined;\n}\n\nfunction eventsMixin (Vue) {\n var hookRE = /^hook:/;\n Vue.prototype.$on = function (event, fn) {\n var vm = this;\n if (Array.isArray(event)) {\n for (var i = 0, l = event.length; i < l; i++) {\n vm.$on(event[i], fn);\n }\n } else {\n (vm._events[event] || (vm._events[event] = [])).push(fn);\n // optimize hook:event cost by using a boolean flag marked at registration\n // instead of a hash lookup\n if (hookRE.test(event)) {\n vm._hasHookEvent = true;\n }\n }\n return vm\n };\n\n Vue.prototype.$once = function (event, fn) {\n var vm = this;\n function on () {\n vm.$off(event, on);\n fn.apply(vm, arguments);\n }\n on.fn = fn;\n vm.$on(event, on);\n return vm\n };\n\n Vue.prototype.$off = function (event, fn) {\n var vm = this;\n // all\n if (!arguments.length) {\n vm._events = Object.create(null);\n return vm\n }\n // array of events\n if (Array.isArray(event)) {\n for (var i$1 = 0, l = event.length; i$1 < l; i$1++) {\n vm.$off(event[i$1], fn);\n }\n return vm\n }\n // specific event\n var cbs = vm._events[event];\n if (!cbs) {\n return vm\n }\n if (!fn) {\n vm._events[event] = null;\n return vm\n }\n // specific handler\n var cb;\n var i = cbs.length;\n while (i--) {\n cb = cbs[i];\n if (cb === fn || cb.fn === fn) {\n cbs.splice(i, 1);\n break\n }\n }\n return vm\n };\n\n Vue.prototype.$emit = function (event) {\n var vm = this;\n if (process.env.NODE_ENV !== 'production') {\n var lowerCaseEvent = event.toLowerCase();\n if (lowerCaseEvent !== event && vm._events[lowerCaseEvent]) {\n tip(\n \"Event \\\"\" + lowerCaseEvent + \"\\\" is emitted in component \" +\n (formatComponentName(vm)) + \" but the handler is registered for \\\"\" + event + \"\\\". \" +\n \"Note that HTML attributes are case-insensitive and you cannot use \" +\n \"v-on to listen to camelCase events when using in-DOM templates. \" +\n \"You should probably use \\\"\" + (hyphenate(event)) + \"\\\" instead of \\\"\" + event + \"\\\".\"\n );\n }\n }\n var cbs = vm._events[event];\n if (cbs) {\n cbs = cbs.length > 1 ? toArray(cbs) : cbs;\n var args = toArray(arguments, 1);\n var info = \"event handler for \\\"\" + event + \"\\\"\";\n for (var i = 0, l = cbs.length; i < l; i++) {\n invokeWithErrorHandling(cbs[i], vm, args, vm, info);\n }\n }\n return vm\n };\n}\n\n/* */\n\nvar activeInstance = null;\nvar isUpdatingChildComponent = false;\n\nfunction setActiveInstance(vm) {\n var prevActiveInstance = activeInstance;\n activeInstance = vm;\n return function () {\n activeInstance = prevActiveInstance;\n }\n}\n\nfunction initLifecycle (vm) {\n var options = vm.$options;\n\n // locate first non-abstract parent\n var parent = options.parent;\n if (parent && !options.abstract) {\n while (parent.$options.abstract && parent.$parent) {\n parent = parent.$parent;\n }\n parent.$children.push(vm);\n }\n\n vm.$parent = parent;\n vm.$root = parent ? parent.$root : vm;\n\n vm.$children = [];\n vm.$refs = {};\n\n vm._watcher = null;\n vm._inactive = null;\n vm._directInactive = false;\n vm._isMounted = false;\n vm._isDestroyed = false;\n vm._isBeingDestroyed = false;\n}\n\nfunction lifecycleMixin (Vue) {\n Vue.prototype._update = function (vnode, hydrating) {\n var vm = this;\n var prevEl = vm.$el;\n var prevVnode = vm._vnode;\n var restoreActiveInstance = setActiveInstance(vm);\n vm._vnode = vnode;\n // Vue.prototype.__patch__ is injected in entry points\n // based on the rendering backend used.\n if (!prevVnode) {\n // initial render\n vm.$el = vm.__patch__(vm.$el, vnode, hydrating, false /* removeOnly */);\n } else {\n // updates\n vm.$el = vm.__patch__(prevVnode, vnode);\n }\n restoreActiveInstance();\n // update __vue__ reference\n if (prevEl) {\n prevEl.__vue__ = null;\n }\n if (vm.$el) {\n vm.$el.__vue__ = vm;\n }\n // if parent is an HOC, update its $el as well\n if (vm.$vnode && vm.$parent && vm.$vnode === vm.$parent._vnode) {\n vm.$parent.$el = vm.$el;\n }\n // updated hook is called by the scheduler to ensure that children are\n // updated in a parent's updated hook.\n };\n\n Vue.prototype.$forceUpdate = function () {\n var vm = this;\n if (vm._watcher) {\n vm._watcher.update();\n }\n };\n\n Vue.prototype.$destroy = function () {\n var vm = this;\n if (vm._isBeingDestroyed) {\n return\n }\n callHook(vm, 'beforeDestroy');\n vm._isBeingDestroyed = true;\n // remove self from parent\n var parent = vm.$parent;\n if (parent && !parent._isBeingDestroyed && !vm.$options.abstract) {\n remove(parent.$children, vm);\n }\n // teardown watchers\n if (vm._watcher) {\n vm._watcher.teardown();\n }\n var i = vm._watchers.length;\n while (i--) {\n vm._watchers[i].teardown();\n }\n // remove reference from data ob\n // frozen object may not have observer.\n if (vm._data.__ob__) {\n vm._data.__ob__.vmCount--;\n }\n // call the last hook...\n vm._isDestroyed = true;\n // invoke destroy hooks on current rendered tree\n vm.__patch__(vm._vnode, null);\n // fire destroyed hook\n callHook(vm, 'destroyed');\n // turn off all instance listeners.\n vm.$off();\n // remove __vue__ reference\n if (vm.$el) {\n vm.$el.__vue__ = null;\n }\n // release circular reference (#6759)\n if (vm.$vnode) {\n vm.$vnode.parent = null;\n }\n };\n}\n\nfunction mountComponent (\n vm,\n el,\n hydrating\n) {\n vm.$el = el;\n if (!vm.$options.render) {\n vm.$options.render = createEmptyVNode;\n if (process.env.NODE_ENV !== 'production') {\n /* istanbul ignore if */\n if ((vm.$options.template && vm.$options.template.charAt(0) !== '#') ||\n vm.$options.el || el) {\n warn(\n 'You are using the runtime-only build of Vue where the template ' +\n 'compiler is not available. Either pre-compile the templates into ' +\n 'render functions, or use the compiler-included build.',\n vm\n );\n } else {\n warn(\n 'Failed to mount component: template or render function not defined.',\n vm\n );\n }\n }\n }\n callHook(vm, 'beforeMount');\n\n var updateComponent;\n /* istanbul ignore if */\n if (process.env.NODE_ENV !== 'production' && config.performance && mark) {\n updateComponent = function () {\n var name = vm._name;\n var id = vm._uid;\n var startTag = \"vue-perf-start:\" + id;\n var endTag = \"vue-perf-end:\" + id;\n\n mark(startTag);\n var vnode = vm._render();\n mark(endTag);\n measure((\"vue \" + name + \" render\"), startTag, endTag);\n\n mark(startTag);\n vm._update(vnode, hydrating);\n mark(endTag);\n measure((\"vue \" + name + \" patch\"), startTag, endTag);\n };\n } else {\n updateComponent = function () {\n vm._update(vm._render(), hydrating);\n };\n }\n\n // we set this to vm._watcher inside the watcher's constructor\n // since the watcher's initial patch may call $forceUpdate (e.g. inside child\n // component's mounted hook), which relies on vm._watcher being already defined\n new Watcher(vm, updateComponent, noop, {\n before: function before () {\n if (vm._isMounted && !vm._isDestroyed) {\n callHook(vm, 'beforeUpdate');\n }\n }\n }, true /* isRenderWatcher */);\n hydrating = false;\n\n // manually mounted instance, call mounted on self\n // mounted is called for render-created child components in its inserted hook\n if (vm.$vnode == null) {\n vm._isMounted = true;\n callHook(vm, 'mounted');\n }\n return vm\n}\n\nfunction updateChildComponent (\n vm,\n propsData,\n listeners,\n parentVnode,\n renderChildren\n) {\n if (process.env.NODE_ENV !== 'production') {\n isUpdatingChildComponent = true;\n }\n\n // determine whether component has slot children\n // we need to do this before overwriting $options._renderChildren.\n\n // check if there are dynamic scopedSlots (hand-written or compiled but with\n // dynamic slot names). Static scoped slots compiled from template has the\n // \"$stable\" marker.\n var newScopedSlots = parentVnode.data.scopedSlots;\n var oldScopedSlots = vm.$scopedSlots;\n var hasDynamicScopedSlot = !!(\n (newScopedSlots && !newScopedSlots.$stable) ||\n (oldScopedSlots !== emptyObject && !oldScopedSlots.$stable) ||\n (newScopedSlots && vm.$scopedSlots.$key !== newScopedSlots.$key)\n );\n\n // Any static slot children from the parent may have changed during parent's\n // update. Dynamic scoped slots may also have changed. In such cases, a forced\n // update is necessary to ensure correctness.\n var needsForceUpdate = !!(\n renderChildren || // has new static slots\n vm.$options._renderChildren || // has old static slots\n hasDynamicScopedSlot\n );\n\n vm.$options._parentVnode = parentVnode;\n vm.$vnode = parentVnode; // update vm's placeholder node without re-render\n\n if (vm._vnode) { // update child tree's parent\n vm._vnode.parent = parentVnode;\n }\n vm.$options._renderChildren = renderChildren;\n\n // update $attrs and $listeners hash\n // these are also reactive so they may trigger child update if the child\n // used them during render\n vm.$attrs = parentVnode.data.attrs || emptyObject;\n vm.$listeners = listeners || emptyObject;\n\n // update props\n if (propsData && vm.$options.props) {\n toggleObserving(false);\n var props = vm._props;\n var propKeys = vm.$options._propKeys || [];\n for (var i = 0; i < propKeys.length; i++) {\n var key = propKeys[i];\n var propOptions = vm.$options.props; // wtf flow?\n props[key] = validateProp(key, propOptions, propsData, vm);\n }\n toggleObserving(true);\n // keep a copy of raw propsData\n vm.$options.propsData = propsData;\n }\n\n // update listeners\n listeners = listeners || emptyObject;\n var oldListeners = vm.$options._parentListeners;\n vm.$options._parentListeners = listeners;\n updateComponentListeners(vm, listeners, oldListeners);\n\n // resolve slots + force update if has children\n if (needsForceUpdate) {\n vm.$slots = resolveSlots(renderChildren, parentVnode.context);\n vm.$forceUpdate();\n }\n\n if (process.env.NODE_ENV !== 'production') {\n isUpdatingChildComponent = false;\n }\n}\n\nfunction isInInactiveTree (vm) {\n while (vm && (vm = vm.$parent)) {\n if (vm._inactive) { return true }\n }\n return false\n}\n\nfunction activateChildComponent (vm, direct) {\n if (direct) {\n vm._directInactive = false;\n if (isInInactiveTree(vm)) {\n return\n }\n } else if (vm._directInactive) {\n return\n }\n if (vm._inactive || vm._inactive === null) {\n vm._inactive = false;\n for (var i = 0; i < vm.$children.length; i++) {\n activateChildComponent(vm.$children[i]);\n }\n callHook(vm, 'activated');\n }\n}\n\nfunction deactivateChildComponent (vm, direct) {\n if (direct) {\n vm._directInactive = true;\n if (isInInactiveTree(vm)) {\n return\n }\n }\n if (!vm._inactive) {\n vm._inactive = true;\n for (var i = 0; i < vm.$children.length; i++) {\n deactivateChildComponent(vm.$children[i]);\n }\n callHook(vm, 'deactivated');\n }\n}\n\nfunction callHook (vm, hook) {\n // #7573 disable dep collection when invoking lifecycle hooks\n pushTarget();\n var handlers = vm.$options[hook];\n var info = hook + \" hook\";\n if (handlers) {\n for (var i = 0, j = handlers.length; i < j; i++) {\n invokeWithErrorHandling(handlers[i], vm, null, vm, info);\n }\n }\n if (vm._hasHookEvent) {\n vm.$emit('hook:' + hook);\n }\n popTarget();\n}\n\n/* */\n\nvar MAX_UPDATE_COUNT = 100;\n\nvar queue = [];\nvar activatedChildren = [];\nvar has = {};\nvar circular = {};\nvar waiting = false;\nvar flushing = false;\nvar index = 0;\n\n/**\n * Reset the scheduler's state.\n */\nfunction resetSchedulerState () {\n index = queue.length = activatedChildren.length = 0;\n has = {};\n if (process.env.NODE_ENV !== 'production') {\n circular = {};\n }\n waiting = flushing = false;\n}\n\n// Async edge case #6566 requires saving the timestamp when event listeners are\n// attached. However, calling performance.now() has a perf overhead especially\n// if the page has thousands of event listeners. Instead, we take a timestamp\n// every time the scheduler flushes and use that for all event listeners\n// attached during that flush.\nvar currentFlushTimestamp = 0;\n\n// Async edge case fix requires storing an event listener's attach timestamp.\nvar getNow = Date.now;\n\n// Determine what event timestamp the browser is using. Annoyingly, the\n// timestamp can either be hi-res (relative to page load) or low-res\n// (relative to UNIX epoch), so in order to compare time we have to use the\n// same timestamp type when saving the flush timestamp.\n// All IE versions use low-res event timestamps, and have problematic clock\n// implementations (#9632)\nif (inBrowser && !isIE) {\n var performance = window.performance;\n if (\n performance &&\n typeof performance.now === 'function' &&\n getNow() > document.createEvent('Event').timeStamp\n ) {\n // if the event timestamp, although evaluated AFTER the Date.now(), is\n // smaller than it, it means the event is using a hi-res timestamp,\n // and we need to use the hi-res version for event listener timestamps as\n // well.\n getNow = function () { return performance.now(); };\n }\n}\n\n/**\n * Flush both queues and run the watchers.\n */\nfunction flushSchedulerQueue () {\n currentFlushTimestamp = getNow();\n flushing = true;\n var watcher, id;\n\n // Sort queue before flush.\n // This ensures that:\n // 1. Components are updated from parent to child. (because parent is always\n // created before the child)\n // 2. A component's user watchers are run before its render watcher (because\n // user watchers are created before the render watcher)\n // 3. If a component is destroyed during a parent component's watcher run,\n // its watchers can be skipped.\n queue.sort(function (a, b) { return a.id - b.id; });\n\n // do not cache length because more watchers might be pushed\n // as we run existing watchers\n for (index = 0; index < queue.length; index++) {\n watcher = queue[index];\n if (watcher.before) {\n watcher.before();\n }\n id = watcher.id;\n has[id] = null;\n watcher.run();\n // in dev build, check and stop circular updates.\n if (process.env.NODE_ENV !== 'production' && has[id] != null) {\n circular[id] = (circular[id] || 0) + 1;\n if (circular[id] > MAX_UPDATE_COUNT) {\n warn(\n 'You may have an infinite update loop ' + (\n watcher.user\n ? (\"in watcher with expression \\\"\" + (watcher.expression) + \"\\\"\")\n : \"in a component render function.\"\n ),\n watcher.vm\n );\n break\n }\n }\n }\n\n // keep copies of post queues before resetting state\n var activatedQueue = activatedChildren.slice();\n var updatedQueue = queue.slice();\n\n resetSchedulerState();\n\n // call component updated and activated hooks\n callActivatedHooks(activatedQueue);\n callUpdatedHooks(updatedQueue);\n\n // devtool hook\n /* istanbul ignore if */\n if (devtools && config.devtools) {\n devtools.emit('flush');\n }\n}\n\nfunction callUpdatedHooks (queue) {\n var i = queue.length;\n while (i--) {\n var watcher = queue[i];\n var vm = watcher.vm;\n if (vm._watcher === watcher && vm._isMounted && !vm._isDestroyed) {\n callHook(vm, 'updated');\n }\n }\n}\n\n/**\n * Queue a kept-alive component that was activated during patch.\n * The queue will be processed after the entire tree has been patched.\n */\nfunction queueActivatedComponent (vm) {\n // setting _inactive to false here so that a render function can\n // rely on checking whether it's in an inactive tree (e.g. router-view)\n vm._inactive = false;\n activatedChildren.push(vm);\n}\n\nfunction callActivatedHooks (queue) {\n for (var i = 0; i < queue.length; i++) {\n queue[i]._inactive = true;\n activateChildComponent(queue[i], true /* true */);\n }\n}\n\n/**\n * Push a watcher into the watcher queue.\n * Jobs with duplicate IDs will be skipped unless it's\n * pushed when the queue is being flushed.\n */\nfunction queueWatcher (watcher) {\n var id = watcher.id;\n if (has[id] == null) {\n has[id] = true;\n if (!flushing) {\n queue.push(watcher);\n } else {\n // if already flushing, splice the watcher based on its id\n // if already past its id, it will be run next immediately.\n var i = queue.length - 1;\n while (i > index && queue[i].id > watcher.id) {\n i--;\n }\n queue.splice(i + 1, 0, watcher);\n }\n // queue the flush\n if (!waiting) {\n waiting = true;\n\n if (process.env.NODE_ENV !== 'production' && !config.async) {\n flushSchedulerQueue();\n return\n }\n nextTick(flushSchedulerQueue);\n }\n }\n}\n\n/* */\n\n\n\nvar uid$2 = 0;\n\n/**\n * A watcher parses an expression, collects dependencies,\n * and fires callback when the expression value changes.\n * This is used for both the $watch() api and directives.\n */\nvar Watcher = function Watcher (\n vm,\n expOrFn,\n cb,\n options,\n isRenderWatcher\n) {\n this.vm = vm;\n if (isRenderWatcher) {\n vm._watcher = this;\n }\n vm._watchers.push(this);\n // options\n if (options) {\n this.deep = !!options.deep;\n this.user = !!options.user;\n this.lazy = !!options.lazy;\n this.sync = !!options.sync;\n this.before = options.before;\n } else {\n this.deep = this.user = this.lazy = this.sync = false;\n }\n this.cb = cb;\n this.id = ++uid$2; // uid for batching\n this.active = true;\n this.dirty = this.lazy; // for lazy watchers\n this.deps = [];\n this.newDeps = [];\n this.depIds = new _Set();\n this.newDepIds = new _Set();\n this.expression = process.env.NODE_ENV !== 'production'\n ? expOrFn.toString()\n : '';\n // parse expression for getter\n if (typeof expOrFn === 'function') {\n this.getter = expOrFn;\n } else {\n this.getter = parsePath(expOrFn);\n if (!this.getter) {\n this.getter = noop;\n process.env.NODE_ENV !== 'production' && warn(\n \"Failed watching path: \\\"\" + expOrFn + \"\\\" \" +\n 'Watcher only accepts simple dot-delimited paths. ' +\n 'For full control, use a function instead.',\n vm\n );\n }\n }\n this.value = this.lazy\n ? undefined\n : this.get();\n};\n\n/**\n * Evaluate the getter, and re-collect dependencies.\n */\nWatcher.prototype.get = function get () {\n pushTarget(this);\n var value;\n var vm = this.vm;\n try {\n value = this.getter.call(vm, vm);\n } catch (e) {\n if (this.user) {\n handleError(e, vm, (\"getter for watcher \\\"\" + (this.expression) + \"\\\"\"));\n } else {\n throw e\n }\n } finally {\n // \"touch\" every property so they are all tracked as\n // dependencies for deep watching\n if (this.deep) {\n traverse(value);\n }\n popTarget();\n this.cleanupDeps();\n }\n return value\n};\n\n/**\n * Add a dependency to this directive.\n */\nWatcher.prototype.addDep = function addDep (dep) {\n var id = dep.id;\n if (!this.newDepIds.has(id)) {\n this.newDepIds.add(id);\n this.newDeps.push(dep);\n if (!this.depIds.has(id)) {\n dep.addSub(this);\n }\n }\n};\n\n/**\n * Clean up for dependency collection.\n */\nWatcher.prototype.cleanupDeps = function cleanupDeps () {\n var i = this.deps.length;\n while (i--) {\n var dep = this.deps[i];\n if (!this.newDepIds.has(dep.id)) {\n dep.removeSub(this);\n }\n }\n var tmp = this.depIds;\n this.depIds = this.newDepIds;\n this.newDepIds = tmp;\n this.newDepIds.clear();\n tmp = this.deps;\n this.deps = this.newDeps;\n this.newDeps = tmp;\n this.newDeps.length = 0;\n};\n\n/**\n * Subscriber interface.\n * Will be called when a dependency changes.\n */\nWatcher.prototype.update = function update () {\n /* istanbul ignore else */\n if (this.lazy) {\n this.dirty = true;\n } else if (this.sync) {\n this.run();\n } else {\n queueWatcher(this);\n }\n};\n\n/**\n * Scheduler job interface.\n * Will be called by the scheduler.\n */\nWatcher.prototype.run = function run () {\n if (this.active) {\n var value = this.get();\n if (\n value !== this.value ||\n // Deep watchers and watchers on Object/Arrays should fire even\n // when the value is the same, because the value may\n // have mutated.\n isObject(value) ||\n this.deep\n ) {\n // set new value\n var oldValue = this.value;\n this.value = value;\n if (this.user) {\n try {\n this.cb.call(this.vm, value, oldValue);\n } catch (e) {\n handleError(e, this.vm, (\"callback for watcher \\\"\" + (this.expression) + \"\\\"\"));\n }\n } else {\n this.cb.call(this.vm, value, oldValue);\n }\n }\n }\n};\n\n/**\n * Evaluate the value of the watcher.\n * This only gets called for lazy watchers.\n */\nWatcher.prototype.evaluate = function evaluate () {\n this.value = this.get();\n this.dirty = false;\n};\n\n/**\n * Depend on all deps collected by this watcher.\n */\nWatcher.prototype.depend = function depend () {\n var i = this.deps.length;\n while (i--) {\n this.deps[i].depend();\n }\n};\n\n/**\n * Remove self from all dependencies' subscriber list.\n */\nWatcher.prototype.teardown = function teardown () {\n if (this.active) {\n // remove self from vm's watcher list\n // this is a somewhat expensive operation so we skip it\n // if the vm is being destroyed.\n if (!this.vm._isBeingDestroyed) {\n remove(this.vm._watchers, this);\n }\n var i = this.deps.length;\n while (i--) {\n this.deps[i].removeSub(this);\n }\n this.active = false;\n }\n};\n\n/* */\n\nvar sharedPropertyDefinition = {\n enumerable: true,\n configurable: true,\n get: noop,\n set: noop\n};\n\nfunction proxy (target, sourceKey, key) {\n sharedPropertyDefinition.get = function proxyGetter () {\n return this[sourceKey][key]\n };\n sharedPropertyDefinition.set = function proxySetter (val) {\n this[sourceKey][key] = val;\n };\n Object.defineProperty(target, key, sharedPropertyDefinition);\n}\n\nfunction initState (vm) {\n vm._watchers = [];\n var opts = vm.$options;\n if (opts.props) { initProps(vm, opts.props); }\n if (opts.methods) { initMethods(vm, opts.methods); }\n if (opts.data) {\n initData(vm);\n } else {\n observe(vm._data = {}, true /* asRootData */);\n }\n if (opts.computed) { initComputed(vm, opts.computed); }\n if (opts.watch && opts.watch !== nativeWatch) {\n initWatch(vm, opts.watch);\n }\n}\n\nfunction initProps (vm, propsOptions) {\n var propsData = vm.$options.propsData || {};\n var props = vm._props = {};\n // cache prop keys so that future props updates can iterate using Array\n // instead of dynamic object key enumeration.\n var keys = vm.$options._propKeys = [];\n var isRoot = !vm.$parent;\n // root instance props should be converted\n if (!isRoot) {\n toggleObserving(false);\n }\n var loop = function ( key ) {\n keys.push(key);\n var value = validateProp(key, propsOptions, propsData, vm);\n /* istanbul ignore else */\n if (process.env.NODE_ENV !== 'production') {\n var hyphenatedKey = hyphenate(key);\n if (isReservedAttribute(hyphenatedKey) ||\n config.isReservedAttr(hyphenatedKey)) {\n warn(\n (\"\\\"\" + hyphenatedKey + \"\\\" is a reserved attribute and cannot be used as component prop.\"),\n vm\n );\n }\n defineReactive$$1(props, key, value, function () {\n if (!isRoot && !isUpdatingChildComponent) {\n warn(\n \"Avoid mutating a prop directly since the value will be \" +\n \"overwritten whenever the parent component re-renders. \" +\n \"Instead, use a data or computed property based on the prop's \" +\n \"value. Prop being mutated: \\\"\" + key + \"\\\"\",\n vm\n );\n }\n });\n } else {\n defineReactive$$1(props, key, value);\n }\n // static props are already proxied on the component's prototype\n // during Vue.extend(). We only need to proxy props defined at\n // instantiation here.\n if (!(key in vm)) {\n proxy(vm, \"_props\", key);\n }\n };\n\n for (var key in propsOptions) loop( key );\n toggleObserving(true);\n}\n\nfunction initData (vm) {\n var data = vm.$options.data;\n data = vm._data = typeof data === 'function'\n ? getData(data, vm)\n : data || {};\n if (!isPlainObject(data)) {\n data = {};\n process.env.NODE_ENV !== 'production' && warn(\n 'data functions should return an object:\\n' +\n 'https://vuejs.org/v2/guide/components.html#data-Must-Be-a-Function',\n vm\n );\n }\n // proxy data on instance\n var keys = Object.keys(data);\n var props = vm.$options.props;\n var methods = vm.$options.methods;\n var i = keys.length;\n while (i--) {\n var key = keys[i];\n if (process.env.NODE_ENV !== 'production') {\n if (methods && hasOwn(methods, key)) {\n warn(\n (\"Method \\\"\" + key + \"\\\" has already been defined as a data property.\"),\n vm\n );\n }\n }\n if (props && hasOwn(props, key)) {\n process.env.NODE_ENV !== 'production' && warn(\n \"The data property \\\"\" + key + \"\\\" is already declared as a prop. \" +\n \"Use prop default value instead.\",\n vm\n );\n } else if (!isReserved(key)) {\n proxy(vm, \"_data\", key);\n }\n }\n // observe data\n observe(data, true /* asRootData */);\n}\n\nfunction getData (data, vm) {\n // #7573 disable dep collection when invoking data getters\n pushTarget();\n try {\n return data.call(vm, vm)\n } catch (e) {\n handleError(e, vm, \"data()\");\n return {}\n } finally {\n popTarget();\n }\n}\n\nvar computedWatcherOptions = { lazy: true };\n\nfunction initComputed (vm, computed) {\n // $flow-disable-line\n var watchers = vm._computedWatchers = Object.create(null);\n // computed properties are just getters during SSR\n var isSSR = isServerRendering();\n\n for (var key in computed) {\n var userDef = computed[key];\n var getter = typeof userDef === 'function' ? userDef : userDef.get;\n if (process.env.NODE_ENV !== 'production' && getter == null) {\n warn(\n (\"Getter is missing for computed property \\\"\" + key + \"\\\".\"),\n vm\n );\n }\n\n if (!isSSR) {\n // create internal watcher for the computed property.\n watchers[key] = new Watcher(\n vm,\n getter || noop,\n noop,\n computedWatcherOptions\n );\n }\n\n // component-defined computed properties are already defined on the\n // component prototype. We only need to define computed properties defined\n // at instantiation here.\n if (!(key in vm)) {\n defineComputed(vm, key, userDef);\n } else if (process.env.NODE_ENV !== 'production') {\n if (key in vm.$data) {\n warn((\"The computed property \\\"\" + key + \"\\\" is already defined in data.\"), vm);\n } else if (vm.$options.props && key in vm.$options.props) {\n warn((\"The computed property \\\"\" + key + \"\\\" is already defined as a prop.\"), vm);\n }\n }\n }\n}\n\nfunction defineComputed (\n target,\n key,\n userDef\n) {\n var shouldCache = !isServerRendering();\n if (typeof userDef === 'function') {\n sharedPropertyDefinition.get = shouldCache\n ? createComputedGetter(key)\n : createGetterInvoker(userDef);\n sharedPropertyDefinition.set = noop;\n } else {\n sharedPropertyDefinition.get = userDef.get\n ? shouldCache && userDef.cache !== false\n ? createComputedGetter(key)\n : createGetterInvoker(userDef.get)\n : noop;\n sharedPropertyDefinition.set = userDef.set || noop;\n }\n if (process.env.NODE_ENV !== 'production' &&\n sharedPropertyDefinition.set === noop) {\n sharedPropertyDefinition.set = function () {\n warn(\n (\"Computed property \\\"\" + key + \"\\\" was assigned to but it has no setter.\"),\n this\n );\n };\n }\n Object.defineProperty(target, key, sharedPropertyDefinition);\n}\n\nfunction createComputedGetter (key) {\n return function computedGetter () {\n var watcher = this._computedWatchers && this._computedWatchers[key];\n if (watcher) {\n if (watcher.dirty) {\n watcher.evaluate();\n }\n if (Dep.target) {\n watcher.depend();\n }\n return watcher.value\n }\n }\n}\n\nfunction createGetterInvoker(fn) {\n return function computedGetter () {\n return fn.call(this, this)\n }\n}\n\nfunction initMethods (vm, methods) {\n var props = vm.$options.props;\n for (var key in methods) {\n if (process.env.NODE_ENV !== 'production') {\n if (typeof methods[key] !== 'function') {\n warn(\n \"Method \\\"\" + key + \"\\\" has type \\\"\" + (typeof methods[key]) + \"\\\" in the component definition. \" +\n \"Did you reference the function correctly?\",\n vm\n );\n }\n if (props && hasOwn(props, key)) {\n warn(\n (\"Method \\\"\" + key + \"\\\" has already been defined as a prop.\"),\n vm\n );\n }\n if ((key in vm) && isReserved(key)) {\n warn(\n \"Method \\\"\" + key + \"\\\" conflicts with an existing Vue instance method. \" +\n \"Avoid defining component methods that start with _ or $.\"\n );\n }\n }\n vm[key] = typeof methods[key] !== 'function' ? noop : bind(methods[key], vm);\n }\n}\n\nfunction initWatch (vm, watch) {\n for (var key in watch) {\n var handler = watch[key];\n if (Array.isArray(handler)) {\n for (var i = 0; i < handler.length; i++) {\n createWatcher(vm, key, handler[i]);\n }\n } else {\n createWatcher(vm, key, handler);\n }\n }\n}\n\nfunction createWatcher (\n vm,\n expOrFn,\n handler,\n options\n) {\n if (isPlainObject(handler)) {\n options = handler;\n handler = handler.handler;\n }\n if (typeof handler === 'string') {\n handler = vm[handler];\n }\n return vm.$watch(expOrFn, handler, options)\n}\n\nfunction stateMixin (Vue) {\n // flow somehow has problems with directly declared definition object\n // when using Object.defineProperty, so we have to procedurally build up\n // the object here.\n var dataDef = {};\n dataDef.get = function () { return this._data };\n var propsDef = {};\n propsDef.get = function () { return this._props };\n if (process.env.NODE_ENV !== 'production') {\n dataDef.set = function () {\n warn(\n 'Avoid replacing instance root $data. ' +\n 'Use nested data properties instead.',\n this\n );\n };\n propsDef.set = function () {\n warn(\"$props is readonly.\", this);\n };\n }\n Object.defineProperty(Vue.prototype, '$data', dataDef);\n Object.defineProperty(Vue.prototype, '$props', propsDef);\n\n Vue.prototype.$set = set;\n Vue.prototype.$delete = del;\n\n Vue.prototype.$watch = function (\n expOrFn,\n cb,\n options\n ) {\n var vm = this;\n if (isPlainObject(cb)) {\n return createWatcher(vm, expOrFn, cb, options)\n }\n options = options || {};\n options.user = true;\n var watcher = new Watcher(vm, expOrFn, cb, options);\n if (options.immediate) {\n try {\n cb.call(vm, watcher.value);\n } catch (error) {\n handleError(error, vm, (\"callback for immediate watcher \\\"\" + (watcher.expression) + \"\\\"\"));\n }\n }\n return function unwatchFn () {\n watcher.teardown();\n }\n };\n}\n\n/* */\n\nvar uid$3 = 0;\n\nfunction initMixin (Vue) {\n Vue.prototype._init = function (options) {\n var vm = this;\n // a uid\n vm._uid = uid$3++;\n\n var startTag, endTag;\n /* istanbul ignore if */\n if (process.env.NODE_ENV !== 'production' && config.performance && mark) {\n startTag = \"vue-perf-start:\" + (vm._uid);\n endTag = \"vue-perf-end:\" + (vm._uid);\n mark(startTag);\n }\n\n // a flag to avoid this being observed\n vm._isVue = true;\n // merge options\n if (options && options._isComponent) {\n // optimize internal component instantiation\n // since dynamic options merging is pretty slow, and none of the\n // internal component options needs special treatment.\n initInternalComponent(vm, options);\n } else {\n vm.$options = mergeOptions(\n resolveConstructorOptions(vm.constructor),\n options || {},\n vm\n );\n }\n /* istanbul ignore else */\n if (process.env.NODE_ENV !== 'production') {\n initProxy(vm);\n } else {\n vm._renderProxy = vm;\n }\n // expose real self\n vm._self = vm;\n initLifecycle(vm);\n initEvents(vm);\n initRender(vm);\n callHook(vm, 'beforeCreate');\n initInjections(vm); // resolve injections before data/props\n initState(vm);\n initProvide(vm); // resolve provide after data/props\n callHook(vm, 'created');\n\n /* istanbul ignore if */\n if (process.env.NODE_ENV !== 'production' && config.performance && mark) {\n vm._name = formatComponentName(vm, false);\n mark(endTag);\n measure((\"vue \" + (vm._name) + \" init\"), startTag, endTag);\n }\n\n if (vm.$options.el) {\n vm.$mount(vm.$options.el);\n }\n };\n}\n\nfunction initInternalComponent (vm, options) {\n var opts = vm.$options = Object.create(vm.constructor.options);\n // doing this because it's faster than dynamic enumeration.\n var parentVnode = options._parentVnode;\n opts.parent = options.parent;\n opts._parentVnode = parentVnode;\n\n var vnodeComponentOptions = parentVnode.componentOptions;\n opts.propsData = vnodeComponentOptions.propsData;\n opts._parentListeners = vnodeComponentOptions.listeners;\n opts._renderChildren = vnodeComponentOptions.children;\n opts._componentTag = vnodeComponentOptions.tag;\n\n if (options.render) {\n opts.render = options.render;\n opts.staticRenderFns = options.staticRenderFns;\n }\n}\n\nfunction resolveConstructorOptions (Ctor) {\n var options = Ctor.options;\n if (Ctor.super) {\n var superOptions = resolveConstructorOptions(Ctor.super);\n var cachedSuperOptions = Ctor.superOptions;\n if (superOptions !== cachedSuperOptions) {\n // super option changed,\n // need to resolve new options.\n Ctor.superOptions = superOptions;\n // check if there are any late-modified/attached options (#4976)\n var modifiedOptions = resolveModifiedOptions(Ctor);\n // update base extend options\n if (modifiedOptions) {\n extend(Ctor.extendOptions, modifiedOptions);\n }\n options = Ctor.options = mergeOptions(superOptions, Ctor.extendOptions);\n if (options.name) {\n options.components[options.name] = Ctor;\n }\n }\n }\n return options\n}\n\nfunction resolveModifiedOptions (Ctor) {\n var modified;\n var latest = Ctor.options;\n var sealed = Ctor.sealedOptions;\n for (var key in latest) {\n if (latest[key] !== sealed[key]) {\n if (!modified) { modified = {}; }\n modified[key] = latest[key];\n }\n }\n return modified\n}\n\nfunction Vue (options) {\n if (process.env.NODE_ENV !== 'production' &&\n !(this instanceof Vue)\n ) {\n warn('Vue is a constructor and should be called with the `new` keyword');\n }\n this._init(options);\n}\n\ninitMixin(Vue);\nstateMixin(Vue);\neventsMixin(Vue);\nlifecycleMixin(Vue);\nrenderMixin(Vue);\n\n/* */\n\nfunction initUse (Vue) {\n Vue.use = function (plugin) {\n var installedPlugins = (this._installedPlugins || (this._installedPlugins = []));\n if (installedPlugins.indexOf(plugin) > -1) {\n return this\n }\n\n // additional parameters\n var args = toArray(arguments, 1);\n args.unshift(this);\n if (typeof plugin.install === 'function') {\n plugin.install.apply(plugin, args);\n } else if (typeof plugin === 'function') {\n plugin.apply(null, args);\n }\n installedPlugins.push(plugin);\n return this\n };\n}\n\n/* */\n\nfunction initMixin$1 (Vue) {\n Vue.mixin = function (mixin) {\n this.options = mergeOptions(this.options, mixin);\n return this\n };\n}\n\n/* */\n\nfunction initExtend (Vue) {\n /**\n * Each instance constructor, including Vue, has a unique\n * cid. This enables us to create wrapped \"child\n * constructors\" for prototypal inheritance and cache them.\n */\n Vue.cid = 0;\n var cid = 1;\n\n /**\n * Class inheritance\n */\n Vue.extend = function (extendOptions) {\n extendOptions = extendOptions || {};\n var Super = this;\n var SuperId = Super.cid;\n var cachedCtors = extendOptions._Ctor || (extendOptions._Ctor = {});\n if (cachedCtors[SuperId]) {\n return cachedCtors[SuperId]\n }\n\n var name = extendOptions.name || Super.options.name;\n if (process.env.NODE_ENV !== 'production' && name) {\n validateComponentName(name);\n }\n\n var Sub = function VueComponent (options) {\n this._init(options);\n };\n Sub.prototype = Object.create(Super.prototype);\n Sub.prototype.constructor = Sub;\n Sub.cid = cid++;\n Sub.options = mergeOptions(\n Super.options,\n extendOptions\n );\n Sub['super'] = Super;\n\n // For props and computed properties, we define the proxy getters on\n // the Vue instances at extension time, on the extended prototype. This\n // avoids Object.defineProperty calls for each instance created.\n if (Sub.options.props) {\n initProps$1(Sub);\n }\n if (Sub.options.computed) {\n initComputed$1(Sub);\n }\n\n // allow further extension/mixin/plugin usage\n Sub.extend = Super.extend;\n Sub.mixin = Super.mixin;\n Sub.use = Super.use;\n\n // create asset registers, so extended classes\n // can have their private assets too.\n ASSET_TYPES.forEach(function (type) {\n Sub[type] = Super[type];\n });\n // enable recursive self-lookup\n if (name) {\n Sub.options.components[name] = Sub;\n }\n\n // keep a reference to the super options at extension time.\n // later at instantiation we can check if Super's options have\n // been updated.\n Sub.superOptions = Super.options;\n Sub.extendOptions = extendOptions;\n Sub.sealedOptions = extend({}, Sub.options);\n\n // cache constructor\n cachedCtors[SuperId] = Sub;\n return Sub\n };\n}\n\nfunction initProps$1 (Comp) {\n var props = Comp.options.props;\n for (var key in props) {\n proxy(Comp.prototype, \"_props\", key);\n }\n}\n\nfunction initComputed$1 (Comp) {\n var computed = Comp.options.computed;\n for (var key in computed) {\n defineComputed(Comp.prototype, key, computed[key]);\n }\n}\n\n/* */\n\nfunction initAssetRegisters (Vue) {\n /**\n * Create asset registration methods.\n */\n ASSET_TYPES.forEach(function (type) {\n Vue[type] = function (\n id,\n definition\n ) {\n if (!definition) {\n return this.options[type + 's'][id]\n } else {\n /* istanbul ignore if */\n if (process.env.NODE_ENV !== 'production' && type === 'component') {\n validateComponentName(id);\n }\n if (type === 'component' && isPlainObject(definition)) {\n definition.name = definition.name || id;\n definition = this.options._base.extend(definition);\n }\n if (type === 'directive' && typeof definition === 'function') {\n definition = { bind: definition, update: definition };\n }\n this.options[type + 's'][id] = definition;\n return definition\n }\n };\n });\n}\n\n/* */\n\n\n\nfunction getComponentName (opts) {\n return opts && (opts.Ctor.options.name || opts.tag)\n}\n\nfunction matches (pattern, name) {\n if (Array.isArray(pattern)) {\n return pattern.indexOf(name) > -1\n } else if (typeof pattern === 'string') {\n return pattern.split(',').indexOf(name) > -1\n } else if (isRegExp(pattern)) {\n return pattern.test(name)\n }\n /* istanbul ignore next */\n return false\n}\n\nfunction pruneCache (keepAliveInstance, filter) {\n var cache = keepAliveInstance.cache;\n var keys = keepAliveInstance.keys;\n var _vnode = keepAliveInstance._vnode;\n for (var key in cache) {\n var cachedNode = cache[key];\n if (cachedNode) {\n var name = getComponentName(cachedNode.componentOptions);\n if (name && !filter(name)) {\n pruneCacheEntry(cache, key, keys, _vnode);\n }\n }\n }\n}\n\nfunction pruneCacheEntry (\n cache,\n key,\n keys,\n current\n) {\n var cached$$1 = cache[key];\n if (cached$$1 && (!current || cached$$1.tag !== current.tag)) {\n cached$$1.componentInstance.$destroy();\n }\n cache[key] = null;\n remove(keys, key);\n}\n\nvar patternTypes = [String, RegExp, Array];\n\nvar KeepAlive = {\n name: 'keep-alive',\n abstract: true,\n\n props: {\n include: patternTypes,\n exclude: patternTypes,\n max: [String, Number]\n },\n\n created: function created () {\n this.cache = Object.create(null);\n this.keys = [];\n },\n\n destroyed: function destroyed () {\n for (var key in this.cache) {\n pruneCacheEntry(this.cache, key, this.keys);\n }\n },\n\n mounted: function mounted () {\n var this$1 = this;\n\n this.$watch('include', function (val) {\n pruneCache(this$1, function (name) { return matches(val, name); });\n });\n this.$watch('exclude', function (val) {\n pruneCache(this$1, function (name) { return !matches(val, name); });\n });\n },\n\n render: function render () {\n var slot = this.$slots.default;\n var vnode = getFirstComponentChild(slot);\n var componentOptions = vnode && vnode.componentOptions;\n if (componentOptions) {\n // check pattern\n var name = getComponentName(componentOptions);\n var ref = this;\n var include = ref.include;\n var exclude = ref.exclude;\n if (\n // not included\n (include && (!name || !matches(include, name))) ||\n // excluded\n (exclude && name && matches(exclude, name))\n ) {\n return vnode\n }\n\n var ref$1 = this;\n var cache = ref$1.cache;\n var keys = ref$1.keys;\n var key = vnode.key == null\n // same constructor may get registered as different local components\n // so cid alone is not enough (#3269)\n ? componentOptions.Ctor.cid + (componentOptions.tag ? (\"::\" + (componentOptions.tag)) : '')\n : vnode.key;\n if (cache[key]) {\n vnode.componentInstance = cache[key].componentInstance;\n // make current key freshest\n remove(keys, key);\n keys.push(key);\n } else {\n cache[key] = vnode;\n keys.push(key);\n // prune oldest entry\n if (this.max && keys.length > parseInt(this.max)) {\n pruneCacheEntry(cache, keys[0], keys, this._vnode);\n }\n }\n\n vnode.data.keepAlive = true;\n }\n return vnode || (slot && slot[0])\n }\n};\n\nvar builtInComponents = {\n KeepAlive: KeepAlive\n};\n\n/* */\n\nfunction initGlobalAPI (Vue) {\n // config\n var configDef = {};\n configDef.get = function () { return config; };\n if (process.env.NODE_ENV !== 'production') {\n configDef.set = function () {\n warn(\n 'Do not replace the Vue.config object, set individual fields instead.'\n );\n };\n }\n Object.defineProperty(Vue, 'config', configDef);\n\n // exposed util methods.\n // NOTE: these are not considered part of the public API - avoid relying on\n // them unless you are aware of the risk.\n Vue.util = {\n warn: warn,\n extend: extend,\n mergeOptions: mergeOptions,\n defineReactive: defineReactive$$1\n };\n\n Vue.set = set;\n Vue.delete = del;\n Vue.nextTick = nextTick;\n\n // 2.6 explicit observable API\n Vue.observable = function (obj) {\n observe(obj);\n return obj\n };\n\n Vue.options = Object.create(null);\n ASSET_TYPES.forEach(function (type) {\n Vue.options[type + 's'] = Object.create(null);\n });\n\n // this is used to identify the \"base\" constructor to extend all plain-object\n // components with in Weex's multi-instance scenarios.\n Vue.options._base = Vue;\n\n extend(Vue.options.components, builtInComponents);\n\n initUse(Vue);\n initMixin$1(Vue);\n initExtend(Vue);\n initAssetRegisters(Vue);\n}\n\ninitGlobalAPI(Vue);\n\nObject.defineProperty(Vue.prototype, '$isServer', {\n get: isServerRendering\n});\n\nObject.defineProperty(Vue.prototype, '$ssrContext', {\n get: function get () {\n /* istanbul ignore next */\n return this.$vnode && this.$vnode.ssrContext\n }\n});\n\n// expose FunctionalRenderContext for ssr runtime helper installation\nObject.defineProperty(Vue, 'FunctionalRenderContext', {\n value: FunctionalRenderContext\n});\n\nVue.version = '2.6.11';\n\n/* */\n\n// these are reserved for web because they are directly compiled away\n// during template compilation\nvar isReservedAttr = makeMap('style,class');\n\n// attributes that should be using props for binding\nvar acceptValue = makeMap('input,textarea,option,select,progress');\nvar mustUseProp = function (tag, type, attr) {\n return (\n (attr === 'value' && acceptValue(tag)) && type !== 'button' ||\n (attr === 'selected' && tag === 'option') ||\n (attr === 'checked' && tag === 'input') ||\n (attr === 'muted' && tag === 'video')\n )\n};\n\nvar isEnumeratedAttr = makeMap('contenteditable,draggable,spellcheck');\n\nvar isValidContentEditableValue = makeMap('events,caret,typing,plaintext-only');\n\nvar convertEnumeratedValue = function (key, value) {\n return isFalsyAttrValue(value) || value === 'false'\n ? 'false'\n // allow arbitrary string value for contenteditable\n : key === 'contenteditable' && isValidContentEditableValue(value)\n ? value\n : 'true'\n};\n\nvar isBooleanAttr = makeMap(\n 'allowfullscreen,async,autofocus,autoplay,checked,compact,controls,declare,' +\n 'default,defaultchecked,defaultmuted,defaultselected,defer,disabled,' +\n 'enabled,formnovalidate,hidden,indeterminate,inert,ismap,itemscope,loop,multiple,' +\n 'muted,nohref,noresize,noshade,novalidate,nowrap,open,pauseonexit,readonly,' +\n 'required,reversed,scoped,seamless,selected,sortable,translate,' +\n 'truespeed,typemustmatch,visible'\n);\n\nvar xlinkNS = 'http://www.w3.org/1999/xlink';\n\nvar isXlink = function (name) {\n return name.charAt(5) === ':' && name.slice(0, 5) === 'xlink'\n};\n\nvar getXlinkProp = function (name) {\n return isXlink(name) ? name.slice(6, name.length) : ''\n};\n\nvar isFalsyAttrValue = function (val) {\n return val == null || val === false\n};\n\n/* */\n\nfunction genClassForVnode (vnode) {\n var data = vnode.data;\n var parentNode = vnode;\n var childNode = vnode;\n while (isDef(childNode.componentInstance)) {\n childNode = childNode.componentInstance._vnode;\n if (childNode && childNode.data) {\n data = mergeClassData(childNode.data, data);\n }\n }\n while (isDef(parentNode = parentNode.parent)) {\n if (parentNode && parentNode.data) {\n data = mergeClassData(data, parentNode.data);\n }\n }\n return renderClass(data.staticClass, data.class)\n}\n\nfunction mergeClassData (child, parent) {\n return {\n staticClass: concat(child.staticClass, parent.staticClass),\n class: isDef(child.class)\n ? [child.class, parent.class]\n : parent.class\n }\n}\n\nfunction renderClass (\n staticClass,\n dynamicClass\n) {\n if (isDef(staticClass) || isDef(dynamicClass)) {\n return concat(staticClass, stringifyClass(dynamicClass))\n }\n /* istanbul ignore next */\n return ''\n}\n\nfunction concat (a, b) {\n return a ? b ? (a + ' ' + b) : a : (b || '')\n}\n\nfunction stringifyClass (value) {\n if (Array.isArray(value)) {\n return stringifyArray(value)\n }\n if (isObject(value)) {\n return stringifyObject(value)\n }\n if (typeof value === 'string') {\n return value\n }\n /* istanbul ignore next */\n return ''\n}\n\nfunction stringifyArray (value) {\n var res = '';\n var stringified;\n for (var i = 0, l = value.length; i < l; i++) {\n if (isDef(stringified = stringifyClass(value[i])) && stringified !== '') {\n if (res) { res += ' '; }\n res += stringified;\n }\n }\n return res\n}\n\nfunction stringifyObject (value) {\n var res = '';\n for (var key in value) {\n if (value[key]) {\n if (res) { res += ' '; }\n res += key;\n }\n }\n return res\n}\n\n/* */\n\nvar namespaceMap = {\n svg: 'http://www.w3.org/2000/svg',\n math: 'http://www.w3.org/1998/Math/MathML'\n};\n\nvar isHTMLTag = makeMap(\n 'html,body,base,head,link,meta,style,title,' +\n 'address,article,aside,footer,header,h1,h2,h3,h4,h5,h6,hgroup,nav,section,' +\n 'div,dd,dl,dt,figcaption,figure,picture,hr,img,li,main,ol,p,pre,ul,' +\n 'a,b,abbr,bdi,bdo,br,cite,code,data,dfn,em,i,kbd,mark,q,rp,rt,rtc,ruby,' +\n 's,samp,small,span,strong,sub,sup,time,u,var,wbr,area,audio,map,track,video,' +\n 'embed,object,param,source,canvas,script,noscript,del,ins,' +\n 'caption,col,colgroup,table,thead,tbody,td,th,tr,' +\n 'button,datalist,fieldset,form,input,label,legend,meter,optgroup,option,' +\n 'output,progress,select,textarea,' +\n 'details,dialog,menu,menuitem,summary,' +\n 'content,element,shadow,template,blockquote,iframe,tfoot'\n);\n\n// this map is intentionally selective, only covering SVG elements that may\n// contain child elements.\nvar isSVG = makeMap(\n 'svg,animate,circle,clippath,cursor,defs,desc,ellipse,filter,font-face,' +\n 'foreignObject,g,glyph,image,line,marker,mask,missing-glyph,path,pattern,' +\n 'polygon,polyline,rect,switch,symbol,text,textpath,tspan,use,view',\n true\n);\n\nvar isReservedTag = function (tag) {\n return isHTMLTag(tag) || isSVG(tag)\n};\n\nfunction getTagNamespace (tag) {\n if (isSVG(tag)) {\n return 'svg'\n }\n // basic support for MathML\n // note it doesn't support other MathML elements being component roots\n if (tag === 'math') {\n return 'math'\n }\n}\n\nvar unknownElementCache = Object.create(null);\nfunction isUnknownElement (tag) {\n /* istanbul ignore if */\n if (!inBrowser) {\n return true\n }\n if (isReservedTag(tag)) {\n return false\n }\n tag = tag.toLowerCase();\n /* istanbul ignore if */\n if (unknownElementCache[tag] != null) {\n return unknownElementCache[tag]\n }\n var el = document.createElement(tag);\n if (tag.indexOf('-') > -1) {\n // http://stackoverflow.com/a/28210364/1070244\n return (unknownElementCache[tag] = (\n el.constructor === window.HTMLUnknownElement ||\n el.constructor === window.HTMLElement\n ))\n } else {\n return (unknownElementCache[tag] = /HTMLUnknownElement/.test(el.toString()))\n }\n}\n\nvar isTextInputType = makeMap('text,number,password,search,email,tel,url');\n\n/* */\n\n/**\n * Query an element selector if it's not an element already.\n */\nfunction query (el) {\n if (typeof el === 'string') {\n var selected = document.querySelector(el);\n if (!selected) {\n process.env.NODE_ENV !== 'production' && warn(\n 'Cannot find element: ' + el\n );\n return document.createElement('div')\n }\n return selected\n } else {\n return el\n }\n}\n\n/* */\n\nfunction createElement$1 (tagName, vnode) {\n var elm = document.createElement(tagName);\n if (tagName !== 'select') {\n return elm\n }\n // false or null will remove the attribute but undefined will not\n if (vnode.data && vnode.data.attrs && vnode.data.attrs.multiple !== undefined) {\n elm.setAttribute('multiple', 'multiple');\n }\n return elm\n}\n\nfunction createElementNS (namespace, tagName) {\n return document.createElementNS(namespaceMap[namespace], tagName)\n}\n\nfunction createTextNode (text) {\n return document.createTextNode(text)\n}\n\nfunction createComment (text) {\n return document.createComment(text)\n}\n\nfunction insertBefore (parentNode, newNode, referenceNode) {\n parentNode.insertBefore(newNode, referenceNode);\n}\n\nfunction removeChild (node, child) {\n node.removeChild(child);\n}\n\nfunction appendChild (node, child) {\n node.appendChild(child);\n}\n\nfunction parentNode (node) {\n return node.parentNode\n}\n\nfunction nextSibling (node) {\n return node.nextSibling\n}\n\nfunction tagName (node) {\n return node.tagName\n}\n\nfunction setTextContent (node, text) {\n node.textContent = text;\n}\n\nfunction setStyleScope (node, scopeId) {\n node.setAttribute(scopeId, '');\n}\n\nvar nodeOps = /*#__PURE__*/Object.freeze({\n createElement: createElement$1,\n createElementNS: createElementNS,\n createTextNode: createTextNode,\n createComment: createComment,\n insertBefore: insertBefore,\n removeChild: removeChild,\n appendChild: appendChild,\n parentNode: parentNode,\n nextSibling: nextSibling,\n tagName: tagName,\n setTextContent: setTextContent,\n setStyleScope: setStyleScope\n});\n\n/* */\n\nvar ref = {\n create: function create (_, vnode) {\n registerRef(vnode);\n },\n update: function update (oldVnode, vnode) {\n if (oldVnode.data.ref !== vnode.data.ref) {\n registerRef(oldVnode, true);\n registerRef(vnode);\n }\n },\n destroy: function destroy (vnode) {\n registerRef(vnode, true);\n }\n};\n\nfunction registerRef (vnode, isRemoval) {\n var key = vnode.data.ref;\n if (!isDef(key)) { return }\n\n var vm = vnode.context;\n var ref = vnode.componentInstance || vnode.elm;\n var refs = vm.$refs;\n if (isRemoval) {\n if (Array.isArray(refs[key])) {\n remove(refs[key], ref);\n } else if (refs[key] === ref) {\n refs[key] = undefined;\n }\n } else {\n if (vnode.data.refInFor) {\n if (!Array.isArray(refs[key])) {\n refs[key] = [ref];\n } else if (refs[key].indexOf(ref) < 0) {\n // $flow-disable-line\n refs[key].push(ref);\n }\n } else {\n refs[key] = ref;\n }\n }\n}\n\n/**\n * Virtual DOM patching algorithm based on Snabbdom by\n * Simon Friis Vindum (@paldepind)\n * Licensed under the MIT License\n * https://github.com/paldepind/snabbdom/blob/master/LICENSE\n *\n * modified by Evan You (@yyx990803)\n *\n * Not type-checking this because this file is perf-critical and the cost\n * of making flow understand it is not worth it.\n */\n\nvar emptyNode = new VNode('', {}, []);\n\nvar hooks = ['create', 'activate', 'update', 'remove', 'destroy'];\n\nfunction sameVnode (a, b) {\n return (\n a.key === b.key && (\n (\n a.tag === b.tag &&\n a.isComment === b.isComment &&\n isDef(a.data) === isDef(b.data) &&\n sameInputType(a, b)\n ) || (\n isTrue(a.isAsyncPlaceholder) &&\n a.asyncFactory === b.asyncFactory &&\n isUndef(b.asyncFactory.error)\n )\n )\n )\n}\n\nfunction sameInputType (a, b) {\n if (a.tag !== 'input') { return true }\n var i;\n var typeA = isDef(i = a.data) && isDef(i = i.attrs) && i.type;\n var typeB = isDef(i = b.data) && isDef(i = i.attrs) && i.type;\n return typeA === typeB || isTextInputType(typeA) && isTextInputType(typeB)\n}\n\nfunction createKeyToOldIdx (children, beginIdx, endIdx) {\n var i, key;\n var map = {};\n for (i = beginIdx; i <= endIdx; ++i) {\n key = children[i].key;\n if (isDef(key)) { map[key] = i; }\n }\n return map\n}\n\nfunction createPatchFunction (backend) {\n var i, j;\n var cbs = {};\n\n var modules = backend.modules;\n var nodeOps = backend.nodeOps;\n\n for (i = 0; i < hooks.length; ++i) {\n cbs[hooks[i]] = [];\n for (j = 0; j < modules.length; ++j) {\n if (isDef(modules[j][hooks[i]])) {\n cbs[hooks[i]].push(modules[j][hooks[i]]);\n }\n }\n }\n\n function emptyNodeAt (elm) {\n return new VNode(nodeOps.tagName(elm).toLowerCase(), {}, [], undefined, elm)\n }\n\n function createRmCb (childElm, listeners) {\n function remove$$1 () {\n if (--remove$$1.listeners === 0) {\n removeNode(childElm);\n }\n }\n remove$$1.listeners = listeners;\n return remove$$1\n }\n\n function removeNode (el) {\n var parent = nodeOps.parentNode(el);\n // element may have already been removed due to v-html / v-text\n if (isDef(parent)) {\n nodeOps.removeChild(parent, el);\n }\n }\n\n function isUnknownElement$$1 (vnode, inVPre) {\n return (\n !inVPre &&\n !vnode.ns &&\n !(\n config.ignoredElements.length &&\n config.ignoredElements.some(function (ignore) {\n return isRegExp(ignore)\n ? ignore.test(vnode.tag)\n : ignore === vnode.tag\n })\n ) &&\n config.isUnknownElement(vnode.tag)\n )\n }\n\n var creatingElmInVPre = 0;\n\n function createElm (\n vnode,\n insertedVnodeQueue,\n parentElm,\n refElm,\n nested,\n ownerArray,\n index\n ) {\n if (isDef(vnode.elm) && isDef(ownerArray)) {\n // This vnode was used in a previous render!\n // now it's used as a new node, overwriting its elm would cause\n // potential patch errors down the road when it's used as an insertion\n // reference node. Instead, we clone the node on-demand before creating\n // associated DOM element for it.\n vnode = ownerArray[index] = cloneVNode(vnode);\n }\n\n vnode.isRootInsert = !nested; // for transition enter check\n if (createComponent(vnode, insertedVnodeQueue, parentElm, refElm)) {\n return\n }\n\n var data = vnode.data;\n var children = vnode.children;\n var tag = vnode.tag;\n if (isDef(tag)) {\n if (process.env.NODE_ENV !== 'production') {\n if (data && data.pre) {\n creatingElmInVPre++;\n }\n if (isUnknownElement$$1(vnode, creatingElmInVPre)) {\n warn(\n 'Unknown custom element: <' + tag + '> - did you ' +\n 'register the component correctly? For recursive components, ' +\n 'make sure to provide the \"name\" option.',\n vnode.context\n );\n }\n }\n\n vnode.elm = vnode.ns\n ? nodeOps.createElementNS(vnode.ns, tag)\n : nodeOps.createElement(tag, vnode);\n setScope(vnode);\n\n /* istanbul ignore if */\n {\n createChildren(vnode, children, insertedVnodeQueue);\n if (isDef(data)) {\n invokeCreateHooks(vnode, insertedVnodeQueue);\n }\n insert(parentElm, vnode.elm, refElm);\n }\n\n if (process.env.NODE_ENV !== 'production' && data && data.pre) {\n creatingElmInVPre--;\n }\n } else if (isTrue(vnode.isComment)) {\n vnode.elm = nodeOps.createComment(vnode.text);\n insert(parentElm, vnode.elm, refElm);\n } else {\n vnode.elm = nodeOps.createTextNode(vnode.text);\n insert(parentElm, vnode.elm, refElm);\n }\n }\n\n function createComponent (vnode, insertedVnodeQueue, parentElm, refElm) {\n var i = vnode.data;\n if (isDef(i)) {\n var isReactivated = isDef(vnode.componentInstance) && i.keepAlive;\n if (isDef(i = i.hook) && isDef(i = i.init)) {\n i(vnode, false /* hydrating */);\n }\n // after calling the init hook, if the vnode is a child component\n // it should've created a child instance and mounted it. the child\n // component also has set the placeholder vnode's elm.\n // in that case we can just return the element and be done.\n if (isDef(vnode.componentInstance)) {\n initComponent(vnode, insertedVnodeQueue);\n insert(parentElm, vnode.elm, refElm);\n if (isTrue(isReactivated)) {\n reactivateComponent(vnode, insertedVnodeQueue, parentElm, refElm);\n }\n return true\n }\n }\n }\n\n function initComponent (vnode, insertedVnodeQueue) {\n if (isDef(vnode.data.pendingInsert)) {\n insertedVnodeQueue.push.apply(insertedVnodeQueue, vnode.data.pendingInsert);\n vnode.data.pendingInsert = null;\n }\n vnode.elm = vnode.componentInstance.$el;\n if (isPatchable(vnode)) {\n invokeCreateHooks(vnode, insertedVnodeQueue);\n setScope(vnode);\n } else {\n // empty component root.\n // skip all element-related modules except for ref (#3455)\n registerRef(vnode);\n // make sure to invoke the insert hook\n insertedVnodeQueue.push(vnode);\n }\n }\n\n function reactivateComponent (vnode, insertedVnodeQueue, parentElm, refElm) {\n var i;\n // hack for #4339: a reactivated component with inner transition\n // does not trigger because the inner node's created hooks are not called\n // again. It's not ideal to involve module-specific logic in here but\n // there doesn't seem to be a better way to do it.\n var innerNode = vnode;\n while (innerNode.componentInstance) {\n innerNode = innerNode.componentInstance._vnode;\n if (isDef(i = innerNode.data) && isDef(i = i.transition)) {\n for (i = 0; i < cbs.activate.length; ++i) {\n cbs.activate[i](emptyNode, innerNode);\n }\n insertedVnodeQueue.push(innerNode);\n break\n }\n }\n // unlike a newly created component,\n // a reactivated keep-alive component doesn't insert itself\n insert(parentElm, vnode.elm, refElm);\n }\n\n function insert (parent, elm, ref$$1) {\n if (isDef(parent)) {\n if (isDef(ref$$1)) {\n if (nodeOps.parentNode(ref$$1) === parent) {\n nodeOps.insertBefore(parent, elm, ref$$1);\n }\n } else {\n nodeOps.appendChild(parent, elm);\n }\n }\n }\n\n function createChildren (vnode, children, insertedVnodeQueue) {\n if (Array.isArray(children)) {\n if (process.env.NODE_ENV !== 'production') {\n checkDuplicateKeys(children);\n }\n for (var i = 0; i < children.length; ++i) {\n createElm(children[i], insertedVnodeQueue, vnode.elm, null, true, children, i);\n }\n } else if (isPrimitive(vnode.text)) {\n nodeOps.appendChild(vnode.elm, nodeOps.createTextNode(String(vnode.text)));\n }\n }\n\n function isPatchable (vnode) {\n while (vnode.componentInstance) {\n vnode = vnode.componentInstance._vnode;\n }\n return isDef(vnode.tag)\n }\n\n function invokeCreateHooks (vnode, insertedVnodeQueue) {\n for (var i$1 = 0; i$1 < cbs.create.length; ++i$1) {\n cbs.create[i$1](emptyNode, vnode);\n }\n i = vnode.data.hook; // Reuse variable\n if (isDef(i)) {\n if (isDef(i.create)) { i.create(emptyNode, vnode); }\n if (isDef(i.insert)) { insertedVnodeQueue.push(vnode); }\n }\n }\n\n // set scope id attribute for scoped CSS.\n // this is implemented as a special case to avoid the overhead\n // of going through the normal attribute patching process.\n function setScope (vnode) {\n var i;\n if (isDef(i = vnode.fnScopeId)) {\n nodeOps.setStyleScope(vnode.elm, i);\n } else {\n var ancestor = vnode;\n while (ancestor) {\n if (isDef(i = ancestor.context) && isDef(i = i.$options._scopeId)) {\n nodeOps.setStyleScope(vnode.elm, i);\n }\n ancestor = ancestor.parent;\n }\n }\n // for slot content they should also get the scopeId from the host instance.\n if (isDef(i = activeInstance) &&\n i !== vnode.context &&\n i !== vnode.fnContext &&\n isDef(i = i.$options._scopeId)\n ) {\n nodeOps.setStyleScope(vnode.elm, i);\n }\n }\n\n function addVnodes (parentElm, refElm, vnodes, startIdx, endIdx, insertedVnodeQueue) {\n for (; startIdx <= endIdx; ++startIdx) {\n createElm(vnodes[startIdx], insertedVnodeQueue, parentElm, refElm, false, vnodes, startIdx);\n }\n }\n\n function invokeDestroyHook (vnode) {\n var i, j;\n var data = vnode.data;\n if (isDef(data)) {\n if (isDef(i = data.hook) && isDef(i = i.destroy)) { i(vnode); }\n for (i = 0; i < cbs.destroy.length; ++i) { cbs.destroy[i](vnode); }\n }\n if (isDef(i = vnode.children)) {\n for (j = 0; j < vnode.children.length; ++j) {\n invokeDestroyHook(vnode.children[j]);\n }\n }\n }\n\n function removeVnodes (vnodes, startIdx, endIdx) {\n for (; startIdx <= endIdx; ++startIdx) {\n var ch = vnodes[startIdx];\n if (isDef(ch)) {\n if (isDef(ch.tag)) {\n removeAndInvokeRemoveHook(ch);\n invokeDestroyHook(ch);\n } else { // Text node\n removeNode(ch.elm);\n }\n }\n }\n }\n\n function removeAndInvokeRemoveHook (vnode, rm) {\n if (isDef(rm) || isDef(vnode.data)) {\n var i;\n var listeners = cbs.remove.length + 1;\n if (isDef(rm)) {\n // we have a recursively passed down rm callback\n // increase the listeners count\n rm.listeners += listeners;\n } else {\n // directly removing\n rm = createRmCb(vnode.elm, listeners);\n }\n // recursively invoke hooks on child component root node\n if (isDef(i = vnode.componentInstance) && isDef(i = i._vnode) && isDef(i.data)) {\n removeAndInvokeRemoveHook(i, rm);\n }\n for (i = 0; i < cbs.remove.length; ++i) {\n cbs.remove[i](vnode, rm);\n }\n if (isDef(i = vnode.data.hook) && isDef(i = i.remove)) {\n i(vnode, rm);\n } else {\n rm();\n }\n } else {\n removeNode(vnode.elm);\n }\n }\n\n function updateChildren (parentElm, oldCh, newCh, insertedVnodeQueue, removeOnly) {\n var oldStartIdx = 0;\n var newStartIdx = 0;\n var oldEndIdx = oldCh.length - 1;\n var oldStartVnode = oldCh[0];\n var oldEndVnode = oldCh[oldEndIdx];\n var newEndIdx = newCh.length - 1;\n var newStartVnode = newCh[0];\n var newEndVnode = newCh[newEndIdx];\n var oldKeyToIdx, idxInOld, vnodeToMove, refElm;\n\n // removeOnly is a special flag used only by <transition-group>\n // to ensure removed elements stay in correct relative positions\n // during leaving transitions\n var canMove = !removeOnly;\n\n if (process.env.NODE_ENV !== 'production') {\n checkDuplicateKeys(newCh);\n }\n\n while (oldStartIdx <= oldEndIdx && newStartIdx <= newEndIdx) {\n if (isUndef(oldStartVnode)) {\n oldStartVnode = oldCh[++oldStartIdx]; // Vnode has been moved left\n } else if (isUndef(oldEndVnode)) {\n oldEndVnode = oldCh[--oldEndIdx];\n } else if (sameVnode(oldStartVnode, newStartVnode)) {\n patchVnode(oldStartVnode, newStartVnode, insertedVnodeQueue, newCh, newStartIdx);\n oldStartVnode = oldCh[++oldStartIdx];\n newStartVnode = newCh[++newStartIdx];\n } else if (sameVnode(oldEndVnode, newEndVnode)) {\n patchVnode(oldEndVnode, newEndVnode, insertedVnodeQueue, newCh, newEndIdx);\n oldEndVnode = oldCh[--oldEndIdx];\n newEndVnode = newCh[--newEndIdx];\n } else if (sameVnode(oldStartVnode, newEndVnode)) { // Vnode moved right\n patchVnode(oldStartVnode, newEndVnode, insertedVnodeQueue, newCh, newEndIdx);\n canMove && nodeOps.insertBefore(parentElm, oldStartVnode.elm, nodeOps.nextSibling(oldEndVnode.elm));\n oldStartVnode = oldCh[++oldStartIdx];\n newEndVnode = newCh[--newEndIdx];\n } else if (sameVnode(oldEndVnode, newStartVnode)) { // Vnode moved left\n patchVnode(oldEndVnode, newStartVnode, insertedVnodeQueue, newCh, newStartIdx);\n canMove && nodeOps.insertBefore(parentElm, oldEndVnode.elm, oldStartVnode.elm);\n oldEndVnode = oldCh[--oldEndIdx];\n newStartVnode = newCh[++newStartIdx];\n } else {\n if (isUndef(oldKeyToIdx)) { oldKeyToIdx = createKeyToOldIdx(oldCh, oldStartIdx, oldEndIdx); }\n idxInOld = isDef(newStartVnode.key)\n ? oldKeyToIdx[newStartVnode.key]\n : findIdxInOld(newStartVnode, oldCh, oldStartIdx, oldEndIdx);\n if (isUndef(idxInOld)) { // New element\n createElm(newStartVnode, insertedVnodeQueue, parentElm, oldStartVnode.elm, false, newCh, newStartIdx);\n } else {\n vnodeToMove = oldCh[idxInOld];\n if (sameVnode(vnodeToMove, newStartVnode)) {\n patchVnode(vnodeToMove, newStartVnode, insertedVnodeQueue, newCh, newStartIdx);\n oldCh[idxInOld] = undefined;\n canMove && nodeOps.insertBefore(parentElm, vnodeToMove.elm, oldStartVnode.elm);\n } else {\n // same key but different element. treat as new element\n createElm(newStartVnode, insertedVnodeQueue, parentElm, oldStartVnode.elm, false, newCh, newStartIdx);\n }\n }\n newStartVnode = newCh[++newStartIdx];\n }\n }\n if (oldStartIdx > oldEndIdx) {\n refElm = isUndef(newCh[newEndIdx + 1]) ? null : newCh[newEndIdx + 1].elm;\n addVnodes(parentElm, refElm, newCh, newStartIdx, newEndIdx, insertedVnodeQueue);\n } else if (newStartIdx > newEndIdx) {\n removeVnodes(oldCh, oldStartIdx, oldEndIdx);\n }\n }\n\n function checkDuplicateKeys (children) {\n var seenKeys = {};\n for (var i = 0; i < children.length; i++) {\n var vnode = children[i];\n var key = vnode.key;\n if (isDef(key)) {\n if (seenKeys[key]) {\n warn(\n (\"Duplicate keys detected: '\" + key + \"'. This may cause an update error.\"),\n vnode.context\n );\n } else {\n seenKeys[key] = true;\n }\n }\n }\n }\n\n function findIdxInOld (node, oldCh, start, end) {\n for (var i = start; i < end; i++) {\n var c = oldCh[i];\n if (isDef(c) && sameVnode(node, c)) { return i }\n }\n }\n\n function patchVnode (\n oldVnode,\n vnode,\n insertedVnodeQueue,\n ownerArray,\n index,\n removeOnly\n ) {\n if (oldVnode === vnode) {\n return\n }\n\n if (isDef(vnode.elm) && isDef(ownerArray)) {\n // clone reused vnode\n vnode = ownerArray[index] = cloneVNode(vnode);\n }\n\n var elm = vnode.elm = oldVnode.elm;\n\n if (isTrue(oldVnode.isAsyncPlaceholder)) {\n if (isDef(vnode.asyncFactory.resolved)) {\n hydrate(oldVnode.elm, vnode, insertedVnodeQueue);\n } else {\n vnode.isAsyncPlaceholder = true;\n }\n return\n }\n\n // reuse element for static trees.\n // note we only do this if the vnode is cloned -\n // if the new node is not cloned it means the render functions have been\n // reset by the hot-reload-api and we need to do a proper re-render.\n if (isTrue(vnode.isStatic) &&\n isTrue(oldVnode.isStatic) &&\n vnode.key === oldVnode.key &&\n (isTrue(vnode.isCloned) || isTrue(vnode.isOnce))\n ) {\n vnode.componentInstance = oldVnode.componentInstance;\n return\n }\n\n var i;\n var data = vnode.data;\n if (isDef(data) && isDef(i = data.hook) && isDef(i = i.prepatch)) {\n i(oldVnode, vnode);\n }\n\n var oldCh = oldVnode.children;\n var ch = vnode.children;\n if (isDef(data) && isPatchable(vnode)) {\n for (i = 0; i < cbs.update.length; ++i) { cbs.update[i](oldVnode, vnode); }\n if (isDef(i = data.hook) && isDef(i = i.update)) { i(oldVnode, vnode); }\n }\n if (isUndef(vnode.text)) {\n if (isDef(oldCh) && isDef(ch)) {\n if (oldCh !== ch) { updateChildren(elm, oldCh, ch, insertedVnodeQueue, removeOnly); }\n } else if (isDef(ch)) {\n if (process.env.NODE_ENV !== 'production') {\n checkDuplicateKeys(ch);\n }\n if (isDef(oldVnode.text)) { nodeOps.setTextContent(elm, ''); }\n addVnodes(elm, null, ch, 0, ch.length - 1, insertedVnodeQueue);\n } else if (isDef(oldCh)) {\n removeVnodes(oldCh, 0, oldCh.length - 1);\n } else if (isDef(oldVnode.text)) {\n nodeOps.setTextContent(elm, '');\n }\n } else if (oldVnode.text !== vnode.text) {\n nodeOps.setTextContent(elm, vnode.text);\n }\n if (isDef(data)) {\n if (isDef(i = data.hook) && isDef(i = i.postpatch)) { i(oldVnode, vnode); }\n }\n }\n\n function invokeInsertHook (vnode, queue, initial) {\n // delay insert hooks for component root nodes, invoke them after the\n // element is really inserted\n if (isTrue(initial) && isDef(vnode.parent)) {\n vnode.parent.data.pendingInsert = queue;\n } else {\n for (var i = 0; i < queue.length; ++i) {\n queue[i].data.hook.insert(queue[i]);\n }\n }\n }\n\n var hydrationBailed = false;\n // list of modules that can skip create hook during hydration because they\n // are already rendered on the client or has no need for initialization\n // Note: style is excluded because it relies on initial clone for future\n // deep updates (#7063).\n var isRenderedModule = makeMap('attrs,class,staticClass,staticStyle,key');\n\n // Note: this is a browser-only function so we can assume elms are DOM nodes.\n function hydrate (elm, vnode, insertedVnodeQueue, inVPre) {\n var i;\n var tag = vnode.tag;\n var data = vnode.data;\n var children = vnode.children;\n inVPre = inVPre || (data && data.pre);\n vnode.elm = elm;\n\n if (isTrue(vnode.isComment) && isDef(vnode.asyncFactory)) {\n vnode.isAsyncPlaceholder = true;\n return true\n }\n // assert node match\n if (process.env.NODE_ENV !== 'production') {\n if (!assertNodeMatch(elm, vnode, inVPre)) {\n return false\n }\n }\n if (isDef(data)) {\n if (isDef(i = data.hook) && isDef(i = i.init)) { i(vnode, true /* hydrating */); }\n if (isDef(i = vnode.componentInstance)) {\n // child component. it should have hydrated its own tree.\n initComponent(vnode, insertedVnodeQueue);\n return true\n }\n }\n if (isDef(tag)) {\n if (isDef(children)) {\n // empty element, allow client to pick up and populate children\n if (!elm.hasChildNodes()) {\n createChildren(vnode, children, insertedVnodeQueue);\n } else {\n // v-html and domProps: innerHTML\n if (isDef(i = data) && isDef(i = i.domProps) && isDef(i = i.innerHTML)) {\n if (i !== elm.innerHTML) {\n /* istanbul ignore if */\n if (process.env.NODE_ENV !== 'production' &&\n typeof console !== 'undefined' &&\n !hydrationBailed\n ) {\n hydrationBailed = true;\n console.warn('Parent: ', elm);\n console.warn('server innerHTML: ', i);\n console.warn('client innerHTML: ', elm.innerHTML);\n }\n return false\n }\n } else {\n // iterate and compare children lists\n var childrenMatch = true;\n var childNode = elm.firstChild;\n for (var i$1 = 0; i$1 < children.length; i$1++) {\n if (!childNode || !hydrate(childNode, children[i$1], insertedVnodeQueue, inVPre)) {\n childrenMatch = false;\n break\n }\n childNode = childNode.nextSibling;\n }\n // if childNode is not null, it means the actual childNodes list is\n // longer than the virtual children list.\n if (!childrenMatch || childNode) {\n /* istanbul ignore if */\n if (process.env.NODE_ENV !== 'production' &&\n typeof console !== 'undefined' &&\n !hydrationBailed\n ) {\n hydrationBailed = true;\n console.warn('Parent: ', elm);\n console.warn('Mismatching childNodes vs. VNodes: ', elm.childNodes, children);\n }\n return false\n }\n }\n }\n }\n if (isDef(data)) {\n var fullInvoke = false;\n for (var key in data) {\n if (!isRenderedModule(key)) {\n fullInvoke = true;\n invokeCreateHooks(vnode, insertedVnodeQueue);\n break\n }\n }\n if (!fullInvoke && data['class']) {\n // ensure collecting deps for deep class bindings for future updates\n traverse(data['class']);\n }\n }\n } else if (elm.data !== vnode.text) {\n elm.data = vnode.text;\n }\n return true\n }\n\n function assertNodeMatch (node, vnode, inVPre) {\n if (isDef(vnode.tag)) {\n return vnode.tag.indexOf('vue-component') === 0 || (\n !isUnknownElement$$1(vnode, inVPre) &&\n vnode.tag.toLowerCase() === (node.tagName && node.tagName.toLowerCase())\n )\n } else {\n return node.nodeType === (vnode.isComment ? 8 : 3)\n }\n }\n\n return function patch (oldVnode, vnode, hydrating, removeOnly) {\n if (isUndef(vnode)) {\n if (isDef(oldVnode)) { invokeDestroyHook(oldVnode); }\n return\n }\n\n var isInitialPatch = false;\n var insertedVnodeQueue = [];\n\n if (isUndef(oldVnode)) {\n // empty mount (likely as component), create new root element\n isInitialPatch = true;\n createElm(vnode, insertedVnodeQueue);\n } else {\n var isRealElement = isDef(oldVnode.nodeType);\n if (!isRealElement && sameVnode(oldVnode, vnode)) {\n // patch existing root node\n patchVnode(oldVnode, vnode, insertedVnodeQueue, null, null, removeOnly);\n } else {\n if (isRealElement) {\n // mounting to a real element\n // check if this is server-rendered content and if we can perform\n // a successful hydration.\n if (oldVnode.nodeType === 1 && oldVnode.hasAttribute(SSR_ATTR)) {\n oldVnode.removeAttribute(SSR_ATTR);\n hydrating = true;\n }\n if (isTrue(hydrating)) {\n if (hydrate(oldVnode, vnode, insertedVnodeQueue)) {\n invokeInsertHook(vnode, insertedVnodeQueue, true);\n return oldVnode\n } else if (process.env.NODE_ENV !== 'production') {\n warn(\n 'The client-side rendered virtual DOM tree is not matching ' +\n 'server-rendered content. This is likely caused by incorrect ' +\n 'HTML markup, for example nesting block-level elements inside ' +\n '<p>, or missing <tbody>. Bailing hydration and performing ' +\n 'full client-side render.'\n );\n }\n }\n // either not server-rendered, or hydration failed.\n // create an empty node and replace it\n oldVnode = emptyNodeAt(oldVnode);\n }\n\n // replacing existing element\n var oldElm = oldVnode.elm;\n var parentElm = nodeOps.parentNode(oldElm);\n\n // create new node\n createElm(\n vnode,\n insertedVnodeQueue,\n // extremely rare edge case: do not insert if old element is in a\n // leaving transition. Only happens when combining transition +\n // keep-alive + HOCs. (#4590)\n oldElm._leaveCb ? null : parentElm,\n nodeOps.nextSibling(oldElm)\n );\n\n // update parent placeholder node element, recursively\n if (isDef(vnode.parent)) {\n var ancestor = vnode.parent;\n var patchable = isPatchable(vnode);\n while (ancestor) {\n for (var i = 0; i < cbs.destroy.length; ++i) {\n cbs.destroy[i](ancestor);\n }\n ancestor.elm = vnode.elm;\n if (patchable) {\n for (var i$1 = 0; i$1 < cbs.create.length; ++i$1) {\n cbs.create[i$1](emptyNode, ancestor);\n }\n // #6513\n // invoke insert hooks that may have been merged by create hooks.\n // e.g. for directives that uses the \"inserted\" hook.\n var insert = ancestor.data.hook.insert;\n if (insert.merged) {\n // start at index 1 to avoid re-invoking component mounted hook\n for (var i$2 = 1; i$2 < insert.fns.length; i$2++) {\n insert.fns[i$2]();\n }\n }\n } else {\n registerRef(ancestor);\n }\n ancestor = ancestor.parent;\n }\n }\n\n // destroy old node\n if (isDef(parentElm)) {\n removeVnodes([oldVnode], 0, 0);\n } else if (isDef(oldVnode.tag)) {\n invokeDestroyHook(oldVnode);\n }\n }\n }\n\n invokeInsertHook(vnode, insertedVnodeQueue, isInitialPatch);\n return vnode.elm\n }\n}\n\n/* */\n\nvar directives = {\n create: updateDirectives,\n update: updateDirectives,\n destroy: function unbindDirectives (vnode) {\n updateDirectives(vnode, emptyNode);\n }\n};\n\nfunction updateDirectives (oldVnode, vnode) {\n if (oldVnode.data.directives || vnode.data.directives) {\n _update(oldVnode, vnode);\n }\n}\n\nfunction _update (oldVnode, vnode) {\n var isCreate = oldVnode === emptyNode;\n var isDestroy = vnode === emptyNode;\n var oldDirs = normalizeDirectives$1(oldVnode.data.directives, oldVnode.context);\n var newDirs = normalizeDirectives$1(vnode.data.directives, vnode.context);\n\n var dirsWithInsert = [];\n var dirsWithPostpatch = [];\n\n var key, oldDir, dir;\n for (key in newDirs) {\n oldDir = oldDirs[key];\n dir = newDirs[key];\n if (!oldDir) {\n // new directive, bind\n callHook$1(dir, 'bind', vnode, oldVnode);\n if (dir.def && dir.def.inserted) {\n dirsWithInsert.push(dir);\n }\n } else {\n // existing directive, update\n dir.oldValue = oldDir.value;\n dir.oldArg = oldDir.arg;\n callHook$1(dir, 'update', vnode, oldVnode);\n if (dir.def && dir.def.componentUpdated) {\n dirsWithPostpatch.push(dir);\n }\n }\n }\n\n if (dirsWithInsert.length) {\n var callInsert = function () {\n for (var i = 0; i < dirsWithInsert.length; i++) {\n callHook$1(dirsWithInsert[i], 'inserted', vnode, oldVnode);\n }\n };\n if (isCreate) {\n mergeVNodeHook(vnode, 'insert', callInsert);\n } else {\n callInsert();\n }\n }\n\n if (dirsWithPostpatch.length) {\n mergeVNodeHook(vnode, 'postpatch', function () {\n for (var i = 0; i < dirsWithPostpatch.length; i++) {\n callHook$1(dirsWithPostpatch[i], 'componentUpdated', vnode, oldVnode);\n }\n });\n }\n\n if (!isCreate) {\n for (key in oldDirs) {\n if (!newDirs[key]) {\n // no longer present, unbind\n callHook$1(oldDirs[key], 'unbind', oldVnode, oldVnode, isDestroy);\n }\n }\n }\n}\n\nvar emptyModifiers = Object.create(null);\n\nfunction normalizeDirectives$1 (\n dirs,\n vm\n) {\n var res = Object.create(null);\n if (!dirs) {\n // $flow-disable-line\n return res\n }\n var i, dir;\n for (i = 0; i < dirs.length; i++) {\n dir = dirs[i];\n if (!dir.modifiers) {\n // $flow-disable-line\n dir.modifiers = emptyModifiers;\n }\n res[getRawDirName(dir)] = dir;\n dir.def = resolveAsset(vm.$options, 'directives', dir.name, true);\n }\n // $flow-disable-line\n return res\n}\n\nfunction getRawDirName (dir) {\n return dir.rawName || ((dir.name) + \".\" + (Object.keys(dir.modifiers || {}).join('.')))\n}\n\nfunction callHook$1 (dir, hook, vnode, oldVnode, isDestroy) {\n var fn = dir.def && dir.def[hook];\n if (fn) {\n try {\n fn(vnode.elm, dir, vnode, oldVnode, isDestroy);\n } catch (e) {\n handleError(e, vnode.context, (\"directive \" + (dir.name) + \" \" + hook + \" hook\"));\n }\n }\n}\n\nvar baseModules = [\n ref,\n directives\n];\n\n/* */\n\nfunction updateAttrs (oldVnode, vnode) {\n var opts = vnode.componentOptions;\n if (isDef(opts) && opts.Ctor.options.inheritAttrs === false) {\n return\n }\n if (isUndef(oldVnode.data.attrs) && isUndef(vnode.data.attrs)) {\n return\n }\n var key, cur, old;\n var elm = vnode.elm;\n var oldAttrs = oldVnode.data.attrs || {};\n var attrs = vnode.data.attrs || {};\n // clone observed objects, as the user probably wants to mutate it\n if (isDef(attrs.__ob__)) {\n attrs = vnode.data.attrs = extend({}, attrs);\n }\n\n for (key in attrs) {\n cur = attrs[key];\n old = oldAttrs[key];\n if (old !== cur) {\n setAttr(elm, key, cur);\n }\n }\n // #4391: in IE9, setting type can reset value for input[type=radio]\n // #6666: IE/Edge forces progress value down to 1 before setting a max\n /* istanbul ignore if */\n if ((isIE || isEdge) && attrs.value !== oldAttrs.value) {\n setAttr(elm, 'value', attrs.value);\n }\n for (key in oldAttrs) {\n if (isUndef(attrs[key])) {\n if (isXlink(key)) {\n elm.removeAttributeNS(xlinkNS, getXlinkProp(key));\n } else if (!isEnumeratedAttr(key)) {\n elm.removeAttribute(key);\n }\n }\n }\n}\n\nfunction setAttr (el, key, value) {\n if (el.tagName.indexOf('-') > -1) {\n baseSetAttr(el, key, value);\n } else if (isBooleanAttr(key)) {\n // set attribute for blank value\n // e.g. <option disabled>Select one</option>\n if (isFalsyAttrValue(value)) {\n el.removeAttribute(key);\n } else {\n // technically allowfullscreen is a boolean attribute for <iframe>,\n // but Flash expects a value of \"true\" when used on <embed> tag\n value = key === 'allowfullscreen' && el.tagName === 'EMBED'\n ? 'true'\n : key;\n el.setAttribute(key, value);\n }\n } else if (isEnumeratedAttr(key)) {\n el.setAttribute(key, convertEnumeratedValue(key, value));\n } else if (isXlink(key)) {\n if (isFalsyAttrValue(value)) {\n el.removeAttributeNS(xlinkNS, getXlinkProp(key));\n } else {\n el.setAttributeNS(xlinkNS, key, value);\n }\n } else {\n baseSetAttr(el, key, value);\n }\n}\n\nfunction baseSetAttr (el, key, value) {\n if (isFalsyAttrValue(value)) {\n el.removeAttribute(key);\n } else {\n // #7138: IE10 & 11 fires input event when setting placeholder on\n // <textarea>... block the first input event and remove the blocker\n // immediately.\n /* istanbul ignore if */\n if (\n isIE && !isIE9 &&\n el.tagName === 'TEXTAREA' &&\n key === 'placeholder' && value !== '' && !el.__ieph\n ) {\n var blocker = function (e) {\n e.stopImmediatePropagation();\n el.removeEventListener('input', blocker);\n };\n el.addEventListener('input', blocker);\n // $flow-disable-line\n el.__ieph = true; /* IE placeholder patched */\n }\n el.setAttribute(key, value);\n }\n}\n\nvar attrs = {\n create: updateAttrs,\n update: updateAttrs\n};\n\n/* */\n\nfunction updateClass (oldVnode, vnode) {\n var el = vnode.elm;\n var data = vnode.data;\n var oldData = oldVnode.data;\n if (\n isUndef(data.staticClass) &&\n isUndef(data.class) && (\n isUndef(oldData) || (\n isUndef(oldData.staticClass) &&\n isUndef(oldData.class)\n )\n )\n ) {\n return\n }\n\n var cls = genClassForVnode(vnode);\n\n // handle transition classes\n var transitionClass = el._transitionClasses;\n if (isDef(transitionClass)) {\n cls = concat(cls, stringifyClass(transitionClass));\n }\n\n // set the class\n if (cls !== el._prevClass) {\n el.setAttribute('class', cls);\n el._prevClass = cls;\n }\n}\n\nvar klass = {\n create: updateClass,\n update: updateClass\n};\n\n/* */\n\n/* */\n\n/* */\n\n/* */\n\n// in some cases, the event used has to be determined at runtime\n// so we used some reserved tokens during compile.\nvar RANGE_TOKEN = '__r';\nvar CHECKBOX_RADIO_TOKEN = '__c';\n\n/* */\n\n// normalize v-model event tokens that can only be determined at runtime.\n// it's important to place the event as the first in the array because\n// the whole point is ensuring the v-model callback gets called before\n// user-attached handlers.\nfunction normalizeEvents (on) {\n /* istanbul ignore if */\n if (isDef(on[RANGE_TOKEN])) {\n // IE input[type=range] only supports `change` event\n var event = isIE ? 'change' : 'input';\n on[event] = [].concat(on[RANGE_TOKEN], on[event] || []);\n delete on[RANGE_TOKEN];\n }\n // This was originally intended to fix #4521 but no longer necessary\n // after 2.5. Keeping it for backwards compat with generated code from < 2.4\n /* istanbul ignore if */\n if (isDef(on[CHECKBOX_RADIO_TOKEN])) {\n on.change = [].concat(on[CHECKBOX_RADIO_TOKEN], on.change || []);\n delete on[CHECKBOX_RADIO_TOKEN];\n }\n}\n\nvar target$1;\n\nfunction createOnceHandler$1 (event, handler, capture) {\n var _target = target$1; // save current target element in closure\n return function onceHandler () {\n var res = handler.apply(null, arguments);\n if (res !== null) {\n remove$2(event, onceHandler, capture, _target);\n }\n }\n}\n\n// #9446: Firefox <= 53 (in particular, ESR 52) has incorrect Event.timeStamp\n// implementation and does not fire microtasks in between event propagation, so\n// safe to exclude.\nvar useMicrotaskFix = isUsingMicroTask && !(isFF && Number(isFF[1]) <= 53);\n\nfunction add$1 (\n name,\n handler,\n capture,\n passive\n) {\n // async edge case #6566: inner click event triggers patch, event handler\n // attached to outer element during patch, and triggered again. This\n // happens because browsers fire microtask ticks between event propagation.\n // the solution is simple: we save the timestamp when a handler is attached,\n // and the handler would only fire if the event passed to it was fired\n // AFTER it was attached.\n if (useMicrotaskFix) {\n var attachedTimestamp = currentFlushTimestamp;\n var original = handler;\n handler = original._wrapper = function (e) {\n if (\n // no bubbling, should always fire.\n // this is just a safety net in case event.timeStamp is unreliable in\n // certain weird environments...\n e.target === e.currentTarget ||\n // event is fired after handler attachment\n e.timeStamp >= attachedTimestamp ||\n // bail for environments that have buggy event.timeStamp implementations\n // #9462 iOS 9 bug: event.timeStamp is 0 after history.pushState\n // #9681 QtWebEngine event.timeStamp is negative value\n e.timeStamp <= 0 ||\n // #9448 bail if event is fired in another document in a multi-page\n // electron/nw.js app, since event.timeStamp will be using a different\n // starting reference\n e.target.ownerDocument !== document\n ) {\n return original.apply(this, arguments)\n }\n };\n }\n target$1.addEventListener(\n name,\n handler,\n supportsPassive\n ? { capture: capture, passive: passive }\n : capture\n );\n}\n\nfunction remove$2 (\n name,\n handler,\n capture,\n _target\n) {\n (_target || target$1).removeEventListener(\n name,\n handler._wrapper || handler,\n capture\n );\n}\n\nfunction updateDOMListeners (oldVnode, vnode) {\n if (isUndef(oldVnode.data.on) && isUndef(vnode.data.on)) {\n return\n }\n var on = vnode.data.on || {};\n var oldOn = oldVnode.data.on || {};\n target$1 = vnode.elm;\n normalizeEvents(on);\n updateListeners(on, oldOn, add$1, remove$2, createOnceHandler$1, vnode.context);\n target$1 = undefined;\n}\n\nvar events = {\n create: updateDOMListeners,\n update: updateDOMListeners\n};\n\n/* */\n\nvar svgContainer;\n\nfunction updateDOMProps (oldVnode, vnode) {\n if (isUndef(oldVnode.data.domProps) && isUndef(vnode.data.domProps)) {\n return\n }\n var key, cur;\n var elm = vnode.elm;\n var oldProps = oldVnode.data.domProps || {};\n var props = vnode.data.domProps || {};\n // clone observed objects, as the user probably wants to mutate it\n if (isDef(props.__ob__)) {\n props = vnode.data.domProps = extend({}, props);\n }\n\n for (key in oldProps) {\n if (!(key in props)) {\n elm[key] = '';\n }\n }\n\n for (key in props) {\n cur = props[key];\n // ignore children if the node has textContent or innerHTML,\n // as these will throw away existing DOM nodes and cause removal errors\n // on subsequent patches (#3360)\n if (key === 'textContent' || key === 'innerHTML') {\n if (vnode.children) { vnode.children.length = 0; }\n if (cur === oldProps[key]) { continue }\n // #6601 work around Chrome version <= 55 bug where single textNode\n // replaced by innerHTML/textContent retains its parentNode property\n if (elm.childNodes.length === 1) {\n elm.removeChild(elm.childNodes[0]);\n }\n }\n\n if (key === 'value' && elm.tagName !== 'PROGRESS') {\n // store value as _value as well since\n // non-string values will be stringified\n elm._value = cur;\n // avoid resetting cursor position when value is the same\n var strCur = isUndef(cur) ? '' : String(cur);\n if (shouldUpdateValue(elm, strCur)) {\n elm.value = strCur;\n }\n } else if (key === 'innerHTML' && isSVG(elm.tagName) && isUndef(elm.innerHTML)) {\n // IE doesn't support innerHTML for SVG elements\n svgContainer = svgContainer || document.createElement('div');\n svgContainer.innerHTML = \"<svg>\" + cur + \"</svg>\";\n var svg = svgContainer.firstChild;\n while (elm.firstChild) {\n elm.removeChild(elm.firstChild);\n }\n while (svg.firstChild) {\n elm.appendChild(svg.firstChild);\n }\n } else if (\n // skip the update if old and new VDOM state is the same.\n // `value` is handled separately because the DOM value may be temporarily\n // out of sync with VDOM state due to focus, composition and modifiers.\n // This #4521 by skipping the unnecesarry `checked` update.\n cur !== oldProps[key]\n ) {\n // some property updates can throw\n // e.g. `value` on <progress> w/ non-finite value\n try {\n elm[key] = cur;\n } catch (e) {}\n }\n }\n}\n\n// check platforms/web/util/attrs.js acceptValue\n\n\nfunction shouldUpdateValue (elm, checkVal) {\n return (!elm.composing && (\n elm.tagName === 'OPTION' ||\n isNotInFocusAndDirty(elm, checkVal) ||\n isDirtyWithModifiers(elm, checkVal)\n ))\n}\n\nfunction isNotInFocusAndDirty (elm, checkVal) {\n // return true when textbox (.number and .trim) loses focus and its value is\n // not equal to the updated value\n var notInFocus = true;\n // #6157\n // work around IE bug when accessing document.activeElement in an iframe\n try { notInFocus = document.activeElement !== elm; } catch (e) {}\n return notInFocus && elm.value !== checkVal\n}\n\nfunction isDirtyWithModifiers (elm, newVal) {\n var value = elm.value;\n var modifiers = elm._vModifiers; // injected by v-model runtime\n if (isDef(modifiers)) {\n if (modifiers.number) {\n return toNumber(value) !== toNumber(newVal)\n }\n if (modifiers.trim) {\n return value.trim() !== newVal.trim()\n }\n }\n return value !== newVal\n}\n\nvar domProps = {\n create: updateDOMProps,\n update: updateDOMProps\n};\n\n/* */\n\nvar parseStyleText = cached(function (cssText) {\n var res = {};\n var listDelimiter = /;(?![^(]*\\))/g;\n var propertyDelimiter = /:(.+)/;\n cssText.split(listDelimiter).forEach(function (item) {\n if (item) {\n var tmp = item.split(propertyDelimiter);\n tmp.length > 1 && (res[tmp[0].trim()] = tmp[1].trim());\n }\n });\n return res\n});\n\n// merge static and dynamic style data on the same vnode\nfunction normalizeStyleData (data) {\n var style = normalizeStyleBinding(data.style);\n // static style is pre-processed into an object during compilation\n // and is always a fresh object, so it's safe to merge into it\n return data.staticStyle\n ? extend(data.staticStyle, style)\n : style\n}\n\n// normalize possible array / string values into Object\nfunction normalizeStyleBinding (bindingStyle) {\n if (Array.isArray(bindingStyle)) {\n return toObject(bindingStyle)\n }\n if (typeof bindingStyle === 'string') {\n return parseStyleText(bindingStyle)\n }\n return bindingStyle\n}\n\n/**\n * parent component style should be after child's\n * so that parent component's style could override it\n */\nfunction getStyle (vnode, checkChild) {\n var res = {};\n var styleData;\n\n if (checkChild) {\n var childNode = vnode;\n while (childNode.componentInstance) {\n childNode = childNode.componentInstance._vnode;\n if (\n childNode && childNode.data &&\n (styleData = normalizeStyleData(childNode.data))\n ) {\n extend(res, styleData);\n }\n }\n }\n\n if ((styleData = normalizeStyleData(vnode.data))) {\n extend(res, styleData);\n }\n\n var parentNode = vnode;\n while ((parentNode = parentNode.parent)) {\n if (parentNode.data && (styleData = normalizeStyleData(parentNode.data))) {\n extend(res, styleData);\n }\n }\n return res\n}\n\n/* */\n\nvar cssVarRE = /^--/;\nvar importantRE = /\\s*!important$/;\nvar setProp = function (el, name, val) {\n /* istanbul ignore if */\n if (cssVarRE.test(name)) {\n el.style.setProperty(name, val);\n } else if (importantRE.test(val)) {\n el.style.setProperty(hyphenate(name), val.replace(importantRE, ''), 'important');\n } else {\n var normalizedName = normalize(name);\n if (Array.isArray(val)) {\n // Support values array created by autoprefixer, e.g.\n // {display: [\"-webkit-box\", \"-ms-flexbox\", \"flex\"]}\n // Set them one by one, and the browser will only set those it can recognize\n for (var i = 0, len = val.length; i < len; i++) {\n el.style[normalizedName] = val[i];\n }\n } else {\n el.style[normalizedName] = val;\n }\n }\n};\n\nvar vendorNames = ['Webkit', 'Moz', 'ms'];\n\nvar emptyStyle;\nvar normalize = cached(function (prop) {\n emptyStyle = emptyStyle || document.createElement('div').style;\n prop = camelize(prop);\n if (prop !== 'filter' && (prop in emptyStyle)) {\n return prop\n }\n var capName = prop.charAt(0).toUpperCase() + prop.slice(1);\n for (var i = 0; i < vendorNames.length; i++) {\n var name = vendorNames[i] + capName;\n if (name in emptyStyle) {\n return name\n }\n }\n});\n\nfunction updateStyle (oldVnode, vnode) {\n var data = vnode.data;\n var oldData = oldVnode.data;\n\n if (isUndef(data.staticStyle) && isUndef(data.style) &&\n isUndef(oldData.staticStyle) && isUndef(oldData.style)\n ) {\n return\n }\n\n var cur, name;\n var el = vnode.elm;\n var oldStaticStyle = oldData.staticStyle;\n var oldStyleBinding = oldData.normalizedStyle || oldData.style || {};\n\n // if static style exists, stylebinding already merged into it when doing normalizeStyleData\n var oldStyle = oldStaticStyle || oldStyleBinding;\n\n var style = normalizeStyleBinding(vnode.data.style) || {};\n\n // store normalized style under a different key for next diff\n // make sure to clone it if it's reactive, since the user likely wants\n // to mutate it.\n vnode.data.normalizedStyle = isDef(style.__ob__)\n ? extend({}, style)\n : style;\n\n var newStyle = getStyle(vnode, true);\n\n for (name in oldStyle) {\n if (isUndef(newStyle[name])) {\n setProp(el, name, '');\n }\n }\n for (name in newStyle) {\n cur = newStyle[name];\n if (cur !== oldStyle[name]) {\n // ie9 setting to null has no effect, must use empty string\n setProp(el, name, cur == null ? '' : cur);\n }\n }\n}\n\nvar style = {\n create: updateStyle,\n update: updateStyle\n};\n\n/* */\n\nvar whitespaceRE = /\\s+/;\n\n/**\n * Add class with compatibility for SVG since classList is not supported on\n * SVG elements in IE\n */\nfunction addClass (el, cls) {\n /* istanbul ignore if */\n if (!cls || !(cls = cls.trim())) {\n return\n }\n\n /* istanbul ignore else */\n if (el.classList) {\n if (cls.indexOf(' ') > -1) {\n cls.split(whitespaceRE).forEach(function (c) { return el.classList.add(c); });\n } else {\n el.classList.add(cls);\n }\n } else {\n var cur = \" \" + (el.getAttribute('class') || '') + \" \";\n if (cur.indexOf(' ' + cls + ' ') < 0) {\n el.setAttribute('class', (cur + cls).trim());\n }\n }\n}\n\n/**\n * Remove class with compatibility for SVG since classList is not supported on\n * SVG elements in IE\n */\nfunction removeClass (el, cls) {\n /* istanbul ignore if */\n if (!cls || !(cls = cls.trim())) {\n return\n }\n\n /* istanbul ignore else */\n if (el.classList) {\n if (cls.indexOf(' ') > -1) {\n cls.split(whitespaceRE).forEach(function (c) { return el.classList.remove(c); });\n } else {\n el.classList.remove(cls);\n }\n if (!el.classList.length) {\n el.removeAttribute('class');\n }\n } else {\n var cur = \" \" + (el.getAttribute('class') || '') + \" \";\n var tar = ' ' + cls + ' ';\n while (cur.indexOf(tar) >= 0) {\n cur = cur.replace(tar, ' ');\n }\n cur = cur.trim();\n if (cur) {\n el.setAttribute('class', cur);\n } else {\n el.removeAttribute('class');\n }\n }\n}\n\n/* */\n\nfunction resolveTransition (def$$1) {\n if (!def$$1) {\n return\n }\n /* istanbul ignore else */\n if (typeof def$$1 === 'object') {\n var res = {};\n if (def$$1.css !== false) {\n extend(res, autoCssTransition(def$$1.name || 'v'));\n }\n extend(res, def$$1);\n return res\n } else if (typeof def$$1 === 'string') {\n return autoCssTransition(def$$1)\n }\n}\n\nvar autoCssTransition = cached(function (name) {\n return {\n enterClass: (name + \"-enter\"),\n enterToClass: (name + \"-enter-to\"),\n enterActiveClass: (name + \"-enter-active\"),\n leaveClass: (name + \"-leave\"),\n leaveToClass: (name + \"-leave-to\"),\n leaveActiveClass: (name + \"-leave-active\")\n }\n});\n\nvar hasTransition = inBrowser && !isIE9;\nvar TRANSITION = 'transition';\nvar ANIMATION = 'animation';\n\n// Transition property/event sniffing\nvar transitionProp = 'transition';\nvar transitionEndEvent = 'transitionend';\nvar animationProp = 'animation';\nvar animationEndEvent = 'animationend';\nif (hasTransition) {\n /* istanbul ignore if */\n if (window.ontransitionend === undefined &&\n window.onwebkittransitionend !== undefined\n ) {\n transitionProp = 'WebkitTransition';\n transitionEndEvent = 'webkitTransitionEnd';\n }\n if (window.onanimationend === undefined &&\n window.onwebkitanimationend !== undefined\n ) {\n animationProp = 'WebkitAnimation';\n animationEndEvent = 'webkitAnimationEnd';\n }\n}\n\n// binding to window is necessary to make hot reload work in IE in strict mode\nvar raf = inBrowser\n ? window.requestAnimationFrame\n ? window.requestAnimationFrame.bind(window)\n : setTimeout\n : /* istanbul ignore next */ function (fn) { return fn(); };\n\nfunction nextFrame (fn) {\n raf(function () {\n raf(fn);\n });\n}\n\nfunction addTransitionClass (el, cls) {\n var transitionClasses = el._transitionClasses || (el._transitionClasses = []);\n if (transitionClasses.indexOf(cls) < 0) {\n transitionClasses.push(cls);\n addClass(el, cls);\n }\n}\n\nfunction removeTransitionClass (el, cls) {\n if (el._transitionClasses) {\n remove(el._transitionClasses, cls);\n }\n removeClass(el, cls);\n}\n\nfunction whenTransitionEnds (\n el,\n expectedType,\n cb\n) {\n var ref = getTransitionInfo(el, expectedType);\n var type = ref.type;\n var timeout = ref.timeout;\n var propCount = ref.propCount;\n if (!type) { return cb() }\n var event = type === TRANSITION ? transitionEndEvent : animationEndEvent;\n var ended = 0;\n var end = function () {\n el.removeEventListener(event, onEnd);\n cb();\n };\n var onEnd = function (e) {\n if (e.target === el) {\n if (++ended >= propCount) {\n end();\n }\n }\n };\n setTimeout(function () {\n if (ended < propCount) {\n end();\n }\n }, timeout + 1);\n el.addEventListener(event, onEnd);\n}\n\nvar transformRE = /\\b(transform|all)(,|$)/;\n\nfunction getTransitionInfo (el, expectedType) {\n var styles = window.getComputedStyle(el);\n // JSDOM may return undefined for transition properties\n var transitionDelays = (styles[transitionProp + 'Delay'] || '').split(', ');\n var transitionDurations = (styles[transitionProp + 'Duration'] || '').split(', ');\n var transitionTimeout = getTimeout(transitionDelays, transitionDurations);\n var animationDelays = (styles[animationProp + 'Delay'] || '').split(', ');\n var animationDurations = (styles[animationProp + 'Duration'] || '').split(', ');\n var animationTimeout = getTimeout(animationDelays, animationDurations);\n\n var type;\n var timeout = 0;\n var propCount = 0;\n /* istanbul ignore if */\n if (expectedType === TRANSITION) {\n if (transitionTimeout > 0) {\n type = TRANSITION;\n timeout = transitionTimeout;\n propCount = transitionDurations.length;\n }\n } else if (expectedType === ANIMATION) {\n if (animationTimeout > 0) {\n type = ANIMATION;\n timeout = animationTimeout;\n propCount = animationDurations.length;\n }\n } else {\n timeout = Math.max(transitionTimeout, animationTimeout);\n type = timeout > 0\n ? transitionTimeout > animationTimeout\n ? TRANSITION\n : ANIMATION\n : null;\n propCount = type\n ? type === TRANSITION\n ? transitionDurations.length\n : animationDurations.length\n : 0;\n }\n var hasTransform =\n type === TRANSITION &&\n transformRE.test(styles[transitionProp + 'Property']);\n return {\n type: type,\n timeout: timeout,\n propCount: propCount,\n hasTransform: hasTransform\n }\n}\n\nfunction getTimeout (delays, durations) {\n /* istanbul ignore next */\n while (delays.length < durations.length) {\n delays = delays.concat(delays);\n }\n\n return Math.max.apply(null, durations.map(function (d, i) {\n return toMs(d) + toMs(delays[i])\n }))\n}\n\n// Old versions of Chromium (below 61.0.3163.100) formats floating pointer numbers\n// in a locale-dependent way, using a comma instead of a dot.\n// If comma is not replaced with a dot, the input will be rounded down (i.e. acting\n// as a floor function) causing unexpected behaviors\nfunction toMs (s) {\n return Number(s.slice(0, -1).replace(',', '.')) * 1000\n}\n\n/* */\n\nfunction enter (vnode, toggleDisplay) {\n var el = vnode.elm;\n\n // call leave callback now\n if (isDef(el._leaveCb)) {\n el._leaveCb.cancelled = true;\n el._leaveCb();\n }\n\n var data = resolveTransition(vnode.data.transition);\n if (isUndef(data)) {\n return\n }\n\n /* istanbul ignore if */\n if (isDef(el._enterCb) || el.nodeType !== 1) {\n return\n }\n\n var css = data.css;\n var type = data.type;\n var enterClass = data.enterClass;\n var enterToClass = data.enterToClass;\n var enterActiveClass = data.enterActiveClass;\n var appearClass = data.appearClass;\n var appearToClass = data.appearToClass;\n var appearActiveClass = data.appearActiveClass;\n var beforeEnter = data.beforeEnter;\n var enter = data.enter;\n var afterEnter = data.afterEnter;\n var enterCancelled = data.enterCancelled;\n var beforeAppear = data.beforeAppear;\n var appear = data.appear;\n var afterAppear = data.afterAppear;\n var appearCancelled = data.appearCancelled;\n var duration = data.duration;\n\n // activeInstance will always be the <transition> component managing this\n // transition. One edge case to check is when the <transition> is placed\n // as the root node of a child component. In that case we need to check\n // <transition>'s parent for appear check.\n var context = activeInstance;\n var transitionNode = activeInstance.$vnode;\n while (transitionNode && transitionNode.parent) {\n context = transitionNode.context;\n transitionNode = transitionNode.parent;\n }\n\n var isAppear = !context._isMounted || !vnode.isRootInsert;\n\n if (isAppear && !appear && appear !== '') {\n return\n }\n\n var startClass = isAppear && appearClass\n ? appearClass\n : enterClass;\n var activeClass = isAppear && appearActiveClass\n ? appearActiveClass\n : enterActiveClass;\n var toClass = isAppear && appearToClass\n ? appearToClass\n : enterToClass;\n\n var beforeEnterHook = isAppear\n ? (beforeAppear || beforeEnter)\n : beforeEnter;\n var enterHook = isAppear\n ? (typeof appear === 'function' ? appear : enter)\n : enter;\n var afterEnterHook = isAppear\n ? (afterAppear || afterEnter)\n : afterEnter;\n var enterCancelledHook = isAppear\n ? (appearCancelled || enterCancelled)\n : enterCancelled;\n\n var explicitEnterDuration = toNumber(\n isObject(duration)\n ? duration.enter\n : duration\n );\n\n if (process.env.NODE_ENV !== 'production' && explicitEnterDuration != null) {\n checkDuration(explicitEnterDuration, 'enter', vnode);\n }\n\n var expectsCSS = css !== false && !isIE9;\n var userWantsControl = getHookArgumentsLength(enterHook);\n\n var cb = el._enterCb = once(function () {\n if (expectsCSS) {\n removeTransitionClass(el, toClass);\n removeTransitionClass(el, activeClass);\n }\n if (cb.cancelled) {\n if (expectsCSS) {\n removeTransitionClass(el, startClass);\n }\n enterCancelledHook && enterCancelledHook(el);\n } else {\n afterEnterHook && afterEnterHook(el);\n }\n el._enterCb = null;\n });\n\n if (!vnode.data.show) {\n // remove pending leave element on enter by injecting an insert hook\n mergeVNodeHook(vnode, 'insert', function () {\n var parent = el.parentNode;\n var pendingNode = parent && parent._pending && parent._pending[vnode.key];\n if (pendingNode &&\n pendingNode.tag === vnode.tag &&\n pendingNode.elm._leaveCb\n ) {\n pendingNode.elm._leaveCb();\n }\n enterHook && enterHook(el, cb);\n });\n }\n\n // start enter transition\n beforeEnterHook && beforeEnterHook(el);\n if (expectsCSS) {\n addTransitionClass(el, startClass);\n addTransitionClass(el, activeClass);\n nextFrame(function () {\n removeTransitionClass(el, startClass);\n if (!cb.cancelled) {\n addTransitionClass(el, toClass);\n if (!userWantsControl) {\n if (isValidDuration(explicitEnterDuration)) {\n setTimeout(cb, explicitEnterDuration);\n } else {\n whenTransitionEnds(el, type, cb);\n }\n }\n }\n });\n }\n\n if (vnode.data.show) {\n toggleDisplay && toggleDisplay();\n enterHook && enterHook(el, cb);\n }\n\n if (!expectsCSS && !userWantsControl) {\n cb();\n }\n}\n\nfunction leave (vnode, rm) {\n var el = vnode.elm;\n\n // call enter callback now\n if (isDef(el._enterCb)) {\n el._enterCb.cancelled = true;\n el._enterCb();\n }\n\n var data = resolveTransition(vnode.data.transition);\n if (isUndef(data) || el.nodeType !== 1) {\n return rm()\n }\n\n /* istanbul ignore if */\n if (isDef(el._leaveCb)) {\n return\n }\n\n var css = data.css;\n var type = data.type;\n var leaveClass = data.leaveClass;\n var leaveToClass = data.leaveToClass;\n var leaveActiveClass = data.leaveActiveClass;\n var beforeLeave = data.beforeLeave;\n var leave = data.leave;\n var afterLeave = data.afterLeave;\n var leaveCancelled = data.leaveCancelled;\n var delayLeave = data.delayLeave;\n var duration = data.duration;\n\n var expectsCSS = css !== false && !isIE9;\n var userWantsControl = getHookArgumentsLength(leave);\n\n var explicitLeaveDuration = toNumber(\n isObject(duration)\n ? duration.leave\n : duration\n );\n\n if (process.env.NODE_ENV !== 'production' && isDef(explicitLeaveDuration)) {\n checkDuration(explicitLeaveDuration, 'leave', vnode);\n }\n\n var cb = el._leaveCb = once(function () {\n if (el.parentNode && el.parentNode._pending) {\n el.parentNode._pending[vnode.key] = null;\n }\n if (expectsCSS) {\n removeTransitionClass(el, leaveToClass);\n removeTransitionClass(el, leaveActiveClass);\n }\n if (cb.cancelled) {\n if (expectsCSS) {\n removeTransitionClass(el, leaveClass);\n }\n leaveCancelled && leaveCancelled(el);\n } else {\n rm();\n afterLeave && afterLeave(el);\n }\n el._leaveCb = null;\n });\n\n if (delayLeave) {\n delayLeave(performLeave);\n } else {\n performLeave();\n }\n\n function performLeave () {\n // the delayed leave may have already been cancelled\n if (cb.cancelled) {\n return\n }\n // record leaving element\n if (!vnode.data.show && el.parentNode) {\n (el.parentNode._pending || (el.parentNode._pending = {}))[(vnode.key)] = vnode;\n }\n beforeLeave && beforeLeave(el);\n if (expectsCSS) {\n addTransitionClass(el, leaveClass);\n addTransitionClass(el, leaveActiveClass);\n nextFrame(function () {\n removeTransitionClass(el, leaveClass);\n if (!cb.cancelled) {\n addTransitionClass(el, leaveToClass);\n if (!userWantsControl) {\n if (isValidDuration(explicitLeaveDuration)) {\n setTimeout(cb, explicitLeaveDuration);\n } else {\n whenTransitionEnds(el, type, cb);\n }\n }\n }\n });\n }\n leave && leave(el, cb);\n if (!expectsCSS && !userWantsControl) {\n cb();\n }\n }\n}\n\n// only used in dev mode\nfunction checkDuration (val, name, vnode) {\n if (typeof val !== 'number') {\n warn(\n \"<transition> explicit \" + name + \" duration is not a valid number - \" +\n \"got \" + (JSON.stringify(val)) + \".\",\n vnode.context\n );\n } else if (isNaN(val)) {\n warn(\n \"<transition> explicit \" + name + \" duration is NaN - \" +\n 'the duration expression might be incorrect.',\n vnode.context\n );\n }\n}\n\nfunction isValidDuration (val) {\n return typeof val === 'number' && !isNaN(val)\n}\n\n/**\n * Normalize a transition hook's argument length. The hook may be:\n * - a merged hook (invoker) with the original in .fns\n * - a wrapped component method (check ._length)\n * - a plain function (.length)\n */\nfunction getHookArgumentsLength (fn) {\n if (isUndef(fn)) {\n return false\n }\n var invokerFns = fn.fns;\n if (isDef(invokerFns)) {\n // invoker\n return getHookArgumentsLength(\n Array.isArray(invokerFns)\n ? invokerFns[0]\n : invokerFns\n )\n } else {\n return (fn._length || fn.length) > 1\n }\n}\n\nfunction _enter (_, vnode) {\n if (vnode.data.show !== true) {\n enter(vnode);\n }\n}\n\nvar transition = inBrowser ? {\n create: _enter,\n activate: _enter,\n remove: function remove$$1 (vnode, rm) {\n /* istanbul ignore else */\n if (vnode.data.show !== true) {\n leave(vnode, rm);\n } else {\n rm();\n }\n }\n} : {};\n\nvar platformModules = [\n attrs,\n klass,\n events,\n domProps,\n style,\n transition\n];\n\n/* */\n\n// the directive module should be applied last, after all\n// built-in modules have been applied.\nvar modules = platformModules.concat(baseModules);\n\nvar patch = createPatchFunction({ nodeOps: nodeOps, modules: modules });\n\n/**\n * Not type checking this file because flow doesn't like attaching\n * properties to Elements.\n */\n\n/* istanbul ignore if */\nif (isIE9) {\n // http://www.matts411.com/post/internet-explorer-9-oninput/\n document.addEventListener('selectionchange', function () {\n var el = document.activeElement;\n if (el && el.vmodel) {\n trigger(el, 'input');\n }\n });\n}\n\nvar directive = {\n inserted: function inserted (el, binding, vnode, oldVnode) {\n if (vnode.tag === 'select') {\n // #6903\n if (oldVnode.elm && !oldVnode.elm._vOptions) {\n mergeVNodeHook(vnode, 'postpatch', function () {\n directive.componentUpdated(el, binding, vnode);\n });\n } else {\n setSelected(el, binding, vnode.context);\n }\n el._vOptions = [].map.call(el.options, getValue);\n } else if (vnode.tag === 'textarea' || isTextInputType(el.type)) {\n el._vModifiers = binding.modifiers;\n if (!binding.modifiers.lazy) {\n el.addEventListener('compositionstart', onCompositionStart);\n el.addEventListener('compositionend', onCompositionEnd);\n // Safari < 10.2 & UIWebView doesn't fire compositionend when\n // switching focus before confirming composition choice\n // this also fixes the issue where some browsers e.g. iOS Chrome\n // fires \"change\" instead of \"input\" on autocomplete.\n el.addEventListener('change', onCompositionEnd);\n /* istanbul ignore if */\n if (isIE9) {\n el.vmodel = true;\n }\n }\n }\n },\n\n componentUpdated: function componentUpdated (el, binding, vnode) {\n if (vnode.tag === 'select') {\n setSelected(el, binding, vnode.context);\n // in case the options rendered by v-for have changed,\n // it's possible that the value is out-of-sync with the rendered options.\n // detect such cases and filter out values that no longer has a matching\n // option in the DOM.\n var prevOptions = el._vOptions;\n var curOptions = el._vOptions = [].map.call(el.options, getValue);\n if (curOptions.some(function (o, i) { return !looseEqual(o, prevOptions[i]); })) {\n // trigger change event if\n // no matching option found for at least one value\n var needReset = el.multiple\n ? binding.value.some(function (v) { return hasNoMatchingOption(v, curOptions); })\n : binding.value !== binding.oldValue && hasNoMatchingOption(binding.value, curOptions);\n if (needReset) {\n trigger(el, 'change');\n }\n }\n }\n }\n};\n\nfunction setSelected (el, binding, vm) {\n actuallySetSelected(el, binding, vm);\n /* istanbul ignore if */\n if (isIE || isEdge) {\n setTimeout(function () {\n actuallySetSelected(el, binding, vm);\n }, 0);\n }\n}\n\nfunction actuallySetSelected (el, binding, vm) {\n var value = binding.value;\n var isMultiple = el.multiple;\n if (isMultiple && !Array.isArray(value)) {\n process.env.NODE_ENV !== 'production' && warn(\n \"<select multiple v-model=\\\"\" + (binding.expression) + \"\\\"> \" +\n \"expects an Array value for its binding, but got \" + (Object.prototype.toString.call(value).slice(8, -1)),\n vm\n );\n return\n }\n var selected, option;\n for (var i = 0, l = el.options.length; i < l; i++) {\n option = el.options[i];\n if (isMultiple) {\n selected = looseIndexOf(value, getValue(option)) > -1;\n if (option.selected !== selected) {\n option.selected = selected;\n }\n } else {\n if (looseEqual(getValue(option), value)) {\n if (el.selectedIndex !== i) {\n el.selectedIndex = i;\n }\n return\n }\n }\n }\n if (!isMultiple) {\n el.selectedIndex = -1;\n }\n}\n\nfunction hasNoMatchingOption (value, options) {\n return options.every(function (o) { return !looseEqual(o, value); })\n}\n\nfunction getValue (option) {\n return '_value' in option\n ? option._value\n : option.value\n}\n\nfunction onCompositionStart (e) {\n e.target.composing = true;\n}\n\nfunction onCompositionEnd (e) {\n // prevent triggering an input event for no reason\n if (!e.target.composing) { return }\n e.target.composing = false;\n trigger(e.target, 'input');\n}\n\nfunction trigger (el, type) {\n var e = document.createEvent('HTMLEvents');\n e.initEvent(type, true, true);\n el.dispatchEvent(e);\n}\n\n/* */\n\n// recursively search for possible transition defined inside the component root\nfunction locateNode (vnode) {\n return vnode.componentInstance && (!vnode.data || !vnode.data.transition)\n ? locateNode(vnode.componentInstance._vnode)\n : vnode\n}\n\nvar show = {\n bind: function bind (el, ref, vnode) {\n var value = ref.value;\n\n vnode = locateNode(vnode);\n var transition$$1 = vnode.data && vnode.data.transition;\n var originalDisplay = el.__vOriginalDisplay =\n el.style.display === 'none' ? '' : el.style.display;\n if (value && transition$$1) {\n vnode.data.show = true;\n enter(vnode, function () {\n el.style.display = originalDisplay;\n });\n } else {\n el.style.display = value ? originalDisplay : 'none';\n }\n },\n\n update: function update (el, ref, vnode) {\n var value = ref.value;\n var oldValue = ref.oldValue;\n\n /* istanbul ignore if */\n if (!value === !oldValue) { return }\n vnode = locateNode(vnode);\n var transition$$1 = vnode.data && vnode.data.transition;\n if (transition$$1) {\n vnode.data.show = true;\n if (value) {\n enter(vnode, function () {\n el.style.display = el.__vOriginalDisplay;\n });\n } else {\n leave(vnode, function () {\n el.style.display = 'none';\n });\n }\n } else {\n el.style.display = value ? el.__vOriginalDisplay : 'none';\n }\n },\n\n unbind: function unbind (\n el,\n binding,\n vnode,\n oldVnode,\n isDestroy\n ) {\n if (!isDestroy) {\n el.style.display = el.__vOriginalDisplay;\n }\n }\n};\n\nvar platformDirectives = {\n model: directive,\n show: show\n};\n\n/* */\n\nvar transitionProps = {\n name: String,\n appear: Boolean,\n css: Boolean,\n mode: String,\n type: String,\n enterClass: String,\n leaveClass: String,\n enterToClass: String,\n leaveToClass: String,\n enterActiveClass: String,\n leaveActiveClass: String,\n appearClass: String,\n appearActiveClass: String,\n appearToClass: String,\n duration: [Number, String, Object]\n};\n\n// in case the child is also an abstract component, e.g. <keep-alive>\n// we want to recursively retrieve the real component to be rendered\nfunction getRealChild (vnode) {\n var compOptions = vnode && vnode.componentOptions;\n if (compOptions && compOptions.Ctor.options.abstract) {\n return getRealChild(getFirstComponentChild(compOptions.children))\n } else {\n return vnode\n }\n}\n\nfunction extractTransitionData (comp) {\n var data = {};\n var options = comp.$options;\n // props\n for (var key in options.propsData) {\n data[key] = comp[key];\n }\n // events.\n // extract listeners and pass them directly to the transition methods\n var listeners = options._parentListeners;\n for (var key$1 in listeners) {\n data[camelize(key$1)] = listeners[key$1];\n }\n return data\n}\n\nfunction placeholder (h, rawChild) {\n if (/\\d-keep-alive$/.test(rawChild.tag)) {\n return h('keep-alive', {\n props: rawChild.componentOptions.propsData\n })\n }\n}\n\nfunction hasParentTransition (vnode) {\n while ((vnode = vnode.parent)) {\n if (vnode.data.transition) {\n return true\n }\n }\n}\n\nfunction isSameChild (child, oldChild) {\n return oldChild.key === child.key && oldChild.tag === child.tag\n}\n\nvar isNotTextNode = function (c) { return c.tag || isAsyncPlaceholder(c); };\n\nvar isVShowDirective = function (d) { return d.name === 'show'; };\n\nvar Transition = {\n name: 'transition',\n props: transitionProps,\n abstract: true,\n\n render: function render (h) {\n var this$1 = this;\n\n var children = this.$slots.default;\n if (!children) {\n return\n }\n\n // filter out text nodes (possible whitespaces)\n children = children.filter(isNotTextNode);\n /* istanbul ignore if */\n if (!children.length) {\n return\n }\n\n // warn multiple elements\n if (process.env.NODE_ENV !== 'production' && children.length > 1) {\n warn(\n '<transition> can only be used on a single element. Use ' +\n '<transition-group> for lists.',\n this.$parent\n );\n }\n\n var mode = this.mode;\n\n // warn invalid mode\n if (process.env.NODE_ENV !== 'production' &&\n mode && mode !== 'in-out' && mode !== 'out-in'\n ) {\n warn(\n 'invalid <transition> mode: ' + mode,\n this.$parent\n );\n }\n\n var rawChild = children[0];\n\n // if this is a component root node and the component's\n // parent container node also has transition, skip.\n if (hasParentTransition(this.$vnode)) {\n return rawChild\n }\n\n // apply transition data to child\n // use getRealChild() to ignore abstract components e.g. keep-alive\n var child = getRealChild(rawChild);\n /* istanbul ignore if */\n if (!child) {\n return rawChild\n }\n\n if (this._leaving) {\n return placeholder(h, rawChild)\n }\n\n // ensure a key that is unique to the vnode type and to this transition\n // component instance. This key will be used to remove pending leaving nodes\n // during entering.\n var id = \"__transition-\" + (this._uid) + \"-\";\n child.key = child.key == null\n ? child.isComment\n ? id + 'comment'\n : id + child.tag\n : isPrimitive(child.key)\n ? (String(child.key).indexOf(id) === 0 ? child.key : id + child.key)\n : child.key;\n\n var data = (child.data || (child.data = {})).transition = extractTransitionData(this);\n var oldRawChild = this._vnode;\n var oldChild = getRealChild(oldRawChild);\n\n // mark v-show\n // so that the transition module can hand over the control to the directive\n if (child.data.directives && child.data.directives.some(isVShowDirective)) {\n child.data.show = true;\n }\n\n if (\n oldChild &&\n oldChild.data &&\n !isSameChild(child, oldChild) &&\n !isAsyncPlaceholder(oldChild) &&\n // #6687 component root is a comment node\n !(oldChild.componentInstance && oldChild.componentInstance._vnode.isComment)\n ) {\n // replace old child transition data with fresh one\n // important for dynamic transitions!\n var oldData = oldChild.data.transition = extend({}, data);\n // handle transition mode\n if (mode === 'out-in') {\n // return placeholder node and queue update when leave finishes\n this._leaving = true;\n mergeVNodeHook(oldData, 'afterLeave', function () {\n this$1._leaving = false;\n this$1.$forceUpdate();\n });\n return placeholder(h, rawChild)\n } else if (mode === 'in-out') {\n if (isAsyncPlaceholder(child)) {\n return oldRawChild\n }\n var delayedLeave;\n var performLeave = function () { delayedLeave(); };\n mergeVNodeHook(data, 'afterEnter', performLeave);\n mergeVNodeHook(data, 'enterCancelled', performLeave);\n mergeVNodeHook(oldData, 'delayLeave', function (leave) { delayedLeave = leave; });\n }\n }\n\n return rawChild\n }\n};\n\n/* */\n\nvar props = extend({\n tag: String,\n moveClass: String\n}, transitionProps);\n\ndelete props.mode;\n\nvar TransitionGroup = {\n props: props,\n\n beforeMount: function beforeMount () {\n var this$1 = this;\n\n var update = this._update;\n this._update = function (vnode, hydrating) {\n var restoreActiveInstance = setActiveInstance(this$1);\n // force removing pass\n this$1.__patch__(\n this$1._vnode,\n this$1.kept,\n false, // hydrating\n true // removeOnly (!important, avoids unnecessary moves)\n );\n this$1._vnode = this$1.kept;\n restoreActiveInstance();\n update.call(this$1, vnode, hydrating);\n };\n },\n\n render: function render (h) {\n var tag = this.tag || this.$vnode.data.tag || 'span';\n var map = Object.create(null);\n var prevChildren = this.prevChildren = this.children;\n var rawChildren = this.$slots.default || [];\n var children = this.children = [];\n var transitionData = extractTransitionData(this);\n\n for (var i = 0; i < rawChildren.length; i++) {\n var c = rawChildren[i];\n if (c.tag) {\n if (c.key != null && String(c.key).indexOf('__vlist') !== 0) {\n children.push(c);\n map[c.key] = c\n ;(c.data || (c.data = {})).transition = transitionData;\n } else if (process.env.NODE_ENV !== 'production') {\n var opts = c.componentOptions;\n var name = opts ? (opts.Ctor.options.name || opts.tag || '') : c.tag;\n warn((\"<transition-group> children must be keyed: <\" + name + \">\"));\n }\n }\n }\n\n if (prevChildren) {\n var kept = [];\n var removed = [];\n for (var i$1 = 0; i$1 < prevChildren.length; i$1++) {\n var c$1 = prevChildren[i$1];\n c$1.data.transition = transitionData;\n c$1.data.pos = c$1.elm.getBoundingClientRect();\n if (map[c$1.key]) {\n kept.push(c$1);\n } else {\n removed.push(c$1);\n }\n }\n this.kept = h(tag, null, kept);\n this.removed = removed;\n }\n\n return h(tag, null, children)\n },\n\n updated: function updated () {\n var children = this.prevChildren;\n var moveClass = this.moveClass || ((this.name || 'v') + '-move');\n if (!children.length || !this.hasMove(children[0].elm, moveClass)) {\n return\n }\n\n // we divide the work into three loops to avoid mixing DOM reads and writes\n // in each iteration - which helps prevent layout thrashing.\n children.forEach(callPendingCbs);\n children.forEach(recordPosition);\n children.forEach(applyTranslation);\n\n // force reflow to put everything in position\n // assign to this to avoid being removed in tree-shaking\n // $flow-disable-line\n this._reflow = document.body.offsetHeight;\n\n children.forEach(function (c) {\n if (c.data.moved) {\n var el = c.elm;\n var s = el.style;\n addTransitionClass(el, moveClass);\n s.transform = s.WebkitTransform = s.transitionDuration = '';\n el.addEventListener(transitionEndEvent, el._moveCb = function cb (e) {\n if (e && e.target !== el) {\n return\n }\n if (!e || /transform$/.test(e.propertyName)) {\n el.removeEventListener(transitionEndEvent, cb);\n el._moveCb = null;\n removeTransitionClass(el, moveClass);\n }\n });\n }\n });\n },\n\n methods: {\n hasMove: function hasMove (el, moveClass) {\n /* istanbul ignore if */\n if (!hasTransition) {\n return false\n }\n /* istanbul ignore if */\n if (this._hasMove) {\n return this._hasMove\n }\n // Detect whether an element with the move class applied has\n // CSS transitions. Since the element may be inside an entering\n // transition at this very moment, we make a clone of it and remove\n // all other transition classes applied to ensure only the move class\n // is applied.\n var clone = el.cloneNode();\n if (el._transitionClasses) {\n el._transitionClasses.forEach(function (cls) { removeClass(clone, cls); });\n }\n addClass(clone, moveClass);\n clone.style.display = 'none';\n this.$el.appendChild(clone);\n var info = getTransitionInfo(clone);\n this.$el.removeChild(clone);\n return (this._hasMove = info.hasTransform)\n }\n }\n};\n\nfunction callPendingCbs (c) {\n /* istanbul ignore if */\n if (c.elm._moveCb) {\n c.elm._moveCb();\n }\n /* istanbul ignore if */\n if (c.elm._enterCb) {\n c.elm._enterCb();\n }\n}\n\nfunction recordPosition (c) {\n c.data.newPos = c.elm.getBoundingClientRect();\n}\n\nfunction applyTranslation (c) {\n var oldPos = c.data.pos;\n var newPos = c.data.newPos;\n var dx = oldPos.left - newPos.left;\n var dy = oldPos.top - newPos.top;\n if (dx || dy) {\n c.data.moved = true;\n var s = c.elm.style;\n s.transform = s.WebkitTransform = \"translate(\" + dx + \"px,\" + dy + \"px)\";\n s.transitionDuration = '0s';\n }\n}\n\nvar platformComponents = {\n Transition: Transition,\n TransitionGroup: TransitionGroup\n};\n\n/* */\n\n// install platform specific utils\nVue.config.mustUseProp = mustUseProp;\nVue.config.isReservedTag = isReservedTag;\nVue.config.isReservedAttr = isReservedAttr;\nVue.config.getTagNamespace = getTagNamespace;\nVue.config.isUnknownElement = isUnknownElement;\n\n// install platform runtime directives & components\nextend(Vue.options.directives, platformDirectives);\nextend(Vue.options.components, platformComponents);\n\n// install platform patch function\nVue.prototype.__patch__ = inBrowser ? patch : noop;\n\n// public mount method\nVue.prototype.$mount = function (\n el,\n hydrating\n) {\n el = el && inBrowser ? query(el) : undefined;\n return mountComponent(this, el, hydrating)\n};\n\n// devtools global hook\n/* istanbul ignore next */\nif (inBrowser) {\n setTimeout(function () {\n if (config.devtools) {\n if (devtools) {\n devtools.emit('init', Vue);\n } else if (\n process.env.NODE_ENV !== 'production' &&\n process.env.NODE_ENV !== 'test'\n ) {\n console[console.info ? 'info' : 'log'](\n 'Download the Vue Devtools extension for a better development experience:\\n' +\n 'https://github.com/vuejs/vue-devtools'\n );\n }\n }\n if (process.env.NODE_ENV !== 'production' &&\n process.env.NODE_ENV !== 'test' &&\n config.productionTip !== false &&\n typeof console !== 'undefined'\n ) {\n console[console.info ? 'info' : 'log'](\n \"You are running Vue in development mode.\\n\" +\n \"Make sure to turn on production mode when deploying for production.\\n\" +\n \"See more tips at https://vuejs.org/guide/deployment.html\"\n );\n }\n }, 0);\n}\n\n/* */\n\nexport default Vue;\n","var hasOwnProperty = {}.hasOwnProperty;\n\nmodule.exports = function (it, key) {\n return hasOwnProperty.call(it, key);\n};\n","'use strict';\nvar $ = require('../internals/export');\nvar fails = require('../internals/fails');\nvar isArray = require('../internals/is-array');\nvar isObject = require('../internals/is-object');\nvar toObject = require('../internals/to-object');\nvar toLength = require('../internals/to-length');\nvar createProperty = require('../internals/create-property');\nvar arraySpeciesCreate = require('../internals/array-species-create');\nvar arrayMethodHasSpeciesSupport = require('../internals/array-method-has-species-support');\nvar wellKnownSymbol = require('../internals/well-known-symbol');\nvar V8_VERSION = require('../internals/v8-version');\n\nvar IS_CONCAT_SPREADABLE = wellKnownSymbol('isConcatSpreadable');\nvar MAX_SAFE_INTEGER = 0x1FFFFFFFFFFFFF;\nvar MAXIMUM_ALLOWED_INDEX_EXCEEDED = 'Maximum allowed index exceeded';\n\n// We can't use this feature detection in V8 since it causes\n// deoptimization and serious performance degradation\n// https://github.com/zloirock/core-js/issues/679\nvar IS_CONCAT_SPREADABLE_SUPPORT = V8_VERSION >= 51 || !fails(function () {\n var array = [];\n array[IS_CONCAT_SPREADABLE] = false;\n return array.concat()[0] !== array;\n});\n\nvar SPECIES_SUPPORT = arrayMethodHasSpeciesSupport('concat');\n\nvar isConcatSpreadable = function (O) {\n if (!isObject(O)) return false;\n var spreadable = O[IS_CONCAT_SPREADABLE];\n return spreadable !== undefined ? !!spreadable : isArray(O);\n};\n\nvar FORCED = !IS_CONCAT_SPREADABLE_SUPPORT || !SPECIES_SUPPORT;\n\n// `Array.prototype.concat` method\n// https://tc39.github.io/ecma262/#sec-array.prototype.concat\n// with adding support of @@isConcatSpreadable and @@species\n$({ target: 'Array', proto: true, forced: FORCED }, {\n concat: function concat(arg) { // eslint-disable-line no-unused-vars\n var O = toObject(this);\n var A = arraySpeciesCreate(O, 0);\n var n = 0;\n var i, k, length, len, E;\n for (i = -1, length = arguments.length; i < length; i++) {\n E = i === -1 ? O : arguments[i];\n if (isConcatSpreadable(E)) {\n len = toLength(E.length);\n if (n + len > MAX_SAFE_INTEGER) throw TypeError(MAXIMUM_ALLOWED_INDEX_EXCEEDED);\n for (k = 0; k < len; k++, n++) if (k in E) createProperty(A, n, E[k]);\n } else {\n if (n >= MAX_SAFE_INTEGER) throw TypeError(MAXIMUM_ALLOWED_INDEX_EXCEEDED);\n createProperty(A, n++, E);\n }\n }\n A.length = n;\n return A;\n }\n});\n","var global = require('../internals/global');\nvar getOwnPropertyDescriptor = require('../internals/object-get-own-property-descriptor').f;\nvar createNonEnumerableProperty = require('../internals/create-non-enumerable-property');\nvar redefine = require('../internals/redefine');\nvar setGlobal = require('../internals/set-global');\nvar copyConstructorProperties = require('../internals/copy-constructor-properties');\nvar isForced = require('../internals/is-forced');\n\n/*\n options.target - name of the target object\n options.global - target is the global object\n options.stat - export as static methods of target\n options.proto - export as prototype methods of target\n options.real - real prototype method for the `pure` version\n options.forced - export even if the native feature is available\n options.bind - bind methods to the target, required for the `pure` version\n options.wrap - wrap constructors to preventing global pollution, required for the `pure` version\n options.unsafe - use the simple assignment of property instead of delete + defineProperty\n options.sham - add a flag to not completely full polyfills\n options.enumerable - export as enumerable property\n options.noTargetGet - prevent calling a getter on target\n*/\nmodule.exports = function (options, source) {\n var TARGET = options.target;\n var GLOBAL = options.global;\n var STATIC = options.stat;\n var FORCED, target, key, targetProperty, sourceProperty, descriptor;\n if (GLOBAL) {\n target = global;\n } else if (STATIC) {\n target = global[TARGET] || setGlobal(TARGET, {});\n } else {\n target = (global[TARGET] || {}).prototype;\n }\n if (target) for (key in source) {\n sourceProperty = source[key];\n if (options.noTargetGet) {\n descriptor = getOwnPropertyDescriptor(target, key);\n targetProperty = descriptor && descriptor.value;\n } else targetProperty = target[key];\n FORCED = isForced(GLOBAL ? key : TARGET + (STATIC ? '.' : '#') + key, options.forced);\n // contained in target\n if (!FORCED && targetProperty !== undefined) {\n if (typeof sourceProperty === typeof targetProperty) continue;\n copyConstructorProperties(sourceProperty, targetProperty);\n }\n // add a flag to not completely full polyfills\n if (options.sham || (targetProperty && targetProperty.sham)) {\n createNonEnumerableProperty(sourceProperty, 'sham', true);\n }\n // extend global\n redefine(target, key, sourceProperty, options);\n }\n};\n","'use strict';\nvar nativePropertyIsEnumerable = {}.propertyIsEnumerable;\nvar getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;\n\n// Nashorn ~ JDK8 bug\nvar NASHORN_BUG = getOwnPropertyDescriptor && !nativePropertyIsEnumerable.call({ 1: 2 }, 1);\n\n// `Object.prototype.propertyIsEnumerable` method implementation\n// https://tc39.github.io/ecma262/#sec-object.prototype.propertyisenumerable\nexports.f = NASHORN_BUG ? function propertyIsEnumerable(V) {\n var descriptor = getOwnPropertyDescriptor(this, V);\n return !!descriptor && descriptor.enumerable;\n} : nativePropertyIsEnumerable;\n","var fails = require('../internals/fails');\nvar classof = require('../internals/classof-raw');\n\nvar split = ''.split;\n\n// fallback for non-array-like ES3 and non-enumerable old V8 strings\nmodule.exports = fails(function () {\n // throws an error in rhino, see https://github.com/mozilla/rhino/issues/346\n // eslint-disable-next-line no-prototype-builtins\n return !Object('z').propertyIsEnumerable(0);\n}) ? function (it) {\n return classof(it) == 'String' ? split.call(it, '') : Object(it);\n} : Object;\n","var global = require('../internals/global');\nvar isObject = require('../internals/is-object');\n\nvar document = global.document;\n// typeof document.createElement is 'object' in old IE\nvar EXISTS = isObject(document) && isObject(document.createElement);\n\nmodule.exports = function (it) {\n return EXISTS ? document.createElement(it) : {};\n};\n","var global = require('../internals/global');\nvar createNonEnumerableProperty = require('../internals/create-non-enumerable-property');\nvar has = require('../internals/has');\nvar setGlobal = require('../internals/set-global');\nvar inspectSource = require('../internals/inspect-source');\nvar InternalStateModule = require('../internals/internal-state');\n\nvar getInternalState = InternalStateModule.get;\nvar enforceInternalState = InternalStateModule.enforce;\nvar TEMPLATE = String(String).split('String');\n\n(module.exports = function (O, key, value, options) {\n var unsafe = options ? !!options.unsafe : false;\n var simple = options ? !!options.enumerable : false;\n var noTargetGet = options ? !!options.noTargetGet : false;\n if (typeof value == 'function') {\n if (typeof key == 'string' && !has(value, 'name')) createNonEnumerableProperty(value, 'name', key);\n enforceInternalState(value).source = TEMPLATE.join(typeof key == 'string' ? key : '');\n }\n if (O === global) {\n if (simple) O[key] = value;\n else setGlobal(key, value);\n return;\n } else if (!unsafe) {\n delete O[key];\n } else if (!noTargetGet && O[key]) {\n simple = true;\n }\n if (simple) O[key] = value;\n else createNonEnumerableProperty(O, key, value);\n// add fake Function#toString for correct work wrapped methods / constructors with methods like LoDash isNative\n})(Function.prototype, 'toString', function toString() {\n return typeof this == 'function' && getInternalState(this).source || inspectSource(this);\n});\n","var NATIVE_WEAK_MAP = require('../internals/native-weak-map');\nvar global = require('../internals/global');\nvar isObject = require('../internals/is-object');\nvar createNonEnumerableProperty = require('../internals/create-non-enumerable-property');\nvar objectHas = require('../internals/has');\nvar sharedKey = require('../internals/shared-key');\nvar hiddenKeys = require('../internals/hidden-keys');\n\nvar WeakMap = global.WeakMap;\nvar set, get, has;\n\nvar enforce = function (it) {\n return has(it) ? get(it) : set(it, {});\n};\n\nvar getterFor = function (TYPE) {\n return function (it) {\n var state;\n if (!isObject(it) || (state = get(it)).type !== TYPE) {\n throw TypeError('Incompatible receiver, ' + TYPE + ' required');\n } return state;\n };\n};\n\nif (NATIVE_WEAK_MAP) {\n var store = new WeakMap();\n var wmget = store.get;\n var wmhas = store.has;\n var wmset = store.set;\n set = function (it, metadata) {\n wmset.call(store, it, metadata);\n return metadata;\n };\n get = function (it) {\n return wmget.call(store, it) || {};\n };\n has = function (it) {\n return wmhas.call(store, it);\n };\n} else {\n var STATE = sharedKey('state');\n hiddenKeys[STATE] = true;\n set = function (it, metadata) {\n createNonEnumerableProperty(it, STATE, metadata);\n return metadata;\n };\n get = function (it) {\n return objectHas(it, STATE) ? it[STATE] : {};\n };\n has = function (it) {\n return objectHas(it, STATE);\n };\n}\n\nmodule.exports = {\n set: set,\n get: get,\n has: has,\n enforce: enforce,\n getterFor: getterFor\n};\n","var global = require('../internals/global');\nvar inspectSource = require('../internals/inspect-source');\n\nvar WeakMap = global.WeakMap;\n\nmodule.exports = typeof WeakMap === 'function' && /native code/.test(inspectSource(WeakMap));\n","var shared = require('../internals/shared');\nvar uid = require('../internals/uid');\n\nvar keys = shared('keys');\n\nmodule.exports = function (key) {\n return keys[key] || (keys[key] = uid(key));\n};\n","module.exports = false;\n","var has = require('../internals/has');\nvar ownKeys = require('../internals/own-keys');\nvar getOwnPropertyDescriptorModule = require('../internals/object-get-own-property-descriptor');\nvar definePropertyModule = require('../internals/object-define-property');\n\nmodule.exports = function (target, source) {\n var keys = ownKeys(source);\n var defineProperty = definePropertyModule.f;\n var getOwnPropertyDescriptor = getOwnPropertyDescriptorModule.f;\n for (var i = 0; i < keys.length; i++) {\n var key = keys[i];\n if (!has(target, key)) defineProperty(target, key, getOwnPropertyDescriptor(source, key));\n }\n};\n","var getBuiltIn = require('../internals/get-built-in');\nvar getOwnPropertyNamesModule = require('../internals/object-get-own-property-names');\nvar getOwnPropertySymbolsModule = require('../internals/object-get-own-property-symbols');\nvar anObject = require('../internals/an-object');\n\n// all object keys, includes non-enumerable and symbols\nmodule.exports = getBuiltIn('Reflect', 'ownKeys') || function ownKeys(it) {\n var keys = getOwnPropertyNamesModule.f(anObject(it));\n var getOwnPropertySymbols = getOwnPropertySymbolsModule.f;\n return getOwnPropertySymbols ? keys.concat(getOwnPropertySymbols(it)) : keys;\n};\n","var global = require('../internals/global');\n\nmodule.exports = global;\n","var internalObjectKeys = require('../internals/object-keys-internal');\nvar enumBugKeys = require('../internals/enum-bug-keys');\n\nvar hiddenKeys = enumBugKeys.concat('length', 'prototype');\n\n// `Object.getOwnPropertyNames` method\n// https://tc39.github.io/ecma262/#sec-object.getownpropertynames\nexports.f = Object.getOwnPropertyNames || function getOwnPropertyNames(O) {\n return internalObjectKeys(O, hiddenKeys);\n};\n","var has = require('../internals/has');\nvar toIndexedObject = require('../internals/to-indexed-object');\nvar indexOf = require('../internals/array-includes').indexOf;\nvar hiddenKeys = require('../internals/hidden-keys');\n\nmodule.exports = function (object, names) {\n var O = toIndexedObject(object);\n var i = 0;\n var result = [];\n var key;\n for (key in O) !has(hiddenKeys, key) && has(O, key) && result.push(key);\n // Don't enum bug & hidden keys\n while (names.length > i) if (has(O, key = names[i++])) {\n ~indexOf(result, key) || result.push(key);\n }\n return result;\n};\n","var toIndexedObject = require('../internals/to-indexed-object');\nvar toLength = require('../internals/to-length');\nvar toAbsoluteIndex = require('../internals/to-absolute-index');\n\n// `Array.prototype.{ indexOf, includes }` methods implementation\nvar createMethod = function (IS_INCLUDES) {\n return function ($this, el, fromIndex) {\n var O = toIndexedObject($this);\n var length = toLength(O.length);\n var index = toAbsoluteIndex(fromIndex, length);\n var value;\n // Array#includes uses SameValueZero equality algorithm\n // eslint-disable-next-line no-self-compare\n if (IS_INCLUDES && el != el) while (length > index) {\n value = O[index++];\n // eslint-disable-next-line no-self-compare\n if (value != value) return true;\n // Array#indexOf ignores holes, Array#includes - not\n } else for (;length > index; index++) {\n if ((IS_INCLUDES || index in O) && O[index] === el) return IS_INCLUDES || index || 0;\n } return !IS_INCLUDES && -1;\n };\n};\n\nmodule.exports = {\n // `Array.prototype.includes` method\n // https://tc39.github.io/ecma262/#sec-array.prototype.includes\n includes: createMethod(true),\n // `Array.prototype.indexOf` method\n // https://tc39.github.io/ecma262/#sec-array.prototype.indexof\n indexOf: createMethod(false)\n};\n","var toInteger = require('../internals/to-integer');\n\nvar max = Math.max;\nvar min = Math.min;\n\n// Helper for a popular repeating case of the spec:\n// Let integer be ? ToInteger(index).\n// If integer < 0, let result be max((length + integer), 0); else let result be min(integer, length).\nmodule.exports = function (index, length) {\n var integer = toInteger(index);\n return integer < 0 ? max(integer + length, 0) : min(integer, length);\n};\n","// IE8- don't enum bug keys\nmodule.exports = [\n 'constructor',\n 'hasOwnProperty',\n 'isPrototypeOf',\n 'propertyIsEnumerable',\n 'toLocaleString',\n 'toString',\n 'valueOf'\n];\n","exports.f = Object.getOwnPropertySymbols;\n","var fails = require('../internals/fails');\n\nvar replacement = /#|\\.prototype\\./;\n\nvar isForced = function (feature, detection) {\n var value = data[normalize(feature)];\n return value == POLYFILL ? true\n : value == NATIVE ? false\n : typeof detection == 'function' ? fails(detection)\n : !!detection;\n};\n\nvar normalize = isForced.normalize = function (string) {\n return String(string).replace(replacement, '.').toLowerCase();\n};\n\nvar data = isForced.data = {};\nvar NATIVE = isForced.NATIVE = 'N';\nvar POLYFILL = isForced.POLYFILL = 'P';\n\nmodule.exports = isForced;\n","var requireObjectCoercible = require('../internals/require-object-coercible');\n\n// `ToObject` abstract operation\n// https://tc39.github.io/ecma262/#sec-toobject\nmodule.exports = function (argument) {\n return Object(requireObjectCoercible(argument));\n};\n","'use strict';\nvar toPrimitive = require('../internals/to-primitive');\nvar definePropertyModule = require('../internals/object-define-property');\nvar createPropertyDescriptor = require('../internals/create-property-descriptor');\n\nmodule.exports = function (object, key, value) {\n var propertyKey = toPrimitive(key);\n if (propertyKey in object) definePropertyModule.f(object, propertyKey, createPropertyDescriptor(0, value));\n else object[propertyKey] = value;\n};\n","var isObject = require('../internals/is-object');\nvar isArray = require('../internals/is-array');\nvar wellKnownSymbol = require('../internals/well-known-symbol');\n\nvar SPECIES = wellKnownSymbol('species');\n\n// `ArraySpeciesCreate` abstract operation\n// https://tc39.github.io/ecma262/#sec-arrayspeciescreate\nmodule.exports = function (originalArray, length) {\n var C;\n if (isArray(originalArray)) {\n C = originalArray.constructor;\n // cross-realm fallback\n if (typeof C == 'function' && (C === Array || isArray(C.prototype))) C = undefined;\n else if (isObject(C)) {\n C = C[SPECIES];\n if (C === null) C = undefined;\n }\n } return new (C === undefined ? Array : C)(length === 0 ? 0 : length);\n};\n","var NATIVE_SYMBOL = require('../internals/native-symbol');\n\nmodule.exports = NATIVE_SYMBOL\n // eslint-disable-next-line no-undef\n && !Symbol.sham\n // eslint-disable-next-line no-undef\n && typeof Symbol.iterator == 'symbol';\n","var fails = require('../internals/fails');\nvar wellKnownSymbol = require('../internals/well-known-symbol');\nvar V8_VERSION = require('../internals/v8-version');\n\nvar SPECIES = wellKnownSymbol('species');\n\nmodule.exports = function (METHOD_NAME) {\n // We can't use this feature detection in V8 since it causes\n // deoptimization and serious performance degradation\n // https://github.com/zloirock/core-js/issues/677\n return V8_VERSION >= 51 || !fails(function () {\n var array = [];\n var constructor = array.constructor = {};\n constructor[SPECIES] = function () {\n return { foo: 1 };\n };\n return array[METHOD_NAME](Boolean).foo !== 1;\n });\n};\n","var getBuiltIn = require('../internals/get-built-in');\n\nmodule.exports = getBuiltIn('navigator', 'userAgent') || '';\n","var $ = require('../internals/export');\nvar assign = require('../internals/object-assign');\n\n// `Object.assign` method\n// https://tc39.github.io/ecma262/#sec-object.assign\n$({ target: 'Object', stat: true, forced: Object.assign !== assign }, {\n assign: assign\n});\n","var global = require('../internals/global');\nvar inspectSource = require('../internals/inspect-source');\n\nvar WeakMap = global.WeakMap;\n\nmodule.exports = typeof WeakMap === 'function' && /native code/.test(inspectSource(WeakMap));\n","var has = require('../internals/has');\nvar ownKeys = require('../internals/own-keys');\nvar getOwnPropertyDescriptorModule = require('../internals/object-get-own-property-descriptor');\nvar definePropertyModule = require('../internals/object-define-property');\n\nmodule.exports = function (target, source) {\n var keys = ownKeys(source);\n var defineProperty = definePropertyModule.f;\n var getOwnPropertyDescriptor = getOwnPropertyDescriptorModule.f;\n for (var i = 0; i < keys.length; i++) {\n var key = keys[i];\n if (!has(target, key)) defineProperty(target, key, getOwnPropertyDescriptor(source, key));\n }\n};\n","var getBuiltIn = require('../internals/get-built-in');\nvar getOwnPropertyNamesModule = require('../internals/object-get-own-property-names');\nvar getOwnPropertySymbolsModule = require('../internals/object-get-own-property-symbols');\nvar anObject = require('../internals/an-object');\n\n// all object keys, includes non-enumerable and symbols\nmodule.exports = getBuiltIn('Reflect', 'ownKeys') || function ownKeys(it) {\n var keys = getOwnPropertyNamesModule.f(anObject(it));\n var getOwnPropertySymbols = getOwnPropertySymbolsModule.f;\n return getOwnPropertySymbols ? keys.concat(getOwnPropertySymbols(it)) : keys;\n};\n","var global = require('../internals/global');\n\nmodule.exports = global;\n","var internalObjectKeys = require('../internals/object-keys-internal');\nvar enumBugKeys = require('../internals/enum-bug-keys');\n\nvar hiddenKeys = enumBugKeys.concat('length', 'prototype');\n\n// `Object.getOwnPropertyNames` method\n// https://tc39.github.io/ecma262/#sec-object.getownpropertynames\nexports.f = Object.getOwnPropertyNames || function getOwnPropertyNames(O) {\n return internalObjectKeys(O, hiddenKeys);\n};\n","var toIndexedObject = require('../internals/to-indexed-object');\nvar toLength = require('../internals/to-length');\nvar toAbsoluteIndex = require('../internals/to-absolute-index');\n\n// `Array.prototype.{ indexOf, includes }` methods implementation\nvar createMethod = function (IS_INCLUDES) {\n return function ($this, el, fromIndex) {\n var O = toIndexedObject($this);\n var length = toLength(O.length);\n var index = toAbsoluteIndex(fromIndex, length);\n var value;\n // Array#includes uses SameValueZero equality algorithm\n // eslint-disable-next-line no-self-compare\n if (IS_INCLUDES && el != el) while (length > index) {\n value = O[index++];\n // eslint-disable-next-line no-self-compare\n if (value != value) return true;\n // Array#indexOf ignores holes, Array#includes - not\n } else for (;length > index; index++) {\n if ((IS_INCLUDES || index in O) && O[index] === el) return IS_INCLUDES || index || 0;\n } return !IS_INCLUDES && -1;\n };\n};\n\nmodule.exports = {\n // `Array.prototype.includes` method\n // https://tc39.github.io/ecma262/#sec-array.prototype.includes\n includes: createMethod(true),\n // `Array.prototype.indexOf` method\n // https://tc39.github.io/ecma262/#sec-array.prototype.indexof\n indexOf: createMethod(false)\n};\n","var toInteger = require('../internals/to-integer');\n\nvar max = Math.max;\nvar min = Math.min;\n\n// Helper for a popular repeating case of the spec:\n// Let integer be ? ToInteger(index).\n// If integer < 0, let result be max((length + integer), 0); else let result be min(integer, length).\nmodule.exports = function (index, length) {\n var integer = toInteger(index);\n return integer < 0 ? max(integer + length, 0) : min(integer, length);\n};\n","'use strict';\nvar DESCRIPTORS = require('../internals/descriptors');\nvar fails = require('../internals/fails');\nvar objectKeys = require('../internals/object-keys');\nvar getOwnPropertySymbolsModule = require('../internals/object-get-own-property-symbols');\nvar propertyIsEnumerableModule = require('../internals/object-property-is-enumerable');\nvar toObject = require('../internals/to-object');\nvar IndexedObject = require('../internals/indexed-object');\n\nvar nativeAssign = Object.assign;\nvar defineProperty = Object.defineProperty;\n\n// `Object.assign` method\n// https://tc39.github.io/ecma262/#sec-object.assign\nmodule.exports = !nativeAssign || fails(function () {\n // should have correct order of operations (Edge bug)\n if (DESCRIPTORS && nativeAssign({ b: 1 }, nativeAssign(defineProperty({}, 'a', {\n enumerable: true,\n get: function () {\n defineProperty(this, 'b', {\n value: 3,\n enumerable: false\n });\n }\n }), { b: 2 })).b !== 1) return true;\n // should work with symbols and should have deterministic property order (V8 bug)\n var A = {};\n var B = {};\n // eslint-disable-next-line no-undef\n var symbol = Symbol();\n var alphabet = 'abcdefghijklmnopqrst';\n A[symbol] = 7;\n alphabet.split('').forEach(function (chr) { B[chr] = chr; });\n return nativeAssign({}, A)[symbol] != 7 || objectKeys(nativeAssign({}, B)).join('') != alphabet;\n}) ? function assign(target, source) { // eslint-disable-line no-unused-vars\n var T = toObject(target);\n var argumentsLength = arguments.length;\n var index = 1;\n var getOwnPropertySymbols = getOwnPropertySymbolsModule.f;\n var propertyIsEnumerable = propertyIsEnumerableModule.f;\n while (argumentsLength > index) {\n var S = IndexedObject(arguments[index++]);\n var keys = getOwnPropertySymbols ? objectKeys(S).concat(getOwnPropertySymbols(S)) : objectKeys(S);\n var length = keys.length;\n var j = 0;\n var key;\n while (length > j) {\n key = keys[j++];\n if (!DESCRIPTORS || propertyIsEnumerable.call(S, key)) T[key] = S[key];\n }\n } return T;\n} : nativeAssign;\n","module.exports = require('./lib/axios');","'use strict';\n\nvar utils = require('./utils');\nvar bind = require('./helpers/bind');\nvar Axios = require('./core/Axios');\nvar mergeConfig = require('./core/mergeConfig');\nvar defaults = require('./defaults');\n\n/**\n * Create an instance of Axios\n *\n * @param {Object} defaultConfig The default config for the instance\n * @return {Axios} A new instance of Axios\n */\nfunction createInstance(defaultConfig) {\n var context = new Axios(defaultConfig);\n var instance = bind(Axios.prototype.request, context);\n\n // Copy axios.prototype to instance\n utils.extend(instance, Axios.prototype, context);\n\n // Copy context to instance\n utils.extend(instance, context);\n\n return instance;\n}\n\n// Create the default instance to be exported\nvar axios = createInstance(defaults);\n\n// Expose Axios class to allow class inheritance\naxios.Axios = Axios;\n\n// Factory for creating new instances\naxios.create = function create(instanceConfig) {\n return createInstance(mergeConfig(axios.defaults, instanceConfig));\n};\n\n// Expose Cancel & CancelToken\naxios.Cancel = require('./cancel/Cancel');\naxios.CancelToken = require('./cancel/CancelToken');\naxios.isCancel = require('./cancel/isCancel');\n\n// Expose all/spread\naxios.all = function all(promises) {\n return Promise.all(promises);\n};\naxios.spread = require('./helpers/spread');\n\nmodule.exports = axios;\n\n// Allow use of default import syntax in TypeScript\nmodule.exports.default = axios;\n","'use strict';\n\nvar utils = require('./../utils');\nvar buildURL = require('../helpers/buildURL');\nvar InterceptorManager = require('./InterceptorManager');\nvar dispatchRequest = require('./dispatchRequest');\nvar mergeConfig = require('./mergeConfig');\n\n/**\n * Create a new instance of Axios\n *\n * @param {Object} instanceConfig The default config for the instance\n */\nfunction Axios(instanceConfig) {\n this.defaults = instanceConfig;\n this.interceptors = {\n request: new InterceptorManager(),\n response: new InterceptorManager()\n };\n}\n\n/**\n * Dispatch a request\n *\n * @param {Object} config The config specific for this request (merged with this.defaults)\n */\nAxios.prototype.request = function request(config) {\n /*eslint no-param-reassign:0*/\n // Allow for axios('example/url'[, config]) a la fetch API\n if (typeof config === 'string') {\n config = arguments[1] || {};\n config.url = arguments[0];\n } else {\n config = config || {};\n }\n\n config = mergeConfig(this.defaults, config);\n\n // Set config.method\n if (config.method) {\n config.method = config.method.toLowerCase();\n } else if (this.defaults.method) {\n config.method = this.defaults.method.toLowerCase();\n } else {\n config.method = 'get';\n }\n\n // Hook up interceptors middleware\n var chain = [dispatchRequest, undefined];\n var promise = Promise.resolve(config);\n\n this.interceptors.request.forEach(function unshiftRequestInterceptors(interceptor) {\n chain.unshift(interceptor.fulfilled, interceptor.rejected);\n });\n\n this.interceptors.response.forEach(function pushResponseInterceptors(interceptor) {\n chain.push(interceptor.fulfilled, interceptor.rejected);\n });\n\n while (chain.length) {\n promise = promise.then(chain.shift(), chain.shift());\n }\n\n return promise;\n};\n\nAxios.prototype.getUri = function getUri(config) {\n config = mergeConfig(this.defaults, config);\n return buildURL(config.url, config.params, config.paramsSerializer).replace(/^\\?/, '');\n};\n\n// Provide aliases for supported request methods\nutils.forEach(['delete', 'get', 'head', 'options'], function forEachMethodNoData(method) {\n /*eslint func-names:0*/\n Axios.prototype[method] = function(url, config) {\n return this.request(utils.merge(config || {}, {\n method: method,\n url: url\n }));\n };\n});\n\nutils.forEach(['post', 'put', 'patch'], function forEachMethodWithData(method) {\n /*eslint func-names:0*/\n Axios.prototype[method] = function(url, data, config) {\n return this.request(utils.merge(config || {}, {\n method: method,\n url: url,\n data: data\n }));\n };\n});\n\nmodule.exports = Axios;\n","'use strict';\n\nvar utils = require('./../utils');\n\nfunction InterceptorManager() {\n this.handlers = [];\n}\n\n/**\n * Add a new interceptor to the stack\n *\n * @param {Function} fulfilled The function to handle `then` for a `Promise`\n * @param {Function} rejected The function to handle `reject` for a `Promise`\n *\n * @return {Number} An ID used to remove interceptor later\n */\nInterceptorManager.prototype.use = function use(fulfilled, rejected) {\n this.handlers.push({\n fulfilled: fulfilled,\n rejected: rejected\n });\n return this.handlers.length - 1;\n};\n\n/**\n * Remove an interceptor from the stack\n *\n * @param {Number} id The ID that was returned by `use`\n */\nInterceptorManager.prototype.eject = function eject(id) {\n if (this.handlers[id]) {\n this.handlers[id] = null;\n }\n};\n\n/**\n * Iterate over all the registered interceptors\n *\n * This method is particularly useful for skipping over any\n * interceptors that may have become `null` calling `eject`.\n *\n * @param {Function} fn The function to call for each interceptor\n */\nInterceptorManager.prototype.forEach = function forEach(fn) {\n utils.forEach(this.handlers, function forEachHandler(h) {\n if (h !== null) {\n fn(h);\n }\n });\n};\n\nmodule.exports = InterceptorManager;\n","'use strict';\n\nvar utils = require('./../utils');\nvar transformData = require('./transformData');\nvar isCancel = require('../cancel/isCancel');\nvar defaults = require('../defaults');\n\n/**\n * Throws a `Cancel` if cancellation has been requested.\n */\nfunction throwIfCancellationRequested(config) {\n if (config.cancelToken) {\n config.cancelToken.throwIfRequested();\n }\n}\n\n/**\n * Dispatch a request to the server using the configured adapter.\n *\n * @param {object} config The config that is to be used for the request\n * @returns {Promise} The Promise to be fulfilled\n */\nmodule.exports = function dispatchRequest(config) {\n throwIfCancellationRequested(config);\n\n // Ensure headers exist\n config.headers = config.headers || {};\n\n // Transform request data\n config.data = transformData(\n config.data,\n config.headers,\n config.transformRequest\n );\n\n // Flatten headers\n config.headers = utils.merge(\n config.headers.common || {},\n config.headers[config.method] || {},\n config.headers\n );\n\n utils.forEach(\n ['delete', 'get', 'head', 'post', 'put', 'patch', 'common'],\n function cleanHeaderConfig(method) {\n delete config.headers[method];\n }\n );\n\n var adapter = config.adapter || defaults.adapter;\n\n return adapter(config).then(function onAdapterResolution(response) {\n throwIfCancellationRequested(config);\n\n // Transform response data\n response.data = transformData(\n response.data,\n response.headers,\n config.transformResponse\n );\n\n return response;\n }, function onAdapterRejection(reason) {\n if (!isCancel(reason)) {\n throwIfCancellationRequested(config);\n\n // Transform response data\n if (reason && reason.response) {\n reason.response.data = transformData(\n reason.response.data,\n reason.response.headers,\n config.transformResponse\n );\n }\n }\n\n return Promise.reject(reason);\n });\n};\n","'use strict';\n\nvar utils = require('./../utils');\n\n/**\n * Transform the data for a request or a response\n *\n * @param {Object|String} data The data to be transformed\n * @param {Array} headers The headers for the request or response\n * @param {Array|Function} fns A single function or Array of functions\n * @returns {*} The resulting transformed data\n */\nmodule.exports = function transformData(data, headers, fns) {\n /*eslint no-param-reassign:0*/\n utils.forEach(fns, function transform(fn) {\n data = fn(data, headers);\n });\n\n return data;\n};\n","'use strict';\n\nvar utils = require('../utils');\n\nmodule.exports = function normalizeHeaderName(headers, normalizedName) {\n utils.forEach(headers, function processHeader(value, name) {\n if (name !== normalizedName && name.toUpperCase() === normalizedName.toUpperCase()) {\n headers[normalizedName] = value;\n delete headers[name];\n }\n });\n};\n","'use strict';\n\nvar createError = require('./createError');\n\n/**\n * Resolve or reject a Promise based on response status.\n *\n * @param {Function} resolve A function that resolves the promise.\n * @param {Function} reject A function that rejects the promise.\n * @param {object} response The response.\n */\nmodule.exports = function settle(resolve, reject, response) {\n var validateStatus = response.config.validateStatus;\n if (!validateStatus || validateStatus(response.status)) {\n resolve(response);\n } else {\n reject(createError(\n 'Request failed with status code ' + response.status,\n response.config,\n null,\n response.request,\n response\n ));\n }\n};\n","'use strict';\n\n/**\n * Update an Error with the specified config, error code, and response.\n *\n * @param {Error} error The error to update.\n * @param {Object} config The config.\n * @param {string} [code] The error code (for example, 'ECONNABORTED').\n * @param {Object} [request] The request.\n * @param {Object} [response] The response.\n * @returns {Error} The error.\n */\nmodule.exports = function enhanceError(error, config, code, request, response) {\n error.config = config;\n if (code) {\n error.code = code;\n }\n\n error.request = request;\n error.response = response;\n error.isAxiosError = true;\n\n error.toJSON = function() {\n return {\n // Standard\n message: this.message,\n name: this.name,\n // Microsoft\n description: this.description,\n number: this.number,\n // Mozilla\n fileName: this.fileName,\n lineNumber: this.lineNumber,\n columnNumber: this.columnNumber,\n stack: this.stack,\n // Axios\n config: this.config,\n code: this.code\n };\n };\n return error;\n};\n","'use strict';\n\nvar isAbsoluteURL = require('../helpers/isAbsoluteURL');\nvar combineURLs = require('../helpers/combineURLs');\n\n/**\n * Creates a new URL by combining the baseURL with the requestedURL,\n * only when the requestedURL is not already an absolute URL.\n * If the requestURL is absolute, this function returns the requestedURL untouched.\n *\n * @param {string} baseURL The base URL\n * @param {string} requestedURL Absolute or relative URL to combine\n * @returns {string} The combined full path\n */\nmodule.exports = function buildFullPath(baseURL, requestedURL) {\n if (baseURL && !isAbsoluteURL(requestedURL)) {\n return combineURLs(baseURL, requestedURL);\n }\n return requestedURL;\n};\n","'use strict';\n\n/**\n * Determines whether the specified URL is absolute\n *\n * @param {string} url The URL to test\n * @returns {boolean} True if the specified URL is absolute, otherwise false\n */\nmodule.exports = function isAbsoluteURL(url) {\n // A URL is considered absolute if it begins with \"<scheme>://\" or \"//\" (protocol-relative URL).\n // RFC 3986 defines scheme name as a sequence of characters beginning with a letter and followed\n // by any combination of letters, digits, plus, period, or hyphen.\n return /^([a-z][a-z\\d\\+\\-\\.]*:)?\\/\\//i.test(url);\n};\n","'use strict';\n\n/**\n * Creates a new URL by combining the specified URLs\n *\n * @param {string} baseURL The base URL\n * @param {string} relativeURL The relative URL\n * @returns {string} The combined URL\n */\nmodule.exports = function combineURLs(baseURL, relativeURL) {\n return relativeURL\n ? baseURL.replace(/\\/+$/, '') + '/' + relativeURL.replace(/^\\/+/, '')\n : baseURL;\n};\n","'use strict';\n\nvar utils = require('./../utils');\n\n// Headers whose duplicates are ignored by node\n// c.f. https://nodejs.org/api/http.html#http_message_headers\nvar ignoreDuplicateOf = [\n 'age', 'authorization', 'content-length', 'content-type', 'etag',\n 'expires', 'from', 'host', 'if-modified-since', 'if-unmodified-since',\n 'last-modified', 'location', 'max-forwards', 'proxy-authorization',\n 'referer', 'retry-after', 'user-agent'\n];\n\n/**\n * Parse headers into an object\n *\n * ```\n * Date: Wed, 27 Aug 2014 08:58:49 GMT\n * Content-Type: application/json\n * Connection: keep-alive\n * Transfer-Encoding: chunked\n * ```\n *\n * @param {String} headers Headers needing to be parsed\n * @returns {Object} Headers parsed into an object\n */\nmodule.exports = function parseHeaders(headers) {\n var parsed = {};\n var key;\n var val;\n var i;\n\n if (!headers) { return parsed; }\n\n utils.forEach(headers.split('\\n'), function parser(line) {\n i = line.indexOf(':');\n key = utils.trim(line.substr(0, i)).toLowerCase();\n val = utils.trim(line.substr(i + 1));\n\n if (key) {\n if (parsed[key] && ignoreDuplicateOf.indexOf(key) >= 0) {\n return;\n }\n if (key === 'set-cookie') {\n parsed[key] = (parsed[key] ? parsed[key] : []).concat([val]);\n } else {\n parsed[key] = parsed[key] ? parsed[key] + ', ' + val : val;\n }\n }\n });\n\n return parsed;\n};\n","'use strict';\n\nvar utils = require('./../utils');\nvar isValidXss = require('./isValidXss');\n\nmodule.exports = (\n utils.isStandardBrowserEnv() ?\n\n // Standard browser envs have full support of the APIs needed to test\n // whether the request URL is of the same origin as current location.\n (function standardBrowserEnv() {\n var msie = /(msie|trident)/i.test(navigator.userAgent);\n var urlParsingNode = document.createElement('a');\n var originURL;\n\n /**\n * Parse a URL to discover it's components\n *\n * @param {String} url The URL to be parsed\n * @returns {Object}\n */\n function resolveURL(url) {\n var href = url;\n\n if (isValidXss(url)) {\n throw new Error('URL contains XSS injection attempt');\n }\n\n if (msie) {\n // IE needs attribute set twice to normalize properties\n urlParsingNode.setAttribute('href', href);\n href = urlParsingNode.href;\n }\n\n urlParsingNode.setAttribute('href', href);\n\n // urlParsingNode provides the UrlUtils interface - http://url.spec.whatwg.org/#urlutils\n return {\n href: urlParsingNode.href,\n protocol: urlParsingNode.protocol ? urlParsingNode.protocol.replace(/:$/, '') : '',\n host: urlParsingNode.host,\n search: urlParsingNode.search ? urlParsingNode.search.replace(/^\\?/, '') : '',\n hash: urlParsingNode.hash ? urlParsingNode.hash.replace(/^#/, '') : '',\n hostname: urlParsingNode.hostname,\n port: urlParsingNode.port,\n pathname: (urlParsingNode.pathname.charAt(0) === '/') ?\n urlParsingNode.pathname :\n '/' + urlParsingNode.pathname\n };\n }\n\n originURL = resolveURL(window.location.href);\n\n /**\n * Determine if a URL shares the same origin as the current location\n *\n * @param {String} requestURL The URL to test\n * @returns {boolean} True if URL shares the same origin, otherwise false\n */\n return function isURLSameOrigin(requestURL) {\n var parsed = (utils.isString(requestURL)) ? resolveURL(requestURL) : requestURL;\n return (parsed.protocol === originURL.protocol &&\n parsed.host === originURL.host);\n };\n })() :\n\n // Non standard browser envs (web workers, react-native) lack needed support.\n (function nonStandardBrowserEnv() {\n return function isURLSameOrigin() {\n return true;\n };\n })()\n);\n","'use strict';\n\nmodule.exports = function isValidXss(requestURL) {\n var xssRegex = /(\\b)(on\\w+)=|javascript|(<\\s*)(\\/*)script/gi;\n return xssRegex.test(requestURL);\n};\n\n","'use strict';\n\nvar utils = require('./../utils');\n\nmodule.exports = (\n utils.isStandardBrowserEnv() ?\n\n // Standard browser envs support document.cookie\n (function standardBrowserEnv() {\n return {\n write: function write(name, value, expires, path, domain, secure) {\n var cookie = [];\n cookie.push(name + '=' + encodeURIComponent(value));\n\n if (utils.isNumber(expires)) {\n cookie.push('expires=' + new Date(expires).toGMTString());\n }\n\n if (utils.isString(path)) {\n cookie.push('path=' + path);\n }\n\n if (utils.isString(domain)) {\n cookie.push('domain=' + domain);\n }\n\n if (secure === true) {\n cookie.push('secure');\n }\n\n document.cookie = cookie.join('; ');\n },\n\n read: function read(name) {\n var match = document.cookie.match(new RegExp('(^|;\\\\s*)(' + name + ')=([^;]*)'));\n return (match ? decodeURIComponent(match[3]) : null);\n },\n\n remove: function remove(name) {\n this.write(name, '', Date.now() - 86400000);\n }\n };\n })() :\n\n // Non standard browser env (web workers, react-native) lack needed support.\n (function nonStandardBrowserEnv() {\n return {\n write: function write() {},\n read: function read() { return null; },\n remove: function remove() {}\n };\n })()\n);\n","'use strict';\n\nvar Cancel = require('./Cancel');\n\n/**\n * A `CancelToken` is an object that can be used to request cancellation of an operation.\n *\n * @class\n * @param {Function} executor The executor function.\n */\nfunction CancelToken(executor) {\n if (typeof executor !== 'function') {\n throw new TypeError('executor must be a function.');\n }\n\n var resolvePromise;\n this.promise = new Promise(function promiseExecutor(resolve) {\n resolvePromise = resolve;\n });\n\n var token = this;\n executor(function cancel(message) {\n if (token.reason) {\n // Cancellation has already been requested\n return;\n }\n\n token.reason = new Cancel(message);\n resolvePromise(token.reason);\n });\n}\n\n/**\n * Throws a `Cancel` if cancellation has been requested.\n */\nCancelToken.prototype.throwIfRequested = function throwIfRequested() {\n if (this.reason) {\n throw this.reason;\n }\n};\n\n/**\n * Returns an object that contains a new `CancelToken` and a function that, when called,\n * cancels the `CancelToken`.\n */\nCancelToken.source = function source() {\n var cancel;\n var token = new CancelToken(function executor(c) {\n cancel = c;\n });\n return {\n token: token,\n cancel: cancel\n };\n};\n\nmodule.exports = CancelToken;\n","'use strict';\n\n/**\n * Syntactic sugar for invoking a function and expanding an array for arguments.\n *\n * Common use case would be to use `Function.prototype.apply`.\n *\n * ```js\n * function f(x, y, z) {}\n * var args = [1, 2, 3];\n * f.apply(null, args);\n * ```\n *\n * With `spread` this example can be re-written.\n *\n * ```js\n * spread(function(x, y, z) {})([1, 2, 3]);\n * ```\n *\n * @param {Function} callback\n * @returns {Function}\n */\nmodule.exports = function spread(callback) {\n return function wrap(arr) {\n return callback.apply(null, arr);\n };\n};\n","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nObject.defineProperty(exports, \"getRequestToken\", {\n enumerable: true,\n get: function get() {\n return _requesttoken.getRequestToken;\n }\n});\nObject.defineProperty(exports, \"onRequestTokenUpdate\", {\n enumerable: true,\n get: function get() {\n return _requesttoken.onRequestTokenUpdate;\n }\n});\nObject.defineProperty(exports, \"getCurrentUser\", {\n enumerable: true,\n get: function get() {\n return _user.getCurrentUser;\n }\n});\n\nvar _requesttoken = require(\"./requesttoken\");\n\nvar _user = require(\"./user\");\n//# sourceMappingURL=index.js.map","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.getRequestToken = getRequestToken;\nexports.onRequestTokenUpdate = onRequestTokenUpdate;\n\nvar _eventBus = require(\"@nextcloud/event-bus\");\n\nvar tokenElement = document.getElementsByTagName('head')[0];\nvar token = tokenElement ? tokenElement.getAttribute('data-requesttoken') : null;\nvar observers = [];\n\nfunction getRequestToken() {\n return token;\n}\n\nfunction onRequestTokenUpdate(observer) {\n observers.push(observer);\n} // Listen to server event and keep token in sync\n\n\n(0, _eventBus.subscribe)('csrf-token-update', function (e) {\n token = e.token;\n observers.forEach(function (observer) {\n try {\n observer(e.token);\n } catch (e) {\n console.error('error updating CSRF token observer', e);\n }\n });\n});\n//# sourceMappingURL=requesttoken.js.map","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.subscribe = subscribe;\nexports.unsubscribe = unsubscribe;\nexports.emit = emit;\n\nvar _ProxyBus = require(\"./ProxyBus\");\n\nvar _SimpleBus = require(\"./SimpleBus\");\n\nfunction getBus() {\n if (typeof window.OC !== 'undefined' && window.OC._eventBus && typeof window._nc_event_bus === 'undefined') {\n console.warn('found old event bus instance at OC._eventBus. Update your version!');\n window._nc_event_bus = window.OC._eventBus;\n } // Either use an existing event bus instance or create one\n\n\n if (typeof window._nc_event_bus !== 'undefined') {\n return new _ProxyBus.ProxyBus(window._nc_event_bus);\n } else {\n return window._nc_event_bus = new _SimpleBus.SimpleBus();\n }\n}\n\nvar bus = getBus();\n/**\n * Register an event listener\n *\n * @param name name of the event\n * @param handler callback invoked for every matching event emitted on the bus\n */\n\nfunction subscribe(name, handler) {\n bus.subscribe(name, handler);\n}\n/**\n * Unregister a previously registered event listener\n *\n * Note: doesn't work with anonymous functions (closures). Use method of an object or store listener function in variable.\n *\n * @param name name of the event\n * @param handler callback passed to `subscribed`\n */\n\n\nfunction unsubscribe(name, handler) {\n bus.unsubscribe(name, handler);\n}\n/**\n * Emit an event\n *\n * @param name name of the event\n * @param event event payload\n */\n\n\nfunction emit(name, event) {\n bus.emit(name, event);\n}\n//# sourceMappingURL=index.js.map","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.ProxyBus = void 0;\n\nvar _semver = _interopRequireDefault(require(\"semver\"));\n\nfunction _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nfunction _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }\n\nfunction _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }\n\nfunction _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }\n\nvar packageJson = {\n name: \"@nextcloud/event-bus\",\n version: \"1.1.2\",\n description: \"\",\n main: \"dist/index.js\",\n types: \"dist/index.d.ts\",\n scripts: {\n build: \"babel ./lib --out-dir dist --extensions '.ts,.tsx' --source-maps && tsc --emitDeclarationOnly\",\n \"build:doc\": \"typedoc --excludeNotExported --mode file --out dist/doc lib/index.ts && touch dist/doc/.nojekyll\",\n \"check-types\": \"tsc\",\n dev: \"babel ./lib --out-dir dist --extensions '.ts,.tsx' --watch\",\n test: \"jest\",\n \"test:watch\": \"jest --watchAll\"\n },\n keywords: [\"nextcloud\"],\n homepage: \"https://github.com/nextcloud/nextcloud-event-bus#readme\",\n author: \"Christoph Wurst\",\n license: \"GPL-3.0-or-later\",\n repository: {\n type: \"git\",\n url: \"https://github.com/nextcloud/nextcloud-event-bus\"\n },\n dependencies: {\n \"@types/semver\": \"^6.2.0\",\n \"core-js\": \"^3.6.2\",\n semver: \"^6.3.0\"\n },\n devDependencies: {\n \"@babel/cli\": \"^7.6.0\",\n \"@babel/core\": \"^7.6.0\",\n \"@babel/plugin-proposal-class-properties\": \"^7.5.5\",\n \"@babel/preset-env\": \"^7.6.0\",\n \"@babel/preset-typescript\": \"^7.6.0\",\n \"@nextcloud/browserslist-config\": \"^1.0.0\",\n \"babel-jest\": \"^24.9.0\",\n \"babel-plugin-inline-json-import\": \"^0.3.2\",\n jest: \"^24.9.0\",\n typedoc: \"^0.15.7\",\n typescript: \"^3.6.3\"\n },\n browserslist: [\"extends @nextcloud/browserslist-config\"]\n};\n\nvar ProxyBus =\n/*#__PURE__*/\nfunction () {\n function ProxyBus(bus) {\n _classCallCheck(this, ProxyBus);\n\n _defineProperty(this, \"bus\", void 0);\n\n if (typeof bus.getVersion !== 'function' || !_semver.default.valid(bus.getVersion())) {\n console.warn('Proxying an event bus with an unknown or invalid version');\n } else if (_semver.default.major(bus.getVersion()) !== _semver.default.major(this.getVersion())) {\n console.warn('Proxying an event bus of version ' + bus.getVersion() + ' with ' + this.getVersion());\n }\n\n this.bus = bus;\n }\n\n _createClass(ProxyBus, [{\n key: \"getVersion\",\n value: function getVersion() {\n return packageJson.version;\n }\n }, {\n key: \"subscribe\",\n value: function subscribe(name, handler) {\n this.bus.subscribe(name, handler);\n }\n }, {\n key: \"unsubscribe\",\n value: function unsubscribe(name, handler) {\n this.bus.unsubscribe(name, handler);\n }\n }, {\n key: \"emit\",\n value: function emit(name, event) {\n this.bus.emit(name, event);\n }\n }]);\n\n return ProxyBus;\n}();\n\nexports.ProxyBus = ProxyBus;\n//# sourceMappingURL=ProxyBus.js.map","exports = module.exports = SemVer\n\nvar debug\n/* istanbul ignore next */\nif (typeof process === 'object' &&\n process.env &&\n process.env.NODE_DEBUG &&\n /\\bsemver\\b/i.test(process.env.NODE_DEBUG)) {\n debug = function () {\n var args = Array.prototype.slice.call(arguments, 0)\n args.unshift('SEMVER')\n console.log.apply(console, args)\n }\n} else {\n debug = function () {}\n}\n\n// Note: this is the semver.org version of the spec that it implements\n// Not necessarily the package version of this code.\nexports.SEMVER_SPEC_VERSION = '2.0.0'\n\nvar MAX_LENGTH = 256\nvar MAX_SAFE_INTEGER = Number.MAX_SAFE_INTEGER ||\n /* istanbul ignore next */ 9007199254740991\n\n// Max safe segment length for coercion.\nvar MAX_SAFE_COMPONENT_LENGTH = 16\n\n// The actual regexps go on exports.re\nvar re = exports.re = []\nvar src = exports.src = []\nvar t = exports.tokens = {}\nvar R = 0\n\nfunction tok (n) {\n t[n] = R++\n}\n\n// The following Regular Expressions can be used for tokenizing,\n// validating, and parsing SemVer version strings.\n\n// ## Numeric Identifier\n// A single `0`, or a non-zero digit followed by zero or more digits.\n\ntok('NUMERICIDENTIFIER')\nsrc[t.NUMERICIDENTIFIER] = '0|[1-9]\\\\d*'\ntok('NUMERICIDENTIFIERLOOSE')\nsrc[t.NUMERICIDENTIFIERLOOSE] = '[0-9]+'\n\n// ## Non-numeric Identifier\n// Zero or more digits, followed by a letter or hyphen, and then zero or\n// more letters, digits, or hyphens.\n\ntok('NONNUMERICIDENTIFIER')\nsrc[t.NONNUMERICIDENTIFIER] = '\\\\d*[a-zA-Z-][a-zA-Z0-9-]*'\n\n// ## Main Version\n// Three dot-separated numeric identifiers.\n\ntok('MAINVERSION')\nsrc[t.MAINVERSION] = '(' + src[t.NUMERICIDENTIFIER] + ')\\\\.' +\n '(' + src[t.NUMERICIDENTIFIER] + ')\\\\.' +\n '(' + src[t.NUMERICIDENTIFIER] + ')'\n\ntok('MAINVERSIONLOOSE')\nsrc[t.MAINVERSIONLOOSE] = '(' + src[t.NUMERICIDENTIFIERLOOSE] + ')\\\\.' +\n '(' + src[t.NUMERICIDENTIFIERLOOSE] + ')\\\\.' +\n '(' + src[t.NUMERICIDENTIFIERLOOSE] + ')'\n\n// ## Pre-release Version Identifier\n// A numeric identifier, or a non-numeric identifier.\n\ntok('PRERELEASEIDENTIFIER')\nsrc[t.PRERELEASEIDENTIFIER] = '(?:' + src[t.NUMERICIDENTIFIER] +\n '|' + src[t.NONNUMERICIDENTIFIER] + ')'\n\ntok('PRERELEASEIDENTIFIERLOOSE')\nsrc[t.PRERELEASEIDENTIFIERLOOSE] = '(?:' + src[t.NUMERICIDENTIFIERLOOSE] +\n '|' + src[t.NONNUMERICIDENTIFIER] + ')'\n\n// ## Pre-release Version\n// Hyphen, followed by one or more dot-separated pre-release version\n// identifiers.\n\ntok('PRERELEASE')\nsrc[t.PRERELEASE] = '(?:-(' + src[t.PRERELEASEIDENTIFIER] +\n '(?:\\\\.' + src[t.PRERELEASEIDENTIFIER] + ')*))'\n\ntok('PRERELEASELOOSE')\nsrc[t.PRERELEASELOOSE] = '(?:-?(' + src[t.PRERELEASEIDENTIFIERLOOSE] +\n '(?:\\\\.' + src[t.PRERELEASEIDENTIFIERLOOSE] + ')*))'\n\n// ## Build Metadata Identifier\n// Any combination of digits, letters, or hyphens.\n\ntok('BUILDIDENTIFIER')\nsrc[t.BUILDIDENTIFIER] = '[0-9A-Za-z-]+'\n\n// ## Build Metadata\n// Plus sign, followed by one or more period-separated build metadata\n// identifiers.\n\ntok('BUILD')\nsrc[t.BUILD] = '(?:\\\\+(' + src[t.BUILDIDENTIFIER] +\n '(?:\\\\.' + src[t.BUILDIDENTIFIER] + ')*))'\n\n// ## Full Version String\n// A main version, followed optionally by a pre-release version and\n// build metadata.\n\n// Note that the only major, minor, patch, and pre-release sections of\n// the version string are capturing groups. The build metadata is not a\n// capturing group, because it should not ever be used in version\n// comparison.\n\ntok('FULL')\ntok('FULLPLAIN')\nsrc[t.FULLPLAIN] = 'v?' + src[t.MAINVERSION] +\n src[t.PRERELEASE] + '?' +\n src[t.BUILD] + '?'\n\nsrc[t.FULL] = '^' + src[t.FULLPLAIN] + '$'\n\n// like full, but allows v1.2.3 and =1.2.3, which people do sometimes.\n// also, 1.0.0alpha1 (prerelease without the hyphen) which is pretty\n// common in the npm registry.\ntok('LOOSEPLAIN')\nsrc[t.LOOSEPLAIN] = '[v=\\\\s]*' + src[t.MAINVERSIONLOOSE] +\n src[t.PRERELEASELOOSE] + '?' +\n src[t.BUILD] + '?'\n\ntok('LOOSE')\nsrc[t.LOOSE] = '^' + src[t.LOOSEPLAIN] + '$'\n\ntok('GTLT')\nsrc[t.GTLT] = '((?:<|>)?=?)'\n\n// Something like \"2.*\" or \"1.2.x\".\n// Note that \"x.x\" is a valid xRange identifer, meaning \"any version\"\n// Only the first item is strictly required.\ntok('XRANGEIDENTIFIERLOOSE')\nsrc[t.XRANGEIDENTIFIERLOOSE] = src[t.NUMERICIDENTIFIERLOOSE] + '|x|X|\\\\*'\ntok('XRANGEIDENTIFIER')\nsrc[t.XRANGEIDENTIFIER] = src[t.NUMERICIDENTIFIER] + '|x|X|\\\\*'\n\ntok('XRANGEPLAIN')\nsrc[t.XRANGEPLAIN] = '[v=\\\\s]*(' + src[t.XRANGEIDENTIFIER] + ')' +\n '(?:\\\\.(' + src[t.XRANGEIDENTIFIER] + ')' +\n '(?:\\\\.(' + src[t.XRANGEIDENTIFIER] + ')' +\n '(?:' + src[t.PRERELEASE] + ')?' +\n src[t.BUILD] + '?' +\n ')?)?'\n\ntok('XRANGEPLAINLOOSE')\nsrc[t.XRANGEPLAINLOOSE] = '[v=\\\\s]*(' + src[t.XRANGEIDENTIFIERLOOSE] + ')' +\n '(?:\\\\.(' + src[t.XRANGEIDENTIFIERLOOSE] + ')' +\n '(?:\\\\.(' + src[t.XRANGEIDENTIFIERLOOSE] + ')' +\n '(?:' + src[t.PRERELEASELOOSE] + ')?' +\n src[t.BUILD] + '?' +\n ')?)?'\n\ntok('XRANGE')\nsrc[t.XRANGE] = '^' + src[t.GTLT] + '\\\\s*' + src[t.XRANGEPLAIN] + '$'\ntok('XRANGELOOSE')\nsrc[t.XRANGELOOSE] = '^' + src[t.GTLT] + '\\\\s*' + src[t.XRANGEPLAINLOOSE] + '$'\n\n// Coercion.\n// Extract anything that could conceivably be a part of a valid semver\ntok('COERCE')\nsrc[t.COERCE] = '(^|[^\\\\d])' +\n '(\\\\d{1,' + MAX_SAFE_COMPONENT_LENGTH + '})' +\n '(?:\\\\.(\\\\d{1,' + MAX_SAFE_COMPONENT_LENGTH + '}))?' +\n '(?:\\\\.(\\\\d{1,' + MAX_SAFE_COMPONENT_LENGTH + '}))?' +\n '(?:$|[^\\\\d])'\ntok('COERCERTL')\nre[t.COERCERTL] = new RegExp(src[t.COERCE], 'g')\n\n// Tilde ranges.\n// Meaning is \"reasonably at or greater than\"\ntok('LONETILDE')\nsrc[t.LONETILDE] = '(?:~>?)'\n\ntok('TILDETRIM')\nsrc[t.TILDETRIM] = '(\\\\s*)' + src[t.LONETILDE] + '\\\\s+'\nre[t.TILDETRIM] = new RegExp(src[t.TILDETRIM], 'g')\nvar tildeTrimReplace = '$1~'\n\ntok('TILDE')\nsrc[t.TILDE] = '^' + src[t.LONETILDE] + src[t.XRANGEPLAIN] + '$'\ntok('TILDELOOSE')\nsrc[t.TILDELOOSE] = '^' + src[t.LONETILDE] + src[t.XRANGEPLAINLOOSE] + '$'\n\n// Caret ranges.\n// Meaning is \"at least and backwards compatible with\"\ntok('LONECARET')\nsrc[t.LONECARET] = '(?:\\\\^)'\n\ntok('CARETTRIM')\nsrc[t.CARETTRIM] = '(\\\\s*)' + src[t.LONECARET] + '\\\\s+'\nre[t.CARETTRIM] = new RegExp(src[t.CARETTRIM], 'g')\nvar caretTrimReplace = '$1^'\n\ntok('CARET')\nsrc[t.CARET] = '^' + src[t.LONECARET] + src[t.XRANGEPLAIN] + '$'\ntok('CARETLOOSE')\nsrc[t.CARETLOOSE] = '^' + src[t.LONECARET] + src[t.XRANGEPLAINLOOSE] + '$'\n\n// A simple gt/lt/eq thing, or just \"\" to indicate \"any version\"\ntok('COMPARATORLOOSE')\nsrc[t.COMPARATORLOOSE] = '^' + src[t.GTLT] + '\\\\s*(' + src[t.LOOSEPLAIN] + ')$|^$'\ntok('COMPARATOR')\nsrc[t.COMPARATOR] = '^' + src[t.GTLT] + '\\\\s*(' + src[t.FULLPLAIN] + ')$|^$'\n\n// An expression to strip any whitespace between the gtlt and the thing\n// it modifies, so that `> 1.2.3` ==> `>1.2.3`\ntok('COMPARATORTRIM')\nsrc[t.COMPARATORTRIM] = '(\\\\s*)' + src[t.GTLT] +\n '\\\\s*(' + src[t.LOOSEPLAIN] + '|' + src[t.XRANGEPLAIN] + ')'\n\n// this one has to use the /g flag\nre[t.COMPARATORTRIM] = new RegExp(src[t.COMPARATORTRIM], 'g')\nvar comparatorTrimReplace = '$1$2$3'\n\n// Something like `1.2.3 - 1.2.4`\n// Note that these all use the loose form, because they'll be\n// checked against either the strict or loose comparator form\n// later.\ntok('HYPHENRANGE')\nsrc[t.HYPHENRANGE] = '^\\\\s*(' + src[t.XRANGEPLAIN] + ')' +\n '\\\\s+-\\\\s+' +\n '(' + src[t.XRANGEPLAIN] + ')' +\n '\\\\s*$'\n\ntok('HYPHENRANGELOOSE')\nsrc[t.HYPHENRANGELOOSE] = '^\\\\s*(' + src[t.XRANGEPLAINLOOSE] + ')' +\n '\\\\s+-\\\\s+' +\n '(' + src[t.XRANGEPLAINLOOSE] + ')' +\n '\\\\s*$'\n\n// Star ranges basically just allow anything at all.\ntok('STAR')\nsrc[t.STAR] = '(<|>)?=?\\\\s*\\\\*'\n\n// Compile to actual regexp objects.\n// All are flag-free, unless they were created above with a flag.\nfor (var i = 0; i < R; i++) {\n debug(i, src[i])\n if (!re[i]) {\n re[i] = new RegExp(src[i])\n }\n}\n\nexports.parse = parse\nfunction parse (version, options) {\n if (!options || typeof options !== 'object') {\n options = {\n loose: !!options,\n includePrerelease: false\n }\n }\n\n if (version instanceof SemVer) {\n return version\n }\n\n if (typeof version !== 'string') {\n return null\n }\n\n if (version.length > MAX_LENGTH) {\n return null\n }\n\n var r = options.loose ? re[t.LOOSE] : re[t.FULL]\n if (!r.test(version)) {\n return null\n }\n\n try {\n return new SemVer(version, options)\n } catch (er) {\n return null\n }\n}\n\nexports.valid = valid\nfunction valid (version, options) {\n var v = parse(version, options)\n return v ? v.version : null\n}\n\nexports.clean = clean\nfunction clean (version, options) {\n var s = parse(version.trim().replace(/^[=v]+/, ''), options)\n return s ? s.version : null\n}\n\nexports.SemVer = SemVer\n\nfunction SemVer (version, options) {\n if (!options || typeof options !== 'object') {\n options = {\n loose: !!options,\n includePrerelease: false\n }\n }\n if (version instanceof SemVer) {\n if (version.loose === options.loose) {\n return version\n } else {\n version = version.version\n }\n } else if (typeof version !== 'string') {\n throw new TypeError('Invalid Version: ' + version)\n }\n\n if (version.length > MAX_LENGTH) {\n throw new TypeError('version is longer than ' + MAX_LENGTH + ' characters')\n }\n\n if (!(this instanceof SemVer)) {\n return new SemVer(version, options)\n }\n\n debug('SemVer', version, options)\n this.options = options\n this.loose = !!options.loose\n\n var m = version.trim().match(options.loose ? re[t.LOOSE] : re[t.FULL])\n\n if (!m) {\n throw new TypeError('Invalid Version: ' + version)\n }\n\n this.raw = version\n\n // these are actually numbers\n this.major = +m[1]\n this.minor = +m[2]\n this.patch = +m[3]\n\n if (this.major > MAX_SAFE_INTEGER || this.major < 0) {\n throw new TypeError('Invalid major version')\n }\n\n if (this.minor > MAX_SAFE_INTEGER || this.minor < 0) {\n throw new TypeError('Invalid minor version')\n }\n\n if (this.patch > MAX_SAFE_INTEGER || this.patch < 0) {\n throw new TypeError('Invalid patch version')\n }\n\n // numberify any prerelease numeric ids\n if (!m[4]) {\n this.prerelease = []\n } else {\n this.prerelease = m[4].split('.').map(function (id) {\n if (/^[0-9]+$/.test(id)) {\n var num = +id\n if (num >= 0 && num < MAX_SAFE_INTEGER) {\n return num\n }\n }\n return id\n })\n }\n\n this.build = m[5] ? m[5].split('.') : []\n this.format()\n}\n\nSemVer.prototype.format = function () {\n this.version = this.major + '.' + this.minor + '.' + this.patch\n if (this.prerelease.length) {\n this.version += '-' + this.prerelease.join('.')\n }\n return this.version\n}\n\nSemVer.prototype.toString = function () {\n return this.version\n}\n\nSemVer.prototype.compare = function (other) {\n debug('SemVer.compare', this.version, this.options, other)\n if (!(other instanceof SemVer)) {\n other = new SemVer(other, this.options)\n }\n\n return this.compareMain(other) || this.comparePre(other)\n}\n\nSemVer.prototype.compareMain = function (other) {\n if (!(other instanceof SemVer)) {\n other = new SemVer(other, this.options)\n }\n\n return compareIdentifiers(this.major, other.major) ||\n compareIdentifiers(this.minor, other.minor) ||\n compareIdentifiers(this.patch, other.patch)\n}\n\nSemVer.prototype.comparePre = function (other) {\n if (!(other instanceof SemVer)) {\n other = new SemVer(other, this.options)\n }\n\n // NOT having a prerelease is > having one\n if (this.prerelease.length && !other.prerelease.length) {\n return -1\n } else if (!this.prerelease.length && other.prerelease.length) {\n return 1\n } else if (!this.prerelease.length && !other.prerelease.length) {\n return 0\n }\n\n var i = 0\n do {\n var a = this.prerelease[i]\n var b = other.prerelease[i]\n debug('prerelease compare', i, a, b)\n if (a === undefined && b === undefined) {\n return 0\n } else if (b === undefined) {\n return 1\n } else if (a === undefined) {\n return -1\n } else if (a === b) {\n continue\n } else {\n return compareIdentifiers(a, b)\n }\n } while (++i)\n}\n\nSemVer.prototype.compareBuild = function (other) {\n if (!(other instanceof SemVer)) {\n other = new SemVer(other, this.options)\n }\n\n var i = 0\n do {\n var a = this.build[i]\n var b = other.build[i]\n debug('prerelease compare', i, a, b)\n if (a === undefined && b === undefined) {\n return 0\n } else if (b === undefined) {\n return 1\n } else if (a === undefined) {\n return -1\n } else if (a === b) {\n continue\n } else {\n return compareIdentifiers(a, b)\n }\n } while (++i)\n}\n\n// preminor will bump the version up to the next minor release, and immediately\n// down to pre-release. premajor and prepatch work the same way.\nSemVer.prototype.inc = function (release, identifier) {\n switch (release) {\n case 'premajor':\n this.prerelease.length = 0\n this.patch = 0\n this.minor = 0\n this.major++\n this.inc('pre', identifier)\n break\n case 'preminor':\n this.prerelease.length = 0\n this.patch = 0\n this.minor++\n this.inc('pre', identifier)\n break\n case 'prepatch':\n // If this is already a prerelease, it will bump to the next version\n // drop any prereleases that might already exist, since they are not\n // relevant at this point.\n this.prerelease.length = 0\n this.inc('patch', identifier)\n this.inc('pre', identifier)\n break\n // If the input is a non-prerelease version, this acts the same as\n // prepatch.\n case 'prerelease':\n if (this.prerelease.length === 0) {\n this.inc('patch', identifier)\n }\n this.inc('pre', identifier)\n break\n\n case 'major':\n // If this is a pre-major version, bump up to the same major version.\n // Otherwise increment major.\n // 1.0.0-5 bumps to 1.0.0\n // 1.1.0 bumps to 2.0.0\n if (this.minor !== 0 ||\n this.patch !== 0 ||\n this.prerelease.length === 0) {\n this.major++\n }\n this.minor = 0\n this.patch = 0\n this.prerelease = []\n break\n case 'minor':\n // If this is a pre-minor version, bump up to the same minor version.\n // Otherwise increment minor.\n // 1.2.0-5 bumps to 1.2.0\n // 1.2.1 bumps to 1.3.0\n if (this.patch !== 0 || this.prerelease.length === 0) {\n this.minor++\n }\n this.patch = 0\n this.prerelease = []\n break\n case 'patch':\n // If this is not a pre-release version, it will increment the patch.\n // If it is a pre-release it will bump up to the same patch version.\n // 1.2.0-5 patches to 1.2.0\n // 1.2.0 patches to 1.2.1\n if (this.prerelease.length === 0) {\n this.patch++\n }\n this.prerelease = []\n break\n // This probably shouldn't be used publicly.\n // 1.0.0 \"pre\" would become 1.0.0-0 which is the wrong direction.\n case 'pre':\n if (this.prerelease.length === 0) {\n this.prerelease = [0]\n } else {\n var i = this.prerelease.length\n while (--i >= 0) {\n if (typeof this.prerelease[i] === 'number') {\n this.prerelease[i]++\n i = -2\n }\n }\n if (i === -1) {\n // didn't increment anything\n this.prerelease.push(0)\n }\n }\n if (identifier) {\n // 1.2.0-beta.1 bumps to 1.2.0-beta.2,\n // 1.2.0-beta.fooblz or 1.2.0-beta bumps to 1.2.0-beta.0\n if (this.prerelease[0] === identifier) {\n if (isNaN(this.prerelease[1])) {\n this.prerelease = [identifier, 0]\n }\n } else {\n this.prerelease = [identifier, 0]\n }\n }\n break\n\n default:\n throw new Error('invalid increment argument: ' + release)\n }\n this.format()\n this.raw = this.version\n return this\n}\n\nexports.inc = inc\nfunction inc (version, release, loose, identifier) {\n if (typeof (loose) === 'string') {\n identifier = loose\n loose = undefined\n }\n\n try {\n return new SemVer(version, loose).inc(release, identifier).version\n } catch (er) {\n return null\n }\n}\n\nexports.diff = diff\nfunction diff (version1, version2) {\n if (eq(version1, version2)) {\n return null\n } else {\n var v1 = parse(version1)\n var v2 = parse(version2)\n var prefix = ''\n if (v1.prerelease.length || v2.prerelease.length) {\n prefix = 'pre'\n var defaultResult = 'prerelease'\n }\n for (var key in v1) {\n if (key === 'major' || key === 'minor' || key === 'patch') {\n if (v1[key] !== v2[key]) {\n return prefix + key\n }\n }\n }\n return defaultResult // may be undefined\n }\n}\n\nexports.compareIdentifiers = compareIdentifiers\n\nvar numeric = /^[0-9]+$/\nfunction compareIdentifiers (a, b) {\n var anum = numeric.test(a)\n var bnum = numeric.test(b)\n\n if (anum && bnum) {\n a = +a\n b = +b\n }\n\n return a === b ? 0\n : (anum && !bnum) ? -1\n : (bnum && !anum) ? 1\n : a < b ? -1\n : 1\n}\n\nexports.rcompareIdentifiers = rcompareIdentifiers\nfunction rcompareIdentifiers (a, b) {\n return compareIdentifiers(b, a)\n}\n\nexports.major = major\nfunction major (a, loose) {\n return new SemVer(a, loose).major\n}\n\nexports.minor = minor\nfunction minor (a, loose) {\n return new SemVer(a, loose).minor\n}\n\nexports.patch = patch\nfunction patch (a, loose) {\n return new SemVer(a, loose).patch\n}\n\nexports.compare = compare\nfunction compare (a, b, loose) {\n return new SemVer(a, loose).compare(new SemVer(b, loose))\n}\n\nexports.compareLoose = compareLoose\nfunction compareLoose (a, b) {\n return compare(a, b, true)\n}\n\nexports.compareBuild = compareBuild\nfunction compareBuild (a, b, loose) {\n var versionA = new SemVer(a, loose)\n var versionB = new SemVer(b, loose)\n return versionA.compare(versionB) || versionA.compareBuild(versionB)\n}\n\nexports.rcompare = rcompare\nfunction rcompare (a, b, loose) {\n return compare(b, a, loose)\n}\n\nexports.sort = sort\nfunction sort (list, loose) {\n return list.sort(function (a, b) {\n return exports.compareBuild(a, b, loose)\n })\n}\n\nexports.rsort = rsort\nfunction rsort (list, loose) {\n return list.sort(function (a, b) {\n return exports.compareBuild(b, a, loose)\n })\n}\n\nexports.gt = gt\nfunction gt (a, b, loose) {\n return compare(a, b, loose) > 0\n}\n\nexports.lt = lt\nfunction lt (a, b, loose) {\n return compare(a, b, loose) < 0\n}\n\nexports.eq = eq\nfunction eq (a, b, loose) {\n return compare(a, b, loose) === 0\n}\n\nexports.neq = neq\nfunction neq (a, b, loose) {\n return compare(a, b, loose) !== 0\n}\n\nexports.gte = gte\nfunction gte (a, b, loose) {\n return compare(a, b, loose) >= 0\n}\n\nexports.lte = lte\nfunction lte (a, b, loose) {\n return compare(a, b, loose) <= 0\n}\n\nexports.cmp = cmp\nfunction cmp (a, op, b, loose) {\n switch (op) {\n case '===':\n if (typeof a === 'object')\n a = a.version\n if (typeof b === 'object')\n b = b.version\n return a === b\n\n case '!==':\n if (typeof a === 'object')\n a = a.version\n if (typeof b === 'object')\n b = b.version\n return a !== b\n\n case '':\n case '=':\n case '==':\n return eq(a, b, loose)\n\n case '!=':\n return neq(a, b, loose)\n\n case '>':\n return gt(a, b, loose)\n\n case '>=':\n return gte(a, b, loose)\n\n case '<':\n return lt(a, b, loose)\n\n case '<=':\n return lte(a, b, loose)\n\n default:\n throw new TypeError('Invalid operator: ' + op)\n }\n}\n\nexports.Comparator = Comparator\nfunction Comparator (comp, options) {\n if (!options || typeof options !== 'object') {\n options = {\n loose: !!options,\n includePrerelease: false\n }\n }\n\n if (comp instanceof Comparator) {\n if (comp.loose === !!options.loose) {\n return comp\n } else {\n comp = comp.value\n }\n }\n\n if (!(this instanceof Comparator)) {\n return new Comparator(comp, options)\n }\n\n debug('comparator', comp, options)\n this.options = options\n this.loose = !!options.loose\n this.parse(comp)\n\n if (this.semver === ANY) {\n this.value = ''\n } else {\n this.value = this.operator + this.semver.version\n }\n\n debug('comp', this)\n}\n\nvar ANY = {}\nComparator.prototype.parse = function (comp) {\n var r = this.options.loose ? re[t.COMPARATORLOOSE] : re[t.COMPARATOR]\n var m = comp.match(r)\n\n if (!m) {\n throw new TypeError('Invalid comparator: ' + comp)\n }\n\n this.operator = m[1] !== undefined ? m[1] : ''\n if (this.operator === '=') {\n this.operator = ''\n }\n\n // if it literally is just '>' or '' then allow anything.\n if (!m[2]) {\n this.semver = ANY\n } else {\n this.semver = new SemVer(m[2], this.options.loose)\n }\n}\n\nComparator.prototype.toString = function () {\n return this.value\n}\n\nComparator.prototype.test = function (version) {\n debug('Comparator.test', version, this.options.loose)\n\n if (this.semver === ANY || version === ANY) {\n return true\n }\n\n if (typeof version === 'string') {\n try {\n version = new SemVer(version, this.options)\n } catch (er) {\n return false\n }\n }\n\n return cmp(version, this.operator, this.semver, this.options)\n}\n\nComparator.prototype.intersects = function (comp, options) {\n if (!(comp instanceof Comparator)) {\n throw new TypeError('a Comparator is required')\n }\n\n if (!options || typeof options !== 'object') {\n options = {\n loose: !!options,\n includePrerelease: false\n }\n }\n\n var rangeTmp\n\n if (this.operator === '') {\n if (this.value === '') {\n return true\n }\n rangeTmp = new Range(comp.value, options)\n return satisfies(this.value, rangeTmp, options)\n } else if (comp.operator === '') {\n if (comp.value === '') {\n return true\n }\n rangeTmp = new Range(this.value, options)\n return satisfies(comp.semver, rangeTmp, options)\n }\n\n var sameDirectionIncreasing =\n (this.operator === '>=' || this.operator === '>') &&\n (comp.operator === '>=' || comp.operator === '>')\n var sameDirectionDecreasing =\n (this.operator === '<=' || this.operator === '<') &&\n (comp.operator === '<=' || comp.operator === '<')\n var sameSemVer = this.semver.version === comp.semver.version\n var differentDirectionsInclusive =\n (this.operator === '>=' || this.operator === '<=') &&\n (comp.operator === '>=' || comp.operator === '<=')\n var oppositeDirectionsLessThan =\n cmp(this.semver, '<', comp.semver, options) &&\n ((this.operator === '>=' || this.operator === '>') &&\n (comp.operator === '<=' || comp.operator === '<'))\n var oppositeDirectionsGreaterThan =\n cmp(this.semver, '>', comp.semver, options) &&\n ((this.operator === '<=' || this.operator === '<') &&\n (comp.operator === '>=' || comp.operator === '>'))\n\n return sameDirectionIncreasing || sameDirectionDecreasing ||\n (sameSemVer && differentDirectionsInclusive) ||\n oppositeDirectionsLessThan || oppositeDirectionsGreaterThan\n}\n\nexports.Range = Range\nfunction Range (range, options) {\n if (!options || typeof options !== 'object') {\n options = {\n loose: !!options,\n includePrerelease: false\n }\n }\n\n if (range instanceof Range) {\n if (range.loose === !!options.loose &&\n range.includePrerelease === !!options.includePrerelease) {\n return range\n } else {\n return new Range(range.raw, options)\n }\n }\n\n if (range instanceof Comparator) {\n return new Range(range.value, options)\n }\n\n if (!(this instanceof Range)) {\n return new Range(range, options)\n }\n\n this.options = options\n this.loose = !!options.loose\n this.includePrerelease = !!options.includePrerelease\n\n // First, split based on boolean or ||\n this.raw = range\n this.set = range.split(/\\s*\\|\\|\\s*/).map(function (range) {\n return this.parseRange(range.trim())\n }, this).filter(function (c) {\n // throw out any that are not relevant for whatever reason\n return c.length\n })\n\n if (!this.set.length) {\n throw new TypeError('Invalid SemVer Range: ' + range)\n }\n\n this.format()\n}\n\nRange.prototype.format = function () {\n this.range = this.set.map(function (comps) {\n return comps.join(' ').trim()\n }).join('||').trim()\n return this.range\n}\n\nRange.prototype.toString = function () {\n return this.range\n}\n\nRange.prototype.parseRange = function (range) {\n var loose = this.options.loose\n range = range.trim()\n // `1.2.3 - 1.2.4` => `>=1.2.3 <=1.2.4`\n var hr = loose ? re[t.HYPHENRANGELOOSE] : re[t.HYPHENRANGE]\n range = range.replace(hr, hyphenReplace)\n debug('hyphen replace', range)\n // `> 1.2.3 < 1.2.5` => `>1.2.3 <1.2.5`\n range = range.replace(re[t.COMPARATORTRIM], comparatorTrimReplace)\n debug('comparator trim', range, re[t.COMPARATORTRIM])\n\n // `~ 1.2.3` => `~1.2.3`\n range = range.replace(re[t.TILDETRIM], tildeTrimReplace)\n\n // `^ 1.2.3` => `^1.2.3`\n range = range.replace(re[t.CARETTRIM], caretTrimReplace)\n\n // normalize spaces\n range = range.split(/\\s+/).join(' ')\n\n // At this point, the range is completely trimmed and\n // ready to be split into comparators.\n\n var compRe = loose ? re[t.COMPARATORLOOSE] : re[t.COMPARATOR]\n var set = range.split(' ').map(function (comp) {\n return parseComparator(comp, this.options)\n }, this).join(' ').split(/\\s+/)\n if (this.options.loose) {\n // in loose mode, throw out any that are not valid comparators\n set = set.filter(function (comp) {\n return !!comp.match(compRe)\n })\n }\n set = set.map(function (comp) {\n return new Comparator(comp, this.options)\n }, this)\n\n return set\n}\n\nRange.prototype.intersects = function (range, options) {\n if (!(range instanceof Range)) {\n throw new TypeError('a Range is required')\n }\n\n return this.set.some(function (thisComparators) {\n return (\n isSatisfiable(thisComparators, options) &&\n range.set.some(function (rangeComparators) {\n return (\n isSatisfiable(rangeComparators, options) &&\n thisComparators.every(function (thisComparator) {\n return rangeComparators.every(function (rangeComparator) {\n return thisComparator.intersects(rangeComparator, options)\n })\n })\n )\n })\n )\n })\n}\n\n// take a set of comparators and determine whether there\n// exists a version which can satisfy it\nfunction isSatisfiable (comparators, options) {\n var result = true\n var remainingComparators = comparators.slice()\n var testComparator = remainingComparators.pop()\n\n while (result && remainingComparators.length) {\n result = remainingComparators.every(function (otherComparator) {\n return testComparator.intersects(otherComparator, options)\n })\n\n testComparator = remainingComparators.pop()\n }\n\n return result\n}\n\n// Mostly just for testing and legacy API reasons\nexports.toComparators = toComparators\nfunction toComparators (range, options) {\n return new Range(range, options).set.map(function (comp) {\n return comp.map(function (c) {\n return c.value\n }).join(' ').trim().split(' ')\n })\n}\n\n// comprised of xranges, tildes, stars, and gtlt's at this point.\n// already replaced the hyphen ranges\n// turn into a set of JUST comparators.\nfunction parseComparator (comp, options) {\n debug('comp', comp, options)\n comp = replaceCarets(comp, options)\n debug('caret', comp)\n comp = replaceTildes(comp, options)\n debug('tildes', comp)\n comp = replaceXRanges(comp, options)\n debug('xrange', comp)\n comp = replaceStars(comp, options)\n debug('stars', comp)\n return comp\n}\n\nfunction isX (id) {\n return !id || id.toLowerCase() === 'x' || id === '*'\n}\n\n// ~, ~> --> * (any, kinda silly)\n// ~2, ~2.x, ~2.x.x, ~>2, ~>2.x ~>2.x.x --> >=2.0.0 <3.0.0\n// ~2.0, ~2.0.x, ~>2.0, ~>2.0.x --> >=2.0.0 <2.1.0\n// ~1.2, ~1.2.x, ~>1.2, ~>1.2.x --> >=1.2.0 <1.3.0\n// ~1.2.3, ~>1.2.3 --> >=1.2.3 <1.3.0\n// ~1.2.0, ~>1.2.0 --> >=1.2.0 <1.3.0\nfunction replaceTildes (comp, options) {\n return comp.trim().split(/\\s+/).map(function (comp) {\n return replaceTilde(comp, options)\n }).join(' ')\n}\n\nfunction replaceTilde (comp, options) {\n var r = options.loose ? re[t.TILDELOOSE] : re[t.TILDE]\n return comp.replace(r, function (_, M, m, p, pr) {\n debug('tilde', comp, _, M, m, p, pr)\n var ret\n\n if (isX(M)) {\n ret = ''\n } else if (isX(m)) {\n ret = '>=' + M + '.0.0 <' + (+M + 1) + '.0.0'\n } else if (isX(p)) {\n // ~1.2 == >=1.2.0 <1.3.0\n ret = '>=' + M + '.' + m + '.0 <' + M + '.' + (+m + 1) + '.0'\n } else if (pr) {\n debug('replaceTilde pr', pr)\n ret = '>=' + M + '.' + m + '.' + p + '-' + pr +\n ' <' + M + '.' + (+m + 1) + '.0'\n } else {\n // ~1.2.3 == >=1.2.3 <1.3.0\n ret = '>=' + M + '.' + m + '.' + p +\n ' <' + M + '.' + (+m + 1) + '.0'\n }\n\n debug('tilde return', ret)\n return ret\n })\n}\n\n// ^ --> * (any, kinda silly)\n// ^2, ^2.x, ^2.x.x --> >=2.0.0 <3.0.0\n// ^2.0, ^2.0.x --> >=2.0.0 <3.0.0\n// ^1.2, ^1.2.x --> >=1.2.0 <2.0.0\n// ^1.2.3 --> >=1.2.3 <2.0.0\n// ^1.2.0 --> >=1.2.0 <2.0.0\nfunction replaceCarets (comp, options) {\n return comp.trim().split(/\\s+/).map(function (comp) {\n return replaceCaret(comp, options)\n }).join(' ')\n}\n\nfunction replaceCaret (comp, options) {\n debug('caret', comp, options)\n var r = options.loose ? re[t.CARETLOOSE] : re[t.CARET]\n return comp.replace(r, function (_, M, m, p, pr) {\n debug('caret', comp, _, M, m, p, pr)\n var ret\n\n if (isX(M)) {\n ret = ''\n } else if (isX(m)) {\n ret = '>=' + M + '.0.0 <' + (+M + 1) + '.0.0'\n } else if (isX(p)) {\n if (M === '0') {\n ret = '>=' + M + '.' + m + '.0 <' + M + '.' + (+m + 1) + '.0'\n } else {\n ret = '>=' + M + '.' + m + '.0 <' + (+M + 1) + '.0.0'\n }\n } else if (pr) {\n debug('replaceCaret pr', pr)\n if (M === '0') {\n if (m === '0') {\n ret = '>=' + M + '.' + m + '.' + p + '-' + pr +\n ' <' + M + '.' + m + '.' + (+p + 1)\n } else {\n ret = '>=' + M + '.' + m + '.' + p + '-' + pr +\n ' <' + M + '.' + (+m + 1) + '.0'\n }\n } else {\n ret = '>=' + M + '.' + m + '.' + p + '-' + pr +\n ' <' + (+M + 1) + '.0.0'\n }\n } else {\n debug('no pr')\n if (M === '0') {\n if (m === '0') {\n ret = '>=' + M + '.' + m + '.' + p +\n ' <' + M + '.' + m + '.' + (+p + 1)\n } else {\n ret = '>=' + M + '.' + m + '.' + p +\n ' <' + M + '.' + (+m + 1) + '.0'\n }\n } else {\n ret = '>=' + M + '.' + m + '.' + p +\n ' <' + (+M + 1) + '.0.0'\n }\n }\n\n debug('caret return', ret)\n return ret\n })\n}\n\nfunction replaceXRanges (comp, options) {\n debug('replaceXRanges', comp, options)\n return comp.split(/\\s+/).map(function (comp) {\n return replaceXRange(comp, options)\n }).join(' ')\n}\n\nfunction replaceXRange (comp, options) {\n comp = comp.trim()\n var r = options.loose ? re[t.XRANGELOOSE] : re[t.XRANGE]\n return comp.replace(r, function (ret, gtlt, M, m, p, pr) {\n debug('xRange', comp, ret, gtlt, M, m, p, pr)\n var xM = isX(M)\n var xm = xM || isX(m)\n var xp = xm || isX(p)\n var anyX = xp\n\n if (gtlt === '=' && anyX) {\n gtlt = ''\n }\n\n // if we're including prereleases in the match, then we need\n // to fix this to -0, the lowest possible prerelease value\n pr = options.includePrerelease ? '-0' : ''\n\n if (xM) {\n if (gtlt === '>' || gtlt === '<') {\n // nothing is allowed\n ret = '<0.0.0-0'\n } else {\n // nothing is forbidden\n ret = '*'\n }\n } else if (gtlt && anyX) {\n // we know patch is an x, because we have any x at all.\n // replace X with 0\n if (xm) {\n m = 0\n }\n p = 0\n\n if (gtlt === '>') {\n // >1 => >=2.0.0\n // >1.2 => >=1.3.0\n // >1.2.3 => >= 1.2.4\n gtlt = '>='\n if (xm) {\n M = +M + 1\n m = 0\n p = 0\n } else {\n m = +m + 1\n p = 0\n }\n } else if (gtlt === '<=') {\n // <=0.7.x is actually <0.8.0, since any 0.7.x should\n // pass. Similarly, <=7.x is actually <8.0.0, etc.\n gtlt = '<'\n if (xm) {\n M = +M + 1\n } else {\n m = +m + 1\n }\n }\n\n ret = gtlt + M + '.' + m + '.' + p + pr\n } else if (xm) {\n ret = '>=' + M + '.0.0' + pr + ' <' + (+M + 1) + '.0.0' + pr\n } else if (xp) {\n ret = '>=' + M + '.' + m + '.0' + pr +\n ' <' + M + '.' + (+m + 1) + '.0' + pr\n }\n\n debug('xRange return', ret)\n\n return ret\n })\n}\n\n// Because * is AND-ed with everything else in the comparator,\n// and '' means \"any version\", just remove the *s entirely.\nfunction replaceStars (comp, options) {\n debug('replaceStars', comp, options)\n // Looseness is ignored here. star is always as loose as it gets!\n return comp.trim().replace(re[t.STAR], '')\n}\n\n// This function is passed to string.replace(re[t.HYPHENRANGE])\n// M, m, patch, prerelease, build\n// 1.2 - 3.4.5 => >=1.2.0 <=3.4.5\n// 1.2.3 - 3.4 => >=1.2.0 <3.5.0 Any 3.4.x will do\n// 1.2 - 3.4 => >=1.2.0 <3.5.0\nfunction hyphenReplace ($0,\n from, fM, fm, fp, fpr, fb,\n to, tM, tm, tp, tpr, tb) {\n if (isX(fM)) {\n from = ''\n } else if (isX(fm)) {\n from = '>=' + fM + '.0.0'\n } else if (isX(fp)) {\n from = '>=' + fM + '.' + fm + '.0'\n } else {\n from = '>=' + from\n }\n\n if (isX(tM)) {\n to = ''\n } else if (isX(tm)) {\n to = '<' + (+tM + 1) + '.0.0'\n } else if (isX(tp)) {\n to = '<' + tM + '.' + (+tm + 1) + '.0'\n } else if (tpr) {\n to = '<=' + tM + '.' + tm + '.' + tp + '-' + tpr\n } else {\n to = '<=' + to\n }\n\n return (from + ' ' + to).trim()\n}\n\n// if ANY of the sets match ALL of its comparators, then pass\nRange.prototype.test = function (version) {\n if (!version) {\n return false\n }\n\n if (typeof version === 'string') {\n try {\n version = new SemVer(version, this.options)\n } catch (er) {\n return false\n }\n }\n\n for (var i = 0; i < this.set.length; i++) {\n if (testSet(this.set[i], version, this.options)) {\n return true\n }\n }\n return false\n}\n\nfunction testSet (set, version, options) {\n for (var i = 0; i < set.length; i++) {\n if (!set[i].test(version)) {\n return false\n }\n }\n\n if (version.prerelease.length && !options.includePrerelease) {\n // Find the set of versions that are allowed to have prereleases\n // For example, ^1.2.3-pr.1 desugars to >=1.2.3-pr.1 <2.0.0\n // That should allow `1.2.3-pr.2` to pass.\n // However, `1.2.4-alpha.notready` should NOT be allowed,\n // even though it's within the range set by the comparators.\n for (i = 0; i < set.length; i++) {\n debug(set[i].semver)\n if (set[i].semver === ANY) {\n continue\n }\n\n if (set[i].semver.prerelease.length > 0) {\n var allowed = set[i].semver\n if (allowed.major === version.major &&\n allowed.minor === version.minor &&\n allowed.patch === version.patch) {\n return true\n }\n }\n }\n\n // Version has a -pre, but it's not one of the ones we like.\n return false\n }\n\n return true\n}\n\nexports.satisfies = satisfies\nfunction satisfies (version, range, options) {\n try {\n range = new Range(range, options)\n } catch (er) {\n return false\n }\n return range.test(version)\n}\n\nexports.maxSatisfying = maxSatisfying\nfunction maxSatisfying (versions, range, options) {\n var max = null\n var maxSV = null\n try {\n var rangeObj = new Range(range, options)\n } catch (er) {\n return null\n }\n versions.forEach(function (v) {\n if (rangeObj.test(v)) {\n // satisfies(v, range, options)\n if (!max || maxSV.compare(v) === -1) {\n // compare(max, v, true)\n max = v\n maxSV = new SemVer(max, options)\n }\n }\n })\n return max\n}\n\nexports.minSatisfying = minSatisfying\nfunction minSatisfying (versions, range, options) {\n var min = null\n var minSV = null\n try {\n var rangeObj = new Range(range, options)\n } catch (er) {\n return null\n }\n versions.forEach(function (v) {\n if (rangeObj.test(v)) {\n // satisfies(v, range, options)\n if (!min || minSV.compare(v) === 1) {\n // compare(min, v, true)\n min = v\n minSV = new SemVer(min, options)\n }\n }\n })\n return min\n}\n\nexports.minVersion = minVersion\nfunction minVersion (range, loose) {\n range = new Range(range, loose)\n\n var minver = new SemVer('0.0.0')\n if (range.test(minver)) {\n return minver\n }\n\n minver = new SemVer('0.0.0-0')\n if (range.test(minver)) {\n return minver\n }\n\n minver = null\n for (var i = 0; i < range.set.length; ++i) {\n var comparators = range.set[i]\n\n comparators.forEach(function (comparator) {\n // Clone to avoid manipulating the comparator's semver object.\n var compver = new SemVer(comparator.semver.version)\n switch (comparator.operator) {\n case '>':\n if (compver.prerelease.length === 0) {\n compver.patch++\n } else {\n compver.prerelease.push(0)\n }\n compver.raw = compver.format()\n /* fallthrough */\n case '':\n case '>=':\n if (!minver || gt(minver, compver)) {\n minver = compver\n }\n break\n case '<':\n case '<=':\n /* Ignore maximum versions */\n break\n /* istanbul ignore next */\n default:\n throw new Error('Unexpected operation: ' + comparator.operator)\n }\n })\n }\n\n if (minver && range.test(minver)) {\n return minver\n }\n\n return null\n}\n\nexports.validRange = validRange\nfunction validRange (range, options) {\n try {\n // Return '*' instead of '' so that truthiness works.\n // This will throw if it's invalid anyway\n return new Range(range, options).range || '*'\n } catch (er) {\n return null\n }\n}\n\n// Determine if version is less than all the versions possible in the range\nexports.ltr = ltr\nfunction ltr (version, range, options) {\n return outside(version, range, '<', options)\n}\n\n// Determine if version is greater than all the versions possible in the range.\nexports.gtr = gtr\nfunction gtr (version, range, options) {\n return outside(version, range, '>', options)\n}\n\nexports.outside = outside\nfunction outside (version, range, hilo, options) {\n version = new SemVer(version, options)\n range = new Range(range, options)\n\n var gtfn, ltefn, ltfn, comp, ecomp\n switch (hilo) {\n case '>':\n gtfn = gt\n ltefn = lte\n ltfn = lt\n comp = '>'\n ecomp = '>='\n break\n case '<':\n gtfn = lt\n ltefn = gte\n ltfn = gt\n comp = '<'\n ecomp = '<='\n break\n default:\n throw new TypeError('Must provide a hilo val of \"<\" or \">\"')\n }\n\n // If it satisifes the range it is not outside\n if (satisfies(version, range, options)) {\n return false\n }\n\n // From now on, variable terms are as if we're in \"gtr\" mode.\n // but note that everything is flipped for the \"ltr\" function.\n\n for (var i = 0; i < range.set.length; ++i) {\n var comparators = range.set[i]\n\n var high = null\n var low = null\n\n comparators.forEach(function (comparator) {\n if (comparator.semver === ANY) {\n comparator = new Comparator('>=0.0.0')\n }\n high = high || comparator\n low = low || comparator\n if (gtfn(comparator.semver, high.semver, options)) {\n high = comparator\n } else if (ltfn(comparator.semver, low.semver, options)) {\n low = comparator\n }\n })\n\n // If the edge version comparator has a operator then our version\n // isn't outside it\n if (high.operator === comp || high.operator === ecomp) {\n return false\n }\n\n // If the lowest version comparator has an operator and our version\n // is less than it then it isn't higher than the range\n if ((!low.operator || low.operator === comp) &&\n ltefn(version, low.semver)) {\n return false\n } else if (low.operator === ecomp && ltfn(version, low.semver)) {\n return false\n }\n }\n return true\n}\n\nexports.prerelease = prerelease\nfunction prerelease (version, options) {\n var parsed = parse(version, options)\n return (parsed && parsed.prerelease.length) ? parsed.prerelease : null\n}\n\nexports.intersects = intersects\nfunction intersects (r1, r2, options) {\n r1 = new Range(r1, options)\n r2 = new Range(r2, options)\n return r1.intersects(r2)\n}\n\nexports.coerce = coerce\nfunction coerce (version, options) {\n if (version instanceof SemVer) {\n return version\n }\n\n if (typeof version === 'number') {\n version = String(version)\n }\n\n if (typeof version !== 'string') {\n return null\n }\n\n options = options || {}\n\n var match = null\n if (!options.rtl) {\n match = version.match(re[t.COERCE])\n } else {\n // Find the right-most coercible string that does not share\n // a terminus with a more left-ward coercible string.\n // Eg, '1.2.3.4' wants to coerce '2.3.4', not '3.4' or '4'\n //\n // Walk through the string checking with a /g regexp\n // Manually set the index so as to pick up overlapping matches.\n // Stop when we get a match that ends at the string end, since no\n // coercible string can be more right-ward without the same terminus.\n var next\n while ((next = re[t.COERCERTL].exec(version)) &&\n (!match || match.index + match[0].length !== version.length)\n ) {\n if (!match ||\n next.index + next[0].length !== match.index + match[0].length) {\n match = next\n }\n re[t.COERCERTL].lastIndex = next.index + next[1].length + next[2].length\n }\n // leave it in a clean state\n re[t.COERCERTL].lastIndex = -1\n }\n\n if (match === null) {\n return null\n }\n\n return parse(match[2] +\n '.' + (match[3] || '0') +\n '.' + (match[4] || '0'), options)\n}\n","\"use strict\";\n\nrequire(\"core-js/modules/es.array.concat\");\n\nrequire(\"core-js/modules/es.array.filter\");\n\nrequire(\"core-js/modules/es.array.iterator\");\n\nrequire(\"core-js/modules/es.map\");\n\nrequire(\"core-js/modules/es.object.to-string\");\n\nrequire(\"core-js/modules/es.string.iterator\");\n\nrequire(\"core-js/modules/web.dom-collections.for-each\");\n\nrequire(\"core-js/modules/web.dom-collections.iterator\");\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.SimpleBus = void 0;\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nfunction _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }\n\nfunction _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }\n\nfunction _defineProperty(obj, key, value) { if (key in obj) { Object.defineProperty(obj, key, { value: value, enumerable: true, configurable: true, writable: true }); } else { obj[key] = value; } return obj; }\n\nvar packageJson = {\n name: \"@nextcloud/event-bus\",\n version: \"1.1.2\",\n description: \"\",\n main: \"dist/index.js\",\n types: \"dist/index.d.ts\",\n scripts: {\n build: \"babel ./lib --out-dir dist --extensions '.ts,.tsx' --source-maps && tsc --emitDeclarationOnly\",\n \"build:doc\": \"typedoc --excludeNotExported --mode file --out dist/doc lib/index.ts && touch dist/doc/.nojekyll\",\n \"check-types\": \"tsc\",\n dev: \"babel ./lib --out-dir dist --extensions '.ts,.tsx' --watch\",\n test: \"jest\",\n \"test:watch\": \"jest --watchAll\"\n },\n keywords: [\"nextcloud\"],\n homepage: \"https://github.com/nextcloud/nextcloud-event-bus#readme\",\n author: \"Christoph Wurst\",\n license: \"GPL-3.0-or-later\",\n repository: {\n type: \"git\",\n url: \"https://github.com/nextcloud/nextcloud-event-bus\"\n },\n dependencies: {\n \"@types/semver\": \"^6.2.0\",\n \"core-js\": \"^3.6.2\",\n semver: \"^6.3.0\"\n },\n devDependencies: {\n \"@babel/cli\": \"^7.6.0\",\n \"@babel/core\": \"^7.6.0\",\n \"@babel/plugin-proposal-class-properties\": \"^7.5.5\",\n \"@babel/preset-env\": \"^7.6.0\",\n \"@babel/preset-typescript\": \"^7.6.0\",\n \"@nextcloud/browserslist-config\": \"^1.0.0\",\n \"babel-jest\": \"^24.9.0\",\n \"babel-plugin-inline-json-import\": \"^0.3.2\",\n jest: \"^24.9.0\",\n typedoc: \"^0.15.7\",\n typescript: \"^3.6.3\"\n },\n browserslist: [\"extends @nextcloud/browserslist-config\"]\n};\n\nvar SimpleBus =\n/*#__PURE__*/\nfunction () {\n function SimpleBus() {\n _classCallCheck(this, SimpleBus);\n\n _defineProperty(this, \"handlers\", new Map());\n }\n\n _createClass(SimpleBus, [{\n key: \"getVersion\",\n value: function getVersion() {\n return packageJson.version;\n }\n }, {\n key: \"subscribe\",\n value: function subscribe(name, handler) {\n this.handlers.set(name, (this.handlers.get(name) || []).concat(handler));\n }\n }, {\n key: \"unsubscribe\",\n value: function unsubscribe(name, handler) {\n this.handlers.set(name, (this.handlers.get(name) || []).filter(function (h) {\n return h != handler;\n }));\n }\n }, {\n key: \"emit\",\n value: function emit(name, event) {\n (this.handlers.get(name) || []).forEach(function (h) {\n try {\n h(event);\n } catch (e) {\n console.error('could not invoke event listener', e);\n }\n });\n }\n }]);\n\n return SimpleBus;\n}();\n\nexports.SimpleBus = SimpleBus;\n//# sourceMappingURL=SimpleBus.js.map","'use strict';\nvar $ = require('../internals/export');\nvar fails = require('../internals/fails');\nvar isArray = require('../internals/is-array');\nvar isObject = require('../internals/is-object');\nvar toObject = require('../internals/to-object');\nvar toLength = require('../internals/to-length');\nvar createProperty = require('../internals/create-property');\nvar arraySpeciesCreate = require('../internals/array-species-create');\nvar arrayMethodHasSpeciesSupport = require('../internals/array-method-has-species-support');\nvar wellKnownSymbol = require('../internals/well-known-symbol');\nvar V8_VERSION = require('../internals/engine-v8-version');\n\nvar IS_CONCAT_SPREADABLE = wellKnownSymbol('isConcatSpreadable');\nvar MAX_SAFE_INTEGER = 0x1FFFFFFFFFFFFF;\nvar MAXIMUM_ALLOWED_INDEX_EXCEEDED = 'Maximum allowed index exceeded';\n\n// We can't use this feature detection in V8 since it causes\n// deoptimization and serious performance degradation\n// https://github.com/zloirock/core-js/issues/679\nvar IS_CONCAT_SPREADABLE_SUPPORT = V8_VERSION >= 51 || !fails(function () {\n var array = [];\n array[IS_CONCAT_SPREADABLE] = false;\n return array.concat()[0] !== array;\n});\n\nvar SPECIES_SUPPORT = arrayMethodHasSpeciesSupport('concat');\n\nvar isConcatSpreadable = function (O) {\n if (!isObject(O)) return false;\n var spreadable = O[IS_CONCAT_SPREADABLE];\n return spreadable !== undefined ? !!spreadable : isArray(O);\n};\n\nvar FORCED = !IS_CONCAT_SPREADABLE_SUPPORT || !SPECIES_SUPPORT;\n\n// `Array.prototype.concat` method\n// https://tc39.github.io/ecma262/#sec-array.prototype.concat\n// with adding support of @@isConcatSpreadable and @@species\n$({ target: 'Array', proto: true, forced: FORCED }, {\n concat: function concat(arg) { // eslint-disable-line no-unused-vars\n var O = toObject(this);\n var A = arraySpeciesCreate(O, 0);\n var n = 0;\n var i, k, length, len, E;\n for (i = -1, length = arguments.length; i < length; i++) {\n E = i === -1 ? O : arguments[i];\n if (isConcatSpreadable(E)) {\n len = toLength(E.length);\n if (n + len > MAX_SAFE_INTEGER) throw TypeError(MAXIMUM_ALLOWED_INDEX_EXCEEDED);\n for (k = 0; k < len; k++, n++) if (k in E) createProperty(A, n, E[k]);\n } else {\n if (n >= MAX_SAFE_INTEGER) throw TypeError(MAXIMUM_ALLOWED_INDEX_EXCEEDED);\n createProperty(A, n++, E);\n }\n }\n A.length = n;\n return A;\n }\n});\n","'use strict';\nvar toPrimitive = require('../internals/to-primitive');\nvar definePropertyModule = require('../internals/object-define-property');\nvar createPropertyDescriptor = require('../internals/create-property-descriptor');\n\nmodule.exports = function (object, key, value) {\n var propertyKey = toPrimitive(key);\n if (propertyKey in object) definePropertyModule.f(object, propertyKey, createPropertyDescriptor(0, value));\n else object[propertyKey] = value;\n};\n","var NATIVE_SYMBOL = require('../internals/native-symbol');\n\nmodule.exports = NATIVE_SYMBOL\n // eslint-disable-next-line no-undef\n && !Symbol.sham\n // eslint-disable-next-line no-undef\n && typeof Symbol.iterator == 'symbol';\n","var getBuiltIn = require('../internals/get-built-in');\n\nmodule.exports = getBuiltIn('navigator', 'userAgent') || '';\n","'use strict';\nvar $ = require('../internals/export');\nvar $filter = require('../internals/array-iteration').filter;\nvar arrayMethodHasSpeciesSupport = require('../internals/array-method-has-species-support');\nvar arrayMethodUsesToLength = require('../internals/array-method-uses-to-length');\n\nvar HAS_SPECIES_SUPPORT = arrayMethodHasSpeciesSupport('filter');\n// Edge 14- issue\nvar USES_TO_LENGTH = arrayMethodUsesToLength('filter');\n\n// `Array.prototype.filter` method\n// https://tc39.github.io/ecma262/#sec-array.prototype.filter\n// with adding support of @@species\n$({ target: 'Array', proto: true, forced: !HAS_SPECIES_SUPPORT || !USES_TO_LENGTH }, {\n filter: function filter(callbackfn /* , thisArg */) {\n return $filter(this, callbackfn, arguments.length > 1 ? arguments[1] : undefined);\n }\n});\n","module.exports = function (it) {\n if (typeof it != 'function') {\n throw TypeError(String(it) + ' is not a function');\n } return it;\n};\n","var wellKnownSymbol = require('../internals/well-known-symbol');\nvar create = require('../internals/object-create');\nvar definePropertyModule = require('../internals/object-define-property');\n\nvar UNSCOPABLES = wellKnownSymbol('unscopables');\nvar ArrayPrototype = Array.prototype;\n\n// Array.prototype[@@unscopables]\n// https://tc39.github.io/ecma262/#sec-array.prototype-@@unscopables\nif (ArrayPrototype[UNSCOPABLES] == undefined) {\n definePropertyModule.f(ArrayPrototype, UNSCOPABLES, {\n configurable: true,\n value: create(null)\n });\n}\n\n// add a key to Array.prototype[@@unscopables]\nmodule.exports = function (key) {\n ArrayPrototype[UNSCOPABLES][key] = true;\n};\n","var DESCRIPTORS = require('../internals/descriptors');\nvar definePropertyModule = require('../internals/object-define-property');\nvar anObject = require('../internals/an-object');\nvar objectKeys = require('../internals/object-keys');\n\n// `Object.defineProperties` method\n// https://tc39.github.io/ecma262/#sec-object.defineproperties\nmodule.exports = DESCRIPTORS ? Object.defineProperties : function defineProperties(O, Properties) {\n anObject(O);\n var keys = objectKeys(Properties);\n var length = keys.length;\n var index = 0;\n var key;\n while (length > index) definePropertyModule.f(O, key = keys[index++], Properties[key]);\n return O;\n};\n","var getBuiltIn = require('../internals/get-built-in');\n\nmodule.exports = getBuiltIn('document', 'documentElement');\n","'use strict';\nvar IteratorPrototype = require('../internals/iterators-core').IteratorPrototype;\nvar create = require('../internals/object-create');\nvar createPropertyDescriptor = require('../internals/create-property-descriptor');\nvar setToStringTag = require('../internals/set-to-string-tag');\nvar Iterators = require('../internals/iterators');\n\nvar returnThis = function () { return this; };\n\nmodule.exports = function (IteratorConstructor, NAME, next) {\n var TO_STRING_TAG = NAME + ' Iterator';\n IteratorConstructor.prototype = create(IteratorPrototype, { next: createPropertyDescriptor(1, next) });\n setToStringTag(IteratorConstructor, TO_STRING_TAG, false, true);\n Iterators[TO_STRING_TAG] = returnThis;\n return IteratorConstructor;\n};\n","var fails = require('../internals/fails');\n\nmodule.exports = !fails(function () {\n function F() { /* empty */ }\n F.prototype.constructor = null;\n return Object.getPrototypeOf(new F()) !== F.prototype;\n});\n","var isObject = require('../internals/is-object');\n\nmodule.exports = function (it) {\n if (!isObject(it) && it !== null) {\n throw TypeError(\"Can't set \" + String(it) + ' as a prototype');\n } return it;\n};\n","'use strict';\nvar collection = require('../internals/collection');\nvar collectionStrong = require('../internals/collection-strong');\n\n// `Map` constructor\n// https://tc39.github.io/ecma262/#sec-map-objects\nmodule.exports = collection('Map', function (init) {\n return function Map() { return init(this, arguments.length ? arguments[0] : undefined); };\n}, collectionStrong);\n","'use strict';\nvar $ = require('../internals/export');\nvar global = require('../internals/global');\nvar isForced = require('../internals/is-forced');\nvar redefine = require('../internals/redefine');\nvar InternalMetadataModule = require('../internals/internal-metadata');\nvar iterate = require('../internals/iterate');\nvar anInstance = require('../internals/an-instance');\nvar isObject = require('../internals/is-object');\nvar fails = require('../internals/fails');\nvar checkCorrectnessOfIteration = require('../internals/check-correctness-of-iteration');\nvar setToStringTag = require('../internals/set-to-string-tag');\nvar inheritIfRequired = require('../internals/inherit-if-required');\n\nmodule.exports = function (CONSTRUCTOR_NAME, wrapper, common) {\n var IS_MAP = CONSTRUCTOR_NAME.indexOf('Map') !== -1;\n var IS_WEAK = CONSTRUCTOR_NAME.indexOf('Weak') !== -1;\n var ADDER = IS_MAP ? 'set' : 'add';\n var NativeConstructor = global[CONSTRUCTOR_NAME];\n var NativePrototype = NativeConstructor && NativeConstructor.prototype;\n var Constructor = NativeConstructor;\n var exported = {};\n\n var fixMethod = function (KEY) {\n var nativeMethod = NativePrototype[KEY];\n redefine(NativePrototype, KEY,\n KEY == 'add' ? function add(value) {\n nativeMethod.call(this, value === 0 ? 0 : value);\n return this;\n } : KEY == 'delete' ? function (key) {\n return IS_WEAK && !isObject(key) ? false : nativeMethod.call(this, key === 0 ? 0 : key);\n } : KEY == 'get' ? function get(key) {\n return IS_WEAK && !isObject(key) ? undefined : nativeMethod.call(this, key === 0 ? 0 : key);\n } : KEY == 'has' ? function has(key) {\n return IS_WEAK && !isObject(key) ? false : nativeMethod.call(this, key === 0 ? 0 : key);\n } : function set(key, value) {\n nativeMethod.call(this, key === 0 ? 0 : key, value);\n return this;\n }\n );\n };\n\n // eslint-disable-next-line max-len\n if (isForced(CONSTRUCTOR_NAME, typeof NativeConstructor != 'function' || !(IS_WEAK || NativePrototype.forEach && !fails(function () {\n new NativeConstructor().entries().next();\n })))) {\n // create collection constructor\n Constructor = common.getConstructor(wrapper, CONSTRUCTOR_NAME, IS_MAP, ADDER);\n InternalMetadataModule.REQUIRED = true;\n } else if (isForced(CONSTRUCTOR_NAME, true)) {\n var instance = new Constructor();\n // early implementations not supports chaining\n var HASNT_CHAINING = instance[ADDER](IS_WEAK ? {} : -0, 1) != instance;\n // V8 ~ Chromium 40- weak-collections throws on primitives, but should return false\n var THROWS_ON_PRIMITIVES = fails(function () { instance.has(1); });\n // most early implementations doesn't supports iterables, most modern - not close it correctly\n // eslint-disable-next-line no-new\n var ACCEPT_ITERABLES = checkCorrectnessOfIteration(function (iterable) { new NativeConstructor(iterable); });\n // for early implementations -0 and +0 not the same\n var BUGGY_ZERO = !IS_WEAK && fails(function () {\n // V8 ~ Chromium 42- fails only with 5+ elements\n var $instance = new NativeConstructor();\n var index = 5;\n while (index--) $instance[ADDER](index, index);\n return !$instance.has(-0);\n });\n\n if (!ACCEPT_ITERABLES) {\n Constructor = wrapper(function (dummy, iterable) {\n anInstance(dummy, Constructor, CONSTRUCTOR_NAME);\n var that = inheritIfRequired(new NativeConstructor(), dummy, Constructor);\n if (iterable != undefined) iterate(iterable, that[ADDER], that, IS_MAP);\n return that;\n });\n Constructor.prototype = NativePrototype;\n NativePrototype.constructor = Constructor;\n }\n\n if (THROWS_ON_PRIMITIVES || BUGGY_ZERO) {\n fixMethod('delete');\n fixMethod('has');\n IS_MAP && fixMethod('get');\n }\n\n if (BUGGY_ZERO || HASNT_CHAINING) fixMethod(ADDER);\n\n // weak collections should not contains .clear method\n if (IS_WEAK && NativePrototype.clear) delete NativePrototype.clear;\n }\n\n exported[CONSTRUCTOR_NAME] = Constructor;\n $({ global: true, forced: Constructor != NativeConstructor }, exported);\n\n setToStringTag(Constructor, CONSTRUCTOR_NAME);\n\n if (!IS_WEAK) common.setStrong(Constructor, CONSTRUCTOR_NAME, IS_MAP);\n\n return Constructor;\n};\n","var fails = require('../internals/fails');\n\nmodule.exports = !fails(function () {\n return Object.isExtensible(Object.preventExtensions({}));\n});\n","var wellKnownSymbol = require('../internals/well-known-symbol');\nvar Iterators = require('../internals/iterators');\n\nvar ITERATOR = wellKnownSymbol('iterator');\nvar ArrayPrototype = Array.prototype;\n\n// check on default Array iterator\nmodule.exports = function (it) {\n return it !== undefined && (Iterators.Array === it || ArrayPrototype[ITERATOR] === it);\n};\n","var classof = require('../internals/classof');\nvar Iterators = require('../internals/iterators');\nvar wellKnownSymbol = require('../internals/well-known-symbol');\n\nvar ITERATOR = wellKnownSymbol('iterator');\n\nmodule.exports = function (it) {\n if (it != undefined) return it[ITERATOR]\n || it['@@iterator']\n || Iterators[classof(it)];\n};\n","var anObject = require('../internals/an-object');\n\n// call something on iterator step with safe closing on error\nmodule.exports = function (iterator, fn, value, ENTRIES) {\n try {\n return ENTRIES ? fn(anObject(value)[0], value[1]) : fn(value);\n // 7.4.6 IteratorClose(iterator, completion)\n } catch (error) {\n var returnMethod = iterator['return'];\n if (returnMethod !== undefined) anObject(returnMethod.call(iterator));\n throw error;\n }\n};\n","var wellKnownSymbol = require('../internals/well-known-symbol');\n\nvar ITERATOR = wellKnownSymbol('iterator');\nvar SAFE_CLOSING = false;\n\ntry {\n var called = 0;\n var iteratorWithReturn = {\n next: function () {\n return { done: !!called++ };\n },\n 'return': function () {\n SAFE_CLOSING = true;\n }\n };\n iteratorWithReturn[ITERATOR] = function () {\n return this;\n };\n // eslint-disable-next-line no-throw-literal\n Array.from(iteratorWithReturn, function () { throw 2; });\n} catch (error) { /* empty */ }\n\nmodule.exports = function (exec, SKIP_CLOSING) {\n if (!SKIP_CLOSING && !SAFE_CLOSING) return false;\n var ITERATION_SUPPORT = false;\n try {\n var object = {};\n object[ITERATOR] = function () {\n return {\n next: function () {\n return { done: ITERATION_SUPPORT = true };\n }\n };\n };\n exec(object);\n } catch (error) { /* empty */ }\n return ITERATION_SUPPORT;\n};\n","var isObject = require('../internals/is-object');\nvar setPrototypeOf = require('../internals/object-set-prototype-of');\n\n// makes subclassing work correct for wrapped built-ins\nmodule.exports = function ($this, dummy, Wrapper) {\n var NewTarget, NewTargetPrototype;\n if (\n // it can work only with native `setPrototypeOf`\n setPrototypeOf &&\n // we haven't completely correct pre-ES6 way for getting `new.target`, so use this\n typeof (NewTarget = dummy.constructor) == 'function' &&\n NewTarget !== Wrapper &&\n isObject(NewTargetPrototype = NewTarget.prototype) &&\n NewTargetPrototype !== Wrapper.prototype\n ) setPrototypeOf($this, NewTargetPrototype);\n return $this;\n};\n","'use strict';\nvar defineProperty = require('../internals/object-define-property').f;\nvar create = require('../internals/object-create');\nvar redefineAll = require('../internals/redefine-all');\nvar bind = require('../internals/function-bind-context');\nvar anInstance = require('../internals/an-instance');\nvar iterate = require('../internals/iterate');\nvar defineIterator = require('../internals/define-iterator');\nvar setSpecies = require('../internals/set-species');\nvar DESCRIPTORS = require('../internals/descriptors');\nvar fastKey = require('../internals/internal-metadata').fastKey;\nvar InternalStateModule = require('../internals/internal-state');\n\nvar setInternalState = InternalStateModule.set;\nvar internalStateGetterFor = InternalStateModule.getterFor;\n\nmodule.exports = {\n getConstructor: function (wrapper, CONSTRUCTOR_NAME, IS_MAP, ADDER) {\n var C = wrapper(function (that, iterable) {\n anInstance(that, C, CONSTRUCTOR_NAME);\n setInternalState(that, {\n type: CONSTRUCTOR_NAME,\n index: create(null),\n first: undefined,\n last: undefined,\n size: 0\n });\n if (!DESCRIPTORS) that.size = 0;\n if (iterable != undefined) iterate(iterable, that[ADDER], that, IS_MAP);\n });\n\n var getInternalState = internalStateGetterFor(CONSTRUCTOR_NAME);\n\n var define = function (that, key, value) {\n var state = getInternalState(that);\n var entry = getEntry(that, key);\n var previous, index;\n // change existing entry\n if (entry) {\n entry.value = value;\n // create new entry\n } else {\n state.last = entry = {\n index: index = fastKey(key, true),\n key: key,\n value: value,\n previous: previous = state.last,\n next: undefined,\n removed: false\n };\n if (!state.first) state.first = entry;\n if (previous) previous.next = entry;\n if (DESCRIPTORS) state.size++;\n else that.size++;\n // add to index\n if (index !== 'F') state.index[index] = entry;\n } return that;\n };\n\n var getEntry = function (that, key) {\n var state = getInternalState(that);\n // fast case\n var index = fastKey(key);\n var entry;\n if (index !== 'F') return state.index[index];\n // frozen object case\n for (entry = state.first; entry; entry = entry.next) {\n if (entry.key == key) return entry;\n }\n };\n\n redefineAll(C.prototype, {\n // 23.1.3.1 Map.prototype.clear()\n // 23.2.3.2 Set.prototype.clear()\n clear: function clear() {\n var that = this;\n var state = getInternalState(that);\n var data = state.index;\n var entry = state.first;\n while (entry) {\n entry.removed = true;\n if (entry.previous) entry.previous = entry.previous.next = undefined;\n delete data[entry.index];\n entry = entry.next;\n }\n state.first = state.last = undefined;\n if (DESCRIPTORS) state.size = 0;\n else that.size = 0;\n },\n // 23.1.3.3 Map.prototype.delete(key)\n // 23.2.3.4 Set.prototype.delete(value)\n 'delete': function (key) {\n var that = this;\n var state = getInternalState(that);\n var entry = getEntry(that, key);\n if (entry) {\n var next = entry.next;\n var prev = entry.previous;\n delete state.index[entry.index];\n entry.removed = true;\n if (prev) prev.next = next;\n if (next) next.previous = prev;\n if (state.first == entry) state.first = next;\n if (state.last == entry) state.last = prev;\n if (DESCRIPTORS) state.size--;\n else that.size--;\n } return !!entry;\n },\n // 23.2.3.6 Set.prototype.forEach(callbackfn, thisArg = undefined)\n // 23.1.3.5 Map.prototype.forEach(callbackfn, thisArg = undefined)\n forEach: function forEach(callbackfn /* , that = undefined */) {\n var state = getInternalState(this);\n var boundFunction = bind(callbackfn, arguments.length > 1 ? arguments[1] : undefined, 3);\n var entry;\n while (entry = entry ? entry.next : state.first) {\n boundFunction(entry.value, entry.key, this);\n // revert to the last existing entry\n while (entry && entry.removed) entry = entry.previous;\n }\n },\n // 23.1.3.7 Map.prototype.has(key)\n // 23.2.3.7 Set.prototype.has(value)\n has: function has(key) {\n return !!getEntry(this, key);\n }\n });\n\n redefineAll(C.prototype, IS_MAP ? {\n // 23.1.3.6 Map.prototype.get(key)\n get: function get(key) {\n var entry = getEntry(this, key);\n return entry && entry.value;\n },\n // 23.1.3.9 Map.prototype.set(key, value)\n set: function set(key, value) {\n return define(this, key === 0 ? 0 : key, value);\n }\n } : {\n // 23.2.3.1 Set.prototype.add(value)\n add: function add(value) {\n return define(this, value = value === 0 ? 0 : value, value);\n }\n });\n if (DESCRIPTORS) defineProperty(C.prototype, 'size', {\n get: function () {\n return getInternalState(this).size;\n }\n });\n return C;\n },\n setStrong: function (C, CONSTRUCTOR_NAME, IS_MAP) {\n var ITERATOR_NAME = CONSTRUCTOR_NAME + ' Iterator';\n var getInternalCollectionState = internalStateGetterFor(CONSTRUCTOR_NAME);\n var getInternalIteratorState = internalStateGetterFor(ITERATOR_NAME);\n // add .keys, .values, .entries, [@@iterator]\n // 23.1.3.4, 23.1.3.8, 23.1.3.11, 23.1.3.12, 23.2.3.5, 23.2.3.8, 23.2.3.10, 23.2.3.11\n defineIterator(C, CONSTRUCTOR_NAME, function (iterated, kind) {\n setInternalState(this, {\n type: ITERATOR_NAME,\n target: iterated,\n state: getInternalCollectionState(iterated),\n kind: kind,\n last: undefined\n });\n }, function () {\n var state = getInternalIteratorState(this);\n var kind = state.kind;\n var entry = state.last;\n // revert to the last existing entry\n while (entry && entry.removed) entry = entry.previous;\n // get next entry\n if (!state.target || !(state.last = entry = entry ? entry.next : state.state.first)) {\n // or finish the iteration\n state.target = undefined;\n return { value: undefined, done: true };\n }\n // return step by kind\n if (kind == 'keys') return { value: entry.key, done: false };\n if (kind == 'values') return { value: entry.value, done: false };\n return { value: [entry.key, entry.value], done: false };\n }, IS_MAP ? 'entries' : 'values', !IS_MAP, true);\n\n // add [@@species], 23.1.2.2, 23.2.2.2\n setSpecies(CONSTRUCTOR_NAME);\n }\n};\n","var redefine = require('../internals/redefine');\n\nmodule.exports = function (target, src, options) {\n for (var key in src) redefine(target, key, src[key], options);\n return target;\n};\n","'use strict';\nvar getBuiltIn = require('../internals/get-built-in');\nvar definePropertyModule = require('../internals/object-define-property');\nvar wellKnownSymbol = require('../internals/well-known-symbol');\nvar DESCRIPTORS = require('../internals/descriptors');\n\nvar SPECIES = wellKnownSymbol('species');\n\nmodule.exports = function (CONSTRUCTOR_NAME) {\n var Constructor = getBuiltIn(CONSTRUCTOR_NAME);\n var defineProperty = definePropertyModule.f;\n\n if (DESCRIPTORS && Constructor && !Constructor[SPECIES]) {\n defineProperty(Constructor, SPECIES, {\n configurable: true,\n get: function () { return this; }\n });\n }\n};\n","var TO_STRING_TAG_SUPPORT = require('../internals/to-string-tag-support');\nvar redefine = require('../internals/redefine');\nvar toString = require('../internals/object-to-string');\n\n// `Object.prototype.toString` method\n// https://tc39.github.io/ecma262/#sec-object.prototype.tostring\nif (!TO_STRING_TAG_SUPPORT) {\n redefine(Object.prototype, 'toString', toString, { unsafe: true });\n}\n","'use strict';\nvar TO_STRING_TAG_SUPPORT = require('../internals/to-string-tag-support');\nvar classof = require('../internals/classof');\n\n// `Object.prototype.toString` method implementation\n// https://tc39.github.io/ecma262/#sec-object.prototype.tostring\nmodule.exports = TO_STRING_TAG_SUPPORT ? {}.toString : function toString() {\n return '[object ' + classof(this) + ']';\n};\n","'use strict';\nvar charAt = require('../internals/string-multibyte').charAt;\nvar InternalStateModule = require('../internals/internal-state');\nvar defineIterator = require('../internals/define-iterator');\n\nvar STRING_ITERATOR = 'String Iterator';\nvar setInternalState = InternalStateModule.set;\nvar getInternalState = InternalStateModule.getterFor(STRING_ITERATOR);\n\n// `String.prototype[@@iterator]` method\n// https://tc39.github.io/ecma262/#sec-string.prototype-@@iterator\ndefineIterator(String, 'String', function (iterated) {\n setInternalState(this, {\n type: STRING_ITERATOR,\n string: String(iterated),\n index: 0\n });\n// `%StringIteratorPrototype%.next` method\n// https://tc39.github.io/ecma262/#sec-%stringiteratorprototype%.next\n}, function next() {\n var state = getInternalState(this);\n var string = state.string;\n var index = state.index;\n var point;\n if (index >= string.length) return { value: undefined, done: true };\n point = charAt(string, index);\n state.index += point.length;\n return { value: point, done: false };\n});\n","var toInteger = require('../internals/to-integer');\nvar requireObjectCoercible = require('../internals/require-object-coercible');\n\n// `String.prototype.{ codePointAt, at }` methods implementation\nvar createMethod = function (CONVERT_TO_STRING) {\n return function ($this, pos) {\n var S = String(requireObjectCoercible($this));\n var position = toInteger(pos);\n var size = S.length;\n var first, second;\n if (position < 0 || position >= size) return CONVERT_TO_STRING ? '' : undefined;\n first = S.charCodeAt(position);\n return first < 0xD800 || first > 0xDBFF || position + 1 === size\n || (second = S.charCodeAt(position + 1)) < 0xDC00 || second > 0xDFFF\n ? CONVERT_TO_STRING ? S.charAt(position) : first\n : CONVERT_TO_STRING ? S.slice(position, position + 2) : (first - 0xD800 << 10) + (second - 0xDC00) + 0x10000;\n };\n};\n\nmodule.exports = {\n // `String.prototype.codePointAt` method\n // https://tc39.github.io/ecma262/#sec-string.prototype.codepointat\n codeAt: createMethod(false),\n // `String.prototype.at` method\n // https://github.com/mathiasbynens/String.prototype.at\n charAt: createMethod(true)\n};\n","var global = require('../internals/global');\nvar DOMIterables = require('../internals/dom-iterables');\nvar forEach = require('../internals/array-for-each');\nvar createNonEnumerableProperty = require('../internals/create-non-enumerable-property');\n\nfor (var COLLECTION_NAME in DOMIterables) {\n var Collection = global[COLLECTION_NAME];\n var CollectionPrototype = Collection && Collection.prototype;\n // some Chrome versions have non-configurable methods on DOMTokenList\n if (CollectionPrototype && CollectionPrototype.forEach !== forEach) try {\n createNonEnumerableProperty(CollectionPrototype, 'forEach', forEach);\n } catch (error) {\n CollectionPrototype.forEach = forEach;\n }\n}\n","'use strict';\nvar $forEach = require('../internals/array-iteration').forEach;\nvar arrayMethodIsStrict = require('../internals/array-method-is-strict');\nvar arrayMethodUsesToLength = require('../internals/array-method-uses-to-length');\n\nvar STRICT_METHOD = arrayMethodIsStrict('forEach');\nvar USES_TO_LENGTH = arrayMethodUsesToLength('forEach');\n\n// `Array.prototype.forEach` method implementation\n// https://tc39.github.io/ecma262/#sec-array.prototype.foreach\nmodule.exports = (!STRICT_METHOD || !USES_TO_LENGTH) ? function forEach(callbackfn /* , thisArg */) {\n return $forEach(this, callbackfn, arguments.length > 1 ? arguments[1] : undefined);\n} : [].forEach;\n","'use strict';\nvar fails = require('../internals/fails');\n\nmodule.exports = function (METHOD_NAME, argument) {\n var method = [][METHOD_NAME];\n return !!method && fails(function () {\n // eslint-disable-next-line no-useless-call,no-throw-literal\n method.call(null, argument || function () { throw 1; }, 1);\n });\n};\n","var global = require('../internals/global');\nvar DOMIterables = require('../internals/dom-iterables');\nvar ArrayIteratorMethods = require('../modules/es.array.iterator');\nvar createNonEnumerableProperty = require('../internals/create-non-enumerable-property');\nvar wellKnownSymbol = require('../internals/well-known-symbol');\n\nvar ITERATOR = wellKnownSymbol('iterator');\nvar TO_STRING_TAG = wellKnownSymbol('toStringTag');\nvar ArrayValues = ArrayIteratorMethods.values;\n\nfor (var COLLECTION_NAME in DOMIterables) {\n var Collection = global[COLLECTION_NAME];\n var CollectionPrototype = Collection && Collection.prototype;\n if (CollectionPrototype) {\n // some Chrome versions have non-configurable methods on DOMTokenList\n if (CollectionPrototype[ITERATOR] !== ArrayValues) try {\n createNonEnumerableProperty(CollectionPrototype, ITERATOR, ArrayValues);\n } catch (error) {\n CollectionPrototype[ITERATOR] = ArrayValues;\n }\n if (!CollectionPrototype[TO_STRING_TAG]) {\n createNonEnumerableProperty(CollectionPrototype, TO_STRING_TAG, COLLECTION_NAME);\n }\n if (DOMIterables[COLLECTION_NAME]) for (var METHOD_NAME in ArrayIteratorMethods) {\n // some Chrome versions have non-configurable methods on DOMTokenList\n if (CollectionPrototype[METHOD_NAME] !== ArrayIteratorMethods[METHOD_NAME]) try {\n createNonEnumerableProperty(CollectionPrototype, METHOD_NAME, ArrayIteratorMethods[METHOD_NAME]);\n } catch (error) {\n CollectionPrototype[METHOD_NAME] = ArrayIteratorMethods[METHOD_NAME];\n }\n }\n }\n}\n","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.getCurrentUser = getCurrentUser;\nvar uidElement = document.getElementsByTagName('head')[0];\nvar uid = uidElement ? uidElement.getAttribute('data-user') : null;\nvar displayNameElement = document.getElementsByTagName('head')[0];\nvar displayName = displayNameElement ? displayNameElement.getAttribute('data-user-displayname') : null;\n\nfunction getCurrentUser() {\n if (uid === null) {\n return null;\n }\n\n return {\n uid: uid,\n displayName: displayName\n };\n}\n//# sourceMappingURL=user.js.map","var fails = require('../internals/fails');\n\n// Thank's IE8 for his funny defineProperty\nmodule.exports = !fails(function () {\n return Object.defineProperty({}, 'a', { get: function () { return 7; } }).a != 7;\n});\n","var DESCRIPTORS = require('../internals/descriptors');\nvar definePropertyModule = require('../internals/object-define-property');\nvar createPropertyDescriptor = require('../internals/create-property-descriptor');\n\nmodule.exports = DESCRIPTORS ? function (object, key, value) {\n return definePropertyModule.f(object, key, createPropertyDescriptor(1, value));\n} : function (object, key, value) {\n object[key] = value;\n return object;\n};\n","var isObject = require('../internals/is-object');\n\nmodule.exports = function (it) {\n if (!isObject(it)) {\n throw TypeError(String(it) + ' is not an object');\n } return it;\n};\n","var fails = require('../internals/fails');\n\n// Thank's IE8 for his funny defineProperty\nmodule.exports = !fails(function () {\n return Object.defineProperty({}, 'a', { get: function () { return 7; } }).a != 7;\n});\n","module.exports = function (exec) {\n try {\n return !!exec();\n } catch (error) {\n return true;\n }\n};\n","var hasOwnProperty = {}.hasOwnProperty;\n\nmodule.exports = function (it, key) {\n return hasOwnProperty.call(it, key);\n};\n","// `RequireObjectCoercible` abstract operation\n// https://tc39.github.io/ecma262/#sec-requireobjectcoercible\nmodule.exports = function (it) {\n if (it == undefined) throw TypeError(\"Can't call method on \" + it);\n return it;\n};\n","module.exports = function (it) {\n return typeof it === 'object' ? it !== null : typeof it === 'function';\n};\n","var global = require('../internals/global');\nvar createNonEnumerableProperty = require('../internals/create-non-enumerable-property');\nvar has = require('../internals/has');\nvar setGlobal = require('../internals/set-global');\nvar inspectSource = require('../internals/inspect-source');\nvar InternalStateModule = require('../internals/internal-state');\n\nvar getInternalState = InternalStateModule.get;\nvar enforceInternalState = InternalStateModule.enforce;\nvar TEMPLATE = String(String).split('String');\n\n(module.exports = function (O, key, value, options) {\n var unsafe = options ? !!options.unsafe : false;\n var simple = options ? !!options.enumerable : false;\n var noTargetGet = options ? !!options.noTargetGet : false;\n if (typeof value == 'function') {\n if (typeof key == 'string' && !has(value, 'name')) createNonEnumerableProperty(value, 'name', key);\n enforceInternalState(value).source = TEMPLATE.join(typeof key == 'string' ? key : '');\n }\n if (O === global) {\n if (simple) O[key] = value;\n else setGlobal(key, value);\n return;\n } else if (!unsafe) {\n delete O[key];\n } else if (!noTargetGet && O[key]) {\n simple = true;\n }\n if (simple) O[key] = value;\n else createNonEnumerableProperty(O, key, value);\n// add fake Function#toString for correct work wrapped methods / constructors with methods like LoDash isNative\n})(Function.prototype, 'toString', function toString() {\n return typeof this == 'function' && getInternalState(this).source || inspectSource(this);\n});\n","var ceil = Math.ceil;\nvar floor = Math.floor;\n\n// `ToInteger` abstract operation\n// https://tc39.github.io/ecma262/#sec-tointeger\nmodule.exports = function (argument) {\n return isNaN(argument = +argument) ? 0 : (argument > 0 ? floor : ceil)(argument);\n};\n","module.exports = function (it) {\n return typeof it === 'object' ? it !== null : typeof it === 'function';\n};\n","var DESCRIPTORS = require('../internals/descriptors');\nvar definePropertyModule = require('../internals/object-define-property');\nvar createPropertyDescriptor = require('../internals/create-property-descriptor');\n\nmodule.exports = DESCRIPTORS ? function (object, key, value) {\n return definePropertyModule.f(object, key, createPropertyDescriptor(1, value));\n} : function (object, key, value) {\n object[key] = value;\n return object;\n};\n","// style-loader: Adds some css to the DOM by adding a <style> tag\n\n// load the styles\nvar content = require(\"!!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./RecommendedApps.vue?vue&type=style&index=0&id=26577283&lang=scss&scoped=true&\");\nif(typeof content === 'string') content = [[module.id, content, '']];\nif(content.locals) module.exports = content.locals;\n// add the styles to the DOM\nvar add = require(\"!../../../../node_modules/vue-style-loader/lib/addStylesClient.js\").default\nvar update = add(\"9a4915b8\", content, true, {});","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nObject.defineProperty(exports, \"getRequestToken\", {\n enumerable: true,\n get: function get() {\n return _requesttoken.getRequestToken;\n }\n});\nObject.defineProperty(exports, \"onRequestTokenUpdate\", {\n enumerable: true,\n get: function get() {\n return _requesttoken.onRequestTokenUpdate;\n }\n});\nObject.defineProperty(exports, \"getCurrentUser\", {\n enumerable: true,\n get: function get() {\n return _user.getCurrentUser;\n }\n});\n\nvar _requesttoken = require(\"./requesttoken\");\n\nvar _user = require(\"./user\");\n//# sourceMappingURL=index.js.map","var scope = (typeof global !== \"undefined\" && global) ||\n (typeof self !== \"undefined\" && self) ||\n window;\nvar apply = Function.prototype.apply;\n\n// DOM APIs, for completeness\n\nexports.setTimeout = function() {\n return new Timeout(apply.call(setTimeout, scope, arguments), clearTimeout);\n};\nexports.setInterval = function() {\n return new Timeout(apply.call(setInterval, scope, arguments), clearInterval);\n};\nexports.clearTimeout =\nexports.clearInterval = function(timeout) {\n if (timeout) {\n timeout.close();\n }\n};\n\nfunction Timeout(id, clearFn) {\n this._id = id;\n this._clearFn = clearFn;\n}\nTimeout.prototype.unref = Timeout.prototype.ref = function() {};\nTimeout.prototype.close = function() {\n this._clearFn.call(scope, this._id);\n};\n\n// Does not start the time, just sets up the members needed.\nexports.enroll = function(item, msecs) {\n clearTimeout(item._idleTimeoutId);\n item._idleTimeout = msecs;\n};\n\nexports.unenroll = function(item) {\n clearTimeout(item._idleTimeoutId);\n item._idleTimeout = -1;\n};\n\nexports._unrefActive = exports.active = function(item) {\n clearTimeout(item._idleTimeoutId);\n\n var msecs = item._idleTimeout;\n if (msecs >= 0) {\n item._idleTimeoutId = setTimeout(function onTimeout() {\n if (item._onTimeout)\n item._onTimeout();\n }, msecs);\n }\n};\n\n// setimmediate attaches itself to the global object\nrequire(\"setimmediate\");\n// On some exotic environments, it's not clear which object `setimmediate` was\n// able to install onto. Search each possibility in the same order as the\n// `setimmediate` library.\nexports.setImmediate = (typeof self !== \"undefined\" && self.setImmediate) ||\n (typeof global !== \"undefined\" && global.setImmediate) ||\n (this && this.setImmediate);\nexports.clearImmediate = (typeof self !== \"undefined\" && self.clearImmediate) ||\n (typeof global !== \"undefined\" && global.clearImmediate) ||\n (this && this.clearImmediate);\n","(function (global, undefined) {\n \"use strict\";\n\n if (global.setImmediate) {\n return;\n }\n\n var nextHandle = 1; // Spec says greater than zero\n var tasksByHandle = {};\n var currentlyRunningATask = false;\n var doc = global.document;\n var registerImmediate;\n\n function setImmediate(callback) {\n // Callback can either be a function or a string\n if (typeof callback !== \"function\") {\n callback = new Function(\"\" + callback);\n }\n // Copy function arguments\n var args = new Array(arguments.length - 1);\n for (var i = 0; i < args.length; i++) {\n args[i] = arguments[i + 1];\n }\n // Store and register the task\n var task = { callback: callback, args: args };\n tasksByHandle[nextHandle] = task;\n registerImmediate(nextHandle);\n return nextHandle++;\n }\n\n function clearImmediate(handle) {\n delete tasksByHandle[handle];\n }\n\n function run(task) {\n var callback = task.callback;\n var args = task.args;\n switch (args.length) {\n case 0:\n callback();\n break;\n case 1:\n callback(args[0]);\n break;\n case 2:\n callback(args[0], args[1]);\n break;\n case 3:\n callback(args[0], args[1], args[2]);\n break;\n default:\n callback.apply(undefined, args);\n break;\n }\n }\n\n function runIfPresent(handle) {\n // From the spec: \"Wait until any invocations of this algorithm started before this one have completed.\"\n // So if we're currently running a task, we'll need to delay this invocation.\n if (currentlyRunningATask) {\n // Delay by doing a setTimeout. setImmediate was tried instead, but in Firefox 7 it generated a\n // \"too much recursion\" error.\n setTimeout(runIfPresent, 0, handle);\n } else {\n var task = tasksByHandle[handle];\n if (task) {\n currentlyRunningATask = true;\n try {\n run(task);\n } finally {\n clearImmediate(handle);\n currentlyRunningATask = false;\n }\n }\n }\n }\n\n function installNextTickImplementation() {\n registerImmediate = function(handle) {\n process.nextTick(function () { runIfPresent(handle); });\n };\n }\n\n function canUsePostMessage() {\n // The test against `importScripts` prevents this implementation from being installed inside a web worker,\n // where `global.postMessage` means something completely different and can't be used for this purpose.\n if (global.postMessage && !global.importScripts) {\n var postMessageIsAsynchronous = true;\n var oldOnMessage = global.onmessage;\n global.onmessage = function() {\n postMessageIsAsynchronous = false;\n };\n global.postMessage(\"\", \"*\");\n global.onmessage = oldOnMessage;\n return postMessageIsAsynchronous;\n }\n }\n\n function installPostMessageImplementation() {\n // Installs an event handler on `global` for the `message` event: see\n // * https://developer.mozilla.org/en/DOM/window.postMessage\n // * http://www.whatwg.org/specs/web-apps/current-work/multipage/comms.html#crossDocumentMessages\n\n var messagePrefix = \"setImmediate$\" + Math.random() + \"$\";\n var onGlobalMessage = function(event) {\n if (event.source === global &&\n typeof event.data === \"string\" &&\n event.data.indexOf(messagePrefix) === 0) {\n runIfPresent(+event.data.slice(messagePrefix.length));\n }\n };\n\n if (global.addEventListener) {\n global.addEventListener(\"message\", onGlobalMessage, false);\n } else {\n global.attachEvent(\"onmessage\", onGlobalMessage);\n }\n\n registerImmediate = function(handle) {\n global.postMessage(messagePrefix + handle, \"*\");\n };\n }\n\n function installMessageChannelImplementation() {\n var channel = new MessageChannel();\n channel.port1.onmessage = function(event) {\n var handle = event.data;\n runIfPresent(handle);\n };\n\n registerImmediate = function(handle) {\n channel.port2.postMessage(handle);\n };\n }\n\n function installReadyStateChangeImplementation() {\n var html = doc.documentElement;\n registerImmediate = function(handle) {\n // Create a <script> element; its readystatechange event will be fired asynchronously once it is inserted\n // into the document. Do so, thus queuing up the task. Remember to clean up once it's been called.\n var script = doc.createElement(\"script\");\n script.onreadystatechange = function () {\n runIfPresent(handle);\n script.onreadystatechange = null;\n html.removeChild(script);\n script = null;\n };\n html.appendChild(script);\n };\n }\n\n function installSetTimeoutImplementation() {\n registerImmediate = function(handle) {\n setTimeout(runIfPresent, 0, handle);\n };\n }\n\n // If supported, we should attach to the prototype of global, since that is where setTimeout et al. live.\n var attachTo = Object.getPrototypeOf && Object.getPrototypeOf(global);\n attachTo = attachTo && attachTo.setTimeout ? attachTo : global;\n\n // Don't get fooled by e.g. browserify environments.\n if ({}.toString.call(global.process) === \"[object process]\") {\n // For Node.js before 0.9\n installNextTickImplementation();\n\n } else if (canUsePostMessage()) {\n // For non-IE10 modern browsers\n installPostMessageImplementation();\n\n } else if (global.MessageChannel) {\n // For web workers, where supported\n installMessageChannelImplementation();\n\n } else if (doc && \"onreadystatechange\" in doc.createElement(\"script\")) {\n // For IE 6–8\n installReadyStateChangeImplementation();\n\n } else {\n // For older browsers\n installSetTimeoutImplementation();\n }\n\n attachTo.setImmediate = setImmediate;\n attachTo.clearImmediate = clearImmediate;\n}(typeof self === \"undefined\" ? typeof global === \"undefined\" ? this : global : self));\n","// toObject with fallback for non-array-like ES3 strings\nvar IndexedObject = require('../internals/indexed-object');\nvar requireObjectCoercible = require('../internals/require-object-coercible');\n\nmodule.exports = function (it) {\n return IndexedObject(requireObjectCoercible(it));\n};\n","var toString = {}.toString;\n\nmodule.exports = function (it) {\n return toString.call(it).slice(8, -1);\n};\n","var global = require('../internals/global');\nvar createNonEnumerableProperty = require('../internals/create-non-enumerable-property');\n\nmodule.exports = function (key, value) {\n try {\n createNonEnumerableProperty(global, key, value);\n } catch (error) {\n global[key] = value;\n } return value;\n};\n","var wellKnownSymbol = require('../internals/well-known-symbol');\n\nvar TO_STRING_TAG = wellKnownSymbol('toStringTag');\nvar test = {};\n\ntest[TO_STRING_TAG] = 'z';\n\nmodule.exports = String(test) === '[object z]';\n","var global = require('../internals/global');\nvar shared = require('../internals/shared');\nvar has = require('../internals/has');\nvar uid = require('../internals/uid');\nvar NATIVE_SYMBOL = require('../internals/native-symbol');\nvar USE_SYMBOL_AS_UID = require('../internals/use-symbol-as-uid');\n\nvar WellKnownSymbolsStore = shared('wks');\nvar Symbol = global.Symbol;\nvar createWellKnownSymbol = USE_SYMBOL_AS_UID ? Symbol : uid;\n\nmodule.exports = function (name) {\n if (!has(WellKnownSymbolsStore, name)) {\n if (NATIVE_SYMBOL && has(Symbol, name)) WellKnownSymbolsStore[name] = Symbol[name];\n else WellKnownSymbolsStore[name] = createWellKnownSymbol('Symbol.' + name);\n } return WellKnownSymbolsStore[name];\n};\n","// toObject with fallback for non-array-like ES3 strings\nvar IndexedObject = require('../internals/indexed-object');\nvar requireObjectCoercible = require('../internals/require-object-coercible');\n\nmodule.exports = function (it) {\n return IndexedObject(requireObjectCoercible(it));\n};\n","var global = require('../internals/global');\nvar createNonEnumerableProperty = require('../internals/create-non-enumerable-property');\n\nmodule.exports = function (key, value) {\n try {\n createNonEnumerableProperty(global, key, value);\n } catch (error) {\n global[key] = value;\n } return value;\n};\n","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.getLoggerBuilder = getLoggerBuilder;\nexports.getLogger = getLogger;\n\nvar _ConsoleLogger = require(\"./ConsoleLogger\");\n\nvar _Builder = require(\"./Builder\");\n\nfunction getLoggerBuilder() {\n return new _Builder.LoggerBuilder(_ConsoleLogger.buildConsoleLogger);\n}\n\nfunction getLogger() {\n return getLoggerBuilder().build();\n}\n//# sourceMappingURL=index.js.map","var global = require('../internals/global');\nvar getOwnPropertyDescriptor = require('../internals/object-get-own-property-descriptor').f;\nvar createNonEnumerableProperty = require('../internals/create-non-enumerable-property');\nvar redefine = require('../internals/redefine');\nvar setGlobal = require('../internals/set-global');\nvar copyConstructorProperties = require('../internals/copy-constructor-properties');\nvar isForced = require('../internals/is-forced');\n\n/*\n options.target - name of the target object\n options.global - target is the global object\n options.stat - export as static methods of target\n options.proto - export as prototype methods of target\n options.real - real prototype method for the `pure` version\n options.forced - export even if the native feature is available\n options.bind - bind methods to the target, required for the `pure` version\n options.wrap - wrap constructors to preventing global pollution, required for the `pure` version\n options.unsafe - use the simple assignment of property instead of delete + defineProperty\n options.sham - add a flag to not completely full polyfills\n options.enumerable - export as enumerable property\n options.noTargetGet - prevent calling a getter on target\n*/\nmodule.exports = function (options, source) {\n var TARGET = options.target;\n var GLOBAL = options.global;\n var STATIC = options.stat;\n var FORCED, target, key, targetProperty, sourceProperty, descriptor;\n if (GLOBAL) {\n target = global;\n } else if (STATIC) {\n target = global[TARGET] || setGlobal(TARGET, {});\n } else {\n target = (global[TARGET] || {}).prototype;\n }\n if (target) for (key in source) {\n sourceProperty = source[key];\n if (options.noTargetGet) {\n descriptor = getOwnPropertyDescriptor(target, key);\n targetProperty = descriptor && descriptor.value;\n } else targetProperty = target[key];\n FORCED = isForced(GLOBAL ? key : TARGET + (STATIC ? '.' : '#') + key, options.forced);\n // contained in target\n if (!FORCED && targetProperty !== undefined) {\n if (typeof sourceProperty === typeof targetProperty) continue;\n copyConstructorProperties(sourceProperty, targetProperty);\n }\n // add a flag to not completely full polyfills\n if (options.sham || (targetProperty && targetProperty.sham)) {\n createNonEnumerableProperty(sourceProperty, 'sham', true);\n }\n // extend global\n redefine(target, key, sourceProperty, options);\n }\n};\n","var DESCRIPTORS = require('../internals/descriptors');\nvar propertyIsEnumerableModule = require('../internals/object-property-is-enumerable');\nvar createPropertyDescriptor = require('../internals/create-property-descriptor');\nvar toIndexedObject = require('../internals/to-indexed-object');\nvar toPrimitive = require('../internals/to-primitive');\nvar has = require('../internals/has');\nvar IE8_DOM_DEFINE = require('../internals/ie8-dom-define');\n\nvar nativeGetOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;\n\n// `Object.getOwnPropertyDescriptor` method\n// https://tc39.github.io/ecma262/#sec-object.getownpropertydescriptor\nexports.f = DESCRIPTORS ? nativeGetOwnPropertyDescriptor : function getOwnPropertyDescriptor(O, P) {\n O = toIndexedObject(O);\n P = toPrimitive(P, true);\n if (IE8_DOM_DEFINE) try {\n return nativeGetOwnPropertyDescriptor(O, P);\n } catch (error) { /* empty */ }\n if (has(O, P)) return createPropertyDescriptor(!propertyIsEnumerableModule.f.call(O, P), O[P]);\n};\n","'use strict';\nvar nativePropertyIsEnumerable = {}.propertyIsEnumerable;\nvar getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;\n\n// Nashorn ~ JDK8 bug\nvar NASHORN_BUG = getOwnPropertyDescriptor && !nativePropertyIsEnumerable.call({ 1: 2 }, 1);\n\n// `Object.prototype.propertyIsEnumerable` method implementation\n// https://tc39.github.io/ecma262/#sec-object.prototype.propertyisenumerable\nexports.f = NASHORN_BUG ? function propertyIsEnumerable(V) {\n var descriptor = getOwnPropertyDescriptor(this, V);\n return !!descriptor && descriptor.enumerable;\n} : nativePropertyIsEnumerable;\n","module.exports = function (bitmap, value) {\n return {\n enumerable: !(bitmap & 1),\n configurable: !(bitmap & 2),\n writable: !(bitmap & 4),\n value: value\n };\n};\n","var fails = require('../internals/fails');\nvar classof = require('../internals/classof-raw');\n\nvar split = ''.split;\n\n// fallback for non-array-like ES3 and non-enumerable old V8 strings\nmodule.exports = fails(function () {\n // throws an error in rhino, see https://github.com/mozilla/rhino/issues/346\n // eslint-disable-next-line no-prototype-builtins\n return !Object('z').propertyIsEnumerable(0);\n}) ? function (it) {\n return classof(it) == 'String' ? split.call(it, '') : Object(it);\n} : Object;\n","var isObject = require('../internals/is-object');\n\n// `ToPrimitive` abstract operation\n// https://tc39.github.io/ecma262/#sec-toprimitive\n// instead of the ES6 spec version, we didn't implement @@toPrimitive case\n// and the second argument - flag - preferred type is a string\nmodule.exports = function (input, PREFERRED_STRING) {\n if (!isObject(input)) return input;\n var fn, val;\n if (PREFERRED_STRING && typeof (fn = input.toString) == 'function' && !isObject(val = fn.call(input))) return val;\n if (typeof (fn = input.valueOf) == 'function' && !isObject(val = fn.call(input))) return val;\n if (!PREFERRED_STRING && typeof (fn = input.toString) == 'function' && !isObject(val = fn.call(input))) return val;\n throw TypeError(\"Can't convert object to primitive value\");\n};\n","var DESCRIPTORS = require('../internals/descriptors');\nvar fails = require('../internals/fails');\nvar createElement = require('../internals/document-create-element');\n\n// Thank's IE8 for his funny defineProperty\nmodule.exports = !DESCRIPTORS && !fails(function () {\n return Object.defineProperty(createElement('div'), 'a', {\n get: function () { return 7; }\n }).a != 7;\n});\n","var DESCRIPTORS = require('../internals/descriptors');\nvar IE8_DOM_DEFINE = require('../internals/ie8-dom-define');\nvar anObject = require('../internals/an-object');\nvar toPrimitive = require('../internals/to-primitive');\n\nvar nativeDefineProperty = Object.defineProperty;\n\n// `Object.defineProperty` method\n// https://tc39.github.io/ecma262/#sec-object.defineproperty\nexports.f = DESCRIPTORS ? nativeDefineProperty : function defineProperty(O, P, Attributes) {\n anObject(O);\n P = toPrimitive(P, true);\n anObject(Attributes);\n if (IE8_DOM_DEFINE) try {\n return nativeDefineProperty(O, P, Attributes);\n } catch (error) { /* empty */ }\n if ('get' in Attributes || 'set' in Attributes) throw TypeError('Accessors not supported');\n if ('value' in Attributes) O[P] = Attributes.value;\n return O;\n};\n","var store = require('../internals/shared-store');\n\nvar functionToString = Function.toString;\n\n// this helper broken in `3.4.1-3.4.4`, so we can't use `shared` helper\nif (typeof store.inspectSource != 'function') {\n store.inspectSource = function (it) {\n return functionToString.call(it);\n };\n}\n\nmodule.exports = store.inspectSource;\n","var global = require('../internals/global');\nvar setGlobal = require('../internals/set-global');\n\nvar SHARED = '__core-js_shared__';\nvar store = global[SHARED] || setGlobal(SHARED, {});\n\nmodule.exports = store;\n","var IS_PURE = require('../internals/is-pure');\nvar store = require('../internals/shared-store');\n\n(module.exports = function (key, value) {\n return store[key] || (store[key] = value !== undefined ? value : {});\n})('versions', []).push({\n version: '3.5.0',\n mode: IS_PURE ? 'pure' : 'global',\n copyright: '© 2019 Denis Pushkarev (zloirock.ru)'\n});\n","var id = 0;\nvar postfix = Math.random();\n\nmodule.exports = function (key) {\n return 'Symbol(' + String(key === undefined ? '' : key) + ')_' + (++id + postfix).toString(36);\n};\n","module.exports = {};\n","var has = require('../internals/has');\nvar toIndexedObject = require('../internals/to-indexed-object');\nvar indexOf = require('../internals/array-includes').indexOf;\nvar hiddenKeys = require('../internals/hidden-keys');\n\nmodule.exports = function (object, names) {\n var O = toIndexedObject(object);\n var i = 0;\n var result = [];\n var key;\n for (key in O) !has(hiddenKeys, key) && has(O, key) && result.push(key);\n // Don't enum bug & hidden keys\n while (names.length > i) if (has(O, key = names[i++])) {\n ~indexOf(result, key) || result.push(key);\n }\n return result;\n};\n","var toIndexedObject = require('../internals/to-indexed-object');\nvar toLength = require('../internals/to-length');\nvar toAbsoluteIndex = require('../internals/to-absolute-index');\n\n// `Array.prototype.{ indexOf, includes }` methods implementation\nvar createMethod = function (IS_INCLUDES) {\n return function ($this, el, fromIndex) {\n var O = toIndexedObject($this);\n var length = toLength(O.length);\n var index = toAbsoluteIndex(fromIndex, length);\n var value;\n // Array#includes uses SameValueZero equality algorithm\n // eslint-disable-next-line no-self-compare\n if (IS_INCLUDES && el != el) while (length > index) {\n value = O[index++];\n // eslint-disable-next-line no-self-compare\n if (value != value) return true;\n // Array#indexOf ignores holes, Array#includes - not\n } else for (;length > index; index++) {\n if ((IS_INCLUDES || index in O) && O[index] === el) return IS_INCLUDES || index || 0;\n } return !IS_INCLUDES && -1;\n };\n};\n\nmodule.exports = {\n // `Array.prototype.includes` method\n // https://tc39.github.io/ecma262/#sec-array.prototype.includes\n includes: createMethod(true),\n // `Array.prototype.indexOf` method\n // https://tc39.github.io/ecma262/#sec-array.prototype.indexof\n indexOf: createMethod(false)\n};\n","var toInteger = require('../internals/to-integer');\n\nvar min = Math.min;\n\n// `ToLength` abstract operation\n// https://tc39.github.io/ecma262/#sec-tolength\nmodule.exports = function (argument) {\n return argument > 0 ? min(toInteger(argument), 0x1FFFFFFFFFFFFF) : 0; // 2 ** 53 - 1 == 9007199254740991\n};\n","// IE8- don't enum bug keys\nmodule.exports = [\n 'constructor',\n 'hasOwnProperty',\n 'isPrototypeOf',\n 'propertyIsEnumerable',\n 'toLocaleString',\n 'toString',\n 'valueOf'\n];\n","exports.f = Object.getOwnPropertySymbols;\n","var requireObjectCoercible = require('../internals/require-object-coercible');\n\n// `ToObject` abstract operation\n// https://tc39.github.io/ecma262/#sec-toobject\nmodule.exports = function (argument) {\n return Object(requireObjectCoercible(argument));\n};\n","var fails = require('../internals/fails');\n\nmodule.exports = !!Object.getOwnPropertySymbols && !fails(function () {\n // Chrome 38 Symbol has incorrect toString conversion\n // eslint-disable-next-line no-undef\n return !String(Symbol());\n});\n","'use strict';\nvar anObject = require('../internals/an-object');\n\n// `RegExp.prototype.flags` getter implementation\n// https://tc39.github.io/ecma262/#sec-get-regexp.prototype.flags\nmodule.exports = function () {\n var that = anObject(this);\n var result = '';\n if (that.global) result += 'g';\n if (that.ignoreCase) result += 'i';\n if (that.multiline) result += 'm';\n if (that.dotAll) result += 's';\n if (that.unicode) result += 'u';\n if (that.sticky) result += 'y';\n return result;\n};\n","'use strict';\nvar regexpFlags = require('./regexp-flags');\n\nvar nativeExec = RegExp.prototype.exec;\n// This always refers to the native implementation, because the\n// String#replace polyfill uses ./fix-regexp-well-known-symbol-logic.js,\n// which loads this file before patching the method.\nvar nativeReplace = String.prototype.replace;\n\nvar patchedExec = nativeExec;\n\nvar UPDATES_LAST_INDEX_WRONG = (function () {\n var re1 = /a/;\n var re2 = /b*/g;\n nativeExec.call(re1, 'a');\n nativeExec.call(re2, 'a');\n return re1.lastIndex !== 0 || re2.lastIndex !== 0;\n})();\n\n// nonparticipating capturing group, copied from es5-shim's String#split patch.\nvar NPCG_INCLUDED = /()??/.exec('')[1] !== undefined;\n\nvar PATCH = UPDATES_LAST_INDEX_WRONG || NPCG_INCLUDED;\n\nif (PATCH) {\n patchedExec = function exec(str) {\n var re = this;\n var lastIndex, reCopy, match, i;\n\n if (NPCG_INCLUDED) {\n reCopy = new RegExp('^' + re.source + '$(?!\\\\s)', regexpFlags.call(re));\n }\n if (UPDATES_LAST_INDEX_WRONG) lastIndex = re.lastIndex;\n\n match = nativeExec.call(re, str);\n\n if (UPDATES_LAST_INDEX_WRONG && match) {\n re.lastIndex = re.global ? match.index + match[0].length : lastIndex;\n }\n if (NPCG_INCLUDED && match && match.length > 1) {\n // Fix browsers whose `exec` methods don't consistently return `undefined`\n // for NPCG, like IE8. NOTE: This doesn' work for /(.?)?/\n nativeReplace.call(match[0], reCopy, function () {\n for (i = 1; i < arguments.length - 2; i++) {\n if (arguments[i] === undefined) match[i] = undefined;\n }\n });\n }\n\n return match;\n };\n}\n\nmodule.exports = patchedExec;\n","var DESCRIPTORS = require('../internals/descriptors');\nvar propertyIsEnumerableModule = require('../internals/object-property-is-enumerable');\nvar createPropertyDescriptor = require('../internals/create-property-descriptor');\nvar toIndexedObject = require('../internals/to-indexed-object');\nvar toPrimitive = require('../internals/to-primitive');\nvar has = require('../internals/has');\nvar IE8_DOM_DEFINE = require('../internals/ie8-dom-define');\n\nvar nativeGetOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;\n\n// `Object.getOwnPropertyDescriptor` method\n// https://tc39.github.io/ecma262/#sec-object.getownpropertydescriptor\nexports.f = DESCRIPTORS ? nativeGetOwnPropertyDescriptor : function getOwnPropertyDescriptor(O, P) {\n O = toIndexedObject(O);\n P = toPrimitive(P, true);\n if (IE8_DOM_DEFINE) try {\n return nativeGetOwnPropertyDescriptor(O, P);\n } catch (error) { /* empty */ }\n if (has(O, P)) return createPropertyDescriptor(!propertyIsEnumerableModule.f.call(O, P), O[P]);\n};\n","'use strict';\nvar nativePropertyIsEnumerable = {}.propertyIsEnumerable;\nvar getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;\n\n// Nashorn ~ JDK8 bug\nvar NASHORN_BUG = getOwnPropertyDescriptor && !nativePropertyIsEnumerable.call({ 1: 2 }, 1);\n\n// `Object.prototype.propertyIsEnumerable` method implementation\n// https://tc39.github.io/ecma262/#sec-object.prototype.propertyisenumerable\nexports.f = NASHORN_BUG ? function propertyIsEnumerable(V) {\n var descriptor = getOwnPropertyDescriptor(this, V);\n return !!descriptor && descriptor.enumerable;\n} : nativePropertyIsEnumerable;\n","module.exports = function (bitmap, value) {\n return {\n enumerable: !(bitmap & 1),\n configurable: !(bitmap & 2),\n writable: !(bitmap & 4),\n value: value\n };\n};\n","var fails = require('../internals/fails');\nvar classof = require('../internals/classof-raw');\n\nvar split = ''.split;\n\n// fallback for non-array-like ES3 and non-enumerable old V8 strings\nmodule.exports = fails(function () {\n // throws an error in rhino, see https://github.com/mozilla/rhino/issues/346\n // eslint-disable-next-line no-prototype-builtins\n return !Object('z').propertyIsEnumerable(0);\n}) ? function (it) {\n return classof(it) == 'String' ? split.call(it, '') : Object(it);\n} : Object;\n","// `RequireObjectCoercible` abstract operation\n// https://tc39.github.io/ecma262/#sec-requireobjectcoercible\nmodule.exports = function (it) {\n if (it == undefined) throw TypeError(\"Can't call method on \" + it);\n return it;\n};\n","var isObject = require('../internals/is-object');\n\n// `ToPrimitive` abstract operation\n// https://tc39.github.io/ecma262/#sec-toprimitive\n// instead of the ES6 spec version, we didn't implement @@toPrimitive case\n// and the second argument - flag - preferred type is a string\nmodule.exports = function (input, PREFERRED_STRING) {\n if (!isObject(input)) return input;\n var fn, val;\n if (PREFERRED_STRING && typeof (fn = input.toString) == 'function' && !isObject(val = fn.call(input))) return val;\n if (typeof (fn = input.valueOf) == 'function' && !isObject(val = fn.call(input))) return val;\n if (!PREFERRED_STRING && typeof (fn = input.toString) == 'function' && !isObject(val = fn.call(input))) return val;\n throw TypeError(\"Can't convert object to primitive value\");\n};\n","var DESCRIPTORS = require('../internals/descriptors');\nvar fails = require('../internals/fails');\nvar createElement = require('../internals/document-create-element');\n\n// Thank's IE8 for his funny defineProperty\nmodule.exports = !DESCRIPTORS && !fails(function () {\n return Object.defineProperty(createElement('div'), 'a', {\n get: function () { return 7; }\n }).a != 7;\n});\n","var DESCRIPTORS = require('../internals/descriptors');\nvar IE8_DOM_DEFINE = require('../internals/ie8-dom-define');\nvar anObject = require('../internals/an-object');\nvar toPrimitive = require('../internals/to-primitive');\n\nvar nativeDefineProperty = Object.defineProperty;\n\n// `Object.defineProperty` method\n// https://tc39.github.io/ecma262/#sec-object.defineproperty\nexports.f = DESCRIPTORS ? nativeDefineProperty : function defineProperty(O, P, Attributes) {\n anObject(O);\n P = toPrimitive(P, true);\n anObject(Attributes);\n if (IE8_DOM_DEFINE) try {\n return nativeDefineProperty(O, P, Attributes);\n } catch (error) { /* empty */ }\n if ('get' in Attributes || 'set' in Attributes) throw TypeError('Accessors not supported');\n if ('value' in Attributes) O[P] = Attributes.value;\n return O;\n};\n","var isObject = require('../internals/is-object');\n\nmodule.exports = function (it) {\n if (!isObject(it)) {\n throw TypeError(String(it) + ' is not an object');\n } return it;\n};\n","var store = require('../internals/shared-store');\n\nvar functionToString = Function.toString;\n\n// this helper broken in `3.4.1-3.4.4`, so we can't use `shared` helper\nif (typeof store.inspectSource != 'function') {\n store.inspectSource = function (it) {\n return functionToString.call(it);\n };\n}\n\nmodule.exports = store.inspectSource;\n","var global = require('../internals/global');\nvar setGlobal = require('../internals/set-global');\n\nvar SHARED = '__core-js_shared__';\nvar store = global[SHARED] || setGlobal(SHARED, {});\n\nmodule.exports = store;\n","module.exports = {};\n","var has = require('../internals/has');\nvar toIndexedObject = require('../internals/to-indexed-object');\nvar indexOf = require('../internals/array-includes').indexOf;\nvar hiddenKeys = require('../internals/hidden-keys');\n\nmodule.exports = function (object, names) {\n var O = toIndexedObject(object);\n var i = 0;\n var result = [];\n var key;\n for (key in O) !has(hiddenKeys, key) && has(O, key) && result.push(key);\n // Don't enum bug & hidden keys\n while (names.length > i) if (has(O, key = names[i++])) {\n ~indexOf(result, key) || result.push(key);\n }\n return result;\n};\n","var ceil = Math.ceil;\nvar floor = Math.floor;\n\n// `ToInteger` abstract operation\n// https://tc39.github.io/ecma262/#sec-tointeger\nmodule.exports = function (argument) {\n return isNaN(argument = +argument) ? 0 : (argument > 0 ? floor : ceil)(argument);\n};\n","// IE8- don't enum bug keys\nmodule.exports = [\n 'constructor',\n 'hasOwnProperty',\n 'isPrototypeOf',\n 'propertyIsEnumerable',\n 'toLocaleString',\n 'toString',\n 'valueOf'\n];\n","exports.f = Object.getOwnPropertySymbols;\n","'use strict';\nconst pTry = require('p-try');\n\nconst pLimit = concurrency => {\n\tif (!((Number.isInteger(concurrency) || concurrency === Infinity) && concurrency > 0)) {\n\t\treturn Promise.reject(new TypeError('Expected `concurrency` to be a number from 1 and up'));\n\t}\n\n\tconst queue = [];\n\tlet activeCount = 0;\n\n\tconst next = () => {\n\t\tactiveCount--;\n\n\t\tif (queue.length > 0) {\n\t\t\tqueue.shift()();\n\t\t}\n\t};\n\n\tconst run = (fn, resolve, ...args) => {\n\t\tactiveCount++;\n\n\t\tconst result = pTry(fn, ...args);\n\n\t\tresolve(result);\n\n\t\tresult.then(next, next);\n\t};\n\n\tconst enqueue = (fn, resolve, ...args) => {\n\t\tif (activeCount < concurrency) {\n\t\t\trun(fn, resolve, ...args);\n\t\t} else {\n\t\t\tqueue.push(run.bind(null, fn, resolve, ...args));\n\t\t}\n\t};\n\n\tconst generator = (fn, ...args) => new Promise(resolve => enqueue(fn, resolve, ...args));\n\tObject.defineProperties(generator, {\n\t\tactiveCount: {\n\t\t\tget: () => activeCount\n\t\t},\n\t\tpendingCount: {\n\t\t\tget: () => queue.length\n\t\t}\n\t});\n\n\treturn generator;\n};\n\nmodule.exports = pLimit;\nmodule.exports.default = pLimit;\n","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.getRequestToken = getRequestToken;\nexports.onRequestTokenUpdate = onRequestTokenUpdate;\n\nvar _eventBus = require(\"@nextcloud/event-bus\");\n\nvar tokenElement = document.getElementsByTagName('head')[0];\nvar token = tokenElement ? tokenElement.getAttribute('data-requesttoken') : null;\nvar observers = [];\n\nfunction getRequestToken() {\n return token;\n}\n\nfunction onRequestTokenUpdate(observer) {\n observers.push(observer);\n} // Listen to server event and keep token in sync\n\n\n(0, _eventBus.subscribe)('csrf-token-update', function (e) {\n token = e.token;\n observers.forEach(function (observer) {\n try {\n observer(e.token);\n } catch (e) {\n console.error('error updating CSRF token observer', e);\n }\n });\n});\n//# sourceMappingURL=requesttoken.js.map","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.getCurrentUser = getCurrentUser;\nvar uidElement = document.getElementsByTagName('head')[0];\nvar uid = uidElement ? uidElement.getAttribute('data-user') : null;\nvar displayNameElement = document.getElementsByTagName('head')[0];\nvar displayName = displayNameElement ? displayNameElement.getAttribute('data-user-displayname') : null;\n\nfunction getCurrentUser() {\n if (uid === null) {\n return null;\n }\n\n return {\n uid: uid,\n displayName: displayName\n };\n}\n//# sourceMappingURL=user.js.map","'use strict';\nvar $ = require('../internals/export');\nvar $indexOf = require('../internals/array-includes').indexOf;\nvar sloppyArrayMethod = require('../internals/sloppy-array-method');\n\nvar nativeIndexOf = [].indexOf;\n\nvar NEGATIVE_ZERO = !!nativeIndexOf && 1 / [1].indexOf(1, -0) < 0;\nvar SLOPPY_METHOD = sloppyArrayMethod('indexOf');\n\n// `Array.prototype.indexOf` method\n// https://tc39.github.io/ecma262/#sec-array.prototype.indexof\n$({ target: 'Array', proto: true, forced: NEGATIVE_ZERO || SLOPPY_METHOD }, {\n indexOf: function indexOf(searchElement /* , fromIndex = 0 */) {\n return NEGATIVE_ZERO\n // convert -0 to +0\n ? nativeIndexOf.apply(this, arguments) || 0\n : $indexOf(this, searchElement, arguments.length > 1 ? arguments[1] : undefined);\n }\n});\n","var global = require('../internals/global');\nvar isObject = require('../internals/is-object');\n\nvar document = global.document;\n// typeof document.createElement is 'object' in old IE\nvar EXISTS = isObject(document) && isObject(document.createElement);\n\nmodule.exports = function (it) {\n return EXISTS ? document.createElement(it) : {};\n};\n","var NATIVE_WEAK_MAP = require('../internals/native-weak-map');\nvar global = require('../internals/global');\nvar isObject = require('../internals/is-object');\nvar createNonEnumerableProperty = require('../internals/create-non-enumerable-property');\nvar objectHas = require('../internals/has');\nvar sharedKey = require('../internals/shared-key');\nvar hiddenKeys = require('../internals/hidden-keys');\n\nvar WeakMap = global.WeakMap;\nvar set, get, has;\n\nvar enforce = function (it) {\n return has(it) ? get(it) : set(it, {});\n};\n\nvar getterFor = function (TYPE) {\n return function (it) {\n var state;\n if (!isObject(it) || (state = get(it)).type !== TYPE) {\n throw TypeError('Incompatible receiver, ' + TYPE + ' required');\n } return state;\n };\n};\n\nif (NATIVE_WEAK_MAP) {\n var store = new WeakMap();\n var wmget = store.get;\n var wmhas = store.has;\n var wmset = store.set;\n set = function (it, metadata) {\n wmset.call(store, it, metadata);\n return metadata;\n };\n get = function (it) {\n return wmget.call(store, it) || {};\n };\n has = function (it) {\n return wmhas.call(store, it);\n };\n} else {\n var STATE = sharedKey('state');\n hiddenKeys[STATE] = true;\n set = function (it, metadata) {\n createNonEnumerableProperty(it, STATE, metadata);\n return metadata;\n };\n get = function (it) {\n return objectHas(it, STATE) ? it[STATE] : {};\n };\n has = function (it) {\n return objectHas(it, STATE);\n };\n}\n\nmodule.exports = {\n set: set,\n get: get,\n has: has,\n enforce: enforce,\n getterFor: getterFor\n};\n","var global = require('../internals/global');\nvar inspectSource = require('../internals/inspect-source');\n\nvar WeakMap = global.WeakMap;\n\nmodule.exports = typeof WeakMap === 'function' && /native code/.test(inspectSource(WeakMap));\n","var shared = require('../internals/shared');\nvar uid = require('../internals/uid');\n\nvar keys = shared('keys');\n\nmodule.exports = function (key) {\n return keys[key] || (keys[key] = uid(key));\n};\n","module.exports = false;\n","var has = require('../internals/has');\nvar ownKeys = require('../internals/own-keys');\nvar getOwnPropertyDescriptorModule = require('../internals/object-get-own-property-descriptor');\nvar definePropertyModule = require('../internals/object-define-property');\n\nmodule.exports = function (target, source) {\n var keys = ownKeys(source);\n var defineProperty = definePropertyModule.f;\n var getOwnPropertyDescriptor = getOwnPropertyDescriptorModule.f;\n for (var i = 0; i < keys.length; i++) {\n var key = keys[i];\n if (!has(target, key)) defineProperty(target, key, getOwnPropertyDescriptor(source, key));\n }\n};\n","var getBuiltIn = require('../internals/get-built-in');\nvar getOwnPropertyNamesModule = require('../internals/object-get-own-property-names');\nvar getOwnPropertySymbolsModule = require('../internals/object-get-own-property-symbols');\nvar anObject = require('../internals/an-object');\n\n// all object keys, includes non-enumerable and symbols\nmodule.exports = getBuiltIn('Reflect', 'ownKeys') || function ownKeys(it) {\n var keys = getOwnPropertyNamesModule.f(anObject(it));\n var getOwnPropertySymbols = getOwnPropertySymbolsModule.f;\n return getOwnPropertySymbols ? keys.concat(getOwnPropertySymbols(it)) : keys;\n};\n","var path = require('../internals/path');\nvar global = require('../internals/global');\n\nvar aFunction = function (variable) {\n return typeof variable == 'function' ? variable : undefined;\n};\n\nmodule.exports = function (namespace, method) {\n return arguments.length < 2 ? aFunction(path[namespace]) || aFunction(global[namespace])\n : path[namespace] && path[namespace][method] || global[namespace] && global[namespace][method];\n};\n","var global = require('../internals/global');\n\nmodule.exports = global;\n","var internalObjectKeys = require('../internals/object-keys-internal');\nvar enumBugKeys = require('../internals/enum-bug-keys');\n\nvar hiddenKeys = enumBugKeys.concat('length', 'prototype');\n\n// `Object.getOwnPropertyNames` method\n// https://tc39.github.io/ecma262/#sec-object.getownpropertynames\nexports.f = Object.getOwnPropertyNames || function getOwnPropertyNames(O) {\n return internalObjectKeys(O, hiddenKeys);\n};\n","var toInteger = require('../internals/to-integer');\n\nvar max = Math.max;\nvar min = Math.min;\n\n// Helper for a popular repeating case of the spec:\n// Let integer be ? ToInteger(index).\n// If integer < 0, let result be max((length + integer), 0); else let result be min(integer, length).\nmodule.exports = function (index, length) {\n var integer = toInteger(index);\n return integer < 0 ? max(integer + length, 0) : min(integer, length);\n};\n","var fails = require('../internals/fails');\n\nvar replacement = /#|\\.prototype\\./;\n\nvar isForced = function (feature, detection) {\n var value = data[normalize(feature)];\n return value == POLYFILL ? true\n : value == NATIVE ? false\n : typeof detection == 'function' ? fails(detection)\n : !!detection;\n};\n\nvar normalize = isForced.normalize = function (string) {\n return String(string).replace(replacement, '.').toLowerCase();\n};\n\nvar data = isForced.data = {};\nvar NATIVE = isForced.NATIVE = 'N';\nvar POLYFILL = isForced.POLYFILL = 'P';\n\nmodule.exports = isForced;\n","'use strict';\nvar fails = require('../internals/fails');\n\nmodule.exports = function (METHOD_NAME, argument) {\n var method = [][METHOD_NAME];\n return !method || !fails(function () {\n // eslint-disable-next-line no-useless-call,no-throw-literal\n method.call(null, argument || function () { throw 1; }, 1);\n });\n};\n","var $ = require('../internals/export');\nvar assign = require('../internals/object-assign');\n\n// `Object.assign` method\n// https://tc39.github.io/ecma262/#sec-object.assign\n$({ target: 'Object', stat: true, forced: Object.assign !== assign }, {\n assign: assign\n});\n","'use strict';\nvar DESCRIPTORS = require('../internals/descriptors');\nvar fails = require('../internals/fails');\nvar objectKeys = require('../internals/object-keys');\nvar getOwnPropertySymbolsModule = require('../internals/object-get-own-property-symbols');\nvar propertyIsEnumerableModule = require('../internals/object-property-is-enumerable');\nvar toObject = require('../internals/to-object');\nvar IndexedObject = require('../internals/indexed-object');\n\nvar nativeAssign = Object.assign;\nvar defineProperty = Object.defineProperty;\n\n// `Object.assign` method\n// https://tc39.github.io/ecma262/#sec-object.assign\nmodule.exports = !nativeAssign || fails(function () {\n // should have correct order of operations (Edge bug)\n if (DESCRIPTORS && nativeAssign({ b: 1 }, nativeAssign(defineProperty({}, 'a', {\n enumerable: true,\n get: function () {\n defineProperty(this, 'b', {\n value: 3,\n enumerable: false\n });\n }\n }), { b: 2 })).b !== 1) return true;\n // should work with symbols and should have deterministic property order (V8 bug)\n var A = {};\n var B = {};\n // eslint-disable-next-line no-undef\n var symbol = Symbol();\n var alphabet = 'abcdefghijklmnopqrst';\n A[symbol] = 7;\n alphabet.split('').forEach(function (chr) { B[chr] = chr; });\n return nativeAssign({}, A)[symbol] != 7 || objectKeys(nativeAssign({}, B)).join('') != alphabet;\n}) ? function assign(target, source) { // eslint-disable-line no-unused-vars\n var T = toObject(target);\n var argumentsLength = arguments.length;\n var index = 1;\n var getOwnPropertySymbols = getOwnPropertySymbolsModule.f;\n var propertyIsEnumerable = propertyIsEnumerableModule.f;\n while (argumentsLength > index) {\n var S = IndexedObject(arguments[index++]);\n var keys = getOwnPropertySymbols ? objectKeys(S).concat(getOwnPropertySymbols(S)) : objectKeys(S);\n var length = keys.length;\n var j = 0;\n var key;\n while (length > j) {\n key = keys[j++];\n if (!DESCRIPTORS || propertyIsEnumerable.call(S, key)) T[key] = S[key];\n }\n } return T;\n} : nativeAssign;\n","var internalObjectKeys = require('../internals/object-keys-internal');\nvar enumBugKeys = require('../internals/enum-bug-keys');\n\n// `Object.keys` method\n// https://tc39.github.io/ecma262/#sec-object.keys\nmodule.exports = Object.keys || function keys(O) {\n return internalObjectKeys(O, enumBugKeys);\n};\n","var TO_STRING_TAG_SUPPORT = require('../internals/to-string-tag-support');\nvar redefine = require('../internals/redefine');\nvar toString = require('../internals/object-to-string');\n\n// `Object.prototype.toString` method\n// https://tc39.github.io/ecma262/#sec-object.prototype.tostring\nif (!TO_STRING_TAG_SUPPORT) {\n redefine(Object.prototype, 'toString', toString, { unsafe: true });\n}\n","var NATIVE_SYMBOL = require('../internals/native-symbol');\n\nmodule.exports = NATIVE_SYMBOL\n // eslint-disable-next-line no-undef\n && !Symbol.sham\n // eslint-disable-next-line no-undef\n && typeof Symbol() == 'symbol';\n","'use strict';\nvar TO_STRING_TAG_SUPPORT = require('../internals/to-string-tag-support');\nvar classof = require('../internals/classof');\n\n// `Object.prototype.toString` method implementation\n// https://tc39.github.io/ecma262/#sec-object.prototype.tostring\nmodule.exports = TO_STRING_TAG_SUPPORT ? {}.toString : function toString() {\n return '[object ' + classof(this) + ']';\n};\n","var TO_STRING_TAG_SUPPORT = require('../internals/to-string-tag-support');\nvar classofRaw = require('../internals/classof-raw');\nvar wellKnownSymbol = require('../internals/well-known-symbol');\n\nvar TO_STRING_TAG = wellKnownSymbol('toStringTag');\n// ES3 wrong here\nvar CORRECT_ARGUMENTS = classofRaw(function () { return arguments; }()) == 'Arguments';\n\n// fallback for IE11 Script Access Denied error\nvar tryGet = function (it, key) {\n try {\n return it[key];\n } catch (error) { /* empty */ }\n};\n\n// getting tag from ES6+ `Object.prototype.toString`\nmodule.exports = TO_STRING_TAG_SUPPORT ? classofRaw : function (it) {\n var O, tag, result;\n return it === undefined ? 'Undefined' : it === null ? 'Null'\n // @@toStringTag case\n : typeof (tag = tryGet(O = Object(it), TO_STRING_TAG)) == 'string' ? tag\n // builtinTag case\n : CORRECT_ARGUMENTS ? classofRaw(O)\n // ES3 arguments fallback\n : (result = classofRaw(O)) == 'Object' && typeof O.callee == 'function' ? 'Arguments' : result;\n};\n","'use strict';\nvar redefine = require('../internals/redefine');\nvar anObject = require('../internals/an-object');\nvar fails = require('../internals/fails');\nvar flags = require('../internals/regexp-flags');\n\nvar TO_STRING = 'toString';\nvar RegExpPrototype = RegExp.prototype;\nvar nativeToString = RegExpPrototype[TO_STRING];\n\nvar NOT_GENERIC = fails(function () { return nativeToString.call({ source: 'a', flags: 'b' }) != '/a/b'; });\n// FF44- RegExp#toString has a wrong name\nvar INCORRECT_NAME = nativeToString.name != TO_STRING;\n\n// `RegExp.prototype.toString` method\n// https://tc39.github.io/ecma262/#sec-regexp.prototype.tostring\nif (NOT_GENERIC || INCORRECT_NAME) {\n redefine(RegExp.prototype, TO_STRING, function toString() {\n var R = anObject(this);\n var p = String(R.source);\n var rf = R.flags;\n var f = String(rf === undefined && R instanceof RegExp && !('flags' in RegExpPrototype) ? flags.call(R) : rf);\n return '/' + p + '/' + f;\n }, { unsafe: true });\n}\n","'use strict';\nvar fixRegExpWellKnownSymbolLogic = require('../internals/fix-regexp-well-known-symbol-logic');\nvar anObject = require('../internals/an-object');\nvar toObject = require('../internals/to-object');\nvar toLength = require('../internals/to-length');\nvar toInteger = require('../internals/to-integer');\nvar requireObjectCoercible = require('../internals/require-object-coercible');\nvar advanceStringIndex = require('../internals/advance-string-index');\nvar regExpExec = require('../internals/regexp-exec-abstract');\n\nvar max = Math.max;\nvar min = Math.min;\nvar floor = Math.floor;\nvar SUBSTITUTION_SYMBOLS = /\\$([$&'`]|\\d\\d?|<[^>]*>)/g;\nvar SUBSTITUTION_SYMBOLS_NO_NAMED = /\\$([$&'`]|\\d\\d?)/g;\n\nvar maybeToString = function (it) {\n return it === undefined ? it : String(it);\n};\n\n// @@replace logic\nfixRegExpWellKnownSymbolLogic('replace', 2, function (REPLACE, nativeReplace, maybeCallNative) {\n return [\n // `String.prototype.replace` method\n // https://tc39.github.io/ecma262/#sec-string.prototype.replace\n function replace(searchValue, replaceValue) {\n var O = requireObjectCoercible(this);\n var replacer = searchValue == undefined ? undefined : searchValue[REPLACE];\n return replacer !== undefined\n ? replacer.call(searchValue, O, replaceValue)\n : nativeReplace.call(String(O), searchValue, replaceValue);\n },\n // `RegExp.prototype[@@replace]` method\n // https://tc39.github.io/ecma262/#sec-regexp.prototype-@@replace\n function (regexp, replaceValue) {\n var res = maybeCallNative(nativeReplace, regexp, this, replaceValue);\n if (res.done) return res.value;\n\n var rx = anObject(regexp);\n var S = String(this);\n\n var functionalReplace = typeof replaceValue === 'function';\n if (!functionalReplace) replaceValue = String(replaceValue);\n\n var global = rx.global;\n if (global) {\n var fullUnicode = rx.unicode;\n rx.lastIndex = 0;\n }\n var results = [];\n while (true) {\n var result = regExpExec(rx, S);\n if (result === null) break;\n\n results.push(result);\n if (!global) break;\n\n var matchStr = String(result[0]);\n if (matchStr === '') rx.lastIndex = advanceStringIndex(S, toLength(rx.lastIndex), fullUnicode);\n }\n\n var accumulatedResult = '';\n var nextSourcePosition = 0;\n for (var i = 0; i < results.length; i++) {\n result = results[i];\n\n var matched = String(result[0]);\n var position = max(min(toInteger(result.index), S.length), 0);\n var captures = [];\n // NOTE: This is equivalent to\n // captures = result.slice(1).map(maybeToString)\n // but for some reason `nativeSlice.call(result, 1, result.length)` (called in\n // the slice polyfill when slicing native arrays) \"doesn't work\" in safari 9 and\n // causes a crash (https://pastebin.com/N21QzeQA) when trying to debug it.\n for (var j = 1; j < result.length; j++) captures.push(maybeToString(result[j]));\n var namedCaptures = result.groups;\n if (functionalReplace) {\n var replacerArgs = [matched].concat(captures, position, S);\n if (namedCaptures !== undefined) replacerArgs.push(namedCaptures);\n var replacement = String(replaceValue.apply(undefined, replacerArgs));\n } else {\n replacement = getSubstitution(matched, S, position, captures, namedCaptures, replaceValue);\n }\n if (position >= nextSourcePosition) {\n accumulatedResult += S.slice(nextSourcePosition, position) + replacement;\n nextSourcePosition = position + matched.length;\n }\n }\n return accumulatedResult + S.slice(nextSourcePosition);\n }\n ];\n\n // https://tc39.github.io/ecma262/#sec-getsubstitution\n function getSubstitution(matched, str, position, captures, namedCaptures, replacement) {\n var tailPos = position + matched.length;\n var m = captures.length;\n var symbols = SUBSTITUTION_SYMBOLS_NO_NAMED;\n if (namedCaptures !== undefined) {\n namedCaptures = toObject(namedCaptures);\n symbols = SUBSTITUTION_SYMBOLS;\n }\n return nativeReplace.call(replacement, symbols, function (match, ch) {\n var capture;\n switch (ch.charAt(0)) {\n case '$': return '$';\n case '&': return matched;\n case '`': return str.slice(0, position);\n case \"'\": return str.slice(tailPos);\n case '<':\n capture = namedCaptures[ch.slice(1, -1)];\n break;\n default: // \\d\\d?\n var n = +ch;\n if (n === 0) return match;\n if (n > m) {\n var f = floor(n / 10);\n if (f === 0) return match;\n if (f <= m) return captures[f - 1] === undefined ? ch.charAt(1) : captures[f - 1] + ch.charAt(1);\n return match;\n }\n capture = captures[n - 1];\n }\n return capture === undefined ? '' : capture;\n });\n }\n});\n","'use strict';\nvar createNonEnumerableProperty = require('../internals/create-non-enumerable-property');\nvar redefine = require('../internals/redefine');\nvar fails = require('../internals/fails');\nvar wellKnownSymbol = require('../internals/well-known-symbol');\nvar regexpExec = require('../internals/regexp-exec');\n\nvar SPECIES = wellKnownSymbol('species');\n\nvar REPLACE_SUPPORTS_NAMED_GROUPS = !fails(function () {\n // #replace needs built-in support for named groups.\n // #match works fine because it just return the exec results, even if it has\n // a \"grops\" property.\n var re = /./;\n re.exec = function () {\n var result = [];\n result.groups = { a: '7' };\n return result;\n };\n return ''.replace(re, '$<a>') !== '7';\n});\n\n// Chrome 51 has a buggy \"split\" implementation when RegExp#exec !== nativeExec\n// Weex JS has frozen built-in prototypes, so use try / catch wrapper\nvar SPLIT_WORKS_WITH_OVERWRITTEN_EXEC = !fails(function () {\n var re = /(?:)/;\n var originalExec = re.exec;\n re.exec = function () { return originalExec.apply(this, arguments); };\n var result = 'ab'.split(re);\n return result.length !== 2 || result[0] !== 'a' || result[1] !== 'b';\n});\n\nmodule.exports = function (KEY, length, exec, sham) {\n var SYMBOL = wellKnownSymbol(KEY);\n\n var DELEGATES_TO_SYMBOL = !fails(function () {\n // String methods call symbol-named RegEp methods\n var O = {};\n O[SYMBOL] = function () { return 7; };\n return ''[KEY](O) != 7;\n });\n\n var DELEGATES_TO_EXEC = DELEGATES_TO_SYMBOL && !fails(function () {\n // Symbol-named RegExp methods call .exec\n var execCalled = false;\n var re = /a/;\n\n if (KEY === 'split') {\n // We can't use real regex here since it causes deoptimization\n // and serious performance degradation in V8\n // https://github.com/zloirock/core-js/issues/306\n re = {};\n // RegExp[@@split] doesn't call the regex's exec method, but first creates\n // a new one. We need to return the patched regex when creating the new one.\n re.constructor = {};\n re.constructor[SPECIES] = function () { return re; };\n re.flags = '';\n re[SYMBOL] = /./[SYMBOL];\n }\n\n re.exec = function () { execCalled = true; return null; };\n\n re[SYMBOL]('');\n return !execCalled;\n });\n\n if (\n !DELEGATES_TO_SYMBOL ||\n !DELEGATES_TO_EXEC ||\n (KEY === 'replace' && !REPLACE_SUPPORTS_NAMED_GROUPS) ||\n (KEY === 'split' && !SPLIT_WORKS_WITH_OVERWRITTEN_EXEC)\n ) {\n var nativeRegExpMethod = /./[SYMBOL];\n var methods = exec(SYMBOL, ''[KEY], function (nativeMethod, regexp, str, arg2, forceStringMethod) {\n if (regexp.exec === regexpExec) {\n if (DELEGATES_TO_SYMBOL && !forceStringMethod) {\n // The native String method already delegates to @@method (this\n // polyfilled function), leasing to infinite recursion.\n // We avoid it by directly calling the native @@method method.\n return { done: true, value: nativeRegExpMethod.call(regexp, str, arg2) };\n }\n return { done: true, value: nativeMethod.call(str, regexp, arg2) };\n }\n return { done: false };\n });\n var stringMethod = methods[0];\n var regexMethod = methods[1];\n\n redefine(String.prototype, KEY, stringMethod);\n redefine(RegExp.prototype, SYMBOL, length == 2\n // 21.2.5.8 RegExp.prototype[@@replace](string, replaceValue)\n // 21.2.5.11 RegExp.prototype[@@split](string, limit)\n ? function (string, arg) { return regexMethod.call(string, this, arg); }\n // 21.2.5.6 RegExp.prototype[@@match](string)\n // 21.2.5.9 RegExp.prototype[@@search](string)\n : function (string) { return regexMethod.call(string, this); }\n );\n if (sham) createNonEnumerableProperty(RegExp.prototype[SYMBOL], 'sham', true);\n }\n};\n","'use strict';\nvar charAt = require('../internals/string-multibyte').charAt;\n\n// `AdvanceStringIndex` abstract operation\n// https://tc39.github.io/ecma262/#sec-advancestringindex\nmodule.exports = function (S, index, unicode) {\n return index + (unicode ? charAt(S, index).length : 1);\n};\n","var toInteger = require('../internals/to-integer');\nvar requireObjectCoercible = require('../internals/require-object-coercible');\n\n// `String.prototype.{ codePointAt, at }` methods implementation\nvar createMethod = function (CONVERT_TO_STRING) {\n return function ($this, pos) {\n var S = String(requireObjectCoercible($this));\n var position = toInteger(pos);\n var size = S.length;\n var first, second;\n if (position < 0 || position >= size) return CONVERT_TO_STRING ? '' : undefined;\n first = S.charCodeAt(position);\n return first < 0xD800 || first > 0xDBFF || position + 1 === size\n || (second = S.charCodeAt(position + 1)) < 0xDC00 || second > 0xDFFF\n ? CONVERT_TO_STRING ? S.charAt(position) : first\n : CONVERT_TO_STRING ? S.slice(position, position + 2) : (first - 0xD800 << 10) + (second - 0xDC00) + 0x10000;\n };\n};\n\nmodule.exports = {\n // `String.prototype.codePointAt` method\n // https://tc39.github.io/ecma262/#sec-string.prototype.codepointat\n codeAt: createMethod(false),\n // `String.prototype.at` method\n // https://github.com/mathiasbynens/String.prototype.at\n charAt: createMethod(true)\n};\n","var classof = require('./classof-raw');\nvar regexpExec = require('./regexp-exec');\n\n// `RegExpExec` abstract operation\n// https://tc39.github.io/ecma262/#sec-regexpexec\nmodule.exports = function (R, S) {\n var exec = R.exec;\n if (typeof exec === 'function') {\n var result = exec.call(R, S);\n if (typeof result !== 'object') {\n throw TypeError('RegExp exec method returned something other than an Object or null');\n }\n return result;\n }\n\n if (classof(R) !== 'RegExp') {\n throw TypeError('RegExp#exec called on incompatible receiver');\n }\n\n return regexpExec.call(R, S);\n};\n\n","\"use strict\";\n\nrequire(\"core-js/modules/es.object.assign\");\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.buildConsoleLogger = buildConsoleLogger;\nexports.ConsoleLogger = void 0;\n\nvar _contracts = require(\"./contracts\");\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nfunction _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }\n\nfunction _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }\n\nvar ConsoleLogger =\n/*#__PURE__*/\nfunction () {\n function ConsoleLogger(context) {\n _classCallCheck(this, ConsoleLogger);\n\n this.context = context;\n }\n\n _createClass(ConsoleLogger, [{\n key: \"formatMessage\",\n value: function formatMessage(message, level, context) {\n var msg = '[' + level + ']';\n\n if (context && context.app) {\n msg += ' ' + context.app + ': ';\n }\n\n return msg + message;\n }\n }, {\n key: \"log\",\n value: function log(level, message, context) {\n switch (level) {\n case 0:\n console.debug(this.formatMessage(message, _contracts.LogLevel.Debug, context), context);\n break;\n\n case 1:\n console.info(this.formatMessage(message, _contracts.LogLevel.Info, context), context);\n break;\n\n case 2:\n console.warn(this.formatMessage(message, _contracts.LogLevel.Warn, context), context);\n break;\n\n case 3:\n console.error(this.formatMessage(message, _contracts.LogLevel.Error, context), context);\n break;\n\n default:\n console.error(this.formatMessage(message, _contracts.LogLevel.Fatal, context), context);\n break;\n }\n }\n }, {\n key: \"debug\",\n value: function debug(message, context) {\n this.log(0, message, Object.assign({}, this.context, context));\n }\n }, {\n key: \"info\",\n value: function info(message, context) {\n this.log(1, message, Object.assign({}, this.context, context));\n }\n }, {\n key: \"warn\",\n value: function warn(message, context) {\n this.log(2, message, Object.assign({}, this.context, context));\n }\n }, {\n key: \"error\",\n value: function error(message, context) {\n this.log(3, message, Object.assign({}, this.context, context));\n }\n }, {\n key: \"fatal\",\n value: function fatal(message, context) {\n this.log(4, message, Object.assign({}, this.context, context));\n }\n }]);\n\n return ConsoleLogger;\n}();\n\nexports.ConsoleLogger = ConsoleLogger;\n\nfunction buildConsoleLogger(context) {\n return new ConsoleLogger(context);\n}\n//# sourceMappingURL=ConsoleLogger.js.map","var $ = require('../internals/export');\nvar assign = require('../internals/object-assign');\n\n// `Object.assign` method\n// https://tc39.github.io/ecma262/#sec-object.assign\n$({ target: 'Object', stat: true, forced: Object.assign !== assign }, {\n assign: assign\n});\n","var global = require('../internals/global');\nvar getOwnPropertyDescriptor = require('../internals/object-get-own-property-descriptor').f;\nvar createNonEnumerableProperty = require('../internals/create-non-enumerable-property');\nvar redefine = require('../internals/redefine');\nvar setGlobal = require('../internals/set-global');\nvar copyConstructorProperties = require('../internals/copy-constructor-properties');\nvar isForced = require('../internals/is-forced');\n\n/*\n options.target - name of the target object\n options.global - target is the global object\n options.stat - export as static methods of target\n options.proto - export as prototype methods of target\n options.real - real prototype method for the `pure` version\n options.forced - export even if the native feature is available\n options.bind - bind methods to the target, required for the `pure` version\n options.wrap - wrap constructors to preventing global pollution, required for the `pure` version\n options.unsafe - use the simple assignment of property instead of delete + defineProperty\n options.sham - add a flag to not completely full polyfills\n options.enumerable - export as enumerable property\n options.noTargetGet - prevent calling a getter on target\n*/\nmodule.exports = function (options, source) {\n var TARGET = options.target;\n var GLOBAL = options.global;\n var STATIC = options.stat;\n var FORCED, target, key, targetProperty, sourceProperty, descriptor;\n if (GLOBAL) {\n target = global;\n } else if (STATIC) {\n target = global[TARGET] || setGlobal(TARGET, {});\n } else {\n target = (global[TARGET] || {}).prototype;\n }\n if (target) for (key in source) {\n sourceProperty = source[key];\n if (options.noTargetGet) {\n descriptor = getOwnPropertyDescriptor(target, key);\n targetProperty = descriptor && descriptor.value;\n } else targetProperty = target[key];\n FORCED = isForced(GLOBAL ? key : TARGET + (STATIC ? '.' : '#') + key, options.forced);\n // contained in target\n if (!FORCED && targetProperty !== undefined) {\n if (typeof sourceProperty === typeof targetProperty) continue;\n copyConstructorProperties(sourceProperty, targetProperty);\n }\n // add a flag to not completely full polyfills\n if (options.sham || (targetProperty && targetProperty.sham)) {\n createNonEnumerableProperty(sourceProperty, 'sham', true);\n }\n // extend global\n redefine(target, key, sourceProperty, options);\n }\n};\n","var toString = {}.toString;\n\nmodule.exports = function (it) {\n return toString.call(it).slice(8, -1);\n};\n","var global = require('../internals/global');\nvar isObject = require('../internals/is-object');\n\nvar document = global.document;\n// typeof document.createElement is 'object' in old IE\nvar EXISTS = isObject(document) && isObject(document.createElement);\n\nmodule.exports = function (it) {\n return EXISTS ? document.createElement(it) : {};\n};\n","var global = require('../internals/global');\nvar createNonEnumerableProperty = require('../internals/create-non-enumerable-property');\nvar has = require('../internals/has');\nvar setGlobal = require('../internals/set-global');\nvar inspectSource = require('../internals/inspect-source');\nvar InternalStateModule = require('../internals/internal-state');\n\nvar getInternalState = InternalStateModule.get;\nvar enforceInternalState = InternalStateModule.enforce;\nvar TEMPLATE = String(String).split('String');\n\n(module.exports = function (O, key, value, options) {\n var unsafe = options ? !!options.unsafe : false;\n var simple = options ? !!options.enumerable : false;\n var noTargetGet = options ? !!options.noTargetGet : false;\n if (typeof value == 'function') {\n if (typeof key == 'string' && !has(value, 'name')) createNonEnumerableProperty(value, 'name', key);\n enforceInternalState(value).source = TEMPLATE.join(typeof key == 'string' ? key : '');\n }\n if (O === global) {\n if (simple) O[key] = value;\n else setGlobal(key, value);\n return;\n } else if (!unsafe) {\n delete O[key];\n } else if (!noTargetGet && O[key]) {\n simple = true;\n }\n if (simple) O[key] = value;\n else createNonEnumerableProperty(O, key, value);\n// add fake Function#toString for correct work wrapped methods / constructors with methods like LoDash isNative\n})(Function.prototype, 'toString', function toString() {\n return typeof this == 'function' && getInternalState(this).source || inspectSource(this);\n});\n","var NATIVE_WEAK_MAP = require('../internals/native-weak-map');\nvar global = require('../internals/global');\nvar isObject = require('../internals/is-object');\nvar createNonEnumerableProperty = require('../internals/create-non-enumerable-property');\nvar objectHas = require('../internals/has');\nvar sharedKey = require('../internals/shared-key');\nvar hiddenKeys = require('../internals/hidden-keys');\n\nvar WeakMap = global.WeakMap;\nvar set, get, has;\n\nvar enforce = function (it) {\n return has(it) ? get(it) : set(it, {});\n};\n\nvar getterFor = function (TYPE) {\n return function (it) {\n var state;\n if (!isObject(it) || (state = get(it)).type !== TYPE) {\n throw TypeError('Incompatible receiver, ' + TYPE + ' required');\n } return state;\n };\n};\n\nif (NATIVE_WEAK_MAP) {\n var store = new WeakMap();\n var wmget = store.get;\n var wmhas = store.has;\n var wmset = store.set;\n set = function (it, metadata) {\n wmset.call(store, it, metadata);\n return metadata;\n };\n get = function (it) {\n return wmget.call(store, it) || {};\n };\n has = function (it) {\n return wmhas.call(store, it);\n };\n} else {\n var STATE = sharedKey('state');\n hiddenKeys[STATE] = true;\n set = function (it, metadata) {\n createNonEnumerableProperty(it, STATE, metadata);\n return metadata;\n };\n get = function (it) {\n return objectHas(it, STATE) ? it[STATE] : {};\n };\n has = function (it) {\n return objectHas(it, STATE);\n };\n}\n\nmodule.exports = {\n set: set,\n get: get,\n has: has,\n enforce: enforce,\n getterFor: getterFor\n};\n","var global = require('../internals/global');\nvar inspectSource = require('../internals/inspect-source');\n\nvar WeakMap = global.WeakMap;\n\nmodule.exports = typeof WeakMap === 'function' && /native code/.test(inspectSource(WeakMap));\n","var shared = require('../internals/shared');\nvar uid = require('../internals/uid');\n\nvar keys = shared('keys');\n\nmodule.exports = function (key) {\n return keys[key] || (keys[key] = uid(key));\n};\n","var IS_PURE = require('../internals/is-pure');\nvar store = require('../internals/shared-store');\n\n(module.exports = function (key, value) {\n return store[key] || (store[key] = value !== undefined ? value : {});\n})('versions', []).push({\n version: '3.5.0',\n mode: IS_PURE ? 'pure' : 'global',\n copyright: '© 2019 Denis Pushkarev (zloirock.ru)'\n});\n","module.exports = false;\n","var id = 0;\nvar postfix = Math.random();\n\nmodule.exports = function (key) {\n return 'Symbol(' + String(key === undefined ? '' : key) + ')_' + (++id + postfix).toString(36);\n};\n","var has = require('../internals/has');\nvar ownKeys = require('../internals/own-keys');\nvar getOwnPropertyDescriptorModule = require('../internals/object-get-own-property-descriptor');\nvar definePropertyModule = require('../internals/object-define-property');\n\nmodule.exports = function (target, source) {\n var keys = ownKeys(source);\n var defineProperty = definePropertyModule.f;\n var getOwnPropertyDescriptor = getOwnPropertyDescriptorModule.f;\n for (var i = 0; i < keys.length; i++) {\n var key = keys[i];\n if (!has(target, key)) defineProperty(target, key, getOwnPropertyDescriptor(source, key));\n }\n};\n","var getBuiltIn = require('../internals/get-built-in');\nvar getOwnPropertyNamesModule = require('../internals/object-get-own-property-names');\nvar getOwnPropertySymbolsModule = require('../internals/object-get-own-property-symbols');\nvar anObject = require('../internals/an-object');\n\n// all object keys, includes non-enumerable and symbols\nmodule.exports = getBuiltIn('Reflect', 'ownKeys') || function ownKeys(it) {\n var keys = getOwnPropertyNamesModule.f(anObject(it));\n var getOwnPropertySymbols = getOwnPropertySymbolsModule.f;\n return getOwnPropertySymbols ? keys.concat(getOwnPropertySymbols(it)) : keys;\n};\n","var path = require('../internals/path');\nvar global = require('../internals/global');\n\nvar aFunction = function (variable) {\n return typeof variable == 'function' ? variable : undefined;\n};\n\nmodule.exports = function (namespace, method) {\n return arguments.length < 2 ? aFunction(path[namespace]) || aFunction(global[namespace])\n : path[namespace] && path[namespace][method] || global[namespace] && global[namespace][method];\n};\n","var global = require('../internals/global');\n\nmodule.exports = global;\n","var internalObjectKeys = require('../internals/object-keys-internal');\nvar enumBugKeys = require('../internals/enum-bug-keys');\n\nvar hiddenKeys = enumBugKeys.concat('length', 'prototype');\n\n// `Object.getOwnPropertyNames` method\n// https://tc39.github.io/ecma262/#sec-object.getownpropertynames\nexports.f = Object.getOwnPropertyNames || function getOwnPropertyNames(O) {\n return internalObjectKeys(O, hiddenKeys);\n};\n","var toIndexedObject = require('../internals/to-indexed-object');\nvar toLength = require('../internals/to-length');\nvar toAbsoluteIndex = require('../internals/to-absolute-index');\n\n// `Array.prototype.{ indexOf, includes }` methods implementation\nvar createMethod = function (IS_INCLUDES) {\n return function ($this, el, fromIndex) {\n var O = toIndexedObject($this);\n var length = toLength(O.length);\n var index = toAbsoluteIndex(fromIndex, length);\n var value;\n // Array#includes uses SameValueZero equality algorithm\n // eslint-disable-next-line no-self-compare\n if (IS_INCLUDES && el != el) while (length > index) {\n value = O[index++];\n // eslint-disable-next-line no-self-compare\n if (value != value) return true;\n // Array#indexOf ignores holes, Array#includes - not\n } else for (;length > index; index++) {\n if ((IS_INCLUDES || index in O) && O[index] === el) return IS_INCLUDES || index || 0;\n } return !IS_INCLUDES && -1;\n };\n};\n\nmodule.exports = {\n // `Array.prototype.includes` method\n // https://tc39.github.io/ecma262/#sec-array.prototype.includes\n includes: createMethod(true),\n // `Array.prototype.indexOf` method\n // https://tc39.github.io/ecma262/#sec-array.prototype.indexof\n indexOf: createMethod(false)\n};\n","var toInteger = require('../internals/to-integer');\n\nvar min = Math.min;\n\n// `ToLength` abstract operation\n// https://tc39.github.io/ecma262/#sec-tolength\nmodule.exports = function (argument) {\n return argument > 0 ? min(toInteger(argument), 0x1FFFFFFFFFFFFF) : 0; // 2 ** 53 - 1 == 9007199254740991\n};\n","var toInteger = require('../internals/to-integer');\n\nvar max = Math.max;\nvar min = Math.min;\n\n// Helper for a popular repeating case of the spec:\n// Let integer be ? ToInteger(index).\n// If integer < 0, let result be max((length + integer), 0); else let result be min(integer, length).\nmodule.exports = function (index, length) {\n var integer = toInteger(index);\n return integer < 0 ? max(integer + length, 0) : min(integer, length);\n};\n","var fails = require('../internals/fails');\n\nvar replacement = /#|\\.prototype\\./;\n\nvar isForced = function (feature, detection) {\n var value = data[normalize(feature)];\n return value == POLYFILL ? true\n : value == NATIVE ? false\n : typeof detection == 'function' ? fails(detection)\n : !!detection;\n};\n\nvar normalize = isForced.normalize = function (string) {\n return String(string).replace(replacement, '.').toLowerCase();\n};\n\nvar data = isForced.data = {};\nvar NATIVE = isForced.NATIVE = 'N';\nvar POLYFILL = isForced.POLYFILL = 'P';\n\nmodule.exports = isForced;\n","'use strict';\nvar DESCRIPTORS = require('../internals/descriptors');\nvar fails = require('../internals/fails');\nvar objectKeys = require('../internals/object-keys');\nvar getOwnPropertySymbolsModule = require('../internals/object-get-own-property-symbols');\nvar propertyIsEnumerableModule = require('../internals/object-property-is-enumerable');\nvar toObject = require('../internals/to-object');\nvar IndexedObject = require('../internals/indexed-object');\n\nvar nativeAssign = Object.assign;\nvar defineProperty = Object.defineProperty;\n\n// `Object.assign` method\n// https://tc39.github.io/ecma262/#sec-object.assign\nmodule.exports = !nativeAssign || fails(function () {\n // should have correct order of operations (Edge bug)\n if (DESCRIPTORS && nativeAssign({ b: 1 }, nativeAssign(defineProperty({}, 'a', {\n enumerable: true,\n get: function () {\n defineProperty(this, 'b', {\n value: 3,\n enumerable: false\n });\n }\n }), { b: 2 })).b !== 1) return true;\n // should work with symbols and should have deterministic property order (V8 bug)\n var A = {};\n var B = {};\n // eslint-disable-next-line no-undef\n var symbol = Symbol();\n var alphabet = 'abcdefghijklmnopqrst';\n A[symbol] = 7;\n alphabet.split('').forEach(function (chr) { B[chr] = chr; });\n return nativeAssign({}, A)[symbol] != 7 || objectKeys(nativeAssign({}, B)).join('') != alphabet;\n}) ? function assign(target, source) { // eslint-disable-line no-unused-vars\n var T = toObject(target);\n var argumentsLength = arguments.length;\n var index = 1;\n var getOwnPropertySymbols = getOwnPropertySymbolsModule.f;\n var propertyIsEnumerable = propertyIsEnumerableModule.f;\n while (argumentsLength > index) {\n var S = IndexedObject(arguments[index++]);\n var keys = getOwnPropertySymbols ? objectKeys(S).concat(getOwnPropertySymbols(S)) : objectKeys(S);\n var length = keys.length;\n var j = 0;\n var key;\n while (length > j) {\n key = keys[j++];\n if (!DESCRIPTORS || propertyIsEnumerable.call(S, key)) T[key] = S[key];\n }\n } return T;\n} : nativeAssign;\n","var internalObjectKeys = require('../internals/object-keys-internal');\nvar enumBugKeys = require('../internals/enum-bug-keys');\n\n// `Object.keys` method\n// https://tc39.github.io/ecma262/#sec-object.keys\nmodule.exports = Object.keys || function keys(O) {\n return internalObjectKeys(O, enumBugKeys);\n};\n","var requireObjectCoercible = require('../internals/require-object-coercible');\n\n// `ToObject` abstract operation\n// https://tc39.github.io/ecma262/#sec-toobject\nmodule.exports = function (argument) {\n return Object(requireObjectCoercible(argument));\n};\n","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.LogLevel = void 0;\nvar LogLevel;\nexports.LogLevel = LogLevel;\n\n(function (LogLevel) {\n LogLevel[\"Debug\"] = \"DEBUG\";\n LogLevel[\"Info\"] = \"INFO\";\n LogLevel[\"Warn\"] = \"WARN\";\n LogLevel[\"Error\"] = \"ERROR\";\n LogLevel[\"Fatal\"] = \"FATAL\";\n})(LogLevel || (exports.LogLevel = LogLevel = {}));\n//# sourceMappingURL=contracts.js.map","\"use strict\";\n\nObject.defineProperty(exports, \"__esModule\", {\n value: true\n});\nexports.LoggerBuilder = void 0;\n\nfunction _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError(\"Cannot call a class as a function\"); } }\n\nfunction _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if (\"value\" in descriptor) descriptor.writable = true; Object.defineProperty(target, descriptor.key, descriptor); } }\n\nfunction _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); return Constructor; }\n\nvar LoggerBuilder =\n/*#__PURE__*/\nfunction () {\n function LoggerBuilder(factory) {\n _classCallCheck(this, LoggerBuilder);\n\n this.context = {};\n this.factory = factory;\n }\n\n _createClass(LoggerBuilder, [{\n key: \"setApp\",\n value: function setApp(appId) {\n this.context.app = appId;\n return this;\n }\n }, {\n key: \"setUid\",\n value: function setUid(uid) {\n this.context.uid = uid;\n return this;\n }\n }, {\n key: \"build\",\n value: function build() {\n return this.factory(this.context);\n }\n }]);\n\n return LoggerBuilder;\n}();\n\nexports.LoggerBuilder = LoggerBuilder;\n//# sourceMappingURL=Builder.js.map","'use strict';\n\nconst pTry = (fn, ...arguments_) => new Promise(resolve => {\n\tresolve(fn(...arguments_));\n});\n\nmodule.exports = pTry;\n// TODO: remove this in the next major version\nmodule.exports.default = pTry;\n","import mod from \"-!../../../../node_modules/vue-style-loader/index.js!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./RecommendedApps.vue?vue&type=style&index=0&id=26577283&lang=scss&scoped=true&\"; export default mod; export * from \"-!../../../../node_modules/vue-style-loader/index.js!../../../../node_modules/css-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/loaders/stylePostLoader.js!../../../../node_modules/sass-loader/dist/cjs.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./RecommendedApps.vue?vue&type=style&index=0&id=26577283&lang=scss&scoped=true&\"","// Imports\nvar ___CSS_LOADER_API_IMPORT___ = require(\"../../../../node_modules/css-loader/dist/runtime/api.js\");\nexports = ___CSS_LOADER_API_IMPORT___(false);\n// Module\nexports.push([module.id, \"p.loading[data-v-26577283],p.loading-error[data-v-26577283]{height:100px}.text-center[data-v-26577283]{text-align:center}.app[data-v-26577283]{display:flex;flex-direction:row}.app img[data-v-26577283]{height:50px;width:50px;filter:invert(1)}.app img[data-v-26577283],.app .info[data-v-26577283]{padding:12px}.app .info h3[data-v-26577283],.app .info p[data-v-26577283]{text-align:left}.app .info h3[data-v-26577283]{color:#fff;margin-top:0}.app .info h3>span.icon[data-v-26577283]{display:inline-block}\\n\", \"\"]);\n// Exports\nmodule.exports = exports;\n","/*\n * @copyright 2019 Christoph Wurst <christoph@winzerhof-wurst.at>\n *\n * @author 2019 Christoph Wurst <christoph@winzerhof-wurst.at>\n *\n * @license GNU AGPL version 3 or any later version\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n */\n\nimport { getCurrentUser } from '@nextcloud/auth'\nimport { getLoggerBuilder } from '@nextcloud/logger'\n\nconst getLogger = user => {\n\tif (user === null) {\n\t\treturn getLoggerBuilder()\n\t\t\t.setApp('core')\n\t\t\t.build()\n\t}\n\treturn getLoggerBuilder()\n\t\t.setApp('core')\n\t\t.setUid(user.uid)\n\t\t.build()\n}\n\nexport default getLogger(getCurrentUser())\n","<!--\n - @copyright 2019 Christoph Wurst <christoph@winzerhof-wurst.at>\n -\n - @author 2019 Christoph Wurst <christoph@winzerhof-wurst.at>\n -\n - @license GNU AGPL version 3 or any later version\n -\n - This program is free software: you can redistribute it and/or modify\n - it under the terms of the GNU Affero General Public License as\n - published by the Free Software Foundation, either version 3 of the\n - License, or (at your option) any later version.\n -\n - This program is distributed in the hope that it will be useful,\n - but WITHOUT ANY WARRANTY; without even the implied warranty of\n - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n - GNU Affero General Public License for more details.\n -\n - You should have received a copy of the GNU Affero General Public License\n - along with this program. If not, see <http://www.gnu.org/licenses/>.\n -->\n\n<template>\n\t<div class=\"body-login-container\">\n\t\t<h2>{{ t('core', 'Recommended apps') }}</h2>\n\t\t<p v-if=\"loadingApps\" class=\"loading text-center\">\n\t\t\t{{ t('core', 'Loading apps …') }}\n\t\t</p>\n\t\t<p v-else-if=\"loadingAppsError\" class=\"loading-error text-center\">\n\t\t\t{{ t('core', 'Could not fetch list of apps from the app store.') }}\n\t\t</p>\n\t\t<p v-else class=\"text-center\">\n\t\t\t{{ t('core', 'Installing apps …') }}\n\t\t</p>\n\t\t<div v-for=\"app in recommendedApps\" :key=\"app.id\" class=\"app\">\n\t\t\t<img :src=\"customIcon(app.id)\" :alt=\"t('core', 'Nextcloud {app}', { app: app.name })\">\n\t\t\t<div class=\"info\">\n\t\t\t\t<h3>\n\t\t\t\t\t{{ app.name }}\n\t\t\t\t\t<span v-if=\"app.loading\" class=\"icon icon-loading-small\" />\n\t\t\t\t\t<span v-else-if=\"app.active\" class=\"icon icon-checkmark-white\" />\n\t\t\t\t</h3>\n\t\t\t\t<p v-html=\"customDescription(app.id)\" />\n\t\t\t\t<p v-if=\"app.installationError\">\n\t\t\t\t\t<strong>{{ t('core', 'App download or installation failed') }}</strong>\n\t\t\t\t</p>\n\t\t\t\t<p v-else-if=\"!app.isCompatible\">\n\t\t\t\t\t<strong>{{ t('core', 'Can\\'t install this app because it is not compatible') }}</strong>\n\t\t\t\t</p>\n\t\t\t\t<p v-else-if=\"!app.canInstall\">\n\t\t\t\t\t<strong>{{ t('core', 'Can\\'t install this app') }}</strong>\n\t\t\t\t</p>\n\t\t\t</div>\n\t\t</div>\n\t\t<p class=\"text-center\">\n\t\t\t<a :href=\"defaultPageUrl\">{{ t('core', 'Cancel') }}</a>\n\t\t</p>\n\t</div>\n</template>\n\n<script>\nimport axios from '@nextcloud/axios'\nimport { generateUrl, imagePath } from '@nextcloud/router'\nimport { loadState } from '@nextcloud/initial-state'\nimport pLimit from 'p-limit'\nimport { translate as t } from '@nextcloud/l10n'\n\nimport logger from '../../logger'\n\nconst recommended = {\n\tcalendar: {\n\t\tdescription: t('core', 'Schedule work & meetings, synced with all your devices.'),\n\t\ticon: imagePath('core', 'places/calendar.svg'),\n\t},\n\tcontacts: {\n\t\tdescription: t('core', 'Keep your colleagues and friends in one place without leaking their private info.'),\n\t\ticon: imagePath('core', 'places/contacts.svg'),\n\t},\n\tmail: {\n\t\tdescription: t('core', 'Simple email app nicely integrated with Files, Contacts and Calendar.'),\n\t\ticon: imagePath('core', 'actions/mail.svg'),\n\t},\n\ttalk: {\n\t\tdescription: t('core', 'Screensharing, online meetings and web conferencing – on desktop and with mobile apps.'),\n\t},\n\tonlyoffice: {\n\t\tdescription: t('core', 'Collaboratively edit office documents.'),\n\t},\n\tdocumentserver_community: {\n\t\tdescription: t('core', 'Local document editing back-end used by the OnlyOffice app.'),\n\t},\n}\nconst recommendedIds = Object.keys(recommended)\nconst defaultPageUrl = loadState('core', 'defaultPageUrl')\n\nexport default {\n\tname: 'RecommendedApps',\n\tdata() {\n\t\treturn {\n\t\t\tloadingApps: true,\n\t\t\tloadingAppsError: false,\n\t\t\tapps: [],\n\t\t\tdefaultPageUrl,\n\t\t}\n\t},\n\tcomputed: {\n\t\trecommendedApps() {\n\t\t\treturn this.apps.filter(app => recommendedIds.includes(app.id))\n\t\t},\n\t},\n\tmounted() {\n\t\treturn axios.get(generateUrl('settings/apps/list'))\n\t\t\t.then(resp => resp.data)\n\t\t\t.then(data => {\n\t\t\t\tlogger.info(`${data.apps.length} apps fetched`)\n\n\t\t\t\tthis.apps = data.apps.map(app => Object.assign(app, { loading: false, installationError: false }))\n\t\t\t\tlogger.debug(`${this.recommendedApps.length} recommended apps found`, { apps: this.recommendedApps })\n\n\t\t\t\tthis.installApps()\n\t\t\t})\n\t\t\t.catch(error => {\n\t\t\t\tlogger.error('could not fetch app list', { error })\n\n\t\t\t\tthis.loadingAppsError = true\n\t\t\t})\n\t\t\t.then(() => {\n\t\t\t\tthis.loadingApps = false\n\t\t\t})\n\t},\n\tmethods: {\n\t\tinstallApps() {\n\t\t\tconst limit = pLimit(1)\n\t\t\tconst installing = this.recommendedApps\n\t\t\t\t.filter(app => !app.active && app.isCompatible && app.canInstall)\n\t\t\t\t.map(app => limit(() => {\n\t\t\t\t\tlogger.info(`installing ${app.id}`)\n\t\t\t\t\tapp.loading = true\n\t\t\t\t\treturn axios.post(generateUrl(`settings/apps/enable`), { appIds: [app.id], groups: [] })\n\t\t\t\t\t\t.catch(error => {\n\t\t\t\t\t\t\tlogger.error(`could not install ${app.id}`, { error })\n\t\t\t\t\t\t\tapp.installationError = true\n\t\t\t\t\t\t})\n\t\t\t\t\t\t.then(() => {\n\t\t\t\t\t\t\tlogger.info(`installed ${app.id}`)\n\t\t\t\t\t\t\tapp.loading = false\n\t\t\t\t\t\t})\n\t\t\t\t}))\n\t\t\tlogger.debug(`installing ${installing.length} recommended apps`)\n\t\t\tPromise.all(installing)\n\t\t\t\t.then(() => {\n\t\t\t\t\tlogger.info('all recommended apps installed, redirecting …')\n\n\t\t\t\t\twindow.location = defaultPageUrl\n\t\t\t\t})\n\t\t\t\t.catch(error => logger.error('could not install recommended apps', { error }))\n\t\t},\n\t\tcustomIcon(appId) {\n\t\t\tif (!(appId in recommended) || !recommended[appId].icon) {\n\t\t\t\tlogger.warn(`no app icon for recommended app ${appId}`)\n\t\t\t\treturn imagePath('core', 'places/default-app-icon.svg')\n\t\t\t}\n\t\t\treturn recommended[appId].icon\n\t\t},\n\t\tcustomDescription(appId) {\n\t\t\tif (!(appId in recommended)) {\n\t\t\t\tlogger.warn(`no app description for recommended app ${appId}`)\n\t\t\t\treturn ''\n\t\t\t}\n\t\t\treturn recommended[appId].description\n\t\t},\n\t},\n}\n</script>\n\n<style lang=\"scss\" scoped>\n.body-login-container {\n\n}\n\np.loading, p.loading-error {\n\theight: 100px;\n}\n\n.text-center {\n\ttext-align: center;\n}\n\n.app {\n\tdisplay: flex;\n\tflex-direction: row;\n\n\timg {\n\t\theight: 50px;\n\t\twidth: 50px;\n\t\tfilter: invert(1);\n\t}\n\n\timg, .info {\n\t\tpadding: 12px;\n\t}\n\n\t.info {\n\t\th3, p {\n\t\t\ttext-align: left;\n\t\t}\n\n\t\th3 {\n\t\t\tcolor: #fff;\n\t\t\tmargin-top: 0;\n\t\t}\n\n\t\th3 > span.icon {\n\t\t\tdisplay: inline-block;\n\t\t}\n\t}\n}\n</style>\n","import mod from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./RecommendedApps.vue?vue&type=script&lang=js&\"; export default mod; export * from \"-!../../../../node_modules/babel-loader/lib/index.js!../../../../node_modules/vue-loader/lib/index.js??vue-loader-options!./RecommendedApps.vue?vue&type=script&lang=js&\"","import { render, staticRenderFns } from \"./RecommendedApps.vue?vue&type=template&id=26577283&scoped=true&\"\nimport script from \"./RecommendedApps.vue?vue&type=script&lang=js&\"\nexport * from \"./RecommendedApps.vue?vue&type=script&lang=js&\"\nimport style0 from \"./RecommendedApps.vue?vue&type=style&index=0&id=26577283&lang=scss&scoped=true&\"\n\n\n/* normalize component */\nimport normalizer from \"!../../../../node_modules/vue-loader/lib/runtime/componentNormalizer.js\"\nvar component = normalizer(\n script,\n render,\n staticRenderFns,\n false,\n null,\n \"26577283\",\n null\n \n)\n\nexport default component.exports","var render = function () {var _vm=this;var _h=_vm.$createElement;var _c=_vm._self._c||_h;return _c('div',{staticClass:\"body-login-container\"},[_c('h2',[_vm._v(_vm._s(_vm.t('core', 'Recommended apps')))]),_vm._v(\" \"),(_vm.loadingApps)?_c('p',{staticClass:\"loading text-center\"},[_vm._v(\"\\n\\t\\t\"+_vm._s(_vm.t('core', 'Loading apps …'))+\"\\n\\t\")]):(_vm.loadingAppsError)?_c('p',{staticClass:\"loading-error text-center\"},[_vm._v(\"\\n\\t\\t\"+_vm._s(_vm.t('core', 'Could not fetch list of apps from the app store.'))+\"\\n\\t\")]):_c('p',{staticClass:\"text-center\"},[_vm._v(\"\\n\\t\\t\"+_vm._s(_vm.t('core', 'Installing apps …'))+\"\\n\\t\")]),_vm._v(\" \"),_vm._l((_vm.recommendedApps),function(app){return _c('div',{key:app.id,staticClass:\"app\"},[_c('img',{attrs:{\"src\":_vm.customIcon(app.id),\"alt\":_vm.t('core', 'Nextcloud {app}', { app: app.name })}}),_vm._v(\" \"),_c('div',{staticClass:\"info\"},[_c('h3',[_vm._v(\"\\n\\t\\t\\t\\t\"+_vm._s(app.name)+\"\\n\\t\\t\\t\\t\"),(app.loading)?_c('span',{staticClass:\"icon icon-loading-small\"}):(app.active)?_c('span',{staticClass:\"icon icon-checkmark-white\"}):_vm._e()]),_vm._v(\" \"),_c('p',{domProps:{\"innerHTML\":_vm._s(_vm.customDescription(app.id))}}),_vm._v(\" \"),(app.installationError)?_c('p',[_c('strong',[_vm._v(_vm._s(_vm.t('core', 'App download or installation failed')))])]):(!app.isCompatible)?_c('p',[_c('strong',[_vm._v(_vm._s(_vm.t('core', 'Can\\'t install this app because it is not compatible')))])]):(!app.canInstall)?_c('p',[_c('strong',[_vm._v(_vm._s(_vm.t('core', 'Can\\'t install this app')))])]):_vm._e()])])}),_vm._v(\" \"),_c('p',{staticClass:\"text-center\"},[_c('a',{attrs:{\"href\":_vm.defaultPageUrl}},[_vm._v(_vm._s(_vm.t('core', 'Cancel')))])])],2)}\nvar staticRenderFns = []\n\nexport { render, staticRenderFns }","/*\n * @copyright 2019 Christoph Wurst <christoph@winzerhof-wurst.at>\n *\n * @author 2019 Christoph Wurst <christoph@winzerhof-wurst.at>\n *\n * @license GNU AGPL version 3 or any later version\n *\n * This program is free software: you can redistribute it and/or modify\n * it under the terms of the GNU Affero General Public License as\n * published by the Free Software Foundation, either version 3 of the\n * License, or (at your option) any later version.\n *\n * This program is distributed in the hope that it will be useful,\n * but WITHOUT ANY WARRANTY; without even the implied warranty of\n * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\n * GNU Affero General Public License for more details.\n *\n * You should have received a copy of the GNU Affero General Public License\n * along with this program. If not, see <http://www.gnu.org/licenses/>.\n */\n\nimport { getRequestToken } from '@nextcloud/auth'\nimport { generateFilePath } from '@nextcloud/router'\nimport { translate as t } from '@nextcloud/l10n'\nimport Vue from 'vue'\n\nimport logger from './logger'\nimport RecommendedApps from './components/setup/RecommendedApps'\n\n// eslint-disable-next-line camelcase\n__webpack_nonce__ = btoa(getRequestToken())\n// eslint-disable-next-line camelcase\n__webpack_public_path__ = generateFilePath('core', '', 'js/')\n\nVue.mixin({\n\tmethods: {\n\t\tt,\n\t},\n})\n\nconst View = Vue.extend(RecommendedApps)\nnew View().$mount('#recommended-apps')\n\nlogger.debug('recommended apps view rendered')\n"],"sourceRoot":""} \ No newline at end of file
diff --git a/core/src/components/setup/RecommendedApps.vue b/core/src/components/setup/RecommendedApps.vue
index 2b1b901a6be..4375c53a0fa 100644
--- a/core/src/components/setup/RecommendedApps.vue
+++ b/core/src/components/setup/RecommendedApps.vue
@@ -155,7 +155,7 @@ export default {
.catch(error => logger.error('could not install recommended apps', { error }))
},
customIcon(appId) {
- if (!(appId in recommended)) {
+ if (!(appId in recommended) || !recommended[appId].icon) {
logger.warn(`no app icon for recommended app ${appId}`)
return imagePath('core', 'places/default-app-icon.svg')
}
@@ -174,7 +174,7 @@ export default {
<style lang="scss" scoped>
.body-login-container {
- max-width: 290px;
+
}
p.loading, p.loading-error {