@ninetailed/experience.js 2.0.0-beta.23 → 2.0.0-beta.24

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/index.umd.js CHANGED
@@ -40,7 +40,7 @@
40
40
  };
41
41
 
42
42
  // https://github.com/zloirock/core-js/issues/86#issuecomment-115759028
43
- var global$F =
43
+ var global$I =
44
44
  // eslint-disable-next-line es/no-global-this -- safe
45
45
  check(typeof globalThis == 'object' && globalThis) ||
46
46
  check(typeof window == 'object' && window) ||
@@ -52,7 +52,7 @@
52
52
 
53
53
  var objectGetOwnPropertyDescriptor = {};
54
54
 
55
- var fails$f = function (exec) {
55
+ var fails$i = function (exec) {
56
56
  try {
57
57
  return !!exec();
58
58
  } catch (error) {
@@ -60,17 +60,17 @@
60
60
  }
61
61
  };
62
62
 
63
- var fails$e = fails$f;
63
+ var fails$h = fails$i;
64
64
 
65
65
  // Detect IE8's incomplete defineProperty implementation
66
- var descriptors = !fails$e(function () {
66
+ var descriptors = !fails$h(function () {
67
67
  // eslint-disable-next-line es/no-object-defineproperty -- required for testing
68
68
  return Object.defineProperty({}, 1, { get: function () { return 7; } })[1] != 7;
69
69
  });
70
70
 
71
- var fails$d = fails$f;
71
+ var fails$g = fails$i;
72
72
 
73
- var functionBindNative = !fails$d(function () {
73
+ var functionBindNative = !fails$g(function () {
74
74
  var test = (function () { /* empty */ }).bind();
75
75
  // eslint-disable-next-line no-prototype-builtins -- safe
76
76
  return typeof test != 'function' || test.hasOwnProperty('prototype');
@@ -78,10 +78,10 @@
78
78
 
79
79
  var NATIVE_BIND$3 = functionBindNative;
80
80
 
81
- var call$d = Function.prototype.call;
81
+ var call$e = Function.prototype.call;
82
82
 
83
- var functionCall = NATIVE_BIND$3 ? call$d.bind(call$d) : function () {
84
- return call$d.apply(call$d, arguments);
83
+ var functionCall = NATIVE_BIND$3 ? call$e.bind(call$e) : function () {
84
+ return call$e.apply(call$e, arguments);
85
85
  };
86
86
 
87
87
  var objectPropertyIsEnumerable = {};
@@ -100,7 +100,7 @@
100
100
  return !!descriptor && descriptor.enumerable;
101
101
  } : $propertyIsEnumerable;
102
102
 
103
- var createPropertyDescriptor$2 = function (bitmap, value) {
103
+ var createPropertyDescriptor$3 = function (bitmap, value) {
104
104
  return {
105
105
  enumerable: !(bitmap & 1),
106
106
  configurable: !(bitmap & 2),
@@ -113,36 +113,36 @@
113
113
 
114
114
  var FunctionPrototype$2 = Function.prototype;
115
115
  var bind$5 = FunctionPrototype$2.bind;
116
- var call$c = FunctionPrototype$2.call;
117
- var uncurryThis$k = NATIVE_BIND$2 && bind$5.bind(call$c, call$c);
116
+ var call$d = FunctionPrototype$2.call;
117
+ var uncurryThis$n = NATIVE_BIND$2 && bind$5.bind(call$d, call$d);
118
118
 
119
119
  var functionUncurryThis = NATIVE_BIND$2 ? function (fn) {
120
- return fn && uncurryThis$k(fn);
120
+ return fn && uncurryThis$n(fn);
121
121
  } : function (fn) {
122
122
  return fn && function () {
123
- return call$c.apply(fn, arguments);
123
+ return call$d.apply(fn, arguments);
124
124
  };
125
125
  };
126
126
 
127
- var uncurryThis$j = functionUncurryThis;
127
+ var uncurryThis$m = functionUncurryThis;
128
128
 
129
- var toString$6 = uncurryThis$j({}.toString);
130
- var stringSlice$5 = uncurryThis$j(''.slice);
129
+ var toString$9 = uncurryThis$m({}.toString);
130
+ var stringSlice$6 = uncurryThis$m(''.slice);
131
131
 
132
132
  var classofRaw$1 = function (it) {
133
- return stringSlice$5(toString$6(it), 8, -1);
133
+ return stringSlice$6(toString$9(it), 8, -1);
134
134
  };
135
135
 
136
- var global$E = global$F;
137
- var uncurryThis$i = functionUncurryThis;
138
- var fails$c = fails$f;
136
+ var global$H = global$I;
137
+ var uncurryThis$l = functionUncurryThis;
138
+ var fails$f = fails$i;
139
139
  var classof$7 = classofRaw$1;
140
140
 
141
- var Object$4 = global$E.Object;
142
- var split = uncurryThis$i(''.split);
141
+ var Object$4 = global$H.Object;
142
+ var split = uncurryThis$l(''.split);
143
143
 
144
144
  // fallback for non-array-like ES3 and non-enumerable old V8 strings
145
- var indexedObject = fails$c(function () {
145
+ var indexedObject = fails$f(function () {
146
146
  // throws an error in rhino, see https://github.com/mozilla/rhino/issues/346
147
147
  // eslint-disable-next-line no-prototype-builtins -- safe
148
148
  return !Object$4('z').propertyIsEnumerable(0);
@@ -150,23 +150,23 @@
150
150
  return classof$7(it) == 'String' ? split(it, '') : Object$4(it);
151
151
  } : Object$4;
152
152
 
153
- var global$D = global$F;
153
+ var global$G = global$I;
154
154
 
155
- var TypeError$g = global$D.TypeError;
155
+ var TypeError$h = global$G.TypeError;
156
156
 
157
157
  // `RequireObjectCoercible` abstract operation
158
158
  // https://tc39.es/ecma262/#sec-requireobjectcoercible
159
- var requireObjectCoercible$5 = function (it) {
160
- if (it == undefined) throw TypeError$g("Can't call method on " + it);
159
+ var requireObjectCoercible$7 = function (it) {
160
+ if (it == undefined) throw TypeError$h("Can't call method on " + it);
161
161
  return it;
162
162
  };
163
163
 
164
164
  // toObject with fallback for non-array-like ES3 strings
165
- var IndexedObject$1 = indexedObject;
166
- var requireObjectCoercible$4 = requireObjectCoercible$5;
165
+ var IndexedObject$2 = indexedObject;
166
+ var requireObjectCoercible$6 = requireObjectCoercible$7;
167
167
 
168
168
  var toIndexedObject$4 = function (it) {
169
- return IndexedObject$1(requireObjectCoercible$4(it));
169
+ return IndexedObject$2(requireObjectCoercible$6(it));
170
170
  };
171
171
 
172
172
  // `IsCallable` abstract operation
@@ -181,7 +181,7 @@
181
181
  return typeof it == 'object' ? it !== null : isCallable$f(it);
182
182
  };
183
183
 
184
- var global$C = global$F;
184
+ var global$F = global$I;
185
185
  var isCallable$e = isCallable$g;
186
186
 
187
187
  var aFunction = function (argument) {
@@ -189,22 +189,22 @@
189
189
  };
190
190
 
191
191
  var getBuiltIn$7 = function (namespace, method) {
192
- return arguments.length < 2 ? aFunction(global$C[namespace]) : global$C[namespace] && global$C[namespace][method];
192
+ return arguments.length < 2 ? aFunction(global$F[namespace]) : global$F[namespace] && global$F[namespace][method];
193
193
  };
194
194
 
195
- var uncurryThis$h = functionUncurryThis;
195
+ var uncurryThis$k = functionUncurryThis;
196
196
 
197
- var objectIsPrototypeOf = uncurryThis$h({}.isPrototypeOf);
197
+ var objectIsPrototypeOf = uncurryThis$k({}.isPrototypeOf);
198
198
 
199
199
  var getBuiltIn$6 = getBuiltIn$7;
200
200
 
201
201
  var engineUserAgent = getBuiltIn$6('navigator', 'userAgent') || '';
202
202
 
203
- var global$B = global$F;
203
+ var global$E = global$I;
204
204
  var userAgent$3 = engineUserAgent;
205
205
 
206
- var process$3 = global$B.process;
207
- var Deno = global$B.Deno;
206
+ var process$3 = global$E.process;
207
+ var Deno = global$E.Deno;
208
208
  var versions = process$3 && process$3.versions || Deno && Deno.version;
209
209
  var v8 = versions && versions.v8;
210
210
  var match, version;
@@ -231,10 +231,10 @@
231
231
  /* eslint-disable es/no-symbol -- required for testing */
232
232
 
233
233
  var V8_VERSION$1 = engineV8Version;
234
- var fails$b = fails$f;
234
+ var fails$e = fails$i;
235
235
 
236
236
  // eslint-disable-next-line es/no-object-getownpropertysymbols -- required for testing
237
- var nativeSymbol = !!Object.getOwnPropertySymbols && !fails$b(function () {
237
+ var nativeSymbol = !!Object.getOwnPropertySymbols && !fails$e(function () {
238
238
  var symbol = Symbol();
239
239
  // Chrome 38 Symbol has incorrect toString conversion
240
240
  // `get-own-property-symbols` polyfill symbols converted to object are not Symbol instances
@@ -251,13 +251,13 @@
251
251
  && !Symbol.sham
252
252
  && typeof Symbol.iterator == 'symbol';
253
253
 
254
- var global$A = global$F;
254
+ var global$D = global$I;
255
255
  var getBuiltIn$5 = getBuiltIn$7;
256
256
  var isCallable$d = isCallable$g;
257
257
  var isPrototypeOf$2 = objectIsPrototypeOf;
258
258
  var USE_SYMBOL_AS_UID$1 = useSymbolAsUid;
259
259
 
260
- var Object$3 = global$A.Object;
260
+ var Object$3 = global$D.Object;
261
261
 
262
262
  var isSymbol$2 = USE_SYMBOL_AS_UID$1 ? function (it) {
263
263
  return typeof it == 'symbol';
@@ -266,9 +266,9 @@
266
266
  return isCallable$d($Symbol) && isPrototypeOf$2($Symbol.prototype, Object$3(it));
267
267
  };
268
268
 
269
- var global$z = global$F;
269
+ var global$C = global$I;
270
270
 
271
- var String$5 = global$z.String;
271
+ var String$5 = global$C.String;
272
272
 
273
273
  var tryToString$4 = function (argument) {
274
274
  try {
@@ -278,64 +278,64 @@
278
278
  }
279
279
  };
280
280
 
281
- var global$y = global$F;
281
+ var global$B = global$I;
282
282
  var isCallable$c = isCallable$g;
283
283
  var tryToString$3 = tryToString$4;
284
284
 
285
- var TypeError$f = global$y.TypeError;
285
+ var TypeError$g = global$B.TypeError;
286
286
 
287
287
  // `Assert: IsCallable(argument) is true`
288
- var aCallable$5 = function (argument) {
288
+ var aCallable$6 = function (argument) {
289
289
  if (isCallable$c(argument)) return argument;
290
- throw TypeError$f(tryToString$3(argument) + ' is not a function');
290
+ throw TypeError$g(tryToString$3(argument) + ' is not a function');
291
291
  };
292
292
 
293
- var aCallable$4 = aCallable$5;
293
+ var aCallable$5 = aCallable$6;
294
294
 
295
295
  // `GetMethod` abstract operation
296
296
  // https://tc39.es/ecma262/#sec-getmethod
297
- var getMethod$4 = function (V, P) {
297
+ var getMethod$5 = function (V, P) {
298
298
  var func = V[P];
299
- return func == null ? undefined : aCallable$4(func);
299
+ return func == null ? undefined : aCallable$5(func);
300
300
  };
301
301
 
302
- var global$x = global$F;
303
- var call$b = functionCall;
302
+ var global$A = global$I;
303
+ var call$c = functionCall;
304
304
  var isCallable$b = isCallable$g;
305
305
  var isObject$7 = isObject$8;
306
306
 
307
- var TypeError$e = global$x.TypeError;
307
+ var TypeError$f = global$A.TypeError;
308
308
 
309
309
  // `OrdinaryToPrimitive` abstract operation
310
310
  // https://tc39.es/ecma262/#sec-ordinarytoprimitive
311
311
  var ordinaryToPrimitive$1 = function (input, pref) {
312
312
  var fn, val;
313
- if (pref === 'string' && isCallable$b(fn = input.toString) && !isObject$7(val = call$b(fn, input))) return val;
314
- if (isCallable$b(fn = input.valueOf) && !isObject$7(val = call$b(fn, input))) return val;
315
- if (pref !== 'string' && isCallable$b(fn = input.toString) && !isObject$7(val = call$b(fn, input))) return val;
316
- throw TypeError$e("Can't convert object to primitive value");
313
+ if (pref === 'string' && isCallable$b(fn = input.toString) && !isObject$7(val = call$c(fn, input))) return val;
314
+ if (isCallable$b(fn = input.valueOf) && !isObject$7(val = call$c(fn, input))) return val;
315
+ if (pref !== 'string' && isCallable$b(fn = input.toString) && !isObject$7(val = call$c(fn, input))) return val;
316
+ throw TypeError$f("Can't convert object to primitive value");
317
317
  };
318
318
 
319
319
  var shared$4 = {exports: {}};
320
320
 
321
- var global$w = global$F;
321
+ var global$z = global$I;
322
322
 
323
323
  // eslint-disable-next-line es/no-object-defineproperty -- safe
324
324
  var defineProperty$2 = Object.defineProperty;
325
325
 
326
326
  var setGlobal$3 = function (key, value) {
327
327
  try {
328
- defineProperty$2(global$w, key, { value: value, configurable: true, writable: true });
328
+ defineProperty$2(global$z, key, { value: value, configurable: true, writable: true });
329
329
  } catch (error) {
330
- global$w[key] = value;
330
+ global$z[key] = value;
331
331
  } return value;
332
332
  };
333
333
 
334
- var global$v = global$F;
334
+ var global$y = global$I;
335
335
  var setGlobal$2 = setGlobal$3;
336
336
 
337
337
  var SHARED = '__core-js_shared__';
338
- var store$3 = global$v[SHARED] || setGlobal$2(SHARED, {});
338
+ var store$3 = global$y[SHARED] || setGlobal$2(SHARED, {});
339
339
 
340
340
  var sharedStore = store$3;
341
341
 
@@ -351,39 +351,39 @@
351
351
  source: 'https://github.com/zloirock/core-js'
352
352
  });
353
353
 
354
- var global$u = global$F;
355
- var requireObjectCoercible$3 = requireObjectCoercible$5;
354
+ var global$x = global$I;
355
+ var requireObjectCoercible$5 = requireObjectCoercible$7;
356
356
 
357
- var Object$2 = global$u.Object;
357
+ var Object$2 = global$x.Object;
358
358
 
359
359
  // `ToObject` abstract operation
360
360
  // https://tc39.es/ecma262/#sec-toobject
361
- var toObject$3 = function (argument) {
362
- return Object$2(requireObjectCoercible$3(argument));
361
+ var toObject$4 = function (argument) {
362
+ return Object$2(requireObjectCoercible$5(argument));
363
363
  };
364
364
 
365
- var uncurryThis$g = functionUncurryThis;
366
- var toObject$2 = toObject$3;
365
+ var uncurryThis$j = functionUncurryThis;
366
+ var toObject$3 = toObject$4;
367
367
 
368
- var hasOwnProperty = uncurryThis$g({}.hasOwnProperty);
368
+ var hasOwnProperty = uncurryThis$j({}.hasOwnProperty);
369
369
 
370
370
  // `HasOwnProperty` abstract operation
371
371
  // https://tc39.es/ecma262/#sec-hasownproperty
372
372
  var hasOwnProperty_1 = Object.hasOwn || function hasOwn(it, key) {
373
- return hasOwnProperty(toObject$2(it), key);
373
+ return hasOwnProperty(toObject$3(it), key);
374
374
  };
375
375
 
376
- var uncurryThis$f = functionUncurryThis;
376
+ var uncurryThis$i = functionUncurryThis;
377
377
 
378
378
  var id = 0;
379
379
  var postfix = Math.random();
380
- var toString$5 = uncurryThis$f(1.0.toString);
380
+ var toString$8 = uncurryThis$i(1.0.toString);
381
381
 
382
382
  var uid$2 = function (key) {
383
- return 'Symbol(' + (key === undefined ? '' : key) + ')_' + toString$5(++id + postfix, 36);
383
+ return 'Symbol(' + (key === undefined ? '' : key) + ')_' + toString$8(++id + postfix, 36);
384
384
  };
385
385
 
386
- var global$t = global$F;
386
+ var global$w = global$I;
387
387
  var shared$3 = shared$4.exports;
388
388
  var hasOwn$8 = hasOwnProperty_1;
389
389
  var uid$1 = uid$2;
@@ -391,15 +391,15 @@
391
391
  var USE_SYMBOL_AS_UID = useSymbolAsUid;
392
392
 
393
393
  var WellKnownSymbolsStore = shared$3('wks');
394
- var Symbol$1 = global$t.Symbol;
395
- var symbolFor = Symbol$1 && Symbol$1['for'];
396
- var createWellKnownSymbol = USE_SYMBOL_AS_UID ? Symbol$1 : Symbol$1 && Symbol$1.withoutSetter || uid$1;
394
+ var Symbol$2 = global$w.Symbol;
395
+ var symbolFor = Symbol$2 && Symbol$2['for'];
396
+ var createWellKnownSymbol = USE_SYMBOL_AS_UID ? Symbol$2 : Symbol$2 && Symbol$2.withoutSetter || uid$1;
397
397
 
398
398
  var wellKnownSymbol$e = function (name) {
399
399
  if (!hasOwn$8(WellKnownSymbolsStore, name) || !(NATIVE_SYMBOL || typeof WellKnownSymbolsStore[name] == 'string')) {
400
400
  var description = 'Symbol.' + name;
401
- if (NATIVE_SYMBOL && hasOwn$8(Symbol$1, name)) {
402
- WellKnownSymbolsStore[name] = Symbol$1[name];
401
+ if (NATIVE_SYMBOL && hasOwn$8(Symbol$2, name)) {
402
+ WellKnownSymbolsStore[name] = Symbol$2[name];
403
403
  } else if (USE_SYMBOL_AS_UID && symbolFor) {
404
404
  WellKnownSymbolsStore[name] = symbolFor(description);
405
405
  } else {
@@ -408,28 +408,28 @@
408
408
  } return WellKnownSymbolsStore[name];
409
409
  };
410
410
 
411
- var global$s = global$F;
412
- var call$a = functionCall;
411
+ var global$v = global$I;
412
+ var call$b = functionCall;
413
413
  var isObject$6 = isObject$8;
414
414
  var isSymbol$1 = isSymbol$2;
415
- var getMethod$3 = getMethod$4;
415
+ var getMethod$4 = getMethod$5;
416
416
  var ordinaryToPrimitive = ordinaryToPrimitive$1;
417
417
  var wellKnownSymbol$d = wellKnownSymbol$e;
418
418
 
419
- var TypeError$d = global$s.TypeError;
419
+ var TypeError$e = global$v.TypeError;
420
420
  var TO_PRIMITIVE = wellKnownSymbol$d('toPrimitive');
421
421
 
422
422
  // `ToPrimitive` abstract operation
423
423
  // https://tc39.es/ecma262/#sec-toprimitive
424
424
  var toPrimitive$1 = function (input, pref) {
425
425
  if (!isObject$6(input) || isSymbol$1(input)) return input;
426
- var exoticToPrim = getMethod$3(input, TO_PRIMITIVE);
426
+ var exoticToPrim = getMethod$4(input, TO_PRIMITIVE);
427
427
  var result;
428
428
  if (exoticToPrim) {
429
429
  if (pref === undefined) pref = 'default';
430
- result = call$a(exoticToPrim, input, pref);
430
+ result = call$b(exoticToPrim, input, pref);
431
431
  if (!isObject$6(result) || isSymbol$1(result)) return result;
432
- throw TypeError$d("Can't convert object to primitive value");
432
+ throw TypeError$e("Can't convert object to primitive value");
433
433
  }
434
434
  if (pref === undefined) pref = 'number';
435
435
  return ordinaryToPrimitive(input, pref);
@@ -440,15 +440,15 @@
440
440
 
441
441
  // `ToPropertyKey` abstract operation
442
442
  // https://tc39.es/ecma262/#sec-topropertykey
443
- var toPropertyKey$2 = function (argument) {
443
+ var toPropertyKey$3 = function (argument) {
444
444
  var key = toPrimitive(argument, 'string');
445
445
  return isSymbol(key) ? key : key + '';
446
446
  };
447
447
 
448
- var global$r = global$F;
448
+ var global$u = global$I;
449
449
  var isObject$5 = isObject$8;
450
450
 
451
- var document$3 = global$r.document;
451
+ var document$3 = global$u.document;
452
452
  // typeof document.createElement is 'object' in old IE
453
453
  var EXISTS$1 = isObject$5(document$3) && isObject$5(document$3.createElement);
454
454
 
@@ -457,11 +457,11 @@
457
457
  };
458
458
 
459
459
  var DESCRIPTORS$8 = descriptors;
460
- var fails$a = fails$f;
460
+ var fails$d = fails$i;
461
461
  var createElement$1 = documentCreateElement$1;
462
462
 
463
463
  // Thanks to IE8 for its funny defineProperty
464
- var ie8DomDefine = !DESCRIPTORS$8 && !fails$a(function () {
464
+ var ie8DomDefine = !DESCRIPTORS$8 && !fails$d(function () {
465
465
  // eslint-disable-next-line es/no-object-defineproperty -- required for testing
466
466
  return Object.defineProperty(createElement$1('div'), 'a', {
467
467
  get: function () { return 7; }
@@ -469,11 +469,11 @@
469
469
  });
470
470
 
471
471
  var DESCRIPTORS$7 = descriptors;
472
- var call$9 = functionCall;
472
+ var call$a = functionCall;
473
473
  var propertyIsEnumerableModule$1 = objectPropertyIsEnumerable;
474
- var createPropertyDescriptor$1 = createPropertyDescriptor$2;
474
+ var createPropertyDescriptor$2 = createPropertyDescriptor$3;
475
475
  var toIndexedObject$3 = toIndexedObject$4;
476
- var toPropertyKey$1 = toPropertyKey$2;
476
+ var toPropertyKey$2 = toPropertyKey$3;
477
477
  var hasOwn$7 = hasOwnProperty_1;
478
478
  var IE8_DOM_DEFINE$1 = ie8DomDefine;
479
479
 
@@ -484,21 +484,21 @@
484
484
  // https://tc39.es/ecma262/#sec-object.getownpropertydescriptor
485
485
  objectGetOwnPropertyDescriptor.f = DESCRIPTORS$7 ? $getOwnPropertyDescriptor$1 : function getOwnPropertyDescriptor(O, P) {
486
486
  O = toIndexedObject$3(O);
487
- P = toPropertyKey$1(P);
487
+ P = toPropertyKey$2(P);
488
488
  if (IE8_DOM_DEFINE$1) try {
489
489
  return $getOwnPropertyDescriptor$1(O, P);
490
490
  } catch (error) { /* empty */ }
491
- if (hasOwn$7(O, P)) return createPropertyDescriptor$1(!call$9(propertyIsEnumerableModule$1.f, O, P), O[P]);
491
+ if (hasOwn$7(O, P)) return createPropertyDescriptor$2(!call$a(propertyIsEnumerableModule$1.f, O, P), O[P]);
492
492
  };
493
493
 
494
494
  var objectDefineProperty = {};
495
495
 
496
496
  var DESCRIPTORS$6 = descriptors;
497
- var fails$9 = fails$f;
497
+ var fails$c = fails$i;
498
498
 
499
499
  // V8 ~ Chrome 36-
500
500
  // https://bugs.chromium.org/p/v8/issues/detail?id=3334
501
- var v8PrototypeDefineBug = DESCRIPTORS$6 && fails$9(function () {
501
+ var v8PrototypeDefineBug = DESCRIPTORS$6 && fails$c(function () {
502
502
  // eslint-disable-next-line es/no-object-defineproperty -- required for testing
503
503
  return Object.defineProperty(function () { /* empty */ }, 'prototype', {
504
504
  value: 42,
@@ -506,26 +506,26 @@
506
506
  }).prototype != 42;
507
507
  });
508
508
 
509
- var global$q = global$F;
509
+ var global$t = global$I;
510
510
  var isObject$4 = isObject$8;
511
511
 
512
- var String$4 = global$q.String;
513
- var TypeError$c = global$q.TypeError;
512
+ var String$4 = global$t.String;
513
+ var TypeError$d = global$t.TypeError;
514
514
 
515
515
  // `Assert: Type(argument) is Object`
516
- var anObject$d = function (argument) {
516
+ var anObject$e = function (argument) {
517
517
  if (isObject$4(argument)) return argument;
518
- throw TypeError$c(String$4(argument) + ' is not an object');
518
+ throw TypeError$d(String$4(argument) + ' is not an object');
519
519
  };
520
520
 
521
- var global$p = global$F;
521
+ var global$s = global$I;
522
522
  var DESCRIPTORS$5 = descriptors;
523
523
  var IE8_DOM_DEFINE = ie8DomDefine;
524
524
  var V8_PROTOTYPE_DEFINE_BUG$1 = v8PrototypeDefineBug;
525
- var anObject$c = anObject$d;
526
- var toPropertyKey = toPropertyKey$2;
525
+ var anObject$d = anObject$e;
526
+ var toPropertyKey$1 = toPropertyKey$3;
527
527
 
528
- var TypeError$b = global$p.TypeError;
528
+ var TypeError$c = global$s.TypeError;
529
529
  // eslint-disable-next-line es/no-object-defineproperty -- safe
530
530
  var $defineProperty = Object.defineProperty;
531
531
  // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
@@ -537,9 +537,9 @@
537
537
  // `Object.defineProperty` method
538
538
  // https://tc39.es/ecma262/#sec-object.defineproperty
539
539
  objectDefineProperty.f = DESCRIPTORS$5 ? V8_PROTOTYPE_DEFINE_BUG$1 ? function defineProperty(O, P, Attributes) {
540
- anObject$c(O);
541
- P = toPropertyKey(P);
542
- anObject$c(Attributes);
540
+ anObject$d(O);
541
+ P = toPropertyKey$1(P);
542
+ anObject$d(Attributes);
543
543
  if (typeof O === 'function' && P === 'prototype' && 'value' in Attributes && WRITABLE in Attributes && !Attributes[WRITABLE]) {
544
544
  var current = $getOwnPropertyDescriptor(O, P);
545
545
  if (current && current[WRITABLE]) {
@@ -552,23 +552,23 @@
552
552
  }
553
553
  } return $defineProperty(O, P, Attributes);
554
554
  } : $defineProperty : function defineProperty(O, P, Attributes) {
555
- anObject$c(O);
556
- P = toPropertyKey(P);
557
- anObject$c(Attributes);
555
+ anObject$d(O);
556
+ P = toPropertyKey$1(P);
557
+ anObject$d(Attributes);
558
558
  if (IE8_DOM_DEFINE) try {
559
559
  return $defineProperty(O, P, Attributes);
560
560
  } catch (error) { /* empty */ }
561
- if ('get' in Attributes || 'set' in Attributes) throw TypeError$b('Accessors not supported');
561
+ if ('get' in Attributes || 'set' in Attributes) throw TypeError$c('Accessors not supported');
562
562
  if ('value' in Attributes) O[P] = Attributes.value;
563
563
  return O;
564
564
  };
565
565
 
566
566
  var DESCRIPTORS$4 = descriptors;
567
- var definePropertyModule$3 = objectDefineProperty;
568
- var createPropertyDescriptor = createPropertyDescriptor$2;
567
+ var definePropertyModule$4 = objectDefineProperty;
568
+ var createPropertyDescriptor$1 = createPropertyDescriptor$3;
569
569
 
570
570
  var createNonEnumerableProperty$4 = DESCRIPTORS$4 ? function (object, key, value) {
571
- return definePropertyModule$3.f(object, key, createPropertyDescriptor(1, value));
571
+ return definePropertyModule$4.f(object, key, createPropertyDescriptor$1(1, value));
572
572
  } : function (object, key, value) {
573
573
  object[key] = value;
574
574
  return object;
@@ -576,11 +576,11 @@
576
576
 
577
577
  var redefine$4 = {exports: {}};
578
578
 
579
- var uncurryThis$e = functionUncurryThis;
579
+ var uncurryThis$h = functionUncurryThis;
580
580
  var isCallable$a = isCallable$g;
581
581
  var store$1 = sharedStore;
582
582
 
583
- var functionToString = uncurryThis$e(Function.toString);
583
+ var functionToString = uncurryThis$h(Function.toString);
584
584
 
585
585
  // this helper broken in `core-js@3.4.1-3.4.4`, so we can't use `shared` helper
586
586
  if (!isCallable$a(store$1.inspectSource)) {
@@ -591,11 +591,11 @@
591
591
 
592
592
  var inspectSource$4 = store$1.inspectSource;
593
593
 
594
- var global$o = global$F;
594
+ var global$r = global$I;
595
595
  var isCallable$9 = isCallable$g;
596
596
  var inspectSource$3 = inspectSource$4;
597
597
 
598
- var WeakMap$1 = global$o.WeakMap;
598
+ var WeakMap$1 = global$r.WeakMap;
599
599
 
600
600
  var nativeWeakMap = isCallable$9(WeakMap$1) && /native code/.test(inspectSource$3(WeakMap$1));
601
601
 
@@ -611,8 +611,8 @@
611
611
  var hiddenKeys$4 = {};
612
612
 
613
613
  var NATIVE_WEAK_MAP = nativeWeakMap;
614
- var global$n = global$F;
615
- var uncurryThis$d = functionUncurryThis;
614
+ var global$q = global$I;
615
+ var uncurryThis$g = functionUncurryThis;
616
616
  var isObject$3 = isObject$8;
617
617
  var createNonEnumerableProperty$3 = createNonEnumerableProperty$4;
618
618
  var hasOwn$6 = hasOwnProperty_1;
@@ -621,8 +621,8 @@
621
621
  var hiddenKeys$3 = hiddenKeys$4;
622
622
 
623
623
  var OBJECT_ALREADY_INITIALIZED = 'Object already initialized';
624
- var TypeError$a = global$n.TypeError;
625
- var WeakMap = global$n.WeakMap;
624
+ var TypeError$b = global$q.TypeError;
625
+ var WeakMap = global$q.WeakMap;
626
626
  var set$2, get$1, has;
627
627
 
628
628
  var enforce = function (it) {
@@ -633,18 +633,18 @@
633
633
  return function (it) {
634
634
  var state;
635
635
  if (!isObject$3(it) || (state = get$1(it)).type !== TYPE) {
636
- throw TypeError$a('Incompatible receiver, ' + TYPE + ' required');
636
+ throw TypeError$b('Incompatible receiver, ' + TYPE + ' required');
637
637
  } return state;
638
638
  };
639
639
  };
640
640
 
641
641
  if (NATIVE_WEAK_MAP || shared$1.state) {
642
642
  var store = shared$1.state || (shared$1.state = new WeakMap());
643
- var wmget = uncurryThis$d(store.get);
644
- var wmhas = uncurryThis$d(store.has);
645
- var wmset = uncurryThis$d(store.set);
643
+ var wmget = uncurryThis$g(store.get);
644
+ var wmhas = uncurryThis$g(store.has);
645
+ var wmset = uncurryThis$g(store.set);
646
646
  set$2 = function (it, metadata) {
647
- if (wmhas(store, it)) throw new TypeError$a(OBJECT_ALREADY_INITIALIZED);
647
+ if (wmhas(store, it)) throw new TypeError$b(OBJECT_ALREADY_INITIALIZED);
648
648
  metadata.facade = it;
649
649
  wmset(store, it, metadata);
650
650
  return metadata;
@@ -659,7 +659,7 @@
659
659
  var STATE = sharedKey$1('state');
660
660
  hiddenKeys$3[STATE] = true;
661
661
  set$2 = function (it, metadata) {
662
- if (hasOwn$6(it, STATE)) throw new TypeError$a(OBJECT_ALREADY_INITIALIZED);
662
+ if (hasOwn$6(it, STATE)) throw new TypeError$b(OBJECT_ALREADY_INITIALIZED);
663
663
  metadata.facade = it;
664
664
  createNonEnumerableProperty$3(it, STATE, metadata);
665
665
  return metadata;
@@ -698,7 +698,7 @@
698
698
  CONFIGURABLE: CONFIGURABLE
699
699
  };
700
700
 
701
- var global$m = global$F;
701
+ var global$p = global$I;
702
702
  var isCallable$8 = isCallable$g;
703
703
  var hasOwn$4 = hasOwnProperty_1;
704
704
  var createNonEnumerableProperty$2 = createNonEnumerableProperty$4;
@@ -729,7 +729,7 @@
729
729
  state.source = TEMPLATE.join(typeof name == 'string' ? name : '');
730
730
  }
731
731
  }
732
- if (O === global$m) {
732
+ if (O === global$p) {
733
733
  if (simple) O[key] = value;
734
734
  else setGlobal$1(key, value);
735
735
  return;
@@ -760,45 +760,45 @@
760
760
 
761
761
  var toIntegerOrInfinity$3 = toIntegerOrInfinity$4;
762
762
 
763
- var max$1 = Math.max;
764
- var min$3 = Math.min;
763
+ var max$2 = Math.max;
764
+ var min$4 = Math.min;
765
765
 
766
766
  // Helper for a popular repeating case of the spec:
767
767
  // Let integer be ? ToInteger(index).
768
768
  // If integer < 0, let result be max((length + integer), 0); else let result be min(integer, length).
769
- var toAbsoluteIndex$1 = function (index, length) {
769
+ var toAbsoluteIndex$2 = function (index, length) {
770
770
  var integer = toIntegerOrInfinity$3(index);
771
- return integer < 0 ? max$1(integer + length, 0) : min$3(integer, length);
771
+ return integer < 0 ? max$2(integer + length, 0) : min$4(integer, length);
772
772
  };
773
773
 
774
774
  var toIntegerOrInfinity$2 = toIntegerOrInfinity$4;
775
775
 
776
- var min$2 = Math.min;
776
+ var min$3 = Math.min;
777
777
 
778
778
  // `ToLength` abstract operation
779
779
  // https://tc39.es/ecma262/#sec-tolength
780
- var toLength$3 = function (argument) {
781
- return argument > 0 ? min$2(toIntegerOrInfinity$2(argument), 0x1FFFFFFFFFFFFF) : 0; // 2 ** 53 - 1 == 9007199254740991
780
+ var toLength$4 = function (argument) {
781
+ return argument > 0 ? min$3(toIntegerOrInfinity$2(argument), 0x1FFFFFFFFFFFFF) : 0; // 2 ** 53 - 1 == 9007199254740991
782
782
  };
783
783
 
784
- var toLength$2 = toLength$3;
784
+ var toLength$3 = toLength$4;
785
785
 
786
786
  // `LengthOfArrayLike` abstract operation
787
787
  // https://tc39.es/ecma262/#sec-lengthofarraylike
788
- var lengthOfArrayLike$2 = function (obj) {
789
- return toLength$2(obj.length);
788
+ var lengthOfArrayLike$4 = function (obj) {
789
+ return toLength$3(obj.length);
790
790
  };
791
791
 
792
792
  var toIndexedObject$2 = toIndexedObject$4;
793
- var toAbsoluteIndex = toAbsoluteIndex$1;
794
- var lengthOfArrayLike$1 = lengthOfArrayLike$2;
793
+ var toAbsoluteIndex$1 = toAbsoluteIndex$2;
794
+ var lengthOfArrayLike$3 = lengthOfArrayLike$4;
795
795
 
796
796
  // `Array.prototype.{ indexOf, includes }` methods implementation
797
- var createMethod$1 = function (IS_INCLUDES) {
797
+ var createMethod$3 = function (IS_INCLUDES) {
798
798
  return function ($this, el, fromIndex) {
799
799
  var O = toIndexedObject$2($this);
800
- var length = lengthOfArrayLike$1(O);
801
- var index = toAbsoluteIndex(fromIndex, length);
800
+ var length = lengthOfArrayLike$3(O);
801
+ var index = toAbsoluteIndex$1(fromIndex, length);
802
802
  var value;
803
803
  // Array#includes uses SameValueZero equality algorithm
804
804
  // eslint-disable-next-line no-self-compare -- NaN check
@@ -816,29 +816,29 @@
816
816
  var arrayIncludes = {
817
817
  // `Array.prototype.includes` method
818
818
  // https://tc39.es/ecma262/#sec-array.prototype.includes
819
- includes: createMethod$1(true),
819
+ includes: createMethod$3(true),
820
820
  // `Array.prototype.indexOf` method
821
821
  // https://tc39.es/ecma262/#sec-array.prototype.indexof
822
- indexOf: createMethod$1(false)
822
+ indexOf: createMethod$3(false)
823
823
  };
824
824
 
825
- var uncurryThis$c = functionUncurryThis;
825
+ var uncurryThis$f = functionUncurryThis;
826
826
  var hasOwn$3 = hasOwnProperty_1;
827
827
  var toIndexedObject$1 = toIndexedObject$4;
828
828
  var indexOf$1 = arrayIncludes.indexOf;
829
829
  var hiddenKeys$2 = hiddenKeys$4;
830
830
 
831
- var push$1 = uncurryThis$c([].push);
831
+ var push$2 = uncurryThis$f([].push);
832
832
 
833
833
  var objectKeysInternal = function (object, names) {
834
834
  var O = toIndexedObject$1(object);
835
835
  var i = 0;
836
836
  var result = [];
837
837
  var key;
838
- for (key in O) !hasOwn$3(hiddenKeys$2, key) && hasOwn$3(O, key) && push$1(result, key);
838
+ for (key in O) !hasOwn$3(hiddenKeys$2, key) && hasOwn$3(O, key) && push$2(result, key);
839
839
  // Don't enum bug & hidden keys
840
840
  while (names.length > i) if (hasOwn$3(O, key = names[i++])) {
841
- ~indexOf$1(result, key) || push$1(result, key);
841
+ ~indexOf$1(result, key) || push$2(result, key);
842
842
  }
843
843
  return result;
844
844
  };
@@ -872,16 +872,16 @@
872
872
  objectGetOwnPropertySymbols.f = Object.getOwnPropertySymbols;
873
873
 
874
874
  var getBuiltIn$4 = getBuiltIn$7;
875
- var uncurryThis$b = functionUncurryThis;
875
+ var uncurryThis$e = functionUncurryThis;
876
876
  var getOwnPropertyNamesModule = objectGetOwnPropertyNames;
877
877
  var getOwnPropertySymbolsModule$1 = objectGetOwnPropertySymbols;
878
- var anObject$b = anObject$d;
878
+ var anObject$c = anObject$e;
879
879
 
880
- var concat$2 = uncurryThis$b([].concat);
880
+ var concat$2 = uncurryThis$e([].concat);
881
881
 
882
882
  // all object keys, includes non-enumerable and symbols
883
883
  var ownKeys$1 = getBuiltIn$4('Reflect', 'ownKeys') || function ownKeys(it) {
884
- var keys = getOwnPropertyNamesModule.f(anObject$b(it));
884
+ var keys = getOwnPropertyNamesModule.f(anObject$c(it));
885
885
  var getOwnPropertySymbols = getOwnPropertySymbolsModule$1.f;
886
886
  return getOwnPropertySymbols ? concat$2(keys, getOwnPropertySymbols(it)) : keys;
887
887
  };
@@ -889,11 +889,11 @@
889
889
  var hasOwn$2 = hasOwnProperty_1;
890
890
  var ownKeys = ownKeys$1;
891
891
  var getOwnPropertyDescriptorModule = objectGetOwnPropertyDescriptor;
892
- var definePropertyModule$2 = objectDefineProperty;
892
+ var definePropertyModule$3 = objectDefineProperty;
893
893
 
894
894
  var copyConstructorProperties$1 = function (target, source, exceptions) {
895
895
  var keys = ownKeys(source);
896
- var defineProperty = definePropertyModule$2.f;
896
+ var defineProperty = definePropertyModule$3.f;
897
897
  var getOwnPropertyDescriptor = getOwnPropertyDescriptorModule.f;
898
898
  for (var i = 0; i < keys.length; i++) {
899
899
  var key = keys[i];
@@ -903,7 +903,7 @@
903
903
  }
904
904
  };
905
905
 
906
- var fails$8 = fails$f;
906
+ var fails$b = fails$i;
907
907
  var isCallable$7 = isCallable$g;
908
908
 
909
909
  var replacement = /#|\.prototype\./;
@@ -912,7 +912,7 @@
912
912
  var value = data[normalize$1(feature)];
913
913
  return value == POLYFILL ? true
914
914
  : value == NATIVE ? false
915
- : isCallable$7(detection) ? fails$8(detection)
915
+ : isCallable$7(detection) ? fails$b(detection)
916
916
  : !!detection;
917
917
  };
918
918
 
@@ -926,7 +926,7 @@
926
926
 
927
927
  var isForced_1 = isForced$2;
928
928
 
929
- var global$l = global$F;
929
+ var global$o = global$I;
930
930
  var getOwnPropertyDescriptor$2 = objectGetOwnPropertyDescriptor.f;
931
931
  var createNonEnumerableProperty$1 = createNonEnumerableProperty$4;
932
932
  var redefine$3 = redefine$4.exports;
@@ -955,11 +955,11 @@
955
955
  var STATIC = options.stat;
956
956
  var FORCED, target, key, targetProperty, sourceProperty, descriptor;
957
957
  if (GLOBAL) {
958
- target = global$l;
958
+ target = global$o;
959
959
  } else if (STATIC) {
960
- target = global$l[TARGET] || setGlobal(TARGET, {});
960
+ target = global$o[TARGET] || setGlobal(TARGET, {});
961
961
  } else {
962
- target = (global$l[TARGET] || {}).prototype;
962
+ target = (global$o[TARGET] || {}).prototype;
963
963
  }
964
964
  if (target) for (key in source) {
965
965
  sourceProperty = source[key];
@@ -982,9 +982,9 @@
982
982
  }
983
983
  };
984
984
 
985
- var global$k = global$F;
985
+ var global$n = global$I;
986
986
 
987
- var nativePromiseConstructor = global$k.Promise;
987
+ var nativePromiseConstructor = global$n.Promise;
988
988
 
989
989
  var redefine$2 = redefine$4.exports;
990
990
 
@@ -993,21 +993,21 @@
993
993
  return target;
994
994
  };
995
995
 
996
- var global$j = global$F;
996
+ var global$m = global$I;
997
997
  var isCallable$6 = isCallable$g;
998
998
 
999
- var String$3 = global$j.String;
1000
- var TypeError$9 = global$j.TypeError;
999
+ var String$3 = global$m.String;
1000
+ var TypeError$a = global$m.TypeError;
1001
1001
 
1002
1002
  var aPossiblePrototype$1 = function (argument) {
1003
1003
  if (typeof argument == 'object' || isCallable$6(argument)) return argument;
1004
- throw TypeError$9("Can't set " + String$3(argument) + ' as a prototype');
1004
+ throw TypeError$a("Can't set " + String$3(argument) + ' as a prototype');
1005
1005
  };
1006
1006
 
1007
1007
  /* eslint-disable no-proto -- safe */
1008
1008
 
1009
- var uncurryThis$a = functionUncurryThis;
1010
- var anObject$a = anObject$d;
1009
+ var uncurryThis$d = functionUncurryThis;
1010
+ var anObject$b = anObject$e;
1011
1011
  var aPossiblePrototype = aPossiblePrototype$1;
1012
1012
 
1013
1013
  // `Object.setPrototypeOf` method
@@ -1020,12 +1020,12 @@
1020
1020
  var setter;
1021
1021
  try {
1022
1022
  // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
1023
- setter = uncurryThis$a(Object.getOwnPropertyDescriptor(Object.prototype, '__proto__').set);
1023
+ setter = uncurryThis$d(Object.getOwnPropertyDescriptor(Object.prototype, '__proto__').set);
1024
1024
  setter(test, []);
1025
1025
  CORRECT_SETTER = test instanceof Array;
1026
1026
  } catch (error) { /* empty */ }
1027
1027
  return function setPrototypeOf(O, proto) {
1028
- anObject$a(O);
1028
+ anObject$b(O);
1029
1029
  aPossiblePrototype(proto);
1030
1030
  if (CORRECT_SETTER) setter(O, proto);
1031
1031
  else O.__proto__ = proto;
@@ -1047,7 +1047,7 @@
1047
1047
  };
1048
1048
 
1049
1049
  var getBuiltIn$3 = getBuiltIn$7;
1050
- var definePropertyModule$1 = objectDefineProperty;
1050
+ var definePropertyModule$2 = objectDefineProperty;
1051
1051
  var wellKnownSymbol$b = wellKnownSymbol$e;
1052
1052
  var DESCRIPTORS$2 = descriptors;
1053
1053
 
@@ -1055,7 +1055,7 @@
1055
1055
 
1056
1056
  var setSpecies$1 = function (CONSTRUCTOR_NAME) {
1057
1057
  var Constructor = getBuiltIn$3(CONSTRUCTOR_NAME);
1058
- var defineProperty = definePropertyModule$1.f;
1058
+ var defineProperty = definePropertyModule$2.f;
1059
1059
 
1060
1060
  if (DESCRIPTORS$2 && Constructor && !Constructor[SPECIES$3]) {
1061
1061
  defineProperty(Constructor, SPECIES$3, {
@@ -1065,25 +1065,25 @@
1065
1065
  }
1066
1066
  };
1067
1067
 
1068
- var global$i = global$F;
1068
+ var global$l = global$I;
1069
1069
  var isPrototypeOf$1 = objectIsPrototypeOf;
1070
1070
 
1071
- var TypeError$8 = global$i.TypeError;
1071
+ var TypeError$9 = global$l.TypeError;
1072
1072
 
1073
1073
  var anInstance$1 = function (it, Prototype) {
1074
1074
  if (isPrototypeOf$1(Prototype, it)) return it;
1075
- throw TypeError$8('Incorrect invocation');
1075
+ throw TypeError$9('Incorrect invocation');
1076
1076
  };
1077
1077
 
1078
- var uncurryThis$9 = functionUncurryThis;
1079
- var aCallable$3 = aCallable$5;
1078
+ var uncurryThis$c = functionUncurryThis;
1079
+ var aCallable$4 = aCallable$6;
1080
1080
  var NATIVE_BIND$1 = functionBindNative;
1081
1081
 
1082
- var bind$4 = uncurryThis$9(uncurryThis$9.bind);
1082
+ var bind$4 = uncurryThis$c(uncurryThis$c.bind);
1083
1083
 
1084
1084
  // optional / simple context binding
1085
1085
  var functionBindContext = function (fn, that) {
1086
- aCallable$3(fn);
1086
+ aCallable$4(fn);
1087
1087
  return that === undefined ? fn : NATIVE_BIND$1 ? bind$4(fn, that) : function (/* ...args */) {
1088
1088
  return fn.apply(that, arguments);
1089
1089
  };
@@ -1094,12 +1094,12 @@
1094
1094
  var wellKnownSymbol$a = wellKnownSymbol$e;
1095
1095
  var Iterators$1 = iterators;
1096
1096
 
1097
- var ITERATOR$2 = wellKnownSymbol$a('iterator');
1097
+ var ITERATOR$3 = wellKnownSymbol$a('iterator');
1098
1098
  var ArrayPrototype = Array.prototype;
1099
1099
 
1100
1100
  // check on default Array iterator
1101
1101
  var isArrayIteratorMethod$1 = function (it) {
1102
- return it !== undefined && (Iterators$1.Array === it || ArrayPrototype[ITERATOR$2] === it);
1102
+ return it !== undefined && (Iterators$1.Array === it || ArrayPrototype[ITERATOR$3] === it);
1103
1103
  };
1104
1104
 
1105
1105
  var wellKnownSymbol$9 = wellKnownSymbol$e;
@@ -1111,14 +1111,14 @@
1111
1111
 
1112
1112
  var toStringTagSupport = String(test) === '[object z]';
1113
1113
 
1114
- var global$h = global$F;
1114
+ var global$k = global$I;
1115
1115
  var TO_STRING_TAG_SUPPORT = toStringTagSupport;
1116
1116
  var isCallable$5 = isCallable$g;
1117
1117
  var classofRaw = classofRaw$1;
1118
1118
  var wellKnownSymbol$8 = wellKnownSymbol$e;
1119
1119
 
1120
1120
  var TO_STRING_TAG = wellKnownSymbol$8('toStringTag');
1121
- var Object$1 = global$h.Object;
1121
+ var Object$1 = global$k.Object;
1122
1122
 
1123
1123
  // ES3 wrong here
1124
1124
  var CORRECT_ARGUMENTS = classofRaw(function () { return arguments; }()) == 'Arguments';
@@ -1143,70 +1143,70 @@
1143
1143
  };
1144
1144
 
1145
1145
  var classof$5 = classof$6;
1146
- var getMethod$2 = getMethod$4;
1146
+ var getMethod$3 = getMethod$5;
1147
1147
  var Iterators = iterators;
1148
1148
  var wellKnownSymbol$7 = wellKnownSymbol$e;
1149
1149
 
1150
- var ITERATOR$1 = wellKnownSymbol$7('iterator');
1150
+ var ITERATOR$2 = wellKnownSymbol$7('iterator');
1151
1151
 
1152
1152
  var getIteratorMethod$2 = function (it) {
1153
- if (it != undefined) return getMethod$2(it, ITERATOR$1)
1154
- || getMethod$2(it, '@@iterator')
1153
+ if (it != undefined) return getMethod$3(it, ITERATOR$2)
1154
+ || getMethod$3(it, '@@iterator')
1155
1155
  || Iterators[classof$5(it)];
1156
1156
  };
1157
1157
 
1158
- var global$g = global$F;
1159
- var call$8 = functionCall;
1160
- var aCallable$2 = aCallable$5;
1161
- var anObject$9 = anObject$d;
1158
+ var global$j = global$I;
1159
+ var call$9 = functionCall;
1160
+ var aCallable$3 = aCallable$6;
1161
+ var anObject$a = anObject$e;
1162
1162
  var tryToString$2 = tryToString$4;
1163
1163
  var getIteratorMethod$1 = getIteratorMethod$2;
1164
1164
 
1165
- var TypeError$7 = global$g.TypeError;
1165
+ var TypeError$8 = global$j.TypeError;
1166
1166
 
1167
1167
  var getIterator$1 = function (argument, usingIterator) {
1168
1168
  var iteratorMethod = arguments.length < 2 ? getIteratorMethod$1(argument) : usingIterator;
1169
- if (aCallable$2(iteratorMethod)) return anObject$9(call$8(iteratorMethod, argument));
1170
- throw TypeError$7(tryToString$2(argument) + ' is not iterable');
1169
+ if (aCallable$3(iteratorMethod)) return anObject$a(call$9(iteratorMethod, argument));
1170
+ throw TypeError$8(tryToString$2(argument) + ' is not iterable');
1171
1171
  };
1172
1172
 
1173
- var call$7 = functionCall;
1174
- var anObject$8 = anObject$d;
1175
- var getMethod$1 = getMethod$4;
1173
+ var call$8 = functionCall;
1174
+ var anObject$9 = anObject$e;
1175
+ var getMethod$2 = getMethod$5;
1176
1176
 
1177
1177
  var iteratorClose$1 = function (iterator, kind, value) {
1178
1178
  var innerResult, innerError;
1179
- anObject$8(iterator);
1179
+ anObject$9(iterator);
1180
1180
  try {
1181
- innerResult = getMethod$1(iterator, 'return');
1181
+ innerResult = getMethod$2(iterator, 'return');
1182
1182
  if (!innerResult) {
1183
1183
  if (kind === 'throw') throw value;
1184
1184
  return value;
1185
1185
  }
1186
- innerResult = call$7(innerResult, iterator);
1186
+ innerResult = call$8(innerResult, iterator);
1187
1187
  } catch (error) {
1188
1188
  innerError = true;
1189
1189
  innerResult = error;
1190
1190
  }
1191
1191
  if (kind === 'throw') throw value;
1192
1192
  if (innerError) throw innerResult;
1193
- anObject$8(innerResult);
1193
+ anObject$9(innerResult);
1194
1194
  return value;
1195
1195
  };
1196
1196
 
1197
- var global$f = global$F;
1197
+ var global$i = global$I;
1198
1198
  var bind$3 = functionBindContext;
1199
- var call$6 = functionCall;
1200
- var anObject$7 = anObject$d;
1199
+ var call$7 = functionCall;
1200
+ var anObject$8 = anObject$e;
1201
1201
  var tryToString$1 = tryToString$4;
1202
1202
  var isArrayIteratorMethod = isArrayIteratorMethod$1;
1203
- var lengthOfArrayLike = lengthOfArrayLike$2;
1203
+ var lengthOfArrayLike$2 = lengthOfArrayLike$4;
1204
1204
  var isPrototypeOf = objectIsPrototypeOf;
1205
1205
  var getIterator = getIterator$1;
1206
1206
  var getIteratorMethod = getIteratorMethod$2;
1207
1207
  var iteratorClose = iteratorClose$1;
1208
1208
 
1209
- var TypeError$6 = global$f.TypeError;
1209
+ var TypeError$7 = global$i.TypeError;
1210
1210
 
1211
1211
  var Result = function (stopped, result) {
1212
1212
  this.stopped = stopped;
@@ -1230,7 +1230,7 @@
1230
1230
 
1231
1231
  var callFn = function (value) {
1232
1232
  if (AS_ENTRIES) {
1233
- anObject$7(value);
1233
+ anObject$8(value);
1234
1234
  return INTERRUPTED ? fn(value[0], value[1], stop) : fn(value[0], value[1]);
1235
1235
  } return INTERRUPTED ? fn(value, stop) : fn(value);
1236
1236
  };
@@ -1239,10 +1239,10 @@
1239
1239
  iterator = iterable;
1240
1240
  } else {
1241
1241
  iterFn = getIteratorMethod(iterable);
1242
- if (!iterFn) throw TypeError$6(tryToString$1(iterable) + ' is not iterable');
1242
+ if (!iterFn) throw TypeError$7(tryToString$1(iterable) + ' is not iterable');
1243
1243
  // optimisation for array iterators
1244
1244
  if (isArrayIteratorMethod(iterFn)) {
1245
- for (index = 0, length = lengthOfArrayLike(iterable); length > index; index++) {
1245
+ for (index = 0, length = lengthOfArrayLike$2(iterable); length > index; index++) {
1246
1246
  result = callFn(iterable[index]);
1247
1247
  if (result && isPrototypeOf(ResultPrototype, result)) return result;
1248
1248
  } return new Result(false);
@@ -1251,7 +1251,7 @@
1251
1251
  }
1252
1252
 
1253
1253
  next = iterator.next;
1254
- while (!(step = call$6(next, iterator)).done) {
1254
+ while (!(step = call$7(next, iterator)).done) {
1255
1255
  try {
1256
1256
  result = callFn(step.value);
1257
1257
  } catch (error) {
@@ -1263,7 +1263,7 @@
1263
1263
 
1264
1264
  var wellKnownSymbol$6 = wellKnownSymbol$e;
1265
1265
 
1266
- var ITERATOR = wellKnownSymbol$6('iterator');
1266
+ var ITERATOR$1 = wellKnownSymbol$6('iterator');
1267
1267
  var SAFE_CLOSING = false;
1268
1268
 
1269
1269
  try {
@@ -1276,7 +1276,7 @@
1276
1276
  SAFE_CLOSING = true;
1277
1277
  }
1278
1278
  };
1279
- iteratorWithReturn[ITERATOR] = function () {
1279
+ iteratorWithReturn[ITERATOR$1] = function () {
1280
1280
  return this;
1281
1281
  };
1282
1282
  // eslint-disable-next-line es/no-array-from, no-throw-literal -- required for testing
@@ -1288,7 +1288,7 @@
1288
1288
  var ITERATION_SUPPORT = false;
1289
1289
  try {
1290
1290
  var object = {};
1291
- object[ITERATOR] = function () {
1291
+ object[ITERATOR$1] = function () {
1292
1292
  return {
1293
1293
  next: function () {
1294
1294
  return { done: ITERATION_SUPPORT = true };
@@ -1300,8 +1300,8 @@
1300
1300
  return ITERATION_SUPPORT;
1301
1301
  };
1302
1302
 
1303
- var uncurryThis$8 = functionUncurryThis;
1304
- var fails$7 = fails$f;
1303
+ var uncurryThis$b = functionUncurryThis;
1304
+ var fails$a = fails$i;
1305
1305
  var isCallable$4 = isCallable$g;
1306
1306
  var classof$4 = classof$6;
1307
1307
  var getBuiltIn$2 = getBuiltIn$7;
@@ -1311,7 +1311,7 @@
1311
1311
  var empty = [];
1312
1312
  var construct = getBuiltIn$2('Reflect', 'construct');
1313
1313
  var constructorRegExp = /^\s*(?:class|function)\b/;
1314
- var exec$1 = uncurryThis$8(constructorRegExp.exec);
1314
+ var exec$3 = uncurryThis$b(constructorRegExp.exec);
1315
1315
  var INCORRECT_TO_STRING = !constructorRegExp.exec(noop);
1316
1316
 
1317
1317
  var isConstructorModern = function isConstructor(argument) {
@@ -1335,7 +1335,7 @@
1335
1335
  // we can't check .prototype since constructors produced by .bind haven't it
1336
1336
  // `Function#toString` throws on some built-it function in some legacy engines
1337
1337
  // (for example, `DOMQuad` and similar in FF41-)
1338
- return INCORRECT_TO_STRING || !!exec$1(constructorRegExp, inspectSource$1(argument));
1338
+ return INCORRECT_TO_STRING || !!exec$3(constructorRegExp, inspectSource$1(argument));
1339
1339
  } catch (error) {
1340
1340
  return true;
1341
1341
  }
@@ -1345,7 +1345,7 @@
1345
1345
 
1346
1346
  // `IsConstructor` abstract operation
1347
1347
  // https://tc39.es/ecma262/#sec-isconstructor
1348
- var isConstructor$1 = !construct || fails$7(function () {
1348
+ var isConstructor$1 = !construct || fails$a(function () {
1349
1349
  var called;
1350
1350
  return isConstructorModern(isConstructorModern.call)
1351
1351
  || !isConstructorModern(Object)
@@ -1353,19 +1353,19 @@
1353
1353
  || called;
1354
1354
  }) ? isConstructorLegacy : isConstructorModern;
1355
1355
 
1356
- var global$e = global$F;
1356
+ var global$h = global$I;
1357
1357
  var isConstructor = isConstructor$1;
1358
1358
  var tryToString = tryToString$4;
1359
1359
 
1360
- var TypeError$5 = global$e.TypeError;
1360
+ var TypeError$6 = global$h.TypeError;
1361
1361
 
1362
1362
  // `Assert: IsConstructor(argument) is true`
1363
1363
  var aConstructor$1 = function (argument) {
1364
1364
  if (isConstructor(argument)) return argument;
1365
- throw TypeError$5(tryToString(argument) + ' is not a constructor');
1365
+ throw TypeError$6(tryToString(argument) + ' is not a constructor');
1366
1366
  };
1367
1367
 
1368
- var anObject$6 = anObject$d;
1368
+ var anObject$7 = anObject$e;
1369
1369
  var aConstructor = aConstructor$1;
1370
1370
  var wellKnownSymbol$5 = wellKnownSymbol$e;
1371
1371
 
@@ -1373,37 +1373,37 @@
1373
1373
 
1374
1374
  // `SpeciesConstructor` abstract operation
1375
1375
  // https://tc39.es/ecma262/#sec-speciesconstructor
1376
- var speciesConstructor$1 = function (O, defaultConstructor) {
1377
- var C = anObject$6(O).constructor;
1376
+ var speciesConstructor$2 = function (O, defaultConstructor) {
1377
+ var C = anObject$7(O).constructor;
1378
1378
  var S;
1379
- return C === undefined || (S = anObject$6(C)[SPECIES$2]) == undefined ? defaultConstructor : aConstructor(S);
1379
+ return C === undefined || (S = anObject$7(C)[SPECIES$2]) == undefined ? defaultConstructor : aConstructor(S);
1380
1380
  };
1381
1381
 
1382
1382
  var NATIVE_BIND = functionBindNative;
1383
1383
 
1384
1384
  var FunctionPrototype = Function.prototype;
1385
- var apply$2 = FunctionPrototype.apply;
1386
- var call$5 = FunctionPrototype.call;
1385
+ var apply$3 = FunctionPrototype.apply;
1386
+ var call$6 = FunctionPrototype.call;
1387
1387
 
1388
1388
  // eslint-disable-next-line es/no-reflect -- safe
1389
- var functionApply = typeof Reflect == 'object' && Reflect.apply || (NATIVE_BIND ? call$5.bind(apply$2) : function () {
1390
- return call$5.apply(apply$2, arguments);
1389
+ var functionApply = typeof Reflect == 'object' && Reflect.apply || (NATIVE_BIND ? call$6.bind(apply$3) : function () {
1390
+ return call$6.apply(apply$3, arguments);
1391
1391
  });
1392
1392
 
1393
1393
  var getBuiltIn$1 = getBuiltIn$7;
1394
1394
 
1395
1395
  var html$2 = getBuiltIn$1('document', 'documentElement');
1396
1396
 
1397
- var uncurryThis$7 = functionUncurryThis;
1397
+ var uncurryThis$a = functionUncurryThis;
1398
1398
 
1399
- var arraySlice$1 = uncurryThis$7([].slice);
1399
+ var arraySlice$2 = uncurryThis$a([].slice);
1400
1400
 
1401
- var global$d = global$F;
1401
+ var global$g = global$I;
1402
1402
 
1403
- var TypeError$4 = global$d.TypeError;
1403
+ var TypeError$5 = global$g.TypeError;
1404
1404
 
1405
1405
  var validateArgumentsLength$1 = function (passed, required) {
1406
- if (passed < required) throw TypeError$4('Not enough arguments');
1406
+ if (passed < required) throw TypeError$5('Not enough arguments');
1407
1407
  return passed;
1408
1408
  };
1409
1409
 
@@ -1412,30 +1412,30 @@
1412
1412
  var engineIsIos = /(?:ipad|iphone|ipod).*applewebkit/i.test(userAgent$2);
1413
1413
 
1414
1414
  var classof$3 = classofRaw$1;
1415
- var global$c = global$F;
1415
+ var global$f = global$I;
1416
1416
 
1417
- var engineIsNode = classof$3(global$c.process) == 'process';
1417
+ var engineIsNode = classof$3(global$f.process) == 'process';
1418
1418
 
1419
- var global$b = global$F;
1420
- var apply$1 = functionApply;
1419
+ var global$e = global$I;
1420
+ var apply$2 = functionApply;
1421
1421
  var bind$2 = functionBindContext;
1422
1422
  var isCallable$3 = isCallable$g;
1423
1423
  var hasOwn = hasOwnProperty_1;
1424
- var fails$6 = fails$f;
1424
+ var fails$9 = fails$i;
1425
1425
  var html$1 = html$2;
1426
- var arraySlice = arraySlice$1;
1426
+ var arraySlice$1 = arraySlice$2;
1427
1427
  var createElement = documentCreateElement$1;
1428
1428
  var validateArgumentsLength = validateArgumentsLength$1;
1429
1429
  var IS_IOS$1 = engineIsIos;
1430
- var IS_NODE$2 = engineIsNode;
1431
-
1432
- var set$1 = global$b.setImmediate;
1433
- var clear = global$b.clearImmediate;
1434
- var process$2 = global$b.process;
1435
- var Dispatch = global$b.Dispatch;
1436
- var Function$1 = global$b.Function;
1437
- var MessageChannel = global$b.MessageChannel;
1438
- var String$2 = global$b.String;
1430
+ var IS_NODE$3 = engineIsNode;
1431
+
1432
+ var set$1 = global$e.setImmediate;
1433
+ var clear = global$e.clearImmediate;
1434
+ var process$2 = global$e.process;
1435
+ var Dispatch = global$e.Dispatch;
1436
+ var Function$1 = global$e.Function;
1437
+ var MessageChannel = global$e.MessageChannel;
1438
+ var String$2 = global$e.String;
1439
1439
  var counter = 0;
1440
1440
  var queue$1 = {};
1441
1441
  var ONREADYSTATECHANGE = 'onreadystatechange';
@@ -1443,7 +1443,7 @@
1443
1443
 
1444
1444
  try {
1445
1445
  // Deno throws a ReferenceError on `location` access without `--location` flag
1446
- location = global$b.location;
1446
+ location = global$e.location;
1447
1447
  } catch (error) { /* empty */ }
1448
1448
 
1449
1449
  var run = function (id) {
@@ -1466,7 +1466,7 @@
1466
1466
 
1467
1467
  var post = function (id) {
1468
1468
  // old engines have not location.origin
1469
- global$b.postMessage(String$2(id), location.protocol + '//' + location.host);
1469
+ global$e.postMessage(String$2(id), location.protocol + '//' + location.host);
1470
1470
  };
1471
1471
 
1472
1472
  // Node.js 0.9+ & IE10+ has setImmediate, otherwise:
@@ -1474,9 +1474,9 @@
1474
1474
  set$1 = function setImmediate(handler) {
1475
1475
  validateArgumentsLength(arguments.length, 1);
1476
1476
  var fn = isCallable$3(handler) ? handler : Function$1(handler);
1477
- var args = arraySlice(arguments, 1);
1477
+ var args = arraySlice$1(arguments, 1);
1478
1478
  queue$1[++counter] = function () {
1479
- apply$1(fn, undefined, args);
1479
+ apply$2(fn, undefined, args);
1480
1480
  };
1481
1481
  defer(counter);
1482
1482
  return counter;
@@ -1485,7 +1485,7 @@
1485
1485
  delete queue$1[id];
1486
1486
  };
1487
1487
  // Node.js 0.8-
1488
- if (IS_NODE$2) {
1488
+ if (IS_NODE$3) {
1489
1489
  defer = function (id) {
1490
1490
  process$2.nextTick(runner(id));
1491
1491
  };
@@ -1504,14 +1504,14 @@
1504
1504
  // Browsers with postMessage, skip WebWorkers
1505
1505
  // IE8 has postMessage, but it's sync & typeof its postMessage is 'object'
1506
1506
  } else if (
1507
- global$b.addEventListener &&
1508
- isCallable$3(global$b.postMessage) &&
1509
- !global$b.importScripts &&
1507
+ global$e.addEventListener &&
1508
+ isCallable$3(global$e.postMessage) &&
1509
+ !global$e.importScripts &&
1510
1510
  location && location.protocol !== 'file:' &&
1511
- !fails$6(post)
1511
+ !fails$9(post)
1512
1512
  ) {
1513
1513
  defer = post;
1514
- global$b.addEventListener('message', listener, false);
1514
+ global$e.addEventListener('message', listener, false);
1515
1515
  // IE8-
1516
1516
  } else if (ONREADYSTATECHANGE in createElement('script')) {
1517
1517
  defer = function (id) {
@@ -1534,29 +1534,29 @@
1534
1534
  };
1535
1535
 
1536
1536
  var userAgent$1 = engineUserAgent;
1537
- var global$a = global$F;
1537
+ var global$d = global$I;
1538
1538
 
1539
- var engineIsIosPebble = /ipad|iphone|ipod/i.test(userAgent$1) && global$a.Pebble !== undefined;
1539
+ var engineIsIosPebble = /ipad|iphone|ipod/i.test(userAgent$1) && global$d.Pebble !== undefined;
1540
1540
 
1541
1541
  var userAgent = engineUserAgent;
1542
1542
 
1543
1543
  var engineIsWebosWebkit = /web0s(?!.*chrome)/i.test(userAgent);
1544
1544
 
1545
- var global$9 = global$F;
1545
+ var global$c = global$I;
1546
1546
  var bind$1 = functionBindContext;
1547
1547
  var getOwnPropertyDescriptor$1 = objectGetOwnPropertyDescriptor.f;
1548
1548
  var macrotask = task$1.set;
1549
1549
  var IS_IOS = engineIsIos;
1550
1550
  var IS_IOS_PEBBLE = engineIsIosPebble;
1551
1551
  var IS_WEBOS_WEBKIT = engineIsWebosWebkit;
1552
- var IS_NODE$1 = engineIsNode;
1552
+ var IS_NODE$2 = engineIsNode;
1553
1553
 
1554
- var MutationObserver = global$9.MutationObserver || global$9.WebKitMutationObserver;
1555
- var document$2 = global$9.document;
1556
- var process$1 = global$9.process;
1557
- var Promise$1 = global$9.Promise;
1554
+ var MutationObserver = global$c.MutationObserver || global$c.WebKitMutationObserver;
1555
+ var document$2 = global$c.document;
1556
+ var process$1 = global$c.process;
1557
+ var Promise$1 = global$c.Promise;
1558
1558
  // Node.js 11 shows ExperimentalWarning on getting `queueMicrotask`
1559
- var queueMicrotaskDescriptor = getOwnPropertyDescriptor$1(global$9, 'queueMicrotask');
1559
+ var queueMicrotaskDescriptor = getOwnPropertyDescriptor$1(global$c, 'queueMicrotask');
1560
1560
  var queueMicrotask = queueMicrotaskDescriptor && queueMicrotaskDescriptor.value;
1561
1561
 
1562
1562
  var flush, head, last, notify$1, toggle, node, promise, then;
@@ -1565,7 +1565,7 @@
1565
1565
  if (!queueMicrotask) {
1566
1566
  flush = function () {
1567
1567
  var parent, fn;
1568
- if (IS_NODE$1 && (parent = process$1.domain)) parent.exit();
1568
+ if (IS_NODE$2 && (parent = process$1.domain)) parent.exit();
1569
1569
  while (head) {
1570
1570
  fn = head.fn;
1571
1571
  head = head.next;
@@ -1582,7 +1582,7 @@
1582
1582
 
1583
1583
  // browsers with MutationObserver, except iOS - https://github.com/zloirock/core-js/issues/339
1584
1584
  // also except WebOS Webkit https://github.com/zloirock/core-js/issues/898
1585
- if (!IS_IOS && !IS_NODE$1 && !IS_WEBOS_WEBKIT && MutationObserver && document$2) {
1585
+ if (!IS_IOS && !IS_NODE$2 && !IS_WEBOS_WEBKIT && MutationObserver && document$2) {
1586
1586
  toggle = true;
1587
1587
  node = document$2.createTextNode('');
1588
1588
  new MutationObserver(flush).observe(node, { characterData: true });
@@ -1600,7 +1600,7 @@
1600
1600
  then(flush);
1601
1601
  };
1602
1602
  // Node.js without promises
1603
- } else if (IS_NODE$1) {
1603
+ } else if (IS_NODE$2) {
1604
1604
  notify$1 = function () {
1605
1605
  process$1.nextTick(flush);
1606
1606
  };
@@ -1612,7 +1612,7 @@
1612
1612
  // - setTimeout
1613
1613
  } else {
1614
1614
  // strange IE + webpack dev server bug - use .bind(global)
1615
- macrotask = bind$1(macrotask, global$9);
1615
+ macrotask = bind$1(macrotask, global$c);
1616
1616
  notify$1 = function () {
1617
1617
  macrotask(flush);
1618
1618
  };
@@ -1630,7 +1630,7 @@
1630
1630
 
1631
1631
  var newPromiseCapability$2 = {};
1632
1632
 
1633
- var aCallable$1 = aCallable$5;
1633
+ var aCallable$2 = aCallable$6;
1634
1634
 
1635
1635
  var PromiseCapability = function (C) {
1636
1636
  var resolve, reject;
@@ -1639,8 +1639,8 @@
1639
1639
  resolve = $$resolve;
1640
1640
  reject = $$reject;
1641
1641
  });
1642
- this.resolve = aCallable$1(resolve);
1643
- this.reject = aCallable$1(reject);
1642
+ this.resolve = aCallable$2(resolve);
1643
+ this.reject = aCallable$2(reject);
1644
1644
  };
1645
1645
 
1646
1646
  // `NewPromiseCapability` abstract operation
@@ -1649,12 +1649,12 @@
1649
1649
  return new PromiseCapability(C);
1650
1650
  };
1651
1651
 
1652
- var anObject$5 = anObject$d;
1652
+ var anObject$6 = anObject$e;
1653
1653
  var isObject$2 = isObject$8;
1654
1654
  var newPromiseCapability$1 = newPromiseCapability$2;
1655
1655
 
1656
1656
  var promiseResolve$1 = function (C, x) {
1657
- anObject$5(C);
1657
+ anObject$6(C);
1658
1658
  if (isObject$2(x) && x.constructor === C) return x;
1659
1659
  var promiseCapability = newPromiseCapability$1.f(C);
1660
1660
  var resolve = promiseCapability.resolve;
@@ -1662,10 +1662,10 @@
1662
1662
  return promiseCapability.promise;
1663
1663
  };
1664
1664
 
1665
- var global$8 = global$F;
1665
+ var global$b = global$I;
1666
1666
 
1667
1667
  var hostReportErrors$1 = function (a, b) {
1668
- var console = global$8.console;
1668
+ var console = global$b.console;
1669
1669
  if (console && console.error) {
1670
1670
  arguments.length == 1 ? console.error(a) : console.error(a, b);
1671
1671
  }
@@ -1705,24 +1705,24 @@
1705
1705
 
1706
1706
  var engineIsBrowser = typeof window == 'object';
1707
1707
 
1708
- var $$3 = _export;
1709
- var global$7 = global$F;
1708
+ var $$5 = _export;
1709
+ var global$a = global$I;
1710
1710
  var getBuiltIn = getBuiltIn$7;
1711
- var call$4 = functionCall;
1711
+ var call$5 = functionCall;
1712
1712
  var NativePromise = nativePromiseConstructor;
1713
1713
  var redefine$1 = redefine$4.exports;
1714
1714
  var redefineAll = redefineAll$1;
1715
1715
  var setPrototypeOf = objectSetPrototypeOf;
1716
1716
  var setToStringTag = setToStringTag$1;
1717
1717
  var setSpecies = setSpecies$1;
1718
- var aCallable = aCallable$5;
1718
+ var aCallable$1 = aCallable$6;
1719
1719
  var isCallable$2 = isCallable$g;
1720
1720
  var isObject$1 = isObject$8;
1721
1721
  var anInstance = anInstance$1;
1722
1722
  var inspectSource = inspectSource$4;
1723
1723
  var iterate = iterate$1;
1724
1724
  var checkCorrectnessOfIteration = checkCorrectnessOfIteration$1;
1725
- var speciesConstructor = speciesConstructor$1;
1725
+ var speciesConstructor$1 = speciesConstructor$2;
1726
1726
  var task = task$1.set;
1727
1727
  var microtask = microtask$1;
1728
1728
  var promiseResolve = promiseResolve$1;
@@ -1734,7 +1734,7 @@
1734
1734
  var isForced = isForced_1;
1735
1735
  var wellKnownSymbol$4 = wellKnownSymbol$e;
1736
1736
  var IS_BROWSER = engineIsBrowser;
1737
- var IS_NODE = engineIsNode;
1737
+ var IS_NODE$1 = engineIsNode;
1738
1738
  var V8_VERSION = engineV8Version;
1739
1739
 
1740
1740
  var SPECIES$1 = wellKnownSymbol$4('species');
@@ -1746,14 +1746,14 @@
1746
1746
  var NativePromisePrototype = NativePromise && NativePromise.prototype;
1747
1747
  var PromiseConstructor = NativePromise;
1748
1748
  var PromisePrototype = NativePromisePrototype;
1749
- var TypeError$3 = global$7.TypeError;
1750
- var document$1 = global$7.document;
1751
- var process = global$7.process;
1749
+ var TypeError$4 = global$a.TypeError;
1750
+ var document$1 = global$a.document;
1751
+ var process = global$a.process;
1752
1752
  var newPromiseCapability = newPromiseCapabilityModule.f;
1753
1753
  var newGenericPromiseCapability = newPromiseCapability;
1754
1754
 
1755
- var DISPATCH_EVENT = !!(document$1 && document$1.createEvent && global$7.dispatchEvent);
1756
- var NATIVE_REJECTION_EVENT = isCallable$2(global$7.PromiseRejectionEvent);
1755
+ var DISPATCH_EVENT = !!(document$1 && document$1.createEvent && global$a.dispatchEvent);
1756
+ var NATIVE_REJECTION_EVENT = isCallable$2(global$a.PromiseRejectionEvent);
1757
1757
  var UNHANDLED_REJECTION = 'unhandledrejection';
1758
1758
  var REJECTION_HANDLED = 'rejectionhandled';
1759
1759
  var PENDING = 0;
@@ -1765,7 +1765,7 @@
1765
1765
 
1766
1766
  var Internal, OwnPromiseCapability, PromiseWrapper, nativeThen;
1767
1767
 
1768
- var FORCED = isForced(PROMISE, function () {
1768
+ var FORCED$1 = isForced(PROMISE, function () {
1769
1769
  var PROMISE_CONSTRUCTOR_SOURCE = inspectSource(PromiseConstructor);
1770
1770
  var GLOBAL_CORE_JS_PROMISE = PROMISE_CONSTRUCTOR_SOURCE !== String(PromiseConstructor);
1771
1771
  // V8 6.6 (Node 10 and Chrome 66) have a bug with resolving custom thenables
@@ -1789,7 +1789,7 @@
1789
1789
  return !GLOBAL_CORE_JS_PROMISE && IS_BROWSER && !NATIVE_REJECTION_EVENT;
1790
1790
  });
1791
1791
 
1792
- var INCORRECT_ITERATION = FORCED || !checkCorrectnessOfIteration(function (iterable) {
1792
+ var INCORRECT_ITERATION = FORCED$1 || !checkCorrectnessOfIteration(function (iterable) {
1793
1793
  PromiseConstructor.all(iterable)['catch'](function () { /* empty */ });
1794
1794
  });
1795
1795
 
@@ -1823,9 +1823,9 @@
1823
1823
  }
1824
1824
  }
1825
1825
  if (result === reaction.promise) {
1826
- reject(TypeError$3('Promise-chain cycle'));
1826
+ reject(TypeError$4('Promise-chain cycle'));
1827
1827
  } else if (then = isThenable(result)) {
1828
- call$4(then, result, resolve, reject);
1828
+ call$5(then, result, resolve, reject);
1829
1829
  } else resolve(result);
1830
1830
  } else reject(value);
1831
1831
  } catch (error) {
@@ -1855,26 +1855,26 @@
1855
1855
  event.promise = promise;
1856
1856
  event.reason = reason;
1857
1857
  event.initEvent(name, false, true);
1858
- global$7.dispatchEvent(event);
1858
+ global$a.dispatchEvent(event);
1859
1859
  } else event = { promise: promise, reason: reason };
1860
- if (!NATIVE_REJECTION_EVENT && (handler = global$7['on' + name])) handler(event);
1860
+ if (!NATIVE_REJECTION_EVENT && (handler = global$a['on' + name])) handler(event);
1861
1861
  else if (name === UNHANDLED_REJECTION) hostReportErrors('Unhandled promise rejection', reason);
1862
1862
  };
1863
1863
 
1864
1864
  var onUnhandled = function (state) {
1865
- call$4(task, global$7, function () {
1865
+ call$5(task, global$a, function () {
1866
1866
  var promise = state.facade;
1867
1867
  var value = state.value;
1868
1868
  var IS_UNHANDLED = isUnhandled(state);
1869
1869
  var result;
1870
1870
  if (IS_UNHANDLED) {
1871
1871
  result = perform(function () {
1872
- if (IS_NODE) {
1872
+ if (IS_NODE$1) {
1873
1873
  process.emit('unhandledRejection', value, promise);
1874
1874
  } else dispatchEvent(UNHANDLED_REJECTION, promise, value);
1875
1875
  });
1876
1876
  // Browsers should not trigger `rejectionHandled` event if it was handled here, NodeJS - should
1877
- state.rejection = IS_NODE || isUnhandled(state) ? UNHANDLED : HANDLED;
1877
+ state.rejection = IS_NODE$1 || isUnhandled(state) ? UNHANDLED : HANDLED;
1878
1878
  if (result.error) throw result.value;
1879
1879
  }
1880
1880
  });
@@ -1885,9 +1885,9 @@
1885
1885
  };
1886
1886
 
1887
1887
  var onHandleUnhandled = function (state) {
1888
- call$4(task, global$7, function () {
1888
+ call$5(task, global$a, function () {
1889
1889
  var promise = state.facade;
1890
- if (IS_NODE) {
1890
+ if (IS_NODE$1) {
1891
1891
  process.emit('rejectionHandled', promise);
1892
1892
  } else dispatchEvent(REJECTION_HANDLED, promise, state.value);
1893
1893
  });
@@ -1913,13 +1913,13 @@
1913
1913
  state.done = true;
1914
1914
  if (unwrap) state = unwrap;
1915
1915
  try {
1916
- if (state.facade === value) throw TypeError$3("Promise can't be resolved itself");
1916
+ if (state.facade === value) throw TypeError$4("Promise can't be resolved itself");
1917
1917
  var then = isThenable(value);
1918
1918
  if (then) {
1919
1919
  microtask(function () {
1920
1920
  var wrapper = { done: false };
1921
1921
  try {
1922
- call$4(then, value,
1922
+ call$5(then, value,
1923
1923
  bind(internalResolve, wrapper, state),
1924
1924
  bind(internalReject, wrapper, state)
1925
1925
  );
@@ -1938,12 +1938,12 @@
1938
1938
  };
1939
1939
 
1940
1940
  // constructor polyfill
1941
- if (FORCED) {
1941
+ if (FORCED$1) {
1942
1942
  // 25.4.3.1 Promise(executor)
1943
1943
  PromiseConstructor = function Promise(executor) {
1944
1944
  anInstance(this, PromisePrototype);
1945
- aCallable(executor);
1946
- call$4(Internal, this);
1945
+ aCallable$1(executor);
1946
+ call$5(Internal, this);
1947
1947
  var state = getInternalState$1(this);
1948
1948
  try {
1949
1949
  executor(bind(internalResolve, state), bind(internalReject, state));
@@ -1971,11 +1971,11 @@
1971
1971
  // eslint-disable-next-line unicorn/no-thenable -- safe
1972
1972
  then: function then(onFulfilled, onRejected) {
1973
1973
  var state = getInternalPromiseState(this);
1974
- var reaction = newPromiseCapability(speciesConstructor(this, PromiseConstructor));
1974
+ var reaction = newPromiseCapability(speciesConstructor$1(this, PromiseConstructor));
1975
1975
  state.parent = true;
1976
1976
  reaction.ok = isCallable$2(onFulfilled) ? onFulfilled : true;
1977
1977
  reaction.fail = isCallable$2(onRejected) && onRejected;
1978
- reaction.domain = IS_NODE ? process.domain : undefined;
1978
+ reaction.domain = IS_NODE$1 ? process.domain : undefined;
1979
1979
  if (state.state == PENDING) state.reactions.add(reaction);
1980
1980
  else microtask(function () {
1981
1981
  callReaction(reaction, state);
@@ -2009,7 +2009,7 @@
2009
2009
  redefine$1(NativePromisePrototype, 'then', function then(onFulfilled, onRejected) {
2010
2010
  var that = this;
2011
2011
  return new PromiseConstructor(function (resolve, reject) {
2012
- call$4(nativeThen, that, resolve, reject);
2012
+ call$5(nativeThen, that, resolve, reject);
2013
2013
  }).then(onFulfilled, onRejected);
2014
2014
  // https://github.com/zloirock/core-js/issues/640
2015
2015
  }, { unsafe: true });
@@ -2030,7 +2030,7 @@
2030
2030
  }
2031
2031
  }
2032
2032
 
2033
- $$3({ global: true, wrap: true, forced: FORCED }, {
2033
+ $$5({ global: true, wrap: true, forced: FORCED$1 }, {
2034
2034
  Promise: PromiseConstructor
2035
2035
  });
2036
2036
 
@@ -2040,17 +2040,17 @@
2040
2040
  PromiseWrapper = getBuiltIn(PROMISE);
2041
2041
 
2042
2042
  // statics
2043
- $$3({ target: PROMISE, stat: true, forced: FORCED }, {
2043
+ $$5({ target: PROMISE, stat: true, forced: FORCED$1 }, {
2044
2044
  // `Promise.reject` method
2045
2045
  // https://tc39.es/ecma262/#sec-promise.reject
2046
2046
  reject: function reject(r) {
2047
2047
  var capability = newPromiseCapability(this);
2048
- call$4(capability.reject, undefined, r);
2048
+ call$5(capability.reject, undefined, r);
2049
2049
  return capability.promise;
2050
2050
  }
2051
2051
  });
2052
2052
 
2053
- $$3({ target: PROMISE, stat: true, forced: FORCED }, {
2053
+ $$5({ target: PROMISE, stat: true, forced: FORCED$1 }, {
2054
2054
  // `Promise.resolve` method
2055
2055
  // https://tc39.es/ecma262/#sec-promise.resolve
2056
2056
  resolve: function resolve(x) {
@@ -2058,7 +2058,7 @@
2058
2058
  }
2059
2059
  });
2060
2060
 
2061
- $$3({ target: PROMISE, stat: true, forced: INCORRECT_ITERATION }, {
2061
+ $$5({ target: PROMISE, stat: true, forced: INCORRECT_ITERATION }, {
2062
2062
  // `Promise.all` method
2063
2063
  // https://tc39.es/ecma262/#sec-promise.all
2064
2064
  all: function all(iterable) {
@@ -2067,7 +2067,7 @@
2067
2067
  var resolve = capability.resolve;
2068
2068
  var reject = capability.reject;
2069
2069
  var result = perform(function () {
2070
- var $promiseResolve = aCallable(C.resolve);
2070
+ var $promiseResolve = aCallable$1(C.resolve);
2071
2071
  var values = [];
2072
2072
  var counter = 0;
2073
2073
  var remaining = 1;
@@ -2075,7 +2075,7 @@
2075
2075
  var index = counter++;
2076
2076
  var alreadyCalled = false;
2077
2077
  remaining++;
2078
- call$4($promiseResolve, C, promise).then(function (value) {
2078
+ call$5($promiseResolve, C, promise).then(function (value) {
2079
2079
  if (alreadyCalled) return;
2080
2080
  alreadyCalled = true;
2081
2081
  values[index] = value;
@@ -2094,9 +2094,9 @@
2094
2094
  var capability = newPromiseCapability(C);
2095
2095
  var reject = capability.reject;
2096
2096
  var result = perform(function () {
2097
- var $promiseResolve = aCallable(C.resolve);
2097
+ var $promiseResolve = aCallable$1(C.resolve);
2098
2098
  iterate(iterable, function (promise) {
2099
- call$4($promiseResolve, C, promise).then(capability.resolve, reject);
2099
+ call$5($promiseResolve, C, promise).then(capability.resolve, reject);
2100
2100
  });
2101
2101
  });
2102
2102
  if (result.error) reject(result.value);
@@ -2115,24 +2115,24 @@
2115
2115
  };
2116
2116
 
2117
2117
  var DESCRIPTORS$1 = descriptors;
2118
- var uncurryThis$6 = functionUncurryThis;
2119
- var call$3 = functionCall;
2120
- var fails$5 = fails$f;
2118
+ var uncurryThis$9 = functionUncurryThis;
2119
+ var call$4 = functionCall;
2120
+ var fails$8 = fails$i;
2121
2121
  var objectKeys$1 = objectKeys$2;
2122
2122
  var getOwnPropertySymbolsModule = objectGetOwnPropertySymbols;
2123
2123
  var propertyIsEnumerableModule = objectPropertyIsEnumerable;
2124
- var toObject$1 = toObject$3;
2125
- var IndexedObject = indexedObject;
2124
+ var toObject$2 = toObject$4;
2125
+ var IndexedObject$1 = indexedObject;
2126
2126
 
2127
2127
  // eslint-disable-next-line es/no-object-assign -- safe
2128
2128
  var $assign = Object.assign;
2129
2129
  // eslint-disable-next-line es/no-object-defineproperty -- required for testing
2130
2130
  var defineProperty = Object.defineProperty;
2131
- var concat$1 = uncurryThis$6([].concat);
2131
+ var concat$1 = uncurryThis$9([].concat);
2132
2132
 
2133
2133
  // `Object.assign` method
2134
2134
  // https://tc39.es/ecma262/#sec-object.assign
2135
- var objectAssign = !$assign || fails$5(function () {
2135
+ var objectAssign = !$assign || fails$8(function () {
2136
2136
  // should have correct order of operations (Edge bug)
2137
2137
  if (DESCRIPTORS$1 && $assign({ b: 1 }, $assign(defineProperty({}, 'a', {
2138
2138
  enumerable: true,
@@ -2153,31 +2153,31 @@
2153
2153
  alphabet.split('').forEach(function (chr) { B[chr] = chr; });
2154
2154
  return $assign({}, A)[symbol] != 7 || objectKeys$1($assign({}, B)).join('') != alphabet;
2155
2155
  }) ? function assign(target, source) { // eslint-disable-line no-unused-vars -- required for `.length`
2156
- var T = toObject$1(target);
2156
+ var T = toObject$2(target);
2157
2157
  var argumentsLength = arguments.length;
2158
2158
  var index = 1;
2159
2159
  var getOwnPropertySymbols = getOwnPropertySymbolsModule.f;
2160
2160
  var propertyIsEnumerable = propertyIsEnumerableModule.f;
2161
2161
  while (argumentsLength > index) {
2162
- var S = IndexedObject(arguments[index++]);
2162
+ var S = IndexedObject$1(arguments[index++]);
2163
2163
  var keys = getOwnPropertySymbols ? concat$1(objectKeys$1(S), getOwnPropertySymbols(S)) : objectKeys$1(S);
2164
2164
  var length = keys.length;
2165
2165
  var j = 0;
2166
2166
  var key;
2167
2167
  while (length > j) {
2168
2168
  key = keys[j++];
2169
- if (!DESCRIPTORS$1 || call$3(propertyIsEnumerable, S, key)) T[key] = S[key];
2169
+ if (!DESCRIPTORS$1 || call$4(propertyIsEnumerable, S, key)) T[key] = S[key];
2170
2170
  }
2171
2171
  } return T;
2172
2172
  } : $assign;
2173
2173
 
2174
- var $$2 = _export;
2174
+ var $$4 = _export;
2175
2175
  var assign = objectAssign;
2176
2176
 
2177
2177
  // `Object.assign` method
2178
2178
  // https://tc39.es/ecma262/#sec-object.assign
2179
2179
  // eslint-disable-next-line es/no-object-assign -- required for testing
2180
- $$2({ target: 'Object', stat: true, forced: Object.assign !== assign }, {
2180
+ $$4({ target: 'Object', stat: true, forced: Object.assign !== assign }, {
2181
2181
  assign: assign
2182
2182
  });
2183
2183
 
@@ -2830,6 +2830,15 @@
2830
2830
  });
2831
2831
  };
2832
2832
 
2833
+ this.trackExperience = function (payload) {
2834
+ return _this.track('experience', payload, {
2835
+ plugins: {
2836
+ all: true,
2837
+ ninetailed: false
2838
+ }
2839
+ });
2840
+ };
2841
+
2833
2842
  this.identify = function (uid, traits, options) {
2834
2843
  return _this.instance.identify(uid, traits, _this.buildOptions(options));
2835
2844
  };
@@ -3043,12 +3052,12 @@
3043
3052
  return variants.length > 0;
3044
3053
  };
3045
3054
 
3046
- var global$6 = global$F;
3055
+ var global$9 = global$I;
3047
3056
  var classof$2 = classof$6;
3048
3057
 
3049
- var String$1 = global$6.String;
3058
+ var String$1 = global$9.String;
3050
3059
 
3051
- var toString$4 = function (argument) {
3060
+ var toString$7 = function (argument) {
3052
3061
  if (classof$2(argument) === 'Symbol') throw TypeError('Cannot convert a Symbol value to a string');
3053
3062
  return String$1(argument);
3054
3063
  };
@@ -3066,14 +3075,14 @@
3066
3075
  return isObject(it) && ((isRegExp = it[MATCH$1]) !== undefined ? !!isRegExp : classof$1(it) == 'RegExp');
3067
3076
  };
3068
3077
 
3069
- var global$5 = global$F;
3070
- var isRegExp = isRegexp;
3078
+ var global$8 = global$I;
3079
+ var isRegExp$1 = isRegexp;
3071
3080
 
3072
- var TypeError$2 = global$5.TypeError;
3081
+ var TypeError$3 = global$8.TypeError;
3073
3082
 
3074
3083
  var notARegexp = function (it) {
3075
- if (isRegExp(it)) {
3076
- throw TypeError$2("The method doesn't accept regular expressions");
3084
+ if (isRegExp$1(it)) {
3085
+ throw TypeError$3("The method doesn't accept regular expressions");
3077
3086
  } return it;
3078
3087
  };
3079
3088
 
@@ -3093,19 +3102,19 @@
3093
3102
  } return false;
3094
3103
  };
3095
3104
 
3096
- var $$1 = _export;
3097
- var uncurryThis$5 = functionUncurryThis;
3105
+ var $$3 = _export;
3106
+ var uncurryThis$8 = functionUncurryThis;
3098
3107
  var getOwnPropertyDescriptor = objectGetOwnPropertyDescriptor.f;
3099
- var toLength$1 = toLength$3;
3100
- var toString$3 = toString$4;
3108
+ var toLength$2 = toLength$4;
3109
+ var toString$6 = toString$7;
3101
3110
  var notARegExp = notARegexp;
3102
- var requireObjectCoercible$2 = requireObjectCoercible$5;
3111
+ var requireObjectCoercible$4 = requireObjectCoercible$7;
3103
3112
  var correctIsRegExpLogic = correctIsRegexpLogic;
3104
3113
 
3105
3114
  // eslint-disable-next-line es/no-string-prototype-startswith -- safe
3106
- var un$StartsWith = uncurryThis$5(''.startsWith);
3107
- var stringSlice$4 = uncurryThis$5(''.slice);
3108
- var min$1 = Math.min;
3115
+ var un$StartsWith = uncurryThis$8(''.startsWith);
3116
+ var stringSlice$5 = uncurryThis$8(''.slice);
3117
+ var min$2 = Math.min;
3109
3118
 
3110
3119
  var CORRECT_IS_REGEXP_LOGIC = correctIsRegExpLogic('startsWith');
3111
3120
  // https://github.com/zloirock/core-js/pull/702
@@ -3116,24 +3125,24 @@
3116
3125
 
3117
3126
  // `String.prototype.startsWith` method
3118
3127
  // https://tc39.es/ecma262/#sec-string.prototype.startswith
3119
- $$1({ target: 'String', proto: true, forced: !MDN_POLYFILL_BUG && !CORRECT_IS_REGEXP_LOGIC }, {
3128
+ $$3({ target: 'String', proto: true, forced: !MDN_POLYFILL_BUG && !CORRECT_IS_REGEXP_LOGIC }, {
3120
3129
  startsWith: function startsWith(searchString /* , position = 0 */) {
3121
- var that = toString$3(requireObjectCoercible$2(this));
3130
+ var that = toString$6(requireObjectCoercible$4(this));
3122
3131
  notARegExp(searchString);
3123
- var index = toLength$1(min$1(arguments.length > 1 ? arguments[1] : undefined, that.length));
3124
- var search = toString$3(searchString);
3132
+ var index = toLength$2(min$2(arguments.length > 1 ? arguments[1] : undefined, that.length));
3133
+ var search = toString$6(searchString);
3125
3134
  return un$StartsWith
3126
3135
  ? un$StartsWith(that, search, index)
3127
- : stringSlice$4(that, index, index + search.length) === search;
3136
+ : stringSlice$5(that, index, index + search.length) === search;
3128
3137
  }
3129
3138
  });
3130
3139
 
3131
- var anObject$4 = anObject$d;
3140
+ var anObject$5 = anObject$e;
3132
3141
 
3133
3142
  // `RegExp.prototype.flags` getter implementation
3134
3143
  // https://tc39.es/ecma262/#sec-get-regexp.prototype.flags
3135
3144
  var regexpFlags$1 = function () {
3136
- var that = anObject$4(this);
3145
+ var that = anObject$5(this);
3137
3146
  var result = '';
3138
3147
  if (that.global) result += 'g';
3139
3148
  if (that.ignoreCase) result += 'i';
@@ -3144,13 +3153,13 @@
3144
3153
  return result;
3145
3154
  };
3146
3155
 
3147
- var fails$4 = fails$f;
3148
- var global$4 = global$F;
3156
+ var fails$7 = fails$i;
3157
+ var global$7 = global$I;
3149
3158
 
3150
3159
  // babel-minify and Closure Compiler transpiles RegExp('a', 'y') -> /a/y and it causes SyntaxError
3151
- var $RegExp$2 = global$4.RegExp;
3160
+ var $RegExp$2 = global$7.RegExp;
3152
3161
 
3153
- var UNSUPPORTED_Y$1 = fails$4(function () {
3162
+ var UNSUPPORTED_Y$2 = fails$7(function () {
3154
3163
  var re = $RegExp$2('a', 'y');
3155
3164
  re.lastIndex = 2;
3156
3165
  return re.exec('abcd') != null;
@@ -3158,11 +3167,11 @@
3158
3167
 
3159
3168
  // UC Browser bug
3160
3169
  // https://github.com/zloirock/core-js/issues/1008
3161
- var MISSED_STICKY = UNSUPPORTED_Y$1 || fails$4(function () {
3170
+ var MISSED_STICKY = UNSUPPORTED_Y$2 || fails$7(function () {
3162
3171
  return !$RegExp$2('a', 'y').sticky;
3163
3172
  });
3164
3173
 
3165
- var BROKEN_CARET = UNSUPPORTED_Y$1 || fails$4(function () {
3174
+ var BROKEN_CARET = UNSUPPORTED_Y$2 || fails$7(function () {
3166
3175
  // https://bugzilla.mozilla.org/show_bug.cgi?id=773687
3167
3176
  var re = $RegExp$2('^r', 'gy');
3168
3177
  re.lastIndex = 2;
@@ -3172,15 +3181,15 @@
3172
3181
  var regexpStickyHelpers = {
3173
3182
  BROKEN_CARET: BROKEN_CARET,
3174
3183
  MISSED_STICKY: MISSED_STICKY,
3175
- UNSUPPORTED_Y: UNSUPPORTED_Y$1
3184
+ UNSUPPORTED_Y: UNSUPPORTED_Y$2
3176
3185
  };
3177
3186
 
3178
3187
  var objectDefineProperties = {};
3179
3188
 
3180
3189
  var DESCRIPTORS = descriptors;
3181
3190
  var V8_PROTOTYPE_DEFINE_BUG = v8PrototypeDefineBug;
3182
- var definePropertyModule = objectDefineProperty;
3183
- var anObject$3 = anObject$d;
3191
+ var definePropertyModule$1 = objectDefineProperty;
3192
+ var anObject$4 = anObject$e;
3184
3193
  var toIndexedObject = toIndexedObject$4;
3185
3194
  var objectKeys = objectKeys$2;
3186
3195
 
@@ -3188,19 +3197,19 @@
3188
3197
  // https://tc39.es/ecma262/#sec-object.defineproperties
3189
3198
  // eslint-disable-next-line es/no-object-defineproperties -- safe
3190
3199
  objectDefineProperties.f = DESCRIPTORS && !V8_PROTOTYPE_DEFINE_BUG ? Object.defineProperties : function defineProperties(O, Properties) {
3191
- anObject$3(O);
3200
+ anObject$4(O);
3192
3201
  var props = toIndexedObject(Properties);
3193
3202
  var keys = objectKeys(Properties);
3194
3203
  var length = keys.length;
3195
3204
  var index = 0;
3196
3205
  var key;
3197
- while (length > index) definePropertyModule.f(O, key = keys[index++], props[key]);
3206
+ while (length > index) definePropertyModule$1.f(O, key = keys[index++], props[key]);
3198
3207
  return O;
3199
3208
  };
3200
3209
 
3201
3210
  /* global ActiveXObject -- old IE, WSH */
3202
3211
 
3203
- var anObject$2 = anObject$d;
3212
+ var anObject$3 = anObject$e;
3204
3213
  var definePropertiesModule = objectDefineProperties;
3205
3214
  var enumBugKeys = enumBugKeys$3;
3206
3215
  var hiddenKeys = hiddenKeys$4;
@@ -3273,7 +3282,7 @@
3273
3282
  var objectCreate = Object.create || function create(O, Properties) {
3274
3283
  var result;
3275
3284
  if (O !== null) {
3276
- EmptyConstructor[PROTOTYPE] = anObject$2(O);
3285
+ EmptyConstructor[PROTOTYPE] = anObject$3(O);
3277
3286
  result = new EmptyConstructor();
3278
3287
  EmptyConstructor[PROTOTYPE] = null;
3279
3288
  // add "__proto__" for Object.getPrototypeOf polyfill
@@ -3282,24 +3291,24 @@
3282
3291
  return Properties === undefined ? result : definePropertiesModule.f(result, Properties);
3283
3292
  };
3284
3293
 
3285
- var fails$3 = fails$f;
3286
- var global$3 = global$F;
3294
+ var fails$6 = fails$i;
3295
+ var global$6 = global$I;
3287
3296
 
3288
3297
  // babel-minify and Closure Compiler transpiles RegExp('.', 's') -> /./s and it causes SyntaxError
3289
- var $RegExp$1 = global$3.RegExp;
3298
+ var $RegExp$1 = global$6.RegExp;
3290
3299
 
3291
- var regexpUnsupportedDotAll = fails$3(function () {
3300
+ var regexpUnsupportedDotAll = fails$6(function () {
3292
3301
  var re = $RegExp$1('.', 's');
3293
3302
  return !(re.dotAll && re.exec('\n') && re.flags === 's');
3294
3303
  });
3295
3304
 
3296
- var fails$2 = fails$f;
3297
- var global$2 = global$F;
3305
+ var fails$5 = fails$i;
3306
+ var global$5 = global$I;
3298
3307
 
3299
3308
  // babel-minify and Closure Compiler transpiles RegExp('(?<a>b)', 'g') -> /(?<a>b)/g and it causes SyntaxError
3300
- var $RegExp = global$2.RegExp;
3309
+ var $RegExp = global$5.RegExp;
3301
3310
 
3302
- var regexpUnsupportedNcg = fails$2(function () {
3311
+ var regexpUnsupportedNcg = fails$5(function () {
3303
3312
  var re = $RegExp('(?<a>b)', 'g');
3304
3313
  return re.exec('b').groups.a !== 'b' ||
3305
3314
  'b'.replace(re, '$<a>c') !== 'bc';
@@ -3307,11 +3316,11 @@
3307
3316
 
3308
3317
  /* eslint-disable regexp/no-empty-capturing-group, regexp/no-empty-group, regexp/no-lazy-ends -- testing */
3309
3318
  /* eslint-disable regexp/no-useless-quantifier -- testing */
3310
- var call$2 = functionCall;
3311
- var uncurryThis$4 = functionUncurryThis;
3312
- var toString$2 = toString$4;
3319
+ var call$3 = functionCall;
3320
+ var uncurryThis$7 = functionUncurryThis;
3321
+ var toString$5 = toString$7;
3313
3322
  var regexpFlags = regexpFlags$1;
3314
- var stickyHelpers = regexpStickyHelpers;
3323
+ var stickyHelpers$1 = regexpStickyHelpers;
3315
3324
  var shared = shared$4.exports;
3316
3325
  var create = objectCreate;
3317
3326
  var getInternalState = internalState.get;
@@ -3321,55 +3330,55 @@
3321
3330
  var nativeReplace = shared('native-string-replace', String.prototype.replace);
3322
3331
  var nativeExec = RegExp.prototype.exec;
3323
3332
  var patchedExec = nativeExec;
3324
- var charAt$3 = uncurryThis$4(''.charAt);
3325
- var indexOf = uncurryThis$4(''.indexOf);
3326
- var replace$1 = uncurryThis$4(''.replace);
3327
- var stringSlice$3 = uncurryThis$4(''.slice);
3333
+ var charAt$3 = uncurryThis$7(''.charAt);
3334
+ var indexOf = uncurryThis$7(''.indexOf);
3335
+ var replace$2 = uncurryThis$7(''.replace);
3336
+ var stringSlice$4 = uncurryThis$7(''.slice);
3328
3337
 
3329
3338
  var UPDATES_LAST_INDEX_WRONG = (function () {
3330
3339
  var re1 = /a/;
3331
3340
  var re2 = /b*/g;
3332
- call$2(nativeExec, re1, 'a');
3333
- call$2(nativeExec, re2, 'a');
3341
+ call$3(nativeExec, re1, 'a');
3342
+ call$3(nativeExec, re2, 'a');
3334
3343
  return re1.lastIndex !== 0 || re2.lastIndex !== 0;
3335
3344
  })();
3336
3345
 
3337
- var UNSUPPORTED_Y = stickyHelpers.BROKEN_CARET;
3346
+ var UNSUPPORTED_Y$1 = stickyHelpers$1.BROKEN_CARET;
3338
3347
 
3339
3348
  // nonparticipating capturing group, copied from es5-shim's String#split patch.
3340
3349
  var NPCG_INCLUDED = /()??/.exec('')[1] !== undefined;
3341
3350
 
3342
- var PATCH = UPDATES_LAST_INDEX_WRONG || NPCG_INCLUDED || UNSUPPORTED_Y || UNSUPPORTED_DOT_ALL || UNSUPPORTED_NCG;
3351
+ var PATCH = UPDATES_LAST_INDEX_WRONG || NPCG_INCLUDED || UNSUPPORTED_Y$1 || UNSUPPORTED_DOT_ALL || UNSUPPORTED_NCG;
3343
3352
 
3344
3353
  if (PATCH) {
3345
3354
  patchedExec = function exec(string) {
3346
3355
  var re = this;
3347
3356
  var state = getInternalState(re);
3348
- var str = toString$2(string);
3357
+ var str = toString$5(string);
3349
3358
  var raw = state.raw;
3350
3359
  var result, reCopy, lastIndex, match, i, object, group;
3351
3360
 
3352
3361
  if (raw) {
3353
3362
  raw.lastIndex = re.lastIndex;
3354
- result = call$2(patchedExec, raw, str);
3363
+ result = call$3(patchedExec, raw, str);
3355
3364
  re.lastIndex = raw.lastIndex;
3356
3365
  return result;
3357
3366
  }
3358
3367
 
3359
3368
  var groups = state.groups;
3360
- var sticky = UNSUPPORTED_Y && re.sticky;
3361
- var flags = call$2(regexpFlags, re);
3369
+ var sticky = UNSUPPORTED_Y$1 && re.sticky;
3370
+ var flags = call$3(regexpFlags, re);
3362
3371
  var source = re.source;
3363
3372
  var charsAdded = 0;
3364
3373
  var strCopy = str;
3365
3374
 
3366
3375
  if (sticky) {
3367
- flags = replace$1(flags, 'y', '');
3376
+ flags = replace$2(flags, 'y', '');
3368
3377
  if (indexOf(flags, 'g') === -1) {
3369
3378
  flags += 'g';
3370
3379
  }
3371
3380
 
3372
- strCopy = stringSlice$3(str, re.lastIndex);
3381
+ strCopy = stringSlice$4(str, re.lastIndex);
3373
3382
  // Support anchored sticky behavior.
3374
3383
  if (re.lastIndex > 0 && (!re.multiline || re.multiline && charAt$3(str, re.lastIndex - 1) !== '\n')) {
3375
3384
  source = '(?: ' + source + ')';
@@ -3386,12 +3395,12 @@
3386
3395
  }
3387
3396
  if (UPDATES_LAST_INDEX_WRONG) lastIndex = re.lastIndex;
3388
3397
 
3389
- match = call$2(nativeExec, sticky ? reCopy : re, strCopy);
3398
+ match = call$3(nativeExec, sticky ? reCopy : re, strCopy);
3390
3399
 
3391
3400
  if (sticky) {
3392
3401
  if (match) {
3393
- match.input = stringSlice$3(match.input, charsAdded);
3394
- match[0] = stringSlice$3(match[0], charsAdded);
3402
+ match.input = stringSlice$4(match.input, charsAdded);
3403
+ match[0] = stringSlice$4(match[0], charsAdded);
3395
3404
  match.index = re.lastIndex;
3396
3405
  re.lastIndex += match[0].length;
3397
3406
  } else re.lastIndex = 0;
@@ -3401,7 +3410,7 @@
3401
3410
  if (NPCG_INCLUDED && match && match.length > 1) {
3402
3411
  // Fix browsers whose `exec` methods don't consistently return `undefined`
3403
3412
  // for NPCG, like IE8. NOTE: This doesn' work for /(.?)?/
3404
- call$2(nativeReplace, match[0], reCopy, function () {
3413
+ call$3(nativeReplace, match[0], reCopy, function () {
3405
3414
  for (i = 1; i < arguments.length - 2; i++) {
3406
3415
  if (arguments[i] === undefined) match[i] = undefined;
3407
3416
  }
@@ -3420,23 +3429,23 @@
3420
3429
  };
3421
3430
  }
3422
3431
 
3423
- var regexpExec$2 = patchedExec;
3432
+ var regexpExec$3 = patchedExec;
3424
3433
 
3425
- var $ = _export;
3426
- var exec = regexpExec$2;
3434
+ var $$2 = _export;
3435
+ var exec$2 = regexpExec$3;
3427
3436
 
3428
3437
  // `RegExp.prototype.exec` method
3429
3438
  // https://tc39.es/ecma262/#sec-regexp.prototype.exec
3430
- $({ target: 'RegExp', proto: true, forced: /./.exec !== exec }, {
3431
- exec: exec
3439
+ $$2({ target: 'RegExp', proto: true, forced: /./.exec !== exec$2 }, {
3440
+ exec: exec$2
3432
3441
  });
3433
3442
 
3434
3443
  // TODO: Remove from `core-js@4` since it's moved to entry points
3435
3444
 
3436
- var uncurryThis$3 = functionUncurryThis;
3445
+ var uncurryThis$6 = functionUncurryThis;
3437
3446
  var redefine = redefine$4.exports;
3438
- var regexpExec$1 = regexpExec$2;
3439
- var fails$1 = fails$f;
3447
+ var regexpExec$2 = regexpExec$3;
3448
+ var fails$4 = fails$i;
3440
3449
  var wellKnownSymbol$1 = wellKnownSymbol$e;
3441
3450
  var createNonEnumerableProperty = createNonEnumerableProperty$4;
3442
3451
 
@@ -3446,14 +3455,14 @@
3446
3455
  var fixRegexpWellKnownSymbolLogic = function (KEY, exec, FORCED, SHAM) {
3447
3456
  var SYMBOL = wellKnownSymbol$1(KEY);
3448
3457
 
3449
- var DELEGATES_TO_SYMBOL = !fails$1(function () {
3458
+ var DELEGATES_TO_SYMBOL = !fails$4(function () {
3450
3459
  // String methods call symbol-named RegEp methods
3451
3460
  var O = {};
3452
3461
  O[SYMBOL] = function () { return 7; };
3453
3462
  return ''[KEY](O) != 7;
3454
3463
  });
3455
3464
 
3456
- var DELEGATES_TO_EXEC = DELEGATES_TO_SYMBOL && !fails$1(function () {
3465
+ var DELEGATES_TO_EXEC = DELEGATES_TO_SYMBOL && !fails$4(function () {
3457
3466
  // Symbol-named RegExp methods call .exec
3458
3467
  var execCalled = false;
3459
3468
  var re = /a/;
@@ -3482,11 +3491,11 @@
3482
3491
  !DELEGATES_TO_EXEC ||
3483
3492
  FORCED
3484
3493
  ) {
3485
- var uncurriedNativeRegExpMethod = uncurryThis$3(/./[SYMBOL]);
3494
+ var uncurriedNativeRegExpMethod = uncurryThis$6(/./[SYMBOL]);
3486
3495
  var methods = exec(SYMBOL, ''[KEY], function (nativeMethod, regexp, str, arg2, forceStringMethod) {
3487
- var uncurriedNativeMethod = uncurryThis$3(nativeMethod);
3496
+ var uncurriedNativeMethod = uncurryThis$6(nativeMethod);
3488
3497
  var $exec = regexp.exec;
3489
- if ($exec === regexpExec$1 || $exec === RegExpPrototype.exec) {
3498
+ if ($exec === regexpExec$2 || $exec === RegExpPrototype.exec) {
3490
3499
  if (DELEGATES_TO_SYMBOL && !forceStringMethod) {
3491
3500
  // The native String method already delegates to @@method (this
3492
3501
  // polyfilled function), leasing to infinite recursion.
@@ -3505,18 +3514,18 @@
3505
3514
  if (SHAM) createNonEnumerableProperty(RegExpPrototype[SYMBOL], 'sham', true);
3506
3515
  };
3507
3516
 
3508
- var uncurryThis$2 = functionUncurryThis;
3517
+ var uncurryThis$5 = functionUncurryThis;
3509
3518
  var toIntegerOrInfinity$1 = toIntegerOrInfinity$4;
3510
- var toString$1 = toString$4;
3511
- var requireObjectCoercible$1 = requireObjectCoercible$5;
3519
+ var toString$4 = toString$7;
3520
+ var requireObjectCoercible$3 = requireObjectCoercible$7;
3512
3521
 
3513
- var charAt$2 = uncurryThis$2(''.charAt);
3514
- var charCodeAt = uncurryThis$2(''.charCodeAt);
3515
- var stringSlice$2 = uncurryThis$2(''.slice);
3522
+ var charAt$2 = uncurryThis$5(''.charAt);
3523
+ var charCodeAt = uncurryThis$5(''.charCodeAt);
3524
+ var stringSlice$3 = uncurryThis$5(''.slice);
3516
3525
 
3517
- var createMethod = function (CONVERT_TO_STRING) {
3526
+ var createMethod$2 = function (CONVERT_TO_STRING) {
3518
3527
  return function ($this, pos) {
3519
- var S = toString$1(requireObjectCoercible$1($this));
3528
+ var S = toString$4(requireObjectCoercible$3($this));
3520
3529
  var position = toIntegerOrInfinity$1(pos);
3521
3530
  var size = S.length;
3522
3531
  var first, second;
@@ -3528,7 +3537,7 @@
3528
3537
  ? charAt$2(S, position)
3529
3538
  : first
3530
3539
  : CONVERT_TO_STRING
3531
- ? stringSlice$2(S, position, position + 2)
3540
+ ? stringSlice$3(S, position, position + 2)
3532
3541
  : (first - 0xD800 << 10) + (second - 0xDC00) + 0x10000;
3533
3542
  };
3534
3543
  };
@@ -3536,27 +3545,27 @@
3536
3545
  var stringMultibyte = {
3537
3546
  // `String.prototype.codePointAt` method
3538
3547
  // https://tc39.es/ecma262/#sec-string.prototype.codepointat
3539
- codeAt: createMethod(false),
3548
+ codeAt: createMethod$2(false),
3540
3549
  // `String.prototype.at` method
3541
3550
  // https://github.com/mathiasbynens/String.prototype.at
3542
- charAt: createMethod(true)
3551
+ charAt: createMethod$2(true)
3543
3552
  };
3544
3553
 
3545
3554
  var charAt$1 = stringMultibyte.charAt;
3546
3555
 
3547
3556
  // `AdvanceStringIndex` abstract operation
3548
3557
  // https://tc39.es/ecma262/#sec-advancestringindex
3549
- var advanceStringIndex$1 = function (S, index, unicode) {
3558
+ var advanceStringIndex$2 = function (S, index, unicode) {
3550
3559
  return index + (unicode ? charAt$1(S, index).length : 1);
3551
3560
  };
3552
3561
 
3553
- var uncurryThis$1 = functionUncurryThis;
3554
- var toObject = toObject$3;
3562
+ var uncurryThis$4 = functionUncurryThis;
3563
+ var toObject$1 = toObject$4;
3555
3564
 
3556
3565
  var floor = Math.floor;
3557
- var charAt = uncurryThis$1(''.charAt);
3558
- var replace = uncurryThis$1(''.replace);
3559
- var stringSlice$1 = uncurryThis$1(''.slice);
3566
+ var charAt = uncurryThis$4(''.charAt);
3567
+ var replace$1 = uncurryThis$4(''.replace);
3568
+ var stringSlice$2 = uncurryThis$4(''.slice);
3560
3569
  var SUBSTITUTION_SYMBOLS = /\$([$&'`]|\d{1,2}|<[^>]*>)/g;
3561
3570
  var SUBSTITUTION_SYMBOLS_NO_NAMED = /\$([$&'`]|\d{1,2})/g;
3562
3571
 
@@ -3567,18 +3576,18 @@
3567
3576
  var m = captures.length;
3568
3577
  var symbols = SUBSTITUTION_SYMBOLS_NO_NAMED;
3569
3578
  if (namedCaptures !== undefined) {
3570
- namedCaptures = toObject(namedCaptures);
3579
+ namedCaptures = toObject$1(namedCaptures);
3571
3580
  symbols = SUBSTITUTION_SYMBOLS;
3572
3581
  }
3573
- return replace(replacement, symbols, function (match, ch) {
3582
+ return replace$1(replacement, symbols, function (match, ch) {
3574
3583
  var capture;
3575
3584
  switch (charAt(ch, 0)) {
3576
3585
  case '$': return '$';
3577
3586
  case '&': return matched;
3578
- case '`': return stringSlice$1(str, 0, position);
3579
- case "'": return stringSlice$1(str, tailPos);
3587
+ case '`': return stringSlice$2(str, 0, position);
3588
+ case "'": return stringSlice$2(str, tailPos);
3580
3589
  case '<':
3581
- capture = namedCaptures[stringSlice$1(ch, 1, -1)];
3590
+ capture = namedCaptures[stringSlice$2(ch, 1, -1)];
3582
3591
  break;
3583
3592
  default: // \d\d?
3584
3593
  var n = +ch;
@@ -3595,52 +3604,52 @@
3595
3604
  });
3596
3605
  };
3597
3606
 
3598
- var global$1 = global$F;
3599
- var call$1 = functionCall;
3600
- var anObject$1 = anObject$d;
3607
+ var global$4 = global$I;
3608
+ var call$2 = functionCall;
3609
+ var anObject$2 = anObject$e;
3601
3610
  var isCallable$1 = isCallable$g;
3602
3611
  var classof = classofRaw$1;
3603
- var regexpExec = regexpExec$2;
3612
+ var regexpExec$1 = regexpExec$3;
3604
3613
 
3605
- var TypeError$1 = global$1.TypeError;
3614
+ var TypeError$2 = global$4.TypeError;
3606
3615
 
3607
3616
  // `RegExpExec` abstract operation
3608
3617
  // https://tc39.es/ecma262/#sec-regexpexec
3609
3618
  var regexpExecAbstract = function (R, S) {
3610
3619
  var exec = R.exec;
3611
3620
  if (isCallable$1(exec)) {
3612
- var result = call$1(exec, R, S);
3613
- if (result !== null) anObject$1(result);
3621
+ var result = call$2(exec, R, S);
3622
+ if (result !== null) anObject$2(result);
3614
3623
  return result;
3615
3624
  }
3616
- if (classof(R) === 'RegExp') return call$1(regexpExec, R, S);
3617
- throw TypeError$1('RegExp#exec called on incompatible receiver');
3625
+ if (classof(R) === 'RegExp') return call$2(regexpExec$1, R, S);
3626
+ throw TypeError$2('RegExp#exec called on incompatible receiver');
3618
3627
  };
3619
3628
 
3620
- var apply = functionApply;
3621
- var call = functionCall;
3622
- var uncurryThis = functionUncurryThis;
3623
- var fixRegExpWellKnownSymbolLogic = fixRegexpWellKnownSymbolLogic;
3624
- var fails = fails$f;
3625
- var anObject = anObject$d;
3629
+ var apply$1 = functionApply;
3630
+ var call$1 = functionCall;
3631
+ var uncurryThis$3 = functionUncurryThis;
3632
+ var fixRegExpWellKnownSymbolLogic$1 = fixRegexpWellKnownSymbolLogic;
3633
+ var fails$3 = fails$i;
3634
+ var anObject$1 = anObject$e;
3626
3635
  var isCallable = isCallable$g;
3627
3636
  var toIntegerOrInfinity = toIntegerOrInfinity$4;
3628
- var toLength = toLength$3;
3629
- var toString = toString$4;
3630
- var requireObjectCoercible = requireObjectCoercible$5;
3631
- var advanceStringIndex = advanceStringIndex$1;
3632
- var getMethod = getMethod$4;
3637
+ var toLength$1 = toLength$4;
3638
+ var toString$3 = toString$7;
3639
+ var requireObjectCoercible$2 = requireObjectCoercible$7;
3640
+ var advanceStringIndex$1 = advanceStringIndex$2;
3641
+ var getMethod$1 = getMethod$5;
3633
3642
  var getSubstitution = getSubstitution$1;
3634
3643
  var regExpExec = regexpExecAbstract;
3635
3644
  var wellKnownSymbol = wellKnownSymbol$e;
3636
3645
 
3637
3646
  var REPLACE = wellKnownSymbol('replace');
3638
- var max = Math.max;
3639
- var min = Math.min;
3640
- var concat = uncurryThis([].concat);
3641
- var push = uncurryThis([].push);
3642
- var stringIndexOf = uncurryThis(''.indexOf);
3643
- var stringSlice = uncurryThis(''.slice);
3647
+ var max$1 = Math.max;
3648
+ var min$1 = Math.min;
3649
+ var concat = uncurryThis$3([].concat);
3650
+ var push$1 = uncurryThis$3([].push);
3651
+ var stringIndexOf = uncurryThis$3(''.indexOf);
3652
+ var stringSlice$1 = uncurryThis$3(''.slice);
3644
3653
 
3645
3654
  var maybeToString = function (it) {
3646
3655
  return it === undefined ? it : String(it);
@@ -3661,7 +3670,7 @@
3661
3670
  return false;
3662
3671
  })();
3663
3672
 
3664
- var REPLACE_SUPPORTS_NAMED_GROUPS = !fails(function () {
3673
+ var REPLACE_SUPPORTS_NAMED_GROUPS = !fails$3(function () {
3665
3674
  var re = /./;
3666
3675
  re.exec = function () {
3667
3676
  var result = [];
@@ -3673,24 +3682,24 @@
3673
3682
  });
3674
3683
 
3675
3684
  // @@replace logic
3676
- fixRegExpWellKnownSymbolLogic('replace', function (_, nativeReplace, maybeCallNative) {
3685
+ fixRegExpWellKnownSymbolLogic$1('replace', function (_, nativeReplace, maybeCallNative) {
3677
3686
  var UNSAFE_SUBSTITUTE = REGEXP_REPLACE_SUBSTITUTES_UNDEFINED_CAPTURE ? '$' : '$0';
3678
3687
 
3679
3688
  return [
3680
3689
  // `String.prototype.replace` method
3681
3690
  // https://tc39.es/ecma262/#sec-string.prototype.replace
3682
3691
  function replace(searchValue, replaceValue) {
3683
- var O = requireObjectCoercible(this);
3684
- var replacer = searchValue == undefined ? undefined : getMethod(searchValue, REPLACE);
3692
+ var O = requireObjectCoercible$2(this);
3693
+ var replacer = searchValue == undefined ? undefined : getMethod$1(searchValue, REPLACE);
3685
3694
  return replacer
3686
- ? call(replacer, searchValue, O, replaceValue)
3687
- : call(nativeReplace, toString(O), searchValue, replaceValue);
3695
+ ? call$1(replacer, searchValue, O, replaceValue)
3696
+ : call$1(nativeReplace, toString$3(O), searchValue, replaceValue);
3688
3697
  },
3689
3698
  // `RegExp.prototype[@@replace]` method
3690
3699
  // https://tc39.es/ecma262/#sec-regexp.prototype-@@replace
3691
3700
  function (string, replaceValue) {
3692
- var rx = anObject(this);
3693
- var S = toString(string);
3701
+ var rx = anObject$1(this);
3702
+ var S = toString$3(string);
3694
3703
 
3695
3704
  if (
3696
3705
  typeof replaceValue == 'string' &&
@@ -3702,7 +3711,7 @@
3702
3711
  }
3703
3712
 
3704
3713
  var functionalReplace = isCallable(replaceValue);
3705
- if (!functionalReplace) replaceValue = toString(replaceValue);
3714
+ if (!functionalReplace) replaceValue = toString$3(replaceValue);
3706
3715
 
3707
3716
  var global = rx.global;
3708
3717
  if (global) {
@@ -3714,11 +3723,11 @@
3714
3723
  var result = regExpExec(rx, S);
3715
3724
  if (result === null) break;
3716
3725
 
3717
- push(results, result);
3726
+ push$1(results, result);
3718
3727
  if (!global) break;
3719
3728
 
3720
- var matchStr = toString(result[0]);
3721
- if (matchStr === '') rx.lastIndex = advanceStringIndex(S, toLength(rx.lastIndex), fullUnicode);
3729
+ var matchStr = toString$3(result[0]);
3730
+ if (matchStr === '') rx.lastIndex = advanceStringIndex$1(S, toLength$1(rx.lastIndex), fullUnicode);
3722
3731
  }
3723
3732
 
3724
3733
  var accumulatedResult = '';
@@ -3726,29 +3735,29 @@
3726
3735
  for (var i = 0; i < results.length; i++) {
3727
3736
  result = results[i];
3728
3737
 
3729
- var matched = toString(result[0]);
3730
- var position = max(min(toIntegerOrInfinity(result.index), S.length), 0);
3738
+ var matched = toString$3(result[0]);
3739
+ var position = max$1(min$1(toIntegerOrInfinity(result.index), S.length), 0);
3731
3740
  var captures = [];
3732
3741
  // NOTE: This is equivalent to
3733
3742
  // captures = result.slice(1).map(maybeToString)
3734
3743
  // but for some reason `nativeSlice.call(result, 1, result.length)` (called in
3735
3744
  // the slice polyfill when slicing native arrays) "doesn't work" in safari 9 and
3736
3745
  // causes a crash (https://pastebin.com/N21QzeQA) when trying to debug it.
3737
- for (var j = 1; j < result.length; j++) push(captures, maybeToString(result[j]));
3746
+ for (var j = 1; j < result.length; j++) push$1(captures, maybeToString(result[j]));
3738
3747
  var namedCaptures = result.groups;
3739
3748
  if (functionalReplace) {
3740
3749
  var replacerArgs = concat([matched], captures, position, S);
3741
- if (namedCaptures !== undefined) push(replacerArgs, namedCaptures);
3742
- var replacement = toString(apply(replaceValue, undefined, replacerArgs));
3750
+ if (namedCaptures !== undefined) push$1(replacerArgs, namedCaptures);
3751
+ var replacement = toString$3(apply$1(replaceValue, undefined, replacerArgs));
3743
3752
  } else {
3744
3753
  replacement = getSubstitution(matched, S, position, captures, namedCaptures, replaceValue);
3745
3754
  }
3746
3755
  if (position >= nextSourcePosition) {
3747
- accumulatedResult += stringSlice(S, nextSourcePosition, position) + replacement;
3756
+ accumulatedResult += stringSlice$1(S, nextSourcePosition, position) + replacement;
3748
3757
  nextSourcePosition = position + matched.length;
3749
3758
  }
3750
3759
  }
3751
- return accumulatedResult + stringSlice(S, nextSourcePosition);
3760
+ return accumulatedResult + stringSlice$1(S, nextSourcePosition);
3752
3761
  }
3753
3762
  ];
3754
3763
  }, !REPLACE_SUPPORTS_NAMED_GROUPS || !REPLACE_KEEPS_$0 || REGEXP_REPLACE_SUBSTITUTES_UNDEFINED_CAPTURE);
@@ -3863,11 +3872,6 @@
3863
3872
  return null;
3864
3873
  }
3865
3874
 
3866
- if (experience.type === 'nt_personalization') {
3867
- // Personalization Expriences can have only one variant.
3868
- return variants[0];
3869
- }
3870
-
3871
3875
  var distribution = selectDistribution({
3872
3876
  experience: experience,
3873
3877
  profile: profile
@@ -3900,9 +3904,361 @@
3900
3904
  return variant;
3901
3905
  };
3902
3906
 
3907
+ var global$3 = global$I;
3908
+ var aCallable = aCallable$6;
3909
+ var toObject = toObject$4;
3910
+ var IndexedObject = indexedObject;
3911
+ var lengthOfArrayLike$1 = lengthOfArrayLike$4;
3912
+
3913
+ var TypeError$1 = global$3.TypeError;
3914
+
3915
+ // `Array.prototype.{ reduce, reduceRight }` methods implementation
3916
+ var createMethod$1 = function (IS_RIGHT) {
3917
+ return function (that, callbackfn, argumentsLength, memo) {
3918
+ aCallable(callbackfn);
3919
+ var O = toObject(that);
3920
+ var self = IndexedObject(O);
3921
+ var length = lengthOfArrayLike$1(O);
3922
+ var index = IS_RIGHT ? length - 1 : 0;
3923
+ var i = IS_RIGHT ? -1 : 1;
3924
+ if (argumentsLength < 2) while (true) {
3925
+ if (index in self) {
3926
+ memo = self[index];
3927
+ index += i;
3928
+ break;
3929
+ }
3930
+ index += i;
3931
+ if (IS_RIGHT ? index < 0 : length <= index) {
3932
+ throw TypeError$1('Reduce of empty array with no initial value');
3933
+ }
3934
+ }
3935
+ for (;IS_RIGHT ? index >= 0 : length > index; index += i) if (index in self) {
3936
+ memo = callbackfn(memo, self[index], index, O);
3937
+ }
3938
+ return memo;
3939
+ };
3940
+ };
3941
+
3942
+ var arrayReduce = {
3943
+ // `Array.prototype.reduce` method
3944
+ // https://tc39.es/ecma262/#sec-array.prototype.reduce
3945
+ left: createMethod$1(false),
3946
+ // `Array.prototype.reduceRight` method
3947
+ // https://tc39.es/ecma262/#sec-array.prototype.reduceright
3948
+ right: createMethod$1(true)
3949
+ };
3950
+
3951
+ var fails$2 = fails$i;
3952
+
3953
+ var arrayMethodIsStrict$1 = function (METHOD_NAME, argument) {
3954
+ var method = [][METHOD_NAME];
3955
+ return !!method && fails$2(function () {
3956
+ // eslint-disable-next-line no-useless-call -- required for testing
3957
+ method.call(null, argument || function () { return 1; }, 1);
3958
+ });
3959
+ };
3960
+
3961
+ var $$1 = _export;
3962
+ var $reduce = arrayReduce.left;
3963
+ var arrayMethodIsStrict = arrayMethodIsStrict$1;
3964
+ var CHROME_VERSION = engineV8Version;
3965
+ var IS_NODE = engineIsNode;
3966
+
3967
+ var STRICT_METHOD = arrayMethodIsStrict('reduce');
3968
+ // Chrome 80-82 has a critical bug
3969
+ // https://bugs.chromium.org/p/chromium/issues/detail?id=1049982
3970
+ var CHROME_BUG = !IS_NODE && CHROME_VERSION > 79 && CHROME_VERSION < 83;
3971
+
3972
+ // `Array.prototype.reduce` method
3973
+ // https://tc39.es/ecma262/#sec-array.prototype.reduce
3974
+ $$1({ target: 'Array', proto: true, forced: !STRICT_METHOD || CHROME_BUG }, {
3975
+ reduce: function reduce(callbackfn /* , initialValue */) {
3976
+ var length = arguments.length;
3977
+ return $reduce(this, callbackfn, length, length > 1 ? arguments[1] : undefined);
3978
+ }
3979
+ });
3980
+
3981
+ var toPropertyKey = toPropertyKey$3;
3982
+ var definePropertyModule = objectDefineProperty;
3983
+ var createPropertyDescriptor = createPropertyDescriptor$3;
3984
+
3985
+ var createProperty$1 = function (object, key, value) {
3986
+ var propertyKey = toPropertyKey(key);
3987
+ if (propertyKey in object) definePropertyModule.f(object, propertyKey, createPropertyDescriptor(0, value));
3988
+ else object[propertyKey] = value;
3989
+ };
3990
+
3991
+ var global$2 = global$I;
3992
+ var toAbsoluteIndex = toAbsoluteIndex$2;
3993
+ var lengthOfArrayLike = lengthOfArrayLike$4;
3994
+ var createProperty = createProperty$1;
3995
+
3996
+ var Array$1 = global$2.Array;
3997
+ var max = Math.max;
3998
+
3999
+ var arraySliceSimple = function (O, start, end) {
4000
+ var length = lengthOfArrayLike(O);
4001
+ var k = toAbsoluteIndex(start, length);
4002
+ var fin = toAbsoluteIndex(end === undefined ? length : end, length);
4003
+ var result = Array$1(max(fin - k, 0));
4004
+ for (var n = 0; k < fin; k++, n++) createProperty(result, n, O[k]);
4005
+ result.length = n;
4006
+ return result;
4007
+ };
4008
+
4009
+ var apply = functionApply;
4010
+ var call = functionCall;
4011
+ var uncurryThis$2 = functionUncurryThis;
4012
+ var fixRegExpWellKnownSymbolLogic = fixRegexpWellKnownSymbolLogic;
4013
+ var isRegExp = isRegexp;
4014
+ var anObject = anObject$e;
4015
+ var requireObjectCoercible$1 = requireObjectCoercible$7;
4016
+ var speciesConstructor = speciesConstructor$2;
4017
+ var advanceStringIndex = advanceStringIndex$2;
4018
+ var toLength = toLength$4;
4019
+ var toString$2 = toString$7;
4020
+ var getMethod = getMethod$5;
4021
+ var arraySlice = arraySliceSimple;
4022
+ var callRegExpExec = regexpExecAbstract;
4023
+ var regexpExec = regexpExec$3;
4024
+ var stickyHelpers = regexpStickyHelpers;
4025
+ var fails$1 = fails$i;
4026
+
4027
+ var UNSUPPORTED_Y = stickyHelpers.UNSUPPORTED_Y;
4028
+ var MAX_UINT32 = 0xFFFFFFFF;
4029
+ var min = Math.min;
4030
+ var $push = [].push;
4031
+ var exec$1 = uncurryThis$2(/./.exec);
4032
+ var push = uncurryThis$2($push);
4033
+ var stringSlice = uncurryThis$2(''.slice);
4034
+
4035
+ // Chrome 51 has a buggy "split" implementation when RegExp#exec !== nativeExec
4036
+ // Weex JS has frozen built-in prototypes, so use try / catch wrapper
4037
+ var SPLIT_WORKS_WITH_OVERWRITTEN_EXEC = !fails$1(function () {
4038
+ // eslint-disable-next-line regexp/no-empty-group -- required for testing
4039
+ var re = /(?:)/;
4040
+ var originalExec = re.exec;
4041
+ re.exec = function () { return originalExec.apply(this, arguments); };
4042
+ var result = 'ab'.split(re);
4043
+ return result.length !== 2 || result[0] !== 'a' || result[1] !== 'b';
4044
+ });
4045
+
4046
+ // @@split logic
4047
+ fixRegExpWellKnownSymbolLogic('split', function (SPLIT, nativeSplit, maybeCallNative) {
4048
+ var internalSplit;
4049
+ if (
4050
+ 'abbc'.split(/(b)*/)[1] == 'c' ||
4051
+ // eslint-disable-next-line regexp/no-empty-group -- required for testing
4052
+ 'test'.split(/(?:)/, -1).length != 4 ||
4053
+ 'ab'.split(/(?:ab)*/).length != 2 ||
4054
+ '.'.split(/(.?)(.?)/).length != 4 ||
4055
+ // eslint-disable-next-line regexp/no-empty-capturing-group, regexp/no-empty-group -- required for testing
4056
+ '.'.split(/()()/).length > 1 ||
4057
+ ''.split(/.?/).length
4058
+ ) {
4059
+ // based on es5-shim implementation, need to rework it
4060
+ internalSplit = function (separator, limit) {
4061
+ var string = toString$2(requireObjectCoercible$1(this));
4062
+ var lim = limit === undefined ? MAX_UINT32 : limit >>> 0;
4063
+ if (lim === 0) return [];
4064
+ if (separator === undefined) return [string];
4065
+ // If `separator` is not a regex, use native split
4066
+ if (!isRegExp(separator)) {
4067
+ return call(nativeSplit, string, separator, lim);
4068
+ }
4069
+ var output = [];
4070
+ var flags = (separator.ignoreCase ? 'i' : '') +
4071
+ (separator.multiline ? 'm' : '') +
4072
+ (separator.unicode ? 'u' : '') +
4073
+ (separator.sticky ? 'y' : '');
4074
+ var lastLastIndex = 0;
4075
+ // Make `global` and avoid `lastIndex` issues by working with a copy
4076
+ var separatorCopy = new RegExp(separator.source, flags + 'g');
4077
+ var match, lastIndex, lastLength;
4078
+ while (match = call(regexpExec, separatorCopy, string)) {
4079
+ lastIndex = separatorCopy.lastIndex;
4080
+ if (lastIndex > lastLastIndex) {
4081
+ push(output, stringSlice(string, lastLastIndex, match.index));
4082
+ if (match.length > 1 && match.index < string.length) apply($push, output, arraySlice(match, 1));
4083
+ lastLength = match[0].length;
4084
+ lastLastIndex = lastIndex;
4085
+ if (output.length >= lim) break;
4086
+ }
4087
+ if (separatorCopy.lastIndex === match.index) separatorCopy.lastIndex++; // Avoid an infinite loop
4088
+ }
4089
+ if (lastLastIndex === string.length) {
4090
+ if (lastLength || !exec$1(separatorCopy, '')) push(output, '');
4091
+ } else push(output, stringSlice(string, lastLastIndex));
4092
+ return output.length > lim ? arraySlice(output, 0, lim) : output;
4093
+ };
4094
+ // Chakra, V8
4095
+ } else if ('0'.split(undefined, 0).length) {
4096
+ internalSplit = function (separator, limit) {
4097
+ return separator === undefined && limit === 0 ? [] : call(nativeSplit, this, separator, limit);
4098
+ };
4099
+ } else internalSplit = nativeSplit;
4100
+
4101
+ return [
4102
+ // `String.prototype.split` method
4103
+ // https://tc39.es/ecma262/#sec-string.prototype.split
4104
+ function split(separator, limit) {
4105
+ var O = requireObjectCoercible$1(this);
4106
+ var splitter = separator == undefined ? undefined : getMethod(separator, SPLIT);
4107
+ return splitter
4108
+ ? call(splitter, separator, O, limit)
4109
+ : call(internalSplit, toString$2(O), separator, limit);
4110
+ },
4111
+ // `RegExp.prototype[@@split]` method
4112
+ // https://tc39.es/ecma262/#sec-regexp.prototype-@@split
4113
+ //
4114
+ // NOTE: This cannot be properly polyfilled in engines that don't support
4115
+ // the 'y' flag.
4116
+ function (string, limit) {
4117
+ var rx = anObject(this);
4118
+ var S = toString$2(string);
4119
+ var res = maybeCallNative(internalSplit, rx, S, limit, internalSplit !== nativeSplit);
4120
+
4121
+ if (res.done) return res.value;
4122
+
4123
+ var C = speciesConstructor(rx, RegExp);
4124
+
4125
+ var unicodeMatching = rx.unicode;
4126
+ var flags = (rx.ignoreCase ? 'i' : '') +
4127
+ (rx.multiline ? 'm' : '') +
4128
+ (rx.unicode ? 'u' : '') +
4129
+ (UNSUPPORTED_Y ? 'g' : 'y');
4130
+
4131
+ // ^(? + rx + ) is needed, in combination with some S slicing, to
4132
+ // simulate the 'y' flag.
4133
+ var splitter = new C(UNSUPPORTED_Y ? '^(?:' + rx.source + ')' : rx, flags);
4134
+ var lim = limit === undefined ? MAX_UINT32 : limit >>> 0;
4135
+ if (lim === 0) return [];
4136
+ if (S.length === 0) return callRegExpExec(splitter, S) === null ? [S] : [];
4137
+ var p = 0;
4138
+ var q = 0;
4139
+ var A = [];
4140
+ while (q < S.length) {
4141
+ splitter.lastIndex = UNSUPPORTED_Y ? 0 : q;
4142
+ var z = callRegExpExec(splitter, UNSUPPORTED_Y ? stringSlice(S, q) : S);
4143
+ var e;
4144
+ if (
4145
+ z === null ||
4146
+ (e = min(toLength(splitter.lastIndex + (UNSUPPORTED_Y ? q : 0)), S.length)) === p
4147
+ ) {
4148
+ q = advanceStringIndex(S, q, unicodeMatching);
4149
+ } else {
4150
+ push(A, stringSlice(S, p, q));
4151
+ if (A.length === lim) return A;
4152
+ for (var i = 1; i <= z.length - 1; i++) {
4153
+ push(A, z[i]);
4154
+ if (A.length === lim) return A;
4155
+ }
4156
+ q = p = e;
4157
+ }
4158
+ }
4159
+ push(A, stringSlice(S, p));
4160
+ return A;
4161
+ }
4162
+ ];
4163
+ }, !SPLIT_WORKS_WITH_OVERWRITTEN_EXEC, UNSUPPORTED_Y);
4164
+
4165
+ // a string of all valid unicode whitespaces
4166
+ var whitespaces$2 = '\u0009\u000A\u000B\u000C\u000D\u0020\u00A0\u1680\u2000\u2001\u2002' +
4167
+ '\u2003\u2004\u2005\u2006\u2007\u2008\u2009\u200A\u202F\u205F\u3000\u2028\u2029\uFEFF';
4168
+
4169
+ var uncurryThis$1 = functionUncurryThis;
4170
+ var requireObjectCoercible = requireObjectCoercible$7;
4171
+ var toString$1 = toString$7;
4172
+ var whitespaces$1 = whitespaces$2;
4173
+
4174
+ var replace = uncurryThis$1(''.replace);
4175
+ var whitespace = '[' + whitespaces$1 + ']';
4176
+ var ltrim = RegExp('^' + whitespace + whitespace + '*');
4177
+ var rtrim = RegExp(whitespace + whitespace + '*$');
4178
+
4179
+ // `String.prototype.{ trim, trimStart, trimEnd, trimLeft, trimRight }` methods implementation
4180
+ var createMethod = function (TYPE) {
4181
+ return function ($this) {
4182
+ var string = toString$1(requireObjectCoercible($this));
4183
+ if (TYPE & 1) string = replace(string, ltrim, '');
4184
+ if (TYPE & 2) string = replace(string, rtrim, '');
4185
+ return string;
4186
+ };
4187
+ };
4188
+
4189
+ var stringTrim = {
4190
+ // `String.prototype.{ trimLeft, trimStart }` methods
4191
+ // https://tc39.es/ecma262/#sec-string.prototype.trimstart
4192
+ start: createMethod(1),
4193
+ // `String.prototype.{ trimRight, trimEnd }` methods
4194
+ // https://tc39.es/ecma262/#sec-string.prototype.trimend
4195
+ end: createMethod(2),
4196
+ // `String.prototype.trim` method
4197
+ // https://tc39.es/ecma262/#sec-string.prototype.trim
4198
+ trim: createMethod(3)
4199
+ };
4200
+
4201
+ var global$1 = global$I;
4202
+ var fails = fails$i;
4203
+ var uncurryThis = functionUncurryThis;
4204
+ var toString = toString$7;
4205
+ var trim = stringTrim.trim;
4206
+ var whitespaces = whitespaces$2;
4207
+
4208
+ var $parseInt$1 = global$1.parseInt;
4209
+ var Symbol$1 = global$1.Symbol;
4210
+ var ITERATOR = Symbol$1 && Symbol$1.iterator;
4211
+ var hex = /^[+-]?0x/i;
4212
+ var exec = uncurryThis(hex.exec);
4213
+ var FORCED = $parseInt$1(whitespaces + '08') !== 8 || $parseInt$1(whitespaces + '0x16') !== 22
4214
+ // MS Edge 18- broken with boxed symbols
4215
+ || (ITERATOR && !fails(function () { $parseInt$1(Object(ITERATOR)); }));
4216
+
4217
+ // `parseInt` method
4218
+ // https://tc39.es/ecma262/#sec-parseint-string-radix
4219
+ var numberParseInt = FORCED ? function parseInt(string, radix) {
4220
+ var S = trim(toString(string));
4221
+ return $parseInt$1(S, (radix >>> 0) || (exec(hex, S) ? 16 : 10));
4222
+ } : $parseInt$1;
4223
+
4224
+ var $ = _export;
4225
+ var $parseInt = numberParseInt;
4226
+
4227
+ // `parseInt` method
4228
+ // https://tc39.es/ecma262/#sec-parseint-string-radix
4229
+ $({ global: true, forced: parseInt != $parseInt }, {
4230
+ parseInt: $parseInt
4231
+ });
4232
+
4233
+ var decodeExperienceVariantsMap = function decodeExperienceVariantsMap(encodedExperienceVariantsMap) {
4234
+ return encodedExperienceVariantsMap.split(',').map(function (experienceIdWithVariant) {
4235
+ var _a = experienceIdWithVariant.split('='),
4236
+ experienceId = _a[0],
4237
+ _variantIndex = _a[1];
4238
+
4239
+ var variantIndex = parseInt(_variantIndex);
4240
+
4241
+ if (!experienceId || !variantIndex) {
4242
+ return null;
4243
+ }
4244
+
4245
+ return {
4246
+ experienceId: experienceId,
4247
+ variantIndex: variantIndex
4248
+ };
4249
+ }).filter(function (x) {
4250
+ return x;
4251
+ }).reduce(function (acc, curr) {
4252
+ var _a;
4253
+
4254
+ return __assign(__assign({}, acc), (_a = {}, _a[curr.experienceId] = curr.variantIndex, _a));
4255
+ }, {});
4256
+ };
4257
+
3903
4258
  exports.NINETAILED_TRACKER_EVENTS = NINETAILED_TRACKER_EVENTS;
3904
4259
  exports.Ninetailed = Ninetailed;
3905
4260
  exports.PLUGIN_NAME = PLUGIN_NAME;
4261
+ exports.decodeExperienceVariantsMap = decodeExperienceVariantsMap;
3906
4262
  exports.isExperienceMatch = isExperienceMatch;
3907
4263
  exports.ninetailedPlugin = ninetailedPlugin;
3908
4264
  exports.selectActiveExperiments = selectActiveExperiments;