@danielgindi/selectbox 1.0.76 → 1.0.78

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/lib.umd.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * @danielgindi/selectbox 1.0.76
2
+ * @danielgindi/selectbox 1.0.78
3
3
  * git://github.com/danielgindi/selectbox.git
4
4
  */
5
5
  (function (global, factory) {
@@ -307,6 +307,191 @@
307
307
  protoMetadataMap = {};
308
308
  return old_applyMemberDecs(ret, targetClass, protoMetadataMap, staticMetadataMap, memberDecs), old_convertMetadataMapToFinal(targetClass.prototype, protoMetadataMap), old_applyClassDecs(ret, targetClass, staticMetadataMap, classDecs), old_convertMetadataMapToFinal(targetClass, staticMetadataMap), ret;
309
309
  }
310
+ function applyDecs2203Factory() {
311
+ function createAddInitializerMethod(initializers, decoratorFinishedRef) {
312
+ return function (initializer) {
313
+ !function (decoratorFinishedRef, fnName) {
314
+ if (decoratorFinishedRef.v) throw new Error("attempted to call " + fnName + " after decoration was finished");
315
+ }(decoratorFinishedRef, "addInitializer"), assertCallable(initializer, "An initializer"), initializers.push(initializer);
316
+ };
317
+ }
318
+ function memberDec(dec, name, desc, initializers, kind, isStatic, isPrivate, value) {
319
+ var kindStr;
320
+ switch (kind) {
321
+ case 1:
322
+ kindStr = "accessor";
323
+ break;
324
+ case 2:
325
+ kindStr = "method";
326
+ break;
327
+ case 3:
328
+ kindStr = "getter";
329
+ break;
330
+ case 4:
331
+ kindStr = "setter";
332
+ break;
333
+ default:
334
+ kindStr = "field";
335
+ }
336
+ var get,
337
+ set,
338
+ ctx = {
339
+ kind: kindStr,
340
+ name: isPrivate ? "#" + name : name,
341
+ static: isStatic,
342
+ private: isPrivate
343
+ },
344
+ decoratorFinishedRef = {
345
+ v: !1
346
+ };
347
+ 0 !== kind && (ctx.addInitializer = createAddInitializerMethod(initializers, decoratorFinishedRef)), 0 === kind ? isPrivate ? (get = desc.get, set = desc.set) : (get = function () {
348
+ return this[name];
349
+ }, set = function (v) {
350
+ this[name] = v;
351
+ }) : 2 === kind ? get = function () {
352
+ return desc.value;
353
+ } : (1 !== kind && 3 !== kind || (get = function () {
354
+ return desc.get.call(this);
355
+ }), 1 !== kind && 4 !== kind || (set = function (v) {
356
+ desc.set.call(this, v);
357
+ })), ctx.access = get && set ? {
358
+ get: get,
359
+ set: set
360
+ } : get ? {
361
+ get: get
362
+ } : {
363
+ set: set
364
+ };
365
+ try {
366
+ return dec(value, ctx);
367
+ } finally {
368
+ decoratorFinishedRef.v = !0;
369
+ }
370
+ }
371
+ function assertCallable(fn, hint) {
372
+ if ("function" != typeof fn) throw new TypeError(hint + " must be a function");
373
+ }
374
+ function assertValidReturnValue(kind, value) {
375
+ var type = typeof value;
376
+ if (1 === kind) {
377
+ if ("object" !== type || null === value) throw new TypeError("accessor decorators must return an object with get, set, or init properties or void 0");
378
+ void 0 !== value.get && assertCallable(value.get, "accessor.get"), void 0 !== value.set && assertCallable(value.set, "accessor.set"), void 0 !== value.init && assertCallable(value.init, "accessor.init");
379
+ } else if ("function" !== type) {
380
+ var hint;
381
+ throw hint = 0 === kind ? "field" : 10 === kind ? "class" : "method", new TypeError(hint + " decorators must return a function or void 0");
382
+ }
383
+ }
384
+ function applyMemberDec(ret, base, decInfo, name, kind, isStatic, isPrivate, initializers) {
385
+ var desc,
386
+ init,
387
+ value,
388
+ newValue,
389
+ get,
390
+ set,
391
+ decs = decInfo[0];
392
+ if (isPrivate ? desc = 0 === kind || 1 === kind ? {
393
+ get: decInfo[3],
394
+ set: decInfo[4]
395
+ } : 3 === kind ? {
396
+ get: decInfo[3]
397
+ } : 4 === kind ? {
398
+ set: decInfo[3]
399
+ } : {
400
+ value: decInfo[3]
401
+ } : 0 !== kind && (desc = Object.getOwnPropertyDescriptor(base, name)), 1 === kind ? value = {
402
+ get: desc.get,
403
+ set: desc.set
404
+ } : 2 === kind ? value = desc.value : 3 === kind ? value = desc.get : 4 === kind && (value = desc.set), "function" == typeof decs) void 0 !== (newValue = memberDec(decs, name, desc, initializers, kind, isStatic, isPrivate, value)) && (assertValidReturnValue(kind, newValue), 0 === kind ? init = newValue : 1 === kind ? (init = newValue.init, get = newValue.get || value.get, set = newValue.set || value.set, value = {
405
+ get: get,
406
+ set: set
407
+ }) : value = newValue);else for (var i = decs.length - 1; i >= 0; i--) {
408
+ var newInit;
409
+ if (void 0 !== (newValue = memberDec(decs[i], name, desc, initializers, kind, isStatic, isPrivate, value))) assertValidReturnValue(kind, newValue), 0 === kind ? newInit = newValue : 1 === kind ? (newInit = newValue.init, get = newValue.get || value.get, set = newValue.set || value.set, value = {
410
+ get: get,
411
+ set: set
412
+ }) : value = newValue, void 0 !== newInit && (void 0 === init ? init = newInit : "function" == typeof init ? init = [init, newInit] : init.push(newInit));
413
+ }
414
+ if (0 === kind || 1 === kind) {
415
+ if (void 0 === init) init = function (instance, init) {
416
+ return init;
417
+ };else if ("function" != typeof init) {
418
+ var ownInitializers = init;
419
+ init = function (instance, init) {
420
+ for (var value = init, i = 0; i < ownInitializers.length; i++) value = ownInitializers[i].call(instance, value);
421
+ return value;
422
+ };
423
+ } else {
424
+ var originalInitializer = init;
425
+ init = function (instance, init) {
426
+ return originalInitializer.call(instance, init);
427
+ };
428
+ }
429
+ ret.push(init);
430
+ }
431
+ 0 !== kind && (1 === kind ? (desc.get = value.get, desc.set = value.set) : 2 === kind ? desc.value = value : 3 === kind ? desc.get = value : 4 === kind && (desc.set = value), isPrivate ? 1 === kind ? (ret.push(function (instance, args) {
432
+ return value.get.call(instance, args);
433
+ }), ret.push(function (instance, args) {
434
+ return value.set.call(instance, args);
435
+ })) : 2 === kind ? ret.push(value) : ret.push(function (instance, args) {
436
+ return value.call(instance, args);
437
+ }) : Object.defineProperty(base, name, desc));
438
+ }
439
+ function pushInitializers(ret, initializers) {
440
+ initializers && ret.push(function (instance) {
441
+ for (var i = 0; i < initializers.length; i++) initializers[i].call(instance);
442
+ return instance;
443
+ });
444
+ }
445
+ return function (targetClass, memberDecs, classDecs) {
446
+ var ret = [];
447
+ return function (ret, Class, decInfos) {
448
+ for (var protoInitializers, staticInitializers, existingProtoNonFields = new Map(), existingStaticNonFields = new Map(), i = 0; i < decInfos.length; i++) {
449
+ var decInfo = decInfos[i];
450
+ if (Array.isArray(decInfo)) {
451
+ var base,
452
+ initializers,
453
+ kind = decInfo[1],
454
+ name = decInfo[2],
455
+ isPrivate = decInfo.length > 3,
456
+ isStatic = kind >= 5;
457
+ if (isStatic ? (base = Class, 0 != (kind -= 5) && (initializers = staticInitializers = staticInitializers || [])) : (base = Class.prototype, 0 !== kind && (initializers = protoInitializers = protoInitializers || [])), 0 !== kind && !isPrivate) {
458
+ var existingNonFields = isStatic ? existingStaticNonFields : existingProtoNonFields,
459
+ existingKind = existingNonFields.get(name) || 0;
460
+ if (!0 === existingKind || 3 === existingKind && 4 !== kind || 4 === existingKind && 3 !== kind) throw new Error("Attempted to decorate a public method/accessor that has the same name as a previously decorated public method/accessor. This is not currently supported by the decorators plugin. Property name was: " + name);
461
+ !existingKind && kind > 2 ? existingNonFields.set(name, kind) : existingNonFields.set(name, !0);
462
+ }
463
+ applyMemberDec(ret, base, decInfo, name, kind, isStatic, isPrivate, initializers);
464
+ }
465
+ }
466
+ pushInitializers(ret, protoInitializers), pushInitializers(ret, staticInitializers);
467
+ }(ret, targetClass, memberDecs), function (ret, targetClass, classDecs) {
468
+ if (classDecs.length > 0) {
469
+ for (var initializers = [], newClass = targetClass, name = targetClass.name, i = classDecs.length - 1; i >= 0; i--) {
470
+ var decoratorFinishedRef = {
471
+ v: !1
472
+ };
473
+ try {
474
+ var nextNewClass = classDecs[i](newClass, {
475
+ kind: "class",
476
+ name: name,
477
+ addInitializer: createAddInitializerMethod(initializers, decoratorFinishedRef)
478
+ });
479
+ } finally {
480
+ decoratorFinishedRef.v = !0;
481
+ }
482
+ void 0 !== nextNewClass && (assertValidReturnValue(10, nextNewClass), newClass = nextNewClass);
483
+ }
484
+ ret.push(newClass, function () {
485
+ for (var i = 0; i < initializers.length; i++) initializers[i].call(newClass);
486
+ });
487
+ }
488
+ }(ret, targetClass, classDecs), ret;
489
+ };
490
+ }
491
+ var applyDecs2203Impl;
492
+ function _applyDecs2203(targetClass, memberDecs, classDecs) {
493
+ return (applyDecs2203Impl = applyDecs2203Impl || applyDecs2203Factory())(targetClass, memberDecs, classDecs);
494
+ }
310
495
  function createAddInitializerMethod(initializers, decoratorFinishedRef) {
311
496
  return function (initializer) {
312
497
  assertNotFinished(decoratorFinishedRef, "addInitializer"), assertCallable(initializer, "An initializer"), initializers.push(initializer);
@@ -436,8 +621,8 @@
436
621
  return value.call(instance, args);
437
622
  }) : Object.defineProperty(base, name, desc));
438
623
  }
