!function(n){function t(r){if(i[r])return i[r].exports;var u=i[r]={i:r,l:!1,exports:{}};return n[r].call(u.exports,u,u.exports,t),u.l=!0,u.exports}var i={};t.m=n;t.c=i;t.d=function(n,i,r){t.o(n,i)||Object.defineProperty(n,i,{enumerable:!0,get:r})};t.r=function(n){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(n,Symbol.toStringTag,{value:"Module"});Object.defineProperty(n,"__esModule",{value:!0})};t.t=function(n,i){var r,u;if((1&i&&(n=t(n)),8&i)||4&i&&"object"==typeof n&&n&&n.__esModule)return n;if(r=Object.create(null),t.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:n}),2&i&&"string"!=typeof n)for(u in n)t.d(r,u,function(t){return n[t]}.bind(null,u));return r};t.n=function(n){var i=n&&n.__esModule?function(){return n.default}:function(){return n};return t.d(i,"a",i),i};t.o=function(n,t){return Object.prototype.hasOwnProperty.call(n,t)};t.p="";t(t.s="./src/js/global.js")}({"./node_modules/core-js/internals/a-function.js":function(module,exports){eval("module.exports = function (it) {\n  if (typeof it != 'function') {\n    throw TypeError(String(it) + ' is not a function');\n  }\n\n  return it;\n};\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/a-function.js?")},"./node_modules/core-js/internals/a-possible-prototype.js":function(module,exports,__webpack_require__){eval('var isObject = __webpack_require__(/*! ../internals/is-object */ "./node_modules/core-js/internals/is-object.js");\n\nmodule.exports = function (it) {\n  if (!isObject(it) && it !== null) {\n    throw TypeError("Can\'t set " + String(it) + \' as a prototype\');\n  }\n\n  return it;\n};\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/a-possible-prototype.js?')},"./node_modules/core-js/internals/add-to-unscopables.js":function(module,exports,__webpack_require__){eval('var wellKnownSymbol = __webpack_require__(/*! ../internals/well-known-symbol */ "./node_modules/core-js/internals/well-known-symbol.js");\n\nvar create = __webpack_require__(/*! ../internals/object-create */ "./node_modules/core-js/internals/object-create.js");\n\nvar definePropertyModule = __webpack_require__(/*! ../internals/object-define-property */ "./node_modules/core-js/internals/object-define-property.js");\n\nvar UNSCOPABLES = wellKnownSymbol(\'unscopables\');\nvar ArrayPrototype = Array.prototype; // Array.prototype[@@unscopables]\n// https://tc39.github.io/ecma262/#sec-array.prototype-@@unscopables\n\nif (ArrayPrototype[UNSCOPABLES] == undefined) {\n  definePropertyModule.f(ArrayPrototype, UNSCOPABLES, {\n    configurable: true,\n    value: create(null)\n  });\n} // add a key to Array.prototype[@@unscopables]\n\n\nmodule.exports = function (key) {\n  ArrayPrototype[UNSCOPABLES][key] = true;\n};\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/add-to-unscopables.js?')},"./node_modules/core-js/internals/advance-string-index.js":function(module,exports,__webpack_require__){"use strict";eval('\n\nvar charAt = __webpack_require__(/*! ../internals/string-multibyte */ "./node_modules/core-js/internals/string-multibyte.js").charAt; // `AdvanceStringIndex` abstract operation\n// https://tc39.github.io/ecma262/#sec-advancestringindex\n\n\nmodule.exports = function (S, index, unicode) {\n  return index + (unicode ? charAt(S, index).length : 1);\n};\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/advance-string-index.js?')},"./node_modules/core-js/internals/an-object.js":function(module,exports,__webpack_require__){eval("var isObject = __webpack_require__(/*! ../internals/is-object */ \"./node_modules/core-js/internals/is-object.js\");\n\nmodule.exports = function (it) {\n  if (!isObject(it)) {\n    throw TypeError(String(it) + ' is not an object');\n  }\n\n  return it;\n};\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/an-object.js?")},"./node_modules/core-js/internals/array-for-each.js":function(module,exports,__webpack_require__){"use strict";eval('\n\nvar $forEach = __webpack_require__(/*! ../internals/array-iteration */ "./node_modules/core-js/internals/array-iteration.js").forEach;\n\nvar arrayMethodIsStrict = __webpack_require__(/*! ../internals/array-method-is-strict */ "./node_modules/core-js/internals/array-method-is-strict.js");\n\nvar arrayMethodUsesToLength = __webpack_require__(/*! ../internals/array-method-uses-to-length */ "./node_modules/core-js/internals/array-method-uses-to-length.js");\n\nvar STRICT_METHOD = arrayMethodIsStrict(\'forEach\');\nvar USES_TO_LENGTH = arrayMethodUsesToLength(\'forEach\'); // `Array.prototype.forEach` method implementation\n// https://tc39.github.io/ecma262/#sec-array.prototype.foreach\n\nmodule.exports = !STRICT_METHOD || !USES_TO_LENGTH ? function forEach(callbackfn\n/* , thisArg */\n) {\n  return $forEach(this, callbackfn, arguments.length > 1 ? arguments[1] : undefined);\n} : [].forEach;\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/array-for-each.js?')},"./node_modules/core-js/internals/array-includes.js":function(module,exports,__webpack_require__){eval('var toIndexedObject = __webpack_require__(/*! ../internals/to-indexed-object */ "./node_modules/core-js/internals/to-indexed-object.js");\n\nvar toLength = __webpack_require__(/*! ../internals/to-length */ "./node_modules/core-js/internals/to-length.js");\n\nvar toAbsoluteIndex = __webpack_require__(/*! ../internals/to-absolute-index */ "./node_modules/core-js/internals/to-absolute-index.js"); // `Array.prototype.{ indexOf, includes }` methods implementation\n\n\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; // Array#includes uses SameValueZero equality algorithm\n    // eslint-disable-next-line no-self-compare\n\n    if (IS_INCLUDES && el != el) while (length > index) {\n      value = O[index++]; // eslint-disable-next-line no-self-compare\n\n      if (value != value) return true; // 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    }\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\n//# sourceURL=webpack:///./node_modules/core-js/internals/array-includes.js?')},"./node_modules/core-js/internals/array-iteration.js":function(module,exports,__webpack_require__){eval('var bind = __webpack_require__(/*! ../internals/function-bind-context */ "./node_modules/core-js/internals/function-bind-context.js");\n\nvar IndexedObject = __webpack_require__(/*! ../internals/indexed-object */ "./node_modules/core-js/internals/indexed-object.js");\n\nvar toObject = __webpack_require__(/*! ../internals/to-object */ "./node_modules/core-js/internals/to-object.js");\n\nvar toLength = __webpack_require__(/*! ../internals/to-length */ "./node_modules/core-js/internals/to-length.js");\n\nvar arraySpeciesCreate = __webpack_require__(/*! ../internals/array-species-create */ "./node_modules/core-js/internals/array-species-create.js");\n\nvar push = [].push; // `Array.prototype.{ forEach, map, filter, some, every, find, findIndex }` methods implementation\n\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\n    for (; length > index; index++) if (NO_HOLES || index in self) {\n      value = self[index];\n      result = boundFunction(value, index, O);\n\n      if (TYPE) {\n        if (IS_MAP) target[index] = result; // map\n        else if (result) switch (TYPE) {\n            case 3:\n              return true;\n            // some\n\n            case 5:\n              return value;\n            // find\n\n            case 6:\n              return index;\n            // findIndex\n\n            case 2:\n              push.call(target, value);\n            // filter\n          } else if (IS_EVERY) return false; // every\n      }\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\n//# sourceURL=webpack:///./node_modules/core-js/internals/array-iteration.js?')},"./node_modules/core-js/internals/array-method-has-species-support.js":function(module,exports,__webpack_require__){eval('var fails = __webpack_require__(/*! ../internals/fails */ "./node_modules/core-js/internals/fails.js");\n\nvar wellKnownSymbol = __webpack_require__(/*! ../internals/well-known-symbol */ "./node_modules/core-js/internals/well-known-symbol.js");\n\nvar V8_VERSION = __webpack_require__(/*! ../internals/engine-v8-version */ "./node_modules/core-js/internals/engine-v8-version.js");\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\n    constructor[SPECIES] = function () {\n      return {\n        foo: 1\n      };\n    };\n\n    return array[METHOD_NAME](Boolean).foo !== 1;\n  });\n};\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/array-method-has-species-support.js?')},"./node_modules/core-js/internals/array-method-is-strict.js":function(module,exports,__webpack_require__){"use strict";eval('\n\nvar fails = __webpack_require__(/*! ../internals/fails */ "./node_modules/core-js/internals/fails.js");\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 () {\n      throw 1;\n    }, 1);\n  });\n};\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/array-method-is-strict.js?')},"./node_modules/core-js/internals/array-method-uses-to-length.js":function(module,exports,__webpack_require__){eval('var DESCRIPTORS = __webpack_require__(/*! ../internals/descriptors */ "./node_modules/core-js/internals/descriptors.js");\n\nvar fails = __webpack_require__(/*! ../internals/fails */ "./node_modules/core-js/internals/fails.js");\n\nvar has = __webpack_require__(/*! ../internals/has */ "./node_modules/core-js/internals/has.js");\n\nvar defineProperty = Object.defineProperty;\nvar cache = {};\n\nvar thrower = function (it) {\n  throw it;\n};\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  return cache[METHOD_NAME] = !!method && !fails(function () {\n    if (ACCESSORS && !DESCRIPTORS) return true;\n    var O = {\n      length: -1\n    };\n    if (ACCESSORS) defineProperty(O, 1, {\n      enumerable: true,\n      get: thrower\n    });else O[1] = 1;\n    method.call(O, argument0, argument1);\n  });\n};\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/array-method-uses-to-length.js?')},"./node_modules/core-js/internals/array-species-create.js":function(module,exports,__webpack_require__){eval('var isObject = __webpack_require__(/*! ../internals/is-object */ "./node_modules/core-js/internals/is-object.js");\n\nvar isArray = __webpack_require__(/*! ../internals/is-array */ "./node_modules/core-js/internals/is-array.js");\n\nvar wellKnownSymbol = __webpack_require__(/*! ../internals/well-known-symbol */ "./node_modules/core-js/internals/well-known-symbol.js");\n\nvar SPECIES = wellKnownSymbol(\'species\'); // `ArraySpeciesCreate` abstract operation\n// https://tc39.github.io/ecma262/#sec-arrayspeciescreate\n\nmodule.exports = function (originalArray, length) {\n  var C;\n\n  if (isArray(originalArray)) {\n    C = originalArray.constructor; // cross-realm fallback\n\n    if (typeof C == \'function\' && (C === Array || isArray(C.prototype))) C = undefined;else if (isObject(C)) {\n      C = C[SPECIES];\n      if (C === null) C = undefined;\n    }\n  }\n\n  return new (C === undefined ? Array : C)(length === 0 ? 0 : length);\n};\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/array-species-create.js?')},"./node_modules/core-js/internals/classof-raw.js":function(module,exports){eval("var toString = {}.toString;\n\nmodule.exports = function (it) {\n  return toString.call(it).slice(8, -1);\n};\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/classof-raw.js?")},"./node_modules/core-js/internals/classof.js":function(module,exports,__webpack_require__){eval("var TO_STRING_TAG_SUPPORT = __webpack_require__(/*! ../internals/to-string-tag-support */ \"./node_modules/core-js/internals/to-string-tag-support.js\");\n\nvar classofRaw = __webpack_require__(/*! ../internals/classof-raw */ \"./node_modules/core-js/internals/classof-raw.js\");\n\nvar wellKnownSymbol = __webpack_require__(/*! ../internals/well-known-symbol */ \"./node_modules/core-js/internals/well-known-symbol.js\");\n\nvar TO_STRING_TAG = wellKnownSymbol('toStringTag'); // ES3 wrong here\n\nvar CORRECT_ARGUMENTS = classofRaw(function () {\n  return arguments;\n}()) == 'Arguments'; // fallback for IE11 Script Access Denied error\n\nvar tryGet = function (it, key) {\n  try {\n    return it[key];\n  } catch (error) {\n    /* empty */\n  }\n}; // getting tag from ES6+ `Object.prototype.toString`\n\n\nmodule.exports = TO_STRING_TAG_SUPPORT ? classofRaw : function (it) {\n  var O, tag, result;\n  return it === undefined ? 'Undefined' : it === null ? 'Null' // @@toStringTag case\n  : typeof (tag = tryGet(O = Object(it), TO_STRING_TAG)) == 'string' ? tag // builtinTag case\n  : CORRECT_ARGUMENTS ? classofRaw(O) // ES3 arguments fallback\n  : (result = classofRaw(O)) == 'Object' && typeof O.callee == 'function' ? 'Arguments' : result;\n};\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/classof.js?")},"./node_modules/core-js/internals/copy-constructor-properties.js":function(module,exports,__webpack_require__){eval('var has = __webpack_require__(/*! ../internals/has */ "./node_modules/core-js/internals/has.js");\n\nvar ownKeys = __webpack_require__(/*! ../internals/own-keys */ "./node_modules/core-js/internals/own-keys.js");\n\nvar getOwnPropertyDescriptorModule = __webpack_require__(/*! ../internals/object-get-own-property-descriptor */ "./node_modules/core-js/internals/object-get-own-property-descriptor.js");\n\nvar definePropertyModule = __webpack_require__(/*! ../internals/object-define-property */ "./node_modules/core-js/internals/object-define-property.js");\n\nmodule.exports = function (target, source) {\n  var keys = ownKeys(source);\n  var defineProperty = definePropertyModule.f;\n  var getOwnPropertyDescriptor = getOwnPropertyDescriptorModule.f;\n\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\n//# sourceURL=webpack:///./node_modules/core-js/internals/copy-constructor-properties.js?')},"./node_modules/core-js/internals/correct-is-regexp-logic.js":function(module,exports,__webpack_require__){eval("var wellKnownSymbol = __webpack_require__(/*! ../internals/well-known-symbol */ \"./node_modules/core-js/internals/well-known-symbol.js\");\n\nvar MATCH = wellKnownSymbol('match');\n\nmodule.exports = function (METHOD_NAME) {\n  var regexp = /./;\n\n  try {\n    '/./'[METHOD_NAME](regexp);\n  } catch (e) {\n    try {\n      regexp[MATCH] = false;\n      return '/./'[METHOD_NAME](regexp);\n    } catch (f) {\n      /* empty */\n    }\n  }\n\n  return false;\n};\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/correct-is-regexp-logic.js?")},"./node_modules/core-js/internals/correct-prototype-getter.js":function(module,exports,__webpack_require__){eval('var fails = __webpack_require__(/*! ../internals/fails */ "./node_modules/core-js/internals/fails.js");\n\nmodule.exports = !fails(function () {\n  function F() {\n    /* empty */\n  }\n\n  F.prototype.constructor = null;\n  return Object.getPrototypeOf(new F()) !== F.prototype;\n});\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/correct-prototype-getter.js?')},"./node_modules/core-js/internals/create-iterator-constructor.js":function(module,exports,__webpack_require__){"use strict";eval('\n\nvar IteratorPrototype = __webpack_require__(/*! ../internals/iterators-core */ "./node_modules/core-js/internals/iterators-core.js").IteratorPrototype;\n\nvar create = __webpack_require__(/*! ../internals/object-create */ "./node_modules/core-js/internals/object-create.js");\n\nvar createPropertyDescriptor = __webpack_require__(/*! ../internals/create-property-descriptor */ "./node_modules/core-js/internals/create-property-descriptor.js");\n\nvar setToStringTag = __webpack_require__(/*! ../internals/set-to-string-tag */ "./node_modules/core-js/internals/set-to-string-tag.js");\n\nvar Iterators = __webpack_require__(/*! ../internals/iterators */ "./node_modules/core-js/internals/iterators.js");\n\nvar returnThis = function () {\n  return this;\n};\n\nmodule.exports = function (IteratorConstructor, NAME, next) {\n  var TO_STRING_TAG = NAME + \' Iterator\';\n  IteratorConstructor.prototype = create(IteratorPrototype, {\n    next: createPropertyDescriptor(1, next)\n  });\n  setToStringTag(IteratorConstructor, TO_STRING_TAG, false, true);\n  Iterators[TO_STRING_TAG] = returnThis;\n  return IteratorConstructor;\n};\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/create-iterator-constructor.js?')},"./node_modules/core-js/internals/create-non-enumerable-property.js":function(module,exports,__webpack_require__){eval('var DESCRIPTORS = __webpack_require__(/*! ../internals/descriptors */ "./node_modules/core-js/internals/descriptors.js");\n\nvar definePropertyModule = __webpack_require__(/*! ../internals/object-define-property */ "./node_modules/core-js/internals/object-define-property.js");\n\nvar createPropertyDescriptor = __webpack_require__(/*! ../internals/create-property-descriptor */ "./node_modules/core-js/internals/create-property-descriptor.js");\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\n//# sourceURL=webpack:///./node_modules/core-js/internals/create-non-enumerable-property.js?')},"./node_modules/core-js/internals/create-property-descriptor.js":function(module,exports){eval("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\n//# sourceURL=webpack:///./node_modules/core-js/internals/create-property-descriptor.js?")},"./node_modules/core-js/internals/create-property.js":function(module,exports,__webpack_require__){"use strict";eval('\n\nvar toPrimitive = __webpack_require__(/*! ../internals/to-primitive */ "./node_modules/core-js/internals/to-primitive.js");\n\nvar definePropertyModule = __webpack_require__(/*! ../internals/object-define-property */ "./node_modules/core-js/internals/object-define-property.js");\n\nvar createPropertyDescriptor = __webpack_require__(/*! ../internals/create-property-descriptor */ "./node_modules/core-js/internals/create-property-descriptor.js");\n\nmodule.exports = function (object, key, value) {\n  var propertyKey = toPrimitive(key);\n  if (propertyKey in object) definePropertyModule.f(object, propertyKey, createPropertyDescriptor(0, value));else object[propertyKey] = value;\n};\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/create-property.js?')},"./node_modules/core-js/internals/define-iterator.js":function(module,exports,__webpack_require__){"use strict";eval('\n\nvar $ = __webpack_require__(/*! ../internals/export */ "./node_modules/core-js/internals/export.js");\n\nvar createIteratorConstructor = __webpack_require__(/*! ../internals/create-iterator-constructor */ "./node_modules/core-js/internals/create-iterator-constructor.js");\n\nvar getPrototypeOf = __webpack_require__(/*! ../internals/object-get-prototype-of */ "./node_modules/core-js/internals/object-get-prototype-of.js");\n\nvar setPrototypeOf = __webpack_require__(/*! ../internals/object-set-prototype-of */ "./node_modules/core-js/internals/object-set-prototype-of.js");\n\nvar setToStringTag = __webpack_require__(/*! ../internals/set-to-string-tag */ "./node_modules/core-js/internals/set-to-string-tag.js");\n\nvar createNonEnumerableProperty = __webpack_require__(/*! ../internals/create-non-enumerable-property */ "./node_modules/core-js/internals/create-non-enumerable-property.js");\n\nvar redefine = __webpack_require__(/*! ../internals/redefine */ "./node_modules/core-js/internals/redefine.js");\n\nvar wellKnownSymbol = __webpack_require__(/*! ../internals/well-known-symbol */ "./node_modules/core-js/internals/well-known-symbol.js");\n\nvar IS_PURE = __webpack_require__(/*! ../internals/is-pure */ "./node_modules/core-js/internals/is-pure.js");\n\nvar Iterators = __webpack_require__(/*! ../internals/iterators */ "./node_modules/core-js/internals/iterators.js");\n\nvar IteratorsCore = __webpack_require__(/*! ../internals/iterators-core */ "./node_modules/core-js/internals/iterators-core.js");\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 () {\n  return this;\n};\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\n    switch (KIND) {\n      case KEYS:\n        return function keys() {\n          return new IteratorConstructor(this, KIND);\n        };\n\n      case VALUES:\n        return function values() {\n          return new IteratorConstructor(this, KIND);\n        };\n\n      case ENTRIES:\n        return function entries() {\n          return new IteratorConstructor(this, KIND);\n        };\n    }\n\n    return function () {\n      return new IteratorConstructor(this);\n    };\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] || IterablePrototype[\'@@iterator\'] || 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; // fix native\n\n  if (anyNativeIterator) {\n    CurrentIteratorPrototype = getPrototypeOf(anyNativeIterator.call(new Iterable()));\n\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      } // Set @@toStringTag to native iterators\n\n\n      setToStringTag(CurrentIteratorPrototype, TO_STRING_TAG, true, true);\n      if (IS_PURE) Iterators[TO_STRING_TAG] = returnThis;\n    }\n  } // fix Array#{values, @@iterator}.name in V8 / FF\n\n\n  if (DEFAULT == VALUES && nativeIterator && nativeIterator.name !== VALUES) {\n    INCORRECT_VALUES_NAME = true;\n\n    defaultIterator = function values() {\n      return nativeIterator.call(this);\n    };\n  } // define iterator\n\n\n  if ((!IS_PURE || FORCED) && IterablePrototype[ITERATOR] !== defaultIterator) {\n    createNonEnumerableProperty(IterablePrototype, ITERATOR, defaultIterator);\n  }\n\n  Iterators[NAME] = defaultIterator; // export additional methods\n\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 $({\n      target: NAME,\n      proto: true,\n      forced: BUGGY_SAFARI_ITERATORS || INCORRECT_VALUES_NAME\n    }, methods);\n  }\n\n  return methods;\n};\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/define-iterator.js?')},"./node_modules/core-js/internals/define-well-known-symbol.js":function(module,exports,__webpack_require__){eval('var path = __webpack_require__(/*! ../internals/path */ "./node_modules/core-js/internals/path.js");\n\nvar has = __webpack_require__(/*! ../internals/has */ "./node_modules/core-js/internals/has.js");\n\nvar wrappedWellKnownSymbolModule = __webpack_require__(/*! ../internals/well-known-symbol-wrapped */ "./node_modules/core-js/internals/well-known-symbol-wrapped.js");\n\nvar defineProperty = __webpack_require__(/*! ../internals/object-define-property */ "./node_modules/core-js/internals/object-define-property.js").f;\n\nmodule.exports = function (NAME) {\n  var Symbol = path.Symbol || (path.Symbol = {});\n  if (!has(Symbol, NAME)) defineProperty(Symbol, NAME, {\n    value: wrappedWellKnownSymbolModule.f(NAME)\n  });\n};\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/define-well-known-symbol.js?')},"./node_modules/core-js/internals/descriptors.js":function(module,exports,__webpack_require__){eval('var fails = __webpack_require__(/*! ../internals/fails */ "./node_modules/core-js/internals/fails.js"); // Thank\'s IE8 for his funny defineProperty\n\n\nmodule.exports = !fails(function () {\n  return Object.defineProperty({}, 1, {\n    get: function () {\n      return 7;\n    }\n  })[1] != 7;\n});\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/descriptors.js?')},"./node_modules/core-js/internals/document-create-element.js":function(module,exports,__webpack_require__){eval('var global = __webpack_require__(/*! ../internals/global */ "./node_modules/core-js/internals/global.js");\n\nvar isObject = __webpack_require__(/*! ../internals/is-object */ "./node_modules/core-js/internals/is-object.js");\n\nvar document = global.document; // typeof document.createElement is \'object\' in old IE\n\nvar EXISTS = isObject(document) && isObject(document.createElement);\n\nmodule.exports = function (it) {\n  return EXISTS ? document.createElement(it) : {};\n};\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/document-create-element.js?')},"./node_modules/core-js/internals/dom-iterables.js":function(module,exports){eval("// 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\n//# sourceURL=webpack:///./node_modules/core-js/internals/dom-iterables.js?")},"./node_modules/core-js/internals/engine-user-agent.js":function(module,exports,__webpack_require__){eval("var getBuiltIn = __webpack_require__(/*! ../internals/get-built-in */ \"./node_modules/core-js/internals/get-built-in.js\");\n\nmodule.exports = getBuiltIn('navigator', 'userAgent') || '';\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/engine-user-agent.js?")},"./node_modules/core-js/internals/engine-v8-version.js":function(module,exports,__webpack_require__){eval('var global = __webpack_require__(/*! ../internals/global */ "./node_modules/core-js/internals/global.js");\n\nvar userAgent = __webpack_require__(/*! ../internals/engine-user-agent */ "./node_modules/core-js/internals/engine-user-agent.js");\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\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\n//# sourceURL=webpack:///./node_modules/core-js/internals/engine-v8-version.js?')},"./node_modules/core-js/internals/enum-bug-keys.js":function(module,exports){eval("// IE8- don't enum bug keys\nmodule.exports = ['constructor', 'hasOwnProperty', 'isPrototypeOf', 'propertyIsEnumerable', 'toLocaleString', 'toString', 'valueOf'];\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/enum-bug-keys.js?")},"./node_modules/core-js/internals/export.js":function(module,exports,__webpack_require__){eval('var global = __webpack_require__(/*! ../internals/global */ "./node_modules/core-js/internals/global.js");\n\nvar getOwnPropertyDescriptor = __webpack_require__(/*! ../internals/object-get-own-property-descriptor */ "./node_modules/core-js/internals/object-get-own-property-descriptor.js").f;\n\nvar createNonEnumerableProperty = __webpack_require__(/*! ../internals/create-non-enumerable-property */ "./node_modules/core-js/internals/create-non-enumerable-property.js");\n\nvar redefine = __webpack_require__(/*! ../internals/redefine */ "./node_modules/core-js/internals/redefine.js");\n\nvar setGlobal = __webpack_require__(/*! ../internals/set-global */ "./node_modules/core-js/internals/set-global.js");\n\nvar copyConstructorProperties = __webpack_require__(/*! ../internals/copy-constructor-properties */ "./node_modules/core-js/internals/copy-constructor-properties.js");\n\nvar isForced = __webpack_require__(/*! ../internals/is-forced */ "./node_modules/core-js/internals/is-forced.js");\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*/\n\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\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\n  if (target) for (key in source) {\n    sourceProperty = source[key];\n\n    if (options.noTargetGet) {\n      descriptor = getOwnPropertyDescriptor(target, key);\n      targetProperty = descriptor && descriptor.value;\n    } else targetProperty = target[key];\n\n    FORCED = isForced(GLOBAL ? key : TARGET + (STATIC ? \'.\' : \'#\') + key, options.forced); // contained in target\n\n    if (!FORCED && targetProperty !== undefined) {\n      if (typeof sourceProperty === typeof targetProperty) continue;\n      copyConstructorProperties(sourceProperty, targetProperty);\n    } // add a flag to not completely full polyfills\n\n\n    if (options.sham || targetProperty && targetProperty.sham) {\n      createNonEnumerableProperty(sourceProperty, \'sham\', true);\n    } // extend global\n\n\n    redefine(target, key, sourceProperty, options);\n  }\n};\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/export.js?')},"./node_modules/core-js/internals/fails.js":function(module,exports){eval("module.exports = function (exec) {\n  try {\n    return !!exec();\n  } catch (error) {\n    return true;\n  }\n};\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/fails.js?")},"./node_modules/core-js/internals/fix-regexp-well-known-symbol-logic.js":function(module,exports,__webpack_require__){"use strict";eval(" // TODO: Remove from `core-js@4` since it's moved to entry points\n\n__webpack_require__(/*! ../modules/es.regexp.exec */ \"./node_modules/core-js/modules/es.regexp.exec.js\");\n\nvar redefine = __webpack_require__(/*! ../internals/redefine */ \"./node_modules/core-js/internals/redefine.js\");\n\nvar fails = __webpack_require__(/*! ../internals/fails */ \"./node_modules/core-js/internals/fails.js\");\n\nvar wellKnownSymbol = __webpack_require__(/*! ../internals/well-known-symbol */ \"./node_modules/core-js/internals/well-known-symbol.js\");\n\nvar regexpExec = __webpack_require__(/*! ../internals/regexp-exec */ \"./node_modules/core-js/internals/regexp-exec.js\");\n\nvar createNonEnumerableProperty = __webpack_require__(/*! ../internals/create-non-enumerable-property */ \"./node_modules/core-js/internals/create-non-enumerable-property.js\");\n\nvar SPECIES = wellKnownSymbol('species');\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\n  re.exec = function () {\n    var result = [];\n    result.groups = {\n      a: '7'\n    };\n    return result;\n  };\n\n  return ''.replace(re, '$<a>') !== '7';\n}); // IE <= 11 replaces $0 with the whole match, as if it was $&\n// https://stackoverflow.com/questions/6024666/getting-ie-to-replace-a-regex-with-the-literal-string-0\n\nvar REPLACE_KEEPS_$0 = function () {\n  return 'a'.replace(/./, '$0') === '$0';\n}();\n\nvar REPLACE = wellKnownSymbol('replace'); // Safari <= 13.0.3(?) substitutes nth capture where n>m with an empty string\n\nvar REGEXP_REPLACE_SUBSTITUTES_UNDEFINED_CAPTURE = function () {\n  if (/./[REPLACE]) {\n    return /./[REPLACE]('a', '$0') === '';\n  }\n\n  return false;\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\n\n\nvar SPLIT_WORKS_WITH_OVERWRITTEN_EXEC = !fails(function () {\n  var re = /(?:)/;\n  var originalExec = re.exec;\n\n  re.exec = function () {\n    return originalExec.apply(this, arguments);\n  };\n\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  var DELEGATES_TO_SYMBOL = !fails(function () {\n    // String methods call symbol-named RegEp methods\n    var O = {};\n\n    O[SYMBOL] = function () {\n      return 7;\n    };\n\n    return ''[KEY](O) != 7;\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 = {}; // 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\n      re.constructor = {};\n\n      re.constructor[SPECIES] = function () {\n        return re;\n      };\n\n      re.flags = '';\n      re[SYMBOL] = /./[SYMBOL];\n    }\n\n    re.exec = function () {\n      execCalled = true;\n      return null;\n    };\n\n    re[SYMBOL]('');\n    return !execCalled;\n  });\n\n  if (!DELEGATES_TO_SYMBOL || !DELEGATES_TO_EXEC || KEY === 'replace' && !(REPLACE_SUPPORTS_NAMED_GROUPS && REPLACE_KEEPS_$0 && !REGEXP_REPLACE_SUBSTITUTES_UNDEFINED_CAPTURE) || KEY === 'split' && !SPLIT_WORKS_WITH_OVERWRITTEN_EXEC) {\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 {\n            done: true,\n            value: nativeRegExpMethod.call(regexp, str, arg2)\n          };\n        }\n\n        return {\n          done: true,\n          value: nativeMethod.call(str, regexp, arg2)\n        };\n      }\n\n      return {\n        done: false\n      };\n    }, {\n      REPLACE_KEEPS_$0: REPLACE_KEEPS_$0,\n      REGEXP_REPLACE_SUBSTITUTES_UNDEFINED_CAPTURE: REGEXP_REPLACE_SUBSTITUTES_UNDEFINED_CAPTURE\n    });\n    var stringMethod = methods[0];\n    var regexMethod = methods[1];\n    redefine(String.prototype, KEY, stringMethod);\n    redefine(RegExp.prototype, SYMBOL, length == 2 // 21.2.5.8 RegExp.prototype[@@replace](string, replaceValue)\n    // 21.2.5.11 RegExp.prototype[@@split](string, limit)\n    ? function (string, arg) {\n      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) {\n      return regexMethod.call(string, this);\n    });\n  }\n\n  if (sham) createNonEnumerableProperty(RegExp.prototype[SYMBOL], 'sham', true);\n};\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/fix-regexp-well-known-symbol-logic.js?")},"./node_modules/core-js/internals/function-bind-context.js":function(module,exports,__webpack_require__){eval('var aFunction = __webpack_require__(/*! ../internals/a-function */ "./node_modules/core-js/internals/a-function.js"); // optional / simple context binding\n\n\nmodule.exports = function (fn, that, length) {\n  aFunction(fn);\n  if (that === undefined) return fn;\n\n  switch (length) {\n    case 0:\n      return function () {\n        return fn.call(that);\n      };\n\n    case 1:\n      return function (a) {\n        return fn.call(that, a);\n      };\n\n    case 2:\n      return function (a, b) {\n        return fn.call(that, a, b);\n      };\n\n    case 3:\n      return function (a, b, c) {\n        return fn.call(that, a, b, c);\n      };\n  }\n\n  return function ()\n  /* ...args */\n  {\n    return fn.apply(that, arguments);\n  };\n};\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/function-bind-context.js?')},"./node_modules/core-js/internals/get-built-in.js":function(module,exports,__webpack_require__){eval('var path = __webpack_require__(/*! ../internals/path */ "./node_modules/core-js/internals/path.js");\n\nvar global = __webpack_require__(/*! ../internals/global */ "./node_modules/core-js/internals/global.js");\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]) : path[namespace] && path[namespace][method] || global[namespace] && global[namespace][method];\n};\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/get-built-in.js?')},"./node_modules/core-js/internals/global.js":function(module,exports,__webpack_require__){eval("/* WEBPACK VAR INJECTION */(function(global) {var check = function (it) {\n  return it && it.Math == Math && it;\n}; // https://github.com/zloirock/core-js/issues/86#issuecomment-115759028\n\n\nmodule.exports = // eslint-disable-next-line no-undef\ncheck(typeof globalThis == 'object' && globalThis) || check(typeof window == 'object' && window) || check(typeof self == 'object' && self) || check(typeof global == 'object' && global) || // eslint-disable-next-line no-new-func\nFunction('return this')();\n/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./../../webpack/buildin/global.js */ \"./node_modules/webpack/buildin/global.js\")))\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/global.js?")},"./node_modules/core-js/internals/has.js":function(module,exports){eval("var hasOwnProperty = {}.hasOwnProperty;\n\nmodule.exports = function (it, key) {\n  return hasOwnProperty.call(it, key);\n};\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/has.js?")},"./node_modules/core-js/internals/hidden-keys.js":function(module,exports){eval("module.exports = {};\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/hidden-keys.js?")},"./node_modules/core-js/internals/html.js":function(module,exports,__webpack_require__){eval("var getBuiltIn = __webpack_require__(/*! ../internals/get-built-in */ \"./node_modules/core-js/internals/get-built-in.js\");\n\nmodule.exports = getBuiltIn('document', 'documentElement');\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/html.js?")},"./node_modules/core-js/internals/ie8-dom-define.js":function(module,exports,__webpack_require__){eval('var DESCRIPTORS = __webpack_require__(/*! ../internals/descriptors */ "./node_modules/core-js/internals/descriptors.js");\n\nvar fails = __webpack_require__(/*! ../internals/fails */ "./node_modules/core-js/internals/fails.js");\n\nvar createElement = __webpack_require__(/*! ../internals/document-create-element */ "./node_modules/core-js/internals/document-create-element.js"); // Thank\'s IE8 for his funny defineProperty\n\n\nmodule.exports = !DESCRIPTORS && !fails(function () {\n  return Object.defineProperty(createElement(\'div\'), \'a\', {\n    get: function () {\n      return 7;\n    }\n  }).a != 7;\n});\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/ie8-dom-define.js?')},"./node_modules/core-js/internals/indexed-object.js":function(module,exports,__webpack_require__){eval("var fails = __webpack_require__(/*! ../internals/fails */ \"./node_modules/core-js/internals/fails.js\");\n\nvar classof = __webpack_require__(/*! ../internals/classof-raw */ \"./node_modules/core-js/internals/classof-raw.js\");\n\nvar split = ''.split; // fallback for non-array-like ES3 and non-enumerable old V8 strings\n\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\n//# sourceURL=webpack:///./node_modules/core-js/internals/indexed-object.js?")},"./node_modules/core-js/internals/inherit-if-required.js":function(module,exports,__webpack_require__){eval('var isObject = __webpack_require__(/*! ../internals/is-object */ "./node_modules/core-js/internals/is-object.js");\n\nvar setPrototypeOf = __webpack_require__(/*! ../internals/object-set-prototype-of */ "./node_modules/core-js/internals/object-set-prototype-of.js"); // makes subclassing work correct for wrapped built-ins\n\n\nmodule.exports = function ($this, dummy, Wrapper) {\n  var NewTarget, NewTargetPrototype;\n  if ( // it can work only with native `setPrototypeOf`\n  setPrototypeOf && // we haven\'t completely correct pre-ES6 way for getting `new.target`, so use this\n  typeof (NewTarget = dummy.constructor) == \'function\' && NewTarget !== Wrapper && isObject(NewTargetPrototype = NewTarget.prototype) && NewTargetPrototype !== Wrapper.prototype) setPrototypeOf($this, NewTargetPrototype);\n  return $this;\n};\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/inherit-if-required.js?')},"./node_modules/core-js/internals/inspect-source.js":function(module,exports,__webpack_require__){eval("var store = __webpack_require__(/*! ../internals/shared-store */ \"./node_modules/core-js/internals/shared-store.js\");\n\nvar functionToString = Function.toString; // this helper broken in `3.4.1-3.4.4`, so we can't use `shared` helper\n\nif (typeof store.inspectSource != 'function') {\n  store.inspectSource = function (it) {\n    return functionToString.call(it);\n  };\n}\n\nmodule.exports = store.inspectSource;\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/inspect-source.js?")},"./node_modules/core-js/internals/internal-state.js":function(module,exports,__webpack_require__){eval('var NATIVE_WEAK_MAP = __webpack_require__(/*! ../internals/native-weak-map */ "./node_modules/core-js/internals/native-weak-map.js");\n\nvar global = __webpack_require__(/*! ../internals/global */ "./node_modules/core-js/internals/global.js");\n\nvar isObject = __webpack_require__(/*! ../internals/is-object */ "./node_modules/core-js/internals/is-object.js");\n\nvar createNonEnumerableProperty = __webpack_require__(/*! ../internals/create-non-enumerable-property */ "./node_modules/core-js/internals/create-non-enumerable-property.js");\n\nvar objectHas = __webpack_require__(/*! ../internals/has */ "./node_modules/core-js/internals/has.js");\n\nvar sharedKey = __webpack_require__(/*! ../internals/shared-key */ "./node_modules/core-js/internals/shared-key.js");\n\nvar hiddenKeys = __webpack_require__(/*! ../internals/hidden-keys */ "./node_modules/core-js/internals/hidden-keys.js");\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\n    if (!isObject(it) || (state = get(it)).type !== TYPE) {\n      throw TypeError(\'Incompatible receiver, \' + TYPE + \' required\');\n    }\n\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\n  set = function (it, metadata) {\n    wmset.call(store, it, metadata);\n    return metadata;\n  };\n\n  get = function (it) {\n    return wmget.call(store, it) || {};\n  };\n\n  has = function (it) {\n    return wmhas.call(store, it);\n  };\n} else {\n  var STATE = sharedKey(\'state\');\n  hiddenKeys[STATE] = true;\n\n  set = function (it, metadata) {\n    createNonEnumerableProperty(it, STATE, metadata);\n    return metadata;\n  };\n\n  get = function (it) {\n    return objectHas(it, STATE) ? it[STATE] : {};\n  };\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\n//# sourceURL=webpack:///./node_modules/core-js/internals/internal-state.js?')},"./node_modules/core-js/internals/is-array.js":function(module,exports,__webpack_require__){eval("var classof = __webpack_require__(/*! ../internals/classof-raw */ \"./node_modules/core-js/internals/classof-raw.js\"); // `IsArray` abstract operation\n// https://tc39.github.io/ecma262/#sec-isarray\n\n\nmodule.exports = Array.isArray || function isArray(arg) {\n  return classof(arg) == 'Array';\n};\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/is-array.js?")},"./node_modules/core-js/internals/is-forced.js":function(module,exports,__webpack_require__){eval("var fails = __webpack_require__(/*! ../internals/fails */ \"./node_modules/core-js/internals/fails.js\");\n\nvar replacement = /#|\\.prototype\\./;\n\nvar isForced = function (feature, detection) {\n  var value = data[normalize(feature)];\n  return value == POLYFILL ? true : value == NATIVE ? false : typeof detection == 'function' ? fails(detection) : !!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';\nmodule.exports = isForced;\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/is-forced.js?")},"./node_modules/core-js/internals/is-object.js":function(module,exports){eval("module.exports = function (it) {\n  return typeof it === 'object' ? it !== null : typeof it === 'function';\n};\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/is-object.js?")},"./node_modules/core-js/internals/is-pure.js":function(module,exports){eval("module.exports = false;\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/is-pure.js?")},"./node_modules/core-js/internals/is-regexp.js":function(module,exports,__webpack_require__){eval('var isObject = __webpack_require__(/*! ../internals/is-object */ "./node_modules/core-js/internals/is-object.js");\n\nvar classof = __webpack_require__(/*! ../internals/classof-raw */ "./node_modules/core-js/internals/classof-raw.js");\n\nvar wellKnownSymbol = __webpack_require__(/*! ../internals/well-known-symbol */ "./node_modules/core-js/internals/well-known-symbol.js");\n\nvar MATCH = wellKnownSymbol(\'match\'); // `IsRegExp` abstract operation\n// https://tc39.github.io/ecma262/#sec-isregexp\n\nmodule.exports = function (it) {\n  var isRegExp;\n  return isObject(it) && ((isRegExp = it[MATCH]) !== undefined ? !!isRegExp : classof(it) == \'RegExp\');\n};\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/is-regexp.js?')},"./node_modules/core-js/internals/iterators-core.js":function(module,exports,__webpack_require__){"use strict";eval('\n\nvar getPrototypeOf = __webpack_require__(/*! ../internals/object-get-prototype-of */ "./node_modules/core-js/internals/object-get-prototype-of.js");\n\nvar createNonEnumerableProperty = __webpack_require__(/*! ../internals/create-non-enumerable-property */ "./node_modules/core-js/internals/create-non-enumerable-property.js");\n\nvar has = __webpack_require__(/*! ../internals/has */ "./node_modules/core-js/internals/has.js");\n\nvar wellKnownSymbol = __webpack_require__(/*! ../internals/well-known-symbol */ "./node_modules/core-js/internals/well-known-symbol.js");\n\nvar IS_PURE = __webpack_require__(/*! ../internals/is-pure */ "./node_modules/core-js/internals/is-pure.js");\n\nvar ITERATOR = wellKnownSymbol(\'iterator\');\nvar BUGGY_SAFARI_ITERATORS = false;\n\nvar returnThis = function () {\n  return this;\n}; // `%IteratorPrototype%` object\n// https://tc39.github.io/ecma262/#sec-%iteratorprototype%-object\n\n\nvar IteratorPrototype, PrototypeOfArrayIteratorPrototype, arrayIterator;\n\nif ([].keys) {\n  arrayIterator = [].keys(); // Safari 8 has buggy iterators w/o `next`\n\n  if (!(\'next\' in arrayIterator)) BUGGY_SAFARI_ITERATORS = true;else {\n    PrototypeOfArrayIteratorPrototype = getPrototypeOf(getPrototypeOf(arrayIterator));\n    if (PrototypeOfArrayIteratorPrototype !== Object.prototype) IteratorPrototype = PrototypeOfArrayIteratorPrototype;\n  }\n}\n\nif (IteratorPrototype == undefined) IteratorPrototype = {}; // 25.1.2.1.1 %IteratorPrototype%[@@iterator]()\n\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\n//# sourceURL=webpack:///./node_modules/core-js/internals/iterators-core.js?')},"./node_modules/core-js/internals/iterators.js":function(module,exports){eval("module.exports = {};\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/iterators.js?")},"./node_modules/core-js/internals/math-sign.js":function(module,exports){eval("// `Math.sign` method implementation\n// https://tc39.github.io/ecma262/#sec-math.sign\nmodule.exports = Math.sign || function sign(x) {\n  // eslint-disable-next-line no-self-compare\n  return (x = +x) == 0 || x != x ? x : x < 0 ? -1 : 1;\n};\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/math-sign.js?")},"./node_modules/core-js/internals/native-symbol.js":function(module,exports,__webpack_require__){eval('var fails = __webpack_require__(/*! ../internals/fails */ "./node_modules/core-js/internals/fails.js");\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\n//# sourceURL=webpack:///./node_modules/core-js/internals/native-symbol.js?')},"./node_modules/core-js/internals/native-weak-map.js":function(module,exports,__webpack_require__){eval('var global = __webpack_require__(/*! ../internals/global */ "./node_modules/core-js/internals/global.js");\n\nvar inspectSource = __webpack_require__(/*! ../internals/inspect-source */ "./node_modules/core-js/internals/inspect-source.js");\n\nvar WeakMap = global.WeakMap;\nmodule.exports = typeof WeakMap === \'function\' && /native code/.test(inspectSource(WeakMap));\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/native-weak-map.js?')},"./node_modules/core-js/internals/not-a-regexp.js":function(module,exports,__webpack_require__){eval('var isRegExp = __webpack_require__(/*! ../internals/is-regexp */ "./node_modules/core-js/internals/is-regexp.js");\n\nmodule.exports = function (it) {\n  if (isRegExp(it)) {\n    throw TypeError("The method doesn\'t accept regular expressions");\n  }\n\n  return it;\n};\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/not-a-regexp.js?')},"./node_modules/core-js/internals/object-assign.js":function(module,exports,__webpack_require__){"use strict";eval('\n\nvar DESCRIPTORS = __webpack_require__(/*! ../internals/descriptors */ "./node_modules/core-js/internals/descriptors.js");\n\nvar fails = __webpack_require__(/*! ../internals/fails */ "./node_modules/core-js/internals/fails.js");\n\nvar objectKeys = __webpack_require__(/*! ../internals/object-keys */ "./node_modules/core-js/internals/object-keys.js");\n\nvar getOwnPropertySymbolsModule = __webpack_require__(/*! ../internals/object-get-own-property-symbols */ "./node_modules/core-js/internals/object-get-own-property-symbols.js");\n\nvar propertyIsEnumerableModule = __webpack_require__(/*! ../internals/object-property-is-enumerable */ "./node_modules/core-js/internals/object-property-is-enumerable.js");\n\nvar toObject = __webpack_require__(/*! ../internals/to-object */ "./node_modules/core-js/internals/to-object.js");\n\nvar IndexedObject = __webpack_require__(/*! ../internals/indexed-object */ "./node_modules/core-js/internals/indexed-object.js");\n\nvar nativeAssign = Object.assign;\nvar defineProperty = Object.defineProperty; // `Object.assign` method\n// https://tc39.github.io/ecma262/#sec-object.assign\n\nmodule.exports = !nativeAssign || fails(function () {\n  // should have correct order of operations (Edge bug)\n  if (DESCRIPTORS && nativeAssign({\n    b: 1\n  }, nativeAssign(defineProperty({}, \'a\', {\n    enumerable: true,\n    get: function () {\n      defineProperty(this, \'b\', {\n        value: 3,\n        enumerable: false\n      });\n    }\n  }), {\n    b: 2\n  })).b !== 1) return true; // should work with symbols and should have deterministic property order (V8 bug)\n\n  var A = {};\n  var B = {}; // eslint-disable-next-line no-undef\n\n  var symbol = Symbol();\n  var alphabet = \'abcdefghijklmnopqrst\';\n  A[symbol] = 7;\n  alphabet.split(\'\').forEach(function (chr) {\n    B[chr] = chr;\n  });\n  return nativeAssign({}, A)[symbol] != 7 || objectKeys(nativeAssign({}, B)).join(\'\') != alphabet;\n}) ? function assign(target, source) {\n  // 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\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\n    while (length > j) {\n      key = keys[j++];\n      if (!DESCRIPTORS || propertyIsEnumerable.call(S, key)) T[key] = S[key];\n    }\n  }\n\n  return T;\n} : nativeAssign;\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/object-assign.js?')},"./node_modules/core-js/internals/object-create.js":function(module,exports,__webpack_require__){eval("var anObject = __webpack_require__(/*! ../internals/an-object */ \"./node_modules/core-js/internals/an-object.js\");\n\nvar defineProperties = __webpack_require__(/*! ../internals/object-define-properties */ \"./node_modules/core-js/internals/object-define-properties.js\");\n\nvar enumBugKeys = __webpack_require__(/*! ../internals/enum-bug-keys */ \"./node_modules/core-js/internals/enum-bug-keys.js\");\n\nvar hiddenKeys = __webpack_require__(/*! ../internals/hidden-keys */ \"./node_modules/core-js/internals/hidden-keys.js\");\n\nvar html = __webpack_require__(/*! ../internals/html */ \"./node_modules/core-js/internals/html.js\");\n\nvar documentCreateElement = __webpack_require__(/*! ../internals/document-create-element */ \"./node_modules/core-js/internals/document-create-element.js\");\n\nvar sharedKey = __webpack_require__(/*! ../internals/shared-key */ \"./node_modules/core-js/internals/shared-key.js\");\n\nvar GT = '>';\nvar LT = '<';\nvar PROTOTYPE = 'prototype';\nvar SCRIPT = 'script';\nvar IE_PROTO = sharedKey('IE_PROTO');\n\nvar EmptyConstructor = function () {\n  /* empty */\n};\n\nvar scriptTag = function (content) {\n  return LT + SCRIPT + GT + content + LT + '/' + SCRIPT + GT;\n}; // Create object with fake `null` prototype: use ActiveX Object with cleared prototype\n\n\nvar NullProtoObjectViaActiveX = function (activeXDocument) {\n  activeXDocument.write(scriptTag(''));\n  activeXDocument.close();\n  var temp = activeXDocument.parentWindow.Object;\n  activeXDocument = null; // avoid memory leak\n\n  return temp;\n}; // Create object with fake `null` prototype: use iframe Object with cleared prototype\n\n\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); // https://github.com/zloirock/core-js/issues/475\n\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}; // 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\n\n\nvar activeXDocument;\n\nvar NullProtoObject = function () {\n  try {\n    /* global ActiveXObject */\n    activeXDocument = document.domain && new ActiveXObject('htmlfile');\n  } catch (error) {\n    /* ignore */\n  }\n\n  NullProtoObject = activeXDocument ? NullProtoObjectViaActiveX(activeXDocument) : NullProtoObjectViaIFrame();\n  var length = enumBugKeys.length;\n\n  while (length--) delete NullProtoObject[PROTOTYPE][enumBugKeys[length]];\n\n  return NullProtoObject();\n};\n\nhiddenKeys[IE_PROTO] = true; // `Object.create` method\n// https://tc39.github.io/ecma262/#sec-object.create\n\nmodule.exports = Object.create || function create(O, Properties) {\n  var result;\n\n  if (O !== null) {\n    EmptyConstructor[PROTOTYPE] = anObject(O);\n    result = new EmptyConstructor();\n    EmptyConstructor[PROTOTYPE] = null; // add \"__proto__\" for Object.getPrototypeOf polyfill\n\n    result[IE_PROTO] = O;\n  } else result = NullProtoObject();\n\n  return Properties === undefined ? result : defineProperties(result, Properties);\n};\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/object-create.js?")},"./node_modules/core-js/internals/object-define-properties.js":function(module,exports,__webpack_require__){eval('var DESCRIPTORS = __webpack_require__(/*! ../internals/descriptors */ "./node_modules/core-js/internals/descriptors.js");\n\nvar definePropertyModule = __webpack_require__(/*! ../internals/object-define-property */ "./node_modules/core-js/internals/object-define-property.js");\n\nvar anObject = __webpack_require__(/*! ../internals/an-object */ "./node_modules/core-js/internals/an-object.js");\n\nvar objectKeys = __webpack_require__(/*! ../internals/object-keys */ "./node_modules/core-js/internals/object-keys.js"); // `Object.defineProperties` method\n// https://tc39.github.io/ecma262/#sec-object.defineproperties\n\n\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\n  while (length > index) definePropertyModule.f(O, key = keys[index++], Properties[key]);\n\n  return O;\n};\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/object-define-properties.js?')},"./node_modules/core-js/internals/object-define-property.js":function(module,exports,__webpack_require__){eval("var DESCRIPTORS = __webpack_require__(/*! ../internals/descriptors */ \"./node_modules/core-js/internals/descriptors.js\");\n\nvar IE8_DOM_DEFINE = __webpack_require__(/*! ../internals/ie8-dom-define */ \"./node_modules/core-js/internals/ie8-dom-define.js\");\n\nvar anObject = __webpack_require__(/*! ../internals/an-object */ \"./node_modules/core-js/internals/an-object.js\");\n\nvar toPrimitive = __webpack_require__(/*! ../internals/to-primitive */ \"./node_modules/core-js/internals/to-primitive.js\");\n\nvar nativeDefineProperty = Object.defineProperty; // `Object.defineProperty` method\n// https://tc39.github.io/ecma262/#sec-object.defineproperty\n\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) {\n    /* empty */\n  }\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\n//# sourceURL=webpack:///./node_modules/core-js/internals/object-define-property.js?")},"./node_modules/core-js/internals/object-get-own-property-descriptor.js":function(module,exports,__webpack_require__){eval('var DESCRIPTORS = __webpack_require__(/*! ../internals/descriptors */ "./node_modules/core-js/internals/descriptors.js");\n\nvar propertyIsEnumerableModule = __webpack_require__(/*! ../internals/object-property-is-enumerable */ "./node_modules/core-js/internals/object-property-is-enumerable.js");\n\nvar createPropertyDescriptor = __webpack_require__(/*! ../internals/create-property-descriptor */ "./node_modules/core-js/internals/create-property-descriptor.js");\n\nvar toIndexedObject = __webpack_require__(/*! ../internals/to-indexed-object */ "./node_modules/core-js/internals/to-indexed-object.js");\n\nvar toPrimitive = __webpack_require__(/*! ../internals/to-primitive */ "./node_modules/core-js/internals/to-primitive.js");\n\nvar has = __webpack_require__(/*! ../internals/has */ "./node_modules/core-js/internals/has.js");\n\nvar IE8_DOM_DEFINE = __webpack_require__(/*! ../internals/ie8-dom-define */ "./node_modules/core-js/internals/ie8-dom-define.js");\n\nvar nativeGetOwnPropertyDescriptor = Object.getOwnPropertyDescriptor; // `Object.getOwnPropertyDescriptor` method\n// https://tc39.github.io/ecma262/#sec-object.getownpropertydescriptor\n\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) {\n    /* empty */\n  }\n  if (has(O, P)) return createPropertyDescriptor(!propertyIsEnumerableModule.f.call(O, P), O[P]);\n};\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/object-get-own-property-descriptor.js?')},"./node_modules/core-js/internals/object-get-own-property-names-external.js":function(module,exports,__webpack_require__){eval("var toIndexedObject = __webpack_require__(/*! ../internals/to-indexed-object */ \"./node_modules/core-js/internals/to-indexed-object.js\");\n\nvar nativeGetOwnPropertyNames = __webpack_require__(/*! ../internals/object-get-own-property-names */ \"./node_modules/core-js/internals/object-get-own-property-names.js\").f;\n\nvar toString = {}.toString;\nvar windowNames = typeof window == 'object' && window && Object.getOwnPropertyNames ? Object.getOwnPropertyNames(window) : [];\n\nvar getWindowNames = function (it) {\n  try {\n    return nativeGetOwnPropertyNames(it);\n  } catch (error) {\n    return windowNames.slice();\n  }\n}; // fallback for IE11 buggy Object.getOwnPropertyNames with iframe and window\n\n\nmodule.exports.f = function getOwnPropertyNames(it) {\n  return windowNames && toString.call(it) == '[object Window]' ? getWindowNames(it) : nativeGetOwnPropertyNames(toIndexedObject(it));\n};\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/object-get-own-property-names-external.js?")},"./node_modules/core-js/internals/object-get-own-property-names.js":function(module,exports,__webpack_require__){eval("var internalObjectKeys = __webpack_require__(/*! ../internals/object-keys-internal */ \"./node_modules/core-js/internals/object-keys-internal.js\");\n\nvar enumBugKeys = __webpack_require__(/*! ../internals/enum-bug-keys */ \"./node_modules/core-js/internals/enum-bug-keys.js\");\n\nvar hiddenKeys = enumBugKeys.concat('length', 'prototype'); // `Object.getOwnPropertyNames` method\n// https://tc39.github.io/ecma262/#sec-object.getownpropertynames\n\nexports.f = Object.getOwnPropertyNames || function getOwnPropertyNames(O) {\n  return internalObjectKeys(O, hiddenKeys);\n};\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/object-get-own-property-names.js?")},"./node_modules/core-js/internals/object-get-own-property-symbols.js":function(module,exports){eval("exports.f = Object.getOwnPropertySymbols;\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/object-get-own-property-symbols.js?")},"./node_modules/core-js/internals/object-get-prototype-of.js":function(module,exports,__webpack_require__){eval('var has = __webpack_require__(/*! ../internals/has */ "./node_modules/core-js/internals/has.js");\n\nvar toObject = __webpack_require__(/*! ../internals/to-object */ "./node_modules/core-js/internals/to-object.js");\n\nvar sharedKey = __webpack_require__(/*! ../internals/shared-key */ "./node_modules/core-js/internals/shared-key.js");\n\nvar CORRECT_PROTOTYPE_GETTER = __webpack_require__(/*! ../internals/correct-prototype-getter */ "./node_modules/core-js/internals/correct-prototype-getter.js");\n\nvar IE_PROTO = sharedKey(\'IE_PROTO\');\nvar ObjectPrototype = Object.prototype; // `Object.getPrototypeOf` method\n// https://tc39.github.io/ecma262/#sec-object.getprototypeof\n\nmodule.exports = CORRECT_PROTOTYPE_GETTER ? Object.getPrototypeOf : function (O) {\n  O = toObject(O);\n  if (has(O, IE_PROTO)) return O[IE_PROTO];\n\n  if (typeof O.constructor == \'function\' && O instanceof O.constructor) {\n    return O.constructor.prototype;\n  }\n\n  return O instanceof Object ? ObjectPrototype : null;\n};\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/object-get-prototype-of.js?')},"./node_modules/core-js/internals/object-keys-internal.js":function(module,exports,__webpack_require__){eval('var has = __webpack_require__(/*! ../internals/has */ "./node_modules/core-js/internals/has.js");\n\nvar toIndexedObject = __webpack_require__(/*! ../internals/to-indexed-object */ "./node_modules/core-js/internals/to-indexed-object.js");\n\nvar indexOf = __webpack_require__(/*! ../internals/array-includes */ "./node_modules/core-js/internals/array-includes.js").indexOf;\n\nvar hiddenKeys = __webpack_require__(/*! ../internals/hidden-keys */ "./node_modules/core-js/internals/hidden-keys.js");\n\nmodule.exports = function (object, names) {\n  var O = toIndexedObject(object);\n  var i = 0;\n  var result = [];\n  var key;\n\n  for (key in O) !has(hiddenKeys, key) && has(O, key) && result.push(key); // Don\'t enum bug & hidden keys\n\n\n  while (names.length > i) if (has(O, key = names[i++])) {\n    ~indexOf(result, key) || result.push(key);\n  }\n\n  return result;\n};\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/object-keys-internal.js?')},"./node_modules/core-js/internals/object-keys.js":function(module,exports,__webpack_require__){eval('var internalObjectKeys = __webpack_require__(/*! ../internals/object-keys-internal */ "./node_modules/core-js/internals/object-keys-internal.js");\n\nvar enumBugKeys = __webpack_require__(/*! ../internals/enum-bug-keys */ "./node_modules/core-js/internals/enum-bug-keys.js"); // `Object.keys` method\n// https://tc39.github.io/ecma262/#sec-object.keys\n\n\nmodule.exports = Object.keys || function keys(O) {\n  return internalObjectKeys(O, enumBugKeys);\n};\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/object-keys.js?')},"./node_modules/core-js/internals/object-property-is-enumerable.js":function(module,exports,__webpack_require__){"use strict";eval("\n\nvar nativePropertyIsEnumerable = {}.propertyIsEnumerable;\nvar getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor; // Nashorn ~ JDK8 bug\n\nvar NASHORN_BUG = getOwnPropertyDescriptor && !nativePropertyIsEnumerable.call({\n  1: 2\n}, 1); // `Object.prototype.propertyIsEnumerable` method implementation\n// https://tc39.github.io/ecma262/#sec-object.prototype.propertyisenumerable\n\nexports.f = NASHORN_BUG ? function propertyIsEnumerable(V) {\n  var descriptor = getOwnPropertyDescriptor(this, V);\n  return !!descriptor && descriptor.enumerable;\n} : nativePropertyIsEnumerable;\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/object-property-is-enumerable.js?")},"./node_modules/core-js/internals/object-set-prototype-of.js":function(module,exports,__webpack_require__){eval("var anObject = __webpack_require__(/*! ../internals/an-object */ \"./node_modules/core-js/internals/an-object.js\");\n\nvar aPossiblePrototype = __webpack_require__(/*! ../internals/a-possible-prototype */ \"./node_modules/core-js/internals/a-possible-prototype.js\"); // `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\n/* eslint-disable no-proto */\n\n\nmodule.exports = Object.setPrototypeOf || ('__proto__' in {} ? function () {\n  var CORRECT_SETTER = false;\n  var test = {};\n  var setter;\n\n  try {\n    setter = Object.getOwnPropertyDescriptor(Object.prototype, '__proto__').set;\n    setter.call(test, []);\n    CORRECT_SETTER = test instanceof Array;\n  } catch (error) {\n    /* empty */\n  }\n\n  return function setPrototypeOf(O, proto) {\n    anObject(O);\n    aPossiblePrototype(proto);\n    if (CORRECT_SETTER) setter.call(O, proto);else O.__proto__ = proto;\n    return O;\n  };\n}() : undefined);\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/object-set-prototype-of.js?")},"./node_modules/core-js/internals/object-to-string.js":function(module,exports,__webpack_require__){"use strict";eval("\n\nvar TO_STRING_TAG_SUPPORT = __webpack_require__(/*! ../internals/to-string-tag-support */ \"./node_modules/core-js/internals/to-string-tag-support.js\");\n\nvar classof = __webpack_require__(/*! ../internals/classof */ \"./node_modules/core-js/internals/classof.js\"); // `Object.prototype.toString` method implementation\n// https://tc39.github.io/ecma262/#sec-object.prototype.tostring\n\n\nmodule.exports = TO_STRING_TAG_SUPPORT ? {}.toString : function toString() {\n  return '[object ' + classof(this) + ']';\n};\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/object-to-string.js?")},"./node_modules/core-js/internals/own-keys.js":function(module,exports,__webpack_require__){eval('var getBuiltIn = __webpack_require__(/*! ../internals/get-built-in */ "./node_modules/core-js/internals/get-built-in.js");\n\nvar getOwnPropertyNamesModule = __webpack_require__(/*! ../internals/object-get-own-property-names */ "./node_modules/core-js/internals/object-get-own-property-names.js");\n\nvar getOwnPropertySymbolsModule = __webpack_require__(/*! ../internals/object-get-own-property-symbols */ "./node_modules/core-js/internals/object-get-own-property-symbols.js");\n\nvar anObject = __webpack_require__(/*! ../internals/an-object */ "./node_modules/core-js/internals/an-object.js"); // all object keys, includes non-enumerable and symbols\n\n\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\n//# sourceURL=webpack:///./node_modules/core-js/internals/own-keys.js?')},"./node_modules/core-js/internals/path.js":function(module,exports,__webpack_require__){eval('var global = __webpack_require__(/*! ../internals/global */ "./node_modules/core-js/internals/global.js");\n\nmodule.exports = global;\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/path.js?')},"./node_modules/core-js/internals/redefine.js":function(module,exports,__webpack_require__){eval("var global = __webpack_require__(/*! ../internals/global */ \"./node_modules/core-js/internals/global.js\");\n\nvar createNonEnumerableProperty = __webpack_require__(/*! ../internals/create-non-enumerable-property */ \"./node_modules/core-js/internals/create-non-enumerable-property.js\");\n\nvar has = __webpack_require__(/*! ../internals/has */ \"./node_modules/core-js/internals/has.js\");\n\nvar setGlobal = __webpack_require__(/*! ../internals/set-global */ \"./node_modules/core-js/internals/set-global.js\");\n\nvar inspectSource = __webpack_require__(/*! ../internals/inspect-source */ \"./node_modules/core-js/internals/inspect-source.js\");\n\nvar InternalStateModule = __webpack_require__(/*! ../internals/internal-state */ \"./node_modules/core-js/internals/internal-state.js\");\n\nvar getInternalState = InternalStateModule.get;\nvar enforceInternalState = InternalStateModule.enforce;\nvar TEMPLATE = String(String).split('String');\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\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\n  if (O === global) {\n    if (simple) O[key] = value;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\n  if (simple) O[key] = value;else createNonEnumerableProperty(O, key, value); // 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\n//# sourceURL=webpack:///./node_modules/core-js/internals/redefine.js?")},"./node_modules/core-js/internals/regexp-exec-abstract.js":function(module,exports,__webpack_require__){eval("var classof = __webpack_require__(/*! ./classof-raw */ \"./node_modules/core-js/internals/classof-raw.js\");\n\nvar regexpExec = __webpack_require__(/*! ./regexp-exec */ \"./node_modules/core-js/internals/regexp-exec.js\"); // `RegExpExec` abstract operation\n// https://tc39.github.io/ecma262/#sec-regexpexec\n\n\nmodule.exports = function (R, S) {\n  var exec = R.exec;\n\n  if (typeof exec === 'function') {\n    var result = exec.call(R, S);\n\n    if (typeof result !== 'object') {\n      throw TypeError('RegExp exec method returned something other than an Object or null');\n    }\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//# sourceURL=webpack:///./node_modules/core-js/internals/regexp-exec-abstract.js?")},"./node_modules/core-js/internals/regexp-exec.js":function(module,exports,__webpack_require__){"use strict";eval("\n\nvar regexpFlags = __webpack_require__(/*! ./regexp-flags */ \"./node_modules/core-js/internals/regexp-flags.js\");\n\nvar stickyHelpers = __webpack_require__(/*! ./regexp-sticky-helpers */ \"./node_modules/core-js/internals/regexp-sticky-helpers.js\");\n\nvar nativeExec = RegExp.prototype.exec; // 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.\n\nvar nativeReplace = String.prototype.replace;\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\nvar UNSUPPORTED_Y = stickyHelpers.UNSUPPORTED_Y || stickyHelpers.BROKEN_CARET; // nonparticipating capturing group, copied from es5-shim's String#split patch.\n\nvar NPCG_INCLUDED = /()??/.exec('')[1] !== undefined;\nvar PATCH = UPDATES_LAST_INDEX_WRONG || NPCG_INCLUDED || UNSUPPORTED_Y;\n\nif (PATCH) {\n  patchedExec = function exec(str) {\n    var re = this;\n    var lastIndex, reCopy, match, i;\n    var sticky = UNSUPPORTED_Y && re.sticky;\n    var flags = regexpFlags.call(re);\n    var source = re.source;\n    var charsAdded = 0;\n    var strCopy = str;\n\n    if (sticky) {\n      flags = flags.replace('y', '');\n\n      if (flags.indexOf('g') === -1) {\n        flags += 'g';\n      }\n\n      strCopy = String(str).slice(re.lastIndex); // Support anchored sticky behavior.\n\n      if (re.lastIndex > 0 && (!re.multiline || re.multiline && str[re.lastIndex - 1] !== '\\n')) {\n        source = '(?: ' + source + ')';\n        strCopy = ' ' + strCopy;\n        charsAdded++;\n      } // ^(? + rx + ) is needed, in combination with some str slicing, to\n      // simulate the 'y' flag.\n\n\n      reCopy = new RegExp('^(?:' + source + ')', flags);\n    }\n\n    if (NPCG_INCLUDED) {\n      reCopy = new RegExp('^' + source + '$(?!\\\\s)', flags);\n    }\n\n    if (UPDATES_LAST_INDEX_WRONG) lastIndex = re.lastIndex;\n    match = nativeExec.call(sticky ? reCopy : re, strCopy);\n\n    if (sticky) {\n      if (match) {\n        match.input = match.input.slice(charsAdded);\n        match[0] = match[0].slice(charsAdded);\n        match.index = re.lastIndex;\n        re.lastIndex += match[0].length;\n      } else re.lastIndex = 0;\n    } else if (UPDATES_LAST_INDEX_WRONG && match) {\n      re.lastIndex = re.global ? match.index + match[0].length : lastIndex;\n    }\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\n//# sourceURL=webpack:///./node_modules/core-js/internals/regexp-exec.js?")},"./node_modules/core-js/internals/regexp-flags.js":function(module,exports,__webpack_require__){"use strict";eval("\n\nvar anObject = __webpack_require__(/*! ../internals/an-object */ \"./node_modules/core-js/internals/an-object.js\"); // `RegExp.prototype.flags` getter implementation\n// https://tc39.github.io/ecma262/#sec-get-regexp.prototype.flags\n\n\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\n//# sourceURL=webpack:///./node_modules/core-js/internals/regexp-flags.js?")},"./node_modules/core-js/internals/regexp-sticky-helpers.js":function(module,exports,__webpack_require__){"use strict";eval("\n\nvar fails = __webpack_require__(/*! ./fails */ \"./node_modules/core-js/internals/fails.js\"); // babel-minify transpiles RegExp('a', 'y') -> /a/y and it causes SyntaxError,\n// so we use an intermediate function.\n\n\nfunction RE(s, f) {\n  return RegExp(s, f);\n}\n\nexports.UNSUPPORTED_Y = fails(function () {\n  // babel-minify transpiles RegExp('a', 'y') -> /a/y and it causes SyntaxError\n  var re = RE('a', 'y');\n  re.lastIndex = 2;\n  return re.exec('abcd') != null;\n});\nexports.BROKEN_CARET = fails(function () {\n  // https://bugzilla.mozilla.org/show_bug.cgi?id=773687\n  var re = RE('^r', 'gy');\n  re.lastIndex = 2;\n  return re.exec('str') != null;\n});\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/regexp-sticky-helpers.js?")},"./node_modules/core-js/internals/require-object-coercible.js":function(module,exports){eval('// `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\n//# sourceURL=webpack:///./node_modules/core-js/internals/require-object-coercible.js?')},"./node_modules/core-js/internals/same-value.js":function(module,exports){eval("// `SameValue` abstract operation\n// https://tc39.github.io/ecma262/#sec-samevalue\nmodule.exports = Object.is || function is(x, y) {\n  // eslint-disable-next-line no-self-compare\n  return x === y ? x !== 0 || 1 / x === 1 / y : x != x && y != y;\n};\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/same-value.js?")},"./node_modules/core-js/internals/set-global.js":function(module,exports,__webpack_require__){eval('var global = __webpack_require__(/*! ../internals/global */ "./node_modules/core-js/internals/global.js");\n\nvar createNonEnumerableProperty = __webpack_require__(/*! ../internals/create-non-enumerable-property */ "./node_modules/core-js/internals/create-non-enumerable-property.js");\n\nmodule.exports = function (key, value) {\n  try {\n    createNonEnumerableProperty(global, key, value);\n  } catch (error) {\n    global[key] = value;\n  }\n\n  return value;\n};\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/set-global.js?')},"./node_modules/core-js/internals/set-species.js":function(module,exports,__webpack_require__){"use strict";eval('\n\nvar getBuiltIn = __webpack_require__(/*! ../internals/get-built-in */ "./node_modules/core-js/internals/get-built-in.js");\n\nvar definePropertyModule = __webpack_require__(/*! ../internals/object-define-property */ "./node_modules/core-js/internals/object-define-property.js");\n\nvar wellKnownSymbol = __webpack_require__(/*! ../internals/well-known-symbol */ "./node_modules/core-js/internals/well-known-symbol.js");\n\nvar DESCRIPTORS = __webpack_require__(/*! ../internals/descriptors */ "./node_modules/core-js/internals/descriptors.js");\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 () {\n        return this;\n      }\n    });\n  }\n};\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/set-species.js?')},"./node_modules/core-js/internals/set-to-string-tag.js":function(module,exports,__webpack_require__){eval('var defineProperty = __webpack_require__(/*! ../internals/object-define-property */ "./node_modules/core-js/internals/object-define-property.js").f;\n\nvar has = __webpack_require__(/*! ../internals/has */ "./node_modules/core-js/internals/has.js");\n\nvar wellKnownSymbol = __webpack_require__(/*! ../internals/well-known-symbol */ "./node_modules/core-js/internals/well-known-symbol.js");\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, {\n      configurable: true,\n      value: TAG\n    });\n  }\n};\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/set-to-string-tag.js?')},"./node_modules/core-js/internals/shared-key.js":function(module,exports,__webpack_require__){eval('var shared = __webpack_require__(/*! ../internals/shared */ "./node_modules/core-js/internals/shared.js");\n\nvar uid = __webpack_require__(/*! ../internals/uid */ "./node_modules/core-js/internals/uid.js");\n\nvar keys = shared(\'keys\');\n\nmodule.exports = function (key) {\n  return keys[key] || (keys[key] = uid(key));\n};\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/shared-key.js?')},"./node_modules/core-js/internals/shared-store.js":function(module,exports,__webpack_require__){eval('var global = __webpack_require__(/*! ../internals/global */ "./node_modules/core-js/internals/global.js");\n\nvar setGlobal = __webpack_require__(/*! ../internals/set-global */ "./node_modules/core-js/internals/set-global.js");\n\nvar SHARED = \'__core-js_shared__\';\nvar store = global[SHARED] || setGlobal(SHARED, {});\nmodule.exports = store;\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/shared-store.js?')},"./node_modules/core-js/internals/shared.js":function(module,exports,__webpack_require__){eval("var IS_PURE = __webpack_require__(/*! ../internals/is-pure */ \"./node_modules/core-js/internals/is-pure.js\");\n\nvar store = __webpack_require__(/*! ../internals/shared-store */ \"./node_modules/core-js/internals/shared-store.js\");\n\n(module.exports = function (key, value) {\n  return store[key] || (store[key] = value !== undefined ? value : {});\n})('versions', []).push({\n  version: '3.6.5',\n  mode: IS_PURE ? 'pure' : 'global',\n  copyright: '© 2020 Denis Pushkarev (zloirock.ru)'\n});\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/shared.js?")},"./node_modules/core-js/internals/species-constructor.js":function(module,exports,__webpack_require__){eval('var anObject = __webpack_require__(/*! ../internals/an-object */ "./node_modules/core-js/internals/an-object.js");\n\nvar aFunction = __webpack_require__(/*! ../internals/a-function */ "./node_modules/core-js/internals/a-function.js");\n\nvar wellKnownSymbol = __webpack_require__(/*! ../internals/well-known-symbol */ "./node_modules/core-js/internals/well-known-symbol.js");\n\nvar SPECIES = wellKnownSymbol(\'species\'); // `SpeciesConstructor` abstract operation\n// https://tc39.github.io/ecma262/#sec-speciesconstructor\n\nmodule.exports = function (O, defaultConstructor) {\n  var C = anObject(O).constructor;\n  var S;\n  return C === undefined || (S = anObject(C)[SPECIES]) == undefined ? defaultConstructor : aFunction(S);\n};\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/species-constructor.js?')},"./node_modules/core-js/internals/string-multibyte.js":function(module,exports,__webpack_require__){eval('var toInteger = __webpack_require__(/*! ../internals/to-integer */ "./node_modules/core-js/internals/to-integer.js");\n\nvar requireObjectCoercible = __webpack_require__(/*! ../internals/require-object-coercible */ "./node_modules/core-js/internals/require-object-coercible.js"); // `String.prototype.{ codePointAt, at }` methods implementation\n\n\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 || (second = S.charCodeAt(position + 1)) < 0xDC00 || second > 0xDFFF ? CONVERT_TO_STRING ? S.charAt(position) : first : 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\n//# sourceURL=webpack:///./node_modules/core-js/internals/string-multibyte.js?')},"./node_modules/core-js/internals/string-trim-forced.js":function(module,exports,__webpack_require__){eval('var fails = __webpack_require__(/*! ../internals/fails */ "./node_modules/core-js/internals/fails.js");\n\nvar whitespaces = __webpack_require__(/*! ../internals/whitespaces */ "./node_modules/core-js/internals/whitespaces.js");\n\nvar non = \'\\u200B\\u0085\\u180E\'; // check that a method works with the correct list\n// of whitespaces and has a correct name\n\nmodule.exports = function (METHOD_NAME) {\n  return fails(function () {\n    return !!whitespaces[METHOD_NAME]() || non[METHOD_NAME]() != non || whitespaces[METHOD_NAME].name !== METHOD_NAME;\n  });\n};\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/string-trim-forced.js?')},"./node_modules/core-js/internals/string-trim.js":function(module,exports,__webpack_require__){eval("var requireObjectCoercible = __webpack_require__(/*! ../internals/require-object-coercible */ \"./node_modules/core-js/internals/require-object-coercible.js\");\n\nvar whitespaces = __webpack_require__(/*! ../internals/whitespaces */ \"./node_modules/core-js/internals/whitespaces.js\");\n\nvar whitespace = '[' + whitespaces + ']';\nvar ltrim = RegExp('^' + whitespace + whitespace + '*');\nvar rtrim = RegExp(whitespace + whitespace + '*$'); // `String.prototype.{ trim, trimStart, trimEnd, trimLeft, trimRight }` methods implementation\n\nvar createMethod = function (TYPE) {\n  return function ($this) {\n    var string = String(requireObjectCoercible($this));\n    if (TYPE & 1) string = string.replace(ltrim, '');\n    if (TYPE & 2) string = string.replace(rtrim, '');\n    return string;\n  };\n};\n\nmodule.exports = {\n  // `String.prototype.{ trimLeft, trimStart }` methods\n  // https://tc39.github.io/ecma262/#sec-string.prototype.trimstart\n  start: createMethod(1),\n  // `String.prototype.{ trimRight, trimEnd }` methods\n  // https://tc39.github.io/ecma262/#sec-string.prototype.trimend\n  end: createMethod(2),\n  // `String.prototype.trim` method\n  // https://tc39.github.io/ecma262/#sec-string.prototype.trim\n  trim: createMethod(3)\n};\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/string-trim.js?")},"./node_modules/core-js/internals/to-absolute-index.js":function(module,exports,__webpack_require__){eval('var toInteger = __webpack_require__(/*! ../internals/to-integer */ "./node_modules/core-js/internals/to-integer.js");\n\nvar max = Math.max;\nvar min = Math.min; // 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).\n\nmodule.exports = function (index, length) {\n  var integer = toInteger(index);\n  return integer < 0 ? max(integer + length, 0) : min(integer, length);\n};\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/to-absolute-index.js?')},"./node_modules/core-js/internals/to-indexed-object.js":function(module,exports,__webpack_require__){eval('// toObject with fallback for non-array-like ES3 strings\nvar IndexedObject = __webpack_require__(/*! ../internals/indexed-object */ "./node_modules/core-js/internals/indexed-object.js");\n\nvar requireObjectCoercible = __webpack_require__(/*! ../internals/require-object-coercible */ "./node_modules/core-js/internals/require-object-coercible.js");\n\nmodule.exports = function (it) {\n  return IndexedObject(requireObjectCoercible(it));\n};\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/to-indexed-object.js?')},"./node_modules/core-js/internals/to-integer.js":function(module,exports){eval("var ceil = Math.ceil;\nvar floor = Math.floor; // `ToInteger` abstract operation\n// https://tc39.github.io/ecma262/#sec-tointeger\n\nmodule.exports = function (argument) {\n  return isNaN(argument = +argument) ? 0 : (argument > 0 ? floor : ceil)(argument);\n};\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/to-integer.js?")},"./node_modules/core-js/internals/to-length.js":function(module,exports,__webpack_require__){eval('var toInteger = __webpack_require__(/*! ../internals/to-integer */ "./node_modules/core-js/internals/to-integer.js");\n\nvar min = Math.min; // `ToLength` abstract operation\n// https://tc39.github.io/ecma262/#sec-tolength\n\nmodule.exports = function (argument) {\n  return argument > 0 ? min(toInteger(argument), 0x1FFFFFFFFFFFFF) : 0; // 2 ** 53 - 1 == 9007199254740991\n};\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/to-length.js?')},"./node_modules/core-js/internals/to-object.js":function(module,exports,__webpack_require__){eval('var requireObjectCoercible = __webpack_require__(/*! ../internals/require-object-coercible */ "./node_modules/core-js/internals/require-object-coercible.js"); // `ToObject` abstract operation\n// https://tc39.github.io/ecma262/#sec-toobject\n\n\nmodule.exports = function (argument) {\n  return Object(requireObjectCoercible(argument));\n};\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/to-object.js?')},"./node_modules/core-js/internals/to-primitive.js":function(module,exports,__webpack_require__){eval("var isObject = __webpack_require__(/*! ../internals/is-object */ \"./node_modules/core-js/internals/is-object.js\"); // `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\n\n\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\n//# sourceURL=webpack:///./node_modules/core-js/internals/to-primitive.js?")},"./node_modules/core-js/internals/to-string-tag-support.js":function(module,exports,__webpack_require__){eval("var wellKnownSymbol = __webpack_require__(/*! ../internals/well-known-symbol */ \"./node_modules/core-js/internals/well-known-symbol.js\");\n\nvar TO_STRING_TAG = wellKnownSymbol('toStringTag');\nvar test = {};\ntest[TO_STRING_TAG] = 'z';\nmodule.exports = String(test) === '[object z]';\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/to-string-tag-support.js?")},"./node_modules/core-js/internals/uid.js":function(module,exports){eval("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\n//# sourceURL=webpack:///./node_modules/core-js/internals/uid.js?")},"./node_modules/core-js/internals/use-symbol-as-uid.js":function(module,exports,__webpack_require__){eval("var NATIVE_SYMBOL = __webpack_require__(/*! ../internals/native-symbol */ \"./node_modules/core-js/internals/native-symbol.js\");\n\nmodule.exports = NATIVE_SYMBOL // eslint-disable-next-line no-undef\n&& !Symbol.sham // eslint-disable-next-line no-undef\n&& typeof Symbol.iterator == 'symbol';\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/use-symbol-as-uid.js?")},"./node_modules/core-js/internals/well-known-symbol-wrapped.js":function(module,exports,__webpack_require__){eval('var wellKnownSymbol = __webpack_require__(/*! ../internals/well-known-symbol */ "./node_modules/core-js/internals/well-known-symbol.js");\n\nexports.f = wellKnownSymbol;\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/well-known-symbol-wrapped.js?')},"./node_modules/core-js/internals/well-known-symbol.js":function(module,exports,__webpack_require__){eval('var global = __webpack_require__(/*! ../internals/global */ "./node_modules/core-js/internals/global.js");\n\nvar shared = __webpack_require__(/*! ../internals/shared */ "./node_modules/core-js/internals/shared.js");\n\nvar has = __webpack_require__(/*! ../internals/has */ "./node_modules/core-js/internals/has.js");\n\nvar uid = __webpack_require__(/*! ../internals/uid */ "./node_modules/core-js/internals/uid.js");\n\nvar NATIVE_SYMBOL = __webpack_require__(/*! ../internals/native-symbol */ "./node_modules/core-js/internals/native-symbol.js");\n\nvar USE_SYMBOL_AS_UID = __webpack_require__(/*! ../internals/use-symbol-as-uid */ "./node_modules/core-js/internals/use-symbol-as-uid.js");\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];else WellKnownSymbolsStore[name] = createWellKnownSymbol(\'Symbol.\' + name);\n  }\n\n  return WellKnownSymbolsStore[name];\n};\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/well-known-symbol.js?')},"./node_modules/core-js/internals/whitespaces.js":function(module,exports){eval("// a string of all valid unicode whitespaces\n// eslint-disable-next-line max-len\nmodule.exports = '\\u0009\\u000A\\u000B\\u000C\\u000D\\u0020\\u00A0\\u1680\\u2000\\u2001\\u2002\\u2003\\u2004\\u2005\\u2006\\u2007\\u2008\\u2009\\u200A\\u202F\\u205F\\u3000\\u2028\\u2029\\uFEFF';\n\n//# sourceURL=webpack:///./node_modules/core-js/internals/whitespaces.js?")},"./node_modules/core-js/modules/es.array.concat.js":function(module,exports,__webpack_require__){"use strict";eval('\n\nvar $ = __webpack_require__(/*! ../internals/export */ "./node_modules/core-js/internals/export.js");\n\nvar fails = __webpack_require__(/*! ../internals/fails */ "./node_modules/core-js/internals/fails.js");\n\nvar isArray = __webpack_require__(/*! ../internals/is-array */ "./node_modules/core-js/internals/is-array.js");\n\nvar isObject = __webpack_require__(/*! ../internals/is-object */ "./node_modules/core-js/internals/is-object.js");\n\nvar toObject = __webpack_require__(/*! ../internals/to-object */ "./node_modules/core-js/internals/to-object.js");\n\nvar toLength = __webpack_require__(/*! ../internals/to-length */ "./node_modules/core-js/internals/to-length.js");\n\nvar createProperty = __webpack_require__(/*! ../internals/create-property */ "./node_modules/core-js/internals/create-property.js");\n\nvar arraySpeciesCreate = __webpack_require__(/*! ../internals/array-species-create */ "./node_modules/core-js/internals/array-species-create.js");\n\nvar arrayMethodHasSpeciesSupport = __webpack_require__(/*! ../internals/array-method-has-species-support */ "./node_modules/core-js/internals/array-method-has-species-support.js");\n\nvar wellKnownSymbol = __webpack_require__(/*! ../internals/well-known-symbol */ "./node_modules/core-js/internals/well-known-symbol.js");\n\nvar V8_VERSION = __webpack_require__(/*! ../internals/engine-v8-version */ "./node_modules/core-js/internals/engine-v8-version.js");\n\nvar IS_CONCAT_SPREADABLE = wellKnownSymbol(\'isConcatSpreadable\');\nvar MAX_SAFE_INTEGER = 0x1FFFFFFFFFFFFF;\nvar MAXIMUM_ALLOWED_INDEX_EXCEEDED = \'Maximum allowed index exceeded\'; // 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\n\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});\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; // `Array.prototype.concat` method\n// https://tc39.github.io/ecma262/#sec-array.prototype.concat\n// with adding support of @@isConcatSpreadable and @@species\n\n$({\n  target: \'Array\',\n  proto: true,\n  forced: FORCED\n}, {\n  concat: function concat(arg) {\n    // 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\n    for (i = -1, length = arguments.length; i < length; i++) {\n      E = i === -1 ? O : arguments[i];\n\n      if (isConcatSpreadable(E)) {\n        len = toLength(E.length);\n        if (n + len > MAX_SAFE_INTEGER) throw TypeError(MAXIMUM_ALLOWED_INDEX_EXCEEDED);\n\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\n    A.length = n;\n    return A;\n  }\n});\n\n//# sourceURL=webpack:///./node_modules/core-js/modules/es.array.concat.js?')},"./node_modules/core-js/modules/es.array.filter.js":function(module,exports,__webpack_require__){"use strict";eval('\n\nvar $ = __webpack_require__(/*! ../internals/export */ "./node_modules/core-js/internals/export.js");\n\nvar $filter = __webpack_require__(/*! ../internals/array-iteration */ "./node_modules/core-js/internals/array-iteration.js").filter;\n\nvar arrayMethodHasSpeciesSupport = __webpack_require__(/*! ../internals/array-method-has-species-support */ "./node_modules/core-js/internals/array-method-has-species-support.js");\n\nvar arrayMethodUsesToLength = __webpack_require__(/*! ../internals/array-method-uses-to-length */ "./node_modules/core-js/internals/array-method-uses-to-length.js");\n\nvar HAS_SPECIES_SUPPORT = arrayMethodHasSpeciesSupport(\'filter\'); // Edge 14- issue\n\nvar USES_TO_LENGTH = arrayMethodUsesToLength(\'filter\'); // `Array.prototype.filter` method\n// https://tc39.github.io/ecma262/#sec-array.prototype.filter\n// with adding support of @@species\n\n$({\n  target: \'Array\',\n  proto: true,\n  forced: !HAS_SPECIES_SUPPORT || !USES_TO_LENGTH\n}, {\n  filter: function filter(callbackfn\n  /* , thisArg */\n  ) {\n    return $filter(this, callbackfn, arguments.length > 1 ? arguments[1] : undefined);\n  }\n});\n\n//# sourceURL=webpack:///./node_modules/core-js/modules/es.array.filter.js?')},"./node_modules/core-js/modules/es.array.find.js":function(module,exports,__webpack_require__){"use strict";eval('\n\nvar $ = __webpack_require__(/*! ../internals/export */ "./node_modules/core-js/internals/export.js");\n\nvar $find = __webpack_require__(/*! ../internals/array-iteration */ "./node_modules/core-js/internals/array-iteration.js").find;\n\nvar addToUnscopables = __webpack_require__(/*! ../internals/add-to-unscopables */ "./node_modules/core-js/internals/add-to-unscopables.js");\n\nvar arrayMethodUsesToLength = __webpack_require__(/*! ../internals/array-method-uses-to-length */ "./node_modules/core-js/internals/array-method-uses-to-length.js");\n\nvar FIND = \'find\';\nvar SKIPS_HOLES = true;\nvar USES_TO_LENGTH = arrayMethodUsesToLength(FIND); // Shouldn\'t skip holes\n\nif (FIND in []) Array(1)[FIND](function () {\n  SKIPS_HOLES = false;\n}); // `Array.prototype.find` method\n// https://tc39.github.io/ecma262/#sec-array.prototype.find\n\n$({\n  target: \'Array\',\n  proto: true,\n  forced: SKIPS_HOLES || !USES_TO_LENGTH\n}, {\n  find: function find(callbackfn\n  /* , that = undefined */\n  ) {\n    return $find(this, callbackfn, arguments.length > 1 ? arguments[1] : undefined);\n  }\n}); // https://tc39.github.io/ecma262/#sec-array.prototype-@@unscopables\n\naddToUnscopables(FIND);\n\n//# sourceURL=webpack:///./node_modules/core-js/modules/es.array.find.js?')},"./node_modules/core-js/modules/es.array.for-each.js":function(module,exports,__webpack_require__){"use strict";eval('\n\nvar $ = __webpack_require__(/*! ../internals/export */ "./node_modules/core-js/internals/export.js");\n\nvar forEach = __webpack_require__(/*! ../internals/array-for-each */ "./node_modules/core-js/internals/array-for-each.js"); // `Array.prototype.forEach` method\n// https://tc39.github.io/ecma262/#sec-array.prototype.foreach\n\n\n$({\n  target: \'Array\',\n  proto: true,\n  forced: [].forEach != forEach\n}, {\n  forEach: forEach\n});\n\n//# sourceURL=webpack:///./node_modules/core-js/modules/es.array.for-each.js?')},"./node_modules/core-js/modules/es.array.includes.js":function(module,exports,__webpack_require__){"use strict";eval('\n\nvar $ = __webpack_require__(/*! ../internals/export */ "./node_modules/core-js/internals/export.js");\n\nvar $includes = __webpack_require__(/*! ../internals/array-includes */ "./node_modules/core-js/internals/array-includes.js").includes;\n\nvar addToUnscopables = __webpack_require__(/*! ../internals/add-to-unscopables */ "./node_modules/core-js/internals/add-to-unscopables.js");\n\nvar arrayMethodUsesToLength = __webpack_require__(/*! ../internals/array-method-uses-to-length */ "./node_modules/core-js/internals/array-method-uses-to-length.js");\n\nvar USES_TO_LENGTH = arrayMethodUsesToLength(\'indexOf\', {\n  ACCESSORS: true,\n  1: 0\n}); // `Array.prototype.includes` method\n// https://tc39.github.io/ecma262/#sec-array.prototype.includes\n\n$({\n  target: \'Array\',\n  proto: true,\n  forced: !USES_TO_LENGTH\n}, {\n  includes: function includes(el\n  /* , fromIndex = 0 */\n  ) {\n    return $includes(this, el, arguments.length > 1 ? arguments[1] : undefined);\n  }\n}); // https://tc39.github.io/ecma262/#sec-array.prototype-@@unscopables\n\naddToUnscopables(\'includes\');\n\n//# sourceURL=webpack:///./node_modules/core-js/modules/es.array.includes.js?')},"./node_modules/core-js/modules/es.array.index-of.js":function(module,exports,__webpack_require__){"use strict";eval('\n\nvar $ = __webpack_require__(/*! ../internals/export */ "./node_modules/core-js/internals/export.js");\n\nvar $indexOf = __webpack_require__(/*! ../internals/array-includes */ "./node_modules/core-js/internals/array-includes.js").indexOf;\n\nvar arrayMethodIsStrict = __webpack_require__(/*! ../internals/array-method-is-strict */ "./node_modules/core-js/internals/array-method-is-strict.js");\n\nvar arrayMethodUsesToLength = __webpack_require__(/*! ../internals/array-method-uses-to-length */ "./node_modules/core-js/internals/array-method-uses-to-length.js");\n\nvar nativeIndexOf = [].indexOf;\nvar NEGATIVE_ZERO = !!nativeIndexOf && 1 / [1].indexOf(1, -0) < 0;\nvar STRICT_METHOD = arrayMethodIsStrict(\'indexOf\');\nvar USES_TO_LENGTH = arrayMethodUsesToLength(\'indexOf\', {\n  ACCESSORS: true,\n  1: 0\n}); // `Array.prototype.indexOf` method\n// https://tc39.github.io/ecma262/#sec-array.prototype.indexof\n\n$({\n  target: \'Array\',\n  proto: true,\n  forced: NEGATIVE_ZERO || !STRICT_METHOD || !USES_TO_LENGTH\n}, {\n  indexOf: function indexOf(searchElement\n  /* , fromIndex = 0 */\n  ) {\n    return NEGATIVE_ZERO // convert -0 to +0\n    ? nativeIndexOf.apply(this, arguments) || 0 : $indexOf(this, searchElement, arguments.length > 1 ? arguments[1] : undefined);\n  }\n});\n\n//# sourceURL=webpack:///./node_modules/core-js/modules/es.array.index-of.js?')},"./node_modules/core-js/modules/es.array.iterator.js":function(module,exports,__webpack_require__){"use strict";eval("\n\nvar toIndexedObject = __webpack_require__(/*! ../internals/to-indexed-object */ \"./node_modules/core-js/internals/to-indexed-object.js\");\n\nvar addToUnscopables = __webpack_require__(/*! ../internals/add-to-unscopables */ \"./node_modules/core-js/internals/add-to-unscopables.js\");\n\nvar Iterators = __webpack_require__(/*! ../internals/iterators */ \"./node_modules/core-js/internals/iterators.js\");\n\nvar InternalStateModule = __webpack_require__(/*! ../internals/internal-state */ \"./node_modules/core-js/internals/internal-state.js\");\n\nvar defineIterator = __webpack_require__(/*! ../internals/define-iterator */ \"./node_modules/core-js/internals/define-iterator.js\");\n\nvar ARRAY_ITERATOR = 'Array Iterator';\nvar setInternalState = InternalStateModule.set;\nvar getInternalState = InternalStateModule.getterFor(ARRAY_ITERATOR); // `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\n\nmodule.exports = defineIterator(Array, 'Array', function (iterated, kind) {\n  setInternalState(this, {\n    type: ARRAY_ITERATOR,\n    target: toIndexedObject(iterated),\n    // target\n    index: 0,\n    // 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\n  if (!target || index >= target.length) {\n    state.target = undefined;\n    return {\n      value: undefined,\n      done: true\n    };\n  }\n\n  if (kind == 'keys') return {\n    value: index,\n    done: false\n  };\n  if (kind == 'values') return {\n    value: target[index],\n    done: false\n  };\n  return {\n    value: [index, target[index]],\n    done: false\n  };\n}, 'values'); // argumentsList[@@iterator] is %ArrayProto_values%\n// https://tc39.github.io/ecma262/#sec-createunmappedargumentsobject\n// https://tc39.github.io/ecma262/#sec-createmappedargumentsobject\n\nIterators.Arguments = Iterators.Array; // https://tc39.github.io/ecma262/#sec-array.prototype-@@unscopables\n\naddToUnscopables('keys');\naddToUnscopables('values');\naddToUnscopables('entries');\n\n//# sourceURL=webpack:///./node_modules/core-js/modules/es.array.iterator.js?")},"./node_modules/core-js/modules/es.array.join.js":function(module,exports,__webpack_require__){"use strict";eval("\n\nvar $ = __webpack_require__(/*! ../internals/export */ \"./node_modules/core-js/internals/export.js\");\n\nvar IndexedObject = __webpack_require__(/*! ../internals/indexed-object */ \"./node_modules/core-js/internals/indexed-object.js\");\n\nvar toIndexedObject = __webpack_require__(/*! ../internals/to-indexed-object */ \"./node_modules/core-js/internals/to-indexed-object.js\");\n\nvar arrayMethodIsStrict = __webpack_require__(/*! ../internals/array-method-is-strict */ \"./node_modules/core-js/internals/array-method-is-strict.js\");\n\nvar nativeJoin = [].join;\nvar ES3_STRINGS = IndexedObject != Object;\nvar STRICT_METHOD = arrayMethodIsStrict('join', ','); // `Array.prototype.join` method\n// https://tc39.github.io/ecma262/#sec-array.prototype.join\n\n$({\n  target: 'Array',\n  proto: true,\n  forced: ES3_STRINGS || !STRICT_METHOD\n}, {\n  join: function join(separator) {\n    return nativeJoin.call(toIndexedObject(this), separator === undefined ? ',' : separator);\n  }\n});\n\n//# sourceURL=webpack:///./node_modules/core-js/modules/es.array.join.js?")},"./node_modules/core-js/modules/es.array.map.js":function(module,exports,__webpack_require__){"use strict";eval('\n\nvar $ = __webpack_require__(/*! ../internals/export */ "./node_modules/core-js/internals/export.js");\n\nvar $map = __webpack_require__(/*! ../internals/array-iteration */ "./node_modules/core-js/internals/array-iteration.js").map;\n\nvar arrayMethodHasSpeciesSupport = __webpack_require__(/*! ../internals/array-method-has-species-support */ "./node_modules/core-js/internals/array-method-has-species-support.js");\n\nvar arrayMethodUsesToLength = __webpack_require__(/*! ../internals/array-method-uses-to-length */ "./node_modules/core-js/internals/array-method-uses-to-length.js");\n\nvar HAS_SPECIES_SUPPORT = arrayMethodHasSpeciesSupport(\'map\'); // FF49- issue\n\nvar USES_TO_LENGTH = arrayMethodUsesToLength(\'map\'); // `Array.prototype.map` method\n// https://tc39.github.io/ecma262/#sec-array.prototype.map\n// with adding support of @@species\n\n$({\n  target: \'Array\',\n  proto: true,\n  forced: !HAS_SPECIES_SUPPORT || !USES_TO_LENGTH\n}, {\n  map: function map(callbackfn\n  /* , thisArg */\n  ) {\n    return $map(this, callbackfn, arguments.length > 1 ? arguments[1] : undefined);\n  }\n});\n\n//# sourceURL=webpack:///./node_modules/core-js/modules/es.array.map.js?')},"./node_modules/core-js/modules/es.array.slice.js":function(module,exports,__webpack_require__){"use strict";eval('\n\nvar $ = __webpack_require__(/*! ../internals/export */ "./node_modules/core-js/internals/export.js");\n\nvar isObject = __webpack_require__(/*! ../internals/is-object */ "./node_modules/core-js/internals/is-object.js");\n\nvar isArray = __webpack_require__(/*! ../internals/is-array */ "./node_modules/core-js/internals/is-array.js");\n\nvar toAbsoluteIndex = __webpack_require__(/*! ../internals/to-absolute-index */ "./node_modules/core-js/internals/to-absolute-index.js");\n\nvar toLength = __webpack_require__(/*! ../internals/to-length */ "./node_modules/core-js/internals/to-length.js");\n\nvar toIndexedObject = __webpack_require__(/*! ../internals/to-indexed-object */ "./node_modules/core-js/internals/to-indexed-object.js");\n\nvar createProperty = __webpack_require__(/*! ../internals/create-property */ "./node_modules/core-js/internals/create-property.js");\n\nvar wellKnownSymbol = __webpack_require__(/*! ../internals/well-known-symbol */ "./node_modules/core-js/internals/well-known-symbol.js");\n\nvar arrayMethodHasSpeciesSupport = __webpack_require__(/*! ../internals/array-method-has-species-support */ "./node_modules/core-js/internals/array-method-has-species-support.js");\n\nvar arrayMethodUsesToLength = __webpack_require__(/*! ../internals/array-method-uses-to-length */ "./node_modules/core-js/internals/array-method-uses-to-length.js");\n\nvar HAS_SPECIES_SUPPORT = arrayMethodHasSpeciesSupport(\'slice\');\nvar USES_TO_LENGTH = arrayMethodUsesToLength(\'slice\', {\n  ACCESSORS: true,\n  0: 0,\n  1: 2\n});\nvar SPECIES = wellKnownSymbol(\'species\');\nvar nativeSlice = [].slice;\nvar max = Math.max; // `Array.prototype.slice` method\n// https://tc39.github.io/ecma262/#sec-array.prototype.slice\n// fallback for not array-like ES3 strings and DOM objects\n\n$({\n  target: \'Array\',\n  proto: true,\n  forced: !HAS_SPECIES_SUPPORT || !USES_TO_LENGTH\n}, {\n  slice: function slice(start, end) {\n    var O = toIndexedObject(this);\n    var length = toLength(O.length);\n    var k = toAbsoluteIndex(start, length);\n    var fin = toAbsoluteIndex(end === undefined ? length : end, length); // inline `ArraySpeciesCreate` for usage native `Array#slice` where it\'s possible\n\n    var Constructor, result, n;\n\n    if (isArray(O)) {\n      Constructor = O.constructor; // cross-realm fallback\n\n      if (typeof Constructor == \'function\' && (Constructor === Array || isArray(Constructor.prototype))) {\n        Constructor = undefined;\n      } else if (isObject(Constructor)) {\n        Constructor = Constructor[SPECIES];\n        if (Constructor === null) Constructor = undefined;\n      }\n\n      if (Constructor === Array || Constructor === undefined) {\n        return nativeSlice.call(O, k, fin);\n      }\n    }\n\n    result = new (Constructor === undefined ? Array : Constructor)(max(fin - k, 0));\n\n    for (n = 0; k < fin; k++, n++) if (k in O) createProperty(result, n, O[k]);\n\n    result.length = n;\n    return result;\n  }\n});\n\n//# sourceURL=webpack:///./node_modules/core-js/modules/es.array.slice.js?')},"./node_modules/core-js/modules/es.array.sort.js":function(module,exports,__webpack_require__){"use strict";eval('\n\nvar $ = __webpack_require__(/*! ../internals/export */ "./node_modules/core-js/internals/export.js");\n\nvar aFunction = __webpack_require__(/*! ../internals/a-function */ "./node_modules/core-js/internals/a-function.js");\n\nvar toObject = __webpack_require__(/*! ../internals/to-object */ "./node_modules/core-js/internals/to-object.js");\n\nvar fails = __webpack_require__(/*! ../internals/fails */ "./node_modules/core-js/internals/fails.js");\n\nvar arrayMethodIsStrict = __webpack_require__(/*! ../internals/array-method-is-strict */ "./node_modules/core-js/internals/array-method-is-strict.js");\n\nvar test = [];\nvar nativeSort = test.sort; // IE8-\n\nvar FAILS_ON_UNDEFINED = fails(function () {\n  test.sort(undefined);\n}); // V8 bug\n\nvar FAILS_ON_NULL = fails(function () {\n  test.sort(null);\n}); // Old WebKit\n\nvar STRICT_METHOD = arrayMethodIsStrict(\'sort\');\nvar FORCED = FAILS_ON_UNDEFINED || !FAILS_ON_NULL || !STRICT_METHOD; // `Array.prototype.sort` method\n// https://tc39.github.io/ecma262/#sec-array.prototype.sort\n\n$({\n  target: \'Array\',\n  proto: true,\n  forced: FORCED\n}, {\n  sort: function sort(comparefn) {\n    return comparefn === undefined ? nativeSort.call(toObject(this)) : nativeSort.call(toObject(this), aFunction(comparefn));\n  }\n});\n\n//# sourceURL=webpack:///./node_modules/core-js/modules/es.array.sort.js?')},"./node_modules/core-js/modules/es.array.splice.js":function(module,exports,__webpack_require__){"use strict";eval('\n\nvar $ = __webpack_require__(/*! ../internals/export */ "./node_modules/core-js/internals/export.js");\n\nvar toAbsoluteIndex = __webpack_require__(/*! ../internals/to-absolute-index */ "./node_modules/core-js/internals/to-absolute-index.js");\n\nvar toInteger = __webpack_require__(/*! ../internals/to-integer */ "./node_modules/core-js/internals/to-integer.js");\n\nvar toLength = __webpack_require__(/*! ../internals/to-length */ "./node_modules/core-js/internals/to-length.js");\n\nvar toObject = __webpack_require__(/*! ../internals/to-object */ "./node_modules/core-js/internals/to-object.js");\n\nvar arraySpeciesCreate = __webpack_require__(/*! ../internals/array-species-create */ "./node_modules/core-js/internals/array-species-create.js");\n\nvar createProperty = __webpack_require__(/*! ../internals/create-property */ "./node_modules/core-js/internals/create-property.js");\n\nvar arrayMethodHasSpeciesSupport = __webpack_require__(/*! ../internals/array-method-has-species-support */ "./node_modules/core-js/internals/array-method-has-species-support.js");\n\nvar arrayMethodUsesToLength = __webpack_require__(/*! ../internals/array-method-uses-to-length */ "./node_modules/core-js/internals/array-method-uses-to-length.js");\n\nvar HAS_SPECIES_SUPPORT = arrayMethodHasSpeciesSupport(\'splice\');\nvar USES_TO_LENGTH = arrayMethodUsesToLength(\'splice\', {\n  ACCESSORS: true,\n  0: 0,\n  1: 2\n});\nvar max = Math.max;\nvar min = Math.min;\nvar MAX_SAFE_INTEGER = 0x1FFFFFFFFFFFFF;\nvar MAXIMUM_ALLOWED_LENGTH_EXCEEDED = \'Maximum allowed length exceeded\'; // `Array.prototype.splice` method\n// https://tc39.github.io/ecma262/#sec-array.prototype.splice\n// with adding support of @@species\n\n$({\n  target: \'Array\',\n  proto: true,\n  forced: !HAS_SPECIES_SUPPORT || !USES_TO_LENGTH\n}, {\n  splice: function splice(start, deleteCount\n  /* , ...items */\n  ) {\n    var O = toObject(this);\n    var len = toLength(O.length);\n    var actualStart = toAbsoluteIndex(start, len);\n    var argumentsLength = arguments.length;\n    var insertCount, actualDeleteCount, A, k, from, to;\n\n    if (argumentsLength === 0) {\n      insertCount = actualDeleteCount = 0;\n    } else if (argumentsLength === 1) {\n      insertCount = 0;\n      actualDeleteCount = len - actualStart;\n    } else {\n      insertCount = argumentsLength - 2;\n      actualDeleteCount = min(max(toInteger(deleteCount), 0), len - actualStart);\n    }\n\n    if (len + insertCount - actualDeleteCount > MAX_SAFE_INTEGER) {\n      throw TypeError(MAXIMUM_ALLOWED_LENGTH_EXCEEDED);\n    }\n\n    A = arraySpeciesCreate(O, actualDeleteCount);\n\n    for (k = 0; k < actualDeleteCount; k++) {\n      from = actualStart + k;\n      if (from in O) createProperty(A, k, O[from]);\n    }\n\n    A.length = actualDeleteCount;\n\n    if (insertCount < actualDeleteCount) {\n      for (k = actualStart; k < len - actualDeleteCount; k++) {\n        from = k + actualDeleteCount;\n        to = k + insertCount;\n        if (from in O) O[to] = O[from];else delete O[to];\n      }\n\n      for (k = len; k > len - actualDeleteCount + insertCount; k--) delete O[k - 1];\n    } else if (insertCount > actualDeleteCount) {\n      for (k = len - actualDeleteCount; k > actualStart; k--) {\n        from = k + actualDeleteCount - 1;\n        to = k + insertCount - 1;\n        if (from in O) O[to] = O[from];else delete O[to];\n      }\n    }\n\n    for (k = 0; k < insertCount; k++) {\n      O[k + actualStart] = arguments[k + 2];\n    }\n\n    O.length = len - actualDeleteCount + insertCount;\n    return A;\n  }\n});\n\n//# sourceURL=webpack:///./node_modules/core-js/modules/es.array.splice.js?')},"./node_modules/core-js/modules/es.date.to-json.js":function(module,exports,__webpack_require__){"use strict";eval('\n\nvar $ = __webpack_require__(/*! ../internals/export */ "./node_modules/core-js/internals/export.js");\n\nvar fails = __webpack_require__(/*! ../internals/fails */ "./node_modules/core-js/internals/fails.js");\n\nvar toObject = __webpack_require__(/*! ../internals/to-object */ "./node_modules/core-js/internals/to-object.js");\n\nvar toPrimitive = __webpack_require__(/*! ../internals/to-primitive */ "./node_modules/core-js/internals/to-primitive.js");\n\nvar FORCED = fails(function () {\n  return new Date(NaN).toJSON() !== null || Date.prototype.toJSON.call({\n    toISOString: function () {\n      return 1;\n    }\n  }) !== 1;\n}); // `Date.prototype.toJSON` method\n// https://tc39.github.io/ecma262/#sec-date.prototype.tojson\n\n$({\n  target: \'Date\',\n  proto: true,\n  forced: FORCED\n}, {\n  // eslint-disable-next-line no-unused-vars\n  toJSON: function toJSON(key) {\n    var O = toObject(this);\n    var pv = toPrimitive(O);\n    return typeof pv == \'number\' && !isFinite(pv) ? null : O.toISOString();\n  }\n});\n\n//# sourceURL=webpack:///./node_modules/core-js/modules/es.date.to-json.js?')},"./node_modules/core-js/modules/es.function.name.js":function(module,exports,__webpack_require__){eval("var DESCRIPTORS = __webpack_require__(/*! ../internals/descriptors */ \"./node_modules/core-js/internals/descriptors.js\");\n\nvar defineProperty = __webpack_require__(/*! ../internals/object-define-property */ \"./node_modules/core-js/internals/object-define-property.js\").f;\n\nvar FunctionPrototype = Function.prototype;\nvar FunctionPrototypeToString = FunctionPrototype.toString;\nvar nameRE = /^\\s*function ([^ (]*)/;\nvar NAME = 'name'; // Function instances `.name` property\n// https://tc39.github.io/ecma262/#sec-function-instances-name\n\nif (DESCRIPTORS && !(NAME in FunctionPrototype)) {\n  defineProperty(FunctionPrototype, NAME, {\n    configurable: true,\n    get: function () {\n      try {\n        return FunctionPrototypeToString.call(this).match(nameRE)[1];\n      } catch (error) {\n        return '';\n      }\n    }\n  });\n}\n\n//# sourceURL=webpack:///./node_modules/core-js/modules/es.function.name.js?")},"./node_modules/core-js/modules/es.math.sign.js":function(module,exports,__webpack_require__){eval('var $ = __webpack_require__(/*! ../internals/export */ "./node_modules/core-js/internals/export.js");\n\nvar sign = __webpack_require__(/*! ../internals/math-sign */ "./node_modules/core-js/internals/math-sign.js"); // `Math.sign` method\n// https://tc39.github.io/ecma262/#sec-math.sign\n\n\n$({\n  target: \'Math\',\n  stat: true\n}, {\n  sign: sign\n});\n\n//# sourceURL=webpack:///./node_modules/core-js/modules/es.math.sign.js?')},"./node_modules/core-js/modules/es.number.constructor.js":function(module,exports,__webpack_require__){"use strict";eval('\n\nvar DESCRIPTORS = __webpack_require__(/*! ../internals/descriptors */ "./node_modules/core-js/internals/descriptors.js");\n\nvar global = __webpack_require__(/*! ../internals/global */ "./node_modules/core-js/internals/global.js");\n\nvar isForced = __webpack_require__(/*! ../internals/is-forced */ "./node_modules/core-js/internals/is-forced.js");\n\nvar redefine = __webpack_require__(/*! ../internals/redefine */ "./node_modules/core-js/internals/redefine.js");\n\nvar has = __webpack_require__(/*! ../internals/has */ "./node_modules/core-js/internals/has.js");\n\nvar classof = __webpack_require__(/*! ../internals/classof-raw */ "./node_modules/core-js/internals/classof-raw.js");\n\nvar inheritIfRequired = __webpack_require__(/*! ../internals/inherit-if-required */ "./node_modules/core-js/internals/inherit-if-required.js");\n\nvar toPrimitive = __webpack_require__(/*! ../internals/to-primitive */ "./node_modules/core-js/internals/to-primitive.js");\n\nvar fails = __webpack_require__(/*! ../internals/fails */ "./node_modules/core-js/internals/fails.js");\n\nvar create = __webpack_require__(/*! ../internals/object-create */ "./node_modules/core-js/internals/object-create.js");\n\nvar getOwnPropertyNames = __webpack_require__(/*! ../internals/object-get-own-property-names */ "./node_modules/core-js/internals/object-get-own-property-names.js").f;\n\nvar getOwnPropertyDescriptor = __webpack_require__(/*! ../internals/object-get-own-property-descriptor */ "./node_modules/core-js/internals/object-get-own-property-descriptor.js").f;\n\nvar defineProperty = __webpack_require__(/*! ../internals/object-define-property */ "./node_modules/core-js/internals/object-define-property.js").f;\n\nvar trim = __webpack_require__(/*! ../internals/string-trim */ "./node_modules/core-js/internals/string-trim.js").trim;\n\nvar NUMBER = \'Number\';\nvar NativeNumber = global[NUMBER];\nvar NumberPrototype = NativeNumber.prototype; // Opera ~12 has broken Object#toString\n\nvar BROKEN_CLASSOF = classof(create(NumberPrototype)) == NUMBER; // `ToNumber` abstract operation\n// https://tc39.github.io/ecma262/#sec-tonumber\n\nvar toNumber = function (argument) {\n  var it = toPrimitive(argument, false);\n  var first, third, radix, maxCode, digits, length, index, code;\n\n  if (typeof it == \'string\' && it.length > 2) {\n    it = trim(it);\n    first = it.charCodeAt(0);\n\n    if (first === 43 || first === 45) {\n      third = it.charCodeAt(2);\n      if (third === 88 || third === 120) return NaN; // Number(\'+0x1\') should be NaN, old V8 fix\n    } else if (first === 48) {\n      switch (it.charCodeAt(1)) {\n        case 66:\n        case 98:\n          radix = 2;\n          maxCode = 49;\n          break;\n        // fast equal of /^0b[01]+$/i\n\n        case 79:\n        case 111:\n          radix = 8;\n          maxCode = 55;\n          break;\n        // fast equal of /^0o[0-7]+$/i\n\n        default:\n          return +it;\n      }\n\n      digits = it.slice(2);\n      length = digits.length;\n\n      for (index = 0; index < length; index++) {\n        code = digits.charCodeAt(index); // parseInt parses a string to a first unavailable symbol\n        // but ToNumber should return NaN if a string contains unavailable symbols\n\n        if (code < 48 || code > maxCode) return NaN;\n      }\n\n      return parseInt(digits, radix);\n    }\n  }\n\n  return +it;\n}; // `Number` constructor\n// https://tc39.github.io/ecma262/#sec-number-constructor\n\n\nif (isForced(NUMBER, !NativeNumber(\' 0o1\') || !NativeNumber(\'0b1\') || NativeNumber(\'+0x1\'))) {\n  var NumberWrapper = function Number(value) {\n    var it = arguments.length < 1 ? 0 : value;\n    var dummy = this;\n    return dummy instanceof NumberWrapper // check on 1..constructor(foo) case\n    && (BROKEN_CLASSOF ? fails(function () {\n      NumberPrototype.valueOf.call(dummy);\n    }) : classof(dummy) != NUMBER) ? inheritIfRequired(new NativeNumber(toNumber(it)), dummy, NumberWrapper) : toNumber(it);\n  };\n\n  for (var keys = DESCRIPTORS ? getOwnPropertyNames(NativeNumber) : ( // ES3:\n  \'MAX_VALUE,MIN_VALUE,NaN,NEGATIVE_INFINITY,POSITIVE_INFINITY,\' + // ES2015 (in case, if modules with ES2015 Number statics required before):\n  \'EPSILON,isFinite,isInteger,isNaN,isSafeInteger,MAX_SAFE_INTEGER,\' + \'MIN_SAFE_INTEGER,parseFloat,parseInt,isInteger\').split(\',\'), j = 0, key; keys.length > j; j++) {\n    if (has(NativeNumber, key = keys[j]) && !has(NumberWrapper, key)) {\n      defineProperty(NumberWrapper, key, getOwnPropertyDescriptor(NativeNumber, key));\n    }\n  }\n\n  NumberWrapper.prototype = NumberPrototype;\n  NumberPrototype.constructor = NumberWrapper;\n  redefine(global, NUMBER, NumberWrapper);\n}\n\n//# sourceURL=webpack:///./node_modules/core-js/modules/es.number.constructor.js?')},"./node_modules/core-js/modules/es.object.assign.js":function(module,exports,__webpack_require__){eval('var $ = __webpack_require__(/*! ../internals/export */ "./node_modules/core-js/internals/export.js");\n\nvar assign = __webpack_require__(/*! ../internals/object-assign */ "./node_modules/core-js/internals/object-assign.js"); // `Object.assign` method\n// https://tc39.github.io/ecma262/#sec-object.assign\n\n\n$({\n  target: \'Object\',\n  stat: true,\n  forced: Object.assign !== assign\n}, {\n  assign: assign\n});\n\n//# sourceURL=webpack:///./node_modules/core-js/modules/es.object.assign.js?')},"./node_modules/core-js/modules/es.object.get-own-property-descriptor.js":function(module,exports,__webpack_require__){eval('var $ = __webpack_require__(/*! ../internals/export */ "./node_modules/core-js/internals/export.js");\n\nvar fails = __webpack_require__(/*! ../internals/fails */ "./node_modules/core-js/internals/fails.js");\n\nvar toIndexedObject = __webpack_require__(/*! ../internals/to-indexed-object */ "./node_modules/core-js/internals/to-indexed-object.js");\n\nvar nativeGetOwnPropertyDescriptor = __webpack_require__(/*! ../internals/object-get-own-property-descriptor */ "./node_modules/core-js/internals/object-get-own-property-descriptor.js").f;\n\nvar DESCRIPTORS = __webpack_require__(/*! ../internals/descriptors */ "./node_modules/core-js/internals/descriptors.js");\n\nvar FAILS_ON_PRIMITIVES = fails(function () {\n  nativeGetOwnPropertyDescriptor(1);\n});\nvar FORCED = !DESCRIPTORS || FAILS_ON_PRIMITIVES; // `Object.getOwnPropertyDescriptor` method\n// https://tc39.github.io/ecma262/#sec-object.getownpropertydescriptor\n\n$({\n  target: \'Object\',\n  stat: true,\n  forced: FORCED,\n  sham: !DESCRIPTORS\n}, {\n  getOwnPropertyDescriptor: function getOwnPropertyDescriptor(it, key) {\n    return nativeGetOwnPropertyDescriptor(toIndexedObject(it), key);\n  }\n});\n\n//# sourceURL=webpack:///./node_modules/core-js/modules/es.object.get-own-property-descriptor.js?')},"./node_modules/core-js/modules/es.object.keys.js":function(module,exports,__webpack_require__){eval('var $ = __webpack_require__(/*! ../internals/export */ "./node_modules/core-js/internals/export.js");\n\nvar toObject = __webpack_require__(/*! ../internals/to-object */ "./node_modules/core-js/internals/to-object.js");\n\nvar nativeKeys = __webpack_require__(/*! ../internals/object-keys */ "./node_modules/core-js/internals/object-keys.js");\n\nvar fails = __webpack_require__(/*! ../internals/fails */ "./node_modules/core-js/internals/fails.js");\n\nvar FAILS_ON_PRIMITIVES = fails(function () {\n  nativeKeys(1);\n}); // `Object.keys` method\n// https://tc39.github.io/ecma262/#sec-object.keys\n\n$({\n  target: \'Object\',\n  stat: true,\n  forced: FAILS_ON_PRIMITIVES\n}, {\n  keys: function keys(it) {\n    return nativeKeys(toObject(it));\n  }\n});\n\n//# sourceURL=webpack:///./node_modules/core-js/modules/es.object.keys.js?')},"./node_modules/core-js/modules/es.object.to-string.js":function(module,exports,__webpack_require__){eval('var TO_STRING_TAG_SUPPORT = __webpack_require__(/*! ../internals/to-string-tag-support */ "./node_modules/core-js/internals/to-string-tag-support.js");\n\nvar redefine = __webpack_require__(/*! ../internals/redefine */ "./node_modules/core-js/internals/redefine.js");\n\nvar toString = __webpack_require__(/*! ../internals/object-to-string */ "./node_modules/core-js/internals/object-to-string.js"); // `Object.prototype.toString` method\n// https://tc39.github.io/ecma262/#sec-object.prototype.tostring\n\n\nif (!TO_STRING_TAG_SUPPORT) {\n  redefine(Object.prototype, \'toString\', toString, {\n    unsafe: true\n  });\n}\n\n//# sourceURL=webpack:///./node_modules/core-js/modules/es.object.to-string.js?')},"./node_modules/core-js/modules/es.regexp.constructor.js":function(module,exports,__webpack_require__){eval('var DESCRIPTORS = __webpack_require__(/*! ../internals/descriptors */ "./node_modules/core-js/internals/descriptors.js");\n\nvar global = __webpack_require__(/*! ../internals/global */ "./node_modules/core-js/internals/global.js");\n\nvar isForced = __webpack_require__(/*! ../internals/is-forced */ "./node_modules/core-js/internals/is-forced.js");\n\nvar inheritIfRequired = __webpack_require__(/*! ../internals/inherit-if-required */ "./node_modules/core-js/internals/inherit-if-required.js");\n\nvar defineProperty = __webpack_require__(/*! ../internals/object-define-property */ "./node_modules/core-js/internals/object-define-property.js").f;\n\nvar getOwnPropertyNames = __webpack_require__(/*! ../internals/object-get-own-property-names */ "./node_modules/core-js/internals/object-get-own-property-names.js").f;\n\nvar isRegExp = __webpack_require__(/*! ../internals/is-regexp */ "./node_modules/core-js/internals/is-regexp.js");\n\nvar getFlags = __webpack_require__(/*! ../internals/regexp-flags */ "./node_modules/core-js/internals/regexp-flags.js");\n\nvar stickyHelpers = __webpack_require__(/*! ../internals/regexp-sticky-helpers */ "./node_modules/core-js/internals/regexp-sticky-helpers.js");\n\nvar redefine = __webpack_require__(/*! ../internals/redefine */ "./node_modules/core-js/internals/redefine.js");\n\nvar fails = __webpack_require__(/*! ../internals/fails */ "./node_modules/core-js/internals/fails.js");\n\nvar setInternalState = __webpack_require__(/*! ../internals/internal-state */ "./node_modules/core-js/internals/internal-state.js").set;\n\nvar setSpecies = __webpack_require__(/*! ../internals/set-species */ "./node_modules/core-js/internals/set-species.js");\n\nvar wellKnownSymbol = __webpack_require__(/*! ../internals/well-known-symbol */ "./node_modules/core-js/internals/well-known-symbol.js");\n\nvar MATCH = wellKnownSymbol(\'match\');\nvar NativeRegExp = global.RegExp;\nvar RegExpPrototype = NativeRegExp.prototype;\nvar re1 = /a/g;\nvar re2 = /a/g; // "new" should create a new object, old webkit bug\n\nvar CORRECT_NEW = new NativeRegExp(re1) !== re1;\nvar UNSUPPORTED_Y = stickyHelpers.UNSUPPORTED_Y;\nvar FORCED = DESCRIPTORS && isForced(\'RegExp\', !CORRECT_NEW || UNSUPPORTED_Y || fails(function () {\n  re2[MATCH] = false; // RegExp constructor can alter flags and IsRegExp works correct with @@match\n\n  return NativeRegExp(re1) != re1 || NativeRegExp(re2) == re2 || NativeRegExp(re1, \'i\') != \'/a/i\';\n})); // `RegExp` constructor\n// https://tc39.github.io/ecma262/#sec-regexp-constructor\n\nif (FORCED) {\n  var RegExpWrapper = function RegExp(pattern, flags) {\n    var thisIsRegExp = this instanceof RegExpWrapper;\n    var patternIsRegExp = isRegExp(pattern);\n    var flagsAreUndefined = flags === undefined;\n    var sticky;\n\n    if (!thisIsRegExp && patternIsRegExp && pattern.constructor === RegExpWrapper && flagsAreUndefined) {\n      return pattern;\n    }\n\n    if (CORRECT_NEW) {\n      if (patternIsRegExp && !flagsAreUndefined) pattern = pattern.source;\n    } else if (pattern instanceof RegExpWrapper) {\n      if (flagsAreUndefined) flags = getFlags.call(pattern);\n      pattern = pattern.source;\n    }\n\n    if (UNSUPPORTED_Y) {\n      sticky = !!flags && flags.indexOf(\'y\') > -1;\n      if (sticky) flags = flags.replace(/y/g, \'\');\n    }\n\n    var result = inheritIfRequired(CORRECT_NEW ? new NativeRegExp(pattern, flags) : NativeRegExp(pattern, flags), thisIsRegExp ? this : RegExpPrototype, RegExpWrapper);\n    if (UNSUPPORTED_Y && sticky) setInternalState(result, {\n      sticky: sticky\n    });\n    return result;\n  };\n\n  var proxy = function (key) {\n    key in RegExpWrapper || defineProperty(RegExpWrapper, key, {\n      configurable: true,\n      get: function () {\n        return NativeRegExp[key];\n      },\n      set: function (it) {\n        NativeRegExp[key] = it;\n      }\n    });\n  };\n\n  var keys = getOwnPropertyNames(NativeRegExp);\n  var index = 0;\n\n  while (keys.length > index) proxy(keys[index++]);\n\n  RegExpPrototype.constructor = RegExpWrapper;\n  RegExpWrapper.prototype = RegExpPrototype;\n  redefine(global, \'RegExp\', RegExpWrapper);\n} // https://tc39.github.io/ecma262/#sec-get-regexp-@@species\n\n\nsetSpecies(\'RegExp\');\n\n//# sourceURL=webpack:///./node_modules/core-js/modules/es.regexp.constructor.js?')},"./node_modules/core-js/modules/es.regexp.exec.js":function(module,exports,__webpack_require__){"use strict";eval('\n\nvar $ = __webpack_require__(/*! ../internals/export */ "./node_modules/core-js/internals/export.js");\n\nvar exec = __webpack_require__(/*! ../internals/regexp-exec */ "./node_modules/core-js/internals/regexp-exec.js");\n\n$({\n  target: \'RegExp\',\n  proto: true,\n  forced: /./.exec !== exec\n}, {\n  exec: exec\n});\n\n//# sourceURL=webpack:///./node_modules/core-js/modules/es.regexp.exec.js?')},"./node_modules/core-js/modules/es.regexp.to-string.js":function(module,exports,__webpack_require__){"use strict";eval("\n\nvar redefine = __webpack_require__(/*! ../internals/redefine */ \"./node_modules/core-js/internals/redefine.js\");\n\nvar anObject = __webpack_require__(/*! ../internals/an-object */ \"./node_modules/core-js/internals/an-object.js\");\n\nvar fails = __webpack_require__(/*! ../internals/fails */ \"./node_modules/core-js/internals/fails.js\");\n\nvar flags = __webpack_require__(/*! ../internals/regexp-flags */ \"./node_modules/core-js/internals/regexp-flags.js\");\n\nvar TO_STRING = 'toString';\nvar RegExpPrototype = RegExp.prototype;\nvar nativeToString = RegExpPrototype[TO_STRING];\nvar NOT_GENERIC = fails(function () {\n  return nativeToString.call({\n    source: 'a',\n    flags: 'b'\n  }) != '/a/b';\n}); // FF44- RegExp#toString has a wrong name\n\nvar INCORRECT_NAME = nativeToString.name != TO_STRING; // `RegExp.prototype.toString` method\n// https://tc39.github.io/ecma262/#sec-regexp.prototype.tostring\n\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  }, {\n    unsafe: true\n  });\n}\n\n//# sourceURL=webpack:///./node_modules/core-js/modules/es.regexp.to-string.js?")},"./node_modules/core-js/modules/es.string.includes.js":function(module,exports,__webpack_require__){"use strict";eval('\n\nvar $ = __webpack_require__(/*! ../internals/export */ "./node_modules/core-js/internals/export.js");\n\nvar notARegExp = __webpack_require__(/*! ../internals/not-a-regexp */ "./node_modules/core-js/internals/not-a-regexp.js");\n\nvar requireObjectCoercible = __webpack_require__(/*! ../internals/require-object-coercible */ "./node_modules/core-js/internals/require-object-coercible.js");\n\nvar correctIsRegExpLogic = __webpack_require__(/*! ../internals/correct-is-regexp-logic */ "./node_modules/core-js/internals/correct-is-regexp-logic.js"); // `String.prototype.includes` method\n// https://tc39.github.io/ecma262/#sec-string.prototype.includes\n\n\n$({\n  target: \'String\',\n  proto: true,\n  forced: !correctIsRegExpLogic(\'includes\')\n}, {\n  includes: function includes(searchString\n  /* , position = 0 */\n  ) {\n    return !!~String(requireObjectCoercible(this)).indexOf(notARegExp(searchString), arguments.length > 1 ? arguments[1] : undefined);\n  }\n});\n\n//# sourceURL=webpack:///./node_modules/core-js/modules/es.string.includes.js?')},"./node_modules/core-js/modules/es.string.iterator.js":function(module,exports,__webpack_require__){"use strict";eval('\n\nvar charAt = __webpack_require__(/*! ../internals/string-multibyte */ "./node_modules/core-js/internals/string-multibyte.js").charAt;\n\nvar InternalStateModule = __webpack_require__(/*! ../internals/internal-state */ "./node_modules/core-js/internals/internal-state.js");\n\nvar defineIterator = __webpack_require__(/*! ../internals/define-iterator */ "./node_modules/core-js/internals/define-iterator.js");\n\nvar STRING_ITERATOR = \'String Iterator\';\nvar setInternalState = InternalStateModule.set;\nvar getInternalState = InternalStateModule.getterFor(STRING_ITERATOR); // `String.prototype[@@iterator]` method\n// https://tc39.github.io/ecma262/#sec-string.prototype-@@iterator\n\ndefineIterator(String, \'String\', function (iterated) {\n  setInternalState(this, {\n    type: STRING_ITERATOR,\n    string: String(iterated),\n    index: 0\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 {\n    value: undefined,\n    done: true\n  };\n  point = charAt(string, index);\n  state.index += point.length;\n  return {\n    value: point,\n    done: false\n  };\n});\n\n//# sourceURL=webpack:///./node_modules/core-js/modules/es.string.iterator.js?')},"./node_modules/core-js/modules/es.string.match.js":function(module,exports,__webpack_require__){"use strict";eval('\n\nvar fixRegExpWellKnownSymbolLogic = __webpack_require__(/*! ../internals/fix-regexp-well-known-symbol-logic */ "./node_modules/core-js/internals/fix-regexp-well-known-symbol-logic.js");\n\nvar anObject = __webpack_require__(/*! ../internals/an-object */ "./node_modules/core-js/internals/an-object.js");\n\nvar toLength = __webpack_require__(/*! ../internals/to-length */ "./node_modules/core-js/internals/to-length.js");\n\nvar requireObjectCoercible = __webpack_require__(/*! ../internals/require-object-coercible */ "./node_modules/core-js/internals/require-object-coercible.js");\n\nvar advanceStringIndex = __webpack_require__(/*! ../internals/advance-string-index */ "./node_modules/core-js/internals/advance-string-index.js");\n\nvar regExpExec = __webpack_require__(/*! ../internals/regexp-exec-abstract */ "./node_modules/core-js/internals/regexp-exec-abstract.js"); // @@match logic\n\n\nfixRegExpWellKnownSymbolLogic(\'match\', 1, function (MATCH, nativeMatch, maybeCallNative) {\n  return [// `String.prototype.match` method\n  // https://tc39.github.io/ecma262/#sec-string.prototype.match\n  function match(regexp) {\n    var O = requireObjectCoercible(this);\n    var matcher = regexp == undefined ? undefined : regexp[MATCH];\n    return matcher !== undefined ? matcher.call(regexp, O) : new RegExp(regexp)[MATCH](String(O));\n  }, // `RegExp.prototype[@@match]` method\n  // https://tc39.github.io/ecma262/#sec-regexp.prototype-@@match\n  function (regexp) {\n    var res = maybeCallNative(nativeMatch, regexp, this);\n    if (res.done) return res.value;\n    var rx = anObject(regexp);\n    var S = String(this);\n    if (!rx.global) return regExpExec(rx, S);\n    var fullUnicode = rx.unicode;\n    rx.lastIndex = 0;\n    var A = [];\n    var n = 0;\n    var result;\n\n    while ((result = regExpExec(rx, S)) !== null) {\n      var matchStr = String(result[0]);\n      A[n] = matchStr;\n      if (matchStr === \'\') rx.lastIndex = advanceStringIndex(S, toLength(rx.lastIndex), fullUnicode);\n      n++;\n    }\n\n    return n === 0 ? null : A;\n  }];\n});\n\n//# sourceURL=webpack:///./node_modules/core-js/modules/es.string.match.js?')},"./node_modules/core-js/modules/es.string.replace.js":function(module,exports,__webpack_require__){"use strict";eval("\n\nvar fixRegExpWellKnownSymbolLogic = __webpack_require__(/*! ../internals/fix-regexp-well-known-symbol-logic */ \"./node_modules/core-js/internals/fix-regexp-well-known-symbol-logic.js\");\n\nvar anObject = __webpack_require__(/*! ../internals/an-object */ \"./node_modules/core-js/internals/an-object.js\");\n\nvar toObject = __webpack_require__(/*! ../internals/to-object */ \"./node_modules/core-js/internals/to-object.js\");\n\nvar toLength = __webpack_require__(/*! ../internals/to-length */ \"./node_modules/core-js/internals/to-length.js\");\n\nvar toInteger = __webpack_require__(/*! ../internals/to-integer */ \"./node_modules/core-js/internals/to-integer.js\");\n\nvar requireObjectCoercible = __webpack_require__(/*! ../internals/require-object-coercible */ \"./node_modules/core-js/internals/require-object-coercible.js\");\n\nvar advanceStringIndex = __webpack_require__(/*! ../internals/advance-string-index */ \"./node_modules/core-js/internals/advance-string-index.js\");\n\nvar regExpExec = __webpack_require__(/*! ../internals/regexp-exec-abstract */ \"./node_modules/core-js/internals/regexp-exec-abstract.js\");\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}; // @@replace logic\n\n\nfixRegExpWellKnownSymbolLogic('replace', 2, function (REPLACE, nativeReplace, maybeCallNative, reason) {\n  var REGEXP_REPLACE_SUBSTITUTES_UNDEFINED_CAPTURE = reason.REGEXP_REPLACE_SUBSTITUTES_UNDEFINED_CAPTURE;\n  var REPLACE_KEEPS_$0 = reason.REPLACE_KEEPS_$0;\n  var UNSAFE_SUBSTITUTE = REGEXP_REPLACE_SUBSTITUTES_UNDEFINED_CAPTURE ? '$' : '$0';\n  return [// `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 ? replacer.call(searchValue, O, replaceValue) : nativeReplace.call(String(O), searchValue, replaceValue);\n  }, // `RegExp.prototype[@@replace]` method\n  // https://tc39.github.io/ecma262/#sec-regexp.prototype-@@replace\n  function (regexp, replaceValue) {\n    if (!REGEXP_REPLACE_SUBSTITUTES_UNDEFINED_CAPTURE && REPLACE_KEEPS_$0 || typeof replaceValue === 'string' && replaceValue.indexOf(UNSAFE_SUBSTITUTE) === -1) {\n      var res = maybeCallNative(nativeReplace, regexp, this, replaceValue);\n      if (res.done) return res.value;\n    }\n\n    var rx = anObject(regexp);\n    var S = String(this);\n    var functionalReplace = typeof replaceValue === 'function';\n    if (!functionalReplace) replaceValue = String(replaceValue);\n    var global = rx.global;\n\n    if (global) {\n      var fullUnicode = rx.unicode;\n      rx.lastIndex = 0;\n    }\n\n    var results = [];\n\n    while (true) {\n      var result = regExpExec(rx, S);\n      if (result === null) break;\n      results.push(result);\n      if (!global) break;\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\n    for (var i = 0; i < results.length; i++) {\n      result = results[i];\n      var matched = String(result[0]);\n      var position = max(min(toInteger(result.index), S.length), 0);\n      var captures = []; // 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\n      for (var j = 1; j < result.length; j++) captures.push(maybeToString(result[j]));\n\n      var namedCaptures = result.groups;\n\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\n      if (position >= nextSourcePosition) {\n        accumulatedResult += S.slice(nextSourcePosition, position) + replacement;\n        nextSourcePosition = position + matched.length;\n      }\n    }\n\n    return accumulatedResult + S.slice(nextSourcePosition);\n  }]; // https://tc39.github.io/ecma262/#sec-getsubstitution\n\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\n    if (namedCaptures !== undefined) {\n      namedCaptures = toObject(namedCaptures);\n      symbols = SUBSTITUTION_SYMBOLS;\n    }\n\n    return nativeReplace.call(replacement, symbols, function (match, ch) {\n      var capture;\n\n      switch (ch.charAt(0)) {\n        case '$':\n          return '$';\n\n        case '&':\n          return matched;\n\n        case '`':\n          return str.slice(0, position);\n\n        case \"'\":\n          return str.slice(tailPos);\n\n        case '<':\n          capture = namedCaptures[ch.slice(1, -1)];\n          break;\n\n        default:\n          // \\d\\d?\n          var n = +ch;\n          if (n === 0) return match;\n\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\n          capture = captures[n - 1];\n      }\n\n      return capture === undefined ? '' : capture;\n    });\n  }\n});\n\n//# sourceURL=webpack:///./node_modules/core-js/modules/es.string.replace.js?")},"./node_modules/core-js/modules/es.string.search.js":function(module,exports,__webpack_require__){"use strict";eval('\n\nvar fixRegExpWellKnownSymbolLogic = __webpack_require__(/*! ../internals/fix-regexp-well-known-symbol-logic */ "./node_modules/core-js/internals/fix-regexp-well-known-symbol-logic.js");\n\nvar anObject = __webpack_require__(/*! ../internals/an-object */ "./node_modules/core-js/internals/an-object.js");\n\nvar requireObjectCoercible = __webpack_require__(/*! ../internals/require-object-coercible */ "./node_modules/core-js/internals/require-object-coercible.js");\n\nvar sameValue = __webpack_require__(/*! ../internals/same-value */ "./node_modules/core-js/internals/same-value.js");\n\nvar regExpExec = __webpack_require__(/*! ../internals/regexp-exec-abstract */ "./node_modules/core-js/internals/regexp-exec-abstract.js"); // @@search logic\n\n\nfixRegExpWellKnownSymbolLogic(\'search\', 1, function (SEARCH, nativeSearch, maybeCallNative) {\n  return [// `String.prototype.search` method\n  // https://tc39.github.io/ecma262/#sec-string.prototype.search\n  function search(regexp) {\n    var O = requireObjectCoercible(this);\n    var searcher = regexp == undefined ? undefined : regexp[SEARCH];\n    return searcher !== undefined ? searcher.call(regexp, O) : new RegExp(regexp)[SEARCH](String(O));\n  }, // `RegExp.prototype[@@search]` method\n  // https://tc39.github.io/ecma262/#sec-regexp.prototype-@@search\n  function (regexp) {\n    var res = maybeCallNative(nativeSearch, regexp, this);\n    if (res.done) return res.value;\n    var rx = anObject(regexp);\n    var S = String(this);\n    var previousLastIndex = rx.lastIndex;\n    if (!sameValue(previousLastIndex, 0)) rx.lastIndex = 0;\n    var result = regExpExec(rx, S);\n    if (!sameValue(rx.lastIndex, previousLastIndex)) rx.lastIndex = previousLastIndex;\n    return result === null ? -1 : result.index;\n  }];\n});\n\n//# sourceURL=webpack:///./node_modules/core-js/modules/es.string.search.js?')},"./node_modules/core-js/modules/es.string.split.js":function(module,exports,__webpack_require__){"use strict";eval("\n\nvar fixRegExpWellKnownSymbolLogic = __webpack_require__(/*! ../internals/fix-regexp-well-known-symbol-logic */ \"./node_modules/core-js/internals/fix-regexp-well-known-symbol-logic.js\");\n\nvar isRegExp = __webpack_require__(/*! ../internals/is-regexp */ \"./node_modules/core-js/internals/is-regexp.js\");\n\nvar anObject = __webpack_require__(/*! ../internals/an-object */ \"./node_modules/core-js/internals/an-object.js\");\n\nvar requireObjectCoercible = __webpack_require__(/*! ../internals/require-object-coercible */ \"./node_modules/core-js/internals/require-object-coercible.js\");\n\nvar speciesConstructor = __webpack_require__(/*! ../internals/species-constructor */ \"./node_modules/core-js/internals/species-constructor.js\");\n\nvar advanceStringIndex = __webpack_require__(/*! ../internals/advance-string-index */ \"./node_modules/core-js/internals/advance-string-index.js\");\n\nvar toLength = __webpack_require__(/*! ../internals/to-length */ \"./node_modules/core-js/internals/to-length.js\");\n\nvar callRegExpExec = __webpack_require__(/*! ../internals/regexp-exec-abstract */ \"./node_modules/core-js/internals/regexp-exec-abstract.js\");\n\nvar regexpExec = __webpack_require__(/*! ../internals/regexp-exec */ \"./node_modules/core-js/internals/regexp-exec.js\");\n\nvar fails = __webpack_require__(/*! ../internals/fails */ \"./node_modules/core-js/internals/fails.js\");\n\nvar arrayPush = [].push;\nvar min = Math.min;\nvar MAX_UINT32 = 0xFFFFFFFF; // babel-minify transpiles RegExp('x', 'y') -> /x/y and it causes SyntaxError\n\nvar SUPPORTS_Y = !fails(function () {\n  return !RegExp(MAX_UINT32, 'y');\n}); // @@split logic\n\nfixRegExpWellKnownSymbolLogic('split', 2, function (SPLIT, nativeSplit, maybeCallNative) {\n  var internalSplit;\n\n  if ('abbc'.split(/(b)*/)[1] == 'c' || 'test'.split(/(?:)/, -1).length != 4 || 'ab'.split(/(?:ab)*/).length != 2 || '.'.split(/(.?)(.?)/).length != 4 || '.'.split(/()()/).length > 1 || ''.split(/.?/).length) {\n    // based on es5-shim implementation, need to rework it\n    internalSplit = function (separator, limit) {\n      var string = String(requireObjectCoercible(this));\n      var lim = limit === undefined ? MAX_UINT32 : limit >>> 0;\n      if (lim === 0) return [];\n      if (separator === undefined) return [string]; // If `separator` is not a regex, use native split\n\n      if (!isRegExp(separator)) {\n        return nativeSplit.call(string, separator, lim);\n      }\n\n      var output = [];\n      var flags = (separator.ignoreCase ? 'i' : '') + (separator.multiline ? 'm' : '') + (separator.unicode ? 'u' : '') + (separator.sticky ? 'y' : '');\n      var lastLastIndex = 0; // Make `global` and avoid `lastIndex` issues by working with a copy\n\n      var separatorCopy = new RegExp(separator.source, flags + 'g');\n      var match, lastIndex, lastLength;\n\n      while (match = regexpExec.call(separatorCopy, string)) {\n        lastIndex = separatorCopy.lastIndex;\n\n        if (lastIndex > lastLastIndex) {\n          output.push(string.slice(lastLastIndex, match.index));\n          if (match.length > 1 && match.index < string.length) arrayPush.apply(output, match.slice(1));\n          lastLength = match[0].length;\n          lastLastIndex = lastIndex;\n          if (output.length >= lim) break;\n        }\n\n        if (separatorCopy.lastIndex === match.index) separatorCopy.lastIndex++; // Avoid an infinite loop\n      }\n\n      if (lastLastIndex === string.length) {\n        if (lastLength || !separatorCopy.test('')) output.push('');\n      } else output.push(string.slice(lastLastIndex));\n\n      return output.length > lim ? output.slice(0, lim) : output;\n    }; // Chakra, V8\n\n  } else if ('0'.split(undefined, 0).length) {\n    internalSplit = function (separator, limit) {\n      return separator === undefined && limit === 0 ? [] : nativeSplit.call(this, separator, limit);\n    };\n  } else internalSplit = nativeSplit;\n\n  return [// `String.prototype.split` method\n  // https://tc39.github.io/ecma262/#sec-string.prototype.split\n  function split(separator, limit) {\n    var O = requireObjectCoercible(this);\n    var splitter = separator == undefined ? undefined : separator[SPLIT];\n    return splitter !== undefined ? splitter.call(separator, O, limit) : internalSplit.call(String(O), separator, limit);\n  }, // `RegExp.prototype[@@split]` method\n  // https://tc39.github.io/ecma262/#sec-regexp.prototype-@@split\n  //\n  // NOTE: This cannot be properly polyfilled in engines that don't support\n  // the 'y' flag.\n  function (regexp, limit) {\n    var res = maybeCallNative(internalSplit, regexp, this, limit, internalSplit !== nativeSplit);\n    if (res.done) return res.value;\n    var rx = anObject(regexp);\n    var S = String(this);\n    var C = speciesConstructor(rx, RegExp);\n    var unicodeMatching = rx.unicode;\n    var flags = (rx.ignoreCase ? 'i' : '') + (rx.multiline ? 'm' : '') + (rx.unicode ? 'u' : '') + (SUPPORTS_Y ? 'y' : 'g'); // ^(? + rx + ) is needed, in combination with some S slicing, to\n    // simulate the 'y' flag.\n\n    var splitter = new C(SUPPORTS_Y ? rx : '^(?:' + rx.source + ')', flags);\n    var lim = limit === undefined ? MAX_UINT32 : limit >>> 0;\n    if (lim === 0) return [];\n    if (S.length === 0) return callRegExpExec(splitter, S) === null ? [S] : [];\n    var p = 0;\n    var q = 0;\n    var A = [];\n\n    while (q < S.length) {\n      splitter.lastIndex = SUPPORTS_Y ? q : 0;\n      var z = callRegExpExec(splitter, SUPPORTS_Y ? S : S.slice(q));\n      var e;\n\n      if (z === null || (e = min(toLength(splitter.lastIndex + (SUPPORTS_Y ? 0 : q)), S.length)) === p) {\n        q = advanceStringIndex(S, q, unicodeMatching);\n      } else {\n        A.push(S.slice(p, q));\n        if (A.length === lim) return A;\n\n        for (var i = 1; i <= z.length - 1; i++) {\n          A.push(z[i]);\n          if (A.length === lim) return A;\n        }\n\n        q = p = e;\n      }\n    }\n\n    A.push(S.slice(p));\n    return A;\n  }];\n}, !SUPPORTS_Y);\n\n//# sourceURL=webpack:///./node_modules/core-js/modules/es.string.split.js?")},"./node_modules/core-js/modules/es.string.trim.js":function(module,exports,__webpack_require__){"use strict";eval('\n\nvar $ = __webpack_require__(/*! ../internals/export */ "./node_modules/core-js/internals/export.js");\n\nvar $trim = __webpack_require__(/*! ../internals/string-trim */ "./node_modules/core-js/internals/string-trim.js").trim;\n\nvar forcedStringTrimMethod = __webpack_require__(/*! ../internals/string-trim-forced */ "./node_modules/core-js/internals/string-trim-forced.js"); // `String.prototype.trim` method\n// https://tc39.github.io/ecma262/#sec-string.prototype.trim\n\n\n$({\n  target: \'String\',\n  proto: true,\n  forced: forcedStringTrimMethod(\'trim\')\n}, {\n  trim: function trim() {\n    return $trim(this);\n  }\n});\n\n//# sourceURL=webpack:///./node_modules/core-js/modules/es.string.trim.js?')},"./node_modules/core-js/modules/es.symbol.description.js":function(module,exports,__webpack_require__){"use strict";eval("// `Symbol.prototype.description` getter\n// https://tc39.github.io/ecma262/#sec-symbol.prototype.description\n\n\nvar $ = __webpack_require__(/*! ../internals/export */ \"./node_modules/core-js/internals/export.js\");\n\nvar DESCRIPTORS = __webpack_require__(/*! ../internals/descriptors */ \"./node_modules/core-js/internals/descriptors.js\");\n\nvar global = __webpack_require__(/*! ../internals/global */ \"./node_modules/core-js/internals/global.js\");\n\nvar has = __webpack_require__(/*! ../internals/has */ \"./node_modules/core-js/internals/has.js\");\n\nvar isObject = __webpack_require__(/*! ../internals/is-object */ \"./node_modules/core-js/internals/is-object.js\");\n\nvar defineProperty = __webpack_require__(/*! ../internals/object-define-property */ \"./node_modules/core-js/internals/object-define-property.js\").f;\n\nvar copyConstructorProperties = __webpack_require__(/*! ../internals/copy-constructor-properties */ \"./node_modules/core-js/internals/copy-constructor-properties.js\");\n\nvar NativeSymbol = global.Symbol;\n\nif (DESCRIPTORS && typeof NativeSymbol == 'function' && (!('description' in NativeSymbol.prototype) || // Safari 12 bug\nNativeSymbol().description !== undefined)) {\n  var EmptyStringDescriptionStore = {}; // wrap Symbol constructor for correct work with undefined description\n\n  var SymbolWrapper = function Symbol() {\n    var description = arguments.length < 1 || arguments[0] === undefined ? undefined : String(arguments[0]);\n    var result = this instanceof SymbolWrapper ? new NativeSymbol(description) // in Edge 13, String(Symbol(undefined)) === 'Symbol(undefined)'\n    : description === undefined ? NativeSymbol() : NativeSymbol(description);\n    if (description === '') EmptyStringDescriptionStore[result] = true;\n    return result;\n  };\n\n  copyConstructorProperties(SymbolWrapper, NativeSymbol);\n  var symbolPrototype = SymbolWrapper.prototype = NativeSymbol.prototype;\n  symbolPrototype.constructor = SymbolWrapper;\n  var symbolToString = symbolPrototype.toString;\n  var native = String(NativeSymbol('test')) == 'Symbol(test)';\n  var regexp = /^Symbol\\((.*)\\)[^)]+$/;\n  defineProperty(symbolPrototype, 'description', {\n    configurable: true,\n    get: function description() {\n      var symbol = isObject(this) ? this.valueOf() : this;\n      var string = symbolToString.call(symbol);\n      if (has(EmptyStringDescriptionStore, symbol)) return '';\n      var desc = native ? string.slice(7, -1) : string.replace(regexp, '$1');\n      return desc === '' ? undefined : desc;\n    }\n  });\n  $({\n    global: true,\n    forced: true\n  }, {\n    Symbol: SymbolWrapper\n  });\n}\n\n//# sourceURL=webpack:///./node_modules/core-js/modules/es.symbol.description.js?")},"./node_modules/core-js/modules/es.symbol.iterator.js":function(module,exports,__webpack_require__){eval("var defineWellKnownSymbol = __webpack_require__(/*! ../internals/define-well-known-symbol */ \"./node_modules/core-js/internals/define-well-known-symbol.js\"); // `Symbol.iterator` well-known symbol\n// https://tc39.github.io/ecma262/#sec-symbol.iterator\n\n\ndefineWellKnownSymbol('iterator');\n\n//# sourceURL=webpack:///./node_modules/core-js/modules/es.symbol.iterator.js?")},"./node_modules/core-js/modules/es.symbol.js":function(module,exports,__webpack_require__){"use strict";eval('\n\nvar $ = __webpack_require__(/*! ../internals/export */ "./node_modules/core-js/internals/export.js");\n\nvar global = __webpack_require__(/*! ../internals/global */ "./node_modules/core-js/internals/global.js");\n\nvar getBuiltIn = __webpack_require__(/*! ../internals/get-built-in */ "./node_modules/core-js/internals/get-built-in.js");\n\nvar IS_PURE = __webpack_require__(/*! ../internals/is-pure */ "./node_modules/core-js/internals/is-pure.js");\n\nvar DESCRIPTORS = __webpack_require__(/*! ../internals/descriptors */ "./node_modules/core-js/internals/descriptors.js");\n\nvar NATIVE_SYMBOL = __webpack_require__(/*! ../internals/native-symbol */ "./node_modules/core-js/internals/native-symbol.js");\n\nvar USE_SYMBOL_AS_UID = __webpack_require__(/*! ../internals/use-symbol-as-uid */ "./node_modules/core-js/internals/use-symbol-as-uid.js");\n\nvar fails = __webpack_require__(/*! ../internals/fails */ "./node_modules/core-js/internals/fails.js");\n\nvar has = __webpack_require__(/*! ../internals/has */ "./node_modules/core-js/internals/has.js");\n\nvar isArray = __webpack_require__(/*! ../internals/is-array */ "./node_modules/core-js/internals/is-array.js");\n\nvar isObject = __webpack_require__(/*! ../internals/is-object */ "./node_modules/core-js/internals/is-object.js");\n\nvar anObject = __webpack_require__(/*! ../internals/an-object */ "./node_modules/core-js/internals/an-object.js");\n\nvar toObject = __webpack_require__(/*! ../internals/to-object */ "./node_modules/core-js/internals/to-object.js");\n\nvar toIndexedObject = __webpack_require__(/*! ../internals/to-indexed-object */ "./node_modules/core-js/internals/to-indexed-object.js");\n\nvar toPrimitive = __webpack_require__(/*! ../internals/to-primitive */ "./node_modules/core-js/internals/to-primitive.js");\n\nvar createPropertyDescriptor = __webpack_require__(/*! ../internals/create-property-descriptor */ "./node_modules/core-js/internals/create-property-descriptor.js");\n\nvar nativeObjectCreate = __webpack_require__(/*! ../internals/object-create */ "./node_modules/core-js/internals/object-create.js");\n\nvar objectKeys = __webpack_require__(/*! ../internals/object-keys */ "./node_modules/core-js/internals/object-keys.js");\n\nvar getOwnPropertyNamesModule = __webpack_require__(/*! ../internals/object-get-own-property-names */ "./node_modules/core-js/internals/object-get-own-property-names.js");\n\nvar getOwnPropertyNamesExternal = __webpack_require__(/*! ../internals/object-get-own-property-names-external */ "./node_modules/core-js/internals/object-get-own-property-names-external.js");\n\nvar getOwnPropertySymbolsModule = __webpack_require__(/*! ../internals/object-get-own-property-symbols */ "./node_modules/core-js/internals/object-get-own-property-symbols.js");\n\nvar getOwnPropertyDescriptorModule = __webpack_require__(/*! ../internals/object-get-own-property-descriptor */ "./node_modules/core-js/internals/object-get-own-property-descriptor.js");\n\nvar definePropertyModule = __webpack_require__(/*! ../internals/object-define-property */ "./node_modules/core-js/internals/object-define-property.js");\n\nvar propertyIsEnumerableModule = __webpack_require__(/*! ../internals/object-property-is-enumerable */ "./node_modules/core-js/internals/object-property-is-enumerable.js");\n\nvar createNonEnumerableProperty = __webpack_require__(/*! ../internals/create-non-enumerable-property */ "./node_modules/core-js/internals/create-non-enumerable-property.js");\n\nvar redefine = __webpack_require__(/*! ../internals/redefine */ "./node_modules/core-js/internals/redefine.js");\n\nvar shared = __webpack_require__(/*! ../internals/shared */ "./node_modules/core-js/internals/shared.js");\n\nvar sharedKey = __webpack_require__(/*! ../internals/shared-key */ "./node_modules/core-js/internals/shared-key.js");\n\nvar hiddenKeys = __webpack_require__(/*! ../internals/hidden-keys */ "./node_modules/core-js/internals/hidden-keys.js");\n\nvar uid = __webpack_require__(/*! ../internals/uid */ "./node_modules/core-js/internals/uid.js");\n\nvar wellKnownSymbol = __webpack_require__(/*! ../internals/well-known-symbol */ "./node_modules/core-js/internals/well-known-symbol.js");\n\nvar wrappedWellKnownSymbolModule = __webpack_require__(/*! ../internals/well-known-symbol-wrapped */ "./node_modules/core-js/internals/well-known-symbol-wrapped.js");\n\nvar defineWellKnownSymbol = __webpack_require__(/*! ../internals/define-well-known-symbol */ "./node_modules/core-js/internals/define-well-known-symbol.js");\n\nvar setToStringTag = __webpack_require__(/*! ../internals/set-to-string-tag */ "./node_modules/core-js/internals/set-to-string-tag.js");\n\nvar InternalStateModule = __webpack_require__(/*! ../internals/internal-state */ "./node_modules/core-js/internals/internal-state.js");\n\nvar $forEach = __webpack_require__(/*! ../internals/array-iteration */ "./node_modules/core-js/internals/array-iteration.js").forEach;\n\nvar HIDDEN = sharedKey(\'hidden\');\nvar SYMBOL = \'Symbol\';\nvar PROTOTYPE = \'prototype\';\nvar TO_PRIMITIVE = wellKnownSymbol(\'toPrimitive\');\nvar setInternalState = InternalStateModule.set;\nvar getInternalState = InternalStateModule.getterFor(SYMBOL);\nvar ObjectPrototype = Object[PROTOTYPE];\nvar $Symbol = global.Symbol;\nvar $stringify = getBuiltIn(\'JSON\', \'stringify\');\nvar nativeGetOwnPropertyDescriptor = getOwnPropertyDescriptorModule.f;\nvar nativeDefineProperty = definePropertyModule.f;\nvar nativeGetOwnPropertyNames = getOwnPropertyNamesExternal.f;\nvar nativePropertyIsEnumerable = propertyIsEnumerableModule.f;\nvar AllSymbols = shared(\'symbols\');\nvar ObjectPrototypeSymbols = shared(\'op-symbols\');\nvar StringToSymbolRegistry = shared(\'string-to-symbol-registry\');\nvar SymbolToStringRegistry = shared(\'symbol-to-string-registry\');\nvar WellKnownSymbolsStore = shared(\'wks\');\nvar QObject = global.QObject; // Don\'t use setters in Qt Script, https://github.com/zloirock/core-js/issues/173\n\nvar USE_SETTER = !QObject || !QObject[PROTOTYPE] || !QObject[PROTOTYPE].findChild; // fallback for old Android, https://code.google.com/p/v8/issues/detail?id=687\n\nvar setSymbolDescriptor = DESCRIPTORS && fails(function () {\n  return nativeObjectCreate(nativeDefineProperty({}, \'a\', {\n    get: function () {\n      return nativeDefineProperty(this, \'a\', {\n        value: 7\n      }).a;\n    }\n  })).a != 7;\n}) ? function (O, P, Attributes) {\n  var ObjectPrototypeDescriptor = nativeGetOwnPropertyDescriptor(ObjectPrototype, P);\n  if (ObjectPrototypeDescriptor) delete ObjectPrototype[P];\n  nativeDefineProperty(O, P, Attributes);\n\n  if (ObjectPrototypeDescriptor && O !== ObjectPrototype) {\n    nativeDefineProperty(ObjectPrototype, P, ObjectPrototypeDescriptor);\n  }\n} : nativeDefineProperty;\n\nvar wrap = function (tag, description) {\n  var symbol = AllSymbols[tag] = nativeObjectCreate($Symbol[PROTOTYPE]);\n  setInternalState(symbol, {\n    type: SYMBOL,\n    tag: tag,\n    description: description\n  });\n  if (!DESCRIPTORS) symbol.description = description;\n  return symbol;\n};\n\nvar isSymbol = USE_SYMBOL_AS_UID ? function (it) {\n  return typeof it == \'symbol\';\n} : function (it) {\n  return Object(it) instanceof $Symbol;\n};\n\nvar $defineProperty = function defineProperty(O, P, Attributes) {\n  if (O === ObjectPrototype) $defineProperty(ObjectPrototypeSymbols, P, Attributes);\n  anObject(O);\n  var key = toPrimitive(P, true);\n  anObject(Attributes);\n\n  if (has(AllSymbols, key)) {\n    if (!Attributes.enumerable) {\n      if (!has(O, HIDDEN)) nativeDefineProperty(O, HIDDEN, createPropertyDescriptor(1, {}));\n      O[HIDDEN][key] = true;\n    } else {\n      if (has(O, HIDDEN) && O[HIDDEN][key]) O[HIDDEN][key] = false;\n      Attributes = nativeObjectCreate(Attributes, {\n        enumerable: createPropertyDescriptor(0, false)\n      });\n    }\n\n    return setSymbolDescriptor(O, key, Attributes);\n  }\n\n  return nativeDefineProperty(O, key, Attributes);\n};\n\nvar $defineProperties = function defineProperties(O, Properties) {\n  anObject(O);\n  var properties = toIndexedObject(Properties);\n  var keys = objectKeys(properties).concat($getOwnPropertySymbols(properties));\n  $forEach(keys, function (key) {\n    if (!DESCRIPTORS || $propertyIsEnumerable.call(properties, key)) $defineProperty(O, key, properties[key]);\n  });\n  return O;\n};\n\nvar $create = function create(O, Properties) {\n  return Properties === undefined ? nativeObjectCreate(O) : $defineProperties(nativeObjectCreate(O), Properties);\n};\n\nvar $propertyIsEnumerable = function propertyIsEnumerable(V) {\n  var P = toPrimitive(V, true);\n  var enumerable = nativePropertyIsEnumerable.call(this, P);\n  if (this === ObjectPrototype && has(AllSymbols, P) && !has(ObjectPrototypeSymbols, P)) return false;\n  return enumerable || !has(this, P) || !has(AllSymbols, P) || has(this, HIDDEN) && this[HIDDEN][P] ? enumerable : true;\n};\n\nvar $getOwnPropertyDescriptor = function getOwnPropertyDescriptor(O, P) {\n  var it = toIndexedObject(O);\n  var key = toPrimitive(P, true);\n  if (it === ObjectPrototype && has(AllSymbols, key) && !has(ObjectPrototypeSymbols, key)) return;\n  var descriptor = nativeGetOwnPropertyDescriptor(it, key);\n\n  if (descriptor && has(AllSymbols, key) && !(has(it, HIDDEN) && it[HIDDEN][key])) {\n    descriptor.enumerable = true;\n  }\n\n  return descriptor;\n};\n\nvar $getOwnPropertyNames = function getOwnPropertyNames(O) {\n  var names = nativeGetOwnPropertyNames(toIndexedObject(O));\n  var result = [];\n  $forEach(names, function (key) {\n    if (!has(AllSymbols, key) && !has(hiddenKeys, key)) result.push(key);\n  });\n  return result;\n};\n\nvar $getOwnPropertySymbols = function getOwnPropertySymbols(O) {\n  var IS_OBJECT_PROTOTYPE = O === ObjectPrototype;\n  var names = nativeGetOwnPropertyNames(IS_OBJECT_PROTOTYPE ? ObjectPrototypeSymbols : toIndexedObject(O));\n  var result = [];\n  $forEach(names, function (key) {\n    if (has(AllSymbols, key) && (!IS_OBJECT_PROTOTYPE || has(ObjectPrototype, key))) {\n      result.push(AllSymbols[key]);\n    }\n  });\n  return result;\n}; // `Symbol` constructor\n// https://tc39.github.io/ecma262/#sec-symbol-constructor\n\n\nif (!NATIVE_SYMBOL) {\n  $Symbol = function Symbol() {\n    if (this instanceof $Symbol) throw TypeError(\'Symbol is not a constructor\');\n    var description = !arguments.length || arguments[0] === undefined ? undefined : String(arguments[0]);\n    var tag = uid(description);\n\n    var setter = function (value) {\n      if (this === ObjectPrototype) setter.call(ObjectPrototypeSymbols, value);\n      if (has(this, HIDDEN) && has(this[HIDDEN], tag)) this[HIDDEN][tag] = false;\n      setSymbolDescriptor(this, tag, createPropertyDescriptor(1, value));\n    };\n\n    if (DESCRIPTORS && USE_SETTER) setSymbolDescriptor(ObjectPrototype, tag, {\n      configurable: true,\n      set: setter\n    });\n    return wrap(tag, description);\n  };\n\n  redefine($Symbol[PROTOTYPE], \'toString\', function toString() {\n    return getInternalState(this).tag;\n  });\n  redefine($Symbol, \'withoutSetter\', function (description) {\n    return wrap(uid(description), description);\n  });\n  propertyIsEnumerableModule.f = $propertyIsEnumerable;\n  definePropertyModule.f = $defineProperty;\n  getOwnPropertyDescriptorModule.f = $getOwnPropertyDescriptor;\n  getOwnPropertyNamesModule.f = getOwnPropertyNamesExternal.f = $getOwnPropertyNames;\n  getOwnPropertySymbolsModule.f = $getOwnPropertySymbols;\n\n  wrappedWellKnownSymbolModule.f = function (name) {\n    return wrap(wellKnownSymbol(name), name);\n  };\n\n  if (DESCRIPTORS) {\n    // https://github.com/tc39/proposal-Symbol-description\n    nativeDefineProperty($Symbol[PROTOTYPE], \'description\', {\n      configurable: true,\n      get: function description() {\n        return getInternalState(this).description;\n      }\n    });\n\n    if (!IS_PURE) {\n      redefine(ObjectPrototype, \'propertyIsEnumerable\', $propertyIsEnumerable, {\n        unsafe: true\n      });\n    }\n  }\n}\n\n$({\n  global: true,\n  wrap: true,\n  forced: !NATIVE_SYMBOL,\n  sham: !NATIVE_SYMBOL\n}, {\n  Symbol: $Symbol\n});\n$forEach(objectKeys(WellKnownSymbolsStore), function (name) {\n  defineWellKnownSymbol(name);\n});\n$({\n  target: SYMBOL,\n  stat: true,\n  forced: !NATIVE_SYMBOL\n}, {\n  // `Symbol.for` method\n  // https://tc39.github.io/ecma262/#sec-symbol.for\n  \'for\': function (key) {\n    var string = String(key);\n    if (has(StringToSymbolRegistry, string)) return StringToSymbolRegistry[string];\n    var symbol = $Symbol(string);\n    StringToSymbolRegistry[string] = symbol;\n    SymbolToStringRegistry[symbol] = string;\n    return symbol;\n  },\n  // `Symbol.keyFor` method\n  // https://tc39.github.io/ecma262/#sec-symbol.keyfor\n  keyFor: function keyFor(sym) {\n    if (!isSymbol(sym)) throw TypeError(sym + \' is not a symbol\');\n    if (has(SymbolToStringRegistry, sym)) return SymbolToStringRegistry[sym];\n  },\n  useSetter: function () {\n    USE_SETTER = true;\n  },\n  useSimple: function () {\n    USE_SETTER = false;\n  }\n});\n$({\n  target: \'Object\',\n  stat: true,\n  forced: !NATIVE_SYMBOL,\n  sham: !DESCRIPTORS\n}, {\n  // `Object.create` method\n  // https://tc39.github.io/ecma262/#sec-object.create\n  create: $create,\n  // `Object.defineProperty` method\n  // https://tc39.github.io/ecma262/#sec-object.defineproperty\n  defineProperty: $defineProperty,\n  // `Object.defineProperties` method\n  // https://tc39.github.io/ecma262/#sec-object.defineproperties\n  defineProperties: $defineProperties,\n  // `Object.getOwnPropertyDescriptor` method\n  // https://tc39.github.io/ecma262/#sec-object.getownpropertydescriptors\n  getOwnPropertyDescriptor: $getOwnPropertyDescriptor\n});\n$({\n  target: \'Object\',\n  stat: true,\n  forced: !NATIVE_SYMBOL\n}, {\n  // `Object.getOwnPropertyNames` method\n  // https://tc39.github.io/ecma262/#sec-object.getownpropertynames\n  getOwnPropertyNames: $getOwnPropertyNames,\n  // `Object.getOwnPropertySymbols` method\n  // https://tc39.github.io/ecma262/#sec-object.getownpropertysymbols\n  getOwnPropertySymbols: $getOwnPropertySymbols\n}); // Chrome 38 and 39 `Object.getOwnPropertySymbols` fails on primitives\n// https://bugs.chromium.org/p/v8/issues/detail?id=3443\n\n$({\n  target: \'Object\',\n  stat: true,\n  forced: fails(function () {\n    getOwnPropertySymbolsModule.f(1);\n  })\n}, {\n  getOwnPropertySymbols: function getOwnPropertySymbols(it) {\n    return getOwnPropertySymbolsModule.f(toObject(it));\n  }\n}); // `JSON.stringify` method behavior with symbols\n// https://tc39.github.io/ecma262/#sec-json.stringify\n\nif ($stringify) {\n  var FORCED_JSON_STRINGIFY = !NATIVE_SYMBOL || fails(function () {\n    var symbol = $Symbol(); // MS Edge converts symbol values to JSON as {}\n\n    return $stringify([symbol]) != \'[null]\' // WebKit converts symbol values to JSON as null\n    || $stringify({\n      a: symbol\n    }) != \'{}\' // V8 throws on boxed symbols\n    || $stringify(Object(symbol)) != \'{}\';\n  });\n  $({\n    target: \'JSON\',\n    stat: true,\n    forced: FORCED_JSON_STRINGIFY\n  }, {\n    // eslint-disable-next-line no-unused-vars\n    stringify: function stringify(it, replacer, space) {\n      var args = [it];\n      var index = 1;\n      var $replacer;\n\n      while (arguments.length > index) args.push(arguments[index++]);\n\n      $replacer = replacer;\n      if (!isObject(replacer) && it === undefined || isSymbol(it)) return; // IE8 returns string on undefined\n\n      if (!isArray(replacer)) replacer = function (key, value) {\n        if (typeof $replacer == \'function\') value = $replacer.call(this, key, value);\n        if (!isSymbol(value)) return value;\n      };\n      args[1] = replacer;\n      return $stringify.apply(null, args);\n    }\n  });\n} // `Symbol.prototype[@@toPrimitive]` method\n// https://tc39.github.io/ecma262/#sec-symbol.prototype-@@toprimitive\n\n\nif (!$Symbol[PROTOTYPE][TO_PRIMITIVE]) {\n  createNonEnumerableProperty($Symbol[PROTOTYPE], TO_PRIMITIVE, $Symbol[PROTOTYPE].valueOf);\n} // `Symbol.prototype[@@toStringTag]` property\n// https://tc39.github.io/ecma262/#sec-symbol.prototype-@@tostringtag\n\n\nsetToStringTag($Symbol, SYMBOL);\nhiddenKeys[HIDDEN] = true;\n\n//# sourceURL=webpack:///./node_modules/core-js/modules/es.symbol.js?')},"./node_modules/core-js/modules/web.dom-collections.for-each.js":function(module,exports,__webpack_require__){eval('var global = __webpack_require__(/*! ../internals/global */ "./node_modules/core-js/internals/global.js");\n\nvar DOMIterables = __webpack_require__(/*! ../internals/dom-iterables */ "./node_modules/core-js/internals/dom-iterables.js");\n\nvar forEach = __webpack_require__(/*! ../internals/array-for-each */ "./node_modules/core-js/internals/array-for-each.js");\n\nvar createNonEnumerableProperty = __webpack_require__(/*! ../internals/create-non-enumerable-property */ "./node_modules/core-js/internals/create-non-enumerable-property.js");\n\nfor (var COLLECTION_NAME in DOMIterables) {\n  var Collection = global[COLLECTION_NAME];\n  var CollectionPrototype = Collection && Collection.prototype; // some Chrome versions have non-configurable methods on DOMTokenList\n\n  if (CollectionPrototype && CollectionPrototype.forEach !== forEach) try {\n    createNonEnumerableProperty(CollectionPrototype, \'forEach\', forEach);\n  } catch (error) {\n    CollectionPrototype.forEach = forEach;\n  }\n}\n\n//# sourceURL=webpack:///./node_modules/core-js/modules/web.dom-collections.for-each.js?')},"./node_modules/core-js/modules/web.dom-collections.iterator.js":function(module,exports,__webpack_require__){eval('var global = __webpack_require__(/*! ../internals/global */ "./node_modules/core-js/internals/global.js");\n\nvar DOMIterables = __webpack_require__(/*! ../internals/dom-iterables */ "./node_modules/core-js/internals/dom-iterables.js");\n\nvar ArrayIteratorMethods = __webpack_require__(/*! ../modules/es.array.iterator */ "./node_modules/core-js/modules/es.array.iterator.js");\n\nvar createNonEnumerableProperty = __webpack_require__(/*! ../internals/create-non-enumerable-property */ "./node_modules/core-js/internals/create-non-enumerable-property.js");\n\nvar wellKnownSymbol = __webpack_require__(/*! ../internals/well-known-symbol */ "./node_modules/core-js/internals/well-known-symbol.js");\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\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\n    if (!CollectionPrototype[TO_STRING_TAG]) {\n      createNonEnumerableProperty(CollectionPrototype, TO_STRING_TAG, COLLECTION_NAME);\n    }\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//# sourceURL=webpack:///./node_modules/core-js/modules/web.dom-collections.iterator.js?')},"./node_modules/core-js/modules/web.url.to-json.js":function(module,exports,__webpack_require__){"use strict";eval("\n\nvar $ = __webpack_require__(/*! ../internals/export */ \"./node_modules/core-js/internals/export.js\"); // `URL.prototype.toJSON` method\n// https://url.spec.whatwg.org/#dom-url-tojson\n\n\n$({\n  target: 'URL',\n  proto: true,\n  enumerable: true\n}, {\n  toJSON: function toJSON() {\n    return URL.prototype.toString.call(this);\n  }\n});\n\n//# sourceURL=webpack:///./node_modules/core-js/modules/web.url.to-json.js?")},"./node_modules/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.js":function(module,exports,__webpack_require__){eval('var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;// Unobtrusive validation support library for jQuery and jQuery Validate\n// Copyright (c) .NET Foundation. All rights reserved.\n// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.\n// @version v3.2.11\n\n/*jslint white: true, browser: true, onevar: true, undef: true, nomen: true, eqeqeq: true, plusplus: true, bitwise: true, regexp: true, newcap: true, immed: true, strict: false */\n\n/*global document: false, jQuery: false */\n(function (factory) {\n  if (true) {\n    // AMD. Register as an anonymous module.\n    !(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(/*! jquery-validation */ "./node_modules/jquery-validation/dist/jquery.validate.js")], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory),\n\t\t\t\t__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === \'function\' ?\n\t\t\t\t(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),\n\t\t\t\t__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__));\n  } else {}\n})(function ($) {\n  var $jQval = $.validator,\n      adapters,\n      data_validation = "unobtrusiveValidation";\n\n  function setValidationValues(options, ruleName, value) {\n    options.rules[ruleName] = value;\n\n    if (options.message) {\n      options.messages[ruleName] = options.message;\n    }\n  }\n\n  function splitAndTrim(value) {\n    return value.replace(/^\\s+|\\s+$/g, "").split(/\\s*,\\s*/g);\n  }\n\n  function escapeAttributeValue(value) {\n    // As mentioned on http://api.jquery.com/category/selectors/\n    return value.replace(/([!"#$%&\'()*+,./:;<=>?@\\[\\\\\\]^`{|}~])/g, "\\\\$1");\n  }\n\n  function getModelPrefix(fieldName) {\n    return fieldName.substr(0, fieldName.lastIndexOf(".") + 1);\n  }\n\n  function appendModelPrefix(value, prefix) {\n    if (value.indexOf("*.") === 0) {\n      value = value.replace("*.", prefix);\n    }\n\n    return value;\n  }\n\n  function onError(error, inputElement) {\n    // \'this\' is the form element\n    var container = $(this).find("[data-valmsg-for=\'" + escapeAttributeValue(inputElement[0].name) + "\']"),\n        replaceAttrValue = container.attr("data-valmsg-replace"),\n        replace = replaceAttrValue ? $.parseJSON(replaceAttrValue) !== false : null;\n    container.removeClass("field-validation-valid").addClass("field-validation-error");\n    error.data("unobtrusiveContainer", container);\n\n    if (replace) {\n      container.empty();\n      error.removeClass("input-validation-error").appendTo(container);\n    } else {\n      error.hide();\n    }\n  }\n\n  function onErrors(event, validator) {\n    // \'this\' is the form element\n    var container = $(this).find("[data-valmsg-summary=true]"),\n        list = container.find("ul");\n\n    if (list && list.length && validator.errorList.length) {\n      list.empty();\n      container.addClass("validation-summary-errors").removeClass("validation-summary-valid");\n      $.each(validator.errorList, function () {\n        $("<li />").html(this.message).appendTo(list);\n      });\n    }\n  }\n\n  function onSuccess(error) {\n    // \'this\' is the form element\n    var container = error.data("unobtrusiveContainer");\n\n    if (container) {\n      var replaceAttrValue = container.attr("data-valmsg-replace"),\n          replace = replaceAttrValue ? $.parseJSON(replaceAttrValue) : null;\n      container.addClass("field-validation-valid").removeClass("field-validation-error");\n      error.removeData("unobtrusiveContainer");\n\n      if (replace) {\n        container.empty();\n      }\n    }\n  }\n\n  function onReset(event) {\n    // \'this\' is the form element\n    var $form = $(this),\n        key = \'__jquery_unobtrusive_validation_form_reset\';\n\n    if ($form.data(key)) {\n      return;\n    } // Set a flag that indicates we\'re currently resetting the form.\n\n\n    $form.data(key, true);\n\n    try {\n      $form.data("validator").resetForm();\n    } finally {\n      $form.removeData(key);\n    }\n\n    $form.find(".validation-summary-errors").addClass("validation-summary-valid").removeClass("validation-summary-errors");\n    $form.find(".field-validation-error").addClass("field-validation-valid").removeClass("field-validation-error").removeData("unobtrusiveContainer").find(">*") // If we were using valmsg-replace, get the underlying error\n    .removeData("unobtrusiveContainer");\n  }\n\n  function validationInfo(form) {\n    var $form = $(form),\n        result = $form.data(data_validation),\n        onResetProxy = $.proxy(onReset, form),\n        defaultOptions = $jQval.unobtrusive.options || {},\n        execInContext = function (name, args) {\n      var func = defaultOptions[name];\n      func && $.isFunction(func) && func.apply(form, args);\n    };\n\n    if (!result) {\n      result = {\n        options: {\n          // options structure passed to jQuery Validate\'s validate() method\n          errorClass: defaultOptions.errorClass || "input-validation-error",\n          errorElement: defaultOptions.errorElement || "span",\n          errorPlacement: function () {\n            onError.apply(form, arguments);\n            execInContext("errorPlacement", arguments);\n          },\n          invalidHandler: function () {\n            onErrors.apply(form, arguments);\n            execInContext("invalidHandler", arguments);\n          },\n          messages: {},\n          rules: {},\n          success: function () {\n            onSuccess.apply(form, arguments);\n            execInContext("success", arguments);\n          }\n        },\n        attachValidation: function () {\n          $form.off("reset." + data_validation, onResetProxy).on("reset." + data_validation, onResetProxy).validate(this.options);\n        },\n        validate: function () {\n          // a validation function that is called by unobtrusive Ajax\n          $form.validate();\n          return $form.valid();\n        }\n      };\n      $form.data(data_validation, result);\n    }\n\n    return result;\n  }\n\n  $jQval.unobtrusive = {\n    adapters: [],\n    parseElement: function (element, skipAttach) {\n      /// <summary>\n      /// Parses a single HTML element for unobtrusive validation attributes.\n      /// <\/summary>\n      /// <param name="element" domElement="true">The HTML element to be parsed.<\/param>\n      /// <param name="skipAttach" type="Boolean">[Optional] true to skip attaching the\n      /// validation to the form. If parsing just this single element, you should specify true.\n      /// If parsing several elements, you should specify false, and manually attach the validation\n      /// to the form when you are finished. The default is false.<\/param>\n      var $element = $(element),\n          form = $element.parents("form")[0],\n          valInfo,\n          rules,\n          messages;\n\n      if (!form) {\n        // Cannot do client-side validation without a form\n        return;\n      }\n\n      valInfo = validationInfo(form);\n      valInfo.options.rules[element.name] = rules = {};\n      valInfo.options.messages[element.name] = messages = {};\n      $.each(this.adapters, function () {\n        var prefix = "data-val-" + this.name,\n            message = $element.attr(prefix),\n            paramValues = {};\n\n        if (message !== undefined) {\n          // Compare against undefined, because an empty message is legal (and falsy)\n          prefix += "-";\n          $.each(this.params, function () {\n            paramValues[this] = $element.attr(prefix + this);\n          });\n          this.adapt({\n            element: element,\n            form: form,\n            message: message,\n            params: paramValues,\n            rules: rules,\n            messages: messages\n          });\n        }\n      });\n      $.extend(rules, {\n        "__dummy__": true\n      });\n\n      if (!skipAttach) {\n        valInfo.attachValidation();\n      }\n    },\n    parse: function (selector) {\n      /// <summary>\n      /// Parses all the HTML elements in the specified selector. It looks for input elements decorated\n      /// with the [data-val=true] attribute value and enables validation according to the data-val-*\n      /// attribute values.\n      /// <\/summary>\n      /// <param name="selector" type="String">Any valid jQuery selector.<\/param>\n      // $forms includes all forms in selector\'s DOM hierarchy (parent, children and self) that have at least one\n      // element with data-val=true\n      var $selector = $(selector),\n          $forms = $selector.parents().addBack().filter("form").add($selector.find("form")).has("[data-val=true]");\n      $selector.find("[data-val=true]").each(function () {\n        $jQval.unobtrusive.parseElement(this, true);\n      });\n      $forms.each(function () {\n        var info = validationInfo(this);\n\n        if (info) {\n          info.attachValidation();\n        }\n      });\n    }\n  };\n  adapters = $jQval.unobtrusive.adapters;\n\n  adapters.add = function (adapterName, params, fn) {\n    /// <summary>Adds a new adapter to convert unobtrusive HTML into a jQuery Validate validation.<\/summary>\n    /// <param name="adapterName" type="String">The name of the adapter to be added. This matches the name used\n    /// in the data-val-nnnn HTML attribute (where nnnn is the adapter name).<\/param>\n    /// <param name="params" type="Array" optional="true">[Optional] An array of parameter names (strings) that will\n    /// be extracted from the data-val-nnnn-mmmm HTML attributes (where nnnn is the adapter name, and\n    /// mmmm is the parameter name).<\/param>\n    /// <param name="fn" type="Function">The function to call, which adapts the values from the HTML\n    /// attributes into jQuery Validate rules and/or messages.<\/param>\n    /// <returns type="jQuery.validator.unobtrusive.adapters" />\n    if (!fn) {\n      // Called with no params, just a function\n      fn = params;\n      params = [];\n    }\n\n    this.push({\n      name: adapterName,\n      params: params,\n      adapt: fn\n    });\n    return this;\n  };\n\n  adapters.addBool = function (adapterName, ruleName) {\n    /// <summary>Adds a new adapter to convert unobtrusive HTML into a jQuery Validate validation, where\n    /// the jQuery Validate validation rule has no parameter values.<\/summary>\n    /// <param name="adapterName" type="String">The name of the adapter to be added. This matches the name used\n    /// in the data-val-nnnn HTML attribute (where nnnn is the adapter name).<\/param>\n    /// <param name="ruleName" type="String" optional="true">[Optional] The name of the jQuery Validate rule. If not provided, the value\n    /// of adapterName will be used instead.<\/param>\n    /// <returns type="jQuery.validator.unobtrusive.adapters" />\n    return this.add(adapterName, function (options) {\n      setValidationValues(options, ruleName || adapterName, true);\n    });\n  };\n\n  adapters.addMinMax = function (adapterName, minRuleName, maxRuleName, minMaxRuleName, minAttribute, maxAttribute) {\n    /// <summary>Adds a new adapter to convert unobtrusive HTML into a jQuery Validate validation, where\n    /// the jQuery Validate validation has three potential rules (one for min-only, one for max-only, and\n    /// one for min-and-max). The HTML parameters are expected to be named -min and -max.<\/summary>\n    /// <param name="adapterName" type="String">The name of the adapter to be added. This matches the name used\n    /// in the data-val-nnnn HTML attribute (where nnnn is the adapter name).<\/param>\n    /// <param name="minRuleName" type="String">The name of the jQuery Validate rule to be used when you only\n    /// have a minimum value.<\/param>\n    /// <param name="maxRuleName" type="String">The name of the jQuery Validate rule to be used when you only\n    /// have a maximum value.<\/param>\n    /// <param name="minMaxRuleName" type="String">The name of the jQuery Validate rule to be used when you\n    /// have both a minimum and maximum value.<\/param>\n    /// <param name="minAttribute" type="String" optional="true">[Optional] The name of the HTML attribute that\n    /// contains the minimum value. The default is "min".<\/param>\n    /// <param name="maxAttribute" type="String" optional="true">[Optional] The name of the HTML attribute that\n    /// contains the maximum value. The default is "max".<\/param>\n    /// <returns type="jQuery.validator.unobtrusive.adapters" />\n    return this.add(adapterName, [minAttribute || "min", maxAttribute || "max"], function (options) {\n      var min = options.params.min,\n          max = options.params.max;\n\n      if (min && max) {\n        setValidationValues(options, minMaxRuleName, [min, max]);\n      } else if (min) {\n        setValidationValues(options, minRuleName, min);\n      } else if (max) {\n        setValidationValues(options, maxRuleName, max);\n      }\n    });\n  };\n\n  adapters.addSingleVal = function (adapterName, attribute, ruleName) {\n    /// <summary>Adds a new adapter to convert unobtrusive HTML into a jQuery Validate validation, where\n    /// the jQuery Validate validation rule has a single value.<\/summary>\n    /// <param name="adapterName" type="String">The name of the adapter to be added. This matches the name used\n    /// in the data-val-nnnn HTML attribute(where nnnn is the adapter name).<\/param>\n    /// <param name="attribute" type="String">[Optional] The name of the HTML attribute that contains the value.\n    /// The default is "val".<\/param>\n    /// <param name="ruleName" type="String" optional="true">[Optional] The name of the jQuery Validate rule. If not provided, the value\n    /// of adapterName will be used instead.<\/param>\n    /// <returns type="jQuery.validator.unobtrusive.adapters" />\n    return this.add(adapterName, [attribute || "val"], function (options) {\n      setValidationValues(options, ruleName || adapterName, options.params[attribute]);\n    });\n  };\n\n  $jQval.addMethod("__dummy__", function (value, element, params) {\n    return true;\n  });\n  $jQval.addMethod("regex", function (value, element, params) {\n    var match;\n\n    if (this.optional(element)) {\n      return true;\n    }\n\n    match = new RegExp(params).exec(value);\n    return match && match.index === 0 && match[0].length === value.length;\n  });\n  $jQval.addMethod("nonalphamin", function (value, element, nonalphamin) {\n    var match;\n\n    if (nonalphamin) {\n      match = value.match(/\\W/g);\n      match = match && match.length >= nonalphamin;\n    }\n\n    return match;\n  });\n\n  if ($jQval.methods.extension) {\n    adapters.addSingleVal("accept", "mimtype");\n    adapters.addSingleVal("extension", "extension");\n  } else {\n    // for backward compatibility, when the \'extension\' validation method does not exist, such as with versions\n    // of JQuery Validation plugin prior to 1.10, we should use the \'accept\' method for\n    // validating the extension, and ignore mime-type validations as they are not supported.\n    adapters.addSingleVal("extension", "extension", "accept");\n  }\n\n  adapters.addSingleVal("regex", "pattern");\n  adapters.addBool("creditcard").addBool("date").addBool("digits").addBool("email").addBool("number").addBool("url");\n  adapters.addMinMax("length", "minlength", "maxlength", "rangelength").addMinMax("range", "min", "max", "range");\n  adapters.addMinMax("minlength", "minlength").addMinMax("maxlength", "minlength", "maxlength");\n  adapters.add("equalto", ["other"], function (options) {\n    var prefix = getModelPrefix(options.element.name),\n        other = options.params.other,\n        fullOtherName = appendModelPrefix(other, prefix),\n        element = $(options.form).find(":input").filter("[name=\'" + escapeAttributeValue(fullOtherName) + "\']")[0];\n    setValidationValues(options, "equalTo", element);\n  });\n  adapters.add("required", function (options) {\n    // jQuery Validate equates "required" with "mandatory" for checkbox elements\n    if (options.element.tagName.toUpperCase() !== "INPUT" || options.element.type.toUpperCase() !== "CHECKBOX") {\n      setValidationValues(options, "required", true);\n    }\n  });\n  adapters.add("remote", ["url", "type", "additionalfields"], function (options) {\n    var value = {\n      url: options.params.url,\n      type: options.params.type || "GET",\n      data: {}\n    },\n        prefix = getModelPrefix(options.element.name);\n    $.each(splitAndTrim(options.params.additionalfields || options.element.name), function (i, fieldName) {\n      var paramName = appendModelPrefix(fieldName, prefix);\n\n      value.data[paramName] = function () {\n        var field = $(options.form).find(":input").filter("[name=\'" + escapeAttributeValue(paramName) + "\']"); // For checkboxes and radio buttons, only pick up values from checked fields.\n\n        if (field.is(":checkbox")) {\n          return field.filter(":checked").val() || field.filter(":hidden").val() || \'\';\n        } else if (field.is(":radio")) {\n          return field.filter(":checked").val() || \'\';\n        }\n\n        return field.val();\n      };\n    });\n    setValidationValues(options, "remote", value);\n  });\n  adapters.add("password", ["min", "nonalphamin", "regex"], function (options) {\n    if (options.params.min) {\n      setValidationValues(options, "minlength", options.params.min);\n    }\n\n    if (options.params.nonalphamin) {\n      setValidationValues(options, "nonalphamin", options.params.nonalphamin);\n    }\n\n    if (options.params.regex) {\n      setValidationValues(options, "regex", options.params.regex);\n    }\n  });\n  adapters.add("fileextensions", ["extensions"], function (options) {\n    setValidationValues(options, "extension", options.params.extensions);\n  });\n  $(function () {\n    $jQval.unobtrusive.parse(document);\n  });\n  return $jQval.unobtrusive;\n});\n\n//# sourceURL=webpack:///./node_modules/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.js?')},"./node_modules/jquery-validation/dist/jquery.validate.js":function(module,exports,__webpack_require__){eval('var __WEBPACK_AMD_DEFINE_FACTORY__, __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;/*!\r\n * jQuery Validation Plugin v1.19.3\r\n *\r\n * https://jqueryvalidation.org/\r\n *\r\n * Copyright (c) 2021 Jörn Zaefferer\r\n * Released under the MIT license\r\n */\n(function (factory) {\n  if (true) {\n    !(__WEBPACK_AMD_DEFINE_ARRAY__ = [__webpack_require__(/*! jquery */ "./node_modules/jquery/dist/jquery.js")], __WEBPACK_AMD_DEFINE_FACTORY__ = (factory),\n\t\t\t\t__WEBPACK_AMD_DEFINE_RESULT__ = (typeof __WEBPACK_AMD_DEFINE_FACTORY__ === \'function\' ?\n\t\t\t\t(__WEBPACK_AMD_DEFINE_FACTORY__.apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__)) : __WEBPACK_AMD_DEFINE_FACTORY__),\n\t\t\t\t__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__));\n  } else {}\n})(function ($) {\n  $.extend($.fn, {\n    // https://jqueryvalidation.org/validate/\n    validate: function (options) {\n      // If nothing is selected, return nothing; can\'t chain anyway\n      if (!this.length) {\n        if (options && options.debug && window.console) {\n          console.warn("Nothing selected, can\'t validate, returning nothing.");\n        }\n\n        return;\n      } // Check if a validator for this form was already created\n\n\n      var validator = $.data(this[0], "validator");\n\n      if (validator) {\n        return validator;\n      } // Add novalidate tag if HTML5.\n\n\n      this.attr("novalidate", "novalidate");\n      validator = new $.validator(options, this[0]);\n      $.data(this[0], "validator", validator);\n\n      if (validator.settings.onsubmit) {\n        this.on("click.validate", ":submit", function (event) {\n          // Track the used submit button to properly handle scripted\n          // submits later.\n          validator.submitButton = event.currentTarget; // Allow suppressing validation by adding a cancel class to the submit button\n\n          if ($(this).hasClass("cancel")) {\n            validator.cancelSubmit = true;\n          } // Allow suppressing validation by adding the html5 formnovalidate attribute to the submit button\n\n\n          if ($(this).attr("formnovalidate") !== undefined) {\n            validator.cancelSubmit = true;\n          }\n        }); // Validate the form on submit\n\n        this.on("submit.validate", function (event) {\n          if (validator.settings.debug) {\n            // Prevent form submit to be able to see console output\n            event.preventDefault();\n          }\n\n          function handle() {\n            var hidden, result; // Insert a hidden input as a replacement for the missing submit button\n            // The hidden input is inserted in two cases:\n            //   - A user defined a `submitHandler`\n            //   - There was a pending request due to `remote` method and `stopRequest()`\n            //     was called to submit the form in case it\'s valid\n\n            if (validator.submitButton && (validator.settings.submitHandler || validator.formSubmitted)) {\n              hidden = $("<input type=\'hidden\'/>").attr("name", validator.submitButton.name).val($(validator.submitButton).val()).appendTo(validator.currentForm);\n            }\n\n            if (validator.settings.submitHandler && !validator.settings.debug) {\n              result = validator.settings.submitHandler.call(validator, validator.currentForm, event);\n\n              if (hidden) {\n                // And clean up afterwards; thanks to no-block-scope, hidden can be referenced\n                hidden.remove();\n              }\n\n              if (result !== undefined) {\n                return result;\n              }\n\n              return false;\n            }\n\n            return true;\n          } // Prevent submit for invalid forms or custom submit handlers\n\n\n          if (validator.cancelSubmit) {\n            validator.cancelSubmit = false;\n            return handle();\n          }\n\n          if (validator.form()) {\n            if (validator.pendingRequest) {\n              validator.formSubmitted = true;\n              return false;\n            }\n\n            return handle();\n          } else {\n            validator.focusInvalid();\n            return false;\n          }\n        });\n      }\n\n      return validator;\n    },\n    // https://jqueryvalidation.org/valid/\n    valid: function () {\n      var valid, validator, errorList;\n\n      if ($(this[0]).is("form")) {\n        valid = this.validate().form();\n      } else {\n        errorList = [];\n        valid = true;\n        validator = $(this[0].form).validate();\n        this.each(function () {\n          valid = validator.element(this) && valid;\n\n          if (!valid) {\n            errorList = errorList.concat(validator.errorList);\n          }\n        });\n        validator.errorList = errorList;\n      }\n\n      return valid;\n    },\n    // https://jqueryvalidation.org/rules/\n    rules: function (command, argument) {\n      var element = this[0],\n          isContentEditable = typeof this.attr("contenteditable") !== "undefined" && this.attr("contenteditable") !== "false",\n          settings,\n          staticRules,\n          existingRules,\n          data,\n          param,\n          filtered; // If nothing is selected, return empty object; can\'t chain anyway\n\n      if (element == null) {\n        return;\n      }\n\n      if (!element.form && isContentEditable) {\n        element.form = this.closest("form")[0];\n        element.name = this.attr("name");\n      }\n\n      if (element.form == null) {\n        return;\n      }\n\n      if (command) {\n        settings = $.data(element.form, "validator").settings;\n        staticRules = settings.rules;\n        existingRules = $.validator.staticRules(element);\n\n        switch (command) {\n          case "add":\n            $.extend(existingRules, $.validator.normalizeRule(argument)); // Remove messages from rules, but allow them to be set separately\n\n            delete existingRules.messages;\n            staticRules[element.name] = existingRules;\n\n            if (argument.messages) {\n              settings.messages[element.name] = $.extend(settings.messages[element.name], argument.messages);\n            }\n\n            break;\n\n          case "remove":\n            if (!argument) {\n              delete staticRules[element.name];\n              return existingRules;\n            }\n\n            filtered = {};\n            $.each(argument.split(/\\s/), function (index, method) {\n              filtered[method] = existingRules[method];\n              delete existingRules[method];\n            });\n            return filtered;\n        }\n      }\n\n      data = $.validator.normalizeRules($.extend({}, $.validator.classRules(element), $.validator.attributeRules(element), $.validator.dataRules(element), $.validator.staticRules(element)), element); // Make sure required is at front\n\n      if (data.required) {\n        param = data.required;\n        delete data.required;\n        data = $.extend({\n          required: param\n        }, data);\n      } // Make sure remote is at back\n\n\n      if (data.remote) {\n        param = data.remote;\n        delete data.remote;\n        data = $.extend(data, {\n          remote: param\n        });\n      }\n\n      return data;\n    }\n  }); // JQuery trim is deprecated, provide a trim method based on String.prototype.trim\n\n  var trim = function (str) {\n    // https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/trim#Polyfill\n    return str.replace(/^[\\s\\uFEFF\\xA0]+|[\\s\\uFEFF\\xA0]+$/g, "");\n  }; // Custom selectors\n\n\n  $.extend($.expr.pseudos || $.expr[":"], {\n    // \'|| $.expr[ ":" ]\' here enables backwards compatibility to jQuery 1.7. Can be removed when dropping jQ 1.7.x support\n    // https://jqueryvalidation.org/blank-selector/\n    blank: function (a) {\n      return !trim("" + $(a).val());\n    },\n    // https://jqueryvalidation.org/filled-selector/\n    filled: function (a) {\n      var val = $(a).val();\n      return val !== null && !!trim("" + val);\n    },\n    // https://jqueryvalidation.org/unchecked-selector/\n    unchecked: function (a) {\n      return !$(a).prop("checked");\n    }\n  }); // Constructor for validator\n\n  $.validator = function (options, form) {\n    this.settings = $.extend(true, {}, $.validator.defaults, options);\n    this.currentForm = form;\n    this.init();\n  }; // https://jqueryvalidation.org/jQuery.validator.format/\n\n\n  $.validator.format = function (source, params) {\n    if (arguments.length === 1) {\n      return function () {\n        var args = $.makeArray(arguments);\n        args.unshift(source);\n        return $.validator.format.apply(this, args);\n      };\n    }\n\n    if (params === undefined) {\n      return source;\n    }\n\n    if (arguments.length > 2 && params.constructor !== Array) {\n      params = $.makeArray(arguments).slice(1);\n    }\n\n    if (params.constructor !== Array) {\n      params = [params];\n    }\n\n    $.each(params, function (i, n) {\n      source = source.replace(new RegExp("\\\\{" + i + "\\\\}", "g"), function () {\n        return n;\n      });\n    });\n    return source;\n  };\n\n  $.extend($.validator, {\n    defaults: {\n      messages: {},\n      groups: {},\n      rules: {},\n      errorClass: "error",\n      pendingClass: "pending",\n      validClass: "valid",\n      errorElement: "label",\n      focusCleanup: false,\n      focusInvalid: true,\n      errorContainer: $([]),\n      errorLabelContainer: $([]),\n      onsubmit: true,\n      ignore: ":hidden",\n      ignoreTitle: false,\n      onfocusin: function (element) {\n        this.lastActive = element; // Hide error label and remove error class on focus if enabled\n\n        if (this.settings.focusCleanup) {\n          if (this.settings.unhighlight) {\n            this.settings.unhighlight.call(this, element, this.settings.errorClass, this.settings.validClass);\n          }\n\n          this.hideThese(this.errorsFor(element));\n        }\n      },\n      onfocusout: function (element) {\n        if (!this.checkable(element) && (element.name in this.submitted || !this.optional(element))) {\n          this.element(element);\n        }\n      },\n      onkeyup: function (element, event) {\n        // Avoid revalidate the field when pressing one of the following keys\n        // Shift       => 16\n        // Ctrl        => 17\n        // Alt         => 18\n        // Caps lock   => 20\n        // End         => 35\n        // Home        => 36\n        // Left arrow  => 37\n        // Up arrow    => 38\n        // Right arrow => 39\n        // Down arrow  => 40\n        // Insert      => 45\n        // Num lock    => 144\n        // AltGr key   => 225\n        var excludedKeys = [16, 17, 18, 20, 35, 36, 37, 38, 39, 40, 45, 144, 225];\n\n        if (event.which === 9 && this.elementValue(element) === "" || $.inArray(event.keyCode, excludedKeys) !== -1) {\n          return;\n        } else if (element.name in this.submitted || element.name in this.invalid) {\n          this.element(element);\n        }\n      },\n      onclick: function (element) {\n        // Click on selects, radiobuttons and checkboxes\n        if (element.name in this.submitted) {\n          this.element(element); // Or option elements, check parent select in that case\n        } else if (element.parentNode.name in this.submitted) {\n          this.element(element.parentNode);\n        }\n      },\n      highlight: function (element, errorClass, validClass) {\n        if (element.type === "radio") {\n          this.findByName(element.name).addClass(errorClass).removeClass(validClass);\n        } else {\n          $(element).addClass(errorClass).removeClass(validClass);\n        }\n      },\n      unhighlight: function (element, errorClass, validClass) {\n        if (element.type === "radio") {\n          this.findByName(element.name).removeClass(errorClass).addClass(validClass);\n        } else {\n          $(element).removeClass(errorClass).addClass(validClass);\n        }\n      }\n    },\n    // https://jqueryvalidation.org/jQuery.validator.setDefaults/\n    setDefaults: function (settings) {\n      $.extend($.validator.defaults, settings);\n    },\n    messages: {\n      required: "This field is required.",\n      remote: "Please fix this field.",\n      email: "Please enter a valid email address.",\n      url: "Please enter a valid URL.",\n      date: "Please enter a valid date.",\n      dateISO: "Please enter a valid date (ISO).",\n      number: "Please enter a valid number.",\n      digits: "Please enter only digits.",\n      equalTo: "Please enter the same value again.",\n      maxlength: $.validator.format("Please enter no more than {0} characters."),\n      minlength: $.validator.format("Please enter at least {0} characters."),\n      rangelength: $.validator.format("Please enter a value between {0} and {1} characters long."),\n      range: $.validator.format("Please enter a value between {0} and {1}."),\n      max: $.validator.format("Please enter a value less than or equal to {0}."),\n      min: $.validator.format("Please enter a value greater than or equal to {0}."),\n      step: $.validator.format("Please enter a multiple of {0}.")\n    },\n    autoCreateRanges: false,\n    prototype: {\n      init: function () {\n        this.labelContainer = $(this.settings.errorLabelContainer);\n        this.errorContext = this.labelContainer.length && this.labelContainer || $(this.currentForm);\n        this.containers = $(this.settings.errorContainer).add(this.settings.errorLabelContainer);\n        this.submitted = {};\n        this.valueCache = {};\n        this.pendingRequest = 0;\n        this.pending = {};\n        this.invalid = {};\n        this.reset();\n        var currentForm = this.currentForm,\n            groups = this.groups = {},\n            rules;\n        $.each(this.settings.groups, function (key, value) {\n          if (typeof value === "string") {\n            value = value.split(/\\s/);\n          }\n\n          $.each(value, function (index, name) {\n            groups[name] = key;\n          });\n        });\n        rules = this.settings.rules;\n        $.each(rules, function (key, value) {\n          rules[key] = $.validator.normalizeRule(value);\n        });\n\n        function delegate(event) {\n          var isContentEditable = typeof $(this).attr("contenteditable") !== "undefined" && $(this).attr("contenteditable") !== "false"; // Set form expando on contenteditable\n\n          if (!this.form && isContentEditable) {\n            this.form = $(this).closest("form")[0];\n            this.name = $(this).attr("name");\n          } // Ignore the element if it belongs to another form. This will happen mainly\n          // when setting the `form` attribute of an input to the id of another form.\n\n\n          if (currentForm !== this.form) {\n            return;\n          }\n\n          var validator = $.data(this.form, "validator"),\n              eventType = "on" + event.type.replace(/^validate/, ""),\n              settings = validator.settings;\n\n          if (settings[eventType] && !$(this).is(settings.ignore)) {\n            settings[eventType].call(validator, this, event);\n          }\n        }\n\n        $(this.currentForm).on("focusin.validate focusout.validate keyup.validate", ":text, [type=\'password\'], [type=\'file\'], select, textarea, [type=\'number\'], [type=\'search\'], " + "[type=\'tel\'], [type=\'url\'], [type=\'email\'], [type=\'datetime\'], [type=\'date\'], [type=\'month\'], " + "[type=\'week\'], [type=\'time\'], [type=\'datetime-local\'], [type=\'range\'], [type=\'color\'], " + "[type=\'radio\'], [type=\'checkbox\'], [contenteditable], [type=\'button\']", delegate) // Support: Chrome, oldIE\n        // "select" is provided as event.target when clicking a option\n        .on("click.validate", "select, option, [type=\'radio\'], [type=\'checkbox\']", delegate);\n\n        if (this.settings.invalidHandler) {\n          $(this.currentForm).on("invalid-form.validate", this.settings.invalidHandler);\n        }\n      },\n      // https://jqueryvalidation.org/Validator.form/\n      form: function () {\n        this.checkForm();\n        $.extend(this.submitted, this.errorMap);\n        this.invalid = $.extend({}, this.errorMap);\n\n        if (!this.valid()) {\n          $(this.currentForm).triggerHandler("invalid-form", [this]);\n        }\n\n        this.showErrors();\n        return this.valid();\n      },\n      checkForm: function () {\n        this.prepareForm();\n\n        for (var i = 0, elements = this.currentElements = this.elements(); elements[i]; i++) {\n          this.check(elements[i]);\n        }\n\n        return this.valid();\n      },\n      // https://jqueryvalidation.org/Validator.element/\n      element: function (element) {\n        var cleanElement = this.clean(element),\n            checkElement = this.validationTargetFor(cleanElement),\n            v = this,\n            result = true,\n            rs,\n            group;\n\n        if (checkElement === undefined) {\n          delete this.invalid[cleanElement.name];\n        } else {\n          this.prepareElement(checkElement);\n          this.currentElements = $(checkElement); // If this element is grouped, then validate all group elements already\n          // containing a value\n\n          group = this.groups[checkElement.name];\n\n          if (group) {\n            $.each(this.groups, function (name, testgroup) {\n              if (testgroup === group && name !== checkElement.name) {\n                cleanElement = v.validationTargetFor(v.clean(v.findByName(name)));\n\n                if (cleanElement && cleanElement.name in v.invalid) {\n                  v.currentElements.push(cleanElement);\n                  result = v.check(cleanElement) && result;\n                }\n              }\n            });\n          }\n\n          rs = this.check(checkElement) !== false;\n          result = result && rs;\n\n          if (rs) {\n            this.invalid[checkElement.name] = false;\n          } else {\n            this.invalid[checkElement.name] = true;\n          }\n\n          if (!this.numberOfInvalids()) {\n            // Hide error containers on last error\n            this.toHide = this.toHide.add(this.containers);\n          }\n\n          this.showErrors(); // Add aria-invalid status for screen readers\n\n          $(element).attr("aria-invalid", !rs);\n        }\n\n        return result;\n      },\n      // https://jqueryvalidation.org/Validator.showErrors/\n      showErrors: function (errors) {\n        if (errors) {\n          var validator = this; // Add items to error list and map\n\n          $.extend(this.errorMap, errors);\n          this.errorList = $.map(this.errorMap, function (message, name) {\n            return {\n              message: message,\n              element: validator.findByName(name)[0]\n            };\n          }); // Remove items from success list\n\n          this.successList = $.grep(this.successList, function (element) {\n            return !(element.name in errors);\n          });\n        }\n\n        if (this.settings.showErrors) {\n          this.settings.showErrors.call(this, this.errorMap, this.errorList);\n        } else {\n          this.defaultShowErrors();\n        }\n      },\n      // https://jqueryvalidation.org/Validator.resetForm/\n      resetForm: function () {\n        if ($.fn.resetForm) {\n          $(this.currentForm).resetForm();\n        }\n\n        this.invalid = {};\n        this.submitted = {};\n        this.prepareForm();\n        this.hideErrors();\n        var elements = this.elements().removeData("previousValue").removeAttr("aria-invalid");\n        this.resetElements(elements);\n      },\n      resetElements: function (elements) {\n        var i;\n\n        if (this.settings.unhighlight) {\n          for (i = 0; elements[i]; i++) {\n            this.settings.unhighlight.call(this, elements[i], this.settings.errorClass, "");\n            this.findByName(elements[i].name).removeClass(this.settings.validClass);\n          }\n        } else {\n          elements.removeClass(this.settings.errorClass).removeClass(this.settings.validClass);\n        }\n      },\n      numberOfInvalids: function () {\n        return this.objectLength(this.invalid);\n      },\n      objectLength: function (obj) {\n        /* jshint unused: false */\n        var count = 0,\n            i;\n\n        for (i in obj) {\n          // This check allows counting elements with empty error\n          // message as invalid elements\n          if (obj[i] !== undefined && obj[i] !== null && obj[i] !== false) {\n            count++;\n          }\n        }\n\n        return count;\n      },\n      hideErrors: function () {\n        this.hideThese(this.toHide);\n      },\n      hideThese: function (errors) {\n        errors.not(this.containers).text("");\n        this.addWrapper(errors).hide();\n      },\n      valid: function () {\n        return this.size() === 0;\n      },\n      size: function () {\n        return this.errorList.length;\n      },\n      focusInvalid: function () {\n        if (this.settings.focusInvalid) {\n          try {\n            $(this.findLastActive() || this.errorList.length && this.errorList[0].element || []).filter(":visible").trigger("focus") // Manually trigger focusin event; without it, focusin handler isn\'t called, findLastActive won\'t have anything to find\n            .trigger("focusin");\n          } catch (e) {// Ignore IE throwing errors when focusing hidden elements\n          }\n        }\n      },\n      findLastActive: function () {\n        var lastActive = this.lastActive;\n        return lastActive && $.grep(this.errorList, function (n) {\n          return n.element.name === lastActive.name;\n        }).length === 1 && lastActive;\n      },\n      elements: function () {\n        var validator = this,\n            rulesCache = {}; // Select all valid inputs inside the form (no submit or reset buttons)\n\n        return $(this.currentForm).find("input, select, textarea, [contenteditable]").not(":submit, :reset, :image, :disabled").not(this.settings.ignore).filter(function () {\n          var name = this.name || $(this).attr("name"); // For contenteditable\n\n          var isContentEditable = typeof $(this).attr("contenteditable") !== "undefined" && $(this).attr("contenteditable") !== "false";\n\n          if (!name && validator.settings.debug && window.console) {\n            console.error("%o has no name assigned", this);\n          } // Set form expando on contenteditable\n\n\n          if (isContentEditable) {\n            this.form = $(this).closest("form")[0];\n            this.name = name;\n          } // Ignore elements that belong to other/nested forms\n\n\n          if (this.form !== validator.currentForm) {\n            return false;\n          } // Select only the first element for each name, and only those with rules specified\n\n\n          if (name in rulesCache || !validator.objectLength($(this).rules())) {\n            return false;\n          }\n\n          rulesCache[name] = true;\n          return true;\n        });\n      },\n      clean: function (selector) {\n        return $(selector)[0];\n      },\n      errors: function () {\n        var errorClass = this.settings.errorClass.split(" ").join(".");\n        return $(this.settings.errorElement + "." + errorClass, this.errorContext);\n      },\n      resetInternals: function () {\n        this.successList = [];\n        this.errorList = [];\n        this.errorMap = {};\n        this.toShow = $([]);\n        this.toHide = $([]);\n      },\n      reset: function () {\n        this.resetInternals();\n        this.currentElements = $([]);\n      },\n      prepareForm: function () {\n        this.reset();\n        this.toHide = this.errors().add(this.containers);\n      },\n      prepareElement: function (element) {\n        this.reset();\n        this.toHide = this.errorsFor(element);\n      },\n      elementValue: function (element) {\n        var $element = $(element),\n            type = element.type,\n            isContentEditable = typeof $element.attr("contenteditable") !== "undefined" && $element.attr("contenteditable") !== "false",\n            val,\n            idx;\n\n        if (type === "radio" || type === "checkbox") {\n          return this.findByName(element.name).filter(":checked").val();\n        } else if (type === "number" && typeof element.validity !== "undefined") {\n          return element.validity.badInput ? "NaN" : $element.val();\n        }\n\n        if (isContentEditable) {\n          val = $element.text();\n        } else {\n          val = $element.val();\n        }\n\n        if (type === "file") {\n          // Modern browser (chrome & safari)\n          if (val.substr(0, 12) === "C:\\\\fakepath\\\\") {\n            return val.substr(12);\n          } // Legacy browsers\n          // Unix-based path\n\n\n          idx = val.lastIndexOf("/");\n\n          if (idx >= 0) {\n            return val.substr(idx + 1);\n          } // Windows-based path\n\n\n          idx = val.lastIndexOf("\\\\");\n\n          if (idx >= 0) {\n            return val.substr(idx + 1);\n          } // Just the file name\n\n\n          return val;\n        }\n\n        if (typeof val === "string") {\n          return val.replace(/\\r/g, "");\n        }\n\n        return val;\n      },\n      check: function (element) {\n        element = this.validationTargetFor(this.clean(element));\n        var rules = $(element).rules(),\n            rulesCount = $.map(rules, function (n, i) {\n          return i;\n        }).length,\n            dependencyMismatch = false,\n            val = this.elementValue(element),\n            result,\n            method,\n            rule,\n            normalizer; // Prioritize the local normalizer defined for this element over the global one\n        // if the former exists, otherwise user the global one in case it exists.\n\n        if (typeof rules.normalizer === "function") {\n          normalizer = rules.normalizer;\n        } else if (typeof this.settings.normalizer === "function") {\n          normalizer = this.settings.normalizer;\n        } // If normalizer is defined, then call it to retreive the changed value instead\n        // of using the real one.\n        // Note that `this` in the normalizer is `element`.\n\n\n        if (normalizer) {\n          val = normalizer.call(element, val); // Delete the normalizer from rules to avoid treating it as a pre-defined method.\n\n          delete rules.normalizer;\n        }\n\n        for (method in rules) {\n          rule = {\n            method: method,\n            parameters: rules[method]\n          };\n\n          try {\n            result = $.validator.methods[method].call(this, val, element, rule.parameters); // If a method indicates that the field is optional and therefore valid,\n            // don\'t mark it as valid when there are no other rules\n\n            if (result === "dependency-mismatch" && rulesCount === 1) {\n              dependencyMismatch = true;\n              continue;\n            }\n\n            dependencyMismatch = false;\n\n            if (result === "pending") {\n              this.toHide = this.toHide.not(this.errorsFor(element));\n              return;\n            }\n\n            if (!result) {\n              this.formatAndAdd(element, rule);\n              return false;\n            }\n          } catch (e) {\n            if (this.settings.debug && window.console) {\n              console.log("Exception occurred when checking element " + element.id + ", check the \'" + rule.method + "\' method.", e);\n            }\n\n            if (e instanceof TypeError) {\n              e.message += ".  Exception occurred when checking element " + element.id + ", check the \'" + rule.method + "\' method.";\n            }\n\n            throw e;\n          }\n        }\n\n        if (dependencyMismatch) {\n          return;\n        }\n\n        if (this.objectLength(rules)) {\n          this.successList.push(element);\n        }\n\n        return true;\n      },\n      // Return the custom message for the given element and validation method\n      // specified in the element\'s HTML5 data attribute\n      // return the generic message if present and no method specific message is present\n      customDataMessage: function (element, method) {\n        return $(element).data("msg" + method.charAt(0).toUpperCase() + method.substring(1).toLowerCase()) || $(element).data("msg");\n      },\n      // Return the custom message for the given element name and validation method\n      customMessage: function (name, method) {\n        var m = this.settings.messages[name];\n        return m && (m.constructor === String ? m : m[method]);\n      },\n      // Return the first defined argument, allowing empty strings\n      findDefined: function () {\n        for (var i = 0; i < arguments.length; i++) {\n          if (arguments[i] !== undefined) {\n            return arguments[i];\n          }\n        }\n\n        return undefined;\n      },\n      // The second parameter \'rule\' used to be a string, and extended to an object literal\n      // of the following form:\n      // rule = {\n      //     method: "method name",\n      //     parameters: "the given method parameters"\n      // }\n      //\n      // The old behavior still supported, kept to maintain backward compatibility with\n      // old code, and will be removed in the next major release.\n      defaultMessage: function (element, rule) {\n        if (typeof rule === "string") {\n          rule = {\n            method: rule\n          };\n        }\n\n        var message = this.findDefined(this.customMessage(element.name, rule.method), this.customDataMessage(element, rule.method), // \'title\' is never undefined, so handle empty string as undefined\n        !this.settings.ignoreTitle && element.title || undefined, $.validator.messages[rule.method], "<strong>Warning: No message defined for " + element.name + "<\/strong>"),\n            theregex = /\\$?\\{(\\d+)\\}/g;\n\n        if (typeof message === "function") {\n          message = message.call(this, rule.parameters, element);\n        } else if (theregex.test(message)) {\n          message = $.validator.format(message.replace(theregex, "{$1}"), rule.parameters);\n        }\n\n        return message;\n      },\n      formatAndAdd: function (element, rule) {\n        var message = this.defaultMessage(element, rule);\n        this.errorList.push({\n          message: message,\n          element: element,\n          method: rule.method\n        });\n        this.errorMap[element.name] = message;\n        this.submitted[element.name] = message;\n      },\n      addWrapper: function (toToggle) {\n        if (this.settings.wrapper) {\n          toToggle = toToggle.add(toToggle.parent(this.settings.wrapper));\n        }\n\n        return toToggle;\n      },\n      defaultShowErrors: function () {\n        var i, elements, error;\n\n        for (i = 0; this.errorList[i]; i++) {\n          error = this.errorList[i];\n\n          if (this.settings.highlight) {\n            this.settings.highlight.call(this, error.element, this.settings.errorClass, this.settings.validClass);\n          }\n\n          this.showLabel(error.element, error.message);\n        }\n\n        if (this.errorList.length) {\n          this.toShow = this.toShow.add(this.containers);\n        }\n\n        if (this.settings.success) {\n          for (i = 0; this.successList[i]; i++) {\n            this.showLabel(this.successList[i]);\n          }\n        }\n\n        if (this.settings.unhighlight) {\n          for (i = 0, elements = this.validElements(); elements[i]; i++) {\n            this.settings.unhighlight.call(this, elements[i], this.settings.errorClass, this.settings.validClass);\n          }\n        }\n\n        this.toHide = this.toHide.not(this.toShow);\n        this.hideErrors();\n        this.addWrapper(this.toShow).show();\n      },\n      validElements: function () {\n        return this.currentElements.not(this.invalidElements());\n      },\n      invalidElements: function () {\n        return $(this.errorList).map(function () {\n          return this.element;\n        });\n      },\n      showLabel: function (element, message) {\n        var place,\n            group,\n            errorID,\n            v,\n            error = this.errorsFor(element),\n            elementID = this.idOrName(element),\n            describedBy = $(element).attr("aria-describedby");\n\n        if (error.length) {\n          // Refresh error/success class\n          error.removeClass(this.settings.validClass).addClass(this.settings.errorClass); // Replace message on existing label\n\n          error.html(message);\n        } else {\n          // Create error element\n          error = $("<" + this.settings.errorElement + ">").attr("id", elementID + "-error").addClass(this.settings.errorClass).html(message || ""); // Maintain reference to the element to be placed into the DOM\n\n          place = error;\n\n          if (this.settings.wrapper) {\n            // Make sure the element is visible, even in IE\n            // actually showing the wrapped element is handled elsewhere\n            place = error.hide().show().wrap("<" + this.settings.wrapper + "/>").parent();\n          }\n\n          if (this.labelContainer.length) {\n            this.labelContainer.append(place);\n          } else if (this.settings.errorPlacement) {\n            this.settings.errorPlacement.call(this, place, $(element));\n          } else {\n            place.insertAfter(element);\n          } // Link error back to the element\n\n\n          if (error.is("label")) {\n            // If the error is a label, then associate using \'for\'\n            error.attr("for", elementID); // If the element is not a child of an associated label, then it\'s necessary\n            // to explicitly apply aria-describedby\n          } else if (error.parents("label[for=\'" + this.escapeCssMeta(elementID) + "\']").length === 0) {\n            errorID = error.attr("id"); // Respect existing non-error aria-describedby\n\n            if (!describedBy) {\n              describedBy = errorID;\n            } else if (!describedBy.match(new RegExp("\\\\b" + this.escapeCssMeta(errorID) + "\\\\b"))) {\n              // Add to end of list if not already present\n              describedBy += " " + errorID;\n            }\n\n            $(element).attr("aria-describedby", describedBy); // If this element is grouped, then assign to all elements in the same group\n\n            group = this.groups[element.name];\n\n            if (group) {\n              v = this;\n              $.each(v.groups, function (name, testgroup) {\n                if (testgroup === group) {\n                  $("[name=\'" + v.escapeCssMeta(name) + "\']", v.currentForm).attr("aria-describedby", error.attr("id"));\n                }\n              });\n            }\n          }\n        }\n\n        if (!message && this.settings.success) {\n          error.text("");\n\n          if (typeof this.settings.success === "string") {\n            error.addClass(this.settings.success);\n          } else {\n            this.settings.success(error, element);\n          }\n        }\n\n        this.toShow = this.toShow.add(error);\n      },\n      errorsFor: function (element) {\n        var name = this.escapeCssMeta(this.idOrName(element)),\n            describer = $(element).attr("aria-describedby"),\n            selector = "label[for=\'" + name + "\'], label[for=\'" + name + "\'] *"; // \'aria-describedby\' should directly reference the error element\n\n        if (describer) {\n          selector = selector + ", #" + this.escapeCssMeta(describer).replace(/\\s+/g, ", #");\n        }\n\n        return this.errors().filter(selector);\n      },\n      // See https://api.jquery.com/category/selectors/, for CSS\n      // meta-characters that should be escaped in order to be used with JQuery\n      // as a literal part of a name/id or any selector.\n      escapeCssMeta: function (string) {\n        return string.replace(/([\\\\!"#$%&\'()*+,./:;<=>?@\\[\\]^`{|}~])/g, "\\\\$1");\n      },\n      idOrName: function (element) {\n        return this.groups[element.name] || (this.checkable(element) ? element.name : element.id || element.name);\n      },\n      validationTargetFor: function (element) {\n        // If radio/checkbox, validate first element in group instead\n        if (this.checkable(element)) {\n          element = this.findByName(element.name);\n        } // Always apply ignore filter\n\n\n        return $(element).not(this.settings.ignore)[0];\n      },\n      checkable: function (element) {\n        return /radio|checkbox/i.test(element.type);\n      },\n      findByName: function (name) {\n        return $(this.currentForm).find("[name=\'" + this.escapeCssMeta(name) + "\']");\n      },\n      getLength: function (value, element) {\n        switch (element.nodeName.toLowerCase()) {\n          case "select":\n            return $("option:selected", element).length;\n\n          case "input":\n            if (this.checkable(element)) {\n              return this.findByName(element.name).filter(":checked").length;\n            }\n\n        }\n\n        return value.length;\n      },\n      depend: function (param, element) {\n        return this.dependTypes[typeof param] ? this.dependTypes[typeof param](param, element) : true;\n      },\n      dependTypes: {\n        "boolean": function (param) {\n          return param;\n        },\n        "string": function (param, element) {\n          return !!$(param, element.form).length;\n        },\n        "function": function (param, element) {\n          return param(element);\n        }\n      },\n      optional: function (element) {\n        var val = this.elementValue(element);\n        return !$.validator.methods.required.call(this, val, element) && "dependency-mismatch";\n      },\n      startRequest: function (element) {\n        if (!this.pending[element.name]) {\n          this.pendingRequest++;\n          $(element).addClass(this.settings.pendingClass);\n          this.pending[element.name] = true;\n        }\n      },\n      stopRequest: function (element, valid) {\n        this.pendingRequest--; // Sometimes synchronization fails, make sure pendingRequest is never < 0\n\n        if (this.pendingRequest < 0) {\n          this.pendingRequest = 0;\n        }\n\n        delete this.pending[element.name];\n        $(element).removeClass(this.settings.pendingClass);\n\n        if (valid && this.pendingRequest === 0 && this.formSubmitted && this.form()) {\n          $(this.currentForm).submit(); // Remove the hidden input that was used as a replacement for the\n          // missing submit button. The hidden input is added by `handle()`\n          // to ensure that the value of the used submit button is passed on\n          // for scripted submits triggered by this method\n\n          if (this.submitButton) {\n            $("input:hidden[name=\'" + this.submitButton.name + "\']", this.currentForm).remove();\n          }\n\n          this.formSubmitted = false;\n        } else if (!valid && this.pendingRequest === 0 && this.formSubmitted) {\n          $(this.currentForm).triggerHandler("invalid-form", [this]);\n          this.formSubmitted = false;\n        }\n      },\n      previousValue: function (element, method) {\n        method = typeof method === "string" && method || "remote";\n        return $.data(element, "previousValue") || $.data(element, "previousValue", {\n          old: null,\n          valid: true,\n          message: this.defaultMessage(element, {\n            method: method\n          })\n        });\n      },\n      // Cleans up all forms and elements, removes validator-specific events\n      destroy: function () {\n        this.resetForm();\n        $(this.currentForm).off(".validate").removeData("validator").find(".validate-equalTo-blur").off(".validate-equalTo").removeClass("validate-equalTo-blur").find(".validate-lessThan-blur").off(".validate-lessThan").removeClass("validate-lessThan-blur").find(".validate-lessThanEqual-blur").off(".validate-lessThanEqual").removeClass("validate-lessThanEqual-blur").find(".validate-greaterThanEqual-blur").off(".validate-greaterThanEqual").removeClass("validate-greaterThanEqual-blur").find(".validate-greaterThan-blur").off(".validate-greaterThan").removeClass("validate-greaterThan-blur");\n      }\n    },\n    classRuleSettings: {\n      required: {\n        required: true\n      },\n      email: {\n        email: true\n      },\n      url: {\n        url: true\n      },\n      date: {\n        date: true\n      },\n      dateISO: {\n        dateISO: true\n      },\n      number: {\n        number: true\n      },\n      digits: {\n        digits: true\n      },\n      creditcard: {\n        creditcard: true\n      }\n    },\n    addClassRules: function (className, rules) {\n      if (className.constructor === String) {\n        this.classRuleSettings[className] = rules;\n      } else {\n        $.extend(this.classRuleSettings, className);\n      }\n    },\n    classRules: function (element) {\n      var rules = {},\n          classes = $(element).attr("class");\n\n      if (classes) {\n        $.each(classes.split(" "), function () {\n          if (this in $.validator.classRuleSettings) {\n            $.extend(rules, $.validator.classRuleSettings[this]);\n          }\n        });\n      }\n\n      return rules;\n    },\n    normalizeAttributeRule: function (rules, type, method, value) {\n      // Convert the value to a number for number inputs, and for text for backwards compability\n      // allows type="date" and others to be compared as strings\n      if (/min|max|step/.test(method) && (type === null || /number|range|text/.test(type))) {\n        value = Number(value); // Support Opera Mini, which returns NaN for undefined minlength\n\n        if (isNaN(value)) {\n          value = undefined;\n        }\n      }\n\n      if (value || value === 0) {\n        rules[method] = value;\n      } else if (type === method && type !== "range") {\n        // Exception: the jquery validate \'range\' method\n        // does not test for the html5 \'range\' type\n        rules[method] = true;\n      }\n    },\n    attributeRules: function (element) {\n      var rules = {},\n          $element = $(element),\n          type = element.getAttribute("type"),\n          method,\n          value;\n\n      for (method in $.validator.methods) {\n        // Support for <input required> in both html5 and older browsers\n        if (method === "required") {\n          value = element.getAttribute(method); // Some browsers return an empty string for the required attribute\n          // and non-HTML5 browsers might have required="" markup\n\n          if (value === "") {\n            value = true;\n          } // Force non-HTML5 browsers to return bool\n\n\n          value = !!value;\n        } else {\n          value = $element.attr(method);\n        }\n\n        this.normalizeAttributeRule(rules, type, method, value);\n      } // \'maxlength\' may be returned as -1, 2147483647 ( IE ) and 524288 ( safari ) for text inputs\n\n\n      if (rules.maxlength && /-1|2147483647|524288/.test(rules.maxlength)) {\n        delete rules.maxlength;\n      }\n\n      return rules;\n    },\n    dataRules: function (element) {\n      var rules = {},\n          $element = $(element),\n          type = element.getAttribute("type"),\n          method,\n          value;\n\n      for (method in $.validator.methods) {\n        value = $element.data("rule" + method.charAt(0).toUpperCase() + method.substring(1).toLowerCase()); // Cast empty attributes like `data-rule-required` to `true`\n\n        if (value === "") {\n          value = true;\n        }\n\n        this.normalizeAttributeRule(rules, type, method, value);\n      }\n\n      return rules;\n    },\n    staticRules: function (element) {\n      var rules = {},\n          validator = $.data(element.form, "validator");\n\n      if (validator.settings.rules) {\n        rules = $.validator.normalizeRule(validator.settings.rules[element.name]) || {};\n      }\n\n      return rules;\n    },\n    normalizeRules: function (rules, element) {\n      // Handle dependency check\n      $.each(rules, function (prop, val) {\n        // Ignore rule when param is explicitly false, eg. required:false\n        if (val === false) {\n          delete rules[prop];\n          return;\n        }\n\n        if (val.param || val.depends) {\n          var keepRule = true;\n\n          switch (typeof val.depends) {\n            case "string":\n              keepRule = !!$(val.depends, element.form).length;\n              break;\n\n            case "function":\n              keepRule = val.depends.call(element, element);\n              break;\n          }\n\n          if (keepRule) {\n            rules[prop] = val.param !== undefined ? val.param : true;\n          } else {\n            $.data(element.form, "validator").resetElements($(element));\n            delete rules[prop];\n          }\n        }\n      }); // Evaluate parameters\n\n      $.each(rules, function (rule, parameter) {\n        rules[rule] = typeof parameter === "function" && rule !== "normalizer" ? parameter(element) : parameter;\n      }); // Clean number parameters\n\n      $.each(["minlength", "maxlength"], function () {\n        if (rules[this]) {\n          rules[this] = Number(rules[this]);\n        }\n      });\n      $.each(["rangelength", "range"], function () {\n        var parts;\n\n        if (rules[this]) {\n          if (Array.isArray(rules[this])) {\n            rules[this] = [Number(rules[this][0]), Number(rules[this][1])];\n          } else if (typeof rules[this] === "string") {\n            parts = rules[this].replace(/[\\[\\]]/g, "").split(/[\\s,]+/);\n            rules[this] = [Number(parts[0]), Number(parts[1])];\n          }\n        }\n      });\n\n      if ($.validator.autoCreateRanges) {\n        // Auto-create ranges\n        if (rules.min != null && rules.max != null) {\n          rules.range = [rules.min, rules.max];\n          delete rules.min;\n          delete rules.max;\n        }\n\n        if (rules.minlength != null && rules.maxlength != null) {\n          rules.rangelength = [rules.minlength, rules.maxlength];\n          delete rules.minlength;\n          delete rules.maxlength;\n        }\n      }\n\n      return rules;\n    },\n    // Converts a simple string to a {string: true} rule, e.g., "required" to {required:true}\n    normalizeRule: function (data) {\n      if (typeof data === "string") {\n        var transformed = {};\n        $.each(data.split(/\\s/), function () {\n          transformed[this] = true;\n        });\n        data = transformed;\n      }\n\n      return data;\n    },\n    // https://jqueryvalidation.org/jQuery.validator.addMethod/\n    addMethod: function (name, method, message) {\n      $.validator.methods[name] = method;\n      $.validator.messages[name] = message !== undefined ? message : $.validator.messages[name];\n\n      if (method.length < 3) {\n        $.validator.addClassRules(name, $.validator.normalizeRule(name));\n      }\n    },\n    // https://jqueryvalidation.org/jQuery.validator.methods/\n    methods: {\n      // https://jqueryvalidation.org/required-method/\n      required: function (value, element, param) {\n        // Check if dependency is met\n        if (!this.depend(param, element)) {\n          return "dependency-mismatch";\n        }\n\n        if (element.nodeName.toLowerCase() === "select") {\n          // Could be an array for select-multiple or a string, both are fine this way\n          var val = $(element).val();\n          return val && val.length > 0;\n        }\n\n        if (this.checkable(element)) {\n          return this.getLength(value, element) > 0;\n        }\n\n        return value !== undefined && value !== null && value.length > 0;\n      },\n      // https://jqueryvalidation.org/email-method/\n      email: function (value, element) {\n        // From https://html.spec.whatwg.org/multipage/forms.html#valid-e-mail-address\n        // Retrieved 2014-01-14\n        // If you have a problem with this implementation, report a bug against the above spec\n        // Or use custom methods to implement your own email validation\n        return this.optional(element) || /^[a-zA-Z0-9.!#$%&\'*+\\/=?^_`{|}~-]+@[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?(?:\\.[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?)*$/.test(value);\n      },\n      // https://jqueryvalidation.org/url-method/\n      url: function (value, element) {\n        // Copyright (c) 2010-2013 Diego Perini, MIT licensed\n        // https://gist.github.com/dperini/729294\n        // see also https://mathiasbynens.be/demo/url-regex\n        // modified to allow protocol-relative URLs\n        return this.optional(element) || /^(?:(?:(?:https?|ftp):)?\\/\\/)(?:\\S+(?::\\S*)?@)?(?:(?!(?:10|127)(?:\\.\\d{1,3}){3})(?!(?:169\\.254|192\\.168)(?:\\.\\d{1,3}){2})(?!172\\.(?:1[6-9]|2\\d|3[0-1])(?:\\.\\d{1,3}){2})(?:[1-9]\\d?|1\\d\\d|2[01]\\d|22[0-3])(?:\\.(?:1?\\d{1,2}|2[0-4]\\d|25[0-5])){2}(?:\\.(?:[1-9]\\d?|1\\d\\d|2[0-4]\\d|25[0-4]))|(?:(?:[a-z0-9\\u00a1-\\uffff][a-z0-9\\u00a1-\\uffff_-]{0,62})?[a-z0-9\\u00a1-\\uffff]\\.)+(?:[a-z\\u00a1-\\uffff]{2,}\\.?))(?::\\d{2,5})?(?:[/?#]\\S*)?$/i.test(value);\n      },\n      // https://jqueryvalidation.org/date-method/\n      date: function () {\n        var called = false;\n        return function (value, element) {\n          if (!called) {\n            called = true;\n\n            if (this.settings.debug && window.console) {\n              console.warn("The `date` method is deprecated and will be removed in version \'2.0.0\'.\\n" + "Please don\'t use it, since it relies on the Date constructor, which\\n" + "behaves very differently across browsers and locales. Use `dateISO`\\n" + "instead or one of the locale specific methods in `localizations/`\\n" + "and `additional-methods.js`.");\n            }\n          }\n\n          return this.optional(element) || !/Invalid|NaN/.test(new Date(value).toString());\n        };\n      }(),\n      // https://jqueryvalidation.org/dateISO-method/\n      dateISO: function (value, element) {\n        return this.optional(element) || /^\\d{4}[\\/\\-](0?[1-9]|1[012])[\\/\\-](0?[1-9]|[12][0-9]|3[01])$/.test(value);\n      },\n      // https://jqueryvalidation.org/number-method/\n      number: function (value, element) {\n        return this.optional(element) || /^(?:-?\\d+|-?\\d{1,3}(?:,\\d{3})+)?(?:\\.\\d+)?$/.test(value);\n      },\n      // https://jqueryvalidation.org/digits-method/\n      digits: function (value, element) {\n        return this.optional(element) || /^\\d+$/.test(value);\n      },\n      // https://jqueryvalidation.org/minlength-method/\n      minlength: function (value, element, param) {\n        var length = Array.isArray(value) ? value.length : this.getLength(value, element);\n        return this.optional(element) || length >= param;\n      },\n      // https://jqueryvalidation.org/maxlength-method/\n      maxlength: function (value, element, param) {\n        var length = Array.isArray(value) ? value.length : this.getLength(value, element);\n        return this.optional(element) || length <= param;\n      },\n      // https://jqueryvalidation.org/rangelength-method/\n      rangelength: function (value, element, param) {\n        var length = Array.isArray(value) ? value.length : this.getLength(value, element);\n        return this.optional(element) || length >= param[0] && length <= param[1];\n      },\n      // https://jqueryvalidation.org/min-method/\n      min: function (value, element, param) {\n        return this.optional(element) || value >= param;\n      },\n      // https://jqueryvalidation.org/max-method/\n      max: function (value, element, param) {\n        return this.optional(element) || value <= param;\n      },\n      // https://jqueryvalidation.org/range-method/\n      range: function (value, element, param) {\n        return this.optional(element) || value >= param[0] && value <= param[1];\n      },\n      // https://jqueryvalidation.org/step-method/\n      step: function (value, element, param) {\n        var type = $(element).attr("type"),\n            errorMessage = "Step attribute on input type " + type + " is not supported.",\n            supportedTypes = ["text", "number", "range"],\n            re = new RegExp("\\\\b" + type + "\\\\b"),\n            notSupported = type && !re.test(supportedTypes.join()),\n            decimalPlaces = function (num) {\n          var match = ("" + num).match(/(?:\\.(\\d+))?$/);\n\n          if (!match) {\n            return 0;\n          } // Number of digits right of decimal point.\n\n\n          return match[1] ? match[1].length : 0;\n        },\n            toInt = function (num) {\n          return Math.round(num * Math.pow(10, decimals));\n        },\n            valid = true,\n            decimals; // Works only for text, number and range input types\n        // TODO find a way to support input types date, datetime, datetime-local, month, time and week\n\n\n        if (notSupported) {\n          throw new Error(errorMessage);\n        }\n\n        decimals = decimalPlaces(param); // Value can\'t have too many decimals\n\n        if (decimalPlaces(value) > decimals || toInt(value) % toInt(param) !== 0) {\n          valid = false;\n        }\n\n        return this.optional(element) || valid;\n      },\n      // https://jqueryvalidation.org/equalTo-method/\n      equalTo: function (value, element, param) {\n        // Bind to the blur event of the target in order to revalidate whenever the target field is updated\n        var target = $(param);\n\n        if (this.settings.onfocusout && target.not(".validate-equalTo-blur").length) {\n          target.addClass("validate-equalTo-blur").on("blur.validate-equalTo", function () {\n            $(element).valid();\n          });\n        }\n\n        return value === target.val();\n      },\n      // https://jqueryvalidation.org/remote-method/\n      remote: function (value, element, param, method) {\n        if (this.optional(element)) {\n          return "dependency-mismatch";\n        }\n\n        method = typeof method === "string" && method || "remote";\n        var previous = this.previousValue(element, method),\n            validator,\n            data,\n            optionDataString;\n\n        if (!this.settings.messages[element.name]) {\n          this.settings.messages[element.name] = {};\n        }\n\n        previous.originalMessage = previous.originalMessage || this.settings.messages[element.name][method];\n        this.settings.messages[element.name][method] = previous.message;\n        param = typeof param === "string" && {\n          url: param\n        } || param;\n        optionDataString = $.param($.extend({\n          data: value\n        }, param.data));\n\n        if (previous.old === optionDataString) {\n          return previous.valid;\n        }\n\n        previous.old = optionDataString;\n        validator = this;\n        this.startRequest(element);\n        data = {};\n        data[element.name] = value;\n        $.ajax($.extend(true, {\n          mode: "abort",\n          port: "validate" + element.name,\n          dataType: "json",\n          data: data,\n          context: validator.currentForm,\n          success: function (response) {\n            var valid = response === true || response === "true",\n                errors,\n                message,\n                submitted;\n            validator.settings.messages[element.name][method] = previous.originalMessage;\n\n            if (valid) {\n              submitted = validator.formSubmitted;\n              validator.resetInternals();\n              validator.toHide = validator.errorsFor(element);\n              validator.formSubmitted = submitted;\n              validator.successList.push(element);\n              validator.invalid[element.name] = false;\n              validator.showErrors();\n            } else {\n              errors = {};\n              message = response || validator.defaultMessage(element, {\n                method: method,\n                parameters: value\n              });\n              errors[element.name] = previous.message = message;\n              validator.invalid[element.name] = true;\n              validator.showErrors(errors);\n            }\n\n            previous.valid = valid;\n            validator.stopRequest(element, valid);\n          }\n        }, param));\n        return "pending";\n      }\n    }\n  }); // Ajax mode: abort\n  // usage: $.ajax({ mode: "abort"[, port: "uniqueport"]});\n  // if mode:"abort" is used, the previous request on that port (port can be undefined) is aborted via XMLHttpRequest.abort()\n\n  var pendingRequests = {},\n      ajax; // Use a prefilter if available (1.5+)\n\n  if ($.ajaxPrefilter) {\n    $.ajaxPrefilter(function (settings, _, xhr) {\n      var port = settings.port;\n\n      if (settings.mode === "abort") {\n        if (pendingRequests[port]) {\n          pendingRequests[port].abort();\n        }\n\n        pendingRequests[port] = xhr;\n      }\n    });\n  } else {\n    // Proxy ajax\n    ajax = $.ajax;\n\n    $.ajax = function (settings) {\n      var mode = ("mode" in settings ? settings : $.ajaxSettings).mode,\n          port = ("port" in settings ? settings : $.ajaxSettings).port;\n\n      if (mode === "abort") {\n        if (pendingRequests[port]) {\n          pendingRequests[port].abort();\n        }\n\n        pendingRequests[port] = ajax.apply(this, arguments);\n        return pendingRequests[port];\n      }\n\n      return ajax.apply(this, arguments);\n    };\n  }\n\n  return $;\n});\n\n//# sourceURL=webpack:///./node_modules/jquery-validation/dist/jquery.validate.js?')},"./node_modules/jquery/dist/jquery.js":function(module,exports,__webpack_require__){eval('var __WEBPACK_AMD_DEFINE_ARRAY__, __WEBPACK_AMD_DEFINE_RESULT__;/*!\n * jQuery JavaScript Library v3.5.1\n * https://jquery.com/\n *\n * Includes Sizzle.js\n * https://sizzlejs.com/\n *\n * Copyright JS Foundation and other contributors\n * Released under the MIT license\n * https://jquery.org/license\n *\n * Date: 2020-05-04T22:49Z\n */\n(function (global, factory) {\n  "use strict";\n\n  if ( true && typeof module.exports === "object") {\n    // For CommonJS and CommonJS-like environments where a proper `window`\n    // is present, execute the factory and get jQuery.\n    // For environments that do not have a `window` with a `document`\n    // (such as Node.js), expose a factory as module.exports.\n    // This accentuates the need for the creation of a real `window`.\n    // e.g. var jQuery = require("jquery")(window);\n    // See ticket #14549 for more info.\n    module.exports = global.document ? factory(global, true) : function (w) {\n      if (!w.document) {\n        throw new Error("jQuery requires a window with a document");\n      }\n\n      return factory(w);\n    };\n  } else {\n    factory(global);\n  } // Pass this if window is not defined yet\n\n})(typeof window !== "undefined" ? window : this, function (window, noGlobal) {\n  // Edge <= 12 - 13+, Firefox <=18 - 45+, IE 10 - 11, Safari 5.1 - 9+, iOS 6 - 9.1\n  // throw exceptions when non-strict code (e.g., ASP.NET 4.5) accesses strict mode\n  // arguments.callee.caller (trac-13335). But as of jQuery 3.0 (2016), strict mode should be common\n  // enough that all such attempts are guarded in a try block.\n  "use strict";\n\n  var arr = [];\n  var getProto = Object.getPrototypeOf;\n  var slice = arr.slice;\n  var flat = arr.flat ? function (array) {\n    return arr.flat.call(array);\n  } : function (array) {\n    return arr.concat.apply([], array);\n  };\n  var push = arr.push;\n  var indexOf = arr.indexOf;\n  var class2type = {};\n  var toString = class2type.toString;\n  var hasOwn = class2type.hasOwnProperty;\n  var fnToString = hasOwn.toString;\n  var ObjectFunctionString = fnToString.call(Object);\n  var support = {};\n\n  var isFunction = function isFunction(obj) {\n    // Support: Chrome <=57, Firefox <=52\n    // In some browsers, typeof returns "function" for HTML <object> elements\n    // (i.e., `typeof document.createElement( "object" ) === "function"`).\n    // We don\'t want to classify *any* DOM node as a function.\n    return typeof obj === "function" && typeof obj.nodeType !== "number";\n  };\n\n  var isWindow = function isWindow(obj) {\n    return obj != null && obj === obj.window;\n  };\n\n  var document = window.document;\n  var preservedScriptAttributes = {\n    type: true,\n    src: true,\n    nonce: true,\n    noModule: true\n  };\n\n  function DOMEval(code, node, doc) {\n    doc = doc || document;\n    var i,\n        val,\n        script = doc.createElement("script");\n    script.text = code;\n\n    if (node) {\n      for (i in preservedScriptAttributes) {\n        // Support: Firefox 64+, Edge 18+\n        // Some browsers don\'t support the "nonce" property on scripts.\n        // On the other hand, just using `getAttribute` is not enough as\n        // the `nonce` attribute is reset to an empty string whenever it\n        // becomes browsing-context connected.\n        // See https://github.com/whatwg/html/issues/2369\n        // See https://html.spec.whatwg.org/#nonce-attributes\n        // The `node.getAttribute` check was added for the sake of\n        // `jQuery.globalEval` so that it can fake a nonce-containing node\n        // via an object.\n        val = node[i] || node.getAttribute && node.getAttribute(i);\n\n        if (val) {\n          script.setAttribute(i, val);\n        }\n      }\n    }\n\n    doc.head.appendChild(script).parentNode.removeChild(script);\n  }\n\n  function toType(obj) {\n    if (obj == null) {\n      return obj + "";\n    } // Support: Android <=2.3 only (functionish RegExp)\n\n\n    return typeof obj === "object" || typeof obj === "function" ? class2type[toString.call(obj)] || "object" : typeof obj;\n  }\n  /* global Symbol */\n  // Defining this global in .eslintrc.json would create a danger of using the global\n  // unguarded in another place, it seems safer to define global only for this module\n\n\n  var version = "3.5.1",\n      // Define a local copy of jQuery\n  jQuery = function (selector, context) {\n    // The jQuery object is actually just the init constructor \'enhanced\'\n    // Need init if jQuery is called (just allow error to be thrown if not included)\n    return new jQuery.fn.init(selector, context);\n  };\n\n  jQuery.fn = jQuery.prototype = {\n    // The current version of jQuery being used\n    jquery: version,\n    constructor: jQuery,\n    // The default length of a jQuery object is 0\n    length: 0,\n    toArray: function () {\n      return slice.call(this);\n    },\n    // Get the Nth element in the matched element set OR\n    // Get the whole matched element set as a clean array\n    get: function (num) {\n      // Return all the elements in a clean array\n      if (num == null) {\n        return slice.call(this);\n      } // Return just the one element from the set\n\n\n      return num < 0 ? this[num + this.length] : this[num];\n    },\n    // Take an array of elements and push it onto the stack\n    // (returning the new matched element set)\n    pushStack: function (elems) {\n      // Build a new jQuery matched element set\n      var ret = jQuery.merge(this.constructor(), elems); // Add the old object onto the stack (as a reference)\n\n      ret.prevObject = this; // Return the newly-formed element set\n\n      return ret;\n    },\n    // Execute a callback for every element in the matched set.\n    each: function (callback) {\n      return jQuery.each(this, callback);\n    },\n    map: function (callback) {\n      return this.pushStack(jQuery.map(this, function (elem, i) {\n        return callback.call(elem, i, elem);\n      }));\n    },\n    slice: function () {\n      return this.pushStack(slice.apply(this, arguments));\n    },\n    first: function () {\n      return this.eq(0);\n    },\n    last: function () {\n      return this.eq(-1);\n    },\n    even: function () {\n      return this.pushStack(jQuery.grep(this, function (_elem, i) {\n        return (i + 1) % 2;\n      }));\n    },\n    odd: function () {\n      return this.pushStack(jQuery.grep(this, function (_elem, i) {\n        return i % 2;\n      }));\n    },\n    eq: function (i) {\n      var len = this.length,\n          j = +i + (i < 0 ? len : 0);\n      return this.pushStack(j >= 0 && j < len ? [this[j]] : []);\n    },\n    end: function () {\n      return this.prevObject || this.constructor();\n    },\n    // For internal use only.\n    // Behaves like an Array\'s method, not like a jQuery method.\n    push: push,\n    sort: arr.sort,\n    splice: arr.splice\n  };\n\n  jQuery.extend = jQuery.fn.extend = function () {\n    var options,\n        name,\n        src,\n        copy,\n        copyIsArray,\n        clone,\n        target = arguments[0] || {},\n        i = 1,\n        length = arguments.length,\n        deep = false; // Handle a deep copy situation\n\n    if (typeof target === "boolean") {\n      deep = target; // Skip the boolean and the target\n\n      target = arguments[i] || {};\n      i++;\n    } // Handle case when target is a string or something (possible in deep copy)\n\n\n    if (typeof target !== "object" && !isFunction(target)) {\n      target = {};\n    } // Extend jQuery itself if only one argument is passed\n\n\n    if (i === length) {\n      target = this;\n      i--;\n    }\n\n    for (; i < length; i++) {\n      // Only deal with non-null/undefined values\n      if ((options = arguments[i]) != null) {\n        // Extend the base object\n        for (name in options) {\n          copy = options[name]; // Prevent Object.prototype pollution\n          // Prevent never-ending loop\n\n          if (name === "__proto__" || target === copy) {\n            continue;\n          } // Recurse if we\'re merging plain objects or arrays\n\n\n          if (deep && copy && (jQuery.isPlainObject(copy) || (copyIsArray = Array.isArray(copy)))) {\n            src = target[name]; // Ensure proper type for the source value\n\n            if (copyIsArray && !Array.isArray(src)) {\n              clone = [];\n            } else if (!copyIsArray && !jQuery.isPlainObject(src)) {\n              clone = {};\n            } else {\n              clone = src;\n            }\n\n            copyIsArray = false; // Never move original objects, clone them\n\n            target[name] = jQuery.extend(deep, clone, copy); // Don\'t bring in undefined values\n          } else if (copy !== undefined) {\n            target[name] = copy;\n          }\n        }\n      }\n    } // Return the modified object\n\n\n    return target;\n  };\n\n  jQuery.extend({\n    // Unique for each copy of jQuery on the page\n    expando: "jQuery" + (version + Math.random()).replace(/\\D/g, ""),\n    // Assume jQuery is ready without the ready module\n    isReady: true,\n    error: function (msg) {\n      throw new Error(msg);\n    },\n    noop: function () {},\n    isPlainObject: function (obj) {\n      var proto, Ctor; // Detect obvious negatives\n      // Use toString instead of jQuery.type to catch host objects\n\n      if (!obj || toString.call(obj) !== "[object Object]") {\n        return false;\n      }\n\n      proto = getProto(obj); // Objects with no prototype (e.g., `Object.create( null )`) are plain\n\n      if (!proto) {\n        return true;\n      } // Objects with prototype are plain iff they were constructed by a global Object function\n\n\n      Ctor = hasOwn.call(proto, "constructor") && proto.constructor;\n      return typeof Ctor === "function" && fnToString.call(Ctor) === ObjectFunctionString;\n    },\n    isEmptyObject: function (obj) {\n      var name;\n\n      for (name in obj) {\n        return false;\n      }\n\n      return true;\n    },\n    // Evaluates a script in a provided context; falls back to the global one\n    // if not specified.\n    globalEval: function (code, options, doc) {\n      DOMEval(code, {\n        nonce: options && options.nonce\n      }, doc);\n    },\n    each: function (obj, callback) {\n      var length,\n          i = 0;\n\n      if (isArrayLike(obj)) {\n        length = obj.length;\n\n        for (; i < length; i++) {\n          if (callback.call(obj[i], i, obj[i]) === false) {\n            break;\n          }\n        }\n      } else {\n        for (i in obj) {\n          if (callback.call(obj[i], i, obj[i]) === false) {\n            break;\n          }\n        }\n      }\n\n      return obj;\n    },\n    // results is for internal usage only\n    makeArray: function (arr, results) {\n      var ret = results || [];\n\n      if (arr != null) {\n        if (isArrayLike(Object(arr))) {\n          jQuery.merge(ret, typeof arr === "string" ? [arr] : arr);\n        } else {\n          push.call(ret, arr);\n        }\n      }\n\n      return ret;\n    },\n    inArray: function (elem, arr, i) {\n      return arr == null ? -1 : indexOf.call(arr, elem, i);\n    },\n    // Support: Android <=4.0 only, PhantomJS 1 only\n    // push.apply(_, arraylike) throws on ancient WebKit\n    merge: function (first, second) {\n      var len = +second.length,\n          j = 0,\n          i = first.length;\n\n      for (; j < len; j++) {\n        first[i++] = second[j];\n      }\n\n      first.length = i;\n      return first;\n    },\n    grep: function (elems, callback, invert) {\n      var callbackInverse,\n          matches = [],\n          i = 0,\n          length = elems.length,\n          callbackExpect = !invert; // Go through the array, only saving the items\n      // that pass the validator function\n\n      for (; i < length; i++) {\n        callbackInverse = !callback(elems[i], i);\n\n        if (callbackInverse !== callbackExpect) {\n          matches.push(elems[i]);\n        }\n      }\n\n      return matches;\n    },\n    // arg is for internal usage only\n    map: function (elems, callback, arg) {\n      var length,\n          value,\n          i = 0,\n          ret = []; // Go through the array, translating each of the items to their new values\n\n      if (isArrayLike(elems)) {\n        length = elems.length;\n\n        for (; i < length; i++) {\n          value = callback(elems[i], i, arg);\n\n          if (value != null) {\n            ret.push(value);\n          }\n        } // Go through every key on the object,\n\n      } else {\n        for (i in elems) {\n          value = callback(elems[i], i, arg);\n\n          if (value != null) {\n            ret.push(value);\n          }\n        }\n      } // Flatten any nested arrays\n\n\n      return flat(ret);\n    },\n    // A global GUID counter for objects\n    guid: 1,\n    // jQuery.support is not used in Core but other projects attach their\n    // properties to it so it needs to exist.\n    support: support\n  });\n\n  if (typeof Symbol === "function") {\n    jQuery.fn[Symbol.iterator] = arr[Symbol.iterator];\n  } // Populate the class2type map\n\n\n  jQuery.each("Boolean Number String Function Array Date RegExp Object Error Symbol".split(" "), function (_i, name) {\n    class2type["[object " + name + "]"] = name.toLowerCase();\n  });\n\n  function isArrayLike(obj) {\n    // Support: real iOS 8.2 only (not reproducible in simulator)\n    // `in` check used to prevent JIT error (gh-2145)\n    // hasOwn isn\'t used here due to false negatives\n    // regarding Nodelist length in IE\n    var length = !!obj && "length" in obj && obj.length,\n        type = toType(obj);\n\n    if (isFunction(obj) || isWindow(obj)) {\n      return false;\n    }\n\n    return type === "array" || length === 0 || typeof length === "number" && length > 0 && length - 1 in obj;\n  }\n\n  var Sizzle =\n  /*!\n   * Sizzle CSS Selector Engine v2.3.5\n   * https://sizzlejs.com/\n   *\n   * Copyright JS Foundation and other contributors\n   * Released under the MIT license\n   * https://js.foundation/\n   *\n   * Date: 2020-03-14\n   */\n  function (window) {\n    var i,\n        support,\n        Expr,\n        getText,\n        isXML,\n        tokenize,\n        compile,\n        select,\n        outermostContext,\n        sortInput,\n        hasDuplicate,\n        // Local document vars\n    setDocument,\n        document,\n        docElem,\n        documentIsHTML,\n        rbuggyQSA,\n        rbuggyMatches,\n        matches,\n        contains,\n        // Instance-specific data\n    expando = "sizzle" + 1 * new Date(),\n        preferredDoc = window.document,\n        dirruns = 0,\n        done = 0,\n        classCache = createCache(),\n        tokenCache = createCache(),\n        compilerCache = createCache(),\n        nonnativeSelectorCache = createCache(),\n        sortOrder = function (a, b) {\n      if (a === b) {\n        hasDuplicate = true;\n      }\n\n      return 0;\n    },\n        // Instance methods\n    hasOwn = {}.hasOwnProperty,\n        arr = [],\n        pop = arr.pop,\n        pushNative = arr.push,\n        push = arr.push,\n        slice = arr.slice,\n        // Use a stripped-down indexOf as it\'s faster than native\n    // https://jsperf.com/thor-indexof-vs-for/5\n    indexOf = function (list, elem) {\n      var i = 0,\n          len = list.length;\n\n      for (; i < len; i++) {\n        if (list[i] === elem) {\n          return i;\n        }\n      }\n\n      return -1;\n    },\n        booleans = "checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|" + "ismap|loop|multiple|open|readonly|required|scoped",\n        // Regular expressions\n    // http://www.w3.org/TR/css3-selectors/#whitespace\n    whitespace = "[\\\\x20\\\\t\\\\r\\\\n\\\\f]",\n        // https://www.w3.org/TR/css-syntax-3/#ident-token-diagram\n    identifier = "(?:\\\\\\\\[\\\\da-fA-F]{1,6}" + whitespace + "?|\\\\\\\\[^\\\\r\\\\n\\\\f]|[\\\\w-]|[^\\0-\\\\x7f])+",\n        // Attribute selectors: http://www.w3.org/TR/selectors/#attribute-selectors\n    attributes = "\\\\[" + whitespace + "*(" + identifier + ")(?:" + whitespace + // Operator (capture 2)\n    "*([*^$|!~]?=)" + whitespace + // "Attribute values must be CSS identifiers [capture 5]\n    // or strings [capture 3 or capture 4]"\n    "*(?:\'((?:\\\\\\\\.|[^\\\\\\\\\'])*)\'|\\"((?:\\\\\\\\.|[^\\\\\\\\\\"])*)\\"|(" + identifier + "))|)" + whitespace + "*\\\\]",\n        pseudos = ":(" + identifier + ")(?:\\\\((" + // To reduce the number of selectors needing tokenize in the preFilter, prefer arguments:\n    // 1. quoted (capture 3; capture 4 or capture 5)\n    "(\'((?:\\\\\\\\.|[^\\\\\\\\\'])*)\'|\\"((?:\\\\\\\\.|[^\\\\\\\\\\"])*)\\")|" + // 2. simple (capture 6)\n    "((?:\\\\\\\\.|[^\\\\\\\\()[\\\\]]|" + attributes + ")*)|" + // 3. anything else (capture 2)\n    ".*" + ")\\\\)|)",\n        // Leading and non-escaped trailing whitespace, capturing some non-whitespace characters preceding the latter\n    rwhitespace = new RegExp(whitespace + "+", "g"),\n        rtrim = new RegExp("^" + whitespace + "+|((?:^|[^\\\\\\\\])(?:\\\\\\\\.)*)" + whitespace + "+$", "g"),\n        rcomma = new RegExp("^" + whitespace + "*," + whitespace + "*"),\n        rcombinators = new RegExp("^" + whitespace + "*([>+~]|" + whitespace + ")" + whitespace + "*"),\n        rdescend = new RegExp(whitespace + "|>"),\n        rpseudo = new RegExp(pseudos),\n        ridentifier = new RegExp("^" + identifier + "$"),\n        matchExpr = {\n      "ID": new RegExp("^#(" + identifier + ")"),\n      "CLASS": new RegExp("^\\\\.(" + identifier + ")"),\n      "TAG": new RegExp("^(" + identifier + "|[*])"),\n      "ATTR": new RegExp("^" + attributes),\n      "PSEUDO": new RegExp("^" + pseudos),\n      "CHILD": new RegExp("^:(only|first|last|nth|nth-last)-(child|of-type)(?:\\\\(" + whitespace + "*(even|odd|(([+-]|)(\\\\d*)n|)" + whitespace + "*(?:([+-]|)" + whitespace + "*(\\\\d+)|))" + whitespace + "*\\\\)|)", "i"),\n      "bool": new RegExp("^(?:" + booleans + ")$", "i"),\n      // For use in libraries implementing .is()\n      // We use this for POS matching in `select`\n      "needsContext": new RegExp("^" + whitespace + "*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\\\(" + whitespace + "*((?:-\\\\d)?\\\\d*)" + whitespace + "*\\\\)|)(?=[^-]|$)", "i")\n    },\n        rhtml = /HTML$/i,\n        rinputs = /^(?:input|select|textarea|button)$/i,\n        rheader = /^h\\d$/i,\n        rnative = /^[^{]+\\{\\s*\\[native \\w/,\n        // Easily-parseable/retrievable ID or TAG or CLASS selectors\n    rquickExpr = /^(?:#([\\w-]+)|(\\w+)|\\.([\\w-]+))$/,\n        rsibling = /[+~]/,\n        // CSS escapes\n    // http://www.w3.org/TR/CSS21/syndata.html#escaped-characters\n    runescape = new RegExp("\\\\\\\\[\\\\da-fA-F]{1,6}" + whitespace + "?|\\\\\\\\([^\\\\r\\\\n\\\\f])", "g"),\n        funescape = function (escape, nonHex) {\n      var high = "0x" + escape.slice(1) - 0x10000;\n      return nonHex ? // Strip the backslash prefix from a non-hex escape sequence\n      nonHex : // Replace a hexadecimal escape sequence with the encoded Unicode code point\n      // Support: IE <=11+\n      // For values outside the Basic Multilingual Plane (BMP), manually construct a\n      // surrogate pair\n      high < 0 ? String.fromCharCode(high + 0x10000) : String.fromCharCode(high >> 10 | 0xD800, high & 0x3FF | 0xDC00);\n    },\n        // CSS string/identifier serialization\n    // https://drafts.csswg.org/cssom/#common-serializing-idioms\n    rcssescape = /([\\0-\\x1f\\x7f]|^-?\\d)|^-$|[^\\0-\\x1f\\x7f-\\uFFFF\\w-]/g,\n        fcssescape = function (ch, asCodePoint) {\n      if (asCodePoint) {\n        // U+0000 NULL becomes U+FFFD REPLACEMENT CHARACTER\n        if (ch === "\\0") {\n          return "\\uFFFD";\n        } // Control characters and (dependent upon position) numbers get escaped as code points\n\n\n        return ch.slice(0, -1) + "\\\\" + ch.charCodeAt(ch.length - 1).toString(16) + " ";\n      } // Other potentially-special ASCII characters get backslash-escaped\n\n\n      return "\\\\" + ch;\n    },\n        // Used for iframes\n    // See setDocument()\n    // Removing the function wrapper causes a "Permission Denied"\n    // error in IE\n    unloadHandler = function () {\n      setDocument();\n    },\n        inDisabledFieldset = addCombinator(function (elem) {\n      return elem.disabled === true && elem.nodeName.toLowerCase() === "fieldset";\n    }, {\n      dir: "parentNode",\n      next: "legend"\n    }); // Optimize for push.apply( _, NodeList )\n\n\n    try {\n      push.apply(arr = slice.call(preferredDoc.childNodes), preferredDoc.childNodes); // Support: Android<4.0\n      // Detect silently failing push.apply\n      // eslint-disable-next-line no-unused-expressions\n\n      arr[preferredDoc.childNodes.length].nodeType;\n    } catch (e) {\n      push = {\n        apply: arr.length ? // Leverage slice if possible\n        function (target, els) {\n          pushNative.apply(target, slice.call(els));\n        } : // Support: IE<9\n        // Otherwise append directly\n        function (target, els) {\n          var j = target.length,\n              i = 0; // Can\'t trust NodeList.length\n\n          while (target[j++] = els[i++]) {}\n\n          target.length = j - 1;\n        }\n      };\n    }\n\n    function Sizzle(selector, context, results, seed) {\n      var m,\n          i,\n          elem,\n          nid,\n          match,\n          groups,\n          newSelector,\n          newContext = context && context.ownerDocument,\n          // nodeType defaults to 9, since context defaults to document\n      nodeType = context ? context.nodeType : 9;\n      results = results || []; // Return early from calls with invalid selector or context\n\n      if (typeof selector !== "string" || !selector || nodeType !== 1 && nodeType !== 9 && nodeType !== 11) {\n        return results;\n      } // Try to shortcut find operations (as opposed to filters) in HTML documents\n\n\n      if (!seed) {\n        setDocument(context);\n        context = context || document;\n\n        if (documentIsHTML) {\n          // If the selector is sufficiently simple, try using a "get*By*" DOM method\n          // (excepting DocumentFragment context, where the methods don\'t exist)\n          if (nodeType !== 11 && (match = rquickExpr.exec(selector))) {\n            // ID selector\n            if (m = match[1]) {\n              // Document context\n              if (nodeType === 9) {\n                if (elem = context.getElementById(m)) {\n                  // Support: IE, Opera, Webkit\n                  // TODO: identify versions\n                  // getElementById can match elements by name instead of ID\n                  if (elem.id === m) {\n                    results.push(elem);\n                    return results;\n                  }\n                } else {\n                  return results;\n                } // Element context\n\n              } else {\n                // Support: IE, Opera, Webkit\n                // TODO: identify versions\n                // getElementById can match elements by name instead of ID\n                if (newContext && (elem = newContext.getElementById(m)) && contains(context, elem) && elem.id === m) {\n                  results.push(elem);\n                  return results;\n                }\n              } // Type selector\n\n            } else if (match[2]) {\n              push.apply(results, context.getElementsByTagName(selector));\n              return results; // Class selector\n            } else if ((m = match[3]) && support.getElementsByClassName && context.getElementsByClassName) {\n              push.apply(results, context.getElementsByClassName(m));\n              return results;\n            }\n          } // Take advantage of querySelectorAll\n\n\n          if (support.qsa && !nonnativeSelectorCache[selector + " "] && (!rbuggyQSA || !rbuggyQSA.test(selector)) && ( // Support: IE 8 only\n          // Exclude object elements\n          nodeType !== 1 || context.nodeName.toLowerCase() !== "object")) {\n            newSelector = selector;\n            newContext = context; // qSA considers elements outside a scoping root when evaluating child or\n            // descendant combinators, which is not what we want.\n            // In such cases, we work around the behavior by prefixing every selector in the\n            // list with an ID selector referencing the scope context.\n            // The technique has to be used as well when a leading combinator is used\n            // as such selectors are not recognized by querySelectorAll.\n            // Thanks to Andrew Dupont for this technique.\n\n            if (nodeType === 1 && (rdescend.test(selector) || rcombinators.test(selector))) {\n              // Expand context for sibling selectors\n              newContext = rsibling.test(selector) && testContext(context.parentNode) || context; // We can use :scope instead of the ID hack if the browser\n              // supports it & if we\'re not changing the context.\n\n              if (newContext !== context || !support.scope) {\n                // Capture the context ID, setting it first if necessary\n                if (nid = context.getAttribute("id")) {\n                  nid = nid.replace(rcssescape, fcssescape);\n                } else {\n                  context.setAttribute("id", nid = expando);\n                }\n              } // Prefix every selector in the list\n\n\n              groups = tokenize(selector);\n              i = groups.length;\n\n              while (i--) {\n                groups[i] = (nid ? "#" + nid : ":scope") + " " + toSelector(groups[i]);\n              }\n\n              newSelector = groups.join(",");\n            }\n\n            try {\n              push.apply(results, newContext.querySelectorAll(newSelector));\n              return results;\n            } catch (qsaError) {\n              nonnativeSelectorCache(selector, true);\n            } finally {\n              if (nid === expando) {\n                context.removeAttribute("id");\n              }\n            }\n          }\n        }\n      } // All others\n\n\n      return select(selector.replace(rtrim, "$1"), context, results, seed);\n    }\n    /**\n     * Create key-value caches of limited size\n     * @returns {function(string, object)} Returns the Object data after storing it on itself with\n     *\tproperty name the (space-suffixed) string and (if the cache is larger than Expr.cacheLength)\n     *\tdeleting the oldest entry\n     */\n\n\n    function createCache() {\n      var keys = [];\n\n      function cache(key, value) {\n        // Use (key + " ") to avoid collision with native prototype properties (see Issue #157)\n        if (keys.push(key + " ") > Expr.cacheLength) {\n          // Only keep the most recent entries\n          delete cache[keys.shift()];\n        }\n\n        return cache[key + " "] = value;\n      }\n\n      return cache;\n    }\n    /**\n     * Mark a function for special use by Sizzle\n     * @param {Function} fn The function to mark\n     */\n\n\n    function markFunction(fn) {\n      fn[expando] = true;\n      return fn;\n    }\n    /**\n     * Support testing using an element\n     * @param {Function} fn Passed the created element and returns a boolean result\n     */\n\n\n    function assert(fn) {\n      var el = document.createElement("fieldset");\n\n      try {\n        return !!fn(el);\n      } catch (e) {\n        return false;\n      } finally {\n        // Remove from its parent by default\n        if (el.parentNode) {\n          el.parentNode.removeChild(el);\n        } // release memory in IE\n\n\n        el = null;\n      }\n    }\n    /**\n     * Adds the same handler for all of the specified attrs\n     * @param {String} attrs Pipe-separated list of attributes\n     * @param {Function} handler The method that will be applied\n     */\n\n\n    function addHandle(attrs, handler) {\n      var arr = attrs.split("|"),\n          i = arr.length;\n\n      while (i--) {\n        Expr.attrHandle[arr[i]] = handler;\n      }\n    }\n    /**\n     * Checks document order of two siblings\n     * @param {Element} a\n     * @param {Element} b\n     * @returns {Number} Returns less than 0 if a precedes b, greater than 0 if a follows b\n     */\n\n\n    function siblingCheck(a, b) {\n      var cur = b && a,\n          diff = cur && a.nodeType === 1 && b.nodeType === 1 && a.sourceIndex - b.sourceIndex; // Use IE sourceIndex if available on both nodes\n\n      if (diff) {\n        return diff;\n      } // Check if b follows a\n\n\n      if (cur) {\n        while (cur = cur.nextSibling) {\n          if (cur === b) {\n            return -1;\n          }\n        }\n      }\n\n      return a ? 1 : -1;\n    }\n    /**\n     * Returns a function to use in pseudos for input types\n     * @param {String} type\n     */\n\n\n    function createInputPseudo(type) {\n      return function (elem) {\n        var name = elem.nodeName.toLowerCase();\n        return name === "input" && elem.type === type;\n      };\n    }\n    /**\n     * Returns a function to use in pseudos for buttons\n     * @param {String} type\n     */\n\n\n    function createButtonPseudo(type) {\n      return function (elem) {\n        var name = elem.nodeName.toLowerCase();\n        return (name === "input" || name === "button") && elem.type === type;\n      };\n    }\n    /**\n     * Returns a function to use in pseudos for :enabled/:disabled\n     * @param {Boolean} disabled true for :disabled; false for :enabled\n     */\n\n\n    function createDisabledPseudo(disabled) {\n      // Known :disabled false positives: fieldset[disabled] > legend:nth-of-type(n+2) :can-disable\n      return function (elem) {\n        // Only certain elements can match :enabled or :disabled\n        // https://html.spec.whatwg.org/multipage/scripting.html#selector-enabled\n        // https://html.spec.whatwg.org/multipage/scripting.html#selector-disabled\n        if ("form" in elem) {\n          // Check for inherited disabledness on relevant non-disabled elements:\n          // * listed form-associated elements in a disabled fieldset\n          //   https://html.spec.whatwg.org/multipage/forms.html#category-listed\n          //   https://html.spec.whatwg.org/multipage/forms.html#concept-fe-disabled\n          // * option elements in a disabled optgroup\n          //   https://html.spec.whatwg.org/multipage/forms.html#concept-option-disabled\n          // All such elements have a "form" property.\n          if (elem.parentNode && elem.disabled === false) {\n            // Option elements defer to a parent optgroup if present\n            if ("label" in elem) {\n              if ("label" in elem.parentNode) {\n                return elem.parentNode.disabled === disabled;\n              } else {\n                return elem.disabled === disabled;\n              }\n            } // Support: IE 6 - 11\n            // Use the isDisabled shortcut property to check for disabled fieldset ancestors\n\n\n            return elem.isDisabled === disabled || // Where there is no isDisabled, check manually\n\n            /* jshint -W018 */\n            elem.isDisabled !== !disabled && inDisabledFieldset(elem) === disabled;\n          }\n\n          return elem.disabled === disabled; // Try to winnow out elements that can\'t be disabled before trusting the disabled property.\n          // Some victims get caught in our net (label, legend, menu, track), but it shouldn\'t\n          // even exist on them, let alone have a boolean value.\n        } else if ("label" in elem) {\n          return elem.disabled === disabled;\n        } // Remaining elements are neither :enabled nor :disabled\n\n\n        return false;\n      };\n    }\n    /**\n     * Returns a function to use in pseudos for positionals\n     * @param {Function} fn\n     */\n\n\n    function createPositionalPseudo(fn) {\n      return markFunction(function (argument) {\n        argument = +argument;\n        return markFunction(function (seed, matches) {\n          var j,\n              matchIndexes = fn([], seed.length, argument),\n              i = matchIndexes.length; // Match elements found at the specified indexes\n\n          while (i--) {\n            if (seed[j = matchIndexes[i]]) {\n              seed[j] = !(matches[j] = seed[j]);\n            }\n          }\n        });\n      });\n    }\n    /**\n     * Checks a node for validity as a Sizzle context\n     * @param {Element|Object=} context\n     * @returns {Element|Object|Boolean} The input node if acceptable, otherwise a falsy value\n     */\n\n\n    function testContext(context) {\n      return context && typeof context.getElementsByTagName !== "undefined" && context;\n    } // Expose support vars for convenience\n\n\n    support = Sizzle.support = {};\n    /**\n     * Detects XML nodes\n     * @param {Element|Object} elem An element or a document\n     * @returns {Boolean} True iff elem is a non-HTML XML node\n     */\n\n    isXML = Sizzle.isXML = function (elem) {\n      var namespace = elem.namespaceURI,\n          docElem = (elem.ownerDocument || elem).documentElement; // Support: IE <=8\n      // Assume HTML when documentElement doesn\'t yet exist, such as inside loading iframes\n      // https://bugs.jquery.com/ticket/4833\n\n      return !rhtml.test(namespace || docElem && docElem.nodeName || "HTML");\n    };\n    /**\n     * Sets document-related variables once based on the current document\n     * @param {Element|Object} [doc] An element or document object to use to set the document\n     * @returns {Object} Returns the current document\n     */\n\n\n    setDocument = Sizzle.setDocument = function (node) {\n      var hasCompare,\n          subWindow,\n          doc = node ? node.ownerDocument || node : preferredDoc; // Return early if doc is invalid or already selected\n      // Support: IE 11+, Edge 17 - 18+\n      // IE/Edge sometimes throw a "Permission denied" error when strict-comparing\n      // two documents; shallow comparisons work.\n      // eslint-disable-next-line eqeqeq\n\n      if (doc == document || doc.nodeType !== 9 || !doc.documentElement) {\n        return document;\n      } // Update global variables\n\n\n      document = doc;\n      docElem = document.documentElement;\n      documentIsHTML = !isXML(document); // Support: IE 9 - 11+, Edge 12 - 18+\n      // Accessing iframe documents after unload throws "permission denied" errors (jQuery #13936)\n      // Support: IE 11+, Edge 17 - 18+\n      // IE/Edge sometimes throw a "Permission denied" error when strict-comparing\n      // two documents; shallow comparisons work.\n      // eslint-disable-next-line eqeqeq\n\n      if (preferredDoc != document && (subWindow = document.defaultView) && subWindow.top !== subWindow) {\n        // Support: IE 11, Edge\n        if (subWindow.addEventListener) {\n          subWindow.addEventListener("unload", unloadHandler, false); // Support: IE 9 - 10 only\n        } else if (subWindow.attachEvent) {\n          subWindow.attachEvent("onunload", unloadHandler);\n        }\n      } // Support: IE 8 - 11+, Edge 12 - 18+, Chrome <=16 - 25 only, Firefox <=3.6 - 31 only,\n      // Safari 4 - 5 only, Opera <=11.6 - 12.x only\n      // IE/Edge & older browsers don\'t support the :scope pseudo-class.\n      // Support: Safari 6.0 only\n      // Safari 6.0 supports :scope but it\'s an alias of :root there.\n\n\n      support.scope = assert(function (el) {\n        docElem.appendChild(el).appendChild(document.createElement("div"));\n        return typeof el.querySelectorAll !== "undefined" && !el.querySelectorAll(":scope fieldset div").length;\n      });\n      /* Attributes\n      ---------------------------------------------------------------------- */\n      // Support: IE<8\n      // Verify that getAttribute really returns attributes and not properties\n      // (excepting IE8 booleans)\n\n      support.attributes = assert(function (el) {\n        el.className = "i";\n        return !el.getAttribute("className");\n      });\n      /* getElement(s)By*\n      ---------------------------------------------------------------------- */\n      // Check if getElementsByTagName("*") returns only elements\n\n      support.getElementsByTagName = assert(function (el) {\n        el.appendChild(document.createComment(""));\n        return !el.getElementsByTagName("*").length;\n      }); // Support: IE<9\n\n      support.getElementsByClassName = rnative.test(document.getElementsByClassName); // Support: IE<10\n      // Check if getElementById returns elements by name\n      // The broken getElementById methods don\'t pick up programmatically-set names,\n      // so use a roundabout getElementsByName test\n\n      support.getById = assert(function (el) {\n        docElem.appendChild(el).id = expando;\n        return !document.getElementsByName || !document.getElementsByName(expando).length;\n      }); // ID filter and find\n\n      if (support.getById) {\n        Expr.filter["ID"] = function (id) {\n          var attrId = id.replace(runescape, funescape);\n          return function (elem) {\n            return elem.getAttribute("id") === attrId;\n          };\n        };\n\n        Expr.find["ID"] = function (id, context) {\n          if (typeof context.getElementById !== "undefined" && documentIsHTML) {\n            var elem = context.getElementById(id);\n            return elem ? [elem] : [];\n          }\n        };\n      } else {\n        Expr.filter["ID"] = function (id) {\n          var attrId = id.replace(runescape, funescape);\n          return function (elem) {\n            var node = typeof elem.getAttributeNode !== "undefined" && elem.getAttributeNode("id");\n            return node && node.value === attrId;\n          };\n        }; // Support: IE 6 - 7 only\n        // getElementById is not reliable as a find shortcut\n\n\n        Expr.find["ID"] = function (id, context) {\n          if (typeof context.getElementById !== "undefined" && documentIsHTML) {\n            var node,\n                i,\n                elems,\n                elem = context.getElementById(id);\n\n            if (elem) {\n              // Verify the id attribute\n              node = elem.getAttributeNode("id");\n\n              if (node && node.value === id) {\n                return [elem];\n              } // Fall back on getElementsByName\n\n\n              elems = context.getElementsByName(id);\n              i = 0;\n\n              while (elem = elems[i++]) {\n                node = elem.getAttributeNode("id");\n\n                if (node && node.value === id) {\n                  return [elem];\n                }\n              }\n            }\n\n            return [];\n          }\n        };\n      } // Tag\n\n\n      Expr.find["TAG"] = support.getElementsByTagName ? function (tag, context) {\n        if (typeof context.getElementsByTagName !== "undefined") {\n          return context.getElementsByTagName(tag); // DocumentFragment nodes don\'t have gEBTN\n        } else if (support.qsa) {\n          return context.querySelectorAll(tag);\n        }\n      } : function (tag, context) {\n        var elem,\n            tmp = [],\n            i = 0,\n            // By happy coincidence, a (broken) gEBTN appears on DocumentFragment nodes too\n        results = context.getElementsByTagName(tag); // Filter out possible comments\n\n        if (tag === "*") {\n          while (elem = results[i++]) {\n            if (elem.nodeType === 1) {\n              tmp.push(elem);\n            }\n          }\n\n          return tmp;\n        }\n\n        return results;\n      }; // Class\n\n      Expr.find["CLASS"] = support.getElementsByClassName && function (className, context) {\n        if (typeof context.getElementsByClassName !== "undefined" && documentIsHTML) {\n          return context.getElementsByClassName(className);\n        }\n      };\n      /* QSA/matchesSelector\n      ---------------------------------------------------------------------- */\n      // QSA and matchesSelector support\n      // matchesSelector(:active) reports false when true (IE9/Opera 11.5)\n\n\n      rbuggyMatches = []; // qSa(:focus) reports false when true (Chrome 21)\n      // We allow this because of a bug in IE8/9 that throws an error\n      // whenever `document.activeElement` is accessed on an iframe\n      // So, we allow :focus to pass through QSA all the time to avoid the IE error\n      // See https://bugs.jquery.com/ticket/13378\n\n      rbuggyQSA = [];\n\n      if (support.qsa = rnative.test(document.querySelectorAll)) {\n        // Build QSA regex\n        // Regex strategy adopted from Diego Perini\n        assert(function (el) {\n          var input; // Select is set to empty string on purpose\n          // This is to test IE\'s treatment of not explicitly\n          // setting a boolean content attribute,\n          // since its presence should be enough\n          // https://bugs.jquery.com/ticket/12359\n\n          docElem.appendChild(el).innerHTML = "<a id=\'" + expando + "\'><\/a>" + "<select id=\'" + expando + "-\\r\\\\\' msallowcapture=\'\'>" + "<option selected=\'\'><\/option><\/select>"; // Support: IE8, Opera 11-12.16\n          // Nothing should be selected when empty strings follow ^= or $= or *=\n          // The test attribute must be unknown in Opera but "safe" for WinRT\n          // https://msdn.microsoft.com/en-us/library/ie/hh465388.aspx#attribute_section\n\n          if (el.querySelectorAll("[msallowcapture^=\'\']").length) {\n            rbuggyQSA.push("[*^$]=" + whitespace + "*(?:\'\'|\\"\\")");\n          } // Support: IE8\n          // Boolean attributes and "value" are not treated correctly\n\n\n          if (!el.querySelectorAll("[selected]").length) {\n            rbuggyQSA.push("\\\\[" + whitespace + "*(?:value|" + booleans + ")");\n          } // Support: Chrome<29, Android<4.4, Safari<7.0+, iOS<7.0+, PhantomJS<1.9.8+\n\n\n          if (!el.querySelectorAll("[id~=" + expando + "-]").length) {\n            rbuggyQSA.push("~=");\n          } // Support: IE 11+, Edge 15 - 18+\n          // IE 11/Edge don\'t find elements on a `[name=\'\']` query in some cases.\n          // Adding a temporary attribute to the document before the selection works\n          // around the issue.\n          // Interestingly, IE 10 & older don\'t seem to have the issue.\n\n\n          input = document.createElement("input");\n          input.setAttribute("name", "");\n          el.appendChild(input);\n\n          if (!el.querySelectorAll("[name=\'\']").length) {\n            rbuggyQSA.push("\\\\[" + whitespace + "*name" + whitespace + "*=" + whitespace + "*(?:\'\'|\\"\\")");\n          } // Webkit/Opera - :checked should return selected option elements\n          // http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked\n          // IE8 throws error here and will not see later tests\n\n\n          if (!el.querySelectorAll(":checked").length) {\n            rbuggyQSA.push(":checked");\n          } // Support: Safari 8+, iOS 8+\n          // https://bugs.webkit.org/show_bug.cgi?id=136851\n          // In-page `selector#id sibling-combinator selector` fails\n\n\n          if (!el.querySelectorAll("a#" + expando + "+*").length) {\n            rbuggyQSA.push(".#.+[+~]");\n          } // Support: Firefox <=3.6 - 5 only\n          // Old Firefox doesn\'t throw on a badly-escaped identifier.\n\n\n          el.querySelectorAll("\\\\\\f");\n          rbuggyQSA.push("[\\\\r\\\\n\\\\f]");\n        });\n        assert(function (el) {\n          el.innerHTML = "<a href=\'\' disabled=\'disabled\'><\/a>" + "<select disabled=\'disabled\'><option/><\/select>"; // Support: Windows 8 Native Apps\n          // The type and name attributes are restricted during .innerHTML assignment\n\n          var input = document.createElement("input");\n          input.setAttribute("type", "hidden");\n          el.appendChild(input).setAttribute("name", "D"); // Support: IE8\n          // Enforce case-sensitivity of name attribute\n\n          if (el.querySelectorAll("[name=d]").length) {\n            rbuggyQSA.push("name" + whitespace + "*[*^$|!~]?=");\n          } // FF 3.5 - :enabled/:disabled and hidden elements (hidden elements are still enabled)\n          // IE8 throws error here and will not see later tests\n\n\n          if (el.querySelectorAll(":enabled").length !== 2) {\n            rbuggyQSA.push(":enabled", ":disabled");\n          } // Support: IE9-11+\n          // IE\'s :disabled selector does not pick up the children of disabled fieldsets\n\n\n          docElem.appendChild(el).disabled = true;\n\n          if (el.querySelectorAll(":disabled").length !== 2) {\n            rbuggyQSA.push(":enabled", ":disabled");\n          } // Support: Opera 10 - 11 only\n          // Opera 10-11 does not throw on post-comma invalid pseudos\n\n\n          el.querySelectorAll("*,:x");\n          rbuggyQSA.push(",.*:");\n        });\n      }\n\n      if (support.matchesSelector = rnative.test(matches = docElem.matches || docElem.webkitMatchesSelector || docElem.mozMatchesSelector || docElem.oMatchesSelector || docElem.msMatchesSelector)) {\n        assert(function (el) {\n          // Check to see if it\'s possible to do matchesSelector\n          // on a disconnected node (IE 9)\n          support.disconnectedMatch = matches.call(el, "*"); // This should fail with an exception\n          // Gecko does not error, returns false instead\n\n          matches.call(el, "[s!=\'\']:x");\n          rbuggyMatches.push("!=", pseudos);\n        });\n      }\n\n      rbuggyQSA = rbuggyQSA.length && new RegExp(rbuggyQSA.join("|"));\n      rbuggyMatches = rbuggyMatches.length && new RegExp(rbuggyMatches.join("|"));\n      /* Contains\n      ---------------------------------------------------------------------- */\n\n      hasCompare = rnative.test(docElem.compareDocumentPosition); // Element contains another\n      // Purposefully self-exclusive\n      // As in, an element does not contain itself\n\n      contains = hasCompare || rnative.test(docElem.contains) ? function (a, b) {\n        var adown = a.nodeType === 9 ? a.documentElement : a,\n            bup = b && b.parentNode;\n        return a === bup || !!(bup && bup.nodeType === 1 && (adown.contains ? adown.contains(bup) : a.compareDocumentPosition && a.compareDocumentPosition(bup) & 16));\n      } : function (a, b) {\n        if (b) {\n          while (b = b.parentNode) {\n            if (b === a) {\n              return true;\n            }\n          }\n        }\n\n        return false;\n      };\n      /* Sorting\n      ---------------------------------------------------------------------- */\n      // Document order sorting\n\n      sortOrder = hasCompare ? function (a, b) {\n        // Flag for duplicate removal\n        if (a === b) {\n          hasDuplicate = true;\n          return 0;\n        } // Sort on method existence if only one input has compareDocumentPosition\n\n\n        var compare = !a.compareDocumentPosition - !b.compareDocumentPosition;\n\n        if (compare) {\n          return compare;\n        } // Calculate position if both inputs belong to the same document\n        // Support: IE 11+, Edge 17 - 18+\n        // IE/Edge sometimes throw a "Permission denied" error when strict-comparing\n        // two documents; shallow comparisons work.\n        // eslint-disable-next-line eqeqeq\n\n\n        compare = (a.ownerDocument || a) == (b.ownerDocument || b) ? a.compareDocumentPosition(b) : // Otherwise we know they are disconnected\n        1; // Disconnected nodes\n\n        if (compare & 1 || !support.sortDetached && b.compareDocumentPosition(a) === compare) {\n          // Choose the first element that is related to our preferred document\n          // Support: IE 11+, Edge 17 - 18+\n          // IE/Edge sometimes throw a "Permission denied" error when strict-comparing\n          // two documents; shallow comparisons work.\n          // eslint-disable-next-line eqeqeq\n          if (a == document || a.ownerDocument == preferredDoc && contains(preferredDoc, a)) {\n            return -1;\n          } // Support: IE 11+, Edge 17 - 18+\n          // IE/Edge sometimes throw a "Permission denied" error when strict-comparing\n          // two documents; shallow comparisons work.\n          // eslint-disable-next-line eqeqeq\n\n\n          if (b == document || b.ownerDocument == preferredDoc && contains(preferredDoc, b)) {\n            return 1;\n          } // Maintain original order\n\n\n          return sortInput ? indexOf(sortInput, a) - indexOf(sortInput, b) : 0;\n        }\n\n        return compare & 4 ? -1 : 1;\n      } : function (a, b) {\n        // Exit early if the nodes are identical\n        if (a === b) {\n          hasDuplicate = true;\n          return 0;\n        }\n\n        var cur,\n            i = 0,\n            aup = a.parentNode,\n            bup = b.parentNode,\n            ap = [a],\n            bp = [b]; // Parentless nodes are either documents or disconnected\n\n        if (!aup || !bup) {\n          // Support: IE 11+, Edge 17 - 18+\n          // IE/Edge sometimes throw a "Permission denied" error when strict-comparing\n          // two documents; shallow comparisons work.\n\n          /* eslint-disable eqeqeq */\n          return a == document ? -1 : b == document ? 1 :\n          /* eslint-enable eqeqeq */\n          aup ? -1 : bup ? 1 : sortInput ? indexOf(sortInput, a) - indexOf(sortInput, b) : 0; // If the nodes are siblings, we can do a quick check\n        } else if (aup === bup) {\n          return siblingCheck(a, b);\n        } // Otherwise we need full lists of their ancestors for comparison\n\n\n        cur = a;\n\n        while (cur = cur.parentNode) {\n          ap.unshift(cur);\n        }\n\n        cur = b;\n\n        while (cur = cur.parentNode) {\n          bp.unshift(cur);\n        } // Walk down the tree looking for a discrepancy\n\n\n        while (ap[i] === bp[i]) {\n          i++;\n        }\n\n        return i ? // Do a sibling check if the nodes have a common ancestor\n        siblingCheck(ap[i], bp[i]) : // Otherwise nodes in our document sort first\n        // Support: IE 11+, Edge 17 - 18+\n        // IE/Edge sometimes throw a "Permission denied" error when strict-comparing\n        // two documents; shallow comparisons work.\n\n        /* eslint-disable eqeqeq */\n        ap[i] == preferredDoc ? -1 : bp[i] == preferredDoc ? 1 :\n        /* eslint-enable eqeqeq */\n        0;\n      };\n      return document;\n    };\n\n    Sizzle.matches = function (expr, elements) {\n      return Sizzle(expr, null, null, elements);\n    };\n\n    Sizzle.matchesSelector = function (elem, expr) {\n      setDocument(elem);\n\n      if (support.matchesSelector && documentIsHTML && !nonnativeSelectorCache[expr + " "] && (!rbuggyMatches || !rbuggyMatches.test(expr)) && (!rbuggyQSA || !rbuggyQSA.test(expr))) {\n        try {\n          var ret = matches.call(elem, expr); // IE 9\'s matchesSelector returns false on disconnected nodes\n\n          if (ret || support.disconnectedMatch || // As well, disconnected nodes are said to be in a document\n          // fragment in IE 9\n          elem.document && elem.document.nodeType !== 11) {\n            return ret;\n          }\n        } catch (e) {\n          nonnativeSelectorCache(expr, true);\n        }\n      }\n\n      return Sizzle(expr, document, null, [elem]).length > 0;\n    };\n\n    Sizzle.contains = function (context, elem) {\n      // Set document vars if needed\n      // Support: IE 11+, Edge 17 - 18+\n      // IE/Edge sometimes throw a "Permission denied" error when strict-comparing\n      // two documents; shallow comparisons work.\n      // eslint-disable-next-line eqeqeq\n      if ((context.ownerDocument || context) != document) {\n        setDocument(context);\n      }\n\n      return contains(context, elem);\n    };\n\n    Sizzle.attr = function (elem, name) {\n      // Set document vars if needed\n      // Support: IE 11+, Edge 17 - 18+\n      // IE/Edge sometimes throw a "Permission denied" error when strict-comparing\n      // two documents; shallow comparisons work.\n      // eslint-disable-next-line eqeqeq\n      if ((elem.ownerDocument || elem) != document) {\n        setDocument(elem);\n      }\n\n      var fn = Expr.attrHandle[name.toLowerCase()],\n          // Don\'t get fooled by Object.prototype properties (jQuery #13807)\n      val = fn && hasOwn.call(Expr.attrHandle, name.toLowerCase()) ? fn(elem, name, !documentIsHTML) : undefined;\n      return val !== undefined ? val : support.attributes || !documentIsHTML ? elem.getAttribute(name) : (val = elem.getAttributeNode(name)) && val.specified ? val.value : null;\n    };\n\n    Sizzle.escape = function (sel) {\n      return (sel + "").replace(rcssescape, fcssescape);\n    };\n\n    Sizzle.error = function (msg) {\n      throw new Error("Syntax error, unrecognized expression: " + msg);\n    };\n    /**\n     * Document sorting and removing duplicates\n     * @param {ArrayLike} results\n     */\n\n\n    Sizzle.uniqueSort = function (results) {\n      var elem,\n          duplicates = [],\n          j = 0,\n          i = 0; // Unless we *know* we can detect duplicates, assume their presence\n\n      hasDuplicate = !support.detectDuplicates;\n      sortInput = !support.sortStable && results.slice(0);\n      results.sort(sortOrder);\n\n      if (hasDuplicate) {\n        while (elem = results[i++]) {\n          if (elem === results[i]) {\n            j = duplicates.push(i);\n          }\n        }\n\n        while (j--) {\n          results.splice(duplicates[j], 1);\n        }\n      } // Clear input after sorting to release objects\n      // See https://github.com/jquery/sizzle/pull/225\n\n\n      sortInput = null;\n      return results;\n    };\n    /**\n     * Utility function for retrieving the text value of an array of DOM nodes\n     * @param {Array|Element} elem\n     */\n\n\n    getText = Sizzle.getText = function (elem) {\n      var node,\n          ret = "",\n          i = 0,\n          nodeType = elem.nodeType;\n\n      if (!nodeType) {\n        // If no nodeType, this is expected to be an array\n        while (node = elem[i++]) {\n          // Do not traverse comment nodes\n          ret += getText(node);\n        }\n      } else if (nodeType === 1 || nodeType === 9 || nodeType === 11) {\n        // Use textContent for elements\n        // innerText usage removed for consistency of new lines (jQuery #11153)\n        if (typeof elem.textContent === "string") {\n          return elem.textContent;\n        } else {\n          // Traverse its children\n          for (elem = elem.firstChild; elem; elem = elem.nextSibling) {\n            ret += getText(elem);\n          }\n        }\n      } else if (nodeType === 3 || nodeType === 4) {\n        return elem.nodeValue;\n      } // Do not include comment or processing instruction nodes\n\n\n      return ret;\n    };\n\n    Expr = Sizzle.selectors = {\n      // Can be adjusted by the user\n      cacheLength: 50,\n      createPseudo: markFunction,\n      match: matchExpr,\n      attrHandle: {},\n      find: {},\n      relative: {\n        ">": {\n          dir: "parentNode",\n          first: true\n        },\n        " ": {\n          dir: "parentNode"\n        },\n        "+": {\n          dir: "previousSibling",\n          first: true\n        },\n        "~": {\n          dir: "previousSibling"\n        }\n      },\n      preFilter: {\n        "ATTR": function (match) {\n          match[1] = match[1].replace(runescape, funescape); // Move the given value to match[3] whether quoted or unquoted\n\n          match[3] = (match[3] || match[4] || match[5] || "").replace(runescape, funescape);\n\n          if (match[2] === "~=") {\n            match[3] = " " + match[3] + " ";\n          }\n\n          return match.slice(0, 4);\n        },\n        "CHILD": function (match) {\n          /* matches from matchExpr["CHILD"]\n          \t1 type (only|nth|...)\n          \t2 what (child|of-type)\n          \t3 argument (even|odd|\\d*|\\d*n([+-]\\d+)?|...)\n          \t4 xn-component of xn+y argument ([+-]?\\d*n|)\n          \t5 sign of xn-component\n          \t6 x of xn-component\n          \t7 sign of y-component\n          \t8 y of y-component\n          */\n          match[1] = match[1].toLowerCase();\n\n          if (match[1].slice(0, 3) === "nth") {\n            // nth-* requires argument\n            if (!match[3]) {\n              Sizzle.error(match[0]);\n            } // numeric x and y parameters for Expr.filter.CHILD\n            // remember that false/true cast respectively to 0/1\n\n\n            match[4] = +(match[4] ? match[5] + (match[6] || 1) : 2 * (match[3] === "even" || match[3] === "odd"));\n            match[5] = +(match[7] + match[8] || match[3] === "odd"); // other types prohibit arguments\n          } else if (match[3]) {\n            Sizzle.error(match[0]);\n          }\n\n          return match;\n        },\n        "PSEUDO": function (match) {\n          var excess,\n              unquoted = !match[6] && match[2];\n\n          if (matchExpr["CHILD"].test(match[0])) {\n            return null;\n          } // Accept quoted arguments as-is\n\n\n          if (match[3]) {\n            match[2] = match[4] || match[5] || ""; // Strip excess characters from unquoted arguments\n          } else if (unquoted && rpseudo.test(unquoted) && ( // Get excess from tokenize (recursively)\n          excess = tokenize(unquoted, true)) && ( // advance to the next closing parenthesis\n          excess = unquoted.indexOf(")", unquoted.length - excess) - unquoted.length)) {\n            // excess is a negative index\n            match[0] = match[0].slice(0, excess);\n            match[2] = unquoted.slice(0, excess);\n          } // Return only captures needed by the pseudo filter method (type and argument)\n\n\n          return match.slice(0, 3);\n        }\n      },\n      filter: {\n        "TAG": function (nodeNameSelector) {\n          var nodeName = nodeNameSelector.replace(runescape, funescape).toLowerCase();\n          return nodeNameSelector === "*" ? function () {\n            return true;\n          } : function (elem) {\n            return elem.nodeName && elem.nodeName.toLowerCase() === nodeName;\n          };\n        },\n        "CLASS": function (className) {\n          var pattern = classCache[className + " "];\n          return pattern || (pattern = new RegExp("(^|" + whitespace + ")" + className + "(" + whitespace + "|$)")) && classCache(className, function (elem) {\n            return pattern.test(typeof elem.className === "string" && elem.className || typeof elem.getAttribute !== "undefined" && elem.getAttribute("class") || "");\n          });\n        },\n        "ATTR": function (name, operator, check) {\n          return function (elem) {\n            var result = Sizzle.attr(elem, name);\n\n            if (result == null) {\n              return operator === "!=";\n            }\n\n            if (!operator) {\n              return true;\n            }\n\n            result += "";\n            /* eslint-disable max-len */\n\n            return operator === "=" ? result === check : operator === "!=" ? result !== check : operator === "^=" ? check && result.indexOf(check) === 0 : operator === "*=" ? check && result.indexOf(check) > -1 : operator === "$=" ? check && result.slice(-check.length) === check : operator === "~=" ? (" " + result.replace(rwhitespace, " ") + " ").indexOf(check) > -1 : operator === "|=" ? result === check || result.slice(0, check.length + 1) === check + "-" : false;\n            /* eslint-enable max-len */\n          };\n        },\n        "CHILD": function (type, what, _argument, first, last) {\n          var simple = type.slice(0, 3) !== "nth",\n              forward = type.slice(-4) !== "last",\n              ofType = what === "of-type";\n          return first === 1 && last === 0 ? // Shortcut for :nth-*(n)\n          function (elem) {\n            return !!elem.parentNode;\n          } : function (elem, _context, xml) {\n            var cache,\n                uniqueCache,\n                outerCache,\n                node,\n                nodeIndex,\n                start,\n                dir = simple !== forward ? "nextSibling" : "previousSibling",\n                parent = elem.parentNode,\n                name = ofType && elem.nodeName.toLowerCase(),\n                useCache = !xml && !ofType,\n                diff = false;\n\n            if (parent) {\n              // :(first|last|only)-(child|of-type)\n              if (simple) {\n                while (dir) {\n                  node = elem;\n\n                  while (node = node[dir]) {\n                    if (ofType ? node.nodeName.toLowerCase() === name : node.nodeType === 1) {\n                      return false;\n                    }\n                  } // Reverse direction for :only-* (if we haven\'t yet done so)\n\n\n                  start = dir = type === "only" && !start && "nextSibling";\n                }\n\n                return true;\n              }\n\n              start = [forward ? parent.firstChild : parent.lastChild]; // non-xml :nth-child(...) stores cache data on `parent`\n\n              if (forward && useCache) {\n                // Seek `elem` from a previously-cached index\n                // ...in a gzip-friendly way\n                node = parent;\n                outerCache = node[expando] || (node[expando] = {}); // Support: IE <9 only\n                // Defend against cloned attroperties (jQuery gh-1709)\n\n                uniqueCache = outerCache[node.uniqueID] || (outerCache[node.uniqueID] = {});\n                cache = uniqueCache[type] || [];\n                nodeIndex = cache[0] === dirruns && cache[1];\n                diff = nodeIndex && cache[2];\n                node = nodeIndex && parent.childNodes[nodeIndex];\n\n                while (node = ++nodeIndex && node && node[dir] || ( // Fallback to seeking `elem` from the start\n                diff = nodeIndex = 0) || start.pop()) {\n                  // When found, cache indexes on `parent` and break\n                  if (node.nodeType === 1 && ++diff && node === elem) {\n                    uniqueCache[type] = [dirruns, nodeIndex, diff];\n                    break;\n                  }\n                }\n              } else {\n                // Use previously-cached element index if available\n                if (useCache) {\n                  // ...in a gzip-friendly way\n                  node = elem;\n                  outerCache = node[expando] || (node[expando] = {}); // Support: IE <9 only\n                  // Defend against cloned attroperties (jQuery gh-1709)\n\n                  uniqueCache = outerCache[node.uniqueID] || (outerCache[node.uniqueID] = {});\n                  cache = uniqueCache[type] || [];\n                  nodeIndex = cache[0] === dirruns && cache[1];\n                  diff = nodeIndex;\n                } // xml :nth-child(...)\n                // or :nth-last-child(...) or :nth(-last)?-of-type(...)\n\n\n                if (diff === false) {\n                  // Use the same loop as above to seek `elem` from the start\n                  while (node = ++nodeIndex && node && node[dir] || (diff = nodeIndex = 0) || start.pop()) {\n                    if ((ofType ? node.nodeName.toLowerCase() === name : node.nodeType === 1) && ++diff) {\n                      // Cache the index of each encountered element\n                      if (useCache) {\n                        outerCache = node[expando] || (node[expando] = {}); // Support: IE <9 only\n                        // Defend against cloned attroperties (jQuery gh-1709)\n\n                        uniqueCache = outerCache[node.uniqueID] || (outerCache[node.uniqueID] = {});\n                        uniqueCache[type] = [dirruns, diff];\n                      }\n\n                      if (node === elem) {\n                        break;\n                      }\n                    }\n                  }\n                }\n              } // Incorporate the offset, then check against cycle size\n\n\n              diff -= last;\n              return diff === first || diff % first === 0 && diff / first >= 0;\n            }\n          };\n        },\n        "PSEUDO": function (pseudo, argument) {\n          // pseudo-class names are case-insensitive\n          // http://www.w3.org/TR/selectors/#pseudo-classes\n          // Prioritize by case sensitivity in case custom pseudos are added with uppercase letters\n          // Remember that setFilters inherits from pseudos\n          var args,\n              fn = Expr.pseudos[pseudo] || Expr.setFilters[pseudo.toLowerCase()] || Sizzle.error("unsupported pseudo: " + pseudo); // The user may use createPseudo to indicate that\n          // arguments are needed to create the filter function\n          // just as Sizzle does\n\n          if (fn[expando]) {\n            return fn(argument);\n          } // But maintain support for old signatures\n\n\n          if (fn.length > 1) {\n            args = [pseudo, pseudo, "", argument];\n            return Expr.setFilters.hasOwnProperty(pseudo.toLowerCase()) ? markFunction(function (seed, matches) {\n              var idx,\n                  matched = fn(seed, argument),\n                  i = matched.length;\n\n              while (i--) {\n                idx = indexOf(seed, matched[i]);\n                seed[idx] = !(matches[idx] = matched[i]);\n              }\n            }) : function (elem) {\n              return fn(elem, 0, args);\n            };\n          }\n\n          return fn;\n        }\n      },\n      pseudos: {\n        // Potentially complex pseudos\n        "not": markFunction(function (selector) {\n          // Trim the selector passed to compile\n          // to avoid treating leading and trailing\n          // spaces as combinators\n          var input = [],\n              results = [],\n              matcher = compile(selector.replace(rtrim, "$1"));\n          return matcher[expando] ? markFunction(function (seed, matches, _context, xml) {\n            var elem,\n                unmatched = matcher(seed, null, xml, []),\n                i = seed.length; // Match elements unmatched by `matcher`\n\n            while (i--) {\n              if (elem = unmatched[i]) {\n                seed[i] = !(matches[i] = elem);\n              }\n            }\n          }) : function (elem, _context, xml) {\n            input[0] = elem;\n            matcher(input, null, xml, results); // Don\'t keep the element (issue #299)\n\n            input[0] = null;\n            return !results.pop();\n          };\n        }),\n        "has": markFunction(function (selector) {\n          return function (elem) {\n            return Sizzle(selector, elem).length > 0;\n          };\n        }),\n        "contains": markFunction(function (text) {\n          text = text.replace(runescape, funescape);\n          return function (elem) {\n            return (elem.textContent || getText(elem)).indexOf(text) > -1;\n          };\n        }),\n        // "Whether an element is represented by a :lang() selector\n        // is based solely on the element\'s language value\n        // being equal to the identifier C,\n        // or beginning with the identifier C immediately followed by "-".\n        // The matching of C against the element\'s language value is performed case-insensitively.\n        // The identifier C does not have to be a valid language name."\n        // http://www.w3.org/TR/selectors/#lang-pseudo\n        "lang": markFunction(function (lang) {\n          // lang value must be a valid identifier\n          if (!ridentifier.test(lang || "")) {\n            Sizzle.error("unsupported lang: " + lang);\n          }\n\n          lang = lang.replace(runescape, funescape).toLowerCase();\n          return function (elem) {\n            var elemLang;\n\n            do {\n              if (elemLang = documentIsHTML ? elem.lang : elem.getAttribute("xml:lang") || elem.getAttribute("lang")) {\n                elemLang = elemLang.toLowerCase();\n                return elemLang === lang || elemLang.indexOf(lang + "-") === 0;\n              }\n            } while ((elem = elem.parentNode) && elem.nodeType === 1);\n\n            return false;\n          };\n        }),\n        // Miscellaneous\n        "target": function (elem) {\n          var hash = window.location && window.location.hash;\n          return hash && hash.slice(1) === elem.id;\n        },\n        "root": function (elem) {\n          return elem === docElem;\n        },\n        "focus": function (elem) {\n          return elem === document.activeElement && (!document.hasFocus || document.hasFocus()) && !!(elem.type || elem.href || ~elem.tabIndex);\n        },\n        // Boolean properties\n        "enabled": createDisabledPseudo(false),\n        "disabled": createDisabledPseudo(true),\n        "checked": function (elem) {\n          // In CSS3, :checked should return both checked and selected elements\n          // http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked\n          var nodeName = elem.nodeName.toLowerCase();\n          return nodeName === "input" && !!elem.checked || nodeName === "option" && !!elem.selected;\n        },\n        "selected": function (elem) {\n          // Accessing this property makes selected-by-default\n          // options in Safari work properly\n          if (elem.parentNode) {\n            // eslint-disable-next-line no-unused-expressions\n            elem.parentNode.selectedIndex;\n          }\n\n          return elem.selected === true;\n        },\n        // Contents\n        "empty": function (elem) {\n          // http://www.w3.org/TR/selectors/#empty-pseudo\n          // :empty is negated by element (1) or content nodes (text: 3; cdata: 4; entity ref: 5),\n          //   but not by others (comment: 8; processing instruction: 7; etc.)\n          // nodeType < 6 works because attributes (2) do not appear as children\n          for (elem = elem.firstChild; elem; elem = elem.nextSibling) {\n            if (elem.nodeType < 6) {\n              return false;\n            }\n          }\n\n          return true;\n        },\n        "parent": function (elem) {\n          return !Expr.pseudos["empty"](elem);\n        },\n        // Element/input types\n        "header": function (elem) {\n          return rheader.test(elem.nodeName);\n        },\n        "input": function (elem) {\n          return rinputs.test(elem.nodeName);\n        },\n        "button": function (elem) {\n          var name = elem.nodeName.toLowerCase();\n          return name === "input" && elem.type === "button" || name === "button";\n        },\n        "text": function (elem) {\n          var attr;\n          return elem.nodeName.toLowerCase() === "input" && elem.type === "text" && ( // Support: IE<8\n          // New HTML5 attribute values (e.g., "search") appear with elem.type === "text"\n          (attr = elem.getAttribute("type")) == null || attr.toLowerCase() === "text");\n        },\n        // Position-in-collection\n        "first": createPositionalPseudo(function () {\n          return [0];\n        }),\n        "last": createPositionalPseudo(function (_matchIndexes, length) {\n          return [length - 1];\n        }),\n        "eq": createPositionalPseudo(function (_matchIndexes, length, argument) {\n          return [argument < 0 ? argument + length : argument];\n        }),\n        "even": createPositionalPseudo(function (matchIndexes, length) {\n          var i = 0;\n\n          for (; i < length; i += 2) {\n            matchIndexes.push(i);\n          }\n\n          return matchIndexes;\n        }),\n        "odd": createPositionalPseudo(function (matchIndexes, length) {\n          var i = 1;\n\n          for (; i < length; i += 2) {\n            matchIndexes.push(i);\n          }\n\n          return matchIndexes;\n        }),\n        "lt": createPositionalPseudo(function (matchIndexes, length, argument) {\n          var i = argument < 0 ? argument + length : argument > length ? length : argument;\n\n          for (; --i >= 0;) {\n            matchIndexes.push(i);\n          }\n\n          return matchIndexes;\n        }),\n        "gt": createPositionalPseudo(function (matchIndexes, length, argument) {\n          var i = argument < 0 ? argument + length : argument;\n\n          for (; ++i < length;) {\n            matchIndexes.push(i);\n          }\n\n          return matchIndexes;\n        })\n      }\n    };\n    Expr.pseudos["nth"] = Expr.pseudos["eq"]; // Add button/input type pseudos\n\n    for (i in {\n      radio: true,\n      checkbox: true,\n      file: true,\n      password: true,\n      image: true\n    }) {\n      Expr.pseudos[i] = createInputPseudo(i);\n    }\n\n    for (i in {\n      submit: true,\n      reset: true\n    }) {\n      Expr.pseudos[i] = createButtonPseudo(i);\n    } // Easy API for creating new setFilters\n\n\n    function setFilters() {}\n\n    setFilters.prototype = Expr.filters = Expr.pseudos;\n    Expr.setFilters = new setFilters();\n\n    tokenize = Sizzle.tokenize = function (selector, parseOnly) {\n      var matched,\n          match,\n          tokens,\n          type,\n          soFar,\n          groups,\n          preFilters,\n          cached = tokenCache[selector + " "];\n\n      if (cached) {\n        return parseOnly ? 0 : cached.slice(0);\n      }\n\n      soFar = selector;\n      groups = [];\n      preFilters = Expr.preFilter;\n\n      while (soFar) {\n        // Comma and first run\n        if (!matched || (match = rcomma.exec(soFar))) {\n          if (match) {\n            // Don\'t consume trailing commas as valid\n            soFar = soFar.slice(match[0].length) || soFar;\n          }\n\n          groups.push(tokens = []);\n        }\n\n        matched = false; // Combinators\n\n        if (match = rcombinators.exec(soFar)) {\n          matched = match.shift();\n          tokens.push({\n            value: matched,\n            // Cast descendant combinators to space\n            type: match[0].replace(rtrim, " ")\n          });\n          soFar = soFar.slice(matched.length);\n        } // Filters\n\n\n        for (type in Expr.filter) {\n          if ((match = matchExpr[type].exec(soFar)) && (!preFilters[type] || (match = preFilters[type](match)))) {\n            matched = match.shift();\n            tokens.push({\n              value: matched,\n              type: type,\n              matches: match\n            });\n            soFar = soFar.slice(matched.length);\n          }\n        }\n\n        if (!matched) {\n          break;\n        }\n      } // Return the length of the invalid excess\n      // if we\'re just parsing\n      // Otherwise, throw an error or return tokens\n\n\n      return parseOnly ? soFar.length : soFar ? Sizzle.error(selector) : // Cache the tokens\n      tokenCache(selector, groups).slice(0);\n    };\n\n    function toSelector(tokens) {\n      var i = 0,\n          len = tokens.length,\n          selector = "";\n\n      for (; i < len; i++) {\n        selector += tokens[i].value;\n      }\n\n      return selector;\n    }\n\n    function addCombinator(matcher, combinator, base) {\n      var dir = combinator.dir,\n          skip = combinator.next,\n          key = skip || dir,\n          checkNonElements = base && key === "parentNode",\n          doneName = done++;\n      return combinator.first ? // Check against closest ancestor/preceding element\n      function (elem, context, xml) {\n        while (elem = elem[dir]) {\n          if (elem.nodeType === 1 || checkNonElements) {\n            return matcher(elem, context, xml);\n          }\n        }\n\n        return false;\n      } : // Check against all ancestor/preceding elements\n      function (elem, context, xml) {\n        var oldCache,\n            uniqueCache,\n            outerCache,\n            newCache = [dirruns, doneName]; // We can\'t set arbitrary data on XML nodes, so they don\'t benefit from combinator caching\n\n        if (xml) {\n          while (elem = elem[dir]) {\n            if (elem.nodeType === 1 || checkNonElements) {\n              if (matcher(elem, context, xml)) {\n                return true;\n              }\n            }\n          }\n        } else {\n          while (elem = elem[dir]) {\n            if (elem.nodeType === 1 || checkNonElements) {\n              outerCache = elem[expando] || (elem[expando] = {}); // Support: IE <9 only\n              // Defend against cloned attroperties (jQuery gh-1709)\n\n              uniqueCache = outerCache[elem.uniqueID] || (outerCache[elem.uniqueID] = {});\n\n              if (skip && skip === elem.nodeName.toLowerCase()) {\n                elem = elem[dir] || elem;\n              } else if ((oldCache = uniqueCache[key]) && oldCache[0] === dirruns && oldCache[1] === doneName) {\n                // Assign to newCache so results back-propagate to previous elements\n                return newCache[2] = oldCache[2];\n              } else {\n                // Reuse newcache so results back-propagate to previous elements\n                uniqueCache[key] = newCache; // A match means we\'re done; a fail means we have to keep checking\n\n                if (newCache[2] = matcher(elem, context, xml)) {\n                  return true;\n                }\n              }\n            }\n          }\n        }\n\n        return false;\n      };\n    }\n\n    function elementMatcher(matchers) {\n      return matchers.length > 1 ? function (elem, context, xml) {\n        var i = matchers.length;\n\n        while (i--) {\n          if (!matchers[i](elem, context, xml)) {\n            return false;\n          }\n        }\n\n        return true;\n      } : matchers[0];\n    }\n\n    function multipleContexts(selector, contexts, results) {\n      var i = 0,\n          len = contexts.length;\n\n      for (; i < len; i++) {\n        Sizzle(selector, contexts[i], results);\n      }\n\n      return results;\n    }\n\n    function condense(unmatched, map, filter, context, xml) {\n      var elem,\n          newUnmatched = [],\n          i = 0,\n          len = unmatched.length,\n          mapped = map != null;\n\n      for (; i < len; i++) {\n        if (elem = unmatched[i]) {\n          if (!filter || filter(elem, context, xml)) {\n            newUnmatched.push(elem);\n\n            if (mapped) {\n              map.push(i);\n            }\n          }\n        }\n      }\n\n      return newUnmatched;\n    }\n\n    function setMatcher(preFilter, selector, matcher, postFilter, postFinder, postSelector) {\n      if (postFilter && !postFilter[expando]) {\n        postFilter = setMatcher(postFilter);\n      }\n\n      if (postFinder && !postFinder[expando]) {\n        postFinder = setMatcher(postFinder, postSelector);\n      }\n\n      return markFunction(function (seed, results, context, xml) {\n        var temp,\n            i,\n            elem,\n            preMap = [],\n            postMap = [],\n            preexisting = results.length,\n            // Get initial elements from seed or context\n        elems = seed || multipleContexts(selector || "*", context.nodeType ? [context] : context, []),\n            // Prefilter to get matcher input, preserving a map for seed-results synchronization\n        matcherIn = preFilter && (seed || !selector) ? condense(elems, preMap, preFilter, context, xml) : elems,\n            matcherOut = matcher ? // If we have a postFinder, or filtered seed, or non-seed postFilter or preexisting results,\n        postFinder || (seed ? preFilter : preexisting || postFilter) ? // ...intermediate processing is necessary\n        [] : // ...otherwise use results directly\n        results : matcherIn; // Find primary matches\n\n        if (matcher) {\n          matcher(matcherIn, matcherOut, context, xml);\n        } // Apply postFilter\n\n\n        if (postFilter) {\n          temp = condense(matcherOut, postMap);\n          postFilter(temp, [], context, xml); // Un-match failing elements by moving them back to matcherIn\n\n          i = temp.length;\n\n          while (i--) {\n            if (elem = temp[i]) {\n              matcherOut[postMap[i]] = !(matcherIn[postMap[i]] = elem);\n            }\n          }\n        }\n\n        if (seed) {\n          if (postFinder || preFilter) {\n            if (postFinder) {\n              // Get the final matcherOut by condensing this intermediate into postFinder contexts\n              temp = [];\n              i = matcherOut.length;\n\n              while (i--) {\n                if (elem = matcherOut[i]) {\n                  // Restore matcherIn since elem is not yet a final match\n                  temp.push(matcherIn[i] = elem);\n                }\n              }\n\n              postFinder(null, matcherOut = [], temp, xml);\n            } // Move matched elements from seed to results to keep them synchronized\n\n\n            i = matcherOut.length;\n\n            while (i--) {\n              if ((elem = matcherOut[i]) && (temp = postFinder ? indexOf(seed, elem) : preMap[i]) > -1) {\n                seed[temp] = !(results[temp] = elem);\n              }\n            }\n          } // Add elements to results, through postFinder if defined\n\n        } else {\n          matcherOut = condense(matcherOut === results ? matcherOut.splice(preexisting, matcherOut.length) : matcherOut);\n\n          if (postFinder) {\n            postFinder(null, results, matcherOut, xml);\n          } else {\n            push.apply(results, matcherOut);\n          }\n        }\n      });\n    }\n\n    function matcherFromTokens(tokens) {\n      var checkContext,\n          matcher,\n          j,\n          len = tokens.length,\n          leadingRelative = Expr.relative[tokens[0].type],\n          implicitRelative = leadingRelative || Expr.relative[" "],\n          i = leadingRelative ? 1 : 0,\n          // The foundational matcher ensures that elements are reachable from top-level context(s)\n      matchContext = addCombinator(function (elem) {\n        return elem === checkContext;\n      }, implicitRelative, true),\n          matchAnyContext = addCombinator(function (elem) {\n        return indexOf(checkContext, elem) > -1;\n      }, implicitRelative, true),\n          matchers = [function (elem, context, xml) {\n        var ret = !leadingRelative && (xml || context !== outermostContext) || ((checkContext = context).nodeType ? matchContext(elem, context, xml) : matchAnyContext(elem, context, xml)); // Avoid hanging onto element (issue #299)\n\n        checkContext = null;\n        return ret;\n      }];\n\n      for (; i < len; i++) {\n        if (matcher = Expr.relative[tokens[i].type]) {\n          matchers = [addCombinator(elementMatcher(matchers), matcher)];\n        } else {\n          matcher = Expr.filter[tokens[i].type].apply(null, tokens[i].matches); // Return special upon seeing a positional matcher\n\n          if (matcher[expando]) {\n            // Find the next relative operator (if any) for proper handling\n            j = ++i;\n\n            for (; j < len; j++) {\n              if (Expr.relative[tokens[j].type]) {\n                break;\n              }\n            }\n\n            return setMatcher(i > 1 && elementMatcher(matchers), i > 1 && toSelector( // If the preceding token was a descendant combinator, insert an implicit any-element `*`\n            tokens.slice(0, i - 1).concat({\n              value: tokens[i - 2].type === " " ? "*" : ""\n            })).replace(rtrim, "$1"), matcher, i < j && matcherFromTokens(tokens.slice(i, j)), j < len && matcherFromTokens(tokens = tokens.slice(j)), j < len && toSelector(tokens));\n          }\n\n          matchers.push(matcher);\n        }\n      }\n\n      return elementMatcher(matchers);\n    }\n\n    function matcherFromGroupMatchers(elementMatchers, setMatchers) {\n      var bySet = setMatchers.length > 0,\n          byElement = elementMatchers.length > 0,\n          superMatcher = function (seed, context, xml, results, outermost) {\n        var elem,\n            j,\n            matcher,\n            matchedCount = 0,\n            i = "0",\n            unmatched = seed && [],\n            setMatched = [],\n            contextBackup = outermostContext,\n            // We must always have either seed elements or outermost context\n        elems = seed || byElement && Expr.find["TAG"]("*", outermost),\n            // Use integer dirruns iff this is the outermost matcher\n        dirrunsUnique = dirruns += contextBackup == null ? 1 : Math.random() || 0.1,\n            len = elems.length;\n\n        if (outermost) {\n          // Support: IE 11+, Edge 17 - 18+\n          // IE/Edge sometimes throw a "Permission denied" error when strict-comparing\n          // two documents; shallow comparisons work.\n          // eslint-disable-next-line eqeqeq\n          outermostContext = context == document || context || outermost;\n        } // Add elements passing elementMatchers directly to results\n        // Support: IE<9, Safari\n        // Tolerate NodeList properties (IE: "length"; Safari: <number>) matching elements by id\n\n\n        for (; i !== len && (elem = elems[i]) != null; i++) {\n          if (byElement && elem) {\n            j = 0; // Support: IE 11+, Edge 17 - 18+\n            // IE/Edge sometimes throw a "Permission denied" error when strict-comparing\n            // two documents; shallow comparisons work.\n            // eslint-disable-next-line eqeqeq\n\n            if (!context && elem.ownerDocument != document) {\n              setDocument(elem);\n              xml = !documentIsHTML;\n            }\n\n            while (matcher = elementMatchers[j++]) {\n              if (matcher(elem, context || document, xml)) {\n                results.push(elem);\n                break;\n              }\n            }\n\n            if (outermost) {\n              dirruns = dirrunsUnique;\n            }\n          } // Track unmatched elements for set filters\n\n\n          if (bySet) {\n            // They will have gone through all possible matchers\n            if (elem = !matcher && elem) {\n              matchedCount--;\n            } // Lengthen the array for every element, matched or not\n\n\n            if (seed) {\n              unmatched.push(elem);\n            }\n          }\n        } // `i` is now the count of elements visited above, and adding it to `matchedCount`\n        // makes the latter nonnegative.\n\n\n        matchedCount += i; // Apply set filters to unmatched elements\n        // NOTE: This can be skipped if there are no unmatched elements (i.e., `matchedCount`\n        // equals `i`), unless we didn\'t visit _any_ elements in the above loop because we have\n        // no element matchers and no seed.\n        // Incrementing an initially-string "0" `i` allows `i` to remain a string only in that\n        // case, which will result in a "00" `matchedCount` that differs from `i` but is also\n        // numerically zero.\n\n        if (bySet && i !== matchedCount) {\n          j = 0;\n\n          while (matcher = setMatchers[j++]) {\n            matcher(unmatched, setMatched, context, xml);\n          }\n\n          if (seed) {\n            // Reintegrate element matches to eliminate the need for sorting\n            if (matchedCount > 0) {\n              while (i--) {\n                if (!(unmatched[i] || setMatched[i])) {\n                  setMatched[i] = pop.call(results);\n                }\n              }\n            } // Discard index placeholder values to get only actual matches\n\n\n            setMatched = condense(setMatched);\n          } // Add matches to results\n\n\n          push.apply(results, setMatched); // Seedless set matches succeeding multiple successful matchers stipulate sorting\n\n          if (outermost && !seed && setMatched.length > 0 && matchedCount + setMatchers.length > 1) {\n            Sizzle.uniqueSort(results);\n          }\n        } // Override manipulation of globals by nested matchers\n\n\n        if (outermost) {\n          dirruns = dirrunsUnique;\n          outermostContext = contextBackup;\n        }\n\n        return unmatched;\n      };\n\n      return bySet ? markFunction(superMatcher) : superMatcher;\n    }\n\n    compile = Sizzle.compile = function (selector, match\n    /* Internal Use Only */\n    ) {\n      var i,\n          setMatchers = [],\n          elementMatchers = [],\n          cached = compilerCache[selector + " "];\n\n      if (!cached) {\n        // Generate a function of recursive functions that can be used to check each element\n        if (!match) {\n          match = tokenize(selector);\n        }\n\n        i = match.length;\n\n        while (i--) {\n          cached = matcherFromTokens(match[i]);\n\n          if (cached[expando]) {\n            setMatchers.push(cached);\n          } else {\n            elementMatchers.push(cached);\n          }\n        } // Cache the compiled function\n\n\n        cached = compilerCache(selector, matcherFromGroupMatchers(elementMatchers, setMatchers)); // Save selector and tokenization\n\n        cached.selector = selector;\n      }\n\n      return cached;\n    };\n    /**\n     * A low-level selection function that works with Sizzle\'s compiled\n     *  selector functions\n     * @param {String|Function} selector A selector or a pre-compiled\n     *  selector function built with Sizzle.compile\n     * @param {Element} context\n     * @param {Array} [results]\n     * @param {Array} [seed] A set of elements to match against\n     */\n\n\n    select = Sizzle.select = function (selector, context, results, seed) {\n      var i,\n          tokens,\n          token,\n          type,\n          find,\n          compiled = typeof selector === "function" && selector,\n          match = !seed && tokenize(selector = compiled.selector || selector);\n      results = results || []; // Try to minimize operations if there is only one selector in the list and no seed\n      // (the latter of which guarantees us context)\n\n      if (match.length === 1) {\n        // Reduce context if the leading compound selector is an ID\n        tokens = match[0] = match[0].slice(0);\n\n        if (tokens.length > 2 && (token = tokens[0]).type === "ID" && context.nodeType === 9 && documentIsHTML && Expr.relative[tokens[1].type]) {\n          context = (Expr.find["ID"](token.matches[0].replace(runescape, funescape), context) || [])[0];\n\n          if (!context) {\n            return results; // Precompiled matchers will still verify ancestry, so step up a level\n          } else if (compiled) {\n            context = context.parentNode;\n          }\n\n          selector = selector.slice(tokens.shift().value.length);\n        } // Fetch a seed set for right-to-left matching\n\n\n        i = matchExpr["needsContext"].test(selector) ? 0 : tokens.length;\n\n        while (i--) {\n          token = tokens[i]; // Abort if we hit a combinator\n\n          if (Expr.relative[type = token.type]) {\n            break;\n          }\n\n          if (find = Expr.find[type]) {\n            // Search, expanding context for leading sibling combinators\n            if (seed = find(token.matches[0].replace(runescape, funescape), rsibling.test(tokens[0].type) && testContext(context.parentNode) || context)) {\n              // If seed is empty or no tokens remain, we can return early\n              tokens.splice(i, 1);\n              selector = seed.length && toSelector(tokens);\n\n              if (!selector) {\n                push.apply(results, seed);\n                return results;\n              }\n\n              break;\n            }\n          }\n        }\n      } // Compile and execute a filtering function if one is not provided\n      // Provide `match` to avoid retokenization if we modified the selector above\n\n\n      (compiled || compile(selector, match))(seed, context, !documentIsHTML, results, !context || rsibling.test(selector) && testContext(context.parentNode) || context);\n      return results;\n    }; // One-time assignments\n    // Sort stability\n\n\n    support.sortStable = expando.split("").sort(sortOrder).join("") === expando; // Support: Chrome 14-35+\n    // Always assume duplicates if they aren\'t passed to the comparison function\n\n    support.detectDuplicates = !!hasDuplicate; // Initialize against the default document\n\n    setDocument(); // Support: Webkit<537.32 - Safari 6.0.3/Chrome 25 (fixed in Chrome 27)\n    // Detached nodes confoundingly follow *each other*\n\n    support.sortDetached = assert(function (el) {\n      // Should return 1, but returns 4 (following)\n      return el.compareDocumentPosition(document.createElement("fieldset")) & 1;\n    }); // Support: IE<8\n    // Prevent attribute/property "interpolation"\n    // https://msdn.microsoft.com/en-us/library/ms536429%28VS.85%29.aspx\n\n    if (!assert(function (el) {\n      el.innerHTML = "<a href=\'#\'><\/a>";\n      return el.firstChild.getAttribute("href") === "#";\n    })) {\n      addHandle("type|href|height|width", function (elem, name, isXML) {\n        if (!isXML) {\n          return elem.getAttribute(name, name.toLowerCase() === "type" ? 1 : 2);\n        }\n      });\n    } // Support: IE<9\n    // Use defaultValue in place of getAttribute("value")\n\n\n    if (!support.attributes || !assert(function (el) {\n      el.innerHTML = "<input/>";\n      el.firstChild.setAttribute("value", "");\n      return el.firstChild.getAttribute("value") === "";\n    })) {\n      addHandle("value", function (elem, _name, isXML) {\n        if (!isXML && elem.nodeName.toLowerCase() === "input") {\n          return elem.defaultValue;\n        }\n      });\n    } // Support: IE<9\n    // Use getAttributeNode to fetch booleans when getAttribute lies\n\n\n    if (!assert(function (el) {\n      return el.getAttribute("disabled") == null;\n    })) {\n      addHandle(booleans, function (elem, name, isXML) {\n        var val;\n\n        if (!isXML) {\n          return elem[name] === true ? name.toLowerCase() : (val = elem.getAttributeNode(name)) && val.specified ? val.value : null;\n        }\n      });\n    }\n\n    return Sizzle;\n  }(window);\n\n  jQuery.find = Sizzle;\n  jQuery.expr = Sizzle.selectors; // Deprecated\n\n  jQuery.expr[":"] = jQuery.expr.pseudos;\n  jQuery.uniqueSort = jQuery.unique = Sizzle.uniqueSort;\n  jQuery.text = Sizzle.getText;\n  jQuery.isXMLDoc = Sizzle.isXML;\n  jQuery.contains = Sizzle.contains;\n  jQuery.escapeSelector = Sizzle.escape;\n\n  var dir = function (elem, dir, until) {\n    var matched = [],\n        truncate = until !== undefined;\n\n    while ((elem = elem[dir]) && elem.nodeType !== 9) {\n      if (elem.nodeType === 1) {\n        if (truncate && jQuery(elem).is(until)) {\n          break;\n        }\n\n        matched.push(elem);\n      }\n    }\n\n    return matched;\n  };\n\n  var siblings = function (n, elem) {\n    var matched = [];\n\n    for (; n; n = n.nextSibling) {\n      if (n.nodeType === 1 && n !== elem) {\n        matched.push(n);\n      }\n    }\n\n    return matched;\n  };\n\n  var rneedsContext = jQuery.expr.match.needsContext;\n\n  function nodeName(elem, name) {\n    return elem.nodeName && elem.nodeName.toLowerCase() === name.toLowerCase();\n  }\n\n  ;\n  var rsingleTag = /^<([a-z][^\\/\\0>:\\x20\\t\\r\\n\\f]*)[\\x20\\t\\r\\n\\f]*\\/?>(?:<\\/\\1>|)$/i; // Implement the identical functionality for filter and not\n\n  function winnow(elements, qualifier, not) {\n    if (isFunction(qualifier)) {\n      return jQuery.grep(elements, function (elem, i) {\n        return !!qualifier.call(elem, i, elem) !== not;\n      });\n    } // Single element\n\n\n    if (qualifier.nodeType) {\n      return jQuery.grep(elements, function (elem) {\n        return elem === qualifier !== not;\n      });\n    } // Arraylike of elements (jQuery, arguments, Array)\n\n\n    if (typeof qualifier !== "string") {\n      return jQuery.grep(elements, function (elem) {\n        return indexOf.call(qualifier, elem) > -1 !== not;\n      });\n    } // Filtered directly for both simple and complex selectors\n\n\n    return jQuery.filter(qualifier, elements, not);\n  }\n\n  jQuery.filter = function (expr, elems, not) {\n    var elem = elems[0];\n\n    if (not) {\n      expr = ":not(" + expr + ")";\n    }\n\n    if (elems.length === 1 && elem.nodeType === 1) {\n      return jQuery.find.matchesSelector(elem, expr) ? [elem] : [];\n    }\n\n    return jQuery.find.matches(expr, jQuery.grep(elems, function (elem) {\n      return elem.nodeType === 1;\n    }));\n  };\n\n  jQuery.fn.extend({\n    find: function (selector) {\n      var i,\n          ret,\n          len = this.length,\n          self = this;\n\n      if (typeof selector !== "string") {\n        return this.pushStack(jQuery(selector).filter(function () {\n          for (i = 0; i < len; i++) {\n            if (jQuery.contains(self[i], this)) {\n              return true;\n            }\n          }\n        }));\n      }\n\n      ret = this.pushStack([]);\n\n      for (i = 0; i < len; i++) {\n        jQuery.find(selector, self[i], ret);\n      }\n\n      return len > 1 ? jQuery.uniqueSort(ret) : ret;\n    },\n    filter: function (selector) {\n      return this.pushStack(winnow(this, selector || [], false));\n    },\n    not: function (selector) {\n      return this.pushStack(winnow(this, selector || [], true));\n    },\n    is: function (selector) {\n      return !!winnow(this, // If this is a positional/relative selector, check membership in the returned set\n      // so $("p:first").is("p:last") won\'t return true for a doc with two "p".\n      typeof selector === "string" && rneedsContext.test(selector) ? jQuery(selector) : selector || [], false).length;\n    }\n  }); // Initialize a jQuery object\n  // A central reference to the root jQuery(document)\n\n  var rootjQuery,\n      // A simple way to check for HTML strings\n  // Prioritize #id over <tag> to avoid XSS via location.hash (#9521)\n  // Strict HTML recognition (#11290: must start with <)\n  // Shortcut simple #id case for speed\n  rquickExpr = /^(?:\\s*(<[\\w\\W]+>)[^>]*|#([\\w-]+))$/,\n      init = jQuery.fn.init = function (selector, context, root) {\n    var match, elem; // HANDLE: $(""), $(null), $(undefined), $(false)\n\n    if (!selector) {\n      return this;\n    } // Method init() accepts an alternate rootjQuery\n    // so migrate can support jQuery.sub (gh-2101)\n\n\n    root = root || rootjQuery; // Handle HTML strings\n\n    if (typeof selector === "string") {\n      if (selector[0] === "<" && selector[selector.length - 1] === ">" && selector.length >= 3) {\n        // Assume that strings that start and end with <> are HTML and skip the regex check\n        match = [null, selector, null];\n      } else {\n        match = rquickExpr.exec(selector);\n      } // Match html or make sure no context is specified for #id\n\n\n      if (match && (match[1] || !context)) {\n        // HANDLE: $(html) -> $(array)\n        if (match[1]) {\n          context = context instanceof jQuery ? context[0] : context; // Option to run scripts is true for back-compat\n          // Intentionally let the error be thrown if parseHTML is not present\n\n          jQuery.merge(this, jQuery.parseHTML(match[1], context && context.nodeType ? context.ownerDocument || context : document, true)); // HANDLE: $(html, props)\n\n          if (rsingleTag.test(match[1]) && jQuery.isPlainObject(context)) {\n            for (match in context) {\n              // Properties of context are called as methods if possible\n              if (isFunction(this[match])) {\n                this[match](context[match]); // ...and otherwise set as attributes\n              } else {\n                this.attr(match, context[match]);\n              }\n            }\n          }\n\n          return this; // HANDLE: $(#id)\n        } else {\n          elem = document.getElementById(match[2]);\n\n          if (elem) {\n            // Inject the element directly into the jQuery object\n            this[0] = elem;\n            this.length = 1;\n          }\n\n          return this;\n        } // HANDLE: $(expr, $(...))\n\n      } else if (!context || context.jquery) {\n        return (context || root).find(selector); // HANDLE: $(expr, context)\n        // (which is just equivalent to: $(context).find(expr)\n      } else {\n        return this.constructor(context).find(selector);\n      } // HANDLE: $(DOMElement)\n\n    } else if (selector.nodeType) {\n      this[0] = selector;\n      this.length = 1;\n      return this; // HANDLE: $(function)\n      // Shortcut for document ready\n    } else if (isFunction(selector)) {\n      return root.ready !== undefined ? root.ready(selector) : // Execute immediately if ready is not present\n      selector(jQuery);\n    }\n\n    return jQuery.makeArray(selector, this);\n  }; // Give the init function the jQuery prototype for later instantiation\n\n\n  init.prototype = jQuery.fn; // Initialize central reference\n\n  rootjQuery = jQuery(document);\n  var rparentsprev = /^(?:parents|prev(?:Until|All))/,\n      // Methods guaranteed to produce a unique set when starting from a unique set\n  guaranteedUnique = {\n    children: true,\n    contents: true,\n    next: true,\n    prev: true\n  };\n  jQuery.fn.extend({\n    has: function (target) {\n      var targets = jQuery(target, this),\n          l = targets.length;\n      return this.filter(function () {\n        var i = 0;\n\n        for (; i < l; i++) {\n          if (jQuery.contains(this, targets[i])) {\n            return true;\n          }\n        }\n      });\n    },\n    closest: function (selectors, context) {\n      var cur,\n          i = 0,\n          l = this.length,\n          matched = [],\n          targets = typeof selectors !== "string" && jQuery(selectors); // Positional selectors never match, since there\'s no _selection_ context\n\n      if (!rneedsContext.test(selectors)) {\n        for (; i < l; i++) {\n          for (cur = this[i]; cur && cur !== context; cur = cur.parentNode) {\n            // Always skip document fragments\n            if (cur.nodeType < 11 && (targets ? targets.index(cur) > -1 : // Don\'t pass non-elements to Sizzle\n            cur.nodeType === 1 && jQuery.find.matchesSelector(cur, selectors))) {\n              matched.push(cur);\n              break;\n            }\n          }\n        }\n      }\n\n      return this.pushStack(matched.length > 1 ? jQuery.uniqueSort(matched) : matched);\n    },\n    // Determine the position of an element within the set\n    index: function (elem) {\n      // No argument, return index in parent\n      if (!elem) {\n        return this[0] && this[0].parentNode ? this.first().prevAll().length : -1;\n      } // Index in selector\n\n\n      if (typeof elem === "string") {\n        return indexOf.call(jQuery(elem), this[0]);\n      } // Locate the position of the desired element\n\n\n      return indexOf.call(this, // If it receives a jQuery object, the first element is used\n      elem.jquery ? elem[0] : elem);\n    },\n    add: function (selector, context) {\n      return this.pushStack(jQuery.uniqueSort(jQuery.merge(this.get(), jQuery(selector, context))));\n    },\n    addBack: function (selector) {\n      return this.add(selector == null ? this.prevObject : this.prevObject.filter(selector));\n    }\n  });\n\n  function sibling(cur, dir) {\n    while ((cur = cur[dir]) && cur.nodeType !== 1) {}\n\n    return cur;\n  }\n\n  jQuery.each({\n    parent: function (elem) {\n      var parent = elem.parentNode;\n      return parent && parent.nodeType !== 11 ? parent : null;\n    },\n    parents: function (elem) {\n      return dir(elem, "parentNode");\n    },\n    parentsUntil: function (elem, _i, until) {\n      return dir(elem, "parentNode", until);\n    },\n    next: function (elem) {\n      return sibling(elem, "nextSibling");\n    },\n    prev: function (elem) {\n      return sibling(elem, "previousSibling");\n    },\n    nextAll: function (elem) {\n      return dir(elem, "nextSibling");\n    },\n    prevAll: function (elem) {\n      return dir(elem, "previousSibling");\n    },\n    nextUntil: function (elem, _i, until) {\n      return dir(elem, "nextSibling", until);\n    },\n    prevUntil: function (elem, _i, until) {\n      return dir(elem, "previousSibling", until);\n    },\n    siblings: function (elem) {\n      return siblings((elem.parentNode || {}).firstChild, elem);\n    },\n    children: function (elem) {\n      return siblings(elem.firstChild);\n    },\n    contents: function (elem) {\n      if (elem.contentDocument != null && // Support: IE 11+\n      // <object> elements with no `data` attribute has an object\n      // `contentDocument` with a `null` prototype.\n      getProto(elem.contentDocument)) {\n        return elem.contentDocument;\n      } // Support: IE 9 - 11 only, iOS 7 only, Android Browser <=4.3 only\n      // Treat the template element as a regular one in browsers that\n      // don\'t support it.\n\n\n      if (nodeName(elem, "template")) {\n        elem = elem.content || elem;\n      }\n\n      return jQuery.merge([], elem.childNodes);\n    }\n  }, function (name, fn) {\n    jQuery.fn[name] = function (until, selector) {\n      var matched = jQuery.map(this, fn, until);\n\n      if (name.slice(-5) !== "Until") {\n        selector = until;\n      }\n\n      if (selector && typeof selector === "string") {\n        matched = jQuery.filter(selector, matched);\n      }\n\n      if (this.length > 1) {\n        // Remove duplicates\n        if (!guaranteedUnique[name]) {\n          jQuery.uniqueSort(matched);\n        } // Reverse order for parents* and prev-derivatives\n\n\n        if (rparentsprev.test(name)) {\n          matched.reverse();\n        }\n      }\n\n      return this.pushStack(matched);\n    };\n  });\n  var rnothtmlwhite = /[^\\x20\\t\\r\\n\\f]+/g; // Convert String-formatted options into Object-formatted ones\n\n  function createOptions(options) {\n    var object = {};\n    jQuery.each(options.match(rnothtmlwhite) || [], function (_, flag) {\n      object[flag] = true;\n    });\n    return object;\n  }\n  /*\n   * Create a callback list using the following parameters:\n   *\n   *\toptions: an optional list of space-separated options that will change how\n   *\t\t\tthe callback list behaves or a more traditional option object\n   *\n   * By default a callback list will act like an event callback list and can be\n   * "fired" multiple times.\n   *\n   * Possible options:\n   *\n   *\tonce:\t\t\twill ensure the callback list can only be fired once (like a Deferred)\n   *\n   *\tmemory:\t\t\twill keep track of previous values and will call any callback added\n   *\t\t\t\t\tafter the list has been fired right away with the latest "memorized"\n   *\t\t\t\t\tvalues (like a Deferred)\n   *\n   *\tunique:\t\t\twill ensure a callback can only be added once (no duplicate in the list)\n   *\n   *\tstopOnFalse:\tinterrupt callings when a callback returns false\n   *\n   */\n\n\n  jQuery.Callbacks = function (options) {\n    // Convert options from String-formatted to Object-formatted if needed\n    // (we check in cache first)\n    options = typeof options === "string" ? createOptions(options) : jQuery.extend({}, options);\n\n    var // Flag to know if list is currently firing\n    firing,\n        // Last fire value for non-forgettable lists\n    memory,\n        // Flag to know if list was already fired\n    fired,\n        // Flag to prevent firing\n    locked,\n        // Actual callback list\n    list = [],\n        // Queue of execution data for repeatable lists\n    queue = [],\n        // Index of currently firing callback (modified by add/remove as needed)\n    firingIndex = -1,\n        // Fire callbacks\n    fire = function () {\n      // Enforce single-firing\n      locked = locked || options.once; // Execute callbacks for all pending executions,\n      // respecting firingIndex overrides and runtime changes\n\n      fired = firing = true;\n\n      for (; queue.length; firingIndex = -1) {\n        memory = queue.shift();\n\n        while (++firingIndex < list.length) {\n          // Run callback and check for early termination\n          if (list[firingIndex].apply(memory[0], memory[1]) === false && options.stopOnFalse) {\n            // Jump to end and forget the data so .add doesn\'t re-fire\n            firingIndex = list.length;\n            memory = false;\n          }\n        }\n      } // Forget the data if we\'re done with it\n\n\n      if (!options.memory) {\n        memory = false;\n      }\n\n      firing = false; // Clean up if we\'re done firing for good\n\n      if (locked) {\n        // Keep an empty list if we have data for future add calls\n        if (memory) {\n          list = []; // Otherwise, this object is spent\n        } else {\n          list = "";\n        }\n      }\n    },\n        // Actual Callbacks object\n    self = {\n      // Add a callback or a collection of callbacks to the list\n      add: function () {\n        if (list) {\n          // If we have memory from a past run, we should fire after adding\n          if (memory && !firing) {\n            firingIndex = list.length - 1;\n            queue.push(memory);\n          }\n\n          (function add(args) {\n            jQuery.each(args, function (_, arg) {\n              if (isFunction(arg)) {\n                if (!options.unique || !self.has(arg)) {\n                  list.push(arg);\n                }\n              } else if (arg && arg.length && toType(arg) !== "string") {\n                // Inspect recursively\n                add(arg);\n              }\n            });\n          })(arguments);\n\n          if (memory && !firing) {\n            fire();\n          }\n        }\n\n        return this;\n      },\n      // Remove a callback from the list\n      remove: function () {\n        jQuery.each(arguments, function (_, arg) {\n          var index;\n\n          while ((index = jQuery.inArray(arg, list, index)) > -1) {\n            list.splice(index, 1); // Handle firing indexes\n\n            if (index <= firingIndex) {\n              firingIndex--;\n            }\n          }\n        });\n        return this;\n      },\n      // Check if a given callback is in the list.\n      // If no argument is given, return whether or not list has callbacks attached.\n      has: function (fn) {\n        return fn ? jQuery.inArray(fn, list) > -1 : list.length > 0;\n      },\n      // Remove all callbacks from the list\n      empty: function () {\n        if (list) {\n          list = [];\n        }\n\n        return this;\n      },\n      // Disable .fire and .add\n      // Abort any current/pending executions\n      // Clear all callbacks and values\n      disable: function () {\n        locked = queue = [];\n        list = memory = "";\n        return this;\n      },\n      disabled: function () {\n        return !list;\n      },\n      // Disable .fire\n      // Also disable .add unless we have memory (since it would have no effect)\n      // Abort any pending executions\n      lock: function () {\n        locked = queue = [];\n\n        if (!memory && !firing) {\n          list = memory = "";\n        }\n\n        return this;\n      },\n      locked: function () {\n        return !!locked;\n      },\n      // Call all callbacks with the given context and arguments\n      fireWith: function (context, args) {\n        if (!locked) {\n          args = args || [];\n          args = [context, args.slice ? args.slice() : args];\n          queue.push(args);\n\n          if (!firing) {\n            fire();\n          }\n        }\n\n        return this;\n      },\n      // Call all the callbacks with the given arguments\n      fire: function () {\n        self.fireWith(this, arguments);\n        return this;\n      },\n      // To know if the callbacks have already been called at least once\n      fired: function () {\n        return !!fired;\n      }\n    };\n\n    return self;\n  };\n\n  function Identity(v) {\n    return v;\n  }\n\n  function Thrower(ex) {\n    throw ex;\n  }\n\n  function adoptValue(value, resolve, reject, noValue) {\n    var method;\n\n    try {\n      // Check for promise aspect first to privilege synchronous behavior\n      if (value && isFunction(method = value.promise)) {\n        method.call(value).done(resolve).fail(reject); // Other thenables\n      } else if (value && isFunction(method = value.then)) {\n        method.call(value, resolve, reject); // Other non-thenables\n      } else {\n        // Control `resolve` arguments by letting Array#slice cast boolean `noValue` to integer:\n        // * false: [ value ].slice( 0 ) => resolve( value )\n        // * true: [ value ].slice( 1 ) => resolve()\n        resolve.apply(undefined, [value].slice(noValue));\n      } // For Promises/A+, convert exceptions into rejections\n      // Since jQuery.when doesn\'t unwrap thenables, we can skip the extra checks appearing in\n      // Deferred#then to conditionally suppress rejection.\n\n    } catch (value) {\n      // Support: Android 4.0 only\n      // Strict mode functions invoked without .call/.apply get global-object context\n      reject.apply(undefined, [value]);\n    }\n  }\n\n  jQuery.extend({\n    Deferred: function (func) {\n      var tuples = [// action, add listener, callbacks,\n      // ... .then handlers, argument index, [final state]\n      ["notify", "progress", jQuery.Callbacks("memory"), jQuery.Callbacks("memory"), 2], ["resolve", "done", jQuery.Callbacks("once memory"), jQuery.Callbacks("once memory"), 0, "resolved"], ["reject", "fail", jQuery.Callbacks("once memory"), jQuery.Callbacks("once memory"), 1, "rejected"]],\n          state = "pending",\n          promise = {\n        state: function () {\n          return state;\n        },\n        always: function () {\n          deferred.done(arguments).fail(arguments);\n          return this;\n        },\n        "catch": function (fn) {\n          return promise.then(null, fn);\n        },\n        // Keep pipe for back-compat\n        pipe: function ()\n        /* fnDone, fnFail, fnProgress */\n        {\n          var fns = arguments;\n          return jQuery.Deferred(function (newDefer) {\n            jQuery.each(tuples, function (_i, tuple) {\n              // Map tuples (progress, done, fail) to arguments (done, fail, progress)\n              var fn = isFunction(fns[tuple[4]]) && fns[tuple[4]]; // deferred.progress(function() { bind to newDefer or newDefer.notify })\n              // deferred.done(function() { bind to newDefer or newDefer.resolve })\n              // deferred.fail(function() { bind to newDefer or newDefer.reject })\n\n              deferred[tuple[1]](function () {\n                var returned = fn && fn.apply(this, arguments);\n\n                if (returned && isFunction(returned.promise)) {\n                  returned.promise().progress(newDefer.notify).done(newDefer.resolve).fail(newDefer.reject);\n                } else {\n                  newDefer[tuple[0] + "With"](this, fn ? [returned] : arguments);\n                }\n              });\n            });\n            fns = null;\n          }).promise();\n        },\n        then: function (onFulfilled, onRejected, onProgress) {\n          var maxDepth = 0;\n\n          function resolve(depth, deferred, handler, special) {\n            return function () {\n              var that = this,\n                  args = arguments,\n                  mightThrow = function () {\n                var returned, then; // Support: Promises/A+ section 2.3.3.3.3\n                // https://promisesaplus.com/#point-59\n                // Ignore double-resolution attempts\n\n                if (depth < maxDepth) {\n                  return;\n                }\n\n                returned = handler.apply(that, args); // Support: Promises/A+ section 2.3.1\n                // https://promisesaplus.com/#point-48\n\n                if (returned === deferred.promise()) {\n                  throw new TypeError("Thenable self-resolution");\n                } // Support: Promises/A+ sections 2.3.3.1, 3.5\n                // https://promisesaplus.com/#point-54\n                // https://promisesaplus.com/#point-75\n                // Retrieve `then` only once\n\n\n                then = returned && ( // Support: Promises/A+ section 2.3.4\n                // https://promisesaplus.com/#point-64\n                // Only check objects and functions for thenability\n                typeof returned === "object" || typeof returned === "function") && returned.then; // Handle a returned thenable\n\n                if (isFunction(then)) {\n                  // Special processors (notify) just wait for resolution\n                  if (special) {\n                    then.call(returned, resolve(maxDepth, deferred, Identity, special), resolve(maxDepth, deferred, Thrower, special)); // Normal processors (resolve) also hook into progress\n                  } else {\n                    // ...and disregard older resolution values\n                    maxDepth++;\n                    then.call(returned, resolve(maxDepth, deferred, Identity, special), resolve(maxDepth, deferred, Thrower, special), resolve(maxDepth, deferred, Identity, deferred.notifyWith));\n                  } // Handle all other returned values\n\n                } else {\n                  // Only substitute handlers pass on context\n                  // and multiple values (non-spec behavior)\n                  if (handler !== Identity) {\n                    that = undefined;\n                    args = [returned];\n                  } // Process the value(s)\n                  // Default process is resolve\n\n\n                  (special || deferred.resolveWith)(that, args);\n                }\n              },\n                  // Only normal processors (resolve) catch and reject exceptions\n              process = special ? mightThrow : function () {\n                try {\n                  mightThrow();\n                } catch (e) {\n                  if (jQuery.Deferred.exceptionHook) {\n                    jQuery.Deferred.exceptionHook(e, process.stackTrace);\n                  } // Support: Promises/A+ section 2.3.3.3.4.1\n                  // https://promisesaplus.com/#point-61\n                  // Ignore post-resolution exceptions\n\n\n                  if (depth + 1 >= maxDepth) {\n                    // Only substitute handlers pass on context\n                    // and multiple values (non-spec behavior)\n                    if (handler !== Thrower) {\n                      that = undefined;\n                      args = [e];\n                    }\n\n                    deferred.rejectWith(that, args);\n                  }\n                }\n              }; // Support: Promises/A+ section 2.3.3.3.1\n              // https://promisesaplus.com/#point-57\n              // Re-resolve promises immediately to dodge false rejection from\n              // subsequent errors\n\n\n              if (depth) {\n                process();\n              } else {\n                // Call an optional hook to record the stack, in case of exception\n                // since it\'s otherwise lost when execution goes async\n                if (jQuery.Deferred.getStackHook) {\n                  process.stackTrace = jQuery.Deferred.getStackHook();\n                }\n\n                window.setTimeout(process);\n              }\n            };\n          }\n\n          return jQuery.Deferred(function (newDefer) {\n            // progress_handlers.add( ... )\n            tuples[0][3].add(resolve(0, newDefer, isFunction(onProgress) ? onProgress : Identity, newDefer.notifyWith)); // fulfilled_handlers.add( ... )\n\n            tuples[1][3].add(resolve(0, newDefer, isFunction(onFulfilled) ? onFulfilled : Identity)); // rejected_handlers.add( ... )\n\n            tuples[2][3].add(resolve(0, newDefer, isFunction(onRejected) ? onRejected : Thrower));\n          }).promise();\n        },\n        // Get a promise for this deferred\n        // If obj is provided, the promise aspect is added to the object\n        promise: function (obj) {\n          return obj != null ? jQuery.extend(obj, promise) : promise;\n        }\n      },\n          deferred = {}; // Add list-specific methods\n\n      jQuery.each(tuples, function (i, tuple) {\n        var list = tuple[2],\n            stateString = tuple[5]; // promise.progress = list.add\n        // promise.done = list.add\n        // promise.fail = list.add\n\n        promise[tuple[1]] = list.add; // Handle state\n\n        if (stateString) {\n          list.add(function () {\n            // state = "resolved" (i.e., fulfilled)\n            // state = "rejected"\n            state = stateString;\n          }, // rejected_callbacks.disable\n          // fulfilled_callbacks.disable\n          tuples[3 - i][2].disable, // rejected_handlers.disable\n          // fulfilled_handlers.disable\n          tuples[3 - i][3].disable, // progress_callbacks.lock\n          tuples[0][2].lock, // progress_handlers.lock\n          tuples[0][3].lock);\n        } // progress_handlers.fire\n        // fulfilled_handlers.fire\n        // rejected_handlers.fire\n\n\n        list.add(tuple[3].fire); // deferred.notify = function() { deferred.notifyWith(...) }\n        // deferred.resolve = function() { deferred.resolveWith(...) }\n        // deferred.reject = function() { deferred.rejectWith(...) }\n\n        deferred[tuple[0]] = function () {\n          deferred[tuple[0] + "With"](this === deferred ? undefined : this, arguments);\n          return this;\n        }; // deferred.notifyWith = list.fireWith\n        // deferred.resolveWith = list.fireWith\n        // deferred.rejectWith = list.fireWith\n\n\n        deferred[tuple[0] + "With"] = list.fireWith;\n      }); // Make the deferred a promise\n\n      promise.promise(deferred); // Call given func if any\n\n      if (func) {\n        func.call(deferred, deferred);\n      } // All done!\n\n\n      return deferred;\n    },\n    // Deferred helper\n    when: function (singleValue) {\n      var // count of uncompleted subordinates\n      remaining = arguments.length,\n          // count of unprocessed arguments\n      i = remaining,\n          // subordinate fulfillment data\n      resolveContexts = Array(i),\n          resolveValues = slice.call(arguments),\n          // the master Deferred\n      master = jQuery.Deferred(),\n          // subordinate callback factory\n      updateFunc = function (i) {\n        return function (value) {\n          resolveContexts[i] = this;\n          resolveValues[i] = arguments.length > 1 ? slice.call(arguments) : value;\n\n          if (! --remaining) {\n            master.resolveWith(resolveContexts, resolveValues);\n          }\n        };\n      }; // Single- and empty arguments are adopted like Promise.resolve\n\n\n      if (remaining <= 1) {\n        adoptValue(singleValue, master.done(updateFunc(i)).resolve, master.reject, !remaining); // Use .then() to unwrap secondary thenables (cf. gh-3000)\n\n        if (master.state() === "pending" || isFunction(resolveValues[i] && resolveValues[i].then)) {\n          return master.then();\n        }\n      } // Multiple arguments are aggregated like Promise.all array elements\n\n\n      while (i--) {\n        adoptValue(resolveValues[i], updateFunc(i), master.reject);\n      }\n\n      return master.promise();\n    }\n  }); // These usually indicate a programmer mistake during development,\n  // warn about them ASAP rather than swallowing them by default.\n\n  var rerrorNames = /^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/;\n\n  jQuery.Deferred.exceptionHook = function (error, stack) {\n    // Support: IE 8 - 9 only\n    // Console exists when dev tools are open, which can happen at any time\n    if (window.console && window.console.warn && error && rerrorNames.test(error.name)) {\n      window.console.warn("jQuery.Deferred exception: " + error.message, error.stack, stack);\n    }\n  };\n\n  jQuery.readyException = function (error) {\n    window.setTimeout(function () {\n      throw error;\n    });\n  }; // The deferred used on DOM ready\n\n\n  var readyList = jQuery.Deferred();\n\n  jQuery.fn.ready = function (fn) {\n    readyList.then(fn) // Wrap jQuery.readyException in a function so that the lookup\n    // happens at the time of error handling instead of callback\n    // registration.\n    .catch(function (error) {\n      jQuery.readyException(error);\n    });\n    return this;\n  };\n\n  jQuery.extend({\n    // Is the DOM ready to be used? Set to true once it occurs.\n    isReady: false,\n    // A counter to track how many items to wait for before\n    // the ready event fires. See #6781\n    readyWait: 1,\n    // Handle when the DOM is ready\n    ready: function (wait) {\n      // Abort if there are pending holds or we\'re already ready\n      if (wait === true ? --jQuery.readyWait : jQuery.isReady) {\n        return;\n      } // Remember that the DOM is ready\n\n\n      jQuery.isReady = true; // If a normal DOM Ready event fired, decrement, and wait if need be\n\n      if (wait !== true && --jQuery.readyWait > 0) {\n        return;\n      } // If there are functions bound, to execute\n\n\n      readyList.resolveWith(document, [jQuery]);\n    }\n  });\n  jQuery.ready.then = readyList.then; // The ready event handler and self cleanup method\n\n  function completed() {\n    document.removeEventListener("DOMContentLoaded", completed);\n    window.removeEventListener("load", completed);\n    jQuery.ready();\n  } // Catch cases where $(document).ready() is called\n  // after the browser event has already occurred.\n  // Support: IE <=9 - 10 only\n  // Older IE sometimes signals "interactive" too soon\n\n\n  if (document.readyState === "complete" || document.readyState !== "loading" && !document.documentElement.doScroll) {\n    // Handle it asynchronously to allow scripts the opportunity to delay ready\n    window.setTimeout(jQuery.ready);\n  } else {\n    // Use the handy event callback\n    document.addEventListener("DOMContentLoaded", completed); // A fallback to window.onload, that will always work\n\n    window.addEventListener("load", completed);\n  } // Multifunctional method to get and set values of a collection\n  // The value/s can optionally be executed if it\'s a function\n\n\n  var access = function (elems, fn, key, value, chainable, emptyGet, raw) {\n    var i = 0,\n        len = elems.length,\n        bulk = key == null; // Sets many values\n\n    if (toType(key) === "object") {\n      chainable = true;\n\n      for (i in key) {\n        access(elems, fn, i, key[i], true, emptyGet, raw);\n      } // Sets one value\n\n    } else if (value !== undefined) {\n      chainable = true;\n\n      if (!isFunction(value)) {\n        raw = true;\n      }\n\n      if (bulk) {\n        // Bulk operations run against the entire set\n        if (raw) {\n          fn.call(elems, value);\n          fn = null; // ...except when executing function values\n        } else {\n          bulk = fn;\n\n          fn = function (elem, _key, value) {\n            return bulk.call(jQuery(elem), value);\n          };\n        }\n      }\n\n      if (fn) {\n        for (; i < len; i++) {\n          fn(elems[i], key, raw ? value : value.call(elems[i], i, fn(elems[i], key)));\n        }\n      }\n    }\n\n    if (chainable) {\n      return elems;\n    } // Gets\n\n\n    if (bulk) {\n      return fn.call(elems);\n    }\n\n    return len ? fn(elems[0], key) : emptyGet;\n  }; // Matches dashed string for camelizing\n\n\n  var rmsPrefix = /^-ms-/,\n      rdashAlpha = /-([a-z])/g; // Used by camelCase as callback to replace()\n\n  function fcamelCase(_all, letter) {\n    return letter.toUpperCase();\n  } // Convert dashed to camelCase; used by the css and data modules\n  // Support: IE <=9 - 11, Edge 12 - 15\n  // Microsoft forgot to hump their vendor prefix (#9572)\n\n\n  function camelCase(string) {\n    return string.replace(rmsPrefix, "ms-").replace(rdashAlpha, fcamelCase);\n  }\n\n  var acceptData = function (owner) {\n    // Accepts only:\n    //  - Node\n    //    - Node.ELEMENT_NODE\n    //    - Node.DOCUMENT_NODE\n    //  - Object\n    //    - Any\n    return owner.nodeType === 1 || owner.nodeType === 9 || !+owner.nodeType;\n  };\n\n  function Data() {\n    this.expando = jQuery.expando + Data.uid++;\n  }\n\n  Data.uid = 1;\n  Data.prototype = {\n    cache: function (owner) {\n      // Check if the owner object already has a cache\n      var value = owner[this.expando]; // If not, create one\n\n      if (!value) {\n        value = {}; // We can accept data for non-element nodes in modern browsers,\n        // but we should not, see #8335.\n        // Always return an empty object.\n\n        if (acceptData(owner)) {\n          // If it is a node unlikely to be stringify-ed or looped over\n          // use plain assignment\n          if (owner.nodeType) {\n            owner[this.expando] = value; // Otherwise secure it in a non-enumerable property\n            // configurable must be true to allow the property to be\n            // deleted when data is removed\n          } else {\n            Object.defineProperty(owner, this.expando, {\n              value: value,\n              configurable: true\n            });\n          }\n        }\n      }\n\n      return value;\n    },\n    set: function (owner, data, value) {\n      var prop,\n          cache = this.cache(owner); // Handle: [ owner, key, value ] args\n      // Always use camelCase key (gh-2257)\n\n      if (typeof data === "string") {\n        cache[camelCase(data)] = value; // Handle: [ owner, { properties } ] args\n      } else {\n        // Copy the properties one-by-one to the cache object\n        for (prop in data) {\n          cache[camelCase(prop)] = data[prop];\n        }\n      }\n\n      return cache;\n    },\n    get: function (owner, key) {\n      return key === undefined ? this.cache(owner) : // Always use camelCase key (gh-2257)\n      owner[this.expando] && owner[this.expando][camelCase(key)];\n    },\n    access: function (owner, key, value) {\n      // In cases where either:\n      //\n      //   1. No key was specified\n      //   2. A string key was specified, but no value provided\n      //\n      // Take the "read" path and allow the get method to determine\n      // which value to return, respectively either:\n      //\n      //   1. The entire cache object\n      //   2. The data stored at the key\n      //\n      if (key === undefined || key && typeof key === "string" && value === undefined) {\n        return this.get(owner, key);\n      } // When the key is not a string, or both a key and value\n      // are specified, set or extend (existing objects) with either:\n      //\n      //   1. An object of properties\n      //   2. A key and value\n      //\n\n\n      this.set(owner, key, value); // Since the "set" path can have two possible entry points\n      // return the expected data based on which path was taken[*]\n\n      return value !== undefined ? value : key;\n    },\n    remove: function (owner, key) {\n      var i,\n          cache = owner[this.expando];\n\n      if (cache === undefined) {\n        return;\n      }\n\n      if (key !== undefined) {\n        // Support array or space separated string of keys\n        if (Array.isArray(key)) {\n          // If key is an array of keys...\n          // We always set camelCase keys, so remove that.\n          key = key.map(camelCase);\n        } else {\n          key = camelCase(key); // If a key with the spaces exists, use it.\n          // Otherwise, create an array by matching non-whitespace\n\n          key = key in cache ? [key] : key.match(rnothtmlwhite) || [];\n        }\n\n        i = key.length;\n\n        while (i--) {\n          delete cache[key[i]];\n        }\n      } // Remove the expando if there\'s no more data\n\n\n      if (key === undefined || jQuery.isEmptyObject(cache)) {\n        // Support: Chrome <=35 - 45\n        // Webkit & Blink performance suffers when deleting properties\n        // from DOM nodes, so set to undefined instead\n        // https://bugs.chromium.org/p/chromium/issues/detail?id=378607 (bug restricted)\n        if (owner.nodeType) {\n          owner[this.expando] = undefined;\n        } else {\n          delete owner[this.expando];\n        }\n      }\n    },\n    hasData: function (owner) {\n      var cache = owner[this.expando];\n      return cache !== undefined && !jQuery.isEmptyObject(cache);\n    }\n  };\n  var dataPriv = new Data();\n  var dataUser = new Data(); //\tImplementation Summary\n  //\n  //\t1. Enforce API surface and semantic compatibility with 1.9.x branch\n  //\t2. Improve the module\'s maintainability by reducing the storage\n  //\t\tpaths to a single mechanism.\n  //\t3. Use the same single mechanism to support "private" and "user" data.\n  //\t4. _Never_ expose "private" data to user code (TODO: Drop _data, _removeData)\n  //\t5. Avoid exposing implementation details on user objects (eg. expando properties)\n  //\t6. Provide a clear path for implementation upgrade to WeakMap in 2014\n\n  var rbrace = /^(?:\\{[\\w\\W]*\\}|\\[[\\w\\W]*\\])$/,\n      rmultiDash = /[A-Z]/g;\n\n  function getData(data) {\n    if (data === "true") {\n      return true;\n    }\n\n    if (data === "false") {\n      return false;\n    }\n\n    if (data === "null") {\n      return null;\n    } // Only convert to a number if it doesn\'t change the string\n\n\n    if (data === +data + "") {\n      return +data;\n    }\n\n    if (rbrace.test(data)) {\n      return JSON.parse(data);\n    }\n\n    return data;\n  }\n\n  function dataAttr(elem, key, data) {\n    var name; // If nothing was found internally, try to fetch any\n    // data from the HTML5 data-* attribute\n\n    if (data === undefined && elem.nodeType === 1) {\n      name = "data-" + key.replace(rmultiDash, "-$&").toLowerCase();\n      data = elem.getAttribute(name);\n\n      if (typeof data === "string") {\n        try {\n          data = getData(data);\n        } catch (e) {} // Make sure we set the data so it isn\'t changed later\n\n\n        dataUser.set(elem, key, data);\n      } else {\n        data = undefined;\n      }\n    }\n\n    return data;\n  }\n\n  jQuery.extend({\n    hasData: function (elem) {\n      return dataUser.hasData(elem) || dataPriv.hasData(elem);\n    },\n    data: function (elem, name, data) {\n      return dataUser.access(elem, name, data);\n    },\n    removeData: function (elem, name) {\n      dataUser.remove(elem, name);\n    },\n    // TODO: Now that all calls to _data and _removeData have been replaced\n    // with direct calls to dataPriv methods, these can be deprecated.\n    _data: function (elem, name, data) {\n      return dataPriv.access(elem, name, data);\n    },\n    _removeData: function (elem, name) {\n      dataPriv.remove(elem, name);\n    }\n  });\n  jQuery.fn.extend({\n    data: function (key, value) {\n      var i,\n          name,\n          data,\n          elem = this[0],\n          attrs = elem && elem.attributes; // Gets all values\n\n      if (key === undefined) {\n        if (this.length) {\n          data = dataUser.get(elem);\n\n          if (elem.nodeType === 1 && !dataPriv.get(elem, "hasDataAttrs")) {\n            i = attrs.length;\n\n            while (i--) {\n              // Support: IE 11 only\n              // The attrs elements can be null (#14894)\n              if (attrs[i]) {\n                name = attrs[i].name;\n\n                if (name.indexOf("data-") === 0) {\n                  name = camelCase(name.slice(5));\n                  dataAttr(elem, name, data[name]);\n                }\n              }\n            }\n\n            dataPriv.set(elem, "hasDataAttrs", true);\n          }\n        }\n\n        return data;\n      } // Sets multiple values\n\n\n      if (typeof key === "object") {\n        return this.each(function () {\n          dataUser.set(this, key);\n        });\n      }\n\n      return access(this, function (value) {\n        var data; // The calling jQuery object (element matches) is not empty\n        // (and therefore has an element appears at this[ 0 ]) and the\n        // `value` parameter was not undefined. An empty jQuery object\n        // will result in `undefined` for elem = this[ 0 ] which will\n        // throw an exception if an attempt to read a data cache is made.\n\n        if (elem && value === undefined) {\n          // Attempt to get data from the cache\n          // The key will always be camelCased in Data\n          data = dataUser.get(elem, key);\n\n          if (data !== undefined) {\n            return data;\n          } // Attempt to "discover" the data in\n          // HTML5 custom data-* attrs\n\n\n          data = dataAttr(elem, key);\n\n          if (data !== undefined) {\n            return data;\n          } // We tried really hard, but the data doesn\'t exist.\n\n\n          return;\n        } // Set the data...\n\n\n        this.each(function () {\n          // We always store the camelCased key\n          dataUser.set(this, key, value);\n        });\n      }, null, value, arguments.length > 1, null, true);\n    },\n    removeData: function (key) {\n      return this.each(function () {\n        dataUser.remove(this, key);\n      });\n    }\n  });\n  jQuery.extend({\n    queue: function (elem, type, data) {\n      var queue;\n\n      if (elem) {\n        type = (type || "fx") + "queue";\n        queue = dataPriv.get(elem, type); // Speed up dequeue by getting out quickly if this is just a lookup\n\n        if (data) {\n          if (!queue || Array.isArray(data)) {\n            queue = dataPriv.access(elem, type, jQuery.makeArray(data));\n          } else {\n            queue.push(data);\n          }\n        }\n\n        return queue || [];\n      }\n    },\n    dequeue: function (elem, type) {\n      type = type || "fx";\n\n      var queue = jQuery.queue(elem, type),\n          startLength = queue.length,\n          fn = queue.shift(),\n          hooks = jQuery._queueHooks(elem, type),\n          next = function () {\n        jQuery.dequeue(elem, type);\n      }; // If the fx queue is dequeued, always remove the progress sentinel\n\n\n      if (fn === "inprogress") {\n        fn = queue.shift();\n        startLength--;\n      }\n\n      if (fn) {\n        // Add a progress sentinel to prevent the fx queue from being\n        // automatically dequeued\n        if (type === "fx") {\n          queue.unshift("inprogress");\n        } // Clear up the last queue stop function\n\n\n        delete hooks.stop;\n        fn.call(elem, next, hooks);\n      }\n\n      if (!startLength && hooks) {\n        hooks.empty.fire();\n      }\n    },\n    // Not public - generate a queueHooks object, or return the current one\n    _queueHooks: function (elem, type) {\n      var key = type + "queueHooks";\n      return dataPriv.get(elem, key) || dataPriv.access(elem, key, {\n        empty: jQuery.Callbacks("once memory").add(function () {\n          dataPriv.remove(elem, [type + "queue", key]);\n        })\n      });\n    }\n  });\n  jQuery.fn.extend({\n    queue: function (type, data) {\n      var setter = 2;\n\n      if (typeof type !== "string") {\n        data = type;\n        type = "fx";\n        setter--;\n      }\n\n      if (arguments.length < setter) {\n        return jQuery.queue(this[0], type);\n      }\n\n      return data === undefined ? this : this.each(function () {\n        var queue = jQuery.queue(this, type, data); // Ensure a hooks for this queue\n\n        jQuery._queueHooks(this, type);\n\n        if (type === "fx" && queue[0] !== "inprogress") {\n          jQuery.dequeue(this, type);\n        }\n      });\n    },\n    dequeue: function (type) {\n      return this.each(function () {\n        jQuery.dequeue(this, type);\n      });\n    },\n    clearQueue: function (type) {\n      return this.queue(type || "fx", []);\n    },\n    // Get a promise resolved when queues of a certain type\n    // are emptied (fx is the type by default)\n    promise: function (type, obj) {\n      var tmp,\n          count = 1,\n          defer = jQuery.Deferred(),\n          elements = this,\n          i = this.length,\n          resolve = function () {\n        if (! --count) {\n          defer.resolveWith(elements, [elements]);\n        }\n      };\n\n      if (typeof type !== "string") {\n        obj = type;\n        type = undefined;\n      }\n\n      type = type || "fx";\n\n      while (i--) {\n        tmp = dataPriv.get(elements[i], type + "queueHooks");\n\n        if (tmp && tmp.empty) {\n          count++;\n          tmp.empty.add(resolve);\n        }\n      }\n\n      resolve();\n      return defer.promise(obj);\n    }\n  });\n  var pnum = /[+-]?(?:\\d*\\.|)\\d+(?:[eE][+-]?\\d+|)/.source;\n  var rcssNum = new RegExp("^(?:([+-])=|)(" + pnum + ")([a-z%]*)$", "i");\n  var cssExpand = ["Top", "Right", "Bottom", "Left"];\n  var documentElement = document.documentElement;\n\n  var isAttached = function (elem) {\n    return jQuery.contains(elem.ownerDocument, elem);\n  },\n      composed = {\n    composed: true\n  }; // Support: IE 9 - 11+, Edge 12 - 18+, iOS 10.0 - 10.2 only\n  // Check attachment across shadow DOM boundaries when possible (gh-3504)\n  // Support: iOS 10.0-10.2 only\n  // Early iOS 10 versions support `attachShadow` but not `getRootNode`,\n  // leading to errors. We need to check for `getRootNode`.\n\n\n  if (documentElement.getRootNode) {\n    isAttached = function (elem) {\n      return jQuery.contains(elem.ownerDocument, elem) || elem.getRootNode(composed) === elem.ownerDocument;\n    };\n  }\n\n  var isHiddenWithinTree = function (elem, el) {\n    // isHiddenWithinTree might be called from jQuery#filter function;\n    // in that case, element will be second argument\n    elem = el || elem; // Inline style trumps all\n\n    return elem.style.display === "none" || elem.style.display === "" && // Otherwise, check computed style\n    // Support: Firefox <=43 - 45\n    // Disconnected elements can have computed display: none, so first confirm that elem is\n    // in the document.\n    isAttached(elem) && jQuery.css(elem, "display") === "none";\n  };\n\n  function adjustCSS(elem, prop, valueParts, tween) {\n    var adjusted,\n        scale,\n        maxIterations = 20,\n        currentValue = tween ? function () {\n      return tween.cur();\n    } : function () {\n      return jQuery.css(elem, prop, "");\n    },\n        initial = currentValue(),\n        unit = valueParts && valueParts[3] || (jQuery.cssNumber[prop] ? "" : "px"),\n        // Starting value computation is required for potential unit mismatches\n    initialInUnit = elem.nodeType && (jQuery.cssNumber[prop] || unit !== "px" && +initial) && rcssNum.exec(jQuery.css(elem, prop));\n\n    if (initialInUnit && initialInUnit[3] !== unit) {\n      // Support: Firefox <=54\n      // Halve the iteration target value to prevent interference from CSS upper bounds (gh-2144)\n      initial = initial / 2; // Trust units reported by jQuery.css\n\n      unit = unit || initialInUnit[3]; // Iteratively approximate from a nonzero starting point\n\n      initialInUnit = +initial || 1;\n\n      while (maxIterations--) {\n        // Evaluate and update our best guess (doubling guesses that zero out).\n        // Finish if the scale equals or crosses 1 (making the old*new product non-positive).\n        jQuery.style(elem, prop, initialInUnit + unit);\n\n        if ((1 - scale) * (1 - (scale = currentValue() / initial || 0.5)) <= 0) {\n          maxIterations = 0;\n        }\n\n        initialInUnit = initialInUnit / scale;\n      }\n\n      initialInUnit = initialInUnit * 2;\n      jQuery.style(elem, prop, initialInUnit + unit); // Make sure we update the tween properties later on\n\n      valueParts = valueParts || [];\n    }\n\n    if (valueParts) {\n      initialInUnit = +initialInUnit || +initial || 0; // Apply relative offset (+=/-=) if specified\n\n      adjusted = valueParts[1] ? initialInUnit + (valueParts[1] + 1) * valueParts[2] : +valueParts[2];\n\n      if (tween) {\n        tween.unit = unit;\n        tween.start = initialInUnit;\n        tween.end = adjusted;\n      }\n    }\n\n    return adjusted;\n  }\n\n  var defaultDisplayMap = {};\n\n  function getDefaultDisplay(elem) {\n    var temp,\n        doc = elem.ownerDocument,\n        nodeName = elem.nodeName,\n        display = defaultDisplayMap[nodeName];\n\n    if (display) {\n      return display;\n    }\n\n    temp = doc.body.appendChild(doc.createElement(nodeName));\n    display = jQuery.css(temp, "display");\n    temp.parentNode.removeChild(temp);\n\n    if (display === "none") {\n      display = "block";\n    }\n\n    defaultDisplayMap[nodeName] = display;\n    return display;\n  }\n\n  function showHide(elements, show) {\n    var display,\n        elem,\n        values = [],\n        index = 0,\n        length = elements.length; // Determine new display value for elements that need to change\n\n    for (; index < length; index++) {\n      elem = elements[index];\n\n      if (!elem.style) {\n        continue;\n      }\n\n      display = elem.style.display;\n\n      if (show) {\n        // Since we force visibility upon cascade-hidden elements, an immediate (and slow)\n        // check is required in this first loop unless we have a nonempty display value (either\n        // inline or about-to-be-restored)\n        if (display === "none") {\n          values[index] = dataPriv.get(elem, "display") || null;\n\n          if (!values[index]) {\n            elem.style.display = "";\n          }\n        }\n\n        if (elem.style.display === "" && isHiddenWithinTree(elem)) {\n          values[index] = getDefaultDisplay(elem);\n        }\n      } else {\n        if (display !== "none") {\n          values[index] = "none"; // Remember what we\'re overwriting\n\n          dataPriv.set(elem, "display", display);\n        }\n      }\n    } // Set the display of the elements in a second loop to avoid constant reflow\n\n\n    for (index = 0; index < length; index++) {\n      if (values[index] != null) {\n        elements[index].style.display = values[index];\n      }\n    }\n\n    return elements;\n  }\n\n  jQuery.fn.extend({\n    show: function () {\n      return showHide(this, true);\n    },\n    hide: function () {\n      return showHide(this);\n    },\n    toggle: function (state) {\n      if (typeof state === "boolean") {\n        return state ? this.show() : this.hide();\n      }\n\n      return this.each(function () {\n        if (isHiddenWithinTree(this)) {\n          jQuery(this).show();\n        } else {\n          jQuery(this).hide();\n        }\n      });\n    }\n  });\n  var rcheckableType = /^(?:checkbox|radio)$/i;\n  var rtagName = /<([a-z][^\\/\\0>\\x20\\t\\r\\n\\f]*)/i;\n  var rscriptType = /^$|^module$|\\/(?:java|ecma)script/i;\n\n  (function () {\n    var fragment = document.createDocumentFragment(),\n        div = fragment.appendChild(document.createElement("div")),\n        input = document.createElement("input"); // Support: Android 4.0 - 4.3 only\n    // Check state lost if the name is set (#11217)\n    // Support: Windows Web Apps (WWA)\n    // `name` and `type` must use .setAttribute for WWA (#14901)\n\n    input.setAttribute("type", "radio");\n    input.setAttribute("checked", "checked");\n    input.setAttribute("name", "t");\n    div.appendChild(input); // Support: Android <=4.1 only\n    // Older WebKit doesn\'t clone checked state correctly in fragments\n\n    support.checkClone = div.cloneNode(true).cloneNode(true).lastChild.checked; // Support: IE <=11 only\n    // Make sure textarea (and checkbox) defaultValue is properly cloned\n\n    div.innerHTML = "<textarea>x<\/textarea>";\n    support.noCloneChecked = !!div.cloneNode(true).lastChild.defaultValue; // Support: IE <=9 only\n    // IE <=9 replaces <option> tags with their contents when inserted outside of\n    // the select element.\n\n    div.innerHTML = "<option><\/option>";\n    support.option = !!div.lastChild;\n  })(); // We have to close these tags to support XHTML (#13200)\n\n\n  var wrapMap = {\n    // XHTML parsers do not magically insert elements in the\n    // same way that tag soup parsers do. So we cannot shorten\n    // this by omitting <tbody> or other required elements.\n    thead: [1, "<table>", "<\/table>"],\n    col: [2, "<table><colgroup>", "<\/colgroup><\/table>"],\n    tr: [2, "<table><tbody>", "<\/tbody><\/table>"],\n    td: [3, "<table><tbody><tr>", "<\/tr><\/tbody><\/table>"],\n    _default: [0, "", ""]\n  };\n  wrapMap.tbody = wrapMap.tfoot = wrapMap.colgroup = wrapMap.caption = wrapMap.thead;\n  wrapMap.th = wrapMap.td; // Support: IE <=9 only\n\n  if (!support.option) {\n    wrapMap.optgroup = wrapMap.option = [1, "<select multiple=\'multiple\'>", "<\/select>"];\n  }\n\n  function getAll(context, tag) {\n    // Support: IE <=9 - 11 only\n    // Use typeof to avoid zero-argument method invocation on host objects (#15151)\n    var ret;\n\n    if (typeof context.getElementsByTagName !== "undefined") {\n      ret = context.getElementsByTagName(tag || "*");\n    } else if (typeof context.querySelectorAll !== "undefined") {\n      ret = context.querySelectorAll(tag || "*");\n    } else {\n      ret = [];\n    }\n\n    if (tag === undefined || tag && nodeName(context, tag)) {\n      return jQuery.merge([context], ret);\n    }\n\n    return ret;\n  } // Mark scripts as having already been evaluated\n\n\n  function setGlobalEval(elems, refElements) {\n    var i = 0,\n        l = elems.length;\n\n    for (; i < l; i++) {\n      dataPriv.set(elems[i], "globalEval", !refElements || dataPriv.get(refElements[i], "globalEval"));\n    }\n  }\n\n  var rhtml = /<|&#?\\w+;/;\n\n  function buildFragment(elems, context, scripts, selection, ignored) {\n    var elem,\n        tmp,\n        tag,\n        wrap,\n        attached,\n        j,\n        fragment = context.createDocumentFragment(),\n        nodes = [],\n        i = 0,\n        l = elems.length;\n\n    for (; i < l; i++) {\n      elem = elems[i];\n\n      if (elem || elem === 0) {\n        // Add nodes directly\n        if (toType(elem) === "object") {\n          // Support: Android <=4.0 only, PhantomJS 1 only\n          // push.apply(_, arraylike) throws on ancient WebKit\n          jQuery.merge(nodes, elem.nodeType ? [elem] : elem); // Convert non-html into a text node\n        } else if (!rhtml.test(elem)) {\n          nodes.push(context.createTextNode(elem)); // Convert html into DOM nodes\n        } else {\n          tmp = tmp || fragment.appendChild(context.createElement("div")); // Deserialize a standard representation\n\n          tag = (rtagName.exec(elem) || ["", ""])[1].toLowerCase();\n          wrap = wrapMap[tag] || wrapMap._default;\n          tmp.innerHTML = wrap[1] + jQuery.htmlPrefilter(elem) + wrap[2]; // Descend through wrappers to the right content\n\n          j = wrap[0];\n\n          while (j--) {\n            tmp = tmp.lastChild;\n          } // Support: Android <=4.0 only, PhantomJS 1 only\n          // push.apply(_, arraylike) throws on ancient WebKit\n\n\n          jQuery.merge(nodes, tmp.childNodes); // Remember the top-level container\n\n          tmp = fragment.firstChild; // Ensure the created nodes are orphaned (#12392)\n\n          tmp.textContent = "";\n        }\n      }\n    } // Remove wrapper from fragment\n\n\n    fragment.textContent = "";\n    i = 0;\n\n    while (elem = nodes[i++]) {\n      // Skip elements already in the context collection (trac-4087)\n      if (selection && jQuery.inArray(elem, selection) > -1) {\n        if (ignored) {\n          ignored.push(elem);\n        }\n\n        continue;\n      }\n\n      attached = isAttached(elem); // Append to fragment\n\n      tmp = getAll(fragment.appendChild(elem), "script"); // Preserve script evaluation history\n\n      if (attached) {\n        setGlobalEval(tmp);\n      } // Capture executables\n\n\n      if (scripts) {\n        j = 0;\n\n        while (elem = tmp[j++]) {\n          if (rscriptType.test(elem.type || "")) {\n            scripts.push(elem);\n          }\n        }\n      }\n    }\n\n    return fragment;\n  }\n\n  var rkeyEvent = /^key/,\n      rmouseEvent = /^(?:mouse|pointer|contextmenu|drag|drop)|click/,\n      rtypenamespace = /^([^.]*)(?:\\.(.+)|)/;\n\n  function returnTrue() {\n    return true;\n  }\n\n  function returnFalse() {\n    return false;\n  } // Support: IE <=9 - 11+\n  // focus() and blur() are asynchronous, except when they are no-op.\n  // So expect focus to be synchronous when the element is already active,\n  // and blur to be synchronous when the element is not already active.\n  // (focus and blur are always synchronous in other supported browsers,\n  // this just defines when we can count on it).\n\n\n  function expectSync(elem, type) {\n    return elem === safeActiveElement() === (type === "focus");\n  } // Support: IE <=9 only\n  // Accessing document.activeElement can throw unexpectedly\n  // https://bugs.jquery.com/ticket/13393\n\n\n  function safeActiveElement() {\n    try {\n      return document.activeElement;\n    } catch (err) {}\n  }\n\n  function on(elem, types, selector, data, fn, one) {\n    var origFn, type; // Types can be a map of types/handlers\n\n    if (typeof types === "object") {\n      // ( types-Object, selector, data )\n      if (typeof selector !== "string") {\n        // ( types-Object, data )\n        data = data || selector;\n        selector = undefined;\n      }\n\n      for (type in types) {\n        on(elem, type, selector, data, types[type], one);\n      }\n\n      return elem;\n    }\n\n    if (data == null && fn == null) {\n      // ( types, fn )\n      fn = selector;\n      data = selector = undefined;\n    } else if (fn == null) {\n      if (typeof selector === "string") {\n        // ( types, selector, fn )\n        fn = data;\n        data = undefined;\n      } else {\n        // ( types, data, fn )\n        fn = data;\n        data = selector;\n        selector = undefined;\n      }\n    }\n\n    if (fn === false) {\n      fn = returnFalse;\n    } else if (!fn) {\n      return elem;\n    }\n\n    if (one === 1) {\n      origFn = fn;\n\n      fn = function (event) {\n        // Can use an empty set, since event contains the info\n        jQuery().off(event);\n        return origFn.apply(this, arguments);\n      }; // Use same guid so caller can remove using origFn\n\n\n      fn.guid = origFn.guid || (origFn.guid = jQuery.guid++);\n    }\n\n    return elem.each(function () {\n      jQuery.event.add(this, types, fn, data, selector);\n    });\n  }\n  /*\n   * Helper functions for managing events -- not part of the public interface.\n   * Props to Dean Edwards\' addEvent library for many of the ideas.\n   */\n\n\n  jQuery.event = {\n    global: {},\n    add: function (elem, types, handler, data, selector) {\n      var handleObjIn,\n          eventHandle,\n          tmp,\n          events,\n          t,\n          handleObj,\n          special,\n          handlers,\n          type,\n          namespaces,\n          origType,\n          elemData = dataPriv.get(elem); // Only attach events to objects that accept data\n\n      if (!acceptData(elem)) {\n        return;\n      } // Caller can pass in an object of custom data in lieu of the handler\n\n\n      if (handler.handler) {\n        handleObjIn = handler;\n        handler = handleObjIn.handler;\n        selector = handleObjIn.selector;\n      } // Ensure that invalid selectors throw exceptions at attach time\n      // Evaluate against documentElement in case elem is a non-element node (e.g., document)\n\n\n      if (selector) {\n        jQuery.find.matchesSelector(documentElement, selector);\n      } // Make sure that the handler has a unique ID, used to find/remove it later\n\n\n      if (!handler.guid) {\n        handler.guid = jQuery.guid++;\n      } // Init the element\'s event structure and main handler, if this is the first\n\n\n      if (!(events = elemData.events)) {\n        events = elemData.events = Object.create(null);\n      }\n\n      if (!(eventHandle = elemData.handle)) {\n        eventHandle = elemData.handle = function (e) {\n          // Discard the second event of a jQuery.event.trigger() and\n          // when an event is called after a page has unloaded\n          return typeof jQuery !== "undefined" && jQuery.event.triggered !== e.type ? jQuery.event.dispatch.apply(elem, arguments) : undefined;\n        };\n      } // Handle multiple events separated by a space\n\n\n      types = (types || "").match(rnothtmlwhite) || [""];\n      t = types.length;\n\n      while (t--) {\n        tmp = rtypenamespace.exec(types[t]) || [];\n        type = origType = tmp[1];\n        namespaces = (tmp[2] || "").split(".").sort(); // There *must* be a type, no attaching namespace-only handlers\n\n        if (!type) {\n          continue;\n        } // If event changes its type, use the special event handlers for the changed type\n\n\n        special = jQuery.event.special[type] || {}; // If selector defined, determine special event api type, otherwise given type\n\n        type = (selector ? special.delegateType : special.bindType) || type; // Update special based on newly reset type\n\n        special = jQuery.event.special[type] || {}; // handleObj is passed to all event handlers\n\n        handleObj = jQuery.extend({\n          type: type,\n          origType: origType,\n          data: data,\n          handler: handler,\n          guid: handler.guid,\n          selector: selector,\n          needsContext: selector && jQuery.expr.match.needsContext.test(selector),\n          namespace: namespaces.join(".")\n        }, handleObjIn); // Init the event handler queue if we\'re the first\n\n        if (!(handlers = events[type])) {\n          handlers = events[type] = [];\n          handlers.delegateCount = 0; // Only use addEventListener if the special events handler returns false\n\n          if (!special.setup || special.setup.call(elem, data, namespaces, eventHandle) === false) {\n            if (elem.addEventListener) {\n              elem.addEventListener(type, eventHandle);\n            }\n          }\n        }\n\n        if (special.add) {\n          special.add.call(elem, handleObj);\n\n          if (!handleObj.handler.guid) {\n            handleObj.handler.guid = handler.guid;\n          }\n        } // Add to the element\'s handler list, delegates in front\n\n\n        if (selector) {\n          handlers.splice(handlers.delegateCount++, 0, handleObj);\n        } else {\n          handlers.push(handleObj);\n        } // Keep track of which events have ever been used, for event optimization\n\n\n        jQuery.event.global[type] = true;\n      }\n    },\n    // Detach an event or set of events from an element\n    remove: function (elem, types, handler, selector, mappedTypes) {\n      var j,\n          origCount,\n          tmp,\n          events,\n          t,\n          handleObj,\n          special,\n          handlers,\n          type,\n          namespaces,\n          origType,\n          elemData = dataPriv.hasData(elem) && dataPriv.get(elem);\n\n      if (!elemData || !(events = elemData.events)) {\n        return;\n      } // Once for each type.namespace in types; type may be omitted\n\n\n      types = (types || "").match(rnothtmlwhite) || [""];\n      t = types.length;\n\n      while (t--) {\n        tmp = rtypenamespace.exec(types[t]) || [];\n        type = origType = tmp[1];\n        namespaces = (tmp[2] || "").split(".").sort(); // Unbind all events (on this namespace, if provided) for the element\n\n        if (!type) {\n          for (type in events) {\n            jQuery.event.remove(elem, type + types[t], handler, selector, true);\n          }\n\n          continue;\n        }\n\n        special = jQuery.event.special[type] || {};\n        type = (selector ? special.delegateType : special.bindType) || type;\n        handlers = events[type] || [];\n        tmp = tmp[2] && new RegExp("(^|\\\\.)" + namespaces.join("\\\\.(?:.*\\\\.|)") + "(\\\\.|$)"); // Remove matching events\n\n        origCount = j = handlers.length;\n\n        while (j--) {\n          handleObj = handlers[j];\n\n          if ((mappedTypes || origType === handleObj.origType) && (!handler || handler.guid === handleObj.guid) && (!tmp || tmp.test(handleObj.namespace)) && (!selector || selector === handleObj.selector || selector === "**" && handleObj.selector)) {\n            handlers.splice(j, 1);\n\n            if (handleObj.selector) {\n              handlers.delegateCount--;\n            }\n\n            if (special.remove) {\n              special.remove.call(elem, handleObj);\n            }\n          }\n        } // Remove generic event handler if we removed something and no more handlers exist\n        // (avoids potential for endless recursion during removal of special event handlers)\n\n\n        if (origCount && !handlers.length) {\n          if (!special.teardown || special.teardown.call(elem, namespaces, elemData.handle) === false) {\n            jQuery.removeEvent(elem, type, elemData.handle);\n          }\n\n          delete events[type];\n        }\n      } // Remove data and the expando if it\'s no longer used\n\n\n      if (jQuery.isEmptyObject(events)) {\n        dataPriv.remove(elem, "handle events");\n      }\n    },\n    dispatch: function (nativeEvent) {\n      var i,\n          j,\n          ret,\n          matched,\n          handleObj,\n          handlerQueue,\n          args = new Array(arguments.length),\n          // Make a writable jQuery.Event from the native event object\n      event = jQuery.event.fix(nativeEvent),\n          handlers = (dataPriv.get(this, "events") || Object.create(null))[event.type] || [],\n          special = jQuery.event.special[event.type] || {}; // Use the fix-ed jQuery.Event rather than the (read-only) native event\n\n      args[0] = event;\n\n      for (i = 1; i < arguments.length; i++) {\n        args[i] = arguments[i];\n      }\n\n      event.delegateTarget = this; // Call the preDispatch hook for the mapped type, and let it bail if desired\n\n      if (special.preDispatch && special.preDispatch.call(this, event) === false) {\n        return;\n      } // Determine handlers\n\n\n      handlerQueue = jQuery.event.handlers.call(this, event, handlers); // Run delegates first; they may want to stop propagation beneath us\n\n      i = 0;\n\n      while ((matched = handlerQueue[i++]) && !event.isPropagationStopped()) {\n        event.currentTarget = matched.elem;\n        j = 0;\n\n        while ((handleObj = matched.handlers[j++]) && !event.isImmediatePropagationStopped()) {\n          // If the event is namespaced, then each handler is only invoked if it is\n          // specially universal or its namespaces are a superset of the event\'s.\n          if (!event.rnamespace || handleObj.namespace === false || event.rnamespace.test(handleObj.namespace)) {\n            event.handleObj = handleObj;\n            event.data = handleObj.data;\n            ret = ((jQuery.event.special[handleObj.origType] || {}).handle || handleObj.handler).apply(matched.elem, args);\n\n            if (ret !== undefined) {\n              if ((event.result = ret) === false) {\n                event.preventDefault();\n                event.stopPropagation();\n              }\n            }\n          }\n        }\n      } // Call the postDispatch hook for the mapped type\n\n\n      if (special.postDispatch) {\n        special.postDispatch.call(this, event);\n      }\n\n      return event.result;\n    },\n    handlers: function (event, handlers) {\n      var i,\n          handleObj,\n          sel,\n          matchedHandlers,\n          matchedSelectors,\n          handlerQueue = [],\n          delegateCount = handlers.delegateCount,\n          cur = event.target; // Find delegate handlers\n\n      if (delegateCount && // Support: IE <=9\n      // Black-hole SVG <use> instance trees (trac-13180)\n      cur.nodeType && // Support: Firefox <=42\n      // Suppress spec-violating clicks indicating a non-primary pointer button (trac-3861)\n      // https://www.w3.org/TR/DOM-Level-3-Events/#event-type-click\n      // Support: IE 11 only\n      // ...but not arrow key "clicks" of radio inputs, which can have `button` -1 (gh-2343)\n      !(event.type === "click" && event.button >= 1)) {\n        for (; cur !== this; cur = cur.parentNode || this) {\n          // Don\'t check non-elements (#13208)\n          // Don\'t process clicks on disabled elements (#6911, #8165, #11382, #11764)\n          if (cur.nodeType === 1 && !(event.type === "click" && cur.disabled === true)) {\n            matchedHandlers = [];\n            matchedSelectors = {};\n\n            for (i = 0; i < delegateCount; i++) {\n              handleObj = handlers[i]; // Don\'t conflict with Object.prototype properties (#13203)\n\n              sel = handleObj.selector + " ";\n\n              if (matchedSelectors[sel] === undefined) {\n                matchedSelectors[sel] = handleObj.needsContext ? jQuery(sel, this).index(cur) > -1 : jQuery.find(sel, this, null, [cur]).length;\n              }\n\n              if (matchedSelectors[sel]) {\n                matchedHandlers.push(handleObj);\n              }\n            }\n\n            if (matchedHandlers.length) {\n              handlerQueue.push({\n                elem: cur,\n                handlers: matchedHandlers\n              });\n            }\n          }\n        }\n      } // Add the remaining (directly-bound) handlers\n\n\n      cur = this;\n\n      if (delegateCount < handlers.length) {\n        handlerQueue.push({\n          elem: cur,\n          handlers: handlers.slice(delegateCount)\n        });\n      }\n\n      return handlerQueue;\n    },\n    addProp: function (name, hook) {\n      Object.defineProperty(jQuery.Event.prototype, name, {\n        enumerable: true,\n        configurable: true,\n        get: isFunction(hook) ? function () {\n          if (this.originalEvent) {\n            return hook(this.originalEvent);\n          }\n        } : function () {\n          if (this.originalEvent) {\n            return this.originalEvent[name];\n          }\n        },\n        set: function (value) {\n          Object.defineProperty(this, name, {\n            enumerable: true,\n            configurable: true,\n            writable: true,\n            value: value\n          });\n        }\n      });\n    },\n    fix: function (originalEvent) {\n      return originalEvent[jQuery.expando] ? originalEvent : new jQuery.Event(originalEvent);\n    },\n    special: {\n      load: {\n        // Prevent triggered image.load events from bubbling to window.load\n        noBubble: true\n      },\n      click: {\n        // Utilize native event to ensure correct state for checkable inputs\n        setup: function (data) {\n          // For mutual compressibility with _default, replace `this` access with a local var.\n          // `|| data` is dead code meant only to preserve the variable through minification.\n          var el = this || data; // Claim the first handler\n\n          if (rcheckableType.test(el.type) && el.click && nodeName(el, "input")) {\n            // dataPriv.set( el, "click", ... )\n            leverageNative(el, "click", returnTrue);\n          } // Return false to allow normal processing in the caller\n\n\n          return false;\n        },\n        trigger: function (data) {\n          // For mutual compressibility with _default, replace `this` access with a local var.\n          // `|| data` is dead code meant only to preserve the variable through minification.\n          var el = this || data; // Force setup before triggering a click\n\n          if (rcheckableType.test(el.type) && el.click && nodeName(el, "input")) {\n            leverageNative(el, "click");\n          } // Return non-false to allow normal event-path propagation\n\n\n          return true;\n        },\n        // For cross-browser consistency, suppress native .click() on links\n        // Also prevent it if we\'re currently inside a leveraged native-event stack\n        _default: function (event) {\n          var target = event.target;\n          return rcheckableType.test(target.type) && target.click && nodeName(target, "input") && dataPriv.get(target, "click") || nodeName(target, "a");\n        }\n      },\n      beforeunload: {\n        postDispatch: function (event) {\n          // Support: Firefox 20+\n          // Firefox doesn\'t alert if the returnValue field is not set.\n          if (event.result !== undefined && event.originalEvent) {\n            event.originalEvent.returnValue = event.result;\n          }\n        }\n      }\n    }\n  }; // Ensure the presence of an event listener that handles manually-triggered\n  // synthetic events by interrupting progress until reinvoked in response to\n  // *native* events that it fires directly, ensuring that state changes have\n  // already occurred before other listeners are invoked.\n\n  function leverageNative(el, type, expectSync) {\n    // Missing expectSync indicates a trigger call, which must force setup through jQuery.event.add\n    if (!expectSync) {\n      if (dataPriv.get(el, type) === undefined) {\n        jQuery.event.add(el, type, returnTrue);\n      }\n\n      return;\n    } // Register the controller as a special universal handler for all event namespaces\n\n\n    dataPriv.set(el, type, false);\n    jQuery.event.add(el, type, {\n      namespace: false,\n      handler: function (event) {\n        var notAsync,\n            result,\n            saved = dataPriv.get(this, type);\n\n        if (event.isTrigger & 1 && this[type]) {\n          // Interrupt processing of the outer synthetic .trigger()ed event\n          // Saved data should be false in such cases, but might be a leftover capture object\n          // from an async native handler (gh-4350)\n          if (!saved.length) {\n            // Store arguments for use when handling the inner native event\n            // There will always be at least one argument (an event object), so this array\n            // will not be confused with a leftover capture object.\n            saved = slice.call(arguments);\n            dataPriv.set(this, type, saved); // Trigger the native event and capture its result\n            // Support: IE <=9 - 11+\n            // focus() and blur() are asynchronous\n\n            notAsync = expectSync(this, type);\n            this[type]();\n            result = dataPriv.get(this, type);\n\n            if (saved !== result || notAsync) {\n              dataPriv.set(this, type, false);\n            } else {\n              result = {};\n            }\n\n            if (saved !== result) {\n              // Cancel the outer synthetic event\n              event.stopImmediatePropagation();\n              event.preventDefault();\n              return result.value;\n            } // If this is an inner synthetic event for an event with a bubbling surrogate\n            // (focus or blur), assume that the surrogate already propagated from triggering the\n            // native event and prevent that from happening again here.\n            // This technically gets the ordering wrong w.r.t. to `.trigger()` (in which the\n            // bubbling surrogate propagates *after* the non-bubbling base), but that seems\n            // less bad than duplication.\n\n          } else if ((jQuery.event.special[type] || {}).delegateType) {\n            event.stopPropagation();\n          } // If this is a native event triggered above, everything is now in order\n          // Fire an inner synthetic event with the original arguments\n\n        } else if (saved.length) {\n          // ...and capture the result\n          dataPriv.set(this, type, {\n            value: jQuery.event.trigger( // Support: IE <=9 - 11+\n            // Extend with the prototype to reset the above stopImmediatePropagation()\n            jQuery.extend(saved[0], jQuery.Event.prototype), saved.slice(1), this)\n          }); // Abort handling of the native event\n\n          event.stopImmediatePropagation();\n        }\n      }\n    });\n  }\n\n  jQuery.removeEvent = function (elem, type, handle) {\n    // This "if" is needed for plain objects\n    if (elem.removeEventListener) {\n      elem.removeEventListener(type, handle);\n    }\n  };\n\n  jQuery.Event = function (src, props) {\n    // Allow instantiation without the \'new\' keyword\n    if (!(this instanceof jQuery.Event)) {\n      return new jQuery.Event(src, props);\n    } // Event object\n\n\n    if (src && src.type) {\n      this.originalEvent = src;\n      this.type = src.type; // Events bubbling up the document may have been marked as prevented\n      // by a handler lower down the tree; reflect the correct value.\n\n      this.isDefaultPrevented = src.defaultPrevented || src.defaultPrevented === undefined && // Support: Android <=2.3 only\n      src.returnValue === false ? returnTrue : returnFalse; // Create target properties\n      // Support: Safari <=6 - 7 only\n      // Target should not be a text node (#504, #13143)\n\n      this.target = src.target && src.target.nodeType === 3 ? src.target.parentNode : src.target;\n      this.currentTarget = src.currentTarget;\n      this.relatedTarget = src.relatedTarget; // Event type\n    } else {\n      this.type = src;\n    } // Put explicitly provided properties onto the event object\n\n\n    if (props) {\n      jQuery.extend(this, props);\n    } // Create a timestamp if incoming event doesn\'t have one\n\n\n    this.timeStamp = src && src.timeStamp || Date.now(); // Mark it as fixed\n\n    this[jQuery.expando] = true;\n  }; // jQuery.Event is based on DOM3 Events as specified by the ECMAScript Language Binding\n  // https://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html\n\n\n  jQuery.Event.prototype = {\n    constructor: jQuery.Event,\n    isDefaultPrevented: returnFalse,\n    isPropagationStopped: returnFalse,\n    isImmediatePropagationStopped: returnFalse,\n    isSimulated: false,\n    preventDefault: function () {\n      var e = this.originalEvent;\n      this.isDefaultPrevented = returnTrue;\n\n      if (e && !this.isSimulated) {\n        e.preventDefault();\n      }\n    },\n    stopPropagation: function () {\n      var e = this.originalEvent;\n      this.isPropagationStopped = returnTrue;\n\n      if (e && !this.isSimulated) {\n        e.stopPropagation();\n      }\n    },\n    stopImmediatePropagation: function () {\n      var e = this.originalEvent;\n      this.isImmediatePropagationStopped = returnTrue;\n\n      if (e && !this.isSimulated) {\n        e.stopImmediatePropagation();\n      }\n\n      this.stopPropagation();\n    }\n  }; // Includes all common event props including KeyEvent and MouseEvent specific props\n\n  jQuery.each({\n    altKey: true,\n    bubbles: true,\n    cancelable: true,\n    changedTouches: true,\n    ctrlKey: true,\n    detail: true,\n    eventPhase: true,\n    metaKey: true,\n    pageX: true,\n    pageY: true,\n    shiftKey: true,\n    view: true,\n    "char": true,\n    code: true,\n    charCode: true,\n    key: true,\n    keyCode: true,\n    button: true,\n    buttons: true,\n    clientX: true,\n    clientY: true,\n    offsetX: true,\n    offsetY: true,\n    pointerId: true,\n    pointerType: true,\n    screenX: true,\n    screenY: true,\n    targetTouches: true,\n    toElement: true,\n    touches: true,\n    which: function (event) {\n      var button = event.button; // Add which for key events\n\n      if (event.which == null && rkeyEvent.test(event.type)) {\n        return event.charCode != null ? event.charCode : event.keyCode;\n      } // Add which for click: 1 === left; 2 === middle; 3 === right\n\n\n      if (!event.which && button !== undefined && rmouseEvent.test(event.type)) {\n        if (button & 1) {\n          return 1;\n        }\n\n        if (button & 2) {\n          return 3;\n        }\n\n        if (button & 4) {\n          return 2;\n        }\n\n        return 0;\n      }\n\n      return event.which;\n    }\n  }, jQuery.event.addProp);\n  jQuery.each({\n    focus: "focusin",\n    blur: "focusout"\n  }, function (type, delegateType) {\n    jQuery.event.special[type] = {\n      // Utilize native event if possible so blur/focus sequence is correct\n      setup: function () {\n        // Claim the first handler\n        // dataPriv.set( this, "focus", ... )\n        // dataPriv.set( this, "blur", ... )\n        leverageNative(this, type, expectSync); // Return false to allow normal processing in the caller\n\n        return false;\n      },\n      trigger: function () {\n        // Force setup before trigger\n        leverageNative(this, type); // Return non-false to allow normal event-path propagation\n\n        return true;\n      },\n      delegateType: delegateType\n    };\n  }); // Create mouseenter/leave events using mouseover/out and event-time checks\n  // so that event delegation works in jQuery.\n  // Do the same for pointerenter/pointerleave and pointerover/pointerout\n  //\n  // Support: Safari 7 only\n  // Safari sends mouseenter too often; see:\n  // https://bugs.chromium.org/p/chromium/issues/detail?id=470258\n  // for the description of the bug (it existed in older Chrome versions as well).\n\n  jQuery.each({\n    mouseenter: "mouseover",\n    mouseleave: "mouseout",\n    pointerenter: "pointerover",\n    pointerleave: "pointerout"\n  }, function (orig, fix) {\n    jQuery.event.special[orig] = {\n      delegateType: fix,\n      bindType: fix,\n      handle: function (event) {\n        var ret,\n            target = this,\n            related = event.relatedTarget,\n            handleObj = event.handleObj; // For mouseenter/leave call the handler if related is outside the target.\n        // NB: No relatedTarget if the mouse left/entered the browser window\n\n        if (!related || related !== target && !jQuery.contains(target, related)) {\n          event.type = handleObj.origType;\n          ret = handleObj.handler.apply(this, arguments);\n          event.type = fix;\n        }\n\n        return ret;\n      }\n    };\n  });\n  jQuery.fn.extend({\n    on: function (types, selector, data, fn) {\n      return on(this, types, selector, data, fn);\n    },\n    one: function (types, selector, data, fn) {\n      return on(this, types, selector, data, fn, 1);\n    },\n    off: function (types, selector, fn) {\n      var handleObj, type;\n\n      if (types && types.preventDefault && types.handleObj) {\n        // ( event )  dispatched jQuery.Event\n        handleObj = types.handleObj;\n        jQuery(types.delegateTarget).off(handleObj.namespace ? handleObj.origType + "." + handleObj.namespace : handleObj.origType, handleObj.selector, handleObj.handler);\n        return this;\n      }\n\n      if (typeof types === "object") {\n        // ( types-object [, selector] )\n        for (type in types) {\n          this.off(type, selector, types[type]);\n        }\n\n        return this;\n      }\n\n      if (selector === false || typeof selector === "function") {\n        // ( types [, fn] )\n        fn = selector;\n        selector = undefined;\n      }\n\n      if (fn === false) {\n        fn = returnFalse;\n      }\n\n      return this.each(function () {\n        jQuery.event.remove(this, types, fn, selector);\n      });\n    }\n  });\n  var // Support: IE <=10 - 11, Edge 12 - 13 only\n  // In IE/Edge using regex groups here causes severe slowdowns.\n  // See https://connect.microsoft.com/IE/feedback/details/1736512/\n  rnoInnerhtml = /<script|<style|<link/i,\n      // checked="checked" or checked\n  rchecked = /checked\\s*(?:[^=]|=\\s*.checked.)/i,\n      rcleanScript = /^\\s*<!(?:\\[CDATA\\[|--)|(?:\\]\\]|--)>\\s*$/g; // Prefer a tbody over its parent table for containing new rows\n\n  function manipulationTarget(elem, content) {\n    if (nodeName(elem, "table") && nodeName(content.nodeType !== 11 ? content : content.firstChild, "tr")) {\n      return jQuery(elem).children("tbody")[0] || elem;\n    }\n\n    return elem;\n  } // Replace/restore the type attribute of script elements for safe DOM manipulation\n\n\n  function disableScript(elem) {\n    elem.type = (elem.getAttribute("type") !== null) + "/" + elem.type;\n    return elem;\n  }\n\n  function restoreScript(elem) {\n    if ((elem.type || "").slice(0, 5) === "true/") {\n      elem.type = elem.type.slice(5);\n    } else {\n      elem.removeAttribute("type");\n    }\n\n    return elem;\n  }\n\n  function cloneCopyEvent(src, dest) {\n    var i, l, type, pdataOld, udataOld, udataCur, events;\n\n    if (dest.nodeType !== 1) {\n      return;\n    } // 1. Copy private data: events, handlers, etc.\n\n\n    if (dataPriv.hasData(src)) {\n      pdataOld = dataPriv.get(src);\n      events = pdataOld.events;\n\n      if (events) {\n        dataPriv.remove(dest, "handle events");\n\n        for (type in events) {\n          for (i = 0, l = events[type].length; i < l; i++) {\n            jQuery.event.add(dest, type, events[type][i]);\n          }\n        }\n      }\n    } // 2. Copy user data\n\n\n    if (dataUser.hasData(src)) {\n      udataOld = dataUser.access(src);\n      udataCur = jQuery.extend({}, udataOld);\n      dataUser.set(dest, udataCur);\n    }\n  } // Fix IE bugs, see support tests\n\n\n  function fixInput(src, dest) {\n    var nodeName = dest.nodeName.toLowerCase(); // Fails to persist the checked state of a cloned checkbox or radio button.\n\n    if (nodeName === "input" && rcheckableType.test(src.type)) {\n      dest.checked = src.checked; // Fails to return the selected option to the default selected state when cloning options\n    } else if (nodeName === "input" || nodeName === "textarea") {\n      dest.defaultValue = src.defaultValue;\n    }\n  }\n\n  function domManip(collection, args, callback, ignored) {\n    // Flatten any nested arrays\n    args = flat(args);\n    var fragment,\n        first,\n        scripts,\n        hasScripts,\n        node,\n        doc,\n        i = 0,\n        l = collection.length,\n        iNoClone = l - 1,\n        value = args[0],\n        valueIsFunction = isFunction(value); // We can\'t cloneNode fragments that contain checked, in WebKit\n\n    if (valueIsFunction || l > 1 && typeof value === "string" && !support.checkClone && rchecked.test(value)) {\n      return collection.each(function (index) {\n        var self = collection.eq(index);\n\n        if (valueIsFunction) {\n          args[0] = value.call(this, index, self.html());\n        }\n\n        domManip(self, args, callback, ignored);\n      });\n    }\n\n    if (l) {\n      fragment = buildFragment(args, collection[0].ownerDocument, false, collection, ignored);\n      first = fragment.firstChild;\n\n      if (fragment.childNodes.length === 1) {\n        fragment = first;\n      } // Require either new content or an interest in ignored elements to invoke the callback\n\n\n      if (first || ignored) {\n        scripts = jQuery.map(getAll(fragment, "script"), disableScript);\n        hasScripts = scripts.length; // Use the original fragment for the last item\n        // instead of the first because it can end up\n        // being emptied incorrectly in certain situations (#8070).\n\n        for (; i < l; i++) {\n          node = fragment;\n\n          if (i !== iNoClone) {\n            node = jQuery.clone(node, true, true); // Keep references to cloned scripts for later restoration\n\n            if (hasScripts) {\n              // Support: Android <=4.0 only, PhantomJS 1 only\n              // push.apply(_, arraylike) throws on ancient WebKit\n              jQuery.merge(scripts, getAll(node, "script"));\n            }\n          }\n\n          callback.call(collection[i], node, i);\n        }\n\n        if (hasScripts) {\n          doc = scripts[scripts.length - 1].ownerDocument; // Reenable scripts\n\n          jQuery.map(scripts, restoreScript); // Evaluate executable scripts on first document insertion\n\n          for (i = 0; i < hasScripts; i++) {\n            node = scripts[i];\n\n            if (rscriptType.test(node.type || "") && !dataPriv.access(node, "globalEval") && jQuery.contains(doc, node)) {\n              if (node.src && (node.type || "").toLowerCase() !== "module") {\n                // Optional AJAX dependency, but won\'t run scripts if not present\n                if (jQuery._evalUrl && !node.noModule) {\n                  jQuery._evalUrl(node.src, {\n                    nonce: node.nonce || node.getAttribute("nonce")\n                  }, doc);\n                }\n              } else {\n                DOMEval(node.textContent.replace(rcleanScript, ""), node, doc);\n              }\n            }\n          }\n        }\n      }\n    }\n\n    return collection;\n  }\n\n  function remove(elem, selector, keepData) {\n    var node,\n        nodes = selector ? jQuery.filter(selector, elem) : elem,\n        i = 0;\n\n    for (; (node = nodes[i]) != null; i++) {\n      if (!keepData && node.nodeType === 1) {\n        jQuery.cleanData(getAll(node));\n      }\n\n      if (node.parentNode) {\n        if (keepData && isAttached(node)) {\n          setGlobalEval(getAll(node, "script"));\n        }\n\n        node.parentNode.removeChild(node);\n      }\n    }\n\n    return elem;\n  }\n\n  jQuery.extend({\n    htmlPrefilter: function (html) {\n      return html;\n    },\n    clone: function (elem, dataAndEvents, deepDataAndEvents) {\n      var i,\n          l,\n          srcElements,\n          destElements,\n          clone = elem.cloneNode(true),\n          inPage = isAttached(elem); // Fix IE cloning issues\n\n      if (!support.noCloneChecked && (elem.nodeType === 1 || elem.nodeType === 11) && !jQuery.isXMLDoc(elem)) {\n        // We eschew Sizzle here for performance reasons: https://jsperf.com/getall-vs-sizzle/2\n        destElements = getAll(clone);\n        srcElements = getAll(elem);\n\n        for (i = 0, l = srcElements.length; i < l; i++) {\n          fixInput(srcElements[i], destElements[i]);\n        }\n      } // Copy the events from the original to the clone\n\n\n      if (dataAndEvents) {\n        if (deepDataAndEvents) {\n          srcElements = srcElements || getAll(elem);\n          destElements = destElements || getAll(clone);\n\n          for (i = 0, l = srcElements.length; i < l; i++) {\n            cloneCopyEvent(srcElements[i], destElements[i]);\n          }\n        } else {\n          cloneCopyEvent(elem, clone);\n        }\n      } // Preserve script evaluation history\n\n\n      destElements = getAll(clone, "script");\n\n      if (destElements.length > 0) {\n        setGlobalEval(destElements, !inPage && getAll(elem, "script"));\n      } // Return the cloned set\n\n\n      return clone;\n    },\n    cleanData: function (elems) {\n      var data,\n          elem,\n          type,\n          special = jQuery.event.special,\n          i = 0;\n\n      for (; (elem = elems[i]) !== undefined; i++) {\n        if (acceptData(elem)) {\n          if (data = elem[dataPriv.expando]) {\n            if (data.events) {\n              for (type in data.events) {\n                if (special[type]) {\n                  jQuery.event.remove(elem, type); // This is a shortcut to avoid jQuery.event.remove\'s overhead\n                } else {\n                  jQuery.removeEvent(elem, type, data.handle);\n                }\n              }\n            } // Support: Chrome <=35 - 45+\n            // Assign undefined instead of using delete, see Data#remove\n\n\n            elem[dataPriv.expando] = undefined;\n          }\n\n          if (elem[dataUser.expando]) {\n            // Support: Chrome <=35 - 45+\n            // Assign undefined instead of using delete, see Data#remove\n            elem[dataUser.expando] = undefined;\n          }\n        }\n      }\n    }\n  });\n  jQuery.fn.extend({\n    detach: function (selector) {\n      return remove(this, selector, true);\n    },\n    remove: function (selector) {\n      return remove(this, selector);\n    },\n    text: function (value) {\n      return access(this, function (value) {\n        return value === undefined ? jQuery.text(this) : this.empty().each(function () {\n          if (this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9) {\n            this.textContent = value;\n          }\n        });\n      }, null, value, arguments.length);\n    },\n    append: function () {\n      return domManip(this, arguments, function (elem) {\n        if (this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9) {\n          var target = manipulationTarget(this, elem);\n          target.appendChild(elem);\n        }\n      });\n    },\n    prepend: function () {\n      return domManip(this, arguments, function (elem) {\n        if (this.nodeType === 1 || this.nodeType === 11 || this.nodeType === 9) {\n          var target = manipulationTarget(this, elem);\n          target.insertBefore(elem, target.firstChild);\n        }\n      });\n    },\n    before: function () {\n      return domManip(this, arguments, function (elem) {\n        if (this.parentNode) {\n          this.parentNode.insertBefore(elem, this);\n        }\n      });\n    },\n    after: function () {\n      return domManip(this, arguments, function (elem) {\n        if (this.parentNode) {\n          this.parentNode.insertBefore(elem, this.nextSibling);\n        }\n      });\n    },\n    empty: function () {\n      var elem,\n          i = 0;\n\n      for (; (elem = this[i]) != null; i++) {\n        if (elem.nodeType === 1) {\n          // Prevent memory leaks\n          jQuery.cleanData(getAll(elem, false)); // Remove any remaining nodes\n\n          elem.textContent = "";\n        }\n      }\n\n      return this;\n    },\n    clone: function (dataAndEvents, deepDataAndEvents) {\n      dataAndEvents = dataAndEvents == null ? false : dataAndEvents;\n      deepDataAndEvents = deepDataAndEvents == null ? dataAndEvents : deepDataAndEvents;\n      return this.map(function () {\n        return jQuery.clone(this, dataAndEvents, deepDataAndEvents);\n      });\n    },\n    html: function (value) {\n      return access(this, function (value) {\n        var elem = this[0] || {},\n            i = 0,\n            l = this.length;\n\n        if (value === undefined && elem.nodeType === 1) {\n          return elem.innerHTML;\n        } // See if we can take a shortcut and just use innerHTML\n\n\n        if (typeof value === "string" && !rnoInnerhtml.test(value) && !wrapMap[(rtagName.exec(value) || ["", ""])[1].toLowerCase()]) {\n          value = jQuery.htmlPrefilter(value);\n\n          try {\n            for (; i < l; i++) {\n              elem = this[i] || {}; // Remove element nodes and prevent memory leaks\n\n              if (elem.nodeType === 1) {\n                jQuery.cleanData(getAll(elem, false));\n                elem.innerHTML = value;\n              }\n            }\n\n            elem = 0; // If using innerHTML throws an exception, use the fallback method\n          } catch (e) {}\n        }\n\n        if (elem) {\n          this.empty().append(value);\n        }\n      }, null, value, arguments.length);\n    },\n    replaceWith: function () {\n      var ignored = []; // Make the changes, replacing each non-ignored context element with the new content\n\n      return domManip(this, arguments, function (elem) {\n        var parent = this.parentNode;\n\n        if (jQuery.inArray(this, ignored) < 0) {\n          jQuery.cleanData(getAll(this));\n\n          if (parent) {\n            parent.replaceChild(elem, this);\n          }\n        } // Force callback invocation\n\n      }, ignored);\n    }\n  });\n  jQuery.each({\n    appendTo: "append",\n    prependTo: "prepend",\n    insertBefore: "before",\n    insertAfter: "after",\n    replaceAll: "replaceWith"\n  }, function (name, original) {\n    jQuery.fn[name] = function (selector) {\n      var elems,\n          ret = [],\n          insert = jQuery(selector),\n          last = insert.length - 1,\n          i = 0;\n\n      for (; i <= last; i++) {\n        elems = i === last ? this : this.clone(true);\n        jQuery(insert[i])[original](elems); // Support: Android <=4.0 only, PhantomJS 1 only\n        // .get() because push.apply(_, arraylike) throws on ancient WebKit\n\n        push.apply(ret, elems.get());\n      }\n\n      return this.pushStack(ret);\n    };\n  });\n  var rnumnonpx = new RegExp("^(" + pnum + ")(?!px)[a-z%]+$", "i");\n\n  var getStyles = function (elem) {\n    // Support: IE <=11 only, Firefox <=30 (#15098, #14150)\n    // IE throws on elements created in popups\n    // FF meanwhile throws on frame elements through "defaultView.getComputedStyle"\n    var view = elem.ownerDocument.defaultView;\n\n    if (!view || !view.opener) {\n      view = window;\n    }\n\n    return view.getComputedStyle(elem);\n  };\n\n  var swap = function (elem, options, callback) {\n    var ret,\n        name,\n        old = {}; // Remember the old values, and insert the new ones\n\n    for (name in options) {\n      old[name] = elem.style[name];\n      elem.style[name] = options[name];\n    }\n\n    ret = callback.call(elem); // Revert the old values\n\n    for (name in options) {\n      elem.style[name] = old[name];\n    }\n\n    return ret;\n  };\n\n  var rboxStyle = new RegExp(cssExpand.join("|"), "i");\n\n  (function () {\n    // Executing both pixelPosition & boxSizingReliable tests require only one layout\n    // so they\'re executed at the same time to save the second computation.\n    function computeStyleTests() {\n      // This is a singleton, we need to execute it only once\n      if (!div) {\n        return;\n      }\n\n      container.style.cssText = "position:absolute;left:-11111px;width:60px;" + "margin-top:1px;padding:0;border:0";\n      div.style.cssText = "position:relative;display:block;box-sizing:border-box;overflow:scroll;" + "margin:auto;border:1px;padding:1px;" + "width:60%;top:1%";\n      documentElement.appendChild(container).appendChild(div);\n      var divStyle = window.getComputedStyle(div);\n      pixelPositionVal = divStyle.top !== "1%"; // Support: Android 4.0 - 4.3 only, Firefox <=3 - 44\n\n      reliableMarginLeftVal = roundPixelMeasures(divStyle.marginLeft) === 12; // Support: Android 4.0 - 4.3 only, Safari <=9.1 - 10.1, iOS <=7.0 - 9.3\n      // Some styles come back with percentage values, even though they shouldn\'t\n\n      div.style.right = "60%";\n      pixelBoxStylesVal = roundPixelMeasures(divStyle.right) === 36; // Support: IE 9 - 11 only\n      // Detect misreporting of content dimensions for box-sizing:border-box elements\n\n      boxSizingReliableVal = roundPixelMeasures(divStyle.width) === 36; // Support: IE 9 only\n      // Detect overflow:scroll screwiness (gh-3699)\n      // Support: Chrome <=64\n      // Don\'t get tricked when zoom affects offsetWidth (gh-4029)\n\n      div.style.position = "absolute";\n      scrollboxSizeVal = roundPixelMeasures(div.offsetWidth / 3) === 12;\n      documentElement.removeChild(container); // Nullify the div so it wouldn\'t be stored in the memory and\n      // it will also be a sign that checks already performed\n\n      div = null;\n    }\n\n    function roundPixelMeasures(measure) {\n      return Math.round(parseFloat(measure));\n    }\n\n    var pixelPositionVal,\n        boxSizingReliableVal,\n        scrollboxSizeVal,\n        pixelBoxStylesVal,\n        reliableTrDimensionsVal,\n        reliableMarginLeftVal,\n        container = document.createElement("div"),\n        div = document.createElement("div"); // Finish early in limited (non-browser) environments\n\n    if (!div.style) {\n      return;\n    } // Support: IE <=9 - 11 only\n    // Style of cloned element affects source element cloned (#8908)\n\n\n    div.style.backgroundClip = "content-box";\n    div.cloneNode(true).style.backgroundClip = "";\n    support.clearCloneStyle = div.style.backgroundClip === "content-box";\n    jQuery.extend(support, {\n      boxSizingReliable: function () {\n        computeStyleTests();\n        return boxSizingReliableVal;\n      },\n      pixelBoxStyles: function () {\n        computeStyleTests();\n        return pixelBoxStylesVal;\n      },\n      pixelPosition: function () {\n        computeStyleTests();\n        return pixelPositionVal;\n      },\n      reliableMarginLeft: function () {\n        computeStyleTests();\n        return reliableMarginLeftVal;\n      },\n      scrollboxSize: function () {\n        computeStyleTests();\n        return scrollboxSizeVal;\n      },\n      // Support: IE 9 - 11+, Edge 15 - 18+\n      // IE/Edge misreport `getComputedStyle` of table rows with width/height\n      // set in CSS while `offset*` properties report correct values.\n      // Behavior in IE 9 is more subtle than in newer versions & it passes\n      // some versions of this test; make sure not to make it pass there!\n      reliableTrDimensions: function () {\n        var table, tr, trChild, trStyle;\n\n        if (reliableTrDimensionsVal == null) {\n          table = document.createElement("table");\n          tr = document.createElement("tr");\n          trChild = document.createElement("div");\n          table.style.cssText = "position:absolute;left:-11111px";\n          tr.style.height = "1px";\n          trChild.style.height = "9px";\n          documentElement.appendChild(table).appendChild(tr).appendChild(trChild);\n          trStyle = window.getComputedStyle(tr);\n          reliableTrDimensionsVal = parseInt(trStyle.height) > 3;\n          documentElement.removeChild(table);\n        }\n\n        return reliableTrDimensionsVal;\n      }\n    });\n  })();\n\n  function curCSS(elem, name, computed) {\n    var width,\n        minWidth,\n        maxWidth,\n        ret,\n        // Support: Firefox 51+\n    // Retrieving style before computed somehow\n    // fixes an issue with getting wrong values\n    // on detached elements\n    style = elem.style;\n    computed = computed || getStyles(elem); // getPropertyValue is needed for:\n    //   .css(\'filter\') (IE 9 only, #12537)\n    //   .css(\'--customProperty) (#3144)\n\n    if (computed) {\n      ret = computed.getPropertyValue(name) || computed[name];\n\n      if (ret === "" && !isAttached(elem)) {\n        ret = jQuery.style(elem, name);\n      } // A tribute to the "awesome hack by Dean Edwards"\n      // Android Browser returns percentage for some values,\n      // but width seems to be reliably pixels.\n      // This is against the CSSOM draft spec:\n      // https://drafts.csswg.org/cssom/#resolved-values\n\n\n      if (!support.pixelBoxStyles() && rnumnonpx.test(ret) && rboxStyle.test(name)) {\n        // Remember the original values\n        width = style.width;\n        minWidth = style.minWidth;\n        maxWidth = style.maxWidth; // Put in the new values to get a computed value out\n\n        style.minWidth = style.maxWidth = style.width = ret;\n        ret = computed.width; // Revert the changed values\n\n        style.width = width;\n        style.minWidth = minWidth;\n        style.maxWidth = maxWidth;\n      }\n    }\n\n    return ret !== undefined ? // Support: IE <=9 - 11 only\n    // IE returns zIndex value as an integer.\n    ret + "" : ret;\n  }\n\n  function addGetHookIf(conditionFn, hookFn) {\n    // Define the hook, we\'ll check on the first run if it\'s really needed.\n    return {\n      get: function () {\n        if (conditionFn()) {\n          // Hook not needed (or it\'s not possible to use it due\n          // to missing dependency), remove it.\n          delete this.get;\n          return;\n        } // Hook needed; redefine it so that the support test is not executed again.\n\n\n        return (this.get = hookFn).apply(this, arguments);\n      }\n    };\n  }\n\n  var cssPrefixes = ["Webkit", "Moz", "ms"],\n      emptyStyle = document.createElement("div").style,\n      vendorProps = {}; // Return a vendor-prefixed property or undefined\n\n  function vendorPropName(name) {\n    // Check for vendor prefixed names\n    var capName = name[0].toUpperCase() + name.slice(1),\n        i = cssPrefixes.length;\n\n    while (i--) {\n      name = cssPrefixes[i] + capName;\n\n      if (name in emptyStyle) {\n        return name;\n      }\n    }\n  } // Return a potentially-mapped jQuery.cssProps or vendor prefixed property\n\n\n  function finalPropName(name) {\n    var final = jQuery.cssProps[name] || vendorProps[name];\n\n    if (final) {\n      return final;\n    }\n\n    if (name in emptyStyle) {\n      return name;\n    }\n\n    return vendorProps[name] = vendorPropName(name) || name;\n  }\n\n  var // Swappable if display is none or starts with table\n  // except "table", "table-cell", or "table-caption"\n  // See here for display values: https://developer.mozilla.org/en-US/docs/CSS/display\n  rdisplayswap = /^(none|table(?!-c[ea]).+)/,\n      rcustomProp = /^--/,\n      cssShow = {\n    position: "absolute",\n    visibility: "hidden",\n    display: "block"\n  },\n      cssNormalTransform = {\n    letterSpacing: "0",\n    fontWeight: "400"\n  };\n\n  function setPositiveNumber(_elem, value, subtract) {\n    // Any relative (+/-) values have already been\n    // normalized at this point\n    var matches = rcssNum.exec(value);\n    return matches ? // Guard against undefined "subtract", e.g., when used as in cssHooks\n    Math.max(0, matches[2] - (subtract || 0)) + (matches[3] || "px") : value;\n  }\n\n  function boxModelAdjustment(elem, dimension, box, isBorderBox, styles, computedVal) {\n    var i = dimension === "width" ? 1 : 0,\n        extra = 0,\n        delta = 0; // Adjustment may not be necessary\n\n    if (box === (isBorderBox ? "border" : "content")) {\n      return 0;\n    }\n\n    for (; i < 4; i += 2) {\n      // Both box models exclude margin\n      if (box === "margin") {\n        delta += jQuery.css(elem, box + cssExpand[i], true, styles);\n      } // If we get here with a content-box, we\'re seeking "padding" or "border" or "margin"\n\n\n      if (!isBorderBox) {\n        // Add padding\n        delta += jQuery.css(elem, "padding" + cssExpand[i], true, styles); // For "border" or "margin", add border\n\n        if (box !== "padding") {\n          delta += jQuery.css(elem, "border" + cssExpand[i] + "Width", true, styles); // But still keep track of it otherwise\n        } else {\n          extra += jQuery.css(elem, "border" + cssExpand[i] + "Width", true, styles);\n        } // If we get here with a border-box (content + padding + border), we\'re seeking "content" or\n        // "padding" or "margin"\n\n      } else {\n        // For "content", subtract padding\n        if (box === "content") {\n          delta -= jQuery.css(elem, "padding" + cssExpand[i], true, styles);\n        } // For "content" or "padding", subtract border\n\n\n        if (box !== "margin") {\n          delta -= jQuery.css(elem, "border" + cssExpand[i] + "Width", true, styles);\n        }\n      }\n    } // Account for positive content-box scroll gutter when requested by providing computedVal\n\n\n    if (!isBorderBox && computedVal >= 0) {\n      // offsetWidth/offsetHeight is a rounded sum of content, padding, scroll gutter, and border\n      // Assuming integer scroll gutter, subtract the rest and round down\n      delta += Math.max(0, Math.ceil(elem["offset" + dimension[0].toUpperCase() + dimension.slice(1)] - computedVal - delta - extra - 0.5 // If offsetWidth/offsetHeight is unknown, then we can\'t determine content-box scroll gutter\n      // Use an explicit zero to avoid NaN (gh-3964)\n      )) || 0;\n    }\n\n    return delta;\n  }\n\n  function getWidthOrHeight(elem, dimension, extra) {\n    // Start with computed style\n    var styles = getStyles(elem),\n        // To avoid forcing a reflow, only fetch boxSizing if we need it (gh-4322).\n    // Fake content-box until we know it\'s needed to know the true value.\n    boxSizingNeeded = !support.boxSizingReliable() || extra,\n        isBorderBox = boxSizingNeeded && jQuery.css(elem, "boxSizing", false, styles) === "border-box",\n        valueIsBorderBox = isBorderBox,\n        val = curCSS(elem, dimension, styles),\n        offsetProp = "offset" + dimension[0].toUpperCase() + dimension.slice(1); // Support: Firefox <=54\n    // Return a confounding non-pixel value or feign ignorance, as appropriate.\n\n    if (rnumnonpx.test(val)) {\n      if (!extra) {\n        return val;\n      }\n\n      val = "auto";\n    } // Support: IE 9 - 11 only\n    // Use offsetWidth/offsetHeight for when box sizing is unreliable.\n    // In those cases, the computed value can be trusted to be border-box.\n\n\n    if ((!support.boxSizingReliable() && isBorderBox || // Support: IE 10 - 11+, Edge 15 - 18+\n    // IE/Edge misreport `getComputedStyle` of table rows with width/height\n    // set in CSS while `offset*` properties report correct values.\n    // Interestingly, in some cases IE 9 doesn\'t suffer from this issue.\n    !support.reliableTrDimensions() && nodeName(elem, "tr") || // Fall back to offsetWidth/offsetHeight when value is "auto"\n    // This happens for inline elements with no explicit setting (gh-3571)\n    val === "auto" || // Support: Android <=4.1 - 4.3 only\n    // Also use offsetWidth/offsetHeight for misreported inline dimensions (gh-3602)\n    !parseFloat(val) && jQuery.css(elem, "display", false, styles) === "inline") && // Make sure the element is visible & connected\n    elem.getClientRects().length) {\n      isBorderBox = jQuery.css(elem, "boxSizing", false, styles) === "border-box"; // Where available, offsetWidth/offsetHeight approximate border box dimensions.\n      // Where not available (e.g., SVG), assume unreliable box-sizing and interpret the\n      // retrieved value as a content box dimension.\n\n      valueIsBorderBox = offsetProp in elem;\n\n      if (valueIsBorderBox) {\n        val = elem[offsetProp];\n      }\n    } // Normalize "" and auto\n\n\n    val = parseFloat(val) || 0; // Adjust for the element\'s box model\n\n    return val + boxModelAdjustment(elem, dimension, extra || (isBorderBox ? "border" : "content"), valueIsBorderBox, styles, // Provide the current computed size to request scroll gutter calculation (gh-3589)\n    val) + "px";\n  }\n\n  jQuery.extend({\n    // Add in style property hooks for overriding the default\n    // behavior of getting and setting a style property\n    cssHooks: {\n      opacity: {\n        get: function (elem, computed) {\n          if (computed) {\n            // We should always get a number back from opacity\n            var ret = curCSS(elem, "opacity");\n            return ret === "" ? "1" : ret;\n          }\n        }\n      }\n    },\n    // Don\'t automatically add "px" to these possibly-unitless properties\n    cssNumber: {\n      "animationIterationCount": true,\n      "columnCount": true,\n      "fillOpacity": true,\n      "flexGrow": true,\n      "flexShrink": true,\n      "fontWeight": true,\n      "gridArea": true,\n      "gridColumn": true,\n      "gridColumnEnd": true,\n      "gridColumnStart": true,\n      "gridRow": true,\n      "gridRowEnd": true,\n      "gridRowStart": true,\n      "lineHeight": true,\n      "opacity": true,\n      "order": true,\n      "orphans": true,\n      "widows": true,\n      "zIndex": true,\n      "zoom": true\n    },\n    // Add in properties whose names you wish to fix before\n    // setting or getting the value\n    cssProps: {},\n    // Get and set the style property on a DOM Node\n    style: function (elem, name, value, extra) {\n      // Don\'t set styles on text and comment nodes\n      if (!elem || elem.nodeType === 3 || elem.nodeType === 8 || !elem.style) {\n        return;\n      } // Make sure that we\'re working with the right name\n\n\n      var ret,\n          type,\n          hooks,\n          origName = camelCase(name),\n          isCustomProp = rcustomProp.test(name),\n          style = elem.style; // Make sure that we\'re working with the right name. We don\'t\n      // want to query the value if it is a CSS custom property\n      // since they are user-defined.\n\n      if (!isCustomProp) {\n        name = finalPropName(origName);\n      } // Gets hook for the prefixed version, then unprefixed version\n\n\n      hooks = jQuery.cssHooks[name] || jQuery.cssHooks[origName]; // Check if we\'re setting a value\n\n      if (value !== undefined) {\n        type = typeof value; // Convert "+=" or "-=" to relative numbers (#7345)\n\n        if (type === "string" && (ret = rcssNum.exec(value)) && ret[1]) {\n          value = adjustCSS(elem, name, ret); // Fixes bug #9237\n\n          type = "number";\n        } // Make sure that null and NaN values aren\'t set (#7116)\n\n\n        if (value == null || value !== value) {\n          return;\n        } // If a number was passed in, add the unit (except for certain CSS properties)\n        // The isCustomProp check can be removed in jQuery 4.0 when we only auto-append\n        // "px" to a few hardcoded values.\n\n\n        if (type === "number" && !isCustomProp) {\n          value += ret && ret[3] || (jQuery.cssNumber[origName] ? "" : "px");\n        } // background-* props affect original clone\'s values\n\n\n        if (!support.clearCloneStyle && value === "" && name.indexOf("background") === 0) {\n          style[name] = "inherit";\n        } // If a hook was provided, use that value, otherwise just set the specified value\n\n\n        if (!hooks || !("set" in hooks) || (value = hooks.set(elem, value, extra)) !== undefined) {\n          if (isCustomProp) {\n            style.setProperty(name, value);\n          } else {\n            style[name] = value;\n          }\n        }\n      } else {\n        // If a hook was provided get the non-computed value from there\n        if (hooks && "get" in hooks && (ret = hooks.get(elem, false, extra)) !== undefined) {\n          return ret;\n        } // Otherwise just get the value from the style object\n\n\n        return style[name];\n      }\n    },\n    css: function (elem, name, extra, styles) {\n      var val,\n          num,\n          hooks,\n          origName = camelCase(name),\n          isCustomProp = rcustomProp.test(name); // Make sure that we\'re working with the right name. We don\'t\n      // want to modify the value if it is a CSS custom property\n      // since they are user-defined.\n\n      if (!isCustomProp) {\n        name = finalPropName(origName);\n      } // Try prefixed name followed by the unprefixed name\n\n\n      hooks = jQuery.cssHooks[name] || jQuery.cssHooks[origName]; // If a hook was provided get the computed value from there\n\n      if (hooks && "get" in hooks) {\n        val = hooks.get(elem, true, extra);\n      } // Otherwise, if a way to get the computed value exists, use that\n\n\n      if (val === undefined) {\n        val = curCSS(elem, name, styles);\n      } // Convert "normal" to computed value\n\n\n      if (val === "normal" && name in cssNormalTransform) {\n        val = cssNormalTransform[name];\n      } // Make numeric if forced or a qualifier was provided and val looks numeric\n\n\n      if (extra === "" || extra) {\n        num = parseFloat(val);\n        return extra === true || isFinite(num) ? num || 0 : val;\n      }\n\n      return val;\n    }\n  });\n  jQuery.each(["height", "width"], function (_i, dimension) {\n    jQuery.cssHooks[dimension] = {\n      get: function (elem, computed, extra) {\n        if (computed) {\n          // Certain elements can have dimension info if we invisibly show them\n          // but it must have a current display style that would benefit\n          return rdisplayswap.test(jQuery.css(elem, "display")) && ( // Support: Safari 8+\n          // Table columns in Safari have non-zero offsetWidth & zero\n          // getBoundingClientRect().width unless display is changed.\n          // Support: IE <=11 only\n          // Running getBoundingClientRect on a disconnected node\n          // in IE throws an error.\n          !elem.getClientRects().length || !elem.getBoundingClientRect().width) ? swap(elem, cssShow, function () {\n            return getWidthOrHeight(elem, dimension, extra);\n          }) : getWidthOrHeight(elem, dimension, extra);\n        }\n      },\n      set: function (elem, value, extra) {\n        var matches,\n            styles = getStyles(elem),\n            // Only read styles.position if the test has a chance to fail\n        // to avoid forcing a reflow.\n        scrollboxSizeBuggy = !support.scrollboxSize() && styles.position === "absolute",\n            // To avoid forcing a reflow, only fetch boxSizing if we need it (gh-3991)\n        boxSizingNeeded = scrollboxSizeBuggy || extra,\n            isBorderBox = boxSizingNeeded && jQuery.css(elem, "boxSizing", false, styles) === "border-box",\n            subtract = extra ? boxModelAdjustment(elem, dimension, extra, isBorderBox, styles) : 0; // Account for unreliable border-box dimensions by comparing offset* to computed and\n        // faking a content-box to get border and padding (gh-3699)\n\n        if (isBorderBox && scrollboxSizeBuggy) {\n          subtract -= Math.ceil(elem["offset" + dimension[0].toUpperCase() + dimension.slice(1)] - parseFloat(styles[dimension]) - boxModelAdjustment(elem, dimension, "border", false, styles) - 0.5);\n        } // Convert to pixels if value adjustment is needed\n\n\n        if (subtract && (matches = rcssNum.exec(value)) && (matches[3] || "px") !== "px") {\n          elem.style[dimension] = value;\n          value = jQuery.css(elem, dimension);\n        }\n\n        return setPositiveNumber(elem, value, subtract);\n      }\n    };\n  });\n  jQuery.cssHooks.marginLeft = addGetHookIf(support.reliableMarginLeft, function (elem, computed) {\n    if (computed) {\n      return (parseFloat(curCSS(elem, "marginLeft")) || elem.getBoundingClientRect().left - swap(elem, {\n        marginLeft: 0\n      }, function () {\n        return elem.getBoundingClientRect().left;\n      })) + "px";\n    }\n  }); // These hooks are used by animate to expand properties\n\n  jQuery.each({\n    margin: "",\n    padding: "",\n    border: "Width"\n  }, function (prefix, suffix) {\n    jQuery.cssHooks[prefix + suffix] = {\n      expand: function (value) {\n        var i = 0,\n            expanded = {},\n            // Assumes a single number if not a string\n        parts = typeof value === "string" ? value.split(" ") : [value];\n\n        for (; i < 4; i++) {\n          expanded[prefix + cssExpand[i] + suffix] = parts[i] || parts[i - 2] || parts[0];\n        }\n\n        return expanded;\n      }\n    };\n\n    if (prefix !== "margin") {\n      jQuery.cssHooks[prefix + suffix].set = setPositiveNumber;\n    }\n  });\n  jQuery.fn.extend({\n    css: function (name, value) {\n      return access(this, function (elem, name, value) {\n        var styles,\n            len,\n            map = {},\n            i = 0;\n\n        if (Array.isArray(name)) {\n          styles = getStyles(elem);\n          len = name.length;\n\n          for (; i < len; i++) {\n            map[name[i]] = jQuery.css(elem, name[i], false, styles);\n          }\n\n          return map;\n        }\n\n        return value !== undefined ? jQuery.style(elem, name, value) : jQuery.css(elem, name);\n      }, name, value, arguments.length > 1);\n    }\n  });\n\n  function Tween(elem, options, prop, end, easing) {\n    return new Tween.prototype.init(elem, options, prop, end, easing);\n  }\n\n  jQuery.Tween = Tween;\n  Tween.prototype = {\n    constructor: Tween,\n    init: function (elem, options, prop, end, easing, unit) {\n      this.elem = elem;\n      this.prop = prop;\n      this.easing = easing || jQuery.easing._default;\n      this.options = options;\n      this.start = this.now = this.cur();\n      this.end = end;\n      this.unit = unit || (jQuery.cssNumber[prop] ? "" : "px");\n    },\n    cur: function () {\n      var hooks = Tween.propHooks[this.prop];\n      return hooks && hooks.get ? hooks.get(this) : Tween.propHooks._default.get(this);\n    },\n    run: function (percent) {\n      var eased,\n          hooks = Tween.propHooks[this.prop];\n\n      if (this.options.duration) {\n        this.pos = eased = jQuery.easing[this.easing](percent, this.options.duration * percent, 0, 1, this.options.duration);\n      } else {\n        this.pos = eased = percent;\n      }\n\n      this.now = (this.end - this.start) * eased + this.start;\n\n      if (this.options.step) {\n        this.options.step.call(this.elem, this.now, this);\n      }\n\n      if (hooks && hooks.set) {\n        hooks.set(this);\n      } else {\n        Tween.propHooks._default.set(this);\n      }\n\n      return this;\n    }\n  };\n  Tween.prototype.init.prototype = Tween.prototype;\n  Tween.propHooks = {\n    _default: {\n      get: function (tween) {\n        var result; // Use a property on the element directly when it is not a DOM element,\n        // or when there is no matching style property that exists.\n\n        if (tween.elem.nodeType !== 1 || tween.elem[tween.prop] != null && tween.elem.style[tween.prop] == null) {\n          return tween.elem[tween.prop];\n        } // Passing an empty string as a 3rd parameter to .css will automatically\n        // attempt a parseFloat and fallback to a string if the parse fails.\n        // Simple values such as "10px" are parsed to Float;\n        // complex values such as "rotate(1rad)" are returned as-is.\n\n\n        result = jQuery.css(tween.elem, tween.prop, ""); // Empty strings, null, undefined and "auto" are converted to 0.\n\n        return !result || result === "auto" ? 0 : result;\n      },\n      set: function (tween) {\n        // Use step hook for back compat.\n        // Use cssHook if its there.\n        // Use .style if available and use plain properties where available.\n        if (jQuery.fx.step[tween.prop]) {\n          jQuery.fx.step[tween.prop](tween);\n        } else if (tween.elem.nodeType === 1 && (jQuery.cssHooks[tween.prop] || tween.elem.style[finalPropName(tween.prop)] != null)) {\n          jQuery.style(tween.elem, tween.prop, tween.now + tween.unit);\n        } else {\n          tween.elem[tween.prop] = tween.now;\n        }\n      }\n    }\n  }; // Support: IE <=9 only\n  // Panic based approach to setting things on disconnected nodes\n\n  Tween.propHooks.scrollTop = Tween.propHooks.scrollLeft = {\n    set: function (tween) {\n      if (tween.elem.nodeType && tween.elem.parentNode) {\n        tween.elem[tween.prop] = tween.now;\n      }\n    }\n  };\n  jQuery.easing = {\n    linear: function (p) {\n      return p;\n    },\n    swing: function (p) {\n      return 0.5 - Math.cos(p * Math.PI) / 2;\n    },\n    _default: "swing"\n  };\n  jQuery.fx = Tween.prototype.init; // Back compat <1.8 extension point\n\n  jQuery.fx.step = {};\n  var fxNow,\n      inProgress,\n      rfxtypes = /^(?:toggle|show|hide)$/,\n      rrun = /queueHooks$/;\n\n  function schedule() {\n    if (inProgress) {\n      if (document.hidden === false && window.requestAnimationFrame) {\n        window.requestAnimationFrame(schedule);\n      } else {\n        window.setTimeout(schedule, jQuery.fx.interval);\n      }\n\n      jQuery.fx.tick();\n    }\n  } // Animations created synchronously will run synchronously\n\n\n  function createFxNow() {\n    window.setTimeout(function () {\n      fxNow = undefined;\n    });\n    return fxNow = Date.now();\n  } // Generate parameters to create a standard animation\n\n\n  function genFx(type, includeWidth) {\n    var which,\n        i = 0,\n        attrs = {\n      height: type\n    }; // If we include width, step value is 1 to do all cssExpand values,\n    // otherwise step value is 2 to skip over Left and Right\n\n    includeWidth = includeWidth ? 1 : 0;\n\n    for (; i < 4; i += 2 - includeWidth) {\n      which = cssExpand[i];\n      attrs["margin" + which] = attrs["padding" + which] = type;\n    }\n\n    if (includeWidth) {\n      attrs.opacity = attrs.width = type;\n    }\n\n    return attrs;\n  }\n\n  function createTween(value, prop, animation) {\n    var tween,\n        collection = (Animation.tweeners[prop] || []).concat(Animation.tweeners["*"]),\n        index = 0,\n        length = collection.length;\n\n    for (; index < length; index++) {\n      if (tween = collection[index].call(animation, prop, value)) {\n        // We\'re done with this property\n        return tween;\n      }\n    }\n  }\n\n  function defaultPrefilter(elem, props, opts) {\n    var prop,\n        value,\n        toggle,\n        hooks,\n        oldfire,\n        propTween,\n        restoreDisplay,\n        display,\n        isBox = "width" in props || "height" in props,\n        anim = this,\n        orig = {},\n        style = elem.style,\n        hidden = elem.nodeType && isHiddenWithinTree(elem),\n        dataShow = dataPriv.get(elem, "fxshow"); // Queue-skipping animations hijack the fx hooks\n\n    if (!opts.queue) {\n      hooks = jQuery._queueHooks(elem, "fx");\n\n      if (hooks.unqueued == null) {\n        hooks.unqueued = 0;\n        oldfire = hooks.empty.fire;\n\n        hooks.empty.fire = function () {\n          if (!hooks.unqueued) {\n            oldfire();\n          }\n        };\n      }\n\n      hooks.unqueued++;\n      anim.always(function () {\n        // Ensure the complete handler is called before this completes\n        anim.always(function () {\n          hooks.unqueued--;\n\n          if (!jQuery.queue(elem, "fx").length) {\n            hooks.empty.fire();\n          }\n        });\n      });\n    } // Detect show/hide animations\n\n\n    for (prop in props) {\n      value = props[prop];\n\n      if (rfxtypes.test(value)) {\n        delete props[prop];\n        toggle = toggle || value === "toggle";\n\n        if (value === (hidden ? "hide" : "show")) {\n          // Pretend to be hidden if this is a "show" and\n          // there is still data from a stopped show/hide\n          if (value === "show" && dataShow && dataShow[prop] !== undefined) {\n            hidden = true; // Ignore all other no-op show/hide data\n          } else {\n            continue;\n          }\n        }\n\n        orig[prop] = dataShow && dataShow[prop] || jQuery.style(elem, prop);\n      }\n    } // Bail out if this is a no-op like .hide().hide()\n\n\n    propTween = !jQuery.isEmptyObject(props);\n\n    if (!propTween && jQuery.isEmptyObject(orig)) {\n      return;\n    } // Restrict "overflow" and "display" styles during box animations\n\n\n    if (isBox && elem.nodeType === 1) {\n      // Support: IE <=9 - 11, Edge 12 - 15\n      // Record all 3 overflow attributes because IE does not infer the shorthand\n      // from identically-valued overflowX and overflowY and Edge just mirrors\n      // the overflowX value there.\n      opts.overflow = [style.overflow, style.overflowX, style.overflowY]; // Identify a display type, preferring old show/hide data over the CSS cascade\n\n      restoreDisplay = dataShow && dataShow.display;\n\n      if (restoreDisplay == null) {\n        restoreDisplay = dataPriv.get(elem, "display");\n      }\n\n      display = jQuery.css(elem, "display");\n\n      if (display === "none") {\n        if (restoreDisplay) {\n          display = restoreDisplay;\n        } else {\n          // Get nonempty value(s) by temporarily forcing visibility\n          showHide([elem], true);\n          restoreDisplay = elem.style.display || restoreDisplay;\n          display = jQuery.css(elem, "display");\n          showHide([elem]);\n        }\n      } // Animate inline elements as inline-block\n\n\n      if (display === "inline" || display === "inline-block" && restoreDisplay != null) {\n        if (jQuery.css(elem, "float") === "none") {\n          // Restore the original display value at the end of pure show/hide animations\n          if (!propTween) {\n            anim.done(function () {\n              style.display = restoreDisplay;\n            });\n\n            if (restoreDisplay == null) {\n              display = style.display;\n              restoreDisplay = display === "none" ? "" : display;\n            }\n          }\n\n          style.display = "inline-block";\n        }\n      }\n    }\n\n    if (opts.overflow) {\n      style.overflow = "hidden";\n      anim.always(function () {\n        style.overflow = opts.overflow[0];\n        style.overflowX = opts.overflow[1];\n        style.overflowY = opts.overflow[2];\n      });\n    } // Implement show/hide animations\n\n\n    propTween = false;\n\n    for (prop in orig) {\n      // General show/hide setup for this element animation\n      if (!propTween) {\n        if (dataShow) {\n          if ("hidden" in dataShow) {\n            hidden = dataShow.hidden;\n          }\n        } else {\n          dataShow = dataPriv.access(elem, "fxshow", {\n            display: restoreDisplay\n          });\n        } // Store hidden/visible for toggle so `.stop().toggle()` "reverses"\n\n\n        if (toggle) {\n          dataShow.hidden = !hidden;\n        } // Show elements before animating them\n\n\n        if (hidden) {\n          showHide([elem], true);\n        }\n        /* eslint-disable no-loop-func */\n\n\n        anim.done(function () {\n          /* eslint-enable no-loop-func */\n          // The final step of a "hide" animation is actually hiding the element\n          if (!hidden) {\n            showHide([elem]);\n          }\n\n          dataPriv.remove(elem, "fxshow");\n\n          for (prop in orig) {\n            jQuery.style(elem, prop, orig[prop]);\n          }\n        });\n      } // Per-property setup\n\n\n      propTween = createTween(hidden ? dataShow[prop] : 0, prop, anim);\n\n      if (!(prop in dataShow)) {\n        dataShow[prop] = propTween.start;\n\n        if (hidden) {\n          propTween.end = propTween.start;\n          propTween.start = 0;\n        }\n      }\n    }\n  }\n\n  function propFilter(props, specialEasing) {\n    var index, name, easing, value, hooks; // camelCase, specialEasing and expand cssHook pass\n\n    for (index in props) {\n      name = camelCase(index);\n      easing = specialEasing[name];\n      value = props[index];\n\n      if (Array.isArray(value)) {\n        easing = value[1];\n        value = props[index] = value[0];\n      }\n\n      if (index !== name) {\n        props[name] = value;\n        delete props[index];\n      }\n\n      hooks = jQuery.cssHooks[name];\n\n      if (hooks && "expand" in hooks) {\n        value = hooks.expand(value);\n        delete props[name]; // Not quite $.extend, this won\'t overwrite existing keys.\n        // Reusing \'index\' because we have the correct "name"\n\n        for (index in value) {\n          if (!(index in props)) {\n            props[index] = value[index];\n            specialEasing[index] = easing;\n          }\n        }\n      } else {\n        specialEasing[name] = easing;\n      }\n    }\n  }\n\n  function Animation(elem, properties, options) {\n    var result,\n        stopped,\n        index = 0,\n        length = Animation.prefilters.length,\n        deferred = jQuery.Deferred().always(function () {\n      // Don\'t match elem in the :animated selector\n      delete tick.elem;\n    }),\n        tick = function () {\n      if (stopped) {\n        return false;\n      }\n\n      var currentTime = fxNow || createFxNow(),\n          remaining = Math.max(0, animation.startTime + animation.duration - currentTime),\n          // Support: Android 2.3 only\n      // Archaic crash bug won\'t allow us to use `1 - ( 0.5 || 0 )` (#12497)\n      temp = remaining / animation.duration || 0,\n          percent = 1 - temp,\n          index = 0,\n          length = animation.tweens.length;\n\n      for (; index < length; index++) {\n        animation.tweens[index].run(percent);\n      }\n\n      deferred.notifyWith(elem, [animation, percent, remaining]); // If there\'s more to do, yield\n\n      if (percent < 1 && length) {\n        return remaining;\n      } // If this was an empty animation, synthesize a final progress notification\n\n\n      if (!length) {\n        deferred.notifyWith(elem, [animation, 1, 0]);\n      } // Resolve the animation and report its conclusion\n\n\n      deferred.resolveWith(elem, [animation]);\n      return false;\n    },\n        animation = deferred.promise({\n      elem: elem,\n      props: jQuery.extend({}, properties),\n      opts: jQuery.extend(true, {\n        specialEasing: {},\n        easing: jQuery.easing._default\n      }, options),\n      originalProperties: properties,\n      originalOptions: options,\n      startTime: fxNow || createFxNow(),\n      duration: options.duration,\n      tweens: [],\n      createTween: function (prop, end) {\n        var tween = jQuery.Tween(elem, animation.opts, prop, end, animation.opts.specialEasing[prop] || animation.opts.easing);\n        animation.tweens.push(tween);\n        return tween;\n      },\n      stop: function (gotoEnd) {\n        var index = 0,\n            // If we are going to the end, we want to run all the tweens\n        // otherwise we skip this part\n        length = gotoEnd ? animation.tweens.length : 0;\n\n        if (stopped) {\n          return this;\n        }\n\n        stopped = true;\n\n        for (; index < length; index++) {\n          animation.tweens[index].run(1);\n        } // Resolve when we played the last frame; otherwise, reject\n\n\n        if (gotoEnd) {\n          deferred.notifyWith(elem, [animation, 1, 0]);\n          deferred.resolveWith(elem, [animation, gotoEnd]);\n        } else {\n          deferred.rejectWith(elem, [animation, gotoEnd]);\n        }\n\n        return this;\n      }\n    }),\n        props = animation.props;\n\n    propFilter(props, animation.opts.specialEasing);\n\n    for (; index < length; index++) {\n      result = Animation.prefilters[index].call(animation, elem, props, animation.opts);\n\n      if (result) {\n        if (isFunction(result.stop)) {\n          jQuery._queueHooks(animation.elem, animation.opts.queue).stop = result.stop.bind(result);\n        }\n\n        return result;\n      }\n    }\n\n    jQuery.map(props, createTween, animation);\n\n    if (isFunction(animation.opts.start)) {\n      animation.opts.start.call(elem, animation);\n    } // Attach callbacks from options\n\n\n    animation.progress(animation.opts.progress).done(animation.opts.done, animation.opts.complete).fail(animation.opts.fail).always(animation.opts.always);\n    jQuery.fx.timer(jQuery.extend(tick, {\n      elem: elem,\n      anim: animation,\n      queue: animation.opts.queue\n    }));\n    return animation;\n  }\n\n  jQuery.Animation = jQuery.extend(Animation, {\n    tweeners: {\n      "*": [function (prop, value) {\n        var tween = this.createTween(prop, value);\n        adjustCSS(tween.elem, prop, rcssNum.exec(value), tween);\n        return tween;\n      }]\n    },\n    tweener: function (props, callback) {\n      if (isFunction(props)) {\n        callback = props;\n        props = ["*"];\n      } else {\n        props = props.match(rnothtmlwhite);\n      }\n\n      var prop,\n          index = 0,\n          length = props.length;\n\n      for (; index < length; index++) {\n        prop = props[index];\n        Animation.tweeners[prop] = Animation.tweeners[prop] || [];\n        Animation.tweeners[prop].unshift(callback);\n      }\n    },\n    prefilters: [defaultPrefilter],\n    prefilter: function (callback, prepend) {\n      if (prepend) {\n        Animation.prefilters.unshift(callback);\n      } else {\n        Animation.prefilters.push(callback);\n      }\n    }\n  });\n\n  jQuery.speed = function (speed, easing, fn) {\n    var opt = speed && typeof speed === "object" ? jQuery.extend({}, speed) : {\n      complete: fn || !fn && easing || isFunction(speed) && speed,\n      duration: speed,\n      easing: fn && easing || easing && !isFunction(easing) && easing\n    }; // Go to the end state if fx are off\n\n    if (jQuery.fx.off) {\n      opt.duration = 0;\n    } else {\n      if (typeof opt.duration !== "number") {\n        if (opt.duration in jQuery.fx.speeds) {\n          opt.duration = jQuery.fx.speeds[opt.duration];\n        } else {\n          opt.duration = jQuery.fx.speeds._default;\n        }\n      }\n    } // Normalize opt.queue - true/undefined/null -> "fx"\n\n\n    if (opt.queue == null || opt.queue === true) {\n      opt.queue = "fx";\n    } // Queueing\n\n\n    opt.old = opt.complete;\n\n    opt.complete = function () {\n      if (isFunction(opt.old)) {\n        opt.old.call(this);\n      }\n\n      if (opt.queue) {\n        jQuery.dequeue(this, opt.queue);\n      }\n    };\n\n    return opt;\n  };\n\n  jQuery.fn.extend({\n    fadeTo: function (speed, to, easing, callback) {\n      // Show any hidden elements after setting opacity to 0\n      return this.filter(isHiddenWithinTree).css("opacity", 0).show() // Animate to the value specified\n      .end().animate({\n        opacity: to\n      }, speed, easing, callback);\n    },\n    animate: function (prop, speed, easing, callback) {\n      var empty = jQuery.isEmptyObject(prop),\n          optall = jQuery.speed(speed, easing, callback),\n          doAnimation = function () {\n        // Operate on a copy of prop so per-property easing won\'t be lost\n        var anim = Animation(this, jQuery.extend({}, prop), optall); // Empty animations, or finishing resolves immediately\n\n        if (empty || dataPriv.get(this, "finish")) {\n          anim.stop(true);\n        }\n      };\n\n      doAnimation.finish = doAnimation;\n      return empty || optall.queue === false ? this.each(doAnimation) : this.queue(optall.queue, doAnimation);\n    },\n    stop: function (type, clearQueue, gotoEnd) {\n      var stopQueue = function (hooks) {\n        var stop = hooks.stop;\n        delete hooks.stop;\n        stop(gotoEnd);\n      };\n\n      if (typeof type !== "string") {\n        gotoEnd = clearQueue;\n        clearQueue = type;\n        type = undefined;\n      }\n\n      if (clearQueue) {\n        this.queue(type || "fx", []);\n      }\n\n      return this.each(function () {\n        var dequeue = true,\n            index = type != null && type + "queueHooks",\n            timers = jQuery.timers,\n            data = dataPriv.get(this);\n\n        if (index) {\n          if (data[index] && data[index].stop) {\n            stopQueue(data[index]);\n          }\n        } else {\n          for (index in data) {\n            if (data[index] && data[index].stop && rrun.test(index)) {\n              stopQueue(data[index]);\n            }\n          }\n        }\n\n        for (index = timers.length; index--;) {\n          if (timers[index].elem === this && (type == null || timers[index].queue === type)) {\n            timers[index].anim.stop(gotoEnd);\n            dequeue = false;\n            timers.splice(index, 1);\n          }\n        } // Start the next in the queue if the last step wasn\'t forced.\n        // Timers currently will call their complete callbacks, which\n        // will dequeue but only if they were gotoEnd.\n\n\n        if (dequeue || !gotoEnd) {\n          jQuery.dequeue(this, type);\n        }\n      });\n    },\n    finish: function (type) {\n      if (type !== false) {\n        type = type || "fx";\n      }\n\n      return this.each(function () {\n        var index,\n            data = dataPriv.get(this),\n            queue = data[type + "queue"],\n            hooks = data[type + "queueHooks"],\n            timers = jQuery.timers,\n            length = queue ? queue.length : 0; // Enable finishing flag on private data\n\n        data.finish = true; // Empty the queue first\n\n        jQuery.queue(this, type, []);\n\n        if (hooks && hooks.stop) {\n          hooks.stop.call(this, true);\n        } // Look for any active animations, and finish them\n\n\n        for (index = timers.length; index--;) {\n          if (timers[index].elem === this && timers[index].queue === type) {\n            timers[index].anim.stop(true);\n            timers.splice(index, 1);\n          }\n        } // Look for any animations in the old queue and finish them\n\n\n        for (index = 0; index < length; index++) {\n          if (queue[index] && queue[index].finish) {\n            queue[index].finish.call(this);\n          }\n        } // Turn off finishing flag\n\n\n        delete data.finish;\n      });\n    }\n  });\n  jQuery.each(["toggle", "show", "hide"], function (_i, name) {\n    var cssFn = jQuery.fn[name];\n\n    jQuery.fn[name] = function (speed, easing, callback) {\n      return speed == null || typeof speed === "boolean" ? cssFn.apply(this, arguments) : this.animate(genFx(name, true), speed, easing, callback);\n    };\n  }); // Generate shortcuts for custom animations\n\n  jQuery.each({\n    slideDown: genFx("show"),\n    slideUp: genFx("hide"),\n    slideToggle: genFx("toggle"),\n    fadeIn: {\n      opacity: "show"\n    },\n    fadeOut: {\n      opacity: "hide"\n    },\n    fadeToggle: {\n      opacity: "toggle"\n    }\n  }, function (name, props) {\n    jQuery.fn[name] = function (speed, easing, callback) {\n      return this.animate(props, speed, easing, callback);\n    };\n  });\n  jQuery.timers = [];\n\n  jQuery.fx.tick = function () {\n    var timer,\n        i = 0,\n        timers = jQuery.timers;\n    fxNow = Date.now();\n\n    for (; i < timers.length; i++) {\n      timer = timers[i]; // Run the timer and safely remove it when done (allowing for external removal)\n\n      if (!timer() && timers[i] === timer) {\n        timers.splice(i--, 1);\n      }\n    }\n\n    if (!timers.length) {\n      jQuery.fx.stop();\n    }\n\n    fxNow = undefined;\n  };\n\n  jQuery.fx.timer = function (timer) {\n    jQuery.timers.push(timer);\n    jQuery.fx.start();\n  };\n\n  jQuery.fx.interval = 13;\n\n  jQuery.fx.start = function () {\n    if (inProgress) {\n      return;\n    }\n\n    inProgress = true;\n    schedule();\n  };\n\n  jQuery.fx.stop = function () {\n    inProgress = null;\n  };\n\n  jQuery.fx.speeds = {\n    slow: 600,\n    fast: 200,\n    // Default speed\n    _default: 400\n  }; // Based off of the plugin by Clint Helfers, with permission.\n  // https://web.archive.org/web/20100324014747/http://blindsignals.com/index.php/2009/07/jquery-delay/\n\n  jQuery.fn.delay = function (time, type) {\n    time = jQuery.fx ? jQuery.fx.speeds[time] || time : time;\n    type = type || "fx";\n    return this.queue(type, function (next, hooks) {\n      var timeout = window.setTimeout(next, time);\n\n      hooks.stop = function () {\n        window.clearTimeout(timeout);\n      };\n    });\n  };\n\n  (function () {\n    var input = document.createElement("input"),\n        select = document.createElement("select"),\n        opt = select.appendChild(document.createElement("option"));\n    input.type = "checkbox"; // Support: Android <=4.3 only\n    // Default value for a checkbox should be "on"\n\n    support.checkOn = input.value !== ""; // Support: IE <=11 only\n    // Must access selectedIndex to make default options select\n\n    support.optSelected = opt.selected; // Support: IE <=11 only\n    // An input loses its value after becoming a radio\n\n    input = document.createElement("input");\n    input.value = "t";\n    input.type = "radio";\n    support.radioValue = input.value === "t";\n  })();\n\n  var boolHook,\n      attrHandle = jQuery.expr.attrHandle;\n  jQuery.fn.extend({\n    attr: function (name, value) {\n      return access(this, jQuery.attr, name, value, arguments.length > 1);\n    },\n    removeAttr: function (name) {\n      return this.each(function () {\n        jQuery.removeAttr(this, name);\n      });\n    }\n  });\n  jQuery.extend({\n    attr: function (elem, name, value) {\n      var ret,\n          hooks,\n          nType = elem.nodeType; // Don\'t get/set attributes on text, comment and attribute nodes\n\n      if (nType === 3 || nType === 8 || nType === 2) {\n        return;\n      } // Fallback to prop when attributes are not supported\n\n\n      if (typeof elem.getAttribute === "undefined") {\n        return jQuery.prop(elem, name, value);\n      } // Attribute hooks are determined by the lowercase version\n      // Grab necessary hook if one is defined\n\n\n      if (nType !== 1 || !jQuery.isXMLDoc(elem)) {\n        hooks = jQuery.attrHooks[name.toLowerCase()] || (jQuery.expr.match.bool.test(name) ? boolHook : undefined);\n      }\n\n      if (value !== undefined) {\n        if (value === null) {\n          jQuery.removeAttr(elem, name);\n          return;\n        }\n\n        if (hooks && "set" in hooks && (ret = hooks.set(elem, value, name)) !== undefined) {\n          return ret;\n        }\n\n        elem.setAttribute(name, value + "");\n        return value;\n      }\n\n      if (hooks && "get" in hooks && (ret = hooks.get(elem, name)) !== null) {\n        return ret;\n      }\n\n      ret = jQuery.find.attr(elem, name); // Non-existent attributes return null, we normalize to undefined\n\n      return ret == null ? undefined : ret;\n    },\n    attrHooks: {\n      type: {\n        set: function (elem, value) {\n          if (!support.radioValue && value === "radio" && nodeName(elem, "input")) {\n            var val = elem.value;\n            elem.setAttribute("type", value);\n\n            if (val) {\n              elem.value = val;\n            }\n\n            return value;\n          }\n        }\n      }\n    },\n    removeAttr: function (elem, value) {\n      var name,\n          i = 0,\n          // Attribute names can contain non-HTML whitespace characters\n      // https://html.spec.whatwg.org/multipage/syntax.html#attributes-2\n      attrNames = value && value.match(rnothtmlwhite);\n\n      if (attrNames && elem.nodeType === 1) {\n        while (name = attrNames[i++]) {\n          elem.removeAttribute(name);\n        }\n      }\n    }\n  }); // Hooks for boolean attributes\n\n  boolHook = {\n    set: function (elem, value, name) {\n      if (value === false) {\n        // Remove boolean attributes when set to false\n        jQuery.removeAttr(elem, name);\n      } else {\n        elem.setAttribute(name, name);\n      }\n\n      return name;\n    }\n  };\n  jQuery.each(jQuery.expr.match.bool.source.match(/\\w+/g), function (_i, name) {\n    var getter = attrHandle[name] || jQuery.find.attr;\n\n    attrHandle[name] = function (elem, name, isXML) {\n      var ret,\n          handle,\n          lowercaseName = name.toLowerCase();\n\n      if (!isXML) {\n        // Avoid an infinite loop by temporarily removing this function from the getter\n        handle = attrHandle[lowercaseName];\n        attrHandle[lowercaseName] = ret;\n        ret = getter(elem, name, isXML) != null ? lowercaseName : null;\n        attrHandle[lowercaseName] = handle;\n      }\n\n      return ret;\n    };\n  });\n  var rfocusable = /^(?:input|select|textarea|button)$/i,\n      rclickable = /^(?:a|area)$/i;\n  jQuery.fn.extend({\n    prop: function (name, value) {\n      return access(this, jQuery.prop, name, value, arguments.length > 1);\n    },\n    removeProp: function (name) {\n      return this.each(function () {\n        delete this[jQuery.propFix[name] || name];\n      });\n    }\n  });\n  jQuery.extend({\n    prop: function (elem, name, value) {\n      var ret,\n          hooks,\n          nType = elem.nodeType; // Don\'t get/set properties on text, comment and attribute nodes\n\n      if (nType === 3 || nType === 8 || nType === 2) {\n        return;\n      }\n\n      if (nType !== 1 || !jQuery.isXMLDoc(elem)) {\n        // Fix name and attach hooks\n        name = jQuery.propFix[name] || name;\n        hooks = jQuery.propHooks[name];\n      }\n\n      if (value !== undefined) {\n        if (hooks && "set" in hooks && (ret = hooks.set(elem, value, name)) !== undefined) {\n          return ret;\n        }\n\n        return elem[name] = value;\n      }\n\n      if (hooks && "get" in hooks && (ret = hooks.get(elem, name)) !== null) {\n        return ret;\n      }\n\n      return elem[name];\n    },\n    propHooks: {\n      tabIndex: {\n        get: function (elem) {\n          // Support: IE <=9 - 11 only\n          // elem.tabIndex doesn\'t always return the\n          // correct value when it hasn\'t been explicitly set\n          // https://web.archive.org/web/20141116233347/http://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/\n          // Use proper attribute retrieval(#12072)\n          var tabindex = jQuery.find.attr(elem, "tabindex");\n\n          if (tabindex) {\n            return parseInt(tabindex, 10);\n          }\n\n          if (rfocusable.test(elem.nodeName) || rclickable.test(elem.nodeName) && elem.href) {\n            return 0;\n          }\n\n          return -1;\n        }\n      }\n    },\n    propFix: {\n      "for": "htmlFor",\n      "class": "className"\n    }\n  }); // Support: IE <=11 only\n  // Accessing the selectedIndex property\n  // forces the browser to respect setting selected\n  // on the option\n  // The getter ensures a default option is selected\n  // when in an optgroup\n  // eslint rule "no-unused-expressions" is disabled for this code\n  // since it considers such accessions noop\n\n  if (!support.optSelected) {\n    jQuery.propHooks.selected = {\n      get: function (elem) {\n        /* eslint no-unused-expressions: "off" */\n        var parent = elem.parentNode;\n\n        if (parent && parent.parentNode) {\n          parent.parentNode.selectedIndex;\n        }\n\n        return null;\n      },\n      set: function (elem) {\n        /* eslint no-unused-expressions: "off" */\n        var parent = elem.parentNode;\n\n        if (parent) {\n          parent.selectedIndex;\n\n          if (parent.parentNode) {\n            parent.parentNode.selectedIndex;\n          }\n        }\n      }\n    };\n  }\n\n  jQuery.each(["tabIndex", "readOnly", "maxLength", "cellSpacing", "cellPadding", "rowSpan", "colSpan", "useMap", "frameBorder", "contentEditable"], function () {\n    jQuery.propFix[this.toLowerCase()] = this;\n  }); // Strip and collapse whitespace according to HTML spec\n  // https://infra.spec.whatwg.org/#strip-and-collapse-ascii-whitespace\n\n  function stripAndCollapse(value) {\n    var tokens = value.match(rnothtmlwhite) || [];\n    return tokens.join(" ");\n  }\n\n  function getClass(elem) {\n    return elem.getAttribute && elem.getAttribute("class") || "";\n  }\n\n  function classesToArray(value) {\n    if (Array.isArray(value)) {\n      return value;\n    }\n\n    if (typeof value === "string") {\n      return value.match(rnothtmlwhite) || [];\n    }\n\n    return [];\n  }\n\n  jQuery.fn.extend({\n    addClass: function (value) {\n      var classes,\n          elem,\n          cur,\n          curValue,\n          clazz,\n          j,\n          finalValue,\n          i = 0;\n\n      if (isFunction(value)) {\n        return this.each(function (j) {\n          jQuery(this).addClass(value.call(this, j, getClass(this)));\n        });\n      }\n\n      classes = classesToArray(value);\n\n      if (classes.length) {\n        while (elem = this[i++]) {\n          curValue = getClass(elem);\n          cur = elem.nodeType === 1 && " " + stripAndCollapse(curValue) + " ";\n\n          if (cur) {\n            j = 0;\n\n            while (clazz = classes[j++]) {\n              if (cur.indexOf(" " + clazz + " ") < 0) {\n                cur += clazz + " ";\n              }\n            } // Only assign if different to avoid unneeded rendering.\n\n\n            finalValue = stripAndCollapse(cur);\n\n            if (curValue !== finalValue) {\n              elem.setAttribute("class", finalValue);\n            }\n          }\n        }\n      }\n\n      return this;\n    },\n    removeClass: function (value) {\n      var classes,\n          elem,\n          cur,\n          curValue,\n          clazz,\n          j,\n          finalValue,\n          i = 0;\n\n      if (isFunction(value)) {\n        return this.each(function (j) {\n          jQuery(this).removeClass(value.call(this, j, getClass(this)));\n        });\n      }\n\n      if (!arguments.length) {\n        return this.attr("class", "");\n      }\n\n      classes = classesToArray(value);\n\n      if (classes.length) {\n        while (elem = this[i++]) {\n          curValue = getClass(elem); // This expression is here for better compressibility (see addClass)\n\n          cur = elem.nodeType === 1 && " " + stripAndCollapse(curValue) + " ";\n\n          if (cur) {\n            j = 0;\n\n            while (clazz = classes[j++]) {\n              // Remove *all* instances\n              while (cur.indexOf(" " + clazz + " ") > -1) {\n                cur = cur.replace(" " + clazz + " ", " ");\n              }\n            } // Only assign if different to avoid unneeded rendering.\n\n\n            finalValue = stripAndCollapse(cur);\n\n            if (curValue !== finalValue) {\n              elem.setAttribute("class", finalValue);\n            }\n          }\n        }\n      }\n\n      return this;\n    },\n    toggleClass: function (value, stateVal) {\n      var type = typeof value,\n          isValidValue = type === "string" || Array.isArray(value);\n\n      if (typeof stateVal === "boolean" && isValidValue) {\n        return stateVal ? this.addClass(value) : this.removeClass(value);\n      }\n\n      if (isFunction(value)) {\n        return this.each(function (i) {\n          jQuery(this).toggleClass(value.call(this, i, getClass(this), stateVal), stateVal);\n        });\n      }\n\n      return this.each(function () {\n        var className, i, self, classNames;\n\n        if (isValidValue) {\n          // Toggle individual class names\n          i = 0;\n          self = jQuery(this);\n          classNames = classesToArray(value);\n\n          while (className = classNames[i++]) {\n            // Check each className given, space separated list\n            if (self.hasClass(className)) {\n              self.removeClass(className);\n            } else {\n              self.addClass(className);\n            }\n          } // Toggle whole class name\n\n        } else if (value === undefined || type === "boolean") {\n          className = getClass(this);\n\n          if (className) {\n            // Store className if set\n            dataPriv.set(this, "__className__", className);\n          } // If the element has a class name or if we\'re passed `false`,\n          // then remove the whole classname (if there was one, the above saved it).\n          // Otherwise bring back whatever was previously saved (if anything),\n          // falling back to the empty string if nothing was stored.\n\n\n          if (this.setAttribute) {\n            this.setAttribute("class", className || value === false ? "" : dataPriv.get(this, "__className__") || "");\n          }\n        }\n      });\n    },\n    hasClass: function (selector) {\n      var className,\n          elem,\n          i = 0;\n      className = " " + selector + " ";\n\n      while (elem = this[i++]) {\n        if (elem.nodeType === 1 && (" " + stripAndCollapse(getClass(elem)) + " ").indexOf(className) > -1) {\n          return true;\n        }\n      }\n\n      return false;\n    }\n  });\n  var rreturn = /\\r/g;\n  jQuery.fn.extend({\n    val: function (value) {\n      var hooks,\n          ret,\n          valueIsFunction,\n          elem = this[0];\n\n      if (!arguments.length) {\n        if (elem) {\n          hooks = jQuery.valHooks[elem.type] || jQuery.valHooks[elem.nodeName.toLowerCase()];\n\n          if (hooks && "get" in hooks && (ret = hooks.get(elem, "value")) !== undefined) {\n            return ret;\n          }\n\n          ret = elem.value; // Handle most common string cases\n\n          if (typeof ret === "string") {\n            return ret.replace(rreturn, "");\n          } // Handle cases where value is null/undef or number\n\n\n          return ret == null ? "" : ret;\n        }\n\n        return;\n      }\n\n      valueIsFunction = isFunction(value);\n      return this.each(function (i) {\n        var val;\n\n        if (this.nodeType !== 1) {\n          return;\n        }\n\n        if (valueIsFunction) {\n          val = value.call(this, i, jQuery(this).val());\n        } else {\n          val = value;\n        } // Treat null/undefined as ""; convert numbers to string\n\n\n        if (val == null) {\n          val = "";\n        } else if (typeof val === "number") {\n          val += "";\n        } else if (Array.isArray(val)) {\n          val = jQuery.map(val, function (value) {\n            return value == null ? "" : value + "";\n          });\n        }\n\n        hooks = jQuery.valHooks[this.type] || jQuery.valHooks[this.nodeName.toLowerCase()]; // If set returns undefined, fall back to normal setting\n\n        if (!hooks || !("set" in hooks) || hooks.set(this, val, "value") === undefined) {\n          this.value = val;\n        }\n      });\n    }\n  });\n  jQuery.extend({\n    valHooks: {\n      option: {\n        get: function (elem) {\n          var val = jQuery.find.attr(elem, "value");\n          return val != null ? val : // Support: IE <=10 - 11 only\n          // option.text throws exceptions (#14686, #14858)\n          // Strip and collapse whitespace\n          // https://html.spec.whatwg.org/#strip-and-collapse-whitespace\n          stripAndCollapse(jQuery.text(elem));\n        }\n      },\n      select: {\n        get: function (elem) {\n          var value,\n              option,\n              i,\n              options = elem.options,\n              index = elem.selectedIndex,\n              one = elem.type === "select-one",\n              values = one ? null : [],\n              max = one ? index + 1 : options.length;\n\n          if (index < 0) {\n            i = max;\n          } else {\n            i = one ? index : 0;\n          } // Loop through all the selected options\n\n\n          for (; i < max; i++) {\n            option = options[i]; // Support: IE <=9 only\n            // IE8-9 doesn\'t update selected after form reset (#2551)\n\n            if ((option.selected || i === index) && // Don\'t return options that are disabled or in a disabled optgroup\n            !option.disabled && (!option.parentNode.disabled || !nodeName(option.parentNode, "optgroup"))) {\n              // Get the specific value for the option\n              value = jQuery(option).val(); // We don\'t need an array for one selects\n\n              if (one) {\n                return value;\n              } // Multi-Selects return an array\n\n\n              values.push(value);\n            }\n          }\n\n          return values;\n        },\n        set: function (elem, value) {\n          var optionSet,\n              option,\n              options = elem.options,\n              values = jQuery.makeArray(value),\n              i = options.length;\n\n          while (i--) {\n            option = options[i];\n            /* eslint-disable no-cond-assign */\n\n            if (option.selected = jQuery.inArray(jQuery.valHooks.option.get(option), values) > -1) {\n              optionSet = true;\n            }\n            /* eslint-enable no-cond-assign */\n\n          } // Force browsers to behave consistently when non-matching value is set\n\n\n          if (!optionSet) {\n            elem.selectedIndex = -1;\n          }\n\n          return values;\n        }\n      }\n    }\n  }); // Radios and checkboxes getter/setter\n\n  jQuery.each(["radio", "checkbox"], function () {\n    jQuery.valHooks[this] = {\n      set: function (elem, value) {\n        if (Array.isArray(value)) {\n          return elem.checked = jQuery.inArray(jQuery(elem).val(), value) > -1;\n        }\n      }\n    };\n\n    if (!support.checkOn) {\n      jQuery.valHooks[this].get = function (elem) {\n        return elem.getAttribute("value") === null ? "on" : elem.value;\n      };\n    }\n  }); // Return jQuery for attributes-only inclusion\n\n  support.focusin = "onfocusin" in window;\n\n  var rfocusMorph = /^(?:focusinfocus|focusoutblur)$/,\n      stopPropagationCallback = function (e) {\n    e.stopPropagation();\n  };\n\n  jQuery.extend(jQuery.event, {\n    trigger: function (event, data, elem, onlyHandlers) {\n      var i,\n          cur,\n          tmp,\n          bubbleType,\n          ontype,\n          handle,\n          special,\n          lastElement,\n          eventPath = [elem || document],\n          type = hasOwn.call(event, "type") ? event.type : event,\n          namespaces = hasOwn.call(event, "namespace") ? event.namespace.split(".") : [];\n      cur = lastElement = tmp = elem = elem || document; // Don\'t do events on text and comment nodes\n\n      if (elem.nodeType === 3 || elem.nodeType === 8) {\n        return;\n      } // focus/blur morphs to focusin/out; ensure we\'re not firing them right now\n\n\n      if (rfocusMorph.test(type + jQuery.event.triggered)) {\n        return;\n      }\n\n      if (type.indexOf(".") > -1) {\n        // Namespaced trigger; create a regexp to match event type in handle()\n        namespaces = type.split(".");\n        type = namespaces.shift();\n        namespaces.sort();\n      }\n\n      ontype = type.indexOf(":") < 0 && "on" + type; // Caller can pass in a jQuery.Event object, Object, or just an event type string\n\n      event = event[jQuery.expando] ? event : new jQuery.Event(type, typeof event === "object" && event); // Trigger bitmask: & 1 for native handlers; & 2 for jQuery (always true)\n\n      event.isTrigger = onlyHandlers ? 2 : 3;\n      event.namespace = namespaces.join(".");\n      event.rnamespace = event.namespace ? new RegExp("(^|\\\\.)" + namespaces.join("\\\\.(?:.*\\\\.|)") + "(\\\\.|$)") : null; // Clean up the event in case it is being reused\n\n      event.result = undefined;\n\n      if (!event.target) {\n        event.target = elem;\n      } // Clone any incoming data and prepend the event, creating the handler arg list\n\n\n      data = data == null ? [event] : jQuery.makeArray(data, [event]); // Allow special events to draw outside the lines\n\n      special = jQuery.event.special[type] || {};\n\n      if (!onlyHandlers && special.trigger && special.trigger.apply(elem, data) === false) {\n        return;\n      } // Determine event propagation path in advance, per W3C events spec (#9951)\n      // Bubble up to document, then to window; watch for a global ownerDocument var (#9724)\n\n\n      if (!onlyHandlers && !special.noBubble && !isWindow(elem)) {\n        bubbleType = special.delegateType || type;\n\n        if (!rfocusMorph.test(bubbleType + type)) {\n          cur = cur.parentNode;\n        }\n\n        for (; cur; cur = cur.parentNode) {\n          eventPath.push(cur);\n          tmp = cur;\n        } // Only add window if we got to document (e.g., not plain obj or detached DOM)\n\n\n        if (tmp === (elem.ownerDocument || document)) {\n          eventPath.push(tmp.defaultView || tmp.parentWindow || window);\n        }\n      } // Fire handlers on the event path\n\n\n      i = 0;\n\n      while ((cur = eventPath[i++]) && !event.isPropagationStopped()) {\n        lastElement = cur;\n        event.type = i > 1 ? bubbleType : special.bindType || type; // jQuery handler\n\n        handle = (dataPriv.get(cur, "events") || Object.create(null))[event.type] && dataPriv.get(cur, "handle");\n\n        if (handle) {\n          handle.apply(cur, data);\n        } // Native handler\n\n\n        handle = ontype && cur[ontype];\n\n        if (handle && handle.apply && acceptData(cur)) {\n          event.result = handle.apply(cur, data);\n\n          if (event.result === false) {\n            event.preventDefault();\n          }\n        }\n      }\n\n      event.type = type; // If nobody prevented the default action, do it now\n\n      if (!onlyHandlers && !event.isDefaultPrevented()) {\n        if ((!special._default || special._default.apply(eventPath.pop(), data) === false) && acceptData(elem)) {\n          // Call a native DOM method on the target with the same name as the event.\n          // Don\'t do default actions on window, that\'s where global variables be (#6170)\n          if (ontype && isFunction(elem[type]) && !isWindow(elem)) {\n            // Don\'t re-trigger an onFOO event when we call its FOO() method\n            tmp = elem[ontype];\n\n            if (tmp) {\n              elem[ontype] = null;\n            } // Prevent re-triggering of the same event, since we already bubbled it above\n\n\n            jQuery.event.triggered = type;\n\n            if (event.isPropagationStopped()) {\n              lastElement.addEventListener(type, stopPropagationCallback);\n            }\n\n            elem[type]();\n\n            if (event.isPropagationStopped()) {\n              lastElement.removeEventListener(type, stopPropagationCallback);\n            }\n\n            jQuery.event.triggered = undefined;\n\n            if (tmp) {\n              elem[ontype] = tmp;\n            }\n          }\n        }\n      }\n\n      return event.result;\n    },\n    // Piggyback on a donor event to simulate a different one\n    // Used only for `focus(in | out)` events\n    simulate: function (type, elem, event) {\n      var e = jQuery.extend(new jQuery.Event(), event, {\n        type: type,\n        isSimulated: true\n      });\n      jQuery.event.trigger(e, null, elem);\n    }\n  });\n  jQuery.fn.extend({\n    trigger: function (type, data) {\n      return this.each(function () {\n        jQuery.event.trigger(type, data, this);\n      });\n    },\n    triggerHandler: function (type, data) {\n      var elem = this[0];\n\n      if (elem) {\n        return jQuery.event.trigger(type, data, elem, true);\n      }\n    }\n  }); // Support: Firefox <=44\n  // Firefox doesn\'t have focus(in | out) events\n  // Related ticket - https://bugzilla.mozilla.org/show_bug.cgi?id=687787\n  //\n  // Support: Chrome <=48 - 49, Safari <=9.0 - 9.1\n  // focus(in | out) events fire after focus & blur events,\n  // which is spec violation - http://www.w3.org/TR/DOM-Level-3-Events/#events-focusevent-event-order\n  // Related ticket - https://bugs.chromium.org/p/chromium/issues/detail?id=449857\n\n  if (!support.focusin) {\n    jQuery.each({\n      focus: "focusin",\n      blur: "focusout"\n    }, function (orig, fix) {\n      // Attach a single capturing handler on the document while someone wants focusin/focusout\n      var handler = function (event) {\n        jQuery.event.simulate(fix, event.target, jQuery.event.fix(event));\n      };\n\n      jQuery.event.special[fix] = {\n        setup: function () {\n          // Handle: regular nodes (via `this.ownerDocument`), window\n          // (via `this.document`) & document (via `this`).\n          var doc = this.ownerDocument || this.document || this,\n              attaches = dataPriv.access(doc, fix);\n\n          if (!attaches) {\n            doc.addEventListener(orig, handler, true);\n          }\n\n          dataPriv.access(doc, fix, (attaches || 0) + 1);\n        },\n        teardown: function () {\n          var doc = this.ownerDocument || this.document || this,\n              attaches = dataPriv.access(doc, fix) - 1;\n\n          if (!attaches) {\n            doc.removeEventListener(orig, handler, true);\n            dataPriv.remove(doc, fix);\n          } else {\n            dataPriv.access(doc, fix, attaches);\n          }\n        }\n      };\n    });\n  }\n\n  var location = window.location;\n  var nonce = {\n    guid: Date.now()\n  };\n  var rquery = /\\?/; // Cross-browser xml parsing\n\n  jQuery.parseXML = function (data) {\n    var xml;\n\n    if (!data || typeof data !== "string") {\n      return null;\n    } // Support: IE 9 - 11 only\n    // IE throws on parseFromString with invalid input.\n\n\n    try {\n      xml = new window.DOMParser().parseFromString(data, "text/xml");\n    } catch (e) {\n      xml = undefined;\n    }\n\n    if (!xml || xml.getElementsByTagName("parsererror").length) {\n      jQuery.error("Invalid XML: " + data);\n    }\n\n    return xml;\n  };\n\n  var rbracket = /\\[\\]$/,\n      rCRLF = /\\r?\\n/g,\n      rsubmitterTypes = /^(?:submit|button|image|reset|file)$/i,\n      rsubmittable = /^(?:input|select|textarea|keygen)/i;\n\n  function buildParams(prefix, obj, traditional, add) {\n    var name;\n\n    if (Array.isArray(obj)) {\n      // Serialize array item.\n      jQuery.each(obj, function (i, v) {\n        if (traditional || rbracket.test(prefix)) {\n          // Treat each array item as a scalar.\n          add(prefix, v);\n        } else {\n          // Item is non-scalar (array or object), encode its numeric index.\n          buildParams(prefix + "[" + (typeof v === "object" && v != null ? i : "") + "]", v, traditional, add);\n        }\n      });\n    } else if (!traditional && toType(obj) === "object") {\n      // Serialize object item.\n      for (name in obj) {\n        buildParams(prefix + "[" + name + "]", obj[name], traditional, add);\n      }\n    } else {\n      // Serialize scalar item.\n      add(prefix, obj);\n    }\n  } // Serialize an array of form elements or a set of\n  // key/values into a query string\n\n\n  jQuery.param = function (a, traditional) {\n    var prefix,\n        s = [],\n        add = function (key, valueOrFunction) {\n      // If value is a function, invoke it and use its return value\n      var value = isFunction(valueOrFunction) ? valueOrFunction() : valueOrFunction;\n      s[s.length] = encodeURIComponent(key) + "=" + encodeURIComponent(value == null ? "" : value);\n    };\n\n    if (a == null) {\n      return "";\n    } // If an array was passed in, assume that it is an array of form elements.\n\n\n    if (Array.isArray(a) || a.jquery && !jQuery.isPlainObject(a)) {\n      // Serialize the form elements\n      jQuery.each(a, function () {\n        add(this.name, this.value);\n      });\n    } else {\n      // If traditional, encode the "old" way (the way 1.3.2 or older\n      // did it), otherwise encode params recursively.\n      for (prefix in a) {\n        buildParams(prefix, a[prefix], traditional, add);\n      }\n    } // Return the resulting serialization\n\n\n    return s.join("&");\n  };\n\n  jQuery.fn.extend({\n    serialize: function () {\n      return jQuery.param(this.serializeArray());\n    },\n    serializeArray: function () {\n      return this.map(function () {\n        // Can add propHook for "elements" to filter or add form elements\n        var elements = jQuery.prop(this, "elements");\n        return elements ? jQuery.makeArray(elements) : this;\n      }).filter(function () {\n        var type = this.type; // Use .is( ":disabled" ) so that fieldset[disabled] works\n\n        return this.name && !jQuery(this).is(":disabled") && rsubmittable.test(this.nodeName) && !rsubmitterTypes.test(type) && (this.checked || !rcheckableType.test(type));\n      }).map(function (_i, elem) {\n        var val = jQuery(this).val();\n\n        if (val == null) {\n          return null;\n        }\n\n        if (Array.isArray(val)) {\n          return jQuery.map(val, function (val) {\n            return {\n              name: elem.name,\n              value: val.replace(rCRLF, "\\r\\n")\n            };\n          });\n        }\n\n        return {\n          name: elem.name,\n          value: val.replace(rCRLF, "\\r\\n")\n        };\n      }).get();\n    }\n  });\n  var r20 = /%20/g,\n      rhash = /#.*$/,\n      rantiCache = /([?&])_=[^&]*/,\n      rheaders = /^(.*?):[ \\t]*([^\\r\\n]*)$/mg,\n      // #7653, #8125, #8152: local protocol detection\n  rlocalProtocol = /^(?:about|app|app-storage|.+-extension|file|res|widget):$/,\n      rnoContent = /^(?:GET|HEAD)$/,\n      rprotocol = /^\\/\\//,\n\n  /* Prefilters\n   * 1) They are useful to introduce custom dataTypes (see ajax/jsonp.js for an example)\n   * 2) These are called:\n   *    - BEFORE asking for a transport\n   *    - AFTER param serialization (s.data is a string if s.processData is true)\n   * 3) key is the dataType\n   * 4) the catchall symbol "*" can be used\n   * 5) execution will start with transport dataType and THEN continue down to "*" if needed\n   */\n  prefilters = {},\n\n  /* Transports bindings\n   * 1) key is the dataType\n   * 2) the catchall symbol "*" can be used\n   * 3) selection will start with transport dataType and THEN go to "*" if needed\n   */\n  transports = {},\n      // Avoid comment-prolog char sequence (#10098); must appease lint and evade compression\n  allTypes = "*/".concat("*"),\n      // Anchor tag for parsing the document origin\n  originAnchor = document.createElement("a");\n  originAnchor.href = location.href; // Base "constructor" for jQuery.ajaxPrefilter and jQuery.ajaxTransport\n\n  function addToPrefiltersOrTransports(structure) {\n    // dataTypeExpression is optional and defaults to "*"\n    return function (dataTypeExpression, func) {\n      if (typeof dataTypeExpression !== "string") {\n        func = dataTypeExpression;\n        dataTypeExpression = "*";\n      }\n\n      var dataType,\n          i = 0,\n          dataTypes = dataTypeExpression.toLowerCase().match(rnothtmlwhite) || [];\n\n      if (isFunction(func)) {\n        // For each dataType in the dataTypeExpression\n        while (dataType = dataTypes[i++]) {\n          // Prepend if requested\n          if (dataType[0] === "+") {\n            dataType = dataType.slice(1) || "*";\n            (structure[dataType] = structure[dataType] || []).unshift(func); // Otherwise append\n          } else {\n            (structure[dataType] = structure[dataType] || []).push(func);\n          }\n        }\n      }\n    };\n  } // Base inspection function for prefilters and transports\n\n\n  function inspectPrefiltersOrTransports(structure, options, originalOptions, jqXHR) {\n    var inspected = {},\n        seekingTransport = structure === transports;\n\n    function inspect(dataType) {\n      var selected;\n      inspected[dataType] = true;\n      jQuery.each(structure[dataType] || [], function (_, prefilterOrFactory) {\n        var dataTypeOrTransport = prefilterOrFactory(options, originalOptions, jqXHR);\n\n        if (typeof dataTypeOrTransport === "string" && !seekingTransport && !inspected[dataTypeOrTransport]) {\n          options.dataTypes.unshift(dataTypeOrTransport);\n          inspect(dataTypeOrTransport);\n          return false;\n        } else if (seekingTransport) {\n          return !(selected = dataTypeOrTransport);\n        }\n      });\n      return selected;\n    }\n\n    return inspect(options.dataTypes[0]) || !inspected["*"] && inspect("*");\n  } // A special extend for ajax options\n  // that takes "flat" options (not to be deep extended)\n  // Fixes #9887\n\n\n  function ajaxExtend(target, src) {\n    var key,\n        deep,\n        flatOptions = jQuery.ajaxSettings.flatOptions || {};\n\n    for (key in src) {\n      if (src[key] !== undefined) {\n        (flatOptions[key] ? target : deep || (deep = {}))[key] = src[key];\n      }\n    }\n\n    if (deep) {\n      jQuery.extend(true, target, deep);\n    }\n\n    return target;\n  }\n  /* Handles responses to an ajax request:\n   * - finds the right dataType (mediates between content-type and expected dataType)\n   * - returns the corresponding response\n   */\n\n\n  function ajaxHandleResponses(s, jqXHR, responses) {\n    var ct,\n        type,\n        finalDataType,\n        firstDataType,\n        contents = s.contents,\n        dataTypes = s.dataTypes; // Remove auto dataType and get content-type in the process\n\n    while (dataTypes[0] === "*") {\n      dataTypes.shift();\n\n      if (ct === undefined) {\n        ct = s.mimeType || jqXHR.getResponseHeader("Content-Type");\n      }\n    } // Check if we\'re dealing with a known content-type\n\n\n    if (ct) {\n      for (type in contents) {\n        if (contents[type] && contents[type].test(ct)) {\n          dataTypes.unshift(type);\n          break;\n        }\n      }\n    } // Check to see if we have a response for the expected dataType\n\n\n    if (dataTypes[0] in responses) {\n      finalDataType = dataTypes[0];\n    } else {\n      // Try convertible dataTypes\n      for (type in responses) {\n        if (!dataTypes[0] || s.converters[type + " " + dataTypes[0]]) {\n          finalDataType = type;\n          break;\n        }\n\n        if (!firstDataType) {\n          firstDataType = type;\n        }\n      } // Or just use first one\n\n\n      finalDataType = finalDataType || firstDataType;\n    } // If we found a dataType\n    // We add the dataType to the list if needed\n    // and return the corresponding response\n\n\n    if (finalDataType) {\n      if (finalDataType !== dataTypes[0]) {\n        dataTypes.unshift(finalDataType);\n      }\n\n      return responses[finalDataType];\n    }\n  }\n  /* Chain conversions given the request and the original response\n   * Also sets the responseXXX fields on the jqXHR instance\n   */\n\n\n  function ajaxConvert(s, response, jqXHR, isSuccess) {\n    var conv2,\n        current,\n        conv,\n        tmp,\n        prev,\n        converters = {},\n        // Work with a copy of dataTypes in case we need to modify it for conversion\n    dataTypes = s.dataTypes.slice(); // Create converters map with lowercased keys\n\n    if (dataTypes[1]) {\n      for (conv in s.converters) {\n        converters[conv.toLowerCase()] = s.converters[conv];\n      }\n    }\n\n    current = dataTypes.shift(); // Convert to each sequential dataType\n\n    while (current) {\n      if (s.responseFields[current]) {\n        jqXHR[s.responseFields[current]] = response;\n      } // Apply the dataFilter if provided\n\n\n      if (!prev && isSuccess && s.dataFilter) {\n        response = s.dataFilter(response, s.dataType);\n      }\n\n      prev = current;\n      current = dataTypes.shift();\n\n      if (current) {\n        // There\'s only work to do if current dataType is non-auto\n        if (current === "*") {\n          current = prev; // Convert response if prev dataType is non-auto and differs from current\n        } else if (prev !== "*" && prev !== current) {\n          // Seek a direct converter\n          conv = converters[prev + " " + current] || converters["* " + current]; // If none found, seek a pair\n\n          if (!conv) {\n            for (conv2 in converters) {\n              // If conv2 outputs current\n              tmp = conv2.split(" ");\n\n              if (tmp[1] === current) {\n                // If prev can be converted to accepted input\n                conv = converters[prev + " " + tmp[0]] || converters["* " + tmp[0]];\n\n                if (conv) {\n                  // Condense equivalence converters\n                  if (conv === true) {\n                    conv = converters[conv2]; // Otherwise, insert the intermediate dataType\n                  } else if (converters[conv2] !== true) {\n                    current = tmp[0];\n                    dataTypes.unshift(tmp[1]);\n                  }\n\n                  break;\n                }\n              }\n            }\n          } // Apply converter (if not an equivalence)\n\n\n          if (conv !== true) {\n            // Unless errors are allowed to bubble, catch and return them\n            if (conv && s.throws) {\n              response = conv(response);\n            } else {\n              try {\n                response = conv(response);\n              } catch (e) {\n                return {\n                  state: "parsererror",\n                  error: conv ? e : "No conversion from " + prev + " to " + current\n                };\n              }\n            }\n          }\n        }\n      }\n    }\n\n    return {\n      state: "success",\n      data: response\n    };\n  }\n\n  jQuery.extend({\n    // Counter for holding the number of active queries\n    active: 0,\n    // Last-Modified header cache for next request\n    lastModified: {},\n    etag: {},\n    ajaxSettings: {\n      url: location.href,\n      type: "GET",\n      isLocal: rlocalProtocol.test(location.protocol),\n      global: true,\n      processData: true,\n      async: true,\n      contentType: "application/x-www-form-urlencoded; charset=UTF-8",\n\n      /*\n      timeout: 0,\n      data: null,\n      dataType: null,\n      username: null,\n      password: null,\n      cache: null,\n      throws: false,\n      traditional: false,\n      headers: {},\n      */\n      accepts: {\n        "*": allTypes,\n        text: "text/plain",\n        html: "text/html",\n        xml: "application/xml, text/xml",\n        json: "application/json, text/javascript"\n      },\n      contents: {\n        xml: /\\bxml\\b/,\n        html: /\\bhtml/,\n        json: /\\bjson\\b/\n      },\n      responseFields: {\n        xml: "responseXML",\n        text: "responseText",\n        json: "responseJSON"\n      },\n      // Data converters\n      // Keys separate source (or catchall "*") and destination types with a single space\n      converters: {\n        // Convert anything to text\n        "* text": String,\n        // Text to html (true = no transformation)\n        "text html": true,\n        // Evaluate text as a json expression\n        "text json": JSON.parse,\n        // Parse text as xml\n        "text xml": jQuery.parseXML\n      },\n      // For options that shouldn\'t be deep extended:\n      // you can add your own custom options here if\n      // and when you create one that shouldn\'t be\n      // deep extended (see ajaxExtend)\n      flatOptions: {\n        url: true,\n        context: true\n      }\n    },\n    // Creates a full fledged settings object into target\n    // with both ajaxSettings and settings fields.\n    // If target is omitted, writes into ajaxSettings.\n    ajaxSetup: function (target, settings) {\n      return settings ? // Building a settings object\n      ajaxExtend(ajaxExtend(target, jQuery.ajaxSettings), settings) : // Extending ajaxSettings\n      ajaxExtend(jQuery.ajaxSettings, target);\n    },\n    ajaxPrefilter: addToPrefiltersOrTransports(prefilters),\n    ajaxTransport: addToPrefiltersOrTransports(transports),\n    // Main method\n    ajax: function (url, options) {\n      // If url is an object, simulate pre-1.5 signature\n      if (typeof url === "object") {\n        options = url;\n        url = undefined;\n      } // Force options to be an object\n\n\n      options = options || {};\n      var transport,\n          // URL without anti-cache param\n      cacheURL,\n          // Response headers\n      responseHeadersString,\n          responseHeaders,\n          // timeout handle\n      timeoutTimer,\n          // Url cleanup var\n      urlAnchor,\n          // Request state (becomes false upon send and true upon completion)\n      completed,\n          // To know if global events are to be dispatched\n      fireGlobals,\n          // Loop variable\n      i,\n          // uncached part of the url\n      uncached,\n          // Create the final options object\n      s = jQuery.ajaxSetup({}, options),\n          // Callbacks context\n      callbackContext = s.context || s,\n          // Context for global events is callbackContext if it is a DOM node or jQuery collection\n      globalEventContext = s.context && (callbackContext.nodeType || callbackContext.jquery) ? jQuery(callbackContext) : jQuery.event,\n          // Deferreds\n      deferred = jQuery.Deferred(),\n          completeDeferred = jQuery.Callbacks("once memory"),\n          // Status-dependent callbacks\n      statusCode = s.statusCode || {},\n          // Headers (they are sent all at once)\n      requestHeaders = {},\n          requestHeadersNames = {},\n          // Default abort message\n      strAbort = "canceled",\n          // Fake xhr\n      jqXHR = {\n        readyState: 0,\n        // Builds headers hashtable if needed\n        getResponseHeader: function (key) {\n          var match;\n\n          if (completed) {\n            if (!responseHeaders) {\n              responseHeaders = {};\n\n              while (match = rheaders.exec(responseHeadersString)) {\n                responseHeaders[match[1].toLowerCase() + " "] = (responseHeaders[match[1].toLowerCase() + " "] || []).concat(match[2]);\n              }\n            }\n\n            match = responseHeaders[key.toLowerCase() + " "];\n          }\n\n          return match == null ? null : match.join(", ");\n        },\n        // Raw string\n        getAllResponseHeaders: function () {\n          return completed ? responseHeadersString : null;\n        },\n        // Caches the header\n        setRequestHeader: function (name, value) {\n          if (completed == null) {\n            name = requestHeadersNames[name.toLowerCase()] = requestHeadersNames[name.toLowerCase()] || name;\n            requestHeaders[name] = value;\n          }\n\n          return this;\n        },\n        // Overrides response content-type header\n        overrideMimeType: function (type) {\n          if (completed == null) {\n            s.mimeType = type;\n          }\n\n          return this;\n        },\n        // Status-dependent callbacks\n        statusCode: function (map) {\n          var code;\n\n          if (map) {\n            if (completed) {\n              // Execute the appropriate callbacks\n              jqXHR.always(map[jqXHR.status]);\n            } else {\n              // Lazy-add the new callbacks in a way that preserves old ones\n              for (code in map) {\n                statusCode[code] = [statusCode[code], map[code]];\n              }\n            }\n          }\n\n          return this;\n        },\n        // Cancel the request\n        abort: function (statusText) {\n          var finalText = statusText || strAbort;\n\n          if (transport) {\n            transport.abort(finalText);\n          }\n\n          done(0, finalText);\n          return this;\n        }\n      }; // Attach deferreds\n\n      deferred.promise(jqXHR); // Add protocol if not provided (prefilters might expect it)\n      // Handle falsy url in the settings object (#10093: consistency with old signature)\n      // We also use the url parameter if available\n\n      s.url = ((url || s.url || location.href) + "").replace(rprotocol, location.protocol + "//"); // Alias method option to type as per ticket #12004\n\n      s.type = options.method || options.type || s.method || s.type; // Extract dataTypes list\n\n      s.dataTypes = (s.dataType || "*").toLowerCase().match(rnothtmlwhite) || [""]; // A cross-domain request is in order when the origin doesn\'t match the current origin.\n\n      if (s.crossDomain == null) {\n        urlAnchor = document.createElement("a"); // Support: IE <=8 - 11, Edge 12 - 15\n        // IE throws exception on accessing the href property if url is malformed,\n        // e.g. http://example.com:80x/\n\n        try {\n          urlAnchor.href = s.url; // Support: IE <=8 - 11 only\n          // Anchor\'s host property isn\'t correctly set when s.url is relative\n\n          urlAnchor.href = urlAnchor.href;\n          s.crossDomain = originAnchor.protocol + "//" + originAnchor.host !== urlAnchor.protocol + "//" + urlAnchor.host;\n        } catch (e) {\n          // If there is an error parsing the URL, assume it is crossDomain,\n          // it can be rejected by the transport if it is invalid\n          s.crossDomain = true;\n        }\n      } // Convert data if not already a string\n\n\n      if (s.data && s.processData && typeof s.data !== "string") {\n        s.data = jQuery.param(s.data, s.traditional);\n      } // Apply prefilters\n\n\n      inspectPrefiltersOrTransports(prefilters, s, options, jqXHR); // If request was aborted inside a prefilter, stop there\n\n      if (completed) {\n        return jqXHR;\n      } // We can fire global events as of now if asked to\n      // Don\'t fire events if jQuery.event is undefined in an AMD-usage scenario (#15118)\n\n\n      fireGlobals = jQuery.event && s.global; // Watch for a new set of requests\n\n      if (fireGlobals && jQuery.active++ === 0) {\n        jQuery.event.trigger("ajaxStart");\n      } // Uppercase the type\n\n\n      s.type = s.type.toUpperCase(); // Determine if request has content\n\n      s.hasContent = !rnoContent.test(s.type); // Save the URL in case we\'re toying with the If-Modified-Since\n      // and/or If-None-Match header later on\n      // Remove hash to simplify url manipulation\n\n      cacheURL = s.url.replace(rhash, ""); // More options handling for requests with no content\n\n      if (!s.hasContent) {\n        // Remember the hash so we can put it back\n        uncached = s.url.slice(cacheURL.length); // If data is available and should be processed, append data to url\n\n        if (s.data && (s.processData || typeof s.data === "string")) {\n          cacheURL += (rquery.test(cacheURL) ? "&" : "?") + s.data; // #9682: remove data so that it\'s not used in an eventual retry\n\n          delete s.data;\n        } // Add or update anti-cache param if needed\n\n\n        if (s.cache === false) {\n          cacheURL = cacheURL.replace(rantiCache, "$1");\n          uncached = (rquery.test(cacheURL) ? "&" : "?") + "_=" + nonce.guid++ + uncached;\n        } // Put hash and anti-cache on the URL that will be requested (gh-1732)\n\n\n        s.url = cacheURL + uncached; // Change \'%20\' to \'+\' if this is encoded form body content (gh-2658)\n      } else if (s.data && s.processData && (s.contentType || "").indexOf("application/x-www-form-urlencoded") === 0) {\n        s.data = s.data.replace(r20, "+");\n      } // Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode.\n\n\n      if (s.ifModified) {\n        if (jQuery.lastModified[cacheURL]) {\n          jqXHR.setRequestHeader("If-Modified-Since", jQuery.lastModified[cacheURL]);\n        }\n\n        if (jQuery.etag[cacheURL]) {\n          jqXHR.setRequestHeader("If-None-Match", jQuery.etag[cacheURL]);\n        }\n      } // Set the correct header, if data is being sent\n\n\n      if (s.data && s.hasContent && s.contentType !== false || options.contentType) {\n        jqXHR.setRequestHeader("Content-Type", s.contentType);\n      } // Set the Accepts header for the server, depending on the dataType\n\n\n      jqXHR.setRequestHeader("Accept", s.dataTypes[0] && s.accepts[s.dataTypes[0]] ? s.accepts[s.dataTypes[0]] + (s.dataTypes[0] !== "*" ? ", " + allTypes + "; q=0.01" : "") : s.accepts["*"]); // Check for headers option\n\n      for (i in s.headers) {\n        jqXHR.setRequestHeader(i, s.headers[i]);\n      } // Allow custom headers/mimetypes and early abort\n\n\n      if (s.beforeSend && (s.beforeSend.call(callbackContext, jqXHR, s) === false || completed)) {\n        // Abort if not done already and return\n        return jqXHR.abort();\n      } // Aborting is no longer a cancellation\n\n\n      strAbort = "abort"; // Install callbacks on deferreds\n\n      completeDeferred.add(s.complete);\n      jqXHR.done(s.success);\n      jqXHR.fail(s.error); // Get transport\n\n      transport = inspectPrefiltersOrTransports(transports, s, options, jqXHR); // If no transport, we auto-abort\n\n      if (!transport) {\n        done(-1, "No Transport");\n      } else {\n        jqXHR.readyState = 1; // Send global event\n\n        if (fireGlobals) {\n          globalEventContext.trigger("ajaxSend", [jqXHR, s]);\n        } // If request was aborted inside ajaxSend, stop there\n\n\n        if (completed) {\n          return jqXHR;\n        } // Timeout\n\n\n        if (s.async && s.timeout > 0) {\n          timeoutTimer = window.setTimeout(function () {\n            jqXHR.abort("timeout");\n          }, s.timeout);\n        }\n\n        try {\n          completed = false;\n          transport.send(requestHeaders, done);\n        } catch (e) {\n          // Rethrow post-completion exceptions\n          if (completed) {\n            throw e;\n          } // Propagate others as results\n\n\n          done(-1, e);\n        }\n      } // Callback for when everything is done\n\n\n      function done(status, nativeStatusText, responses, headers) {\n        var isSuccess,\n            success,\n            error,\n            response,\n            modified,\n            statusText = nativeStatusText; // Ignore repeat invocations\n\n        if (completed) {\n          return;\n        }\n\n        completed = true; // Clear timeout if it exists\n\n        if (timeoutTimer) {\n          window.clearTimeout(timeoutTimer);\n        } // Dereference transport for early garbage collection\n        // (no matter how long the jqXHR object will be used)\n\n\n        transport = undefined; // Cache response headers\n\n        responseHeadersString = headers || ""; // Set readyState\n\n        jqXHR.readyState = status > 0 ? 4 : 0; // Determine if successful\n\n        isSuccess = status >= 200 && status < 300 || status === 304; // Get response data\n\n        if (responses) {\n          response = ajaxHandleResponses(s, jqXHR, responses);\n        } // Use a noop converter for missing script\n\n\n        if (!isSuccess && jQuery.inArray("script", s.dataTypes) > -1) {\n          s.converters["text script"] = function () {};\n        } // Convert no matter what (that way responseXXX fields are always set)\n\n\n        response = ajaxConvert(s, response, jqXHR, isSuccess); // If successful, handle type chaining\n\n        if (isSuccess) {\n          // Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode.\n          if (s.ifModified) {\n            modified = jqXHR.getResponseHeader("Last-Modified");\n\n            if (modified) {\n              jQuery.lastModified[cacheURL] = modified;\n            }\n\n            modified = jqXHR.getResponseHeader("etag");\n\n            if (modified) {\n              jQuery.etag[cacheURL] = modified;\n            }\n          } // if no content\n\n\n          if (status === 204 || s.type === "HEAD") {\n            statusText = "nocontent"; // if not modified\n          } else if (status === 304) {\n            statusText = "notmodified"; // If we have data, let\'s convert it\n          } else {\n            statusText = response.state;\n            success = response.data;\n            error = response.error;\n            isSuccess = !error;\n          }\n        } else {\n          // Extract error from statusText and normalize for non-aborts\n          error = statusText;\n\n          if (status || !statusText) {\n            statusText = "error";\n\n            if (status < 0) {\n              status = 0;\n            }\n          }\n        } // Set data for the fake xhr object\n\n\n        jqXHR.status = status;\n        jqXHR.statusText = (nativeStatusText || statusText) + ""; // Success/Error\n\n        if (isSuccess) {\n          deferred.resolveWith(callbackContext, [success, statusText, jqXHR]);\n        } else {\n          deferred.rejectWith(callbackContext, [jqXHR, statusText, error]);\n        } // Status-dependent callbacks\n\n\n        jqXHR.statusCode(statusCode);\n        statusCode = undefined;\n\n        if (fireGlobals) {\n          globalEventContext.trigger(isSuccess ? "ajaxSuccess" : "ajaxError", [jqXHR, s, isSuccess ? success : error]);\n        } // Complete\n\n\n        completeDeferred.fireWith(callbackContext, [jqXHR, statusText]);\n\n        if (fireGlobals) {\n          globalEventContext.trigger("ajaxComplete", [jqXHR, s]); // Handle the global AJAX counter\n\n          if (! --jQuery.active) {\n            jQuery.event.trigger("ajaxStop");\n          }\n        }\n      }\n\n      return jqXHR;\n    },\n    getJSON: function (url, data, callback) {\n      return jQuery.get(url, data, callback, "json");\n    },\n    getScript: function (url, callback) {\n      return jQuery.get(url, undefined, callback, "script");\n    }\n  });\n  jQuery.each(["get", "post"], function (_i, method) {\n    jQuery[method] = function (url, data, callback, type) {\n      // Shift arguments if data argument was omitted\n      if (isFunction(data)) {\n        type = type || callback;\n        callback = data;\n        data = undefined;\n      } // The url can be an options object (which then must have .url)\n\n\n      return jQuery.ajax(jQuery.extend({\n        url: url,\n        type: method,\n        dataType: type,\n        data: data,\n        success: callback\n      }, jQuery.isPlainObject(url) && url));\n    };\n  });\n  jQuery.ajaxPrefilter(function (s) {\n    var i;\n\n    for (i in s.headers) {\n      if (i.toLowerCase() === "content-type") {\n        s.contentType = s.headers[i] || "";\n      }\n    }\n  });\n\n  jQuery._evalUrl = function (url, options, doc) {\n    return jQuery.ajax({\n      url: url,\n      // Make this explicit, since user can override this through ajaxSetup (#11264)\n      type: "GET",\n      dataType: "script",\n      cache: true,\n      async: false,\n      global: false,\n      // Only evaluate the response if it is successful (gh-4126)\n      // dataFilter is not invoked for failure responses, so using it instead\n      // of the default converter is kludgy but it works.\n      converters: {\n        "text script": function () {}\n      },\n      dataFilter: function (response) {\n        jQuery.globalEval(response, options, doc);\n      }\n    });\n  };\n\n  jQuery.fn.extend({\n    wrapAll: function (html) {\n      var wrap;\n\n      if (this[0]) {\n        if (isFunction(html)) {\n          html = html.call(this[0]);\n        } // The elements to wrap the target around\n\n\n        wrap = jQuery(html, this[0].ownerDocument).eq(0).clone(true);\n\n        if (this[0].parentNode) {\n          wrap.insertBefore(this[0]);\n        }\n\n        wrap.map(function () {\n          var elem = this;\n\n          while (elem.firstElementChild) {\n            elem = elem.firstElementChild;\n          }\n\n          return elem;\n        }).append(this);\n      }\n\n      return this;\n    },\n    wrapInner: function (html) {\n      if (isFunction(html)) {\n        return this.each(function (i) {\n          jQuery(this).wrapInner(html.call(this, i));\n        });\n      }\n\n      return this.each(function () {\n        var self = jQuery(this),\n            contents = self.contents();\n\n        if (contents.length) {\n          contents.wrapAll(html);\n        } else {\n          self.append(html);\n        }\n      });\n    },\n    wrap: function (html) {\n      var htmlIsFunction = isFunction(html);\n      return this.each(function (i) {\n        jQuery(this).wrapAll(htmlIsFunction ? html.call(this, i) : html);\n      });\n    },\n    unwrap: function (selector) {\n      this.parent(selector).not("body").each(function () {\n        jQuery(this).replaceWith(this.childNodes);\n      });\n      return this;\n    }\n  });\n\n  jQuery.expr.pseudos.hidden = function (elem) {\n    return !jQuery.expr.pseudos.visible(elem);\n  };\n\n  jQuery.expr.pseudos.visible = function (elem) {\n    return !!(elem.offsetWidth || elem.offsetHeight || elem.getClientRects().length);\n  };\n\n  jQuery.ajaxSettings.xhr = function () {\n    try {\n      return new window.XMLHttpRequest();\n    } catch (e) {}\n  };\n\n  var xhrSuccessStatus = {\n    // File protocol always yields status code 0, assume 200\n    0: 200,\n    // Support: IE <=9 only\n    // #1450: sometimes IE returns 1223 when it should be 204\n    1223: 204\n  },\n      xhrSupported = jQuery.ajaxSettings.xhr();\n  support.cors = !!xhrSupported && "withCredentials" in xhrSupported;\n  support.ajax = xhrSupported = !!xhrSupported;\n  jQuery.ajaxTransport(function (options) {\n    var callback, errorCallback; // Cross domain only allowed if supported through XMLHttpRequest\n\n    if (support.cors || xhrSupported && !options.crossDomain) {\n      return {\n        send: function (headers, complete) {\n          var i,\n              xhr = options.xhr();\n          xhr.open(options.type, options.url, options.async, options.username, options.password); // Apply custom fields if provided\n\n          if (options.xhrFields) {\n            for (i in options.xhrFields) {\n              xhr[i] = options.xhrFields[i];\n            }\n          } // Override mime type if needed\n\n\n          if (options.mimeType && xhr.overrideMimeType) {\n            xhr.overrideMimeType(options.mimeType);\n          } // X-Requested-With header\n          // For cross-domain requests, seeing as conditions for a preflight are\n          // akin to a jigsaw puzzle, we simply never set it to be sure.\n          // (it can always be set on a per-request basis or even using ajaxSetup)\n          // For same-domain requests, won\'t change header if already provided.\n\n\n          if (!options.crossDomain && !headers["X-Requested-With"]) {\n            headers["X-Requested-With"] = "XMLHttpRequest";\n          } // Set headers\n\n\n          for (i in headers) {\n            xhr.setRequestHeader(i, headers[i]);\n          } // Callback\n\n\n          callback = function (type) {\n            return function () {\n              if (callback) {\n                callback = errorCallback = xhr.onload = xhr.onerror = xhr.onabort = xhr.ontimeout = xhr.onreadystatechange = null;\n\n                if (type === "abort") {\n                  xhr.abort();\n                } else if (type === "error") {\n                  // Support: IE <=9 only\n                  // On a manual native abort, IE9 throws\n                  // errors on any property access that is not readyState\n                  if (typeof xhr.status !== "number") {\n                    complete(0, "error");\n                  } else {\n                    complete( // File: protocol always yields status 0; see #8605, #14207\n                    xhr.status, xhr.statusText);\n                  }\n                } else {\n                  complete(xhrSuccessStatus[xhr.status] || xhr.status, xhr.statusText, // Support: IE <=9 only\n                  // IE9 has no XHR2 but throws on binary (trac-11426)\n                  // For XHR2 non-text, let the caller handle it (gh-2498)\n                  (xhr.responseType || "text") !== "text" || typeof xhr.responseText !== "string" ? {\n                    binary: xhr.response\n                  } : {\n                    text: xhr.responseText\n                  }, xhr.getAllResponseHeaders());\n                }\n              }\n            };\n          }; // Listen to events\n\n\n          xhr.onload = callback();\n          errorCallback = xhr.onerror = xhr.ontimeout = callback("error"); // Support: IE 9 only\n          // Use onreadystatechange to replace onabort\n          // to handle uncaught aborts\n\n          if (xhr.onabort !== undefined) {\n            xhr.onabort = errorCallback;\n          } else {\n            xhr.onreadystatechange = function () {\n              // Check readyState before timeout as it changes\n              if (xhr.readyState === 4) {\n                // Allow onerror to be called first,\n                // but that will not handle a native abort\n                // Also, save errorCallback to a variable\n                // as xhr.onerror cannot be accessed\n                window.setTimeout(function () {\n                  if (callback) {\n                    errorCallback();\n                  }\n                });\n              }\n            };\n          } // Create the abort callback\n\n\n          callback = callback("abort");\n\n          try {\n            // Do send the request (this may raise an exception)\n            xhr.send(options.hasContent && options.data || null);\n          } catch (e) {\n            // #14683: Only rethrow if this hasn\'t been notified as an error yet\n            if (callback) {\n              throw e;\n            }\n          }\n        },\n        abort: function () {\n          if (callback) {\n            callback();\n          }\n        }\n      };\n    }\n  }); // Prevent auto-execution of scripts when no explicit dataType was provided (See gh-2432)\n\n  jQuery.ajaxPrefilter(function (s) {\n    if (s.crossDomain) {\n      s.contents.script = false;\n    }\n  }); // Install script dataType\n\n  jQuery.ajaxSetup({\n    accepts: {\n      script: "text/javascript, application/javascript, " + "application/ecmascript, application/x-ecmascript"\n    },\n    contents: {\n      script: /\\b(?:java|ecma)script\\b/\n    },\n    converters: {\n      "text script": function (text) {\n        jQuery.globalEval(text);\n        return text;\n      }\n    }\n  }); // Handle cache\'s special case and crossDomain\n\n  jQuery.ajaxPrefilter("script", function (s) {\n    if (s.cache === undefined) {\n      s.cache = false;\n    }\n\n    if (s.crossDomain) {\n      s.type = "GET";\n    }\n  }); // Bind script tag hack transport\n\n  jQuery.ajaxTransport("script", function (s) {\n    // This transport only deals with cross domain or forced-by-attrs requests\n    if (s.crossDomain || s.scriptAttrs) {\n      var script, callback;\n      return {\n        send: function (_, complete) {\n          script = jQuery("<script>").attr(s.scriptAttrs || {}).prop({\n            charset: s.scriptCharset,\n            src: s.url\n          }).on("load error", callback = function (evt) {\n            script.remove();\n            callback = null;\n\n            if (evt) {\n              complete(evt.type === "error" ? 404 : 200, evt.type);\n            }\n          }); // Use native DOM manipulation to avoid our domManip AJAX trickery\n\n          document.head.appendChild(script[0]);\n        },\n        abort: function () {\n          if (callback) {\n            callback();\n          }\n        }\n      };\n    }\n  });\n  var oldCallbacks = [],\n      rjsonp = /(=)\\?(?=&|$)|\\?\\?/; // Default jsonp settings\n\n  jQuery.ajaxSetup({\n    jsonp: "callback",\n    jsonpCallback: function () {\n      var callback = oldCallbacks.pop() || jQuery.expando + "_" + nonce.guid++;\n      this[callback] = true;\n      return callback;\n    }\n  }); // Detect, normalize options and install callbacks for jsonp requests\n\n  jQuery.ajaxPrefilter("json jsonp", function (s, originalSettings, jqXHR) {\n    var callbackName,\n        overwritten,\n        responseContainer,\n        jsonProp = s.jsonp !== false && (rjsonp.test(s.url) ? "url" : typeof s.data === "string" && (s.contentType || "").indexOf("application/x-www-form-urlencoded") === 0 && rjsonp.test(s.data) && "data"); // Handle iff the expected data type is "jsonp" or we have a parameter to set\n\n    if (jsonProp || s.dataTypes[0] === "jsonp") {\n      // Get callback name, remembering preexisting value associated with it\n      callbackName = s.jsonpCallback = isFunction(s.jsonpCallback) ? s.jsonpCallback() : s.jsonpCallback; // Insert callback into url or form data\n\n      if (jsonProp) {\n        s[jsonProp] = s[jsonProp].replace(rjsonp, "$1" + callbackName);\n      } else if (s.jsonp !== false) {\n        s.url += (rquery.test(s.url) ? "&" : "?") + s.jsonp + "=" + callbackName;\n      } // Use data converter to retrieve json after script execution\n\n\n      s.converters["script json"] = function () {\n        if (!responseContainer) {\n          jQuery.error(callbackName + " was not called");\n        }\n\n        return responseContainer[0];\n      }; // Force json dataType\n\n\n      s.dataTypes[0] = "json"; // Install callback\n\n      overwritten = window[callbackName];\n\n      window[callbackName] = function () {\n        responseContainer = arguments;\n      }; // Clean-up function (fires after converters)\n\n\n      jqXHR.always(function () {\n        // If previous value didn\'t exist - remove it\n        if (overwritten === undefined) {\n          jQuery(window).removeProp(callbackName); // Otherwise restore preexisting value\n        } else {\n          window[callbackName] = overwritten;\n        } // Save back as free\n\n\n        if (s[callbackName]) {\n          // Make sure that re-using the options doesn\'t screw things around\n          s.jsonpCallback = originalSettings.jsonpCallback; // Save the callback name for future use\n\n          oldCallbacks.push(callbackName);\n        } // Call if it was a function and we have a response\n\n\n        if (responseContainer && isFunction(overwritten)) {\n          overwritten(responseContainer[0]);\n        }\n\n        responseContainer = overwritten = undefined;\n      }); // Delegate to script\n\n      return "script";\n    }\n  }); // Support: Safari 8 only\n  // In Safari 8 documents created via document.implementation.createHTMLDocument\n  // collapse sibling forms: the second one becomes a child of the first one.\n  // Because of that, this security measure has to be disabled in Safari 8.\n  // https://bugs.webkit.org/show_bug.cgi?id=137337\n\n  support.createHTMLDocument = function () {\n    var body = document.implementation.createHTMLDocument("").body;\n    body.innerHTML = "<form><\/form><form><\/form>";\n    return body.childNodes.length === 2;\n  }(); // Argument "data" should be string of html\n  // context (optional): If specified, the fragment will be created in this context,\n  // defaults to document\n  // keepScripts (optional): If true, will include scripts passed in the html string\n\n\n  jQuery.parseHTML = function (data, context, keepScripts) {\n    if (typeof data !== "string") {\n      return [];\n    }\n\n    if (typeof context === "boolean") {\n      keepScripts = context;\n      context = false;\n    }\n\n    var base, parsed, scripts;\n\n    if (!context) {\n      // Stop scripts or inline event handlers from being executed immediately\n      // by using document.implementation\n      if (support.createHTMLDocument) {\n        context = document.implementation.createHTMLDocument(""); // Set the base href for the created document\n        // so any parsed elements with URLs\n        // are based on the document\'s URL (gh-2965)\n\n        base = context.createElement("base");\n        base.href = document.location.href;\n        context.head.appendChild(base);\n      } else {\n        context = document;\n      }\n    }\n\n    parsed = rsingleTag.exec(data);\n    scripts = !keepScripts && []; // Single tag\n\n    if (parsed) {\n      return [context.createElement(parsed[1])];\n    }\n\n    parsed = buildFragment([data], context, scripts);\n\n    if (scripts && scripts.length) {\n      jQuery(scripts).remove();\n    }\n\n    return jQuery.merge([], parsed.childNodes);\n  };\n  /**\n   * Load a url into a page\n   */\n\n\n  jQuery.fn.load = function (url, params, callback) {\n    var selector,\n        type,\n        response,\n        self = this,\n        off = url.indexOf(" ");\n\n    if (off > -1) {\n      selector = stripAndCollapse(url.slice(off));\n      url = url.slice(0, off);\n    } // If it\'s a function\n\n\n    if (isFunction(params)) {\n      // We assume that it\'s the callback\n      callback = params;\n      params = undefined; // Otherwise, build a param string\n    } else if (params && typeof params === "object") {\n      type = "POST";\n    } // If we have elements to modify, make the request\n\n\n    if (self.length > 0) {\n      jQuery.ajax({\n        url: url,\n        // If "type" variable is undefined, then "GET" method will be used.\n        // Make value of this field explicit since\n        // user can override it through ajaxSetup method\n        type: type || "GET",\n        dataType: "html",\n        data: params\n      }).done(function (responseText) {\n        // Save response for use in complete callback\n        response = arguments;\n        self.html(selector ? // If a selector was specified, locate the right elements in a dummy div\n        // Exclude scripts to avoid IE \'Permission Denied\' errors\n        jQuery("<div>").append(jQuery.parseHTML(responseText)).find(selector) : // Otherwise use the full result\n        responseText); // If the request succeeds, this function gets "data", "status", "jqXHR"\n        // but they are ignored because response was set above.\n        // If it fails, this function gets "jqXHR", "status", "error"\n      }).always(callback && function (jqXHR, status) {\n        self.each(function () {\n          callback.apply(this, response || [jqXHR.responseText, status, jqXHR]);\n        });\n      });\n    }\n\n    return this;\n  };\n\n  jQuery.expr.pseudos.animated = function (elem) {\n    return jQuery.grep(jQuery.timers, function (fn) {\n      return elem === fn.elem;\n    }).length;\n  };\n\n  jQuery.offset = {\n    setOffset: function (elem, options, i) {\n      var curPosition,\n          curLeft,\n          curCSSTop,\n          curTop,\n          curOffset,\n          curCSSLeft,\n          calculatePosition,\n          position = jQuery.css(elem, "position"),\n          curElem = jQuery(elem),\n          props = {}; // Set position first, in-case top/left are set even on static elem\n\n      if (position === "static") {\n        elem.style.position = "relative";\n      }\n\n      curOffset = curElem.offset();\n      curCSSTop = jQuery.css(elem, "top");\n      curCSSLeft = jQuery.css(elem, "left");\n      calculatePosition = (position === "absolute" || position === "fixed") && (curCSSTop + curCSSLeft).indexOf("auto") > -1; // Need to be able to calculate position if either\n      // top or left is auto and position is either absolute or fixed\n\n      if (calculatePosition) {\n        curPosition = curElem.position();\n        curTop = curPosition.top;\n        curLeft = curPosition.left;\n      } else {\n        curTop = parseFloat(curCSSTop) || 0;\n        curLeft = parseFloat(curCSSLeft) || 0;\n      }\n\n      if (isFunction(options)) {\n        // Use jQuery.extend here to allow modification of coordinates argument (gh-1848)\n        options = options.call(elem, i, jQuery.extend({}, curOffset));\n      }\n\n      if (options.top != null) {\n        props.top = options.top - curOffset.top + curTop;\n      }\n\n      if (options.left != null) {\n        props.left = options.left - curOffset.left + curLeft;\n      }\n\n      if ("using" in options) {\n        options.using.call(elem, props);\n      } else {\n        if (typeof props.top === "number") {\n          props.top += "px";\n        }\n\n        if (typeof props.left === "number") {\n          props.left += "px";\n        }\n\n        curElem.css(props);\n      }\n    }\n  };\n  jQuery.fn.extend({\n    // offset() relates an element\'s border box to the document origin\n    offset: function (options) {\n      // Preserve chaining for setter\n      if (arguments.length) {\n        return options === undefined ? this : this.each(function (i) {\n          jQuery.offset.setOffset(this, options, i);\n        });\n      }\n\n      var rect,\n          win,\n          elem = this[0];\n\n      if (!elem) {\n        return;\n      } // Return zeros for disconnected and hidden (display: none) elements (gh-2310)\n      // Support: IE <=11 only\n      // Running getBoundingClientRect on a\n      // disconnected node in IE throws an error\n\n\n      if (!elem.getClientRects().length) {\n        return {\n          top: 0,\n          left: 0\n        };\n      } // Get document-relative position by adding viewport scroll to viewport-relative gBCR\n\n\n      rect = elem.getBoundingClientRect();\n      win = elem.ownerDocument.defaultView;\n      return {\n        top: rect.top + win.pageYOffset,\n        left: rect.left + win.pageXOffset\n      };\n    },\n    // position() relates an element\'s margin box to its offset parent\'s padding box\n    // This corresponds to the behavior of CSS absolute positioning\n    position: function () {\n      if (!this[0]) {\n        return;\n      }\n\n      var offsetParent,\n          offset,\n          doc,\n          elem = this[0],\n          parentOffset = {\n        top: 0,\n        left: 0\n      }; // position:fixed elements are offset from the viewport, which itself always has zero offset\n\n      if (jQuery.css(elem, "position") === "fixed") {\n        // Assume position:fixed implies availability of getBoundingClientRect\n        offset = elem.getBoundingClientRect();\n      } else {\n        offset = this.offset(); // Account for the *real* offset parent, which can be the document or its root element\n        // when a statically positioned element is identified\n\n        doc = elem.ownerDocument;\n        offsetParent = elem.offsetParent || doc.documentElement;\n\n        while (offsetParent && (offsetParent === doc.body || offsetParent === doc.documentElement) && jQuery.css(offsetParent, "position") === "static") {\n          offsetParent = offsetParent.parentNode;\n        }\n\n        if (offsetParent && offsetParent !== elem && offsetParent.nodeType === 1) {\n          // Incorporate borders into its offset, since they are outside its content origin\n          parentOffset = jQuery(offsetParent).offset();\n          parentOffset.top += jQuery.css(offsetParent, "borderTopWidth", true);\n          parentOffset.left += jQuery.css(offsetParent, "borderLeftWidth", true);\n        }\n      } // Subtract parent offsets and element margins\n\n\n      return {\n        top: offset.top - parentOffset.top - jQuery.css(elem, "marginTop", true),\n        left: offset.left - parentOffset.left - jQuery.css(elem, "marginLeft", true)\n      };\n    },\n    // This method will return documentElement in the following cases:\n    // 1) For the element inside the iframe without offsetParent, this method will return\n    //    documentElement of the parent window\n    // 2) For the hidden or detached element\n    // 3) For body or html element, i.e. in case of the html node - it will return itself\n    //\n    // but those exceptions were never presented as a real life use-cases\n    // and might be considered as more preferable results.\n    //\n    // This logic, however, is not guaranteed and can change at any point in the future\n    offsetParent: function () {\n      return this.map(function () {\n        var offsetParent = this.offsetParent;\n\n        while (offsetParent && jQuery.css(offsetParent, "position") === "static") {\n          offsetParent = offsetParent.offsetParent;\n        }\n\n        return offsetParent || documentElement;\n      });\n    }\n  }); // Create scrollLeft and scrollTop methods\n\n  jQuery.each({\n    scrollLeft: "pageXOffset",\n    scrollTop: "pageYOffset"\n  }, function (method, prop) {\n    var top = "pageYOffset" === prop;\n\n    jQuery.fn[method] = function (val) {\n      return access(this, function (elem, method, val) {\n        // Coalesce documents and windows\n        var win;\n\n        if (isWindow(elem)) {\n          win = elem;\n        } else if (elem.nodeType === 9) {\n          win = elem.defaultView;\n        }\n\n        if (val === undefined) {\n          return win ? win[prop] : elem[method];\n        }\n\n        if (win) {\n          win.scrollTo(!top ? val : win.pageXOffset, top ? val : win.pageYOffset);\n        } else {\n          elem[method] = val;\n        }\n      }, method, val, arguments.length);\n    };\n  }); // Support: Safari <=7 - 9.1, Chrome <=37 - 49\n  // Add the top/left cssHooks using jQuery.fn.position\n  // Webkit bug: https://bugs.webkit.org/show_bug.cgi?id=29084\n  // Blink bug: https://bugs.chromium.org/p/chromium/issues/detail?id=589347\n  // getComputedStyle returns percent when specified for top/left/bottom/right;\n  // rather than make the css module depend on the offset module, just check for it here\n\n  jQuery.each(["top", "left"], function (_i, prop) {\n    jQuery.cssHooks[prop] = addGetHookIf(support.pixelPosition, function (elem, computed) {\n      if (computed) {\n        computed = curCSS(elem, prop); // If curCSS returns percentage, fallback to offset\n\n        return rnumnonpx.test(computed) ? jQuery(elem).position()[prop] + "px" : computed;\n      }\n    });\n  }); // Create innerHeight, innerWidth, height, width, outerHeight and outerWidth methods\n\n  jQuery.each({\n    Height: "height",\n    Width: "width"\n  }, function (name, type) {\n    jQuery.each({\n      padding: "inner" + name,\n      content: type,\n      "": "outer" + name\n    }, function (defaultExtra, funcName) {\n      // Margin is only for outerHeight, outerWidth\n      jQuery.fn[funcName] = function (margin, value) {\n        var chainable = arguments.length && (defaultExtra || typeof margin !== "boolean"),\n            extra = defaultExtra || (margin === true || value === true ? "margin" : "border");\n        return access(this, function (elem, type, value) {\n          var doc;\n\n          if (isWindow(elem)) {\n            // $( window ).outerWidth/Height return w/h including scrollbars (gh-1729)\n            return funcName.indexOf("outer") === 0 ? elem["inner" + name] : elem.document.documentElement["client" + name];\n          } // Get document width or height\n\n\n          if (elem.nodeType === 9) {\n            doc = elem.documentElement; // Either scroll[Width/Height] or offset[Width/Height] or client[Width/Height],\n            // whichever is greatest\n\n            return Math.max(elem.body["scroll" + name], doc["scroll" + name], elem.body["offset" + name], doc["offset" + name], doc["client" + name]);\n          }\n\n          return value === undefined ? // Get width or height on the element, requesting but not forcing parseFloat\n          jQuery.css(elem, type, extra) : // Set width or height on the element\n          jQuery.style(elem, type, value, extra);\n        }, type, chainable ? margin : undefined, chainable);\n      };\n    });\n  });\n  jQuery.each(["ajaxStart", "ajaxStop", "ajaxComplete", "ajaxError", "ajaxSuccess", "ajaxSend"], function (_i, type) {\n    jQuery.fn[type] = function (fn) {\n      return this.on(type, fn);\n    };\n  });\n  jQuery.fn.extend({\n    bind: function (types, data, fn) {\n      return this.on(types, null, data, fn);\n    },\n    unbind: function (types, fn) {\n      return this.off(types, null, fn);\n    },\n    delegate: function (selector, types, data, fn) {\n      return this.on(types, selector, data, fn);\n    },\n    undelegate: function (selector, types, fn) {\n      // ( namespace ) or ( selector, types [, fn] )\n      return arguments.length === 1 ? this.off(selector, "**") : this.off(types, selector || "**", fn);\n    },\n    hover: function (fnOver, fnOut) {\n      return this.mouseenter(fnOver).mouseleave(fnOut || fnOver);\n    }\n  });\n  jQuery.each(("blur focus focusin focusout resize scroll click dblclick " + "mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave " + "change select submit keydown keypress keyup contextmenu").split(" "), function (_i, name) {\n    // Handle event binding\n    jQuery.fn[name] = function (data, fn) {\n      return arguments.length > 0 ? this.on(name, null, data, fn) : this.trigger(name);\n    };\n  }); // Support: Android <=4.0 only\n  // Make sure we trim BOM and NBSP\n\n  var rtrim = /^[\\s\\uFEFF\\xA0]+|[\\s\\uFEFF\\xA0]+$/g; // Bind a function to a context, optionally partially applying any\n  // arguments.\n  // jQuery.proxy is deprecated to promote standards (specifically Function#bind)\n  // However, it is not slated for removal any time soon\n\n  jQuery.proxy = function (fn, context) {\n    var tmp, args, proxy;\n\n    if (typeof context === "string") {\n      tmp = fn[context];\n      context = fn;\n      fn = tmp;\n    } // Quick check to determine if target is callable, in the spec\n    // this throws a TypeError, but we will just return undefined.\n\n\n    if (!isFunction(fn)) {\n      return undefined;\n    } // Simulated bind\n\n\n    args = slice.call(arguments, 2);\n\n    proxy = function () {\n      return fn.apply(context || this, args.concat(slice.call(arguments)));\n    }; // Set the guid of unique handler to the same of original handler, so it can be removed\n\n\n    proxy.guid = fn.guid = fn.guid || jQuery.guid++;\n    return proxy;\n  };\n\n  jQuery.holdReady = function (hold) {\n    if (hold) {\n      jQuery.readyWait++;\n    } else {\n      jQuery.ready(true);\n    }\n  };\n\n  jQuery.isArray = Array.isArray;\n  jQuery.parseJSON = JSON.parse;\n  jQuery.nodeName = nodeName;\n  jQuery.isFunction = isFunction;\n  jQuery.isWindow = isWindow;\n  jQuery.camelCase = camelCase;\n  jQuery.type = toType;\n  jQuery.now = Date.now;\n\n  jQuery.isNumeric = function (obj) {\n    // As of jQuery 3.0, isNumeric is limited to\n    // strings and numbers (primitives or objects)\n    // that can be coerced to finite numbers (gh-2662)\n    var type = jQuery.type(obj);\n    return (type === "number" || type === "string") && // parseFloat NaNs numeric-cast false positives ("")\n    // ...but misinterprets leading-number strings, particularly hex literals ("0x...")\n    // subtraction forces infinities to NaN\n    !isNaN(obj - parseFloat(obj));\n  };\n\n  jQuery.trim = function (text) {\n    return text == null ? "" : (text + "").replace(rtrim, "");\n  }; // Register as a named AMD module, since jQuery can be concatenated with other\n  // files that may use define, but not via a proper concatenation script that\n  // understands anonymous AMD modules. A named AMD is safest and most robust\n  // way to register. Lowercase jquery is used because AMD module names are\n  // derived from file names, and jQuery is normally delivered in a lowercase\n  // file name. Do this after creating the global so that if an AMD module wants\n  // to call noConflict to hide this version of jQuery, it will work.\n  // Note that for maximum portability, libraries that are not jQuery should\n  // declare themselves as anonymous modules, and avoid setting a global if an\n  // AMD loader is present. jQuery is a special case. For more information, see\n  // https://github.com/jrburke/requirejs/wiki/Updating-existing-libraries#wiki-anon\n\n\n  if (true) {\n    !(__WEBPACK_AMD_DEFINE_ARRAY__ = [], __WEBPACK_AMD_DEFINE_RESULT__ = (function () {\n      return jQuery;\n    }).apply(exports, __WEBPACK_AMD_DEFINE_ARRAY__),\n\t\t\t\t__WEBPACK_AMD_DEFINE_RESULT__ !== undefined && (module.exports = __WEBPACK_AMD_DEFINE_RESULT__));\n  }\n\n  var // Map over jQuery in case of overwrite\n  _jQuery = window.jQuery,\n      // Map over the $ in case of overwrite\n  _$ = window.$;\n\n  jQuery.noConflict = function (deep) {\n    if (window.$ === jQuery) {\n      window.$ = _$;\n    }\n\n    if (deep && window.jQuery === jQuery) {\n      window.jQuery = _jQuery;\n    }\n\n    return jQuery;\n  }; // Expose jQuery and $ identifiers, even in AMD\n  // (#7102#comment:10, https://github.com/jquery/jquery/pull/557)\n  // and CommonJS for browser emulators (#13566)\n\n\n  if (typeof noGlobal === "undefined") {\n    window.jQuery = window.$ = jQuery;\n  }\n\n  return jQuery;\n});\n\n//# sourceURL=webpack:///./node_modules/jquery/dist/jquery.js?')},"./node_modules/webpack/buildin/amd-options.js":function(module,exports){eval("/* WEBPACK VAR INJECTION */(function(__webpack_amd_options__) {/* globals __webpack_amd_options__ */\nmodule.exports = __webpack_amd_options__;\n\n/* WEBPACK VAR INJECTION */}.call(this, {}))\n\n//# sourceURL=webpack:///(webpack)/buildin/amd-options.js?")},"./node_modules/webpack/buildin/global.js":function(module,exports){eval('var g; // This works in non-strict mode\n\ng = function () {\n  return this;\n}();\n\ntry {\n  // This works if eval is allowed (see CSP)\n  g = g || new Function("return this")();\n} catch (e) {\n  // This works if the window reference is available\n  if (typeof window === "object") g = window;\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\n\nmodule.exports = g;\n\n//# sourceURL=webpack:///(webpack)/buildin/global.js?')},"./node_modules/webpack/buildin/harmony-module.js":function(module,exports){eval('module.exports = function (originalModule) {\n  if (!originalModule.webpackPolyfill) {\n    var module = Object.create(originalModule); // module.parent = undefined by default\n\n    if (!module.children) module.children = [];\n    Object.defineProperty(module, "loaded", {\n      enumerable: true,\n      get: function () {\n        return module.l;\n      }\n    });\n    Object.defineProperty(module, "id", {\n      enumerable: true,\n      get: function () {\n        return module.i;\n      }\n    });\n    Object.defineProperty(module, "exports", {\n      enumerable: true\n    });\n    module.webpackPolyfill = 1;\n  }\n\n  return module;\n};\n\n//# sourceURL=webpack:///(webpack)/buildin/harmony-module.js?')},"./src/js/_libs/iframeEuroland.js":function(module,__webpack_exports__,__webpack_require__){"use strict";eval("/* WEBPACK VAR INJECTION */(function(jQuery) {/* harmony import */ var core_js_modules_es_symbol__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! core-js/modules/es.symbol */ \"./node_modules/core-js/modules/es.symbol.js\");\n/* harmony import */ var core_js_modules_es_symbol__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_symbol__WEBPACK_IMPORTED_MODULE_0__);\n/* harmony import */ var core_js_modules_es_symbol_description__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! core-js/modules/es.symbol.description */ \"./node_modules/core-js/modules/es.symbol.description.js\");\n/* harmony import */ var core_js_modules_es_symbol_description__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_symbol_description__WEBPACK_IMPORTED_MODULE_1__);\n/* harmony import */ var core_js_modules_es_symbol_iterator__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! core-js/modules/es.symbol.iterator */ \"./node_modules/core-js/modules/es.symbol.iterator.js\");\n/* harmony import */ var core_js_modules_es_symbol_iterator__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_symbol_iterator__WEBPACK_IMPORTED_MODULE_2__);\n/* harmony import */ var core_js_modules_es_array_index_of__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! core-js/modules/es.array.index-of */ \"./node_modules/core-js/modules/es.array.index-of.js\");\n/* harmony import */ var core_js_modules_es_array_index_of__WEBPACK_IMPORTED_MODULE_3___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_array_index_of__WEBPACK_IMPORTED_MODULE_3__);\n/* harmony import */ var core_js_modules_es_array_iterator__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! core-js/modules/es.array.iterator */ \"./node_modules/core-js/modules/es.array.iterator.js\");\n/* harmony import */ var core_js_modules_es_array_iterator__WEBPACK_IMPORTED_MODULE_4___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_array_iterator__WEBPACK_IMPORTED_MODULE_4__);\n/* harmony import */ var core_js_modules_es_array_join__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! core-js/modules/es.array.join */ \"./node_modules/core-js/modules/es.array.join.js\");\n/* harmony import */ var core_js_modules_es_array_join__WEBPACK_IMPORTED_MODULE_5___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_array_join__WEBPACK_IMPORTED_MODULE_5__);\n/* harmony import */ var core_js_modules_es_array_slice__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! core-js/modules/es.array.slice */ \"./node_modules/core-js/modules/es.array.slice.js\");\n/* harmony import */ var core_js_modules_es_array_slice__WEBPACK_IMPORTED_MODULE_6___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_array_slice__WEBPACK_IMPORTED_MODULE_6__);\n/* harmony import */ var core_js_modules_es_date_to_json__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! core-js/modules/es.date.to-json */ \"./node_modules/core-js/modules/es.date.to-json.js\");\n/* harmony import */ var core_js_modules_es_date_to_json__WEBPACK_IMPORTED_MODULE_7___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_date_to_json__WEBPACK_IMPORTED_MODULE_7__);\n/* harmony import */ var core_js_modules_es_number_constructor__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! core-js/modules/es.number.constructor */ \"./node_modules/core-js/modules/es.number.constructor.js\");\n/* harmony import */ var core_js_modules_es_number_constructor__WEBPACK_IMPORTED_MODULE_8___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_number_constructor__WEBPACK_IMPORTED_MODULE_8__);\n/* harmony import */ var core_js_modules_es_object_to_string__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! core-js/modules/es.object.to-string */ \"./node_modules/core-js/modules/es.object.to-string.js\");\n/* harmony import */ var core_js_modules_es_object_to_string__WEBPACK_IMPORTED_MODULE_9___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_object_to_string__WEBPACK_IMPORTED_MODULE_9__);\n/* harmony import */ var core_js_modules_es_regexp_exec__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! core-js/modules/es.regexp.exec */ \"./node_modules/core-js/modules/es.regexp.exec.js\");\n/* harmony import */ var core_js_modules_es_regexp_exec__WEBPACK_IMPORTED_MODULE_10___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_regexp_exec__WEBPACK_IMPORTED_MODULE_10__);\n/* harmony import */ var core_js_modules_es_regexp_to_string__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! core-js/modules/es.regexp.to-string */ \"./node_modules/core-js/modules/es.regexp.to-string.js\");\n/* harmony import */ var core_js_modules_es_regexp_to_string__WEBPACK_IMPORTED_MODULE_11___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_regexp_to_string__WEBPACK_IMPORTED_MODULE_11__);\n/* harmony import */ var core_js_modules_es_string_iterator__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! core-js/modules/es.string.iterator */ \"./node_modules/core-js/modules/es.string.iterator.js\");\n/* harmony import */ var core_js_modules_es_string_iterator__WEBPACK_IMPORTED_MODULE_12___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_string_iterator__WEBPACK_IMPORTED_MODULE_12__);\n/* harmony import */ var core_js_modules_es_string_replace__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! core-js/modules/es.string.replace */ \"./node_modules/core-js/modules/es.string.replace.js\");\n/* harmony import */ var core_js_modules_es_string_replace__WEBPACK_IMPORTED_MODULE_13___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_string_replace__WEBPACK_IMPORTED_MODULE_13__);\n/* harmony import */ var core_js_modules_es_string_search__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(/*! core-js/modules/es.string.search */ \"./node_modules/core-js/modules/es.string.search.js\");\n/* harmony import */ var core_js_modules_es_string_search__WEBPACK_IMPORTED_MODULE_14___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_string_search__WEBPACK_IMPORTED_MODULE_14__);\n/* harmony import */ var core_js_modules_es_string_split__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(/*! core-js/modules/es.string.split */ \"./node_modules/core-js/modules/es.string.split.js\");\n/* harmony import */ var core_js_modules_es_string_split__WEBPACK_IMPORTED_MODULE_15___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_string_split__WEBPACK_IMPORTED_MODULE_15__);\n/* harmony import */ var core_js_modules_web_dom_collections_iterator__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(/*! core-js/modules/web.dom-collections.iterator */ \"./node_modules/core-js/modules/web.dom-collections.iterator.js\");\n/* harmony import */ var core_js_modules_web_dom_collections_iterator__WEBPACK_IMPORTED_MODULE_16___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_web_dom_collections_iterator__WEBPACK_IMPORTED_MODULE_16__);\n/* harmony import */ var core_js_modules_web_url_to_json__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__(/*! core-js/modules/web.url.to-json */ \"./node_modules/core-js/modules/web.url.to-json.js\");\n/* harmony import */ var core_js_modules_web_url_to_json__WEBPACK_IMPORTED_MODULE_17___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_web_url_to_json__WEBPACK_IMPORTED_MODULE_17__);\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nfunction _typeof(obj) { \"@babel/helpers - typeof\"; 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/*! Developed by Illimar PihlamÃ¤e | e-mail: illimar@idra.pri.ee | Euroland Estonia Â© 2014 | e-mail: illimar@euroland.com */\nvar EurolandToolIntegrationObject = new function () {\n  var This = this,\n      iFrameArr = [] //an array, that holds all of the iframes\n  ,\n      hasScrollBar = false,\n      IE_Version = getDocumentModeIE(),\n      hasListiners = false,\n      dummyCallback = function dummyCallback() {};\n\n  function removeHash(url) {\n    var index = url.indexOf('#');\n\n    if (index > -1) {\n      url = url.substring(0, index);\n    }\n\n    return url;\n  }\n\n  function messageCall(e) {\n    if (!e) e = window.event;\n\n    switch (e.origin) {\n      case 'http://tools.eurolandir.com':\n      case 'https://tools.eurolandir.com':\n      case 'http://tools.euroland.com':\n      case 'https://tools.euroland.com':\n      case 'http://asia.tools.euroland.com':\n      case 'https://asia.tools.euroland.com':\n      case 'http://gamma1n.euroland.com':\n      case 'https://gamma1n.euroland.com':\n      case 'http://gamma.euroland.com':\n      case 'https://gamma.euroland.com':\n        break;\n\n      default:\n        var arr = e.origin.split('.');\n        if (arr < 2) return;\n        if (arr[arr.length - 1] != 'com' || arr[arr.length - 2] != 'euroland') return;\n        break;\n    }\n\n    var obj, item, offset;\n\n    try {\n      obj = JSON.parse(e.data);\n    } catch (e) {\n      return;\n    }\n\n    if (obj.iFrame) {\n      if (typeof obj.iFrame.height == 'number') {\n        if (typeof obj.iFrame.index == 'number' && iFrameArr.length > obj.iFrame.index) {\n          item = iFrameArr[obj.iFrame.index];\n\n          if (item.height < 0) {\n            item.height = parseFloat(item.iFrame.offsetHeight);\n          }\n\n          offset = obj.iFrame.height - item.height;\n          item.iFrame.height = obj.iFrame.height;\n          item.height = obj.iFrame.height;\n          item.iFrame.style.height = obj.iFrame.height + 'px';\n\n          if (item.callback != dummyCallback) {\n            item.callback(offset);\n          }\n        }\n      }\n    }\n  }\n\n  ;\n\n  function getDocumentModeIE() {\n    /*\r\n    \tReturns the IE's DocumentMode for IE, for non IE 0 is returned.\r\n    */\n    if (document.all) {\n      return typeof document.documentMode == 'undefined' ? getIE_Version() : Math.floor(parseFloat(document.documentMode));\n    }\n\n    return 0;\n  }\n\n  function getIE_Version() {\n    /*\r\n    \tReturns the current IE version. Returns 0 if the browser is not a IE.\r\n    */\n    if (!document.all) //if the browser is not a IE returns 0\n      return 0;\n    if (IE_Version != null) //if the browser version has already been found returns that\n      return IE_Version; //Finds out the IE version\n\n    var index,\n        browser = navigator.userAgent;\n    index = browser.search('MSIE');\n    if (index == -1) return 0;\n    IE_Version = browser.substring(index + 4, browser.indexOf(';', index));\n    IE_Version = Math.floor(parseFloat(IE_Version));\n    return IE_Version;\n  }\n\n  function setIFrame(iFrame, resizeCallback, isHeightToParent) {\n    /*\r\n    \tSets the IFrame in the object\r\n    \tiFrame - the HTML DOM object of the IFrame\r\n    \t\r\n    \treziseCallback - Function, the callback that will be called with the iframe's offset passed to it\r\n    \tisHeightToParent - Boolean, if set to TRUE the AutoHeight will ask the height to be sent to the parent and not into the top window\r\n    */\n    var obj = {\n      iFrame: iFrame,\n      index: iFrameArr.length,\n      height: -1 //the current height of the iframe\n      ,\n      callback: resizeCallback\n    },\n        strActivationMessage;\n    iFrame.width = \"100%\";\n    iFrame.allowTransparency = true;\n    iFrame.style.background = 'transparent'; // iFrame.style.border = '0px #000 solid';\n    // iFrame.style.overflow = 'hidden';\n    // iFrame.setAttribute('frameborder', '0');\n\n    iFrame.setAttribute('scrolling', 'no'); //iFrame.scrolling = 'no';\n    //iFrame.frameBorder = 0;\n    //Usually it's a IE fix, but this is here actually to make sure that in iPhones the IFrmae actually takes the portrait width and not the landscape width.\n\n    if (IE_Version && IE_Version < 7) {\n      iFrame.style.width = \"100%\";\n    } else {\n      iFrame.style.minWidth = \"100%\";\n      iFrame.style.width = \"1px\";\n    }\n\n    iFrame.style.maxHeight = 'none';\n    iFrame.style.minHeight = '0px';\n    iFrameArr.push(obj); //makes the activation message\n\n    strActivationMessage = \"ActivateEurolandToolAutoSizeObject-\" + obj.index;\n\n    if (isHeightToParent) {\n      strActivationMessage += '-1';\n    } //sends the activation message to the tool\n\n\n    iFrame.contentWindow.postMessage(strActivationMessage, '*'); //just to be safe sends the activation message to the Tool again onload\n\n    iFrame.onload = function () {\n      iFrame.contentWindow.postMessage(strActivationMessage, '*');\n    };\n  }\n\n  this.set = function (iFrameID, reziseCallback, isHeightToParent) {\n    /*\r\n    \tSets a tool to run in a spesific container\r\n    \tiFrameID - String/HTML DOM Object, aider the ID of the iframe in question or the iframe itself as HTML DOM Object\r\n    \t\r\n    \treziseCallback - [Optional] Function, the callback that will be called with the iframe's offset passed to it\r\n    \tisHeightToParent - [Optional] Boolean, if set to TRUE the AutoHeight will ask the height to be sent to the parent and not into the top window\r\n    */\n    var iFrame;\n\n    if (!window.postMessage || IE_Version && IE_Version < 8) {\n      return;\n    }\n\n    if (typeof reziseCallback != 'function') {\n      reziseCallback = dummyCallback;\n    }\n\n    if (typeof isHeightToParent != 'boolean') {\n      isHeightToParent = false;\n    }\n\n    switch (_typeof(iFrameID)) {\n      case 'string':\n        try {\n          iFrame = document.getElementById(iFrameID);\n        } catch (e) {\n          return false;\n        }\n\n        break;\n\n      case 'object':\n        if (iFrameID == null) return false;\n        iFrame = iFrameID;\n        break;\n\n      default:\n        return false;\n    }\n\n    if (_typeof(iFrame) != 'object' || iFrame == null || !iFrame.nodeName || iFrame.nodeName.toLowerCase() != 'iframe') return;\n\n    if (!hasListiners) {\n      hasListiners = true;\n\n      if (window.addEventListener) {\n        window.addEventListener('message', messageCall);\n      } else {\n        window.attachEvent('onmessage', messageCall);\n      }\n    }\n\n    setIFrame(iFrame, reziseCallback, isHeightToParent);\n  };\n}(); //Adds in JSON support if missing\n\nvar JSON;\n\nif (!JSON) {\n  JSON = {};\n}\n\n(function () {\n  'use strict';\n\n  function f(n) {\n    return n < 10 ? '0' + n : n;\n  }\n\n  if (typeof Date.prototype.toJSON !== 'function') {\n    Date.prototype.toJSON = function (key) {\n      return isFinite(this.valueOf()) ? this.getUTCFullYear() + '-' + f(this.getUTCMonth() + 1) + '-' + f(this.getUTCDate()) + 'T' + f(this.getUTCHours()) + ':' + f(this.getUTCMinutes()) + ':' + f(this.getUTCSeconds()) + 'Z' : null;\n    };\n\n    String.prototype.toJSON = Number.prototype.toJSON = Boolean.prototype.toJSON = function (key) {\n      return this.valueOf();\n    };\n  }\n\n  var cx = /[\\u0000\\u00ad\\u0600-\\u0604\\u070f\\u17b4\\u17b5\\u200c-\\u200f\\u2028-\\u202f\\u2060-\\u206f\\ufeff\\ufff0-\\uffff]/g,\n      escapable = /[\\\\\\\"\\x00-\\x1f\\x7f-\\x9f\\u00ad\\u0600-\\u0604\\u070f\\u17b4\\u17b5\\u200c-\\u200f\\u2028-\\u202f\\u2060-\\u206f\\ufeff\\ufff0-\\uffff]/g,\n      gap,\n      indent,\n      meta = {\n    '\\b': '\\\\b',\n    '\\t': '\\\\t',\n    '\\n': '\\\\n',\n    '\\f': '\\\\f',\n    '\\r': '\\\\r',\n    '\"': '\\\\\"',\n    '\\\\': '\\\\\\\\'\n  },\n      rep;\n\n  function quote(string) {\n    escapable.lastIndex = 0;\n    return escapable.test(string) ? '\"' + string.replace(escapable, function (a) {\n      var c = meta[a];\n      return typeof c === 'string' ? c : \"\\\\u\" + ('0000' + a.charCodeAt(0).toString(16)).slice(-4);\n    }) + '\"' : '\"' + string + '\"';\n  }\n\n  function str(key, holder) {\n    var i,\n        k,\n        v,\n        length,\n        mind = gap,\n        partial,\n        value = holder[key];\n\n    if (value && _typeof(value) === 'object' && typeof value.toJSON === 'function') {\n      value = value.toJSON(key);\n    }\n\n    if (typeof rep === 'function') {\n      value = rep.call(holder, key, value);\n    }\n\n    switch (_typeof(value)) {\n      case 'string':\n        return quote(value);\n\n      case 'number':\n        return isFinite(value) ? String(value) : 'null';\n\n      case 'boolean':\n      case 'null':\n        return String(value);\n\n      case 'object':\n        if (!value) {\n          return 'null';\n        }\n\n        gap += indent;\n        partial = [];\n\n        if (Object.prototype.toString.apply(value) === '[object Array]') {\n          length = value.length;\n\n          for (i = 0; i < length; i += 1) {\n            partial[i] = str(i, value) || 'null';\n          }\n\n          v = partial.length === 0 ? '[]' : gap ? '[\\n' + gap + partial.join(',\\n' + gap) + '\\n' + mind + ']' : '[' + partial.join(',') + ']';\n          gap = mind;\n          return v;\n        }\n\n        if (rep && _typeof(rep) === 'object') {\n          length = rep.length;\n\n          for (i = 0; i < length; i += 1) {\n            if (typeof rep[i] === 'string') {\n              k = rep[i];\n              v = str(k, value);\n\n              if (v) {\n                partial.push(quote(k) + (gap ? ': ' : ':') + v);\n              }\n            }\n          }\n        } else {\n          for (k in value) {\n            if (Object.prototype.hasOwnProperty.call(value, k)) {\n              v = str(k, value);\n\n              if (v) {\n                partial.push(quote(k) + (gap ? ': ' : ':') + v);\n              }\n            }\n          }\n        }\n\n        v = partial.length === 0 ? '{}' : gap ? '{\\n' + gap + partial.join(',\\n' + gap) + '\\n' + mind + '}' : '{' + partial.join(',') + '}';\n        gap = mind;\n        return v;\n    }\n  }\n\n  if (typeof JSON.stringify !== 'function') {\n    JSON.stringify = function (value, replacer, space) {\n      var i;\n      gap = '';\n      indent = '';\n\n      if (typeof space === 'number') {\n        for (i = 0; i < space; i += 1) {\n          indent += ' ';\n        }\n      } else if (typeof space === 'string') {\n        indent = space;\n      }\n\n      rep = replacer;\n\n      if (replacer && typeof replacer !== 'function' && (_typeof(replacer) !== 'object' || typeof replacer.length !== 'number')) {\n        throw new Error('JSON.stringify');\n      }\n\n      return str('', {\n        '': value\n      });\n    };\n  }\n\n  if (typeof JSON.parse !== 'function') {\n    JSON.parse = function (text, reviver) {\n      var j;\n\n      function walk(holder, key) {\n        var k,\n            v,\n            value = holder[key];\n\n        if (value && _typeof(value) === 'object') {\n          for (k in value) {\n            if (Object.prototype.hasOwnProperty.call(value, k)) {\n              v = walk(value, k);\n\n              if (v !== undefined) {\n                value[k] = v;\n              } else {\n                delete value[k];\n              }\n            }\n          }\n        }\n\n        return reviver.call(holder, key, value);\n      }\n\n      text = String(text);\n      cx.lastIndex = 0;\n\n      if (cx.test(text)) {\n        text = text.replace(cx, function (a) {\n          return \"\\\\u\" + ('0000' + a.charCodeAt(0).toString(16)).slice(-4);\n        });\n      }\n\n      if (/^[\\],:{}\\s]*$/.test(text.replace(/\\\\(?:[\"\\\\\\/bfnrt]|u[0-9a-fA-F]{4})/g, '@').replace(/\"[^\"\\\\\\n\\r]*\"|true|false|null|-?\\d+(?:\\.\\d*)?(?:[eE][+\\-]?\\d+)?/g, ']').replace(/(?:^|:|,)(?:\\s*\\[)+/g, ''))) {\n        j = eval('(' + text + ')');\n        return typeof reviver === 'function' ? walk({\n          '': j\n        }, '') : j;\n      }\n\n      throw new SyntaxError('JSON.parse');\n    };\n  }\n})(); //Adds in a jQuery plugin\n\n\nif (typeof jQuery == 'function') {\n  (function ($) {\n    /*\r\n    \tCreates the [EurolandCommoditiesPeersIndices] Object\r\n    */\n    // $.fn.EurolandIFrameAutoHeight = function() {\n    // for(var i = 0; i < this.length; i++) {\n    // EurolandToolIntegrationObject.set(this[i]);\n    // }\n    // return this;\n    // };\n    $.fn.extend({\n      EurolandIFrameAutoHeight: function EurolandIFrameAutoHeight(resizeCallback) {\n        if (typeof resizeCallback != 'function') {\n          resizeCallback = null;\n        }\n\n        for (var i = 0; i < this.length; i++) {\n          EurolandToolIntegrationObject.set(this[i], resizeCallback);\n        }\n\n        return this;\n      }\n    });\n  })(jQuery);\n}\n/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! jquery */ \"./node_modules/jquery/dist/jquery.js\")))\n\n//# sourceURL=webpack:///./src/js/_libs/iframeEuroland.js?")},"./src/js/_libs/mousewheel.js":function(module,__webpack_exports__,__webpack_require__){"use strict";eval('/* WEBPACK VAR INJECTION */(function(module, jQuery) {/* harmony import */ var core_js_modules_es_symbol__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! core-js/modules/es.symbol */ "./node_modules/core-js/modules/es.symbol.js");\n/* harmony import */ var core_js_modules_es_symbol__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_symbol__WEBPACK_IMPORTED_MODULE_0__);\n/* harmony import */ var core_js_modules_es_symbol_description__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! core-js/modules/es.symbol.description */ "./node_modules/core-js/modules/es.symbol.description.js");\n/* harmony import */ var core_js_modules_es_symbol_description__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_symbol_description__WEBPACK_IMPORTED_MODULE_1__);\n/* harmony import */ var core_js_modules_es_symbol_iterator__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! core-js/modules/es.symbol.iterator */ "./node_modules/core-js/modules/es.symbol.iterator.js");\n/* harmony import */ var core_js_modules_es_symbol_iterator__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_symbol_iterator__WEBPACK_IMPORTED_MODULE_2__);\n/* harmony import */ var core_js_modules_es_array_iterator__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! core-js/modules/es.array.iterator */ "./node_modules/core-js/modules/es.array.iterator.js");\n/* harmony import */ var core_js_modules_es_array_iterator__WEBPACK_IMPORTED_MODULE_3___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_array_iterator__WEBPACK_IMPORTED_MODULE_3__);\n/* harmony import */ var core_js_modules_es_array_slice__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! core-js/modules/es.array.slice */ "./node_modules/core-js/modules/es.array.slice.js");\n/* harmony import */ var core_js_modules_es_array_slice__WEBPACK_IMPORTED_MODULE_4___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_array_slice__WEBPACK_IMPORTED_MODULE_4__);\n/* harmony import */ var core_js_modules_es_object_to_string__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! core-js/modules/es.object.to-string */ "./node_modules/core-js/modules/es.object.to-string.js");\n/* harmony import */ var core_js_modules_es_object_to_string__WEBPACK_IMPORTED_MODULE_5___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_object_to_string__WEBPACK_IMPORTED_MODULE_5__);\n/* harmony import */ var core_js_modules_es_string_iterator__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! core-js/modules/es.string.iterator */ "./node_modules/core-js/modules/es.string.iterator.js");\n/* harmony import */ var core_js_modules_es_string_iterator__WEBPACK_IMPORTED_MODULE_6___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_string_iterator__WEBPACK_IMPORTED_MODULE_6__);\n/* harmony import */ var core_js_modules_web_dom_collections_iterator__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! core-js/modules/web.dom-collections.iterator */ "./node_modules/core-js/modules/web.dom-collections.iterator.js");\n/* harmony import */ var core_js_modules_web_dom_collections_iterator__WEBPACK_IMPORTED_MODULE_7___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_web_dom_collections_iterator__WEBPACK_IMPORTED_MODULE_7__);\n\n\n\n\n\n\n\n\n\nfunction _typeof(obj) { "@babel/helpers - typeof"; 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/*!\r\n * jQuery Mousewheel 3.1.13\r\n * Copyright OpenJS Foundation and other contributors\r\n */\n!function (e) {\n  "function" == typeof define && __webpack_require__(/*! !webpack amd options */ "./node_modules/webpack/buildin/amd-options.js") ? define(["jquery"], e) : "object" == (typeof exports === "undefined" ? "undefined" : _typeof(exports)) ? module.exports = e : e(jQuery);\n}(function (u) {\n  var f,\n      d,\n      e = ["wheel", "mousewheel", "DOMMouseScroll", "MozMousePixelScroll"],\n      t = "onwheel" in window.document || 9 <= window.document.documentMode ? ["wheel"] : ["mousewheel", "DomMouseScroll", "MozMousePixelScroll"],\n      w = Array.prototype.slice;\n  if (u.event.fixHooks) for (var i = e.length; i;) {\n    u.event.fixHooks[e[--i]] = u.event.mouseHooks;\n  }\n  var c = u.event.special.mousewheel = {\n    version: "3.1.12",\n    setup: function setup() {\n      if (this.addEventListener) for (var e = t.length; e;) {\n        this.addEventListener(t[--e], n, !1);\n      } else this.onmousewheel = n;\n      u.data(this, "mousewheel-line-height", c.getLineHeight(this)), u.data(this, "mousewheel-page-height", c.getPageHeight(this));\n    },\n    teardown: function teardown() {\n      if (this.removeEventListener) for (var e = t.length; e;) {\n        this.removeEventListener(t[--e], n, !1);\n      } else this.onmousewheel = null;\n      u.removeData(this, "mousewheel-line-height"), u.removeData(this, "mousewheel-page-height");\n    },\n    getLineHeight: function getLineHeight(e) {\n      var t = u(e),\n          i = t["offsetParent" in u.fn ? "offsetParent" : "parent"]();\n      return i.length || (i = u("body")), parseInt(i.css("fontSize"), 10) || parseInt(t.css("fontSize"), 10) || 16;\n    },\n    getPageHeight: function getPageHeight(e) {\n      return u(e).height();\n    },\n    settings: {\n      adjustOldDeltas: !0,\n      normalizeOffset: !0\n    }\n  };\n\n  function n(e) {\n    var t,\n        i = e || window.event,\n        n = w.call(arguments, 1),\n        o = 0,\n        l = 0,\n        s = 0;\n\n    if ((e = u.event.fix(i)).type = "mousewheel", "detail" in i && (s = -1 * i.detail), "wheelDelta" in i && (s = i.wheelDelta), "wheelDeltaY" in i && (s = i.wheelDeltaY), "wheelDeltaX" in i && (l = -1 * i.wheelDeltaX), "axis" in i && i.axis === i.HORIZONTAL_AXIS && (l = -1 * s, s = 0), o = 0 === s ? l : s, "deltaY" in i && (o = s = -1 * i.deltaY), "deltaX" in i && (l = i.deltaX, 0 === s && (o = -1 * l)), 0 !== s || 0 !== l) {\n      if (1 === i.deltaMode) {\n        var a = u.data(this, "mousewheel-line-height");\n        o *= a, s *= a, l *= a;\n      } else if (2 === i.deltaMode) {\n        var h = u.data(this, "mousewheel-page-height");\n        o *= h, s *= h, l *= h;\n      }\n\n      if (t = Math.max(Math.abs(s), Math.abs(l)), (!d || t < d) && g(i, d = t) && (d /= 40), g(i, t) && (o /= 40, l /= 40, s /= 40), o = Math[1 <= o ? "floor" : "ceil"](o / d), l = Math[1 <= l ? "floor" : "ceil"](l / d), s = Math[1 <= s ? "floor" : "ceil"](s / d), c.settings.normalizeOffset && this.getBoundingClientRect) {\n        var r = this.getBoundingClientRect();\n        e.offsetX = e.clientX - r.left, e.offsetY = e.clientY - r.top;\n      }\n\n      return e.deltaX = l, e.deltaY = s, e.deltaFactor = d, e.deltaMode = 0, n.unshift(e, o, l, s), f && window.clearTimeout(f), f = window.setTimeout(m, 200), (u.event.dispatch || u.event.handle).apply(this, n);\n    }\n  }\n\n  function m() {\n    d = null;\n  }\n\n  function g(e, t) {\n    return c.settings.adjustOldDeltas && "mousewheel" === e.type && t % 120 == 0;\n  }\n\n  u.fn.extend({\n    mousewheel: function mousewheel(e) {\n      return e ? this.on("mousewheel", e) : this.trigger("mousewheel");\n    },\n    unmousewheel: function unmousewheel(e) {\n      return this.off("mousewheel", e);\n    }\n  });\n});\n/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./../../../node_modules/webpack/buildin/harmony-module.js */ "./node_modules/webpack/buildin/harmony-module.js")(module), __webpack_require__(/*! jquery */ "./node_modules/jquery/dist/jquery.js")))\n\n//# sourceURL=webpack:///./src/js/_libs/mousewheel.js?')},"./src/js/_libs/mscroller.js":function(module,__webpack_exports__,__webpack_require__){"use strict";eval('/* WEBPACK VAR INJECTION */(function(module, jQuery) {/* harmony import */ var core_js_modules_es_symbol__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! core-js/modules/es.symbol */ "./node_modules/core-js/modules/es.symbol.js");\n/* harmony import */ var core_js_modules_es_symbol__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_symbol__WEBPACK_IMPORTED_MODULE_0__);\n/* harmony import */ var core_js_modules_es_symbol_description__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! core-js/modules/es.symbol.description */ "./node_modules/core-js/modules/es.symbol.description.js");\n/* harmony import */ var core_js_modules_es_symbol_description__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_symbol_description__WEBPACK_IMPORTED_MODULE_1__);\n/* harmony import */ var core_js_modules_es_symbol_iterator__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! core-js/modules/es.symbol.iterator */ "./node_modules/core-js/modules/es.symbol.iterator.js");\n/* harmony import */ var core_js_modules_es_symbol_iterator__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_symbol_iterator__WEBPACK_IMPORTED_MODULE_2__);\n/* harmony import */ var core_js_modules_es_array_find__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! core-js/modules/es.array.find */ "./node_modules/core-js/modules/es.array.find.js");\n/* harmony import */ var core_js_modules_es_array_find__WEBPACK_IMPORTED_MODULE_3___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_array_find__WEBPACK_IMPORTED_MODULE_3__);\n/* harmony import */ var core_js_modules_es_array_index_of__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! core-js/modules/es.array.index-of */ "./node_modules/core-js/modules/es.array.index-of.js");\n/* harmony import */ var core_js_modules_es_array_index_of__WEBPACK_IMPORTED_MODULE_4___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_array_index_of__WEBPACK_IMPORTED_MODULE_4__);\n/* harmony import */ var core_js_modules_es_array_iterator__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! core-js/modules/es.array.iterator */ "./node_modules/core-js/modules/es.array.iterator.js");\n/* harmony import */ var core_js_modules_es_array_iterator__WEBPACK_IMPORTED_MODULE_5___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_array_iterator__WEBPACK_IMPORTED_MODULE_5__);\n/* harmony import */ var core_js_modules_es_array_map__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! core-js/modules/es.array.map */ "./node_modules/core-js/modules/es.array.map.js");\n/* harmony import */ var core_js_modules_es_array_map__WEBPACK_IMPORTED_MODULE_6___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_array_map__WEBPACK_IMPORTED_MODULE_6__);\n/* harmony import */ var core_js_modules_es_array_slice__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! core-js/modules/es.array.slice */ "./node_modules/core-js/modules/es.array.slice.js");\n/* harmony import */ var core_js_modules_es_array_slice__WEBPACK_IMPORTED_MODULE_7___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_array_slice__WEBPACK_IMPORTED_MODULE_7__);\n/* harmony import */ var core_js_modules_es_object_to_string__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! core-js/modules/es.object.to-string */ "./node_modules/core-js/modules/es.object.to-string.js");\n/* harmony import */ var core_js_modules_es_object_to_string__WEBPACK_IMPORTED_MODULE_8___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_object_to_string__WEBPACK_IMPORTED_MODULE_8__);\n/* harmony import */ var core_js_modules_es_regexp_exec__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! core-js/modules/es.regexp.exec */ "./node_modules/core-js/modules/es.regexp.exec.js");\n/* harmony import */ var core_js_modules_es_regexp_exec__WEBPACK_IMPORTED_MODULE_9___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_regexp_exec__WEBPACK_IMPORTED_MODULE_9__);\n/* harmony import */ var core_js_modules_es_regexp_to_string__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! core-js/modules/es.regexp.to-string */ "./node_modules/core-js/modules/es.regexp.to-string.js");\n/* harmony import */ var core_js_modules_es_regexp_to_string__WEBPACK_IMPORTED_MODULE_10___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_regexp_to_string__WEBPACK_IMPORTED_MODULE_10__);\n/* harmony import */ var core_js_modules_es_string_iterator__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! core-js/modules/es.string.iterator */ "./node_modules/core-js/modules/es.string.iterator.js");\n/* harmony import */ var core_js_modules_es_string_iterator__WEBPACK_IMPORTED_MODULE_11___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_string_iterator__WEBPACK_IMPORTED_MODULE_11__);\n/* harmony import */ var core_js_modules_es_string_split__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! core-js/modules/es.string.split */ "./node_modules/core-js/modules/es.string.split.js");\n/* harmony import */ var core_js_modules_es_string_split__WEBPACK_IMPORTED_MODULE_12___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_string_split__WEBPACK_IMPORTED_MODULE_12__);\n/* harmony import */ var core_js_modules_web_dom_collections_iterator__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! core-js/modules/web.dom-collections.iterator */ "./node_modules/core-js/modules/web.dom-collections.iterator.js");\n/* harmony import */ var core_js_modules_web_dom_collections_iterator__WEBPACK_IMPORTED_MODULE_13___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_web_dom_collections_iterator__WEBPACK_IMPORTED_MODULE_13__);\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nfunction _typeof(obj) { "@babel/helpers - typeof"; 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/*\r\n== malihu jquery custom scrollbar plugin ==\r\nVersion: 3.1.5\r\nPlugin URI: http://manos.malihu.gr/jquery-custom-content-scroller\r\nAuthor: malihu\r\nAuthor URI: http://manos.malihu.gr\r\nLicense: MIT License (MIT)\r\n*/\n\n/*\r\nCopyright Manos Malihutsakis (email: manos@malihu.gr)\r\n\r\nPermission is hereby granted, free of charge, to any person obtaining a copy\r\nof this software and associated documentation files (the "Software"), to deal\r\nin the Software without restriction, including without limitation the rights\r\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\ncopies of the Software, and to permit persons to whom the Software is\r\nfurnished to do so, subject to the following conditions:\r\n\r\nThe above copyright notice and this permission notice shall be included in\r\nall copies or substantial portions of the Software.\r\n\r\nTHE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\r\nTHE SOFTWARE.\r\n*/\n\n/*\r\nThe code below is fairly long, fully commented and should be normally used in development.\r\nFor production, use either the minified jquery.mCustomScrollbar.min.js script or\r\nthe production-ready jquery.mCustomScrollbar.concat.min.js which contains the plugin\r\nand dependencies (minified).\r\n*/\n(function (factory) {\n  if (typeof define === "function" && __webpack_require__(/*! !webpack amd options */ "./node_modules/webpack/buildin/amd-options.js")) {\n    define(["jquery"], factory);\n  } else if ( true && module.exports) {\n    module.exports = factory;\n  } else {\n    factory(jQuery, window, document);\n  }\n})(function ($) {\n  (function (init) {\n    var _rjs = typeof define === "function" && __webpack_require__(/*! !webpack amd options */ "./node_modules/webpack/buildin/amd-options.js"),\n\n    /* RequireJS */\n    _njs =  true && module.exports,\n\n    /* NodeJS */\n    _dlp = "https:" == document.location.protocol ? "https:" : "http:",\n\n    /* location protocol */\n    _url = "cdnjs.cloudflare.com/ajax/libs/jquery-mousewheel/3.1.13/jquery.mousewheel.min.js";\n\n    if (!_rjs) {\n      if (_njs) {\n        /* load jquery-mousewheel plugin (via CDN) if it\'s not present or not loaded via RequireJS\r\n        (works when mCustomScrollbar fn is called on window load) */\n        $.event.special.mousewheel || $("head").append(decodeURI("%3Cscript src=" + _dlp + "//" + _url + "%3E%3C/script%3E"));\n      }\n    }\n\n    init();\n  })(function () {\n    /*\r\n    ----------------------------------------\r\n    PLUGIN NAMESPACE, PREFIX, DEFAULT SELECTOR(S)\r\n    ----------------------------------------\r\n    */\n    var pluginNS = "mCustomScrollbar",\n        pluginPfx = "mCS",\n        defaultSelector = ".mCustomScrollbar",\n\n    /*\r\n    ----------------------------------------\r\n    DEFAULT OPTIONS\r\n    ----------------------------------------\r\n    */\n    defaults = {\n      /*\r\n      set element/content width/height programmatically\r\n      values: boolean, pixels, percentage\r\n      \toption\t\t\t\t\t\tdefault\r\n      \t-------------------------------------\r\n      \tsetWidth\t\t\t\t\tfalse\r\n      \tsetHeight\t\t\t\t\tfalse\r\n      */\n\n      /*\r\n      set the initial css top property of content\r\n      values: string (e.g. "-100px", "10%" etc.)\r\n      */\n      setTop: 0,\n\n      /*\r\n      set the initial css left property of content\r\n      values: string (e.g. "-100px", "10%" etc.)\r\n      */\n      setLeft: 0,\n\n      /*\r\n      scrollbar axis (vertical and/or horizontal scrollbars)\r\n      values (string): "y", "x", "yx"\r\n      */\n      axis: "y",\n\n      /*\r\n      position of scrollbar relative to content\r\n      values (string): "inside", "outside" ("outside" requires elements with position:relative)\r\n      */\n      scrollbarPosition: "inside",\n\n      /*\r\n      scrolling inertia\r\n      values: integer (milliseconds)\r\n      */\n      scrollInertia: 950,\n\n      /*\r\n      auto-adjust scrollbar dragger length\r\n      values: boolean\r\n      */\n      autoDraggerLength: true,\n\n      /*\r\n      auto-hide scrollbar when idle\r\n      values: boolean\r\n      \toption\t\t\t\t\t\tdefault\r\n      \t-------------------------------------\r\n      \tautoHideScrollbar\t\t\tfalse\r\n      */\n\n      /*\r\n      auto-expands scrollbar on mouse-over and dragging\r\n      values: boolean\r\n      \toption\t\t\t\t\t\tdefault\r\n      \t-------------------------------------\r\n      \tautoExpandScrollbar\t\t\tfalse\r\n      */\n\n      /*\r\n      always show scrollbar, even when there\'s nothing to scroll\r\n      values: integer (0=disable, 1=always show dragger rail and buttons, 2=always show dragger rail, dragger and buttons), boolean\r\n      */\n      alwaysShowScrollbar: 0,\n\n      /*\r\n      scrolling always snaps to a multiple of this number in pixels\r\n      values: integer, array ([y,x])\r\n      \toption\t\t\t\t\t\tdefault\r\n      \t-------------------------------------\r\n      \tsnapAmount\t\t\t\t\tnull\r\n      */\n\n      /*\r\n      when snapping, snap with this number in pixels as an offset\r\n      values: integer\r\n      */\n      snapOffset: 0,\n\n      /*\r\n      mouse-wheel scrolling\r\n      */\n      mouseWheel: {\n        /*\r\n        enable mouse-wheel scrolling\r\n        values: boolean\r\n        */\n        enable: true,\n\n        /*\r\n        scrolling amount in pixels\r\n        values: "auto", integer\r\n        */\n        scrollAmount: "auto",\n\n        /*\r\n        mouse-wheel scrolling axis\r\n        the default scrolling direction when both vertical and horizontal scrollbars are present\r\n        values (string): "y", "x"\r\n        */\n        axis: "y",\n\n        /*\r\n        prevent the default behaviour which automatically scrolls the parent element(s) when end of scrolling is reached\r\n        values: boolean\r\n        \toption\t\t\t\t\t\tdefault\r\n        \t-------------------------------------\r\n        \tpreventDefault\t\t\t\tnull\r\n        */\n\n        /*\r\n        the reported mouse-wheel delta value. The number of lines (translated to pixels) one wheel notch scrolls.\r\n        values: "auto", integer\r\n        "auto" uses the default OS/browser value\r\n        */\n        deltaFactor: "auto",\n\n        /*\r\n        normalize mouse-wheel delta to -1 or 1 (disables mouse-wheel acceleration)\r\n        values: boolean\r\n        \toption\t\t\t\t\t\tdefault\r\n        \t-------------------------------------\r\n        \tnormalizeDelta\t\t\t\tnull\r\n        */\n\n        /*\r\n        invert mouse-wheel scrolling direction\r\n        values: boolean\r\n        \toption\t\t\t\t\t\tdefault\r\n        \t-------------------------------------\r\n        \tinvert\t\t\t\t\t\tnull\r\n        */\n\n        /*\r\n        the tags that disable mouse-wheel when cursor is over them\r\n        */\n        disableOver: ["select", "option", "keygen", "datalist", "textarea"]\n      },\n\n      /*\r\n      scrollbar buttons\r\n      */\n      scrollButtons: {\n        /*\r\n        enable scrollbar buttons\r\n        values: boolean\r\n        \toption\t\t\t\t\t\tdefault\r\n        \t-------------------------------------\r\n        \tenable\t\t\t\t\t\tnull\r\n        */\n\n        /*\r\n        scrollbar buttons scrolling type\r\n        values (string): "stepless", "stepped"\r\n        */\n        scrollType: "stepless",\n\n        /*\r\n        scrolling amount in pixels\r\n        values: "auto", integer\r\n        */\n        scrollAmount: "auto"\n        /*\r\n        tabindex of the scrollbar buttons\r\n        values: false, integer\r\n        \toption\t\t\t\t\t\tdefault\r\n        \t-------------------------------------\r\n        \ttabindex\t\t\t\t\tnull\r\n        */\n\n      },\n\n      /*\r\n      keyboard scrolling\r\n      */\n      keyboard: {\n        /*\r\n        enable scrolling via keyboard\r\n        values: boolean\r\n        */\n        enable: true,\n\n        /*\r\n        keyboard scrolling type\r\n        values (string): "stepless", "stepped"\r\n        */\n        scrollType: "stepless",\n\n        /*\r\n        scrolling amount in pixels\r\n        values: "auto", integer\r\n        */\n        scrollAmount: "auto"\n      },\n\n      /*\r\n      enable content touch-swipe scrolling\r\n      values: boolean, integer, string (number)\r\n      integer values define the axis-specific minimum amount required for scrolling momentum\r\n      */\n      contentTouchScroll: 25,\n\n      /*\r\n      enable/disable document (default) touch-swipe scrolling\r\n      */\n      documentTouchScroll: true,\n\n      /*\r\n      advanced option parameters\r\n      */\n      advanced: {\n        /*\r\n        auto-expand content horizontally (for "x" or "yx" axis)\r\n        values: boolean, integer (the value 2 forces the non scrollHeight/scrollWidth method, the value 3 forces the scrollHeight/scrollWidth method)\r\n        \toption\t\t\t\t\t\tdefault\r\n        \t-------------------------------------\r\n        \tautoExpandHorizontalScroll\tnull\r\n        */\n\n        /*\r\n        auto-scroll to elements with focus\r\n        */\n        autoScrollOnFocus: "input,textarea,select,button,datalist,keygen,a[tabindex],area,object,[contenteditable=\'true\']",\n\n        /*\r\n        auto-update scrollbars on content, element or viewport resize\r\n        should be true for fluid layouts/elements, adding/removing content dynamically, hiding/showing elements, content with images etc.\r\n        values: boolean\r\n        */\n        updateOnContentResize: true,\n\n        /*\r\n        auto-update scrollbars each time each image inside the element is fully loaded\r\n        values: "auto", boolean\r\n        */\n        updateOnImageLoad: "auto",\n\n        /*\r\n        auto-update scrollbars based on the amount and size changes of specific selectors\r\n        useful when you need to update the scrollbar(s) automatically, each time a type of element is added, removed or changes its size\r\n        values: boolean, string (e.g. "ul li" will auto-update scrollbars each time list-items inside the element are changed)\r\n        a value of true (boolean) will auto-update scrollbars each time any element is changed\r\n        \toption\t\t\t\t\t\tdefault\r\n        \t-------------------------------------\r\n        \tupdateOnSelectorChange\t\tnull\r\n        */\n\n        /*\r\n        extra selectors that\'ll allow scrollbar dragging upon mousemove/up, pointermove/up, touchend etc. (e.g. "selector-1, selector-2")\r\n        \toption\t\t\t\t\t\tdefault\r\n        \t-------------------------------------\r\n        \textraDraggableSelectors\t\tnull\r\n        */\n\n        /*\r\n        extra selectors that\'ll release scrollbar dragging upon mouseup, pointerup, touchend etc. (e.g. "selector-1, selector-2")\r\n        \toption\t\t\t\t\t\tdefault\r\n        \t-------------------------------------\r\n        \treleaseDraggableSelectors\tnull\r\n        */\n\n        /*\r\n        auto-update timeout\r\n        values: integer (milliseconds)\r\n        */\n        autoUpdateTimeout: 60\n      },\n\n      /*\r\n      scrollbar theme\r\n      values: string (see CSS/plugin URI for a list of ready-to-use themes)\r\n      */\n      theme: "light",\n\n      /*\r\n      user defined callback functions\r\n      */\n      callbacks: {\n        /*\r\n        Available callbacks:\r\n        \tcallback\t\t\t\t\tdefault\r\n        \t-------------------------------------\r\n        \tonCreate\t\t\t\t\tnull\r\n        \tonInit\t\t\t\t\t\tnull\r\n        \tonScrollStart\t\t\t\tnull\r\n        \tonScroll\t\t\t\t\tnull\r\n        \tonTotalScroll\t\t\t\tnull\r\n        \tonTotalScrollBack\t\t\tnull\r\n        \twhileScrolling\t\t\t\tnull\r\n        \tonOverflowY\t\t\t\t\tnull\r\n        \tonOverflowX\t\t\t\t\tnull\r\n        \tonOverflowYNone\t\t\t\tnull\r\n        \tonOverflowXNone\t\t\t\tnull\r\n        \tonImageLoad\t\t\t\t\tnull\r\n        \tonSelectorChange\t\t\tnull\r\n        \tonBeforeUpdate\t\t\t\tnull\r\n        \tonUpdate\t\t\t\t\tnull\r\n        */\n        onTotalScrollOffset: 0,\n        onTotalScrollBackOffset: 0,\n        alwaysTriggerOffsets: true\n      }\n      /*\r\n      add scrollbar(s) on all elements matching the current selector, now and in the future\r\n      values: boolean, string\r\n      string values: "on" (enable), "once" (disable after first invocation), "off" (disable)\r\n      liveSelector values: string (selector)\r\n      \toption\t\t\t\t\t\tdefault\r\n      \t-------------------------------------\r\n      \tlive\t\t\t\t\t\tfalse\r\n      \tliveSelector\t\t\t\tnull\r\n      */\n\n    },\n\n    /*\r\n    ----------------------------------------\r\n    VARS, CONSTANTS\r\n    ----------------------------------------\r\n    */\n    totalInstances = 0,\n\n    /* plugin instances amount */\n    liveTimers = {},\n\n    /* live option timers */\n    oldIE = window.attachEvent && !window.addEventListener ? 1 : 0,\n\n    /* detect IE < 9 */\n    touchActive = false,\n        touchable,\n\n    /* global touch vars (for touch and pointer events) */\n\n    /* general plugin classes */\n    classes = ["mCSB_dragger_onDrag", "mCSB_scrollTools_onDrag", "mCS_img_loaded", "mCS_disabled", "mCS_destroyed", "mCS_no_scrollbar", "mCS-autoHide", "mCS-dir-rtl", "mCS_no_scrollbar_y", "mCS_no_scrollbar_x", "mCS_y_hidden", "mCS_x_hidden", "mCSB_draggerContainer", "mCSB_buttonUp", "mCSB_buttonDown", "mCSB_buttonLeft", "mCSB_buttonRight"],\n\n    /*\r\n    ----------------------------------------\r\n    METHODS\r\n    ----------------------------------------\r\n    */\n    methods = {\n      /*\r\n      plugin initialization method\r\n      creates the scrollbar(s), plugin data object and options\r\n      ----------------------------------------\r\n      */\n      init: function init(options) {\n        var options = $.extend(true, {}, defaults, options),\n            selector = _selector.call(this);\n        /* validate selector */\n\n        /*\r\n        if live option is enabled, monitor for elements matching the current selector and\r\n        apply scrollbar(s) when found (now and in the future)\r\n        */\n\n\n        if (options.live) {\n          var liveSelector = options.liveSelector || this.selector || defaultSelector,\n\n          /* live selector(s) */\n          $liveSelector = $(liveSelector);\n          /* live selector(s) as jquery object */\n\n          if (options.live === "off") {\n            /*\r\n            disable live if requested\r\n            usage: $(selector).mCustomScrollbar({live:"off"});\r\n            */\n            removeLiveTimers(liveSelector);\n            return;\n          }\n\n          liveTimers[liveSelector] = setTimeout(function () {\n            /* call mCustomScrollbar fn on live selector(s) every half-second */\n            $liveSelector.mCustomScrollbar(options);\n\n            if (options.live === "once" && $liveSelector.length) {\n              /* disable live after first invocation */\n              removeLiveTimers(liveSelector);\n            }\n          }, 500);\n        } else {\n          removeLiveTimers(liveSelector);\n        }\n        /* options backward compatibility (for versions < 3.0.0) and normalization */\n\n\n        options.setWidth = options.set_width ? options.set_width : options.setWidth;\n        options.setHeight = options.set_height ? options.set_height : options.setHeight;\n        options.axis = options.horizontalScroll ? "x" : _findAxis(options.axis);\n        options.scrollInertia = options.scrollInertia > 0 && options.scrollInertia < 17 ? 17 : options.scrollInertia;\n\n        if (_typeof(options.mouseWheel) !== "object" && options.mouseWheel == true) {\n          /* old school mouseWheel option (non-object) */\n          options.mouseWheel = {\n            enable: true,\n            scrollAmount: "auto",\n            axis: "y",\n            preventDefault: false,\n            deltaFactor: "auto",\n            normalizeDelta: false,\n            invert: false\n          };\n        }\n\n        options.mouseWheel.scrollAmount = !options.mouseWheelPixels ? options.mouseWheel.scrollAmount : options.mouseWheelPixels;\n        options.mouseWheel.normalizeDelta = !options.advanced.normalizeMouseWheelDelta ? options.mouseWheel.normalizeDelta : options.advanced.normalizeMouseWheelDelta;\n        options.scrollButtons.scrollType = _findScrollButtonsType(options.scrollButtons.scrollType);\n\n        _theme(options);\n        /* theme-specific options */\n\n        /* plugin constructor */\n\n\n        return $(selector).each(function () {\n          var $this = $(this);\n\n          if (!$this.data(pluginPfx)) {\n            /* prevent multiple instantiations */\n\n            /* store options and create objects in jquery data */\n            $this.data(pluginPfx, {\n              idx: ++totalInstances,\n\n              /* instance index */\n              opt: options,\n\n              /* options */\n              scrollRatio: {\n                y: null,\n                x: null\n              },\n\n              /* scrollbar to content ratio */\n              overflowed: null,\n\n              /* overflowed axis */\n              contentReset: {\n                y: null,\n                x: null\n              },\n\n              /* object to check when content resets */\n              bindEvents: false,\n\n              /* object to check if events are bound */\n              tweenRunning: false,\n\n              /* object to check if tween is running */\n              sequential: {},\n\n              /* sequential scrolling object */\n              langDir: $this.css("direction"),\n\n              /* detect/store direction (ltr or rtl) */\n              cbOffsets: null,\n\n              /* object to check whether callback offsets always trigger */\n\n              /*\r\n              object to check how scrolling events where last triggered\r\n              "internal" (default - triggered by this script), "external" (triggered by other scripts, e.g. via scrollTo method)\r\n              usage: object.data("mCS").trigger\r\n              */\n              trigger: null,\n\n              /*\r\n              object to check for changes in elements in order to call the update method automatically\r\n              */\n              poll: {\n                size: {\n                  o: 0,\n                  n: 0\n                },\n                img: {\n                  o: 0,\n                  n: 0\n                },\n                change: {\n                  o: 0,\n                  n: 0\n                }\n              }\n            });\n            var d = $this.data(pluginPfx),\n                o = d.opt,\n\n            /* HTML data attributes */\n            htmlDataAxis = $this.data("mcs-axis"),\n                htmlDataSbPos = $this.data("mcs-scrollbar-position"),\n                htmlDataTheme = $this.data("mcs-theme");\n\n            if (htmlDataAxis) {\n              o.axis = htmlDataAxis;\n            }\n            /* usage example: data-mcs-axis="y" */\n\n\n            if (htmlDataSbPos) {\n              o.scrollbarPosition = htmlDataSbPos;\n            }\n            /* usage example: data-mcs-scrollbar-position="outside" */\n\n\n            if (htmlDataTheme) {\n              /* usage example: data-mcs-theme="minimal" */\n              o.theme = htmlDataTheme;\n\n              _theme(o);\n              /* theme-specific options */\n\n            }\n\n            _pluginMarkup.call(this);\n            /* add plugin markup */\n\n\n            if (d && o.callbacks.onCreate && typeof o.callbacks.onCreate === "function") {\n              o.callbacks.onCreate.call(this);\n            }\n            /* callbacks: onCreate */\n\n\n            $("#mCSB_" + d.idx + "_container img:not(." + classes[2] + ")").addClass(classes[2]);\n            /* flag loaded images */\n\n            methods.update.call(null, $this);\n            /* call the update method */\n          }\n        });\n      },\n\n      /* ---------------------------------------- */\n\n      /*\r\n      plugin update method\r\n      updates content and scrollbar(s) values, events and status\r\n      ----------------------------------------\r\n      usage: $(selector).mCustomScrollbar("update");\r\n      */\n      update: function update(el, cb) {\n        var selector = el || _selector.call(this);\n        /* validate selector */\n\n\n        return $(selector).each(function () {\n          var $this = $(this);\n\n          if ($this.data(pluginPfx)) {\n            /* check if plugin has initialized */\n            var d = $this.data(pluginPfx),\n                o = d.opt,\n                mCSB_container = $("#mCSB_" + d.idx + "_container"),\n                mCustomScrollBox = $("#mCSB_" + d.idx),\n                mCSB_dragger = [$("#mCSB_" + d.idx + "_dragger_vertical"), $("#mCSB_" + d.idx + "_dragger_horizontal")];\n\n            if (!mCSB_container.length) {\n              return;\n            }\n\n            if (d.tweenRunning) {\n              _stop($this);\n            }\n            /* stop any running tweens while updating */\n\n\n            if (cb && d && o.callbacks.onBeforeUpdate && typeof o.callbacks.onBeforeUpdate === "function") {\n              o.callbacks.onBeforeUpdate.call(this);\n            }\n            /* callbacks: onBeforeUpdate */\n\n            /* if element was disabled or destroyed, remove class(es) */\n\n\n            if ($this.hasClass(classes[3])) {\n              $this.removeClass(classes[3]);\n            }\n\n            if ($this.hasClass(classes[4])) {\n              $this.removeClass(classes[4]);\n            }\n            /* css flexbox fix, detect/set max-height */\n\n\n            mCustomScrollBox.css("max-height", "none");\n\n            if (mCustomScrollBox.height() !== $this.height()) {\n              mCustomScrollBox.css("max-height", $this.height());\n            }\n\n            _expandContentHorizontally.call(this);\n            /* expand content horizontally */\n\n\n            if (o.axis !== "y" && !o.advanced.autoExpandHorizontalScroll) {\n              mCSB_container.css("width", _contentWidth(mCSB_container));\n            }\n\n            d.overflowed = _overflowed.call(this);\n            /* determine if scrolling is required */\n\n            _scrollbarVisibility.call(this);\n            /* show/hide scrollbar(s) */\n\n            /* auto-adjust scrollbar dragger length analogous to content */\n\n\n            if (o.autoDraggerLength) {\n              _setDraggerLength.call(this);\n            }\n\n            _scrollRatio.call(this);\n            /* calculate and store scrollbar to content ratio */\n\n\n            _bindEvents.call(this);\n            /* bind scrollbar events */\n\n            /* reset scrolling position and/or events */\n\n\n            var to = [Math.abs(mCSB_container[0].offsetTop), Math.abs(mCSB_container[0].offsetLeft)];\n\n            if (o.axis !== "x") {\n              /* y/yx axis */\n              if (!d.overflowed[0]) {\n                /* y scrolling is not required */\n                _resetContentPosition.call(this);\n                /* reset content position */\n\n\n                if (o.axis === "y") {\n                  _unbindEvents.call(this);\n                } else if (o.axis === "yx" && d.overflowed[1]) {\n                  _scrollTo($this, to[1].toString(), {\n                    dir: "x",\n                    dur: 0,\n                    overwrite: "none"\n                  });\n                }\n              } else if (mCSB_dragger[0].height() > mCSB_dragger[0].parent().height()) {\n                _resetContentPosition.call(this);\n                /* reset content position */\n\n              } else {\n                /* y scrolling is required */\n                _scrollTo($this, to[0].toString(), {\n                  dir: "y",\n                  dur: 0,\n                  overwrite: "none"\n                });\n\n                d.contentReset.y = null;\n              }\n            }\n\n            if (o.axis !== "y") {\n              /* x/yx axis */\n              if (!d.overflowed[1]) {\n                /* x scrolling is not required */\n                _resetContentPosition.call(this);\n                /* reset content position */\n\n\n                if (o.axis === "x") {\n                  _unbindEvents.call(this);\n                } else if (o.axis === "yx" && d.overflowed[0]) {\n                  _scrollTo($this, to[0].toString(), {\n                    dir: "y",\n                    dur: 0,\n                    overwrite: "none"\n                  });\n                }\n              } else if (mCSB_dragger[1].width() > mCSB_dragger[1].parent().width()) {\n                _resetContentPosition.call(this);\n                /* reset content position */\n\n              } else {\n                /* x scrolling is required */\n                _scrollTo($this, to[1].toString(), {\n                  dir: "x",\n                  dur: 0,\n                  overwrite: "none"\n                });\n\n                d.contentReset.x = null;\n              }\n            }\n            /* callbacks: onImageLoad, onSelectorChange, onUpdate */\n\n\n            if (cb && d) {\n              if (cb === 2 && o.callbacks.onImageLoad && typeof o.callbacks.onImageLoad === "function") {\n                o.callbacks.onImageLoad.call(this);\n              } else if (cb === 3 && o.callbacks.onSelectorChange && typeof o.callbacks.onSelectorChange === "function") {\n                o.callbacks.onSelectorChange.call(this);\n              } else if (o.callbacks.onUpdate && typeof o.callbacks.onUpdate === "function") {\n                o.callbacks.onUpdate.call(this);\n              }\n            }\n\n            _autoUpdate.call(this);\n            /* initialize automatic updating (for dynamic content, fluid layouts etc.) */\n\n          }\n        });\n      },\n\n      /* ---------------------------------------- */\n\n      /*\r\n      plugin scrollTo method\r\n      triggers a scrolling event to a specific value\r\n      ----------------------------------------\r\n      usage: $(selector).mCustomScrollbar("scrollTo",value,options);\r\n      */\n      scrollTo: function scrollTo(val, options) {\n        /* prevent silly things like $(selector).mCustomScrollbar("scrollTo",undefined); */\n        if (typeof val == "undefined" || val == null) {\n          return;\n        }\n\n        var selector = _selector.call(this);\n        /* validate selector */\n\n\n        return $(selector).each(function () {\n          var $this = $(this);\n\n          if ($this.data(pluginPfx)) {\n            /* check if plugin has initialized */\n            var d = $this.data(pluginPfx),\n                o = d.opt,\n\n            /* method default options */\n            methodDefaults = {\n              trigger: "external",\n\n              /* method is by default triggered externally (e.g. from other scripts) */\n              scrollInertia: o.scrollInertia,\n\n              /* scrolling inertia (animation duration) */\n              scrollEasing: "mcsEaseInOut",\n\n              /* animation easing */\n              moveDragger: false,\n\n              /* move dragger instead of content */\n              timeout: 60,\n\n              /* scroll-to delay */\n              callbacks: true,\n\n              /* enable/disable callbacks */\n              onStart: true,\n              onUpdate: true,\n              onComplete: true\n            },\n                methodOptions = $.extend(true, {}, methodDefaults, options),\n                to = _arr.call(this, val),\n                dur = methodOptions.scrollInertia > 0 && methodOptions.scrollInertia < 17 ? 17 : methodOptions.scrollInertia;\n            /* translate yx values to actual scroll-to positions */\n\n\n            to[0] = _to.call(this, to[0], "y");\n            to[1] = _to.call(this, to[1], "x");\n            /*\r\n            check if scroll-to value moves the dragger instead of content.\r\n            Only pixel values apply on dragger (e.g. 100, "100px", "-=100" etc.)\r\n            */\n\n            if (methodOptions.moveDragger) {\n              to[0] *= d.scrollRatio.y;\n              to[1] *= d.scrollRatio.x;\n            }\n\n            methodOptions.dur = _isTabHidden() ? 0 : dur; //skip animations if browser tab is hidden\n\n            setTimeout(function () {\n              /* do the scrolling */\n              if (to[0] !== null && typeof to[0] !== "undefined" && o.axis !== "x" && d.overflowed[0]) {\n                /* scroll y */\n                methodOptions.dir = "y";\n                methodOptions.overwrite = "all";\n\n                _scrollTo($this, to[0].toString(), methodOptions);\n              }\n\n              if (to[1] !== null && typeof to[1] !== "undefined" && o.axis !== "y" && d.overflowed[1]) {\n                /* scroll x */\n                methodOptions.dir = "x";\n                methodOptions.overwrite = "none";\n\n                _scrollTo($this, to[1].toString(), methodOptions);\n              }\n            }, methodOptions.timeout);\n          }\n        });\n      },\n\n      /* ---------------------------------------- */\n\n      /*\r\n      plugin stop method\r\n      stops scrolling animation\r\n      ----------------------------------------\r\n      usage: $(selector).mCustomScrollbar("stop");\r\n      */\n      stop: function stop() {\n        var selector = _selector.call(this);\n        /* validate selector */\n\n\n        return $(selector).each(function () {\n          var $this = $(this);\n\n          if ($this.data(pluginPfx)) {\n            /* check if plugin has initialized */\n            _stop($this);\n          }\n        });\n      },\n\n      /* ---------------------------------------- */\n\n      /*\r\n      plugin disable method\r\n      temporarily disables the scrollbar(s)\r\n      ----------------------------------------\r\n      usage: $(selector).mCustomScrollbar("disable",reset);\r\n      reset (boolean): resets content position to 0\r\n      */\n      disable: function disable(r) {\n        var selector = _selector.call(this);\n        /* validate selector */\n\n\n        return $(selector).each(function () {\n          var $this = $(this);\n\n          if ($this.data(pluginPfx)) {\n            /* check if plugin has initialized */\n            var d = $this.data(pluginPfx);\n\n            _autoUpdate.call(this, "remove");\n            /* remove automatic updating */\n\n\n            _unbindEvents.call(this);\n            /* unbind events */\n\n\n            if (r) {\n              _resetContentPosition.call(this);\n            }\n            /* reset content position */\n\n\n            _scrollbarVisibility.call(this, true);\n            /* show/hide scrollbar(s) */\n\n\n            $this.addClass(classes[3]);\n            /* add disable class */\n          }\n        });\n      },\n\n      /* ---------------------------------------- */\n\n      /*\r\n      plugin destroy method\r\n      completely removes the scrollbar(s) and returns the element to its original state\r\n      ----------------------------------------\r\n      usage: $(selector).mCustomScrollbar("destroy");\r\n      */\n      destroy: function destroy() {\n        var selector = _selector.call(this);\n        /* validate selector */\n\n\n        return $(selector).each(function () {\n          var $this = $(this);\n\n          if ($this.data(pluginPfx)) {\n            /* check if plugin has initialized */\n            var d = $this.data(pluginPfx),\n                o = d.opt,\n                mCustomScrollBox = $("#mCSB_" + d.idx),\n                mCSB_container = $("#mCSB_" + d.idx + "_container"),\n                scrollbar = $(".mCSB_" + d.idx + "_scrollbar");\n\n            if (o.live) {\n              removeLiveTimers(o.liveSelector || $(selector).selector);\n            }\n            /* remove live timers */\n\n\n            _autoUpdate.call(this, "remove");\n            /* remove automatic updating */\n\n\n            _unbindEvents.call(this);\n            /* unbind events */\n\n\n            _resetContentPosition.call(this);\n            /* reset content position */\n\n\n            $this.removeData(pluginPfx);\n            /* remove plugin data object */\n\n            _delete(this, "mcs");\n            /* delete callbacks object */\n\n            /* remove plugin markup */\n\n\n            scrollbar.remove();\n            /* remove scrollbar(s) first (those can be either inside or outside plugin\'s inner wrapper) */\n\n            mCSB_container.find("img." + classes[2]).removeClass(classes[2]);\n            /* remove loaded images flag */\n\n            mCustomScrollBox.replaceWith(mCSB_container.contents());\n            /* replace plugin\'s inner wrapper with the original content */\n\n            /* remove plugin classes from the element and add destroy class */\n\n            $this.removeClass(pluginNS + " _" + pluginPfx + "_" + d.idx + " " + classes[6] + " " + classes[7] + " " + classes[5] + " " + classes[3]).addClass(classes[4]);\n          }\n        });\n      }\n      /* ---------------------------------------- */\n\n    },\n\n    /*\r\n    ----------------------------------------\r\n    FUNCTIONS\r\n    ----------------------------------------\r\n    */\n\n    /* validates selector (if selector is invalid or undefined uses the default one) */\n    _selector = function _selector() {\n      return _typeof($(this)) !== "object" || $(this).length < 1 ? defaultSelector : this;\n    },\n\n    /* -------------------- */\n\n    /* changes options according to theme */\n    _theme = function _theme(obj) {\n      var fixedSizeScrollbarThemes = ["rounded", "rounded-dark", "rounded-dots", "rounded-dots-dark"],\n          nonExpandedScrollbarThemes = ["rounded-dots", "rounded-dots-dark", "3d", "3d-dark", "3d-thick", "3d-thick-dark", "inset", "inset-dark", "inset-2", "inset-2-dark", "inset-3", "inset-3-dark"],\n          disabledScrollButtonsThemes = ["minimal", "minimal-dark"],\n          enabledAutoHideScrollbarThemes = ["minimal", "minimal-dark"],\n          scrollbarPositionOutsideThemes = ["minimal", "minimal-dark"];\n      obj.autoDraggerLength = $.inArray(obj.theme, fixedSizeScrollbarThemes) > -1 ? false : obj.autoDraggerLength;\n      obj.autoExpandScrollbar = $.inArray(obj.theme, nonExpandedScrollbarThemes) > -1 ? false : obj.autoExpandScrollbar;\n      obj.scrollButtons.enable = $.inArray(obj.theme, disabledScrollButtonsThemes) > -1 ? false : obj.scrollButtons.enable;\n      obj.autoHideScrollbar = $.inArray(obj.theme, enabledAutoHideScrollbarThemes) > -1 ? true : obj.autoHideScrollbar;\n      obj.scrollbarPosition = $.inArray(obj.theme, scrollbarPositionOutsideThemes) > -1 ? "outside" : obj.scrollbarPosition;\n    },\n\n    /* -------------------- */\n\n    /* live option timers removal */\n    removeLiveTimers = function removeLiveTimers(selector) {\n      if (liveTimers[selector]) {\n        clearTimeout(liveTimers[selector]);\n\n        _delete(liveTimers, selector);\n      }\n    },\n\n    /* -------------------- */\n\n    /* normalizes axis option to valid values: "y", "x", "yx" */\n    _findAxis = function _findAxis(val) {\n      return val === "yx" || val === "xy" || val === "auto" ? "yx" : val === "x" || val === "horizontal" ? "x" : "y";\n    },\n\n    /* -------------------- */\n\n    /* normalizes scrollButtons.scrollType option to valid values: "stepless", "stepped" */\n    _findScrollButtonsType = function _findScrollButtonsType(val) {\n      return val === "stepped" || val === "pixels" || val === "step" || val === "click" ? "stepped" : "stepless";\n    },\n\n    /* -------------------- */\n\n    /* generates plugin markup */\n    _pluginMarkup = function _pluginMarkup() {\n      var $this = $(this),\n          d = $this.data(pluginPfx),\n          o = d.opt,\n          expandClass = o.autoExpandScrollbar ? " " + classes[1] + "_expand" : "",\n          scrollbar = ["<div id=\'mCSB_" + d.idx + "_scrollbar_vertical\' class=\'mCSB_scrollTools mCSB_" + d.idx + "_scrollbar mCS-" + o.theme + " mCSB_scrollTools_vertical" + expandClass + "\'><div class=\'" + classes[12] + "\'><div id=\'mCSB_" + d.idx + "_dragger_vertical\' class=\'mCSB_dragger\' style=\'position:absolute;\'><div class=\'mCSB_dragger_bar\' /><\/div><div class=\'mCSB_draggerRail\' /><\/div><\/div>", "<div id=\'mCSB_" + d.idx + "_scrollbar_horizontal\' class=\'mCSB_scrollTools mCSB_" + d.idx + "_scrollbar mCS-" + o.theme + " mCSB_scrollTools_horizontal" + expandClass + "\'><div class=\'" + classes[12] + "\'><div id=\'mCSB_" + d.idx + "_dragger_horizontal\' class=\'mCSB_dragger\' style=\'position:absolute;\'><div class=\'mCSB_dragger_bar\' /><\/div><div class=\'mCSB_draggerRail\' /><\/div><\/div>"],\n          wrapperClass = o.axis === "yx" ? "mCSB_vertical_horizontal" : o.axis === "x" ? "mCSB_horizontal" : "mCSB_vertical",\n          scrollbars = o.axis === "yx" ? scrollbar[0] + scrollbar[1] : o.axis === "x" ? scrollbar[1] : scrollbar[0],\n          contentWrapper = o.axis === "yx" ? "<div id=\'mCSB_" + d.idx + "_container_wrapper\' class=\'mCSB_container_wrapper\' />" : "",\n          autoHideClass = o.autoHideScrollbar ? " " + classes[6] : "",\n          scrollbarDirClass = o.axis !== "x" && d.langDir === "rtl" ? " " + classes[7] : "";\n\n      if (o.setWidth) {\n        $this.css("width", o.setWidth);\n      }\n      /* set element width */\n\n\n      if (o.setHeight) {\n        $this.css("height", o.setHeight);\n      }\n      /* set element height */\n\n\n      o.setLeft = o.axis !== "y" && d.langDir === "rtl" ? "989999px" : o.setLeft;\n      /* adjust left position for rtl direction */\n\n      $this.addClass(pluginNS + " _" + pluginPfx + "_" + d.idx + autoHideClass + scrollbarDirClass).wrapInner("<div id=\'mCSB_" + d.idx + "\' class=\'mCustomScrollBox mCS-" + o.theme + " " + wrapperClass + "\'><div id=\'mCSB_" + d.idx + "_container\' class=\'mCSB_container\' style=\'position:relative; top:" + o.setTop + "; left:" + o.setLeft + ";\' dir=\'" + d.langDir + "\' /><\/div>");\n      var mCustomScrollBox = $("#mCSB_" + d.idx),\n          mCSB_container = $("#mCSB_" + d.idx + "_container");\n\n      if (o.axis !== "y" && !o.advanced.autoExpandHorizontalScroll) {\n        mCSB_container.css("width", _contentWidth(mCSB_container));\n      }\n\n      if (o.scrollbarPosition === "outside") {\n        if ($this.css("position") === "static") {\n          /* requires elements with non-static position */\n          $this.css("position", "relative");\n        }\n\n        $this.css("overflow", "visible");\n        mCustomScrollBox.addClass("mCSB_outside").after(scrollbars);\n      } else {\n        mCustomScrollBox.addClass("mCSB_inside").append(scrollbars);\n        mCSB_container.wrap(contentWrapper);\n      }\n\n      _scrollButtons.call(this);\n      /* add scrollbar buttons */\n\n      /* minimum dragger length */\n\n\n      var mCSB_dragger = [$("#mCSB_" + d.idx + "_dragger_vertical"), $("#mCSB_" + d.idx + "_dragger_horizontal")];\n      mCSB_dragger[0].css("min-height", mCSB_dragger[0].height());\n      mCSB_dragger[1].css("min-width", mCSB_dragger[1].width());\n    },\n\n    /* -------------------- */\n\n    /* calculates content width */\n    _contentWidth = function _contentWidth(el) {\n      var val = [el[0].scrollWidth, Math.max.apply(Math, el.children().map(function () {\n        return $(this).outerWidth(true);\n      }).get())],\n          w = el.parent().width();\n      return val[0] > w ? val[0] : val[1] > w ? val[1] : "100%";\n    },\n\n    /* -------------------- */\n\n    /* expands content horizontally */\n    _expandContentHorizontally = function _expandContentHorizontally() {\n      var $this = $(this),\n          d = $this.data(pluginPfx),\n          o = d.opt,\n          mCSB_container = $("#mCSB_" + d.idx + "_container");\n\n      if (o.advanced.autoExpandHorizontalScroll && o.axis !== "y") {\n        /* calculate scrollWidth */\n        mCSB_container.css({\n          "width": "auto",\n          "min-width": 0,\n          "overflow-x": "scroll"\n        });\n        var w = Math.ceil(mCSB_container[0].scrollWidth);\n\n        if (o.advanced.autoExpandHorizontalScroll === 3 || o.advanced.autoExpandHorizontalScroll !== 2 && w > mCSB_container.parent().width()) {\n          mCSB_container.css({\n            "width": w,\n            "min-width": "100%",\n            "overflow-x": "inherit"\n          });\n        } else {\n          /*\r\n          wrap content with an infinite width div and set its position to absolute and width to auto.\r\n          Setting width to auto before calculating the actual width is important!\r\n          We must let the browser set the width as browser zoom values are impossible to calculate.\r\n          */\n          mCSB_container.css({\n            "overflow-x": "inherit",\n            "position": "absolute"\n          }).wrap("<div class=\'mCSB_h_wrapper\' style=\'position:relative; left:0; width:999999px;\' />").css({\n            /* set actual width, original position and un-wrap */\n\n            /*\r\n            get the exact width (with decimals) and then round-up.\r\n            Using jquery outerWidth() will round the width value which will mess up with inner elements that have non-integer width\r\n            */\n            "width": Math.ceil(mCSB_container[0].getBoundingClientRect().right + 0.4) - Math.floor(mCSB_container[0].getBoundingClientRect().left),\n            "min-width": "100%",\n            "position": "relative"\n          }).unwrap();\n        }\n      }\n    },\n\n    /* -------------------- */\n\n    /* adds scrollbar buttons */\n    _scrollButtons = function _scrollButtons() {\n      var $this = $(this),\n          d = $this.data(pluginPfx),\n          o = d.opt,\n          mCSB_scrollTools = $(".mCSB_" + d.idx + "_scrollbar:first"),\n          tabindex = !_isNumeric(o.scrollButtons.tabindex) ? "" : "tabindex=\'" + o.scrollButtons.tabindex + "\'",\n          btnHTML = ["<a href=\'#\' class=\'" + classes[13] + "\' " + tabindex + " />", "<a href=\'#\' class=\'" + classes[14] + "\' " + tabindex + " />", "<a href=\'#\' class=\'" + classes[15] + "\' " + tabindex + " />", "<a href=\'#\' class=\'" + classes[16] + "\' " + tabindex + " />"],\n          btn = [o.axis === "x" ? btnHTML[2] : btnHTML[0], o.axis === "x" ? btnHTML[3] : btnHTML[1], btnHTML[2], btnHTML[3]];\n\n      if (o.scrollButtons.enable) {\n        mCSB_scrollTools.prepend(btn[0]).append(btn[1]).next(".mCSB_scrollTools").prepend(btn[2]).append(btn[3]);\n      }\n    },\n\n    /* -------------------- */\n\n    /* auto-adjusts scrollbar dragger length */\n    _setDraggerLength = function _setDraggerLength() {\n      var $this = $(this),\n          d = $this.data(pluginPfx),\n          mCustomScrollBox = $("#mCSB_" + d.idx),\n          mCSB_container = $("#mCSB_" + d.idx + "_container"),\n          mCSB_dragger = [$("#mCSB_" + d.idx + "_dragger_vertical"), $("#mCSB_" + d.idx + "_dragger_horizontal")],\n          ratio = [mCustomScrollBox.height() / mCSB_container.outerHeight(false), mCustomScrollBox.width() / mCSB_container.outerWidth(false)],\n          l = [parseInt(mCSB_dragger[0].css("min-height")), Math.round(ratio[0] * mCSB_dragger[0].parent().height()), parseInt(mCSB_dragger[1].css("min-width")), Math.round(ratio[1] * mCSB_dragger[1].parent().width())],\n          h = oldIE && l[1] < l[0] ? l[0] : l[1],\n          w = oldIE && l[3] < l[2] ? l[2] : l[3];\n      mCSB_dragger[0].css({\n        "height": h,\n        "max-height": mCSB_dragger[0].parent().height() - 10\n      }).find(".mCSB_dragger_bar").css({\n        "line-height": l[0] + "px"\n      });\n      mCSB_dragger[1].css({\n        "width": w,\n        "max-width": mCSB_dragger[1].parent().width() - 10\n      });\n    },\n\n    /* -------------------- */\n\n    /* calculates scrollbar to content ratio */\n    _scrollRatio = function _scrollRatio() {\n      var $this = $(this),\n          d = $this.data(pluginPfx),\n          mCustomScrollBox = $("#mCSB_" + d.idx),\n          mCSB_container = $("#mCSB_" + d.idx + "_container"),\n          mCSB_dragger = [$("#mCSB_" + d.idx + "_dragger_vertical"), $("#mCSB_" + d.idx + "_dragger_horizontal")],\n          scrollAmount = [mCSB_container.outerHeight(false) - mCustomScrollBox.height(), mCSB_container.outerWidth(false) - mCustomScrollBox.width()],\n          ratio = [scrollAmount[0] / (mCSB_dragger[0].parent().height() - mCSB_dragger[0].height()), scrollAmount[1] / (mCSB_dragger[1].parent().width() - mCSB_dragger[1].width())];\n      d.scrollRatio = {\n        y: ratio[0],\n        x: ratio[1]\n      };\n    },\n\n    /* -------------------- */\n\n    /* toggles scrolling classes */\n    _onDragClasses = function _onDragClasses(el, action, xpnd) {\n      var expandClass = xpnd ? classes[0] + "_expanded" : "",\n          scrollbar = el.closest(".mCSB_scrollTools");\n\n      if (action === "active") {\n        el.toggleClass(classes[0] + " " + expandClass);\n        scrollbar.toggleClass(classes[1]);\n        el[0]._draggable = el[0]._draggable ? 0 : 1;\n      } else {\n        if (!el[0]._draggable) {\n          if (action === "hide") {\n            el.removeClass(classes[0]);\n            scrollbar.removeClass(classes[1]);\n          } else {\n            el.addClass(classes[0]);\n            scrollbar.addClass(classes[1]);\n          }\n        }\n      }\n    },\n\n    /* -------------------- */\n\n    /* checks if content overflows its container to determine if scrolling is required */\n    _overflowed = function _overflowed() {\n      var $this = $(this),\n          d = $this.data(pluginPfx),\n          mCustomScrollBox = $("#mCSB_" + d.idx),\n          mCSB_container = $("#mCSB_" + d.idx + "_container"),\n          contentHeight = d.overflowed == null ? mCSB_container.height() : mCSB_container.outerHeight(false),\n          contentWidth = d.overflowed == null ? mCSB_container.width() : mCSB_container.outerWidth(false),\n          h = mCSB_container[0].scrollHeight,\n          w = mCSB_container[0].scrollWidth;\n\n      if (h > contentHeight) {\n        contentHeight = h;\n      }\n\n      if (w > contentWidth) {\n        contentWidth = w;\n      }\n\n      return [contentHeight > mCustomScrollBox.height(), contentWidth > mCustomScrollBox.width()];\n    },\n\n    /* -------------------- */\n\n    /* resets content position to 0 */\n    _resetContentPosition = function _resetContentPosition() {\n      var $this = $(this),\n          d = $this.data(pluginPfx),\n          o = d.opt,\n          mCustomScrollBox = $("#mCSB_" + d.idx),\n          mCSB_container = $("#mCSB_" + d.idx + "_container"),\n          mCSB_dragger = [$("#mCSB_" + d.idx + "_dragger_vertical"), $("#mCSB_" + d.idx + "_dragger_horizontal")];\n\n      _stop($this);\n      /* stop any current scrolling before resetting */\n\n\n      if (o.axis !== "x" && !d.overflowed[0] || o.axis === "y" && d.overflowed[0]) {\n        /* reset y */\n        mCSB_dragger[0].add(mCSB_container).css("top", 0);\n\n        _scrollTo($this, "_resetY");\n      }\n\n      if (o.axis !== "y" && !d.overflowed[1] || o.axis === "x" && d.overflowed[1]) {\n        /* reset x */\n        var cx = dx = 0;\n\n        if (d.langDir === "rtl") {\n          /* adjust left position for rtl direction */\n          cx = mCustomScrollBox.width() - mCSB_container.outerWidth(false);\n          dx = Math.abs(cx / d.scrollRatio.x);\n        }\n\n        mCSB_container.css("left", cx);\n        mCSB_dragger[1].css("left", dx);\n\n        _scrollTo($this, "_resetX");\n      }\n    },\n\n    /* -------------------- */\n\n    /* binds scrollbar events */\n    _bindEvents = function _bindEvents() {\n      var $this = $(this),\n          d = $this.data(pluginPfx),\n          o = d.opt;\n\n      if (!d.bindEvents) {\n        /* check if events are already bound */\n        _draggable.call(this);\n\n        if (o.contentTouchScroll) {\n          _contentDraggable.call(this);\n        }\n\n        _selectable.call(this);\n\n        if (o.mouseWheel.enable) {\n          /* bind mousewheel fn when plugin is available */\n          var _mwt = function _mwt() {\n            mousewheelTimeout = setTimeout(function () {\n              if (!$.event.special.mousewheel) {\n                _mwt();\n              } else {\n                clearTimeout(mousewheelTimeout);\n\n                _mousewheel.call($this[0]);\n              }\n            }, 100);\n          };\n\n          var mousewheelTimeout;\n\n          _mwt();\n        }\n\n        _draggerRail.call(this);\n\n        _wrapperScroll.call(this);\n\n        if (o.advanced.autoScrollOnFocus) {\n          _focus.call(this);\n        }\n\n        if (o.scrollButtons.enable) {\n          _buttons.call(this);\n        }\n\n        if (o.keyboard.enable) {\n          _keyboard.call(this);\n        }\n\n        d.bindEvents = true;\n      }\n    },\n\n    /* -------------------- */\n\n    /* unbinds scrollbar events */\n    _unbindEvents = function _unbindEvents() {\n      var $this = $(this),\n          d = $this.data(pluginPfx),\n          o = d.opt,\n          namespace = pluginPfx + "_" + d.idx,\n          sb = ".mCSB_" + d.idx + "_scrollbar",\n          sel = $("#mCSB_" + d.idx + ",#mCSB_" + d.idx + "_container,#mCSB_" + d.idx + "_container_wrapper," + sb + " ." + classes[12] + ",#mCSB_" + d.idx + "_dragger_vertical,#mCSB_" + d.idx + "_dragger_horizontal," + sb + ">a"),\n          mCSB_container = $("#mCSB_" + d.idx + "_container");\n\n      if (o.advanced.releaseDraggableSelectors) {\n        sel.add($(o.advanced.releaseDraggableSelectors));\n      }\n\n      if (o.advanced.extraDraggableSelectors) {\n        sel.add($(o.advanced.extraDraggableSelectors));\n      }\n\n      if (d.bindEvents) {\n        /* check if events are bound */\n\n        /* unbind namespaced events from document/selectors */\n        $(document).add($(!_canAccessIFrame() || top.document)).unbind("." + namespace);\n        sel.each(function () {\n          $(this).unbind("." + namespace);\n        });\n        /* clear and delete timeouts/objects */\n\n        clearTimeout($this[0]._focusTimeout);\n\n        _delete($this[0], "_focusTimeout");\n\n        clearTimeout(d.sequential.step);\n\n        _delete(d.sequential, "step");\n\n        clearTimeout(mCSB_container[0].onCompleteTimeout);\n\n        _delete(mCSB_container[0], "onCompleteTimeout");\n\n        d.bindEvents = false;\n      }\n    },\n\n    /* -------------------- */\n\n    /* toggles scrollbar visibility */\n    _scrollbarVisibility = function _scrollbarVisibility(disabled) {\n      var $this = $(this),\n          d = $this.data(pluginPfx),\n          o = d.opt,\n          contentWrapper = $("#mCSB_" + d.idx + "_container_wrapper"),\n          content = contentWrapper.length ? contentWrapper : $("#mCSB_" + d.idx + "_container"),\n          scrollbar = [$("#mCSB_" + d.idx + "_scrollbar_vertical"), $("#mCSB_" + d.idx + "_scrollbar_horizontal")],\n          mCSB_dragger = [scrollbar[0].find(".mCSB_dragger"), scrollbar[1].find(".mCSB_dragger")];\n\n      if (o.axis !== "x") {\n        if (d.overflowed[0] && !disabled) {\n          scrollbar[0].add(mCSB_dragger[0]).add(scrollbar[0].children("a")).css("display", "block");\n          content.removeClass(classes[8] + " " + classes[10]);\n        } else {\n          if (o.alwaysShowScrollbar) {\n            if (o.alwaysShowScrollbar !== 2) {\n              mCSB_dragger[0].css("display", "none");\n            }\n\n            content.removeClass(classes[10]);\n          } else {\n            scrollbar[0].css("display", "none");\n            content.addClass(classes[10]);\n          }\n\n          content.addClass(classes[8]);\n        }\n      }\n\n      if (o.axis !== "y") {\n        if (d.overflowed[1] && !disabled) {\n          scrollbar[1].add(mCSB_dragger[1]).add(scrollbar[1].children("a")).css("display", "block");\n          content.removeClass(classes[9] + " " + classes[11]);\n        } else {\n          if (o.alwaysShowScrollbar) {\n            if (o.alwaysShowScrollbar !== 2) {\n              mCSB_dragger[1].css("display", "none");\n            }\n\n            content.removeClass(classes[11]);\n          } else {\n            scrollbar[1].css("display", "none");\n            content.addClass(classes[11]);\n          }\n\n          content.addClass(classes[9]);\n        }\n      }\n\n      if (!d.overflowed[0] && !d.overflowed[1]) {\n        $this.addClass(classes[5]);\n      } else {\n        $this.removeClass(classes[5]);\n      }\n    },\n\n    /* -------------------- */\n\n    /* returns input coordinates of pointer, touch and mouse events (relative to document) */\n    _coordinates = function _coordinates(e) {\n      var t = e.type,\n          o = e.target.ownerDocument !== document && frameElement !== null ? [$(frameElement).offset().top, $(frameElement).offset().left] : null,\n          io = _canAccessIFrame() && e.target.ownerDocument !== top.document && frameElement !== null ? [$(e.view.frameElement).offset().top, $(e.view.frameElement).offset().left] : [0, 0];\n\n      switch (t) {\n        case "pointerdown":\n        case "MSPointerDown":\n        case "pointermove":\n        case "MSPointerMove":\n        case "pointerup":\n        case "MSPointerUp":\n          return o ? [e.originalEvent.pageY - o[0] + io[0], e.originalEvent.pageX - o[1] + io[1], false] : [e.originalEvent.pageY, e.originalEvent.pageX, false];\n          break;\n\n        case "touchstart":\n        case "touchmove":\n        case "touchend":\n          var touch = e.originalEvent.touches[0] || e.originalEvent.changedTouches[0],\n              touches = e.originalEvent.touches.length || e.originalEvent.changedTouches.length;\n          return e.target.ownerDocument !== document ? [touch.screenY, touch.screenX, touches > 1] : [touch.pageY, touch.pageX, touches > 1];\n          break;\n\n        default:\n          return o ? [e.pageY - o[0] + io[0], e.pageX - o[1] + io[1], false] : [e.pageY, e.pageX, false];\n      }\n    },\n\n    /* -------------------- */\n\n    /*\r\n    SCROLLBAR DRAG EVENTS\r\n    scrolls content via scrollbar dragging\r\n    */\n    _draggable = function _draggable() {\n      var $this = $(this),\n          d = $this.data(pluginPfx),\n          o = d.opt,\n          namespace = pluginPfx + "_" + d.idx,\n          draggerId = ["mCSB_" + d.idx + "_dragger_vertical", "mCSB_" + d.idx + "_dragger_horizontal"],\n          mCSB_container = $("#mCSB_" + d.idx + "_container"),\n          mCSB_dragger = $("#" + draggerId[0] + ",#" + draggerId[1]),\n          draggable,\n          dragY,\n          dragX,\n          rds = o.advanced.releaseDraggableSelectors ? mCSB_dragger.add($(o.advanced.releaseDraggableSelectors)) : mCSB_dragger,\n          eds = o.advanced.extraDraggableSelectors ? $(!_canAccessIFrame() || top.document).add($(o.advanced.extraDraggableSelectors)) : $(!_canAccessIFrame() || top.document);\n      mCSB_dragger.bind("contextmenu." + namespace, function (e) {\n        e.preventDefault(); //prevent right click\n      }).bind("mousedown." + namespace + " touchstart." + namespace + " pointerdown." + namespace + " MSPointerDown." + namespace, function (e) {\n        e.stopImmediatePropagation();\n        e.preventDefault();\n\n        if (!_mouseBtnLeft(e)) {\n          return;\n        }\n        /* left mouse button only */\n\n\n        touchActive = true;\n\n        if (oldIE) {\n          document.onselectstart = function () {\n            return false;\n          };\n        }\n        /* disable text selection for IE < 9 */\n\n\n        _iframe.call(mCSB_container, false);\n        /* enable scrollbar dragging over iframes by disabling their events */\n\n\n        _stop($this);\n\n        draggable = $(this);\n        var offset = draggable.offset(),\n            y = _coordinates(e)[0] - offset.top,\n            x = _coordinates(e)[1] - offset.left,\n            h = draggable.height() + offset.top,\n            w = draggable.width() + offset.left;\n\n        if (y < h && y > 0 && x < w && x > 0) {\n          dragY = y;\n          dragX = x;\n        }\n\n        _onDragClasses(draggable, "active", o.autoExpandScrollbar);\n      }).bind("touchmove." + namespace, function (e) {\n        e.stopImmediatePropagation();\n        e.preventDefault();\n        var offset = draggable.offset(),\n            y = _coordinates(e)[0] - offset.top,\n            x = _coordinates(e)[1] - offset.left;\n\n        _drag(dragY, dragX, y, x);\n      });\n      $(document).add(eds).bind("mousemove." + namespace + " pointermove." + namespace + " MSPointerMove." + namespace, function (e) {\n        if (draggable) {\n          var offset = draggable.offset(),\n              y = _coordinates(e)[0] - offset.top,\n              x = _coordinates(e)[1] - offset.left;\n\n          if (dragY === y && dragX === x) {\n            return;\n          }\n          /* has it really moved? */\n\n\n          _drag(dragY, dragX, y, x);\n        }\n      }).add(rds).bind("mouseup." + namespace + " touchend." + namespace + " pointerup." + namespace + " MSPointerUp." + namespace, function (e) {\n        if (draggable) {\n          _onDragClasses(draggable, "active", o.autoExpandScrollbar);\n\n          draggable = null;\n        }\n\n        touchActive = false;\n\n        if (oldIE) {\n          document.onselectstart = null;\n        }\n        /* enable text selection for IE < 9 */\n\n\n        _iframe.call(mCSB_container, true);\n        /* enable iframes events */\n\n      });\n\n      function _drag(dragY, dragX, y, x) {\n        mCSB_container[0].idleTimer = o.scrollInertia < 233 ? 250 : 0;\n\n        if (draggable.attr("id") === draggerId[1]) {\n          var dir = "x",\n              to = (draggable[0].offsetLeft - dragX + x) * d.scrollRatio.x;\n        } else {\n          var dir = "y",\n              to = (draggable[0].offsetTop - dragY + y) * d.scrollRatio.y;\n        }\n\n        _scrollTo($this, to.toString(), {\n          dir: dir,\n          drag: true\n        });\n      }\n    },\n\n    /* -------------------- */\n\n    /*\r\n    TOUCH SWIPE EVENTS\r\n    scrolls content via touch swipe\r\n    Emulates the native touch-swipe scrolling with momentum found in iOS, Android and WP devices\r\n    */\n    _contentDraggable = function _contentDraggable() {\n      var $this = $(this),\n          d = $this.data(pluginPfx),\n          o = d.opt,\n          namespace = pluginPfx + "_" + d.idx,\n          mCustomScrollBox = $("#mCSB_" + d.idx),\n          mCSB_container = $("#mCSB_" + d.idx + "_container"),\n          mCSB_dragger = [$("#mCSB_" + d.idx + "_dragger_vertical"), $("#mCSB_" + d.idx + "_dragger_horizontal")],\n          draggable,\n          dragY,\n          dragX,\n          touchStartY,\n          touchStartX,\n          touchMoveY = [],\n          touchMoveX = [],\n          startTime,\n          runningTime,\n          endTime,\n          distance,\n          speed,\n          amount,\n          durA = 0,\n          durB,\n          overwrite = o.axis === "yx" ? "none" : "all",\n          touchIntent = [],\n          touchDrag,\n          docDrag,\n          iframe = mCSB_container.find("iframe"),\n          events = ["touchstart." + namespace + " pointerdown." + namespace + " MSPointerDown." + namespace, //start\n      "touchmove." + namespace + " pointermove." + namespace + " MSPointerMove." + namespace, //move\n      "touchend." + namespace + " pointerup." + namespace + " MSPointerUp." + namespace //end\n      ],\n          touchAction = document.body.style.touchAction !== undefined && document.body.style.touchAction !== "";\n      mCSB_container.bind(events[0], function (e) {\n        _onTouchstart(e);\n      }).bind(events[1], function (e) {\n        _onTouchmove(e);\n      });\n      mCustomScrollBox.bind(events[0], function (e) {\n        _onTouchstart2(e);\n      }).bind(events[2], function (e) {\n        _onTouchend(e);\n      });\n\n      if (iframe.length) {\n        iframe.each(function () {\n          $(this).bind("load", function () {\n            /* bind events on accessible iframes */\n            if (_canAccessIFrame(this)) {\n              $(this.contentDocument || this.contentWindow.document).bind(events[0], function (e) {\n                _onTouchstart(e);\n\n                _onTouchstart2(e);\n              }).bind(events[1], function (e) {\n                _onTouchmove(e);\n              }).bind(events[2], function (e) {\n                _onTouchend(e);\n              });\n            }\n          });\n        });\n      }\n\n      function _onTouchstart(e) {\n        if (!_pointerTouch(e) || touchActive || _coordinates(e)[2]) {\n          touchable = 0;\n          return;\n        }\n\n        touchable = 1;\n        touchDrag = 0;\n        docDrag = 0;\n        draggable = 1;\n        $this.removeClass("mCS_touch_action");\n        var offset = mCSB_container.offset();\n        dragY = _coordinates(e)[0] - offset.top;\n        dragX = _coordinates(e)[1] - offset.left;\n        touchIntent = [_coordinates(e)[0], _coordinates(e)[1]];\n      }\n\n      function _onTouchmove(e) {\n        if (!_pointerTouch(e) || touchActive || _coordinates(e)[2]) {\n          return;\n        }\n\n        if (!o.documentTouchScroll) {\n          e.preventDefault();\n        }\n\n        e.stopImmediatePropagation();\n\n        if (docDrag && !touchDrag) {\n          return;\n        }\n\n        if (draggable) {\n          runningTime = _getTime();\n          var offset = mCustomScrollBox.offset(),\n              y = _coordinates(e)[0] - offset.top,\n              x = _coordinates(e)[1] - offset.left,\n              easing = "mcsLinearOut";\n          touchMoveY.push(y);\n          touchMoveX.push(x);\n          touchIntent[2] = Math.abs(_coordinates(e)[0] - touchIntent[0]);\n          touchIntent[3] = Math.abs(_coordinates(e)[1] - touchIntent[1]);\n\n          if (d.overflowed[0]) {\n            var limit = mCSB_dragger[0].parent().height() - mCSB_dragger[0].height(),\n                prevent = dragY - y > 0 && y - dragY > -(limit * d.scrollRatio.y) && (touchIntent[3] * 2 < touchIntent[2] || o.axis === "yx");\n          }\n\n          if (d.overflowed[1]) {\n            var limitX = mCSB_dragger[1].parent().width() - mCSB_dragger[1].width(),\n                preventX = dragX - x > 0 && x - dragX > -(limitX * d.scrollRatio.x) && (touchIntent[2] * 2 < touchIntent[3] || o.axis === "yx");\n          }\n\n          if (prevent || preventX) {\n            /* prevent native document scrolling */\n            if (!touchAction) {\n              e.preventDefault();\n            }\n\n            touchDrag = 1;\n          } else {\n            docDrag = 1;\n            $this.addClass("mCS_touch_action");\n          }\n\n          if (touchAction) {\n            e.preventDefault();\n          }\n\n          amount = o.axis === "yx" ? [dragY - y, dragX - x] : o.axis === "x" ? [null, dragX - x] : [dragY - y, null];\n          mCSB_container[0].idleTimer = 250;\n\n          if (d.overflowed[0]) {\n            _drag(amount[0], durA, easing, "y", "all", true);\n          }\n\n          if (d.overflowed[1]) {\n            _drag(amount[1], durA, easing, "x", overwrite, true);\n          }\n        }\n      }\n\n      function _onTouchstart2(e) {\n        if (!_pointerTouch(e) || touchActive || _coordinates(e)[2]) {\n          touchable = 0;\n          return;\n        }\n\n        touchable = 1;\n        e.stopImmediatePropagation();\n\n        _stop($this);\n\n        startTime = _getTime();\n        var offset = mCustomScrollBox.offset();\n        touchStartY = _coordinates(e)[0] - offset.top;\n        touchStartX = _coordinates(e)[1] - offset.left;\n        touchMoveY = [];\n        touchMoveX = [];\n      }\n\n      function _onTouchend(e) {\n        if (!_pointerTouch(e) || touchActive || _coordinates(e)[2]) {\n          return;\n        }\n\n        draggable = 0;\n        e.stopImmediatePropagation();\n        touchDrag = 0;\n        docDrag = 0;\n        endTime = _getTime();\n        var offset = mCustomScrollBox.offset(),\n            y = _coordinates(e)[0] - offset.top,\n            x = _coordinates(e)[1] - offset.left;\n\n        if (endTime - runningTime > 30) {\n          return;\n        }\n\n        speed = 1000 / (endTime - startTime);\n        var easing = "mcsEaseOut",\n            slow = speed < 2.5,\n            diff = slow ? [touchMoveY[touchMoveY.length - 2], touchMoveX[touchMoveX.length - 2]] : [0, 0];\n        distance = slow ? [y - diff[0], x - diff[1]] : [y - touchStartY, x - touchStartX];\n        var absDistance = [Math.abs(distance[0]), Math.abs(distance[1])];\n        speed = slow ? [Math.abs(distance[0] / 4), Math.abs(distance[1] / 4)] : [speed, speed];\n        var a = [Math.abs(mCSB_container[0].offsetTop) - distance[0] * _m(absDistance[0] / speed[0], speed[0]), Math.abs(mCSB_container[0].offsetLeft) - distance[1] * _m(absDistance[1] / speed[1], speed[1])];\n        amount = o.axis === "yx" ? [a[0], a[1]] : o.axis === "x" ? [null, a[1]] : [a[0], null];\n        durB = [absDistance[0] * 4 + o.scrollInertia, absDistance[1] * 4 + o.scrollInertia];\n        var md = parseInt(o.contentTouchScroll) || 0;\n        /* absolute minimum distance required */\n\n        amount[0] = absDistance[0] > md ? amount[0] : 0;\n        amount[1] = absDistance[1] > md ? amount[1] : 0;\n\n        if (d.overflowed[0]) {\n          _drag(amount[0], durB[0], easing, "y", overwrite, false);\n        }\n\n        if (d.overflowed[1]) {\n          _drag(amount[1], durB[1], easing, "x", overwrite, false);\n        }\n      }\n\n      function _m(ds, s) {\n        var r = [s * 1.5, s * 2, s / 1.5, s / 2];\n\n        if (ds > 90) {\n          return s > 4 ? r[0] : r[3];\n        } else if (ds > 60) {\n          return s > 3 ? r[3] : r[2];\n        } else if (ds > 30) {\n          return s > 8 ? r[1] : s > 6 ? r[0] : s > 4 ? s : r[2];\n        } else {\n          return s > 8 ? s : r[3];\n        }\n      }\n\n      function _drag(amount, dur, easing, dir, overwrite, drag) {\n        if (!amount) {\n          return;\n        }\n\n        _scrollTo($this, amount.toString(), {\n          dur: dur,\n          scrollEasing: easing,\n          dir: dir,\n          overwrite: overwrite,\n          drag: drag\n        });\n      }\n    },\n\n    /* -------------------- */\n\n    /*\r\n    SELECT TEXT EVENTS\r\n    scrolls content when text is selected\r\n    */\n    _selectable = function _selectable() {\n      var $this = $(this),\n          d = $this.data(pluginPfx),\n          o = d.opt,\n          seq = d.sequential,\n          namespace = pluginPfx + "_" + d.idx,\n          mCSB_container = $("#mCSB_" + d.idx + "_container"),\n          wrapper = mCSB_container.parent(),\n          action;\n      mCSB_container.bind("mousedown." + namespace, function (e) {\n        if (touchable) {\n          return;\n        }\n\n        if (!action) {\n          action = 1;\n          touchActive = true;\n        }\n      }).add(document).bind("mousemove." + namespace, function (e) {\n        if (!touchable && action && _sel()) {\n          var offset = mCSB_container.offset(),\n              y = _coordinates(e)[0] - offset.top + mCSB_container[0].offsetTop,\n              x = _coordinates(e)[1] - offset.left + mCSB_container[0].offsetLeft;\n\n          if (y > 0 && y < wrapper.height() && x > 0 && x < wrapper.width()) {\n            if (seq.step) {\n              _seq("off", null, "stepped");\n            }\n          } else {\n            if (o.axis !== "x" && d.overflowed[0]) {\n              if (y < 0) {\n                _seq("on", 38);\n              } else if (y > wrapper.height()) {\n                _seq("on", 40);\n              }\n            }\n\n            if (o.axis !== "y" && d.overflowed[1]) {\n              if (x < 0) {\n                _seq("on", 37);\n              } else if (x > wrapper.width()) {\n                _seq("on", 39);\n              }\n            }\n          }\n        }\n      }).bind("mouseup." + namespace + " dragend." + namespace, function (e) {\n        if (touchable) {\n          return;\n        }\n\n        if (action) {\n          action = 0;\n\n          _seq("off", null);\n        }\n\n        touchActive = false;\n      });\n\n      function _sel() {\n        return window.getSelection ? window.getSelection().toString() : document.selection && document.selection.type != "Control" ? document.selection.createRange().text : 0;\n      }\n\n      function _seq(a, c, s) {\n        seq.type = s && action ? "stepped" : "stepless";\n        seq.scrollAmount = 10;\n\n        _sequentialScroll($this, a, c, "mcsLinearOut", s ? 60 : null);\n      }\n    },\n\n    /* -------------------- */\n\n    /*\r\n    MOUSE WHEEL EVENT\r\n    scrolls content via mouse-wheel\r\n    via mouse-wheel plugin (https://github.com/brandonaaron/jquery-mousewheel)\r\n    */\n    _mousewheel = function _mousewheel() {\n      if (!$(this).data(pluginPfx)) {\n        return;\n      }\n      /* Check if the scrollbar is ready to use mousewheel events (issue: #185) */\n\n\n      var $this = $(this),\n          d = $this.data(pluginPfx),\n          o = d.opt,\n          namespace = pluginPfx + "_" + d.idx,\n          mCustomScrollBox = $("#mCSB_" + d.idx),\n          mCSB_dragger = [$("#mCSB_" + d.idx + "_dragger_vertical"), $("#mCSB_" + d.idx + "_dragger_horizontal")],\n          iframe = $("#mCSB_" + d.idx + "_container").find("iframe");\n\n      if (iframe.length) {\n        iframe.each(function () {\n          $(this).bind("load", function () {\n            /* bind events on accessible iframes */\n            if (_canAccessIFrame(this)) {\n              $(this.contentDocument || this.contentWindow.document).bind("mousewheel." + namespace, function (e, delta) {\n                _onMousewheel(e, delta);\n              });\n            }\n          });\n        });\n      }\n\n      mCustomScrollBox.bind("mousewheel." + namespace, function (e, delta) {\n        _onMousewheel(e, delta);\n      });\n\n      function _onMousewheel(e, delta) {\n        _stop($this);\n\n        if (_disableMousewheel($this, e.target)) {\n          return;\n        }\n        /* disables mouse-wheel when hovering specific elements */\n\n\n        var deltaFactor = o.mouseWheel.deltaFactor !== "auto" ? parseInt(o.mouseWheel.deltaFactor) : oldIE && e.deltaFactor < 100 ? 100 : e.deltaFactor || 100,\n            dur = o.scrollInertia;\n\n        if (o.axis === "x" || o.mouseWheel.axis === "x") {\n          var dir = "x",\n              px = [Math.round(deltaFactor * d.scrollRatio.x), parseInt(o.mouseWheel.scrollAmount)],\n              amount = o.mouseWheel.scrollAmount !== "auto" ? px[1] : px[0] >= mCustomScrollBox.width() ? mCustomScrollBox.width() * 0.9 : px[0],\n              contentPos = Math.abs($("#mCSB_" + d.idx + "_container")[0].offsetLeft),\n              draggerPos = mCSB_dragger[1][0].offsetLeft,\n              limit = mCSB_dragger[1].parent().width() - mCSB_dragger[1].width(),\n              dlt = o.mouseWheel.axis === "y" ? e.deltaY || delta : e.deltaX;\n        } else {\n          var dir = "y",\n              px = [Math.round(deltaFactor * d.scrollRatio.y), parseInt(o.mouseWheel.scrollAmount)],\n              amount = o.mouseWheel.scrollAmount !== "auto" ? px[1] : px[0] >= mCustomScrollBox.height() ? mCustomScrollBox.height() * 0.9 : px[0],\n              contentPos = Math.abs($("#mCSB_" + d.idx + "_container")[0].offsetTop),\n              draggerPos = mCSB_dragger[0][0].offsetTop,\n              limit = mCSB_dragger[0].parent().height() - mCSB_dragger[0].height(),\n              dlt = e.deltaY || delta;\n        }\n\n        if (dir === "y" && !d.overflowed[0] || dir === "x" && !d.overflowed[1]) {\n          return;\n        }\n\n        if (o.mouseWheel.invert || e.webkitDirectionInvertedFromDevice) {\n          dlt = -dlt;\n        }\n\n        if (o.mouseWheel.normalizeDelta) {\n          dlt = dlt < 0 ? -1 : 1;\n        }\n\n        if (dlt > 0 && draggerPos !== 0 || dlt < 0 && draggerPos !== limit || o.mouseWheel.preventDefault) {\n          e.stopImmediatePropagation();\n          e.preventDefault();\n        }\n\n        if (e.deltaFactor < 5 && !o.mouseWheel.normalizeDelta) {\n          //very low deltaFactor values mean some kind of delta acceleration (e.g. osx trackpad), so adjusting scrolling accordingly\n          amount = e.deltaFactor;\n          dur = 17;\n        }\n\n        _scrollTo($this, (contentPos - dlt * amount).toString(), {\n          dir: dir,\n          dur: dur\n        });\n      }\n    },\n\n    /* -------------------- */\n\n    /* checks if iframe can be accessed */\n    _canAccessIFrameCache = new Object(),\n        _canAccessIFrame = function _canAccessIFrame(iframe) {\n      var result = false,\n          cacheKey = false,\n          html = null;\n\n      if (iframe === undefined) {\n        cacheKey = "#empty";\n      } else if ($(iframe).attr("id") !== undefined) {\n        cacheKey = $(iframe).attr("id");\n      }\n\n      if (cacheKey !== false && _canAccessIFrameCache[cacheKey] !== undefined) {\n        return _canAccessIFrameCache[cacheKey];\n      }\n\n      if (!iframe) {\n        try {\n          var doc = top.document;\n          html = doc.body.innerHTML;\n        } catch (err) {\n          /* do nothing */\n        }\n\n        result = html !== null;\n      } else {\n        try {\n          var doc = iframe.contentDocument || iframe.contentWindow.document;\n          html = doc.body.innerHTML;\n        } catch (err) {\n          /* do nothing */\n        }\n\n        result = html !== null;\n      }\n\n      if (cacheKey !== false) {\n        _canAccessIFrameCache[cacheKey] = result;\n      }\n\n      return result;\n    },\n\n    /* -------------------- */\n\n    /* switches iframe\'s pointer-events property (drag, mousewheel etc. over cross-domain iframes) */\n    _iframe = function _iframe(evt) {\n      var el = this.find("iframe");\n\n      if (!el.length) {\n        return;\n      }\n      /* check if content contains iframes */\n\n\n      var val = !evt ? "none" : "auto";\n      el.css("pointer-events", val);\n      /* for IE11, iframe\'s display property should not be "block" */\n    },\n\n    /* -------------------- */\n\n    /* disables mouse-wheel when hovering specific elements like select, datalist etc. */\n    _disableMousewheel = function _disableMousewheel(el, target) {\n      var tag = target.nodeName.toLowerCase(),\n          tags = el.data(pluginPfx).opt.mouseWheel.disableOver,\n\n      /* elements that require focus */\n      focusTags = ["select", "textarea"];\n      return $.inArray(tag, tags) > -1 && !($.inArray(tag, focusTags) > -1 && !$(target).is(":focus"));\n    },\n\n    /* -------------------- */\n\n    /*\r\n    DRAGGER RAIL CLICK EVENT\r\n    scrolls content via dragger rail\r\n    */\n    _draggerRail = function _draggerRail() {\n      var $this = $(this),\n          d = $this.data(pluginPfx),\n          namespace = pluginPfx + "_" + d.idx,\n          mCSB_container = $("#mCSB_" + d.idx + "_container"),\n          wrapper = mCSB_container.parent(),\n          mCSB_draggerContainer = $(".mCSB_" + d.idx + "_scrollbar ." + classes[12]),\n          clickable;\n      mCSB_draggerContainer.bind("mousedown." + namespace + " touchstart." + namespace + " pointerdown." + namespace + " MSPointerDown." + namespace, function (e) {\n        touchActive = true;\n\n        if (!$(e.target).hasClass("mCSB_dragger")) {\n          clickable = 1;\n        }\n      }).bind("touchend." + namespace + " pointerup." + namespace + " MSPointerUp." + namespace, function (e) {\n        touchActive = false;\n      }).bind("click." + namespace, function (e) {\n        if (!clickable) {\n          return;\n        }\n\n        clickable = 0;\n\n        if ($(e.target).hasClass(classes[12]) || $(e.target).hasClass("mCSB_draggerRail")) {\n          _stop($this);\n\n          var el = $(this),\n              mCSB_dragger = el.find(".mCSB_dragger");\n\n          if (el.parent(".mCSB_scrollTools_horizontal").length > 0) {\n            if (!d.overflowed[1]) {\n              return;\n            }\n\n            var dir = "x",\n                clickDir = e.pageX > mCSB_dragger.offset().left ? -1 : 1,\n                to = Math.abs(mCSB_container[0].offsetLeft) - clickDir * (wrapper.width() * 0.9);\n          } else {\n            if (!d.overflowed[0]) {\n              return;\n            }\n\n            var dir = "y",\n                clickDir = e.pageY > mCSB_dragger.offset().top ? -1 : 1,\n                to = Math.abs(mCSB_container[0].offsetTop) - clickDir * (wrapper.height() * 0.9);\n          }\n\n          _scrollTo($this, to.toString(), {\n            dir: dir,\n            scrollEasing: "mcsEaseInOut"\n          });\n        }\n      });\n    },\n\n    /* -------------------- */\n\n    /*\r\n    FOCUS EVENT\r\n    scrolls content via element focus (e.g. clicking an input, pressing TAB key etc.)\r\n    */\n    _focus = function _focus() {\n      var $this = $(this),\n          d = $this.data(pluginPfx),\n          o = d.opt,\n          namespace = pluginPfx + "_" + d.idx,\n          mCSB_container = $("#mCSB_" + d.idx + "_container"),\n          wrapper = mCSB_container.parent();\n      mCSB_container.bind("focusin." + namespace, function (e) {\n        var el = $(document.activeElement),\n            nested = mCSB_container.find(".mCustomScrollBox").length,\n            dur = 0;\n\n        if (!el.is(o.advanced.autoScrollOnFocus)) {\n          return;\n        }\n\n        _stop($this);\n\n        clearTimeout($this[0]._focusTimeout);\n        $this[0]._focusTimer = nested ? (dur + 17) * nested : 0;\n        $this[0]._focusTimeout = setTimeout(function () {\n          var to = [_childPos(el)[0], _childPos(el)[1]],\n              contentPos = [mCSB_container[0].offsetTop, mCSB_container[0].offsetLeft],\n              isVisible = [contentPos[0] + to[0] >= 0 && contentPos[0] + to[0] < wrapper.height() - el.outerHeight(false), contentPos[1] + to[1] >= 0 && contentPos[0] + to[1] < wrapper.width() - el.outerWidth(false)],\n              overwrite = o.axis === "yx" && !isVisible[0] && !isVisible[1] ? "none" : "all";\n\n          if (o.axis !== "x" && !isVisible[0]) {\n            _scrollTo($this, to[0].toString(), {\n              dir: "y",\n              scrollEasing: "mcsEaseInOut",\n              overwrite: overwrite,\n              dur: dur\n            });\n          }\n\n          if (o.axis !== "y" && !isVisible[1]) {\n            _scrollTo($this, to[1].toString(), {\n              dir: "x",\n              scrollEasing: "mcsEaseInOut",\n              overwrite: overwrite,\n              dur: dur\n            });\n          }\n        }, $this[0]._focusTimer);\n      });\n    },\n\n    /* -------------------- */\n\n    /* sets content wrapper scrollTop/scrollLeft always to 0 */\n    _wrapperScroll = function _wrapperScroll() {\n      var $this = $(this),\n          d = $this.data(pluginPfx),\n          namespace = pluginPfx + "_" + d.idx,\n          wrapper = $("#mCSB_" + d.idx + "_container").parent();\n      wrapper.bind("scroll." + namespace, function (e) {\n        if (wrapper.scrollTop() !== 0 || wrapper.scrollLeft() !== 0) {\n          $(".mCSB_" + d.idx + "_scrollbar").css("visibility", "hidden");\n          /* hide scrollbar(s) */\n        }\n      });\n    },\n\n    /* -------------------- */\n\n    /*\r\n    BUTTONS EVENTS\r\n    scrolls content via up, down, left and right buttons\r\n    */\n    _buttons = function _buttons() {\n      var $this = $(this),\n          d = $this.data(pluginPfx),\n          o = d.opt,\n          seq = d.sequential,\n          namespace = pluginPfx + "_" + d.idx,\n          sel = ".mCSB_" + d.idx + "_scrollbar",\n          btn = $(sel + ">a");\n      btn.bind("contextmenu." + namespace, function (e) {\n        e.preventDefault(); //prevent right click\n      }).bind("mousedown." + namespace + " touchstart." + namespace + " pointerdown." + namespace + " MSPointerDown." + namespace + " mouseup." + namespace + " touchend." + namespace + " pointerup." + namespace + " MSPointerUp." + namespace + " mouseout." + namespace + " pointerout." + namespace + " MSPointerOut." + namespace + " click." + namespace, function (e) {\n        e.preventDefault();\n\n        if (!_mouseBtnLeft(e)) {\n          return;\n        }\n        /* left mouse button only */\n\n\n        var btnClass = $(this).attr("class");\n        seq.type = o.scrollButtons.scrollType;\n\n        switch (e.type) {\n          case "mousedown":\n          case "touchstart":\n          case "pointerdown":\n          case "MSPointerDown":\n            if (seq.type === "stepped") {\n              return;\n            }\n\n            touchActive = true;\n            d.tweenRunning = false;\n\n            _seq("on", btnClass);\n\n            break;\n\n          case "mouseup":\n          case "touchend":\n          case "pointerup":\n          case "MSPointerUp":\n          case "mouseout":\n          case "pointerout":\n          case "MSPointerOut":\n            if (seq.type === "stepped") {\n              return;\n            }\n\n            touchActive = false;\n\n            if (seq.dir) {\n              _seq("off", btnClass);\n            }\n\n            break;\n\n          case "click":\n            if (seq.type !== "stepped" || d.tweenRunning) {\n              return;\n            }\n\n            _seq("on", btnClass);\n\n            break;\n        }\n\n        function _seq(a, c) {\n          seq.scrollAmount = o.scrollButtons.scrollAmount;\n\n          _sequentialScroll($this, a, c);\n        }\n      });\n    },\n\n    /* -------------------- */\n\n    /*\r\n    KEYBOARD EVENTS\r\n    scrolls content via keyboard\r\n    Keys: up arrow, down arrow, left arrow, right arrow, PgUp, PgDn, Home, End\r\n    */\n    _keyboard = function _keyboard() {\n      var $this = $(this),\n          d = $this.data(pluginPfx),\n          o = d.opt,\n          seq = d.sequential,\n          namespace = pluginPfx + "_" + d.idx,\n          mCustomScrollBox = $("#mCSB_" + d.idx),\n          mCSB_container = $("#mCSB_" + d.idx + "_container"),\n          wrapper = mCSB_container.parent(),\n          editables = "input,textarea,select,datalist,keygen,[contenteditable=\'true\']",\n          iframe = mCSB_container.find("iframe"),\n          events = ["blur." + namespace + " keydown." + namespace + " keyup." + namespace];\n\n      if (iframe.length) {\n        iframe.each(function () {\n          $(this).bind("load", function () {\n            /* bind events on accessible iframes */\n            if (_canAccessIFrame(this)) {\n              $(this.contentDocument || this.contentWindow.document).bind(events[0], function (e) {\n                _onKeyboard(e);\n              });\n            }\n          });\n        });\n      }\n\n      mCustomScrollBox.attr("tabindex", "0").bind(events[0], function (e) {\n        _onKeyboard(e);\n      });\n\n      function _onKeyboard(e) {\n        switch (e.type) {\n          case "blur":\n            if (d.tweenRunning && seq.dir) {\n              _seq("off", null);\n            }\n\n            break;\n\n          case "keydown":\n          case "keyup":\n            var code = e.keyCode ? e.keyCode : e.which,\n                action = "on";\n\n            if (o.axis !== "x" && (code === 38 || code === 40) || o.axis !== "y" && (code === 37 || code === 39)) {\n              /* up (38), down (40), left (37), right (39) arrows */\n              if ((code === 38 || code === 40) && !d.overflowed[0] || (code === 37 || code === 39) && !d.overflowed[1]) {\n                return;\n              }\n\n              if (e.type === "keyup") {\n                action = "off";\n              }\n\n              if (!$(document.activeElement).is(editables)) {\n                e.preventDefault();\n                e.stopImmediatePropagation();\n\n                _seq(action, code);\n              }\n            } else if (code === 33 || code === 34) {\n              /* PgUp (33), PgDn (34) */\n              if (d.overflowed[0] || d.overflowed[1]) {\n                e.preventDefault();\n                e.stopImmediatePropagation();\n              }\n\n              if (e.type === "keyup") {\n                _stop($this);\n\n                var keyboardDir = code === 34 ? -1 : 1;\n\n                if (o.axis === "x" || o.axis === "yx" && d.overflowed[1] && !d.overflowed[0]) {\n                  var dir = "x",\n                      to = Math.abs(mCSB_container[0].offsetLeft) - keyboardDir * (wrapper.width() * 0.9);\n                } else {\n                  var dir = "y",\n                      to = Math.abs(mCSB_container[0].offsetTop) - keyboardDir * (wrapper.height() * 0.9);\n                }\n\n                _scrollTo($this, to.toString(), {\n                  dir: dir,\n                  scrollEasing: "mcsEaseInOut"\n                });\n              }\n            } else if (code === 35 || code === 36) {\n              /* End (35), Home (36) */\n              if (!$(document.activeElement).is(editables)) {\n                if (d.overflowed[0] || d.overflowed[1]) {\n                  e.preventDefault();\n                  e.stopImmediatePropagation();\n                }\n\n                if (e.type === "keyup") {\n                  if (o.axis === "x" || o.axis === "yx" && d.overflowed[1] && !d.overflowed[0]) {\n                    var dir = "x",\n                        to = code === 35 ? Math.abs(wrapper.width() - mCSB_container.outerWidth(false)) : 0;\n                  } else {\n                    var dir = "y",\n                        to = code === 35 ? Math.abs(wrapper.height() - mCSB_container.outerHeight(false)) : 0;\n                  }\n\n                  _scrollTo($this, to.toString(), {\n                    dir: dir,\n                    scrollEasing: "mcsEaseInOut"\n                  });\n                }\n              }\n            }\n\n            break;\n        }\n\n        function _seq(a, c) {\n          seq.type = o.keyboard.scrollType;\n          seq.scrollAmount = o.keyboard.scrollAmount;\n\n          if (seq.type === "stepped" && d.tweenRunning) {\n            return;\n          }\n\n          _sequentialScroll($this, a, c);\n        }\n      }\n    },\n\n    /* -------------------- */\n\n    /* scrolls content sequentially (used when scrolling via buttons, keyboard arrows etc.) */\n    _sequentialScroll = function _sequentialScroll(el, action, trigger, e, s) {\n      var d = el.data(pluginPfx),\n          o = d.opt,\n          seq = d.sequential,\n          mCSB_container = $("#mCSB_" + d.idx + "_container"),\n          once = seq.type === "stepped" ? true : false,\n          steplessSpeed = o.scrollInertia < 26 ? 26 : o.scrollInertia,\n\n      /* 26/1.5=17 */\n      steppedSpeed = o.scrollInertia < 1 ? 17 : o.scrollInertia;\n\n      switch (action) {\n        case "on":\n          seq.dir = [trigger === classes[16] || trigger === classes[15] || trigger === 39 || trigger === 37 ? "x" : "y", trigger === classes[13] || trigger === classes[15] || trigger === 38 || trigger === 37 ? -1 : 1];\n\n          _stop(el);\n\n          if (_isNumeric(trigger) && seq.type === "stepped") {\n            return;\n          }\n\n          _on(once);\n\n          break;\n\n        case "off":\n          _off();\n\n          if (once || d.tweenRunning && seq.dir) {\n            _on(true);\n          }\n\n          break;\n      }\n      /* starts sequence */\n\n\n      function _on(once) {\n        if (o.snapAmount) {\n          seq.scrollAmount = !(o.snapAmount instanceof Array) ? o.snapAmount : seq.dir[0] === "x" ? o.snapAmount[1] : o.snapAmount[0];\n        }\n        /* scrolling snapping */\n\n\n        var c = seq.type !== "stepped",\n\n        /* continuous scrolling */\n        t = s ? s : !once ? 1000 / 60 : c ? steplessSpeed / 1.5 : steppedSpeed,\n\n        /* timer */\n        m = !once ? 2.5 : c ? 7.5 : 40,\n\n        /* multiplier */\n        contentPos = [Math.abs(mCSB_container[0].offsetTop), Math.abs(mCSB_container[0].offsetLeft)],\n            ratio = [d.scrollRatio.y > 10 ? 10 : d.scrollRatio.y, d.scrollRatio.x > 10 ? 10 : d.scrollRatio.x],\n            amount = seq.dir[0] === "x" ? contentPos[1] + seq.dir[1] * (ratio[1] * m) : contentPos[0] + seq.dir[1] * (ratio[0] * m),\n            px = seq.dir[0] === "x" ? contentPos[1] + seq.dir[1] * parseInt(seq.scrollAmount) : contentPos[0] + seq.dir[1] * parseInt(seq.scrollAmount),\n            to = seq.scrollAmount !== "auto" ? px : amount,\n            easing = e ? e : !once ? "mcsLinear" : c ? "mcsLinearOut" : "mcsEaseInOut",\n            onComplete = !once ? false : true;\n\n        if (once && t < 17) {\n          to = seq.dir[0] === "x" ? contentPos[1] : contentPos[0];\n        }\n\n        _scrollTo(el, to.toString(), {\n          dir: seq.dir[0],\n          scrollEasing: easing,\n          dur: t,\n          onComplete: onComplete\n        });\n\n        if (once) {\n          seq.dir = false;\n          return;\n        }\n\n        clearTimeout(seq.step);\n        seq.step = setTimeout(function () {\n          _on();\n        }, t);\n      }\n      /* stops sequence */\n\n\n      function _off() {\n        clearTimeout(seq.step);\n\n        _delete(seq, "step");\n\n        _stop(el);\n      }\n    },\n\n    /* -------------------- */\n\n    /* returns a yx array from value */\n    _arr = function _arr(val) {\n      var o = $(this).data(pluginPfx).opt,\n          vals = [];\n\n      if (typeof val === "function") {\n        val = val();\n      }\n      /* check if the value is a single anonymous function */\n\n      /* check if value is object or array, its length and create an array with yx values */\n\n\n      if (!(val instanceof Array)) {\n        /* object value (e.g. {y:"100",x:"100"}, 100 etc.) */\n        vals[0] = val.y ? val.y : val.x || o.axis === "x" ? null : val;\n        vals[1] = val.x ? val.x : val.y || o.axis === "y" ? null : val;\n      } else {\n        /* array value (e.g. [100,100]) */\n        vals = val.length > 1 ? [val[0], val[1]] : o.axis === "x" ? [null, val[0]] : [val[0], null];\n      }\n      /* check if array values are anonymous functions */\n\n\n      if (typeof vals[0] === "function") {\n        vals[0] = vals[0]();\n      }\n\n      if (typeof vals[1] === "function") {\n        vals[1] = vals[1]();\n      }\n\n      return vals;\n    },\n\n    /* -------------------- */\n\n    /* translates values (e.g. "top", 100, "100px", "#id") to actual scroll-to positions */\n    _to = function _to(val, dir) {\n      if (val == null || typeof val == "undefined") {\n        return;\n      }\n\n      var $this = $(this),\n          d = $this.data(pluginPfx),\n          o = d.opt,\n          mCSB_container = $("#mCSB_" + d.idx + "_container"),\n          wrapper = mCSB_container.parent(),\n          t = _typeof(val);\n\n      if (!dir) {\n        dir = o.axis === "x" ? "x" : "y";\n      }\n\n      var contentLength = dir === "x" ? mCSB_container.outerWidth(false) - wrapper.width() : mCSB_container.outerHeight(false) - wrapper.height(),\n          contentPos = dir === "x" ? mCSB_container[0].offsetLeft : mCSB_container[0].offsetTop,\n          cssProp = dir === "x" ? "left" : "top";\n\n      switch (t) {\n        case "function":\n          /* this currently is not used. Consider removing it */\n          return val();\n          break;\n\n        case "object":\n          /* js/jquery object */\n          var obj = val.jquery ? val : $(val);\n\n          if (!obj.length) {\n            return;\n          }\n\n          return dir === "x" ? _childPos(obj)[1] : _childPos(obj)[0];\n          break;\n\n        case "string":\n        case "number":\n          if (_isNumeric(val)) {\n            /* numeric value */\n            return Math.abs(val);\n          } else if (val.indexOf("%") !== -1) {\n            /* percentage value */\n            return Math.abs(contentLength * parseInt(val) / 100);\n          } else if (val.indexOf("-=") !== -1) {\n            /* decrease value */\n            return Math.abs(contentPos - parseInt(val.split("-=")[1]));\n          } else if (val.indexOf("+=") !== -1) {\n            /* inrease value */\n            var p = contentPos + parseInt(val.split("+=")[1]);\n            return p >= 0 ? 0 : Math.abs(p);\n          } else if (val.indexOf("px") !== -1 && _isNumeric(val.split("px")[0])) {\n            /* pixels string value (e.g. "100px") */\n            return Math.abs(val.split("px")[0]);\n          } else {\n            if (val === "top" || val === "left") {\n              /* special strings */\n              return 0;\n            } else if (val === "bottom") {\n              return Math.abs(wrapper.height() - mCSB_container.outerHeight(false));\n            } else if (val === "right") {\n              return Math.abs(wrapper.width() - mCSB_container.outerWidth(false));\n            } else if (val === "first" || val === "last") {\n              var obj = mCSB_container.find(":" + val);\n              return dir === "x" ? _childPos(obj)[1] : _childPos(obj)[0];\n            } else {\n              if ($(val).length) {\n                /* jquery selector */\n                return dir === "x" ? _childPos($(val))[1] : _childPos($(val))[0];\n              } else {\n                /* other values (e.g. "100em") */\n                mCSB_container.css(cssProp, val);\n                methods.update.call(null, $this[0]);\n                return;\n              }\n            }\n          }\n\n          break;\n      }\n    },\n\n    /* -------------------- */\n\n    /* calls the update method automatically */\n    _autoUpdate = function _autoUpdate(rem) {\n      var $this = $(this),\n          d = $this.data(pluginPfx),\n          o = d.opt,\n          mCSB_container = $("#mCSB_" + d.idx + "_container");\n\n      if (rem) {\n        /*\r\n        removes autoUpdate timer\r\n        usage: _autoUpdate.call(this,"remove");\r\n        */\n        clearTimeout(mCSB_container[0].autoUpdate);\n\n        _delete(mCSB_container[0], "autoUpdate");\n\n        return;\n      }\n\n      upd();\n\n      function upd() {\n        clearTimeout(mCSB_container[0].autoUpdate);\n\n        if ($this.parents("html").length === 0) {\n          /* check element in dom tree */\n          $this = null;\n          return;\n        }\n\n        mCSB_container[0].autoUpdate = setTimeout(function () {\n          /* update on specific selector(s) length and size change */\n          if (o.advanced.updateOnSelectorChange) {\n            d.poll.change.n = sizesSum();\n\n            if (d.poll.change.n !== d.poll.change.o) {\n              d.poll.change.o = d.poll.change.n;\n              doUpd(3);\n              return;\n            }\n          }\n          /* update on main element and scrollbar size changes */\n\n\n          if (o.advanced.updateOnContentResize) {\n            d.poll.size.n = $this[0].scrollHeight + $this[0].scrollWidth + mCSB_container[0].offsetHeight + $this[0].offsetHeight + $this[0].offsetWidth;\n\n            if (d.poll.size.n !== d.poll.size.o) {\n              d.poll.size.o = d.poll.size.n;\n              doUpd(1);\n              return;\n            }\n          }\n          /* update on image load */\n\n\n          if (o.advanced.updateOnImageLoad) {\n            if (!(o.advanced.updateOnImageLoad === "auto" && o.axis === "y")) {\n              //by default, it doesn\'t run on vertical content\n              d.poll.img.n = mCSB_container.find("img").length;\n\n              if (d.poll.img.n !== d.poll.img.o) {\n                d.poll.img.o = d.poll.img.n;\n                mCSB_container.find("img").each(function () {\n                  imgLoader(this);\n                });\n                return;\n              }\n            }\n          }\n\n          if (o.advanced.updateOnSelectorChange || o.advanced.updateOnContentResize || o.advanced.updateOnImageLoad) {\n            upd();\n          }\n        }, o.advanced.autoUpdateTimeout);\n      }\n      /* a tiny image loader */\n\n\n      function imgLoader(el) {\n        if ($(el).hasClass(classes[2])) {\n          doUpd();\n          return;\n        }\n\n        var img = new Image();\n\n        function createDelegate(contextObject, delegateMethod) {\n          return function () {\n            return delegateMethod.apply(contextObject, arguments);\n          };\n        }\n\n        function imgOnLoad() {\n          this.onload = null;\n          $(el).addClass(classes[2]);\n          doUpd(2);\n        }\n\n        img.onload = createDelegate(img, imgOnLoad);\n        img.src = el.src;\n      }\n      /* returns the total height and width sum of all elements matching the selector */\n\n\n      function sizesSum() {\n        if (o.advanced.updateOnSelectorChange === true) {\n          o.advanced.updateOnSelectorChange = "*";\n        }\n\n        var total = 0,\n            sel = mCSB_container.find(o.advanced.updateOnSelectorChange);\n\n        if (o.advanced.updateOnSelectorChange && sel.length > 0) {\n          sel.each(function () {\n            total += this.offsetHeight + this.offsetWidth;\n          });\n        }\n\n        return total;\n      }\n      /* calls the update method */\n\n\n      function doUpd(cb) {\n        clearTimeout(mCSB_container[0].autoUpdate);\n        methods.update.call(null, $this[0], cb);\n      }\n    },\n\n    /* -------------------- */\n\n    /* snaps scrolling to a multiple of a pixels number */\n    _snapAmount = function _snapAmount(to, amount, offset) {\n      return Math.round(to / amount) * amount - offset;\n    },\n\n    /* -------------------- */\n\n    /* stops content and scrollbar animations */\n    _stop = function _stop(el) {\n      var d = el.data(pluginPfx),\n          sel = $("#mCSB_" + d.idx + "_container,#mCSB_" + d.idx + "_container_wrapper,#mCSB_" + d.idx + "_dragger_vertical,#mCSB_" + d.idx + "_dragger_horizontal");\n      sel.each(function () {\n        _stopTween.call(this);\n      });\n    },\n\n    /* -------------------- */\n\n    /*\r\n    ANIMATES CONTENT\r\n    This is where the actual scrolling happens\r\n    */\n    _scrollTo = function _scrollTo(el, to, options) {\n      var d = el.data(pluginPfx),\n          o = d.opt,\n          defaults = {\n        trigger: "internal",\n        dir: "y",\n        scrollEasing: "mcsEaseOut",\n        drag: false,\n        dur: o.scrollInertia,\n        overwrite: "all",\n        callbacks: true,\n        onStart: true,\n        onUpdate: true,\n        onComplete: true\n      },\n          options = $.extend(defaults, options),\n          dur = [options.dur, options.drag ? 0 : options.dur],\n          mCustomScrollBox = $("#mCSB_" + d.idx),\n          mCSB_container = $("#mCSB_" + d.idx + "_container"),\n          wrapper = mCSB_container.parent(),\n          totalScrollOffsets = o.callbacks.onTotalScrollOffset ? _arr.call(el, o.callbacks.onTotalScrollOffset) : [0, 0],\n          totalScrollBackOffsets = o.callbacks.onTotalScrollBackOffset ? _arr.call(el, o.callbacks.onTotalScrollBackOffset) : [0, 0];\n      d.trigger = options.trigger;\n\n      if (wrapper.scrollTop() !== 0 || wrapper.scrollLeft() !== 0) {\n        /* always reset scrollTop/Left */\n        $(".mCSB_" + d.idx + "_scrollbar").css("visibility", "visible");\n        wrapper.scrollTop(0).scrollLeft(0);\n      }\n\n      if (to === "_resetY" && !d.contentReset.y) {\n        /* callbacks: onOverflowYNone */\n        if (_cb("onOverflowYNone")) {\n          o.callbacks.onOverflowYNone.call(el[0]);\n        }\n\n        d.contentReset.y = 1;\n      }\n\n      if (to === "_resetX" && !d.contentReset.x) {\n        /* callbacks: onOverflowXNone */\n        if (_cb("onOverflowXNone")) {\n          o.callbacks.onOverflowXNone.call(el[0]);\n        }\n\n        d.contentReset.x = 1;\n      }\n\n      if (to === "_resetY" || to === "_resetX") {\n        return;\n      }\n\n      if ((d.contentReset.y || !el[0].mcs) && d.overflowed[0]) {\n        /* callbacks: onOverflowY */\n        if (_cb("onOverflowY")) {\n          o.callbacks.onOverflowY.call(el[0]);\n        }\n\n        d.contentReset.x = null;\n      }\n\n      if ((d.contentReset.x || !el[0].mcs) && d.overflowed[1]) {\n        /* callbacks: onOverflowX */\n        if (_cb("onOverflowX")) {\n          o.callbacks.onOverflowX.call(el[0]);\n        }\n\n        d.contentReset.x = null;\n      }\n\n      if (o.snapAmount) {\n        /* scrolling snapping */\n        var snapAmount = !(o.snapAmount instanceof Array) ? o.snapAmount : options.dir === "x" ? o.snapAmount[1] : o.snapAmount[0];\n        to = _snapAmount(to, snapAmount, o.snapOffset);\n      }\n\n      switch (options.dir) {\n        case "x":\n          var mCSB_dragger = $("#mCSB_" + d.idx + "_dragger_horizontal"),\n              property = "left",\n              contentPos = mCSB_container[0].offsetLeft,\n              limit = [mCustomScrollBox.width() - mCSB_container.outerWidth(false), mCSB_dragger.parent().width() - mCSB_dragger.width()],\n              scrollTo = [to, to === 0 ? 0 : to / d.scrollRatio.x],\n              tso = totalScrollOffsets[1],\n              tsbo = totalScrollBackOffsets[1],\n              totalScrollOffset = tso > 0 ? tso / d.scrollRatio.x : 0,\n              totalScrollBackOffset = tsbo > 0 ? tsbo / d.scrollRatio.x : 0;\n          break;\n\n        case "y":\n          var mCSB_dragger = $("#mCSB_" + d.idx + "_dragger_vertical"),\n              property = "top",\n              contentPos = mCSB_container[0].offsetTop,\n              limit = [mCustomScrollBox.height() - mCSB_container.outerHeight(false), mCSB_dragger.parent().height() - mCSB_dragger.height()],\n              scrollTo = [to, to === 0 ? 0 : to / d.scrollRatio.y],\n              tso = totalScrollOffsets[0],\n              tsbo = totalScrollBackOffsets[0],\n              totalScrollOffset = tso > 0 ? tso / d.scrollRatio.y : 0,\n              totalScrollBackOffset = tsbo > 0 ? tsbo / d.scrollRatio.y : 0;\n          break;\n      }\n\n      if (scrollTo[1] < 0 || scrollTo[0] === 0 && scrollTo[1] === 0) {\n        scrollTo = [0, 0];\n      } else if (scrollTo[1] >= limit[1]) {\n        scrollTo = [limit[0], limit[1]];\n      } else {\n        scrollTo[0] = -scrollTo[0];\n      }\n\n      if (!el[0].mcs) {\n        _mcs();\n        /* init mcs object (once) to make it available before callbacks */\n\n\n        if (_cb("onInit")) {\n          o.callbacks.onInit.call(el[0]);\n        }\n        /* callbacks: onInit */\n\n      }\n\n      clearTimeout(mCSB_container[0].onCompleteTimeout);\n\n      _tweenTo(mCSB_dragger[0], property, Math.round(scrollTo[1]), dur[1], options.scrollEasing);\n\n      if (!d.tweenRunning && (contentPos === 0 && scrollTo[0] >= 0 || contentPos === limit[0] && scrollTo[0] <= limit[0])) {\n        return;\n      }\n\n      _tweenTo(mCSB_container[0], property, Math.round(scrollTo[0]), dur[0], options.scrollEasing, options.overwrite, {\n        onStart: function onStart() {\n          if (options.callbacks && options.onStart && !d.tweenRunning) {\n            /* callbacks: onScrollStart */\n            if (_cb("onScrollStart")) {\n              _mcs();\n\n              o.callbacks.onScrollStart.call(el[0]);\n            }\n\n            d.tweenRunning = true;\n\n            _onDragClasses(mCSB_dragger);\n\n            d.cbOffsets = _cbOffsets();\n          }\n        },\n        onUpdate: function onUpdate() {\n          if (options.callbacks && options.onUpdate) {\n            /* callbacks: whileScrolling */\n            if (_cb("whileScrolling")) {\n              _mcs();\n\n              o.callbacks.whileScrolling.call(el[0]);\n            }\n          }\n        },\n        onComplete: function onComplete() {\n          if (options.callbacks && options.onComplete) {\n            if (o.axis === "yx") {\n              clearTimeout(mCSB_container[0].onCompleteTimeout);\n            }\n\n            var t = mCSB_container[0].idleTimer || 0;\n            mCSB_container[0].onCompleteTimeout = setTimeout(function () {\n              /* callbacks: onScroll, onTotalScroll, onTotalScrollBack */\n              if (_cb("onScroll")) {\n                _mcs();\n\n                o.callbacks.onScroll.call(el[0]);\n              }\n\n              if (_cb("onTotalScroll") && scrollTo[1] >= limit[1] - totalScrollOffset && d.cbOffsets[0]) {\n                _mcs();\n\n                o.callbacks.onTotalScroll.call(el[0]);\n              }\n\n              if (_cb("onTotalScrollBack") && scrollTo[1] <= totalScrollBackOffset && d.cbOffsets[1]) {\n                _mcs();\n\n                o.callbacks.onTotalScrollBack.call(el[0]);\n              }\n\n              d.tweenRunning = false;\n              mCSB_container[0].idleTimer = 0;\n\n              _onDragClasses(mCSB_dragger, "hide");\n            }, t);\n          }\n        }\n      });\n      /* checks if callback function exists */\n\n\n      function _cb(cb) {\n        return d && o.callbacks[cb] && typeof o.callbacks[cb] === "function";\n      }\n      /* checks whether callback offsets always trigger */\n\n\n      function _cbOffsets() {\n        return [o.callbacks.alwaysTriggerOffsets || contentPos >= limit[0] + tso, o.callbacks.alwaysTriggerOffsets || contentPos <= -tsbo];\n      }\n      /*\r\n      populates object with useful values for the user\r\n      values:\r\n      \tcontent: this.mcs.content\r\n      \tcontent top position: this.mcs.top\r\n      \tcontent left position: this.mcs.left\r\n      \tdragger top position: this.mcs.draggerTop\r\n      \tdragger left position: this.mcs.draggerLeft\r\n      \tscrolling y percentage: this.mcs.topPct\r\n      \tscrolling x percentage: this.mcs.leftPct\r\n      \tscrolling direction: this.mcs.direction\r\n      */\n\n\n      function _mcs() {\n        var cp = [mCSB_container[0].offsetTop, mCSB_container[0].offsetLeft],\n\n        /* content position */\n        dp = [mCSB_dragger[0].offsetTop, mCSB_dragger[0].offsetLeft],\n\n        /* dragger position */\n        cl = [mCSB_container.outerHeight(false), mCSB_container.outerWidth(false)],\n\n        /* content length */\n        pl = [mCustomScrollBox.height(), mCustomScrollBox.width()];\n        /* content parent length */\n\n        el[0].mcs = {\n          content: mCSB_container,\n\n          /* original content wrapper as jquery object */\n          top: cp[0],\n          left: cp[1],\n          draggerTop: dp[0],\n          draggerLeft: dp[1],\n          topPct: Math.round(100 * Math.abs(cp[0]) / (Math.abs(cl[0]) - pl[0])),\n          leftPct: Math.round(100 * Math.abs(cp[1]) / (Math.abs(cl[1]) - pl[1])),\n          direction: options.dir\n        };\n        /*\r\n        this refers to the original element containing the scrollbar(s)\r\n        usage: this.mcs.top, this.mcs.leftPct etc.\r\n        */\n      }\n    },\n\n    /* -------------------- */\n\n    /*\r\n    CUSTOM JAVASCRIPT ANIMATION TWEEN\r\n    Lighter and faster than jquery animate() and css transitions\r\n    Animates top/left properties and includes easings\r\n    */\n    _tweenTo = function _tweenTo(el, prop, to, duration, easing, overwrite, callbacks) {\n      if (!el._mTween) {\n        el._mTween = {\n          top: {},\n          left: {}\n        };\n      }\n\n      var callbacks = callbacks || {},\n          onStart = callbacks.onStart || function () {},\n          onUpdate = callbacks.onUpdate || function () {},\n          onComplete = callbacks.onComplete || function () {},\n          startTime = _getTime(),\n          _delay,\n          progress = 0,\n          from = el.offsetTop,\n          elStyle = el.style,\n          _request,\n          tobj = el._mTween[prop];\n\n      if (prop === "left") {\n        from = el.offsetLeft;\n      }\n\n      var diff = to - from;\n      tobj.stop = 0;\n\n      if (overwrite !== "none") {\n        _cancelTween();\n      }\n\n      _startTween();\n\n      function _step() {\n        if (tobj.stop) {\n          return;\n        }\n\n        if (!progress) {\n          onStart.call();\n        }\n\n        progress = _getTime() - startTime;\n\n        _tween();\n\n        if (progress >= tobj.time) {\n          tobj.time = progress > tobj.time ? progress + _delay - (progress - tobj.time) : progress + _delay - 1;\n\n          if (tobj.time < progress + 1) {\n            tobj.time = progress + 1;\n          }\n        }\n\n        if (tobj.time < duration) {\n          tobj.id = _request(_step);\n        } else {\n          onComplete.call();\n        }\n      }\n\n      function _tween() {\n        if (duration > 0) {\n          tobj.currVal = _ease(tobj.time, from, diff, duration, easing);\n          elStyle[prop] = Math.round(tobj.currVal) + "px";\n        } else {\n          elStyle[prop] = to + "px";\n        }\n\n        onUpdate.call();\n      }\n\n      function _startTween() {\n        _delay = 1000 / 60;\n        tobj.time = progress + _delay;\n        _request = !window.requestAnimationFrame ? function (f) {\n          _tween();\n\n          return setTimeout(f, 0.01);\n        } : window.requestAnimationFrame;\n        tobj.id = _request(_step);\n      }\n\n      function _cancelTween() {\n        if (tobj.id == null) {\n          return;\n        }\n\n        if (!window.requestAnimationFrame) {\n          clearTimeout(tobj.id);\n        } else {\n          window.cancelAnimationFrame(tobj.id);\n        }\n\n        tobj.id = null;\n      }\n\n      function _ease(t, b, c, d, type) {\n        switch (type) {\n          case "linear":\n          case "mcsLinear":\n            return c * t / d + b;\n            break;\n\n          case "mcsLinearOut":\n            t /= d;\n            t--;\n            return c * Math.sqrt(1 - t * t) + b;\n            break;\n\n          case "easeInOutSmooth":\n            t /= d / 2;\n            if (t < 1) return c / 2 * t * t + b;\n            t--;\n            return -c / 2 * (t * (t - 2) - 1) + b;\n            break;\n\n          case "easeInOutStrong":\n            t /= d / 2;\n            if (t < 1) return c / 2 * Math.pow(2, 10 * (t - 1)) + b;\n            t--;\n            return c / 2 * (-Math.pow(2, -10 * t) + 2) + b;\n            break;\n\n          case "easeInOut":\n          case "mcsEaseInOut":\n            t /= d / 2;\n            if (t < 1) return c / 2 * t * t * t + b;\n            t -= 2;\n            return c / 2 * (t * t * t + 2) + b;\n            break;\n\n          case "easeOutSmooth":\n            t /= d;\n            t--;\n            return -c * (t * t * t * t - 1) + b;\n            break;\n\n          case "easeOutStrong":\n            return c * (-Math.pow(2, -10 * t / d) + 1) + b;\n            break;\n\n          case "easeOut":\n          case "mcsEaseOut":\n          default:\n            var ts = (t /= d) * t,\n                tc = ts * t;\n            return b + c * (0.499999999999997 * tc * ts + -2.5 * ts * ts + 5.5 * tc + -6.5 * ts + 4 * t);\n        }\n      }\n    },\n\n    /* -------------------- */\n\n    /* returns current time */\n    _getTime = function _getTime() {\n      if (window.performance && window.performance.now) {\n        return window.performance.now();\n      } else {\n        if (window.performance && window.performance.webkitNow) {\n          return window.performance.webkitNow();\n        } else {\n          if (Date.now) {\n            return Date.now();\n          } else {\n            return new Date().getTime();\n          }\n        }\n      }\n    },\n\n    /* -------------------- */\n\n    /* stops a tween */\n    _stopTween = function _stopTween() {\n      var el = this;\n\n      if (!el._mTween) {\n        el._mTween = {\n          top: {},\n          left: {}\n        };\n      }\n\n      var props = ["top", "left"];\n\n      for (var i = 0; i < props.length; i++) {\n        var prop = props[i];\n\n        if (el._mTween[prop].id) {\n          if (!window.requestAnimationFrame) {\n            clearTimeout(el._mTween[prop].id);\n          } else {\n            window.cancelAnimationFrame(el._mTween[prop].id);\n          }\n\n          el._mTween[prop].id = null;\n          el._mTween[prop].stop = 1;\n        }\n      }\n    },\n\n    /* -------------------- */\n\n    /* deletes a property (avoiding the exception thrown by IE) */\n    _delete = function _delete(c, m) {\n      try {\n        delete c[m];\n      } catch (e) {\n        c[m] = null;\n      }\n    },\n\n    /* -------------------- */\n\n    /* detects left mouse button */\n    _mouseBtnLeft = function _mouseBtnLeft(e) {\n      return !(e.which && e.which !== 1);\n    },\n\n    /* -------------------- */\n\n    /* detects if pointer type event is touch */\n    _pointerTouch = function _pointerTouch(e) {\n      var t = e.originalEvent.pointerType;\n      return !(t && t !== "touch" && t !== 2);\n    },\n\n    /* -------------------- */\n\n    /* checks if value is numeric */\n    _isNumeric = function _isNumeric(val) {\n      return !isNaN(parseFloat(val)) && isFinite(val);\n    },\n\n    /* -------------------- */\n\n    /* returns element position according to content */\n    _childPos = function _childPos(el) {\n      var p = el.parents(".mCSB_container");\n      return [el.offset().top - p.offset().top, el.offset().left - p.offset().left];\n    },\n\n    /* -------------------- */\n\n    /* checks if browser tab is hidden/inactive via Page Visibility API */\n    _isTabHidden = function _isTabHidden() {\n      var prop = _getHiddenProp();\n\n      if (!prop) return false;\n      return document[prop];\n\n      function _getHiddenProp() {\n        var pfx = ["webkit", "moz", "ms", "o"];\n        if ("hidden" in document) return "hidden"; //natively supported\n\n        for (var i = 0; i < pfx.length; i++) {\n          //prefixed\n          if (pfx[i] + "Hidden" in document) return pfx[i] + "Hidden";\n        }\n\n        return null; //not supported\n      }\n    };\n    /* -------------------- */\n\n    /*\r\n    ----------------------------------------\r\n    PLUGIN SETUP\r\n    ----------------------------------------\r\n    */\n\n    /* plugin constructor functions */\n\n\n    $.fn[pluginNS] = function (method) {\n      /* usage: $(selector).mCustomScrollbar(); */\n      if (methods[method]) {\n        return methods[method].apply(this, Array.prototype.slice.call(arguments, 1));\n      } else if (_typeof(method) === "object" || !method) {\n        return methods.init.apply(this, arguments);\n      } else {\n        $.error("Method " + method + " does not exist");\n      }\n    };\n\n    $[pluginNS] = function (method) {\n      /* usage: $.mCustomScrollbar(); */\n      if (methods[method]) {\n        return methods[method].apply(this, Array.prototype.slice.call(arguments, 1));\n      } else if (_typeof(method) === "object" || !method) {\n        return methods.init.apply(this, arguments);\n      } else {\n        $.error("Method " + method + " does not exist");\n      }\n    };\n    /*\r\n    allow setting plugin default options.\r\n    usage: $.mCustomScrollbar.defaults.scrollInertia=500;\r\n    to apply any changed default options on default selectors (below), use inside document ready fn\r\n    e.g.: $(document).ready(function(){ $.mCustomScrollbar.defaults.scrollInertia=500; });\r\n    */\n\n\n    $[pluginNS].defaults = defaults;\n    /*\r\n    add window object (window.mCustomScrollbar)\r\n    usage: if(window.mCustomScrollbar){console.log("custom scrollbar plugin loaded");}\r\n    */\n\n    window[pluginNS] = true;\n    $(window).bind("load", function () {\n      $(defaultSelector)[pluginNS]();\n      /* add scrollbars automatically on default selector */\n\n      /* extend jQuery expressions */\n\n      $.extend($.expr[":"], {\n        /* checks if element is within scrollable viewport */\n        mcsInView: $.expr[":"].mcsInView || function (el) {\n          var $el = $(el),\n              content = $el.parents(".mCSB_container"),\n              wrapper,\n              cPos;\n\n          if (!content.length) {\n            return;\n          }\n\n          wrapper = content.parent();\n          cPos = [content[0].offsetTop, content[0].offsetLeft];\n          return cPos[0] + _childPos($el)[0] >= 0 && cPos[0] + _childPos($el)[0] < wrapper.height() - $el.outerHeight(false) && cPos[1] + _childPos($el)[1] >= 0 && cPos[1] + _childPos($el)[1] < wrapper.width() - $el.outerWidth(false);\n        },\n\n        /* checks if element or part of element is in view of scrollable viewport */\n        mcsInSight: $.expr[":"].mcsInSight || function (el, i, m) {\n          var $el = $(el),\n              elD,\n              content = $el.parents(".mCSB_container"),\n              wrapperView,\n              pos,\n              wrapperViewPct,\n              pctVals = m[3] === "exact" ? [[1, 0], [1, 0]] : [[0.9, 0.1], [0.6, 0.4]];\n\n          if (!content.length) {\n            return;\n          }\n\n          elD = [$el.outerHeight(false), $el.outerWidth(false)];\n          pos = [content[0].offsetTop + _childPos($el)[0], content[0].offsetLeft + _childPos($el)[1]];\n          wrapperView = [content.parent()[0].offsetHeight, content.parent()[0].offsetWidth];\n          wrapperViewPct = [elD[0] < wrapperView[0] ? pctVals[0] : pctVals[1], elD[1] < wrapperView[1] ? pctVals[0] : pctVals[1]];\n          return pos[0] - wrapperView[0] * wrapperViewPct[0][0] < 0 && pos[0] + elD[0] - wrapperView[0] * wrapperViewPct[0][1] >= 0 && pos[1] - wrapperView[1] * wrapperViewPct[1][0] < 0 && pos[1] + elD[1] - wrapperView[1] * wrapperViewPct[1][1] >= 0;\n        },\n\n        /* checks if element is overflowed having visible scrollbar(s) */\n        mcsOverflow: $.expr[":"].mcsOverflow || function (el) {\n          var d = $(el).data(pluginPfx);\n\n          if (!d) {\n            return;\n          }\n\n          return d.overflowed[0] || d.overflowed[1];\n        }\n      });\n    });\n  });\n});\n/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./../../../node_modules/webpack/buildin/harmony-module.js */ "./node_modules/webpack/buildin/harmony-module.js")(module), __webpack_require__(/*! jquery */ "./node_modules/jquery/dist/jquery.js")))\n\n//# sourceURL=webpack:///./src/js/_libs/mscroller.js?')},"./src/js/_libs/selectric.js":function(module,__webpack_exports__,__webpack_require__){"use strict";eval("/* WEBPACK VAR INJECTION */(function(module, jQuery) {/* harmony import */ var core_js_modules_es_symbol__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! core-js/modules/es.symbol */ \"./node_modules/core-js/modules/es.symbol.js\");\n/* harmony import */ var core_js_modules_es_symbol__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_symbol__WEBPACK_IMPORTED_MODULE_0__);\n/* harmony import */ var core_js_modules_es_symbol_description__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! core-js/modules/es.symbol.description */ \"./node_modules/core-js/modules/es.symbol.description.js\");\n/* harmony import */ var core_js_modules_es_symbol_description__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_symbol_description__WEBPACK_IMPORTED_MODULE_1__);\n/* harmony import */ var core_js_modules_es_symbol_iterator__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! core-js/modules/es.symbol.iterator */ \"./node_modules/core-js/modules/es.symbol.iterator.js\");\n/* harmony import */ var core_js_modules_es_symbol_iterator__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_symbol_iterator__WEBPACK_IMPORTED_MODULE_2__);\n/* harmony import */ var core_js_modules_es_array_concat__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! core-js/modules/es.array.concat */ \"./node_modules/core-js/modules/es.array.concat.js\");\n/* harmony import */ var core_js_modules_es_array_concat__WEBPACK_IMPORTED_MODULE_3___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_array_concat__WEBPACK_IMPORTED_MODULE_3__);\n/* harmony import */ var core_js_modules_es_array_filter__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! core-js/modules/es.array.filter */ \"./node_modules/core-js/modules/es.array.filter.js\");\n/* harmony import */ var core_js_modules_es_array_filter__WEBPACK_IMPORTED_MODULE_4___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_array_filter__WEBPACK_IMPORTED_MODULE_4__);\n/* harmony import */ var core_js_modules_es_array_find__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! core-js/modules/es.array.find */ \"./node_modules/core-js/modules/es.array.find.js\");\n/* harmony import */ var core_js_modules_es_array_find__WEBPACK_IMPORTED_MODULE_5___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_array_find__WEBPACK_IMPORTED_MODULE_5__);\n/* harmony import */ var core_js_modules_es_array_iterator__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! core-js/modules/es.array.iterator */ \"./node_modules/core-js/modules/es.array.iterator.js\");\n/* harmony import */ var core_js_modules_es_array_iterator__WEBPACK_IMPORTED_MODULE_6___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_array_iterator__WEBPACK_IMPORTED_MODULE_6__);\n/* harmony import */ var core_js_modules_es_array_join__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! core-js/modules/es.array.join */ \"./node_modules/core-js/modules/es.array.join.js\");\n/* harmony import */ var core_js_modules_es_array_join__WEBPACK_IMPORTED_MODULE_7___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_array_join__WEBPACK_IMPORTED_MODULE_7__);\n/* harmony import */ var core_js_modules_es_array_map__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! core-js/modules/es.array.map */ \"./node_modules/core-js/modules/es.array.map.js\");\n/* harmony import */ var core_js_modules_es_array_map__WEBPACK_IMPORTED_MODULE_8___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_array_map__WEBPACK_IMPORTED_MODULE_8__);\n/* harmony import */ var core_js_modules_es_array_slice__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! core-js/modules/es.array.slice */ \"./node_modules/core-js/modules/es.array.slice.js\");\n/* harmony import */ var core_js_modules_es_array_slice__WEBPACK_IMPORTED_MODULE_9___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_array_slice__WEBPACK_IMPORTED_MODULE_9__);\n/* harmony import */ var core_js_modules_es_array_splice__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! core-js/modules/es.array.splice */ \"./node_modules/core-js/modules/es.array.splice.js\");\n/* harmony import */ var core_js_modules_es_array_splice__WEBPACK_IMPORTED_MODULE_10___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_array_splice__WEBPACK_IMPORTED_MODULE_10__);\n/* harmony import */ var core_js_modules_es_object_to_string__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! core-js/modules/es.object.to-string */ \"./node_modules/core-js/modules/es.object.to-string.js\");\n/* harmony import */ var core_js_modules_es_object_to_string__WEBPACK_IMPORTED_MODULE_11___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_object_to_string__WEBPACK_IMPORTED_MODULE_11__);\n/* harmony import */ var core_js_modules_es_regexp_constructor__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! core-js/modules/es.regexp.constructor */ \"./node_modules/core-js/modules/es.regexp.constructor.js\");\n/* harmony import */ var core_js_modules_es_regexp_constructor__WEBPACK_IMPORTED_MODULE_12___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_regexp_constructor__WEBPACK_IMPORTED_MODULE_12__);\n/* harmony import */ var core_js_modules_es_regexp_exec__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! core-js/modules/es.regexp.exec */ \"./node_modules/core-js/modules/es.regexp.exec.js\");\n/* harmony import */ var core_js_modules_es_regexp_exec__WEBPACK_IMPORTED_MODULE_13___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_regexp_exec__WEBPACK_IMPORTED_MODULE_13__);\n/* harmony import */ var core_js_modules_es_regexp_to_string__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(/*! core-js/modules/es.regexp.to-string */ \"./node_modules/core-js/modules/es.regexp.to-string.js\");\n/* harmony import */ var core_js_modules_es_regexp_to_string__WEBPACK_IMPORTED_MODULE_14___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_regexp_to_string__WEBPACK_IMPORTED_MODULE_14__);\n/* harmony import */ var core_js_modules_es_string_iterator__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(/*! core-js/modules/es.string.iterator */ \"./node_modules/core-js/modules/es.string.iterator.js\");\n/* harmony import */ var core_js_modules_es_string_iterator__WEBPACK_IMPORTED_MODULE_15___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_string_iterator__WEBPACK_IMPORTED_MODULE_15__);\n/* harmony import */ var core_js_modules_es_string_replace__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(/*! core-js/modules/es.string.replace */ \"./node_modules/core-js/modules/es.string.replace.js\");\n/* harmony import */ var core_js_modules_es_string_replace__WEBPACK_IMPORTED_MODULE_16___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_string_replace__WEBPACK_IMPORTED_MODULE_16__);\n/* harmony import */ var core_js_modules_es_string_split__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__(/*! core-js/modules/es.string.split */ \"./node_modules/core-js/modules/es.string.split.js\");\n/* harmony import */ var core_js_modules_es_string_split__WEBPACK_IMPORTED_MODULE_17___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_string_split__WEBPACK_IMPORTED_MODULE_17__);\n/* harmony import */ var core_js_modules_es_string_trim__WEBPACK_IMPORTED_MODULE_18__ = __webpack_require__(/*! core-js/modules/es.string.trim */ \"./node_modules/core-js/modules/es.string.trim.js\");\n/* harmony import */ var core_js_modules_es_string_trim__WEBPACK_IMPORTED_MODULE_18___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_string_trim__WEBPACK_IMPORTED_MODULE_18__);\n/* harmony import */ var core_js_modules_web_dom_collections_iterator__WEBPACK_IMPORTED_MODULE_19__ = __webpack_require__(/*! core-js/modules/web.dom-collections.iterator */ \"./node_modules/core-js/modules/web.dom-collections.iterator.js\");\n/* harmony import */ var core_js_modules_web_dom_collections_iterator__WEBPACK_IMPORTED_MODULE_19___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_web_dom_collections_iterator__WEBPACK_IMPORTED_MODULE_19__);\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nfunction _typeof(obj) { \"@babel/helpers - typeof\"; 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(function (factory) {\n  /* global define */\n\n  /* istanbul ignore next */\n  if (typeof define === 'function' && __webpack_require__(/*! !webpack amd options */ \"./node_modules/webpack/buildin/amd-options.js\")) {\n    define(['jquery'], factory);\n  } else if (( false ? undefined : _typeof(module)) === 'object' && module.exports) {\n    // Node/CommonJS\n    module.exports = function (root, jQuery) {\n      if (jQuery === undefined) {\n        if (typeof window !== 'undefined') {\n          jQuery = __webpack_require__(/*! jquery */ \"./node_modules/jquery/dist/jquery.js\");\n        } else {\n          jQuery = __webpack_require__(/*! jquery */ \"./node_modules/jquery/dist/jquery.js\")(root);\n        }\n      }\n\n      factory(jQuery);\n      return jQuery;\n    };\n  } else {\n    // Browser globals\n    factory(jQuery);\n  }\n})(function ($) {\n  'use strict';\n\n  var $doc = $(document);\n  var $win = $(window);\n  var pluginName = 'selectric';\n  var classList = 'Input Items Open Disabled TempShow HideSelect Wrapper Focus Hover Responsive Above Below Scroll Group GroupLabel';\n  var eventNamespaceSuffix = '.sl';\n  var chars = ['a', 'e', 'i', 'o', 'u', 'n', 'c', 'y'];\n  var diacritics = [/[\\xE0-\\xE5]/g, // a\n  /[\\xE8-\\xEB]/g, // e\n  /[\\xEC-\\xEF]/g, // i\n  /[\\xF2-\\xF6]/g, // o\n  /[\\xF9-\\xFC]/g, // u\n  /[\\xF1]/g, // n\n  /[\\xE7]/g, // c\n  /[\\xFD-\\xFF]/g // y\n  ];\n  /**\r\n   * Create an instance of Selectric\r\n   *\r\n   * @constructor\r\n   * @param {Node} element - The &lt;select&gt; element\r\n   * @param {object}  opts - Options\r\n   */\n\n  var Selectric = function Selectric(element, opts) {\n    var _this = this;\n\n    _this.element = element;\n    _this.$element = $(element);\n    _this.state = {\n      multiple: !!_this.$element.attr('multiple'),\n      enabled: false,\n      opened: false,\n      currValue: -1,\n      selectedIdx: -1,\n      highlightedIdx: -1\n    };\n    _this.eventTriggers = {\n      open: _this.open,\n      close: _this.close,\n      destroy: _this.destroy,\n      refresh: _this.refresh,\n      init: _this.init\n    };\n\n    _this.init(opts);\n  };\n\n  Selectric.prototype = {\n    utils: {\n      /**\r\n       * Detect mobile browser\r\n       *\r\n       * @return {boolean}\r\n       */\n      isMobile: function isMobile() {\n        return /android|ip(hone|od|ad)/i.test(navigator.userAgent);\n      },\n\n      /**\r\n       * Escape especial characters in string (https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Regular_Expressions)\r\n       *\r\n       * @param  {string} str - The string to be escaped\r\n       * @return {string}       The string with the special characters escaped\r\n       */\n      escapeRegExp: function escapeRegExp(str) {\n        return str.replace(/[.*+?^${}()|[\\]\\\\]/g, '\\\\$&'); // $& means the whole matched string\n      },\n\n      /**\r\n       * Replace diacritics\r\n       *\r\n       * @param  {string} str - The string to replace the diacritics\r\n       * @return {string}       The string with diacritics replaced with ascii characters\r\n       */\n      replaceDiacritics: function replaceDiacritics(str) {\n        var k = diacritics.length;\n\n        while (k--) {\n          str = str.toLowerCase().replace(diacritics[k], chars[k]);\n        }\n\n        return str;\n      },\n\n      /**\r\n       * Format string\r\n       * https://gist.github.com/atesgoral/984375\r\n       *\r\n       * @param  {string} f - String to be formated\r\n       * @return {string}     String formated\r\n       */\n      format: function format(f) {\n        var a = arguments; // store outer arguments\n\n        return ('' + f). // force format specifier to String\n        replace( // replace tokens in format specifier\n        /\\{(?:(\\d+)|(\\w+))\\}/g, // match {token} references\n        function (s, // the matched string (ignored)\n        i, // an argument index\n        p // a property name\n        ) {\n          return p && a[1] // if property name and first argument exist\n          ? a[1][p] // return property from first argument\n          : a[i]; // assume argument index and return i-th argument\n        });\n      },\n\n      /**\r\n       * Get the next enabled item in the options list.\r\n       *\r\n       * @param  {object} selectItems - The options object.\r\n       * @param  {number}    selected - Index of the currently selected option.\r\n       * @return {object}               The next enabled item.\r\n       */\n      nextEnabledItem: function nextEnabledItem(selectItems, selected) {\n        while (selectItems[selected = (selected + 1) % selectItems.length].disabled) {// empty\n        }\n\n        return selected;\n      },\n\n      /**\r\n       * Get the previous enabled item in the options list.\r\n       *\r\n       * @param  {object} selectItems - The options object.\r\n       * @param  {number}    selected - Index of the currently selected option.\r\n       * @return {object}               The previous enabled item.\r\n       */\n      previousEnabledItem: function previousEnabledItem(selectItems, selected) {\n        while (selectItems[selected = (selected > 0 ? selected : selectItems.length) - 1].disabled) {// empty\n        }\n\n        return selected;\n      },\n\n      /**\r\n       * Transform camelCase string to dash-case.\r\n       *\r\n       * @param  {string} str - The camelCased string.\r\n       * @return {string}       The string transformed to dash-case.\r\n       */\n      toDash: function toDash(str) {\n        return str.replace(/([a-z0-9])([A-Z])/g, '$1-$2').toLowerCase();\n      },\n\n      /**\r\n       * Calls the events registered with function name.\r\n       *\r\n       * @param {string}    fn - The name of the function.\r\n       * @param {number} scope - Scope that should be set on the function.\r\n       */\n      triggerCallback: function triggerCallback(fn, scope) {\n        var elm = scope.element;\n        var func = scope.options['on' + fn];\n        var args = [elm].concat([].slice.call(arguments).slice(1));\n\n        if ($.isFunction(func)) {\n          func.apply(elm, args);\n        }\n\n        $(elm).trigger(pluginName + '-' + this.toDash(fn), args);\n      },\n\n      /**\r\n       * Transform array list to concatenated string and remove empty values\r\n       * @param  {array} arr - Class list\r\n       * @return {string}      Concatenated string\r\n       */\n      arrayToClassname: function arrayToClassname(arr) {\n        var newArr = $.grep(arr, function (item) {\n          return !!item;\n        });\n        return $.trim(newArr.join(' '));\n      }\n    },\n\n    /** Initializes */\n    init: function init(opts) {\n      var _this = this; // Set options\n\n\n      _this.options = $.extend(true, {}, $.fn[pluginName].defaults, _this.options, opts);\n\n      _this.utils.triggerCallback('BeforeInit', _this); // Preserve data\n\n\n      _this.destroy(true); // Disable on mobile browsers\n\n\n      if (_this.options.disableOnMobile && _this.utils.isMobile()) {\n        _this.disableOnMobile = true;\n        return;\n      } // Get classes\n\n\n      _this.classes = _this.getClassNames(); // Create elements\n\n      var input = $('<input/>', {\n        'class': _this.classes.input,\n        'readonly': _this.utils.isMobile()\n      });\n      var items = $('<div/>', {\n        'class': _this.classes.items,\n        'tabindex': -1\n      });\n      var itemsScroll = $('<div/>', {\n        'class': _this.classes.scroll\n      });\n      var wrapper = $('<div/>', {\n        'class': _this.classes.prefix,\n        'html': _this.options.arrowButtonMarkup\n      });\n      var label = $('<span/>', {\n        'class': 'label'\n      });\n\n      var outerWrapper = _this.$element.wrap('<div/>').parent().append(wrapper.prepend(label), items, input);\n\n      var hideSelectWrapper = $('<div/>', {\n        'class': _this.classes.hideselect\n      });\n      _this.elements = {\n        input: input,\n        items: items,\n        itemsScroll: itemsScroll,\n        wrapper: wrapper,\n        label: label,\n        outerWrapper: outerWrapper\n      };\n\n      if (_this.options.nativeOnMobile && _this.utils.isMobile()) {\n        _this.elements.input = undefined;\n        hideSelectWrapper.addClass(_this.classes.prefix + '-is-native');\n\n        _this.$element.on('change', function () {\n          _this.refresh();\n        });\n      }\n\n      _this.$element.on(_this.eventTriggers).wrap(hideSelectWrapper);\n\n      _this.originalTabindex = _this.$element.prop('tabindex');\n\n      _this.$element.prop('tabindex', -1);\n\n      _this.populate();\n\n      _this.activate();\n\n      _this.utils.triggerCallback('Init', _this);\n    },\n\n    /** Activates the plugin */\n    activate: function activate() {\n      var _this = this;\n\n      var hiddenChildren = _this.elements.items.closest(':visible').children(':hidden').addClass(_this.classes.tempshow);\n\n      var originalWidth = _this.$element.width();\n\n      hiddenChildren.removeClass(_this.classes.tempshow);\n\n      _this.utils.triggerCallback('BeforeActivate', _this);\n\n      _this.elements.outerWrapper.prop('class', _this.utils.arrayToClassname([_this.classes.wrapper, _this.$element.prop('class').replace(/\\S+/g, _this.classes.prefix + '-$&'), _this.options.responsive ? _this.classes.responsive : '']));\n\n      if (_this.options.inheritOriginalWidth && originalWidth > 0) {\n        _this.elements.outerWrapper.width(originalWidth);\n      }\n\n      _this.unbindEvents();\n\n      if (!_this.$element.prop('disabled')) {\n        _this.state.enabled = true; // Not disabled, so... Removing disabled class\n\n        _this.elements.outerWrapper.removeClass(_this.classes.disabled); // Remove styles from items box\n        // Fix incorrect height when refreshed is triggered with fewer options\n\n\n        _this.$li = _this.elements.items.removeAttr('style').find('li');\n\n        _this.bindEvents();\n      } else {\n        _this.elements.outerWrapper.addClass(_this.classes.disabled);\n\n        if (_this.elements.input) {\n          _this.elements.input.prop('disabled', true);\n        }\n      }\n\n      _this.utils.triggerCallback('Activate', _this);\n    },\n\n    /**\r\n     * Generate classNames for elements\r\n     *\r\n     * @return {object} Classes object\r\n     */\n    getClassNames: function getClassNames() {\n      var _this = this;\n\n      var customClass = _this.options.customClass;\n      var classesObj = {};\n      $.each(classList.split(' '), function (i, currClass) {\n        var c = customClass.prefix + currClass;\n        classesObj[currClass.toLowerCase()] = customClass.camelCase ? c : _this.utils.toDash(c);\n      });\n      classesObj.prefix = customClass.prefix;\n      return classesObj;\n    },\n\n    /** Set the label text */\n    setLabel: function setLabel() {\n      var _this = this;\n\n      var labelBuilder = _this.options.labelBuilder;\n\n      if (_this.state.multiple) {\n        // Make sure currentValues is an array\n        var currentValues = $.isArray(_this.state.currValue) ? _this.state.currValue : [_this.state.currValue]; // I'm not happy with this, but currentValues can be an empty\n        // array and we need to fallback to the default option.\n\n        currentValues = currentValues.length === 0 ? [0] : currentValues;\n        var labelMarkup = $.map(currentValues, function (value) {\n          return $.grep(_this.lookupItems, function (item) {\n            return item.index === value;\n          })[0]; // we don't want nested arrays here\n        });\n        labelMarkup = $.grep(labelMarkup, function (item) {\n          // Hide default (please choose) if more then one element were selected.\n          // If no option value were given value is set to option text by default\n          if (labelMarkup.length > 1 || labelMarkup.length === 0) {\n            return $.trim(item.value) !== '';\n          }\n\n          return item;\n        });\n        labelMarkup = $.map(labelMarkup, function (item) {\n          return $.isFunction(labelBuilder) ? labelBuilder(item) : _this.utils.format(labelBuilder, item);\n        }); // Limit the amount of selected values shown in label\n\n        if (_this.options.multiple.maxLabelEntries) {\n          if (labelMarkup.length >= _this.options.multiple.maxLabelEntries + 1) {\n            labelMarkup = labelMarkup.slice(0, _this.options.multiple.maxLabelEntries);\n            labelMarkup.push($.isFunction(labelBuilder) ? labelBuilder({\n              text: '...'\n            }) : _this.utils.format(labelBuilder, {\n              text: '...'\n            }));\n          } else {\n            labelMarkup.slice(labelMarkup.length - 1);\n          }\n        }\n\n        _this.elements.label.html(labelMarkup.join(_this.options.multiple.separator));\n      } else {\n        var currItem = _this.lookupItems[_this.state.currValue];\n\n        _this.elements.label.html($.isFunction(labelBuilder) ? labelBuilder(currItem) : _this.utils.format(labelBuilder, currItem));\n      }\n    },\n\n    /** Get and save the available options */\n    populate: function populate() {\n      var _this = this;\n\n      var $options = _this.$element.children();\n\n      var $justOptions = _this.$element.find('option');\n\n      var $selected = $justOptions.filter(':selected');\n      var selectedIndex = $justOptions.index($selected);\n      var currIndex = 0;\n      var emptyValue = _this.state.multiple ? [] : 0;\n\n      if ($selected.length > 1 && _this.state.multiple) {\n        selectedIndex = [];\n        $selected.each(function () {\n          selectedIndex.push($(this).index());\n        });\n      }\n\n      _this.state.currValue = ~selectedIndex ? selectedIndex : emptyValue;\n      _this.state.selectedIdx = _this.state.currValue;\n      _this.state.highlightedIdx = _this.state.currValue;\n      _this.items = [];\n      _this.lookupItems = [];\n\n      if ($options.length) {\n        // Build options markup\n        $options.each(function (i) {\n          var $elm = $(this);\n\n          if ($elm.is('optgroup')) {\n            var optionsGroup = {\n              element: $elm,\n              label: $elm.prop('label'),\n              groupDisabled: $elm.prop('disabled'),\n              items: []\n            };\n            $elm.children().each(function (i) {\n              var $elm = $(this);\n              optionsGroup.items[i] = _this.getItemData(currIndex, $elm, optionsGroup.groupDisabled || $elm.prop('disabled'));\n              _this.lookupItems[currIndex] = optionsGroup.items[i];\n              currIndex++;\n            });\n            _this.items[i] = optionsGroup;\n          } else {\n            _this.items[i] = _this.getItemData(currIndex, $elm, $elm.prop('disabled'));\n            _this.lookupItems[currIndex] = _this.items[i];\n            currIndex++;\n          }\n        });\n\n        _this.setLabel();\n\n        _this.elements.items.append(_this.elements.itemsScroll.html(_this.getItemsMarkup(_this.items)));\n      }\n    },\n\n    /**\r\n     * Generate items object data\r\n     * @param  {integer} index      - Current item index\r\n     * @param  {node}    $elm       - Current element node\r\n     * @param  {boolean} isDisabled - Current element disabled state\r\n     * @return {object}               Item object\r\n     */\n    getItemData: function getItemData(index, $elm, isDisabled) {\n      var _this = this;\n\n      return {\n        index: index,\n        element: $elm,\n        value: $elm.val(),\n        className: $elm.prop('class'),\n        text: $elm.html(),\n        slug: $.trim(_this.utils.replaceDiacritics($elm.html())),\n        alt: $elm.attr('data-alt'),\n        selected: $elm.prop('selected'),\n        disabled: isDisabled\n      };\n    },\n\n    /**\r\n     * Generate options markup\r\n     *\r\n     * @param  {object} items - Object containing all available options\r\n     * @return {string}         HTML for the options box\r\n     */\n    getItemsMarkup: function getItemsMarkup(items) {\n      var _this = this;\n\n      var markup = '<ul>';\n\n      if ($.isFunction(_this.options.listBuilder) && _this.options.listBuilder) {\n        items = _this.options.listBuilder(items);\n      }\n\n      $.each(items, function (i, elm) {\n        if (elm.label !== undefined) {\n          markup += _this.utils.format('<ul class=\"{1}\"><li class=\"{2}\">{3}<\/li>', _this.utils.arrayToClassname([_this.classes.group, elm.groupDisabled ? 'disabled' : '', elm.element.prop('class')]), _this.classes.grouplabel, elm.element.prop('label'));\n          $.each(elm.items, function (i, elm) {\n            markup += _this.getItemMarkup(elm.index, elm);\n          });\n          markup += '<\/ul>';\n        } else {\n          markup += _this.getItemMarkup(elm.index, elm);\n        }\n      });\n      return markup + '<\/ul>';\n    },\n\n    /**\r\n     * Generate every option markup\r\n     *\r\n     * @param  {number} index    - Index of current item\r\n     * @param  {object} itemData - Current item\r\n     * @return {string}            HTML for the option\r\n     */\n    getItemMarkup: function getItemMarkup(index, itemData) {\n      var _this = this;\n\n      var itemBuilder = _this.options.optionsItemBuilder; // limit access to item data to provide a simple interface\n      // to most relevant options.\n\n      var filteredItemData = {\n        value: itemData.value,\n        text: itemData.text,\n        slug: itemData.slug,\n        index: itemData.index\n      };\n      return _this.utils.format('<li data-index=\"{1}\" class=\"{2}\">{3}<\/li>', index, _this.utils.arrayToClassname([itemData.className, index === _this.items.length - 1 ? 'last' : '', itemData.disabled ? 'disabled' : '', itemData.selected ? 'selected' : '']), $.isFunction(itemBuilder) ? _this.utils.format(itemBuilder(itemData, this.$element, index), itemData) : _this.utils.format(itemBuilder, filteredItemData));\n    },\n\n    /** Remove events on the elements */\n    unbindEvents: function unbindEvents() {\n      var _this = this;\n\n      _this.elements.wrapper.add(_this.$element).add(_this.elements.outerWrapper).add(_this.elements.input).off(eventNamespaceSuffix);\n    },\n\n    /** Bind events on the elements */\n    bindEvents: function bindEvents() {\n      var _this = this;\n\n      _this.elements.outerWrapper.on('mouseenter' + eventNamespaceSuffix + ' mouseleave' + eventNamespaceSuffix, function (e) {\n        $(this).toggleClass(_this.classes.hover, e.type === 'mouseenter'); // Delay close effect when openOnHover is true\n\n        if (_this.options.openOnHover) {\n          clearTimeout(_this.closeTimer);\n\n          if (e.type === 'mouseleave') {\n            _this.closeTimer = setTimeout($.proxy(_this.close, _this), _this.options.hoverIntentTimeout);\n          } else {\n            _this.open();\n          }\n        }\n      }); // Toggle open/close\n\n\n      _this.elements.wrapper.on('click' + eventNamespaceSuffix, function (e) {\n        _this.state.opened ? _this.close() : _this.open(e);\n      }); // Translate original element focus event to dummy input.\n      // Disabled on mobile devices because the default option list isn't\n      // shown due the fact that hidden input gets focused\n\n\n      if (!(_this.options.nativeOnMobile && _this.utils.isMobile())) {\n        _this.$element.on('focus' + eventNamespaceSuffix, function () {\n          _this.elements.input.focus();\n        });\n\n        _this.elements.input.prop({\n          tabindex: _this.originalTabindex,\n          disabled: false\n        }).on('keydown' + eventNamespaceSuffix, $.proxy(_this.handleKeys, _this)).on('focusin' + eventNamespaceSuffix, function (e) {\n          _this.elements.outerWrapper.addClass(_this.classes.focus); // Prevent the flicker when focusing out and back again in the browser window\n\n\n          _this.elements.input.one('blur', function () {\n            _this.elements.input.blur();\n          });\n\n          if (_this.options.openOnFocus && !_this.state.opened) {\n            _this.open(e);\n          }\n        }).on('focusout' + eventNamespaceSuffix, function () {\n          _this.elements.outerWrapper.removeClass(_this.classes.focus);\n        }).on('input propertychange', function () {\n          var val = _this.elements.input.val();\n\n          var searchRegExp = new RegExp('^' + _this.utils.escapeRegExp(val), 'i'); // Clear search\n\n          clearTimeout(_this.resetStr);\n          _this.resetStr = setTimeout(function () {\n            _this.elements.input.val('');\n          }, _this.options.keySearchTimeout);\n\n          if (val.length) {\n            // Search in select options\n            $.each(_this.items, function (i, elm) {\n              if (elm.disabled) {\n                return;\n              }\n\n              if (searchRegExp.test(elm.text) || searchRegExp.test(elm.slug)) {\n                _this.highlight(i);\n\n                return false;\n              }\n\n              if (!elm.alt) {\n                return;\n              }\n\n              var altItems = elm.alt.split('|');\n\n              for (var ai = 0; ai < altItems.length; ai++) {\n                if (!altItems[ai]) {\n                  break;\n                }\n\n                if (searchRegExp.test(altItems[ai].trim())) {\n                  _this.highlight(i);\n\n                  return false;\n                }\n              }\n            });\n          }\n        });\n      }\n\n      _this.$li.on({\n        // Prevent <input> blur on Chrome\n        mousedown: function mousedown(e) {\n          e.preventDefault();\n          e.stopPropagation();\n        },\n        click: function click() {\n          _this.select($(this).data('index')); // Chrome doesn't close options box if select is wrapped with a label\n          // We need to 'return false' to avoid that\n\n\n          return false;\n        }\n      });\n    },\n\n    /**\r\n     * Behavior when keyboard keys is pressed\r\n     *\r\n     * @param {object} e - Event object\r\n     */\n    handleKeys: function handleKeys(e) {\n      var _this = this;\n\n      var key = e.which;\n      var keys = _this.options.keys;\n      var isPrevKey = $.inArray(key, keys.previous) > -1;\n      var isNextKey = $.inArray(key, keys.next) > -1;\n      var isSelectKey = $.inArray(key, keys.select) > -1;\n      var isOpenKey = $.inArray(key, keys.open) > -1;\n      var idx = _this.state.highlightedIdx;\n      var isFirstOrLastItem = isPrevKey && idx === 0 || isNextKey && idx + 1 === _this.items.length;\n      var goToItem = 0; // Enter / Space\n\n      if (key === 13 || key === 32) {\n        e.preventDefault();\n      } // If it's a directional key\n\n\n      if (isPrevKey || isNextKey) {\n        if (!_this.options.allowWrap && isFirstOrLastItem) {\n          return;\n        }\n\n        if (isPrevKey) {\n          goToItem = _this.utils.previousEnabledItem(_this.lookupItems, idx);\n        }\n\n        if (isNextKey) {\n          goToItem = _this.utils.nextEnabledItem(_this.lookupItems, idx);\n        }\n\n        _this.highlight(goToItem);\n      } // Tab / Enter / ESC\n\n\n      if (isSelectKey && _this.state.opened) {\n        _this.select(idx);\n\n        if (!_this.state.multiple || !_this.options.multiple.keepMenuOpen) {\n          _this.close();\n        }\n\n        return;\n      } // Space / Enter / Left / Up / Right / Down\n\n\n      if (isOpenKey && !_this.state.opened) {\n        _this.open();\n      }\n    },\n\n    /** Update the items object */\n    refresh: function refresh() {\n      var _this = this;\n\n      _this.populate();\n\n      _this.activate();\n\n      _this.utils.triggerCallback('Refresh', _this);\n    },\n\n    /** Set options box width/height */\n    setOptionsDimensions: function setOptionsDimensions() {\n      var _this = this; // Calculate options box height\n      // Set a temporary class on the hidden parent of the element\n\n\n      var hiddenChildren = _this.elements.items.closest(':visible').children(':hidden').addClass(_this.classes.tempshow);\n\n      var maxHeight = _this.options.maxHeight;\n\n      var itemsWidth = _this.elements.items.outerWidth();\n\n      var wrapperWidth = _this.elements.wrapper.outerWidth() - (itemsWidth - _this.elements.items.width()); // Set the dimensions, minimum is wrapper width, expand for long items if option is true\n\n\n      if (!_this.options.expandToItemText || wrapperWidth > itemsWidth) {\n        _this.finalWidth = wrapperWidth;\n      } else {\n        // Make sure the scrollbar width is included\n        _this.elements.items.css('overflow', 'scroll'); // Set a really long width for _this.elements.outerWrapper\n\n\n        _this.elements.outerWrapper.width(9e4);\n\n        _this.finalWidth = _this.elements.items.width(); // Set scroll bar to auto\n\n        _this.elements.items.css('overflow', '');\n\n        _this.elements.outerWrapper.width('');\n      }\n\n      _this.elements.items.width(_this.finalWidth).height() > maxHeight && _this.elements.items.height(maxHeight); // Remove the temporary class\n\n      hiddenChildren.removeClass(_this.classes.tempshow);\n    },\n\n    /** Detect if the options box is inside the window */\n    isInViewport: function isInViewport() {\n      var _this = this;\n\n      if (_this.options.forceRenderAbove === true) {\n        _this.elements.outerWrapper.addClass(_this.classes.above);\n      } else if (_this.options.forceRenderBelow === true) {\n        _this.elements.outerWrapper.addClass(_this.classes.below);\n      } else {\n        var scrollTop = $win.scrollTop();\n        var winHeight = $win.height();\n\n        var uiPosX = _this.elements.outerWrapper.offset().top;\n\n        var uiHeight = _this.elements.outerWrapper.outerHeight();\n\n        var fitsDown = uiPosX + uiHeight + _this.itemsHeight <= scrollTop + winHeight;\n        var fitsAbove = uiPosX - _this.itemsHeight > scrollTop; // If it does not fit below, only render it\n        // above it fit's there.\n        // It's acceptable that the user needs to\n        // scroll the viewport to see the cut off UI\n\n        var renderAbove = !fitsDown && fitsAbove;\n        var renderBelow = !renderAbove;\n\n        _this.elements.outerWrapper.toggleClass(_this.classes.above, renderAbove);\n\n        _this.elements.outerWrapper.toggleClass(_this.classes.below, renderBelow);\n      }\n    },\n\n    /**\r\n     * Detect if currently selected option is visible and scroll the options box to show it\r\n     *\r\n     * @param {Number|Array} index - Index of the selected items\r\n     */\n    detectItemVisibility: function detectItemVisibility(index) {\n      var _this = this;\n\n      var $filteredLi = _this.$li.filter('[data-index]');\n\n      if (_this.state.multiple) {\n        // If index is an array, we can assume a multiple select and we\n        // want to scroll to the uppermost selected item!\n        // Math.min.apply(Math, index) returns the lowest entry in an Array.\n        index = $.isArray(index) && index.length === 0 ? 0 : index;\n        index = $.isArray(index) ? Math.min.apply(Math, index) : index;\n      }\n\n      var liHeight = $filteredLi.eq(index).outerHeight();\n      var liTop = $filteredLi[index].offsetTop;\n\n      var itemsScrollTop = _this.elements.itemsScroll.scrollTop();\n\n      var scrollT = liTop + liHeight * 2;\n\n      _this.elements.itemsScroll.scrollTop(scrollT > itemsScrollTop + _this.itemsHeight ? scrollT - _this.itemsHeight : liTop - liHeight < itemsScrollTop ? liTop - liHeight : itemsScrollTop);\n    },\n\n    /**\r\n     * Open the select options box\r\n     *\r\n     * @param {Event} e - Event\r\n     */\n    open: function open(e) {\n      var _this = this;\n\n      if (_this.options.nativeOnMobile && _this.utils.isMobile()) {\n        return false;\n      }\n\n      _this.utils.triggerCallback('BeforeOpen', _this);\n\n      if (e) {\n        e.preventDefault();\n\n        if (_this.options.stopPropagation) {\n          e.stopPropagation();\n        }\n      }\n\n      if (_this.state.enabled) {\n        _this.setOptionsDimensions(); // Find any other opened instances of select and close it\n\n\n        $('.' + _this.classes.hideselect, '.' + _this.classes.open).children()[pluginName]('close');\n        _this.state.opened = true;\n        _this.itemsHeight = _this.elements.items.outerHeight();\n        _this.itemsInnerHeight = _this.elements.items.height(); // Toggle options box visibility\n\n        _this.elements.outerWrapper.addClass(_this.classes.open); // Give dummy input focus\n\n\n        _this.elements.input.val('');\n\n        if (e && e.type !== 'focusin') {\n          _this.elements.input.focus();\n        } // Delayed binds events on Document to make label clicks work\n\n\n        setTimeout(function () {\n          $doc.on('click' + eventNamespaceSuffix, $.proxy(_this.close, _this)).on('scroll' + eventNamespaceSuffix, $.proxy(_this.isInViewport, _this));\n        }, 1);\n\n        _this.isInViewport(); // Prevent window scroll when using mouse wheel inside items box\n\n\n        if (_this.options.preventWindowScroll) {\n          /* istanbul ignore next */\n          $doc.on('mousewheel' + eventNamespaceSuffix + ' DOMMouseScroll' + eventNamespaceSuffix, '.' + _this.classes.scroll, function (e) {\n            var orgEvent = e.originalEvent;\n            var scrollTop = $(this).scrollTop();\n            var deltaY = 0;\n\n            if ('detail' in orgEvent) {\n              deltaY = orgEvent.detail * -1;\n            }\n\n            if ('wheelDelta' in orgEvent) {\n              deltaY = orgEvent.wheelDelta;\n            }\n\n            if ('wheelDeltaY' in orgEvent) {\n              deltaY = orgEvent.wheelDeltaY;\n            }\n\n            if ('deltaY' in orgEvent) {\n              deltaY = orgEvent.deltaY * -1;\n            }\n\n            if (scrollTop === this.scrollHeight - _this.itemsInnerHeight && deltaY < 0 || scrollTop === 0 && deltaY > 0) {\n              e.preventDefault();\n            }\n          });\n        }\n\n        _this.detectItemVisibility(_this.state.selectedIdx);\n\n        _this.highlight(_this.state.multiple ? -1 : _this.state.selectedIdx);\n\n        _this.utils.triggerCallback('Open', _this);\n      }\n    },\n\n    /** Close the select options box */\n    close: function close() {\n      var _this = this;\n\n      _this.utils.triggerCallback('BeforeClose', _this); // Remove custom events on document\n\n\n      $doc.off(eventNamespaceSuffix); // Remove visible class to hide options box\n\n      _this.elements.outerWrapper.removeClass(_this.classes.open);\n\n      _this.state.opened = false;\n\n      _this.utils.triggerCallback('Close', _this);\n    },\n\n    /** Select current option and change the label */\n    change: function change() {\n      var _this = this;\n\n      _this.utils.triggerCallback('BeforeChange', _this);\n\n      if (_this.state.multiple) {\n        // Reset old selected\n        $.each(_this.lookupItems, function (idx) {\n          _this.lookupItems[idx].selected = false;\n\n          _this.$element.find('option').prop('selected', false);\n        }); // Set new selected\n\n        $.each(_this.state.selectedIdx, function (idx, value) {\n          _this.lookupItems[value].selected = true;\n\n          _this.$element.find('option').eq(value).prop('selected', true);\n        });\n        _this.state.currValue = _this.state.selectedIdx;\n\n        _this.setLabel();\n\n        _this.utils.triggerCallback('Change', _this);\n      } else if (_this.state.currValue !== _this.state.selectedIdx) {\n        // Apply changed value to original select\n        _this.$element.prop('selectedIndex', _this.state.currValue = _this.state.selectedIdx).data('value', _this.lookupItems[_this.state.selectedIdx].text); // Change label text\n\n\n        _this.setLabel();\n\n        _this.utils.triggerCallback('Change', _this);\n      }\n    },\n\n    /**\r\n     * Highlight option\r\n     * @param {number} index - Index of the options that will be highlighted\r\n     */\n    highlight: function highlight(index) {\n      var _this = this;\n\n      var $filteredLi = _this.$li.filter('[data-index]').removeClass('highlighted');\n\n      _this.utils.triggerCallback('BeforeHighlight', _this); // Parameter index is required and should not be a disabled item\n\n\n      if (index === undefined || index === -1 || _this.lookupItems[index].disabled) {\n        return;\n      }\n\n      $filteredLi.eq(_this.state.highlightedIdx = index).addClass('highlighted');\n\n      _this.detectItemVisibility(index);\n\n      _this.utils.triggerCallback('Highlight', _this);\n    },\n\n    /**\r\n     * Select option\r\n     *\r\n     * @param {number} index - Index of the option that will be selected\r\n     */\n    select: function select(index) {\n      var _this = this;\n\n      var $filteredLi = _this.$li.filter('[data-index]');\n\n      _this.utils.triggerCallback('BeforeSelect', _this, index); // Parameter index is required and should not be a disabled item\n\n\n      if (index === undefined || index === -1 || _this.lookupItems[index].disabled) {\n        return;\n      }\n\n      if (_this.state.multiple) {\n        // Make sure selectedIdx is an array\n        _this.state.selectedIdx = $.isArray(_this.state.selectedIdx) ? _this.state.selectedIdx : [_this.state.selectedIdx];\n        var hasSelectedIndex = $.inArray(index, _this.state.selectedIdx);\n\n        if (hasSelectedIndex !== -1) {\n          _this.state.selectedIdx.splice(hasSelectedIndex, 1);\n        } else {\n          _this.state.selectedIdx.push(index);\n        }\n\n        $filteredLi.removeClass('selected').filter(function (index) {\n          return $.inArray(index, _this.state.selectedIdx) !== -1;\n        }).addClass('selected');\n      } else {\n        $filteredLi.removeClass('selected').eq(_this.state.selectedIdx = index).addClass('selected');\n      }\n\n      if (!_this.state.multiple || !_this.options.multiple.keepMenuOpen) {\n        _this.close();\n      }\n\n      _this.change();\n\n      _this.utils.triggerCallback('Select', _this, index);\n    },\n\n    /**\r\n     * Unbind and remove\r\n     *\r\n     * @param {boolean} preserveData - Check if the data on the element should be removed too\r\n     */\n    destroy: function destroy(preserveData) {\n      var _this = this;\n\n      if (_this.state && _this.state.enabled) {\n        _this.elements.items.add(_this.elements.wrapper).add(_this.elements.input).remove();\n\n        if (!preserveData) {\n          _this.$element.removeData(pluginName).removeData('value');\n        }\n\n        _this.$element.prop('tabindex', _this.originalTabindex).off(eventNamespaceSuffix).off(_this.eventTriggers).unwrap().unwrap();\n\n        _this.state.enabled = false;\n      }\n    }\n  }; // A really lightweight plugin wrapper around the constructor,\n  // preventing against multiple instantiations\n\n  $.fn[pluginName] = function (args) {\n    return this.each(function () {\n      var data = $.data(this, pluginName);\n\n      if (data && !data.disableOnMobile) {\n        typeof args === 'string' && data[args] ? data[args]() : data.init(args);\n      } else {\n        $.data(this, pluginName, new Selectric(this, args));\n      }\n    });\n  };\n  /**\r\n   * Default plugin options\r\n   *\r\n   * @type {object}\r\n   */\n\n\n  $.fn[pluginName].defaults = {\n    onChange: function onChange(elm) {\n      $(elm).change();\n    },\n    maxHeight: 300,\n    keySearchTimeout: 500,\n    arrowButtonMarkup: '<b class=\"button\">&#x25be;<\/b>',\n    disableOnMobile: false,\n    nativeOnMobile: true,\n    openOnFocus: true,\n    openOnHover: false,\n    hoverIntentTimeout: 500,\n    expandToItemText: false,\n    responsive: false,\n    preventWindowScroll: true,\n    inheritOriginalWidth: false,\n    allowWrap: true,\n    forceRenderAbove: false,\n    forceRenderBelow: false,\n    stopPropagation: true,\n    optionsItemBuilder: '{text}',\n    // function(itemData, element, index)\n    labelBuilder: '{text}',\n    // function(currItem)\n    listBuilder: false,\n    // function(items)\n    keys: {\n      previous: [37, 38],\n      // Left / Up\n      next: [39, 40],\n      // Right / Down\n      select: [9, 13, 27],\n      // Tab / Enter / Escape\n      open: [13, 32, 37, 38, 39, 40],\n      // Enter / Space / Left / Up / Right / Down\n      close: [9, 27] // Tab / Escape\n\n    },\n    customClass: {\n      prefix: pluginName,\n      camelCase: false\n    },\n    multiple: {\n      separator: ', ',\n      keepMenuOpen: true,\n      maxLabelEntries: false\n    }\n  };\n});\n/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./../../../node_modules/webpack/buildin/harmony-module.js */ \"./node_modules/webpack/buildin/harmony-module.js\")(module), __webpack_require__(/*! jquery */ \"./node_modules/jquery/dist/jquery.js\")))\n\n//# sourceURL=webpack:///./src/js/_libs/selectric.js?")},"./src/js/_libs/slick.js":function(module,__webpack_exports__,__webpack_require__){"use strict";eval("/* WEBPACK VAR INJECTION */(function(module, jQuery) {/* harmony import */ var core_js_modules_es_array_filter__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! core-js/modules/es.array.filter */ \"./node_modules/core-js/modules/es.array.filter.js\");\n/* harmony import */ var core_js_modules_es_array_filter__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_array_filter__WEBPACK_IMPORTED_MODULE_0__);\n/* harmony import */ var core_js_modules_es_array_find__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! core-js/modules/es.array.find */ \"./node_modules/core-js/modules/es.array.find.js\");\n/* harmony import */ var core_js_modules_es_array_find__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_array_find__WEBPACK_IMPORTED_MODULE_1__);\n/* harmony import */ var core_js_modules_es_array_index_of__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! core-js/modules/es.array.index-of */ \"./node_modules/core-js/modules/es.array.index-of.js\");\n/* harmony import */ var core_js_modules_es_array_index_of__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_array_index_of__WEBPACK_IMPORTED_MODULE_2__);\n/* harmony import */ var core_js_modules_es_array_slice__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! core-js/modules/es.array.slice */ \"./node_modules/core-js/modules/es.array.slice.js\");\n/* harmony import */ var core_js_modules_es_array_slice__WEBPACK_IMPORTED_MODULE_3___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_array_slice__WEBPACK_IMPORTED_MODULE_3__);\n/* harmony import */ var core_js_modules_es_array_sort__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! core-js/modules/es.array.sort */ \"./node_modules/core-js/modules/es.array.sort.js\");\n/* harmony import */ var core_js_modules_es_array_sort__WEBPACK_IMPORTED_MODULE_4___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_array_sort__WEBPACK_IMPORTED_MODULE_4__);\n/* harmony import */ var core_js_modules_es_array_splice__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! core-js/modules/es.array.splice */ \"./node_modules/core-js/modules/es.array.splice.js\");\n/* harmony import */ var core_js_modules_es_array_splice__WEBPACK_IMPORTED_MODULE_5___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_array_splice__WEBPACK_IMPORTED_MODULE_5__);\n/* harmony import */ var core_js_modules_es_regexp_exec__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! core-js/modules/es.regexp.exec */ \"./node_modules/core-js/modules/es.regexp.exec.js\");\n/* harmony import */ var core_js_modules_es_regexp_exec__WEBPACK_IMPORTED_MODULE_6___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_regexp_exec__WEBPACK_IMPORTED_MODULE_6__);\n/* harmony import */ var core_js_modules_es_string_match__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! core-js/modules/es.string.match */ \"./node_modules/core-js/modules/es.string.match.js\");\n/* harmony import */ var core_js_modules_es_string_match__WEBPACK_IMPORTED_MODULE_7___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_string_match__WEBPACK_IMPORTED_MODULE_7__);\n\n\n\n\n\n\n\n\n\nfunction _typeof(obj) { \"@babel/helpers - typeof\"; 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/*\r\n     _ _      _       _\r\n ___| (_) ___| | __  (_)___\r\n/ __| | |/ __| |/ /  | / __|\r\n\\__ \\ | | (__|   < _ | \\__ \\\r\n|___/_|_|\\___|_|\\_(_)/ |___/\r\n                   |__/\r\n\r\n Version: 1.9.0\r\n  Author: Ken Wheeler\r\n Website: http://kenwheeler.github.io\r\n    Docs: http://kenwheeler.github.io/slick\r\n    Repo: http://github.com/kenwheeler/slick\r\n  Issues: http://github.com/kenwheeler/slick/issues\r\n\r\n */\n\n/* global window, document, define, jQuery, setInterval, clearInterval */\n;\n\n(function (factory) {\n  'use strict';\n\n  if (typeof define === 'function' && __webpack_require__(/*! !webpack amd options */ \"./node_modules/webpack/buildin/amd-options.js\")) {\n    define(['jquery'], factory);\n  } else if (typeof exports !== 'undefined') {\n    module.exports = factory(__webpack_require__(/*! jquery */ \"./node_modules/jquery/dist/jquery.js\"));\n  } else {\n    factory(jQuery);\n  }\n})(function ($) {\n  'use strict';\n\n  var Slick = window.Slick || {};\n\n  Slick = function () {\n    var instanceUid = 0;\n\n    function Slick(element, settings) {\n      var _ = this,\n          dataSettings;\n\n      _.defaults = {\n        accessibility: true,\n        adaptiveHeight: false,\n        appendArrows: $(element),\n        appendDots: $(element),\n        arrows: true,\n        asNavFor: null,\n        prevArrow: '<button class=\"slick-prev\" aria-label=\"Previous\" type=\"button\"><span class=\"icon font-ico-arrow-slide-prev\"><\/span><\/button>',\n        nextArrow: '<button class=\"slick-next\" aria-label=\"Next\" type=\"button\"><span class=\"icon font-ico-arrow-slide-next\"><\/span><\/button>',\n        autoplay: false,\n        autoplaySpeed: 3000,\n        centerMode: false,\n        centerPadding: '50px',\n        cssEase: 'ease',\n        customPaging: function customPaging(slider, i) {\n          return $('<button type=\"button\" />').text(i + 1);\n        },\n        dots: false,\n        dotsClass: 'slick-dots',\n        draggable: true,\n        easing: 'linear',\n        edgeFriction: 0.35,\n        fade: false,\n        focusOnSelect: false,\n        focusOnChange: false,\n        infinite: true,\n        initialSlide: 0,\n        lazyLoad: 'ondemand',\n        mobileFirst: false,\n        pauseOnHover: true,\n        pauseOnFocus: true,\n        pauseOnDotsHover: false,\n        respondTo: 'window',\n        responsive: null,\n        rows: 1,\n        rtl: false,\n        slide: '',\n        slidesPerRow: 1,\n        slidesToShow: 1,\n        slidesToScroll: 1,\n        speed: 500,\n        swipe: true,\n        swipeToSlide: false,\n        touchMove: true,\n        touchThreshold: 5,\n        useCSS: true,\n        useTransform: true,\n        variableWidth: false,\n        vertical: false,\n        verticalSwiping: false,\n        waitForAnimate: true,\n        zIndex: 1000\n      };\n      _.initials = {\n        animating: false,\n        dragging: false,\n        autoPlayTimer: null,\n        currentDirection: 0,\n        currentLeft: null,\n        currentSlide: 0,\n        direction: 1,\n        $dots: null,\n        listWidth: null,\n        listHeight: null,\n        loadIndex: 0,\n        $nextArrow: null,\n        $prevArrow: null,\n        scrolling: false,\n        slideCount: null,\n        slideWidth: null,\n        $slideTrack: null,\n        $slides: null,\n        sliding: false,\n        slideOffset: 0,\n        swipeLeft: null,\n        swiping: false,\n        $list: null,\n        touchObject: {},\n        transformsEnabled: false,\n        unslicked: false\n      };\n      $.extend(_, _.initials);\n      _.activeBreakpoint = null;\n      _.animType = null;\n      _.animProp = null;\n      _.breakpoints = [];\n      _.breakpointSettings = [];\n      _.cssTransitions = false;\n      _.focussed = false;\n      _.interrupted = false;\n      _.hidden = 'hidden';\n      _.paused = true;\n      _.positionProp = null;\n      _.respondTo = null;\n      _.rowCount = 1;\n      _.shouldClick = true;\n      _.$slider = $(element);\n      _.$slidesCache = null;\n      _.transformType = null;\n      _.transitionType = null;\n      _.visibilityChange = 'visibilitychange';\n      _.windowWidth = 0;\n      _.windowTimer = null;\n      dataSettings = $(element).data('slick') || {};\n      _.options = $.extend({}, _.defaults, settings, dataSettings);\n      _.currentSlide = _.options.initialSlide;\n      _.originalSettings = _.options;\n\n      if (typeof document.mozHidden !== 'undefined') {\n        _.hidden = 'mozHidden';\n        _.visibilityChange = 'mozvisibilitychange';\n      } else if (typeof document.webkitHidden !== 'undefined') {\n        _.hidden = 'webkitHidden';\n        _.visibilityChange = 'webkitvisibilitychange';\n      }\n\n      _.autoPlay = $.proxy(_.autoPlay, _);\n      _.autoPlayClear = $.proxy(_.autoPlayClear, _);\n      _.autoPlayIterator = $.proxy(_.autoPlayIterator, _);\n      _.changeSlide = $.proxy(_.changeSlide, _);\n      _.clickHandler = $.proxy(_.clickHandler, _);\n      _.selectHandler = $.proxy(_.selectHandler, _);\n      _.setPosition = $.proxy(_.setPosition, _);\n      _.swipeHandler = $.proxy(_.swipeHandler, _);\n      _.dragHandler = $.proxy(_.dragHandler, _);\n      _.keyHandler = $.proxy(_.keyHandler, _);\n      _.instanceUid = instanceUid++; // A simple way to check for HTML strings\n      // Strict HTML recognition (must start with <)\n      // Extracted from jQuery v1.11 source\n\n      _.htmlExpr = /^(?:\\s*(<[\\w\\W]+>)[^>]*)$/;\n\n      _.registerBreakpoints();\n\n      _.init(true);\n    }\n\n    return Slick;\n  }();\n\n  Slick.prototype.activateADA = function () {\n    var _ = this;\n\n    _.$slideTrack.find('.slick-active').attr({\n      'aria-hidden': 'false'\n    }).find('a, input, button, select').attr({\n      'tabindex': '0'\n    });\n  };\n\n  Slick.prototype.addSlide = Slick.prototype.slickAdd = function (markup, index, addBefore) {\n    var _ = this;\n\n    if (typeof index === 'boolean') {\n      addBefore = index;\n      index = null;\n    } else if (index < 0 || index >= _.slideCount) {\n      return false;\n    }\n\n    _.unload();\n\n    if (typeof index === 'number') {\n      if (index === 0 && _.$slides.length === 0) {\n        $(markup).appendTo(_.$slideTrack);\n      } else if (addBefore) {\n        $(markup).insertBefore(_.$slides.eq(index));\n      } else {\n        $(markup).insertAfter(_.$slides.eq(index));\n      }\n    } else {\n      if (addBefore === true) {\n        $(markup).prependTo(_.$slideTrack);\n      } else {\n        $(markup).appendTo(_.$slideTrack);\n      }\n    }\n\n    _.$slides = _.$slideTrack.children(this.options.slide);\n\n    _.$slideTrack.children(this.options.slide).detach();\n\n    _.$slideTrack.append(_.$slides);\n\n    _.$slides.each(function (index, element) {\n      $(element).attr('data-slick-index', index);\n    });\n\n    _.$slidesCache = _.$slides;\n\n    _.reinit();\n  };\n\n  Slick.prototype.animateHeight = function () {\n    var _ = this;\n\n    if (_.options.slidesToShow === 1 && _.options.adaptiveHeight === true && _.options.vertical === false) {\n      var targetHeight = _.$slides.eq(_.currentSlide).outerHeight(true);\n\n      _.$list.animate({\n        height: targetHeight\n      }, _.options.speed);\n    }\n  };\n\n  Slick.prototype.animateSlide = function (targetLeft, callback) {\n    var animProps = {},\n        _ = this;\n\n    _.animateHeight();\n\n    if (_.options.rtl === true && _.options.vertical === false) {\n      targetLeft = -targetLeft;\n    }\n\n    if (_.transformsEnabled === false) {\n      if (_.options.vertical === false) {\n        _.$slideTrack.animate({\n          left: targetLeft\n        }, _.options.speed, _.options.easing, callback);\n      } else {\n        _.$slideTrack.animate({\n          top: targetLeft\n        }, _.options.speed, _.options.easing, callback);\n      }\n    } else {\n      if (_.cssTransitions === false) {\n        if (_.options.rtl === true) {\n          _.currentLeft = -_.currentLeft;\n        }\n\n        $({\n          animStart: _.currentLeft\n        }).animate({\n          animStart: targetLeft\n        }, {\n          duration: _.options.speed,\n          easing: _.options.easing,\n          step: function step(now) {\n            now = Math.ceil(now);\n\n            if (_.options.vertical === false) {\n              animProps[_.animType] = 'translate(' + now + 'px, 0px)';\n\n              _.$slideTrack.css(animProps);\n            } else {\n              animProps[_.animType] = 'translate(0px,' + now + 'px)';\n\n              _.$slideTrack.css(animProps);\n            }\n          },\n          complete: function complete() {\n            if (callback) {\n              callback.call();\n            }\n          }\n        });\n      } else {\n        _.applyTransition();\n\n        targetLeft = Math.ceil(targetLeft);\n\n        if (_.options.vertical === false) {\n          animProps[_.animType] = 'translate3d(' + targetLeft + 'px, 0px, 0px)';\n        } else {\n          animProps[_.animType] = 'translate3d(0px,' + targetLeft + 'px, 0px)';\n        }\n\n        _.$slideTrack.css(animProps);\n\n        if (callback) {\n          setTimeout(function () {\n            _.disableTransition();\n\n            callback.call();\n          }, _.options.speed);\n        }\n      }\n    }\n  };\n\n  Slick.prototype.getNavTarget = function () {\n    var _ = this,\n        asNavFor = _.options.asNavFor;\n\n    if (asNavFor && asNavFor !== null) {\n      asNavFor = $(asNavFor).not(_.$slider);\n    }\n\n    return asNavFor;\n  };\n\n  Slick.prototype.asNavFor = function (index) {\n    var _ = this,\n        asNavFor = _.getNavTarget();\n\n    if (asNavFor !== null && _typeof(asNavFor) === 'object') {\n      asNavFor.each(function () {\n        var target = $(this).slick('getSlick');\n\n        if (!target.unslicked) {\n          target.slideHandler(index, true);\n        }\n      });\n    }\n  };\n\n  Slick.prototype.applyTransition = function (slide) {\n    var _ = this,\n        transition = {};\n\n    if (_.options.fade === false) {\n      transition[_.transitionType] = _.transformType + ' ' + _.options.speed + 'ms ' + _.options.cssEase;\n    } else {\n      transition[_.transitionType] = 'opacity ' + _.options.speed + 'ms ' + _.options.cssEase;\n    }\n\n    if (_.options.fade === false) {\n      _.$slideTrack.css(transition);\n    } else {\n      _.$slides.eq(slide).css(transition);\n    }\n  };\n\n  Slick.prototype.autoPlay = function () {\n    var _ = this;\n\n    _.autoPlayClear();\n\n    if (_.slideCount > _.options.slidesToShow) {\n      _.autoPlayTimer = setInterval(_.autoPlayIterator, _.options.autoplaySpeed);\n    }\n  };\n\n  Slick.prototype.autoPlayClear = function () {\n    var _ = this;\n\n    if (_.autoPlayTimer) {\n      clearInterval(_.autoPlayTimer);\n    }\n  };\n\n  Slick.prototype.autoPlayIterator = function () {\n    var _ = this,\n        slideTo = _.currentSlide + _.options.slidesToScroll;\n\n    if (!_.paused && !_.interrupted && !_.focussed) {\n      if (_.options.infinite === false) {\n        if (_.direction === 1 && _.currentSlide + 1 === _.slideCount - 1) {\n          _.direction = 0;\n        } else if (_.direction === 0) {\n          slideTo = _.currentSlide - _.options.slidesToScroll;\n\n          if (_.currentSlide - 1 === 0) {\n            _.direction = 1;\n          }\n        }\n      }\n\n      _.slideHandler(slideTo);\n    }\n  };\n\n  Slick.prototype.buildArrows = function () {\n    var _ = this;\n\n    if (_.options.arrows === true) {\n      _.$prevArrow = $(_.options.prevArrow).addClass('slick-arrow');\n      _.$nextArrow = $(_.options.nextArrow).addClass('slick-arrow');\n\n      if (_.slideCount > _.options.slidesToShow) {\n        _.$prevArrow.removeClass('slick-hidden').removeAttr('aria-hidden tabindex');\n\n        _.$nextArrow.removeClass('slick-hidden').removeAttr('aria-hidden tabindex');\n\n        if (_.htmlExpr.test(_.options.prevArrow)) {\n          _.$prevArrow.prependTo(_.options.appendArrows);\n        }\n\n        if (_.htmlExpr.test(_.options.nextArrow)) {\n          _.$nextArrow.appendTo(_.options.appendArrows);\n        }\n\n        if (_.options.infinite !== true) {\n          _.$prevArrow.addClass('slick-disabled').attr('aria-disabled', 'true');\n        }\n      } else {\n        _.$prevArrow.add(_.$nextArrow).addClass('slick-hidden').attr({\n          'aria-disabled': 'true',\n          'tabindex': '-1'\n        });\n      }\n    }\n  };\n\n  Slick.prototype.buildDots = function () {\n    var _ = this,\n        i,\n        dot;\n\n    if (_.options.dots === true && _.slideCount > _.options.slidesToShow) {\n      _.$slider.addClass('slick-dotted');\n\n      dot = $('<ul />').addClass(_.options.dotsClass);\n\n      for (i = 0; i <= _.getDotCount(); i += 1) {\n        dot.append($('<li />').append(_.options.customPaging.call(this, _, i)));\n      }\n\n      _.$dots = dot.appendTo(_.options.appendDots);\n\n      _.$dots.find('li').first().addClass('slick-active');\n    }\n  };\n\n  Slick.prototype.buildOut = function () {\n    var _ = this;\n\n    _.$slides = _.$slider.children(_.options.slide + ':not(.slick-cloned)').addClass('slick-slide');\n    _.slideCount = _.$slides.length;\n\n    _.$slides.each(function (index, element) {\n      $(element).attr('data-slick-index', index).data('originalStyling', $(element).attr('style') || '');\n    });\n\n    _.$slider.addClass('slick-slider');\n\n    _.$slideTrack = _.slideCount === 0 ? $('<div class=\"slick-track\"/>').appendTo(_.$slider) : _.$slides.wrapAll('<div class=\"slick-track\"/>').parent();\n    _.$list = _.$slideTrack.wrap('<div class=\"slick-list\"/>').parent();\n\n    _.$slideTrack.css('opacity', 0);\n\n    if (_.options.centerMode === true || _.options.swipeToSlide === true) {\n      _.options.slidesToScroll = 1;\n    }\n\n    $('img[data-lazy]', _.$slider).not('[src]').addClass('slick-loading');\n\n    _.setupInfinite();\n\n    _.buildArrows();\n\n    _.buildDots();\n\n    _.updateDots();\n\n    _.setSlideClasses(typeof _.currentSlide === 'number' ? _.currentSlide : 0);\n\n    if (_.options.draggable === true) {\n      _.$list.addClass('draggable');\n    }\n  };\n\n  Slick.prototype.buildRows = function () {\n    var _ = this,\n        a,\n        b,\n        c,\n        newSlides,\n        numOfSlides,\n        originalSlides,\n        slidesPerSection;\n\n    newSlides = document.createDocumentFragment();\n    originalSlides = _.$slider.children();\n\n    if (_.options.rows > 0) {\n      slidesPerSection = _.options.slidesPerRow * _.options.rows;\n      numOfSlides = Math.ceil(originalSlides.length / slidesPerSection);\n\n      for (a = 0; a < numOfSlides; a++) {\n        var slide = document.createElement('div');\n\n        for (b = 0; b < _.options.rows; b++) {\n          var row = document.createElement('div');\n\n          for (c = 0; c < _.options.slidesPerRow; c++) {\n            var target = a * slidesPerSection + (b * _.options.slidesPerRow + c);\n\n            if (originalSlides.get(target)) {\n              row.appendChild(originalSlides.get(target));\n            }\n          }\n\n          slide.appendChild(row);\n        }\n\n        newSlides.appendChild(slide);\n      }\n\n      _.$slider.empty().append(newSlides);\n\n      _.$slider.children().children().children().css({\n        'width': 100 / _.options.slidesPerRow + '%',\n        'display': 'inline-block'\n      });\n    }\n  };\n\n  Slick.prototype.checkResponsive = function (initial, forceUpdate) {\n    var _ = this,\n        breakpoint,\n        targetBreakpoint,\n        respondToWidth,\n        triggerBreakpoint = false;\n\n    var sliderWidth = _.$slider.width();\n\n    var windowWidth = window.innerWidth || $(window).width();\n\n    if (_.respondTo === 'window') {\n      respondToWidth = windowWidth;\n    } else if (_.respondTo === 'slider') {\n      respondToWidth = sliderWidth;\n    } else if (_.respondTo === 'min') {\n      respondToWidth = Math.min(windowWidth, sliderWidth);\n    }\n\n    if (_.options.responsive && _.options.responsive.length && _.options.responsive !== null) {\n      targetBreakpoint = null;\n\n      for (breakpoint in _.breakpoints) {\n        if (_.breakpoints.hasOwnProperty(breakpoint)) {\n          if (_.originalSettings.mobileFirst === false) {\n            if (respondToWidth < _.breakpoints[breakpoint]) {\n              targetBreakpoint = _.breakpoints[breakpoint];\n            }\n          } else {\n            if (respondToWidth > _.breakpoints[breakpoint]) {\n              targetBreakpoint = _.breakpoints[breakpoint];\n            }\n          }\n        }\n      }\n\n      if (targetBreakpoint !== null) {\n        if (_.activeBreakpoint !== null) {\n          if (targetBreakpoint !== _.activeBreakpoint || forceUpdate) {\n            _.activeBreakpoint = targetBreakpoint;\n\n            if (_.breakpointSettings[targetBreakpoint] === 'unslick') {\n              _.unslick(targetBreakpoint);\n            } else {\n              _.options = $.extend({}, _.originalSettings, _.breakpointSettings[targetBreakpoint]);\n\n              if (initial === true) {\n                _.currentSlide = _.options.initialSlide;\n              }\n\n              _.refresh(initial);\n            }\n\n            triggerBreakpoint = targetBreakpoint;\n          }\n        } else {\n          _.activeBreakpoint = targetBreakpoint;\n\n          if (_.breakpointSettings[targetBreakpoint] === 'unslick') {\n            _.unslick(targetBreakpoint);\n          } else {\n            _.options = $.extend({}, _.originalSettings, _.breakpointSettings[targetBreakpoint]);\n\n            if (initial === true) {\n              _.currentSlide = _.options.initialSlide;\n            }\n\n            _.refresh(initial);\n          }\n\n          triggerBreakpoint = targetBreakpoint;\n        }\n      } else {\n        if (_.activeBreakpoint !== null) {\n          _.activeBreakpoint = null;\n          _.options = _.originalSettings;\n\n          if (initial === true) {\n            _.currentSlide = _.options.initialSlide;\n          }\n\n          _.refresh(initial);\n\n          triggerBreakpoint = targetBreakpoint;\n        }\n      } // only trigger breakpoints during an actual break. not on initialize.\n\n\n      if (!initial && triggerBreakpoint !== false) {\n        _.$slider.trigger('breakpoint', [_, triggerBreakpoint]);\n      }\n    }\n  };\n\n  Slick.prototype.changeSlide = function (event, dontAnimate) {\n    var _ = this,\n        $target = $(event.currentTarget),\n        indexOffset,\n        slideOffset,\n        unevenOffset; // If target is a link, prevent default action.\n\n\n    if ($target.is('a')) {\n      event.preventDefault();\n    } // If target is not the <li> element (ie: a child), find the <li>.\n\n\n    if (!$target.is('li')) {\n      $target = $target.closest('li');\n    }\n\n    unevenOffset = _.slideCount % _.options.slidesToScroll !== 0;\n    indexOffset = unevenOffset ? 0 : (_.slideCount - _.currentSlide) % _.options.slidesToScroll;\n\n    switch (event.data.message) {\n      case 'previous':\n        slideOffset = indexOffset === 0 ? _.options.slidesToScroll : _.options.slidesToShow - indexOffset;\n\n        if (_.slideCount > _.options.slidesToShow) {\n          _.slideHandler(_.currentSlide - slideOffset, false, dontAnimate);\n        }\n\n        break;\n\n      case 'next':\n        slideOffset = indexOffset === 0 ? _.options.slidesToScroll : indexOffset;\n\n        if (_.slideCount > _.options.slidesToShow) {\n          _.slideHandler(_.currentSlide + slideOffset, false, dontAnimate);\n        }\n\n        break;\n\n      case 'index':\n        var index = event.data.index === 0 ? 0 : event.data.index || $target.index() * _.options.slidesToScroll;\n\n        _.slideHandler(_.checkNavigable(index), false, dontAnimate);\n\n        $target.children().trigger('focus');\n        break;\n\n      default:\n        return;\n    }\n  };\n\n  Slick.prototype.checkNavigable = function (index) {\n    var _ = this,\n        navigables,\n        prevNavigable;\n\n    navigables = _.getNavigableIndexes();\n    prevNavigable = 0;\n\n    if (index > navigables[navigables.length - 1]) {\n      index = navigables[navigables.length - 1];\n    } else {\n      for (var n in navigables) {\n        if (index < navigables[n]) {\n          index = prevNavigable;\n          break;\n        }\n\n        prevNavigable = navigables[n];\n      }\n    }\n\n    return index;\n  };\n\n  Slick.prototype.cleanUpEvents = function () {\n    var _ = this;\n\n    if (_.options.dots && _.$dots !== null) {\n      $('li', _.$dots).off('click.slick', _.changeSlide).off('mouseenter.slick', $.proxy(_.interrupt, _, true)).off('mouseleave.slick', $.proxy(_.interrupt, _, false));\n\n      if (_.options.accessibility === true) {\n        _.$dots.off('keydown.slick', _.keyHandler);\n      }\n    }\n\n    _.$slider.off('focus.slick blur.slick');\n\n    if (_.options.arrows === true && _.slideCount > _.options.slidesToShow) {\n      _.$prevArrow && _.$prevArrow.off('click.slick', _.changeSlide);\n      _.$nextArrow && _.$nextArrow.off('click.slick', _.changeSlide);\n\n      if (_.options.accessibility === true) {\n        _.$prevArrow && _.$prevArrow.off('keydown.slick', _.keyHandler);\n        _.$nextArrow && _.$nextArrow.off('keydown.slick', _.keyHandler);\n      }\n    }\n\n    _.$list.off('touchstart.slick mousedown.slick', _.swipeHandler);\n\n    _.$list.off('touchmove.slick mousemove.slick', _.swipeHandler);\n\n    _.$list.off('touchend.slick mouseup.slick', _.swipeHandler);\n\n    _.$list.off('touchcancel.slick mouseleave.slick', _.swipeHandler);\n\n    _.$list.off('click.slick', _.clickHandler);\n\n    $(document).off(_.visibilityChange, _.visibility);\n\n    _.cleanUpSlideEvents();\n\n    if (_.options.accessibility === true) {\n      _.$list.off('keydown.slick', _.keyHandler);\n    }\n\n    if (_.options.focusOnSelect === true) {\n      $(_.$slideTrack).children().off('click.slick', _.selectHandler);\n    }\n\n    $(window).off('orientationchange.slick.slick-' + _.instanceUid, _.orientationChange);\n    $(window).off('resize.slick.slick-' + _.instanceUid, _.resize);\n    $('[draggable!=true]', _.$slideTrack).off('dragstart', _.preventDefault);\n    $(window).off('load.slick.slick-' + _.instanceUid, _.setPosition);\n  };\n\n  Slick.prototype.cleanUpSlideEvents = function () {\n    var _ = this;\n\n    _.$list.off('mouseenter.slick', $.proxy(_.interrupt, _, true));\n\n    _.$list.off('mouseleave.slick', $.proxy(_.interrupt, _, false));\n  };\n\n  Slick.prototype.cleanUpRows = function () {\n    var _ = this,\n        originalSlides;\n\n    if (_.options.rows > 0) {\n      originalSlides = _.$slides.children().children();\n      originalSlides.removeAttr('style');\n\n      _.$slider.empty().append(originalSlides);\n    }\n  };\n\n  Slick.prototype.clickHandler = function (event) {\n    var _ = this;\n\n    if (_.shouldClick === false) {\n      event.stopImmediatePropagation();\n      event.stopPropagation();\n      event.preventDefault();\n    }\n  };\n\n  Slick.prototype.destroy = function (refresh) {\n    var _ = this;\n\n    _.autoPlayClear();\n\n    _.touchObject = {};\n\n    _.cleanUpEvents();\n\n    $('.slick-cloned', _.$slider).detach();\n\n    if (_.$dots) {\n      _.$dots.remove();\n    }\n\n    if (_.$prevArrow && _.$prevArrow.length) {\n      _.$prevArrow.removeClass('slick-disabled slick-arrow slick-hidden').removeAttr('aria-hidden aria-disabled tabindex').css('display', '');\n\n      if (_.htmlExpr.test(_.options.prevArrow)) {\n        _.$prevArrow.remove();\n      }\n    }\n\n    if (_.$nextArrow && _.$nextArrow.length) {\n      _.$nextArrow.removeClass('slick-disabled slick-arrow slick-hidden').removeAttr('aria-hidden aria-disabled tabindex').css('display', '');\n\n      if (_.htmlExpr.test(_.options.nextArrow)) {\n        _.$nextArrow.remove();\n      }\n    }\n\n    if (_.$slides) {\n      _.$slides.removeClass('slick-slide slick-active slick-center slick-visible slick-current').removeAttr('aria-hidden').removeAttr('data-slick-index').each(function () {\n        $(this).attr('style', $(this).data('originalStyling'));\n      });\n\n      _.$slideTrack.children(this.options.slide).detach();\n\n      _.$slideTrack.detach();\n\n      _.$list.detach();\n\n      _.$slider.append(_.$slides);\n    }\n\n    _.cleanUpRows();\n\n    _.$slider.removeClass('slick-slider');\n\n    _.$slider.removeClass('slick-initialized');\n\n    _.$slider.removeClass('slick-dotted');\n\n    _.unslicked = true;\n\n    if (!refresh) {\n      _.$slider.trigger('destroy', [_]);\n    }\n  };\n\n  Slick.prototype.disableTransition = function (slide) {\n    var _ = this,\n        transition = {};\n\n    transition[_.transitionType] = '';\n\n    if (_.options.fade === false) {\n      _.$slideTrack.css(transition);\n    } else {\n      _.$slides.eq(slide).css(transition);\n    }\n  };\n\n  Slick.prototype.fadeSlide = function (slideIndex, callback) {\n    var _ = this;\n\n    if (_.cssTransitions === false) {\n      _.$slides.eq(slideIndex).css({\n        zIndex: _.options.zIndex\n      });\n\n      _.$slides.eq(slideIndex).animate({\n        opacity: 1\n      }, _.options.speed, _.options.easing, callback);\n    } else {\n      _.applyTransition(slideIndex);\n\n      _.$slides.eq(slideIndex).css({\n        opacity: 1,\n        zIndex: _.options.zIndex\n      });\n\n      if (callback) {\n        setTimeout(function () {\n          _.disableTransition(slideIndex);\n\n          callback.call();\n        }, _.options.speed);\n      }\n    }\n  };\n\n  Slick.prototype.fadeSlideOut = function (slideIndex) {\n    var _ = this;\n\n    if (_.cssTransitions === false) {\n      _.$slides.eq(slideIndex).animate({\n        opacity: 0,\n        zIndex: _.options.zIndex - 2\n      }, _.options.speed, _.options.easing);\n    } else {\n      _.applyTransition(slideIndex);\n\n      _.$slides.eq(slideIndex).css({\n        opacity: 0,\n        zIndex: _.options.zIndex - 2\n      });\n    }\n  };\n\n  Slick.prototype.filterSlides = Slick.prototype.slickFilter = function (filter) {\n    var _ = this;\n\n    if (filter !== null) {\n      _.$slidesCache = _.$slides;\n\n      _.unload();\n\n      _.$slideTrack.children(this.options.slide).detach();\n\n      _.$slidesCache.filter(filter).appendTo(_.$slideTrack);\n\n      _.reinit();\n    }\n  };\n\n  Slick.prototype.focusHandler = function () {\n    var _ = this; // If any child element receives focus within the slider we need to pause the autoplay\n\n\n    _.$slider.off('focus.slick blur.slick').on('focus.slick', '*', function (event) {\n      var $sf = $(this);\n      setTimeout(function () {\n        if (_.options.pauseOnFocus) {\n          if ($sf.is(':focus')) {\n            _.focussed = true;\n\n            _.autoPlay();\n          }\n        }\n      }, 0);\n    }).on('blur.slick', '*', function (event) {\n      var $sf = $(this); // When a blur occurs on any elements within the slider we become unfocused\n\n      if (_.options.pauseOnFocus) {\n        _.focussed = false;\n\n        _.autoPlay();\n      }\n    });\n  };\n\n  Slick.prototype.getCurrent = Slick.prototype.slickCurrentSlide = function () {\n    var _ = this;\n\n    return _.currentSlide;\n  };\n\n  Slick.prototype.getDotCount = function () {\n    var _ = this;\n\n    var breakPoint = 0;\n    var counter = 0;\n    var pagerQty = 0;\n\n    if (_.options.infinite === true) {\n      if (_.slideCount <= _.options.slidesToShow) {\n        ++pagerQty;\n      } else {\n        while (breakPoint < _.slideCount) {\n          ++pagerQty;\n          breakPoint = counter + _.options.slidesToScroll;\n          counter += _.options.slidesToScroll <= _.options.slidesToShow ? _.options.slidesToScroll : _.options.slidesToShow;\n        }\n      }\n    } else if (_.options.centerMode === true) {\n      pagerQty = _.slideCount;\n    } else if (!_.options.asNavFor) {\n      pagerQty = 1 + Math.ceil((_.slideCount - _.options.slidesToShow) / _.options.slidesToScroll);\n    } else {\n      while (breakPoint < _.slideCount) {\n        ++pagerQty;\n        breakPoint = counter + _.options.slidesToScroll;\n        counter += _.options.slidesToScroll <= _.options.slidesToShow ? _.options.slidesToScroll : _.options.slidesToShow;\n      }\n    }\n\n    return pagerQty - 1;\n  };\n\n  Slick.prototype.getLeft = function (slideIndex) {\n    var _ = this,\n        targetLeft,\n        verticalHeight,\n        verticalOffset = 0,\n        targetSlide,\n        coef;\n\n    _.slideOffset = 0;\n    verticalHeight = _.$slides.first().outerHeight(true);\n\n    if (_.options.infinite === true) {\n      if (_.slideCount > _.options.slidesToShow) {\n        _.slideOffset = _.slideWidth * _.options.slidesToShow * -1;\n        coef = -1;\n\n        if (_.options.vertical === true && _.options.centerMode === true) {\n          if (_.options.slidesToShow === 2) {\n            coef = -1.5;\n          } else if (_.options.slidesToShow === 1) {\n            coef = -2;\n          }\n        }\n\n        verticalOffset = verticalHeight * _.options.slidesToShow * coef;\n      }\n\n      if (_.slideCount % _.options.slidesToScroll !== 0) {\n        if (slideIndex + _.options.slidesToScroll > _.slideCount && _.slideCount > _.options.slidesToShow) {\n          if (slideIndex > _.slideCount) {\n            _.slideOffset = (_.options.slidesToShow - (slideIndex - _.slideCount)) * _.slideWidth * -1;\n            verticalOffset = (_.options.slidesToShow - (slideIndex - _.slideCount)) * verticalHeight * -1;\n          } else {\n            _.slideOffset = _.slideCount % _.options.slidesToScroll * _.slideWidth * -1;\n            verticalOffset = _.slideCount % _.options.slidesToScroll * verticalHeight * -1;\n          }\n        }\n      }\n    } else {\n      if (slideIndex + _.options.slidesToShow > _.slideCount) {\n        _.slideOffset = (slideIndex + _.options.slidesToShow - _.slideCount) * _.slideWidth;\n        verticalOffset = (slideIndex + _.options.slidesToShow - _.slideCount) * verticalHeight;\n      }\n    }\n\n    if (_.slideCount <= _.options.slidesToShow) {\n      _.slideOffset = 0;\n      verticalOffset = 0;\n    }\n\n    if (_.options.centerMode === true && _.slideCount <= _.options.slidesToShow) {\n      _.slideOffset = _.slideWidth * Math.floor(_.options.slidesToShow) / 2 - _.slideWidth * _.slideCount / 2;\n    } else if (_.options.centerMode === true && _.options.infinite === true) {\n      _.slideOffset += _.slideWidth * Math.floor(_.options.slidesToShow / 2) - _.slideWidth;\n    } else if (_.options.centerMode === true) {\n      _.slideOffset = 0;\n      _.slideOffset += _.slideWidth * Math.floor(_.options.slidesToShow / 2);\n    }\n\n    if (_.options.vertical === false) {\n      targetLeft = slideIndex * _.slideWidth * -1 + _.slideOffset;\n    } else {\n      targetLeft = slideIndex * verticalHeight * -1 + verticalOffset;\n    }\n\n    if (_.options.variableWidth === true) {\n      if (_.slideCount <= _.options.slidesToShow || _.options.infinite === false) {\n        targetSlide = _.$slideTrack.children('.slick-slide').eq(slideIndex);\n      } else {\n        targetSlide = _.$slideTrack.children('.slick-slide').eq(slideIndex + _.options.slidesToShow);\n      }\n\n      if (_.options.rtl === true) {\n        if (targetSlide[0]) {\n          targetLeft = (_.$slideTrack.width() - targetSlide[0].offsetLeft - targetSlide.width()) * -1;\n        } else {\n          targetLeft = 0;\n        }\n      } else {\n        targetLeft = targetSlide[0] ? targetSlide[0].offsetLeft * -1 : 0;\n      }\n\n      if (_.options.centerMode === true) {\n        if (_.slideCount <= _.options.slidesToShow || _.options.infinite === false) {\n          targetSlide = _.$slideTrack.children('.slick-slide').eq(slideIndex);\n        } else {\n          targetSlide = _.$slideTrack.children('.slick-slide').eq(slideIndex + _.options.slidesToShow + 1);\n        }\n\n        if (_.options.rtl === true) {\n          if (targetSlide[0]) {\n            targetLeft = (_.$slideTrack.width() - targetSlide[0].offsetLeft - targetSlide.width()) * -1;\n          } else {\n            targetLeft = 0;\n          }\n        } else {\n          targetLeft = targetSlide[0] ? targetSlide[0].offsetLeft * -1 : 0;\n        }\n\n        targetLeft += (_.$list.width() - targetSlide.outerWidth()) / 2;\n      }\n    }\n\n    return targetLeft;\n  };\n\n  Slick.prototype.getOption = Slick.prototype.slickGetOption = function (option) {\n    var _ = this;\n\n    return _.options[option];\n  };\n\n  Slick.prototype.getNavigableIndexes = function () {\n    var _ = this,\n        breakPoint = 0,\n        counter = 0,\n        indexes = [],\n        max;\n\n    if (_.options.infinite === false) {\n      max = _.slideCount;\n    } else {\n      breakPoint = _.options.slidesToScroll * -1;\n      counter = _.options.slidesToScroll * -1;\n      max = _.slideCount * 2;\n    }\n\n    while (breakPoint < max) {\n      indexes.push(breakPoint);\n      breakPoint = counter + _.options.slidesToScroll;\n      counter += _.options.slidesToScroll <= _.options.slidesToShow ? _.options.slidesToScroll : _.options.slidesToShow;\n    }\n\n    return indexes;\n  };\n\n  Slick.prototype.getSlick = function () {\n    return this;\n  };\n\n  Slick.prototype.getSlideCount = function () {\n    var _ = this,\n        slidesTraversed,\n        swipedSlide,\n        swipeTarget,\n        centerOffset;\n\n    centerOffset = _.options.centerMode === true ? Math.floor(_.$list.width() / 2) : 0;\n    swipeTarget = _.swipeLeft * -1 + centerOffset;\n\n    if (_.options.swipeToSlide === true) {\n      _.$slideTrack.find('.slick-slide').each(function (index, slide) {\n        var slideOuterWidth, slideOffset, slideRightBoundary;\n        slideOuterWidth = $(slide).outerWidth();\n        slideOffset = slide.offsetLeft;\n\n        if (_.options.centerMode !== true) {\n          slideOffset += slideOuterWidth / 2;\n        }\n\n        slideRightBoundary = slideOffset + slideOuterWidth;\n\n        if (swipeTarget < slideRightBoundary) {\n          swipedSlide = slide;\n          return false;\n        }\n      });\n\n      slidesTraversed = Math.abs($(swipedSlide).attr('data-slick-index') - _.currentSlide) || 1;\n      return slidesTraversed;\n    } else {\n      return _.options.slidesToScroll;\n    }\n  };\n\n  Slick.prototype.goTo = Slick.prototype.slickGoTo = function (slide, dontAnimate) {\n    var _ = this;\n\n    _.changeSlide({\n      data: {\n        message: 'index',\n        index: parseInt(slide)\n      }\n    }, dontAnimate);\n  };\n\n  Slick.prototype.init = function (creation) {\n    var _ = this;\n\n    if (!$(_.$slider).hasClass('slick-initialized')) {\n      $(_.$slider).addClass('slick-initialized');\n\n      _.buildRows();\n\n      _.buildOut();\n\n      _.setProps();\n\n      _.startLoad();\n\n      _.loadSlider();\n\n      _.initializeEvents();\n\n      _.updateArrows();\n\n      _.updateDots();\n\n      _.checkResponsive(true);\n\n      _.focusHandler();\n    }\n\n    if (creation) {\n      _.$slider.trigger('init', [_]);\n    }\n\n    if (_.options.accessibility === true) {\n      _.initADA();\n    }\n\n    if (_.options.autoplay) {\n      _.paused = false;\n\n      _.autoPlay();\n    }\n  };\n\n  Slick.prototype.initADA = function () {\n    var _ = this,\n        numDotGroups = Math.ceil(_.slideCount / _.options.slidesToShow),\n        tabControlIndexes = _.getNavigableIndexes().filter(function (val) {\n      return val >= 0 && val < _.slideCount;\n    });\n\n    _.$slides.add(_.$slideTrack.find('.slick-cloned')).attr({\n      'aria-hidden': 'true',\n      'tabindex': '-1'\n    }).find('a, input, button, select').attr({\n      'tabindex': '-1'\n    });\n\n    if (_.$dots !== null) {\n      _.$slides.not(_.$slideTrack.find('.slick-cloned')).each(function (i) {\n        var slideControlIndex = tabControlIndexes.indexOf(i);\n        $(this).attr({\n          'role': 'tabpanel',\n          'id': 'slick-slide' + _.instanceUid + i,\n          'tabindex': -1\n        });\n\n        if (slideControlIndex !== -1) {\n          var ariaButtonControl = 'slick-slide-control' + _.instanceUid + slideControlIndex;\n\n          if ($('#' + ariaButtonControl).length) {\n            $(this).attr({\n              'aria-describedby': ariaButtonControl\n            });\n          }\n        }\n      });\n\n      _.$dots.attr('role', 'tablist').find('li').each(function (i) {\n        var mappedSlideIndex = tabControlIndexes[i];\n        $(this).attr({\n          'role': 'presentation'\n        });\n        $(this).find('button').first().attr({\n          'role': 'tab',\n          'id': 'slick-slide-control' + _.instanceUid + i,\n          'aria-controls': 'slick-slide' + _.instanceUid + mappedSlideIndex,\n          'aria-label': i + 1 + ' of ' + numDotGroups,\n          'aria-selected': null,\n          'tabindex': '-1'\n        });\n      }).eq(_.currentSlide).find('button').attr({\n        'aria-selected': 'true',\n        'tabindex': '0'\n      }).end();\n    }\n\n    for (var i = _.currentSlide, max = i + _.options.slidesToShow; i < max; i++) {\n      if (_.options.focusOnChange) {\n        _.$slides.eq(i).attr({\n          'tabindex': '0'\n        });\n      } else {\n        _.$slides.eq(i).removeAttr('tabindex');\n      }\n    }\n\n    _.activateADA();\n  };\n\n  Slick.prototype.initArrowEvents = function () {\n    var _ = this;\n\n    if (_.options.arrows === true && _.slideCount > _.options.slidesToShow) {\n      _.$prevArrow.off('click.slick').on('click.slick', {\n        message: 'previous'\n      }, _.changeSlide);\n\n      _.$nextArrow.off('click.slick').on('click.slick', {\n        message: 'next'\n      }, _.changeSlide);\n\n      if (_.options.accessibility === true) {\n        _.$prevArrow.on('keydown.slick', _.keyHandler);\n\n        _.$nextArrow.on('keydown.slick', _.keyHandler);\n      }\n    }\n  };\n\n  Slick.prototype.initDotEvents = function () {\n    var _ = this;\n\n    if (_.options.dots === true && _.slideCount > _.options.slidesToShow) {\n      $('li', _.$dots).on('click.slick', {\n        message: 'index'\n      }, _.changeSlide);\n\n      if (_.options.accessibility === true) {\n        _.$dots.on('keydown.slick', _.keyHandler);\n      }\n    }\n\n    if (_.options.dots === true && _.options.pauseOnDotsHover === true && _.slideCount > _.options.slidesToShow) {\n      $('li', _.$dots).on('mouseenter.slick', $.proxy(_.interrupt, _, true)).on('mouseleave.slick', $.proxy(_.interrupt, _, false));\n    }\n  };\n\n  Slick.prototype.initSlideEvents = function () {\n    var _ = this;\n\n    if (_.options.pauseOnHover) {\n      _.$list.on('mouseenter.slick', $.proxy(_.interrupt, _, true));\n\n      _.$list.on('mouseleave.slick', $.proxy(_.interrupt, _, false));\n    }\n  };\n\n  Slick.prototype.initializeEvents = function () {\n    var _ = this;\n\n    _.initArrowEvents();\n\n    _.initDotEvents();\n\n    _.initSlideEvents();\n\n    _.$list.on('touchstart.slick mousedown.slick', {\n      action: 'start'\n    }, _.swipeHandler);\n\n    _.$list.on('touchmove.slick mousemove.slick', {\n      action: 'move'\n    }, _.swipeHandler);\n\n    _.$list.on('touchend.slick mouseup.slick', {\n      action: 'end'\n    }, _.swipeHandler);\n\n    _.$list.on('touchcancel.slick mouseleave.slick', {\n      action: 'end'\n    }, _.swipeHandler);\n\n    _.$list.on('click.slick', _.clickHandler);\n\n    $(document).on(_.visibilityChange, $.proxy(_.visibility, _));\n\n    if (_.options.accessibility === true) {\n      _.$list.on('keydown.slick', _.keyHandler);\n    }\n\n    if (_.options.focusOnSelect === true) {\n      $(_.$slideTrack).children().on('click.slick', _.selectHandler);\n    }\n\n    $(window).on('orientationchange.slick.slick-' + _.instanceUid, $.proxy(_.orientationChange, _));\n    $(window).on('resize.slick.slick-' + _.instanceUid, $.proxy(_.resize, _));\n    $('[draggable!=true]', _.$slideTrack).on('dragstart', _.preventDefault);\n    $(window).on('load.slick.slick-' + _.instanceUid, _.setPosition);\n    $(_.setPosition);\n  };\n\n  Slick.prototype.initUI = function () {\n    var _ = this;\n\n    if (_.options.arrows === true && _.slideCount > _.options.slidesToShow) {\n      _.$prevArrow.show();\n\n      _.$nextArrow.show();\n    }\n\n    if (_.options.dots === true && _.slideCount > _.options.slidesToShow) {\n      _.$dots.show();\n    }\n  };\n\n  Slick.prototype.keyHandler = function (event) {\n    var _ = this; //Dont slide if the cursor is inside the form fields and arrow keys are pressed\n\n\n    if (!event.target.tagName.match('TEXTAREA|INPUT|SELECT')) {\n      if (event.keyCode === 37 && _.options.accessibility === true) {\n        _.changeSlide({\n          data: {\n            message: _.options.rtl === true ? 'next' : 'previous'\n          }\n        });\n      } else if (event.keyCode === 39 && _.options.accessibility === true) {\n        _.changeSlide({\n          data: {\n            message: _.options.rtl === true ? 'previous' : 'next'\n          }\n        });\n      }\n    }\n  };\n\n  Slick.prototype.lazyLoad = function () {\n    var _ = this,\n        loadRange,\n        cloneRange,\n        rangeStart,\n        rangeEnd;\n\n    function loadImages(imagesScope) {\n      $('img[data-lazy]', imagesScope).each(function () {\n        var image = $(this),\n            imageSource = $(this).attr('data-lazy'),\n            imageSrcSet = $(this).attr('data-srcset'),\n            imageSizes = $(this).attr('data-sizes') || _.$slider.attr('data-sizes'),\n            imageToLoad = document.createElement('img');\n\n        imageToLoad.onload = function () {\n          image.animate({\n            opacity: 0\n          }, 100, function () {\n            if (imageSrcSet) {\n              image.attr('srcset', imageSrcSet);\n\n              if (imageSizes) {\n                image.attr('sizes', imageSizes);\n              }\n            }\n\n            image.attr('src', imageSource).animate({\n              opacity: 1\n            }, 200, function () {\n              image.removeAttr('data-lazy data-srcset data-sizes').removeClass('slick-loading');\n            });\n\n            _.$slider.trigger('lazyLoaded', [_, image, imageSource]);\n          });\n        };\n\n        imageToLoad.onerror = function () {\n          image.removeAttr('data-lazy').removeClass('slick-loading').addClass('slick-lazyload-error');\n\n          _.$slider.trigger('lazyLoadError', [_, image, imageSource]);\n        };\n\n        imageToLoad.src = imageSource;\n      });\n    }\n\n    if (_.options.centerMode === true) {\n      if (_.options.infinite === true) {\n        rangeStart = _.currentSlide + (_.options.slidesToShow / 2 + 1);\n        rangeEnd = rangeStart + _.options.slidesToShow + 2;\n      } else {\n        rangeStart = Math.max(0, _.currentSlide - (_.options.slidesToShow / 2 + 1));\n        rangeEnd = 2 + (_.options.slidesToShow / 2 + 1) + _.currentSlide;\n      }\n    } else {\n      rangeStart = _.options.infinite ? _.options.slidesToShow + _.currentSlide : _.currentSlide;\n      rangeEnd = Math.ceil(rangeStart + _.options.slidesToShow);\n\n      if (_.options.fade === true) {\n        if (rangeStart > 0) rangeStart--;\n        if (rangeEnd <= _.slideCount) rangeEnd++;\n      }\n    }\n\n    loadRange = _.$slider.find('.slick-slide').slice(rangeStart, rangeEnd);\n\n    if (_.options.lazyLoad === 'anticipated') {\n      var prevSlide = rangeStart - 1,\n          nextSlide = rangeEnd,\n          $slides = _.$slider.find('.slick-slide');\n\n      for (var i = 0; i < _.options.slidesToScroll; i++) {\n        if (prevSlide < 0) prevSlide = _.slideCount - 1;\n        loadRange = loadRange.add($slides.eq(prevSlide));\n        loadRange = loadRange.add($slides.eq(nextSlide));\n        prevSlide--;\n        nextSlide++;\n      }\n    }\n\n    loadImages(loadRange);\n\n    if (_.slideCount <= _.options.slidesToShow) {\n      cloneRange = _.$slider.find('.slick-slide');\n      loadImages(cloneRange);\n    } else if (_.currentSlide >= _.slideCount - _.options.slidesToShow) {\n      cloneRange = _.$slider.find('.slick-cloned').slice(0, _.options.slidesToShow);\n      loadImages(cloneRange);\n    } else if (_.currentSlide === 0) {\n      cloneRange = _.$slider.find('.slick-cloned').slice(_.options.slidesToShow * -1);\n      loadImages(cloneRange);\n    }\n  };\n\n  Slick.prototype.loadSlider = function () {\n    var _ = this;\n\n    _.setPosition();\n\n    _.$slideTrack.css({\n      opacity: 1\n    });\n\n    _.$slider.removeClass('slick-loading');\n\n    _.initUI();\n\n    if (_.options.lazyLoad === 'progressive') {\n      _.progressiveLazyLoad();\n    }\n  };\n\n  Slick.prototype.next = Slick.prototype.slickNext = function () {\n    var _ = this;\n\n    _.changeSlide({\n      data: {\n        message: 'next'\n      }\n    });\n  };\n\n  Slick.prototype.orientationChange = function () {\n    var _ = this;\n\n    _.checkResponsive();\n\n    _.setPosition();\n  };\n\n  Slick.prototype.pause = Slick.prototype.slickPause = function () {\n    var _ = this;\n\n    _.autoPlayClear();\n\n    _.paused = true;\n  };\n\n  Slick.prototype.play = Slick.prototype.slickPlay = function () {\n    var _ = this;\n\n    _.autoPlay();\n\n    _.options.autoplay = true;\n    _.paused = false;\n    _.focussed = false;\n    _.interrupted = false;\n  };\n\n  Slick.prototype.postSlide = function (index) {\n    var _ = this;\n\n    if (!_.unslicked) {\n      _.$slider.trigger('afterChange', [_, index]);\n\n      _.animating = false;\n\n      if (_.slideCount > _.options.slidesToShow) {\n        _.setPosition();\n      }\n\n      _.swipeLeft = null;\n\n      if (_.options.autoplay) {\n        _.autoPlay();\n      }\n\n      if (_.options.accessibility === true) {\n        _.initADA();\n\n        if (_.options.focusOnChange) {\n          var $currentSlide = $(_.$slides.get(_.currentSlide));\n          $currentSlide.attr('tabindex', 0).focus();\n        }\n      }\n    }\n  };\n\n  Slick.prototype.prev = Slick.prototype.slickPrev = function () {\n    var _ = this;\n\n    _.changeSlide({\n      data: {\n        message: 'previous'\n      }\n    });\n  };\n\n  Slick.prototype.preventDefault = function (event) {\n    event.preventDefault();\n  };\n\n  Slick.prototype.progressiveLazyLoad = function (tryCount) {\n    tryCount = tryCount || 1;\n\n    var _ = this,\n        $imgsToLoad = $('img[data-lazy]', _.$slider),\n        image,\n        imageSource,\n        imageSrcSet,\n        imageSizes,\n        imageToLoad;\n\n    if ($imgsToLoad.length) {\n      image = $imgsToLoad.first();\n      imageSource = image.attr('data-lazy');\n      imageSrcSet = image.attr('data-srcset');\n      imageSizes = image.attr('data-sizes') || _.$slider.attr('data-sizes');\n      imageToLoad = document.createElement('img');\n\n      imageToLoad.onload = function () {\n        if (imageSrcSet) {\n          image.attr('srcset', imageSrcSet);\n\n          if (imageSizes) {\n            image.attr('sizes', imageSizes);\n          }\n        }\n\n        image.attr('src', imageSource).removeAttr('data-lazy data-srcset data-sizes').removeClass('slick-loading');\n\n        if (_.options.adaptiveHeight === true) {\n          _.setPosition();\n        }\n\n        _.$slider.trigger('lazyLoaded', [_, image, imageSource]);\n\n        _.progressiveLazyLoad();\n      };\n\n      imageToLoad.onerror = function () {\n        if (tryCount < 3) {\n          /**\r\n           * try to load the image 3 times,\r\n           * leave a slight delay so we don't get\r\n           * servers blocking the request.\r\n           */\n          setTimeout(function () {\n            _.progressiveLazyLoad(tryCount + 1);\n          }, 500);\n        } else {\n          image.removeAttr('data-lazy').removeClass('slick-loading').addClass('slick-lazyload-error');\n\n          _.$slider.trigger('lazyLoadError', [_, image, imageSource]);\n\n          _.progressiveLazyLoad();\n        }\n      };\n\n      imageToLoad.src = imageSource;\n    } else {\n      _.$slider.trigger('allImagesLoaded', [_]);\n    }\n  };\n\n  Slick.prototype.refresh = function (initializing) {\n    var _ = this,\n        currentSlide,\n        lastVisibleIndex;\n\n    lastVisibleIndex = _.slideCount - _.options.slidesToShow; // in non-infinite sliders, we don't want to go past the\n    // last visible index.\n\n    if (!_.options.infinite && _.currentSlide > lastVisibleIndex) {\n      _.currentSlide = lastVisibleIndex;\n    } // if less slides than to show, go to start.\n\n\n    if (_.slideCount <= _.options.slidesToShow) {\n      _.currentSlide = 0;\n    }\n\n    currentSlide = _.currentSlide;\n\n    _.destroy(true);\n\n    $.extend(_, _.initials, {\n      currentSlide: currentSlide\n    });\n\n    _.init();\n\n    if (!initializing) {\n      _.changeSlide({\n        data: {\n          message: 'index',\n          index: currentSlide\n        }\n      }, false);\n    }\n  };\n\n  Slick.prototype.registerBreakpoints = function () {\n    var _ = this,\n        breakpoint,\n        currentBreakpoint,\n        l,\n        responsiveSettings = _.options.responsive || null;\n\n    if ($.type(responsiveSettings) === 'array' && responsiveSettings.length) {\n      _.respondTo = _.options.respondTo || 'window';\n\n      for (breakpoint in responsiveSettings) {\n        l = _.breakpoints.length - 1;\n\n        if (responsiveSettings.hasOwnProperty(breakpoint)) {\n          currentBreakpoint = responsiveSettings[breakpoint].breakpoint; // loop through the breakpoints and cut out any existing\n          // ones with the same breakpoint number, we don't want dupes.\n\n          while (l >= 0) {\n            if (_.breakpoints[l] && _.breakpoints[l] === currentBreakpoint) {\n              _.breakpoints.splice(l, 1);\n            }\n\n            l--;\n          }\n\n          _.breakpoints.push(currentBreakpoint);\n\n          _.breakpointSettings[currentBreakpoint] = responsiveSettings[breakpoint].settings;\n        }\n      }\n\n      _.breakpoints.sort(function (a, b) {\n        return _.options.mobileFirst ? a - b : b - a;\n      });\n    }\n  };\n\n  Slick.prototype.reinit = function () {\n    var _ = this;\n\n    _.$slides = _.$slideTrack.children(_.options.slide).addClass('slick-slide');\n    _.slideCount = _.$slides.length;\n\n    if (_.currentSlide >= _.slideCount && _.currentSlide !== 0) {\n      _.currentSlide = _.currentSlide - _.options.slidesToScroll;\n    }\n\n    if (_.slideCount <= _.options.slidesToShow) {\n      _.currentSlide = 0;\n    }\n\n    _.registerBreakpoints();\n\n    _.setProps();\n\n    _.setupInfinite();\n\n    _.buildArrows();\n\n    _.updateArrows();\n\n    _.initArrowEvents();\n\n    _.buildDots();\n\n    _.updateDots();\n\n    _.initDotEvents();\n\n    _.cleanUpSlideEvents();\n\n    _.initSlideEvents();\n\n    _.checkResponsive(false, true);\n\n    if (_.options.focusOnSelect === true) {\n      $(_.$slideTrack).children().on('click.slick', _.selectHandler);\n    }\n\n    _.setSlideClasses(typeof _.currentSlide === 'number' ? _.currentSlide : 0);\n\n    _.setPosition();\n\n    _.focusHandler();\n\n    _.paused = !_.options.autoplay;\n\n    _.autoPlay();\n\n    _.$slider.trigger('reInit', [_]);\n  };\n\n  Slick.prototype.resize = function () {\n    var _ = this;\n\n    if ($(window).width() !== _.windowWidth) {\n      clearTimeout(_.windowDelay);\n      _.windowDelay = window.setTimeout(function () {\n        _.windowWidth = $(window).width();\n\n        _.checkResponsive();\n\n        if (!_.unslicked) {\n          _.setPosition();\n        }\n      }, 50);\n    }\n  };\n\n  Slick.prototype.removeSlide = Slick.prototype.slickRemove = function (index, removeBefore, removeAll) {\n    var _ = this;\n\n    if (typeof index === 'boolean') {\n      removeBefore = index;\n      index = removeBefore === true ? 0 : _.slideCount - 1;\n    } else {\n      index = removeBefore === true ? --index : index;\n    }\n\n    if (_.slideCount < 1 || index < 0 || index > _.slideCount - 1) {\n      return false;\n    }\n\n    _.unload();\n\n    if (removeAll === true) {\n      _.$slideTrack.children().remove();\n    } else {\n      _.$slideTrack.children(this.options.slide).eq(index).remove();\n    }\n\n    _.$slides = _.$slideTrack.children(this.options.slide);\n\n    _.$slideTrack.children(this.options.slide).detach();\n\n    _.$slideTrack.append(_.$slides);\n\n    _.$slidesCache = _.$slides;\n\n    _.reinit();\n  };\n\n  Slick.prototype.setCSS = function (position) {\n    var _ = this,\n        positionProps = {},\n        x,\n        y;\n\n    if (_.options.rtl === true) {\n      position = -position;\n    }\n\n    x = _.positionProp == 'left' ? Math.ceil(position) + 'px' : '0px';\n    y = _.positionProp == 'top' ? Math.ceil(position) + 'px' : '0px';\n    positionProps[_.positionProp] = position;\n\n    if (_.transformsEnabled === false) {\n      _.$slideTrack.css(positionProps);\n    } else {\n      positionProps = {};\n\n      if (_.cssTransitions === false) {\n        positionProps[_.animType] = 'translate(' + x + ', ' + y + ')';\n\n        _.$slideTrack.css(positionProps);\n      } else {\n        positionProps[_.animType] = 'translate3d(' + x + ', ' + y + ', 0px)';\n\n        _.$slideTrack.css(positionProps);\n      }\n    }\n  };\n\n  Slick.prototype.setDimensions = function () {\n    var _ = this;\n\n    if (_.options.vertical === false) {\n      if (_.options.centerMode === true) {\n        _.$list.css({\n          padding: '0px ' + _.options.centerPadding\n        });\n      }\n    } else {\n      _.$list.height(_.$slides.first().outerHeight(true) * _.options.slidesToShow);\n\n      if (_.options.centerMode === true) {\n        _.$list.css({\n          padding: _.options.centerPadding + ' 0px'\n        });\n      }\n    }\n\n    _.listWidth = _.$list.width();\n    _.listHeight = _.$list.height();\n\n    if (_.options.vertical === false && _.options.variableWidth === false) {\n      _.slideWidth = Math.ceil(_.listWidth / _.options.slidesToShow);\n\n      _.$slideTrack.width(Math.ceil(_.slideWidth * _.$slideTrack.children('.slick-slide').length));\n    } else if (_.options.variableWidth === true) {\n      _.$slideTrack.width(5000 * _.slideCount);\n    } else {\n      _.slideWidth = Math.ceil(_.listWidth);\n\n      _.$slideTrack.height(Math.ceil(_.$slides.first().outerHeight(true) * _.$slideTrack.children('.slick-slide').length));\n    }\n\n    var offset = _.$slides.first().outerWidth(true) - _.$slides.first().width();\n\n    if (_.options.variableWidth === false) _.$slideTrack.children('.slick-slide').width(_.slideWidth - offset);\n  };\n\n  Slick.prototype.setFade = function () {\n    var _ = this,\n        targetLeft;\n\n    _.$slides.each(function (index, element) {\n      targetLeft = _.slideWidth * index * -1;\n\n      if (_.options.rtl === true) {\n        $(element).css({\n          position: 'relative',\n          right: targetLeft,\n          top: 0,\n          zIndex: _.options.zIndex - 2,\n          opacity: 0\n        });\n      } else {\n        $(element).css({\n          position: 'relative',\n          left: targetLeft,\n          top: 0,\n          zIndex: _.options.zIndex - 2,\n          opacity: 0\n        });\n      }\n    });\n\n    _.$slides.eq(_.currentSlide).css({\n      zIndex: _.options.zIndex - 1,\n      opacity: 1\n    });\n  };\n\n  Slick.prototype.setHeight = function () {\n    var _ = this;\n\n    if (_.options.slidesToShow === 1 && _.options.adaptiveHeight === true && _.options.vertical === false) {\n      var targetHeight = _.$slides.eq(_.currentSlide).outerHeight(true);\n\n      _.$list.css('height', targetHeight);\n    }\n  };\n\n  Slick.prototype.setOption = Slick.prototype.slickSetOption = function () {\n    /**\r\n     * accepts arguments in format of:\r\n     *\r\n     *  - for changing a single option's value:\r\n     *     .slick(\"setOption\", option, value, refresh )\r\n     *\r\n     *  - for changing a set of responsive options:\r\n     *     .slick(\"setOption\", 'responsive', [{}, ...], refresh )\r\n     *\r\n     *  - for updating multiple values at once (not responsive)\r\n     *     .slick(\"setOption\", { 'option': value, ... }, refresh )\r\n     */\n    var _ = this,\n        l,\n        item,\n        option,\n        value,\n        refresh = false,\n        type;\n\n    if ($.type(arguments[0]) === 'object') {\n      option = arguments[0];\n      refresh = arguments[1];\n      type = 'multiple';\n    } else if ($.type(arguments[0]) === 'string') {\n      option = arguments[0];\n      value = arguments[1];\n      refresh = arguments[2];\n\n      if (arguments[0] === 'responsive' && $.type(arguments[1]) === 'array') {\n        type = 'responsive';\n      } else if (typeof arguments[1] !== 'undefined') {\n        type = 'single';\n      }\n    }\n\n    if (type === 'single') {\n      _.options[option] = value;\n    } else if (type === 'multiple') {\n      $.each(option, function (opt, val) {\n        _.options[opt] = val;\n      });\n    } else if (type === 'responsive') {\n      for (item in value) {\n        if ($.type(_.options.responsive) !== 'array') {\n          _.options.responsive = [value[item]];\n        } else {\n          l = _.options.responsive.length - 1; // loop through the responsive object and splice out duplicates.\n\n          while (l >= 0) {\n            if (_.options.responsive[l].breakpoint === value[item].breakpoint) {\n              _.options.responsive.splice(l, 1);\n            }\n\n            l--;\n          }\n\n          _.options.responsive.push(value[item]);\n        }\n      }\n    }\n\n    if (refresh) {\n      _.unload();\n\n      _.reinit();\n    }\n  };\n\n  Slick.prototype.setPosition = function () {\n    var _ = this;\n\n    _.setDimensions();\n\n    _.setHeight();\n\n    if (_.options.fade === false) {\n      _.setCSS(_.getLeft(_.currentSlide));\n    } else {\n      _.setFade();\n    }\n\n    _.$slider.trigger('setPosition', [_]);\n  };\n\n  Slick.prototype.setProps = function () {\n    var _ = this,\n        bodyStyle = document.body.style;\n\n    _.positionProp = _.options.vertical === true ? 'top' : 'left';\n\n    if (_.positionProp === 'top') {\n      _.$slider.addClass('slick-vertical');\n    } else {\n      _.$slider.removeClass('slick-vertical');\n    }\n\n    if (bodyStyle.WebkitTransition !== undefined || bodyStyle.MozTransition !== undefined || bodyStyle.msTransition !== undefined) {\n      if (_.options.useCSS === true) {\n        _.cssTransitions = true;\n      }\n    }\n\n    if (_.options.fade) {\n      if (typeof _.options.zIndex === 'number') {\n        if (_.options.zIndex < 3) {\n          _.options.zIndex = 3;\n        }\n      } else {\n        _.options.zIndex = _.defaults.zIndex;\n      }\n    }\n\n    if (bodyStyle.OTransform !== undefined) {\n      _.animType = 'OTransform';\n      _.transformType = '-o-transform';\n      _.transitionType = 'OTransition';\n      if (bodyStyle.perspectiveProperty === undefined && bodyStyle.webkitPerspective === undefined) _.animType = false;\n    }\n\n    if (bodyStyle.MozTransform !== undefined) {\n      _.animType = 'MozTransform';\n      _.transformType = '-moz-transform';\n      _.transitionType = 'MozTransition';\n      if (bodyStyle.perspectiveProperty === undefined && bodyStyle.MozPerspective === undefined) _.animType = false;\n    }\n\n    if (bodyStyle.webkitTransform !== undefined) {\n      _.animType = 'webkitTransform';\n      _.transformType = '-webkit-transform';\n      _.transitionType = 'webkitTransition';\n      if (bodyStyle.perspectiveProperty === undefined && bodyStyle.webkitPerspective === undefined) _.animType = false;\n    }\n\n    if (bodyStyle.msTransform !== undefined) {\n      _.animType = 'msTransform';\n      _.transformType = '-ms-transform';\n      _.transitionType = 'msTransition';\n      if (bodyStyle.msTransform === undefined) _.animType = false;\n    }\n\n    if (bodyStyle.transform !== undefined && _.animType !== false) {\n      _.animType = 'transform';\n      _.transformType = 'transform';\n      _.transitionType = 'transition';\n    }\n\n    _.transformsEnabled = _.options.useTransform && _.animType !== null && _.animType !== false;\n  };\n\n  Slick.prototype.setSlideClasses = function (index) {\n    var _ = this,\n        centerOffset,\n        allSlides,\n        indexOffset,\n        remainder;\n\n    allSlides = _.$slider.find('.slick-slide').removeClass('slick-active slick-center slick-current').attr('aria-hidden', 'true');\n\n    _.$slides.eq(index).addClass('slick-current');\n\n    if (_.options.centerMode === true) {\n      var evenCoef = _.options.slidesToShow % 2 === 0 ? 1 : 0;\n      centerOffset = Math.floor(_.options.slidesToShow / 2);\n\n      if (_.options.infinite === true) {\n        if (index >= centerOffset && index <= _.slideCount - 1 - centerOffset) {\n          _.$slides.slice(index - centerOffset + evenCoef, index + centerOffset + 1).addClass('slick-active').attr('aria-hidden', 'false');\n        } else {\n          indexOffset = _.options.slidesToShow + index;\n          allSlides.slice(indexOffset - centerOffset + 1 + evenCoef, indexOffset + centerOffset + 2).addClass('slick-active').attr('aria-hidden', 'false');\n        }\n\n        if (index === 0) {\n          allSlides.eq(allSlides.length - 1 - _.options.slidesToShow).addClass('slick-center');\n        } else if (index === _.slideCount - 1) {\n          allSlides.eq(_.options.slidesToShow).addClass('slick-center');\n        }\n      }\n\n      _.$slides.eq(index).addClass('slick-center');\n    } else {\n      if (index >= 0 && index <= _.slideCount - _.options.slidesToShow) {\n        _.$slides.slice(index, index + _.options.slidesToShow).addClass('slick-active').attr('aria-hidden', 'false');\n      } else if (allSlides.length <= _.options.slidesToShow) {\n        allSlides.addClass('slick-active').attr('aria-hidden', 'false');\n      } else {\n        remainder = _.slideCount % _.options.slidesToShow;\n        indexOffset = _.options.infinite === true ? _.options.slidesToShow + index : index;\n\n        if (_.options.slidesToShow == _.options.slidesToScroll && _.slideCount - index < _.options.slidesToShow) {\n          allSlides.slice(indexOffset - (_.options.slidesToShow - remainder), indexOffset + remainder).addClass('slick-active').attr('aria-hidden', 'false');\n        } else {\n          allSlides.slice(indexOffset, indexOffset + _.options.slidesToShow).addClass('slick-active').attr('aria-hidden', 'false');\n        }\n      }\n    }\n\n    if (_.options.lazyLoad === 'ondemand' || _.options.lazyLoad === 'anticipated') {\n      _.lazyLoad();\n    }\n  };\n\n  Slick.prototype.setupInfinite = function () {\n    var _ = this,\n        i,\n        slideIndex,\n        infiniteCount;\n\n    if (_.options.fade === true) {\n      _.options.centerMode = false;\n    }\n\n    if (_.options.infinite === true && _.options.fade === false) {\n      slideIndex = null;\n\n      if (_.slideCount > _.options.slidesToShow) {\n        if (_.options.centerMode === true) {\n          infiniteCount = _.options.slidesToShow + 1;\n        } else {\n          infiniteCount = _.options.slidesToShow;\n        }\n\n        for (i = _.slideCount; i > _.slideCount - infiniteCount; i -= 1) {\n          slideIndex = i - 1;\n          $(_.$slides[slideIndex]).clone(true).attr('id', '').attr('data-slick-index', slideIndex - _.slideCount).prependTo(_.$slideTrack).addClass('slick-cloned');\n        }\n\n        for (i = 0; i < infiniteCount + _.slideCount; i += 1) {\n          slideIndex = i;\n          $(_.$slides[slideIndex]).clone(true).attr('id', '').attr('data-slick-index', slideIndex + _.slideCount).appendTo(_.$slideTrack).addClass('slick-cloned');\n        }\n\n        _.$slideTrack.find('.slick-cloned').find('[id]').each(function () {\n          $(this).attr('id', '');\n        });\n      }\n    }\n  };\n\n  Slick.prototype.interrupt = function (toggle) {\n    var _ = this;\n\n    if (!toggle) {\n      _.autoPlay();\n    }\n\n    _.interrupted = toggle;\n  };\n\n  Slick.prototype.selectHandler = function (event) {\n    var _ = this;\n\n    var targetElement = $(event.target).is('.slick-slide') ? $(event.target) : $(event.target).parents('.slick-slide');\n    var index = parseInt(targetElement.attr('data-slick-index'));\n    if (!index) index = 0;\n\n    if (_.slideCount <= _.options.slidesToShow) {\n      _.slideHandler(index, false, true);\n\n      return;\n    }\n\n    _.slideHandler(index);\n  };\n\n  Slick.prototype.slideHandler = function (index, sync, dontAnimate) {\n    var targetSlide,\n        animSlide,\n        oldSlide,\n        slideLeft,\n        targetLeft = null,\n        _ = this,\n        navTarget;\n\n    sync = sync || false;\n\n    if (_.animating === true && _.options.waitForAnimate === true) {\n      return;\n    }\n\n    if (_.options.fade === true && _.currentSlide === index) {\n      return;\n    }\n\n    if (sync === false) {\n      _.asNavFor(index);\n    }\n\n    targetSlide = index;\n    targetLeft = _.getLeft(targetSlide);\n    slideLeft = _.getLeft(_.currentSlide);\n    _.currentLeft = _.swipeLeft === null ? slideLeft : _.swipeLeft;\n\n    if (_.options.infinite === false && _.options.centerMode === false && (index < 0 || index > _.getDotCount() * _.options.slidesToScroll)) {\n      if (_.options.fade === false) {\n        targetSlide = _.currentSlide;\n\n        if (dontAnimate !== true && _.slideCount > _.options.slidesToShow) {\n          _.animateSlide(slideLeft, function () {\n            _.postSlide(targetSlide);\n          });\n        } else {\n          _.postSlide(targetSlide);\n        }\n      }\n\n      return;\n    } else if (_.options.infinite === false && _.options.centerMode === true && (index < 0 || index > _.slideCount - _.options.slidesToScroll)) {\n      if (_.options.fade === false) {\n        targetSlide = _.currentSlide;\n\n        if (dontAnimate !== true && _.slideCount > _.options.slidesToShow) {\n          _.animateSlide(slideLeft, function () {\n            _.postSlide(targetSlide);\n          });\n        } else {\n          _.postSlide(targetSlide);\n        }\n      }\n\n      return;\n    }\n\n    if (_.options.autoplay) {\n      clearInterval(_.autoPlayTimer);\n    }\n\n    if (targetSlide < 0) {\n      if (_.slideCount % _.options.slidesToScroll !== 0) {\n        animSlide = _.slideCount - _.slideCount % _.options.slidesToScroll;\n      } else {\n        animSlide = _.slideCount + targetSlide;\n      }\n    } else if (targetSlide >= _.slideCount) {\n      if (_.slideCount % _.options.slidesToScroll !== 0) {\n        animSlide = 0;\n      } else {\n        animSlide = targetSlide - _.slideCount;\n      }\n    } else {\n      animSlide = targetSlide;\n    }\n\n    _.animating = true;\n\n    _.$slider.trigger('beforeChange', [_, _.currentSlide, animSlide]);\n\n    oldSlide = _.currentSlide;\n    _.currentSlide = animSlide;\n\n    _.setSlideClasses(_.currentSlide);\n\n    if (_.options.asNavFor) {\n      navTarget = _.getNavTarget();\n      navTarget = navTarget.slick('getSlick');\n\n      if (navTarget.slideCount <= navTarget.options.slidesToShow) {\n        navTarget.setSlideClasses(_.currentSlide);\n      }\n    }\n\n    _.updateDots();\n\n    _.updateArrows();\n\n    if (_.options.fade === true) {\n      if (dontAnimate !== true) {\n        _.fadeSlideOut(oldSlide);\n\n        _.fadeSlide(animSlide, function () {\n          _.postSlide(animSlide);\n        });\n      } else {\n        _.postSlide(animSlide);\n      }\n\n      _.animateHeight();\n\n      return;\n    }\n\n    if (dontAnimate !== true && _.slideCount > _.options.slidesToShow) {\n      _.animateSlide(targetLeft, function () {\n        _.postSlide(animSlide);\n      });\n    } else {\n      _.postSlide(animSlide);\n    }\n  };\n\n  Slick.prototype.startLoad = function () {\n    var _ = this;\n\n    if (_.options.arrows === true && _.slideCount > _.options.slidesToShow) {\n      _.$prevArrow.hide();\n\n      _.$nextArrow.hide();\n    }\n\n    if (_.options.dots === true && _.slideCount > _.options.slidesToShow) {\n      _.$dots.hide();\n    }\n\n    _.$slider.addClass('slick-loading');\n  };\n\n  Slick.prototype.swipeDirection = function () {\n    var xDist,\n        yDist,\n        r,\n        swipeAngle,\n        _ = this;\n\n    xDist = _.touchObject.startX - _.touchObject.curX;\n    yDist = _.touchObject.startY - _.touchObject.curY;\n    r = Math.atan2(yDist, xDist);\n    swipeAngle = Math.round(r * 180 / Math.PI);\n\n    if (swipeAngle < 0) {\n      swipeAngle = 360 - Math.abs(swipeAngle);\n    }\n\n    if (swipeAngle <= 45 && swipeAngle >= 0) {\n      return _.options.rtl === false ? 'left' : 'right';\n    }\n\n    if (swipeAngle <= 360 && swipeAngle >= 315) {\n      return _.options.rtl === false ? 'left' : 'right';\n    }\n\n    if (swipeAngle >= 135 && swipeAngle <= 225) {\n      return _.options.rtl === false ? 'right' : 'left';\n    }\n\n    if (_.options.verticalSwiping === true) {\n      if (swipeAngle >= 35 && swipeAngle <= 135) {\n        return 'down';\n      } else {\n        return 'up';\n      }\n    }\n\n    return 'vertical';\n  };\n\n  Slick.prototype.swipeEnd = function (event) {\n    var _ = this,\n        slideCount,\n        direction;\n\n    _.dragging = false;\n    _.swiping = false;\n\n    if (_.scrolling) {\n      _.scrolling = false;\n      return false;\n    }\n\n    _.interrupted = false;\n    _.shouldClick = _.touchObject.swipeLength > 10 ? false : true;\n\n    if (_.touchObject.curX === undefined) {\n      return false;\n    }\n\n    if (_.touchObject.edgeHit === true) {\n      _.$slider.trigger('edge', [_, _.swipeDirection()]);\n    }\n\n    if (_.touchObject.swipeLength >= _.touchObject.minSwipe) {\n      direction = _.swipeDirection();\n\n      switch (direction) {\n        case 'left':\n        case 'down':\n          slideCount = _.options.swipeToSlide ? _.checkNavigable(_.currentSlide + _.getSlideCount()) : _.currentSlide + _.getSlideCount();\n          _.currentDirection = 0;\n          break;\n\n        case 'right':\n        case 'up':\n          slideCount = _.options.swipeToSlide ? _.checkNavigable(_.currentSlide - _.getSlideCount()) : _.currentSlide - _.getSlideCount();\n          _.currentDirection = 1;\n          break;\n\n        default:\n      }\n\n      if (direction != 'vertical') {\n        _.slideHandler(slideCount);\n\n        _.touchObject = {};\n\n        _.$slider.trigger('swipe', [_, direction]);\n      }\n    } else {\n      if (_.touchObject.startX !== _.touchObject.curX) {\n        _.slideHandler(_.currentSlide);\n\n        _.touchObject = {};\n      }\n    }\n  };\n\n  Slick.prototype.swipeHandler = function (event) {\n    var _ = this;\n\n    if (_.options.swipe === false || 'ontouchend' in document && _.options.swipe === false) {\n      return;\n    } else if (_.options.draggable === false && event.type.indexOf('mouse') !== -1) {\n      return;\n    }\n\n    _.touchObject.fingerCount = event.originalEvent && event.originalEvent.touches !== undefined ? event.originalEvent.touches.length : 1;\n    _.touchObject.minSwipe = _.listWidth / _.options.touchThreshold;\n\n    if (_.options.verticalSwiping === true) {\n      _.touchObject.minSwipe = _.listHeight / _.options.touchThreshold;\n    }\n\n    switch (event.data.action) {\n      case 'start':\n        _.swipeStart(event);\n\n        break;\n\n      case 'move':\n        _.swipeMove(event);\n\n        break;\n\n      case 'end':\n        _.swipeEnd(event);\n\n        break;\n    }\n  };\n\n  Slick.prototype.swipeMove = function (event) {\n    var _ = this,\n        edgeWasHit = false,\n        curLeft,\n        swipeDirection,\n        swipeLength,\n        positionOffset,\n        touches,\n        verticalSwipeLength;\n\n    touches = event.originalEvent !== undefined ? event.originalEvent.touches : null;\n\n    if (!_.dragging || _.scrolling || touches && touches.length !== 1) {\n      return false;\n    }\n\n    curLeft = _.getLeft(_.currentSlide);\n    _.touchObject.curX = touches !== undefined ? touches[0].pageX : event.clientX;\n    _.touchObject.curY = touches !== undefined ? touches[0].pageY : event.clientY;\n    _.touchObject.swipeLength = Math.round(Math.sqrt(Math.pow(_.touchObject.curX - _.touchObject.startX, 2)));\n    verticalSwipeLength = Math.round(Math.sqrt(Math.pow(_.touchObject.curY - _.touchObject.startY, 2)));\n\n    if (!_.options.verticalSwiping && !_.swiping && verticalSwipeLength > 4) {\n      _.scrolling = true;\n      return false;\n    }\n\n    if (_.options.verticalSwiping === true) {\n      _.touchObject.swipeLength = verticalSwipeLength;\n    }\n\n    swipeDirection = _.swipeDirection();\n\n    if (event.originalEvent !== undefined && _.touchObject.swipeLength > 4) {\n      _.swiping = true;\n      event.preventDefault();\n    }\n\n    positionOffset = (_.options.rtl === false ? 1 : -1) * (_.touchObject.curX > _.touchObject.startX ? 1 : -1);\n\n    if (_.options.verticalSwiping === true) {\n      positionOffset = _.touchObject.curY > _.touchObject.startY ? 1 : -1;\n    }\n\n    swipeLength = _.touchObject.swipeLength;\n    _.touchObject.edgeHit = false;\n\n    if (_.options.infinite === false) {\n      if (_.currentSlide === 0 && swipeDirection === 'right' || _.currentSlide >= _.getDotCount() && swipeDirection === 'left') {\n        swipeLength = _.touchObject.swipeLength * _.options.edgeFriction;\n        _.touchObject.edgeHit = true;\n      }\n    }\n\n    if (_.options.vertical === false) {\n      _.swipeLeft = curLeft + swipeLength * positionOffset;\n    } else {\n      _.swipeLeft = curLeft + swipeLength * (_.$list.height() / _.listWidth) * positionOffset;\n    }\n\n    if (_.options.verticalSwiping === true) {\n      _.swipeLeft = curLeft + swipeLength * positionOffset;\n    }\n\n    if (_.options.fade === true || _.options.touchMove === false) {\n      return false;\n    }\n\n    if (_.animating === true) {\n      _.swipeLeft = null;\n      return false;\n    }\n\n    _.setCSS(_.swipeLeft);\n  };\n\n  Slick.prototype.swipeStart = function (event) {\n    var _ = this,\n        touches;\n\n    _.interrupted = true;\n\n    if (_.touchObject.fingerCount !== 1 || _.slideCount <= _.options.slidesToShow) {\n      _.touchObject = {};\n      return false;\n    }\n\n    if (event.originalEvent !== undefined && event.originalEvent.touches !== undefined) {\n      touches = event.originalEvent.touches[0];\n    }\n\n    _.touchObject.startX = _.touchObject.curX = touches !== undefined ? touches.pageX : event.clientX;\n    _.touchObject.startY = _.touchObject.curY = touches !== undefined ? touches.pageY : event.clientY;\n    _.dragging = true;\n  };\n\n  Slick.prototype.unfilterSlides = Slick.prototype.slickUnfilter = function () {\n    var _ = this;\n\n    if (_.$slidesCache !== null) {\n      _.unload();\n\n      _.$slideTrack.children(this.options.slide).detach();\n\n      _.$slidesCache.appendTo(_.$slideTrack);\n\n      _.reinit();\n    }\n  };\n\n  Slick.prototype.unload = function () {\n    var _ = this;\n\n    $('.slick-cloned', _.$slider).remove();\n\n    if (_.$dots) {\n      _.$dots.remove();\n    }\n\n    if (_.$prevArrow && _.htmlExpr.test(_.options.prevArrow)) {\n      _.$prevArrow.remove();\n    }\n\n    if (_.$nextArrow && _.htmlExpr.test(_.options.nextArrow)) {\n      _.$nextArrow.remove();\n    }\n\n    _.$slides.removeClass('slick-slide slick-active slick-visible slick-current').attr('aria-hidden', 'true').css('width', '');\n  };\n\n  Slick.prototype.unslick = function (fromBreakpoint) {\n    var _ = this;\n\n    _.$slider.trigger('unslick', [_, fromBreakpoint]);\n\n    _.destroy();\n  };\n\n  Slick.prototype.updateArrows = function () {\n    var _ = this,\n        centerOffset;\n\n    centerOffset = Math.floor(_.options.slidesToShow / 2);\n\n    if (_.options.arrows === true && _.slideCount > _.options.slidesToShow && !_.options.infinite) {\n      _.$prevArrow.removeClass('slick-disabled').attr('aria-disabled', 'false');\n\n      _.$nextArrow.removeClass('slick-disabled').attr('aria-disabled', 'false');\n\n      if (_.currentSlide === 0) {\n        _.$prevArrow.addClass('slick-disabled').attr('aria-disabled', 'true');\n\n        _.$nextArrow.removeClass('slick-disabled').attr('aria-disabled', 'false');\n      } else if (_.currentSlide >= _.slideCount - _.options.slidesToShow && _.options.centerMode === false) {\n        _.$nextArrow.addClass('slick-disabled').attr('aria-disabled', 'true');\n\n        _.$prevArrow.removeClass('slick-disabled').attr('aria-disabled', 'false');\n      } else if (_.currentSlide >= _.slideCount - 1 && _.options.centerMode === true) {\n        _.$nextArrow.addClass('slick-disabled').attr('aria-disabled', 'true');\n\n        _.$prevArrow.removeClass('slick-disabled').attr('aria-disabled', 'false');\n      }\n    }\n  };\n\n  Slick.prototype.updateDots = function () {\n    var _ = this;\n\n    if (_.$dots !== null) {\n      _.$dots.find('li').removeClass('slick-active').end();\n\n      _.$dots.find('li').eq(Math.floor(_.currentSlide / _.options.slidesToScroll)).addClass('slick-active');\n    }\n  };\n\n  Slick.prototype.visibility = function () {\n    var _ = this;\n\n    if (_.options.autoplay) {\n      if (document[_.hidden]) {\n        _.interrupted = true;\n      } else {\n        _.interrupted = false;\n      }\n    }\n  };\n\n  $.fn.slick = function () {\n    var _ = this,\n        opt = arguments[0],\n        args = Array.prototype.slice.call(arguments, 1),\n        l = _.length,\n        i,\n        ret;\n\n    for (i = 0; i < l; i++) {\n      if (_typeof(opt) == 'object' || typeof opt == 'undefined') _[i].slick = new Slick(_[i], opt);else ret = _[i].slick[opt].apply(_[i].slick, args);\n      if (typeof ret != 'undefined') return ret;\n    }\n\n    return _;\n  };\n});\n/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./../../../node_modules/webpack/buildin/harmony-module.js */ \"./node_modules/webpack/buildin/harmony-module.js\")(module), __webpack_require__(/*! jquery */ \"./node_modules/jquery/dist/jquery.js\")))\n\n//# sourceURL=webpack:///./src/js/_libs/slick.js?")},"./src/js/_libs/swiper.min.js":function(module,__webpack_exports__,__webpack_require__){"use strict";eval('/* WEBPACK VAR INJECTION */(function(module) {/* harmony import */ var core_js_modules_es_symbol__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! core-js/modules/es.symbol */ "./node_modules/core-js/modules/es.symbol.js");\n/* harmony import */ var core_js_modules_es_symbol__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_symbol__WEBPACK_IMPORTED_MODULE_0__);\n/* harmony import */ var core_js_modules_es_symbol_description__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! core-js/modules/es.symbol.description */ "./node_modules/core-js/modules/es.symbol.description.js");\n/* harmony import */ var core_js_modules_es_symbol_description__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_symbol_description__WEBPACK_IMPORTED_MODULE_1__);\n/* harmony import */ var core_js_modules_es_symbol_iterator__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! core-js/modules/es.symbol.iterator */ "./node_modules/core-js/modules/es.symbol.iterator.js");\n/* harmony import */ var core_js_modules_es_symbol_iterator__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_symbol_iterator__WEBPACK_IMPORTED_MODULE_2__);\n/* harmony import */ var core_js_modules_es_array_concat__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! core-js/modules/es.array.concat */ "./node_modules/core-js/modules/es.array.concat.js");\n/* harmony import */ var core_js_modules_es_array_concat__WEBPACK_IMPORTED_MODULE_3___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_array_concat__WEBPACK_IMPORTED_MODULE_3__);\n/* harmony import */ var core_js_modules_es_array_filter__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! core-js/modules/es.array.filter */ "./node_modules/core-js/modules/es.array.filter.js");\n/* harmony import */ var core_js_modules_es_array_filter__WEBPACK_IMPORTED_MODULE_4___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_array_filter__WEBPACK_IMPORTED_MODULE_4__);\n/* harmony import */ var core_js_modules_es_array_find__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! core-js/modules/es.array.find */ "./node_modules/core-js/modules/es.array.find.js");\n/* harmony import */ var core_js_modules_es_array_find__WEBPACK_IMPORTED_MODULE_5___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_array_find__WEBPACK_IMPORTED_MODULE_5__);\n/* harmony import */ var core_js_modules_es_array_for_each__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! core-js/modules/es.array.for-each */ "./node_modules/core-js/modules/es.array.for-each.js");\n/* harmony import */ var core_js_modules_es_array_for_each__WEBPACK_IMPORTED_MODULE_6___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_array_for_each__WEBPACK_IMPORTED_MODULE_6__);\n/* harmony import */ var core_js_modules_es_array_includes__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! core-js/modules/es.array.includes */ "./node_modules/core-js/modules/es.array.includes.js");\n/* harmony import */ var core_js_modules_es_array_includes__WEBPACK_IMPORTED_MODULE_7___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_array_includes__WEBPACK_IMPORTED_MODULE_7__);\n/* harmony import */ var core_js_modules_es_array_index_of__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! core-js/modules/es.array.index-of */ "./node_modules/core-js/modules/es.array.index-of.js");\n/* harmony import */ var core_js_modules_es_array_index_of__WEBPACK_IMPORTED_MODULE_8___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_array_index_of__WEBPACK_IMPORTED_MODULE_8__);\n/* harmony import */ var core_js_modules_es_array_iterator__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! core-js/modules/es.array.iterator */ "./node_modules/core-js/modules/es.array.iterator.js");\n/* harmony import */ var core_js_modules_es_array_iterator__WEBPACK_IMPORTED_MODULE_9___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_array_iterator__WEBPACK_IMPORTED_MODULE_9__);\n/* harmony import */ var core_js_modules_es_array_join__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! core-js/modules/es.array.join */ "./node_modules/core-js/modules/es.array.join.js");\n/* harmony import */ var core_js_modules_es_array_join__WEBPACK_IMPORTED_MODULE_10___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_array_join__WEBPACK_IMPORTED_MODULE_10__);\n/* harmony import */ var core_js_modules_es_array_map__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! core-js/modules/es.array.map */ "./node_modules/core-js/modules/es.array.map.js");\n/* harmony import */ var core_js_modules_es_array_map__WEBPACK_IMPORTED_MODULE_11___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_array_map__WEBPACK_IMPORTED_MODULE_11__);\n/* harmony import */ var core_js_modules_es_array_slice__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! core-js/modules/es.array.slice */ "./node_modules/core-js/modules/es.array.slice.js");\n/* harmony import */ var core_js_modules_es_array_slice__WEBPACK_IMPORTED_MODULE_12___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_array_slice__WEBPACK_IMPORTED_MODULE_12__);\n/* harmony import */ var core_js_modules_es_array_sort__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! core-js/modules/es.array.sort */ "./node_modules/core-js/modules/es.array.sort.js");\n/* harmony import */ var core_js_modules_es_array_sort__WEBPACK_IMPORTED_MODULE_13___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_array_sort__WEBPACK_IMPORTED_MODULE_13__);\n/* harmony import */ var core_js_modules_es_array_splice__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(/*! core-js/modules/es.array.splice */ "./node_modules/core-js/modules/es.array.splice.js");\n/* harmony import */ var core_js_modules_es_array_splice__WEBPACK_IMPORTED_MODULE_14___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_array_splice__WEBPACK_IMPORTED_MODULE_14__);\n/* harmony import */ var core_js_modules_es_function_name__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(/*! core-js/modules/es.function.name */ "./node_modules/core-js/modules/es.function.name.js");\n/* harmony import */ var core_js_modules_es_function_name__WEBPACK_IMPORTED_MODULE_15___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_function_name__WEBPACK_IMPORTED_MODULE_15__);\n/* harmony import */ var core_js_modules_es_math_sign__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(/*! core-js/modules/es.math.sign */ "./node_modules/core-js/modules/es.math.sign.js");\n/* harmony import */ var core_js_modules_es_math_sign__WEBPACK_IMPORTED_MODULE_16___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_math_sign__WEBPACK_IMPORTED_MODULE_16__);\n/* harmony import */ var core_js_modules_es_object_get_own_property_descriptor__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__(/*! core-js/modules/es.object.get-own-property-descriptor */ "./node_modules/core-js/modules/es.object.get-own-property-descriptor.js");\n/* harmony import */ var core_js_modules_es_object_get_own_property_descriptor__WEBPACK_IMPORTED_MODULE_17___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_object_get_own_property_descriptor__WEBPACK_IMPORTED_MODULE_17__);\n/* harmony import */ var core_js_modules_es_object_keys__WEBPACK_IMPORTED_MODULE_18__ = __webpack_require__(/*! core-js/modules/es.object.keys */ "./node_modules/core-js/modules/es.object.keys.js");\n/* harmony import */ var core_js_modules_es_object_keys__WEBPACK_IMPORTED_MODULE_18___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_object_keys__WEBPACK_IMPORTED_MODULE_18__);\n/* harmony import */ var core_js_modules_es_object_to_string__WEBPACK_IMPORTED_MODULE_19__ = __webpack_require__(/*! core-js/modules/es.object.to-string */ "./node_modules/core-js/modules/es.object.to-string.js");\n/* harmony import */ var core_js_modules_es_object_to_string__WEBPACK_IMPORTED_MODULE_19___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_object_to_string__WEBPACK_IMPORTED_MODULE_19__);\n/* harmony import */ var core_js_modules_es_regexp_exec__WEBPACK_IMPORTED_MODULE_20__ = __webpack_require__(/*! core-js/modules/es.regexp.exec */ "./node_modules/core-js/modules/es.regexp.exec.js");\n/* harmony import */ var core_js_modules_es_regexp_exec__WEBPACK_IMPORTED_MODULE_20___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_regexp_exec__WEBPACK_IMPORTED_MODULE_20__);\n/* harmony import */ var core_js_modules_es_regexp_to_string__WEBPACK_IMPORTED_MODULE_21__ = __webpack_require__(/*! core-js/modules/es.regexp.to-string */ "./node_modules/core-js/modules/es.regexp.to-string.js");\n/* harmony import */ var core_js_modules_es_regexp_to_string__WEBPACK_IMPORTED_MODULE_21___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_regexp_to_string__WEBPACK_IMPORTED_MODULE_21__);\n/* harmony import */ var core_js_modules_es_string_includes__WEBPACK_IMPORTED_MODULE_22__ = __webpack_require__(/*! core-js/modules/es.string.includes */ "./node_modules/core-js/modules/es.string.includes.js");\n/* harmony import */ var core_js_modules_es_string_includes__WEBPACK_IMPORTED_MODULE_22___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_string_includes__WEBPACK_IMPORTED_MODULE_22__);\n/* harmony import */ var core_js_modules_es_string_iterator__WEBPACK_IMPORTED_MODULE_23__ = __webpack_require__(/*! core-js/modules/es.string.iterator */ "./node_modules/core-js/modules/es.string.iterator.js");\n/* harmony import */ var core_js_modules_es_string_iterator__WEBPACK_IMPORTED_MODULE_23___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_string_iterator__WEBPACK_IMPORTED_MODULE_23__);\n/* harmony import */ var core_js_modules_es_string_match__WEBPACK_IMPORTED_MODULE_24__ = __webpack_require__(/*! core-js/modules/es.string.match */ "./node_modules/core-js/modules/es.string.match.js");\n/* harmony import */ var core_js_modules_es_string_match__WEBPACK_IMPORTED_MODULE_24___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_string_match__WEBPACK_IMPORTED_MODULE_24__);\n/* harmony import */ var core_js_modules_es_string_replace__WEBPACK_IMPORTED_MODULE_25__ = __webpack_require__(/*! core-js/modules/es.string.replace */ "./node_modules/core-js/modules/es.string.replace.js");\n/* harmony import */ var core_js_modules_es_string_replace__WEBPACK_IMPORTED_MODULE_25___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_string_replace__WEBPACK_IMPORTED_MODULE_25__);\n/* harmony import */ var core_js_modules_es_string_split__WEBPACK_IMPORTED_MODULE_26__ = __webpack_require__(/*! core-js/modules/es.string.split */ "./node_modules/core-js/modules/es.string.split.js");\n/* harmony import */ var core_js_modules_es_string_split__WEBPACK_IMPORTED_MODULE_26___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_string_split__WEBPACK_IMPORTED_MODULE_26__);\n/* harmony import */ var core_js_modules_es_string_trim__WEBPACK_IMPORTED_MODULE_27__ = __webpack_require__(/*! core-js/modules/es.string.trim */ "./node_modules/core-js/modules/es.string.trim.js");\n/* harmony import */ var core_js_modules_es_string_trim__WEBPACK_IMPORTED_MODULE_27___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_string_trim__WEBPACK_IMPORTED_MODULE_27__);\n/* harmony import */ var core_js_modules_web_dom_collections_for_each__WEBPACK_IMPORTED_MODULE_28__ = __webpack_require__(/*! core-js/modules/web.dom-collections.for-each */ "./node_modules/core-js/modules/web.dom-collections.for-each.js");\n/* harmony import */ var core_js_modules_web_dom_collections_for_each__WEBPACK_IMPORTED_MODULE_28___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_web_dom_collections_for_each__WEBPACK_IMPORTED_MODULE_28__);\n/* harmony import */ var core_js_modules_web_dom_collections_iterator__WEBPACK_IMPORTED_MODULE_29__ = __webpack_require__(/*! core-js/modules/web.dom-collections.iterator */ "./node_modules/core-js/modules/web.dom-collections.iterator.js");\n/* harmony import */ var core_js_modules_web_dom_collections_iterator__WEBPACK_IMPORTED_MODULE_29___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_web_dom_collections_iterator__WEBPACK_IMPORTED_MODULE_29__);\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nfunction _typeof(obj) { "@babel/helpers - typeof"; 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/**\r\n * Swiper 5.4.5\r\n * Most modern mobile touch slider and framework with hardware accelerated transitions\r\n * http://swiperjs.com\r\n *\r\n * Copyright 2014-2020 Vladimir Kharlampidi\r\n *\r\n * Released under the MIT License\r\n *\r\n * Released on: June 16, 2020\r\n */\n!function (e, t) {\n  "object" == (typeof exports === "undefined" ? "undefined" : _typeof(exports)) && "undefined" != typeof module ? module.exports = t() : "function" == typeof define && __webpack_require__(/*! !webpack amd options */ "./node_modules/webpack/buildin/amd-options.js") ? define(t) : (e = e || self).Swiper = t();\n}(undefined, function () {\n  "use strict";\n\n  function e(e) {\n    return null !== e && "object" == _typeof(e) && "constructor" in e && e.constructor === Object;\n  }\n\n  function t(i, s) {\n    void 0 === i && (i = {}), void 0 === s && (s = {}), Object.keys(s).forEach(function (a) {\n      void 0 === i[a] ? i[a] = s[a] : e(s[a]) && e(i[a]) && Object.keys(s[a]).length > 0 && t(i[a], s[a]);\n    });\n  }\n\n  var i = "undefined" != typeof document ? document : {},\n      s = {\n    body: {},\n    addEventListener: function addEventListener() {},\n    removeEventListener: function removeEventListener() {},\n    activeElement: {\n      blur: function blur() {},\n      nodeName: ""\n    },\n    querySelector: function querySelector() {\n      return null;\n    },\n    querySelectorAll: function querySelectorAll() {\n      return [];\n    },\n    getElementById: function getElementById() {\n      return null;\n    },\n    createEvent: function createEvent() {\n      return {\n        initEvent: function initEvent() {}\n      };\n    },\n    createElement: function createElement() {\n      return {\n        children: [],\n        childNodes: [],\n        style: {},\n        setAttribute: function setAttribute() {},\n        getElementsByTagName: function getElementsByTagName() {\n          return [];\n        }\n      };\n    },\n    createElementNS: function createElementNS() {\n      return {};\n    },\n    importNode: function importNode() {\n      return null;\n    },\n    location: {\n      hash: "",\n      host: "",\n      hostname: "",\n      href: "",\n      origin: "",\n      pathname: "",\n      protocol: "",\n      search: ""\n    }\n  };\n  t(i, s);\n  var a = "undefined" != typeof window ? window : {};\n  t(a, {\n    document: s,\n    navigator: {\n      userAgent: ""\n    },\n    location: {\n      hash: "",\n      host: "",\n      hostname: "",\n      href: "",\n      origin: "",\n      pathname: "",\n      protocol: "",\n      search: ""\n    },\n    history: {\n      replaceState: function replaceState() {},\n      pushState: function pushState() {},\n      go: function go() {},\n      back: function back() {}\n    },\n    CustomEvent: function CustomEvent() {\n      return this;\n    },\n    addEventListener: function addEventListener() {},\n    removeEventListener: function removeEventListener() {},\n    getComputedStyle: function getComputedStyle() {\n      return {\n        getPropertyValue: function getPropertyValue() {\n          return "";\n        }\n      };\n    },\n    Image: function Image() {},\n    Date: function Date() {},\n    screen: {},\n    setTimeout: function setTimeout() {},\n    clearTimeout: function clearTimeout() {},\n    matchMedia: function matchMedia() {\n      return {};\n    }\n  });\n\n  var r = function r(e) {\n    for (var t = 0; t < e.length; t += 1) {\n      this[t] = e[t];\n    }\n\n    return this.length = e.length, this;\n  };\n\n  function n(e, t) {\n    var s = [],\n        n = 0;\n    if (e && !t && e instanceof r) return e;\n    if (e) if ("string" == typeof e) {\n      var o,\n          l,\n          d = e.trim();\n\n      if (d.indexOf("<") >= 0 && d.indexOf(">") >= 0) {\n        var h = "div";\n\n        for (0 === d.indexOf("<li") && (h = "ul"), 0 === d.indexOf("<tr") && (h = "tbody"), 0 !== d.indexOf("<td") && 0 !== d.indexOf("<th") || (h = "tr"), 0 === d.indexOf("<tbody") && (h = "table"), 0 === d.indexOf("<option") && (h = "select"), (l = i.createElement(h)).innerHTML = d, n = 0; n < l.childNodes.length; n += 1) {\n          s.push(l.childNodes[n]);\n        }\n      } else for (o = t || "#" !== e[0] || e.match(/[ .<>:~]/) ? (t || i).querySelectorAll(e.trim()) : [i.getElementById(e.trim().split("#")[1])], n = 0; n < o.length; n += 1) {\n        o[n] && s.push(o[n]);\n      }\n    } else if (e.nodeType || e === a || e === i) s.push(e);else if (e.length > 0 && e[0].nodeType) for (n = 0; n < e.length; n += 1) {\n      s.push(e[n]);\n    }\n    return new r(s);\n  }\n\n  function o(e) {\n    for (var t = [], i = 0; i < e.length; i += 1) {\n      -1 === t.indexOf(e[i]) && t.push(e[i]);\n    }\n\n    return t;\n  }\n\n  n.fn = r.prototype, n.Class = r, n.Dom7 = r;\n  var l = {\n    addClass: function addClass(e) {\n      if (void 0 === e) return this;\n\n      for (var t = e.split(" "), i = 0; i < t.length; i += 1) {\n        for (var s = 0; s < this.length; s += 1) {\n          void 0 !== this[s] && void 0 !== this[s].classList && this[s].classList.add(t[i]);\n        }\n      }\n\n      return this;\n    },\n    removeClass: function removeClass(e) {\n      for (var t = e.split(" "), i = 0; i < t.length; i += 1) {\n        for (var s = 0; s < this.length; s += 1) {\n          void 0 !== this[s] && void 0 !== this[s].classList && this[s].classList.remove(t[i]);\n        }\n      }\n\n      return this;\n    },\n    hasClass: function hasClass(e) {\n      return !!this[0] && this[0].classList.contains(e);\n    },\n    toggleClass: function toggleClass(e) {\n      for (var t = e.split(" "), i = 0; i < t.length; i += 1) {\n        for (var s = 0; s < this.length; s += 1) {\n          void 0 !== this[s] && void 0 !== this[s].classList && this[s].classList.toggle(t[i]);\n        }\n      }\n\n      return this;\n    },\n    attr: function attr(e, t) {\n      var i = arguments;\n      if (1 === arguments.length && "string" == typeof e) return this[0] ? this[0].getAttribute(e) : void 0;\n\n      for (var s = 0; s < this.length; s += 1) {\n        if (2 === i.length) this[s].setAttribute(e, t);else for (var a in e) {\n          this[s][a] = e[a], this[s].setAttribute(a, e[a]);\n        }\n      }\n\n      return this;\n    },\n    removeAttr: function removeAttr(e) {\n      for (var t = 0; t < this.length; t += 1) {\n        this[t].removeAttribute(e);\n      }\n\n      return this;\n    },\n    data: function data(e, t) {\n      var i;\n\n      if (void 0 !== t) {\n        for (var s = 0; s < this.length; s += 1) {\n          (i = this[s]).dom7ElementDataStorage || (i.dom7ElementDataStorage = {}), i.dom7ElementDataStorage[e] = t;\n        }\n\n        return this;\n      }\n\n      if (i = this[0]) {\n        if (i.dom7ElementDataStorage && e in i.dom7ElementDataStorage) return i.dom7ElementDataStorage[e];\n        var a = i.getAttribute("data-" + e);\n        return a || void 0;\n      }\n    },\n    transform: function transform(e) {\n      for (var t = 0; t < this.length; t += 1) {\n        var i = this[t].style;\n        i.webkitTransform = e, i.transform = e;\n      }\n\n      return this;\n    },\n    transition: function transition(e) {\n      "string" != typeof e && (e += "ms");\n\n      for (var t = 0; t < this.length; t += 1) {\n        var i = this[t].style;\n        i.webkitTransitionDuration = e, i.transitionDuration = e;\n      }\n\n      return this;\n    },\n    on: function on() {\n      for (var e, t = [], i = arguments.length; i--;) {\n        t[i] = arguments[i];\n      }\n\n      var s = t[0],\n          a = t[1],\n          r = t[2],\n          o = t[3];\n\n      function l(e) {\n        var t = e.target;\n\n        if (t) {\n          var i = e.target.dom7EventData || [];\n          if (i.indexOf(e) < 0 && i.unshift(e), n(t).is(a)) r.apply(t, i);else for (var s = n(t).parents(), o = 0; o < s.length; o += 1) {\n            n(s[o]).is(a) && r.apply(s[o], i);\n          }\n        }\n      }\n\n      function d(e) {\n        var t = e && e.target && e.target.dom7EventData || [];\n        t.indexOf(e) < 0 && t.unshift(e), r.apply(this, t);\n      }\n\n      "function" == typeof t[1] && (s = (e = t)[0], r = e[1], o = e[2], a = void 0), o || (o = !1);\n\n      for (var h, p = s.split(" "), c = 0; c < this.length; c += 1) {\n        var u = this[c];\n        if (a) for (h = 0; h < p.length; h += 1) {\n          var v = p[h];\n          u.dom7LiveListeners || (u.dom7LiveListeners = {}), u.dom7LiveListeners[v] || (u.dom7LiveListeners[v] = []), u.dom7LiveListeners[v].push({\n            listener: r,\n            proxyListener: l\n          }), u.addEventListener(v, l, o);\n        } else for (h = 0; h < p.length; h += 1) {\n          var f = p[h];\n          u.dom7Listeners || (u.dom7Listeners = {}), u.dom7Listeners[f] || (u.dom7Listeners[f] = []), u.dom7Listeners[f].push({\n            listener: r,\n            proxyListener: d\n          }), u.addEventListener(f, d, o);\n        }\n      }\n\n      return this;\n    },\n    off: function off() {\n      for (var e, t = [], i = arguments.length; i--;) {\n        t[i] = arguments[i];\n      }\n\n      var s = t[0],\n          a = t[1],\n          r = t[2],\n          n = t[3];\n      "function" == typeof t[1] && (s = (e = t)[0], r = e[1], n = e[2], a = void 0), n || (n = !1);\n\n      for (var o = s.split(" "), l = 0; l < o.length; l += 1) {\n        for (var d = o[l], h = 0; h < this.length; h += 1) {\n          var p = this[h],\n              c = void 0;\n          if (!a && p.dom7Listeners ? c = p.dom7Listeners[d] : a && p.dom7LiveListeners && (c = p.dom7LiveListeners[d]), c && c.length) for (var u = c.length - 1; u >= 0; u -= 1) {\n            var v = c[u];\n            r && v.listener === r || r && v.listener && v.listener.dom7proxy && v.listener.dom7proxy === r ? (p.removeEventListener(d, v.proxyListener, n), c.splice(u, 1)) : r || (p.removeEventListener(d, v.proxyListener, n), c.splice(u, 1));\n          }\n        }\n      }\n\n      return this;\n    },\n    trigger: function trigger() {\n      for (var e = [], t = arguments.length; t--;) {\n        e[t] = arguments[t];\n      }\n\n      for (var s = e[0].split(" "), r = e[1], n = 0; n < s.length; n += 1) {\n        for (var o = s[n], l = 0; l < this.length; l += 1) {\n          var d = this[l],\n              h = void 0;\n\n          try {\n            h = new a.CustomEvent(o, {\n              detail: r,\n              bubbles: !0,\n              cancelable: !0\n            });\n          } catch (e) {\n            (h = i.createEvent("Event")).initEvent(o, !0, !0), h.detail = r;\n          }\n\n          d.dom7EventData = e.filter(function (e, t) {\n            return t > 0;\n          }), d.dispatchEvent(h), d.dom7EventData = [], delete d.dom7EventData;\n        }\n      }\n\n      return this;\n    },\n    transitionEnd: function transitionEnd(e) {\n      var t,\n          i = ["webkitTransitionEnd", "transitionend"],\n          s = this;\n\n      function a(r) {\n        if (r.target === this) for (e.call(this, r), t = 0; t < i.length; t += 1) {\n          s.off(i[t], a);\n        }\n      }\n\n      if (e) for (t = 0; t < i.length; t += 1) {\n        s.on(i[t], a);\n      }\n      return this;\n    },\n    outerWidth: function outerWidth(e) {\n      if (this.length > 0) {\n        if (e) {\n          var t = this.styles();\n          return this[0].offsetWidth + parseFloat(t.getPropertyValue("margin-right")) + parseFloat(t.getPropertyValue("margin-left"));\n        }\n\n        return this[0].offsetWidth;\n      }\n\n      return null;\n    },\n    outerHeight: function outerHeight(e) {\n      if (this.length > 0) {\n        if (e) {\n          var t = this.styles();\n          return this[0].offsetHeight + parseFloat(t.getPropertyValue("margin-top")) + parseFloat(t.getPropertyValue("margin-bottom"));\n        }\n\n        return this[0].offsetHeight;\n      }\n\n      return null;\n    },\n    offset: function offset() {\n      if (this.length > 0) {\n        var e = this[0],\n            t = e.getBoundingClientRect(),\n            s = i.body,\n            r = e.clientTop || s.clientTop || 0,\n            n = e.clientLeft || s.clientLeft || 0,\n            o = e === a ? a.scrollY : e.scrollTop,\n            l = e === a ? a.scrollX : e.scrollLeft;\n        return {\n          top: t.top + o - r,\n          left: t.left + l - n\n        };\n      }\n\n      return null;\n    },\n    css: function css(e, t) {\n      var i;\n\n      if (1 === arguments.length) {\n        if ("string" != typeof e) {\n          for (i = 0; i < this.length; i += 1) {\n            for (var s in e) {\n              this[i].style[s] = e[s];\n            }\n          }\n\n          return this;\n        }\n\n        if (this[0]) return a.getComputedStyle(this[0], null).getPropertyValue(e);\n      }\n\n      if (2 === arguments.length && "string" == typeof e) {\n        for (i = 0; i < this.length; i += 1) {\n          this[i].style[e] = t;\n        }\n\n        return this;\n      }\n\n      return this;\n    },\n    each: function each(e) {\n      if (!e) return this;\n\n      for (var t = 0; t < this.length; t += 1) {\n        if (!1 === e.call(this[t], t, this[t])) return this;\n      }\n\n      return this;\n    },\n    html: function html(e) {\n      if (void 0 === e) return this[0] ? this[0].innerHTML : void 0;\n\n      for (var t = 0; t < this.length; t += 1) {\n        this[t].innerHTML = e;\n      }\n\n      return this;\n    },\n    text: function text(e) {\n      if (void 0 === e) return this[0] ? this[0].textContent.trim() : null;\n\n      for (var t = 0; t < this.length; t += 1) {\n        this[t].textContent = e;\n      }\n\n      return this;\n    },\n    is: function is(e) {\n      var t,\n          s,\n          o = this[0];\n      if (!o || void 0 === e) return !1;\n\n      if ("string" == typeof e) {\n        if (o.matches) return o.matches(e);\n        if (o.webkitMatchesSelector) return o.webkitMatchesSelector(e);\n        if (o.msMatchesSelector) return o.msMatchesSelector(e);\n\n        for (t = n(e), s = 0; s < t.length; s += 1) {\n          if (t[s] === o) return !0;\n        }\n\n        return !1;\n      }\n\n      if (e === i) return o === i;\n      if (e === a) return o === a;\n\n      if (e.nodeType || e instanceof r) {\n        for (t = e.nodeType ? [e] : e, s = 0; s < t.length; s += 1) {\n          if (t[s] === o) return !0;\n        }\n\n        return !1;\n      }\n\n      return !1;\n    },\n    index: function index() {\n      var e,\n          t = this[0];\n\n      if (t) {\n        for (e = 0; null !== (t = t.previousSibling);) {\n          1 === t.nodeType && (e += 1);\n        }\n\n        return e;\n      }\n    },\n    eq: function eq(e) {\n      if (void 0 === e) return this;\n      var t,\n          i = this.length;\n      return new r(e > i - 1 ? [] : e < 0 ? (t = i + e) < 0 ? [] : [this[t]] : [this[e]]);\n    },\n    append: function append() {\n      for (var e, t = [], s = arguments.length; s--;) {\n        t[s] = arguments[s];\n      }\n\n      for (var a = 0; a < t.length; a += 1) {\n        e = t[a];\n\n        for (var n = 0; n < this.length; n += 1) {\n          if ("string" == typeof e) {\n            var o = i.createElement("div");\n\n            for (o.innerHTML = e; o.firstChild;) {\n              this[n].appendChild(o.firstChild);\n            }\n          } else if (e instanceof r) for (var l = 0; l < e.length; l += 1) {\n            this[n].appendChild(e[l]);\n          } else this[n].appendChild(e);\n        }\n      }\n\n      return this;\n    },\n    prepend: function prepend(e) {\n      var t, s;\n\n      for (t = 0; t < this.length; t += 1) {\n        if ("string" == typeof e) {\n          var a = i.createElement("div");\n\n          for (a.innerHTML = e, s = a.childNodes.length - 1; s >= 0; s -= 1) {\n            this[t].insertBefore(a.childNodes[s], this[t].childNodes[0]);\n          }\n        } else if (e instanceof r) for (s = 0; s < e.length; s += 1) {\n          this[t].insertBefore(e[s], this[t].childNodes[0]);\n        } else this[t].insertBefore(e, this[t].childNodes[0]);\n      }\n\n      return this;\n    },\n    next: function next(e) {\n      return this.length > 0 ? e ? this[0].nextElementSibling && n(this[0].nextElementSibling).is(e) ? new r([this[0].nextElementSibling]) : new r([]) : this[0].nextElementSibling ? new r([this[0].nextElementSibling]) : new r([]) : new r([]);\n    },\n    nextAll: function nextAll(e) {\n      var t = [],\n          i = this[0];\n      if (!i) return new r([]);\n\n      for (; i.nextElementSibling;) {\n        var s = i.nextElementSibling;\n        e ? n(s).is(e) && t.push(s) : t.push(s), i = s;\n      }\n\n      return new r(t);\n    },\n    prev: function prev(e) {\n      if (this.length > 0) {\n        var t = this[0];\n        return e ? t.previousElementSibling && n(t.previousElementSibling).is(e) ? new r([t.previousElementSibling]) : new r([]) : t.previousElementSibling ? new r([t.previousElementSibling]) : new r([]);\n      }\n\n      return new r([]);\n    },\n    prevAll: function prevAll(e) {\n      var t = [],\n          i = this[0];\n      if (!i) return new r([]);\n\n      for (; i.previousElementSibling;) {\n        var s = i.previousElementSibling;\n        e ? n(s).is(e) && t.push(s) : t.push(s), i = s;\n      }\n\n      return new r(t);\n    },\n    parent: function parent(e) {\n      for (var t = [], i = 0; i < this.length; i += 1) {\n        null !== this[i].parentNode && (e ? n(this[i].parentNode).is(e) && t.push(this[i].parentNode) : t.push(this[i].parentNode));\n      }\n\n      return n(o(t));\n    },\n    parents: function parents(e) {\n      for (var t = [], i = 0; i < this.length; i += 1) {\n        for (var s = this[i].parentNode; s;) {\n          e ? n(s).is(e) && t.push(s) : t.push(s), s = s.parentNode;\n        }\n      }\n\n      return n(o(t));\n    },\n    closest: function closest(e) {\n      var t = this;\n      return void 0 === e ? new r([]) : (t.is(e) || (t = t.parents(e).eq(0)), t);\n    },\n    find: function find(e) {\n      for (var t = [], i = 0; i < this.length; i += 1) {\n        for (var s = this[i].querySelectorAll(e), a = 0; a < s.length; a += 1) {\n          t.push(s[a]);\n        }\n      }\n\n      return new r(t);\n    },\n    children: function children(e) {\n      for (var t = [], i = 0; i < this.length; i += 1) {\n        for (var s = this[i].childNodes, a = 0; a < s.length; a += 1) {\n          e ? 1 === s[a].nodeType && n(s[a]).is(e) && t.push(s[a]) : 1 === s[a].nodeType && t.push(s[a]);\n        }\n      }\n\n      return new r(o(t));\n    },\n    filter: function filter(e) {\n      for (var t = [], i = 0; i < this.length; i += 1) {\n        e.call(this[i], i, this[i]) && t.push(this[i]);\n      }\n\n      return new r(t);\n    },\n    remove: function remove() {\n      for (var e = 0; e < this.length; e += 1) {\n        this[e].parentNode && this[e].parentNode.removeChild(this[e]);\n      }\n\n      return this;\n    },\n    add: function add() {\n      for (var e = [], t = arguments.length; t--;) {\n        e[t] = arguments[t];\n      }\n\n      var i,\n          s,\n          a = this;\n\n      for (i = 0; i < e.length; i += 1) {\n        var r = n(e[i]);\n\n        for (s = 0; s < r.length; s += 1) {\n          a[a.length] = r[s], a.length += 1;\n        }\n      }\n\n      return a;\n    },\n    styles: function styles() {\n      return this[0] ? a.getComputedStyle(this[0], null) : {};\n    }\n  };\n  Object.keys(l).forEach(function (e) {\n    n.fn[e] = n.fn[e] || l[e];\n  });\n\n  var d = {\n    deleteProps: function deleteProps(e) {\n      var t = e;\n      Object.keys(t).forEach(function (e) {\n        try {\n          t[e] = null;\n        } catch (e) {}\n\n        try {\n          delete t[e];\n        } catch (e) {}\n      });\n    },\n    nextTick: function nextTick(e, t) {\n      return void 0 === t && (t = 0), setTimeout(e, t);\n    },\n    now: function now() {\n      return Date.now();\n    },\n    getTranslate: function getTranslate(e, t) {\n      var i, s, r;\n      void 0 === t && (t = "x");\n      var n = a.getComputedStyle(e, null);\n      return a.WebKitCSSMatrix ? ((s = n.transform || n.webkitTransform).split(",").length > 6 && (s = s.split(", ").map(function (e) {\n        return e.replace(",", ".");\n      }).join(", ")), r = new a.WebKitCSSMatrix("none" === s ? "" : s)) : i = (r = n.MozTransform || n.OTransform || n.MsTransform || n.msTransform || n.transform || n.getPropertyValue("transform").replace("translate(", "matrix(1, 0, 0, 1,")).toString().split(","), "x" === t && (s = a.WebKitCSSMatrix ? r.m41 : 16 === i.length ? parseFloat(i[12]) : parseFloat(i[4])), "y" === t && (s = a.WebKitCSSMatrix ? r.m42 : 16 === i.length ? parseFloat(i[13]) : parseFloat(i[5])), s || 0;\n    },\n    parseUrlQuery: function parseUrlQuery(e) {\n      var t,\n          i,\n          s,\n          r,\n          n = {},\n          o = e || a.location.href;\n      if ("string" == typeof o && o.length) for (r = (i = (o = o.indexOf("?") > -1 ? o.replace(/\\S*\\?/, "") : "").split("&").filter(function (e) {\n        return "" !== e;\n      })).length, t = 0; t < r; t += 1) {\n        s = i[t].replace(/#\\S+/g, "").split("="), n[decodeURIComponent(s[0])] = void 0 === s[1] ? void 0 : decodeURIComponent(s[1]) || "";\n      }\n      return n;\n    },\n    isObject: function isObject(e) {\n      return "object" == _typeof(e) && null !== e && e.constructor && e.constructor === Object;\n    },\n    extend: function extend() {\n      for (var e = [], t = arguments.length; t--;) {\n        e[t] = arguments[t];\n      }\n\n      for (var i = Object(e[0]), s = 1; s < e.length; s += 1) {\n        var a = e[s];\n        if (null != a) for (var r = Object.keys(Object(a)), n = 0, o = r.length; n < o; n += 1) {\n          var l = r[n],\n              h = Object.getOwnPropertyDescriptor(a, l);\n          void 0 !== h && h.enumerable && (d.isObject(i[l]) && d.isObject(a[l]) ? d.extend(i[l], a[l]) : !d.isObject(i[l]) && d.isObject(a[l]) ? (i[l] = {}, d.extend(i[l], a[l])) : i[l] = a[l]);\n        }\n      }\n\n      return i;\n    }\n  },\n      h = {\n    touch: !!("ontouchstart" in a || a.DocumentTouch && i instanceof a.DocumentTouch),\n    pointerEvents: !!a.PointerEvent && "maxTouchPoints" in a.navigator && a.navigator.maxTouchPoints >= 0,\n    observer: "MutationObserver" in a || "WebkitMutationObserver" in a,\n    passiveListener: function () {\n      var e = !1;\n\n      try {\n        var t = Object.defineProperty({}, "passive", {\n          get: function get() {\n            e = !0;\n          }\n        });\n        a.addEventListener("testPassiveListener", null, t);\n      } catch (e) {}\n\n      return e;\n    }(),\n    gestures: "ongesturestart" in a\n  },\n      p = function p(e) {\n    void 0 === e && (e = {});\n    var t = this;\n    t.params = e, t.eventsListeners = {}, t.params && t.params.on && Object.keys(t.params.on).forEach(function (e) {\n      t.on(e, t.params.on[e]);\n    });\n  },\n      c = {\n    components: {\n      configurable: !0\n    }\n  };\n\n  p.prototype.on = function (e, t, i) {\n    var s = this;\n    if ("function" != typeof t) return s;\n    var a = i ? "unshift" : "push";\n    return e.split(" ").forEach(function (e) {\n      s.eventsListeners[e] || (s.eventsListeners[e] = []), s.eventsListeners[e][a](t);\n    }), s;\n  }, p.prototype.once = function (e, t, i) {\n    var s = this;\n    if ("function" != typeof t) return s;\n\n    function a() {\n      for (var i = [], r = arguments.length; r--;) {\n        i[r] = arguments[r];\n      }\n\n      s.off(e, a), a.f7proxy && delete a.f7proxy, t.apply(s, i);\n    }\n\n    return a.f7proxy = t, s.on(e, a, i);\n  }, p.prototype.off = function (e, t) {\n    var i = this;\n    return i.eventsListeners ? (e.split(" ").forEach(function (e) {\n      void 0 === t ? i.eventsListeners[e] = [] : i.eventsListeners[e] && i.eventsListeners[e].length && i.eventsListeners[e].forEach(function (s, a) {\n        (s === t || s.f7proxy && s.f7proxy === t) && i.eventsListeners[e].splice(a, 1);\n      });\n    }), i) : i;\n  }, p.prototype.emit = function () {\n    for (var e = [], t = arguments.length; t--;) {\n      e[t] = arguments[t];\n    }\n\n    var i,\n        s,\n        a,\n        r = this;\n    if (!r.eventsListeners) return r;\n    "string" == typeof e[0] || Array.isArray(e[0]) ? (i = e[0], s = e.slice(1, e.length), a = r) : (i = e[0].events, s = e[0].data, a = e[0].context || r);\n    var n = Array.isArray(i) ? i : i.split(" ");\n    return n.forEach(function (e) {\n      if (r.eventsListeners && r.eventsListeners[e]) {\n        var t = [];\n        r.eventsListeners[e].forEach(function (e) {\n          t.push(e);\n        }), t.forEach(function (e) {\n          e.apply(a, s);\n        });\n      }\n    }), r;\n  }, p.prototype.useModulesParams = function (e) {\n    var t = this;\n    t.modules && Object.keys(t.modules).forEach(function (i) {\n      var s = t.modules[i];\n      s.params && d.extend(e, s.params);\n    });\n  }, p.prototype.useModules = function (e) {\n    void 0 === e && (e = {});\n    var t = this;\n    t.modules && Object.keys(t.modules).forEach(function (i) {\n      var s = t.modules[i],\n          a = e[i] || {};\n      s.instance && Object.keys(s.instance).forEach(function (e) {\n        var i = s.instance[e];\n        t[e] = "function" == typeof i ? i.bind(t) : i;\n      }), s.on && t.on && Object.keys(s.on).forEach(function (e) {\n        t.on(e, s.on[e]);\n      }), s.create && s.create.bind(t)(a);\n    });\n  }, c.components.set = function (e) {\n    this.use && this.use(e);\n  }, p.installModule = function (e) {\n    for (var t = [], i = arguments.length - 1; i-- > 0;) {\n      t[i] = arguments[i + 1];\n    }\n\n    var s = this;\n    s.prototype.modules || (s.prototype.modules = {});\n    var a = e.name || Object.keys(s.prototype.modules).length + "_" + d.now();\n    return s.prototype.modules[a] = e, e.proto && Object.keys(e.proto).forEach(function (t) {\n      s.prototype[t] = e.proto[t];\n    }), e.static && Object.keys(e.static).forEach(function (t) {\n      s[t] = e.static[t];\n    }), e.install && e.install.apply(s, t), s;\n  }, p.use = function (e) {\n    for (var t = [], i = arguments.length - 1; i-- > 0;) {\n      t[i] = arguments[i + 1];\n    }\n\n    var s = this;\n    return Array.isArray(e) ? (e.forEach(function (e) {\n      return s.installModule(e);\n    }), s) : s.installModule.apply(s, [e].concat(t));\n  }, Object.defineProperties(p, c);\n  var u = {\n    updateSize: function updateSize() {\n      var e,\n          t,\n          i = this.$el;\n      e = void 0 !== this.params.width ? this.params.width : i[0].clientWidth, t = void 0 !== this.params.height ? this.params.height : i[0].clientHeight, 0 === e && this.isHorizontal() || 0 === t && this.isVertical() || (e = e - parseInt(i.css("padding-left"), 10) - parseInt(i.css("padding-right"), 10), t = t - parseInt(i.css("padding-top"), 10) - parseInt(i.css("padding-bottom"), 10), d.extend(this, {\n        width: e,\n        height: t,\n        size: this.isHorizontal() ? e : t\n      }));\n    },\n    updateSlides: function updateSlides() {\n      var e = this.params,\n          t = this.$wrapperEl,\n          i = this.size,\n          s = this.rtlTranslate,\n          r = this.wrongRTL,\n          n = this.virtual && e.virtual.enabled,\n          o = n ? this.virtual.slides.length : this.slides.length,\n          l = t.children("." + this.params.slideClass),\n          h = n ? this.virtual.slides.length : l.length,\n          p = [],\n          c = [],\n          u = [];\n\n      function v(t) {\n        return !e.cssMode || t !== l.length - 1;\n      }\n\n      var f = e.slidesOffsetBefore;\n      "function" == typeof f && (f = e.slidesOffsetBefore.call(this));\n      var m = e.slidesOffsetAfter;\n      "function" == typeof m && (m = e.slidesOffsetAfter.call(this));\n      var g = this.snapGrid.length,\n          b = this.snapGrid.length,\n          w = e.spaceBetween,\n          y = -f,\n          x = 0,\n          E = 0;\n\n      if (void 0 !== i) {\n        var T, S;\n        "string" == typeof w && w.indexOf("%") >= 0 && (w = parseFloat(w.replace("%", "")) / 100 * i), this.virtualSize = -w, s ? l.css({\n          marginLeft: "",\n          marginTop: ""\n        }) : l.css({\n          marginRight: "",\n          marginBottom: ""\n        }), e.slidesPerColumn > 1 && (T = Math.floor(h / e.slidesPerColumn) === h / this.params.slidesPerColumn ? h : Math.ceil(h / e.slidesPerColumn) * e.slidesPerColumn, "auto" !== e.slidesPerView && "row" === e.slidesPerColumnFill && (T = Math.max(T, e.slidesPerView * e.slidesPerColumn)));\n\n        for (var C, M = e.slidesPerColumn, P = T / M, z = Math.floor(h / e.slidesPerColumn), k = 0; k < h; k += 1) {\n          S = 0;\n          var $ = l.eq(k);\n\n          if (e.slidesPerColumn > 1) {\n            var L = void 0,\n                I = void 0,\n                D = void 0;\n\n            if ("row" === e.slidesPerColumnFill && e.slidesPerGroup > 1) {\n              var O = Math.floor(k / (e.slidesPerGroup * e.slidesPerColumn)),\n                  A = k - e.slidesPerColumn * e.slidesPerGroup * O,\n                  G = 0 === O ? e.slidesPerGroup : Math.min(Math.ceil((h - O * M * e.slidesPerGroup) / M), e.slidesPerGroup);\n              L = (I = A - (D = Math.floor(A / G)) * G + O * e.slidesPerGroup) + D * T / M, $.css({\n                "-webkit-box-ordinal-group": L,\n                "-moz-box-ordinal-group": L,\n                "-ms-flex-order": L,\n                "-webkit-order": L,\n                order: L\n              });\n            } else "column" === e.slidesPerColumnFill ? (D = k - (I = Math.floor(k / M)) * M, (I > z || I === z && D === M - 1) && (D += 1) >= M && (D = 0, I += 1)) : I = k - (D = Math.floor(k / P)) * P;\n\n            $.css("margin-" + (this.isHorizontal() ? "top" : "left"), 0 !== D && e.spaceBetween && e.spaceBetween + "px");\n          }\n\n          if ("none" !== $.css("display")) {\n            if ("auto" === e.slidesPerView) {\n              var H = a.getComputedStyle($[0], null),\n                  B = $[0].style.transform,\n                  N = $[0].style.webkitTransform;\n              if (B && ($[0].style.transform = "none"), N && ($[0].style.webkitTransform = "none"), e.roundLengths) S = this.isHorizontal() ? $.outerWidth(!0) : $.outerHeight(!0);else if (this.isHorizontal()) {\n                var X = parseFloat(H.getPropertyValue("width")),\n                    V = parseFloat(H.getPropertyValue("padding-left")),\n                    Y = parseFloat(H.getPropertyValue("padding-right")),\n                    F = parseFloat(H.getPropertyValue("margin-left")),\n                    W = parseFloat(H.getPropertyValue("margin-right")),\n                    R = H.getPropertyValue("box-sizing");\n                S = R && "border-box" === R ? X + F + W : X + V + Y + F + W;\n              } else {\n                var q = parseFloat(H.getPropertyValue("height")),\n                    j = parseFloat(H.getPropertyValue("padding-top")),\n                    K = parseFloat(H.getPropertyValue("padding-bottom")),\n                    U = parseFloat(H.getPropertyValue("margin-top")),\n                    _ = parseFloat(H.getPropertyValue("margin-bottom")),\n                    Z = H.getPropertyValue("box-sizing");\n\n                S = Z && "border-box" === Z ? q + U + _ : q + j + K + U + _;\n              }\n              B && ($[0].style.transform = B), N && ($[0].style.webkitTransform = N), e.roundLengths && (S = Math.floor(S));\n            } else S = (i - (e.slidesPerView - 1) * w) / e.slidesPerView, e.roundLengths && (S = Math.floor(S)), l[k] && (this.isHorizontal() ? l[k].style.width = S + "px" : l[k].style.height = S + "px");\n\n            l[k] && (l[k].swiperSlideSize = S), u.push(S), e.centeredSlides ? (y = y + S / 2 + x / 2 + w, 0 === x && 0 !== k && (y = y - i / 2 - w), 0 === k && (y = y - i / 2 - w), Math.abs(y) < .001 && (y = 0), e.roundLengths && (y = Math.floor(y)), E % e.slidesPerGroup == 0 && p.push(y), c.push(y)) : (e.roundLengths && (y = Math.floor(y)), (E - Math.min(this.params.slidesPerGroupSkip, E)) % this.params.slidesPerGroup == 0 && p.push(y), c.push(y), y = y + S + w), this.virtualSize += S + w, x = S, E += 1;\n          }\n        }\n\n        if (this.virtualSize = Math.max(this.virtualSize, i) + m, s && r && ("slide" === e.effect || "coverflow" === e.effect) && t.css({\n          width: this.virtualSize + e.spaceBetween + "px"\n        }), e.setWrapperSize && (this.isHorizontal() ? t.css({\n          width: this.virtualSize + e.spaceBetween + "px"\n        }) : t.css({\n          height: this.virtualSize + e.spaceBetween + "px"\n        })), e.slidesPerColumn > 1 && (this.virtualSize = (S + e.spaceBetween) * T, this.virtualSize = Math.ceil(this.virtualSize / e.slidesPerColumn) - e.spaceBetween, this.isHorizontal() ? t.css({\n          width: this.virtualSize + e.spaceBetween + "px"\n        }) : t.css({\n          height: this.virtualSize + e.spaceBetween + "px"\n        }), e.centeredSlides)) {\n          C = [];\n\n          for (var Q = 0; Q < p.length; Q += 1) {\n            var J = p[Q];\n            e.roundLengths && (J = Math.floor(J)), p[Q] < this.virtualSize + p[0] && C.push(J);\n          }\n\n          p = C;\n        }\n\n        if (!e.centeredSlides) {\n          C = [];\n\n          for (var ee = 0; ee < p.length; ee += 1) {\n            var te = p[ee];\n            e.roundLengths && (te = Math.floor(te)), p[ee] <= this.virtualSize - i && C.push(te);\n          }\n\n          p = C, Math.floor(this.virtualSize - i) - Math.floor(p[p.length - 1]) > 1 && p.push(this.virtualSize - i);\n        }\n\n        if (0 === p.length && (p = [0]), 0 !== e.spaceBetween && (this.isHorizontal() ? s ? l.filter(v).css({\n          marginLeft: w + "px"\n        }) : l.filter(v).css({\n          marginRight: w + "px"\n        }) : l.filter(v).css({\n          marginBottom: w + "px"\n        })), e.centeredSlides && e.centeredSlidesBounds) {\n          var ie = 0;\n          u.forEach(function (t) {\n            ie += t + (e.spaceBetween ? e.spaceBetween : 0);\n          });\n          var se = (ie -= e.spaceBetween) - i;\n          p = p.map(function (e) {\n            return e < 0 ? -f : e > se ? se + m : e;\n          });\n        }\n\n        if (e.centerInsufficientSlides) {\n          var ae = 0;\n\n          if (u.forEach(function (t) {\n            ae += t + (e.spaceBetween ? e.spaceBetween : 0);\n          }), (ae -= e.spaceBetween) < i) {\n            var re = (i - ae) / 2;\n            p.forEach(function (e, t) {\n              p[t] = e - re;\n            }), c.forEach(function (e, t) {\n              c[t] = e + re;\n            });\n          }\n        }\n\n        d.extend(this, {\n          slides: l,\n          snapGrid: p,\n          slidesGrid: c,\n          slidesSizesGrid: u\n        }), h !== o && this.emit("slidesLengthChange"), p.length !== g && (this.params.watchOverflow && this.checkOverflow(), this.emit("snapGridLengthChange")), c.length !== b && this.emit("slidesGridLengthChange"), (e.watchSlidesProgress || e.watchSlidesVisibility) && this.updateSlidesOffset();\n      }\n    },\n    updateAutoHeight: function updateAutoHeight(e) {\n      var t,\n          i = [],\n          s = 0;\n      if ("number" == typeof e ? this.setTransition(e) : !0 === e && this.setTransition(this.params.speed), "auto" !== this.params.slidesPerView && this.params.slidesPerView > 1) {\n        if (this.params.centeredSlides) this.visibleSlides.each(function (e, t) {\n          i.push(t);\n        });else for (t = 0; t < Math.ceil(this.params.slidesPerView); t += 1) {\n          var a = this.activeIndex + t;\n          if (a > this.slides.length) break;\n          i.push(this.slides.eq(a)[0]);\n        }\n      } else i.push(this.slides.eq(this.activeIndex)[0]);\n\n      for (t = 0; t < i.length; t += 1) {\n        if (void 0 !== i[t]) {\n          var r = i[t].offsetHeight;\n          s = r > s ? r : s;\n        }\n      }\n\n      s && this.$wrapperEl.css("height", s + "px");\n    },\n    updateSlidesOffset: function updateSlidesOffset() {\n      for (var e = this.slides, t = 0; t < e.length; t += 1) {\n        e[t].swiperSlideOffset = this.isHorizontal() ? e[t].offsetLeft : e[t].offsetTop;\n      }\n    },\n    updateSlidesProgress: function updateSlidesProgress(e) {\n      void 0 === e && (e = this && this.translate || 0);\n      var t = this.params,\n          i = this.slides,\n          s = this.rtlTranslate;\n\n      if (0 !== i.length) {\n        void 0 === i[0].swiperSlideOffset && this.updateSlidesOffset();\n        var a = -e;\n        s && (a = e), i.removeClass(t.slideVisibleClass), this.visibleSlidesIndexes = [], this.visibleSlides = [];\n\n        for (var r = 0; r < i.length; r += 1) {\n          var o = i[r],\n              l = (a + (t.centeredSlides ? this.minTranslate() : 0) - o.swiperSlideOffset) / (o.swiperSlideSize + t.spaceBetween);\n\n          if (t.watchSlidesVisibility || t.centeredSlides && t.autoHeight) {\n            var d = -(a - o.swiperSlideOffset),\n                h = d + this.slidesSizesGrid[r];\n            (d >= 0 && d < this.size - 1 || h > 1 && h <= this.size || d <= 0 && h >= this.size) && (this.visibleSlides.push(o), this.visibleSlidesIndexes.push(r), i.eq(r).addClass(t.slideVisibleClass));\n          }\n\n          o.progress = s ? -l : l;\n        }\n\n        this.visibleSlides = n(this.visibleSlides);\n      }\n    },\n    updateProgress: function updateProgress(e) {\n      if (void 0 === e) {\n        var t = this.rtlTranslate ? -1 : 1;\n        e = this && this.translate && this.translate * t || 0;\n      }\n\n      var i = this.params,\n          s = this.maxTranslate() - this.minTranslate(),\n          a = this.progress,\n          r = this.isBeginning,\n          n = this.isEnd,\n          o = r,\n          l = n;\n      0 === s ? (a = 0, r = !0, n = !0) : (r = (a = (e - this.minTranslate()) / s) <= 0, n = a >= 1), d.extend(this, {\n        progress: a,\n        isBeginning: r,\n        isEnd: n\n      }), (i.watchSlidesProgress || i.watchSlidesVisibility || i.centeredSlides && i.autoHeight) && this.updateSlidesProgress(e), r && !o && this.emit("reachBeginning toEdge"), n && !l && this.emit("reachEnd toEdge"), (o && !r || l && !n) && this.emit("fromEdge"), this.emit("progress", a);\n    },\n    updateSlidesClasses: function updateSlidesClasses() {\n      var e,\n          t = this.slides,\n          i = this.params,\n          s = this.$wrapperEl,\n          a = this.activeIndex,\n          r = this.realIndex,\n          n = this.virtual && i.virtual.enabled;\n      t.removeClass(i.slideActiveClass + " " + i.slideNextClass + " " + i.slidePrevClass + " " + i.slideDuplicateActiveClass + " " + i.slideDuplicateNextClass + " " + i.slideDuplicatePrevClass), (e = n ? this.$wrapperEl.find("." + i.slideClass + \'[data-swiper-slide-index="\' + a + \'"]\') : t.eq(a)).addClass(i.slideActiveClass), i.loop && (e.hasClass(i.slideDuplicateClass) ? s.children("." + i.slideClass + ":not(." + i.slideDuplicateClass + \')[data-swiper-slide-index="\' + r + \'"]\').addClass(i.slideDuplicateActiveClass) : s.children("." + i.slideClass + "." + i.slideDuplicateClass + \'[data-swiper-slide-index="\' + r + \'"]\').addClass(i.slideDuplicateActiveClass));\n      var o = e.nextAll("." + i.slideClass).eq(0).addClass(i.slideNextClass);\n      i.loop && 0 === o.length && (o = t.eq(0)).addClass(i.slideNextClass);\n      var l = e.prevAll("." + i.slideClass).eq(0).addClass(i.slidePrevClass);\n      i.loop && 0 === l.length && (l = t.eq(-1)).addClass(i.slidePrevClass), i.loop && (o.hasClass(i.slideDuplicateClass) ? s.children("." + i.slideClass + ":not(." + i.slideDuplicateClass + \')[data-swiper-slide-index="\' + o.attr("data-swiper-slide-index") + \'"]\').addClass(i.slideDuplicateNextClass) : s.children("." + i.slideClass + "." + i.slideDuplicateClass + \'[data-swiper-slide-index="\' + o.attr("data-swiper-slide-index") + \'"]\').addClass(i.slideDuplicateNextClass), l.hasClass(i.slideDuplicateClass) ? s.children("." + i.slideClass + ":not(." + i.slideDuplicateClass + \')[data-swiper-slide-index="\' + l.attr("data-swiper-slide-index") + \'"]\').addClass(i.slideDuplicatePrevClass) : s.children("." + i.slideClass + "." + i.slideDuplicateClass + \'[data-swiper-slide-index="\' + l.attr("data-swiper-slide-index") + \'"]\').addClass(i.slideDuplicatePrevClass));\n    },\n    updateActiveIndex: function updateActiveIndex(e) {\n      var t,\n          i = this.rtlTranslate ? this.translate : -this.translate,\n          s = this.slidesGrid,\n          a = this.snapGrid,\n          r = this.params,\n          n = this.activeIndex,\n          o = this.realIndex,\n          l = this.snapIndex,\n          h = e;\n\n      if (void 0 === h) {\n        for (var p = 0; p < s.length; p += 1) {\n          void 0 !== s[p + 1] ? i >= s[p] && i < s[p + 1] - (s[p + 1] - s[p]) / 2 ? h = p : i >= s[p] && i < s[p + 1] && (h = p + 1) : i >= s[p] && (h = p);\n        }\n\n        r.normalizeSlideIndex && (h < 0 || void 0 === h) && (h = 0);\n      }\n\n      if (a.indexOf(i) >= 0) t = a.indexOf(i);else {\n        var c = Math.min(r.slidesPerGroupSkip, h);\n        t = c + Math.floor((h - c) / r.slidesPerGroup);\n      }\n\n      if (t >= a.length && (t = a.length - 1), h !== n) {\n        var u = parseInt(this.slides.eq(h).attr("data-swiper-slide-index") || h, 10);\n        d.extend(this, {\n          snapIndex: t,\n          realIndex: u,\n          previousIndex: n,\n          activeIndex: h\n        }), this.emit("activeIndexChange"), this.emit("snapIndexChange"), o !== u && this.emit("realIndexChange"), (this.initialized || this.params.runCallbacksOnInit) && this.emit("slideChange");\n      } else t !== l && (this.snapIndex = t, this.emit("snapIndexChange"));\n    },\n    updateClickedSlide: function updateClickedSlide(e) {\n      var t = this.params,\n          i = n(e.target).closest("." + t.slideClass)[0],\n          s = !1;\n      if (i) for (var a = 0; a < this.slides.length; a += 1) {\n        this.slides[a] === i && (s = !0);\n      }\n      if (!i || !s) return this.clickedSlide = void 0, void (this.clickedIndex = void 0);\n      this.clickedSlide = i, this.virtual && this.params.virtual.enabled ? this.clickedIndex = parseInt(n(i).attr("data-swiper-slide-index"), 10) : this.clickedIndex = n(i).index(), t.slideToClickedSlide && void 0 !== this.clickedIndex && this.clickedIndex !== this.activeIndex && this.slideToClickedSlide();\n    }\n  };\n  var v = {\n    getTranslate: function getTranslate(e) {\n      void 0 === e && (e = this.isHorizontal() ? "x" : "y");\n      var t = this.params,\n          i = this.rtlTranslate,\n          s = this.translate,\n          a = this.$wrapperEl;\n      if (t.virtualTranslate) return i ? -s : s;\n      if (t.cssMode) return s;\n      var r = d.getTranslate(a[0], e);\n      return i && (r = -r), r || 0;\n    },\n    setTranslate: function setTranslate(e, t) {\n      var i = this.rtlTranslate,\n          s = this.params,\n          a = this.$wrapperEl,\n          r = this.wrapperEl,\n          n = this.progress,\n          o = 0,\n          l = 0;\n      this.isHorizontal() ? o = i ? -e : e : l = e, s.roundLengths && (o = Math.floor(o), l = Math.floor(l)), s.cssMode ? r[this.isHorizontal() ? "scrollLeft" : "scrollTop"] = this.isHorizontal() ? -o : -l : s.virtualTranslate || a.transform("translate3d(" + o + "px, " + l + "px, 0px)"), this.previousTranslate = this.translate, this.translate = this.isHorizontal() ? o : l;\n      var d = this.maxTranslate() - this.minTranslate();\n      (0 === d ? 0 : (e - this.minTranslate()) / d) !== n && this.updateProgress(e), this.emit("setTranslate", this.translate, t);\n    },\n    minTranslate: function minTranslate() {\n      return -this.snapGrid[0];\n    },\n    maxTranslate: function maxTranslate() {\n      return -this.snapGrid[this.snapGrid.length - 1];\n    },\n    translateTo: function translateTo(e, t, i, s, a) {\n      var r;\n      void 0 === e && (e = 0), void 0 === t && (t = this.params.speed), void 0 === i && (i = !0), void 0 === s && (s = !0);\n      var n = this,\n          o = n.params,\n          l = n.wrapperEl;\n      if (n.animating && o.preventInteractionOnTransition) return !1;\n      var d,\n          h = n.minTranslate(),\n          p = n.maxTranslate();\n\n      if (d = s && e > h ? h : s && e < p ? p : e, n.updateProgress(d), o.cssMode) {\n        var c = n.isHorizontal();\n        return 0 === t ? l[c ? "scrollLeft" : "scrollTop"] = -d : l.scrollTo ? l.scrollTo(((r = {})[c ? "left" : "top"] = -d, r.behavior = "smooth", r)) : l[c ? "scrollLeft" : "scrollTop"] = -d, !0;\n      }\n\n      return 0 === t ? (n.setTransition(0), n.setTranslate(d), i && (n.emit("beforeTransitionStart", t, a), n.emit("transitionEnd"))) : (n.setTransition(t), n.setTranslate(d), i && (n.emit("beforeTransitionStart", t, a), n.emit("transitionStart")), n.animating || (n.animating = !0, n.onTranslateToWrapperTransitionEnd || (n.onTranslateToWrapperTransitionEnd = function (e) {\n        n && !n.destroyed && e.target === this && (n.$wrapperEl[0].removeEventListener("transitionend", n.onTranslateToWrapperTransitionEnd), n.$wrapperEl[0].removeEventListener("webkitTransitionEnd", n.onTranslateToWrapperTransitionEnd), n.onTranslateToWrapperTransitionEnd = null, delete n.onTranslateToWrapperTransitionEnd, i && n.emit("transitionEnd"));\n      }), n.$wrapperEl[0].addEventListener("transitionend", n.onTranslateToWrapperTransitionEnd), n.$wrapperEl[0].addEventListener("webkitTransitionEnd", n.onTranslateToWrapperTransitionEnd))), !0;\n    }\n  };\n  var f = {\n    setTransition: function setTransition(e, t) {\n      this.params.cssMode || this.$wrapperEl.transition(e), this.emit("setTransition", e, t);\n    },\n    transitionStart: function transitionStart(e, t) {\n      void 0 === e && (e = !0);\n      var i = this.activeIndex,\n          s = this.params,\n          a = this.previousIndex;\n\n      if (!s.cssMode) {\n        s.autoHeight && this.updateAutoHeight();\n        var r = t;\n\n        if (r || (r = i > a ? "next" : i < a ? "prev" : "reset"), this.emit("transitionStart"), e && i !== a) {\n          if ("reset" === r) return void this.emit("slideResetTransitionStart");\n          this.emit("slideChangeTransitionStart"), "next" === r ? this.emit("slideNextTransitionStart") : this.emit("slidePrevTransitionStart");\n        }\n      }\n    },\n    transitionEnd: function transitionEnd(e, t) {\n      void 0 === e && (e = !0);\n      var i = this.activeIndex,\n          s = this.previousIndex,\n          a = this.params;\n\n      if (this.animating = !1, !a.cssMode) {\n        this.setTransition(0);\n        var r = t;\n\n        if (r || (r = i > s ? "next" : i < s ? "prev" : "reset"), this.emit("transitionEnd"), e && i !== s) {\n          if ("reset" === r) return void this.emit("slideResetTransitionEnd");\n          this.emit("slideChangeTransitionEnd"), "next" === r ? this.emit("slideNextTransitionEnd") : this.emit("slidePrevTransitionEnd");\n        }\n      }\n    }\n  };\n  var m = {\n    slideTo: function slideTo(e, t, i, s) {\n      var a;\n      void 0 === e && (e = 0), void 0 === t && (t = this.params.speed), void 0 === i && (i = !0);\n      var r = this,\n          n = e;\n      n < 0 && (n = 0);\n      var o = r.params,\n          l = r.snapGrid,\n          d = r.slidesGrid,\n          h = r.previousIndex,\n          p = r.activeIndex,\n          c = r.rtlTranslate,\n          u = r.wrapperEl;\n      if (r.animating && o.preventInteractionOnTransition) return !1;\n      var v = Math.min(r.params.slidesPerGroupSkip, n),\n          f = v + Math.floor((n - v) / r.params.slidesPerGroup);\n      f >= l.length && (f = l.length - 1), (p || o.initialSlide || 0) === (h || 0) && i && r.emit("beforeSlideChangeStart");\n      var m,\n          g = -l[f];\n      if (r.updateProgress(g), o.normalizeSlideIndex) for (var b = 0; b < d.length; b += 1) {\n        -Math.floor(100 * g) >= Math.floor(100 * d[b]) && (n = b);\n      }\n\n      if (r.initialized && n !== p) {\n        if (!r.allowSlideNext && g < r.translate && g < r.minTranslate()) return !1;\n        if (!r.allowSlidePrev && g > r.translate && g > r.maxTranslate() && (p || 0) !== n) return !1;\n      }\n\n      if (m = n > p ? "next" : n < p ? "prev" : "reset", c && -g === r.translate || !c && g === r.translate) return r.updateActiveIndex(n), o.autoHeight && r.updateAutoHeight(), r.updateSlidesClasses(), "slide" !== o.effect && r.setTranslate(g), "reset" !== m && (r.transitionStart(i, m), r.transitionEnd(i, m)), !1;\n\n      if (o.cssMode) {\n        var w = r.isHorizontal(),\n            y = -g;\n        return c && (y = u.scrollWidth - u.offsetWidth - y), 0 === t ? u[w ? "scrollLeft" : "scrollTop"] = y : u.scrollTo ? u.scrollTo(((a = {})[w ? "left" : "top"] = y, a.behavior = "smooth", a)) : u[w ? "scrollLeft" : "scrollTop"] = y, !0;\n      }\n\n      return 0 === t ? (r.setTransition(0), r.setTranslate(g), r.updateActiveIndex(n), r.updateSlidesClasses(), r.emit("beforeTransitionStart", t, s), r.transitionStart(i, m), r.transitionEnd(i, m)) : (r.setTransition(t), r.setTranslate(g), r.updateActiveIndex(n), r.updateSlidesClasses(), r.emit("beforeTransitionStart", t, s), r.transitionStart(i, m), r.animating || (r.animating = !0, r.onSlideToWrapperTransitionEnd || (r.onSlideToWrapperTransitionEnd = function (e) {\n        r && !r.destroyed && e.target === this && (r.$wrapperEl[0].removeEventListener("transitionend", r.onSlideToWrapperTransitionEnd), r.$wrapperEl[0].removeEventListener("webkitTransitionEnd", r.onSlideToWrapperTransitionEnd), r.onSlideToWrapperTransitionEnd = null, delete r.onSlideToWrapperTransitionEnd, r.transitionEnd(i, m));\n      }), r.$wrapperEl[0].addEventListener("transitionend", r.onSlideToWrapperTransitionEnd), r.$wrapperEl[0].addEventListener("webkitTransitionEnd", r.onSlideToWrapperTransitionEnd))), !0;\n    },\n    slideToLoop: function slideToLoop(e, t, i, s) {\n      void 0 === e && (e = 0), void 0 === t && (t = this.params.speed), void 0 === i && (i = !0);\n      var a = e;\n      return this.params.loop && (a += this.loopedSlides), this.slideTo(a, t, i, s);\n    },\n    slideNext: function slideNext(e, t, i) {\n      void 0 === e && (e = this.params.speed), void 0 === t && (t = !0);\n      var s = this.params,\n          a = this.animating,\n          r = this.activeIndex < s.slidesPerGroupSkip ? 1 : s.slidesPerGroup;\n\n      if (s.loop) {\n        if (a) return !1;\n        this.loopFix(), this._clientLeft = this.$wrapperEl[0].clientLeft;\n      }\n\n      return this.slideTo(this.activeIndex + r, e, t, i);\n    },\n    slidePrev: function slidePrev(e, t, i) {\n      void 0 === e && (e = this.params.speed), void 0 === t && (t = !0);\n      var s = this.params,\n          a = this.animating,\n          r = this.snapGrid,\n          n = this.slidesGrid,\n          o = this.rtlTranslate;\n\n      if (s.loop) {\n        if (a) return !1;\n        this.loopFix(), this._clientLeft = this.$wrapperEl[0].clientLeft;\n      }\n\n      function l(e) {\n        return e < 0 ? -Math.floor(Math.abs(e)) : Math.floor(e);\n      }\n\n      var d,\n          h = l(o ? this.translate : -this.translate),\n          p = r.map(function (e) {\n        return l(e);\n      }),\n          c = (n.map(function (e) {\n        return l(e);\n      }), r[p.indexOf(h)], r[p.indexOf(h) - 1]);\n      return void 0 === c && s.cssMode && r.forEach(function (e) {\n        !c && h >= e && (c = e);\n      }), void 0 !== c && (d = n.indexOf(c)) < 0 && (d = this.activeIndex - 1), this.slideTo(d, e, t, i);\n    },\n    slideReset: function slideReset(e, t, i) {\n      return void 0 === e && (e = this.params.speed), void 0 === t && (t = !0), this.slideTo(this.activeIndex, e, t, i);\n    },\n    slideToClosest: function slideToClosest(e, t, i, s) {\n      void 0 === e && (e = this.params.speed), void 0 === t && (t = !0), void 0 === s && (s = .5);\n      var a = this.activeIndex,\n          r = Math.min(this.params.slidesPerGroupSkip, a),\n          n = r + Math.floor((a - r) / this.params.slidesPerGroup),\n          o = this.rtlTranslate ? this.translate : -this.translate;\n\n      if (o >= this.snapGrid[n]) {\n        var l = this.snapGrid[n];\n        o - l > (this.snapGrid[n + 1] - l) * s && (a += this.params.slidesPerGroup);\n      } else {\n        var d = this.snapGrid[n - 1];\n        o - d <= (this.snapGrid[n] - d) * s && (a -= this.params.slidesPerGroup);\n      }\n\n      return a = Math.max(a, 0), a = Math.min(a, this.slidesGrid.length - 1), this.slideTo(a, e, t, i);\n    },\n    slideToClickedSlide: function slideToClickedSlide() {\n      var e,\n          t = this,\n          i = t.params,\n          s = t.$wrapperEl,\n          a = "auto" === i.slidesPerView ? t.slidesPerViewDynamic() : i.slidesPerView,\n          r = t.clickedIndex;\n\n      if (i.loop) {\n        if (t.animating) return;\n        e = parseInt(n(t.clickedSlide).attr("data-swiper-slide-index"), 10), i.centeredSlides ? r < t.loopedSlides - a / 2 || r > t.slides.length - t.loopedSlides + a / 2 ? (t.loopFix(), r = s.children("." + i.slideClass + \'[data-swiper-slide-index="\' + e + \'"]:not(.\' + i.slideDuplicateClass + ")").eq(0).index(), d.nextTick(function () {\n          t.slideTo(r);\n        })) : t.slideTo(r) : r > t.slides.length - a ? (t.loopFix(), r = s.children("." + i.slideClass + \'[data-swiper-slide-index="\' + e + \'"]:not(.\' + i.slideDuplicateClass + ")").eq(0).index(), d.nextTick(function () {\n          t.slideTo(r);\n        })) : t.slideTo(r);\n      } else t.slideTo(r);\n    }\n  };\n  var g = {\n    loopCreate: function loopCreate() {\n      var e = this,\n          t = e.params,\n          s = e.$wrapperEl;\n      s.children("." + t.slideClass + "." + t.slideDuplicateClass).remove();\n      var a = s.children("." + t.slideClass);\n\n      if (t.loopFillGroupWithBlank) {\n        var r = t.slidesPerGroup - a.length % t.slidesPerGroup;\n\n        if (r !== t.slidesPerGroup) {\n          for (var o = 0; o < r; o += 1) {\n            var l = n(i.createElement("div")).addClass(t.slideClass + " " + t.slideBlankClass);\n            s.append(l);\n          }\n\n          a = s.children("." + t.slideClass);\n        }\n      }\n\n      "auto" !== t.slidesPerView || t.loopedSlides || (t.loopedSlides = a.length), e.loopedSlides = Math.ceil(parseFloat(t.loopedSlides || t.slidesPerView, 10)), e.loopedSlides += t.loopAdditionalSlides, e.loopedSlides > a.length && (e.loopedSlides = a.length);\n      var d = [],\n          h = [];\n      a.each(function (t, i) {\n        var s = n(i);\n        t < e.loopedSlides && h.push(i), t < a.length && t >= a.length - e.loopedSlides && d.push(i), s.attr("data-swiper-slide-index", t);\n      });\n\n      for (var p = 0; p < h.length; p += 1) {\n        s.append(n(h[p].cloneNode(!0)).addClass(t.slideDuplicateClass));\n      }\n\n      for (var c = d.length - 1; c >= 0; c -= 1) {\n        s.prepend(n(d[c].cloneNode(!0)).addClass(t.slideDuplicateClass));\n      }\n    },\n    loopFix: function loopFix() {\n      this.emit("beforeLoopFix");\n      var e,\n          t = this.activeIndex,\n          i = this.slides,\n          s = this.loopedSlides,\n          a = this.allowSlidePrev,\n          r = this.allowSlideNext,\n          n = this.snapGrid,\n          o = this.rtlTranslate;\n      this.allowSlidePrev = !0, this.allowSlideNext = !0;\n      var l = -n[t] - this.getTranslate();\n      if (t < s) e = i.length - 3 * s + t, e += s, this.slideTo(e, 0, !1, !0) && 0 !== l && this.setTranslate((o ? -this.translate : this.translate) - l);else if (t >= i.length - s) {\n        e = -i.length + t + s, e += s, this.slideTo(e, 0, !1, !0) && 0 !== l && this.setTranslate((o ? -this.translate : this.translate) - l);\n      }\n      this.allowSlidePrev = a, this.allowSlideNext = r, this.emit("loopFix");\n    },\n    loopDestroy: function loopDestroy() {\n      var e = this.$wrapperEl,\n          t = this.params,\n          i = this.slides;\n      e.children("." + t.slideClass + "." + t.slideDuplicateClass + ",." + t.slideClass + "." + t.slideBlankClass).remove(), i.removeAttr("data-swiper-slide-index");\n    }\n  };\n  var b = {\n    setGrabCursor: function setGrabCursor(e) {\n      if (!(h.touch || !this.params.simulateTouch || this.params.watchOverflow && this.isLocked || this.params.cssMode)) {\n        var t = this.el;\n        t.style.cursor = "move", t.style.cursor = e ? "-webkit-grabbing" : "-webkit-grab", t.style.cursor = e ? "-moz-grabbin" : "-moz-grab", t.style.cursor = e ? "grabbing" : "grab";\n      }\n    },\n    unsetGrabCursor: function unsetGrabCursor() {\n      h.touch || this.params.watchOverflow && this.isLocked || this.params.cssMode || (this.el.style.cursor = "");\n    }\n  };\n  var w,\n      y,\n      x,\n      E,\n      T,\n      S,\n      C,\n      M,\n      P,\n      z,\n      k,\n      $,\n      L,\n      I,\n      D,\n      O = {\n    appendSlide: function appendSlide(e) {\n      var t = this.$wrapperEl,\n          i = this.params;\n      if (i.loop && this.loopDestroy(), "object" == _typeof(e) && "length" in e) for (var s = 0; s < e.length; s += 1) {\n        e[s] && t.append(e[s]);\n      } else t.append(e);\n      i.loop && this.loopCreate(), i.observer && h.observer || this.update();\n    },\n    prependSlide: function prependSlide(e) {\n      var t = this.params,\n          i = this.$wrapperEl,\n          s = this.activeIndex;\n      t.loop && this.loopDestroy();\n      var a = s + 1;\n\n      if ("object" == _typeof(e) && "length" in e) {\n        for (var r = 0; r < e.length; r += 1) {\n          e[r] && i.prepend(e[r]);\n        }\n\n        a = s + e.length;\n      } else i.prepend(e);\n\n      t.loop && this.loopCreate(), t.observer && h.observer || this.update(), this.slideTo(a, 0, !1);\n    },\n    addSlide: function addSlide(e, t) {\n      var i = this.$wrapperEl,\n          s = this.params,\n          a = this.activeIndex;\n      s.loop && (a -= this.loopedSlides, this.loopDestroy(), this.slides = i.children("." + s.slideClass));\n      var r = this.slides.length;\n      if (e <= 0) this.prependSlide(t);else if (e >= r) this.appendSlide(t);else {\n        for (var n = a > e ? a + 1 : a, o = [], l = r - 1; l >= e; l -= 1) {\n          var d = this.slides.eq(l);\n          d.remove(), o.unshift(d);\n        }\n\n        if ("object" == _typeof(t) && "length" in t) {\n          for (var p = 0; p < t.length; p += 1) {\n            t[p] && i.append(t[p]);\n          }\n\n          n = a > e ? a + t.length : a;\n        } else i.append(t);\n\n        for (var c = 0; c < o.length; c += 1) {\n          i.append(o[c]);\n        }\n\n        s.loop && this.loopCreate(), s.observer && h.observer || this.update(), s.loop ? this.slideTo(n + this.loopedSlides, 0, !1) : this.slideTo(n, 0, !1);\n      }\n    },\n    removeSlide: function removeSlide(e) {\n      var t = this.params,\n          i = this.$wrapperEl,\n          s = this.activeIndex;\n      t.loop && (s -= this.loopedSlides, this.loopDestroy(), this.slides = i.children("." + t.slideClass));\n      var a,\n          r = s;\n\n      if ("object" == _typeof(e) && "length" in e) {\n        for (var n = 0; n < e.length; n += 1) {\n          a = e[n], this.slides[a] && this.slides.eq(a).remove(), a < r && (r -= 1);\n        }\n\n        r = Math.max(r, 0);\n      } else a = e, this.slides[a] && this.slides.eq(a).remove(), a < r && (r -= 1), r = Math.max(r, 0);\n\n      t.loop && this.loopCreate(), t.observer && h.observer || this.update(), t.loop ? this.slideTo(r + this.loopedSlides, 0, !1) : this.slideTo(r, 0, !1);\n    },\n    removeAllSlides: function removeAllSlides() {\n      for (var e = [], t = 0; t < this.slides.length; t += 1) {\n        e.push(t);\n      }\n\n      this.removeSlide(e);\n    }\n  },\n      A = (w = a.navigator.platform, y = a.navigator.userAgent, x = {\n    ios: !1,\n    android: !1,\n    androidChrome: !1,\n    desktop: !1,\n    iphone: !1,\n    ipod: !1,\n    ipad: !1,\n    edge: !1,\n    ie: !1,\n    firefox: !1,\n    macos: !1,\n    windows: !1,\n    cordova: !(!a.cordova && !a.phonegap),\n    phonegap: !(!a.cordova && !a.phonegap),\n    electron: !1\n  }, E = a.screen.width, T = a.screen.height, S = y.match(/(Android);?[\\s\\/]+([\\d.]+)?/), C = y.match(/(iPad).*OS\\s([\\d_]+)/), M = y.match(/(iPod)(.*OS\\s([\\d_]+))?/), P = !C && y.match(/(iPhone\\sOS|iOS)\\s([\\d_]+)/), z = y.indexOf("MSIE ") >= 0 || y.indexOf("Trident/") >= 0, k = y.indexOf("Edge/") >= 0, $ = y.indexOf("Gecko/") >= 0 && y.indexOf("Firefox/") >= 0, L = "Win32" === w, I = y.toLowerCase().indexOf("electron") >= 0, D = "MacIntel" === w, !C && D && h.touch && (1024 === E && 1366 === T || 834 === E && 1194 === T || 834 === E && 1112 === T || 768 === E && 1024 === T) && (C = y.match(/(Version)\\/([\\d.]+)/), D = !1), x.ie = z, x.edge = k, x.firefox = $, S && !L && (x.os = "android", x.osVersion = S[2], x.android = !0, x.androidChrome = y.toLowerCase().indexOf("chrome") >= 0), (C || P || M) && (x.os = "ios", x.ios = !0), P && !M && (x.osVersion = P[2].replace(/_/g, "."), x.iphone = !0), C && (x.osVersion = C[2].replace(/_/g, "."), x.ipad = !0), M && (x.osVersion = M[3] ? M[3].replace(/_/g, ".") : null, x.ipod = !0), x.ios && x.osVersion && y.indexOf("Version/") >= 0 && "10" === x.osVersion.split(".")[0] && (x.osVersion = y.toLowerCase().split("version/")[1].split(" ")[0]), x.webView = !(!(P || C || M) || !y.match(/.*AppleWebKit(?!.*Safari)/i) && !a.navigator.standalone) || a.matchMedia && a.matchMedia("(display-mode: standalone)").matches, x.webview = x.webView, x.standalone = x.webView, x.desktop = !(x.ios || x.android) || I, x.desktop && (x.electron = I, x.macos = D, x.windows = L, x.macos && (x.os = "macos"), x.windows && (x.os = "windows")), x.pixelRatio = a.devicePixelRatio || 1, x);\n\n  function G(e) {\n    var t = this.touchEventsData,\n        s = this.params,\n        r = this.touches;\n\n    if (!this.animating || !s.preventInteractionOnTransition) {\n      var o = e;\n      o.originalEvent && (o = o.originalEvent);\n      var l = n(o.target);\n      if (("wrapper" !== s.touchEventsTarget || l.closest(this.wrapperEl).length) && (t.isTouchEvent = "touchstart" === o.type, (t.isTouchEvent || !("which" in o) || 3 !== o.which) && !(!t.isTouchEvent && "button" in o && o.button > 0 || t.isTouched && t.isMoved))) if (s.noSwiping && l.closest(s.noSwipingSelector ? s.noSwipingSelector : "." + s.noSwipingClass)[0]) this.allowClick = !0;else if (!s.swipeHandler || l.closest(s.swipeHandler)[0]) {\n        r.currentX = "touchstart" === o.type ? o.targetTouches[0].pageX : o.pageX, r.currentY = "touchstart" === o.type ? o.targetTouches[0].pageY : o.pageY;\n        var h = r.currentX,\n            p = r.currentY,\n            c = s.edgeSwipeDetection || s.iOSEdgeSwipeDetection,\n            u = s.edgeSwipeThreshold || s.iOSEdgeSwipeThreshold;\n\n        if (!c || !(h <= u || h >= a.screen.width - u)) {\n          if (d.extend(t, {\n            isTouched: !0,\n            isMoved: !1,\n            allowTouchCallbacks: !0,\n            isScrolling: void 0,\n            startMoving: void 0\n          }), r.startX = h, r.startY = p, t.touchStartTime = d.now(), this.allowClick = !0, this.updateSize(), this.swipeDirection = void 0, s.threshold > 0 && (t.allowThresholdMove = !1), "touchstart" !== o.type) {\n            var v = !0;\n            l.is(t.formElements) && (v = !1), i.activeElement && n(i.activeElement).is(t.formElements) && i.activeElement !== l[0] && i.activeElement.blur();\n            var f = v && this.allowTouchMove && s.touchStartPreventDefault;\n            (s.touchStartForcePreventDefault || f) && o.preventDefault();\n          }\n\n          this.emit("touchStart", o);\n        }\n      }\n    }\n  }\n\n  function H(e) {\n    var t = this.touchEventsData,\n        s = this.params,\n        a = this.touches,\n        r = this.rtlTranslate,\n        o = e;\n\n    if (o.originalEvent && (o = o.originalEvent), t.isTouched) {\n      if (!t.isTouchEvent || "touchmove" === o.type) {\n        var l = "touchmove" === o.type && o.targetTouches && (o.targetTouches[0] || o.changedTouches[0]),\n            h = "touchmove" === o.type ? l.pageX : o.pageX,\n            p = "touchmove" === o.type ? l.pageY : o.pageY;\n        if (o.preventedByNestedSwiper) return a.startX = h, void (a.startY = p);\n        if (!this.allowTouchMove) return this.allowClick = !1, void (t.isTouched && (d.extend(a, {\n          startX: h,\n          startY: p,\n          currentX: h,\n          currentY: p\n        }), t.touchStartTime = d.now()));\n        if (t.isTouchEvent && s.touchReleaseOnEdges && !s.loop) if (this.isVertical()) {\n          if (p < a.startY && this.translate <= this.maxTranslate() || p > a.startY && this.translate >= this.minTranslate()) return t.isTouched = !1, void (t.isMoved = !1);\n        } else if (h < a.startX && this.translate <= this.maxTranslate() || h > a.startX && this.translate >= this.minTranslate()) return;\n        if (t.isTouchEvent && i.activeElement && o.target === i.activeElement && n(o.target).is(t.formElements)) return t.isMoved = !0, void (this.allowClick = !1);\n\n        if (t.allowTouchCallbacks && this.emit("touchMove", o), !(o.targetTouches && o.targetTouches.length > 1)) {\n          a.currentX = h, a.currentY = p;\n          var c = a.currentX - a.startX,\n              u = a.currentY - a.startY;\n\n          if (!(this.params.threshold && Math.sqrt(Math.pow(c, 2) + Math.pow(u, 2)) < this.params.threshold)) {\n            var v;\n            if (void 0 === t.isScrolling) this.isHorizontal() && a.currentY === a.startY || this.isVertical() && a.currentX === a.startX ? t.isScrolling = !1 : c * c + u * u >= 25 && (v = 180 * Math.atan2(Math.abs(u), Math.abs(c)) / Math.PI, t.isScrolling = this.isHorizontal() ? v > s.touchAngle : 90 - v > s.touchAngle);\n            if (t.isScrolling && this.emit("touchMoveOpposite", o), void 0 === t.startMoving && (a.currentX === a.startX && a.currentY === a.startY || (t.startMoving = !0)), t.isScrolling) t.isTouched = !1;else if (t.startMoving) {\n              this.allowClick = !1, !s.cssMode && o.cancelable && o.preventDefault(), s.touchMoveStopPropagation && !s.nested && o.stopPropagation(), t.isMoved || (s.loop && this.loopFix(), t.startTranslate = this.getTranslate(), this.setTransition(0), this.animating && this.$wrapperEl.trigger("webkitTransitionEnd transitionend"), t.allowMomentumBounce = !1, !s.grabCursor || !0 !== this.allowSlideNext && !0 !== this.allowSlidePrev || this.setGrabCursor(!0), this.emit("sliderFirstMove", o)), this.emit("sliderMove", o), t.isMoved = !0;\n              var f = this.isHorizontal() ? c : u;\n              a.diff = f, f *= s.touchRatio, r && (f = -f), this.swipeDirection = f > 0 ? "prev" : "next", t.currentTranslate = f + t.startTranslate;\n              var m = !0,\n                  g = s.resistanceRatio;\n\n              if (s.touchReleaseOnEdges && (g = 0), f > 0 && t.currentTranslate > this.minTranslate() ? (m = !1, s.resistance && (t.currentTranslate = this.minTranslate() - 1 + Math.pow(-this.minTranslate() + t.startTranslate + f, g))) : f < 0 && t.currentTranslate < this.maxTranslate() && (m = !1, s.resistance && (t.currentTranslate = this.maxTranslate() + 1 - Math.pow(this.maxTranslate() - t.startTranslate - f, g))), m && (o.preventedByNestedSwiper = !0), !this.allowSlideNext && "next" === this.swipeDirection && t.currentTranslate < t.startTranslate && (t.currentTranslate = t.startTranslate), !this.allowSlidePrev && "prev" === this.swipeDirection && t.currentTranslate > t.startTranslate && (t.currentTranslate = t.startTranslate), s.threshold > 0) {\n                if (!(Math.abs(f) > s.threshold || t.allowThresholdMove)) return void (t.currentTranslate = t.startTranslate);\n                if (!t.allowThresholdMove) return t.allowThresholdMove = !0, a.startX = a.currentX, a.startY = a.currentY, t.currentTranslate = t.startTranslate, void (a.diff = this.isHorizontal() ? a.currentX - a.startX : a.currentY - a.startY);\n              }\n\n              s.followFinger && !s.cssMode && ((s.freeMode || s.watchSlidesProgress || s.watchSlidesVisibility) && (this.updateActiveIndex(), this.updateSlidesClasses()), s.freeMode && (0 === t.velocities.length && t.velocities.push({\n                position: a[this.isHorizontal() ? "startX" : "startY"],\n                time: t.touchStartTime\n              }), t.velocities.push({\n                position: a[this.isHorizontal() ? "currentX" : "currentY"],\n                time: d.now()\n              })), this.updateProgress(t.currentTranslate), this.setTranslate(t.currentTranslate));\n            }\n          }\n        }\n      }\n    } else t.startMoving && t.isScrolling && this.emit("touchMoveOpposite", o);\n  }\n\n  function B(e) {\n    var t = this,\n        i = t.touchEventsData,\n        s = t.params,\n        a = t.touches,\n        r = t.rtlTranslate,\n        n = t.$wrapperEl,\n        o = t.slidesGrid,\n        l = t.snapGrid,\n        h = e;\n    if (h.originalEvent && (h = h.originalEvent), i.allowTouchCallbacks && t.emit("touchEnd", h), i.allowTouchCallbacks = !1, !i.isTouched) return i.isMoved && s.grabCursor && t.setGrabCursor(!1), i.isMoved = !1, void (i.startMoving = !1);\n    s.grabCursor && i.isMoved && i.isTouched && (!0 === t.allowSlideNext || !0 === t.allowSlidePrev) && t.setGrabCursor(!1);\n    var p,\n        c = d.now(),\n        u = c - i.touchStartTime;\n    if (t.allowClick && (t.updateClickedSlide(h), t.emit("tap click", h), u < 300 && c - i.lastClickTime < 300 && t.emit("doubleTap doubleClick", h)), i.lastClickTime = d.now(), d.nextTick(function () {\n      t.destroyed || (t.allowClick = !0);\n    }), !i.isTouched || !i.isMoved || !t.swipeDirection || 0 === a.diff || i.currentTranslate === i.startTranslate) return i.isTouched = !1, i.isMoved = !1, void (i.startMoving = !1);\n    if (i.isTouched = !1, i.isMoved = !1, i.startMoving = !1, p = s.followFinger ? r ? t.translate : -t.translate : -i.currentTranslate, !s.cssMode) if (s.freeMode) {\n      if (p < -t.minTranslate()) return void t.slideTo(t.activeIndex);\n      if (p > -t.maxTranslate()) return void (t.slides.length < l.length ? t.slideTo(l.length - 1) : t.slideTo(t.slides.length - 1));\n\n      if (s.freeModeMomentum) {\n        if (i.velocities.length > 1) {\n          var v = i.velocities.pop(),\n              f = i.velocities.pop(),\n              m = v.position - f.position,\n              g = v.time - f.time;\n          t.velocity = m / g, t.velocity /= 2, Math.abs(t.velocity) < s.freeModeMinimumVelocity && (t.velocity = 0), (g > 150 || d.now() - v.time > 300) && (t.velocity = 0);\n        } else t.velocity = 0;\n\n        t.velocity *= s.freeModeMomentumVelocityRatio, i.velocities.length = 0;\n        var b = 1e3 * s.freeModeMomentumRatio,\n            w = t.velocity * b,\n            y = t.translate + w;\n        r && (y = -y);\n        var x,\n            E,\n            T = !1,\n            S = 20 * Math.abs(t.velocity) * s.freeModeMomentumBounceRatio;\n        if (y < t.maxTranslate()) s.freeModeMomentumBounce ? (y + t.maxTranslate() < -S && (y = t.maxTranslate() - S), x = t.maxTranslate(), T = !0, i.allowMomentumBounce = !0) : y = t.maxTranslate(), s.loop && s.centeredSlides && (E = !0);else if (y > t.minTranslate()) s.freeModeMomentumBounce ? (y - t.minTranslate() > S && (y = t.minTranslate() + S), x = t.minTranslate(), T = !0, i.allowMomentumBounce = !0) : y = t.minTranslate(), s.loop && s.centeredSlides && (E = !0);else if (s.freeModeSticky) {\n          for (var C, M = 0; M < l.length; M += 1) {\n            if (l[M] > -y) {\n              C = M;\n              break;\n            }\n          }\n\n          y = -(y = Math.abs(l[C] - y) < Math.abs(l[C - 1] - y) || "next" === t.swipeDirection ? l[C] : l[C - 1]);\n        }\n\n        if (E && t.once("transitionEnd", function () {\n          t.loopFix();\n        }), 0 !== t.velocity) {\n          if (b = r ? Math.abs((-y - t.translate) / t.velocity) : Math.abs((y - t.translate) / t.velocity), s.freeModeSticky) {\n            var P = Math.abs((r ? -y : y) - t.translate),\n                z = t.slidesSizesGrid[t.activeIndex];\n            b = P < z ? s.speed : P < 2 * z ? 1.5 * s.speed : 2.5 * s.speed;\n          }\n        } else if (s.freeModeSticky) return void t.slideToClosest();\n\n        s.freeModeMomentumBounce && T ? (t.updateProgress(x), t.setTransition(b), t.setTranslate(y), t.transitionStart(!0, t.swipeDirection), t.animating = !0, n.transitionEnd(function () {\n          t && !t.destroyed && i.allowMomentumBounce && (t.emit("momentumBounce"), t.setTransition(s.speed), setTimeout(function () {\n            t.setTranslate(x), n.transitionEnd(function () {\n              t && !t.destroyed && t.transitionEnd();\n            });\n          }, 0));\n        })) : t.velocity ? (t.updateProgress(y), t.setTransition(b), t.setTranslate(y), t.transitionStart(!0, t.swipeDirection), t.animating || (t.animating = !0, n.transitionEnd(function () {\n          t && !t.destroyed && t.transitionEnd();\n        }))) : t.updateProgress(y), t.updateActiveIndex(), t.updateSlidesClasses();\n      } else if (s.freeModeSticky) return void t.slideToClosest();\n\n      (!s.freeModeMomentum || u >= s.longSwipesMs) && (t.updateProgress(), t.updateActiveIndex(), t.updateSlidesClasses());\n    } else {\n      for (var k = 0, $ = t.slidesSizesGrid[0], L = 0; L < o.length; L += L < s.slidesPerGroupSkip ? 1 : s.slidesPerGroup) {\n        var I = L < s.slidesPerGroupSkip - 1 ? 1 : s.slidesPerGroup;\n        void 0 !== o[L + I] ? p >= o[L] && p < o[L + I] && (k = L, $ = o[L + I] - o[L]) : p >= o[L] && (k = L, $ = o[o.length - 1] - o[o.length - 2]);\n      }\n\n      var D = (p - o[k]) / $,\n          O = k < s.slidesPerGroupSkip - 1 ? 1 : s.slidesPerGroup;\n\n      if (u > s.longSwipesMs) {\n        if (!s.longSwipes) return void t.slideTo(t.activeIndex);\n        "next" === t.swipeDirection && (D >= s.longSwipesRatio ? t.slideTo(k + O) : t.slideTo(k)), "prev" === t.swipeDirection && (D > 1 - s.longSwipesRatio ? t.slideTo(k + O) : t.slideTo(k));\n      } else {\n        if (!s.shortSwipes) return void t.slideTo(t.activeIndex);\n        t.navigation && (h.target === t.navigation.nextEl || h.target === t.navigation.prevEl) ? h.target === t.navigation.nextEl ? t.slideTo(k + O) : t.slideTo(k) : ("next" === t.swipeDirection && t.slideTo(k + O), "prev" === t.swipeDirection && t.slideTo(k));\n      }\n    }\n  }\n\n  function N() {\n    var e = this.params,\n        t = this.el;\n\n    if (!t || 0 !== t.offsetWidth) {\n      e.breakpoints && this.setBreakpoint();\n      var i = this.allowSlideNext,\n          s = this.allowSlidePrev,\n          a = this.snapGrid;\n      this.allowSlideNext = !0, this.allowSlidePrev = !0, this.updateSize(), this.updateSlides(), this.updateSlidesClasses(), ("auto" === e.slidesPerView || e.slidesPerView > 1) && this.isEnd && !this.isBeginning && !this.params.centeredSlides ? this.slideTo(this.slides.length - 1, 0, !1, !0) : this.slideTo(this.activeIndex, 0, !1, !0), this.autoplay && this.autoplay.running && this.autoplay.paused && this.autoplay.run(), this.allowSlidePrev = s, this.allowSlideNext = i, this.params.watchOverflow && a !== this.snapGrid && this.checkOverflow();\n    }\n  }\n\n  function X(e) {\n    this.allowClick || (this.params.preventClicks && e.preventDefault(), this.params.preventClicksPropagation && this.animating && (e.stopPropagation(), e.stopImmediatePropagation()));\n  }\n\n  function V() {\n    var e = this.wrapperEl,\n        t = this.rtlTranslate;\n    this.previousTranslate = this.translate, this.isHorizontal() ? this.translate = t ? e.scrollWidth - e.offsetWidth - e.scrollLeft : -e.scrollLeft : this.translate = -e.scrollTop, -0 === this.translate && (this.translate = 0), this.updateActiveIndex(), this.updateSlidesClasses();\n    var i = this.maxTranslate() - this.minTranslate();\n    (0 === i ? 0 : (this.translate - this.minTranslate()) / i) !== this.progress && this.updateProgress(t ? -this.translate : this.translate), this.emit("setTranslate", this.translate, !1);\n  }\n\n  var Y = !1;\n\n  function F() {}\n\n  var W = {\n    init: !0,\n    direction: "horizontal",\n    touchEventsTarget: "container",\n    initialSlide: 0,\n    speed: 300,\n    cssMode: !1,\n    updateOnWindowResize: !0,\n    preventInteractionOnTransition: !1,\n    edgeSwipeDetection: !1,\n    edgeSwipeThreshold: 20,\n    freeMode: !1,\n    freeModeMomentum: !0,\n    freeModeMomentumRatio: 1,\n    freeModeMomentumBounce: !0,\n    freeModeMomentumBounceRatio: 1,\n    freeModeMomentumVelocityRatio: 1,\n    freeModeSticky: !1,\n    freeModeMinimumVelocity: .02,\n    autoHeight: !1,\n    setWrapperSize: !1,\n    virtualTranslate: !1,\n    effect: "slide",\n    breakpoints: void 0,\n    spaceBetween: 0,\n    slidesPerView: 1,\n    slidesPerColumn: 1,\n    slidesPerColumnFill: "column",\n    slidesPerGroup: 1,\n    slidesPerGroupSkip: 0,\n    centeredSlides: !1,\n    centeredSlidesBounds: !1,\n    slidesOffsetBefore: 0,\n    slidesOffsetAfter: 0,\n    normalizeSlideIndex: !0,\n    centerInsufficientSlides: !1,\n    watchOverflow: !1,\n    roundLengths: !1,\n    touchRatio: 1,\n    touchAngle: 45,\n    simulateTouch: !0,\n    shortSwipes: !0,\n    longSwipes: !0,\n    longSwipesRatio: .5,\n    longSwipesMs: 300,\n    followFinger: !0,\n    allowTouchMove: !0,\n    threshold: 0,\n    touchMoveStopPropagation: !1,\n    touchStartPreventDefault: !0,\n    touchStartForcePreventDefault: !1,\n    touchReleaseOnEdges: !1,\n    uniqueNavElements: !0,\n    resistance: !0,\n    resistanceRatio: .85,\n    watchSlidesProgress: !1,\n    watchSlidesVisibility: !1,\n    grabCursor: !1,\n    preventClicks: !0,\n    preventClicksPropagation: !0,\n    slideToClickedSlide: !1,\n    preloadImages: !0,\n    updateOnImagesReady: !0,\n    loop: !1,\n    loopAdditionalSlides: 0,\n    loopedSlides: null,\n    loopFillGroupWithBlank: !1,\n    allowSlidePrev: !0,\n    allowSlideNext: !0,\n    swipeHandler: null,\n    noSwiping: !0,\n    noSwipingClass: "swiper-no-swiping",\n    noSwipingSelector: null,\n    passiveListeners: !0,\n    containerModifierClass: "swiper-container-",\n    slideClass: "swiper-slide",\n    slideBlankClass: "swiper-slide-invisible-blank",\n    slideActiveClass: "swiper-slide-active",\n    slideDuplicateActiveClass: "swiper-slide-duplicate-active",\n    slideVisibleClass: "swiper-slide-visible",\n    slideDuplicateClass: "swiper-slide-duplicate",\n    slideNextClass: "swiper-slide-next",\n    slideDuplicateNextClass: "swiper-slide-duplicate-next",\n    slidePrevClass: "swiper-slide-prev",\n    slideDuplicatePrevClass: "swiper-slide-duplicate-prev",\n    wrapperClass: "swiper-wrapper",\n    runCallbacksOnInit: !0\n  },\n      R = {\n    update: u,\n    translate: v,\n    transition: f,\n    slide: m,\n    loop: g,\n    grabCursor: b,\n    manipulation: O,\n    events: {\n      attachEvents: function attachEvents() {\n        var e = this.params,\n            t = this.touchEvents,\n            s = this.el,\n            a = this.wrapperEl;\n        this.onTouchStart = G.bind(this), this.onTouchMove = H.bind(this), this.onTouchEnd = B.bind(this), e.cssMode && (this.onScroll = V.bind(this)), this.onClick = X.bind(this);\n        var r = !!e.nested;\n        if (!h.touch && h.pointerEvents) s.addEventListener(t.start, this.onTouchStart, !1), i.addEventListener(t.move, this.onTouchMove, r), i.addEventListener(t.end, this.onTouchEnd, !1);else {\n          if (h.touch) {\n            var n = !("touchstart" !== t.start || !h.passiveListener || !e.passiveListeners) && {\n              passive: !0,\n              capture: !1\n            };\n            s.addEventListener(t.start, this.onTouchStart, n), s.addEventListener(t.move, this.onTouchMove, h.passiveListener ? {\n              passive: !1,\n              capture: r\n            } : r), s.addEventListener(t.end, this.onTouchEnd, n), t.cancel && s.addEventListener(t.cancel, this.onTouchEnd, n), Y || (i.addEventListener("touchstart", F), Y = !0);\n          }\n\n          (e.simulateTouch && !A.ios && !A.android || e.simulateTouch && !h.touch && A.ios) && (s.addEventListener("mousedown", this.onTouchStart, !1), i.addEventListener("mousemove", this.onTouchMove, r), i.addEventListener("mouseup", this.onTouchEnd, !1));\n        }\n        (e.preventClicks || e.preventClicksPropagation) && s.addEventListener("click", this.onClick, !0), e.cssMode && a.addEventListener("scroll", this.onScroll), e.updateOnWindowResize ? this.on(A.ios || A.android ? "resize orientationchange observerUpdate" : "resize observerUpdate", N, !0) : this.on("observerUpdate", N, !0);\n      },\n      detachEvents: function detachEvents() {\n        var e = this.params,\n            t = this.touchEvents,\n            s = this.el,\n            a = this.wrapperEl,\n            r = !!e.nested;\n        if (!h.touch && h.pointerEvents) s.removeEventListener(t.start, this.onTouchStart, !1), i.removeEventListener(t.move, this.onTouchMove, r), i.removeEventListener(t.end, this.onTouchEnd, !1);else {\n          if (h.touch) {\n            var n = !("onTouchStart" !== t.start || !h.passiveListener || !e.passiveListeners) && {\n              passive: !0,\n              capture: !1\n            };\n            s.removeEventListener(t.start, this.onTouchStart, n), s.removeEventListener(t.move, this.onTouchMove, r), s.removeEventListener(t.end, this.onTouchEnd, n), t.cancel && s.removeEventListener(t.cancel, this.onTouchEnd, n);\n          }\n\n          (e.simulateTouch && !A.ios && !A.android || e.simulateTouch && !h.touch && A.ios) && (s.removeEventListener("mousedown", this.onTouchStart, !1), i.removeEventListener("mousemove", this.onTouchMove, r), i.removeEventListener("mouseup", this.onTouchEnd, !1));\n        }\n        (e.preventClicks || e.preventClicksPropagation) && s.removeEventListener("click", this.onClick, !0), e.cssMode && a.removeEventListener("scroll", this.onScroll), this.off(A.ios || A.android ? "resize orientationchange observerUpdate" : "resize observerUpdate", N);\n      }\n    },\n    breakpoints: {\n      setBreakpoint: function setBreakpoint() {\n        var e = this.activeIndex,\n            t = this.initialized,\n            i = this.loopedSlides;\n        void 0 === i && (i = 0);\n        var s = this.params,\n            a = this.$el,\n            r = s.breakpoints;\n\n        if (r && (!r || 0 !== Object.keys(r).length)) {\n          var n = this.getBreakpoint(r);\n\n          if (n && this.currentBreakpoint !== n) {\n            var o = n in r ? r[n] : void 0;\n            o && ["slidesPerView", "spaceBetween", "slidesPerGroup", "slidesPerGroupSkip", "slidesPerColumn"].forEach(function (e) {\n              var t = o[e];\n              void 0 !== t && (o[e] = "slidesPerView" !== e || "AUTO" !== t && "auto" !== t ? "slidesPerView" === e ? parseFloat(t) : parseInt(t, 10) : "auto");\n            });\n            var l = o || this.originalParams,\n                h = s.slidesPerColumn > 1,\n                p = l.slidesPerColumn > 1;\n            h && !p ? a.removeClass(s.containerModifierClass + "multirow " + s.containerModifierClass + "multirow-column") : !h && p && (a.addClass(s.containerModifierClass + "multirow"), "column" === l.slidesPerColumnFill && a.addClass(s.containerModifierClass + "multirow-column"));\n            var c = l.direction && l.direction !== s.direction,\n                u = s.loop && (l.slidesPerView !== s.slidesPerView || c);\n            c && t && this.changeDirection(), d.extend(this.params, l), d.extend(this, {\n              allowTouchMove: this.params.allowTouchMove,\n              allowSlideNext: this.params.allowSlideNext,\n              allowSlidePrev: this.params.allowSlidePrev\n            }), this.currentBreakpoint = n, u && t && (this.loopDestroy(), this.loopCreate(), this.updateSlides(), this.slideTo(e - i + this.loopedSlides, 0, !1)), this.emit("breakpoint", l);\n          }\n        }\n      },\n      getBreakpoint: function getBreakpoint(e) {\n        if (e) {\n          var t = !1,\n              i = Object.keys(e).map(function (e) {\n            if ("string" == typeof e && 0 === e.indexOf("@")) {\n              var t = parseFloat(e.substr(1));\n              return {\n                value: a.innerHeight * t,\n                point: e\n              };\n            }\n\n            return {\n              value: e,\n              point: e\n            };\n          });\n          i.sort(function (e, t) {\n            return parseInt(e.value, 10) - parseInt(t.value, 10);\n          });\n\n          for (var s = 0; s < i.length; s += 1) {\n            var r = i[s],\n                n = r.point;\n            r.value <= a.innerWidth && (t = n);\n          }\n\n          return t || "max";\n        }\n      }\n    },\n    checkOverflow: {\n      checkOverflow: function checkOverflow() {\n        var e = this.params,\n            t = this.isLocked,\n            i = this.slides.length > 0 && e.slidesOffsetBefore + e.spaceBetween * (this.slides.length - 1) + this.slides[0].offsetWidth * this.slides.length;\n        e.slidesOffsetBefore && e.slidesOffsetAfter && i ? this.isLocked = i <= this.size : this.isLocked = 1 === this.snapGrid.length, this.allowSlideNext = !this.isLocked, this.allowSlidePrev = !this.isLocked, t !== this.isLocked && this.emit(this.isLocked ? "lock" : "unlock"), t && t !== this.isLocked && (this.isEnd = !1, this.navigation && this.navigation.update());\n      }\n    },\n    classes: {\n      addClasses: function addClasses() {\n        var e = this.classNames,\n            t = this.params,\n            i = this.rtl,\n            s = this.$el,\n            a = [];\n        a.push("initialized"), a.push(t.direction), t.freeMode && a.push("free-mode"), t.autoHeight && a.push("autoheight"), i && a.push("rtl"), t.slidesPerColumn > 1 && (a.push("multirow"), "column" === t.slidesPerColumnFill && a.push("multirow-column")), A.android && a.push("android"), A.ios && a.push("ios"), t.cssMode && a.push("css-mode"), a.forEach(function (i) {\n          e.push(t.containerModifierClass + i);\n        }), s.addClass(e.join(" "));\n      },\n      removeClasses: function removeClasses() {\n        var e = this.$el,\n            t = this.classNames;\n        e.removeClass(t.join(" "));\n      }\n    },\n    images: {\n      loadImage: function loadImage(e, t, i, s, r, o) {\n        var l;\n\n        function d() {\n          o && o();\n        }\n\n        n(e).parent("picture")[0] || e.complete && r ? d() : t ? ((l = new a.Image()).onload = d, l.onerror = d, s && (l.sizes = s), i && (l.srcset = i), t && (l.src = t)) : d();\n      },\n      preloadImages: function preloadImages() {\n        var e = this;\n\n        function t() {\n          null != e && e && !e.destroyed && (void 0 !== e.imagesLoaded && (e.imagesLoaded += 1), e.imagesLoaded === e.imagesToLoad.length && (e.params.updateOnImagesReady && e.update(), e.emit("imagesReady")));\n        }\n\n        e.imagesToLoad = e.$el.find("img");\n\n        for (var i = 0; i < e.imagesToLoad.length; i += 1) {\n          var s = e.imagesToLoad[i];\n          e.loadImage(s, s.currentSrc || s.getAttribute("src"), s.srcset || s.getAttribute("srcset"), s.sizes || s.getAttribute("sizes"), !0, t);\n        }\n      }\n    }\n  },\n      q = {},\n      j = function (e) {\n    function t() {\n      for (var i, s, a, r = [], o = arguments.length; o--;) {\n        r[o] = arguments[o];\n      }\n\n      1 === r.length && r[0].constructor && r[0].constructor === Object ? a = r[0] : (s = (i = r)[0], a = i[1]), a || (a = {}), a = d.extend({}, a), s && !a.el && (a.el = s), e.call(this, a), Object.keys(R).forEach(function (e) {\n        Object.keys(R[e]).forEach(function (i) {\n          t.prototype[i] || (t.prototype[i] = R[e][i]);\n        });\n      });\n      var l = this;\n      void 0 === l.modules && (l.modules = {}), Object.keys(l.modules).forEach(function (e) {\n        var t = l.modules[e];\n\n        if (t.params) {\n          var i = Object.keys(t.params)[0],\n              s = t.params[i];\n          if ("object" != _typeof(s) || null === s) return;\n          if (!(i in a) || !("enabled" in s)) return;\n          !0 === a[i] && (a[i] = {\n            enabled: !0\n          }), "object" != _typeof(a[i]) || "enabled" in a[i] || (a[i].enabled = !0), a[i] || (a[i] = {\n            enabled: !1\n          });\n        }\n      });\n      var p = d.extend({}, W);\n      l.useModulesParams(p), l.params = d.extend({}, p, q, a), l.originalParams = d.extend({}, l.params), l.passedParams = d.extend({}, a), l.$ = n;\n      var c = n(l.params.el);\n\n      if (s = c[0]) {\n        if (c.length > 1) {\n          var u = [];\n          return c.each(function (e, i) {\n            var s = d.extend({}, a, {\n              el: i\n            });\n            u.push(new t(s));\n          }), u;\n        }\n\n        var v, f, m;\n        return s.swiper = l, c.data("swiper", l), s && s.shadowRoot && s.shadowRoot.querySelector ? (v = n(s.shadowRoot.querySelector("." + l.params.wrapperClass))).children = function (e) {\n          return c.children(e);\n        } : v = c.children("." + l.params.wrapperClass), d.extend(l, {\n          $el: c,\n          el: s,\n          $wrapperEl: v,\n          wrapperEl: v[0],\n          classNames: [],\n          slides: n(),\n          slidesGrid: [],\n          snapGrid: [],\n          slidesSizesGrid: [],\n          isHorizontal: function isHorizontal() {\n            return "horizontal" === l.params.direction;\n          },\n          isVertical: function isVertical() {\n            return "vertical" === l.params.direction;\n          },\n          rtl: "rtl" === s.dir.toLowerCase() || "rtl" === c.css("direction"),\n          rtlTranslate: "horizontal" === l.params.direction && ("rtl" === s.dir.toLowerCase() || "rtl" === c.css("direction")),\n          wrongRTL: "-webkit-box" === v.css("display"),\n          activeIndex: 0,\n          realIndex: 0,\n          isBeginning: !0,\n          isEnd: !1,\n          translate: 0,\n          previousTranslate: 0,\n          progress: 0,\n          velocity: 0,\n          animating: !1,\n          allowSlideNext: l.params.allowSlideNext,\n          allowSlidePrev: l.params.allowSlidePrev,\n          touchEvents: (f = ["touchstart", "touchmove", "touchend", "touchcancel"], m = ["mousedown", "mousemove", "mouseup"], h.pointerEvents && (m = ["pointerdown", "pointermove", "pointerup"]), l.touchEventsTouch = {\n            start: f[0],\n            move: f[1],\n            end: f[2],\n            cancel: f[3]\n          }, l.touchEventsDesktop = {\n            start: m[0],\n            move: m[1],\n            end: m[2]\n          }, h.touch || !l.params.simulateTouch ? l.touchEventsTouch : l.touchEventsDesktop),\n          touchEventsData: {\n            isTouched: void 0,\n            isMoved: void 0,\n            allowTouchCallbacks: void 0,\n            touchStartTime: void 0,\n            isScrolling: void 0,\n            currentTranslate: void 0,\n            startTranslate: void 0,\n            allowThresholdMove: void 0,\n            formElements: "input, select, option, textarea, button, video, label",\n            lastClickTime: d.now(),\n            clickTimeout: void 0,\n            velocities: [],\n            allowMomentumBounce: void 0,\n            isTouchEvent: void 0,\n            startMoving: void 0\n          },\n          allowClick: !0,\n          allowTouchMove: l.params.allowTouchMove,\n          touches: {\n            startX: 0,\n            startY: 0,\n            currentX: 0,\n            currentY: 0,\n            diff: 0\n          },\n          imagesToLoad: [],\n          imagesLoaded: 0\n        }), l.useModules(), l.params.init && l.init(), l;\n      }\n    }\n\n    e && (t.__proto__ = e), t.prototype = Object.create(e && e.prototype), t.prototype.constructor = t;\n    var i = {\n      extendedDefaults: {\n        configurable: !0\n      },\n      defaults: {\n        configurable: !0\n      },\n      Class: {\n        configurable: !0\n      },\n      $: {\n        configurable: !0\n      }\n    };\n    return t.prototype.slidesPerViewDynamic = function () {\n      var e = this.params,\n          t = this.slides,\n          i = this.slidesGrid,\n          s = this.size,\n          a = this.activeIndex,\n          r = 1;\n\n      if (e.centeredSlides) {\n        for (var n, o = t[a].swiperSlideSize, l = a + 1; l < t.length; l += 1) {\n          t[l] && !n && (r += 1, (o += t[l].swiperSlideSize) > s && (n = !0));\n        }\n\n        for (var d = a - 1; d >= 0; d -= 1) {\n          t[d] && !n && (r += 1, (o += t[d].swiperSlideSize) > s && (n = !0));\n        }\n      } else for (var h = a + 1; h < t.length; h += 1) {\n        i[h] - i[a] < s && (r += 1);\n      }\n\n      return r;\n    }, t.prototype.update = function () {\n      var e = this;\n\n      if (e && !e.destroyed) {\n        var t = e.snapGrid,\n            i = e.params;\n        i.breakpoints && e.setBreakpoint(), e.updateSize(), e.updateSlides(), e.updateProgress(), e.updateSlidesClasses(), e.params.freeMode ? (s(), e.params.autoHeight && e.updateAutoHeight()) : (("auto" === e.params.slidesPerView || e.params.slidesPerView > 1) && e.isEnd && !e.params.centeredSlides ? e.slideTo(e.slides.length - 1, 0, !1, !0) : e.slideTo(e.activeIndex, 0, !1, !0)) || s(), i.watchOverflow && t !== e.snapGrid && e.checkOverflow(), e.emit("update");\n      }\n\n      function s() {\n        var t = e.rtlTranslate ? -1 * e.translate : e.translate,\n            i = Math.min(Math.max(t, e.maxTranslate()), e.minTranslate());\n        e.setTranslate(i), e.updateActiveIndex(), e.updateSlidesClasses();\n      }\n    }, t.prototype.changeDirection = function (e, t) {\n      void 0 === t && (t = !0);\n      var i = this.params.direction;\n      return e || (e = "horizontal" === i ? "vertical" : "horizontal"), e === i || "horizontal" !== e && "vertical" !== e || (this.$el.removeClass("" + this.params.containerModifierClass + i).addClass("" + this.params.containerModifierClass + e), this.params.direction = e, this.slides.each(function (t, i) {\n        "vertical" === e ? i.style.width = "" : i.style.height = "";\n      }), this.emit("changeDirection"), t && this.update()), this;\n    }, t.prototype.init = function () {\n      this.initialized || (this.emit("beforeInit"), this.params.breakpoints && this.setBreakpoint(), this.addClasses(), this.params.loop && this.loopCreate(), this.updateSize(), this.updateSlides(), this.params.watchOverflow && this.checkOverflow(), this.params.grabCursor && this.setGrabCursor(), this.params.preloadImages && this.preloadImages(), this.params.loop ? this.slideTo(this.params.initialSlide + this.loopedSlides, 0, this.params.runCallbacksOnInit) : this.slideTo(this.params.initialSlide, 0, this.params.runCallbacksOnInit), this.attachEvents(), this.initialized = !0, this.emit("init"));\n    }, t.prototype.destroy = function (e, t) {\n      void 0 === e && (e = !0), void 0 === t && (t = !0);\n      var i = this,\n          s = i.params,\n          a = i.$el,\n          r = i.$wrapperEl,\n          n = i.slides;\n      return void 0 === i.params || i.destroyed || (i.emit("beforeDestroy"), i.initialized = !1, i.detachEvents(), s.loop && i.loopDestroy(), t && (i.removeClasses(), a.removeAttr("style"), r.removeAttr("style"), n && n.length && n.removeClass([s.slideVisibleClass, s.slideActiveClass, s.slideNextClass, s.slidePrevClass].join(" ")).removeAttr("style").removeAttr("data-swiper-slide-index")), i.emit("destroy"), Object.keys(i.eventsListeners).forEach(function (e) {\n        i.off(e);\n      }), !1 !== e && (i.$el[0].swiper = null, i.$el.data("swiper", null), d.deleteProps(i)), i.destroyed = !0), null;\n    }, t.extendDefaults = function (e) {\n      d.extend(q, e);\n    }, i.extendedDefaults.get = function () {\n      return q;\n    }, i.defaults.get = function () {\n      return W;\n    }, i.Class.get = function () {\n      return e;\n    }, i.$.get = function () {\n      return n;\n    }, Object.defineProperties(t, i), t;\n  }(p),\n      K = {\n    name: "device",\n    proto: {\n      device: A\n    },\n    static: {\n      device: A\n    }\n  },\n      U = {\n    name: "support",\n    proto: {\n      support: h\n    },\n    static: {\n      support: h\n    }\n  },\n      _ = {\n    isEdge: !!a.navigator.userAgent.match(/Edge/g),\n    isSafari: function () {\n      var e = a.navigator.userAgent.toLowerCase();\n      return e.indexOf("safari") >= 0 && e.indexOf("chrome") < 0 && e.indexOf("android") < 0;\n    }(),\n    isWebView: /(iPhone|iPod|iPad).*AppleWebKit(?!.*Safari)/i.test(a.navigator.userAgent)\n  },\n      Z = {\n    name: "browser",\n    proto: {\n      browser: _\n    },\n    static: {\n      browser: _\n    }\n  },\n      Q = {\n    name: "resize",\n    create: function create() {\n      var e = this;\n      d.extend(e, {\n        resize: {\n          resizeHandler: function resizeHandler() {\n            e && !e.destroyed && e.initialized && (e.emit("beforeResize"), e.emit("resize"));\n          },\n          orientationChangeHandler: function orientationChangeHandler() {\n            e && !e.destroyed && e.initialized && e.emit("orientationchange");\n          }\n        }\n      });\n    },\n    on: {\n      init: function init() {\n        a.addEventListener("resize", this.resize.resizeHandler), a.addEventListener("orientationchange", this.resize.orientationChangeHandler);\n      },\n      destroy: function destroy() {\n        a.removeEventListener("resize", this.resize.resizeHandler), a.removeEventListener("orientationchange", this.resize.orientationChangeHandler);\n      }\n    }\n  },\n      J = {\n    func: a.MutationObserver || a.WebkitMutationObserver,\n    attach: function attach(e, t) {\n      void 0 === t && (t = {});\n      var i = this,\n          s = new (0, J.func)(function (e) {\n        if (1 !== e.length) {\n          var t = function t() {\n            i.emit("observerUpdate", e[0]);\n          };\n\n          a.requestAnimationFrame ? a.requestAnimationFrame(t) : a.setTimeout(t, 0);\n        } else i.emit("observerUpdate", e[0]);\n      });\n      s.observe(e, {\n        attributes: void 0 === t.attributes || t.attributes,\n        childList: void 0 === t.childList || t.childList,\n        characterData: void 0 === t.characterData || t.characterData\n      }), i.observer.observers.push(s);\n    },\n    init: function init() {\n      if (h.observer && this.params.observer) {\n        if (this.params.observeParents) for (var e = this.$el.parents(), t = 0; t < e.length; t += 1) {\n          this.observer.attach(e[t]);\n        }\n        this.observer.attach(this.$el[0], {\n          childList: this.params.observeSlideChildren\n        }), this.observer.attach(this.$wrapperEl[0], {\n          attributes: !1\n        });\n      }\n    },\n    destroy: function destroy() {\n      this.observer.observers.forEach(function (e) {\n        e.disconnect();\n      }), this.observer.observers = [];\n    }\n  },\n      ee = {\n    name: "observer",\n    params: {\n      observer: !1,\n      observeParents: !1,\n      observeSlideChildren: !1\n    },\n    create: function create() {\n      d.extend(this, {\n        observer: {\n          init: J.init.bind(this),\n          attach: J.attach.bind(this),\n          destroy: J.destroy.bind(this),\n          observers: []\n        }\n      });\n    },\n    on: {\n      init: function init() {\n        this.observer.init();\n      },\n      destroy: function destroy() {\n        this.observer.destroy();\n      }\n    }\n  },\n      te = {\n    update: function update(e) {\n      var t = this,\n          i = t.params,\n          s = i.slidesPerView,\n          a = i.slidesPerGroup,\n          r = i.centeredSlides,\n          n = t.params.virtual,\n          o = n.addSlidesBefore,\n          l = n.addSlidesAfter,\n          h = t.virtual,\n          p = h.from,\n          c = h.to,\n          u = h.slides,\n          v = h.slidesGrid,\n          f = h.renderSlide,\n          m = h.offset;\n      t.updateActiveIndex();\n      var g,\n          b,\n          w,\n          y = t.activeIndex || 0;\n      g = t.rtlTranslate ? "right" : t.isHorizontal() ? "left" : "top", r ? (b = Math.floor(s / 2) + a + o, w = Math.floor(s / 2) + a + l) : (b = s + (a - 1) + o, w = a + l);\n      var x = Math.max((y || 0) - w, 0),\n          E = Math.min((y || 0) + b, u.length - 1),\n          T = (t.slidesGrid[x] || 0) - (t.slidesGrid[0] || 0);\n\n      function S() {\n        t.updateSlides(), t.updateProgress(), t.updateSlidesClasses(), t.lazy && t.params.lazy.enabled && t.lazy.load();\n      }\n\n      if (d.extend(t.virtual, {\n        from: x,\n        to: E,\n        offset: T,\n        slidesGrid: t.slidesGrid\n      }), p === x && c === E && !e) return t.slidesGrid !== v && T !== m && t.slides.css(g, T + "px"), void t.updateProgress();\n      if (t.params.virtual.renderExternal) return t.params.virtual.renderExternal.call(t, {\n        offset: T,\n        from: x,\n        to: E,\n        slides: function () {\n          for (var e = [], t = x; t <= E; t += 1) {\n            e.push(u[t]);\n          }\n\n          return e;\n        }()\n      }), void S();\n      var C = [],\n          M = [];\n      if (e) t.$wrapperEl.find("." + t.params.slideClass).remove();else for (var P = p; P <= c; P += 1) {\n        (P < x || P > E) && t.$wrapperEl.find("." + t.params.slideClass + \'[data-swiper-slide-index="\' + P + \'"]\').remove();\n      }\n\n      for (var z = 0; z < u.length; z += 1) {\n        z >= x && z <= E && (void 0 === c || e ? M.push(z) : (z > c && M.push(z), z < p && C.push(z)));\n      }\n\n      M.forEach(function (e) {\n        t.$wrapperEl.append(f(u[e], e));\n      }), C.sort(function (e, t) {\n        return t - e;\n      }).forEach(function (e) {\n        t.$wrapperEl.prepend(f(u[e], e));\n      }), t.$wrapperEl.children(".swiper-slide").css(g, T + "px"), S();\n    },\n    renderSlide: function renderSlide(e, t) {\n      var i = this.params.virtual;\n      if (i.cache && this.virtual.cache[t]) return this.virtual.cache[t];\n      var s = i.renderSlide ? n(i.renderSlide.call(this, e, t)) : n(\'<div class="\' + this.params.slideClass + \'" data-swiper-slide-index="\' + t + \'">\' + e + "<\/div>");\n      return s.attr("data-swiper-slide-index") || s.attr("data-swiper-slide-index", t), i.cache && (this.virtual.cache[t] = s), s;\n    },\n    appendSlide: function appendSlide(e) {\n      if ("object" == _typeof(e) && "length" in e) for (var t = 0; t < e.length; t += 1) {\n        e[t] && this.virtual.slides.push(e[t]);\n      } else this.virtual.slides.push(e);\n      this.virtual.update(!0);\n    },\n    prependSlide: function prependSlide(e) {\n      var t = this.activeIndex,\n          i = t + 1,\n          s = 1;\n\n      if (Array.isArray(e)) {\n        for (var a = 0; a < e.length; a += 1) {\n          e[a] && this.virtual.slides.unshift(e[a]);\n        }\n\n        i = t + e.length, s = e.length;\n      } else this.virtual.slides.unshift(e);\n\n      if (this.params.virtual.cache) {\n        var r = this.virtual.cache,\n            n = {};\n        Object.keys(r).forEach(function (e) {\n          var t = r[e],\n              i = t.attr("data-swiper-slide-index");\n          i && t.attr("data-swiper-slide-index", parseInt(i, 10) + 1), n[parseInt(e, 10) + s] = t;\n        }), this.virtual.cache = n;\n      }\n\n      this.virtual.update(!0), this.slideTo(i, 0);\n    },\n    removeSlide: function removeSlide(e) {\n      if (null != e) {\n        var t = this.activeIndex;\n        if (Array.isArray(e)) for (var i = e.length - 1; i >= 0; i -= 1) {\n          this.virtual.slides.splice(e[i], 1), this.params.virtual.cache && delete this.virtual.cache[e[i]], e[i] < t && (t -= 1), t = Math.max(t, 0);\n        } else this.virtual.slides.splice(e, 1), this.params.virtual.cache && delete this.virtual.cache[e], e < t && (t -= 1), t = Math.max(t, 0);\n        this.virtual.update(!0), this.slideTo(t, 0);\n      }\n    },\n    removeAllSlides: function removeAllSlides() {\n      this.virtual.slides = [], this.params.virtual.cache && (this.virtual.cache = {}), this.virtual.update(!0), this.slideTo(0, 0);\n    }\n  },\n      ie = {\n    name: "virtual",\n    params: {\n      virtual: {\n        enabled: !1,\n        slides: [],\n        cache: !0,\n        renderSlide: null,\n        renderExternal: null,\n        addSlidesBefore: 0,\n        addSlidesAfter: 0\n      }\n    },\n    create: function create() {\n      d.extend(this, {\n        virtual: {\n          update: te.update.bind(this),\n          appendSlide: te.appendSlide.bind(this),\n          prependSlide: te.prependSlide.bind(this),\n          removeSlide: te.removeSlide.bind(this),\n          removeAllSlides: te.removeAllSlides.bind(this),\n          renderSlide: te.renderSlide.bind(this),\n          slides: this.params.virtual.slides,\n          cache: {}\n        }\n      });\n    },\n    on: {\n      beforeInit: function beforeInit() {\n        if (this.params.virtual.enabled) {\n          this.classNames.push(this.params.containerModifierClass + "virtual");\n          var e = {\n            watchSlidesProgress: !0\n          };\n          d.extend(this.params, e), d.extend(this.originalParams, e), this.params.initialSlide || this.virtual.update();\n        }\n      },\n      setTranslate: function setTranslate() {\n        this.params.virtual.enabled && this.virtual.update();\n      }\n    }\n  },\n      se = {\n    handle: function handle(e) {\n      var t = this.rtlTranslate,\n          s = e;\n      s.originalEvent && (s = s.originalEvent);\n      var r = s.keyCode || s.charCode,\n          n = this.params.keyboard.pageUpDown,\n          o = n && 33 === r,\n          l = n && 34 === r,\n          d = 37 === r,\n          h = 39 === r,\n          p = 38 === r,\n          c = 40 === r;\n      if (!this.allowSlideNext && (this.isHorizontal() && h || this.isVertical() && c || l)) return !1;\n      if (!this.allowSlidePrev && (this.isHorizontal() && d || this.isVertical() && p || o)) return !1;\n\n      if (!(s.shiftKey || s.altKey || s.ctrlKey || s.metaKey || i.activeElement && i.activeElement.nodeName && ("input" === i.activeElement.nodeName.toLowerCase() || "textarea" === i.activeElement.nodeName.toLowerCase()))) {\n        if (this.params.keyboard.onlyInViewport && (o || l || d || h || p || c)) {\n          var u = !1;\n          if (this.$el.parents("." + this.params.slideClass).length > 0 && 0 === this.$el.parents("." + this.params.slideActiveClass).length) return;\n          var v = a.innerWidth,\n              f = a.innerHeight,\n              m = this.$el.offset();\n          t && (m.left -= this.$el[0].scrollLeft);\n\n          for (var g = [[m.left, m.top], [m.left + this.width, m.top], [m.left, m.top + this.height], [m.left + this.width, m.top + this.height]], b = 0; b < g.length; b += 1) {\n            var w = g[b];\n            w[0] >= 0 && w[0] <= v && w[1] >= 0 && w[1] <= f && (u = !0);\n          }\n\n          if (!u) return;\n        }\n\n        this.isHorizontal() ? ((o || l || d || h) && (s.preventDefault ? s.preventDefault() : s.returnValue = !1), ((l || h) && !t || (o || d) && t) && this.slideNext(), ((o || d) && !t || (l || h) && t) && this.slidePrev()) : ((o || l || p || c) && (s.preventDefault ? s.preventDefault() : s.returnValue = !1), (l || c) && this.slideNext(), (o || p) && this.slidePrev()), this.emit("keyPress", r);\n      }\n    },\n    enable: function enable() {\n      this.keyboard.enabled || (n(i).on("keydown", this.keyboard.handle), this.keyboard.enabled = !0);\n    },\n    disable: function disable() {\n      this.keyboard.enabled && (n(i).off("keydown", this.keyboard.handle), this.keyboard.enabled = !1);\n    }\n  },\n      ae = {\n    name: "keyboard",\n    params: {\n      keyboard: {\n        enabled: !1,\n        onlyInViewport: !0,\n        pageUpDown: !0\n      }\n    },\n    create: function create() {\n      d.extend(this, {\n        keyboard: {\n          enabled: !1,\n          enable: se.enable.bind(this),\n          disable: se.disable.bind(this),\n          handle: se.handle.bind(this)\n        }\n      });\n    },\n    on: {\n      init: function init() {\n        this.params.keyboard.enabled && this.keyboard.enable();\n      },\n      destroy: function destroy() {\n        this.keyboard.enabled && this.keyboard.disable();\n      }\n    }\n  };\n\n  var re = {\n    lastScrollTime: d.now(),\n    lastEventBeforeSnap: void 0,\n    recentWheelEvents: [],\n    event: function event() {\n      return a.navigator.userAgent.indexOf("firefox") > -1 ? "DOMMouseScroll" : function () {\n        var e = ("onwheel" in i);\n\n        if (!e) {\n          var t = i.createElement("div");\n          t.setAttribute("onwheel", "return;"), e = "function" == typeof t.onwheel;\n        }\n\n        return !e && i.implementation && i.implementation.hasFeature && !0 !== i.implementation.hasFeature("", "") && (e = i.implementation.hasFeature("Events.wheel", "3.0")), e;\n      }() ? "wheel" : "mousewheel";\n    },\n    normalize: function normalize(e) {\n      var t = 0,\n          i = 0,\n          s = 0,\n          a = 0;\n      return "detail" in e && (i = e.detail), "wheelDelta" in e && (i = -e.wheelDelta / 120), "wheelDeltaY" in e && (i = -e.wheelDeltaY / 120), "wheelDeltaX" in e && (t = -e.wheelDeltaX / 120), "axis" in e && e.axis === e.HORIZONTAL_AXIS && (t = i, i = 0), s = 10 * t, a = 10 * i, "deltaY" in e && (a = e.deltaY), "deltaX" in e && (s = e.deltaX), e.shiftKey && !s && (s = a, a = 0), (s || a) && e.deltaMode && (1 === e.deltaMode ? (s *= 40, a *= 40) : (s *= 800, a *= 800)), s && !t && (t = s < 1 ? -1 : 1), a && !i && (i = a < 1 ? -1 : 1), {\n        spinX: t,\n        spinY: i,\n        pixelX: s,\n        pixelY: a\n      };\n    },\n    handleMouseEnter: function handleMouseEnter() {\n      this.mouseEntered = !0;\n    },\n    handleMouseLeave: function handleMouseLeave() {\n      this.mouseEntered = !1;\n    },\n    handle: function handle(e) {\n      var t = e,\n          i = this,\n          s = i.params.mousewheel;\n      i.params.cssMode && t.preventDefault();\n      var a = i.$el;\n      if ("container" !== i.params.mousewheel.eventsTarged && (a = n(i.params.mousewheel.eventsTarged)), !i.mouseEntered && !a[0].contains(t.target) && !s.releaseOnEdges) return !0;\n      t.originalEvent && (t = t.originalEvent);\n      var r = 0,\n          o = i.rtlTranslate ? -1 : 1,\n          l = re.normalize(t);\n      if (s.forceToAxis) {\n        if (i.isHorizontal()) {\n          if (!(Math.abs(l.pixelX) > Math.abs(l.pixelY))) return !0;\n          r = -l.pixelX * o;\n        } else {\n          if (!(Math.abs(l.pixelY) > Math.abs(l.pixelX))) return !0;\n          r = -l.pixelY;\n        }\n      } else r = Math.abs(l.pixelX) > Math.abs(l.pixelY) ? -l.pixelX * o : -l.pixelY;\n      if (0 === r) return !0;\n\n      if (s.invert && (r = -r), i.params.freeMode) {\n        var h = {\n          time: d.now(),\n          delta: Math.abs(r),\n          direction: Math.sign(r)\n        },\n            p = i.mousewheel.lastEventBeforeSnap,\n            c = p && h.time < p.time + 500 && h.delta <= p.delta && h.direction === p.direction;\n\n        if (!c) {\n          i.mousewheel.lastEventBeforeSnap = void 0, i.params.loop && i.loopFix();\n          var u = i.getTranslate() + r * s.sensitivity,\n              v = i.isBeginning,\n              f = i.isEnd;\n\n          if (u >= i.minTranslate() && (u = i.minTranslate()), u <= i.maxTranslate() && (u = i.maxTranslate()), i.setTransition(0), i.setTranslate(u), i.updateProgress(), i.updateActiveIndex(), i.updateSlidesClasses(), (!v && i.isBeginning || !f && i.isEnd) && i.updateSlidesClasses(), i.params.freeModeSticky) {\n            clearTimeout(i.mousewheel.timeout), i.mousewheel.timeout = void 0;\n            var m = i.mousewheel.recentWheelEvents;\n            m.length >= 15 && m.shift();\n            var g = m.length ? m[m.length - 1] : void 0,\n                b = m[0];\n            if (m.push(h), g && (h.delta > g.delta || h.direction !== g.direction)) m.splice(0);else if (m.length >= 15 && h.time - b.time < 500 && b.delta - h.delta >= 1 && h.delta <= 6) {\n              var w = r > 0 ? .8 : .2;\n              i.mousewheel.lastEventBeforeSnap = h, m.splice(0), i.mousewheel.timeout = d.nextTick(function () {\n                i.slideToClosest(i.params.speed, !0, void 0, w);\n              }, 0);\n            }\n            i.mousewheel.timeout || (i.mousewheel.timeout = d.nextTick(function () {\n              i.mousewheel.lastEventBeforeSnap = h, m.splice(0), i.slideToClosest(i.params.speed, !0, void 0, .5);\n            }, 500));\n          }\n\n          if (c || i.emit("scroll", t), i.params.autoplay && i.params.autoplayDisableOnInteraction && i.autoplay.stop(), u === i.minTranslate() || u === i.maxTranslate()) return !0;\n        }\n      } else {\n        var y = {\n          time: d.now(),\n          delta: Math.abs(r),\n          direction: Math.sign(r),\n          raw: e\n        },\n            x = i.mousewheel.recentWheelEvents;\n        x.length >= 2 && x.shift();\n        var E = x.length ? x[x.length - 1] : void 0;\n        if (x.push(y), E ? (y.direction !== E.direction || y.delta > E.delta || y.time > E.time + 150) && i.mousewheel.animateSlider(y) : i.mousewheel.animateSlider(y), i.mousewheel.releaseScroll(y)) return !0;\n      }\n\n      return t.preventDefault ? t.preventDefault() : t.returnValue = !1, !1;\n    },\n    animateSlider: function animateSlider(e) {\n      return e.delta >= 6 && d.now() - this.mousewheel.lastScrollTime < 60 || (e.direction < 0 ? this.isEnd && !this.params.loop || this.animating || (this.slideNext(), this.emit("scroll", e.raw)) : this.isBeginning && !this.params.loop || this.animating || (this.slidePrev(), this.emit("scroll", e.raw)), this.mousewheel.lastScrollTime = new a.Date().getTime(), !1);\n    },\n    releaseScroll: function releaseScroll(e) {\n      var t = this.params.mousewheel;\n\n      if (e.direction < 0) {\n        if (this.isEnd && !this.params.loop && t.releaseOnEdges) return !0;\n      } else if (this.isBeginning && !this.params.loop && t.releaseOnEdges) return !0;\n\n      return !1;\n    },\n    enable: function enable() {\n      var e = re.event();\n      if (this.params.cssMode) return this.wrapperEl.removeEventListener(e, this.mousewheel.handle), !0;\n      if (!e) return !1;\n      if (this.mousewheel.enabled) return !1;\n      var t = this.$el;\n      return "container" !== this.params.mousewheel.eventsTarged && (t = n(this.params.mousewheel.eventsTarged)), t.on("mouseenter", this.mousewheel.handleMouseEnter), t.on("mouseleave", this.mousewheel.handleMouseLeave), t.on(e, this.mousewheel.handle), this.mousewheel.enabled = !0, !0;\n    },\n    disable: function disable() {\n      var e = re.event();\n      if (this.params.cssMode) return this.wrapperEl.addEventListener(e, this.mousewheel.handle), !0;\n      if (!e) return !1;\n      if (!this.mousewheel.enabled) return !1;\n      var t = this.$el;\n      return "container" !== this.params.mousewheel.eventsTarged && (t = n(this.params.mousewheel.eventsTarged)), t.off(e, this.mousewheel.handle), this.mousewheel.enabled = !1, !0;\n    }\n  },\n      ne = {\n    update: function update() {\n      var e = this.params.navigation;\n\n      if (!this.params.loop) {\n        var t = this.navigation,\n            i = t.$nextEl,\n            s = t.$prevEl;\n        s && s.length > 0 && (this.isBeginning ? s.addClass(e.disabledClass) : s.removeClass(e.disabledClass), s[this.params.watchOverflow && this.isLocked ? "addClass" : "removeClass"](e.lockClass)), i && i.length > 0 && (this.isEnd ? i.addClass(e.disabledClass) : i.removeClass(e.disabledClass), i[this.params.watchOverflow && this.isLocked ? "addClass" : "removeClass"](e.lockClass));\n      }\n    },\n    onPrevClick: function onPrevClick(e) {\n      e.preventDefault(), this.isBeginning && !this.params.loop || this.slidePrev();\n    },\n    onNextClick: function onNextClick(e) {\n      e.preventDefault(), this.isEnd && !this.params.loop || this.slideNext();\n    },\n    init: function init() {\n      var e,\n          t,\n          i = this.params.navigation;\n      (i.nextEl || i.prevEl) && (i.nextEl && (e = n(i.nextEl), this.params.uniqueNavElements && "string" == typeof i.nextEl && e.length > 1 && 1 === this.$el.find(i.nextEl).length && (e = this.$el.find(i.nextEl))), i.prevEl && (t = n(i.prevEl), this.params.uniqueNavElements && "string" == typeof i.prevEl && t.length > 1 && 1 === this.$el.find(i.prevEl).length && (t = this.$el.find(i.prevEl))), e && e.length > 0 && e.on("click", this.navigation.onNextClick), t && t.length > 0 && t.on("click", this.navigation.onPrevClick), d.extend(this.navigation, {\n        $nextEl: e,\n        nextEl: e && e[0],\n        $prevEl: t,\n        prevEl: t && t[0]\n      }));\n    },\n    destroy: function destroy() {\n      var e = this.navigation,\n          t = e.$nextEl,\n          i = e.$prevEl;\n      t && t.length && (t.off("click", this.navigation.onNextClick), t.removeClass(this.params.navigation.disabledClass)), i && i.length && (i.off("click", this.navigation.onPrevClick), i.removeClass(this.params.navigation.disabledClass));\n    }\n  },\n      oe = {\n    update: function update() {\n      var e = this.rtl,\n          t = this.params.pagination;\n\n      if (t.el && this.pagination.el && this.pagination.$el && 0 !== this.pagination.$el.length) {\n        var i,\n            s = this.virtual && this.params.virtual.enabled ? this.virtual.slides.length : this.slides.length,\n            a = this.pagination.$el,\n            r = this.params.loop ? Math.ceil((s - 2 * this.loopedSlides) / this.params.slidesPerGroup) : this.snapGrid.length;\n\n        if (this.params.loop ? ((i = Math.ceil((this.activeIndex - this.loopedSlides) / this.params.slidesPerGroup)) > s - 1 - 2 * this.loopedSlides && (i -= s - 2 * this.loopedSlides), i > r - 1 && (i -= r), i < 0 && "bullets" !== this.params.paginationType && (i = r + i)) : i = void 0 !== this.snapIndex ? this.snapIndex : this.activeIndex || 0, "bullets" === t.type && this.pagination.bullets && this.pagination.bullets.length > 0) {\n          var o,\n              l,\n              d,\n              h = this.pagination.bullets;\n          if (t.dynamicBullets && (this.pagination.bulletSize = h.eq(0)[this.isHorizontal() ? "outerWidth" : "outerHeight"](!0), a.css(this.isHorizontal() ? "width" : "height", this.pagination.bulletSize * (t.dynamicMainBullets + 4) + "px"), t.dynamicMainBullets > 1 && void 0 !== this.previousIndex && (this.pagination.dynamicBulletIndex += i - this.previousIndex, this.pagination.dynamicBulletIndex > t.dynamicMainBullets - 1 ? this.pagination.dynamicBulletIndex = t.dynamicMainBullets - 1 : this.pagination.dynamicBulletIndex < 0 && (this.pagination.dynamicBulletIndex = 0)), o = i - this.pagination.dynamicBulletIndex, d = ((l = o + (Math.min(h.length, t.dynamicMainBullets) - 1)) + o) / 2), h.removeClass(t.bulletActiveClass + " " + t.bulletActiveClass + "-next " + t.bulletActiveClass + "-next-next " + t.bulletActiveClass + "-prev " + t.bulletActiveClass + "-prev-prev " + t.bulletActiveClass + "-main"), a.length > 1) h.each(function (e, s) {\n            var a = n(s),\n                r = a.index();\n            r === i && a.addClass(t.bulletActiveClass), t.dynamicBullets && (r >= o && r <= l && a.addClass(t.bulletActiveClass + "-main"), r === o && a.prev().addClass(t.bulletActiveClass + "-prev").prev().addClass(t.bulletActiveClass + "-prev-prev"), r === l && a.next().addClass(t.bulletActiveClass + "-next").next().addClass(t.bulletActiveClass + "-next-next"));\n          });else {\n            var p = h.eq(i),\n                c = p.index();\n\n            if (p.addClass(t.bulletActiveClass), t.dynamicBullets) {\n              for (var u = h.eq(o), v = h.eq(l), f = o; f <= l; f += 1) {\n                h.eq(f).addClass(t.bulletActiveClass + "-main");\n              }\n\n              if (this.params.loop) {\n                if (c >= h.length - t.dynamicMainBullets) {\n                  for (var m = t.dynamicMainBullets; m >= 0; m -= 1) {\n                    h.eq(h.length - m).addClass(t.bulletActiveClass + "-main");\n                  }\n\n                  h.eq(h.length - t.dynamicMainBullets - 1).addClass(t.bulletActiveClass + "-prev");\n                } else u.prev().addClass(t.bulletActiveClass + "-prev").prev().addClass(t.bulletActiveClass + "-prev-prev"), v.next().addClass(t.bulletActiveClass + "-next").next().addClass(t.bulletActiveClass + "-next-next");\n              } else u.prev().addClass(t.bulletActiveClass + "-prev").prev().addClass(t.bulletActiveClass + "-prev-prev"), v.next().addClass(t.bulletActiveClass + "-next").next().addClass(t.bulletActiveClass + "-next-next");\n            }\n          }\n\n          if (t.dynamicBullets) {\n            var g = Math.min(h.length, t.dynamicMainBullets + 4),\n                b = (this.pagination.bulletSize * g - this.pagination.bulletSize) / 2 - d * this.pagination.bulletSize,\n                w = e ? "right" : "left";\n            h.css(this.isHorizontal() ? w : "top", b + "px");\n          }\n        }\n\n        if ("fraction" === t.type && (a.find("." + t.currentClass).text(t.formatFractionCurrent(i + 1)), a.find("." + t.totalClass).text(t.formatFractionTotal(r))), "progressbar" === t.type) {\n          var y;\n          y = t.progressbarOpposite ? this.isHorizontal() ? "vertical" : "horizontal" : this.isHorizontal() ? "horizontal" : "vertical";\n          var x = (i + 1) / r,\n              E = 1,\n              T = 1;\n          "horizontal" === y ? E = x : T = x, a.find("." + t.progressbarFillClass).transform("translate3d(0,0,0) scaleX(" + E + ") scaleY(" + T + ")").transition(this.params.speed);\n        }\n\n        "custom" === t.type && t.renderCustom ? (a.html(t.renderCustom(this, i + 1, r)), this.emit("paginationRender", this, a[0])) : this.emit("paginationUpdate", this, a[0]), a[this.params.watchOverflow && this.isLocked ? "addClass" : "removeClass"](t.lockClass);\n      }\n    },\n    render: function render() {\n      var e = this.params.pagination;\n\n      if (e.el && this.pagination.el && this.pagination.$el && 0 !== this.pagination.$el.length) {\n        var t = this.virtual && this.params.virtual.enabled ? this.virtual.slides.length : this.slides.length,\n            i = this.pagination.$el,\n            s = "";\n\n        if ("bullets" === e.type) {\n          for (var a = this.params.loop ? Math.ceil((t - 2 * this.loopedSlides) / this.params.slidesPerGroup) : this.snapGrid.length, r = 0; r < a; r += 1) {\n            e.renderBullet ? s += e.renderBullet.call(this, r, e.bulletClass) : s += "<" + e.bulletElement + \' class="\' + e.bulletClass + \'"><\/\' + e.bulletElement + ">";\n          }\n\n          i.html(s), this.pagination.bullets = i.find("." + e.bulletClass);\n        }\n\n        "fraction" === e.type && (s = e.renderFraction ? e.renderFraction.call(this, e.currentClass, e.totalClass) : \'<span class="\' + e.currentClass + \'"><\/span> / <span class="\' + e.totalClass + \'"><\/span>\', i.html(s)), "progressbar" === e.type && (s = e.renderProgressbar ? e.renderProgressbar.call(this, e.progressbarFillClass) : \'<span class="\' + e.progressbarFillClass + \'"><\/span>\', i.html(s)), "custom" !== e.type && this.emit("paginationRender", this.pagination.$el[0]);\n      }\n    },\n    init: function init() {\n      var e = this,\n          t = e.params.pagination;\n\n      if (t.el) {\n        var i = n(t.el);\n        0 !== i.length && (e.params.uniqueNavElements && "string" == typeof t.el && i.length > 1 && (i = e.$el.find(t.el)), "bullets" === t.type && t.clickable && i.addClass(t.clickableClass), i.addClass(t.modifierClass + t.type), "bullets" === t.type && t.dynamicBullets && (i.addClass("" + t.modifierClass + t.type + "-dynamic"), e.pagination.dynamicBulletIndex = 0, t.dynamicMainBullets < 1 && (t.dynamicMainBullets = 1)), "progressbar" === t.type && t.progressbarOpposite && i.addClass(t.progressbarOppositeClass), t.clickable && i.on("click", "." + t.bulletClass, function (t) {\n          t.preventDefault();\n          var i = n(this).index() * e.params.slidesPerGroup;\n          e.params.loop && (i += e.loopedSlides), e.slideTo(i);\n        }), d.extend(e.pagination, {\n          $el: i,\n          el: i[0]\n        }));\n      }\n    },\n    destroy: function destroy() {\n      var e = this.params.pagination;\n\n      if (e.el && this.pagination.el && this.pagination.$el && 0 !== this.pagination.$el.length) {\n        var t = this.pagination.$el;\n        t.removeClass(e.hiddenClass), t.removeClass(e.modifierClass + e.type), this.pagination.bullets && this.pagination.bullets.removeClass(e.bulletActiveClass), e.clickable && t.off("click", "." + e.bulletClass);\n      }\n    }\n  },\n      le = {\n    setTranslate: function setTranslate() {\n      if (this.params.scrollbar.el && this.scrollbar.el) {\n        var e = this.scrollbar,\n            t = this.rtlTranslate,\n            i = this.progress,\n            s = e.dragSize,\n            a = e.trackSize,\n            r = e.$dragEl,\n            n = e.$el,\n            o = this.params.scrollbar,\n            l = s,\n            d = (a - s) * i;\n        t ? (d = -d) > 0 ? (l = s - d, d = 0) : -d + s > a && (l = a + d) : d < 0 ? (l = s + d, d = 0) : d + s > a && (l = a - d), this.isHorizontal() ? (r.transform("translate3d(" + d + "px, 0, 0)"), r[0].style.width = l + "px") : (r.transform("translate3d(0px, " + d + "px, 0)"), r[0].style.height = l + "px"), o.hide && (clearTimeout(this.scrollbar.timeout), n[0].style.opacity = 1, this.scrollbar.timeout = setTimeout(function () {\n          n[0].style.opacity = 0, n.transition(400);\n        }, 1e3));\n      }\n    },\n    setTransition: function setTransition(e) {\n      this.params.scrollbar.el && this.scrollbar.el && this.scrollbar.$dragEl.transition(e);\n    },\n    updateSize: function updateSize() {\n      if (this.params.scrollbar.el && this.scrollbar.el) {\n        var e = this.scrollbar,\n            t = e.$dragEl,\n            i = e.$el;\n        t[0].style.width = "", t[0].style.height = "";\n        var s,\n            a = this.isHorizontal() ? i[0].offsetWidth : i[0].offsetHeight,\n            r = this.size / this.virtualSize,\n            n = r * (a / this.size);\n        s = "auto" === this.params.scrollbar.dragSize ? a * r : parseInt(this.params.scrollbar.dragSize, 10), this.isHorizontal() ? t[0].style.width = s + "px" : t[0].style.height = s + "px", i[0].style.display = r >= 1 ? "none" : "", this.params.scrollbar.hide && (i[0].style.opacity = 0), d.extend(e, {\n          trackSize: a,\n          divider: r,\n          moveDivider: n,\n          dragSize: s\n        }), e.$el[this.params.watchOverflow && this.isLocked ? "addClass" : "removeClass"](this.params.scrollbar.lockClass);\n      }\n    },\n    getPointerPosition: function getPointerPosition(e) {\n      return this.isHorizontal() ? "touchstart" === e.type || "touchmove" === e.type ? e.targetTouches[0].clientX : e.clientX : "touchstart" === e.type || "touchmove" === e.type ? e.targetTouches[0].clientY : e.clientY;\n    },\n    setDragPosition: function setDragPosition(e) {\n      var t,\n          i = this.scrollbar,\n          s = this.rtlTranslate,\n          a = i.$el,\n          r = i.dragSize,\n          n = i.trackSize,\n          o = i.dragStartPos;\n      t = (i.getPointerPosition(e) - a.offset()[this.isHorizontal() ? "left" : "top"] - (null !== o ? o : r / 2)) / (n - r), t = Math.max(Math.min(t, 1), 0), s && (t = 1 - t);\n      var l = this.minTranslate() + (this.maxTranslate() - this.minTranslate()) * t;\n      this.updateProgress(l), this.setTranslate(l), this.updateActiveIndex(), this.updateSlidesClasses();\n    },\n    onDragStart: function onDragStart(e) {\n      var t = this.params.scrollbar,\n          i = this.scrollbar,\n          s = this.$wrapperEl,\n          a = i.$el,\n          r = i.$dragEl;\n      this.scrollbar.isTouched = !0, this.scrollbar.dragStartPos = e.target === r[0] || e.target === r ? i.getPointerPosition(e) - e.target.getBoundingClientRect()[this.isHorizontal() ? "left" : "top"] : null, e.preventDefault(), e.stopPropagation(), s.transition(100), r.transition(100), i.setDragPosition(e), clearTimeout(this.scrollbar.dragTimeout), a.transition(0), t.hide && a.css("opacity", 1), this.params.cssMode && this.$wrapperEl.css("scroll-snap-type", "none"), this.emit("scrollbarDragStart", e);\n    },\n    onDragMove: function onDragMove(e) {\n      var t = this.scrollbar,\n          i = this.$wrapperEl,\n          s = t.$el,\n          a = t.$dragEl;\n      this.scrollbar.isTouched && (e.preventDefault ? e.preventDefault() : e.returnValue = !1, t.setDragPosition(e), i.transition(0), s.transition(0), a.transition(0), this.emit("scrollbarDragMove", e));\n    },\n    onDragEnd: function onDragEnd(e) {\n      var t = this.params.scrollbar,\n          i = this.scrollbar,\n          s = this.$wrapperEl,\n          a = i.$el;\n      this.scrollbar.isTouched && (this.scrollbar.isTouched = !1, this.params.cssMode && (this.$wrapperEl.css("scroll-snap-type", ""), s.transition("")), t.hide && (clearTimeout(this.scrollbar.dragTimeout), this.scrollbar.dragTimeout = d.nextTick(function () {\n        a.css("opacity", 0), a.transition(400);\n      }, 1e3)), this.emit("scrollbarDragEnd", e), t.snapOnRelease && this.slideToClosest());\n    },\n    enableDraggable: function enableDraggable() {\n      if (this.params.scrollbar.el) {\n        var e = this.scrollbar,\n            t = this.touchEventsTouch,\n            s = this.touchEventsDesktop,\n            a = this.params,\n            r = e.$el[0],\n            n = !(!h.passiveListener || !a.passiveListeners) && {\n          passive: !1,\n          capture: !1\n        },\n            o = !(!h.passiveListener || !a.passiveListeners) && {\n          passive: !0,\n          capture: !1\n        };\n        h.touch ? (r.addEventListener(t.start, this.scrollbar.onDragStart, n), r.addEventListener(t.move, this.scrollbar.onDragMove, n), r.addEventListener(t.end, this.scrollbar.onDragEnd, o)) : (r.addEventListener(s.start, this.scrollbar.onDragStart, n), i.addEventListener(s.move, this.scrollbar.onDragMove, n), i.addEventListener(s.end, this.scrollbar.onDragEnd, o));\n      }\n    },\n    disableDraggable: function disableDraggable() {\n      if (this.params.scrollbar.el) {\n        var e = this.scrollbar,\n            t = this.touchEventsTouch,\n            s = this.touchEventsDesktop,\n            a = this.params,\n            r = e.$el[0],\n            n = !(!h.passiveListener || !a.passiveListeners) && {\n          passive: !1,\n          capture: !1\n        },\n            o = !(!h.passiveListener || !a.passiveListeners) && {\n          passive: !0,\n          capture: !1\n        };\n        h.touch ? (r.removeEventListener(t.start, this.scrollbar.onDragStart, n), r.removeEventListener(t.move, this.scrollbar.onDragMove, n), r.removeEventListener(t.end, this.scrollbar.onDragEnd, o)) : (r.removeEventListener(s.start, this.scrollbar.onDragStart, n), i.removeEventListener(s.move, this.scrollbar.onDragMove, n), i.removeEventListener(s.end, this.scrollbar.onDragEnd, o));\n      }\n    },\n    init: function init() {\n      if (this.params.scrollbar.el) {\n        var e = this.scrollbar,\n            t = this.$el,\n            i = this.params.scrollbar,\n            s = n(i.el);\n        this.params.uniqueNavElements && "string" == typeof i.el && s.length > 1 && 1 === t.find(i.el).length && (s = t.find(i.el));\n        var a = s.find("." + this.params.scrollbar.dragClass);\n        0 === a.length && (a = n(\'<div class="\' + this.params.scrollbar.dragClass + \'"><\/div>\'), s.append(a)), d.extend(e, {\n          $el: s,\n          el: s[0],\n          $dragEl: a,\n          dragEl: a[0]\n        }), i.draggable && e.enableDraggable();\n      }\n    },\n    destroy: function destroy() {\n      this.scrollbar.disableDraggable();\n    }\n  },\n      de = {\n    setTransform: function setTransform(e, t) {\n      var i = this.rtl,\n          s = n(e),\n          a = i ? -1 : 1,\n          r = s.attr("data-swiper-parallax") || "0",\n          o = s.attr("data-swiper-parallax-x"),\n          l = s.attr("data-swiper-parallax-y"),\n          d = s.attr("data-swiper-parallax-scale"),\n          h = s.attr("data-swiper-parallax-opacity");\n\n      if (o || l ? (o = o || "0", l = l || "0") : this.isHorizontal() ? (o = r, l = "0") : (l = r, o = "0"), o = o.indexOf("%") >= 0 ? parseInt(o, 10) * t * a + "%" : o * t * a + "px", l = l.indexOf("%") >= 0 ? parseInt(l, 10) * t + "%" : l * t + "px", null != h) {\n        var p = h - (h - 1) * (1 - Math.abs(t));\n        s[0].style.opacity = p;\n      }\n\n      if (null == d) s.transform("translate3d(" + o + ", " + l + ", 0px)");else {\n        var c = d - (d - 1) * (1 - Math.abs(t));\n        s.transform("translate3d(" + o + ", " + l + ", 0px) scale(" + c + ")");\n      }\n    },\n    setTranslate: function setTranslate() {\n      var e = this,\n          t = e.$el,\n          i = e.slides,\n          s = e.progress,\n          a = e.snapGrid;\n      t.children("[data-swiper-parallax], [data-swiper-parallax-x], [data-swiper-parallax-y], [data-swiper-parallax-opacity], [data-swiper-parallax-scale]").each(function (t, i) {\n        e.parallax.setTransform(i, s);\n      }), i.each(function (t, i) {\n        var r = i.progress;\n        e.params.slidesPerGroup > 1 && "auto" !== e.params.slidesPerView && (r += Math.ceil(t / 2) - s * (a.length - 1)), r = Math.min(Math.max(r, -1), 1), n(i).find("[data-swiper-parallax], [data-swiper-parallax-x], [data-swiper-parallax-y], [data-swiper-parallax-opacity], [data-swiper-parallax-scale]").each(function (t, i) {\n          e.parallax.setTransform(i, r);\n        });\n      });\n    },\n    setTransition: function setTransition(e) {\n      void 0 === e && (e = this.params.speed);\n      this.$el.find("[data-swiper-parallax], [data-swiper-parallax-x], [data-swiper-parallax-y], [data-swiper-parallax-opacity], [data-swiper-parallax-scale]").each(function (t, i) {\n        var s = n(i),\n            a = parseInt(s.attr("data-swiper-parallax-duration"), 10) || e;\n        0 === e && (a = 0), s.transition(a);\n      });\n    }\n  },\n      he = {\n    getDistanceBetweenTouches: function getDistanceBetweenTouches(e) {\n      if (e.targetTouches.length < 2) return 1;\n      var t = e.targetTouches[0].pageX,\n          i = e.targetTouches[0].pageY,\n          s = e.targetTouches[1].pageX,\n          a = e.targetTouches[1].pageY;\n      return Math.sqrt(Math.pow(s - t, 2) + Math.pow(a - i, 2));\n    },\n    onGestureStart: function onGestureStart(e) {\n      var t = this.params.zoom,\n          i = this.zoom,\n          s = i.gesture;\n\n      if (i.fakeGestureTouched = !1, i.fakeGestureMoved = !1, !h.gestures) {\n        if ("touchstart" !== e.type || "touchstart" === e.type && e.targetTouches.length < 2) return;\n        i.fakeGestureTouched = !0, s.scaleStart = he.getDistanceBetweenTouches(e);\n      }\n\n      s.$slideEl && s.$slideEl.length || (s.$slideEl = n(e.target).closest("." + this.params.slideClass), 0 === s.$slideEl.length && (s.$slideEl = this.slides.eq(this.activeIndex)), s.$imageEl = s.$slideEl.find("img, svg, canvas, picture, .swiper-zoom-target"), s.$imageWrapEl = s.$imageEl.parent("." + t.containerClass), s.maxRatio = s.$imageWrapEl.attr("data-swiper-zoom") || t.maxRatio, 0 !== s.$imageWrapEl.length) ? (s.$imageEl && s.$imageEl.transition(0), this.zoom.isScaling = !0) : s.$imageEl = void 0;\n    },\n    onGestureChange: function onGestureChange(e) {\n      var t = this.params.zoom,\n          i = this.zoom,\n          s = i.gesture;\n\n      if (!h.gestures) {\n        if ("touchmove" !== e.type || "touchmove" === e.type && e.targetTouches.length < 2) return;\n        i.fakeGestureMoved = !0, s.scaleMove = he.getDistanceBetweenTouches(e);\n      }\n\n      s.$imageEl && 0 !== s.$imageEl.length && (i.scale = h.gestures ? e.scale * i.currentScale : s.scaleMove / s.scaleStart * i.currentScale, i.scale > s.maxRatio && (i.scale = s.maxRatio - 1 + Math.pow(i.scale - s.maxRatio + 1, .5)), i.scale < t.minRatio && (i.scale = t.minRatio + 1 - Math.pow(t.minRatio - i.scale + 1, .5)), s.$imageEl.transform("translate3d(0,0,0) scale(" + i.scale + ")"));\n    },\n    onGestureEnd: function onGestureEnd(e) {\n      var t = this.params.zoom,\n          i = this.zoom,\n          s = i.gesture;\n\n      if (!h.gestures) {\n        if (!i.fakeGestureTouched || !i.fakeGestureMoved) return;\n        if ("touchend" !== e.type || "touchend" === e.type && e.changedTouches.length < 2 && !A.android) return;\n        i.fakeGestureTouched = !1, i.fakeGestureMoved = !1;\n      }\n\n      s.$imageEl && 0 !== s.$imageEl.length && (i.scale = Math.max(Math.min(i.scale, s.maxRatio), t.minRatio), s.$imageEl.transition(this.params.speed).transform("translate3d(0,0,0) scale(" + i.scale + ")"), i.currentScale = i.scale, i.isScaling = !1, 1 === i.scale && (s.$slideEl = void 0));\n    },\n    onTouchStart: function onTouchStart(e) {\n      var t = this.zoom,\n          i = t.gesture,\n          s = t.image;\n      i.$imageEl && 0 !== i.$imageEl.length && (s.isTouched || (A.android && e.cancelable && e.preventDefault(), s.isTouched = !0, s.touchesStart.x = "touchstart" === e.type ? e.targetTouches[0].pageX : e.pageX, s.touchesStart.y = "touchstart" === e.type ? e.targetTouches[0].pageY : e.pageY));\n    },\n    onTouchMove: function onTouchMove(e) {\n      var t = this.zoom,\n          i = t.gesture,\n          s = t.image,\n          a = t.velocity;\n\n      if (i.$imageEl && 0 !== i.$imageEl.length && (this.allowClick = !1, s.isTouched && i.$slideEl)) {\n        s.isMoved || (s.width = i.$imageEl[0].offsetWidth, s.height = i.$imageEl[0].offsetHeight, s.startX = d.getTranslate(i.$imageWrapEl[0], "x") || 0, s.startY = d.getTranslate(i.$imageWrapEl[0], "y") || 0, i.slideWidth = i.$slideEl[0].offsetWidth, i.slideHeight = i.$slideEl[0].offsetHeight, i.$imageWrapEl.transition(0), this.rtl && (s.startX = -s.startX, s.startY = -s.startY));\n        var r = s.width * t.scale,\n            n = s.height * t.scale;\n\n        if (!(r < i.slideWidth && n < i.slideHeight)) {\n          if (s.minX = Math.min(i.slideWidth / 2 - r / 2, 0), s.maxX = -s.minX, s.minY = Math.min(i.slideHeight / 2 - n / 2, 0), s.maxY = -s.minY, s.touchesCurrent.x = "touchmove" === e.type ? e.targetTouches[0].pageX : e.pageX, s.touchesCurrent.y = "touchmove" === e.type ? e.targetTouches[0].pageY : e.pageY, !s.isMoved && !t.isScaling) {\n            if (this.isHorizontal() && (Math.floor(s.minX) === Math.floor(s.startX) && s.touchesCurrent.x < s.touchesStart.x || Math.floor(s.maxX) === Math.floor(s.startX) && s.touchesCurrent.x > s.touchesStart.x)) return void (s.isTouched = !1);\n            if (!this.isHorizontal() && (Math.floor(s.minY) === Math.floor(s.startY) && s.touchesCurrent.y < s.touchesStart.y || Math.floor(s.maxY) === Math.floor(s.startY) && s.touchesCurrent.y > s.touchesStart.y)) return void (s.isTouched = !1);\n          }\n\n          e.cancelable && e.preventDefault(), e.stopPropagation(), s.isMoved = !0, s.currentX = s.touchesCurrent.x - s.touchesStart.x + s.startX, s.currentY = s.touchesCurrent.y - s.touchesStart.y + s.startY, s.currentX < s.minX && (s.currentX = s.minX + 1 - Math.pow(s.minX - s.currentX + 1, .8)), s.currentX > s.maxX && (s.currentX = s.maxX - 1 + Math.pow(s.currentX - s.maxX + 1, .8)), s.currentY < s.minY && (s.currentY = s.minY + 1 - Math.pow(s.minY - s.currentY + 1, .8)), s.currentY > s.maxY && (s.currentY = s.maxY - 1 + Math.pow(s.currentY - s.maxY + 1, .8)), a.prevPositionX || (a.prevPositionX = s.touchesCurrent.x), a.prevPositionY || (a.prevPositionY = s.touchesCurrent.y), a.prevTime || (a.prevTime = Date.now()), a.x = (s.touchesCurrent.x - a.prevPositionX) / (Date.now() - a.prevTime) / 2, a.y = (s.touchesCurrent.y - a.prevPositionY) / (Date.now() - a.prevTime) / 2, Math.abs(s.touchesCurrent.x - a.prevPositionX) < 2 && (a.x = 0), Math.abs(s.touchesCurrent.y - a.prevPositionY) < 2 && (a.y = 0), a.prevPositionX = s.touchesCurrent.x, a.prevPositionY = s.touchesCurrent.y, a.prevTime = Date.now(), i.$imageWrapEl.transform("translate3d(" + s.currentX + "px, " + s.currentY + "px,0)");\n        }\n      }\n    },\n    onTouchEnd: function onTouchEnd() {\n      var e = this.zoom,\n          t = e.gesture,\n          i = e.image,\n          s = e.velocity;\n\n      if (t.$imageEl && 0 !== t.$imageEl.length) {\n        if (!i.isTouched || !i.isMoved) return i.isTouched = !1, void (i.isMoved = !1);\n        i.isTouched = !1, i.isMoved = !1;\n        var a = 300,\n            r = 300,\n            n = s.x * a,\n            o = i.currentX + n,\n            l = s.y * r,\n            d = i.currentY + l;\n        0 !== s.x && (a = Math.abs((o - i.currentX) / s.x)), 0 !== s.y && (r = Math.abs((d - i.currentY) / s.y));\n        var h = Math.max(a, r);\n        i.currentX = o, i.currentY = d;\n        var p = i.width * e.scale,\n            c = i.height * e.scale;\n        i.minX = Math.min(t.slideWidth / 2 - p / 2, 0), i.maxX = -i.minX, i.minY = Math.min(t.slideHeight / 2 - c / 2, 0), i.maxY = -i.minY, i.currentX = Math.max(Math.min(i.currentX, i.maxX), i.minX), i.currentY = Math.max(Math.min(i.currentY, i.maxY), i.minY), t.$imageWrapEl.transition(h).transform("translate3d(" + i.currentX + "px, " + i.currentY + "px,0)");\n      }\n    },\n    onTransitionEnd: function onTransitionEnd() {\n      var e = this.zoom,\n          t = e.gesture;\n      t.$slideEl && this.previousIndex !== this.activeIndex && (t.$imageEl && t.$imageEl.transform("translate3d(0,0,0) scale(1)"), t.$imageWrapEl && t.$imageWrapEl.transform("translate3d(0,0,0)"), e.scale = 1, e.currentScale = 1, t.$slideEl = void 0, t.$imageEl = void 0, t.$imageWrapEl = void 0);\n    },\n    toggle: function toggle(e) {\n      var t = this.zoom;\n      t.scale && 1 !== t.scale ? t.out() : t.in(e);\n    },\n    in: function _in(e) {\n      var t,\n          i,\n          s,\n          a,\n          r,\n          n,\n          o,\n          l,\n          d,\n          h,\n          p,\n          c,\n          u,\n          v,\n          f,\n          m,\n          g = this.zoom,\n          b = this.params.zoom,\n          w = g.gesture,\n          y = g.image;\n      (w.$slideEl || (this.params.virtual && this.params.virtual.enabled && this.virtual ? w.$slideEl = this.$wrapperEl.children("." + this.params.slideActiveClass) : w.$slideEl = this.slides.eq(this.activeIndex), w.$imageEl = w.$slideEl.find("img, svg, canvas, picture, .swiper-zoom-target"), w.$imageWrapEl = w.$imageEl.parent("." + b.containerClass)), w.$imageEl && 0 !== w.$imageEl.length) && (w.$slideEl.addClass("" + b.zoomedSlideClass), void 0 === y.touchesStart.x && e ? (t = "touchend" === e.type ? e.changedTouches[0].pageX : e.pageX, i = "touchend" === e.type ? e.changedTouches[0].pageY : e.pageY) : (t = y.touchesStart.x, i = y.touchesStart.y), g.scale = w.$imageWrapEl.attr("data-swiper-zoom") || b.maxRatio, g.currentScale = w.$imageWrapEl.attr("data-swiper-zoom") || b.maxRatio, e ? (f = w.$slideEl[0].offsetWidth, m = w.$slideEl[0].offsetHeight, s = w.$slideEl.offset().left + f / 2 - t, a = w.$slideEl.offset().top + m / 2 - i, o = w.$imageEl[0].offsetWidth, l = w.$imageEl[0].offsetHeight, d = o * g.scale, h = l * g.scale, u = -(p = Math.min(f / 2 - d / 2, 0)), v = -(c = Math.min(m / 2 - h / 2, 0)), (r = s * g.scale) < p && (r = p), r > u && (r = u), (n = a * g.scale) < c && (n = c), n > v && (n = v)) : (r = 0, n = 0), w.$imageWrapEl.transition(300).transform("translate3d(" + r + "px, " + n + "px,0)"), w.$imageEl.transition(300).transform("translate3d(0,0,0) scale(" + g.scale + ")"));\n    },\n    out: function out() {\n      var e = this.zoom,\n          t = this.params.zoom,\n          i = e.gesture;\n      i.$slideEl || (this.params.virtual && this.params.virtual.enabled && this.virtual ? i.$slideEl = this.$wrapperEl.children("." + this.params.slideActiveClass) : i.$slideEl = this.slides.eq(this.activeIndex), i.$imageEl = i.$slideEl.find("img, svg, canvas, picture, .swiper-zoom-target"), i.$imageWrapEl = i.$imageEl.parent("." + t.containerClass)), i.$imageEl && 0 !== i.$imageEl.length && (e.scale = 1, e.currentScale = 1, i.$imageWrapEl.transition(300).transform("translate3d(0,0,0)"), i.$imageEl.transition(300).transform("translate3d(0,0,0) scale(1)"), i.$slideEl.removeClass("" + t.zoomedSlideClass), i.$slideEl = void 0);\n    },\n    enable: function enable() {\n      var e = this.zoom;\n\n      if (!e.enabled) {\n        e.enabled = !0;\n        var t = !("touchstart" !== this.touchEvents.start || !h.passiveListener || !this.params.passiveListeners) && {\n          passive: !0,\n          capture: !1\n        },\n            i = !h.passiveListener || {\n          passive: !1,\n          capture: !0\n        },\n            s = "." + this.params.slideClass;\n        h.gestures ? (this.$wrapperEl.on("gesturestart", s, e.onGestureStart, t), this.$wrapperEl.on("gesturechange", s, e.onGestureChange, t), this.$wrapperEl.on("gestureend", s, e.onGestureEnd, t)) : "touchstart" === this.touchEvents.start && (this.$wrapperEl.on(this.touchEvents.start, s, e.onGestureStart, t), this.$wrapperEl.on(this.touchEvents.move, s, e.onGestureChange, i), this.$wrapperEl.on(this.touchEvents.end, s, e.onGestureEnd, t), this.touchEvents.cancel && this.$wrapperEl.on(this.touchEvents.cancel, s, e.onGestureEnd, t)), this.$wrapperEl.on(this.touchEvents.move, "." + this.params.zoom.containerClass, e.onTouchMove, i);\n      }\n    },\n    disable: function disable() {\n      var e = this.zoom;\n\n      if (e.enabled) {\n        this.zoom.enabled = !1;\n        var t = !("touchstart" !== this.touchEvents.start || !h.passiveListener || !this.params.passiveListeners) && {\n          passive: !0,\n          capture: !1\n        },\n            i = !h.passiveListener || {\n          passive: !1,\n          capture: !0\n        },\n            s = "." + this.params.slideClass;\n        h.gestures ? (this.$wrapperEl.off("gesturestart", s, e.onGestureStart, t), this.$wrapperEl.off("gesturechange", s, e.onGestureChange, t), this.$wrapperEl.off("gestureend", s, e.onGestureEnd, t)) : "touchstart" === this.touchEvents.start && (this.$wrapperEl.off(this.touchEvents.start, s, e.onGestureStart, t), this.$wrapperEl.off(this.touchEvents.move, s, e.onGestureChange, i), this.$wrapperEl.off(this.touchEvents.end, s, e.onGestureEnd, t), this.touchEvents.cancel && this.$wrapperEl.off(this.touchEvents.cancel, s, e.onGestureEnd, t)), this.$wrapperEl.off(this.touchEvents.move, "." + this.params.zoom.containerClass, e.onTouchMove, i);\n      }\n    }\n  },\n      pe = {\n    loadInSlide: function loadInSlide(e, t) {\n      void 0 === t && (t = !0);\n      var i = this,\n          s = i.params.lazy;\n\n      if (void 0 !== e && 0 !== i.slides.length) {\n        var a = i.virtual && i.params.virtual.enabled ? i.$wrapperEl.children("." + i.params.slideClass + \'[data-swiper-slide-index="\' + e + \'"]\') : i.slides.eq(e),\n            r = a.find("." + s.elementClass + ":not(." + s.loadedClass + "):not(." + s.loadingClass + ")");\n        !a.hasClass(s.elementClass) || a.hasClass(s.loadedClass) || a.hasClass(s.loadingClass) || (r = r.add(a[0])), 0 !== r.length && r.each(function (e, r) {\n          var o = n(r);\n          o.addClass(s.loadingClass);\n          var l = o.attr("data-background"),\n              d = o.attr("data-src"),\n              h = o.attr("data-srcset"),\n              p = o.attr("data-sizes"),\n              c = o.parent("picture");\n          i.loadImage(o[0], d || l, h, p, !1, function () {\n            if (null != i && i && (!i || i.params) && !i.destroyed) {\n              if (l ? (o.css("background-image", \'url("\' + l + \'")\'), o.removeAttr("data-background")) : (h && (o.attr("srcset", h), o.removeAttr("data-srcset")), p && (o.attr("sizes", p), o.removeAttr("data-sizes")), c.length && c.children("source").each(function (e, t) {\n                var i = n(t);\n                i.attr("data-srcset") && (i.attr("srcset", i.attr("data-srcset")), i.removeAttr("data-srcset"));\n              }), d && (o.attr("src", d), o.removeAttr("data-src"))), o.addClass(s.loadedClass).removeClass(s.loadingClass), a.find("." + s.preloaderClass).remove(), i.params.loop && t) {\n                var e = a.attr("data-swiper-slide-index");\n\n                if (a.hasClass(i.params.slideDuplicateClass)) {\n                  var r = i.$wrapperEl.children(\'[data-swiper-slide-index="\' + e + \'"]:not(.\' + i.params.slideDuplicateClass + ")");\n                  i.lazy.loadInSlide(r.index(), !1);\n                } else {\n                  var u = i.$wrapperEl.children("." + i.params.slideDuplicateClass + \'[data-swiper-slide-index="\' + e + \'"]\');\n                  i.lazy.loadInSlide(u.index(), !1);\n                }\n              }\n\n              i.emit("lazyImageReady", a[0], o[0]), i.params.autoHeight && i.updateAutoHeight();\n            }\n          }), i.emit("lazyImageLoad", a[0], o[0]);\n        });\n      }\n    },\n    load: function load() {\n      var e = this,\n          t = e.$wrapperEl,\n          i = e.params,\n          s = e.slides,\n          a = e.activeIndex,\n          r = e.virtual && i.virtual.enabled,\n          o = i.lazy,\n          l = i.slidesPerView;\n\n      function d(e) {\n        if (r) {\n          if (t.children("." + i.slideClass + \'[data-swiper-slide-index="\' + e + \'"]\').length) return !0;\n        } else if (s[e]) return !0;\n\n        return !1;\n      }\n\n      function h(e) {\n        return r ? n(e).attr("data-swiper-slide-index") : n(e).index();\n      }\n\n      if ("auto" === l && (l = 0), e.lazy.initialImageLoaded || (e.lazy.initialImageLoaded = !0), e.params.watchSlidesVisibility) t.children("." + i.slideVisibleClass).each(function (t, i) {\n        var s = r ? n(i).attr("data-swiper-slide-index") : n(i).index();\n        e.lazy.loadInSlide(s);\n      });else if (l > 1) for (var p = a; p < a + l; p += 1) {\n        d(p) && e.lazy.loadInSlide(p);\n      } else e.lazy.loadInSlide(a);\n      if (o.loadPrevNext) if (l > 1 || o.loadPrevNextAmount && o.loadPrevNextAmount > 1) {\n        for (var c = o.loadPrevNextAmount, u = l, v = Math.min(a + u + Math.max(c, u), s.length), f = Math.max(a - Math.max(u, c), 0), m = a + l; m < v; m += 1) {\n          d(m) && e.lazy.loadInSlide(m);\n        }\n\n        for (var g = f; g < a; g += 1) {\n          d(g) && e.lazy.loadInSlide(g);\n        }\n      } else {\n        var b = t.children("." + i.slideNextClass);\n        b.length > 0 && e.lazy.loadInSlide(h(b));\n        var w = t.children("." + i.slidePrevClass);\n        w.length > 0 && e.lazy.loadInSlide(h(w));\n      }\n    }\n  },\n      ce = {\n    LinearSpline: function LinearSpline(e, t) {\n      var i,\n          s,\n          a,\n          r,\n          n,\n          o = function o(e, t) {\n        for (s = -1, i = e.length; i - s > 1;) {\n          e[a = i + s >> 1] <= t ? s = a : i = a;\n        }\n\n        return i;\n      };\n\n      return this.x = e, this.y = t, this.lastIndex = e.length - 1, this.interpolate = function (e) {\n        return e ? (n = o(this.x, e), r = n - 1, (e - this.x[r]) * (this.y[n] - this.y[r]) / (this.x[n] - this.x[r]) + this.y[r]) : 0;\n      }, this;\n    },\n    getInterpolateFunction: function getInterpolateFunction(e) {\n      this.controller.spline || (this.controller.spline = this.params.loop ? new ce.LinearSpline(this.slidesGrid, e.slidesGrid) : new ce.LinearSpline(this.snapGrid, e.snapGrid));\n    },\n    setTranslate: function setTranslate(e, t) {\n      var i,\n          s,\n          a = this,\n          r = a.controller.control;\n\n      function n(e) {\n        var t = a.rtlTranslate ? -a.translate : a.translate;\n        "slide" === a.params.controller.by && (a.controller.getInterpolateFunction(e), s = -a.controller.spline.interpolate(-t)), s && "container" !== a.params.controller.by || (i = (e.maxTranslate() - e.minTranslate()) / (a.maxTranslate() - a.minTranslate()), s = (t - a.minTranslate()) * i + e.minTranslate()), a.params.controller.inverse && (s = e.maxTranslate() - s), e.updateProgress(s), e.setTranslate(s, a), e.updateActiveIndex(), e.updateSlidesClasses();\n      }\n\n      if (Array.isArray(r)) for (var o = 0; o < r.length; o += 1) {\n        r[o] !== t && r[o] instanceof j && n(r[o]);\n      } else r instanceof j && t !== r && n(r);\n    },\n    setTransition: function setTransition(e, t) {\n      var i,\n          s = this,\n          a = s.controller.control;\n\n      function r(t) {\n        t.setTransition(e, s), 0 !== e && (t.transitionStart(), t.params.autoHeight && d.nextTick(function () {\n          t.updateAutoHeight();\n        }), t.$wrapperEl.transitionEnd(function () {\n          a && (t.params.loop && "slide" === s.params.controller.by && t.loopFix(), t.transitionEnd());\n        }));\n      }\n\n      if (Array.isArray(a)) for (i = 0; i < a.length; i += 1) {\n        a[i] !== t && a[i] instanceof j && r(a[i]);\n      } else a instanceof j && t !== a && r(a);\n    }\n  },\n      ue = {\n    makeElFocusable: function makeElFocusable(e) {\n      return e.attr("tabIndex", "0"), e;\n    },\n    makeElNotFocusable: function makeElNotFocusable(e) {\n      return e.attr("tabIndex", "-1"), e;\n    },\n    addElRole: function addElRole(e, t) {\n      return e.attr("role", t), e;\n    },\n    addElLabel: function addElLabel(e, t) {\n      return e.attr("aria-label", t), e;\n    },\n    disableEl: function disableEl(e) {\n      return e.attr("aria-disabled", !0), e;\n    },\n    enableEl: function enableEl(e) {\n      return e.attr("aria-disabled", !1), e;\n    },\n    onEnterKey: function onEnterKey(e) {\n      var t = this.params.a11y;\n\n      if (13 === e.keyCode) {\n        var i = n(e.target);\n        this.navigation && this.navigation.$nextEl && i.is(this.navigation.$nextEl) && (this.isEnd && !this.params.loop || this.slideNext(), this.isEnd ? this.a11y.notify(t.lastSlideMessage) : this.a11y.notify(t.nextSlideMessage)), this.navigation && this.navigation.$prevEl && i.is(this.navigation.$prevEl) && (this.isBeginning && !this.params.loop || this.slidePrev(), this.isBeginning ? this.a11y.notify(t.firstSlideMessage) : this.a11y.notify(t.prevSlideMessage)), this.pagination && i.is("." + this.params.pagination.bulletClass) && i[0].click();\n      }\n    },\n    notify: function notify(e) {\n      var t = this.a11y.liveRegion;\n      0 !== t.length && (t.html(""), t.html(e));\n    },\n    updateNavigation: function updateNavigation() {\n      if (!this.params.loop && this.navigation) {\n        var e = this.navigation,\n            t = e.$nextEl,\n            i = e.$prevEl;\n        i && i.length > 0 && (this.isBeginning ? (this.a11y.disableEl(i), this.a11y.makeElNotFocusable(i)) : (this.a11y.enableEl(i), this.a11y.makeElFocusable(i))), t && t.length > 0 && (this.isEnd ? (this.a11y.disableEl(t), this.a11y.makeElNotFocusable(t)) : (this.a11y.enableEl(t), this.a11y.makeElFocusable(t)));\n      }\n    },\n    updatePagination: function updatePagination() {\n      var e = this,\n          t = e.params.a11y;\n      e.pagination && e.params.pagination.clickable && e.pagination.bullets && e.pagination.bullets.length && e.pagination.bullets.each(function (i, s) {\n        var a = n(s);\n        e.a11y.makeElFocusable(a), e.a11y.addElRole(a, "button"), e.a11y.addElLabel(a, t.paginationBulletMessage.replace(/\\{\\{index\\}\\}/, a.index() + 1));\n      });\n    },\n    init: function init() {\n      this.$el.append(this.a11y.liveRegion);\n      var e,\n          t,\n          i = this.params.a11y;\n      this.navigation && this.navigation.$nextEl && (e = this.navigation.$nextEl), this.navigation && this.navigation.$prevEl && (t = this.navigation.$prevEl), e && (this.a11y.makeElFocusable(e), this.a11y.addElRole(e, "button"), this.a11y.addElLabel(e, i.nextSlideMessage), e.on("keydown", this.a11y.onEnterKey)), t && (this.a11y.makeElFocusable(t), this.a11y.addElRole(t, "button"), this.a11y.addElLabel(t, i.prevSlideMessage), t.on("keydown", this.a11y.onEnterKey)), this.pagination && this.params.pagination.clickable && this.pagination.bullets && this.pagination.bullets.length && this.pagination.$el.on("keydown", "." + this.params.pagination.bulletClass, this.a11y.onEnterKey);\n    },\n    destroy: function destroy() {\n      var e, t;\n      this.a11y.liveRegion && this.a11y.liveRegion.length > 0 && this.a11y.liveRegion.remove(), this.navigation && this.navigation.$nextEl && (e = this.navigation.$nextEl), this.navigation && this.navigation.$prevEl && (t = this.navigation.$prevEl), e && e.off("keydown", this.a11y.onEnterKey), t && t.off("keydown", this.a11y.onEnterKey), this.pagination && this.params.pagination.clickable && this.pagination.bullets && this.pagination.bullets.length && this.pagination.$el.off("keydown", "." + this.params.pagination.bulletClass, this.a11y.onEnterKey);\n    }\n  },\n      ve = {\n    init: function init() {\n      if (this.params.history) {\n        if (!a.history || !a.history.pushState) return this.params.history.enabled = !1, void (this.params.hashNavigation.enabled = !0);\n        var e = this.history;\n        e.initialized = !0, e.paths = ve.getPathValues(), (e.paths.key || e.paths.value) && (e.scrollToSlide(0, e.paths.value, this.params.runCallbacksOnInit), this.params.history.replaceState || a.addEventListener("popstate", this.history.setHistoryPopState));\n      }\n    },\n    destroy: function destroy() {\n      this.params.history.replaceState || a.removeEventListener("popstate", this.history.setHistoryPopState);\n    },\n    setHistoryPopState: function setHistoryPopState() {\n      this.history.paths = ve.getPathValues(), this.history.scrollToSlide(this.params.speed, this.history.paths.value, !1);\n    },\n    getPathValues: function getPathValues() {\n      var e = a.location.pathname.slice(1).split("/").filter(function (e) {\n        return "" !== e;\n      }),\n          t = e.length;\n      return {\n        key: e[t - 2],\n        value: e[t - 1]\n      };\n    },\n    setHistory: function setHistory(e, t) {\n      if (this.history.initialized && this.params.history.enabled) {\n        var i = this.slides.eq(t),\n            s = ve.slugify(i.attr("data-history"));\n        a.location.pathname.includes(e) || (s = e + "/" + s);\n        var r = a.history.state;\n        r && r.value === s || (this.params.history.replaceState ? a.history.replaceState({\n          value: s\n        }, null, s) : a.history.pushState({\n          value: s\n        }, null, s));\n      }\n    },\n    slugify: function slugify(e) {\n      return e.toString().replace(/\\s+/g, "-").replace(/[^\\w-]+/g, "").replace(/--+/g, "-").replace(/^-+/, "").replace(/-+$/, "");\n    },\n    scrollToSlide: function scrollToSlide(e, t, i) {\n      if (t) for (var s = 0, a = this.slides.length; s < a; s += 1) {\n        var r = this.slides.eq(s);\n\n        if (ve.slugify(r.attr("data-history")) === t && !r.hasClass(this.params.slideDuplicateClass)) {\n          var n = r.index();\n          this.slideTo(n, e, i);\n        }\n      } else this.slideTo(0, e, i);\n    }\n  },\n      fe = {\n    onHashCange: function onHashCange() {\n      this.emit("hashChange");\n      var e = i.location.hash.replace("#", "");\n\n      if (e !== this.slides.eq(this.activeIndex).attr("data-hash")) {\n        var t = this.$wrapperEl.children("." + this.params.slideClass + \'[data-hash="\' + e + \'"]\').index();\n        if (void 0 === t) return;\n        this.slideTo(t);\n      }\n    },\n    setHash: function setHash() {\n      if (this.hashNavigation.initialized && this.params.hashNavigation.enabled) if (this.params.hashNavigation.replaceState && a.history && a.history.replaceState) a.history.replaceState(null, null, "#" + this.slides.eq(this.activeIndex).attr("data-hash") || false), this.emit("hashSet");else {\n        var e = this.slides.eq(this.activeIndex),\n            t = e.attr("data-hash") || e.attr("data-history");\n        i.location.hash = t || "", this.emit("hashSet");\n      }\n    },\n    init: function init() {\n      if (!(!this.params.hashNavigation.enabled || this.params.history && this.params.history.enabled)) {\n        this.hashNavigation.initialized = !0;\n        var e = i.location.hash.replace("#", "");\n        if (e) for (var t = 0, s = this.slides.length; t < s; t += 1) {\n          var r = this.slides.eq(t);\n\n          if ((r.attr("data-hash") || r.attr("data-history")) === e && !r.hasClass(this.params.slideDuplicateClass)) {\n            var o = r.index();\n            this.slideTo(o, 0, this.params.runCallbacksOnInit, !0);\n          }\n        }\n        this.params.hashNavigation.watchState && n(a).on("hashchange", this.hashNavigation.onHashCange);\n      }\n    },\n    destroy: function destroy() {\n      this.params.hashNavigation.watchState && n(a).off("hashchange", this.hashNavigation.onHashCange);\n    }\n  },\n      me = {\n    run: function run() {\n      var e = this,\n          t = e.slides.eq(e.activeIndex),\n          i = e.params.autoplay.delay;\n      t.attr("data-swiper-autoplay") && (i = t.attr("data-swiper-autoplay") || e.params.autoplay.delay), clearTimeout(e.autoplay.timeout), e.autoplay.timeout = d.nextTick(function () {\n        e.params.autoplay.reverseDirection ? e.params.loop ? (e.loopFix(), e.slidePrev(e.params.speed, !0, !0), e.emit("autoplay")) : e.isBeginning ? e.params.autoplay.stopOnLastSlide ? e.autoplay.stop() : (e.slideTo(e.slides.length - 1, e.params.speed, !0, !0), e.emit("autoplay")) : (e.slidePrev(e.params.speed, !0, !0), e.emit("autoplay")) : e.params.loop ? (e.loopFix(), e.slideNext(e.params.speed, !0, !0), e.emit("autoplay")) : e.isEnd ? e.params.autoplay.stopOnLastSlide ? e.autoplay.stop() : (e.slideTo(0, e.params.speed, !0, !0), e.emit("autoplay")) : (e.slideNext(e.params.speed, !0, !0), e.emit("autoplay")), e.params.cssMode && e.autoplay.running && e.autoplay.run();\n      }, i);\n    },\n    start: function start() {\n      return void 0 === this.autoplay.timeout && !this.autoplay.running && (this.autoplay.running = !0, this.emit("autoplayStart"), this.autoplay.run(), !0);\n    },\n    stop: function stop() {\n      return !!this.autoplay.running && void 0 !== this.autoplay.timeout && (this.autoplay.timeout && (clearTimeout(this.autoplay.timeout), this.autoplay.timeout = void 0), this.autoplay.running = !1, this.emit("autoplayStop"), !0);\n    },\n    pause: function pause(e) {\n      this.autoplay.running && (this.autoplay.paused || (this.autoplay.timeout && clearTimeout(this.autoplay.timeout), this.autoplay.paused = !0, 0 !== e && this.params.autoplay.waitForTransition ? (this.$wrapperEl[0].addEventListener("transitionend", this.autoplay.onTransitionEnd), this.$wrapperEl[0].addEventListener("webkitTransitionEnd", this.autoplay.onTransitionEnd)) : (this.autoplay.paused = !1, this.autoplay.run())));\n    }\n  },\n      ge = {\n    setTranslate: function setTranslate() {\n      for (var e = this.slides, t = 0; t < e.length; t += 1) {\n        var i = this.slides.eq(t),\n            s = -i[0].swiperSlideOffset;\n        this.params.virtualTranslate || (s -= this.translate);\n        var a = 0;\n        this.isHorizontal() || (a = s, s = 0);\n        var r = this.params.fadeEffect.crossFade ? Math.max(1 - Math.abs(i[0].progress), 0) : 1 + Math.min(Math.max(i[0].progress, -1), 0);\n        i.css({\n          opacity: r\n        }).transform("translate3d(" + s + "px, " + a + "px, 0px)");\n      }\n    },\n    setTransition: function setTransition(e) {\n      var t = this,\n          i = t.slides,\n          s = t.$wrapperEl;\n\n      if (i.transition(e), t.params.virtualTranslate && 0 !== e) {\n        var a = !1;\n        i.transitionEnd(function () {\n          if (!a && t && !t.destroyed) {\n            a = !0, t.animating = !1;\n\n            for (var e = ["webkitTransitionEnd", "transitionend"], i = 0; i < e.length; i += 1) {\n              s.trigger(e[i]);\n            }\n          }\n        });\n      }\n    }\n  },\n      be = {\n    setTranslate: function setTranslate() {\n      var e,\n          t = this.$el,\n          i = this.$wrapperEl,\n          s = this.slides,\n          a = this.width,\n          r = this.height,\n          o = this.rtlTranslate,\n          l = this.size,\n          d = this.params.cubeEffect,\n          h = this.isHorizontal(),\n          p = this.virtual && this.params.virtual.enabled,\n          c = 0;\n      d.shadow && (h ? (0 === (e = i.find(".swiper-cube-shadow")).length && (e = n(\'<div class="swiper-cube-shadow"><\/div>\'), i.append(e)), e.css({\n        height: a + "px"\n      })) : 0 === (e = t.find(".swiper-cube-shadow")).length && (e = n(\'<div class="swiper-cube-shadow"><\/div>\'), t.append(e)));\n\n      for (var u = 0; u < s.length; u += 1) {\n        var v = s.eq(u),\n            f = u;\n        p && (f = parseInt(v.attr("data-swiper-slide-index"), 10));\n        var m = 90 * f,\n            g = Math.floor(m / 360);\n        o && (m = -m, g = Math.floor(-m / 360));\n        var b = Math.max(Math.min(v[0].progress, 1), -1),\n            w = 0,\n            y = 0,\n            x = 0;\n        f % 4 == 0 ? (w = 4 * -g * l, x = 0) : (f - 1) % 4 == 0 ? (w = 0, x = 4 * -g * l) : (f - 2) % 4 == 0 ? (w = l + 4 * g * l, x = l) : (f - 3) % 4 == 0 && (w = -l, x = 3 * l + 4 * l * g), o && (w = -w), h || (y = w, w = 0);\n        var E = "rotateX(" + (h ? 0 : -m) + "deg) rotateY(" + (h ? m : 0) + "deg) translate3d(" + w + "px, " + y + "px, " + x + "px)";\n\n        if (b <= 1 && b > -1 && (c = 90 * f + 90 * b, o && (c = 90 * -f - 90 * b)), v.transform(E), d.slideShadows) {\n          var T = h ? v.find(".swiper-slide-shadow-left") : v.find(".swiper-slide-shadow-top"),\n              S = h ? v.find(".swiper-slide-shadow-right") : v.find(".swiper-slide-shadow-bottom");\n          0 === T.length && (T = n(\'<div class="swiper-slide-shadow-\' + (h ? "left" : "top") + \'"><\/div>\'), v.append(T)), 0 === S.length && (S = n(\'<div class="swiper-slide-shadow-\' + (h ? "right" : "bottom") + \'"><\/div>\'), v.append(S)), T.length && (T[0].style.opacity = Math.max(-b, 0)), S.length && (S[0].style.opacity = Math.max(b, 0));\n        }\n      }\n\n      if (i.css({\n        "-webkit-transform-origin": "50% 50% -" + l / 2 + "px",\n        "-moz-transform-origin": "50% 50% -" + l / 2 + "px",\n        "-ms-transform-origin": "50% 50% -" + l / 2 + "px",\n        "transform-origin": "50% 50% -" + l / 2 + "px"\n      }), d.shadow) if (h) e.transform("translate3d(0px, " + (a / 2 + d.shadowOffset) + "px, " + -a / 2 + "px) rotateX(90deg) rotateZ(0deg) scale(" + d.shadowScale + ")");else {\n        var C = Math.abs(c) - 90 * Math.floor(Math.abs(c) / 90),\n            M = 1.5 - (Math.sin(2 * C * Math.PI / 360) / 2 + Math.cos(2 * C * Math.PI / 360) / 2),\n            P = d.shadowScale,\n            z = d.shadowScale / M,\n            k = d.shadowOffset;\n        e.transform("scale3d(" + P + ", 1, " + z + ") translate3d(0px, " + (r / 2 + k) + "px, " + -r / 2 / z + "px) rotateX(-90deg)");\n      }\n      var $ = _.isSafari || _.isWebView ? -l / 2 : 0;\n      i.transform("translate3d(0px,0," + $ + "px) rotateX(" + (this.isHorizontal() ? 0 : c) + "deg) rotateY(" + (this.isHorizontal() ? -c : 0) + "deg)");\n    },\n    setTransition: function setTransition(e) {\n      var t = this.$el;\n      this.slides.transition(e).find(".swiper-slide-shadow-top, .swiper-slide-shadow-right, .swiper-slide-shadow-bottom, .swiper-slide-shadow-left").transition(e), this.params.cubeEffect.shadow && !this.isHorizontal() && t.find(".swiper-cube-shadow").transition(e);\n    }\n  },\n      we = {\n    setTranslate: function setTranslate() {\n      for (var e = this.slides, t = this.rtlTranslate, i = 0; i < e.length; i += 1) {\n        var s = e.eq(i),\n            a = s[0].progress;\n        this.params.flipEffect.limitRotation && (a = Math.max(Math.min(s[0].progress, 1), -1));\n        var r = -180 * a,\n            o = 0,\n            l = -s[0].swiperSlideOffset,\n            d = 0;\n\n        if (this.isHorizontal() ? t && (r = -r) : (d = l, l = 0, o = -r, r = 0), s[0].style.zIndex = -Math.abs(Math.round(a)) + e.length, this.params.flipEffect.slideShadows) {\n          var h = this.isHorizontal() ? s.find(".swiper-slide-shadow-left") : s.find(".swiper-slide-shadow-top"),\n              p = this.isHorizontal() ? s.find(".swiper-slide-shadow-right") : s.find(".swiper-slide-shadow-bottom");\n          0 === h.length && (h = n(\'<div class="swiper-slide-shadow-\' + (this.isHorizontal() ? "left" : "top") + \'"><\/div>\'), s.append(h)), 0 === p.length && (p = n(\'<div class="swiper-slide-shadow-\' + (this.isHorizontal() ? "right" : "bottom") + \'"><\/div>\'), s.append(p)), h.length && (h[0].style.opacity = Math.max(-a, 0)), p.length && (p[0].style.opacity = Math.max(a, 0));\n        }\n\n        s.transform("translate3d(" + l + "px, " + d + "px, 0px) rotateX(" + o + "deg) rotateY(" + r + "deg)");\n      }\n    },\n    setTransition: function setTransition(e) {\n      var t = this,\n          i = t.slides,\n          s = t.activeIndex,\n          a = t.$wrapperEl;\n\n      if (i.transition(e).find(".swiper-slide-shadow-top, .swiper-slide-shadow-right, .swiper-slide-shadow-bottom, .swiper-slide-shadow-left").transition(e), t.params.virtualTranslate && 0 !== e) {\n        var r = !1;\n        i.eq(s).transitionEnd(function () {\n          if (!r && t && !t.destroyed) {\n            r = !0, t.animating = !1;\n\n            for (var e = ["webkitTransitionEnd", "transitionend"], i = 0; i < e.length; i += 1) {\n              a.trigger(e[i]);\n            }\n          }\n        });\n      }\n    }\n  },\n      ye = {\n    setTranslate: function setTranslate() {\n      for (var e = this.width, t = this.height, i = this.slides, s = this.$wrapperEl, a = this.slidesSizesGrid, r = this.params.coverflowEffect, o = this.isHorizontal(), l = this.translate, d = o ? e / 2 - l : t / 2 - l, p = o ? r.rotate : -r.rotate, c = r.depth, u = 0, v = i.length; u < v; u += 1) {\n        var f = i.eq(u),\n            m = a[u],\n            g = (d - f[0].swiperSlideOffset - m / 2) / m * r.modifier,\n            b = o ? p * g : 0,\n            w = o ? 0 : p * g,\n            y = -c * Math.abs(g),\n            x = r.stretch;\n        "string" == typeof x && -1 !== x.indexOf("%") && (x = parseFloat(r.stretch) / 100 * m);\n        var E = o ? 0 : x * g,\n            T = o ? x * g : 0,\n            S = 1 - (1 - r.scale) * Math.abs(g);\n        Math.abs(T) < .001 && (T = 0), Math.abs(E) < .001 && (E = 0), Math.abs(y) < .001 && (y = 0), Math.abs(b) < .001 && (b = 0), Math.abs(w) < .001 && (w = 0), Math.abs(S) < .001 && (S = 0);\n        var C = "translate3d(" + T + "px," + E + "px," + y + "px)  rotateX(" + w + "deg) rotateY(" + b + "deg) scale(" + S + ")";\n\n        if (f.transform(C), f[0].style.zIndex = 1 - Math.abs(Math.round(g)), r.slideShadows) {\n          var M = o ? f.find(".swiper-slide-shadow-left") : f.find(".swiper-slide-shadow-top"),\n              P = o ? f.find(".swiper-slide-shadow-right") : f.find(".swiper-slide-shadow-bottom");\n          0 === M.length && (M = n(\'<div class="swiper-slide-shadow-\' + (o ? "left" : "top") + \'"><\/div>\'), f.append(M)), 0 === P.length && (P = n(\'<div class="swiper-slide-shadow-\' + (o ? "right" : "bottom") + \'"><\/div>\'), f.append(P)), M.length && (M[0].style.opacity = g > 0 ? g : 0), P.length && (P[0].style.opacity = -g > 0 ? -g : 0);\n        }\n      }\n\n      (h.pointerEvents || h.prefixedPointerEvents) && (s[0].style.perspectiveOrigin = d + "px 50%");\n    },\n    setTransition: function setTransition(e) {\n      this.slides.transition(e).find(".swiper-slide-shadow-top, .swiper-slide-shadow-right, .swiper-slide-shadow-bottom, .swiper-slide-shadow-left").transition(e);\n    }\n  },\n      xe = {\n    init: function init() {\n      var e = this.params.thumbs,\n          t = this.constructor;\n      e.swiper instanceof t ? (this.thumbs.swiper = e.swiper, d.extend(this.thumbs.swiper.originalParams, {\n        watchSlidesProgress: !0,\n        slideToClickedSlide: !1\n      }), d.extend(this.thumbs.swiper.params, {\n        watchSlidesProgress: !0,\n        slideToClickedSlide: !1\n      })) : d.isObject(e.swiper) && (this.thumbs.swiper = new t(d.extend({}, e.swiper, {\n        watchSlidesVisibility: !0,\n        watchSlidesProgress: !0,\n        slideToClickedSlide: !1\n      })), this.thumbs.swiperCreated = !0), this.thumbs.swiper.$el.addClass(this.params.thumbs.thumbsContainerClass), this.thumbs.swiper.on("tap", this.thumbs.onThumbClick);\n    },\n    onThumbClick: function onThumbClick() {\n      var e = this.thumbs.swiper;\n\n      if (e) {\n        var t = e.clickedIndex,\n            i = e.clickedSlide;\n\n        if (!(i && n(i).hasClass(this.params.thumbs.slideThumbActiveClass) || null == t)) {\n          var s;\n\n          if (s = e.params.loop ? parseInt(n(e.clickedSlide).attr("data-swiper-slide-index"), 10) : t, this.params.loop) {\n            var a = this.activeIndex;\n            this.slides.eq(a).hasClass(this.params.slideDuplicateClass) && (this.loopFix(), this._clientLeft = this.$wrapperEl[0].clientLeft, a = this.activeIndex);\n            var r = this.slides.eq(a).prevAll(\'[data-swiper-slide-index="\' + s + \'"]\').eq(0).index(),\n                o = this.slides.eq(a).nextAll(\'[data-swiper-slide-index="\' + s + \'"]\').eq(0).index();\n            s = void 0 === r ? o : void 0 === o ? r : o - a < a - r ? o : r;\n          }\n\n          this.slideTo(s);\n        }\n      }\n    },\n    update: function update(e) {\n      var t = this.thumbs.swiper;\n\n      if (t) {\n        var i = "auto" === t.params.slidesPerView ? t.slidesPerViewDynamic() : t.params.slidesPerView,\n            s = this.params.thumbs.autoScrollOffset,\n            a = s && !t.params.loop;\n\n        if (this.realIndex !== t.realIndex || a) {\n          var r,\n              n,\n              o = t.activeIndex;\n\n          if (t.params.loop) {\n            t.slides.eq(o).hasClass(t.params.slideDuplicateClass) && (t.loopFix(), t._clientLeft = t.$wrapperEl[0].clientLeft, o = t.activeIndex);\n            var l = t.slides.eq(o).prevAll(\'[data-swiper-slide-index="\' + this.realIndex + \'"]\').eq(0).index(),\n                d = t.slides.eq(o).nextAll(\'[data-swiper-slide-index="\' + this.realIndex + \'"]\').eq(0).index();\n            r = void 0 === l ? d : void 0 === d ? l : d - o == o - l ? o : d - o < o - l ? d : l, n = this.activeIndex > this.previousIndex ? "next" : "prev";\n          } else n = (r = this.realIndex) > this.previousIndex ? "next" : "prev";\n\n          a && (r += "next" === n ? s : -1 * s), t.visibleSlidesIndexes && t.visibleSlidesIndexes.indexOf(r) < 0 && (t.params.centeredSlides ? r = r > o ? r - Math.floor(i / 2) + 1 : r + Math.floor(i / 2) - 1 : r > o && (r = r - i + 1), t.slideTo(r, e ? 0 : void 0));\n        }\n\n        var h = 1,\n            p = this.params.thumbs.slideThumbActiveClass;\n        if (this.params.slidesPerView > 1 && !this.params.centeredSlides && (h = this.params.slidesPerView), this.params.thumbs.multipleActiveThumbs || (h = 1), h = Math.floor(h), t.slides.removeClass(p), t.params.loop || t.params.virtual && t.params.virtual.enabled) for (var c = 0; c < h; c += 1) {\n          t.$wrapperEl.children(\'[data-swiper-slide-index="\' + (this.realIndex + c) + \'"]\').addClass(p);\n        } else for (var u = 0; u < h; u += 1) {\n          t.slides.eq(this.realIndex + u).addClass(p);\n        }\n      }\n    }\n  },\n      Ee = [K, U, Z, Q, ee, ie, ae, {\n    name: "mousewheel",\n    params: {\n      mousewheel: {\n        enabled: !1,\n        releaseOnEdges: !1,\n        invert: !1,\n        forceToAxis: !1,\n        sensitivity: 1,\n        eventsTarged: "container"\n      }\n    },\n    create: function create() {\n      d.extend(this, {\n        mousewheel: {\n          enabled: !1,\n          enable: re.enable.bind(this),\n          disable: re.disable.bind(this),\n          handle: re.handle.bind(this),\n          handleMouseEnter: re.handleMouseEnter.bind(this),\n          handleMouseLeave: re.handleMouseLeave.bind(this),\n          animateSlider: re.animateSlider.bind(this),\n          releaseScroll: re.releaseScroll.bind(this),\n          lastScrollTime: d.now(),\n          lastEventBeforeSnap: void 0,\n          recentWheelEvents: []\n        }\n      });\n    },\n    on: {\n      init: function init() {\n        !this.params.mousewheel.enabled && this.params.cssMode && this.mousewheel.disable(), this.params.mousewheel.enabled && this.mousewheel.enable();\n      },\n      destroy: function destroy() {\n        this.params.cssMode && this.mousewheel.enable(), this.mousewheel.enabled && this.mousewheel.disable();\n      }\n    }\n  }, {\n    name: "navigation",\n    params: {\n      navigation: {\n        nextEl: null,\n        prevEl: null,\n        hideOnClick: !1,\n        disabledClass: "swiper-button-disabled",\n        hiddenClass: "swiper-button-hidden",\n        lockClass: "swiper-button-lock"\n      }\n    },\n    create: function create() {\n      d.extend(this, {\n        navigation: {\n          init: ne.init.bind(this),\n          update: ne.update.bind(this),\n          destroy: ne.destroy.bind(this),\n          onNextClick: ne.onNextClick.bind(this),\n          onPrevClick: ne.onPrevClick.bind(this)\n        }\n      });\n    },\n    on: {\n      init: function init() {\n        this.navigation.init(), this.navigation.update();\n      },\n      toEdge: function toEdge() {\n        this.navigation.update();\n      },\n      fromEdge: function fromEdge() {\n        this.navigation.update();\n      },\n      destroy: function destroy() {\n        this.navigation.destroy();\n      },\n      click: function click(e) {\n        var t,\n            i = this.navigation,\n            s = i.$nextEl,\n            a = i.$prevEl;\n        !this.params.navigation.hideOnClick || n(e.target).is(a) || n(e.target).is(s) || (s ? t = s.hasClass(this.params.navigation.hiddenClass) : a && (t = a.hasClass(this.params.navigation.hiddenClass)), !0 === t ? this.emit("navigationShow", this) : this.emit("navigationHide", this), s && s.toggleClass(this.params.navigation.hiddenClass), a && a.toggleClass(this.params.navigation.hiddenClass));\n      }\n    }\n  }, {\n    name: "pagination",\n    params: {\n      pagination: {\n        el: null,\n        bulletElement: "span",\n        clickable: !1,\n        hideOnClick: !1,\n        renderBullet: null,\n        renderProgressbar: null,\n        renderFraction: null,\n        renderCustom: null,\n        progressbarOpposite: !1,\n        type: "bullets",\n        dynamicBullets: !1,\n        dynamicMainBullets: 1,\n        formatFractionCurrent: function formatFractionCurrent(e) {\n          return e;\n        },\n        formatFractionTotal: function formatFractionTotal(e) {\n          return e;\n        },\n        bulletClass: "swiper-pagination-bullet",\n        bulletActiveClass: "swiper-pagination-bullet-active",\n        modifierClass: "swiper-pagination-",\n        currentClass: "swiper-pagination-current",\n        totalClass: "swiper-pagination-total",\n        hiddenClass: "swiper-pagination-hidden",\n        progressbarFillClass: "swiper-pagination-progressbar-fill",\n        progressbarOppositeClass: "swiper-pagination-progressbar-opposite",\n        clickableClass: "swiper-pagination-clickable",\n        lockClass: "swiper-pagination-lock"\n      }\n    },\n    create: function create() {\n      d.extend(this, {\n        pagination: {\n          init: oe.init.bind(this),\n          render: oe.render.bind(this),\n          update: oe.update.bind(this),\n          destroy: oe.destroy.bind(this),\n          dynamicBulletIndex: 0\n        }\n      });\n    },\n    on: {\n      init: function init() {\n        this.pagination.init(), this.pagination.render(), this.pagination.update();\n      },\n      activeIndexChange: function activeIndexChange() {\n        (this.params.loop || void 0 === this.snapIndex) && this.pagination.update();\n      },\n      snapIndexChange: function snapIndexChange() {\n        this.params.loop || this.pagination.update();\n      },\n      slidesLengthChange: function slidesLengthChange() {\n        this.params.loop && (this.pagination.render(), this.pagination.update());\n      },\n      snapGridLengthChange: function snapGridLengthChange() {\n        this.params.loop || (this.pagination.render(), this.pagination.update());\n      },\n      destroy: function destroy() {\n        this.pagination.destroy();\n      },\n      click: function click(e) {\n        this.params.pagination.el && this.params.pagination.hideOnClick && this.pagination.$el.length > 0 && !n(e.target).hasClass(this.params.pagination.bulletClass) && (!0 === this.pagination.$el.hasClass(this.params.pagination.hiddenClass) ? this.emit("paginationShow", this) : this.emit("paginationHide", this), this.pagination.$el.toggleClass(this.params.pagination.hiddenClass));\n      }\n    }\n  }, {\n    name: "scrollbar",\n    params: {\n      scrollbar: {\n        el: null,\n        dragSize: "auto",\n        hide: !1,\n        draggable: !1,\n        snapOnRelease: !0,\n        lockClass: "swiper-scrollbar-lock",\n        dragClass: "swiper-scrollbar-drag"\n      }\n    },\n    create: function create() {\n      d.extend(this, {\n        scrollbar: {\n          init: le.init.bind(this),\n          destroy: le.destroy.bind(this),\n          updateSize: le.updateSize.bind(this),\n          setTranslate: le.setTranslate.bind(this),\n          setTransition: le.setTransition.bind(this),\n          enableDraggable: le.enableDraggable.bind(this),\n          disableDraggable: le.disableDraggable.bind(this),\n          setDragPosition: le.setDragPosition.bind(this),\n          getPointerPosition: le.getPointerPosition.bind(this),\n          onDragStart: le.onDragStart.bind(this),\n          onDragMove: le.onDragMove.bind(this),\n          onDragEnd: le.onDragEnd.bind(this),\n          isTouched: !1,\n          timeout: null,\n          dragTimeout: null\n        }\n      });\n    },\n    on: {\n      init: function init() {\n        this.scrollbar.init(), this.scrollbar.updateSize(), this.scrollbar.setTranslate();\n      },\n      update: function update() {\n        this.scrollbar.updateSize();\n      },\n      resize: function resize() {\n        this.scrollbar.updateSize();\n      },\n      observerUpdate: function observerUpdate() {\n        this.scrollbar.updateSize();\n      },\n      setTranslate: function setTranslate() {\n        this.scrollbar.setTranslate();\n      },\n      setTransition: function setTransition(e) {\n        this.scrollbar.setTransition(e);\n      },\n      destroy: function destroy() {\n        this.scrollbar.destroy();\n      }\n    }\n  }, {\n    name: "parallax",\n    params: {\n      parallax: {\n        enabled: !1\n      }\n    },\n    create: function create() {\n      d.extend(this, {\n        parallax: {\n          setTransform: de.setTransform.bind(this),\n          setTranslate: de.setTranslate.bind(this),\n          setTransition: de.setTransition.bind(this)\n        }\n      });\n    },\n    on: {\n      beforeInit: function beforeInit() {\n        this.params.parallax.enabled && (this.params.watchSlidesProgress = !0, this.originalParams.watchSlidesProgress = !0);\n      },\n      init: function init() {\n        this.params.parallax.enabled && this.parallax.setTranslate();\n      },\n      setTranslate: function setTranslate() {\n        this.params.parallax.enabled && this.parallax.setTranslate();\n      },\n      setTransition: function setTransition(e) {\n        this.params.parallax.enabled && this.parallax.setTransition(e);\n      }\n    }\n  }, {\n    name: "zoom",\n    params: {\n      zoom: {\n        enabled: !1,\n        maxRatio: 3,\n        minRatio: 1,\n        toggle: !0,\n        containerClass: "swiper-zoom-container",\n        zoomedSlideClass: "swiper-slide-zoomed"\n      }\n    },\n    create: function create() {\n      var e = this,\n          t = {\n        enabled: !1,\n        scale: 1,\n        currentScale: 1,\n        isScaling: !1,\n        gesture: {\n          $slideEl: void 0,\n          slideWidth: void 0,\n          slideHeight: void 0,\n          $imageEl: void 0,\n          $imageWrapEl: void 0,\n          maxRatio: 3\n        },\n        image: {\n          isTouched: void 0,\n          isMoved: void 0,\n          currentX: void 0,\n          currentY: void 0,\n          minX: void 0,\n          minY: void 0,\n          maxX: void 0,\n          maxY: void 0,\n          width: void 0,\n          height: void 0,\n          startX: void 0,\n          startY: void 0,\n          touchesStart: {},\n          touchesCurrent: {}\n        },\n        velocity: {\n          x: void 0,\n          y: void 0,\n          prevPositionX: void 0,\n          prevPositionY: void 0,\n          prevTime: void 0\n        }\n      };\n      "onGestureStart onGestureChange onGestureEnd onTouchStart onTouchMove onTouchEnd onTransitionEnd toggle enable disable in out".split(" ").forEach(function (i) {\n        t[i] = he[i].bind(e);\n      }), d.extend(e, {\n        zoom: t\n      });\n      var i = 1;\n      Object.defineProperty(e.zoom, "scale", {\n        get: function get() {\n          return i;\n        },\n        set: function set(t) {\n          if (i !== t) {\n            var s = e.zoom.gesture.$imageEl ? e.zoom.gesture.$imageEl[0] : void 0,\n                a = e.zoom.gesture.$slideEl ? e.zoom.gesture.$slideEl[0] : void 0;\n            e.emit("zoomChange", t, s, a);\n          }\n\n          i = t;\n        }\n      });\n    },\n    on: {\n      init: function init() {\n        this.params.zoom.enabled && this.zoom.enable();\n      },\n      destroy: function destroy() {\n        this.zoom.disable();\n      },\n      touchStart: function touchStart(e) {\n        this.zoom.enabled && this.zoom.onTouchStart(e);\n      },\n      touchEnd: function touchEnd(e) {\n        this.zoom.enabled && this.zoom.onTouchEnd(e);\n      },\n      doubleTap: function doubleTap(e) {\n        this.params.zoom.enabled && this.zoom.enabled && this.params.zoom.toggle && this.zoom.toggle(e);\n      },\n      transitionEnd: function transitionEnd() {\n        this.zoom.enabled && this.params.zoom.enabled && this.zoom.onTransitionEnd();\n      },\n      slideChange: function slideChange() {\n        this.zoom.enabled && this.params.zoom.enabled && this.params.cssMode && this.zoom.onTransitionEnd();\n      }\n    }\n  }, {\n    name: "lazy",\n    params: {\n      lazy: {\n        enabled: !1,\n        loadPrevNext: !1,\n        loadPrevNextAmount: 1,\n        loadOnTransitionStart: !1,\n        elementClass: "swiper-lazy",\n        loadingClass: "swiper-lazy-loading",\n        loadedClass: "swiper-lazy-loaded",\n        preloaderClass: "swiper-lazy-preloader"\n      }\n    },\n    create: function create() {\n      d.extend(this, {\n        lazy: {\n          initialImageLoaded: !1,\n          load: pe.load.bind(this),\n          loadInSlide: pe.loadInSlide.bind(this)\n        }\n      });\n    },\n    on: {\n      beforeInit: function beforeInit() {\n        this.params.lazy.enabled && this.params.preloadImages && (this.params.preloadImages = !1);\n      },\n      init: function init() {\n        this.params.lazy.enabled && !this.params.loop && 0 === this.params.initialSlide && this.lazy.load();\n      },\n      scroll: function scroll() {\n        this.params.freeMode && !this.params.freeModeSticky && this.lazy.load();\n      },\n      resize: function resize() {\n        this.params.lazy.enabled && this.lazy.load();\n      },\n      scrollbarDragMove: function scrollbarDragMove() {\n        this.params.lazy.enabled && this.lazy.load();\n      },\n      transitionStart: function transitionStart() {\n        this.params.lazy.enabled && (this.params.lazy.loadOnTransitionStart || !this.params.lazy.loadOnTransitionStart && !this.lazy.initialImageLoaded) && this.lazy.load();\n      },\n      transitionEnd: function transitionEnd() {\n        this.params.lazy.enabled && !this.params.lazy.loadOnTransitionStart && this.lazy.load();\n      },\n      slideChange: function slideChange() {\n        this.params.lazy.enabled && this.params.cssMode && this.lazy.load();\n      }\n    }\n  }, {\n    name: "controller",\n    params: {\n      controller: {\n        control: void 0,\n        inverse: !1,\n        by: "slide"\n      }\n    },\n    create: function create() {\n      d.extend(this, {\n        controller: {\n          control: this.params.controller.control,\n          getInterpolateFunction: ce.getInterpolateFunction.bind(this),\n          setTranslate: ce.setTranslate.bind(this),\n          setTransition: ce.setTransition.bind(this)\n        }\n      });\n    },\n    on: {\n      update: function update() {\n        this.controller.control && this.controller.spline && (this.controller.spline = void 0, delete this.controller.spline);\n      },\n      resize: function resize() {\n        this.controller.control && this.controller.spline && (this.controller.spline = void 0, delete this.controller.spline);\n      },\n      observerUpdate: function observerUpdate() {\n        this.controller.control && this.controller.spline && (this.controller.spline = void 0, delete this.controller.spline);\n      },\n      setTranslate: function setTranslate(e, t) {\n        this.controller.control && this.controller.setTranslate(e, t);\n      },\n      setTransition: function setTransition(e, t) {\n        this.controller.control && this.controller.setTransition(e, t);\n      }\n    }\n  }, {\n    name: "a11y",\n    params: {\n      a11y: {\n        enabled: !0,\n        notificationClass: "swiper-notification",\n        prevSlideMessage: "Previous slide",\n        nextSlideMessage: "Next slide",\n        firstSlideMessage: "This is the first slide",\n        lastSlideMessage: "This is the last slide",\n        paginationBulletMessage: "Go to slide {{index}}"\n      }\n    },\n    create: function create() {\n      var e = this;\n      d.extend(e, {\n        a11y: {\n          liveRegion: n(\'<span class="\' + e.params.a11y.notificationClass + \'" aria-live="assertive" aria-atomic="true"><\/span>\')\n        }\n      }), Object.keys(ue).forEach(function (t) {\n        e.a11y[t] = ue[t].bind(e);\n      });\n    },\n    on: {\n      init: function init() {\n        this.params.a11y.enabled && (this.a11y.init(), this.a11y.updateNavigation());\n      },\n      toEdge: function toEdge() {\n        this.params.a11y.enabled && this.a11y.updateNavigation();\n      },\n      fromEdge: function fromEdge() {\n        this.params.a11y.enabled && this.a11y.updateNavigation();\n      },\n      paginationUpdate: function paginationUpdate() {\n        this.params.a11y.enabled && this.a11y.updatePagination();\n      },\n      destroy: function destroy() {\n        this.params.a11y.enabled && this.a11y.destroy();\n      }\n    }\n  }, {\n    name: "history",\n    params: {\n      history: {\n        enabled: !1,\n        replaceState: !1,\n        key: "slides"\n      }\n    },\n    create: function create() {\n      d.extend(this, {\n        history: {\n          init: ve.init.bind(this),\n          setHistory: ve.setHistory.bind(this),\n          setHistoryPopState: ve.setHistoryPopState.bind(this),\n          scrollToSlide: ve.scrollToSlide.bind(this),\n          destroy: ve.destroy.bind(this)\n        }\n      });\n    },\n    on: {\n      init: function init() {\n        this.params.history.enabled && this.history.init();\n      },\n      destroy: function destroy() {\n        this.params.history.enabled && this.history.destroy();\n      },\n      transitionEnd: function transitionEnd() {\n        this.history.initialized && this.history.setHistory(this.params.history.key, this.activeIndex);\n      },\n      slideChange: function slideChange() {\n        this.history.initialized && this.params.cssMode && this.history.setHistory(this.params.history.key, this.activeIndex);\n      }\n    }\n  }, {\n    name: "hash-navigation",\n    params: {\n      hashNavigation: {\n        enabled: !1,\n        replaceState: !1,\n        watchState: !1\n      }\n    },\n    create: function create() {\n      d.extend(this, {\n        hashNavigation: {\n          initialized: !1,\n          init: fe.init.bind(this),\n          destroy: fe.destroy.bind(this),\n          setHash: fe.setHash.bind(this),\n          onHashCange: fe.onHashCange.bind(this)\n        }\n      });\n    },\n    on: {\n      init: function init() {\n        this.params.hashNavigation.enabled && this.hashNavigation.init();\n      },\n      destroy: function destroy() {\n        this.params.hashNavigation.enabled && this.hashNavigation.destroy();\n      },\n      transitionEnd: function transitionEnd() {\n        this.hashNavigation.initialized && this.hashNavigation.setHash();\n      },\n      slideChange: function slideChange() {\n        this.hashNavigation.initialized && this.params.cssMode && this.hashNavigation.setHash();\n      }\n    }\n  }, {\n    name: "autoplay",\n    params: {\n      autoplay: {\n        enabled: !1,\n        delay: 3e3,\n        waitForTransition: !0,\n        disableOnInteraction: !0,\n        stopOnLastSlide: !1,\n        reverseDirection: !1\n      }\n    },\n    create: function create() {\n      var e = this;\n      d.extend(e, {\n        autoplay: {\n          running: !1,\n          paused: !1,\n          run: me.run.bind(e),\n          start: me.start.bind(e),\n          stop: me.stop.bind(e),\n          pause: me.pause.bind(e),\n          onVisibilityChange: function onVisibilityChange() {\n            "hidden" === document.visibilityState && e.autoplay.running && e.autoplay.pause(), "visible" === document.visibilityState && e.autoplay.paused && (e.autoplay.run(), e.autoplay.paused = !1);\n          },\n          onTransitionEnd: function onTransitionEnd(t) {\n            e && !e.destroyed && e.$wrapperEl && t.target === this && (e.$wrapperEl[0].removeEventListener("transitionend", e.autoplay.onTransitionEnd), e.$wrapperEl[0].removeEventListener("webkitTransitionEnd", e.autoplay.onTransitionEnd), e.autoplay.paused = !1, e.autoplay.running ? e.autoplay.run() : e.autoplay.stop());\n          }\n        }\n      });\n    },\n    on: {\n      init: function init() {\n        this.params.autoplay.enabled && (this.autoplay.start(), document.addEventListener("visibilitychange", this.autoplay.onVisibilityChange));\n      },\n      beforeTransitionStart: function beforeTransitionStart(e, t) {\n        this.autoplay.running && (t || !this.params.autoplay.disableOnInteraction ? this.autoplay.pause(e) : this.autoplay.stop());\n      },\n      sliderFirstMove: function sliderFirstMove() {\n        this.autoplay.running && (this.params.autoplay.disableOnInteraction ? this.autoplay.stop() : this.autoplay.pause());\n      },\n      touchEnd: function touchEnd() {\n        this.params.cssMode && this.autoplay.paused && !this.params.autoplay.disableOnInteraction && this.autoplay.run();\n      },\n      destroy: function destroy() {\n        this.autoplay.running && this.autoplay.stop(), document.removeEventListener("visibilitychange", this.autoplay.onVisibilityChange);\n      }\n    }\n  }, {\n    name: "effect-fade",\n    params: {\n      fadeEffect: {\n        crossFade: !1\n      }\n    },\n    create: function create() {\n      d.extend(this, {\n        fadeEffect: {\n          setTranslate: ge.setTranslate.bind(this),\n          setTransition: ge.setTransition.bind(this)\n        }\n      });\n    },\n    on: {\n      beforeInit: function beforeInit() {\n        if ("fade" === this.params.effect) {\n          this.classNames.push(this.params.containerModifierClass + "fade");\n          var e = {\n            slidesPerView: 1,\n            slidesPerColumn: 1,\n            slidesPerGroup: 1,\n            watchSlidesProgress: !0,\n            spaceBetween: 0,\n            virtualTranslate: !0\n          };\n          d.extend(this.params, e), d.extend(this.originalParams, e);\n        }\n      },\n      setTranslate: function setTranslate() {\n        "fade" === this.params.effect && this.fadeEffect.setTranslate();\n      },\n      setTransition: function setTransition(e) {\n        "fade" === this.params.effect && this.fadeEffect.setTransition(e);\n      }\n    }\n  }, {\n    name: "effect-cube",\n    params: {\n      cubeEffect: {\n        slideShadows: !0,\n        shadow: !0,\n        shadowOffset: 20,\n        shadowScale: .94\n      }\n    },\n    create: function create() {\n      d.extend(this, {\n        cubeEffect: {\n          setTranslate: be.setTranslate.bind(this),\n          setTransition: be.setTransition.bind(this)\n        }\n      });\n    },\n    on: {\n      beforeInit: function beforeInit() {\n        if ("cube" === this.params.effect) {\n          this.classNames.push(this.params.containerModifierClass + "cube"), this.classNames.push(this.params.containerModifierClass + "3d");\n          var e = {\n            slidesPerView: 1,\n            slidesPerColumn: 1,\n            slidesPerGroup: 1,\n            watchSlidesProgress: !0,\n            resistanceRatio: 0,\n            spaceBetween: 0,\n            centeredSlides: !1,\n            virtualTranslate: !0\n          };\n          d.extend(this.params, e), d.extend(this.originalParams, e);\n        }\n      },\n      setTranslate: function setTranslate() {\n        "cube" === this.params.effect && this.cubeEffect.setTranslate();\n      },\n      setTransition: function setTransition(e) {\n        "cube" === this.params.effect && this.cubeEffect.setTransition(e);\n      }\n    }\n  }, {\n    name: "effect-flip",\n    params: {\n      flipEffect: {\n        slideShadows: !0,\n        limitRotation: !0\n      }\n    },\n    create: function create() {\n      d.extend(this, {\n        flipEffect: {\n          setTranslate: we.setTranslate.bind(this),\n          setTransition: we.setTransition.bind(this)\n        }\n      });\n    },\n    on: {\n      beforeInit: function beforeInit() {\n        if ("flip" === this.params.effect) {\n          this.classNames.push(this.params.containerModifierClass + "flip"), this.classNames.push(this.params.containerModifierClass + "3d");\n          var e = {\n            slidesPerView: 1,\n            slidesPerColumn: 1,\n            slidesPerGroup: 1,\n            watchSlidesProgress: !0,\n            spaceBetween: 0,\n            virtualTranslate: !0\n          };\n          d.extend(this.params, e), d.extend(this.originalParams, e);\n        }\n      },\n      setTranslate: function setTranslate() {\n        "flip" === this.params.effect && this.flipEffect.setTranslate();\n      },\n      setTransition: function setTransition(e) {\n        "flip" === this.params.effect && this.flipEffect.setTransition(e);\n      }\n    }\n  }, {\n    name: "effect-coverflow",\n    params: {\n      coverflowEffect: {\n        rotate: 50,\n        stretch: 0,\n        depth: 100,\n        scale: 1,\n        modifier: 1,\n        slideShadows: !0\n      }\n    },\n    create: function create() {\n      d.extend(this, {\n        coverflowEffect: {\n          setTranslate: ye.setTranslate.bind(this),\n          setTransition: ye.setTransition.bind(this)\n        }\n      });\n    },\n    on: {\n      beforeInit: function beforeInit() {\n        "coverflow" === this.params.effect && (this.classNames.push(this.params.containerModifierClass + "coverflow"), this.classNames.push(this.params.containerModifierClass + "3d"), this.params.watchSlidesProgress = !0, this.originalParams.watchSlidesProgress = !0);\n      },\n      setTranslate: function setTranslate() {\n        "coverflow" === this.params.effect && this.coverflowEffect.setTranslate();\n      },\n      setTransition: function setTransition(e) {\n        "coverflow" === this.params.effect && this.coverflowEffect.setTransition(e);\n      }\n    }\n  }, {\n    name: "thumbs",\n    params: {\n      thumbs: {\n        swiper: null,\n        multipleActiveThumbs: !0,\n        autoScrollOffset: 0,\n        slideThumbActiveClass: "swiper-slide-thumb-active",\n        thumbsContainerClass: "swiper-container-thumbs"\n      }\n    },\n    create: function create() {\n      d.extend(this, {\n        thumbs: {\n          swiper: null,\n          init: xe.init.bind(this),\n          update: xe.update.bind(this),\n          onThumbClick: xe.onThumbClick.bind(this)\n        }\n      });\n    },\n    on: {\n      beforeInit: function beforeInit() {\n        var e = this.params.thumbs;\n        e && e.swiper && (this.thumbs.init(), this.thumbs.update(!0));\n      },\n      slideChange: function slideChange() {\n        this.thumbs.swiper && this.thumbs.update();\n      },\n      update: function update() {\n        this.thumbs.swiper && this.thumbs.update();\n      },\n      resize: function resize() {\n        this.thumbs.swiper && this.thumbs.update();\n      },\n      observerUpdate: function observerUpdate() {\n        this.thumbs.swiper && this.thumbs.update();\n      },\n      setTransition: function setTransition(e) {\n        var t = this.thumbs.swiper;\n        t && t.setTransition(e);\n      },\n      beforeDestroy: function beforeDestroy() {\n        var e = this.thumbs.swiper;\n        e && this.thumbs.swiperCreated && e && e.destroy();\n      }\n    }\n  }];\n  return void 0 === j.use && (j.use = j.Class.use, j.installModule = j.Class.installModule), j.use(Ee), j;\n});\n/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! ./../../../node_modules/webpack/buildin/harmony-module.js */ "./node_modules/webpack/buildin/harmony-module.js")(module)))\n\n//# sourceURL=webpack:///./src/js/_libs/swiper.min.js?')},"./src/js/_project/accordions.js":function(module,__webpack_exports__,__webpack_require__){"use strict";eval("/* WEBPACK VAR INJECTION */(function($) {/* harmony import */ var core_js_modules_es_array_find__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! core-js/modules/es.array.find */ \"./node_modules/core-js/modules/es.array.find.js\");\n/* harmony import */ var core_js_modules_es_array_find__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_array_find__WEBPACK_IMPORTED_MODULE_0__);\n\nvar accordions = {\n  accordion: $('.js-accordion'),\n  init: function init() {\n    this.accordions();\n  },\n  accordions: function accordions() {\n    var pageLoad = true;\n    var $accordion = this.accordion;\n    var $accordionBtn = this.accordion.find($('.accordion__button'));\n    var $accordionRow = this.accordion.find($('.accordion__row'));\n    var $accordionContent = this.accordion.find($('.accordion__content'));\n    var $animateElem = $('html, body');\n    $accordion.each(function () {\n      $(this).find($accordionBtn).on('click', function () {\n        var $btn = $(this);\n\n        if ($btn.hasClass('accordion__button--opened')) {\n          $btn.removeClass('accordion__button--opened');\n          $btn.next($accordionContent).stop().slideUp(400, function () {\n            $(this).attr('aria-hidden', 'true');\n\n            if (!pageLoad) {\n              $animateElem.animate({\n                scrollTop: $btn.offset().top - 220\n              }, 400);\n            }\n          });\n        } else {\n          $btn.parent().siblings().find('.accordion__button--opened').removeClass('accordion__button--opened');\n          $btn.parent().siblings().find($accordionContent).stop().slideUp(400, function () {\n            $(this).attr('aria-hidden', 'true');\n          });\n          $btn.addClass('accordion__button--opened');\n          $btn.next($accordionContent).stop().slideDown(400, function () {\n            $(this).removeAttr('aria-hidden');\n\n            if (!pageLoad) {\n              $animateElem.animate({\n                scrollTop: $btn.offset().top - 220\n              }, 400);\n            }\n          });\n        }\n      });\n      setTimeout(function () {\n        pageLoad = false;\n      }, 1000);\n    });\n  }\n};\n/* harmony default export */ __webpack_exports__[\"a\"] = (accordions);\n/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! jquery */ \"./node_modules/jquery/dist/jquery.js\")))\n\n//# sourceURL=webpack:///./src/js/_project/accordions.js?")},"./src/js/_project/contact.js":function(module,__webpack_exports__,__webpack_require__){"use strict";eval('/* WEBPACK VAR INJECTION */(function($) {/* harmony import */ var _umbracoForms__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./umbracoForms */ "./src/js/_project/umbracoForms.js");\n\nvar contact = {\n  init: function init() {\n    if (!$(\'.umbraco-forms-form form\').length) return;\n    $(\'select\').on(\'selectric-change\', function (event, element, selectric) {\n      $(element).valid();\n    });\n    _umbracoForms__WEBPACK_IMPORTED_MODULE_0__[/* default */ "a"].init();\n  }\n};\n/* harmony default export */ __webpack_exports__["a"] = (contact);\n/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! jquery */ "./node_modules/jquery/dist/jquery.js")))\n\n//# sourceURL=webpack:///./src/js/_project/contact.js?')},"./src/js/_project/disclaimer.js":function(module,__webpack_exports__,__webpack_require__){"use strict";eval("/* WEBPACK VAR INJECTION */(function($) {/* harmony import */ var core_js_modules_es_symbol__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! core-js/modules/es.symbol */ \"./node_modules/core-js/modules/es.symbol.js\");\n/* harmony import */ var core_js_modules_es_symbol__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_symbol__WEBPACK_IMPORTED_MODULE_0__);\n/* harmony import */ var core_js_modules_es_symbol_description__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! core-js/modules/es.symbol.description */ \"./node_modules/core-js/modules/es.symbol.description.js\");\n/* harmony import */ var core_js_modules_es_symbol_description__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_symbol_description__WEBPACK_IMPORTED_MODULE_1__);\n/* harmony import */ var core_js_modules_es_symbol_iterator__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! core-js/modules/es.symbol.iterator */ \"./node_modules/core-js/modules/es.symbol.iterator.js\");\n/* harmony import */ var core_js_modules_es_symbol_iterator__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_symbol_iterator__WEBPACK_IMPORTED_MODULE_2__);\n/* harmony import */ var core_js_modules_es_array_iterator__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! core-js/modules/es.array.iterator */ \"./node_modules/core-js/modules/es.array.iterator.js\");\n/* harmony import */ var core_js_modules_es_array_iterator__WEBPACK_IMPORTED_MODULE_3___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_array_iterator__WEBPACK_IMPORTED_MODULE_3__);\n/* harmony import */ var core_js_modules_es_object_to_string__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! core-js/modules/es.object.to-string */ \"./node_modules/core-js/modules/es.object.to-string.js\");\n/* harmony import */ var core_js_modules_es_object_to_string__WEBPACK_IMPORTED_MODULE_4___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_object_to_string__WEBPACK_IMPORTED_MODULE_4__);\n/* harmony import */ var core_js_modules_es_regexp_exec__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! core-js/modules/es.regexp.exec */ \"./node_modules/core-js/modules/es.regexp.exec.js\");\n/* harmony import */ var core_js_modules_es_regexp_exec__WEBPACK_IMPORTED_MODULE_5___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_regexp_exec__WEBPACK_IMPORTED_MODULE_5__);\n/* harmony import */ var core_js_modules_es_string_iterator__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! core-js/modules/es.string.iterator */ \"./node_modules/core-js/modules/es.string.iterator.js\");\n/* harmony import */ var core_js_modules_es_string_iterator__WEBPACK_IMPORTED_MODULE_6___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_string_iterator__WEBPACK_IMPORTED_MODULE_6__);\n/* harmony import */ var core_js_modules_es_string_search__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! core-js/modules/es.string.search */ \"./node_modules/core-js/modules/es.string.search.js\");\n/* harmony import */ var core_js_modules_es_string_search__WEBPACK_IMPORTED_MODULE_7___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_string_search__WEBPACK_IMPORTED_MODULE_7__);\n/* harmony import */ var core_js_modules_es_string_split__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! core-js/modules/es.string.split */ \"./node_modules/core-js/modules/es.string.split.js\");\n/* harmony import */ var core_js_modules_es_string_split__WEBPACK_IMPORTED_MODULE_8___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_string_split__WEBPACK_IMPORTED_MODULE_8__);\n/* harmony import */ var core_js_modules_web_dom_collections_iterator__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! core-js/modules/web.dom-collections.iterator */ \"./node_modules/core-js/modules/web.dom-collections.iterator.js\");\n/* harmony import */ var core_js_modules_web_dom_collections_iterator__WEBPACK_IMPORTED_MODULE_9___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_web_dom_collections_iterator__WEBPACK_IMPORTED_MODULE_9__);\n\n\n\n\n\n\n\n\n\n\n\nfunction _typeof(obj) { \"@babel/helpers - typeof\"; 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\nvar disclaimer = {\n  disclaimerBtn: $('.js-disclaimer-step'),\n  disclaimerDropdown: $('.js-disclaimer-dropdown'),\n  disclaimerCbx: $('.js-disclaimer-cbx'),\n  controllerUrl: $('.js-controller-url').data('controller-url'),\n  acceptControllerUrl: $('.js-controller-url').data('controller-accept-url'),\n  pageKey: $('.js-controller-url').data('page-key'),\n  disclaimerContainer: $('.js-render-disclaimer'),\n  init: function init() {\n    this.disclaimer();\n    this.acceptDisclaimer();\n    this.globalValidation();\n  },\n  disclaimer: function disclaimer() {\n    var _this2 = this;\n\n    $(document).on('click', '.js-disclaimer-step', function () {\n      var isValid = true;\n      var country = $('.js-disclaimer-dropdown').val();\n      var step = $('.js-disclaimer-step').data('step');\n      var dealingCode = $('.js-dealing-code').val();\n\n      if (_this2.isCountryInvalid(country, step)) {\n        $('.js-disclaimer-label').addClass('disclaimer-error');\n        $('.selectric-disclaimer-dropdown').addClass('disclaimer-dropdown-error');\n        isValid = false;\n      }\n\n      if (_this2.isInputInvalid(dealingCode, step)) {\n        $('.js-dealing-code').addClass('disclaimer-input-error');\n        $('.js-dealing-code-label').addClass('disclaimer-error');\n        isValid = false;\n      }\n\n      if (_this2.isCbxInvalid(step)) {\n        $('.js-disclaimer-label-cbx').addClass('disclaimer-error');\n        isValid = false;\n      }\n\n      if (isValid) {\n        _this2.callAjax(country, step, dealingCode);\n      }\n    });\n  },\n  globalValidation: function globalValidation() {\n    var _this3 = this;\n\n    $('.form :input').on('change', function () {\n      var country = $('.js-disclaimer-dropdown').val();\n      var step = $('.js-disclaimer-step').data('step');\n      var dealingCode = $('.js-dealing-code').val();\n\n      if (!_this3.isCountryInvalid(country, step)) {\n        $('.js-disclaimer-label').removeClass('disclaimer-error');\n        $('.selectric-disclaimer-dropdown').removeClass('disclaimer-dropdown-error');\n      }\n\n      if (!_this3.isInputInvalid(dealingCode, step)) {\n        $('.js-dealing-code').removeClass('disclaimer-input-error');\n        $('.js-dealing-code-label').removeClass('disclaimer-error');\n      }\n\n      if (!_this3.isCbxInvalid(step)) {\n        $('.js-disclaimer-label-cbx').removeClass('disclaimer-error');\n      }\n    });\n  },\n  isCountryInvalid: function isCountryInvalid(country, step) {\n    return country === '0' || country === '' && step !== 'dealing-code';\n  },\n  isCbxInvalid: function isCbxInvalid(step) {\n    var cbx = $('.js-disclaimer-cbx').is(':checked');\n    return !cbx && step !== 'dealing-code';\n  },\n  isInputInvalid: function isInputInvalid(dealingCode, step) {\n    //const regex = /^(\\+?\\d{1,3}|\\d{1,4})$/gm\n    //const match = dealingCode.match(regex);\n    //console.log(match);\n    return step === 'dealing-code' && dealingCode === '';\n  },\n  acceptDisclaimer: function acceptDisclaimer() {\n    var _this = this;\n\n    $(document).on('click', '.js-disclaimer-terms', function () {\n      var chose = $(this).data('disclaimer');\n      if (chose === 'reject') _this.rejectDisclaimerAjax(chose);\n      if (chose === 'accept') _this.acceptDisclaimerAjax(chose);\n    });\n  },\n  callAjax: function callAjax(disclaimerCountry, disclaimerStep, dealingCode) {\n    var _this = this;\n\n    if (!_this.controllerUrl) return;\n    $.get(_this.controllerUrl, {\n      pageKey: _this.pageKey,\n      country: disclaimerCountry,\n      step: disclaimerStep,\n      code: dealingCode\n    }, function (response) {\n      _this.disclaimerContainer.html(response);\n\n      $('select').selectric();\n\n      _this.globalValidation();\n    }, 'html');\n  },\n  acceptDisclaimerAjax: function acceptDisclaimerAjax(option) {\n    var _this = this;\n\n    if (!_this.acceptControllerUrl) return;\n    $.get(_this.acceptControllerUrl, {\n      pageKey: _this.pageKey,\n      chose: option\n    }, function (response) {\n      var responseObj = JSON.parse(response);\n\n      if (responseObj.url === 'success') {\n        setTimeout(function () {\n          window.location.reload();\n        }, 100);\n      }\n    }, 'html');\n  },\n  rejectDisclaimerAjax: function rejectDisclaimerAjax(option) {\n    var _this = this;\n\n    if (!_this.acceptControllerUrl) return;\n    $.get(_this.acceptControllerUrl, {\n      pageKey: _this.pageKey,\n      chose: option\n    }, function (response) {\n      _this.disclaimerContainer.html(response);\n    }, 'html');\n  },\n  getUrlParameter: function getUrlParameter(sParam) {\n    var sPageURL = window.location.search.substring(1);\n    var sURLVariables = sPageURL.split('&');\n    var sParameterName;\n    var i;\n\n    for (i = 0; i < sURLVariables.length; i++) {\n      sParameterName = sURLVariables[i].split('=');\n\n      if (sParameterName[0] === sParam) {\n        return _typeof(sParameterName[1]) === undefined ? true : decodeURIComponent(sParameterName[1]);\n      }\n    }\n\n    return false;\n  }\n};\n/* harmony default export */ __webpack_exports__[\"a\"] = (disclaimer);\n/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! jquery */ \"./node_modules/jquery/dist/jquery.js\")))\n\n//# sourceURL=webpack:///./src/js/_project/disclaimer.js?")},"./src/js/_project/filterHelper.js":function(module,__webpack_exports__,__webpack_require__){"use strict";eval('/* WEBPACK VAR INJECTION */(function($) {/* harmony import */ var core_js_modules_es_array_find__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! core-js/modules/es.array.find */ "./node_modules/core-js/modules/es.array.find.js");\n/* harmony import */ var core_js_modules_es_array_find__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_array_find__WEBPACK_IMPORTED_MODULE_0__);\n/* harmony import */ var core_js_modules_es_array_for_each__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! core-js/modules/es.array.for-each */ "./node_modules/core-js/modules/es.array.for-each.js");\n/* harmony import */ var core_js_modules_es_array_for_each__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_array_for_each__WEBPACK_IMPORTED_MODULE_1__);\n/* harmony import */ var core_js_modules_es_regexp_exec__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! core-js/modules/es.regexp.exec */ "./node_modules/core-js/modules/es.regexp.exec.js");\n/* harmony import */ var core_js_modules_es_regexp_exec__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_regexp_exec__WEBPACK_IMPORTED_MODULE_2__);\n/* harmony import */ var core_js_modules_es_string_split__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! core-js/modules/es.string.split */ "./node_modules/core-js/modules/es.string.split.js");\n/* harmony import */ var core_js_modules_es_string_split__WEBPACK_IMPORTED_MODULE_3___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_string_split__WEBPACK_IMPORTED_MODULE_3__);\n/* harmony import */ var core_js_modules_web_dom_collections_for_each__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! core-js/modules/web.dom-collections.for-each */ "./node_modules/core-js/modules/web.dom-collections.for-each.js");\n/* harmony import */ var core_js_modules_web_dom_collections_for_each__WEBPACK_IMPORTED_MODULE_4___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_web_dom_collections_for_each__WEBPACK_IMPORTED_MODULE_4__);\n/* harmony import */ var _helpers__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./helpers */ "./src/js/_project/helpers.js");\n\n\n\n\n\n\nvar filterHelper = {\n  $filtersContainer: $(\'.js-filter\'),\n  $filterButton: $(\'.js-filter-button\'),\n  $filtersNumber: $(\'.js-filters-number\'),\n  $clearFilterButton: $(\'.js-clear-filters\'),\n  $closeFilterButton: $(\'.js-filter-close\'),\n  getCheckedFilters: function getCheckedFilters(container) {\n    var checkedFilters = this.$filtersContainer.find("".concat(container, " input:checked"));\n    var filters = [];\n\n    if (checkedFilters.length > 0) {\n      checkedFilters.each(function (i, elem) {\n        filters.push(elem.id);\n      });\n    }\n\n    return filters;\n  },\n  toggleClearFilterButtons: function toggleClearFilterButtons() {\n    var filtersNubmer = this.$filtersContainer.find(\'input:checked\').length;\n\n    if (filtersNubmer > 0) {\n      this.$clearFilterButton.show();\n      return;\n    }\n\n    this.$clearFilterButton.hide();\n  },\n  closeFilter: function closeFilter() {\n    this.$filtersContainer.removeClass(\'filter--open\');\n    _helpers__WEBPACK_IMPORTED_MODULE_5__[/* default */ "a"].enableScroll();\n  },\n  updateAppliedFiltersNumber: function updateAppliedFiltersNumber() {\n    var filtersNubmer = this.$filtersContainer.find(\'input:checked\').length;\n    this.$filtersNumber.text(filtersNubmer > 0 ? "(".concat(filtersNubmer, ")") : \'\');\n  },\n  reapplyFiltersFromString: function reapplyFiltersFromString(filters) {\n    var _this = this;\n\n    if (!filters) return;\n    filters.split(\',\').forEach(function (e) {\n      _this.$filtersContainer.find("input#".concat(e)).prop(\'checked\', true);\n    });\n  },\n  clearAllFilters: function clearAllFilters() {\n    this.$filtersContainer.find(\'input:checked\').prop(\'checked\', false);\n  }\n};\n/* harmony default export */ __webpack_exports__["a"] = (filterHelper);\n/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! jquery */ "./node_modules/jquery/dist/jquery.js")))\n\n//# sourceURL=webpack:///./src/js/_project/filterHelper.js?')},"./src/js/_project/helpers.js":function(module,__webpack_exports__,__webpack_require__){"use strict";eval("/* WEBPACK VAR INJECTION */(function($) {/* harmony import */ var core_js_modules_es_array_find__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! core-js/modules/es.array.find */ \"./node_modules/core-js/modules/es.array.find.js\");\n/* harmony import */ var core_js_modules_es_array_find__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_array_find__WEBPACK_IMPORTED_MODULE_0__);\n/* harmony import */ var core_js_modules_es_array_index_of__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! core-js/modules/es.array.index-of */ \"./node_modules/core-js/modules/es.array.index-of.js\");\n/* harmony import */ var core_js_modules_es_array_index_of__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_array_index_of__WEBPACK_IMPORTED_MODULE_1__);\n/* harmony import */ var core_js_modules_es_array_splice__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! core-js/modules/es.array.splice */ \"./node_modules/core-js/modules/es.array.splice.js\");\n/* harmony import */ var core_js_modules_es_array_splice__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_array_splice__WEBPACK_IMPORTED_MODULE_2__);\n\n\n\nvar helpers = {\n  $win: $(window),\n  $doc: $(document),\n  $html: $('html'),\n  $body: $('body'),\n  $htmlbody: $('html, body'),\n  topScroll: 0,\n  isScrollDisabled: false,\n  disabledScrollClass: 'scroll-disabled',\n  init: function init() {\n    var _this2 = this;\n\n    // Check if touch device for hover functionality\n    if (('ontouchstart' in window || navigator.msMaxTouchPoints > 0) && window.matchMedia('screen and (max-width: 1024px)').matches) {\n      this.$html.addClass('touch');\n    } else {\n      this.$html.addClass('no-touch');\n    } // check iOS\n\n\n    if (navigator.userAgent.indexOf('Mac OS X') !== -1) {\n      $('body').addClass('ios');\n    } // Add loaded class to html, to enable transitions\n\n\n    this.$win.on('load', function () {\n      setTimeout(function () {\n        _this2.$html.addClass('loaded');\n\n        if ($(window).width() < 767) {\n          $('table').wrap('<div class=\"table-responsive\"/>');\n          $('.table-responsive').mCustomScrollbar({\n            axis: 'x'\n          });\n        }\n      }, 10);\n      helpers.setEqualHeights($('.expertise-cards__content'));\n      helpers.setEqualHeights($('.continent-card__content'));\n    });\n    $(document).ready(function () {\n      $('.js-iframe').EurolandIFrameAutoHeight();\n    });\n  },\n  // Disable window scroll when popups, navigation and similar are opened\n  disableScroll: function disableScroll() {\n    if (!this.isScrollDisabled) {\n      this.topScroll = this.$win.scrollTop();\n      this.$body.css('top', -this.topScroll + 'px').addClass(this.disabledScrollClass);\n      this.isScrollDisabled = true;\n    }\n  },\n  // Enable back window scroll when closing the opened overlays\n  enableScroll: function enableScroll() {\n    this.$body.removeAttr('style').removeClass(this.disabledScrollClass);\n    this.$win.scrollTop(this.topScroll);\n    this.isScrollDisabled = false;\n  },\n  resetScroll: function resetScroll() {\n    var scrollTopItem = $('.js-filter').find('.mCSB_container, .mCSB_dragger');\n    setTimeout(function () {\n      scrollTopItem.css('top', 0);\n    }, 300);\n  },\n  // Equal heights function should be best used on window load, and with debounce function on window resize\n\n  /**     $(window).on('load', () => {\r\n   *          this.setEqualHeights($('.js-equal-item'), 2);\r\n      *      });\r\n   *\r\n   *      # This will wait for a tenth of a second, when the window has finished resizing, and then the function will be called\r\n   *      $(window).on('resize', this.debounce(() => {\r\n   *          this.setEqualHeights($('.js-equal-item'), 2);\r\n   *      }, 100));\r\n   *\r\n   *      # This function will be executed 4 times in a second during the event (without throttle, the function is called more than 100 times)\r\n   *      $(window).on('resize', this.throttle(() => {\r\n   *          this.setEqualHeights($('.js-equal-item'), 2);\r\n   *      }, 250));\r\n   *\r\n   *      # Recommended events to be throttled or debounced are window scroll, resize, mousemove\r\n   */\n  setEqualHeights: function setEqualHeights(arrayItems, count) {\n    if (arrayItems !== undefined && arrayItems.length > 0) {\n      arrayItems.removeAttr('style'); // if(this.$win.width() > 767) {\n\n      var maxH = 0;\n\n      if (count) {\n        var arrays = [];\n\n        while (arrayItems.length > 0) {\n          arrays.push(arrayItems.splice(0, count));\n        }\n\n        for (var i = 0; i < arrays.length; i += 1) {\n          var data = arrays[i];\n          maxH = 0;\n\n          for (var j = 0; j < data.length; j += 1) {\n            var currentH = $(data[j]).outerHeight();\n\n            if (currentH > maxH) {\n              maxH = currentH;\n            }\n          }\n\n          for (var k = 0; k < data.length; k += 1) {\n            $(data[k]).css('height', maxH);\n          }\n        }\n      } else {\n        arrayItems.each(function () {\n          var currentH2 = $(this).outerHeight();\n\n          if (currentH2 > maxH) {\n            maxH = currentH2;\n          }\n        });\n        arrayItems.css('height', maxH);\n      } // }\n\n    }\n  },\n  throttle: function throttle(func, interval) {\n    var timeout;\n    return function () {\n      var _this = this;\n\n      var args = arguments;\n\n      var later = function later() {\n        timeout = false;\n      };\n\n      if (!timeout) {\n        func.apply(_this, args);\n        timeout = true;\n        setTimeout(later, interval || 250);\n      }\n    };\n  },\n  debounce: function debounce(func, interval) {\n    var timeout;\n    return function () {\n      var _this = this;\n\n      var args = arguments;\n\n      var later = function later() {\n        timeout = null;\n        func.apply(_this, args);\n      };\n\n      clearTimeout(timeout);\n      timeout = setTimeout(later, interval || 100);\n    };\n  }\n};\n/* harmony default export */ __webpack_exports__[\"a\"] = (helpers);\n/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! jquery */ \"./node_modules/jquery/dist/jquery.js\")))\n\n//# sourceURL=webpack:///./src/js/_project/helpers.js?")},"./src/js/_project/hubFiltering.js":function(module,__webpack_exports__,__webpack_require__){"use strict";eval('/* WEBPACK VAR INJECTION */(function($) {/* harmony import */ var core_js_modules_es_array_join__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! core-js/modules/es.array.join */ "./node_modules/core-js/modules/es.array.join.js");\n/* harmony import */ var core_js_modules_es_array_join__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_array_join__WEBPACK_IMPORTED_MODULE_0__);\n/* harmony import */ var _pagination__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./pagination */ "./src/js/_project/pagination.js");\n/* harmony import */ var _filterHelper__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./filterHelper */ "./src/js/_project/filterHelper.js");\n\n\n\nvar hubFiltering = {\n  pagination: Object(_pagination__WEBPACK_IMPORTED_MODULE_1__[/* default */ "a"])(),\n  init: function init() {\n    var paginationContainer = $(\'.js-hub-pagination-container\');\n    if (paginationContainer.length === 0) return;\n    this.pagination.setOptions({\n      historyCallback: this.historyPopCallback.bind(this)\n    });\n    this.pagination.init(paginationContainer);\n    this.attachEvents();\n  },\n  attachEvents: function attachEvents() {\n    var _this2 = this;\n\n    var _this = this;\n\n    _filterHelper__WEBPACK_IMPORTED_MODULE_2__[/* default */ "a"].$filterButton.on(\'click\', function () {\n      _this2.filterResults();\n    });\n    _filterHelper__WEBPACK_IMPORTED_MODULE_2__[/* default */ "a"].$clearFilterButton.on(\'click\', function () {\n      _filterHelper__WEBPACK_IMPORTED_MODULE_2__[/* default */ "a"].clearAllFilters();\n\n      _this2.filterResults();\n    });\n    _filterHelper__WEBPACK_IMPORTED_MODULE_2__[/* default */ "a"].$closeFilterButton.on(\'click\', function () {\n      _this2.resetFilterToPreviousState(_this2.pagination.$paginationContainer.attr(\'pagination-data-tags\'));\n    });\n    $(document).on(\'click\', \'a[data-tag]\', function () {\n      var $this = $(this);\n      var tag = $this.data(\'tag\');\n      $("input:checkbox[id=\'".concat(tag, "\']")).click();\n\n      _this.filterResults();\n    });\n  },\n  filterResults: function filterResults() {\n    var _this3 = this;\n\n    var tags = _filterHelper__WEBPACK_IMPORTED_MODULE_2__[/* default */ "a"].getCheckedFilters(\'.js-tags-filter\').join(\',\');\n    var data = {\n      pageKey: this.pagination.pageKey,\n      tags: tags\n    };\n    _filterHelper__WEBPACK_IMPORTED_MODULE_2__[/* default */ "a"].updateAppliedFiltersNumber();\n    _filterHelper__WEBPACK_IMPORTED_MODULE_2__[/* default */ "a"].toggleClearFilterButtons();\n    _filterHelper__WEBPACK_IMPORTED_MODULE_2__[/* default */ "a"].closeFilter();\n    $.get(this.pagination.endpointUrl, data, function (response) {\n      _this3.pagination.updateListingContainer(response);\n\n      _this3.pagination.updateHistory({\n        html: response,\n        tags: tags\n      }, {\n        tags: tags\n      });\n\n      _this3.setAdditionalPaginationData(tags);\n    });\n  },\n  historyPopCallback: function historyPopCallback(data) {\n    this.resetFilterToPreviousState(data.tags);\n    _filterHelper__WEBPACK_IMPORTED_MODULE_2__[/* default */ "a"].toggleClearFilterButtons();\n    this.setAdditionalPaginationData(data.tags);\n  },\n  resetFilterToPreviousState: function resetFilterToPreviousState(tags) {\n    _filterHelper__WEBPACK_IMPORTED_MODULE_2__[/* default */ "a"].clearAllFilters();\n    _filterHelper__WEBPACK_IMPORTED_MODULE_2__[/* default */ "a"].reapplyFiltersFromString(tags);\n  },\n  setAdditionalPaginationData: function setAdditionalPaginationData(tags) {\n    this.pagination.$paginationContainer.attr({\n      \'pagination-data-tags\': tags || \'\'\n    });\n  }\n};\n/* harmony default export */ __webpack_exports__["a"] = (hubFiltering);\n/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! jquery */ "./node_modules/jquery/dist/jquery.js")))\n\n//# sourceURL=webpack:///./src/js/_project/hubFiltering.js?')},"./src/js/_project/is-beta.js":function(module,__webpack_exports__,__webpack_require__){"use strict";eval("/* WEBPACK VAR INJECTION */(function($) {var isBeta = {\n  $betaButton: $('.js-is-beta-button'),\n  $betaContent: $('.js-is-beta-content'),\n  init: function init() {\n    var _this = this;\n\n    this.$betaButton.on('click', function () {\n      _this.$betaContent.fadeToggle();\n    });\n  }\n};\n/* harmony default export */ __webpack_exports__[\"a\"] = (isBeta);\n/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! jquery */ \"./node_modules/jquery/dist/jquery.js\")))\n\n//# sourceURL=webpack:///./src/js/_project/is-beta.js?")},"./src/js/_project/pagination.js":function(module,__webpack_exports__,__webpack_require__){"use strict";eval("/* WEBPACK VAR INJECTION */(function($) {/* harmony import */ var core_js_modules_es_array_concat__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! core-js/modules/es.array.concat */ \"./node_modules/core-js/modules/es.array.concat.js\");\n/* harmony import */ var core_js_modules_es_array_concat__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_array_concat__WEBPACK_IMPORTED_MODULE_0__);\n/* harmony import */ var core_js_modules_es_array_filter__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! core-js/modules/es.array.filter */ \"./node_modules/core-js/modules/es.array.filter.js\");\n/* harmony import */ var core_js_modules_es_array_filter__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_array_filter__WEBPACK_IMPORTED_MODULE_1__);\n/* harmony import */ var core_js_modules_es_array_find__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! core-js/modules/es.array.find */ \"./node_modules/core-js/modules/es.array.find.js\");\n/* harmony import */ var core_js_modules_es_array_find__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_array_find__WEBPACK_IMPORTED_MODULE_2__);\n/* harmony import */ var core_js_modules_es_array_for_each__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! core-js/modules/es.array.for-each */ \"./node_modules/core-js/modules/es.array.for-each.js\");\n/* harmony import */ var core_js_modules_es_array_for_each__WEBPACK_IMPORTED_MODULE_3___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_array_for_each__WEBPACK_IMPORTED_MODULE_3__);\n/* harmony import */ var core_js_modules_es_array_index_of__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! core-js/modules/es.array.index-of */ \"./node_modules/core-js/modules/es.array.index-of.js\");\n/* harmony import */ var core_js_modules_es_array_index_of__WEBPACK_IMPORTED_MODULE_4___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_array_index_of__WEBPACK_IMPORTED_MODULE_4__);\n/* harmony import */ var core_js_modules_es_array_slice__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! core-js/modules/es.array.slice */ \"./node_modules/core-js/modules/es.array.slice.js\");\n/* harmony import */ var core_js_modules_es_array_slice__WEBPACK_IMPORTED_MODULE_5___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_array_slice__WEBPACK_IMPORTED_MODULE_5__);\n/* harmony import */ var core_js_modules_es_function_name__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! core-js/modules/es.function.name */ \"./node_modules/core-js/modules/es.function.name.js\");\n/* harmony import */ var core_js_modules_es_function_name__WEBPACK_IMPORTED_MODULE_6___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_function_name__WEBPACK_IMPORTED_MODULE_6__);\n/* harmony import */ var core_js_modules_es_object_assign__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! core-js/modules/es.object.assign */ \"./node_modules/core-js/modules/es.object.assign.js\");\n/* harmony import */ var core_js_modules_es_object_assign__WEBPACK_IMPORTED_MODULE_7___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_object_assign__WEBPACK_IMPORTED_MODULE_7__);\n/* harmony import */ var core_js_modules_es_object_keys__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! core-js/modules/es.object.keys */ \"./node_modules/core-js/modules/es.object.keys.js\");\n/* harmony import */ var core_js_modules_es_object_keys__WEBPACK_IMPORTED_MODULE_8___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_object_keys__WEBPACK_IMPORTED_MODULE_8__);\n/* harmony import */ var core_js_modules_es_regexp_exec__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! core-js/modules/es.regexp.exec */ \"./node_modules/core-js/modules/es.regexp.exec.js\");\n/* harmony import */ var core_js_modules_es_regexp_exec__WEBPACK_IMPORTED_MODULE_9___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_regexp_exec__WEBPACK_IMPORTED_MODULE_9__);\n/* harmony import */ var core_js_modules_es_string_replace__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! core-js/modules/es.string.replace */ \"./node_modules/core-js/modules/es.string.replace.js\");\n/* harmony import */ var core_js_modules_es_string_replace__WEBPACK_IMPORTED_MODULE_10___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_string_replace__WEBPACK_IMPORTED_MODULE_10__);\n/* harmony import */ var core_js_modules_web_dom_collections_for_each__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! core-js/modules/web.dom-collections.for-each */ \"./node_modules/core-js/modules/web.dom-collections.for-each.js\");\n/* harmony import */ var core_js_modules_web_dom_collections_for_each__WEBPACK_IMPORTED_MODULE_11___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_web_dom_collections_for_each__WEBPACK_IMPORTED_MODULE_11__);\n\n\n\n\n\n\n\n\n\n\n\n\n\n/* In order to use pagination on other pages add container with .js-pagination-container class.\r\n * This container must contain two attributes:\r\n *\t- data-page-key: current page Guid\r\n *\t- data-url: endpoint url\r\n *\r\n * Inside pagination container there should be element with data-pagination-list attribute.\r\n * Data returned from endpoint will be listed in that element.\r\n *\r\n * If you want additional data to be sent with request you can add attributes to pagination container(.js-pagination-container)\r\n * The attributes need to start with pagination-data-\r\n * Eg. pagination-data-year=\"2019\" attribute will map to year: 2019 in request data.\r\n * */\nvar pagination = function pagination() {\n  return {\n    $paginationContainer: null,\n    pageKey: '',\n    endpointUrl: '',\n    clickCallback: null,\n    historyCallback: null,\n    init: function init(paginationContainer) {\n      this.$paginationContainer = paginationContainer;\n      this.gatherEndpointData();\n      this.attachClickHandler(this.clickCallback);\n      this.attachToBrowserHistoryEvent(this.historyCallback);\n      this.focusSearchField();\n    },\n    // if callbacks are needed for after button press or history navigate you can add the here\n    setOptions: function setOptions(options) {\n      if (!options) return;\n      this.clickCallback = options.clickCallback;\n      this.historyCallback = options.historyCallback;\n    },\n    attachClickHandler: function attachClickHandler(cb) {\n      var _this = this;\n\n      this.$paginationContainer.off('click', '[data-page]').on('click', '[data-page]', function () {\n        if (!_this.endpointUrl) return;\n        var page = $(this).data('page'); // concat standard data with additional data\n\n        var additionalData = _this.additionalPaginationRequestData();\n\n        var data = Object.assign({\n          pageKey: _this.pageKey,\n          page: page\n        }, additionalData);\n        $.get(_this.endpointUrl, data, function (response) {\n          _this.updateListingContainer(response);\n\n          _this.updateHistory(Object.assign({\n            html: response\n          }, additionalData), Object.assign({\n            page: page\n          }, additionalData));\n\n          if (cb) cb();\n        });\n      });\n    },\n    updateListingContainer: function updateListingContainer(data) {\n      if (this.$paginationContainer.attr('data-pagination-list') === undefined) {\n        this.$paginationContainer.find('[data-pagination-list]').empty().append(data);\n        return;\n      }\n\n      this.$paginationContainer.html(data);\n    },\n    attachToBrowserHistoryEvent: function attachToBrowserHistoryEvent(cb) {\n      var _this2 = this;\n\n      window.addEventListener('popstate', function (event) {\n        if (!event.state) {\n          window.location.reload();\n          return;\n        }\n\n        if (event.state.html) {\n          _this2.updateListingContainer(event.state.html);\n\n          if (cb) cb(event.state);\n        }\n      });\n    },\n    updateHistory: function updateHistory() {\n      var histroyObj = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : {};\n      var queryStringData = arguments.length > 1 && arguments[1] !== undefined ? arguments[1] : {};\n      history.pushState(histroyObj, '', this.getQueryString(queryStringData));\n    },\n    // create query string from provided object\n    getQueryString: function getQueryString(data) {\n      if (!data) return '';\n      var keys = Object.keys(data);\n      var queryString = '?';\n      keys.forEach(function (key) {\n        if (!data[key]) return;\n        queryString += \"\".concat(queryString !== '?' ? '&' : '').concat(key, \"=\").concat(data[key]);\n      });\n      return queryString;\n    },\n    gatherEndpointData: function gatherEndpointData() {\n      if (this.$paginationContainer.length > 0) {\n        this.pageKey = this.$paginationContainer.data('page-key');\n        this.endpointUrl = this.$paginationContainer.data('url');\n      }\n    },\n    attrThatBeginWith: function attrThatBeginWith(elem, begins) {\n      return [].slice.call(elem.get(0).attributes).filter(function (attr) {\n        return attr && attr.name && attr.name.indexOf(begins) === 0;\n      });\n    },\n    additionalPaginationRequestData: function additionalPaginationRequestData() {\n      var attrPrefix = 'pagination-data-';\n      var rawData = this.attrThatBeginWith(this.$paginationContainer, attrPrefix);\n      if (!rawData) return {};\n      var data = {};\n      rawData.forEach(function (val) {\n        if (val.name && val.value) {\n          data[val.name.replace(attrPrefix, '')] = val.value;\n        }\n      });\n      return data;\n    },\n    focusSearchField: function focusSearchField() {\n      $(document).on('click', '#js-no-results-clear', function () {\n        var $paginationTop = $('.js-pagination-top');\n        var $searchField = $paginationTop.find('.js-search-query-field');\n        if (!$searchField.length) return;\n        $searchField.val('');\n        $searchField.focus();\n      });\n    }\n  };\n};\n\n/* harmony default export */ __webpack_exports__[\"a\"] = (pagination);\n/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! jquery */ \"./node_modules/jquery/dist/jquery.js\")))\n\n//# sourceURL=webpack:///./src/js/_project/pagination.js?")},"./src/js/_project/peopleFiltering.js":function(module,__webpack_exports__,__webpack_require__){"use strict";eval("/* WEBPACK VAR INJECTION */(function($) {/* harmony import */ var core_js_modules_es_array_concat__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! core-js/modules/es.array.concat */ \"./node_modules/core-js/modules/es.array.concat.js\");\n/* harmony import */ var core_js_modules_es_array_concat__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_array_concat__WEBPACK_IMPORTED_MODULE_0__);\n/* harmony import */ var core_js_modules_es_array_find__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! core-js/modules/es.array.find */ \"./node_modules/core-js/modules/es.array.find.js\");\n/* harmony import */ var core_js_modules_es_array_find__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_array_find__WEBPACK_IMPORTED_MODULE_1__);\n/* harmony import */ var core_js_modules_es_array_join__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! core-js/modules/es.array.join */ \"./node_modules/core-js/modules/es.array.join.js\");\n/* harmony import */ var core_js_modules_es_array_join__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_array_join__WEBPACK_IMPORTED_MODULE_2__);\n/* harmony import */ var core_js_modules_es_string_trim__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! core-js/modules/es.string.trim */ \"./node_modules/core-js/modules/es.string.trim.js\");\n/* harmony import */ var core_js_modules_es_string_trim__WEBPACK_IMPORTED_MODULE_3___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_string_trim__WEBPACK_IMPORTED_MODULE_3__);\n/* harmony import */ var _pagination__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./pagination */ \"./src/js/_project/pagination.js\");\n/* harmony import */ var _filterHelper__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./filterHelper */ \"./src/js/_project/filterHelper.js\");\n\n\n\n\n\n\nvar peopleFiltering = {\n  $resultsRangeContainer: $('.js-results-range'),\n  $peopleSearchInput: $('#people-search'),\n  pagination: Object(_pagination__WEBPACK_IMPORTED_MODULE_4__[/* default */ \"a\"])(),\n  init: function init() {\n    this.attachEventsToPeopleFinderModule();\n    var paginationContainer = $('.js-people-pagination-container');\n    if (paginationContainer.length === 0) return;\n    this.pagination.setOptions({\n      clickCallback: this.paginationClickCallback.bind(this),\n      historyCallback: this.historyPopCallback.bind(this)\n    });\n    this.pagination.init(paginationContainer);\n    this.attachEvents();\n    _filterHelper__WEBPACK_IMPORTED_MODULE_5__[/* default */ \"a\"].updateAppliedFiltersNumber();\n    this.updateResultsRange();\n  },\n  attachEvents: function attachEvents() {\n    var _this = this;\n\n    this.$peopleSearchInput.on('keyup', this.delay(function () {\n      _this.filterResults();\n    }, 500));\n    _filterHelper__WEBPACK_IMPORTED_MODULE_5__[/* default */ \"a\"].$filterButton.on('click', function () {\n      _this.filterResults();\n    });\n    _filterHelper__WEBPACK_IMPORTED_MODULE_5__[/* default */ \"a\"].$clearFilterButton.on('click', function () {\n      _filterHelper__WEBPACK_IMPORTED_MODULE_5__[/* default */ \"a\"].clearAllFilters();\n\n      _this.filterResults();\n    });\n    _filterHelper__WEBPACK_IMPORTED_MODULE_5__[/* default */ \"a\"].$closeFilterButton.on('click', function () {\n      _this.resetFilterToPreviousState(_this.pagination.$paginationContainer.attr('pagination-data-expertise'), _this.pagination.$paginationContainer.attr('pagination-data-locations'));\n    });\n  },\n  attachEventsToPeopleFinderModule: function attachEventsToPeopleFinderModule() {\n    $(document).on('keyup', '.js-people-finder-module-input', function (e) {\n      var enterKeyCode = 13;\n      if (e.keyCode !== enterKeyCode) return;\n      findPeople($(this));\n    });\n    $(document).on('click', '.js-people-finder-module-button', function () {\n      findPeople($(this).siblings('input'));\n    });\n\n    function findPeople($inputElement) {\n      var value = $inputElement.val().trim();\n      if (!value) return;\n      location.href = \"\".concat($inputElement.data('page-url'), \"?\").concat($inputElement.attr('name'), \"=\").concat(value);\n    }\n  },\n  filterResults: function filterResults() {\n    var _this2 = this;\n\n    var query = this.$peopleSearchInput.val().trim();\n    var expertise = _filterHelper__WEBPACK_IMPORTED_MODULE_5__[/* default */ \"a\"].getCheckedFilters('.js-expertise-filter').join(',');\n    var locations = _filterHelper__WEBPACK_IMPORTED_MODULE_5__[/* default */ \"a\"].getCheckedFilters('.js-location-filter').join(',');\n    var data = {\n      pageKey: this.pagination.pageKey,\n      q: query,\n      expertise: expertise,\n      locations: locations\n    };\n    _filterHelper__WEBPACK_IMPORTED_MODULE_5__[/* default */ \"a\"].updateAppliedFiltersNumber();\n    _filterHelper__WEBPACK_IMPORTED_MODULE_5__[/* default */ \"a\"].toggleClearFilterButtons();\n    _filterHelper__WEBPACK_IMPORTED_MODULE_5__[/* default */ \"a\"].closeFilter(); //console.log(this.pagination.endpointUrl);\n\n    $.get(this.pagination.endpointUrl, data, function (response) {\n      _this2.pagination.updateListingContainer(response);\n\n      _this2.updateResultsRange();\n\n      _this2.pagination.updateHistory({\n        html: response,\n        locations: locations,\n        expertise: expertise,\n        q: query\n      }, {\n        q: query,\n        expertise: expertise,\n        locations: locations\n      });\n\n      _this2.setAdditionalPaginationData(expertise, locations, query);\n    });\n  },\n  updateResultsRange: function updateResultsRange() {\n    var resultsRange = this.pagination.$paginationContainer.find('.js-hiddend-results').val();\n    this.$resultsRangeContainer.empty().html(resultsRange);\n  },\n  delay: function delay(fn, ms) {\n    var timer = 0;\n    return function () {\n      clearTimeout(timer);\n\n      for (var _len = arguments.length, args = new Array(_len), _key = 0; _key < _len; _key++) {\n        args[_key] = arguments[_key];\n      }\n\n      timer = setTimeout(fn.bind.apply(fn, [this].concat(args)), ms || 0);\n    };\n  },\n  paginationClickCallback: function paginationClickCallback() {\n    this.updateResultsRange();\n  },\n  historyPopCallback: function historyPopCallback(data) {\n    this.updateResultsRange();\n    this.$peopleSearchInput.val(data.q);\n    this.resetFilterToPreviousState(data.locations, data.expertise);\n    _filterHelper__WEBPACK_IMPORTED_MODULE_5__[/* default */ \"a\"].updateAppliedFiltersNumber();\n    _filterHelper__WEBPACK_IMPORTED_MODULE_5__[/* default */ \"a\"].toggleClearFilterButtons();\n    this.setAdditionalPaginationData(data.expertise, data.locations, data.q);\n  },\n  resetFilterToPreviousState: function resetFilterToPreviousState(location, expertise) {\n    _filterHelper__WEBPACK_IMPORTED_MODULE_5__[/* default */ \"a\"].clearAllFilters();\n    _filterHelper__WEBPACK_IMPORTED_MODULE_5__[/* default */ \"a\"].reapplyFiltersFromString(location);\n    _filterHelper__WEBPACK_IMPORTED_MODULE_5__[/* default */ \"a\"].reapplyFiltersFromString(expertise);\n  },\n  setAdditionalPaginationData: function setAdditionalPaginationData(expertise, locations, query) {\n    this.pagination.$paginationContainer.attr({\n      'pagination-data-expertise': expertise || '',\n      'pagination-data-locations': locations || '',\n      'pagination-data-q': query || ''\n    });\n  }\n};\n/* harmony default export */ __webpack_exports__[\"a\"] = (peopleFiltering);\n/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! jquery */ \"./node_modules/jquery/dist/jquery.js\")))\n\n//# sourceURL=webpack:///./src/js/_project/peopleFiltering.js?")},"./src/js/_project/popUp.js":function(module,__webpack_exports__,__webpack_require__){"use strict";eval('/* WEBPACK VAR INJECTION */(function($) {/* harmony import */ var _helpers__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./helpers */ "./src/js/_project/helpers.js");\n\nvar popUp = {\n  popUp: $(\'.js-share\'),\n  overlay: $(\'.js-overlay\'),\n  close: $(\'.js-close\'),\n  init: function init() {\n    var _this = this;\n\n    this.popUp.click(function () {\n      _this.overlay.addClass(\'popopup-zindex\').fadeIn(300);\n\n      _helpers__WEBPACK_IMPORTED_MODULE_0__[/* default */ "a"].disableScroll();\n    });\n    this.close.click(function () {\n      _this.overlay.fadeOut(300);\n\n      _helpers__WEBPACK_IMPORTED_MODULE_0__[/* default */ "a"].enableScroll();\n    });\n  }\n};\n/* harmony default export */ __webpack_exports__["a"] = (popUp);\n/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! jquery */ "./node_modules/jquery/dist/jquery.js")))\n\n//# sourceURL=webpack:///./src/js/_project/popUp.js?')},"./src/js/_project/progressBar.js":function(module,__webpack_exports__,__webpack_require__){"use strict";eval("/* WEBPACK VAR INJECTION */(function($) {var progressBar = {\n  $domHtmlBody: $('html, body'),\n  $domScrollTop: $('.js-back-top'),\n  scrollSpeed: 1000,\n  init: function init() {\n    this.progress();\n    this.backToTop();\n    this.articlePageScroll();\n  },\n  progress: function progress() {\n    var _this2 = this;\n\n    if ($('.article-page').length) {\n      return;\n    }\n\n    $(document).on('scroll', function () {\n      _this2.progressLine();\n    });\n  },\n  progressLine: function progressLine() {\n    var pixels = $(document).scrollTop();\n    var pageHeight = $(document).height() - $(window).height();\n    var progress = 100 * pixels / pageHeight;\n    $('.progress__bar').css('width', progress + '%');\n  },\n  backToTop: function backToTop() {\n    var _this3 = this;\n\n    this.$domScrollTop.on('click', function (e) {\n      e.preventDefault();\n\n      _this3.$domHtmlBody.animate({\n        scrollTop: 0\n      }, _this3.scrollSpeed);\n    });\n  },\n  articlePageScroll: function articlePageScroll() {\n    if (!$('.article-page').length) {\n      return;\n    }\n\n    var _this = this;\n\n    var lastScrollTop = 2;\n    $(window).scroll(function () {\n      var currentScroll = $(this).scrollTop();\n\n      if (currentScroll < 3) {\n        $('.progress').removeClass('progress--active');\n        $('.header').removeClass('header--inactive').removeClass('header--sticky');\n      } else if (currentScroll > lastScrollTop) {\n        _this.progressLine();\n\n        $('.progress').addClass('progress--active');\n        $('.header').addClass('header--inactive').removeClass('header--sticky');\n      } else if (currentScroll < lastScrollTop) {\n        $('.progress').removeClass('progress--active');\n        $('.header').removeClass('header--inactive').addClass('header--sticky');\n      }\n\n      lastScrollTop = currentScroll;\n    });\n  }\n};\n/* harmony default export */ __webpack_exports__[\"a\"] = (progressBar);\n/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! jquery */ \"./node_modules/jquery/dist/jquery.js\")))\n\n//# sourceURL=webpack:///./src/js/_project/progressBar.js?")},"./src/js/_project/responsiveImages.js":function(module,__webpack_exports__,__webpack_require__){"use strict";eval("/* WEBPACK VAR INJECTION */(function($) {var responsiveImages = {\n  $bgSwitch: $('.js-grid-bg-img'),\n  init: function init() {\n    this.responsiveBackgroundImage();\n  },\n  responsiveBackgroundImage: function responsiveBackgroundImage() {\n    if (this.$bgSwitch.length) {\n      this.$bgSwitch.each(function () {\n        var $img = $(this);\n        var imgDesktop = $img.data('desktop-img');\n        var imgtablet = $img.data('tablet-img');\n        var imgMobile = $img.data('mobile-img');\n\n        if ($(window).width() > 1023) {\n          if (imgDesktop) {\n            $img.css('background-image', 'url(' + imgDesktop + ')');\n          }\n\n          return;\n        }\n\n        if ($(window).width() > 767 && $(window).width() < 1024) {\n          if (imgtablet) {\n            $img.css('background-image', 'url(' + imgtablet + ')');\n          } else if (imgDesktop) {\n            $img.css('background-image', 'url(' + imgDesktop + ')');\n          }\n\n          return;\n        }\n\n        if (imgMobile) {\n          $img.css('background-image', 'url(' + imgMobile + ')');\n        } else if (imgDesktop) {\n          $img.css('background-image', 'url(' + imgDesktop + ')');\n        }\n      });\n    }\n  }\n};\n/* harmony default export */ __webpack_exports__[\"a\"] = (responsiveImages);\n/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! jquery */ \"./node_modules/jquery/dist/jquery.js\")))\n\n//# sourceURL=webpack:///./src/js/_project/responsiveImages.js?")},"./src/js/_project/resultsAndPresentations.js":function(module,__webpack_exports__,__webpack_require__){"use strict";eval("/* WEBPACK VAR INJECTION */(function($) {/* harmony import */ var core_js_modules_es_array_concat__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! core-js/modules/es.array.concat */ \"./node_modules/core-js/modules/es.array.concat.js\");\n/* harmony import */ var core_js_modules_es_array_concat__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_array_concat__WEBPACK_IMPORTED_MODULE_0__);\n/* harmony import */ var core_js_modules_es_array_find__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! core-js/modules/es.array.find */ \"./node_modules/core-js/modules/es.array.find.js\");\n/* harmony import */ var core_js_modules_es_array_find__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_array_find__WEBPACK_IMPORTED_MODULE_1__);\n/* harmony import */ var core_js_modules_es_array_for_each__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! core-js/modules/es.array.for-each */ \"./node_modules/core-js/modules/es.array.for-each.js\");\n/* harmony import */ var core_js_modules_es_array_for_each__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_array_for_each__WEBPACK_IMPORTED_MODULE_2__);\n/* harmony import */ var core_js_modules_es_object_keys__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! core-js/modules/es.object.keys */ \"./node_modules/core-js/modules/es.object.keys.js\");\n/* harmony import */ var core_js_modules_es_object_keys__WEBPACK_IMPORTED_MODULE_3___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_object_keys__WEBPACK_IMPORTED_MODULE_3__);\n/* harmony import */ var core_js_modules_web_dom_collections_for_each__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! core-js/modules/web.dom-collections.for-each */ \"./node_modules/core-js/modules/web.dom-collections.for-each.js\");\n/* harmony import */ var core_js_modules_web_dom_collections_for_each__WEBPACK_IMPORTED_MODULE_4___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_web_dom_collections_for_each__WEBPACK_IMPORTED_MODULE_4__);\n\n\n\n\n\nvar resultsAndPresentations = {\n  resultsPerYearEndPointUrl: '',\n  resultsArchiveEndPointUrl: '',\n  pageKey: '',\n  $container: $('#js-results-container'),\n  $paginationList: null,\n  init: function init() {\n    if (!this.$container.length) return;\n    this.resultsPerYearEndPointUrl = this.$container.data('results-per-year-endpoint');\n    this.resultsArchiveEndPointUrl = this.$container.data('url');\n    this.pageKey = this.$container.data('page-key');\n    this.$paginationList = this.$container.find('[data-pagination-list]');\n    this.attachTabClick();\n  },\n  attachTabClick: function attachTabClick() {\n    var _this = this;\n\n    var activeTab = 'tabs__top-link--active';\n    $(document).on('click', 'a[tab]', function () {\n      var $this = $(this);\n      var isArchive = $this.attr('archive') !== undefined;\n      var year = $this.text();\n      $('a[tab]').removeClass(activeTab);\n      $this.addClass(activeTab);\n\n      if (isArchive) {\n        _this.getArchive();\n\n        return;\n      }\n\n      _this.getResultsPerYear(year);\n    });\n  },\n  getResultsPerYear: function getResultsPerYear(year) {\n    var _this2 = this;\n\n    $.get(this.resultsPerYearEndPointUrl, {\n      pageKey: this.pageKey,\n      year: year\n    }, function (response) {\n      _this2.$paginationList.empty();\n\n      _this2.$paginationList.html(response);\n\n      _this2.$paginationList.show();\n\n      _this2.updateBrowserHistory({\n        year: year\n      });\n    });\n  },\n  getArchive: function getArchive() {\n    var _this3 = this;\n\n    $.get(this.resultsArchiveEndPointUrl, {\n      pageKey: this.pageKey\n    }, function (response) {\n      _this3.$paginationList.empty();\n\n      _this3.$paginationList.html(response);\n\n      _this3.$paginationList.show();\n\n      _this3.updateBrowserHistory({\n        archive: true\n      });\n    });\n  },\n  updateBrowserHistory: function updateBrowserHistory(params) {\n    if (!params) return;\n    var queryString = '';\n    var keys = Object.keys(params);\n    keys.forEach(function (key) {\n      if (!params[key]) return;\n      queryString += \"\".concat(queryString.length === 0 ? '?' : '&').concat(key, \"=\").concat(params[key]);\n    });\n    history.replaceState(params, '', \"\".concat(location.pathname).concat(queryString));\n  }\n};\n/* harmony default export */ __webpack_exports__[\"a\"] = (resultsAndPresentations);\n/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! jquery */ \"./node_modules/jquery/dist/jquery.js\")))\n\n//# sourceURL=webpack:///./src/js/_project/resultsAndPresentations.js?")},"./src/js/_project/scrollDown.js":function(module,__webpack_exports__,__webpack_require__){"use strict";eval("/* WEBPACK VAR INJECTION */(function($) {/* harmony import */ var core_js_modules_es_array_find__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! core-js/modules/es.array.find */ \"./node_modules/core-js/modules/es.array.find.js\");\n/* harmony import */ var core_js_modules_es_array_find__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_array_find__WEBPACK_IMPORTED_MODULE_0__);\n\nvar scrollDown = {\n  init: function init() {\n    var $body = $('body');\n    var $animateElement = $('html, body');\n    $body.find('.hero-slider').on('click', '.js-scroll-down', function () {\n      var $this = $(this);\n      var offsetTop = $this.closest('.hero-slider').next().offset().top;\n      $animateElement.stop().animate({\n        scrollTop: offsetTop\n      }, 600);\n    });\n  }\n};\n/* harmony default export */ __webpack_exports__[\"a\"] = (scrollDown);\n/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! jquery */ \"./node_modules/jquery/dist/jquery.js\")))\n\n//# sourceURL=webpack:///./src/js/_project/scrollDown.js?")},"./src/js/_project/search.js":function(module,__webpack_exports__,__webpack_require__){"use strict";eval("/* WEBPACK VAR INJECTION */(function($) {/* harmony import */ var core_js_modules_es_array_filter__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! core-js/modules/es.array.filter */ \"./node_modules/core-js/modules/es.array.filter.js\");\n/* harmony import */ var core_js_modules_es_array_filter__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_array_filter__WEBPACK_IMPORTED_MODULE_0__);\n/* harmony import */ var core_js_modules_es_array_find__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! core-js/modules/es.array.find */ \"./node_modules/core-js/modules/es.array.find.js\");\n/* harmony import */ var core_js_modules_es_array_find__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_array_find__WEBPACK_IMPORTED_MODULE_1__);\n/* harmony import */ var core_js_modules_es_string_trim__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! core-js/modules/es.string.trim */ \"./node_modules/core-js/modules/es.string.trim.js\");\n/* harmony import */ var core_js_modules_es_string_trim__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_string_trim__WEBPACK_IMPORTED_MODULE_2__);\n/* harmony import */ var _helpers__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./helpers */ \"./src/js/_project/helpers.js\");\n/* harmony import */ var _pagination__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./pagination */ \"./src/js/_project/pagination.js\");\n\n\n\n\n\nvar search = {\n  $btnOpenSearch: $('.js-open-search'),\n  $btnCloseSearch: $('.js-close-search'),\n  $searchPopup: $('.search__popup'),\n  $header: $('.header'),\n  headerSticky: 'header--sticky',\n  pagination: Object(_pagination__WEBPACK_IMPORTED_MODULE_4__[/* default */ \"a\"])(),\n  init: function init() {\n    this.searchPopup();\n    this.selectDropdown();\n    this.navigation();\n    this.filter();\n    this.searchForms();\n    this.scrollSection();\n    this.scrollForm();\n    var paginationContainer = $('.js-search-pagination-container');\n    if (paginationContainer.length === 0) return;\n    this.pagination.init(paginationContainer);\n  },\n  searchPopup: function searchPopup() {\n    var _this2 = this;\n\n    this.$btnOpenSearch.on('click', function () {\n      _this2.$searchPopup.fadeIn();\n\n      $('.nav__item').removeClass('nav__item--active');\n      $('.header').removeClass('header--white');\n      $('.header').addClass('header--search');\n      _helpers__WEBPACK_IMPORTED_MODULE_3__[/* default */ \"a\"].disableScroll();\n    });\n    this.$btnCloseSearch.on('click', function () {\n      $('.header').removeClass('header--search');\n\n      _this2.$searchPopup.fadeOut();\n\n      _helpers__WEBPACK_IMPORTED_MODULE_3__[/* default */ \"a\"].enableScroll();\n    });\n  },\n  selectDropdown: function selectDropdown() {\n    $('select').selectric();\n  },\n  scrollForm: function scrollForm() {\n    $(document).on('click', '.primary', function () {\n      var formOffset = $('.form').offset().top;\n      $('html, body').animate({\n        scrollTop: formOffset\n      }, 600);\n    });\n  },\n  scrollSection: function scrollSection() {\n    if ($('.error-page').length || $('.article-page').length) {\n      return;\n    }\n\n    var _this = this; // $(window).on('scroll', ()=> {\n    // \tconst scrollTop = $(window).scrollTop();\n    // \tif(scrollTop > 0) {\n    // \t\t_this.$header.addClass(_this.headerSticky);\n    // \t} else {\n    // \t\t_this.$header.removeClass(_this.headerSticky);\n    // \t}\n    // });\n\n\n    var lastScrollTop = 2;\n    $(window).scroll(function () {\n      var currentScroll = $(this).scrollTop();\n\n      if (currentScroll < 3) {\n        _this.$header.removeClass(_this.headerSticky); //console.log('test');\n\n      } else if (currentScroll > lastScrollTop) {\n        _this.$header.removeClass(_this.headerSticky); //console.log('down');\n\n      } else if (currentScroll < lastScrollTop) {\n        _this.$header.addClass(_this.headerSticky); //console.log('up');\n\n      }\n\n      lastScrollTop = currentScroll;\n    });\n  },\n  navigation: function navigation() {\n    var _this = this;\n\n    $('.nav__link').on('click', function () {\n      if ($(this).parent().hasClass('nav__item-children')) {\n        if (!$(this).parent().hasClass('nav__item--active')) {\n          $('.nav__item').removeClass('nav__item--active');\n          $(this).parent().addClass('nav__item--active');\n          $('.header').addClass('header--white');\n          _helpers__WEBPACK_IMPORTED_MODULE_3__[/* default */ \"a\"].disableScroll();\n        } else {\n          $('.nav__item').removeClass('nav__item--active');\n          $('.header').removeClass('header--white');\n          _helpers__WEBPACK_IMPORTED_MODULE_3__[/* default */ \"a\"].enableScroll();\n        }\n      }\n\n      $('.header').removeClass('header--search');\n\n      _this.$searchPopup.fadeOut();\n    });\n    $(document).on('click', function (e) {\n      if ($(e.target).closest('.header').length === 0) {\n        $('.nav__item').removeClass('nav__item--active');\n        $('.header').removeClass('header--white header--search');\n\n        _this.$searchPopup.fadeOut();\n      }\n    });\n    $(document).on('keyup', function (e) {\n      var escKey = 27;\n\n      if (e.keyCode === escKey) {\n        $('.nav__item').removeClass('nav__item--active');\n        $('.header').removeClass('header--white header--search');\n\n        _this.$searchPopup.fadeOut();\n      }\n    });\n    $(document).on('click', '.pagination__link', function () {\n      var sectionOffset = $('.js-pagination-top').offset().top;\n      $('html, body').animate({\n        scrollTop: sectionOffset\n      }, 600);\n    });\n    $('.header__menu').on('click', function () {\n      $('.header__menu').toggleClass('header__menu--open');\n      $('.nav-dev').toggleClass('nav-dev--active');\n\n      if ($('.header__menu').hasClass('header__menu--open')) {\n        _helpers__WEBPACK_IMPORTED_MODULE_3__[/* default */ \"a\"].disableScroll();\n        $('.header').addClass('header__overlay');\n      } else {\n        _helpers__WEBPACK_IMPORTED_MODULE_3__[/* default */ \"a\"].enableScroll();\n        $('.header').removeClass('header__overlay');\n      }\n    });\n    $('.nav-dev__link').on('click', function () {\n      $('.nav-dev__link').removeClass('nav-dev__link--active');\n      $('.nav-dev__link').next().stop().slideUp();\n      $(this).toggleClass('nav-dev__link--active');\n      $(this).next().stop().slideToggle();\n    });\n  },\n  filter: function filter() {\n    $('.js-filter-btn').on('click', function () {\n      $('.js-filter').addClass('filter--open');\n      _helpers__WEBPACK_IMPORTED_MODULE_3__[/* default */ \"a\"].disableScroll();\n    });\n    $('.js-filter-close').on('click', function () {\n      $('.js-filter').removeClass('filter--open');\n      _helpers__WEBPACK_IMPORTED_MODULE_3__[/* default */ \"a\"].enableScroll();\n      _helpers__WEBPACK_IMPORTED_MODULE_3__[/* default */ \"a\"].resetScroll();\n    });\n    $('.filter__wrap').mCustomScrollbar({\n      axis: 'y'\n    });\n    $(document).on('keyup', function (e) {\n      var escKey = 27;\n\n      if (e.keyCode === escKey) {\n        $('.js-filter').removeClass('filter--open');\n        _helpers__WEBPACK_IMPORTED_MODULE_3__[/* default */ \"a\"].enableScroll();\n        _helpers__WEBPACK_IMPORTED_MODULE_3__[/* default */ \"a\"].resetScroll();\n      }\n    });\n  },\n  searchForms: function searchForms() {\n    var $form = $('.js-search-form');\n    if (!$form.length) return;\n    $form.on('submit', function (e) {\n      var $this = $(this);\n      var q = $this.find('.js-search-query-field').val().trim();\n\n      if (!q.length) {\n        e.preventDefault();\n        return;\n      }\n\n      var type = $this.closest('.js-search-form-wrap').find('select')[0].value;\n      $this.find('.js-search-type-field').val(type);\n    });\n  }\n};\n/* harmony default export */ __webpack_exports__[\"a\"] = (search);\n/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! jquery */ \"./node_modules/jquery/dist/jquery.js\")))\n\n//# sourceURL=webpack:///./src/js/_project/search.js?")},"./src/js/_project/share.js":function(module,__webpack_exports__,__webpack_require__){"use strict";eval("/* WEBPACK VAR INJECTION */(function($) {var share = {\n  init: function init() {\n    $(document).on('click', '#js-copy-link-btn', function () {\n      var ta = document.createElement('textarea');\n      ta.value = location.href;\n      ta.style.position = 'absolute';\n      ta.style.left = '-9999px';\n      ta.style.top = '0';\n      document.body.appendChild(ta);\n      ta.select();\n      document.execCommand('copy');\n      document.body.removeChild(ta);\n    });\n  }\n};\n/* harmony default export */ __webpack_exports__[\"a\"] = (share);\n/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! jquery */ \"./node_modules/jquery/dist/jquery.js\")))\n\n//# sourceURL=webpack:///./src/js/_project/share.js?")},"./src/js/_project/slider.js":function(module,__webpack_exports__,__webpack_require__){"use strict";eval("/* WEBPACK VAR INJECTION */(function($) {/* harmony import */ var core_js_modules_es_array_find__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! core-js/modules/es.array.find */ \"./node_modules/core-js/modules/es.array.find.js\");\n/* harmony import */ var core_js_modules_es_array_find__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_array_find__WEBPACK_IMPORTED_MODULE_0__);\n/* harmony import */ var _helpers__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./helpers */ \"./src/js/_project/helpers.js\");\n\n\nvar slider = {\n  swiper: null,\n  selector: $('.js-slider'),\n  mobileSlider: $('.js-mobile-slider'),\n  container: $('.js-container'),\n  card: $('.js-slide'),\n  feature: $('.js-feature'),\n  sliderImgIframe: $('.js-slider-img-iframe'),\n  featurePeople: $('.js-feature-people'),\n  homeSlider: $('.js-home-slider'),\n  hero: $('.js-hero-slider'),\n  heroText: $('.js-slide-text'),\n  isPaused: false,\n  slideTime: 0,\n  hoverLink: $('.js-hover'),\n  hoverBg: $('.js-hover-bg'),\n  played: false,\n  icons: $('.continent__icons'),\n  info: $('.js-feature-people-info'),\n  paused: false,\n  init: function init() {\n    var _this2 = this;\n\n    this.initTotal();\n    this.selector.slick();\n    this.mobileSlide();\n    this.featureSlide();\n    this.slideImgIframe();\n    setTimeout(function () {\n      _this2.myHomeSlider();\n    }, 1000);\n    this.heroSlider();\n    this.togglePlay();\n    this.hoverImage();\n    this.checkVideo();\n    this.isTablet();\n    this.changeOrientation();\n    this.isMozilla();\n    this.hoverBgImage();\n  },\n  isTablet: function isTablet() {\n    var ua = navigator.userAgent;\n\n    if (/Mozilla/.test(navigator.userAgent) && /Firefox/.test(navigator.userAgent)) {\n      return;\n    } else if (/Chrome/.test(navigator.userAgent) && /Google Inc/.test(navigator.vendor)) {\n      return;\n    } else if (/Mozilla/.test(navigator.appCodeName)) {\n      return;\n    } else if (/(tablet|ipad|playbook|silk|Macintosh|navigator.maxTouchPoints > 0)|(android(?!.*mobi))|/i.test(ua)) {\n      this.icons.addClass('continent__icons-hide');\n    }\n  },\n  isMozilla: function isMozilla() {\n    var isMozilla = /Mozilla/.test(navigator.userAgent) && /Firefox/.test(navigator.userAgent);\n    var isIE11 = /Mozilla/.test(navigator.appCodeName);\n\n    if (isMozilla) {\n      $('.large-letter').addClass('large-letter--mozilla');\n    } else if (isIE11) {\n      $('.large-letter').removeClass('large-letter--mozilla');\n    }\n  },\n  mobileSlide: function mobileSlide() {\n    this.mobileSlider.slick({\n      slideToShow: 1,\n      slidesToScroll: 1,\n      autoplay: false,\n      autoplaySpeed: false,\n      mobileFirst: true,\n      centerPadding: '0px',\n      variableWidth: true,\n      infinite: false,\n      dots: false,\n      prevArrow: false,\n      nextArrow: false,\n      responsive: [{\n        breakpoint: 767,\n        settings: 'unslick'\n      }]\n    });\n  },\n  initTotal: function initTotal() {\n    if (!this.hero.length) {\n      return;\n    }\n\n    var total = this.hero.find('.hero-slider__slide').length;\n\n    if (total < 10) {\n      total = '0' + total;\n    }\n\n    $('.hero-slider__totals').html(total);\n  },\n  heroSlider: function heroSlider() {\n    var _this3 = this;\n\n    if (!this.hero.length) {\n      return;\n    }\n\n    var autoplaySlider = function autoplaySlider() {\n      $('.js-progress').addClass('hero-slider__progress--started');\n      _this3.slideTime = 0;\n      window.slidePlay = setInterval(function () {\n        if (!_this3.isPaused) {\n          document.querySelector('.js-progress').style.animationPlayState = 'running';\n          document.querySelector('.js-progress').style.webkitAnimationPlayState = 'running';\n          _this3.slideTime = _this3.slideTime + 16;\n\n          if (_this3.slideTime >= 7000 - 14) {\n            // 7000 as autoplay time\n            clearInterval(window.slidePlay);\n            _this3.slideTime = 0;\n\n            _this3.hero.slick('slickNext');\n\n            $('.js-progress').removeClass('hero-slider__progress--started');\n          }\n        } else {\n          document.querySelector('.js-progress').style.animationPlayState = 'paused';\n          document.querySelector('.js-progress').style.webkitAnimationPlayState = 'paused';\n        }\n      }, 16);\n    };\n\n    this.hero.on('init', function () {\n      autoplaySlider();\n    });\n    this.hero.slick({\n      autoplay: false,\n      infinite: true,\n      dots: true,\n      fade: true,\n      prevArrow: '.js-prev-btn',\n      nextArrow: '.js-next-btn',\n      pauseOnFocus: false,\n      pauseOnHover: false,\n      responsive: [{\n        breakpoint: 1024,\n        settings: {\n          dots: false\n        }\n      }]\n    });\n    this.hero.on('beforeChange', function () {\n      $('.js-progress').removeClass('hero-slider__progress--started');\n      clearInterval(window.slidePlay);\n    });\n    this.hero.on('afterChange', function (event, slick, currentSlide) {\n      var current = currentSlide + 1;\n\n      if (current < 10) {\n        current = '0' + current;\n      }\n\n      $('.hero-slider__current').html(current);\n      $('.js-progress').removeClass('hero-slider__progress--started');\n      clearInterval(window.slidePlay);\n      setTimeout(function () {\n        autoplaySlider();\n      }, 250);\n\n      var currentText = _this3.heroText.eq(currentSlide);\n\n      $(currentText).addClass('hero-slider__box-text--active');\n\n      _this3.heroText.not(currentText).removeClass('hero-slider__box-text--active');\n\n      if (_this3.paused) {\n        $('.js-controls').trigger('click');\n        _this3.paused = false;\n      }\n\n      var video = $('.hero-slider__video')[0];\n\n      if ($('.slick-slide').eq(currentSlide).find('.hero-slider__video-wrap').length) {\n        video.play();\n      } else {\n        video.pause();\n        video.currentTime = 0;\n      }\n    });\n  },\n  togglePlay: function togglePlay() {\n    var _this = this;\n\n    $('.js-controls').on('click', function () {\n      if (_this.isPaused) {\n        $(this).removeClass('hero-slider__control--active');\n        $('.hero-slider').addClass('hero-slider--playing');\n        _this.isPaused = false;\n      } else {\n        $(this).addClass('hero-slider__control--active');\n        $('.hero-slider').removeClass('hero-slider--playing');\n        _this.isPaused = true;\n      }\n    });\n  },\n  checkVideo: function checkVideo() {\n    if (!this.hero.find('.hero-slider__video-wrap').length) {\n      return;\n    }\n\n    $('.js-controls').trigger('click');\n    this.paused = true;\n  },\n  hoverImage: function hoverImage() {\n    this.hoverLink.on('mouseenter', function () {\n      $(this).closest('.hero-slider__slide').addClass('hero-slider__slide--hover');\n    });\n    this.hoverLink.on('mouseleave', function () {\n      $('.hero-slider__slide').removeClass('hero-slider__slide--hover');\n    });\n  },\n  myHomeSlider: function myHomeSlider() {\n    var mySwiper = new Swiper(this.homeSlider, {\n      slidesPerView: 'auto',\n      slideNext: true,\n      scrollbar: {\n        el: '.swiper-scrollbar',\n        hide: false\n      },\n      freeMode: true\n    });\n    _helpers__WEBPACK_IMPORTED_MODULE_1__[/* default */ \"a\"].setEqualHeights($('.home-slider__card-item'));\n    $('.home-slider').on('keyup', function () {\n      mySwiper.slideNext();\n    });\n  },\n  featureSlide: function featureSlide() {\n    var _this4 = this;\n\n    if (!this.container.length) {\n      return;\n    }\n\n    var _this = this;\n\n    var settings = {\n      slidesPerView: 'auto',\n      scrollbar: {\n        el: '.swiper-scrollbar',\n        hide: false\n      },\n      freeMode: true\n    };\n\n    _this.container.each(function (i, elem) {\n      if ($(window).width() > 767) {\n        _helpers__WEBPACK_IMPORTED_MODULE_1__[/* default */ \"a\"].setEqualHeights($('.feature-people__card-item'));\n      }\n\n      _helpers__WEBPACK_IMPORTED_MODULE_1__[/* default */ \"a\"].setEqualHeights($('.feature-people__mobile-slider .feature-people__card-item'));\n      var element = $(elem);\n\n      if (element.find(_this.card).length === 1) {\n        element.addClass('feature-people__swiper-visible');\n\n        if ($(window).width() >= 1024) {\n          element.find('.swiper-wrapper').addClass('feature-people__one-card--right');\n          element.parents('.js-feature').find('.js-feature-people-info').addClass('feature-people__info__one-card');\n        }\n\n        if ($(window).width() < 767) {\n          element.find('.js-feature').addClass('feature-people__one-card');\n          element.parents('.js-feature').addClass('feature-people__mobile-single');\n          element.find('.swiper-wrapper').addClass('swiper-block-view');\n        }\n\n        if ($(window).width() > 767 && $(window).width() < 992) {\n          element.find('.swiper-wrapper').removeClass('feature-people__one-card--right');\n        }\n      }\n\n      if (element.find(_this.card).length === 2) {\n        element.parents('.js-feature').find('.js-feature-people-info').addClass('feature-people__info-two-cards');\n        element.addClass('feature-people__swiper-visible');\n\n        if ($(window).width() < 767) {\n          element.find('.swiper-wrapper').addClass('swiper-block-view');\n        }\n      }\n\n      if (element.find(_this.card).length > 2) {\n        element.addClass('feature-people__swiper-hidden');\n\n        if ($(window).width() < 992) {\n          element.parents('.js-feature-people').addClass('feature-people__container--devices');\n          element.parents('.js-feature').addClass('feature-people__tablet-slider');\n        } else {\n          element.parents('.js-feature-people').removeClass('feature-people__container--devices');\n        }\n\n        if ($(window).width() < 767) {\n          element.parents('.js-feature').addClass('feature-people__mobile-slider');\n        }\n\n        _this.swiper = new Swiper(elem, settings);\n\n        _this.swiper.update();\n\n        $('.feature-people__container').on('keyup', function () {\n          _this4.swiper.slideNext();\n        });\n      }\n    });\n  },\n  hoverBgImage: function hoverBgImage() {\n    this.hoverBg.on('mouseenter', function () {\n      $(this).closest('.career__img-holder ').addClass('career__img-holder--hover');\n    });\n    this.hoverBg.on('mouseleave', function () {\n      $('.career__img-holder ').removeClass('career__img-holder--hover');\n    });\n  },\n  changeOrientation: function changeOrientation() {\n    var _this5 = this;\n\n    $(window).on('resize', function () {\n      if ($('.js-container').hasClass('swiper-container-initialized')) {\n        _this5.swiper.destroy(true, true);\n\n        $('.swiper-wrapper').removeAttr('style');\n      }\n\n      _this5.featureSlide();\n    });\n  },\n  slideImgIframe: function slideImgIframe() {\n    var _this6 = this;\n\n    this.sliderImgIframe.slick({\n      slideToShow: 1,\n      dots: false,\n      adaptiveHeight: true,\n      infinite: false,\n      prevArrow: '.js-btn-prev',\n      nextArrow: '.js-btn-next'\n    });\n    $('.slider-img-iframe__wrap').on('keyup', function () {\n      _this6.sliderImgIframe.slick('slickNext');\n    });\n    var totalSlides = this.sliderImgIframe.find('.slider-img-iframe__container').length;\n    $('.slider-img-iframe__totals').text(totalSlides);\n    this.sliderImgIframe.on('afterChange', function (event, slick, currentSlide) {\n      var headerHeight = window.innerWidth < 1200 ? $('.header').outerHeight() : 0;\n      $('.slider-img-iframe__current').text(currentSlide + 1);\n      $('html, body').animate({\n        scrollTop: _this6.sliderImgIframe.offset().top - headerHeight - 20\n      });\n    });\n  }\n};\n/* harmony default export */ __webpack_exports__[\"a\"] = (slider);\n/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! jquery */ \"./node_modules/jquery/dist/jquery.js\")))\n\n//# sourceURL=webpack:///./src/js/_project/slider.js?")},"./src/js/_project/tabs.js":function(module,__webpack_exports__,__webpack_require__){"use strict";eval("/* WEBPACK VAR INJECTION */(function($) {/* harmony import */ var core_js_modules_es_array_find__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! core-js/modules/es.array.find */ \"./node_modules/core-js/modules/es.array.find.js\");\n/* harmony import */ var core_js_modules_es_array_find__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_array_find__WEBPACK_IMPORTED_MODULE_0__);\n\nvar tabs = {\n  init: function init() {\n    var className = '';\n    var tabData = $(['data-tab']);\n    var tabContent = $('.tabs__container');\n    var tabLink = $('.tabs__top-link');\n\n    if (tabData.length) {\n      tabData.each(function () {\n        var $this = $(this);\n\n        if ($this.hasClass('tabs__top-link--active')) {\n          className = $this.data('tab');\n        }\n      });\n      tabContent.each(function () {\n        var $this = $(this);\n\n        if ($this.hasClass('js-' + className)) {\n          $this.show();\n        }\n      });\n      tabLink.on('click', function () {\n        var $this = $(this);\n        var className = $this.data('tab');\n        var tabParents = $this.parents('.tabs');\n        var tabs = tabParents.find('[data-tab]');\n        tabs.removeClass('tabs__top-link--active');\n        $this.addClass('tabs__top-link--active');\n        tabParents.find('[data-tab=\"' + className + '\"]').addClass('tabs__top-link--active');\n        tabParents.find('.tabs__container').hide();\n        tabParents.find('.js-' + className).fadeIn('slow').show();\n      });\n    }\n  }\n};\n/* harmony default export */ __webpack_exports__[\"a\"] = (tabs);\n/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! jquery */ \"./node_modules/jquery/dist/jquery.js\")))\n\n//# sourceURL=webpack:///./src/js/_project/tabs.js?")},"./src/js/_project/umbracoForms.js":function(module,__webpack_exports__,__webpack_require__){"use strict";eval("/* WEBPACK VAR INJECTION */(function($, jQuery) {/* harmony import */ var core_js_modules_es_array_find__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! core-js/modules/es.array.find */ \"./node_modules/core-js/modules/es.array.find.js\");\n/* harmony import */ var core_js_modules_es_array_find__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_array_find__WEBPACK_IMPORTED_MODULE_0__);\n/* harmony import */ var core_js_modules_es_array_index_of__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! core-js/modules/es.array.index-of */ \"./node_modules/core-js/modules/es.array.index-of.js\");\n/* harmony import */ var core_js_modules_es_array_index_of__WEBPACK_IMPORTED_MODULE_1___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_array_index_of__WEBPACK_IMPORTED_MODULE_1__);\n/* harmony import */ var core_js_modules_es_object_to_string__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! core-js/modules/es.object.to-string */ \"./node_modules/core-js/modules/es.object.to-string.js\");\n/* harmony import */ var core_js_modules_es_object_to_string__WEBPACK_IMPORTED_MODULE_2___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_object_to_string__WEBPACK_IMPORTED_MODULE_2__);\n/* harmony import */ var core_js_modules_es_regexp_exec__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! core-js/modules/es.regexp.exec */ \"./node_modules/core-js/modules/es.regexp.exec.js\");\n/* harmony import */ var core_js_modules_es_regexp_exec__WEBPACK_IMPORTED_MODULE_3___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_regexp_exec__WEBPACK_IMPORTED_MODULE_3__);\n/* harmony import */ var core_js_modules_es_string_match__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! core-js/modules/es.string.match */ \"./node_modules/core-js/modules/es.string.match.js\");\n/* harmony import */ var core_js_modules_es_string_match__WEBPACK_IMPORTED_MODULE_4___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_string_match__WEBPACK_IMPORTED_MODULE_4__);\n/* harmony import */ var core_js_modules_es_string_split__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! core-js/modules/es.string.split */ \"./node_modules/core-js/modules/es.string.split.js\");\n/* harmony import */ var core_js_modules_es_string_split__WEBPACK_IMPORTED_MODULE_5___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_string_split__WEBPACK_IMPORTED_MODULE_5__);\n/* harmony import */ var jquery_validation__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! jquery-validation */ \"./node_modules/jquery-validation/dist/jquery.validate.js\");\n/* harmony import */ var jquery_validation__WEBPACK_IMPORTED_MODULE_6___default = /*#__PURE__*/__webpack_require__.n(jquery_validation__WEBPACK_IMPORTED_MODULE_6__);\n/* harmony import */ var jquery_validation_unobtrusive__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! jquery-validation-unobtrusive */ \"./node_modules/jquery-validation-unobtrusive/dist/jquery.validate.unobtrusive.js\");\n/* harmony import */ var jquery_validation_unobtrusive__WEBPACK_IMPORTED_MODULE_7___default = /*#__PURE__*/__webpack_require__.n(jquery_validation_unobtrusive__WEBPACK_IMPORTED_MODULE_7__);\n\n\n\n\n\n\n\n\nvar umbracoForms = {\n  init: function init() {\n    //execute init() on document ready\n    if (document.readyState === 'complete' || document.readyState !== 'loading' && !document.documentElement.doScroll) {\n      listen();\n    } else {\n      document.addEventListener('DOMContentLoaded', listen);\n    }\n\n    function listen() {\n      if (typeof window.umbracoFormsCollection === 'undefined') {\n        //this will occur if this js file is loaded before the inline scripts, in which case\n        //we'll listen for the inline scripts to execute a custom event.\n        document.addEventListener('umbracoFormLoaded', init);\n      } else {\n        initCollection(window.umbracoFormsCollection);\n      }\n    }\n\n    function initCollection(formsCollection) {\n      configureUmbracoFormsValidation();\n\n      for (var i = 0; i < formsCollection.length; i++) {\n        init({\n          form: JSON.parse(decodeURI(formsCollection[i]))\n        });\n      }\n    }\n\n    function init(e) {\n      var formItem = e.form;\n      var forms = $('.umbraco-forms-form');\n      forms.each(function (i, form) {\n        dependencyCheck(form);\n        var page = $(this).find('.umbraco-forms-page');\n        var conditions = new UmbracoFormsConditions(page, formItem.fieldSetConditions, formItem.fieldConditions, formItem.recordValues);\n        conditions.watch();\n      });\n    }\n    /** Configures the jquery validation for Umbraco forms */\n\n\n    function configureUmbracoFormsValidation() {\n      if ($.validator !== undefined) {\n        $.validator.setDefaults({\n          ignore: ':hidden',\n          highlight: function highlight(element, errorClass, validClass) {\n            $(element).closest('.umbraco-forms-field').addClass('form-error');\n          },\n          unhighlight: function unhighlight(element, errorClass, validClass) {\n            $(element).closest('.umbraco-forms-field').removeClass('form-error');\n          }\n        });\n        $.validator.unobtrusive.adapters.addBool('requiredcb', 'required');\n        $.validator.addMethod('umbracoforms_regex', function (value, element) {\n          var regex = $(element).attr('data-regex');\n          var val = $(element).val();\n\n          if (val.length === 0) {\n            return true;\n          }\n\n          return val.match(regex);\n        });\n        $.validator.unobtrusive.adapters.addBool('regex', 'umbracoforms_regex');\n        $('.umbraco-forms-form input[type=submit]').not('.cancel').click(function (evt) {\n          evt.preventDefault();\n          var self = $(this);\n          var frm = self.closest('form'); //frm.validate();\n\n          if (frm.valid()) {\n            frm.submit();\n            self.attr('disabled', 'disabled');\n          }\n        });\n      }\n    }\n    /**\r\n     * method to determine if Umbraco Forms can run and has the required dependencies loaded\r\n     * @param {Form Element} formEl the element of the form\r\n     */\n\n\n    function dependencyCheck(formEl) {\n      //Only perform check if the global 'Umbraco.Sys' is null/undefined\n      //If present means we are in backoffice & that this is being rendered as a macro preview\n      //We do not need to perform this check here\n      if (typeof window.Umbraco !== 'undefined' && typeof window.Umbraco.Sys !== 'undefined') {\n        return;\n      } else {\n        var errorElement = document.createElement('div');\n        errorElement.className = 'umbraco-forms missing-library';\n        errorElement.style.color = '#fff';\n        errorElement.style.backgroundColor = '#9d261d';\n        errorElement.style.padding = '15px';\n        errorElement.style.margin = '10px 0';\n        var errorMessage = ''; //Ensure umbracoForm is not null\n\n        if (formEl) {\n          //Check to see if the message for the form has been inserted already\n          var checkForExistinhgErr = formEl.getElementsByClassName('umbraco-forms missing-library');\n\n          if (checkForExistinhgErr.length > 0) {\n            return;\n          } //Check for jQuery\n\n\n          if (typeof jQuery === 'undefined') {\n            errorMessage = errorMessage + 'jQuery has not been loaded & is required for Umbraco Forms.';\n          } else {\n            //These only work if jQuery is present, so it's in the else block\n            //Check for jQuery Validation\n            if (!$.validator) {\n              errorMessage = errorMessage + '<br />jQuery Validate has not been loaded & is required for Umbraco Forms.';\n            } //Check for jQuery Validation Unobtrusive\n            //Only works if jQuery validator has been loaded\n\n\n            if ($.validator && !$.validator.unobtrusive) {\n              errorMessage = errorMessage + '<br />jQuery Validate Unobtrusive has not been loaded & is required for Umbraco Forms.';\n            }\n          }\n\n          if (errorMessage !== '') {\n            errorElement.innerHTML = errorMessage + '<br/> <a href=\"https://our.umbraco.org/documentation/products/umbracoforms/developer/Prepping-Frontend/\" target=\"_blank\" style=\"text-decoration:underline; color:#fff;\">See Umbraco Forms Documentation<\/a>';\n            formEl.insertBefore(errorElement, formEl.childNodes[0]);\n          }\n        }\n      }\n    }\n    /**\r\n     * Class to handle Umbraco Forms conditional statements\r\n     * @param {any} form a reference to the form\r\n     * @param {any} fieldsetConditions a reference to the fieldset conditions\r\n     * @param {any} fieldConditions a reference to the field conditions\r\n     * @param {any} values the form values\r\n     * @return {Object} reference to the created class\r\n     */\n\n\n    function UmbracoFormsConditions(form, fieldsetConditions, fieldConditions, values) {\n      //our conditions 'class' - must always be newed to work as it uses a form instance to operate on\n      //load all the information from the dom and serverside info and then the class will take care of the rest\n      var self = {};\n      self.form = form;\n      self.fieldsetConditions = fieldsetConditions;\n      self.fieldConditions = fieldConditions;\n      self.values = values;\n      self.dataTypes = {}; //Iterates through all the form elements found on the page to update the registered value\n\n      function populateFieldValues(page, formValues, dataTypes) {\n        var $page = $(page);\n        $page.find('select').each(function () {\n          formValues[$(this).attr('id')] = $('option[value=\"' + $(this).val() + '\"]', $(this)).text();\n          dataTypes[$(this).attr('id')] = 'select';\n        });\n        $page.find('textarea').each(function () {\n          formValues[$(this).attr('id')] = $(this).val();\n          dataTypes[$(this).attr('id')] = 'textarea';\n        }); // clear out all saved checkbox values to we can safely append\n\n        $page.find('input[type=checkbox]').each(function () {\n          formValues[$(this).attr('name')] = null;\n          dataTypes[$(this).attr('id')] = 'checkbox';\n        });\n        $page.find('input').each(function () {\n          if ($(this).attr('type') === 'text' || $(this).attr('type') === 'hidden') {\n            formValues[$(this).attr('id')] = $(this).val();\n            dataTypes[$(this).attr('id')] = 'text';\n          }\n\n          if ($(this).attr('type') === 'radio') {\n            if ($(this).is(':checked')) {\n              formValues[$(this).attr('name')] = $(this).val();\n              dataTypes[$(this).attr('id')] = 'radio';\n            }\n          }\n\n          if ($(this).attr('type') === 'checkbox') {\n            if ($(this).attr('id') !== $(this).attr('name')) {\n              if ($(this).is(':checked')) {\n                if (formValues[$(this).attr('name')] === null) {\n                  formValues[$(this).attr('name')] = $(this).val();\n                } else {\n                  formValues[$(this).attr('name')] += ';;' + $(this).val();\n                }\n              }\n            } else {\n              formValues[$(this).attr('name')] = $(this).is(':checked') ? 'true' : 'false';\n            }\n          }\n        });\n      }\n      /* Public api */\n\n\n      self.operators = {\n        Is: function Is(value, expected, dataType) {\n          if ((value || '') === expected) {\n            return true;\n          }\n\n          if (value == null) {\n            // eslint-disable-line no-eq-null, eqeqeq\n            return expected === value;\n          }\n\n          if (dataType === 'checkbox') {\n            if (expected.toUpperCase() === 'TRUE' || expected.toUpperCase() === 'ON') {\n              expected = 'true';\n            } else if (expected.toUpperCase() === 'FALSE' || expected.toUpperCase() === 'OFF') {\n              expected = 'false';\n            }\n          }\n\n          var values = value.split(';;');\n          var matchingExpected = $.grep(values, function (o) {\n            return o === expected;\n          });\n          return matchingExpected.length > 0;\n        },\n        IsNot: function IsNot(value, unexpected, dataType) {\n          if (value == null) {\n            // eslint-disable-line no-eq-null, eqeqeq\n            return unexpected !== value;\n          }\n\n          var values = value.split(';;');\n          var matchingUnexpected = $.grep(values, function (o) {\n            return o === unexpected;\n          });\n\n          if (dataType === 'checkbox') {\n            if (unexpected.toUpperCase() === 'TRUE' || unexpected.toUpperCase() === 'ON') {\n              unexpected = 'true';\n            } else if (unexpected.toUpperCase() === 'FALSE' || unexpected.toUpperCase() === 'OFF') {\n              unexpected = 'false';\n            }\n          }\n\n          return (value || '') !== unexpected && matchingUnexpected.length === 0;\n        },\n        GreaterThen: function GreaterThen(value, limit, dataType) {\n          return parseInt(value) > parseInt(limit);\n        },\n        LessThen: function LessThen(value, limit, dataType) {\n          return parseInt(value) < parseInt(limit);\n        },\n        StartsWith: function StartsWith(value, criteria, dataType) {\n          return value && value.indexOf(criteria) === 0;\n        },\n        EndsWith: function EndsWith(value, criteria, dataType) {\n          return value && value.indexOf(criteria) === value.length - criteria.length;\n        },\n        Contains: function Contains(value, criteria, dataType) {\n          return value && value.indexOf(criteria) > -1;\n        }\n      };\n\n      self.watch = function () {\n        // This is a special case for pikaday\n        // The only way around to pickup the value, for now, is to\n        // subscribe to blur events\n        $('.datepickerfield', self.form).blur(function () {\n          if (this.value === '') {\n            // Here comes the hack\n            // Force the hidden datepicker field the datepicker field\n            var hiddenDatePickerField = this.id.substr(0, this.id.length - 2);\n            self.values[hiddenDatePickerField] = '';\n            $('#' + hiddenDatePickerField)[0].value = '';\n          }\n\n          populateFieldValues(self.form, self.values, self.dataTypes); //process the conditions\n\n          self.run();\n        }); //subscribe to change events\n\n        $('input, textarea, select', self.form).change(function () {\n          populateFieldValues(self.form, self.values, self.dataTypes); //process the conditions\n\n          self.run();\n        }); //register all values from the current fields on the page\n\n        populateFieldValues(self.form, self.values, self.dataTypes); //the initial run-through of all the conditions\n\n        self.run();\n      };\n\n      self.run = function () {\n        var fsId;\n        var fieldId;\n        /*\r\n        fsConditions = params.fsConditions || {},\r\n        fieldConditions = params.fieldConditions || {},\r\n        values = params.values || {},*/\n\n        var cachedResults = {};\n\n        function evaluateRuleInstance(rule) {\n          var value = self.values[rule.field];\n          var dataType = self.dataTypes[rule.field];\n          var func = self.operators[rule.operator];\n          var result = value !== null && func(value, rule.value, dataType);\n          return result;\n        }\n\n        function evaluateRule(rule) {\n          var dependencyIsVisible = true;\n\n          if (self.fieldConditions[rule.field]) {\n            dependencyIsVisible = isVisible(rule.field, self.fieldConditions[rule.field]);\n          }\n\n          if (dependencyIsVisible) {\n            return evaluateRuleInstance(rule);\n          } else {\n            return false;\n          }\n        }\n\n        function evaluateCondition(id, condition) {\n          // This was once pretty. Now it needs refactoring again. :)\n          var any = condition.logicType === 'Any';\n          var all = condition.logicType === 'All';\n          var fieldsetVisibilities = {};\n          var hasHiddenFieldset = false;\n          var success = true;\n          var rule;\n          var i;\n\n          for (i = 0; i < condition.rules.length; i++) {\n            rule = condition.rules[i];\n\n            if (id === rule.field || id === rule.fieldsetId) {\n              throw new Error('Field or fieldset ' + id + ' has a condition on itself.');\n            }\n\n            if (fieldsetVisibilities[rule.fieldsetId] !== undefined) {\n              continue;\n            }\n\n            if (self.fieldsetConditions[rule.fieldsetId]) {\n              fieldsetVisibilities[rule.fieldsetId] = isVisible(rule.fieldsetId, self.fieldsetConditions[rule.fieldsetId]);\n\n              if (!fieldsetVisibilities[rule.fieldsetId]) {\n                hasHiddenFieldset = true;\n              }\n            } else {\n              fieldsetVisibilities[rule.fieldsetId] = true;\n            }\n          }\n\n          if (all && hasHiddenFieldset) {\n            return false;\n          }\n\n          for (i = 0; i < condition.rules.length; i++) {\n            rule = condition.rules[i];\n\n            if (fieldsetVisibilities[rule.fieldsetId]) {\n              success = evaluateRule(condition.rules[i]);\n            } else {\n              success = false;\n            }\n\n            if (any && success) {\n              break;\n            }\n\n            if (all && !success) {\n              break;\n            }\n          }\n\n          return success;\n        }\n\n        function evaluateConditionVisibility(id, condition) {\n          var show = condition.actionType === 'Show';\n          var cachedResult = cachedResults[id];\n          var success;\n\n          if (cachedResult === undefined) {\n            cachedResults[id] = show; // set default value to avoid circular issues\n\n            success = cachedResults[id] = evaluateCondition(id, condition);\n          } else {\n            success = cachedResult;\n          }\n\n          var visible = !(success ^ show); // eslint-disable-line no-bitwise\n\n          return visible;\n        }\n\n        function isVisible(id, condition) {\n          if (condition) {\n            return evaluateConditionVisibility(id, condition);\n          }\n\n          return true;\n        }\n\n        function handleCondition(element, id, condition, type) {\n          var shouldShow = isVisible(id, condition);\n\n          if (shouldShow) {\n            element.show();\n          } else {\n            element.hide();\n          }\n        }\n\n        for (fsId in self.fieldsetConditions) {\n          if (self.fieldsetConditions.hasOwnProperty(fsId)) {\n            // eslint-disable-line no-prototype-builtins\n            handleCondition(self.form.find('#' + fsId), fsId, self.fieldsetConditions[fsId], 'Fieldset');\n          }\n        }\n\n        for (fieldId in self.fieldConditions) {\n          if (self.fieldConditions.hasOwnProperty(fieldId)) {\n            // eslint-disable-line no-prototype-builtins\n            handleCondition(self.form.find('#' + fieldId).closest('.umbraco-forms-field'), fieldId, self.fieldConditions[fieldId], 'Field');\n          }\n        }\n      };\n\n      return self;\n    }\n  }\n};\n/* harmony default export */ __webpack_exports__[\"a\"] = (umbracoForms);\n/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! jquery */ \"./node_modules/jquery/dist/jquery.js\"), __webpack_require__(/*! jquery */ \"./node_modules/jquery/dist/jquery.js\")))\n\n//# sourceURL=webpack:///./src/js/_project/umbracoForms.js?")},"./src/js/_project/videoPopup.js":function(module,__webpack_exports__,__webpack_require__){"use strict";eval("/* WEBPACK VAR INJECTION */(function($) {/* harmony import */ var core_js_modules_es_array_find__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! core-js/modules/es.array.find */ \"./node_modules/core-js/modules/es.array.find.js\");\n/* harmony import */ var core_js_modules_es_array_find__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(core_js_modules_es_array_find__WEBPACK_IMPORTED_MODULE_0__);\n/* harmony import */ var _helpers__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./helpers */ \"./src/js/_project/helpers.js\");\n\n\nvar videoPopup = {\n  popupOverlay: '.js-video-popup-overlay',\n  popup: $('.js-video-popup'),\n  popupOpenedClass: 'popup-overlay--opened',\n  popupCloseBtn: '.js-close-popup',\n  videoOpenPopupButton: '.js-open-video-popup',\n  videoIframe: '.hero-slider__popup-iframe',\n  $win: $(window),\n  $doc: $(document),\n  $html: $('html'),\n  $body: $('body'),\n  $htmlbody: $('html, body'),\n  topScroll: 0,\n  isScrollDisabled: false,\n  sliderIsPlayed: false,\n  init: function init() {\n    this.openVideoPopup();\n    this.bindClosePopupEvents(); //this.closePopup();\n  },\n  openVideoPopup: function openVideoPopup() {\n    var _this = this;\n\n    $(document).off('click', _this.videoOpenPopupButton).on('click', _this.videoOpenPopupButton, function () {\n      _this.replacePopupContent($(this).data('src'));\n\n      _helpers__WEBPACK_IMPORTED_MODULE_1__[/* default */ \"a\"].disableScroll();\n\n      if ($('.hero-slider').hasClass('hero-slider--playing')) {\n        $('.js-controls').trigger('click');\n        _this.sliderIsPlayed = true;\n      }\n    });\n  },\n  replacePopupContent: function replacePopupContent(videoUrl) {\n    var $popup = $(this.popupOverlay);\n    $popup.find(this.videoIframe).attr('src', '');\n\n    if (!$popup.hasClass(this.popupOpenedClass)) {\n      $popup.stop().fadeIn(500).addClass(this.popupOpenedClass).removeAttr('aria-hidden');\n    }\n\n    $popup.find(this.videoIframe).attr('src', videoUrl);\n  },\n  bindClosePopupEvents: function bindClosePopupEvents() {\n    var _this = this; // Close popup on click on X, overlay and Escape key\n\n\n    $(document).on('click', _this.popupCloseBtn, function () {\n      _this.closePopup(); //helpers.enableScroll();\n\n    });\n    $(document).on('click', _this.popupOverlay, function (e) {\n      if (e.target.parentElement.classList.contains('js-video-popup') || e.target !== this) return;\n\n      _this.closePopup(); //helpers.enableScroll();\n\n    }); //on escape doesn't work only on media page, where is images and videos\n\n    $(document).off('keydown').on('keydown', function (e) {\n      if (e.which !== 27) {\n        return;\n      }\n\n      _this.closePopup(); //helpers.enableScroll();\n\n    }); //helpers.enableScroll();\n  },\n  closePopup: function closePopup() {\n    var _this = this;\n\n    $(_this.popupOverlay).stop().fadeOut(500, function () {\n      $(this).find(_this.videoIframe).attr('src', '');\n    }).removeClass(this.popupOpenedClass).attr('aria-hidden', 'true');\n    _helpers__WEBPACK_IMPORTED_MODULE_1__[/* default */ \"a\"].enableScroll();\n\n    if (_this.sliderIsPlayed) {\n      $('.js-controls').trigger('click');\n    }\n  }\n};\n/* harmony default export */ __webpack_exports__[\"a\"] = (videoPopup);\n/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! jquery */ \"./node_modules/jquery/dist/jquery.js\")))\n\n//# sourceURL=webpack:///./src/js/_project/videoPopup.js?")},"./src/js/global.js":function(module,__webpack_exports__,__webpack_require__){"use strict";eval('__webpack_require__.r(__webpack_exports__);\n/* WEBPACK VAR INJECTION */(function($) {/* harmony import */ var _libs_slick__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./_libs/slick */ "./src/js/_libs/slick.js");\n/* harmony import */ var _libs_selectric__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./_libs/selectric */ "./src/js/_libs/selectric.js");\n/* harmony import */ var _libs_swiper_min__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./_libs/swiper.min */ "./src/js/_libs/swiper.min.js");\n/* harmony import */ var _libs_mousewheel__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./_libs/mousewheel */ "./src/js/_libs/mousewheel.js");\n/* harmony import */ var _libs_mscroller__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./_libs/mscroller */ "./src/js/_libs/mscroller.js");\n/* harmony import */ var _libs_iframeEuroland__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./_libs/iframeEuroland */ "./src/js/_libs/iframeEuroland.js");\n/* harmony import */ var _project_helpers__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./_project/helpers */ "./src/js/_project/helpers.js");\n/* harmony import */ var _project_is_beta__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./_project/is-beta */ "./src/js/_project/is-beta.js");\n/* harmony import */ var _project_slider__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(/*! ./_project/slider */ "./src/js/_project/slider.js");\n/* harmony import */ var _project_search__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(/*! ./_project/search */ "./src/js/_project/search.js");\n/* harmony import */ var _project_accordions__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(/*! ./_project/accordions */ "./src/js/_project/accordions.js");\n/* harmony import */ var _project_disclaimer__WEBPACK_IMPORTED_MODULE_11__ = __webpack_require__(/*! ./_project/disclaimer */ "./src/js/_project/disclaimer.js");\n/* harmony import */ var _project_tabs__WEBPACK_IMPORTED_MODULE_12__ = __webpack_require__(/*! ./_project/tabs */ "./src/js/_project/tabs.js");\n/* harmony import */ var _project_pagination__WEBPACK_IMPORTED_MODULE_13__ = __webpack_require__(/*! ./_project/pagination */ "./src/js/_project/pagination.js");\n/* harmony import */ var _project_peopleFiltering__WEBPACK_IMPORTED_MODULE_14__ = __webpack_require__(/*! ./_project/peopleFiltering */ "./src/js/_project/peopleFiltering.js");\n/* harmony import */ var _project_hubFiltering__WEBPACK_IMPORTED_MODULE_15__ = __webpack_require__(/*! ./_project/hubFiltering */ "./src/js/_project/hubFiltering.js");\n/* harmony import */ var _project_scrollDown__WEBPACK_IMPORTED_MODULE_16__ = __webpack_require__(/*! ./_project/scrollDown */ "./src/js/_project/scrollDown.js");\n/* harmony import */ var _project_popUp__WEBPACK_IMPORTED_MODULE_17__ = __webpack_require__(/*! ./_project/popUp */ "./src/js/_project/popUp.js");\n/* harmony import */ var _project_videoPopup__WEBPACK_IMPORTED_MODULE_18__ = __webpack_require__(/*! ./_project/videoPopup */ "./src/js/_project/videoPopup.js");\n/* harmony import */ var _project_share__WEBPACK_IMPORTED_MODULE_19__ = __webpack_require__(/*! ./_project/share */ "./src/js/_project/share.js");\n/* harmony import */ var _project_resultsAndPresentations__WEBPACK_IMPORTED_MODULE_20__ = __webpack_require__(/*! ./_project/resultsAndPresentations */ "./src/js/_project/resultsAndPresentations.js");\n/* harmony import */ var _project_responsiveImages__WEBPACK_IMPORTED_MODULE_21__ = __webpack_require__(/*! ./_project/responsiveImages */ "./src/js/_project/responsiveImages.js");\n/* harmony import */ var _project_progressBar__WEBPACK_IMPORTED_MODULE_22__ = __webpack_require__(/*! ./_project/progressBar */ "./src/js/_project/progressBar.js");\n/* harmony import */ var _project_contact__WEBPACK_IMPORTED_MODULE_23__ = __webpack_require__(/*! ./_project/contact */ "./src/js/_project/contact.js");\n\n\n\n\n\n\n\n_project_helpers__WEBPACK_IMPORTED_MODULE_6__[/* default */ "a"].init();\n\n_project_is_beta__WEBPACK_IMPORTED_MODULE_7__[/* default */ "a"].init();\n\n_project_slider__WEBPACK_IMPORTED_MODULE_8__[/* default */ "a"].init();\n\n_project_search__WEBPACK_IMPORTED_MODULE_9__[/* default */ "a"].init();\n\n_project_accordions__WEBPACK_IMPORTED_MODULE_10__[/* default */ "a"].init();\n\n_project_disclaimer__WEBPACK_IMPORTED_MODULE_11__[/* default */ "a"].init();\n\n_project_tabs__WEBPACK_IMPORTED_MODULE_12__[/* default */ "a"].init();\n\n$(document).ready(function () {\n  var paginationContainer = $(\'.js-pagination-container\');\n\n  if (paginationContainer.length > 0) {\n    Object(_project_pagination__WEBPACK_IMPORTED_MODULE_13__[/* default */ "a"])().init(paginationContainer);\n  }\n});\n\n_project_peopleFiltering__WEBPACK_IMPORTED_MODULE_14__[/* default */ "a"].init();\n\n_project_hubFiltering__WEBPACK_IMPORTED_MODULE_15__[/* default */ "a"].init();\n\n_project_scrollDown__WEBPACK_IMPORTED_MODULE_16__[/* default */ "a"].init();\n\n_project_popUp__WEBPACK_IMPORTED_MODULE_17__[/* default */ "a"].init();\n\n_project_videoPopup__WEBPACK_IMPORTED_MODULE_18__[/* default */ "a"].init();\n\n_project_share__WEBPACK_IMPORTED_MODULE_19__[/* default */ "a"].init();\n\n_project_resultsAndPresentations__WEBPACK_IMPORTED_MODULE_20__[/* default */ "a"].init();\n\n_project_responsiveImages__WEBPACK_IMPORTED_MODULE_21__[/* default */ "a"].init();\n\n_project_progressBar__WEBPACK_IMPORTED_MODULE_22__[/* default */ "a"].init();\n\n_project_contact__WEBPACK_IMPORTED_MODULE_23__[/* default */ "a"].init();\n/* WEBPACK VAR INJECTION */}.call(this, __webpack_require__(/*! jquery */ "./node_modules/jquery/dist/jquery.js")))\n\n//# sourceURL=webpack:///./src/js/global.js?')}})