439
- function applyMemberDecs(ret, Class, decInfos) {
440
- for (var protoInitializers, staticInitializers, existingProtoNonFields = new Map(), existingStaticNonFields = new Map(), i = 0; i < decInfos.length; i++) {
624
+ function applyMemberDecs(Class, decInfos) {
625
+ for (var protoInitializers, staticInitializers, ret = [], existingProtoNonFields = new Map(), existingStaticNonFields = new Map(), i = 0; i < decInfos.length; i++) {
441
626
  var decInfo = decInfos[i];
442
627
  if (Array.isArray(decInfo)) {
443
628
  var base,
@@ -455,7 +640,7 @@
455
640
  applyMemberDec(ret, base, decInfo, name, kind, isStatic, isPrivate, initializers);
456
641
  }
457
642
  }
458
- pushInitializers(ret, protoInitializers), pushInitializers(ret, staticInitializers);
643
+ return pushInitializers(ret, protoInitializers), pushInitializers(ret, staticInitializers), ret;
459
644
  }
460
645
  function pushInitializers(ret, initializers) {
461
646
  initializers && ret.push(function (instance) {
@@ -463,7 +648,7 @@
463
648
  return instance;
464
649
  });
465
650
  }
466
- function applyClassDecs(ret, targetClass, classDecs) {
651
+ function applyClassDecs(targetClass, classDecs) {
467
652
  if (classDecs.length > 0) {
468
653
  for (var initializers = [], newClass = targetClass, name = targetClass.name, i = classDecs.length - 1; i >= 0; i--) {
469
654
  var decoratorFinishedRef = {
@@ -480,14 +665,18 @@
480
665
  }
481
666
  void 0 !== nextNewClass && (assertValidReturnValue(10, nextNewClass), newClass = nextNewClass);
482
667
  }
483
- ret.push(newClass, function () {
668
+ return [newClass, function () {
484
669
  for (var i = 0; i < initializers.length; i++) initializers[i].call(newClass);
485
- });
670
+ }];
486
671
  }
487
672
  }
488
- function _applyDecs2203(targetClass, memberDecs, classDecs) {
489
- var ret = [];
490
- return applyMemberDecs(ret, targetClass, memberDecs), applyClassDecs(ret, targetClass, classDecs), ret;
673
+ function _applyDecs2203R(targetClass, memberDecs, classDecs) {
674
+ return {
675
+ e: applyMemberDecs(targetClass, memberDecs),
676
+ get c() {
677
+ return applyClassDecs(targetClass, classDecs);
678
+ }
679
+ };
491
680
  }
492
681
  function _asyncGeneratorDelegate(inner) {
493
682
  var iter = {},
@@ -558,6 +747,53 @@
558
747
  function _awaitAsyncGenerator(value) {
559
748
  return new _OverloadYield(value, 0);
560
749
  }
750
+ function _checkInRHS(value) {
751
+ if (Object(value) !== value) throw TypeError("right-hand side of 'in' should be an object, got " + (null !== value ? typeof value : "null"));
752
+ return value;
753
+ }
754
+ function _defineAccessor(type, obj, key, fn) {
755
+ var desc = {
756
+ configurable: !0,
757
+ enumerable: !0
758
+ };
759
+ return desc[type] = fn, Object.defineProperty(obj, key, desc);
760
+ }
761
+ function _iterableToArrayLimit(arr, i) {
762
+ var _i = null == arr ? null : "undefined" != typeof Symbol && arr[Symbol.iterator] || arr["@@iterator"];
763
+ if (null != _i) {
764
+ var _s,
765
+ _e,
766
+ _x,
767
+ _r,
768
+ _arr = [],
769
+ _n = !0,
770
+ _d = !1;
771
+ try {
772
+ if (_x = (_i = _i.call(arr)).next, 0 === i) {
773
+ if (Object(_i) !== _i) return;
774
+ _n = !1;
775
+ } else for (; !(_n = (_s = _x.call(_i)).done) && (_arr.push(_s.value), _arr.length !== i); _n = !0);
776
+ } catch (err) {
777
+ _d = !0, _e = err;
778
+ } finally {
779
+ try {
780
+ if (!_n && null != _i.return && (_r = _i.return(), Object(_r) !== _r)) return;
781
+ } finally {
782
+ if (_d) throw _e;
783
+ }
784
+ }
785
+ return _arr;
786
+ }
787
+ }
788
+ function _iterableToArrayLimitLoose(arr, i) {
789
+ var _i = arr && ("undefined" != typeof Symbol && arr[Symbol.iterator] || arr["@@iterator"]);
790
+ if (null != _i) {
791
+ var _s,
792
+ _arr = [];
793
+ for (_i = _i.call(arr); arr.length < i && !(_s = _i.next()).done;) _arr.push(_s.value);
794
+ return _arr;
795
+ }
796
+ }
561
797
  var REACT_ELEMENT_TYPE;
562
798
  function _jsx(type, props, key, children) {
563
799
  REACT_ELEMENT_TYPE || (REACT_ELEMENT_TYPE = "function" == typeof Symbol && Symbol.for && Symbol.for("react.element") || 60103);
@@ -736,14 +972,9 @@
736
972
  };
737
973
  }
738
974
  function maybeInvokeDelegate(delegate, context) {
739
- var method = delegate.iterator[context.method];
740
- if (undefined === method) {
741
- if (context.delegate = null, "throw" === context.method) {
742
- if (delegate.iterator.return && (context.method = "return", context.arg = undefined, maybeInvokeDelegate(delegate, context), "throw" === context.method)) return ContinueSentinel;
743
- context.method = "throw", context.arg = new TypeError("The iterator does not provide a 'throw' method");
744
- }
745
- return ContinueSentinel;
746
- }
975
+ var methodName = context.method,
976
+ method = delegate.iterator[methodName];
977
+ if (undefined === method) return context.delegate = null, "throw" === methodName && delegate.iterator.return && (context.method = "return", context.arg = undefined, maybeInvokeDelegate(delegate, context), "throw" === context.method) || "return" !== methodName && (context.method = "throw", context.arg = new TypeError("The iterator does not provide a '" + methodName + "' method")), ContinueSentinel;
747
978
  var record = tryCatch(method, delegate.iterator, context.arg);
748
979
  if ("throw" === record.type) return context.method = "throw", context.arg = record.arg, context.delegate = null, ContinueSentinel;
749
980
  var info = record.arg;
@@ -1012,7 +1243,7 @@
1012
1243
  descriptor.enumerable = descriptor.enumerable || false;
1013
1244
  descriptor.configurable = true;
1014
1245
  if ("value" in descriptor) descriptor.writable = true;
1015
- Object.defineProperty(target, descriptor.key, descriptor);
1246
+ Object.defineProperty(target, _toPropertyKey(descriptor.key), descriptor);
1016
1247
  }
1017
1248
  }
1018
1249
  function _createClass(Constructor, protoProps, staticProps) {
@@ -1054,6 +1285,7 @@
1054
1285
  return obj;
1055
1286
  }
1056
1287
  function _defineProperty(obj, key, value) {
1288
+ key = _toPropertyKey(key);
1057
1289
  if (key in obj) {
1058
1290
  Object.defineProperty(obj, key, {
1059
1291
  value: value,
@@ -1355,7 +1587,7 @@
1355
1587
  function _set(target, property, value, receiver, isStrict) {
1356
1588
  var s = set$1(target, property, value, receiver || target);
1357
1589
  if (!s && isStrict) {
1358
- throw new Error('failed to set property');
1590
+ throw new TypeError('failed to set property');
1359
1591
  }
1360
1592
  return value;
1361
1593
  }
@@ -1383,7 +1615,7 @@
1383
1615
  throw new TypeError("\"" + name + "\" is write-only");
1384
1616
  }
1385
1617
  function _classNameTDZError(name) {
1386
- throw new Error("Class \"" + name + "\" cannot be referenced in computed property keys.");
1618
+ throw new ReferenceError("Class \"" + name + "\" cannot be referenced in computed property keys.");
1387
1619
  }
1388
1620
  function _temporalUndefined() {}
1389
1621
  function _tdz(name) {
@@ -1420,40 +1652,6 @@
1420
1652
  function _iterableToArray(iter) {
1421
1653
  if (typeof Symbol !== "undefined" && iter[Symbol.iterator] != null || iter["@@iterator"] != null) return Array.from(iter);
1422
1654
  }
1423
- function _iterableToArrayLimit(arr, i) {
1424
- var _i = arr == null ? null : typeof Symbol !== "undefined" && arr[Symbol.iterator] || arr["@@iterator"];
1425
- if (_i == null) return;
1426
- var _arr = [];
1427
- var _n = true;
1428
- var _d = false;
1429
- var _s, _e;
1430
- try {
1431
- for (_i = _i.call(arr); !(_n = (_s = _i.next()).done); _n = true) {
1432
- _arr.push(_s.value);
1433
- if (i && _arr.length === i) break;
1434
- }
1435
- } catch (err) {
1436
- _d = true;
1437
- _e = err;
1438
- } finally {
1439
- try {
1440
- if (!_n && _i["return"] != null) _i["return"]();
1441
- } finally {
1442
- if (_d) throw _e;
1443
- }
1444
- }
1445
- return _arr;
1446
- }
1447
- function _iterableToArrayLimitLoose(arr, i) {
1448
- var _i = arr && (typeof Symbol !== "undefined" && arr[Symbol.iterator] || arr["@@iterator"]);
1449
- if (_i == null) return;
1450
- var _arr = [];
1451
- for (_i = _i.call(arr), _step; !(_step = _i.next()).done;) {
1452
- _arr.push(_step.value);
1453
- if (i && _arr.length === i) break;
1454
- }
1455
- return _arr;
1456
- }
1457
1655
  function _unsupportedIterableToArray(o, minLen) {
1458
1656
  if (!o) return;
1459
1657
  if (typeof o === "string") return _arrayLikeToArray(o, minLen);
@@ -2074,9 +2272,16 @@
2074
2272
  }
2075
2273
 
2076
2274
  function getAugmentedNamespace(n) {
2275
+ if (n.__esModule) return n;
2077
2276
  var f = n.default;
2078
2277
  if (typeof f == "function") {
2079
- var a = function () {
2278
+ var a = function a () {
2279
+ if (this instanceof a) {
2280
+ var args = [null];
2281
+ args.push.apply(args, arguments);
2282
+ var Ctor = Function.bind.apply(f, args);
2283
+ return new Ctor();
2284
+ }
2080
2285
  return f.apply(this, arguments);
2081
2286
  };
2082
2287
  a.prototype = f.prototype;
@@ -2103,7 +2308,7 @@
2103
2308
  };
2104
2309
 
2105
2310
  // https://github.com/zloirock/core-js/issues/86#issuecomment-115759028
2106
- var global$l =
2311
+ var global$k =
2107
2312
  // eslint-disable-next-line es/no-global-this -- safe
2108
2313
  check(typeof globalThis == 'object' && globalThis) ||
2109
2314
  check(typeof window == 'object' && window) ||
@@ -2180,37 +2385,27 @@
2180
2385
  var call$h = FunctionPrototype$2.call;
2181
2386
  var uncurryThisWithBind = NATIVE_BIND$2 && FunctionPrototype$2.bind.bind(call$h, call$h);
2182
2387
 
2183
- var functionUncurryThisRaw = NATIVE_BIND$2 ? uncurryThisWithBind : function (fn) {
2388
+ var functionUncurryThis = NATIVE_BIND$2 ? uncurryThisWithBind : function (fn) {
2184
2389
  return function () {
2185
2390
  return call$h.apply(fn, arguments);
2186
2391
  };
2187
2392
  };
2188
2393
 
2189
- var uncurryThisRaw$1 = functionUncurryThisRaw;
2394
+ var uncurryThis$x = functionUncurryThis;
2190
2395
 
2191
- var toString$e = uncurryThisRaw$1({}.toString);
2192
- var stringSlice$7 = uncurryThisRaw$1(''.slice);
2396
+ var toString$f = uncurryThis$x({}.toString);
2397
+ var stringSlice$8 = uncurryThis$x(''.slice);
2193
2398
 
2194
2399
  var classofRaw$2 = function (it) {
2195
- return stringSlice$7(toString$e(it), 8, -1);
2400
+ return stringSlice$8(toString$f(it), 8, -1);
2196
2401
  };
2197
2402
 
2198
- var classofRaw$1 = classofRaw$2;
2199
- var uncurryThisRaw = functionUncurryThisRaw;
2200
-
2201
- var functionUncurryThis = function (fn) {
2202
- // Nashorn bug:
2203
- // https://github.com/zloirock/core-js/issues/1128
2204
- // https://github.com/zloirock/core-js/issues/1130
2205
- if (classofRaw$1(fn) === 'Function') return uncurryThisRaw(fn);
2206
- };
2207
-
2208
- var uncurryThis$t = functionUncurryThis;
2403
+ var uncurryThis$w = functionUncurryThis;
2209
2404
  var fails$u = fails$x;
2210
- var classof$b = classofRaw$2;
2405
+ var classof$c = classofRaw$2;
2211
2406
 
2212
2407
  var $Object$4 = Object;
2213
- var split = uncurryThis$t(''.split);
2408
+ var split = uncurryThis$w(''.split);
2214
2409
 
2215
2410
  // fallback for non-array-like ES3 and non-enumerable old V8 strings
2216
2411
  var indexedObject = fails$u(function () {
@@ -2218,7 +2413,7 @@
2218
2413
  // eslint-disable-next-line no-prototype-builtins -- safe
2219
2414
  return !$Object$4('z').propertyIsEnumerable(0);
2220
2415
  }) ? function (it) {
2221
- return classof$b(it) == 'String' ? split(it, '') : $Object$4(it);
2416
+ return classof$c(it) == 'String' ? split(it, '') : $Object$4(it);
2222
2417
  } : $Object$4;
2223
2418
 
2224
2419
  // we can't use just `it == null` since of `document.all` special case
@@ -2249,6 +2444,7 @@
2249
2444
  var documentAll$2 = typeof document == 'object' && document.all;
2250
2445
 
2251
2446
  // https://tc39.es/ecma262/#sec-IsHTMLDDA-internal-slot
2447
+ // eslint-disable-next-line unicorn/no-typeof-undefined -- required for testing
2252
2448
  var IS_HTMLDDA = typeof documentAll$2 == 'undefined' && documentAll$2 !== undefined;
2253
2449
 
2254
2450
  var documentAll_1 = {
@@ -2262,48 +2458,46 @@
2262
2458
 
2263
2459
  // `IsCallable` abstract operation
2264
2460
  // https://tc39.es/ecma262/#sec-iscallable
2265
- var isCallable$m = $documentAll$1.IS_HTMLDDA ? function (argument) {
2461
+ var isCallable$n = $documentAll$1.IS_HTMLDDA ? function (argument) {
2266
2462
  return typeof argument == 'function' || argument === documentAll$1;
2267
2463
  } : function (argument) {
2268
2464
  return typeof argument == 'function';
2269
2465
  };
2270
2466
 
2271
- var isCallable$l = isCallable$m;
2467
+ var isCallable$m = isCallable$n;
2272
2468
  var $documentAll = documentAll_1;
2273
2469
 
2274
2470
  var documentAll = $documentAll.all;
2275
2471
 
2276
- var isObject$f = $documentAll.IS_HTMLDDA ? function (it) {
2277
- return typeof it == 'object' ? it !== null : isCallable$l(it) || it === documentAll;
2472
+ var isObject$e = $documentAll.IS_HTMLDDA ? function (it) {
2473
+ return typeof it == 'object' ? it !== null : isCallable$m(it) || it === documentAll;
2278
2474
  } : function (it) {
2279
- return typeof it == 'object' ? it !== null : isCallable$l(it);
2475
+ return typeof it == 'object' ? it !== null : isCallable$m(it);
2280
2476
  };
2281
2477
 
2282
- var global$k = global$l;
2283
- var isCallable$k = isCallable$m;
2478
+ var global$j = global$k;
2479
+ var isCallable$l = isCallable$n;
2284
2480
 
2285
2481
  var aFunction = function (argument) {
2286
- return isCallable$k(argument) ? argument : undefined;
2482
+ return isCallable$l(argument) ? argument : undefined;
2287
2483
  };
2288
2484
 
2289
- var getBuiltIn$9 = function (namespace, method) {
2290
- return arguments.length < 2 ? aFunction(global$k[namespace]) : global$k[namespace] && global$k[namespace][method];
2485
+ var getBuiltIn$8 = function (namespace, method) {
2486
+ return arguments.length < 2 ? aFunction(global$j[namespace]) : global$j[namespace] && global$j[namespace][method];
2291
2487
  };
2292
2488
 
2293
- var uncurryThis$s = functionUncurryThis;
2489
+ var uncurryThis$v = functionUncurryThis;
2294
2490
 
2295
- var objectIsPrototypeOf = uncurryThis$s({}.isPrototypeOf);
2491
+ var objectIsPrototypeOf = uncurryThis$v({}.isPrototypeOf);
2296
2492
 
2297
- var getBuiltIn$8 = getBuiltIn$9;
2493
+ var engineUserAgent = typeof navigator != 'undefined' && String(navigator.userAgent) || '';
2298
2494
 
2299
- var engineUserAgent = getBuiltIn$8('navigator', 'userAgent') || '';
2300
-
2301
- var global$j = global$l;
2495
+ var global$i = global$k;
2302
2496
  var userAgent$2 = engineUserAgent;
2303
2497
 
2304
- var process = global$j.process;
2305
- var Deno = global$j.Deno;
2306
- var versions = process && process.versions || Deno && Deno.version;
2498
+ var process$1 = global$i.process;
2499
+ var Deno = global$i.Deno;
2500
+ var versions = process$1 && process$1.versions || Deno && Deno.version;
2307
2501
  var v8 = versions && versions.v8;
2308
2502
  var match, version;
2309
2503
 
@@ -2349,8 +2543,8 @@
2349
2543
  && !Symbol.sham
2350
2544
  && typeof Symbol.iterator == 'symbol';
2351
2545
 
2352
- var getBuiltIn$7 = getBuiltIn$9;
2353
- var isCallable$j = isCallable$m;
2546
+ var getBuiltIn$7 = getBuiltIn$8;
2547
+ var isCallable$k = isCallable$n;
2354
2548
  var isPrototypeOf$6 = objectIsPrototypeOf;
2355
2549
  var USE_SYMBOL_AS_UID$1 = useSymbolAsUid;
2356
2550
 
@@ -2360,43 +2554,43 @@
2360
2554
  return typeof it == 'symbol';
2361
2555
  } : function (it) {
2362
2556
  var $Symbol = getBuiltIn$7('Symbol');
2363
- return isCallable$j($Symbol) && isPrototypeOf$6($Symbol.prototype, $Object$3(it));
2557
+ return isCallable$k($Symbol) && isPrototypeOf$6($Symbol.prototype, $Object$3(it));
2364
2558
  };
2365
2559
 
2366
- var $String$3 = String;
2560
+ var $String$5 = String;
2367
2561
 
2368
2562
  var tryToString$5 = function (argument) {
2369
2563
  try {
2370
- return $String$3(argument);
2564
+ return $String$5(argument);
2371
2565
  } catch (error) {
2372
2566
  return 'Object';
2373
2567
  }
2374
2568
  };
2375
2569
 
2376
- var isCallable$i = isCallable$m;
2570
+ var isCallable$j = isCallable$n;
2377
2571
  var tryToString$4 = tryToString$5;
2378
2572
 
2379
2573
  var $TypeError$e = TypeError;
2380
2574
 
2381
2575
  // `Assert: IsCallable(argument) is true`
2382
- var aCallable$5 = function (argument) {
2383
- if (isCallable$i(argument)) return argument;
2576
+ var aCallable$6 = function (argument) {
2577
+ if (isCallable$j(argument)) return argument;
2384
2578
  throw $TypeError$e(tryToString$4(argument) + ' is not a function');
2385
2579
  };
2386
2580
 
2387
- var aCallable$4 = aCallable$5;
2581
+ var aCallable$5 = aCallable$6;
2388
2582
  var isNullOrUndefined$4 = isNullOrUndefined$6;
2389
2583
 
2390
2584
  // `GetMethod` abstract operation
2391
2585
  // https://tc39.es/ecma262/#sec-getmethod
2392
2586
  var getMethod$4 = function (V, P) {
2393
2587
  var func = V[P];
2394
- return isNullOrUndefined$4(func) ? undefined : aCallable$4(func);
2588
+ return isNullOrUndefined$4(func) ? undefined : aCallable$5(func);
2395
2589
  };
2396
2590
 
2397
2591
  var call$g = functionCall;
2398
- var isCallable$h = isCallable$m;
2399
- var isObject$e = isObject$f;
2592
+ var isCallable$i = isCallable$n;
2593
+ var isObject$d = isObject$e;
2400
2594
 
2401
2595
  var $TypeError$d = TypeError;
2402
2596
 
@@ -2404,34 +2598,38 @@
2404
2598
  // https://tc39.es/ecma262/#sec-ordinarytoprimitive
2405
2599
  var ordinaryToPrimitive$1 = function (input, pref) {
2406
2600
  var fn, val;
2407
- if (pref === 'string' && isCallable$h(fn = input.toString) && !isObject$e(val = call$g(fn, input))) return val;
2408
- if (isCallable$h(fn = input.valueOf) && !isObject$e(val = call$g(fn, input))) return val;
2409
- if (pref !== 'string' && isCallable$h(fn = input.toString) && !isObject$e(val = call$g(fn, input))) return val;
2601
+ if (pref === 'string' && isCallable$i(fn = input.toString) && !isObject$d(val = call$g(fn, input))) return val;
2602
+ if (isCallable$i(fn = input.valueOf) && !isObject$d(val = call$g(fn, input))) return val;
2603
+ if (pref !== 'string' && isCallable$i(fn = input.toString) && !isObject$d(val = call$g(fn, input))) return val;
2410
2604
  throw $TypeError$d("Can't convert object to primitive value");
2411
2605
  };
2412
2606
 
2413
- var shared$7 = {exports: {}};
2607
+ var sharedExports = {};
2608
+ var shared$7 = {
2609
+ get exports(){ return sharedExports; },
2610
+ set exports(v){ sharedExports = v; },
2611
+ };
2414
2612
 
2415
2613
  var isPure = false;
2416
2614
 
2417
- var global$i = global$l;
2615
+ var global$h = global$k;
2418
2616
 
2419
2617
  // eslint-disable-next-line es/no-object-defineproperty -- safe
2420
- var defineProperty$a = Object.defineProperty;
2618
+ var defineProperty$9 = Object.defineProperty;
2421
2619
 
2422
2620
  var defineGlobalProperty$3 = function (key, value) {
2423
2621
  try {
2424
- defineProperty$a(global$i, key, { value: value, configurable: true, writable: true });
2622
+ defineProperty$9(global$h, key, { value: value, configurable: true, writable: true });
2425
2623
  } catch (error) {
2426
- global$i[key] = value;
2624
+ global$h[key] = value;
2427
2625
  } return value;
2428
2626
  };
2429
2627
 
2430
- var global$h = global$l;
2628
+ var global$g = global$k;
2431
2629
  var defineGlobalProperty$2 = defineGlobalProperty$3;
2432
2630
 
2433
2631
  var SHARED = '__core-js_shared__';
2434
- var store$3 = global$h[SHARED] || defineGlobalProperty$2(SHARED, {});
2632
+ var store$3 = global$g[SHARED] || defineGlobalProperty$2(SHARED, {});
2435
2633
 
2436
2634
  var sharedStore = store$3;
2437
2635
 
@@ -2441,10 +2639,10 @@
2441
2639
  (shared$7.exports = function (key, value) {
2442
2640
  return store$2[key] || (store$2[key] = value !== undefined ? value : {});
2443
2641
  })('versions', []).push({
2444
- version: '3.26.0',
2642
+ version: '3.28.0',
2445
2643
  mode: IS_PURE$5 ? 'pure' : 'global',
2446
- copyright: '© 2014-2022 Denis Pushkarev (zloirock.ru)',
2447
- license: 'https://github.com/zloirock/core-js/blob/v3.26.0/LICENSE',
2644
+ copyright: '© 2014-2023 Denis Pushkarev (zloirock.ru)',
2645
+ license: 'https://github.com/zloirock/core-js/blob/v3.28.0/LICENSE',
2448
2646
  source: 'https://github.com/zloirock/core-js'
2449
2647
  });
2450
2648
 
@@ -2458,10 +2656,10 @@
2458
2656
  return $Object$2(requireObjectCoercible$4(argument));
2459
2657
  };
2460
2658
 
2461
- var uncurryThis$r = functionUncurryThis;
2659
+ var uncurryThis$u = functionUncurryThis;
2462
2660
  var toObject$a = toObject$b;
2463
2661
 
2464
- var hasOwnProperty$1 = uncurryThis$r({}.hasOwnProperty);
2662
+ var hasOwnProperty$1 = uncurryThis$u({}.hasOwnProperty);
2465
2663
 
2466
2664
  // `HasOwnProperty` abstract operation
2467
2665
  // https://tc39.es/ecma262/#sec-hasownproperty
@@ -2470,43 +2668,37 @@
2470
2668
  return hasOwnProperty$1(toObject$a(it), key);
2471
2669
  };
2472
2670
 
2473
- var uncurryThis$q = functionUncurryThis;
2671
+ var uncurryThis$t = functionUncurryThis;
2474
2672
 
2475
2673
  var id$1 = 0;
2476
2674
  var postfix = Math.random();
2477
- var toString$d = uncurryThis$q(1.0.toString);
2675
+ var toString$e = uncurryThis$t(1.0.toString);
2478
2676
 
2479
2677
  var uid$4 = function (key) {
2480
- return 'Symbol(' + (key === undefined ? '' : key) + ')_' + toString$d(++id$1 + postfix, 36);
2678
+ return 'Symbol(' + (key === undefined ? '' : key) + ')_' + toString$e(++id$1 + postfix, 36);
2481
2679
  };
2482
2680
 
2483
- var global$g = global$l;
2484
- var shared$6 = shared$7.exports;
2681
+ var global$f = global$k;
2682
+ var shared$6 = sharedExports;
2485
2683
  var hasOwn$g = hasOwnProperty_1;
2486
2684
  var uid$3 = uid$4;
2487
2685
  var NATIVE_SYMBOL$5 = symbolConstructorDetection;
2488
2686
  var USE_SYMBOL_AS_UID = useSymbolAsUid;
2489
2687
 
2688
+ var Symbol$2 = global$f.Symbol;
2490
2689
  var WellKnownSymbolsStore$1 = shared$6('wks');
2491
- var Symbol$2 = global$g.Symbol;
2492
- var symbolFor = Symbol$2 && Symbol$2['for'];
2493
- var createWellKnownSymbol = USE_SYMBOL_AS_UID ? Symbol$2 : Symbol$2 && Symbol$2.withoutSetter || uid$3;
2690
+ var createWellKnownSymbol = USE_SYMBOL_AS_UID ? Symbol$2['for'] || Symbol$2 : Symbol$2 && Symbol$2.withoutSetter || uid$3;
2494
2691
 
2495
2692
  var wellKnownSymbol$o = function (name) {
2496
- if (!hasOwn$g(WellKnownSymbolsStore$1, name) || !(NATIVE_SYMBOL$5 || typeof WellKnownSymbolsStore$1[name] == 'string')) {
2497
- var description = 'Symbol.' + name;
2498
- if (NATIVE_SYMBOL$5 && hasOwn$g(Symbol$2, name)) {
2499
- WellKnownSymbolsStore$1[name] = Symbol$2[name];
2500
- } else if (USE_SYMBOL_AS_UID && symbolFor) {
2501
- WellKnownSymbolsStore$1[name] = symbolFor(description);
2502
- } else {
2503
- WellKnownSymbolsStore$1[name] = createWellKnownSymbol(description);
2504
- }
2693
+ if (!hasOwn$g(WellKnownSymbolsStore$1, name)) {
2694
+ WellKnownSymbolsStore$1[name] = NATIVE_SYMBOL$5 && hasOwn$g(Symbol$2, name)
2695
+ ? Symbol$2[name]
2696
+ : createWellKnownSymbol('Symbol.' + name);
2505
2697
  } return WellKnownSymbolsStore$1[name];
2506
2698
  };
2507
2699
 
2508
2700
  var call$f = functionCall;
2509
- var isObject$d = isObject$f;
2701
+ var isObject$c = isObject$e;
2510
2702
  var isSymbol$3 = isSymbol$4;
2511
2703
  var getMethod$3 = getMethod$4;
2512
2704
  var ordinaryToPrimitive = ordinaryToPrimitive$1;
@@ -2518,13 +2710,13 @@
2518
2710
  // `ToPrimitive` abstract operation
2519
2711
  // https://tc39.es/ecma262/#sec-toprimitive
2520
2712
  var toPrimitive$1 = function (input, pref) {
2521
- if (!isObject$d(input) || isSymbol$3(input)) return input;
2713
+ if (!isObject$c(input) || isSymbol$3(input)) return input;
2522
2714
  var exoticToPrim = getMethod$3(input, TO_PRIMITIVE);
2523
2715
  var result;
2524
2716
  if (exoticToPrim) {
2525
2717
  if (pref === undefined) pref = 'default';
2526
2718
  result = call$f(exoticToPrim, input, pref);
2527
- if (!isObject$d(result) || isSymbol$3(result)) return result;
2719
+ if (!isObject$c(result) || isSymbol$3(result)) return result;
2528
2720
  throw $TypeError$c("Can't convert object to primitive value");
2529
2721
  }
2530
2722
  if (pref === undefined) pref = 'number';
@@ -2541,12 +2733,12 @@
2541
2733
  return isSymbol$2(key) ? key : key + '';
2542
2734
  };
2543
2735
 
2544
- var global$f = global$l;
2545
- var isObject$c = isObject$f;
2736
+ var global$e = global$k;
2737
+ var isObject$b = isObject$e;
2546
2738
 
2547
- var document$1 = global$f.document;
2739
+ var document$1 = global$e.document;
2548
2740
  // typeof document.createElement is 'object' in old IE
2549
- var EXISTS$1 = isObject$c(document$1) && isObject$c(document$1.createElement);
2741
+ var EXISTS$1 = isObject$b(document$1) && isObject$b(document$1.createElement);
2550
2742
 
2551
2743
  var documentCreateElement$2 = function (it) {
2552
2744
  return EXISTS$1 ? document$1.createElement(it) : {};
@@ -2602,15 +2794,15 @@
2602
2794
  }).prototype != 42;
2603
2795
  });
2604
2796
 
2605
- var isObject$b = isObject$f;
2797
+ var isObject$a = isObject$e;
2606
2798
 
2607
- var $String$2 = String;
2799
+ var $String$4 = String;
2608
2800
  var $TypeError$b = TypeError;
2609
2801
 
2610
2802
  // `Assert: Type(argument) is Object`
2611
2803
  var anObject$e = function (argument) {
2612
- if (isObject$b(argument)) return argument;
2613
- throw $TypeError$b($String$2(argument) + ' is not an object');
2804
+ if (isObject$a(argument)) return argument;
2805
+ throw $TypeError$b($String$4(argument) + ' is not an object');
2614
2806
  };
2615
2807
 
2616
2808
  var DESCRIPTORS$d = descriptors;
@@ -2658,17 +2850,21 @@
2658
2850
  };
2659
2851
 
2660
2852
  var DESCRIPTORS$c = descriptors;
2661
- var definePropertyModule$6 = objectDefineProperty;
2853
+ var definePropertyModule$5 = objectDefineProperty;
2662
2854
  var createPropertyDescriptor$3 = createPropertyDescriptor$5;
2663
2855
 
2664
2856
  var createNonEnumerableProperty$6 = DESCRIPTORS$c ? function (object, key, value) {
2665
- return definePropertyModule$6.f(object, key, createPropertyDescriptor$3(1, value));
2857
+ return definePropertyModule$5.f(object, key, createPropertyDescriptor$3(1, value));
2666
2858
  } : function (object, key, value) {
2667
2859
  object[key] = value;
2668
2860
  return object;
2669
2861
  };
2670
2862
 
2671
- var makeBuiltIn$2 = {exports: {}};
2863
+ var makeBuiltInExports = {};
2864
+ var makeBuiltIn$3 = {
2865
+ get exports(){ return makeBuiltInExports; },
2866
+ set exports(v){ makeBuiltInExports = v; },
2867
+ };
2672
2868
 
2673
2869
  var DESCRIPTORS$b = descriptors;
2674
2870
  var hasOwn$e = hasOwnProperty_1;
@@ -2688,14 +2884,14 @@
2688
2884
  CONFIGURABLE: CONFIGURABLE
2689
2885
  };
2690
2886
 
2691
- var uncurryThis$p = functionUncurryThis;
2692
- var isCallable$g = isCallable$m;
2887
+ var uncurryThis$s = functionUncurryThis;
2888
+ var isCallable$h = isCallable$n;
2693
2889
  var store$1 = sharedStore;
2694
2890
 
2695
- var functionToString = uncurryThis$p(Function.toString);
2891
+ var functionToString = uncurryThis$s(Function.toString);
2696
2892
 
2697
2893
  // this helper broken in `core-js@3.4.1-3.4.4`, so we can't use `shared` helper
2698
- if (!isCallable$g(store$1.inspectSource)) {
2894
+ if (!isCallable$h(store$1.inspectSource)) {
2699
2895
  store$1.inspectSource = function (it) {
2700
2896
  return functionToString(it);
2701
2897
  };
@@ -2703,14 +2899,14 @@
2703
2899
 
2704
2900
  var inspectSource$2 = store$1.inspectSource;
2705
2901
 
2706
- var global$e = global$l;
2707
- var isCallable$f = isCallable$m;
2902
+ var global$d = global$k;
2903
+ var isCallable$g = isCallable$n;
2708
2904
 
2709
- var WeakMap$2 = global$e.WeakMap;
2905
+ var WeakMap$2 = global$d.WeakMap;
2710
2906
 
2711
- var weakMapBasicDetection = isCallable$f(WeakMap$2) && /native code/.test(String(WeakMap$2));
2907
+ var weakMapBasicDetection = isCallable$g(WeakMap$2) && /native code/.test(String(WeakMap$2));
2712
2908
 
2713
- var shared$5 = shared$7.exports;
2909
+ var shared$5 = sharedExports;
2714
2910
  var uid$2 = uid$4;
2715
2911
 
2716
2912
  var keys$1 = shared$5('keys');
@@ -2722,8 +2918,8 @@
2722
2918
  var hiddenKeys$6 = {};
2723
2919
 
2724
2920
  var NATIVE_WEAK_MAP = weakMapBasicDetection;
2725
- var global$d = global$l;
2726
- var isObject$a = isObject$f;
2921
+ var global$c = global$k;
2922
+ var isObject$9 = isObject$e;
2727
2923
  var createNonEnumerableProperty$5 = createNonEnumerableProperty$6;
2728
2924
  var hasOwn$d = hasOwnProperty_1;
2729
2925
  var shared$4 = sharedStore;
@@ -2731,8 +2927,8 @@
2731
2927
  var hiddenKeys$5 = hiddenKeys$6;
2732
2928
 
2733
2929
  var OBJECT_ALREADY_INITIALIZED = 'Object already initialized';
2734
- var TypeError$2 = global$d.TypeError;
2735
- var WeakMap$1 = global$d.WeakMap;
2930
+ var TypeError$2 = global$c.TypeError;
2931
+ var WeakMap$1 = global$c.WeakMap;
2736
2932
  var set, get, has;
2737
2933
 
2738
2934
  var enforce = function (it) {
@@ -2742,7 +2938,7 @@
2742
2938
  var getterFor = function (TYPE) {
2743
2939
  return function (it) {
2744
2940
  var state;
2745
- if (!isObject$a(it) || (state = get(it)).type !== TYPE) {
2941
+ if (!isObject$9(it) || (state = get(it)).type !== TYPE) {
2746
2942
  throw TypeError$2('Incompatible receiver, ' + TYPE + ' required');
2747
2943
  } return state;
2748
2944
  };
@@ -2792,8 +2988,9 @@
2792
2988
  getterFor: getterFor
2793
2989
  };
2794
2990
 
2991
+ var uncurryThis$r = functionUncurryThis;
2795
2992
  var fails$q = fails$x;
2796
- var isCallable$e = isCallable$m;
2993
+ var isCallable$f = isCallable$n;
2797
2994
  var hasOwn$c = hasOwnProperty_1;
2798
2995
  var DESCRIPTORS$a = descriptors;
2799
2996
  var CONFIGURABLE_FUNCTION_NAME$1 = functionName.CONFIGURABLE;
@@ -2802,56 +2999,60 @@
2802
2999
 
2803
3000
  var enforceInternalState$1 = InternalStateModule$4.enforce;
2804
3001
  var getInternalState$4 = InternalStateModule$4.get;
3002
+ var $String$3 = String;
2805
3003
  // eslint-disable-next-line es/no-object-defineproperty -- safe
2806
- var defineProperty$9 = Object.defineProperty;
3004
+ var defineProperty$8 = Object.defineProperty;
3005
+ var stringSlice$7 = uncurryThis$r(''.slice);
3006
+ var replace$6 = uncurryThis$r(''.replace);
3007
+ var join = uncurryThis$r([].join);
2807
3008
 
2808
3009
  var CONFIGURABLE_LENGTH = DESCRIPTORS$a && !fails$q(function () {
2809
- return defineProperty$9(function () { /* empty */ }, 'length', { value: 8 }).length !== 8;
3010
+ return defineProperty$8(function () { /* empty */ }, 'length', { value: 8 }).length !== 8;
2810
3011
  });
2811
3012
 
2812
3013
  var TEMPLATE = String(String).split('String');
2813
3014
 
2814
- var makeBuiltIn$1 = makeBuiltIn$2.exports = function (value, name, options) {
2815
- if (String(name).slice(0, 7) === 'Symbol(') {
2816
- name = '[' + String(name).replace(/^Symbol\(([^)]*)\)/, '$1') + ']';
3015
+ var makeBuiltIn$2 = makeBuiltIn$3.exports = function (value, name, options) {
3016
+ if (stringSlice$7($String$3(name), 0, 7) === 'Symbol(') {
3017
+ name = '[' + replace$6($String$3(name), /^Symbol\(([^)]*)\)/, '$1') + ']';
2817
3018
  }
2818
3019
  if (options && options.getter) name = 'get ' + name;
2819
3020
  if (options && options.setter) name = 'set ' + name;
2820
3021
  if (!hasOwn$c(value, 'name') || (CONFIGURABLE_FUNCTION_NAME$1 && value.name !== name)) {
2821
- if (DESCRIPTORS$a) defineProperty$9(value, 'name', { value: name, configurable: true });
3022
+ if (DESCRIPTORS$a) defineProperty$8(value, 'name', { value: name, configurable: true });
2822
3023
  else value.name = name;
2823
3024
  }
2824
3025
  if (CONFIGURABLE_LENGTH && options && hasOwn$c(options, 'arity') && value.length !== options.arity) {
2825
- defineProperty$9(value, 'length', { value: options.arity });
3026
+ defineProperty$8(value, 'length', { value: options.arity });
2826
3027
  }
2827
3028
  try {
2828
3029
  if (options && hasOwn$c(options, 'constructor') && options.constructor) {
2829
- if (DESCRIPTORS$a) defineProperty$9(value, 'prototype', { writable: false });
3030
+ if (DESCRIPTORS$a) defineProperty$8(value, 'prototype', { writable: false });
2830
3031
  // in V8 ~ Chrome 53, prototypes of some methods, like `Array.prototype.values`, are non-writable
2831
3032
  } else if (value.prototype) value.prototype = undefined;
2832
3033
  } catch (error) { /* empty */ }
2833
3034
  var state = enforceInternalState$1(value);
2834
3035
  if (!hasOwn$c(state, 'source')) {
2835
- state.source = TEMPLATE.join(typeof name == 'string' ? name : '');
3036
+ state.source = join(TEMPLATE, typeof name == 'string' ? name : '');
2836
3037
  } return value;
2837
3038
  };
2838
3039
 
2839
3040
  // add fake Function#toString for correct work wrapped methods / constructors with methods like LoDash isNative
2840
3041
  // eslint-disable-next-line no-extend-native -- required
2841
- Function.prototype.toString = makeBuiltIn$1(function toString() {
2842
- return isCallable$e(this) && getInternalState$4(this).source || inspectSource$1(this);
3042
+ Function.prototype.toString = makeBuiltIn$2(function toString() {
3043
+ return isCallable$f(this) && getInternalState$4(this).source || inspectSource$1(this);
2843
3044
  }, 'toString');
2844
3045
 
2845
- var isCallable$d = isCallable$m;
2846
- var definePropertyModule$5 = objectDefineProperty;
2847
- var makeBuiltIn = makeBuiltIn$2.exports;
3046
+ var isCallable$e = isCallable$n;
3047
+ var definePropertyModule$4 = objectDefineProperty;
3048
+ var makeBuiltIn$1 = makeBuiltInExports;
2848
3049
  var defineGlobalProperty$1 = defineGlobalProperty$3;
2849
3050
 
2850
3051
  var defineBuiltIn$b = function (O, key, value, options) {
2851
3052
  if (!options) options = {};
2852
3053
  var simple = options.enumerable;
2853
3054
  var name = options.name !== undefined ? options.name : key;
2854
- if (isCallable$d(value)) makeBuiltIn(value, name, options);
3055
+ if (isCallable$e(value)) makeBuiltIn$1(value, name, options);
2855
3056
  if (options.global) {
2856
3057
  if (simple) O[key] = value;
2857
3058
  else defineGlobalProperty$1(key, value);
@@ -2861,7 +3062,7 @@
2861
3062
  else if (O[key]) simple = true;
2862
3063
  } catch (error) { /* empty */ }
2863
3064
  if (simple) O[key] = value;
2864
- else definePropertyModule$5.f(O, key, {
3065
+ else definePropertyModule$4.f(O, key, {
2865
3066
  value: value,
2866
3067
  enumerable: false,
2867
3068
  configurable: !options.nonConfigurable,
@@ -2957,23 +3158,23 @@
2957
3158
  indexOf: createMethod$5(false)
2958
3159
  };
2959
3160
 
2960
- var uncurryThis$o = functionUncurryThis;
3161
+ var uncurryThis$q = functionUncurryThis;
2961
3162
  var hasOwn$b = hasOwnProperty_1;
2962
3163
  var toIndexedObject$6 = toIndexedObject$9;
2963
3164
  var indexOf$1 = arrayIncludes.indexOf;
2964
3165
  var hiddenKeys$4 = hiddenKeys$6;
2965
3166
 
2966
- var push$5 = uncurryThis$o([].push);
3167
+ var push$6 = uncurryThis$q([].push);
2967
3168
 
2968
3169
  var objectKeysInternal = function (object, names) {
2969
3170
  var O = toIndexedObject$6(object);
2970
3171
  var i = 0;
2971
3172
  var result = [];
2972
3173
  var key;
2973
- for (key in O) !hasOwn$b(hiddenKeys$4, key) && hasOwn$b(O, key) && push$5(result, key);
3174
+ for (key in O) !hasOwn$b(hiddenKeys$4, key) && hasOwn$b(O, key) && push$6(result, key);
2974
3175
  // Don't enum bug & hidden keys
2975
3176
  while (names.length > i) if (hasOwn$b(O, key = names[i++])) {
2976
- ~indexOf$1(result, key) || push$5(result, key);
3177
+ ~indexOf$1(result, key) || push$6(result, key);
2977
3178
  }
2978
3179
  return result;
2979
3180
  };
@@ -3006,13 +3207,13 @@
3006
3207
  // eslint-disable-next-line es/no-object-getownpropertysymbols -- safe
3007
3208
  var f$3 = objectGetOwnPropertySymbols.f = Object.getOwnPropertySymbols;
3008
3209
 
3009
- var getBuiltIn$6 = getBuiltIn$9;
3010
- var uncurryThis$n = functionUncurryThis;
3210
+ var getBuiltIn$6 = getBuiltIn$8;
3211
+ var uncurryThis$p = functionUncurryThis;
3011
3212
  var getOwnPropertyNamesModule$2 = objectGetOwnPropertyNames;
3012
3213
  var getOwnPropertySymbolsModule$3 = objectGetOwnPropertySymbols;
3013
3214
  var anObject$c = anObject$e;
3014
3215
 
3015
- var concat$2 = uncurryThis$n([].concat);
3216
+ var concat$2 = uncurryThis$p([].concat);
3016
3217
 
3017
3218
  // all object keys, includes non-enumerable and symbols
3018
3219
  var ownKeys$1 = getBuiltIn$6('Reflect', 'ownKeys') || function ownKeys(it) {
@@ -3024,11 +3225,11 @@
3024
3225
  var hasOwn$a = hasOwnProperty_1;
3025
3226
  var ownKeys = ownKeys$1;
3026
3227
  var getOwnPropertyDescriptorModule$1 = objectGetOwnPropertyDescriptor;
3027
- var definePropertyModule$4 = objectDefineProperty;
3228
+ var definePropertyModule$3 = objectDefineProperty;
3028
3229
 
3029
3230
  var copyConstructorProperties$2 = function (target, source, exceptions) {
3030
3231
  var keys = ownKeys(source);
3031
- var defineProperty = definePropertyModule$4.f;
3232
+ var defineProperty = definePropertyModule$3.f;
3032
3233
  var getOwnPropertyDescriptor = getOwnPropertyDescriptorModule$1.f;
3033
3234
  for (var i = 0; i < keys.length; i++) {
3034
3235
  var key = keys[i];
@@ -3039,7 +3240,7 @@
3039
3240
  };
3040
3241
 
3041
3242
  var fails$p = fails$x;
3042
- var isCallable$c = isCallable$m;
3243
+ var isCallable$d = isCallable$n;
3043
3244
 
3044
3245
  var replacement = /#|\.prototype\./;
3045
3246
 
@@ -3047,7 +3248,7 @@
3047
3248
  var value = data[normalize(feature)];
3048
3249
  return value == POLYFILL ? true
3049
3250
  : value == NATIVE ? false
3050
- : isCallable$c(detection) ? fails$p(detection)
3251
+ : isCallable$d(detection) ? fails$p(detection)
3051
3252
  : !!detection;
3052
3253
  };
3053
3254
 
@@ -3061,7 +3262,7 @@
3061
3262
 
3062
3263
  var isForced_1 = isForced$3;
3063
3264
 
3064
- var global$c = global$l;
3265
+ var global$b = global$k;
3065
3266
  var getOwnPropertyDescriptor$2 = objectGetOwnPropertyDescriptor.f;
3066
3267
  var createNonEnumerableProperty$4 = createNonEnumerableProperty$6;
3067
3268
  var defineBuiltIn$a = defineBuiltIn$b;
@@ -3090,11 +3291,11 @@
3090
3291
  var STATIC = options.stat;
3091
3292
  var FORCED, target, key, targetProperty, sourceProperty, descriptor;
3092
3293
  if (GLOBAL) {
3093
- target = global$c;
3294
+ target = global$b;
3094
3295
  } else if (STATIC) {
3095
- target = global$c[TARGET] || defineGlobalProperty(TARGET, {});
3296
+ target = global$b[TARGET] || defineGlobalProperty(TARGET, {});
3096
3297
  } else {
3097
- target = (global$c[TARGET] || {}).prototype;
3298
+ target = (global$b[TARGET] || {}).prototype;
3098
3299
  }
3099
3300
  if (target) for (key in source) {
3100
3301
  sourceProperty = source[key];
@@ -3126,15 +3327,15 @@
3126
3327
  var toStringTagSupport = String(test$1) === '[object z]';
3127
3328
 
3128
3329
  var TO_STRING_TAG_SUPPORT$2 = toStringTagSupport;
3129
- var isCallable$b = isCallable$m;
3130
- var classofRaw = classofRaw$2;
3330
+ var isCallable$c = isCallable$n;
3331
+ var classofRaw$1 = classofRaw$2;
3131
3332
  var wellKnownSymbol$l = wellKnownSymbol$o;
3132
3333
 
3133
3334
  var TO_STRING_TAG$2 = wellKnownSymbol$l('toStringTag');
3134
3335
  var $Object$1 = Object;
3135
3336
 
3136
3337
  // ES3 wrong here
3137
- var CORRECT_ARGUMENTS = classofRaw(function () { return arguments; }()) == 'Arguments';
3338
+ var CORRECT_ARGUMENTS = classofRaw$1(function () { return arguments; }()) == 'Arguments';
3138
3339
 
3139
3340
  // fallback for IE11 Script Access Denied error
3140
3341
  var tryGet = function (it, key) {
@@ -3144,24 +3345,24 @@
3144
3345
  };
3145
3346
 
3146
3347
  // getting tag from ES6+ `Object.prototype.toString`
3147
- var classof$a = TO_STRING_TAG_SUPPORT$2 ? classofRaw : function (it) {
3348
+ var classof$b = TO_STRING_TAG_SUPPORT$2 ? classofRaw$1 : function (it) {
3148
3349
  var O, tag, result;
3149
3350
  return it === undefined ? 'Undefined' : it === null ? 'Null'
3150
3351
  // @@toStringTag case
3151
3352
  : typeof (tag = tryGet(O = $Object$1(it), TO_STRING_TAG$2)) == 'string' ? tag
3152
3353
  // builtinTag case
3153
- : CORRECT_ARGUMENTS ? classofRaw(O)
3354
+ : CORRECT_ARGUMENTS ? classofRaw$1(O)
3154
3355
  // ES3 arguments fallback
3155
- : (result = classofRaw(O)) == 'Object' && isCallable$b(O.callee) ? 'Arguments' : result;
3356
+ : (result = classofRaw$1(O)) == 'Object' && isCallable$c(O.callee) ? 'Arguments' : result;
3156
3357
  };
3157
3358
 
3158
- var classof$9 = classof$a;
3359
+ var classof$a = classof$b;
3159
3360
 
3160
- var $String$1 = String;
3361
+ var $String$2 = String;
3161
3362
 
3162
- var toString$c = function (argument) {
3163
- if (classof$9(argument) === 'Symbol') throw TypeError('Cannot convert a Symbol value to a string');
3164
- return $String$1(argument);
3363
+ var toString$d = function (argument) {
3364
+ if (classof$a(argument) === 'Symbol') throw TypeError('Cannot convert a Symbol value to a string');
3365
+ return $String$2(argument);
3165
3366
  };
3166
3367
 
3167
3368
  var objectDefineProperties = {};
@@ -3178,7 +3379,7 @@
3178
3379
 
3179
3380
  var DESCRIPTORS$9 = descriptors;
3180
3381
  var V8_PROTOTYPE_DEFINE_BUG = v8PrototypeDefineBug;
3181
- var definePropertyModule$3 = objectDefineProperty;
3382
+ var definePropertyModule$2 = objectDefineProperty;
3182
3383
  var anObject$b = anObject$e;
3183
3384
  var toIndexedObject$5 = toIndexedObject$9;
3184
3385
  var objectKeys$3 = objectKeys$4;
@@ -3193,11 +3394,11 @@
3193
3394
  var length = keys.length;
3194
3395
  var index = 0;
3195
3396
  var key;
3196
- while (length > index) definePropertyModule$3.f(O, key = keys[index++], props[key]);
3397
+ while (length > index) definePropertyModule$2.f(O, key = keys[index++], props[key]);
3197
3398
  return O;
3198
3399
  };
3199
3400
 
3200
- var getBuiltIn$5 = getBuiltIn$9;
3401
+ var getBuiltIn$5 = getBuiltIn$8;
3201
3402
 
3202
3403
  var html$1 = getBuiltIn$5('document', 'documentElement');
3203
3404
 
@@ -3290,12 +3491,12 @@
3290
3491
 
3291
3492
  'use strict';
3292
3493
  var toPropertyKey$1 = toPropertyKey$4;
3293
- var definePropertyModule$2 = objectDefineProperty;
3494
+ var definePropertyModule$1 = objectDefineProperty;
3294
3495
  var createPropertyDescriptor$2 = createPropertyDescriptor$5;
3295
3496
 
3296
3497
  var createProperty$5 = function (object, key, value) {
3297
3498
  var propertyKey = toPropertyKey$1(key);
3298
- if (propertyKey in object) definePropertyModule$2.f(object, propertyKey, createPropertyDescriptor$2(0, value));
3499
+ if (propertyKey in object) definePropertyModule$1.f(object, propertyKey, createPropertyDescriptor$2(0, value));
3299
3500
  else object[propertyKey] = value;
3300
3501
  };
3301
3502
 
@@ -3318,7 +3519,7 @@
3318
3519
 
3319
3520
  /* eslint-disable es/no-object-getownpropertynames -- safe */
3320
3521
 
3321
- var classof$8 = classofRaw$2;
3522
+ var classof$9 = classofRaw$2;
3322
3523
  var toIndexedObject$4 = toIndexedObject$9;
3323
3524
  var $getOwnPropertyNames$1 = objectGetOwnPropertyNames.f;
3324
3525
  var arraySlice$3 = arraySliceSimple;
@@ -3336,35 +3537,44 @@
3336
3537
 
3337
3538
  // fallback for IE11 buggy Object.getOwnPropertyNames with iframe and window
3338
3539
  var f$1 = objectGetOwnPropertyNamesExternal.f = function getOwnPropertyNames(it) {
3339
- return windowNames && classof$8(it) == 'Window'
3540
+ return windowNames && classof$9(it) == 'Window'
3340
3541
  ? getWindowNames(it)
3341
3542
  : $getOwnPropertyNames$1(toIndexedObject$4(it));
3342
3543
  };
3343
3544
 
3545
+ var makeBuiltIn = makeBuiltInExports;
3546
+ var defineProperty$7 = objectDefineProperty;
3547
+
3548
+ var defineBuiltInAccessor$4 = function (target, name, descriptor) {
3549
+ if (descriptor.get) makeBuiltIn(descriptor.get, name, { getter: true });
3550
+ if (descriptor.set) makeBuiltIn(descriptor.set, name, { setter: true });
3551
+ return defineProperty$7.f(target, name, descriptor);
3552
+ };
3553
+
3344
3554
  var wellKnownSymbolWrapped = {};
3345
3555
 
3346
3556
  var wellKnownSymbol$k = wellKnownSymbol$o;
3347
3557
 
3348
3558
  var f = wellKnownSymbolWrapped.f = wellKnownSymbol$k;
3349
3559
 
3350
- var global$b = global$l;
3560
+ var global$a = global$k;
3351
3561
 
3352
- var path$1 = global$b;
3562
+ var path$1 = global$a;
3353
3563
 
3354
3564
  var path = path$1;
3355
3565
  var hasOwn$9 = hasOwnProperty_1;
3356
3566
  var wrappedWellKnownSymbolModule$1 = wellKnownSymbolWrapped;
3357
- var defineProperty$8 = objectDefineProperty.f;
3567
+ var defineProperty$6 = objectDefineProperty.f;
3358
3568
 
3359
3569
  var wellKnownSymbolDefine = function (NAME) {
3360
3570
  var Symbol = path.Symbol || (path.Symbol = {});
3361
- if (!hasOwn$9(Symbol, NAME)) defineProperty$8(Symbol, NAME, {
3571
+ if (!hasOwn$9(Symbol, NAME)) defineProperty$6(Symbol, NAME, {
3362
3572
  value: wrappedWellKnownSymbolModule$1.f(NAME)
3363
3573
  });
3364
3574
  };
3365
3575
 
3366
3576
  var call$d = functionCall;
3367
- var getBuiltIn$4 = getBuiltIn$9;
3577
+ var getBuiltIn$4 = getBuiltIn$8;
3368
3578
  var wellKnownSymbol$j = wellKnownSymbol$o;
3369
3579
  var defineBuiltIn$9 = defineBuiltIn$b;
3370
3580
 
@@ -3384,7 +3594,7 @@
3384
3594
  }
3385
3595
  };
3386
3596
 
3387
- var defineProperty$7 = objectDefineProperty.f;
3597
+ var defineProperty$5 = objectDefineProperty.f;
3388
3598
  var hasOwn$8 = hasOwnProperty_1;
3389
3599
  var wellKnownSymbol$i = wellKnownSymbol$o;
3390
3600
 
@@ -3393,49 +3603,59 @@
3393
3603
  var setToStringTag$4 = function (target, TAG, STATIC) {
3394
3604
  if (target && !STATIC) target = target.prototype;
3395
3605
  if (target && !hasOwn$8(target, TO_STRING_TAG$1)) {
3396
- defineProperty$7(target, TO_STRING_TAG$1, { configurable: true, value: TAG });
3606
+ defineProperty$5(target, TO_STRING_TAG$1, { configurable: true, value: TAG });
3397
3607
  }
3398
3608
  };
3399
3609
 
3400
- var uncurryThis$m = functionUncurryThis;
3401
- var aCallable$3 = aCallable$5;
3610
+ var classofRaw = classofRaw$2;
3611
+ var uncurryThis$o = functionUncurryThis;
3612
+
3613
+ var functionUncurryThisClause = function (fn) {
3614
+ // Nashorn bug:
3615
+ // https://github.com/zloirock/core-js/issues/1128
3616
+ // https://github.com/zloirock/core-js/issues/1130
3617
+ if (classofRaw(fn) === 'Function') return uncurryThis$o(fn);
3618
+ };
3619
+
3620
+ var uncurryThis$n = functionUncurryThisClause;
3621
+ var aCallable$4 = aCallable$6;
3402
3622
  var NATIVE_BIND$1 = functionBindNative;
3403
3623
 
3404
- var bind$4 = uncurryThis$m(uncurryThis$m.bind);
3624
+ var bind$4 = uncurryThis$n(uncurryThis$n.bind);
3405
3625
 
3406
3626
  // optional / simple context binding
3407
3627
  var functionBindContext = function (fn, that) {
3408
- aCallable$3(fn);
3628
+ aCallable$4(fn);
3409
3629
  return that === undefined ? fn : NATIVE_BIND$1 ? bind$4(fn, that) : function (/* ...args */) {
3410
3630
  return fn.apply(that, arguments);
3411
3631
  };
3412
3632
  };
3413
3633
 
3414
- var classof$7 = classofRaw$2;
3634
+ var classof$8 = classofRaw$2;
3415
3635
 
3416
3636
  // `IsArray` abstract operation
3417
3637
  // https://tc39.es/ecma262/#sec-isarray
3418
3638
  // eslint-disable-next-line es/no-array-isarray -- safe
3419
3639
  var isArray$5 = Array.isArray || function isArray(argument) {
3420
- return classof$7(argument) == 'Array';
3640
+ return classof$8(argument) == 'Array';
3421
3641
  };
3422
3642
 
3423
- var uncurryThis$l = functionUncurryThis;
3643
+ var uncurryThis$m = functionUncurryThis;
3424
3644
  var fails$o = fails$x;
3425
- var isCallable$a = isCallable$m;
3426
- var classof$6 = classof$a;
3427
- var getBuiltIn$3 = getBuiltIn$9;
3645
+ var isCallable$b = isCallable$n;
3646
+ var classof$7 = classof$b;
3647
+ var getBuiltIn$3 = getBuiltIn$8;
3428
3648
  var inspectSource = inspectSource$2;
3429
3649
 
3430
3650
  var noop = function () { /* empty */ };
3431
3651
  var empty = [];
3432
3652
  var construct = getBuiltIn$3('Reflect', 'construct');
3433
3653
  var constructorRegExp = /^\s*(?:class|function)\b/;
3434
- var exec$3 = uncurryThis$l(constructorRegExp.exec);
3654
+ var exec$3 = uncurryThis$m(constructorRegExp.exec);
3435
3655
  var INCORRECT_TO_STRING = !constructorRegExp.exec(noop);
3436
3656
 
3437
3657
  var isConstructorModern = function isConstructor(argument) {
3438
- if (!isCallable$a(argument)) return false;
3658
+ if (!isCallable$b(argument)) return false;
3439
3659
  try {
3440
3660
  construct(noop, empty, argument);
3441
3661
  return true;
@@ -3445,8 +3665,8 @@
3445
3665
  };
3446
3666
 
3447
3667
  var isConstructorLegacy = function isConstructor(argument) {
3448
- if (!isCallable$a(argument)) return false;
3449
- switch (classof$6(argument)) {
3668
+ if (!isCallable$b(argument)) return false;
3669
+ switch (classof$7(argument)) {
3450
3670
  case 'AsyncFunction':
3451
3671
  case 'GeneratorFunction':
3452
3672
  case 'AsyncGeneratorFunction': return false;
@@ -3475,7 +3695,7 @@
3475
3695
 
3476
3696
  var isArray$4 = isArray$5;
3477
3697
  var isConstructor$2 = isConstructor$3;
3478
- var isObject$9 = isObject$f;
3698
+ var isObject$8 = isObject$e;
3479
3699
  var wellKnownSymbol$h = wellKnownSymbol$o;
3480
3700
 
3481
3701
  var SPECIES$4 = wellKnownSymbol$h('species');
@@ -3489,7 +3709,7 @@
3489
3709
  C = originalArray.constructor;
3490
3710
  // cross-realm fallback
3491
3711
  if (isConstructor$2(C) && (C === $Array$2 || isArray$4(C.prototype))) C = undefined;
3492
- else if (isObject$9(C)) {
3712
+ else if (isObject$8(C)) {
3493
3713
  C = C[SPECIES$4];
3494
3714
  if (C === null) C = undefined;
3495
3715
  }
@@ -3505,13 +3725,13 @@
3505
3725
  };
3506
3726
 
3507
3727
  var bind$3 = functionBindContext;
3508
- var uncurryThis$k = functionUncurryThis;
3728
+ var uncurryThis$l = functionUncurryThis;
3509
3729
  var IndexedObject$2 = indexedObject;
3510
3730
  var toObject$9 = toObject$b;
3511
3731
  var lengthOfArrayLike$7 = lengthOfArrayLike$a;
3512
3732
  var arraySpeciesCreate$2 = arraySpeciesCreate$3;
3513
3733
 
3514
- var push$4 = uncurryThis$k([].push);
3734
+ var push$5 = uncurryThis$l([].push);
3515
3735
 
3516
3736
  // `Array.prototype.{ forEach, map, filter, some, every, find, findIndex, filterReject }` methods implementation
3517
3737
  var createMethod$4 = function (TYPE) {
@@ -3540,10 +3760,10 @@
3540
3760
  case 3: return true; // some
3541
3761
  case 5: return value; // find
3542
3762
  case 6: return index; // findIndex
3543
- case 2: push$4(target, value); // filter
3763
+ case 2: push$5(target, value); // filter
3544
3764
  } else switch (TYPE) {
3545
3765
  case 4: return false; // every
3546
- case 7: push$4(target, value); // filterReject
3766
+ case 7: push$5(target, value); // filterReject
3547
3767
  }
3548
3768
  }
3549
3769
  }
@@ -3580,9 +3800,9 @@
3580
3800
 
3581
3801
  'use strict';
3582
3802
  var $$q = _export;
3583
- var global$a = global$l;
3803
+ var global$9 = global$k;
3584
3804
  var call$c = functionCall;
3585
- var uncurryThis$j = functionUncurryThis;
3805
+ var uncurryThis$k = functionUncurryThis;
3586
3806
  var IS_PURE$4 = isPure;
3587
3807
  var DESCRIPTORS$8 = descriptors;
3588
3808
  var NATIVE_SYMBOL$4 = symbolConstructorDetection;
@@ -3592,7 +3812,7 @@
3592
3812
  var anObject$9 = anObject$e;
3593
3813
  var toIndexedObject$3 = toIndexedObject$9;
3594
3814
  var toPropertyKey = toPropertyKey$4;
3595
- var $toString$1 = toString$c;
3815
+ var $toString$1 = toString$d;
3596
3816
  var createPropertyDescriptor$1 = createPropertyDescriptor$5;
3597
3817
  var nativeObjectCreate = objectCreate;
3598
3818
  var objectKeys$2 = objectKeys$4;
@@ -3600,11 +3820,12 @@
3600
3820
  var getOwnPropertyNamesExternal = objectGetOwnPropertyNamesExternal;
3601
3821
  var getOwnPropertySymbolsModule$2 = objectGetOwnPropertySymbols;
3602
3822
  var getOwnPropertyDescriptorModule = objectGetOwnPropertyDescriptor;
3603
- var definePropertyModule$1 = objectDefineProperty;
3823
+ var definePropertyModule = objectDefineProperty;
3604
3824
  var definePropertiesModule = objectDefineProperties;
3605
3825
  var propertyIsEnumerableModule$1 = objectPropertyIsEnumerable;
3606
3826
  var defineBuiltIn$8 = defineBuiltIn$b;
3607
- var shared$3 = shared$7.exports;
3827
+ var defineBuiltInAccessor$3 = defineBuiltInAccessor$4;
3828
+ var shared$3 = sharedExports;
3608
3829
  var sharedKey$1 = sharedKey$4;
3609
3830
  var hiddenKeys$1 = hiddenKeys$6;
3610
3831
  var uid$1 = uid$4;
@@ -3624,15 +3845,15 @@
3624
3845
  var getInternalState$3 = InternalStateModule$3.getterFor(SYMBOL);
3625
3846
 
3626
3847
  var ObjectPrototype$1 = Object[PROTOTYPE];
3627
- var $Symbol = global$a.Symbol;
3848
+ var $Symbol = global$9.Symbol;
3628
3849
  var SymbolPrototype$1 = $Symbol && $Symbol[PROTOTYPE];
3629
- var TypeError$1 = global$a.TypeError;
3630
- var QObject = global$a.QObject;
3850
+ var TypeError$1 = global$9.TypeError;
3851
+ var QObject = global$9.QObject;
3631
3852
  var nativeGetOwnPropertyDescriptor = getOwnPropertyDescriptorModule.f;
3632
- var nativeDefineProperty = definePropertyModule$1.f;
3853
+ var nativeDefineProperty = definePropertyModule.f;
3633
3854
  var nativeGetOwnPropertyNames = getOwnPropertyNamesExternal.f;
3634
3855
  var nativePropertyIsEnumerable = propertyIsEnumerableModule$1.f;
3635
- var push$3 = uncurryThis$j([].push);
3856
+ var push$4 = uncurryThis$k([].push);
3636
3857
 
3637
3858
  var AllSymbols = shared$3('symbols');
3638
3859
  var ObjectPrototypeSymbols = shared$3('op-symbols');
@@ -3719,7 +3940,7 @@
3719
3940
  var names = nativeGetOwnPropertyNames(toIndexedObject$3(O));
3720
3941
  var result = [];
3721
3942
  $forEach(names, function (key) {
3722
- if (!hasOwn$7(AllSymbols, key) && !hasOwn$7(hiddenKeys$1, key)) push$3(result, key);
3943
+ if (!hasOwn$7(AllSymbols, key) && !hasOwn$7(hiddenKeys$1, key)) push$4(result, key);
3723
3944
  });
3724
3945
  return result;
3725
3946
  };
@@ -3730,7 +3951,7 @@
3730
3951
  var result = [];
3731
3952
  $forEach(names, function (key) {
3732
3953
  if (hasOwn$7(AllSymbols, key) && (!IS_OBJECT_PROTOTYPE || hasOwn$7(ObjectPrototype$1, key))) {
3733
- push$3(result, AllSymbols[key]);
3954
+ push$4(result, AllSymbols[key]);
3734
3955
  }
3735
3956
  });
3736
3957
  return result;
@@ -3763,7 +3984,7 @@
3763
3984
  });
3764
3985
 
3765
3986
  propertyIsEnumerableModule$1.f = $propertyIsEnumerable$1;
3766
- definePropertyModule$1.f = $defineProperty;
3987
+ definePropertyModule.f = $defineProperty;
3767
3988
  definePropertiesModule.f = $defineProperties;
3768
3989
  getOwnPropertyDescriptorModule.f = $getOwnPropertyDescriptor;
3769
3990
  getOwnPropertyNamesModule$1.f = getOwnPropertyNamesExternal.f = $getOwnPropertyNames;
@@ -3775,7 +3996,7 @@
3775
3996
 
3776
3997
  if (DESCRIPTORS$8) {
3777
3998
  // https://github.com/tc39/proposal-Symbol-description
3778
- nativeDefineProperty(SymbolPrototype$1, 'description', {
3999
+ defineBuiltInAccessor$3(SymbolPrototype$1, 'description', {
3779
4000
  configurable: true,
3780
4001
  get: function description() {
3781
4002
  return getInternalState$3(this).description;
@@ -3839,10 +4060,10 @@
3839
4060
  var symbolRegistryDetection = NATIVE_SYMBOL$3 && !!Symbol['for'] && !!Symbol.keyFor;
3840
4061
 
3841
4062
  var $$p = _export;
3842
- var getBuiltIn$2 = getBuiltIn$9;
4063
+ var getBuiltIn$2 = getBuiltIn$8;
3843
4064
  var hasOwn$6 = hasOwnProperty_1;
3844
- var toString$b = toString$c;
3845
- var shared$2 = shared$7.exports;
4065
+ var toString$c = toString$d;
4066
+ var shared$2 = sharedExports;
3846
4067
  var NATIVE_SYMBOL_REGISTRY$1 = symbolRegistryDetection;
3847
4068
 
3848
4069
  var StringToSymbolRegistry = shared$2('string-to-symbol-registry');
@@ -3852,7 +4073,7 @@
3852
4073
  // https://tc39.es/ecma262/#sec-symbol.for
3853
4074
  $$p({ target: 'Symbol', stat: true, forced: !NATIVE_SYMBOL_REGISTRY$1 }, {
3854
4075
  'for': function (key) {
3855
- var string = toString$b(key);
4076
+ var string = toString$c(key);
3856
4077
  if (hasOwn$6(StringToSymbolRegistry, string)) return StringToSymbolRegistry[string];
3857
4078
  var symbol = getBuiltIn$2('Symbol')(string);
3858
4079
  StringToSymbolRegistry[string] = symbol;
@@ -3867,7 +4088,7 @@
3867
4088
  var hasOwn$5 = hasOwnProperty_1;
3868
4089
  var isSymbol$1 = isSymbol$4;
3869
4090
  var tryToString$3 = tryToString$5;
3870
- var shared$1 = shared$7.exports;
4091
+ var shared$1 = sharedExports;
3871
4092
  var NATIVE_SYMBOL_REGISTRY = symbolRegistryDetection;
3872
4093
 
3873
4094
  var SymbolToStringRegistry = shared$1('symbol-to-string-registry');
@@ -3894,23 +4115,53 @@
3894
4115
  return call$b.apply(apply$2, arguments);
3895
4116
  });
3896
4117
 
3897
- var uncurryThis$i = functionUncurryThis;
4118
+ var uncurryThis$j = functionUncurryThis;
4119
+
4120
+ var arraySlice$2 = uncurryThis$j([].slice);
3898
4121
 
3899
- var arraySlice$2 = uncurryThis$i([].slice);
4122
+ var uncurryThis$i = functionUncurryThis;
4123
+ var isArray$3 = isArray$5;
4124
+ var isCallable$a = isCallable$n;
4125
+ var classof$6 = classofRaw$2;
4126
+ var toString$b = toString$d;
4127
+
4128
+ var push$3 = uncurryThis$i([].push);
4129
+
4130
+ var getJsonReplacerFunction = function (replacer) {
4131
+ if (isCallable$a(replacer)) return replacer;
4132
+ if (!isArray$3(replacer)) return;
4133
+ var rawLength = replacer.length;
4134
+ var keys = [];
4135
+ for (var i = 0; i < rawLength; i++) {
4136
+ var element = replacer[i];
4137
+ if (typeof element == 'string') push$3(keys, element);
4138
+ else if (typeof element == 'number' || classof$6(element) == 'Number' || classof$6(element) == 'String') push$3(keys, toString$b(element));
4139
+ }
4140
+ var keysLength = keys.length;
4141
+ var root = true;
4142
+ return function (key, value) {
4143
+ if (root) {
4144
+ root = false;
4145
+ return value;
4146
+ }
4147
+ if (isArray$3(this)) return value;
4148
+ for (var j = 0; j < keysLength; j++) if (keys[j] === key) return value;
4149
+ };
4150
+ };
3900
4151
 
3901
4152
  var $$n = _export;
3902
- var getBuiltIn$1 = getBuiltIn$9;
4153
+ var getBuiltIn$1 = getBuiltIn$8;
3903
4154
  var apply$1 = functionApply;
3904
4155
  var call$a = functionCall;
3905
4156
  var uncurryThis$h = functionUncurryThis;
3906
4157
  var fails$m = fails$x;
3907
- var isArray$3 = isArray$5;
3908
- var isCallable$9 = isCallable$m;
3909
- var isObject$8 = isObject$f;
4158
+ var isCallable$9 = isCallable$n;
3910
4159
  var isSymbol = isSymbol$4;
3911
4160
  var arraySlice$1 = arraySlice$2;
4161
+ var getReplacerFunction = getJsonReplacerFunction;
3912
4162
  var NATIVE_SYMBOL$2 = symbolConstructorDetection;
3913
4163
 
4164
+ var $String$1 = String;
3914
4165
  var $stringify = getBuiltIn$1('JSON', 'stringify');
3915
4166
  var exec$2 = uncurryThis$h(/./.exec);
3916
4167
  var charAt$7 = uncurryThis$h(''.charAt);
@@ -3940,13 +4191,13 @@
3940
4191
 
3941
4192
  var stringifyWithSymbolsFix = function (it, replacer) {
3942
4193
  var args = arraySlice$1(arguments);
3943
- var $replacer = replacer;
3944
- if (!isObject$8(replacer) && it === undefined || isSymbol(it)) return; // IE8 returns string on undefined
3945
- if (!isArray$3(replacer)) replacer = function (key, value) {
3946
- if (isCallable$9($replacer)) value = call$a($replacer, this, key, value);
4194
+ var $replacer = getReplacerFunction(replacer);
4195
+ if (!isCallable$9($replacer) && (it === undefined || isSymbol(it))) return; // IE8 returns string on undefined
4196
+ args[1] = function (key, value) {
4197
+ // some old implementations (like WebKit) could pass numbers as keys
4198
+ if (isCallable$9($replacer)) value = call$a($replacer, this, $String$1(key), value);
3947
4199
  if (!isSymbol(value)) return value;
3948
4200
  };
3949
- args[1] = replacer;
3950
4201
  return apply$1($stringify, null, args);
3951
4202
  };
3952
4203
 
@@ -3981,11 +4232,11 @@
3981
4232
 
3982
4233
  // V8 ~ Chrome 38 and 39 `Object.getOwnPropertySymbols` fails on primitives
3983
4234
  // https://bugs.chromium.org/p/v8/issues/detail?id=3443
3984
- var FORCED$3 = !NATIVE_SYMBOL$1 || fails$l(function () { getOwnPropertySymbolsModule$1.f(1); });
4235
+ var FORCED$5 = !NATIVE_SYMBOL$1 || fails$l(function () { getOwnPropertySymbolsModule$1.f(1); });
3985
4236
 
3986
4237
  // `Object.getOwnPropertySymbols` method
3987
4238
  // https://tc39.es/ecma262/#sec-object.getownpropertysymbols
3988
- $$m({ target: 'Object', stat: true, forced: FORCED$3 }, {
4239
+ $$m({ target: 'Object', stat: true, forced: FORCED$5 }, {
3989
4240
  getOwnPropertySymbols: function getOwnPropertySymbols(it) {
3990
4241
  var $getOwnPropertySymbols = getOwnPropertySymbolsModule$1.f;
3991
4242
  return $getOwnPropertySymbols ? $getOwnPropertySymbols(toObject$8(it)) : [];
@@ -3999,16 +4250,16 @@
3999
4250
  'use strict';
4000
4251
  var $$l = _export;
4001
4252
  var DESCRIPTORS$7 = descriptors;
4002
- var global$9 = global$l;
4253
+ var global$8 = global$k;
4003
4254
  var uncurryThis$g = functionUncurryThis;
4004
4255
  var hasOwn$4 = hasOwnProperty_1;
4005
- var isCallable$8 = isCallable$m;
4256
+ var isCallable$8 = isCallable$n;
4006
4257
  var isPrototypeOf$4 = objectIsPrototypeOf;
4007
- var toString$a = toString$c;
4008
- var defineProperty$6 = objectDefineProperty.f;
4258
+ var toString$a = toString$d;
4259
+ var defineBuiltInAccessor$2 = defineBuiltInAccessor$4;
4009
4260
  var copyConstructorProperties = copyConstructorProperties$2;
4010
4261
 
4011
- var NativeSymbol = global$9.Symbol;
4262
+ var NativeSymbol = global$8.Symbol;
4012
4263
  var SymbolPrototype = NativeSymbol && NativeSymbol.prototype;
4013
4264
 
4014
4265
  if (DESCRIPTORS$7 && isCallable$8(NativeSymbol) && (!('description' in SymbolPrototype) ||
@@ -4038,7 +4289,7 @@
4038
4289
  var replace$4 = uncurryThis$g(''.replace);
4039
4290
  var stringSlice$6 = uncurryThis$g(''.slice);
4040
4291
 
4041
- defineProperty$6(SymbolPrototype, 'description', {
4292
+ defineBuiltInAccessor$2(SymbolPrototype, 'description', {
4042
4293
  configurable: true,
4043
4294
  get: function description() {
4044
4295
  var symbol = thisSymbolValue(this);
@@ -4058,7 +4309,7 @@
4058
4309
 
4059
4310
  'use strict';
4060
4311
  var TO_STRING_TAG_SUPPORT$1 = toStringTagSupport;
4061
- var classof$5 = classof$a;
4312
+ var classof$5 = classof$b;
4062
4313
 
4063
4314
  // `Object.prototype.toString` method implementation
4064
4315
  // https://tc39.es/ecma262/#sec-object.prototype.tostring
@@ -4160,7 +4411,7 @@
4160
4411
  var $$j = _export;
4161
4412
  var fails$j = fails$x;
4162
4413
  var isArray$2 = isArray$5;
4163
- var isObject$7 = isObject$f;
4414
+ var isObject$7 = isObject$e;
4164
4415
  var toObject$7 = toObject$b;
4165
4416
  var lengthOfArrayLike$6 = lengthOfArrayLike$a;
4166
4417
  var doesNotExceedSafeInteger$1 = doesNotExceedSafeInteger$2;
@@ -4181,20 +4432,18 @@
4181
4432
  return array.concat()[0] !== array;
4182
4433
  });
4183
4434
 
4184
- var SPECIES_SUPPORT = arrayMethodHasSpeciesSupport$4('concat');
4185
-
4186
4435
  var isConcatSpreadable = function (O) {
4187
4436
  if (!isObject$7(O)) return false;
4188
4437
  var spreadable = O[IS_CONCAT_SPREADABLE];
4189
4438
  return spreadable !== undefined ? !!spreadable : isArray$2(O);
4190
4439
  };
4191
4440
 
4192
- var FORCED$2 = !IS_CONCAT_SPREADABLE_SUPPORT || !SPECIES_SUPPORT;
4441
+ var FORCED$4 = !IS_CONCAT_SPREADABLE_SUPPORT || !arrayMethodHasSpeciesSupport$4('concat');
4193
4442
 
4194
4443
  // `Array.prototype.concat` method
4195
4444
  // https://tc39.es/ecma262/#sec-array.prototype.concat
4196
4445
  // with adding support of @@isConcatSpreadable and @@species
4197
- $$j({ target: 'Array', proto: true, arity: 1, forced: FORCED$2 }, {
4446
+ $$j({ target: 'Array', proto: true, arity: 1, forced: FORCED$4 }, {
4198
4447
  // eslint-disable-next-line no-unused-vars -- required for `.length`
4199
4448
  concat: function concat(arg) {
4200
4449
  var O = toObject$7(this);
@@ -4286,7 +4535,7 @@
4286
4535
  return it !== undefined && (Iterators$4.Array === it || ArrayPrototype$1[ITERATOR$6] === it);
4287
4536
  };
4288
4537
 
4289
- var classof$4 = classof$a;
4538
+ var classof$4 = classof$b;
4290
4539
  var getMethod$1 = getMethod$4;
4291
4540
  var isNullOrUndefined$3 = isNullOrUndefined$6;
4292
4541
  var Iterators$3 = iterators;
@@ -4301,7 +4550,7 @@
4301
4550
  };
4302
4551
 
4303
4552
  var call$8 = functionCall;
4304
- var aCallable$2 = aCallable$5;
4553
+ var aCallable$3 = aCallable$6;
4305
4554
  var anObject$6 = anObject$e;
4306
4555
  var tryToString$2 = tryToString$5;
4307
4556
  var getIteratorMethod$2 = getIteratorMethod$3;
@@ -4310,7 +4559,7 @@
4310
4559
 
4311
4560
  var getIterator$2 = function (argument, usingIterator) {
4312
4561
  var iteratorMethod = arguments.length < 2 ? getIteratorMethod$2(argument) : usingIterator;
4313
- if (aCallable$2(iteratorMethod)) return anObject$6(call$8(iteratorMethod, argument));
4562
+ if (aCallable$3(iteratorMethod)) return anObject$6(call$8(iteratorMethod, argument));
4314
4563
  throw $TypeError$8(tryToString$2(argument) + ' is not iterable');
4315
4564
  };
4316
4565
 
@@ -4419,7 +4668,7 @@
4419
4668
 
4420
4669
  var uncurryThis$e = functionUncurryThis;
4421
4670
  var toIntegerOrInfinity$2 = toIntegerOrInfinity$5;
4422
- var toString$8 = toString$c;
4671
+ var toString$8 = toString$d;
4423
4672
  var requireObjectCoercible$3 = requireObjectCoercible$6;
4424
4673
 
4425
4674
  var charAt$6 = uncurryThis$e(''.charAt);
@@ -4464,7 +4713,7 @@
4464
4713
  });
4465
4714
 
4466
4715
  var hasOwn$3 = hasOwnProperty_1;
4467
- var isCallable$7 = isCallable$m;
4716
+ var isCallable$7 = isCallable$n;
4468
4717
  var toObject$5 = toObject$b;
4469
4718
  var sharedKey = sharedKey$4;
4470
4719
  var CORRECT_PROTOTYPE_GETTER = correctPrototypeGetter;
@@ -4487,8 +4736,8 @@
4487
4736
 
4488
4737
  'use strict';
4489
4738
  var fails$h = fails$x;
4490
- var isCallable$6 = isCallable$m;
4491
- var isObject$6 = isObject$f;
4739
+ var isCallable$6 = isCallable$n;
4740
+ var isObject$6 = isObject$e;
4492
4741
  var create$4 = objectCreate;
4493
4742
  var getPrototypeOf$1 = objectGetPrototypeOf;
4494
4743
  var defineBuiltIn$6 = defineBuiltIn$b;
@@ -4552,7 +4801,17 @@
4552
4801
  return IteratorConstructor;
4553
4802
  };
4554
4803
 
4555
- var isCallable$5 = isCallable$m;
4804
+ var uncurryThis$d = functionUncurryThis;
4805
+ var aCallable$2 = aCallable$6;
4806
+
4807
+ var functionUncurryThisAccessor = function (object, key, method) {
4808
+ try {
4809
+ // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
4810
+ return uncurryThis$d(aCallable$2(Object.getOwnPropertyDescriptor(object, key)[method]));
4811
+ } catch (error) { /* empty */ }
4812
+ };
4813
+
4814
+ var isCallable$5 = isCallable$n;
4556
4815
 
4557
4816
  var $String = String;
4558
4817
  var $TypeError$7 = TypeError;
@@ -4564,7 +4823,7 @@
4564
4823
 
4565
4824
  /* eslint-disable no-proto -- safe */
4566
4825
 
4567
- var uncurryThis$d = functionUncurryThis;
4826
+ var uncurryThisAccessor = functionUncurryThisAccessor;
4568
4827
  var anObject$5 = anObject$e;
4569
4828
  var aPossiblePrototype = aPossiblePrototype$1;
4570
4829
 
@@ -4577,8 +4836,7 @@
4577
4836
  var test = {};
4578
4837
  var setter;
4579
4838
  try {
4580
- // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
4581
- setter = uncurryThis$d(Object.getOwnPropertyDescriptor(Object.prototype, '__proto__').set);
4839
+ setter = uncurryThisAccessor(Object.prototype, '__proto__', 'set');
4582
4840
  setter(test, []);
4583
4841
  CORRECT_SETTER = test instanceof Array;
4584
4842
  } catch (error) { /* empty */ }
@@ -4596,7 +4854,7 @@
4596
4854
  var call$6 = functionCall;
4597
4855
  var IS_PURE$2 = isPure;
4598
4856
  var FunctionName = functionName;
4599
- var isCallable$4 = isCallable$m;
4857
+ var isCallable$4 = isCallable$n;
4600
4858
  var createIteratorConstructor = iteratorCreateConstructor;
4601
4859
  var getPrototypeOf = objectGetPrototypeOf;
4602
4860
  var setPrototypeOf$1 = objectSetPrototypeOf;
@@ -4699,7 +4957,7 @@
4699
4957
 
4700
4958
  'use strict';
4701
4959
  var charAt$5 = stringMultibyte.charAt;
4702
- var toString$7 = toString$c;
4960
+ var toString$7 = toString$d;
4703
4961
  var InternalStateModule$2 = internalState;
4704
4962
  var defineIterator$2 = iteratorDefine;
4705
4963
  var createIterResultObject$2 = createIterResultObject$3;
@@ -4731,7 +4989,7 @@
4731
4989
 
4732
4990
  var es_string_startsWith = {};
4733
4991
 
4734
- var isObject$5 = isObject$f;
4992
+ var isObject$5 = isObject$e;
4735
4993
  var classof$3 = classofRaw$2;
4736
4994
  var wellKnownSymbol$8 = wellKnownSymbol$o;
4737
4995
 
@@ -4772,10 +5030,10 @@
4772
5030
 
4773
5031
  'use strict';
4774
5032
  var $$f = _export;
4775
- var uncurryThis$c = functionUncurryThis;
5033
+ var uncurryThis$c = functionUncurryThisClause;
4776
5034
  var getOwnPropertyDescriptor$1 = objectGetOwnPropertyDescriptor.f;
4777
5035
  var toLength$1 = toLength$3;
4778
- var toString$6 = toString$c;
5036
+ var toString$6 = toString$d;
4779
5037
  var notARegExp = notARegexp;
4780
5038
  var requireObjectCoercible$2 = requireObjectCoercible$6;
4781
5039
  var correctIsRegExpLogic = correctIsRegexpLogic;
@@ -4940,20 +5198,19 @@
4940
5198
 
4941
5199
  var uncurryThis$b = functionUncurryThis;
4942
5200
  var requireObjectCoercible$1 = requireObjectCoercible$6;
4943
- var toString$5 = toString$c;
5201
+ var toString$5 = toString$d;
4944
5202
  var whitespaces$2 = whitespaces$3;
4945
5203
 
4946
5204
  var replace$3 = uncurryThis$b(''.replace);
4947
- var whitespace = '[' + whitespaces$2 + ']';
4948
- var ltrim = RegExp('^' + whitespace + whitespace + '*');
4949
- var rtrim = RegExp(whitespace + whitespace + '*$');
5205
+ var ltrim = RegExp('^[' + whitespaces$2 + ']+');
5206
+ var rtrim = RegExp('(^|[^' + whitespaces$2 + '])[' + whitespaces$2 + ']+$');
4950
5207
 
4951
5208
  // `String.prototype.{ trim, trimStart, trimEnd, trimLeft, trimRight }` methods implementation
4952
5209
  var createMethod$1 = function (TYPE) {
4953
5210
  return function ($this) {
4954
5211
  var string = toString$5(requireObjectCoercible$1($this));
4955
5212
  if (TYPE & 1) string = replace$3(string, ltrim, '');
4956
- if (TYPE & 2) string = replace$3(string, rtrim, '');
5213
+ if (TYPE & 2) string = replace$3(string, rtrim, '$1');
4957
5214
  return string;
4958
5215
  };
4959
5216
  };
@@ -4970,24 +5227,24 @@
4970
5227
  trim: createMethod$1(3)
4971
5228
  };
4972
5229
 
4973
- var global$8 = global$l;
5230
+ var global$7 = global$k;
4974
5231
  var fails$g = fails$x;
4975
5232
  var uncurryThis$a = functionUncurryThis;
4976
- var toString$4 = toString$c;
5233
+ var toString$4 = toString$d;
4977
5234
  var trim = stringTrim.trim;
4978
5235
  var whitespaces$1 = whitespaces$3;
4979
5236
 
4980
5237
  var charAt$4 = uncurryThis$a(''.charAt);
4981
- var $parseFloat$1 = global$8.parseFloat;
4982
- var Symbol$1 = global$8.Symbol;
5238
+ var $parseFloat$1 = global$7.parseFloat;
5239
+ var Symbol$1 = global$7.Symbol;
4983
5240
  var ITERATOR$1 = Symbol$1 && Symbol$1.iterator;
4984
- var FORCED$1 = 1 / $parseFloat$1(whitespaces$1 + '-0') !== -Infinity
5241
+ var FORCED$3 = 1 / $parseFloat$1(whitespaces$1 + '-0') !== -Infinity
4985
5242
  // MS Edge 18- broken with boxed symbols
4986
5243
  || (ITERATOR$1 && !fails$g(function () { $parseFloat$1(Object(ITERATOR$1)); }));
4987
5244
 
4988
5245
  // `parseFloat` method
4989
5246
  // https://tc39.es/ecma262/#sec-parsefloat-string
4990
- var numberParseFloat = FORCED$1 ? function parseFloat(string) {
5247
+ var numberParseFloat = FORCED$3 ? function parseFloat(string) {
4991
5248
  var trimmedString = trim(toString$4(string));
4992
5249
  var result = $parseFloat$1(trimmedString);
4993
5250
  return result === 0 && charAt$4(trimmedString, 0) == '-' ? -0 : result;
@@ -5018,18 +5275,18 @@
5018
5275
  'use strict';
5019
5276
  /* eslint-disable es/no-array-prototype-indexof -- required for testing */
5020
5277
  var $$b = _export;
5021
- var uncurryThis$9 = functionUncurryThis;
5278
+ var uncurryThis$9 = functionUncurryThisClause;
5022
5279
  var $indexOf = arrayIncludes.indexOf;
5023
5280
  var arrayMethodIsStrict$2 = arrayMethodIsStrict$3;
5024
5281
 
5025
5282
  var nativeIndexOf = uncurryThis$9([].indexOf);
5026
5283
 
5027
5284
  var NEGATIVE_ZERO = !!nativeIndexOf && 1 / nativeIndexOf([1], 1, -0) < 0;
5028
- var STRICT_METHOD$2 = arrayMethodIsStrict$2('indexOf');
5285
+ var FORCED$2 = NEGATIVE_ZERO || !arrayMethodIsStrict$2('indexOf');
5029
5286
 
5030
5287
  // `Array.prototype.indexOf` method
5031
5288
  // https://tc39.es/ecma262/#sec-array.prototype.indexof
5032
- $$b({ target: 'Array', proto: true, forced: NEGATIVE_ZERO || !STRICT_METHOD$2 }, {
5289
+ $$b({ target: 'Array', proto: true, forced: FORCED$2 }, {
5033
5290
  indexOf: function indexOf(searchElement /* , fromIndex = 0 */) {
5034
5291
  var fromIndex = arguments.length > 1 ? arguments[1] : undefined;
5035
5292
  return NEGATIVE_ZERO
@@ -5041,7 +5298,7 @@
5041
5298
 
5042
5299
  var es_array_reduce = {};
5043
5300
 
5044
- var aCallable$1 = aCallable$5;
5301
+ var aCallable$1 = aCallable$6;
5045
5302
  var toObject$3 = toObject$b;
5046
5303
  var IndexedObject$1 = indexedObject;
5047
5304
  var lengthOfArrayLike$3 = lengthOfArrayLike$a;
@@ -5085,9 +5342,8 @@
5085
5342
  };
5086
5343
 
5087
5344
  var classof$2 = classofRaw$2;
5088
- var global$7 = global$l;
5089
5345
 
5090
- var engineIsNode = classof$2(global$7.process) == 'process';
5346
+ var engineIsNode = typeof process != 'undefined' && classof$2(process) == 'process';
5091
5347
 
5092
5348
  'use strict';
5093
5349
  var $$a = _export;
@@ -5096,14 +5352,14 @@
5096
5352
  var CHROME_VERSION = engineV8Version;
5097
5353
  var IS_NODE = engineIsNode;
5098
5354
 
5099
- var STRICT_METHOD$1 = arrayMethodIsStrict$1('reduce');
5100
5355
  // Chrome 80-82 has a critical bug
5101
5356
  // https://bugs.chromium.org/p/chromium/issues/detail?id=1049982
5102
5357
  var CHROME_BUG = !IS_NODE && CHROME_VERSION > 79 && CHROME_VERSION < 83;
5358
+ var FORCED$1 = CHROME_BUG || !arrayMethodIsStrict$1('reduce');
5103
5359
 
5104
5360
  // `Array.prototype.reduce` method
5105
5361
  // https://tc39.es/ecma262/#sec-array.prototype.reduce
5106
- $$a({ target: 'Array', proto: true, forced: !STRICT_METHOD$1 || CHROME_BUG }, {
5362
+ $$a({ target: 'Array', proto: true, forced: FORCED$1 }, {
5107
5363
  reduce: function reduce(callbackfn /* , initialValue */) {
5108
5364
  var length = arguments.length;
5109
5365
  return $reduce(this, callbackfn, length, length > 1 ? arguments[1] : undefined);
@@ -5114,7 +5370,7 @@
5114
5370
 
5115
5371
  var wellKnownSymbol$6 = wellKnownSymbol$o;
5116
5372
  var create$2 = objectCreate;
5117
- var defineProperty$5 = objectDefineProperty.f;
5373
+ var defineProperty$4 = objectDefineProperty.f;
5118
5374
 
5119
5375
  var UNSCOPABLES = wellKnownSymbol$6('unscopables');
5120
5376
  var ArrayPrototype = Array.prototype;
@@ -5122,7 +5378,7 @@
5122
5378
  // Array.prototype[@@unscopables]
5123
5379
  // https://tc39.es/ecma262/#sec-array.prototype-@@unscopables
5124
5380
  if (ArrayPrototype[UNSCOPABLES] == undefined) {
5125
- defineProperty$5(ArrayPrototype, UNSCOPABLES, {
5381
+ defineProperty$4(ArrayPrototype, UNSCOPABLES, {
5126
5382
  configurable: true,
5127
5383
  value: create$2(null)
5128
5384
  });
@@ -5157,8 +5413,8 @@
5157
5413
 
5158
5414
  var es_regexp_constructor = {};
5159
5415
 
5160
- var isCallable$3 = isCallable$m;
5161
- var isObject$4 = isObject$f;
5416
+ var isCallable$3 = isCallable$n;
5417
+ var isObject$4 = isObject$e;
5162
5418
  var setPrototypeOf = objectSetPrototypeOf;
5163
5419
 
5164
5420
  // makes subclassing work correct for wrapped built-ins
@@ -5209,7 +5465,7 @@
5209
5465
  };
5210
5466
 
5211
5467
  var fails$e = fails$x;
5212
- var global$6 = global$l;
5468
+ var global$6 = global$k;
5213
5469
 
5214
5470
  // babel-minify and Closure Compiler transpiles RegExp('a', 'y') -> /a/y and it causes SyntaxError
5215
5471
  var $RegExp$2 = global$6.RegExp;
@@ -5239,10 +5495,10 @@
5239
5495
  UNSUPPORTED_Y: UNSUPPORTED_Y$2
5240
5496
  };
5241
5497
 
5242
- var defineProperty$4 = objectDefineProperty.f;
5498
+ var defineProperty$3 = objectDefineProperty.f;
5243
5499
 
5244
5500
  var proxyAccessor$1 = function (Target, Source, key) {
5245
- key in Target || defineProperty$4(Target, key, {
5501
+ key in Target || defineProperty$3(Target, key, {
5246
5502
  configurable: true,
5247
5503
  get: function () { return Source[key]; },
5248
5504
  set: function (it) { Source[key] = it; }
@@ -5250,8 +5506,8 @@
5250
5506
  };
5251
5507
 
5252
5508
  'use strict';
5253
- var getBuiltIn = getBuiltIn$9;
5254
- var definePropertyModule = objectDefineProperty;
5509
+ var getBuiltIn = getBuiltIn$8;
5510
+ var defineBuiltInAccessor$1 = defineBuiltInAccessor$4;
5255
5511
  var wellKnownSymbol$5 = wellKnownSymbol$o;
5256
5512
  var DESCRIPTORS$4 = descriptors;
5257
5513
 
@@ -5259,10 +5515,9 @@
5259
5515
 
5260
5516
  var setSpecies$2 = function (CONSTRUCTOR_NAME) {
5261
5517
  var Constructor = getBuiltIn(CONSTRUCTOR_NAME);
5262
- var defineProperty = definePropertyModule.f;
5263
5518
 
5264
5519
  if (DESCRIPTORS$4 && Constructor && !Constructor[SPECIES$2]) {
5265
- defineProperty(Constructor, SPECIES$2, {
5520
+ defineBuiltInAccessor$1(Constructor, SPECIES$2, {
5266
5521
  configurable: true,
5267
5522
  get: function () { return this; }
5268
5523
  });
@@ -5270,7 +5525,7 @@
5270
5525
  };
5271
5526
 
5272
5527
  var fails$d = fails$x;
5273
- var global$5 = global$l;
5528
+ var global$5 = global$k;
5274
5529
 
5275
5530
  // babel-minify and Closure Compiler transpiles RegExp('.', 's') -> /./s and it causes SyntaxError
5276
5531
  var $RegExp$1 = global$5.RegExp;
@@ -5281,7 +5536,7 @@
5281
5536
  });
5282
5537
 
5283
5538
  var fails$c = fails$x;
5284
- var global$4 = global$l;
5539
+ var global$4 = global$k;
5285
5540
 
5286
5541
  // babel-minify and Closure Compiler transpiles RegExp('(?<a>b)', 'g') -> /(?<a>b)/g and it causes SyntaxError
5287
5542
  var $RegExp = global$4.RegExp;
@@ -5293,7 +5548,7 @@
5293
5548
  });
5294
5549
 
5295
5550
  var DESCRIPTORS$3 = descriptors;
5296
- var global$3 = global$l;
5551
+ var global$3 = global$k;
5297
5552
  var uncurryThis$8 = functionUncurryThis;
5298
5553
  var isForced$1 = isForced_1;
5299
5554
  var inheritIfRequired$1 = inheritIfRequired$2;
@@ -5301,7 +5556,7 @@
5301
5556
  var getOwnPropertyNames = objectGetOwnPropertyNames.f;
5302
5557
  var isPrototypeOf$2 = objectIsPrototypeOf;
5303
5558
  var isRegExp = isRegexp;
5304
- var toString$3 = toString$c;
5559
+ var toString$3 = toString$d;
5305
5560
  var getRegExpFlags$1 = regexpGetFlags;
5306
5561
  var stickyHelpers$1 = regexpStickyHelpers;
5307
5562
  var proxyAccessor = proxyAccessor$1;
@@ -5490,10 +5745,10 @@
5490
5745
  /* eslint-disable regexp/no-useless-quantifier -- testing */
5491
5746
  var call$4 = functionCall;
5492
5747
  var uncurryThis$7 = functionUncurryThis;
5493
- var toString$2 = toString$c;
5748
+ var toString$2 = toString$d;
5494
5749
  var regexpFlags = regexpFlags$1;
5495
5750
  var stickyHelpers = regexpStickyHelpers;
5496
- var shared = shared$7.exports;
5751
+ var shared = sharedExports;
5497
5752
  var create$1 = objectCreate;
5498
5753
  var getInternalState$1 = internalState.get;
5499
5754
  var UNSUPPORTED_DOT_ALL = regexpUnsupportedDotAll;
@@ -5619,7 +5874,7 @@
5619
5874
  var PROPER_FUNCTION_NAME$1 = functionName.PROPER;
5620
5875
  var defineBuiltIn$3 = defineBuiltIn$b;
5621
5876
  var anObject$3 = anObject$e;
5622
- var $toString = toString$c;
5877
+ var $toString = toString$d;
5623
5878
  var fails$a = fails$x;
5624
5879
  var getRegExpFlags = regexpGetFlags;
5625
5880
 
@@ -5647,7 +5902,7 @@
5647
5902
  'use strict';
5648
5903
  // TODO: Remove from `core-js@4` since it's moved to entry points
5649
5904
 
5650
- var uncurryThis$6 = functionUncurryThis;
5905
+ var uncurryThis$6 = functionUncurryThisClause;
5651
5906
  var defineBuiltIn$2 = defineBuiltIn$b;
5652
5907
  var regexpExec$1 = regexpExec$2;
5653
5908
  var fails$9 = fails$x;
@@ -5735,6 +5990,7 @@
5735
5990
  var charAt = uncurryThis$5(''.charAt);
5736
5991
  var replace = uncurryThis$5(''.replace);
5737
5992
  var stringSlice$1 = uncurryThis$5(''.slice);
5993
+ // eslint-disable-next-line redos/no-vulnerable -- safe
5738
5994
  var SUBSTITUTION_SYMBOLS = /\$([$&'`]|\d{1,2}|<[^>]*>)/g;
5739
5995
  var SUBSTITUTION_SYMBOLS_NO_NAMED = /\$([$&'`]|\d{1,2})/g;
5740
5996
 
@@ -5775,7 +6031,7 @@
5775
6031
 
5776
6032
  var call$3 = functionCall;
5777
6033
  var anObject$2 = anObject$e;
5778
- var isCallable$2 = isCallable$m;
6034
+ var isCallable$2 = isCallable$n;
5779
6035
  var classof$1 = classofRaw$2;
5780
6036
  var regexpExec = regexpExec$2;
5781
6037
 
@@ -5801,11 +6057,11 @@
5801
6057
  var fixRegExpWellKnownSymbolLogic = fixRegexpWellKnownSymbolLogic;
5802
6058
  var fails$8 = fails$x;
5803
6059
  var anObject$1 = anObject$e;
5804
- var isCallable$1 = isCallable$m;
6060
+ var isCallable$1 = isCallable$n;
5805
6061
  var isNullOrUndefined$2 = isNullOrUndefined$6;
5806
6062
  var toIntegerOrInfinity = toIntegerOrInfinity$5;
5807
6063
  var toLength = toLength$3;
5808
- var toString$1 = toString$c;
6064
+ var toString$1 = toString$d;
5809
6065
  var requireObjectCoercible = requireObjectCoercible$6;
5810
6066
  var advanceStringIndex = advanceStringIndex$1;
5811
6067
  var getMethod = getMethod$4;
@@ -6529,7 +6785,7 @@
6529
6785
 
6530
6786
  // Look for the proper item
6531
6787
  var itemIndex = this.itemIndexByValue(value);
6532
- if (itemIndex < -1) return this;
6788
+ if (itemIndex === -1) return this;
6533
6789
 
6534
6790
  var item = this.itemAtIndex(itemIndex);
6535
6791
  item[ItemSymbol$1] = newItem;
@@ -6578,7 +6834,7 @@
6578
6834
 
6579
6835
  // Look for the proper item
6580
6836
  var itemIndex = this.itemIndexByValueOrLabel(value, label);
6581
- if (itemIndex < -1) return this;
6837
+ if (itemIndex === -1) return this;
6582
6838
 
6583
6839
  var spliced = p.items.splice(itemIndex, 1);
6584
6840
  if (spliced[0]._group) {
@@ -8129,7 +8385,7 @@
8129
8385
  var addToUnscopables$2 = addToUnscopables$4;
8130
8386
  var Iterators = iterators;
8131
8387
  var InternalStateModule$1 = internalState;
8132
- var defineProperty$3 = objectDefineProperty.f;
8388
+ var defineProperty$2 = objectDefineProperty.f;
8133
8389
  var defineIterator$1 = iteratorDefine;
8134
8390
  var createIterResultObject$1 = createIterResultObject$3;
8135
8391
  var IS_PURE = isPure;
@@ -8184,14 +8440,18 @@
8184
8440
 
8185
8441
  // V8 ~ Chrome 45- bug
8186
8442
  if (!IS_PURE && DESCRIPTORS$2 && values.name !== 'values') try {
8187
- defineProperty$3(values, 'name', { value: 'values' });
8443
+ defineProperty$2(values, 'name', { value: 'values' });
8188
8444
  } catch (error) { /* empty */ }
8189
8445
 
8190
8446
  var es_set = {};
8191
8447
 
8192
8448
  var es_set_constructor = {};
8193
8449
 
8194
- var internalMetadata = {exports: {}};
8450
+ var internalMetadataExports = {};
8451
+ var internalMetadata = {
8452
+ get exports(){ return internalMetadataExports; },
8453
+ set exports(v){ internalMetadataExports = v; },
8454
+ };
8195
8455
 
8196
8456
  // FF26- bug: ArrayBuffers are non-extensible, but Object.isExtensible does not report it
8197
8457
  var fails$7 = fails$x;
@@ -8205,7 +8465,7 @@
8205
8465
  });
8206
8466
 
8207
8467
  var fails$6 = fails$x;
8208
- var isObject$3 = isObject$f;
8468
+ var isObject$3 = isObject$e;
8209
8469
  var classof = classofRaw$2;
8210
8470
  var ARRAY_BUFFER_NON_EXTENSIBLE = arrayBufferNonExtensible;
8211
8471
 
@@ -8231,9 +8491,9 @@
8231
8491
  var $$7 = _export;
8232
8492
  var uncurryThis$3 = functionUncurryThis;
8233
8493
  var hiddenKeys = hiddenKeys$6;
8234
- var isObject$2 = isObject$f;
8494
+ var isObject$2 = isObject$e;
8235
8495
  var hasOwn = hasOwnProperty_1;
8236
- var defineProperty$2 = objectDefineProperty.f;
8496
+ var defineProperty$1 = objectDefineProperty.f;
8237
8497
  var getOwnPropertyNamesModule = objectGetOwnPropertyNames;
8238
8498
  var getOwnPropertyNamesExternalModule = objectGetOwnPropertyNamesExternal;
8239
8499
  var isExtensible = objectIsExtensible;
@@ -8245,7 +8505,7 @@
8245
8505
  var id = 0;
8246
8506
 
8247
8507
  var setMetadata = function (it) {
8248
- defineProperty$2(it, METADATA, { value: {
8508
+ defineProperty$1(it, METADATA, { value: {
8249
8509
  objectID: 'O' + id++, // object ID
8250
8510
  weakData: {} // weak collections IDs
8251
8511
  } });
@@ -8398,16 +8658,16 @@
8398
8658
 
8399
8659
  'use strict';
8400
8660
  var $$6 = _export;
8401
- var global$2 = global$l;
8661
+ var global$2 = global$k;
8402
8662
  var uncurryThis$2 = functionUncurryThis;
8403
8663
  var isForced = isForced_1;
8404
8664
  var defineBuiltIn$1 = defineBuiltIn$b;
8405
- var InternalMetadataModule = internalMetadata.exports;
8665
+ var InternalMetadataModule = internalMetadataExports;
8406
8666
  var iterate$1 = iterate$2;
8407
8667
  var anInstance$1 = anInstance$2;
8408
- var isCallable = isCallable$m;
8668
+ var isCallable = isCallable$n;
8409
8669
  var isNullOrUndefined$1 = isNullOrUndefined$6;
8410
- var isObject$1 = isObject$f;
8670
+ var isObject$1 = isObject$e;
8411
8671
  var fails$4 = fails$x;
8412
8672
  var checkCorrectnessOfIteration = checkCorrectnessOfIteration$2;
8413
8673
  var setToStringTag = setToStringTag$4;
@@ -8511,8 +8771,8 @@
8511
8771
  };
8512
8772
 
8513
8773
  'use strict';
8514
- var defineProperty$1 = objectDefineProperty.f;
8515
8774
  var create = objectCreate;
8775
+ var defineBuiltInAccessor = defineBuiltInAccessor$4;
8516
8776
  var defineBuiltIns = defineBuiltIns$1;
8517
8777
  var bind = functionBindContext;
8518
8778
  var anInstance = anInstance$2;
@@ -8522,7 +8782,7 @@
8522
8782
  var createIterResultObject = createIterResultObject$3;
8523
8783
  var setSpecies = setSpecies$2;
8524
8784
  var DESCRIPTORS$1 = descriptors;
8525
- var fastKey = internalMetadata.exports.fastKey;
8785
+ var fastKey = internalMetadataExports.fastKey;
8526
8786
  var InternalStateModule = internalState;
8527
8787
 
8528
8788
  var setInternalState = InternalStateModule.set;
@@ -8664,7 +8924,8 @@
8664
8924
  return define(this, value = value === 0 ? 0 : value, value);
8665
8925
  }
8666
8926
  });
8667
- if (DESCRIPTORS$1) defineProperty$1(Prototype, 'size', {
8927
+ if (DESCRIPTORS$1) defineBuiltInAccessor(Prototype, 'size', {
8928
+ configurable: true,
8668
8929
  get: function () {
8669
8930
  return getInternalState(this).size;
8670
8931
  }
@@ -8773,7 +9034,7 @@
8773
9034
 
8774
9035
  var domTokenListPrototype = DOMTokenListPrototype$1 === Object.prototype ? undefined : DOMTokenListPrototype$1;
8775
9036
 
8776
- var global$1 = global$l;
9037
+ var global$1 = global$k;
8777
9038
  var DOMIterables = domIterables;
8778
9039
  var DOMTokenListPrototype = domTokenListPrototype;
8779
9040
  var ArrayIteratorMethods = es_array_iterator;
@@ -8818,7 +9079,7 @@
8818
9079
  var $$5 = _export;
8819
9080
  var isArray = isArray$5;
8820
9081
  var isConstructor = isConstructor$3;
8821
- var isObject = isObject$f;
9082
+ var isObject = isObject$e;
8822
9083
  var toAbsoluteIndex = toAbsoluteIndex$4;
8823
9084
  var lengthOfArrayLike$1 = lengthOfArrayLike$a;
8824
9085
  var toIndexedObject = toIndexedObject$9;
@@ -8989,6 +9250,7 @@
8989
9250
 
8990
9251
  // FF99+ bug
8991
9252
  var BROKEN_ON_SPARSE = fails$1(function () {
9253
+ // eslint-disable-next-line es/no-array-prototype-includes -- detection
8992
9254
  return !Array(1).includes();
8993
9255
  });
8994
9256
 
@@ -9093,11 +9355,11 @@
9093
9355
  'use strict';
9094
9356
  var $ = _export;
9095
9357
  var uncurryThis = functionUncurryThis;
9096
- var aCallable = aCallable$5;
9358
+ var aCallable = aCallable$6;
9097
9359
  var toObject = toObject$b;
9098
9360
  var lengthOfArrayLike = lengthOfArrayLike$a;
9099
9361
  var deletePropertyOrThrow = deletePropertyOrThrow$2;
9100
- var toString = toString$c;
9362
+ var toString = toString$d;
9101
9363
  var fails = fails$x;
9102
9364
  var internalSort = arraySort;
9103
9365
  var arrayMethodIsStrict = arrayMethodIsStrict$3;
@@ -12628,6 +12890,11 @@
12628
12890
  if (group.length === 0 || group.length === 1 && group[0]._group) {
12629
12891
  groups.splice(_g--, 1);
12630
12892
  _glen--;
12893
+
12894
+ var _sgi = uncheckedGroups.indexOf(group);
12895
+ if (_sgi !== -1) {
12896
+ uncheckedGroups.splice(_sgi, 1);
12897
+ }
12631
12898
  }
12632
12899
  }
12633
12900
  }