@abgov/jsonforms-components 1.29.0 → 1.30.0

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.esm.js CHANGED
@@ -11,10 +11,11 @@ import isEmpty$1 from 'lodash/isEmpty';
11
11
  import range from 'lodash/range';
12
12
  import Ajv from 'ajv';
13
13
  import addFormats from 'ajv-formats';
14
+ import _$8 from 'lodash';
14
15
 
15
16
  var commonjsGlobal = typeof globalThis !== 'undefined' ? globalThis : typeof window !== 'undefined' ? window : typeof global !== 'undefined' ? global : typeof self !== 'undefined' ? self : {};
16
17
 
17
- var fails$n = function (exec) {
18
+ var fails$q = function (exec) {
18
19
  try {
19
20
  return !!exec();
20
21
  } catch (error) {
@@ -22,75 +23,75 @@ var fails$n = function (exec) {
22
23
  }
23
24
  };
24
25
 
25
- var fails$m = fails$n;
26
+ var fails$p = fails$q;
26
27
 
27
- var functionBindNative = !fails$m(function () {
28
+ var functionBindNative = !fails$p(function () {
28
29
  // eslint-disable-next-line es/no-function-prototype-bind -- safe
29
30
  var test = (function () { /* empty */ }).bind();
30
31
  // eslint-disable-next-line no-prototype-builtins -- safe
31
32
  return typeof test != 'function' || test.hasOwnProperty('prototype');
32
33
  });
33
34
 
34
- var NATIVE_BIND$2 = functionBindNative;
35
+ var NATIVE_BIND$3 = functionBindNative;
35
36
 
36
37
  var FunctionPrototype$2 = Function.prototype;
37
- var call$e = FunctionPrototype$2.call;
38
- var uncurryThisWithBind = NATIVE_BIND$2 && FunctionPrototype$2.bind.bind(call$e, call$e);
38
+ var call$k = FunctionPrototype$2.call;
39
+ var uncurryThisWithBind = NATIVE_BIND$3 && FunctionPrototype$2.bind.bind(call$k, call$k);
39
40
 
40
- var functionUncurryThis = NATIVE_BIND$2 ? uncurryThisWithBind : function (fn) {
41
+ var functionUncurryThis = NATIVE_BIND$3 ? uncurryThisWithBind : function (fn) {
41
42
  return function () {
42
- return call$e.apply(fn, arguments);
43
+ return call$k.apply(fn, arguments);
43
44
  };
44
45
  };
45
46
 
46
- var uncurryThis$m = functionUncurryThis;
47
+ var uncurryThis$p = functionUncurryThis;
47
48
 
48
- var toString$c = uncurryThis$m({}.toString);
49
- var stringSlice$7 = uncurryThis$m(''.slice);
49
+ var toString$c = uncurryThis$p({}.toString);
50
+ var stringSlice$7 = uncurryThis$p(''.slice);
50
51
 
51
- var classofRaw$1 = function (it) {
52
+ var classofRaw$2 = function (it) {
52
53
  return stringSlice$7(toString$c(it), 8, -1);
53
54
  };
54
55
 
55
- var uncurryThis$l = functionUncurryThis;
56
- var fails$l = fails$n;
57
- var classof$7 = classofRaw$1;
56
+ var uncurryThis$o = functionUncurryThis;
57
+ var fails$o = fails$q;
58
+ var classof$a = classofRaw$2;
58
59
 
59
60
  var $Object$4 = Object;
60
- var split = uncurryThis$l(''.split);
61
+ var split = uncurryThis$o(''.split);
61
62
 
62
63
  // fallback for non-array-like ES3 and non-enumerable old V8 strings
63
- var indexedObject = fails$l(function () {
64
+ var indexedObject = fails$o(function () {
64
65
  // throws an error in rhino, see https://github.com/mozilla/rhino/issues/346
65
66
  // eslint-disable-next-line no-prototype-builtins -- safe
66
67
  return !$Object$4('z').propertyIsEnumerable(0);
67
68
  }) ? function (it) {
68
- return classof$7(it) === 'String' ? split(it, '') : $Object$4(it);
69
+ return classof$a(it) === 'String' ? split(it, '') : $Object$4(it);
69
70
  } : $Object$4;
70
71
 
71
72
  // we can't use just `it == null` since of `document.all` special case
72
73
  // https://tc39.es/ecma262/#sec-IsHTMLDDA-internal-slot-aec
73
- var isNullOrUndefined$3 = function (it) {
74
+ var isNullOrUndefined$5 = function (it) {
74
75
  return it === null || it === undefined;
75
76
  };
76
77
 
77
- var isNullOrUndefined$2 = isNullOrUndefined$3;
78
+ var isNullOrUndefined$4 = isNullOrUndefined$5;
78
79
 
79
- var $TypeError$b = TypeError;
80
+ var $TypeError$i = TypeError;
80
81
 
81
82
  // `RequireObjectCoercible` abstract operation
82
83
  // https://tc39.es/ecma262/#sec-requireobjectcoercible
83
84
  var requireObjectCoercible$7 = function (it) {
84
- if (isNullOrUndefined$2(it)) throw new $TypeError$b("Can't call method on " + it);
85
+ if (isNullOrUndefined$4(it)) throw new $TypeError$i("Can't call method on " + it);
85
86
  return it;
86
87
  };
87
88
 
88
89
  // toObject with fallback for non-array-like ES3 strings
89
- var IndexedObject$1 = indexedObject;
90
+ var IndexedObject$2 = indexedObject;
90
91
  var requireObjectCoercible$6 = requireObjectCoercible$7;
91
92
 
92
93
  var toIndexedObject$5 = function (it) {
93
- return IndexedObject$1(requireObjectCoercible$6(it));
94
+ return IndexedObject$2(requireObjectCoercible$6(it));
94
95
  };
95
96
 
96
97
  var check = function (it) {
@@ -98,7 +99,7 @@ var check = function (it) {
98
99
  };
99
100
 
100
101
  // https://github.com/zloirock/core-js/issues/86#issuecomment-115759028
101
- var global$h =
102
+ var global$o =
102
103
  // eslint-disable-next-line es/no-global-this -- safe
103
104
  check(typeof globalThis == 'object' && globalThis) ||
104
105
  check(typeof window == 'object' && window) ||
@@ -111,20 +112,20 @@ var global$h =
111
112
 
112
113
  var sharedStore = {exports: {}};
113
114
 
114
- var global$g = global$h;
115
+ var global$n = global$o;
115
116
 
116
117
  // eslint-disable-next-line es/no-object-defineproperty -- safe
117
118
  var defineProperty$7 = Object.defineProperty;
118
119
 
119
120
  var defineGlobalProperty$3 = function (key, value) {
120
121
  try {
121
- defineProperty$7(global$g, key, { value: value, configurable: true, writable: true });
122
+ defineProperty$7(global$n, key, { value: value, configurable: true, writable: true });
122
123
  } catch (error) {
123
- global$g[key] = value;
124
+ global$n[key] = value;
124
125
  } return value;
125
126
  };
126
127
 
127
- var globalThis$1 = global$h;
128
+ var globalThis$1 = global$o;
128
129
  var defineGlobalProperty$2 = defineGlobalProperty$3;
129
130
 
130
131
  var SHARED = '__core-js_shared__';
@@ -150,27 +151,27 @@ var $Object$3 = Object;
150
151
 
151
152
  // `ToObject` abstract operation
152
153
  // https://tc39.es/ecma262/#sec-toobject
153
- var toObject$6 = function (argument) {
154
+ var toObject$7 = function (argument) {
154
155
  return $Object$3(requireObjectCoercible$5(argument));
155
156
  };
156
157
 
157
- var uncurryThis$k = functionUncurryThis;
158
- var toObject$5 = toObject$6;
158
+ var uncurryThis$n = functionUncurryThis;
159
+ var toObject$6 = toObject$7;
159
160
 
160
- var hasOwnProperty = uncurryThis$k({}.hasOwnProperty);
161
+ var hasOwnProperty = uncurryThis$n({}.hasOwnProperty);
161
162
 
162
163
  // `HasOwnProperty` abstract operation
163
164
  // https://tc39.es/ecma262/#sec-hasownproperty
164
165
  // eslint-disable-next-line es/no-object-hasown -- safe
165
166
  var hasOwnProperty_1 = Object.hasOwn || function hasOwn(it, key) {
166
- return hasOwnProperty(toObject$5(it), key);
167
+ return hasOwnProperty(toObject$6(it), key);
167
168
  };
168
169
 
169
- var uncurryThis$j = functionUncurryThis;
170
+ var uncurryThis$m = functionUncurryThis;
170
171
 
171
172
  var id = 0;
172
173
  var postfix = Math.random();
173
- var toString$b = uncurryThis$j(1.0.toString);
174
+ var toString$b = uncurryThis$m(1.0.toString);
174
175
 
175
176
  var uid$2 = function (key) {
176
177
  return 'Symbol(' + (key === undefined ? '' : key) + ')_' + toString$b(++id + postfix, 36);
@@ -178,12 +179,12 @@ var uid$2 = function (key) {
178
179
 
179
180
  var engineUserAgent = typeof navigator != 'undefined' && String(navigator.userAgent) || '';
180
181
 
181
- var global$f = global$h;
182
- var userAgent = engineUserAgent;
182
+ var global$m = global$o;
183
+ var userAgent$3 = engineUserAgent;
183
184
 
184
- var process = global$f.process;
185
- var Deno = global$f.Deno;
186
- var versions = process && process.versions || Deno && Deno.version;
185
+ var process$3 = global$m.process;
186
+ var Deno$1 = global$m.Deno;
187
+ var versions = process$3 && process$3.versions || Deno$1 && Deno$1.version;
187
188
  var v8 = versions && versions.v8;
188
189
  var match, version;
189
190
 
@@ -196,10 +197,10 @@ if (v8) {
196
197
 
197
198
  // BrowserFS NodeJS `process` polyfill incorrectly set `.v8` to `0.0`
198
199
  // so check `userAgent` even if `.v8` exists, but 0
199
- if (!version && userAgent) {
200
- match = userAgent.match(/Edge\/(\d+)/);
200
+ if (!version && userAgent$3) {
201
+ match = userAgent$3.match(/Edge\/(\d+)/);
201
202
  if (!match || match[1] >= 74) {
202
- match = userAgent.match(/Chrome\/(\d+)/);
203
+ match = userAgent$3.match(/Chrome\/(\d+)/);
203
204
  if (match) version = +match[1];
204
205
  }
205
206
  }
@@ -207,14 +208,14 @@ if (!version && userAgent) {
207
208
  var engineV8Version = version;
208
209
 
209
210
  /* eslint-disable es/no-symbol -- required for testing */
210
- var V8_VERSION = engineV8Version;
211
- var fails$k = fails$n;
212
- var global$e = global$h;
211
+ var V8_VERSION$1 = engineV8Version;
212
+ var fails$n = fails$q;
213
+ var global$l = global$o;
213
214
 
214
- var $String$6 = global$e.String;
215
+ var $String$6 = global$l.String;
215
216
 
216
217
  // eslint-disable-next-line es/no-object-getownpropertysymbols -- required for testing
217
- var symbolConstructorDetection = !!Object.getOwnPropertySymbols && !fails$k(function () {
218
+ var symbolConstructorDetection = !!Object.getOwnPropertySymbols && !fails$n(function () {
218
219
  var symbol = Symbol('symbol detection');
219
220
  // Chrome 38 Symbol has incorrect toString conversion
220
221
  // `get-own-property-symbols` polyfill symbols converted to object are not Symbol instances
@@ -222,7 +223,7 @@ var symbolConstructorDetection = !!Object.getOwnPropertySymbols && !fails$k(func
222
223
  // of course, fail.
223
224
  return !$String$6(symbol) || !(Object(symbol) instanceof Symbol) ||
224
225
  // Chrome 38-40 symbols are not inherited from DOM collections prototypes to instances
225
- !Symbol.sham && V8_VERSION && V8_VERSION < 41;
226
+ !Symbol.sham && V8_VERSION$1 && V8_VERSION$1 < 41;
226
227
  });
227
228
 
228
229
  /* eslint-disable es/no-symbol -- required for testing */
@@ -232,20 +233,20 @@ var useSymbolAsUid = NATIVE_SYMBOL$3
232
233
  && !Symbol.sham
233
234
  && typeof Symbol.iterator == 'symbol';
234
235
 
235
- var global$d = global$h;
236
+ var global$k = global$o;
236
237
  var shared$3 = shared$4;
237
- var hasOwn$c = hasOwnProperty_1;
238
+ var hasOwn$d = hasOwnProperty_1;
238
239
  var uid$1 = uid$2;
239
240
  var NATIVE_SYMBOL$2 = symbolConstructorDetection;
240
241
  var USE_SYMBOL_AS_UID$1 = useSymbolAsUid;
241
242
 
242
- var Symbol$1 = global$d.Symbol;
243
+ var Symbol$1 = global$k.Symbol;
243
244
  var WellKnownSymbolsStore = shared$3('wks');
244
245
  var createWellKnownSymbol = USE_SYMBOL_AS_UID$1 ? Symbol$1['for'] || Symbol$1 : Symbol$1 && Symbol$1.withoutSetter || uid$1;
245
246
 
246
- var wellKnownSymbol$e = function (name) {
247
- if (!hasOwn$c(WellKnownSymbolsStore, name)) {
248
- WellKnownSymbolsStore[name] = NATIVE_SYMBOL$2 && hasOwn$c(Symbol$1, name)
247
+ var wellKnownSymbol$j = function (name) {
248
+ if (!hasOwn$d(WellKnownSymbolsStore, name)) {
249
+ WellKnownSymbolsStore[name] = NATIVE_SYMBOL$2 && hasOwn$d(Symbol$1, name)
249
250
  ? Symbol$1[name]
250
251
  : createWellKnownSymbol('Symbol.' + name);
251
252
  } return WellKnownSymbolsStore[name];
@@ -257,45 +258,45 @@ var documentAll = typeof document == 'object' && document.all;
257
258
  // `IsCallable` abstract operation
258
259
  // https://tc39.es/ecma262/#sec-iscallable
259
260
  // eslint-disable-next-line unicorn/no-typeof-undefined -- required for testing
260
- var isCallable$l = typeof documentAll == 'undefined' && documentAll !== undefined ? function (argument) {
261
+ var isCallable$q = typeof documentAll == 'undefined' && documentAll !== undefined ? function (argument) {
261
262
  return typeof argument == 'function' || argument === documentAll;
262
263
  } : function (argument) {
263
264
  return typeof argument == 'function';
264
265
  };
265
266
 
266
- var isCallable$k = isCallable$l;
267
+ var isCallable$p = isCallable$q;
267
268
 
268
- var isObject$b = function (it) {
269
- return typeof it == 'object' ? it !== null : isCallable$k(it);
269
+ var isObject$d = function (it) {
270
+ return typeof it == 'object' ? it !== null : isCallable$p(it);
270
271
  };
271
272
 
272
- var isObject$a = isObject$b;
273
+ var isObject$c = isObject$d;
273
274
 
274
275
  var $String$5 = String;
275
- var $TypeError$a = TypeError;
276
+ var $TypeError$h = TypeError;
276
277
 
277
278
  // `Assert: Type(argument) is Object`
278
- var anObject$9 = function (argument) {
279
- if (isObject$a(argument)) return argument;
280
- throw new $TypeError$a($String$5(argument) + ' is not an object');
279
+ var anObject$e = function (argument) {
280
+ if (isObject$c(argument)) return argument;
281
+ throw new $TypeError$h($String$5(argument) + ' is not an object');
281
282
  };
282
283
 
283
284
  var objectDefineProperties = {};
284
285
 
285
- var fails$j = fails$n;
286
+ var fails$m = fails$q;
286
287
 
287
288
  // Detect IE8's incomplete defineProperty implementation
288
- var descriptors = !fails$j(function () {
289
+ var descriptors = !fails$m(function () {
289
290
  // eslint-disable-next-line es/no-object-defineproperty -- required for testing
290
291
  return Object.defineProperty({}, 1, { get: function () { return 7; } })[1] !== 7;
291
292
  });
292
293
 
293
- var DESCRIPTORS$f = descriptors;
294
- var fails$i = fails$n;
294
+ var DESCRIPTORS$g = descriptors;
295
+ var fails$l = fails$q;
295
296
 
296
297
  // V8 ~ Chrome 36-
297
298
  // https://bugs.chromium.org/p/v8/issues/detail?id=3334
298
- var v8PrototypeDefineBug = DESCRIPTORS$f && fails$i(function () {
299
+ var v8PrototypeDefineBug = DESCRIPTORS$g && fails$l(function () {
299
300
  // eslint-disable-next-line es/no-object-defineproperty -- required for testing
300
301
  return Object.defineProperty(function () { /* empty */ }, 'prototype', {
301
302
  value: 42,
@@ -305,55 +306,55 @@ var v8PrototypeDefineBug = DESCRIPTORS$f && fails$i(function () {
305
306
 
306
307
  var objectDefineProperty = {};
307
308
 
308
- var global$c = global$h;
309
- var isObject$9 = isObject$b;
309
+ var global$j = global$o;
310
+ var isObject$b = isObject$d;
310
311
 
311
- var document$1 = global$c.document;
312
+ var document$3 = global$j.document;
312
313
  // typeof document.createElement is 'object' in old IE
313
- var EXISTS$1 = isObject$9(document$1) && isObject$9(document$1.createElement);
314
+ var EXISTS$1 = isObject$b(document$3) && isObject$b(document$3.createElement);
314
315
 
315
316
  var documentCreateElement$2 = function (it) {
316
- return EXISTS$1 ? document$1.createElement(it) : {};
317
+ return EXISTS$1 ? document$3.createElement(it) : {};
317
318
  };
318
319
 
319
- var DESCRIPTORS$e = descriptors;
320
- var fails$h = fails$n;
321
- var createElement = documentCreateElement$2;
320
+ var DESCRIPTORS$f = descriptors;
321
+ var fails$k = fails$q;
322
+ var createElement$1 = documentCreateElement$2;
322
323
 
323
324
  // Thanks to IE8 for its funny defineProperty
324
- var ie8DomDefine = !DESCRIPTORS$e && !fails$h(function () {
325
+ var ie8DomDefine = !DESCRIPTORS$f && !fails$k(function () {
325
326
  // eslint-disable-next-line es/no-object-defineproperty -- required for testing
326
- return Object.defineProperty(createElement('div'), 'a', {
327
+ return Object.defineProperty(createElement$1('div'), 'a', {
327
328
  get: function () { return 7; }
328
329
  }).a !== 7;
329
330
  });
330
331
 
331
- var NATIVE_BIND$1 = functionBindNative;
332
+ var NATIVE_BIND$2 = functionBindNative;
332
333
 
333
- var call$d = Function.prototype.call;
334
+ var call$j = Function.prototype.call;
334
335
 
335
- var functionCall = NATIVE_BIND$1 ? call$d.bind(call$d) : function () {
336
- return call$d.apply(call$d, arguments);
336
+ var functionCall = NATIVE_BIND$2 ? call$j.bind(call$j) : function () {
337
+ return call$j.apply(call$j, arguments);
337
338
  };
338
339
 
339
- var global$b = global$h;
340
- var isCallable$j = isCallable$l;
340
+ var global$i = global$o;
341
+ var isCallable$o = isCallable$q;
341
342
 
342
343
  var aFunction = function (argument) {
343
- return isCallable$j(argument) ? argument : undefined;
344
+ return isCallable$o(argument) ? argument : undefined;
344
345
  };
345
346
 
346
- var getBuiltIn$6 = function (namespace, method) {
347
- return arguments.length < 2 ? aFunction(global$b[namespace]) : global$b[namespace] && global$b[namespace][method];
347
+ var getBuiltIn$9 = function (namespace, method) {
348
+ return arguments.length < 2 ? aFunction(global$i[namespace]) : global$i[namespace] && global$i[namespace][method];
348
349
  };
349
350
 
350
- var uncurryThis$i = functionUncurryThis;
351
+ var uncurryThis$l = functionUncurryThis;
351
352
 
352
- var objectIsPrototypeOf = uncurryThis$i({}.isPrototypeOf);
353
+ var objectIsPrototypeOf = uncurryThis$l({}.isPrototypeOf);
353
354
 
354
- var getBuiltIn$5 = getBuiltIn$6;
355
- var isCallable$i = isCallable$l;
356
- var isPrototypeOf$4 = objectIsPrototypeOf;
355
+ var getBuiltIn$8 = getBuiltIn$9;
356
+ var isCallable$n = isCallable$q;
357
+ var isPrototypeOf$6 = objectIsPrototypeOf;
357
358
  var USE_SYMBOL_AS_UID = useSymbolAsUid;
358
359
 
359
360
  var $Object$2 = Object;
@@ -361,13 +362,13 @@ var $Object$2 = Object;
361
362
  var isSymbol$3 = USE_SYMBOL_AS_UID ? function (it) {
362
363
  return typeof it == 'symbol';
363
364
  } : function (it) {
364
- var $Symbol = getBuiltIn$5('Symbol');
365
- return isCallable$i($Symbol) && isPrototypeOf$4($Symbol.prototype, $Object$2(it));
365
+ var $Symbol = getBuiltIn$8('Symbol');
366
+ return isCallable$n($Symbol) && isPrototypeOf$6($Symbol.prototype, $Object$2(it));
366
367
  };
367
368
 
368
369
  var $String$4 = String;
369
370
 
370
- var tryToString$1 = function (argument) {
371
+ var tryToString$4 = function (argument) {
371
372
  try {
372
373
  return $String$4(argument);
373
374
  } catch (error) {
@@ -375,64 +376,64 @@ var tryToString$1 = function (argument) {
375
376
  }
376
377
  };
377
378
 
378
- var isCallable$h = isCallable$l;
379
- var tryToString = tryToString$1;
379
+ var isCallable$m = isCallable$q;
380
+ var tryToString$3 = tryToString$4;
380
381
 
381
- var $TypeError$9 = TypeError;
382
+ var $TypeError$g = TypeError;
382
383
 
383
384
  // `Assert: IsCallable(argument) is true`
384
- var aCallable$2 = function (argument) {
385
- if (isCallable$h(argument)) return argument;
386
- throw new $TypeError$9(tryToString(argument) + ' is not a function');
385
+ var aCallable$9 = function (argument) {
386
+ if (isCallable$m(argument)) return argument;
387
+ throw new $TypeError$g(tryToString$3(argument) + ' is not a function');
387
388
  };
388
389
 
389
- var aCallable$1 = aCallable$2;
390
- var isNullOrUndefined$1 = isNullOrUndefined$3;
390
+ var aCallable$8 = aCallable$9;
391
+ var isNullOrUndefined$3 = isNullOrUndefined$5;
391
392
 
392
393
  // `GetMethod` abstract operation
393
394
  // https://tc39.es/ecma262/#sec-getmethod
394
- var getMethod$2 = function (V, P) {
395
+ var getMethod$4 = function (V, P) {
395
396
  var func = V[P];
396
- return isNullOrUndefined$1(func) ? undefined : aCallable$1(func);
397
+ return isNullOrUndefined$3(func) ? undefined : aCallable$8(func);
397
398
  };
398
399
 
399
- var call$c = functionCall;
400
- var isCallable$g = isCallable$l;
401
- var isObject$8 = isObject$b;
400
+ var call$i = functionCall;
401
+ var isCallable$l = isCallable$q;
402
+ var isObject$a = isObject$d;
402
403
 
403
- var $TypeError$8 = TypeError;
404
+ var $TypeError$f = TypeError;
404
405
 
405
406
  // `OrdinaryToPrimitive` abstract operation
406
407
  // https://tc39.es/ecma262/#sec-ordinarytoprimitive
407
408
  var ordinaryToPrimitive$1 = function (input, pref) {
408
409
  var fn, val;
409
- if (pref === 'string' && isCallable$g(fn = input.toString) && !isObject$8(val = call$c(fn, input))) return val;
410
- if (isCallable$g(fn = input.valueOf) && !isObject$8(val = call$c(fn, input))) return val;
411
- if (pref !== 'string' && isCallable$g(fn = input.toString) && !isObject$8(val = call$c(fn, input))) return val;
412
- throw new $TypeError$8("Can't convert object to primitive value");
410
+ if (pref === 'string' && isCallable$l(fn = input.toString) && !isObject$a(val = call$i(fn, input))) return val;
411
+ if (isCallable$l(fn = input.valueOf) && !isObject$a(val = call$i(fn, input))) return val;
412
+ if (pref !== 'string' && isCallable$l(fn = input.toString) && !isObject$a(val = call$i(fn, input))) return val;
413
+ throw new $TypeError$f("Can't convert object to primitive value");
413
414
  };
414
415
 
415
- var call$b = functionCall;
416
- var isObject$7 = isObject$b;
416
+ var call$h = functionCall;
417
+ var isObject$9 = isObject$d;
417
418
  var isSymbol$2 = isSymbol$3;
418
- var getMethod$1 = getMethod$2;
419
+ var getMethod$3 = getMethod$4;
419
420
  var ordinaryToPrimitive = ordinaryToPrimitive$1;
420
- var wellKnownSymbol$d = wellKnownSymbol$e;
421
+ var wellKnownSymbol$i = wellKnownSymbol$j;
421
422
 
422
- var $TypeError$7 = TypeError;
423
- var TO_PRIMITIVE = wellKnownSymbol$d('toPrimitive');
423
+ var $TypeError$e = TypeError;
424
+ var TO_PRIMITIVE = wellKnownSymbol$i('toPrimitive');
424
425
 
425
426
  // `ToPrimitive` abstract operation
426
427
  // https://tc39.es/ecma262/#sec-toprimitive
427
428
  var toPrimitive$1 = function (input, pref) {
428
- if (!isObject$7(input) || isSymbol$2(input)) return input;
429
- var exoticToPrim = getMethod$1(input, TO_PRIMITIVE);
429
+ if (!isObject$9(input) || isSymbol$2(input)) return input;
430
+ var exoticToPrim = getMethod$3(input, TO_PRIMITIVE);
430
431
  var result;
431
432
  if (exoticToPrim) {
432
433
  if (pref === undefined) pref = 'default';
433
- result = call$b(exoticToPrim, input, pref);
434
- if (!isObject$7(result) || isSymbol$2(result)) return result;
435
- throw new $TypeError$7("Can't convert object to primitive value");
434
+ result = call$h(exoticToPrim, input, pref);
435
+ if (!isObject$9(result) || isSymbol$2(result)) return result;
436
+ throw new $TypeError$e("Can't convert object to primitive value");
436
437
  }
437
438
  if (pref === undefined) pref = 'number';
438
439
  return ordinaryToPrimitive(input, pref);
@@ -448,13 +449,13 @@ var toPropertyKey$2 = function (argument) {
448
449
  return isSymbol$1(key) ? key : key + '';
449
450
  };
450
451
 
451
- var DESCRIPTORS$d = descriptors;
452
+ var DESCRIPTORS$e = descriptors;
452
453
  var IE8_DOM_DEFINE$1 = ie8DomDefine;
453
454
  var V8_PROTOTYPE_DEFINE_BUG$1 = v8PrototypeDefineBug;
454
- var anObject$8 = anObject$9;
455
+ var anObject$d = anObject$e;
455
456
  var toPropertyKey$1 = toPropertyKey$2;
456
457
 
457
- var $TypeError$6 = TypeError;
458
+ var $TypeError$d = TypeError;
458
459
  // eslint-disable-next-line es/no-object-defineproperty -- safe
459
460
  var $defineProperty = Object.defineProperty;
460
461
  // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
@@ -465,10 +466,10 @@ var WRITABLE = 'writable';
465
466
 
466
467
  // `Object.defineProperty` method
467
468
  // https://tc39.es/ecma262/#sec-object.defineproperty
468
- objectDefineProperty.f = DESCRIPTORS$d ? V8_PROTOTYPE_DEFINE_BUG$1 ? function defineProperty(O, P, Attributes) {
469
- anObject$8(O);
469
+ objectDefineProperty.f = DESCRIPTORS$e ? V8_PROTOTYPE_DEFINE_BUG$1 ? function defineProperty(O, P, Attributes) {
470
+ anObject$d(O);
470
471
  P = toPropertyKey$1(P);
471
- anObject$8(Attributes);
472
+ anObject$d(Attributes);
472
473
  if (typeof O === 'function' && P === 'prototype' && 'value' in Attributes && WRITABLE in Attributes && !Attributes[WRITABLE]) {
473
474
  var current = $getOwnPropertyDescriptor$1(O, P);
474
475
  if (current && current[WRITABLE]) {
@@ -481,13 +482,13 @@ objectDefineProperty.f = DESCRIPTORS$d ? V8_PROTOTYPE_DEFINE_BUG$1 ? function de
481
482
  }
482
483
  } return $defineProperty(O, P, Attributes);
483
484
  } : $defineProperty : function defineProperty(O, P, Attributes) {
484
- anObject$8(O);
485
+ anObject$d(O);
485
486
  P = toPropertyKey$1(P);
486
- anObject$8(Attributes);
487
+ anObject$d(Attributes);
487
488
  if (IE8_DOM_DEFINE$1) try {
488
489
  return $defineProperty(O, P, Attributes);
489
490
  } catch (error) { /* empty */ }
490
- if ('get' in Attributes || 'set' in Attributes) throw new $TypeError$6('Accessors not supported');
491
+ if ('get' in Attributes || 'set' in Attributes) throw new $TypeError$d('Accessors not supported');
491
492
  if ('value' in Attributes) O[P] = Attributes.value;
492
493
  return O;
493
494
  };
@@ -541,19 +542,19 @@ var toLength$1 = toLength$2;
541
542
 
542
543
  // `LengthOfArrayLike` abstract operation
543
544
  // https://tc39.es/ecma262/#sec-lengthofarraylike
544
- var lengthOfArrayLike$3 = function (obj) {
545
+ var lengthOfArrayLike$5 = function (obj) {
545
546
  return toLength$1(obj.length);
546
547
  };
547
548
 
548
549
  var toIndexedObject$4 = toIndexedObject$5;
549
550
  var toAbsoluteIndex = toAbsoluteIndex$1;
550
- var lengthOfArrayLike$2 = lengthOfArrayLike$3;
551
+ var lengthOfArrayLike$4 = lengthOfArrayLike$5;
551
552
 
552
553
  // `Array.prototype.{ indexOf, includes }` methods implementation
553
- var createMethod$1 = function (IS_INCLUDES) {
554
+ var createMethod$2 = function (IS_INCLUDES) {
554
555
  return function ($this, el, fromIndex) {
555
556
  var O = toIndexedObject$4($this);
556
- var length = lengthOfArrayLike$2(O);
557
+ var length = lengthOfArrayLike$4(O);
557
558
  if (length === 0) return !IS_INCLUDES && -1;
558
559
  var index = toAbsoluteIndex(fromIndex, length);
559
560
  var value;
@@ -573,30 +574,30 @@ var createMethod$1 = function (IS_INCLUDES) {
573
574
  var arrayIncludes = {
574
575
  // `Array.prototype.includes` method
575
576
  // https://tc39.es/ecma262/#sec-array.prototype.includes
576
- includes: createMethod$1(true),
577
+ includes: createMethod$2(true),
577
578
  // `Array.prototype.indexOf` method
578
579
  // https://tc39.es/ecma262/#sec-array.prototype.indexof
579
- indexOf: createMethod$1(false)
580
+ indexOf: createMethod$2(false)
580
581
  };
581
582
 
582
583
  var hiddenKeys$4 = {};
583
584
 
584
- var uncurryThis$h = functionUncurryThis;
585
- var hasOwn$b = hasOwnProperty_1;
585
+ var uncurryThis$k = functionUncurryThis;
586
+ var hasOwn$c = hasOwnProperty_1;
586
587
  var toIndexedObject$3 = toIndexedObject$5;
587
588
  var indexOf$1 = arrayIncludes.indexOf;
588
589
  var hiddenKeys$3 = hiddenKeys$4;
589
590
 
590
- var push$2 = uncurryThis$h([].push);
591
+ var push$2 = uncurryThis$k([].push);
591
592
 
592
593
  var objectKeysInternal = function (object, names) {
593
594
  var O = toIndexedObject$3(object);
594
595
  var i = 0;
595
596
  var result = [];
596
597
  var key;
597
- for (key in O) !hasOwn$b(hiddenKeys$3, key) && hasOwn$b(O, key) && push$2(result, key);
598
+ for (key in O) !hasOwn$c(hiddenKeys$3, key) && hasOwn$c(O, key) && push$2(result, key);
598
599
  // Don't enum bug & hidden keys
599
- while (names.length > i) if (hasOwn$b(O, key = names[i++])) {
600
+ while (names.length > i) if (hasOwn$c(O, key = names[i++])) {
600
601
  ~indexOf$1(result, key) || push$2(result, key);
601
602
  }
602
603
  return result;
@@ -623,18 +624,18 @@ var objectKeys$2 = Object.keys || function keys(O) {
623
624
  return internalObjectKeys$1(O, enumBugKeys$2);
624
625
  };
625
626
 
626
- var DESCRIPTORS$c = descriptors;
627
+ var DESCRIPTORS$d = descriptors;
627
628
  var V8_PROTOTYPE_DEFINE_BUG = v8PrototypeDefineBug;
628
629
  var definePropertyModule$3 = objectDefineProperty;
629
- var anObject$7 = anObject$9;
630
+ var anObject$c = anObject$e;
630
631
  var toIndexedObject$2 = toIndexedObject$5;
631
632
  var objectKeys$1 = objectKeys$2;
632
633
 
633
634
  // `Object.defineProperties` method
634
635
  // https://tc39.es/ecma262/#sec-object.defineproperties
635
636
  // eslint-disable-next-line es/no-object-defineproperties -- safe
636
- objectDefineProperties.f = DESCRIPTORS$c && !V8_PROTOTYPE_DEFINE_BUG ? Object.defineProperties : function defineProperties(O, Properties) {
637
- anObject$7(O);
637
+ objectDefineProperties.f = DESCRIPTORS$d && !V8_PROTOTYPE_DEFINE_BUG ? Object.defineProperties : function defineProperties(O, Properties) {
638
+ anObject$c(O);
638
639
  var props = toIndexedObject$2(Properties);
639
640
  var keys = objectKeys$1(Properties);
640
641
  var length = keys.length;
@@ -644,9 +645,9 @@ objectDefineProperties.f = DESCRIPTORS$c && !V8_PROTOTYPE_DEFINE_BUG ? Object.de
644
645
  return O;
645
646
  };
646
647
 
647
- var getBuiltIn$4 = getBuiltIn$6;
648
+ var getBuiltIn$7 = getBuiltIn$9;
648
649
 
649
- var html$1 = getBuiltIn$4('document', 'documentElement');
650
+ var html$2 = getBuiltIn$7('document', 'documentElement');
650
651
 
651
652
  var shared$2 = shared$4;
652
653
  var uid = uid$2;
@@ -658,11 +659,11 @@ var sharedKey$3 = function (key) {
658
659
  };
659
660
 
660
661
  /* global ActiveXObject -- old IE, WSH */
661
- var anObject$6 = anObject$9;
662
+ var anObject$b = anObject$e;
662
663
  var definePropertiesModule = objectDefineProperties;
663
664
  var enumBugKeys$1 = enumBugKeys$3;
664
665
  var hiddenKeys$2 = hiddenKeys$4;
665
- var html = html$1;
666
+ var html$1 = html$2;
666
667
  var documentCreateElement$1 = documentCreateElement$2;
667
668
  var sharedKey$2 = sharedKey$3;
668
669
 
@@ -694,7 +695,7 @@ var NullProtoObjectViaIFrame = function () {
694
695
  var JS = 'java' + SCRIPT + ':';
695
696
  var iframeDocument;
696
697
  iframe.style.display = 'none';
697
- html.appendChild(iframe);
698
+ html$1.appendChild(iframe);
698
699
  // https://github.com/zloirock/core-js/issues/475
699
700
  iframe.src = String(JS);
700
701
  iframeDocument = iframe.contentWindow.document;
@@ -732,7 +733,7 @@ hiddenKeys$2[IE_PROTO$1] = true;
732
733
  var objectCreate = Object.create || function create(O, Properties) {
733
734
  var result;
734
735
  if (O !== null) {
735
- EmptyConstructor[PROTOTYPE] = anObject$6(O);
736
+ EmptyConstructor[PROTOTYPE] = anObject$b(O);
736
737
  result = new EmptyConstructor();
737
738
  EmptyConstructor[PROTOTYPE] = null;
738
739
  // add "__proto__" for Object.getPrototypeOf polyfill
@@ -741,17 +742,17 @@ var objectCreate = Object.create || function create(O, Properties) {
741
742
  return Properties === undefined ? result : definePropertiesModule.f(result, Properties);
742
743
  };
743
744
 
744
- var wellKnownSymbol$c = wellKnownSymbol$e;
745
+ var wellKnownSymbol$h = wellKnownSymbol$j;
745
746
  var create$3 = objectCreate;
746
747
  var defineProperty$6 = objectDefineProperty.f;
747
748
 
748
- var UNSCOPABLES = wellKnownSymbol$c('unscopables');
749
- var ArrayPrototype = Array.prototype;
749
+ var UNSCOPABLES = wellKnownSymbol$h('unscopables');
750
+ var ArrayPrototype$1 = Array.prototype;
750
751
 
751
752
  // Array.prototype[@@unscopables]
752
753
  // https://tc39.es/ecma262/#sec-array.prototype-@@unscopables
753
- if (ArrayPrototype[UNSCOPABLES] === undefined) {
754
- defineProperty$6(ArrayPrototype, UNSCOPABLES, {
754
+ if (ArrayPrototype$1[UNSCOPABLES] === undefined) {
755
+ defineProperty$6(ArrayPrototype$1, UNSCOPABLES, {
755
756
  configurable: true,
756
757
  value: create$3(null)
757
758
  });
@@ -759,17 +760,17 @@ if (ArrayPrototype[UNSCOPABLES] === undefined) {
759
760
 
760
761
  // add a key to Array.prototype[@@unscopables]
761
762
  var addToUnscopables$3 = function (key) {
762
- ArrayPrototype[UNSCOPABLES][key] = true;
763
+ ArrayPrototype$1[UNSCOPABLES][key] = true;
763
764
  };
764
765
 
765
766
  var iterators = {};
766
767
 
767
- var global$a = global$h;
768
- var isCallable$f = isCallable$l;
768
+ var global$h = global$o;
769
+ var isCallable$k = isCallable$q;
769
770
 
770
- var WeakMap$1 = global$a.WeakMap;
771
+ var WeakMap$1 = global$h.WeakMap;
771
772
 
772
- var weakMapBasicDetection = isCallable$f(WeakMap$1) && /native code/.test(String(WeakMap$1));
773
+ var weakMapBasicDetection = isCallable$k(WeakMap$1) && /native code/.test(String(WeakMap$1));
773
774
 
774
775
  var createPropertyDescriptor$4 = function (bitmap, value) {
775
776
  return {
@@ -780,11 +781,11 @@ var createPropertyDescriptor$4 = function (bitmap, value) {
780
781
  };
781
782
  };
782
783
 
783
- var DESCRIPTORS$b = descriptors;
784
+ var DESCRIPTORS$c = descriptors;
784
785
  var definePropertyModule$2 = objectDefineProperty;
785
786
  var createPropertyDescriptor$3 = createPropertyDescriptor$4;
786
787
 
787
- var createNonEnumerableProperty$9 = DESCRIPTORS$b ? function (object, key, value) {
788
+ var createNonEnumerableProperty$9 = DESCRIPTORS$c ? function (object, key, value) {
788
789
  return definePropertyModule$2.f(object, key, createPropertyDescriptor$3(1, value));
789
790
  } : function (object, key, value) {
790
791
  object[key] = value;
@@ -792,28 +793,28 @@ var createNonEnumerableProperty$9 = DESCRIPTORS$b ? function (object, key, value
792
793
  };
793
794
 
794
795
  var NATIVE_WEAK_MAP = weakMapBasicDetection;
795
- var global$9 = global$h;
796
- var isObject$6 = isObject$b;
796
+ var global$g = global$o;
797
+ var isObject$8 = isObject$d;
797
798
  var createNonEnumerableProperty$8 = createNonEnumerableProperty$9;
798
- var hasOwn$a = hasOwnProperty_1;
799
+ var hasOwn$b = hasOwnProperty_1;
799
800
  var shared$1 = sharedStore.exports;
800
801
  var sharedKey$1 = sharedKey$3;
801
802
  var hiddenKeys$1 = hiddenKeys$4;
802
803
 
803
804
  var OBJECT_ALREADY_INITIALIZED = 'Object already initialized';
804
- var TypeError$1 = global$9.TypeError;
805
- var WeakMap = global$9.WeakMap;
806
- var set, get, has;
805
+ var TypeError$2 = global$g.TypeError;
806
+ var WeakMap = global$g.WeakMap;
807
+ var set$1, get, has;
807
808
 
808
809
  var enforce = function (it) {
809
- return has(it) ? get(it) : set(it, {});
810
+ return has(it) ? get(it) : set$1(it, {});
810
811
  };
811
812
 
812
813
  var getterFor = function (TYPE) {
813
814
  return function (it) {
814
815
  var state;
815
- if (!isObject$6(it) || (state = get(it)).type !== TYPE) {
816
- throw new TypeError$1('Incompatible receiver, ' + TYPE + ' required');
816
+ if (!isObject$8(it) || (state = get(it)).type !== TYPE) {
817
+ throw new TypeError$2('Incompatible receiver, ' + TYPE + ' required');
817
818
  } return state;
818
819
  };
819
820
  };
@@ -825,8 +826,8 @@ if (NATIVE_WEAK_MAP || shared$1.state) {
825
826
  store$1.has = store$1.has;
826
827
  store$1.set = store$1.set;
827
828
  /* eslint-enable no-self-assign -- prototype methods protection */
828
- set = function (it, metadata) {
829
- if (store$1.has(it)) throw new TypeError$1(OBJECT_ALREADY_INITIALIZED);
829
+ set$1 = function (it, metadata) {
830
+ if (store$1.has(it)) throw new TypeError$2(OBJECT_ALREADY_INITIALIZED);
830
831
  metadata.facade = it;
831
832
  store$1.set(it, metadata);
832
833
  return metadata;
@@ -840,22 +841,22 @@ if (NATIVE_WEAK_MAP || shared$1.state) {
840
841
  } else {
841
842
  var STATE = sharedKey$1('state');
842
843
  hiddenKeys$1[STATE] = true;
843
- set = function (it, metadata) {
844
- if (hasOwn$a(it, STATE)) throw new TypeError$1(OBJECT_ALREADY_INITIALIZED);
844
+ set$1 = function (it, metadata) {
845
+ if (hasOwn$b(it, STATE)) throw new TypeError$2(OBJECT_ALREADY_INITIALIZED);
845
846
  metadata.facade = it;
846
847
  createNonEnumerableProperty$8(it, STATE, metadata);
847
848
  return metadata;
848
849
  };
849
850
  get = function (it) {
850
- return hasOwn$a(it, STATE) ? it[STATE] : {};
851
+ return hasOwn$b(it, STATE) ? it[STATE] : {};
851
852
  };
852
853
  has = function (it) {
853
- return hasOwn$a(it, STATE);
854
+ return hasOwn$b(it, STATE);
854
855
  };
855
856
  }
856
857
 
857
858
  var internalState = {
858
- set: set,
859
+ set: set$1,
859
860
  get: get,
860
861
  has: has,
861
862
  enforce: enforce,
@@ -868,25 +869,25 @@ var objectPropertyIsEnumerable = {};
868
869
 
869
870
  var $propertyIsEnumerable = {}.propertyIsEnumerable;
870
871
  // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
871
- var getOwnPropertyDescriptor$2 = Object.getOwnPropertyDescriptor;
872
+ var getOwnPropertyDescriptor$3 = Object.getOwnPropertyDescriptor;
872
873
 
873
874
  // Nashorn ~ JDK8 bug
874
- var NASHORN_BUG = getOwnPropertyDescriptor$2 && !$propertyIsEnumerable.call({ 1: 2 }, 1);
875
+ var NASHORN_BUG = getOwnPropertyDescriptor$3 && !$propertyIsEnumerable.call({ 1: 2 }, 1);
875
876
 
876
877
  // `Object.prototype.propertyIsEnumerable` method implementation
877
878
  // https://tc39.es/ecma262/#sec-object.prototype.propertyisenumerable
878
879
  objectPropertyIsEnumerable.f = NASHORN_BUG ? function propertyIsEnumerable(V) {
879
- var descriptor = getOwnPropertyDescriptor$2(this, V);
880
+ var descriptor = getOwnPropertyDescriptor$3(this, V);
880
881
  return !!descriptor && descriptor.enumerable;
881
882
  } : $propertyIsEnumerable;
882
883
 
883
- var DESCRIPTORS$a = descriptors;
884
- var call$a = functionCall;
884
+ var DESCRIPTORS$b = descriptors;
885
+ var call$g = functionCall;
885
886
  var propertyIsEnumerableModule$1 = objectPropertyIsEnumerable;
886
887
  var createPropertyDescriptor$2 = createPropertyDescriptor$4;
887
888
  var toIndexedObject$1 = toIndexedObject$5;
888
889
  var toPropertyKey = toPropertyKey$2;
889
- var hasOwn$9 = hasOwnProperty_1;
890
+ var hasOwn$a = hasOwnProperty_1;
890
891
  var IE8_DOM_DEFINE = ie8DomDefine;
891
892
 
892
893
  // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
@@ -894,28 +895,28 @@ var $getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
894
895
 
895
896
  // `Object.getOwnPropertyDescriptor` method
896
897
  // https://tc39.es/ecma262/#sec-object.getownpropertydescriptor
897
- objectGetOwnPropertyDescriptor.f = DESCRIPTORS$a ? $getOwnPropertyDescriptor : function getOwnPropertyDescriptor(O, P) {
898
+ objectGetOwnPropertyDescriptor.f = DESCRIPTORS$b ? $getOwnPropertyDescriptor : function getOwnPropertyDescriptor(O, P) {
898
899
  O = toIndexedObject$1(O);
899
900
  P = toPropertyKey(P);
900
901
  if (IE8_DOM_DEFINE) try {
901
902
  return $getOwnPropertyDescriptor(O, P);
902
903
  } catch (error) { /* empty */ }
903
- if (hasOwn$9(O, P)) return createPropertyDescriptor$2(!call$a(propertyIsEnumerableModule$1.f, O, P), O[P]);
904
+ if (hasOwn$a(O, P)) return createPropertyDescriptor$2(!call$g(propertyIsEnumerableModule$1.f, O, P), O[P]);
904
905
  };
905
906
 
906
907
  var makeBuiltIn$3 = {exports: {}};
907
908
 
908
- var DESCRIPTORS$9 = descriptors;
909
- var hasOwn$8 = hasOwnProperty_1;
909
+ var DESCRIPTORS$a = descriptors;
910
+ var hasOwn$9 = hasOwnProperty_1;
910
911
 
911
912
  var FunctionPrototype$1 = Function.prototype;
912
913
  // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
913
- var getDescriptor = DESCRIPTORS$9 && Object.getOwnPropertyDescriptor;
914
+ var getDescriptor = DESCRIPTORS$a && Object.getOwnPropertyDescriptor;
914
915
 
915
- var EXISTS = hasOwn$8(FunctionPrototype$1, 'name');
916
+ var EXISTS = hasOwn$9(FunctionPrototype$1, 'name');
916
917
  // additional protection from minified / mangled / dropped function names
917
918
  var PROPER = EXISTS && (function something() { /* empty */ }).name === 'something';
918
- var CONFIGURABLE = EXISTS && (!DESCRIPTORS$9 || (DESCRIPTORS$9 && getDescriptor(FunctionPrototype$1, 'name').configurable));
919
+ var CONFIGURABLE = EXISTS && (!DESCRIPTORS$a || (DESCRIPTORS$a && getDescriptor(FunctionPrototype$1, 'name').configurable));
919
920
 
920
921
  var functionName = {
921
922
  EXISTS: EXISTS,
@@ -923,40 +924,40 @@ var functionName = {
923
924
  CONFIGURABLE: CONFIGURABLE
924
925
  };
925
926
 
926
- var uncurryThis$g = functionUncurryThis;
927
- var isCallable$e = isCallable$l;
927
+ var uncurryThis$j = functionUncurryThis;
928
+ var isCallable$j = isCallable$q;
928
929
  var store = sharedStore.exports;
929
930
 
930
- var functionToString = uncurryThis$g(Function.toString);
931
+ var functionToString = uncurryThis$j(Function.toString);
931
932
 
932
933
  // this helper broken in `core-js@3.4.1-3.4.4`, so we can't use `shared` helper
933
- if (!isCallable$e(store.inspectSource)) {
934
+ if (!isCallable$j(store.inspectSource)) {
934
935
  store.inspectSource = function (it) {
935
936
  return functionToString(it);
936
937
  };
937
938
  }
938
939
 
939
- var inspectSource$1 = store.inspectSource;
940
+ var inspectSource$3 = store.inspectSource;
940
941
 
941
- var uncurryThis$f = functionUncurryThis;
942
- var fails$g = fails$n;
943
- var isCallable$d = isCallable$l;
944
- var hasOwn$7 = hasOwnProperty_1;
945
- var DESCRIPTORS$8 = descriptors;
942
+ var uncurryThis$i = functionUncurryThis;
943
+ var fails$j = fails$q;
944
+ var isCallable$i = isCallable$q;
945
+ var hasOwn$8 = hasOwnProperty_1;
946
+ var DESCRIPTORS$9 = descriptors;
946
947
  var CONFIGURABLE_FUNCTION_NAME$1 = functionName.CONFIGURABLE;
947
- var inspectSource = inspectSource$1;
948
- var InternalStateModule$1 = internalState;
948
+ var inspectSource$2 = inspectSource$3;
949
+ var InternalStateModule$2 = internalState;
949
950
 
950
- var enforceInternalState$1 = InternalStateModule$1.enforce;
951
- var getInternalState$3 = InternalStateModule$1.get;
951
+ var enforceInternalState$1 = InternalStateModule$2.enforce;
952
+ var getInternalState$3 = InternalStateModule$2.get;
952
953
  var $String$3 = String;
953
954
  // eslint-disable-next-line es/no-object-defineproperty -- safe
954
955
  var defineProperty$5 = Object.defineProperty;
955
- var stringSlice$6 = uncurryThis$f(''.slice);
956
- var replace$6 = uncurryThis$f(''.replace);
957
- var join = uncurryThis$f([].join);
956
+ var stringSlice$6 = uncurryThis$i(''.slice);
957
+ var replace$6 = uncurryThis$i(''.replace);
958
+ var join = uncurryThis$i([].join);
958
959
 
959
- var CONFIGURABLE_LENGTH = DESCRIPTORS$8 && !fails$g(function () {
960
+ var CONFIGURABLE_LENGTH = DESCRIPTORS$9 && !fails$j(function () {
960
961
  return defineProperty$5(function () { /* empty */ }, 'length', { value: 8 }).length !== 8;
961
962
  });
962
963
 
@@ -968,21 +969,21 @@ var makeBuiltIn$2 = makeBuiltIn$3.exports = function (value, name, options) {
968
969
  }
969
970
  if (options && options.getter) name = 'get ' + name;
970
971
  if (options && options.setter) name = 'set ' + name;
971
- if (!hasOwn$7(value, 'name') || (CONFIGURABLE_FUNCTION_NAME$1 && value.name !== name)) {
972
- if (DESCRIPTORS$8) defineProperty$5(value, 'name', { value: name, configurable: true });
972
+ if (!hasOwn$8(value, 'name') || (CONFIGURABLE_FUNCTION_NAME$1 && value.name !== name)) {
973
+ if (DESCRIPTORS$9) defineProperty$5(value, 'name', { value: name, configurable: true });
973
974
  else value.name = name;
974
975
  }
975
- if (CONFIGURABLE_LENGTH && options && hasOwn$7(options, 'arity') && value.length !== options.arity) {
976
+ if (CONFIGURABLE_LENGTH && options && hasOwn$8(options, 'arity') && value.length !== options.arity) {
976
977
  defineProperty$5(value, 'length', { value: options.arity });
977
978
  }
978
979
  try {
979
- if (options && hasOwn$7(options, 'constructor') && options.constructor) {
980
- if (DESCRIPTORS$8) defineProperty$5(value, 'prototype', { writable: false });
980
+ if (options && hasOwn$8(options, 'constructor') && options.constructor) {
981
+ if (DESCRIPTORS$9) defineProperty$5(value, 'prototype', { writable: false });
981
982
  // in V8 ~ Chrome 53, prototypes of some methods, like `Array.prototype.values`, are non-writable
982
983
  } else if (value.prototype) value.prototype = undefined;
983
984
  } catch (error) { /* empty */ }
984
985
  var state = enforceInternalState$1(value);
985
- if (!hasOwn$7(state, 'source')) {
986
+ if (!hasOwn$8(state, 'source')) {
986
987
  state.source = join(TEMPLATE, typeof name == 'string' ? name : '');
987
988
  } return value;
988
989
  };
@@ -990,19 +991,19 @@ var makeBuiltIn$2 = makeBuiltIn$3.exports = function (value, name, options) {
990
991
  // add fake Function#toString for correct work wrapped methods / constructors with methods like LoDash isNative
991
992
  // eslint-disable-next-line no-extend-native -- required
992
993
  Function.prototype.toString = makeBuiltIn$2(function toString() {
993
- return isCallable$d(this) && getInternalState$3(this).source || inspectSource(this);
994
+ return isCallable$i(this) && getInternalState$3(this).source || inspectSource$2(this);
994
995
  }, 'toString');
995
996
 
996
- var isCallable$c = isCallable$l;
997
+ var isCallable$h = isCallable$q;
997
998
  var definePropertyModule$1 = objectDefineProperty;
998
999
  var makeBuiltIn$1 = makeBuiltIn$3.exports;
999
1000
  var defineGlobalProperty$1 = defineGlobalProperty$3;
1000
1001
 
1001
- var defineBuiltIn$6 = function (O, key, value, options) {
1002
+ var defineBuiltIn$8 = function (O, key, value, options) {
1002
1003
  if (!options) options = {};
1003
1004
  var simple = options.enumerable;
1004
1005
  var name = options.name !== undefined ? options.name : key;
1005
- if (isCallable$c(value)) makeBuiltIn$1(value, name, options);
1006
+ if (isCallable$h(value)) makeBuiltIn$1(value, name, options);
1006
1007
  if (options.global) {
1007
1008
  if (simple) O[key] = value;
1008
1009
  else defineGlobalProperty$1(key, value);
@@ -1040,22 +1041,22 @@ var objectGetOwnPropertySymbols = {};
1040
1041
  // eslint-disable-next-line es/no-object-getownpropertysymbols -- safe
1041
1042
  objectGetOwnPropertySymbols.f = Object.getOwnPropertySymbols;
1042
1043
 
1043
- var getBuiltIn$3 = getBuiltIn$6;
1044
- var uncurryThis$e = functionUncurryThis;
1044
+ var getBuiltIn$6 = getBuiltIn$9;
1045
+ var uncurryThis$h = functionUncurryThis;
1045
1046
  var getOwnPropertyNamesModule = objectGetOwnPropertyNames;
1046
1047
  var getOwnPropertySymbolsModule$1 = objectGetOwnPropertySymbols;
1047
- var anObject$5 = anObject$9;
1048
+ var anObject$a = anObject$e;
1048
1049
 
1049
- var concat$2 = uncurryThis$e([].concat);
1050
+ var concat$2 = uncurryThis$h([].concat);
1050
1051
 
1051
1052
  // all object keys, includes non-enumerable and symbols
1052
- var ownKeys$1 = getBuiltIn$3('Reflect', 'ownKeys') || function ownKeys(it) {
1053
- var keys = getOwnPropertyNamesModule.f(anObject$5(it));
1053
+ var ownKeys$1 = getBuiltIn$6('Reflect', 'ownKeys') || function ownKeys(it) {
1054
+ var keys = getOwnPropertyNamesModule.f(anObject$a(it));
1054
1055
  var getOwnPropertySymbols = getOwnPropertySymbolsModule$1.f;
1055
1056
  return getOwnPropertySymbols ? concat$2(keys, getOwnPropertySymbols(it)) : keys;
1056
1057
  };
1057
1058
 
1058
- var hasOwn$6 = hasOwnProperty_1;
1059
+ var hasOwn$7 = hasOwnProperty_1;
1059
1060
  var ownKeys = ownKeys$1;
1060
1061
  var getOwnPropertyDescriptorModule = objectGetOwnPropertyDescriptor;
1061
1062
  var definePropertyModule = objectDefineProperty;
@@ -1066,42 +1067,42 @@ var copyConstructorProperties$3 = function (target, source, exceptions) {
1066
1067
  var getOwnPropertyDescriptor = getOwnPropertyDescriptorModule.f;
1067
1068
  for (var i = 0; i < keys.length; i++) {
1068
1069
  var key = keys[i];
1069
- if (!hasOwn$6(target, key) && !(exceptions && hasOwn$6(exceptions, key))) {
1070
+ if (!hasOwn$7(target, key) && !(exceptions && hasOwn$7(exceptions, key))) {
1070
1071
  defineProperty(target, key, getOwnPropertyDescriptor(source, key));
1071
1072
  }
1072
1073
  }
1073
1074
  };
1074
1075
 
1075
- var fails$f = fails$n;
1076
- var isCallable$b = isCallable$l;
1076
+ var fails$i = fails$q;
1077
+ var isCallable$g = isCallable$q;
1077
1078
 
1078
1079
  var replacement = /#|\.prototype\./;
1079
1080
 
1080
- var isForced$2 = function (feature, detection) {
1081
+ var isForced$3 = function (feature, detection) {
1081
1082
  var value = data[normalize(feature)];
1082
1083
  return value === POLYFILL ? true
1083
1084
  : value === NATIVE ? false
1084
- : isCallable$b(detection) ? fails$f(detection)
1085
+ : isCallable$g(detection) ? fails$i(detection)
1085
1086
  : !!detection;
1086
1087
  };
1087
1088
 
1088
- var normalize = isForced$2.normalize = function (string) {
1089
+ var normalize = isForced$3.normalize = function (string) {
1089
1090
  return String(string).replace(replacement, '.').toLowerCase();
1090
1091
  };
1091
1092
 
1092
- var data = isForced$2.data = {};
1093
- var NATIVE = isForced$2.NATIVE = 'N';
1094
- var POLYFILL = isForced$2.POLYFILL = 'P';
1093
+ var data = isForced$3.data = {};
1094
+ var NATIVE = isForced$3.NATIVE = 'N';
1095
+ var POLYFILL = isForced$3.POLYFILL = 'P';
1095
1096
 
1096
- var isForced_1 = isForced$2;
1097
+ var isForced_1 = isForced$3;
1097
1098
 
1098
- var global$8 = global$h;
1099
- var getOwnPropertyDescriptor$1 = objectGetOwnPropertyDescriptor.f;
1099
+ var global$f = global$o;
1100
+ var getOwnPropertyDescriptor$2 = objectGetOwnPropertyDescriptor.f;
1100
1101
  var createNonEnumerableProperty$7 = createNonEnumerableProperty$9;
1101
- var defineBuiltIn$5 = defineBuiltIn$6;
1102
+ var defineBuiltIn$7 = defineBuiltIn$8;
1102
1103
  var defineGlobalProperty = defineGlobalProperty$3;
1103
1104
  var copyConstructorProperties$2 = copyConstructorProperties$3;
1104
- var isForced$1 = isForced_1;
1105
+ var isForced$2 = isForced_1;
1105
1106
 
1106
1107
  /*
1107
1108
  options.target - name of the target object
@@ -1124,19 +1125,19 @@ var _export = function (options, source) {
1124
1125
  var STATIC = options.stat;
1125
1126
  var FORCED, target, key, targetProperty, sourceProperty, descriptor;
1126
1127
  if (GLOBAL) {
1127
- target = global$8;
1128
+ target = global$f;
1128
1129
  } else if (STATIC) {
1129
- target = global$8[TARGET] || defineGlobalProperty(TARGET, {});
1130
+ target = global$f[TARGET] || defineGlobalProperty(TARGET, {});
1130
1131
  } else {
1131
- target = global$8[TARGET] && global$8[TARGET].prototype;
1132
+ target = global$f[TARGET] && global$f[TARGET].prototype;
1132
1133
  }
1133
1134
  if (target) for (key in source) {
1134
1135
  sourceProperty = source[key];
1135
1136
  if (options.dontCallGetSet) {
1136
- descriptor = getOwnPropertyDescriptor$1(target, key);
1137
+ descriptor = getOwnPropertyDescriptor$2(target, key);
1137
1138
  targetProperty = descriptor && descriptor.value;
1138
1139
  } else targetProperty = target[key];
1139
- FORCED = isForced$1(GLOBAL ? key : TARGET + (STATIC ? '.' : '#') + key, options.forced);
1140
+ FORCED = isForced$2(GLOBAL ? key : TARGET + (STATIC ? '.' : '#') + key, options.forced);
1140
1141
  // contained in target
1141
1142
  if (!FORCED && targetProperty !== undefined) {
1142
1143
  if (typeof sourceProperty == typeof targetProperty) continue;
@@ -1146,22 +1147,22 @@ var _export = function (options, source) {
1146
1147
  if (options.sham || (targetProperty && targetProperty.sham)) {
1147
1148
  createNonEnumerableProperty$7(sourceProperty, 'sham', true);
1148
1149
  }
1149
- defineBuiltIn$5(target, key, sourceProperty, options);
1150
+ defineBuiltIn$7(target, key, sourceProperty, options);
1150
1151
  }
1151
1152
  };
1152
1153
 
1153
- var fails$e = fails$n;
1154
+ var fails$h = fails$q;
1154
1155
 
1155
- var correctPrototypeGetter = !fails$e(function () {
1156
+ var correctPrototypeGetter = !fails$h(function () {
1156
1157
  function F() { /* empty */ }
1157
1158
  F.prototype.constructor = null;
1158
1159
  // eslint-disable-next-line es/no-object-getprototypeof -- required for testing
1159
1160
  return Object.getPrototypeOf(new F()) !== F.prototype;
1160
1161
  });
1161
1162
 
1162
- var hasOwn$5 = hasOwnProperty_1;
1163
- var isCallable$a = isCallable$l;
1164
- var toObject$4 = toObject$6;
1163
+ var hasOwn$6 = hasOwnProperty_1;
1164
+ var isCallable$f = isCallable$q;
1165
+ var toObject$5 = toObject$7;
1165
1166
  var sharedKey = sharedKey$3;
1166
1167
  var CORRECT_PROTOTYPE_GETTER = correctPrototypeGetter;
1167
1168
 
@@ -1173,22 +1174,22 @@ var ObjectPrototype = $Object$1.prototype;
1173
1174
  // https://tc39.es/ecma262/#sec-object.getprototypeof
1174
1175
  // eslint-disable-next-line es/no-object-getprototypeof -- safe
1175
1176
  var objectGetPrototypeOf = CORRECT_PROTOTYPE_GETTER ? $Object$1.getPrototypeOf : function (O) {
1176
- var object = toObject$4(O);
1177
- if (hasOwn$5(object, IE_PROTO)) return object[IE_PROTO];
1177
+ var object = toObject$5(O);
1178
+ if (hasOwn$6(object, IE_PROTO)) return object[IE_PROTO];
1178
1179
  var constructor = object.constructor;
1179
- if (isCallable$a(constructor) && object instanceof constructor) {
1180
+ if (isCallable$f(constructor) && object instanceof constructor) {
1180
1181
  return constructor.prototype;
1181
1182
  } return object instanceof $Object$1 ? ObjectPrototype : null;
1182
1183
  };
1183
1184
 
1184
- var fails$d = fails$n;
1185
- var isCallable$9 = isCallable$l;
1186
- var isObject$5 = isObject$b;
1185
+ var fails$g = fails$q;
1186
+ var isCallable$e = isCallable$q;
1187
+ var isObject$7 = isObject$d;
1187
1188
  var getPrototypeOf$1 = objectGetPrototypeOf;
1188
- var defineBuiltIn$4 = defineBuiltIn$6;
1189
- var wellKnownSymbol$b = wellKnownSymbol$e;
1189
+ var defineBuiltIn$6 = defineBuiltIn$8;
1190
+ var wellKnownSymbol$g = wellKnownSymbol$j;
1190
1191
 
1191
- var ITERATOR$2 = wellKnownSymbol$b('iterator');
1192
+ var ITERATOR$5 = wellKnownSymbol$g('iterator');
1192
1193
  var BUGGY_SAFARI_ITERATORS$1 = false;
1193
1194
 
1194
1195
  // `%IteratorPrototype%` object
@@ -1206,18 +1207,18 @@ if ([].keys) {
1206
1207
  }
1207
1208
  }
1208
1209
 
1209
- var NEW_ITERATOR_PROTOTYPE = !isObject$5(IteratorPrototype$2) || fails$d(function () {
1210
+ var NEW_ITERATOR_PROTOTYPE = !isObject$7(IteratorPrototype$2) || fails$g(function () {
1210
1211
  var test = {};
1211
1212
  // FF44- legacy iterators case
1212
- return IteratorPrototype$2[ITERATOR$2].call(test) !== test;
1213
+ return IteratorPrototype$2[ITERATOR$5].call(test) !== test;
1213
1214
  });
1214
1215
 
1215
1216
  if (NEW_ITERATOR_PROTOTYPE) IteratorPrototype$2 = {};
1216
1217
 
1217
1218
  // `%IteratorPrototype%[@@iterator]()` method
1218
1219
  // https://tc39.es/ecma262/#sec-%iteratorprototype%-@@iterator
1219
- if (!isCallable$9(IteratorPrototype$2[ITERATOR$2])) {
1220
- defineBuiltIn$4(IteratorPrototype$2, ITERATOR$2, function () {
1220
+ if (!isCallable$e(IteratorPrototype$2[ITERATOR$5])) {
1221
+ defineBuiltIn$6(IteratorPrototype$2, ITERATOR$5, function () {
1221
1222
  return this;
1222
1223
  });
1223
1224
  }
@@ -1228,14 +1229,14 @@ var iteratorsCore = {
1228
1229
  };
1229
1230
 
1230
1231
  var defineProperty$4 = objectDefineProperty.f;
1231
- var hasOwn$4 = hasOwnProperty_1;
1232
- var wellKnownSymbol$a = wellKnownSymbol$e;
1232
+ var hasOwn$5 = hasOwnProperty_1;
1233
+ var wellKnownSymbol$f = wellKnownSymbol$j;
1233
1234
 
1234
- var TO_STRING_TAG$2 = wellKnownSymbol$a('toStringTag');
1235
+ var TO_STRING_TAG$2 = wellKnownSymbol$f('toStringTag');
1235
1236
 
1236
- var setToStringTag$3 = function (target, TAG, STATIC) {
1237
+ var setToStringTag$4 = function (target, TAG, STATIC) {
1237
1238
  if (target && !STATIC) target = target.prototype;
1238
- if (target && !hasOwn$4(target, TO_STRING_TAG$2)) {
1239
+ if (target && !hasOwn$5(target, TO_STRING_TAG$2)) {
1239
1240
  defineProperty$4(target, TO_STRING_TAG$2, { configurable: true, value: TAG });
1240
1241
  }
1241
1242
  };
@@ -1243,48 +1244,48 @@ var setToStringTag$3 = function (target, TAG, STATIC) {
1243
1244
  var IteratorPrototype$1 = iteratorsCore.IteratorPrototype;
1244
1245
  var create$2 = objectCreate;
1245
1246
  var createPropertyDescriptor$1 = createPropertyDescriptor$4;
1246
- var setToStringTag$2 = setToStringTag$3;
1247
- var Iterators$2 = iterators;
1247
+ var setToStringTag$3 = setToStringTag$4;
1248
+ var Iterators$4 = iterators;
1248
1249
 
1249
1250
  var returnThis$1 = function () { return this; };
1250
1251
 
1251
1252
  var iteratorCreateConstructor = function (IteratorConstructor, NAME, next, ENUMERABLE_NEXT) {
1252
1253
  var TO_STRING_TAG = NAME + ' Iterator';
1253
1254
  IteratorConstructor.prototype = create$2(IteratorPrototype$1, { next: createPropertyDescriptor$1(+!ENUMERABLE_NEXT, next) });
1254
- setToStringTag$2(IteratorConstructor, TO_STRING_TAG, false);
1255
- Iterators$2[TO_STRING_TAG] = returnThis$1;
1255
+ setToStringTag$3(IteratorConstructor, TO_STRING_TAG, false);
1256
+ Iterators$4[TO_STRING_TAG] = returnThis$1;
1256
1257
  return IteratorConstructor;
1257
1258
  };
1258
1259
 
1259
- var uncurryThis$d = functionUncurryThis;
1260
- var aCallable = aCallable$2;
1260
+ var uncurryThis$g = functionUncurryThis;
1261
+ var aCallable$7 = aCallable$9;
1261
1262
 
1262
1263
  var functionUncurryThisAccessor = function (object, key, method) {
1263
1264
  try {
1264
1265
  // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
1265
- return uncurryThis$d(aCallable(Object.getOwnPropertyDescriptor(object, key)[method]));
1266
+ return uncurryThis$g(aCallable$7(Object.getOwnPropertyDescriptor(object, key)[method]));
1266
1267
  } catch (error) { /* empty */ }
1267
1268
  };
1268
1269
 
1269
- var isObject$4 = isObject$b;
1270
+ var isObject$6 = isObject$d;
1270
1271
 
1271
1272
  var isPossiblePrototype$1 = function (argument) {
1272
- return isObject$4(argument) || argument === null;
1273
+ return isObject$6(argument) || argument === null;
1273
1274
  };
1274
1275
 
1275
1276
  var isPossiblePrototype = isPossiblePrototype$1;
1276
1277
 
1277
1278
  var $String$2 = String;
1278
- var $TypeError$5 = TypeError;
1279
+ var $TypeError$c = TypeError;
1279
1280
 
1280
1281
  var aPossiblePrototype$1 = function (argument) {
1281
1282
  if (isPossiblePrototype(argument)) return argument;
1282
- throw new $TypeError$5("Can't set " + $String$2(argument) + ' as a prototype');
1283
+ throw new $TypeError$c("Can't set " + $String$2(argument) + ' as a prototype');
1283
1284
  };
1284
1285
 
1285
1286
  /* eslint-disable no-proto -- safe */
1286
1287
  var uncurryThisAccessor = functionUncurryThisAccessor;
1287
- var isObject$3 = isObject$b;
1288
+ var isObject$5 = isObject$d;
1288
1289
  var requireObjectCoercible$4 = requireObjectCoercible$7;
1289
1290
  var aPossiblePrototype = aPossiblePrototype$1;
1290
1291
 
@@ -1304,32 +1305,32 @@ var objectSetPrototypeOf = Object.setPrototypeOf || ('__proto__' in {} ? functio
1304
1305
  return function setPrototypeOf(O, proto) {
1305
1306
  requireObjectCoercible$4(O);
1306
1307
  aPossiblePrototype(proto);
1307
- if (!isObject$3(O)) return O;
1308
+ if (!isObject$5(O)) return O;
1308
1309
  if (CORRECT_SETTER) setter(O, proto);
1309
1310
  else O.__proto__ = proto;
1310
1311
  return O;
1311
1312
  };
1312
1313
  }() : undefined);
1313
1314
 
1314
- var $$b = _export;
1315
- var call$9 = functionCall;
1315
+ var $$i = _export;
1316
+ var call$f = functionCall;
1316
1317
  var FunctionName = functionName;
1317
- var isCallable$8 = isCallable$l;
1318
+ var isCallable$d = isCallable$q;
1318
1319
  var createIteratorConstructor = iteratorCreateConstructor;
1319
1320
  var getPrototypeOf = objectGetPrototypeOf;
1320
- var setPrototypeOf$2 = objectSetPrototypeOf;
1321
- var setToStringTag$1 = setToStringTag$3;
1321
+ var setPrototypeOf$3 = objectSetPrototypeOf;
1322
+ var setToStringTag$2 = setToStringTag$4;
1322
1323
  var createNonEnumerableProperty$6 = createNonEnumerableProperty$9;
1323
- var defineBuiltIn$3 = defineBuiltIn$6;
1324
- var wellKnownSymbol$9 = wellKnownSymbol$e;
1325
- var Iterators$1 = iterators;
1324
+ var defineBuiltIn$5 = defineBuiltIn$8;
1325
+ var wellKnownSymbol$e = wellKnownSymbol$j;
1326
+ var Iterators$3 = iterators;
1326
1327
  var IteratorsCore = iteratorsCore;
1327
1328
 
1328
1329
  var PROPER_FUNCTION_NAME$1 = FunctionName.PROPER;
1329
1330
  var CONFIGURABLE_FUNCTION_NAME = FunctionName.CONFIGURABLE;
1330
1331
  var IteratorPrototype = IteratorsCore.IteratorPrototype;
1331
1332
  var BUGGY_SAFARI_ITERATORS = IteratorsCore.BUGGY_SAFARI_ITERATORS;
1332
- var ITERATOR$1 = wellKnownSymbol$9('iterator');
1333
+ var ITERATOR$4 = wellKnownSymbol$e('iterator');
1333
1334
  var KEYS = 'keys';
1334
1335
  var VALUES = 'values';
1335
1336
  var ENTRIES = 'entries';
@@ -1355,7 +1356,7 @@ var iteratorDefine = function (Iterable, NAME, IteratorConstructor, next, DEFAUL
1355
1356
  var TO_STRING_TAG = NAME + ' Iterator';
1356
1357
  var INCORRECT_VALUES_NAME = false;
1357
1358
  var IterablePrototype = Iterable.prototype;
1358
- var nativeIterator = IterablePrototype[ITERATOR$1]
1359
+ var nativeIterator = IterablePrototype[ITERATOR$4]
1359
1360
  || IterablePrototype['@@iterator']
1360
1361
  || DEFAULT && IterablePrototype[DEFAULT];
1361
1362
  var defaultIterator = !BUGGY_SAFARI_ITERATORS && nativeIterator || getIterationMethod(DEFAULT);
@@ -1367,14 +1368,14 @@ var iteratorDefine = function (Iterable, NAME, IteratorConstructor, next, DEFAUL
1367
1368
  CurrentIteratorPrototype = getPrototypeOf(anyNativeIterator.call(new Iterable()));
1368
1369
  if (CurrentIteratorPrototype !== Object.prototype && CurrentIteratorPrototype.next) {
1369
1370
  if (getPrototypeOf(CurrentIteratorPrototype) !== IteratorPrototype) {
1370
- if (setPrototypeOf$2) {
1371
- setPrototypeOf$2(CurrentIteratorPrototype, IteratorPrototype);
1372
- } else if (!isCallable$8(CurrentIteratorPrototype[ITERATOR$1])) {
1373
- defineBuiltIn$3(CurrentIteratorPrototype, ITERATOR$1, returnThis);
1371
+ if (setPrototypeOf$3) {
1372
+ setPrototypeOf$3(CurrentIteratorPrototype, IteratorPrototype);
1373
+ } else if (!isCallable$d(CurrentIteratorPrototype[ITERATOR$4])) {
1374
+ defineBuiltIn$5(CurrentIteratorPrototype, ITERATOR$4, returnThis);
1374
1375
  }
1375
1376
  }
1376
1377
  // Set @@toStringTag to native iterators
1377
- setToStringTag$1(CurrentIteratorPrototype, TO_STRING_TAG, true);
1378
+ setToStringTag$2(CurrentIteratorPrototype, TO_STRING_TAG, true);
1378
1379
  }
1379
1380
  }
1380
1381
 
@@ -1384,7 +1385,7 @@ var iteratorDefine = function (Iterable, NAME, IteratorConstructor, next, DEFAUL
1384
1385
  createNonEnumerableProperty$6(IterablePrototype, 'name', VALUES);
1385
1386
  } else {
1386
1387
  INCORRECT_VALUES_NAME = true;
1387
- defaultIterator = function values() { return call$9(nativeIterator, this); };
1388
+ defaultIterator = function values() { return call$f(nativeIterator, this); };
1388
1389
  }
1389
1390
  }
1390
1391
 
@@ -1397,16 +1398,16 @@ var iteratorDefine = function (Iterable, NAME, IteratorConstructor, next, DEFAUL
1397
1398
  };
1398
1399
  if (FORCED) for (KEY in methods) {
1399
1400
  if (BUGGY_SAFARI_ITERATORS || INCORRECT_VALUES_NAME || !(KEY in IterablePrototype)) {
1400
- defineBuiltIn$3(IterablePrototype, KEY, methods[KEY]);
1401
+ defineBuiltIn$5(IterablePrototype, KEY, methods[KEY]);
1401
1402
  }
1402
- } else $$b({ target: NAME, proto: true, forced: BUGGY_SAFARI_ITERATORS || INCORRECT_VALUES_NAME }, methods);
1403
+ } else $$i({ target: NAME, proto: true, forced: BUGGY_SAFARI_ITERATORS || INCORRECT_VALUES_NAME }, methods);
1403
1404
  }
1404
1405
 
1405
1406
  // define iterator
1406
- if (IterablePrototype[ITERATOR$1] !== defaultIterator) {
1407
- defineBuiltIn$3(IterablePrototype, ITERATOR$1, defaultIterator, { name: DEFAULT });
1407
+ if (IterablePrototype[ITERATOR$4] !== defaultIterator) {
1408
+ defineBuiltIn$5(IterablePrototype, ITERATOR$4, defaultIterator, { name: DEFAULT });
1408
1409
  }
1409
- Iterators$1[NAME] = defaultIterator;
1410
+ Iterators$3[NAME] = defaultIterator;
1410
1411
 
1411
1412
  return methods;
1412
1413
  };
@@ -1419,16 +1420,16 @@ var createIterResultObject$1 = function (value, done) {
1419
1420
 
1420
1421
  var toIndexedObject = toIndexedObject$5;
1421
1422
  var addToUnscopables$2 = addToUnscopables$3;
1422
- var Iterators = iterators;
1423
- var InternalStateModule = internalState;
1423
+ var Iterators$2 = iterators;
1424
+ var InternalStateModule$1 = internalState;
1424
1425
  var defineProperty$3 = objectDefineProperty.f;
1425
1426
  var defineIterator = iteratorDefine;
1426
1427
  var createIterResultObject = createIterResultObject$1;
1427
- var DESCRIPTORS$7 = descriptors;
1428
+ var DESCRIPTORS$8 = descriptors;
1428
1429
 
1429
1430
  var ARRAY_ITERATOR = 'Array Iterator';
1430
- var setInternalState = InternalStateModule.set;
1431
- var getInternalState$2 = InternalStateModule.getterFor(ARRAY_ITERATOR);
1431
+ var setInternalState$1 = InternalStateModule$1.set;
1432
+ var getInternalState$2 = InternalStateModule$1.getterFor(ARRAY_ITERATOR);
1432
1433
 
1433
1434
  // `Array.prototype.entries` method
1434
1435
  // https://tc39.es/ecma262/#sec-array.prototype.entries
@@ -1441,7 +1442,7 @@ var getInternalState$2 = InternalStateModule.getterFor(ARRAY_ITERATOR);
1441
1442
  // `CreateArrayIterator` internal method
1442
1443
  // https://tc39.es/ecma262/#sec-createarrayiterator
1443
1444
  var es_array_iterator = defineIterator(Array, 'Array', function (iterated, kind) {
1444
- setInternalState(this, {
1445
+ setInternalState$1(this, {
1445
1446
  type: ARRAY_ITERATOR,
1446
1447
  target: toIndexedObject(iterated), // target
1447
1448
  index: 0, // next index
@@ -1466,7 +1467,7 @@ var es_array_iterator = defineIterator(Array, 'Array', function (iterated, kind)
1466
1467
  // argumentsList[@@iterator] is %ArrayProto_values%
1467
1468
  // https://tc39.es/ecma262/#sec-createunmappedargumentsobject
1468
1469
  // https://tc39.es/ecma262/#sec-createmappedargumentsobject
1469
- var values = Iterators.Arguments = Iterators.Array;
1470
+ var values = Iterators$2.Arguments = Iterators$2.Array;
1470
1471
 
1471
1472
  // https://tc39.es/ecma262/#sec-array.prototype-@@unscopables
1472
1473
  addToUnscopables$2('keys');
@@ -1474,7 +1475,7 @@ addToUnscopables$2('values');
1474
1475
  addToUnscopables$2('entries');
1475
1476
 
1476
1477
  // V8 ~ Chrome 45- bug
1477
- if (DESCRIPTORS$7 && values.name !== 'values') try {
1478
+ if (DESCRIPTORS$8 && values.name !== 'values') try {
1478
1479
  defineProperty$3(values, 'name', { value: 'values' });
1479
1480
  } catch (error) { /* empty */ }
1480
1481
 
@@ -1522,26 +1523,26 @@ var DOMTokenListPrototype$1 = classList && classList.constructor && classList.co
1522
1523
 
1523
1524
  var domTokenListPrototype = DOMTokenListPrototype$1 === Object.prototype ? undefined : DOMTokenListPrototype$1;
1524
1525
 
1525
- var global$7 = global$h;
1526
+ var global$e = global$o;
1526
1527
  var DOMIterables = domIterables;
1527
1528
  var DOMTokenListPrototype = domTokenListPrototype;
1528
1529
  var ArrayIteratorMethods = es_array_iterator;
1529
1530
  var createNonEnumerableProperty$5 = createNonEnumerableProperty$9;
1530
- var setToStringTag = setToStringTag$3;
1531
- var wellKnownSymbol$8 = wellKnownSymbol$e;
1531
+ var setToStringTag$1 = setToStringTag$4;
1532
+ var wellKnownSymbol$d = wellKnownSymbol$j;
1532
1533
 
1533
- var ITERATOR = wellKnownSymbol$8('iterator');
1534
+ var ITERATOR$3 = wellKnownSymbol$d('iterator');
1534
1535
  var ArrayValues = ArrayIteratorMethods.values;
1535
1536
 
1536
1537
  var handlePrototype = function (CollectionPrototype, COLLECTION_NAME) {
1537
1538
  if (CollectionPrototype) {
1538
1539
  // some Chrome versions have non-configurable methods on DOMTokenList
1539
- if (CollectionPrototype[ITERATOR] !== ArrayValues) try {
1540
- createNonEnumerableProperty$5(CollectionPrototype, ITERATOR, ArrayValues);
1540
+ if (CollectionPrototype[ITERATOR$3] !== ArrayValues) try {
1541
+ createNonEnumerableProperty$5(CollectionPrototype, ITERATOR$3, ArrayValues);
1541
1542
  } catch (error) {
1542
- CollectionPrototype[ITERATOR] = ArrayValues;
1543
+ CollectionPrototype[ITERATOR$3] = ArrayValues;
1543
1544
  }
1544
- setToStringTag(CollectionPrototype, COLLECTION_NAME, true);
1545
+ setToStringTag$1(CollectionPrototype, COLLECTION_NAME, true);
1545
1546
  if (DOMIterables[COLLECTION_NAME]) for (var METHOD_NAME in ArrayIteratorMethods) {
1546
1547
  // some Chrome versions have non-configurable methods on DOMTokenList
1547
1548
  if (CollectionPrototype[METHOD_NAME] !== ArrayIteratorMethods[METHOD_NAME]) try {
@@ -1554,32 +1555,32 @@ var handlePrototype = function (CollectionPrototype, COLLECTION_NAME) {
1554
1555
  };
1555
1556
 
1556
1557
  for (var COLLECTION_NAME in DOMIterables) {
1557
- handlePrototype(global$7[COLLECTION_NAME] && global$7[COLLECTION_NAME].prototype, COLLECTION_NAME);
1558
+ handlePrototype(global$e[COLLECTION_NAME] && global$e[COLLECTION_NAME].prototype, COLLECTION_NAME);
1558
1559
  }
1559
1560
 
1560
1561
  handlePrototype(DOMTokenListPrototype, 'DOMTokenList');
1561
1562
 
1562
- var DESCRIPTORS$6 = descriptors;
1563
- var uncurryThis$c = functionUncurryThis;
1564
- var call$8 = functionCall;
1565
- var fails$c = fails$n;
1563
+ var DESCRIPTORS$7 = descriptors;
1564
+ var uncurryThis$f = functionUncurryThis;
1565
+ var call$e = functionCall;
1566
+ var fails$f = fails$q;
1566
1567
  var objectKeys = objectKeys$2;
1567
1568
  var getOwnPropertySymbolsModule = objectGetOwnPropertySymbols;
1568
1569
  var propertyIsEnumerableModule = objectPropertyIsEnumerable;
1569
- var toObject$3 = toObject$6;
1570
- var IndexedObject = indexedObject;
1570
+ var toObject$4 = toObject$7;
1571
+ var IndexedObject$1 = indexedObject;
1571
1572
 
1572
1573
  // eslint-disable-next-line es/no-object-assign -- safe
1573
1574
  var $assign = Object.assign;
1574
1575
  // eslint-disable-next-line es/no-object-defineproperty -- required for testing
1575
1576
  var defineProperty$2 = Object.defineProperty;
1576
- var concat$1 = uncurryThis$c([].concat);
1577
+ var concat$1 = uncurryThis$f([].concat);
1577
1578
 
1578
1579
  // `Object.assign` method
1579
1580
  // https://tc39.es/ecma262/#sec-object.assign
1580
- var objectAssign = !$assign || fails$c(function () {
1581
+ var objectAssign = !$assign || fails$f(function () {
1581
1582
  // should have correct order of operations (Edge bug)
1582
- if (DESCRIPTORS$6 && $assign({ b: 1 }, $assign(defineProperty$2({}, 'a', {
1583
+ if (DESCRIPTORS$7 && $assign({ b: 1 }, $assign(defineProperty$2({}, 'a', {
1583
1584
  enumerable: true,
1584
1585
  get: function () {
1585
1586
  defineProperty$2(this, 'b', {
@@ -1598,31 +1599,31 @@ var objectAssign = !$assign || fails$c(function () {
1598
1599
  alphabet.split('').forEach(function (chr) { B[chr] = chr; });
1599
1600
  return $assign({}, A)[symbol] !== 7 || objectKeys($assign({}, B)).join('') !== alphabet;
1600
1601
  }) ? function assign(target, source) { // eslint-disable-line no-unused-vars -- required for `.length`
1601
- var T = toObject$3(target);
1602
+ var T = toObject$4(target);
1602
1603
  var argumentsLength = arguments.length;
1603
1604
  var index = 1;
1604
1605
  var getOwnPropertySymbols = getOwnPropertySymbolsModule.f;
1605
1606
  var propertyIsEnumerable = propertyIsEnumerableModule.f;
1606
1607
  while (argumentsLength > index) {
1607
- var S = IndexedObject(arguments[index++]);
1608
+ var S = IndexedObject$1(arguments[index++]);
1608
1609
  var keys = getOwnPropertySymbols ? concat$1(objectKeys(S), getOwnPropertySymbols(S)) : objectKeys(S);
1609
1610
  var length = keys.length;
1610
1611
  var j = 0;
1611
1612
  var key;
1612
1613
  while (length > j) {
1613
1614
  key = keys[j++];
1614
- if (!DESCRIPTORS$6 || call$8(propertyIsEnumerable, S, key)) T[key] = S[key];
1615
+ if (!DESCRIPTORS$7 || call$e(propertyIsEnumerable, S, key)) T[key] = S[key];
1615
1616
  }
1616
1617
  } return T;
1617
1618
  } : $assign;
1618
1619
 
1619
- var $$a = _export;
1620
+ var $$h = _export;
1620
1621
  var assign = objectAssign;
1621
1622
 
1622
1623
  // `Object.assign` method
1623
1624
  // https://tc39.es/ecma262/#sec-object.assign
1624
1625
  // eslint-disable-next-line es/no-object-assign -- required for testing
1625
- $$a({ target: 'Object', stat: true, arity: 2, forced: Object.assign !== assign }, {
1626
+ $$h({ target: 'Object', stat: true, arity: 2, forced: Object.assign !== assign }, {
1626
1627
  assign: assign
1627
1628
  });
1628
1629
 
@@ -1632,18 +1633,18 @@ const FormFieldWrapper = styled.div(_t$7 || (_t$7 = _$7`
1632
1633
  margin-bottom: var(--goa-space-l);
1633
1634
  `));
1634
1635
 
1635
- var $$9 = _export;
1636
- var toObject$2 = toObject$6;
1637
- var lengthOfArrayLike$1 = lengthOfArrayLike$3;
1636
+ var $$g = _export;
1637
+ var toObject$3 = toObject$7;
1638
+ var lengthOfArrayLike$3 = lengthOfArrayLike$5;
1638
1639
  var toIntegerOrInfinity$3 = toIntegerOrInfinity$6;
1639
1640
  var addToUnscopables$1 = addToUnscopables$3;
1640
1641
 
1641
1642
  // `Array.prototype.at` method
1642
1643
  // https://tc39.es/ecma262/#sec-array.prototype.at
1643
- $$9({ target: 'Array', proto: true }, {
1644
+ $$g({ target: 'Array', proto: true }, {
1644
1645
  at: function at(index) {
1645
- var O = toObject$2(this);
1646
- var len = lengthOfArrayLike$1(O);
1646
+ var O = toObject$3(this);
1647
+ var len = lengthOfArrayLike$3(O);
1647
1648
  var relativeIndex = toIntegerOrInfinity$3(index);
1648
1649
  var k = relativeIndex >= 0 ? relativeIndex : len + relativeIndex;
1649
1650
  return (k < 0 || k >= len) ? undefined : O[k];
@@ -1652,9 +1653,9 @@ $$9({ target: 'Array', proto: true }, {
1652
1653
 
1653
1654
  addToUnscopables$1('at');
1654
1655
 
1655
- var wellKnownSymbol$7 = wellKnownSymbol$e;
1656
+ var wellKnownSymbol$c = wellKnownSymbol$j;
1656
1657
 
1657
- var TO_STRING_TAG$1 = wellKnownSymbol$7('toStringTag');
1658
+ var TO_STRING_TAG$1 = wellKnownSymbol$c('toStringTag');
1658
1659
  var test = {};
1659
1660
 
1660
1661
  test[TO_STRING_TAG$1] = 'z';
@@ -1662,15 +1663,15 @@ test[TO_STRING_TAG$1] = 'z';
1662
1663
  var toStringTagSupport = String(test) === '[object z]';
1663
1664
 
1664
1665
  var TO_STRING_TAG_SUPPORT = toStringTagSupport;
1665
- var isCallable$7 = isCallable$l;
1666
- var classofRaw = classofRaw$1;
1667
- var wellKnownSymbol$6 = wellKnownSymbol$e;
1666
+ var isCallable$c = isCallable$q;
1667
+ var classofRaw$1 = classofRaw$2;
1668
+ var wellKnownSymbol$b = wellKnownSymbol$j;
1668
1669
 
1669
- var TO_STRING_TAG = wellKnownSymbol$6('toStringTag');
1670
+ var TO_STRING_TAG = wellKnownSymbol$b('toStringTag');
1670
1671
  var $Object = Object;
1671
1672
 
1672
1673
  // ES3 wrong here
1673
- var CORRECT_ARGUMENTS = classofRaw(function () { return arguments; }()) === 'Arguments';
1674
+ var CORRECT_ARGUMENTS = classofRaw$1(function () { return arguments; }()) === 'Arguments';
1674
1675
 
1675
1676
  // fallback for IE11 Script Access Denied error
1676
1677
  var tryGet = function (it, key) {
@@ -1680,32 +1681,32 @@ var tryGet = function (it, key) {
1680
1681
  };
1681
1682
 
1682
1683
  // getting tag from ES6+ `Object.prototype.toString`
1683
- var classof$6 = TO_STRING_TAG_SUPPORT ? classofRaw : function (it) {
1684
+ var classof$9 = TO_STRING_TAG_SUPPORT ? classofRaw$1 : function (it) {
1684
1685
  var O, tag, result;
1685
1686
  return it === undefined ? 'Undefined' : it === null ? 'Null'
1686
1687
  // @@toStringTag case
1687
1688
  : typeof (tag = tryGet(O = $Object(it), TO_STRING_TAG)) == 'string' ? tag
1688
1689
  // builtinTag case
1689
- : CORRECT_ARGUMENTS ? classofRaw(O)
1690
+ : CORRECT_ARGUMENTS ? classofRaw$1(O)
1690
1691
  // ES3 arguments fallback
1691
- : (result = classofRaw(O)) === 'Object' && isCallable$7(O.callee) ? 'Arguments' : result;
1692
+ : (result = classofRaw$1(O)) === 'Object' && isCallable$c(O.callee) ? 'Arguments' : result;
1692
1693
  };
1693
1694
 
1694
- var classof$5 = classof$6;
1695
+ var classof$8 = classof$9;
1695
1696
 
1696
1697
  var $String$1 = String;
1697
1698
 
1698
1699
  var toString$a = function (argument) {
1699
- if (classof$5(argument) === 'Symbol') throw new TypeError('Cannot convert a Symbol value to a string');
1700
+ if (classof$8(argument) === 'Symbol') throw new TypeError('Cannot convert a Symbol value to a string');
1700
1701
  return $String$1(argument);
1701
1702
  };
1702
1703
 
1703
- var anObject$4 = anObject$9;
1704
+ var anObject$9 = anObject$e;
1704
1705
 
1705
1706
  // `RegExp.prototype.flags` getter implementation
1706
1707
  // https://tc39.es/ecma262/#sec-get-regexp.prototype.flags
1707
1708
  var regexpFlags$1 = function () {
1708
- var that = anObject$4(this);
1709
+ var that = anObject$9(this);
1709
1710
  var result = '';
1710
1711
  if (that.hasIndices) result += 'd';
1711
1712
  if (that.global) result += 'g';
@@ -1718,13 +1719,13 @@ var regexpFlags$1 = function () {
1718
1719
  return result;
1719
1720
  };
1720
1721
 
1721
- var fails$b = fails$n;
1722
- var global$6 = global$h;
1722
+ var fails$e = fails$q;
1723
+ var global$d = global$o;
1723
1724
 
1724
1725
  // babel-minify and Closure Compiler transpiles RegExp('a', 'y') -> /a/y and it causes SyntaxError
1725
- var $RegExp$2 = global$6.RegExp;
1726
+ var $RegExp$2 = global$d.RegExp;
1726
1727
 
1727
- var UNSUPPORTED_Y$2 = fails$b(function () {
1728
+ var UNSUPPORTED_Y$2 = fails$e(function () {
1728
1729
  var re = $RegExp$2('a', 'y');
1729
1730
  re.lastIndex = 2;
1730
1731
  return re.exec('abcd') !== null;
@@ -1732,11 +1733,11 @@ var UNSUPPORTED_Y$2 = fails$b(function () {
1732
1733
 
1733
1734
  // UC Browser bug
1734
1735
  // https://github.com/zloirock/core-js/issues/1008
1735
- var MISSED_STICKY$1 = UNSUPPORTED_Y$2 || fails$b(function () {
1736
+ var MISSED_STICKY$1 = UNSUPPORTED_Y$2 || fails$e(function () {
1736
1737
  return !$RegExp$2('a', 'y').sticky;
1737
1738
  });
1738
1739
 
1739
- var BROKEN_CARET = UNSUPPORTED_Y$2 || fails$b(function () {
1740
+ var BROKEN_CARET = UNSUPPORTED_Y$2 || fails$e(function () {
1740
1741
  // https://bugzilla.mozilla.org/show_bug.cgi?id=773687
1741
1742
  var re = $RegExp$2('^r', 'gy');
1742
1743
  re.lastIndex = 2;
@@ -1749,24 +1750,24 @@ var regexpStickyHelpers = {
1749
1750
  UNSUPPORTED_Y: UNSUPPORTED_Y$2
1750
1751
  };
1751
1752
 
1752
- var fails$a = fails$n;
1753
- var global$5 = global$h;
1753
+ var fails$d = fails$q;
1754
+ var global$c = global$o;
1754
1755
 
1755
1756
  // babel-minify and Closure Compiler transpiles RegExp('.', 's') -> /./s and it causes SyntaxError
1756
- var $RegExp$1 = global$5.RegExp;
1757
+ var $RegExp$1 = global$c.RegExp;
1757
1758
 
1758
- var regexpUnsupportedDotAll = fails$a(function () {
1759
+ var regexpUnsupportedDotAll = fails$d(function () {
1759
1760
  var re = $RegExp$1('.', 's');
1760
1761
  return !(re.dotAll && re.test('\n') && re.flags === 's');
1761
1762
  });
1762
1763
 
1763
- var fails$9 = fails$n;
1764
- var global$4 = global$h;
1764
+ var fails$c = fails$q;
1765
+ var global$b = global$o;
1765
1766
 
1766
1767
  // babel-minify and Closure Compiler transpiles RegExp('(?<a>b)', 'g') -> /(?<a>b)/g and it causes SyntaxError
1767
- var $RegExp = global$4.RegExp;
1768
+ var $RegExp = global$b.RegExp;
1768
1769
 
1769
- var regexpUnsupportedNcg = fails$9(function () {
1770
+ var regexpUnsupportedNcg = fails$c(function () {
1770
1771
  var re = $RegExp('(?<a>b)', 'g');
1771
1772
  return re.exec('b').groups.a !== 'b' ||
1772
1773
  'b'.replace(re, '$<a>c') !== 'bc';
@@ -1774,8 +1775,8 @@ var regexpUnsupportedNcg = fails$9(function () {
1774
1775
 
1775
1776
  /* eslint-disable regexp/no-empty-capturing-group, regexp/no-empty-group, regexp/no-lazy-ends -- testing */
1776
1777
  /* eslint-disable regexp/no-useless-quantifier -- testing */
1777
- var call$7 = functionCall;
1778
- var uncurryThis$b = functionUncurryThis;
1778
+ var call$d = functionCall;
1779
+ var uncurryThis$e = functionUncurryThis;
1779
1780
  var toString$9 = toString$a;
1780
1781
  var regexpFlags = regexpFlags$1;
1781
1782
  var stickyHelpers$1 = regexpStickyHelpers;
@@ -1788,16 +1789,16 @@ var UNSUPPORTED_NCG$1 = regexpUnsupportedNcg;
1788
1789
  var nativeReplace = shared('native-string-replace', String.prototype.replace);
1789
1790
  var nativeExec = RegExp.prototype.exec;
1790
1791
  var patchedExec = nativeExec;
1791
- var charAt$6 = uncurryThis$b(''.charAt);
1792
- var indexOf = uncurryThis$b(''.indexOf);
1793
- var replace$5 = uncurryThis$b(''.replace);
1794
- var stringSlice$5 = uncurryThis$b(''.slice);
1792
+ var charAt$6 = uncurryThis$e(''.charAt);
1793
+ var indexOf = uncurryThis$e(''.indexOf);
1794
+ var replace$5 = uncurryThis$e(''.replace);
1795
+ var stringSlice$5 = uncurryThis$e(''.slice);
1795
1796
 
1796
1797
  var UPDATES_LAST_INDEX_WRONG = (function () {
1797
1798
  var re1 = /a/;
1798
1799
  var re2 = /b*/g;
1799
- call$7(nativeExec, re1, 'a');
1800
- call$7(nativeExec, re2, 'a');
1800
+ call$d(nativeExec, re1, 'a');
1801
+ call$d(nativeExec, re2, 'a');
1801
1802
  return re1.lastIndex !== 0 || re2.lastIndex !== 0;
1802
1803
  })();
1803
1804
 
@@ -1818,14 +1819,14 @@ if (PATCH) {
1818
1819
 
1819
1820
  if (raw) {
1820
1821
  raw.lastIndex = re.lastIndex;
1821
- result = call$7(patchedExec, raw, str);
1822
+ result = call$d(patchedExec, raw, str);
1822
1823
  re.lastIndex = raw.lastIndex;
1823
1824
  return result;
1824
1825
  }
1825
1826
 
1826
1827
  var groups = state.groups;
1827
1828
  var sticky = UNSUPPORTED_Y$1 && re.sticky;
1828
- var flags = call$7(regexpFlags, re);
1829
+ var flags = call$d(regexpFlags, re);
1829
1830
  var source = re.source;
1830
1831
  var charsAdded = 0;
1831
1832
  var strCopy = str;
@@ -1853,7 +1854,7 @@ if (PATCH) {
1853
1854
  }
1854
1855
  if (UPDATES_LAST_INDEX_WRONG) lastIndex = re.lastIndex;
1855
1856
 
1856
- match = call$7(nativeExec, sticky ? reCopy : re, strCopy);
1857
+ match = call$d(nativeExec, sticky ? reCopy : re, strCopy);
1857
1858
 
1858
1859
  if (sticky) {
1859
1860
  if (match) {
@@ -1868,7 +1869,7 @@ if (PATCH) {
1868
1869
  if (NPCG_INCLUDED && match && match.length > 1) {
1869
1870
  // Fix browsers whose `exec` methods don't consistently return `undefined`
1870
1871
  // for NPCG, like IE8. NOTE: This doesn't work for /(.?)?/
1871
- call$7(nativeReplace, match[0], reCopy, function () {
1872
+ call$d(nativeReplace, match[0], reCopy, function () {
1872
1873
  for (i = 1; i < arguments.length - 2; i++) {
1873
1874
  if (arguments[i] === undefined) match[i] = undefined;
1874
1875
  }
@@ -1889,21 +1890,21 @@ if (PATCH) {
1889
1890
 
1890
1891
  var regexpExec$2 = patchedExec;
1891
1892
 
1892
- var $$8 = _export;
1893
- var exec$2 = regexpExec$2;
1893
+ var $$f = _export;
1894
+ var exec$3 = regexpExec$2;
1894
1895
 
1895
1896
  // `RegExp.prototype.exec` method
1896
1897
  // https://tc39.es/ecma262/#sec-regexp.prototype.exec
1897
- $$8({ target: 'RegExp', proto: true, forced: /./.exec !== exec$2 }, {
1898
- exec: exec$2
1898
+ $$f({ target: 'RegExp', proto: true, forced: /./.exec !== exec$3 }, {
1899
+ exec: exec$3
1899
1900
  });
1900
1901
 
1901
1902
  // TODO: Remove from `core-js@4` since it's moved to entry points
1902
1903
 
1903
- var $$7 = _export;
1904
- var call$6 = functionCall;
1905
- var isCallable$6 = isCallable$l;
1906
- var anObject$3 = anObject$9;
1904
+ var $$e = _export;
1905
+ var call$c = functionCall;
1906
+ var isCallable$b = isCallable$q;
1907
+ var anObject$8 = anObject$e;
1907
1908
  var toString$8 = toString$a;
1908
1909
 
1909
1910
  var DELEGATES_TO_EXEC = function () {
@@ -1920,36 +1921,36 @@ var nativeTest = /./.test;
1920
1921
 
1921
1922
  // `RegExp.prototype.test` method
1922
1923
  // https://tc39.es/ecma262/#sec-regexp.prototype.test
1923
- $$7({ target: 'RegExp', proto: true, forced: !DELEGATES_TO_EXEC }, {
1924
+ $$e({ target: 'RegExp', proto: true, forced: !DELEGATES_TO_EXEC }, {
1924
1925
  test: function (S) {
1925
- var R = anObject$3(this);
1926
+ var R = anObject$8(this);
1926
1927
  var string = toString$8(S);
1927
1928
  var exec = R.exec;
1928
- if (!isCallable$6(exec)) return call$6(nativeTest, R, string);
1929
- var result = call$6(exec, R, string);
1929
+ if (!isCallable$b(exec)) return call$c(nativeTest, R, string);
1930
+ var result = call$c(exec, R, string);
1930
1931
  if (result === null) return false;
1931
- anObject$3(result);
1932
+ anObject$8(result);
1932
1933
  return true;
1933
1934
  }
1934
1935
  });
1935
1936
 
1936
- var $$6 = _export;
1937
- var uncurryThis$a = functionUncurryThis;
1937
+ var $$d = _export;
1938
+ var uncurryThis$d = functionUncurryThis;
1938
1939
  var requireObjectCoercible$3 = requireObjectCoercible$7;
1939
1940
  var toIntegerOrInfinity$2 = toIntegerOrInfinity$6;
1940
1941
  var toString$7 = toString$a;
1941
- var fails$8 = fails$n;
1942
+ var fails$b = fails$q;
1942
1943
 
1943
- var charAt$5 = uncurryThis$a(''.charAt);
1944
+ var charAt$5 = uncurryThis$d(''.charAt);
1944
1945
 
1945
- var FORCED$2 = fails$8(function () {
1946
+ var FORCED$3 = fails$b(function () {
1946
1947
  // eslint-disable-next-line es/no-array-string-prototype-at -- safe
1947
1948
  return '𠮷'.at(-2) !== '\uD842';
1948
1949
  });
1949
1950
 
1950
1951
  // `String.prototype.at` method
1951
1952
  // https://tc39.es/ecma262/#sec-string.prototype.at
1952
- $$6({ target: 'String', proto: true, forced: FORCED$2 }, {
1953
+ $$d({ target: 'String', proto: true, forced: FORCED$3 }, {
1953
1954
  at: function at(index) {
1954
1955
  var S = toString$7(requireObjectCoercible$3(this));
1955
1956
  var len = S.length;
@@ -1959,40 +1960,40 @@ $$6({ target: 'String', proto: true, forced: FORCED$2 }, {
1959
1960
  }
1960
1961
  });
1961
1962
 
1962
- var NATIVE_BIND = functionBindNative;
1963
+ var NATIVE_BIND$1 = functionBindNative;
1963
1964
 
1964
1965
  var FunctionPrototype = Function.prototype;
1965
- var apply$3 = FunctionPrototype.apply;
1966
- var call$5 = FunctionPrototype.call;
1966
+ var apply$4 = FunctionPrototype.apply;
1967
+ var call$b = FunctionPrototype.call;
1967
1968
 
1968
1969
  // eslint-disable-next-line es/no-reflect -- safe
1969
- var functionApply = typeof Reflect == 'object' && Reflect.apply || (NATIVE_BIND ? call$5.bind(apply$3) : function () {
1970
- return call$5.apply(apply$3, arguments);
1970
+ var functionApply = typeof Reflect == 'object' && Reflect.apply || (NATIVE_BIND$1 ? call$b.bind(apply$4) : function () {
1971
+ return call$b.apply(apply$4, arguments);
1971
1972
  });
1972
1973
 
1973
1974
  // TODO: Remove from `core-js@4` since it's moved to entry points
1974
1975
 
1975
- var call$4 = functionCall;
1976
- var defineBuiltIn$2 = defineBuiltIn$6;
1976
+ var call$a = functionCall;
1977
+ var defineBuiltIn$4 = defineBuiltIn$8;
1977
1978
  var regexpExec$1 = regexpExec$2;
1978
- var fails$7 = fails$n;
1979
- var wellKnownSymbol$5 = wellKnownSymbol$e;
1979
+ var fails$a = fails$q;
1980
+ var wellKnownSymbol$a = wellKnownSymbol$j;
1980
1981
  var createNonEnumerableProperty$4 = createNonEnumerableProperty$9;
1981
1982
 
1982
- var SPECIES$1 = wellKnownSymbol$5('species');
1983
+ var SPECIES$3 = wellKnownSymbol$a('species');
1983
1984
  var RegExpPrototype$4 = RegExp.prototype;
1984
1985
 
1985
1986
  var fixRegexpWellKnownSymbolLogic = function (KEY, exec, FORCED, SHAM) {
1986
- var SYMBOL = wellKnownSymbol$5(KEY);
1987
+ var SYMBOL = wellKnownSymbol$a(KEY);
1987
1988
 
1988
- var DELEGATES_TO_SYMBOL = !fails$7(function () {
1989
+ var DELEGATES_TO_SYMBOL = !fails$a(function () {
1989
1990
  // String methods call symbol-named RegExp methods
1990
1991
  var O = {};
1991
1992
  O[SYMBOL] = function () { return 7; };
1992
1993
  return ''[KEY](O) !== 7;
1993
1994
  });
1994
1995
 
1995
- var DELEGATES_TO_EXEC = DELEGATES_TO_SYMBOL && !fails$7(function () {
1996
+ var DELEGATES_TO_EXEC = DELEGATES_TO_SYMBOL && !fails$a(function () {
1996
1997
  // Symbol-named RegExp methods call .exec
1997
1998
  var execCalled = false;
1998
1999
  var re = /a/;
@@ -2005,7 +2006,7 @@ var fixRegexpWellKnownSymbolLogic = function (KEY, exec, FORCED, SHAM) {
2005
2006
  // RegExp[@@split] doesn't call the regex's exec method, but first creates
2006
2007
  // a new one. We need to return the patched regex when creating the new one.
2007
2008
  re.constructor = {};
2008
- re.constructor[SPECIES$1] = function () { return re; };
2009
+ re.constructor[SPECIES$3] = function () { return re; };
2009
2010
  re.flags = '';
2010
2011
  re[SYMBOL] = /./[SYMBOL];
2011
2012
  }
@@ -2032,30 +2033,30 @@ var fixRegexpWellKnownSymbolLogic = function (KEY, exec, FORCED, SHAM) {
2032
2033
  // The native String method already delegates to @@method (this
2033
2034
  // polyfilled function), leasing to infinite recursion.
2034
2035
  // We avoid it by directly calling the native @@method method.
2035
- return { done: true, value: call$4(nativeRegExpMethod, regexp, str, arg2) };
2036
+ return { done: true, value: call$a(nativeRegExpMethod, regexp, str, arg2) };
2036
2037
  }
2037
- return { done: true, value: call$4(nativeMethod, str, regexp, arg2) };
2038
+ return { done: true, value: call$a(nativeMethod, str, regexp, arg2) };
2038
2039
  }
2039
2040
  return { done: false };
2040
2041
  });
2041
2042
 
2042
- defineBuiltIn$2(String.prototype, KEY, methods[0]);
2043
- defineBuiltIn$2(RegExpPrototype$4, SYMBOL, methods[1]);
2043
+ defineBuiltIn$4(String.prototype, KEY, methods[0]);
2044
+ defineBuiltIn$4(RegExpPrototype$4, SYMBOL, methods[1]);
2044
2045
  }
2045
2046
 
2046
2047
  if (SHAM) createNonEnumerableProperty$4(RegExpPrototype$4[SYMBOL], 'sham', true);
2047
2048
  };
2048
2049
 
2049
- var uncurryThis$9 = functionUncurryThis;
2050
+ var uncurryThis$c = functionUncurryThis;
2050
2051
  var toIntegerOrInfinity$1 = toIntegerOrInfinity$6;
2051
2052
  var toString$6 = toString$a;
2052
2053
  var requireObjectCoercible$2 = requireObjectCoercible$7;
2053
2054
 
2054
- var charAt$4 = uncurryThis$9(''.charAt);
2055
- var charCodeAt$1 = uncurryThis$9(''.charCodeAt);
2056
- var stringSlice$4 = uncurryThis$9(''.slice);
2055
+ var charAt$4 = uncurryThis$c(''.charAt);
2056
+ var charCodeAt$1 = uncurryThis$c(''.charCodeAt);
2057
+ var stringSlice$4 = uncurryThis$c(''.slice);
2057
2058
 
2058
- var createMethod = function (CONVERT_TO_STRING) {
2059
+ var createMethod$1 = function (CONVERT_TO_STRING) {
2059
2060
  return function ($this, pos) {
2060
2061
  var S = toString$6(requireObjectCoercible$2($this));
2061
2062
  var position = toIntegerOrInfinity$1(pos);
@@ -2077,10 +2078,10 @@ var createMethod = function (CONVERT_TO_STRING) {
2077
2078
  var stringMultibyte = {
2078
2079
  // `String.prototype.codePointAt` method
2079
2080
  // https://tc39.es/ecma262/#sec-string.prototype.codepointat
2080
- codeAt: createMethod(false),
2081
+ codeAt: createMethod$1(false),
2081
2082
  // `String.prototype.at` method
2082
2083
  // https://github.com/mathiasbynens/String.prototype.at
2083
- charAt: createMethod(true)
2084
+ charAt: createMethod$1(true)
2084
2085
  };
2085
2086
 
2086
2087
  var charAt$3 = stringMultibyte.charAt;
@@ -2091,13 +2092,13 @@ var advanceStringIndex$1 = function (S, index, unicode) {
2091
2092
  return index + (unicode ? charAt$3(S, index).length : 1);
2092
2093
  };
2093
2094
 
2094
- var uncurryThis$8 = functionUncurryThis;
2095
- var toObject$1 = toObject$6;
2095
+ var uncurryThis$b = functionUncurryThis;
2096
+ var toObject$2 = toObject$7;
2096
2097
 
2097
2098
  var floor = Math.floor;
2098
- var charAt$2 = uncurryThis$8(''.charAt);
2099
- var replace$4 = uncurryThis$8(''.replace);
2100
- var stringSlice$3 = uncurryThis$8(''.slice);
2099
+ var charAt$2 = uncurryThis$b(''.charAt);
2100
+ var replace$4 = uncurryThis$b(''.replace);
2101
+ var stringSlice$3 = uncurryThis$b(''.slice);
2101
2102
  // eslint-disable-next-line redos/no-vulnerable -- safe
2102
2103
  var SUBSTITUTION_SYMBOLS = /\$([$&'`]|\d{1,2}|<[^>]*>)/g;
2103
2104
  var SUBSTITUTION_SYMBOLS_NO_NAMED = /\$([$&'`]|\d{1,2})/g;
@@ -2109,7 +2110,7 @@ var getSubstitution$1 = function (matched, str, position, captures, namedCapture
2109
2110
  var m = captures.length;
2110
2111
  var symbols = SUBSTITUTION_SYMBOLS_NO_NAMED;
2111
2112
  if (namedCaptures !== undefined) {
2112
- namedCaptures = toObject$1(namedCaptures);
2113
+ namedCaptures = toObject$2(namedCaptures);
2113
2114
  symbols = SUBSTITUTION_SYMBOLS;
2114
2115
  }
2115
2116
  return replace$4(replacement, symbols, function (match, ch) {
@@ -2137,52 +2138,52 @@ var getSubstitution$1 = function (matched, str, position, captures, namedCapture
2137
2138
  });
2138
2139
  };
2139
2140
 
2140
- var call$3 = functionCall;
2141
- var anObject$2 = anObject$9;
2142
- var isCallable$5 = isCallable$l;
2143
- var classof$4 = classofRaw$1;
2141
+ var call$9 = functionCall;
2142
+ var anObject$7 = anObject$e;
2143
+ var isCallable$a = isCallable$q;
2144
+ var classof$7 = classofRaw$2;
2144
2145
  var regexpExec = regexpExec$2;
2145
2146
 
2146
- var $TypeError$4 = TypeError;
2147
+ var $TypeError$b = TypeError;
2147
2148
 
2148
2149
  // `RegExpExec` abstract operation
2149
2150
  // https://tc39.es/ecma262/#sec-regexpexec
2150
2151
  var regexpExecAbstract = function (R, S) {
2151
2152
  var exec = R.exec;
2152
- if (isCallable$5(exec)) {
2153
- var result = call$3(exec, R, S);
2154
- if (result !== null) anObject$2(result);
2153
+ if (isCallable$a(exec)) {
2154
+ var result = call$9(exec, R, S);
2155
+ if (result !== null) anObject$7(result);
2155
2156
  return result;
2156
2157
  }
2157
- if (classof$4(R) === 'RegExp') return call$3(regexpExec, R, S);
2158
- throw new $TypeError$4('RegExp#exec called on incompatible receiver');
2158
+ if (classof$7(R) === 'RegExp') return call$9(regexpExec, R, S);
2159
+ throw new $TypeError$b('RegExp#exec called on incompatible receiver');
2159
2160
  };
2160
2161
 
2161
- var apply$2 = functionApply;
2162
- var call$2 = functionCall;
2163
- var uncurryThis$7 = functionUncurryThis;
2162
+ var apply$3 = functionApply;
2163
+ var call$8 = functionCall;
2164
+ var uncurryThis$a = functionUncurryThis;
2164
2165
  var fixRegExpWellKnownSymbolLogic = fixRegexpWellKnownSymbolLogic;
2165
- var fails$6 = fails$n;
2166
- var anObject$1 = anObject$9;
2167
- var isCallable$4 = isCallable$l;
2168
- var isNullOrUndefined = isNullOrUndefined$3;
2166
+ var fails$9 = fails$q;
2167
+ var anObject$6 = anObject$e;
2168
+ var isCallable$9 = isCallable$q;
2169
+ var isNullOrUndefined$2 = isNullOrUndefined$5;
2169
2170
  var toIntegerOrInfinity = toIntegerOrInfinity$6;
2170
2171
  var toLength = toLength$2;
2171
2172
  var toString$5 = toString$a;
2172
2173
  var requireObjectCoercible$1 = requireObjectCoercible$7;
2173
2174
  var advanceStringIndex = advanceStringIndex$1;
2174
- var getMethod = getMethod$2;
2175
+ var getMethod$2 = getMethod$4;
2175
2176
  var getSubstitution = getSubstitution$1;
2176
2177
  var regExpExec = regexpExecAbstract;
2177
- var wellKnownSymbol$4 = wellKnownSymbol$e;
2178
+ var wellKnownSymbol$9 = wellKnownSymbol$j;
2178
2179
 
2179
- var REPLACE = wellKnownSymbol$4('replace');
2180
+ var REPLACE = wellKnownSymbol$9('replace');
2180
2181
  var max = Math.max;
2181
2182
  var min = Math.min;
2182
- var concat = uncurryThis$7([].concat);
2183
- var push$1 = uncurryThis$7([].push);
2184
- var stringIndexOf$2 = uncurryThis$7(''.indexOf);
2185
- var stringSlice$2 = uncurryThis$7(''.slice);
2183
+ var concat = uncurryThis$a([].concat);
2184
+ var push$1 = uncurryThis$a([].push);
2185
+ var stringIndexOf$2 = uncurryThis$a(''.indexOf);
2186
+ var stringSlice$2 = uncurryThis$a(''.slice);
2186
2187
 
2187
2188
  var maybeToString = function (it) {
2188
2189
  return it === undefined ? it : String(it);
@@ -2203,7 +2204,7 @@ var REGEXP_REPLACE_SUBSTITUTES_UNDEFINED_CAPTURE = (function () {
2203
2204
  return false;
2204
2205
  })();
2205
2206
 
2206
- var REPLACE_SUPPORTS_NAMED_GROUPS = !fails$6(function () {
2207
+ var REPLACE_SUPPORTS_NAMED_GROUPS = !fails$9(function () {
2207
2208
  var re = /./;
2208
2209
  re.exec = function () {
2209
2210
  var result = [];
@@ -2223,15 +2224,15 @@ fixRegExpWellKnownSymbolLogic('replace', function (_, nativeReplace, maybeCallNa
2223
2224
  // https://tc39.es/ecma262/#sec-string.prototype.replace
2224
2225
  function replace(searchValue, replaceValue) {
2225
2226
  var O = requireObjectCoercible$1(this);
2226
- var replacer = isNullOrUndefined(searchValue) ? undefined : getMethod(searchValue, REPLACE);
2227
+ var replacer = isNullOrUndefined$2(searchValue) ? undefined : getMethod$2(searchValue, REPLACE);
2227
2228
  return replacer
2228
- ? call$2(replacer, searchValue, O, replaceValue)
2229
- : call$2(nativeReplace, toString$5(O), searchValue, replaceValue);
2229
+ ? call$8(replacer, searchValue, O, replaceValue)
2230
+ : call$8(nativeReplace, toString$5(O), searchValue, replaceValue);
2230
2231
  },
2231
2232
  // `RegExp.prototype[@@replace]` method
2232
2233
  // https://tc39.es/ecma262/#sec-regexp.prototype-@@replace
2233
2234
  function (string, replaceValue) {
2234
- var rx = anObject$1(this);
2235
+ var rx = anObject$6(this);
2235
2236
  var S = toString$5(string);
2236
2237
 
2237
2238
  if (
@@ -2243,7 +2244,7 @@ fixRegExpWellKnownSymbolLogic('replace', function (_, nativeReplace, maybeCallNa
2243
2244
  if (res.done) return res.value;
2244
2245
  }
2245
2246
 
2246
- var functionalReplace = isCallable$4(replaceValue);
2247
+ var functionalReplace = isCallable$9(replaceValue);
2247
2248
  if (!functionalReplace) replaceValue = toString$5(replaceValue);
2248
2249
 
2249
2250
  var global = rx.global;
@@ -2285,7 +2286,7 @@ fixRegExpWellKnownSymbolLogic('replace', function (_, nativeReplace, maybeCallNa
2285
2286
  if (functionalReplace) {
2286
2287
  var replacerArgs = concat([matched], captures, position, S);
2287
2288
  if (namedCaptures !== undefined) push$1(replacerArgs, namedCaptures);
2288
- replacement = toString$5(apply$2(replaceValue, undefined, replacerArgs));
2289
+ replacement = toString$5(apply$3(replaceValue, undefined, replacerArgs));
2289
2290
  } else {
2290
2291
  replacement = getSubstitution(matched, S, position, captures, namedCaptures, replaceValue);
2291
2292
  }
@@ -2734,24 +2735,24 @@ const ADD_NO_ANONYMOUS_ACTION = 'jsonforms/register/no_anonymous';
2734
2735
  const ADD_DATALIST_ACTION = 'jsonforms/register/add_datalist_action';
2735
2736
  const ADD_REGISTER_DATA_ERROR = 'jsonforms/register/add_register_data_error';
2736
2737
 
2737
- var classof$3 = classofRaw$1;
2738
+ var classof$6 = classofRaw$2;
2738
2739
 
2739
2740
  // `IsArray` abstract operation
2740
2741
  // https://tc39.es/ecma262/#sec-isarray
2741
2742
  // eslint-disable-next-line es/no-array-isarray -- safe
2742
2743
  var isArray$2 = Array.isArray || function isArray(argument) {
2743
- return classof$3(argument) === 'Array';
2744
+ return classof$6(argument) === 'Array';
2744
2745
  };
2745
2746
 
2746
- var DESCRIPTORS$5 = descriptors;
2747
+ var DESCRIPTORS$6 = descriptors;
2747
2748
  var isArray$1 = isArray$2;
2748
2749
 
2749
- var $TypeError$3 = TypeError;
2750
+ var $TypeError$a = TypeError;
2750
2751
  // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
2751
- var getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
2752
+ var getOwnPropertyDescriptor$1 = Object.getOwnPropertyDescriptor;
2752
2753
 
2753
2754
  // Safari < 13 does not throw an error in this case
2754
- var SILENT_ON_NON_WRITABLE_LENGTH_SET = DESCRIPTORS$5 && !function () {
2755
+ var SILENT_ON_NON_WRITABLE_LENGTH_SET = DESCRIPTORS$6 && !function () {
2755
2756
  // makes no sense without proper strict mode support
2756
2757
  if (this !== undefined) return true;
2757
2758
  try {
@@ -2763,29 +2764,29 @@ var SILENT_ON_NON_WRITABLE_LENGTH_SET = DESCRIPTORS$5 && !function () {
2763
2764
  }();
2764
2765
 
2765
2766
  var arraySetLength = SILENT_ON_NON_WRITABLE_LENGTH_SET ? function (O, length) {
2766
- if (isArray$1(O) && !getOwnPropertyDescriptor(O, 'length').writable) {
2767
- throw new $TypeError$3('Cannot set read only .length');
2767
+ if (isArray$1(O) && !getOwnPropertyDescriptor$1(O, 'length').writable) {
2768
+ throw new $TypeError$a('Cannot set read only .length');
2768
2769
  } return O.length = length;
2769
2770
  } : function (O, length) {
2770
2771
  return O.length = length;
2771
2772
  };
2772
2773
 
2773
- var $TypeError$2 = TypeError;
2774
+ var $TypeError$9 = TypeError;
2774
2775
  var MAX_SAFE_INTEGER = 0x1FFFFFFFFFFFFF; // 2 ** 53 - 1 == 9007199254740991
2775
2776
 
2776
2777
  var doesNotExceedSafeInteger$1 = function (it) {
2777
- if (it > MAX_SAFE_INTEGER) throw $TypeError$2('Maximum allowed index exceeded');
2778
+ if (it > MAX_SAFE_INTEGER) throw $TypeError$9('Maximum allowed index exceeded');
2778
2779
  return it;
2779
2780
  };
2780
2781
 
2781
- var $$5 = _export;
2782
- var toObject = toObject$6;
2783
- var lengthOfArrayLike = lengthOfArrayLike$3;
2782
+ var $$c = _export;
2783
+ var toObject$1 = toObject$7;
2784
+ var lengthOfArrayLike$2 = lengthOfArrayLike$5;
2784
2785
  var setArrayLength = arraySetLength;
2785
2786
  var doesNotExceedSafeInteger = doesNotExceedSafeInteger$1;
2786
- var fails$5 = fails$n;
2787
+ var fails$8 = fails$q;
2787
2788
 
2788
- var INCORRECT_TO_LENGTH = fails$5(function () {
2789
+ var INCORRECT_TO_LENGTH = fails$8(function () {
2789
2790
  return [].push.call({ length: 0x100000000 }, 1) !== 4294967297;
2790
2791
  });
2791
2792
 
@@ -2800,15 +2801,15 @@ var properErrorOnNonWritableLength = function () {
2800
2801
  }
2801
2802
  };
2802
2803
 
2803
- var FORCED$1 = INCORRECT_TO_LENGTH || !properErrorOnNonWritableLength();
2804
+ var FORCED$2 = INCORRECT_TO_LENGTH || !properErrorOnNonWritableLength();
2804
2805
 
2805
2806
  // `Array.prototype.push` method
2806
2807
  // https://tc39.es/ecma262/#sec-array.prototype.push
2807
- $$5({ target: 'Array', proto: true, arity: 1, forced: FORCED$1 }, {
2808
+ $$c({ target: 'Array', proto: true, arity: 1, forced: FORCED$2 }, {
2808
2809
  // eslint-disable-next-line no-unused-vars -- required for `.length`
2809
2810
  push: function push(item) {
2810
- var O = toObject(this);
2811
- var len = lengthOfArrayLike(O);
2811
+ var O = toObject$1(this);
2812
+ var len = lengthOfArrayLike$2(O);
2812
2813
  var argCount = arguments.length;
2813
2814
  doesNotExceedSafeInteger(len + argCount);
2814
2815
  for (var i = 0; i < argCount; i++) {
@@ -2855,20 +2856,20 @@ function registerReducer(state, action) {
2855
2856
  return state;
2856
2857
  }
2857
2858
 
2858
- var $$4 = _export;
2859
+ var $$b = _export;
2859
2860
  var $includes = arrayIncludes.includes;
2860
- var fails$4 = fails$n;
2861
+ var fails$7 = fails$q;
2861
2862
  var addToUnscopables = addToUnscopables$3;
2862
2863
 
2863
2864
  // FF99+ bug
2864
- var BROKEN_ON_SPARSE = fails$4(function () {
2865
+ var BROKEN_ON_SPARSE = fails$7(function () {
2865
2866
  // eslint-disable-next-line es/no-array-prototype-includes -- detection
2866
2867
  return !Array(1).includes();
2867
2868
  });
2868
2869
 
2869
2870
  // `Array.prototype.includes` method
2870
2871
  // https://tc39.es/ecma262/#sec-array.prototype.includes
2871
- $$4({ target: 'Array', proto: true, forced: BROKEN_ON_SPARSE }, {
2872
+ $$b({ target: 'Array', proto: true, forced: BROKEN_ON_SPARSE }, {
2872
2873
  includes: function includes(el /* , fromIndex = 0 */) {
2873
2874
  return $includes(this, el, arguments.length > 1 ? arguments[1] : undefined);
2874
2875
  }
@@ -2877,27 +2878,27 @@ $$4({ target: 'Array', proto: true, forced: BROKEN_ON_SPARSE }, {
2877
2878
  // https://tc39.es/ecma262/#sec-array.prototype-@@unscopables
2878
2879
  addToUnscopables('includes');
2879
2880
 
2880
- var uncurryThis$6 = functionUncurryThis;
2881
+ var uncurryThis$9 = functionUncurryThis;
2881
2882
 
2882
- var arraySlice$1 = uncurryThis$6([].slice);
2883
+ var arraySlice$2 = uncurryThis$9([].slice);
2883
2884
 
2884
- var uncurryThis$5 = functionUncurryThis;
2885
+ var uncurryThis$8 = functionUncurryThis;
2885
2886
  var isArray = isArray$2;
2886
- var isCallable$3 = isCallable$l;
2887
- var classof$2 = classofRaw$1;
2887
+ var isCallable$8 = isCallable$q;
2888
+ var classof$5 = classofRaw$2;
2888
2889
  var toString$4 = toString$a;
2889
2890
 
2890
- var push = uncurryThis$5([].push);
2891
+ var push = uncurryThis$8([].push);
2891
2892
 
2892
2893
  var getJsonReplacerFunction = function (replacer) {
2893
- if (isCallable$3(replacer)) return replacer;
2894
+ if (isCallable$8(replacer)) return replacer;
2894
2895
  if (!isArray(replacer)) return;
2895
2896
  var rawLength = replacer.length;
2896
2897
  var keys = [];
2897
2898
  for (var i = 0; i < rawLength; i++) {
2898
2899
  var element = replacer[i];
2899
2900
  if (typeof element == 'string') push(keys, element);
2900
- else if (typeof element == 'number' || classof$2(element) === 'Number' || classof$2(element) === 'String') push(keys, toString$4(element));
2901
+ else if (typeof element == 'number' || classof$5(element) === 'Number' || classof$5(element) === 'String') push(keys, toString$4(element));
2901
2902
  }
2902
2903
  var keysLength = keys.length;
2903
2904
  var root = true;
@@ -2911,32 +2912,32 @@ var getJsonReplacerFunction = function (replacer) {
2911
2912
  };
2912
2913
  };
2913
2914
 
2914
- var $$3 = _export;
2915
- var getBuiltIn$2 = getBuiltIn$6;
2916
- var apply$1 = functionApply;
2917
- var call$1 = functionCall;
2918
- var uncurryThis$4 = functionUncurryThis;
2919
- var fails$3 = fails$n;
2920
- var isCallable$2 = isCallable$l;
2915
+ var $$a = _export;
2916
+ var getBuiltIn$5 = getBuiltIn$9;
2917
+ var apply$2 = functionApply;
2918
+ var call$7 = functionCall;
2919
+ var uncurryThis$7 = functionUncurryThis;
2920
+ var fails$6 = fails$q;
2921
+ var isCallable$7 = isCallable$q;
2921
2922
  var isSymbol = isSymbol$3;
2922
- var arraySlice = arraySlice$1;
2923
+ var arraySlice$1 = arraySlice$2;
2923
2924
  var getReplacerFunction = getJsonReplacerFunction;
2924
2925
  var NATIVE_SYMBOL$1 = symbolConstructorDetection;
2925
2926
 
2926
2927
  var $String = String;
2927
- var $stringify = getBuiltIn$2('JSON', 'stringify');
2928
- var exec$1 = uncurryThis$4(/./.exec);
2929
- var charAt$1 = uncurryThis$4(''.charAt);
2930
- var charCodeAt = uncurryThis$4(''.charCodeAt);
2931
- var replace$3 = uncurryThis$4(''.replace);
2932
- var numberToString = uncurryThis$4(1.0.toString);
2928
+ var $stringify = getBuiltIn$5('JSON', 'stringify');
2929
+ var exec$2 = uncurryThis$7(/./.exec);
2930
+ var charAt$1 = uncurryThis$7(''.charAt);
2931
+ var charCodeAt = uncurryThis$7(''.charCodeAt);
2932
+ var replace$3 = uncurryThis$7(''.replace);
2933
+ var numberToString = uncurryThis$7(1.0.toString);
2933
2934
 
2934
2935
  var tester = /[\uD800-\uDFFF]/g;
2935
2936
  var low = /^[\uD800-\uDBFF]$/;
2936
2937
  var hi = /^[\uDC00-\uDFFF]$/;
2937
2938
 
2938
- var WRONG_SYMBOLS_CONVERSION = !NATIVE_SYMBOL$1 || fails$3(function () {
2939
- var symbol = getBuiltIn$2('Symbol')('stringify detection');
2939
+ var WRONG_SYMBOLS_CONVERSION = !NATIVE_SYMBOL$1 || fails$6(function () {
2940
+ var symbol = getBuiltIn$5('Symbol')('stringify detection');
2940
2941
  // MS Edge converts symbol values to JSON as {}
2941
2942
  return $stringify([symbol]) !== '[null]'
2942
2943
  // WebKit converts symbol values to JSON as null
@@ -2946,27 +2947,27 @@ var WRONG_SYMBOLS_CONVERSION = !NATIVE_SYMBOL$1 || fails$3(function () {
2946
2947
  });
2947
2948
 
2948
2949
  // https://github.com/tc39/proposal-well-formed-stringify
2949
- var ILL_FORMED_UNICODE = fails$3(function () {
2950
+ var ILL_FORMED_UNICODE = fails$6(function () {
2950
2951
  return $stringify('\uDF06\uD834') !== '"\\udf06\\ud834"'
2951
2952
  || $stringify('\uDEAD') !== '"\\udead"';
2952
2953
  });
2953
2954
 
2954
2955
  var stringifyWithSymbolsFix = function (it, replacer) {
2955
- var args = arraySlice(arguments);
2956
+ var args = arraySlice$1(arguments);
2956
2957
  var $replacer = getReplacerFunction(replacer);
2957
- if (!isCallable$2($replacer) && (it === undefined || isSymbol(it))) return; // IE8 returns string on undefined
2958
+ if (!isCallable$7($replacer) && (it === undefined || isSymbol(it))) return; // IE8 returns string on undefined
2958
2959
  args[1] = function (key, value) {
2959
2960
  // some old implementations (like WebKit) could pass numbers as keys
2960
- if (isCallable$2($replacer)) value = call$1($replacer, this, $String(key), value);
2961
+ if (isCallable$7($replacer)) value = call$7($replacer, this, $String(key), value);
2961
2962
  if (!isSymbol(value)) return value;
2962
2963
  };
2963
- return apply$1($stringify, null, args);
2964
+ return apply$2($stringify, null, args);
2964
2965
  };
2965
2966
 
2966
2967
  var fixIllFormed = function (match, offset, string) {
2967
2968
  var prev = charAt$1(string, offset - 1);
2968
2969
  var next = charAt$1(string, offset + 1);
2969
- if ((exec$1(low, match) && !exec$1(hi, next)) || (exec$1(hi, match) && !exec$1(low, prev))) {
2970
+ if ((exec$2(low, match) && !exec$2(hi, next)) || (exec$2(hi, match) && !exec$2(low, prev))) {
2970
2971
  return '\\u' + numberToString(charCodeAt(match, 0), 16);
2971
2972
  } return match;
2972
2973
  };
@@ -2974,81 +2975,81 @@ var fixIllFormed = function (match, offset, string) {
2974
2975
  if ($stringify) {
2975
2976
  // `JSON.stringify` method
2976
2977
  // https://tc39.es/ecma262/#sec-json.stringify
2977
- $$3({ target: 'JSON', stat: true, arity: 3, forced: WRONG_SYMBOLS_CONVERSION || ILL_FORMED_UNICODE }, {
2978
+ $$a({ target: 'JSON', stat: true, arity: 3, forced: WRONG_SYMBOLS_CONVERSION || ILL_FORMED_UNICODE }, {
2978
2979
  // eslint-disable-next-line no-unused-vars -- required for `.length`
2979
2980
  stringify: function stringify(it, replacer, space) {
2980
- var args = arraySlice(arguments);
2981
- var result = apply$1(WRONG_SYMBOLS_CONVERSION ? stringifyWithSymbolsFix : $stringify, null, args);
2981
+ var args = arraySlice$1(arguments);
2982
+ var result = apply$2(WRONG_SYMBOLS_CONVERSION ? stringifyWithSymbolsFix : $stringify, null, args);
2982
2983
  return ILL_FORMED_UNICODE && typeof result == 'string' ? replace$3(result, tester, fixIllFormed) : result;
2983
2984
  }
2984
2985
  });
2985
2986
  }
2986
2987
 
2987
- var call = functionCall;
2988
- var hasOwn$3 = hasOwnProperty_1;
2989
- var isPrototypeOf$3 = objectIsPrototypeOf;
2988
+ var call$6 = functionCall;
2989
+ var hasOwn$4 = hasOwnProperty_1;
2990
+ var isPrototypeOf$5 = objectIsPrototypeOf;
2990
2991
  var regExpFlags = regexpFlags$1;
2991
2992
 
2992
2993
  var RegExpPrototype$3 = RegExp.prototype;
2993
2994
 
2994
2995
  var regexpGetFlags = function (R) {
2995
2996
  var flags = R.flags;
2996
- return flags === undefined && !('flags' in RegExpPrototype$3) && !hasOwn$3(R, 'flags') && isPrototypeOf$3(RegExpPrototype$3, R)
2997
- ? call(regExpFlags, R) : flags;
2997
+ return flags === undefined && !('flags' in RegExpPrototype$3) && !hasOwn$4(R, 'flags') && isPrototypeOf$5(RegExpPrototype$3, R)
2998
+ ? call$6(regExpFlags, R) : flags;
2998
2999
  };
2999
3000
 
3000
3001
  var PROPER_FUNCTION_NAME = functionName.PROPER;
3001
- var defineBuiltIn$1 = defineBuiltIn$6;
3002
- var anObject = anObject$9;
3002
+ var defineBuiltIn$3 = defineBuiltIn$8;
3003
+ var anObject$5 = anObject$e;
3003
3004
  var $toString = toString$a;
3004
- var fails$2 = fails$n;
3005
+ var fails$5 = fails$q;
3005
3006
  var getRegExpFlags$1 = regexpGetFlags;
3006
3007
 
3007
3008
  var TO_STRING = 'toString';
3008
3009
  var RegExpPrototype$2 = RegExp.prototype;
3009
3010
  var nativeToString = RegExpPrototype$2[TO_STRING];
3010
3011
 
3011
- var NOT_GENERIC = fails$2(function () { return nativeToString.call({ source: 'a', flags: 'b' }) !== '/a/b'; });
3012
+ var NOT_GENERIC = fails$5(function () { return nativeToString.call({ source: 'a', flags: 'b' }) !== '/a/b'; });
3012
3013
  // FF44- RegExp#toString has a wrong name
3013
3014
  var INCORRECT_NAME = PROPER_FUNCTION_NAME && nativeToString.name !== TO_STRING;
3014
3015
 
3015
3016
  // `RegExp.prototype.toString` method
3016
3017
  // https://tc39.es/ecma262/#sec-regexp.prototype.tostring
3017
3018
  if (NOT_GENERIC || INCORRECT_NAME) {
3018
- defineBuiltIn$1(RegExpPrototype$2, TO_STRING, function toString() {
3019
- var R = anObject(this);
3019
+ defineBuiltIn$3(RegExpPrototype$2, TO_STRING, function toString() {
3020
+ var R = anObject$5(this);
3020
3021
  var pattern = $toString(R.source);
3021
3022
  var flags = $toString(getRegExpFlags$1(R));
3022
3023
  return '/' + pattern + '/' + flags;
3023
3024
  }, { unsafe: true });
3024
3025
  }
3025
3026
 
3026
- var isObject$2 = isObject$b;
3027
- var classof$1 = classofRaw$1;
3028
- var wellKnownSymbol$3 = wellKnownSymbol$e;
3027
+ var isObject$4 = isObject$d;
3028
+ var classof$4 = classofRaw$2;
3029
+ var wellKnownSymbol$8 = wellKnownSymbol$j;
3029
3030
 
3030
- var MATCH$2 = wellKnownSymbol$3('match');
3031
+ var MATCH$2 = wellKnownSymbol$8('match');
3031
3032
 
3032
3033
  // `IsRegExp` abstract operation
3033
3034
  // https://tc39.es/ecma262/#sec-isregexp
3034
3035
  var isRegexp = function (it) {
3035
3036
  var isRegExp;
3036
- return isObject$2(it) && ((isRegExp = it[MATCH$2]) !== undefined ? !!isRegExp : classof$1(it) === 'RegExp');
3037
+ return isObject$4(it) && ((isRegExp = it[MATCH$2]) !== undefined ? !!isRegExp : classof$4(it) === 'RegExp');
3037
3038
  };
3038
3039
 
3039
3040
  var isRegExp$1 = isRegexp;
3040
3041
 
3041
- var $TypeError$1 = TypeError;
3042
+ var $TypeError$8 = TypeError;
3042
3043
 
3043
3044
  var notARegexp = function (it) {
3044
3045
  if (isRegExp$1(it)) {
3045
- throw new $TypeError$1("The method doesn't accept regular expressions");
3046
+ throw new $TypeError$8("The method doesn't accept regular expressions");
3046
3047
  } return it;
3047
3048
  };
3048
3049
 
3049
- var wellKnownSymbol$2 = wellKnownSymbol$e;
3050
+ var wellKnownSymbol$7 = wellKnownSymbol$j;
3050
3051
 
3051
- var MATCH$1 = wellKnownSymbol$2('match');
3052
+ var MATCH$1 = wellKnownSymbol$7('match');
3052
3053
 
3053
3054
  var correctIsRegexpLogic = function (METHOD_NAME) {
3054
3055
  var regexp = /./;
@@ -3062,18 +3063,18 @@ var correctIsRegexpLogic = function (METHOD_NAME) {
3062
3063
  } return false;
3063
3064
  };
3064
3065
 
3065
- var $$2 = _export;
3066
- var uncurryThis$3 = functionUncurryThis;
3066
+ var $$9 = _export;
3067
+ var uncurryThis$6 = functionUncurryThis;
3067
3068
  var notARegExp = notARegexp;
3068
3069
  var requireObjectCoercible = requireObjectCoercible$7;
3069
3070
  var toString$3 = toString$a;
3070
3071
  var correctIsRegExpLogic = correctIsRegexpLogic;
3071
3072
 
3072
- var stringIndexOf$1 = uncurryThis$3(''.indexOf);
3073
+ var stringIndexOf$1 = uncurryThis$6(''.indexOf);
3073
3074
 
3074
3075
  // `String.prototype.includes` method
3075
3076
  // https://tc39.es/ecma262/#sec-string.prototype.includes
3076
- $$2({ target: 'String', proto: true, forced: !correctIsRegExpLogic('includes') }, {
3077
+ $$9({ target: 'String', proto: true, forced: !correctIsRegExpLogic('includes') }, {
3077
3078
  includes: function includes(searchString /* , position = 0 */) {
3078
3079
  return !!~stringIndexOf$1(
3079
3080
  toString$3(requireObjectCoercible(this)),
@@ -3125,22 +3126,22 @@ typeof SuppressedError === "function" ? SuppressedError : function (error, suppr
3125
3126
  return e.name = "SuppressedError", e.error = error, e.suppressed = suppressed, e;
3126
3127
  };
3127
3128
 
3128
- var isCallable$1 = isCallable$l;
3129
- var isObject$1 = isObject$b;
3130
- var setPrototypeOf$1 = objectSetPrototypeOf;
3129
+ var isCallable$6 = isCallable$q;
3130
+ var isObject$3 = isObject$d;
3131
+ var setPrototypeOf$2 = objectSetPrototypeOf;
3131
3132
 
3132
3133
  // makes subclassing work correct for wrapped built-ins
3133
3134
  var inheritIfRequired$2 = function ($this, dummy, Wrapper) {
3134
3135
  var NewTarget, NewTargetPrototype;
3135
3136
  if (
3136
3137
  // it can work only with native `setPrototypeOf`
3137
- setPrototypeOf$1 &&
3138
+ setPrototypeOf$2 &&
3138
3139
  // we haven't completely correct pre-ES6 way for getting `new.target`, so use this
3139
- isCallable$1(NewTarget = dummy.constructor) &&
3140
+ isCallable$6(NewTarget = dummy.constructor) &&
3140
3141
  NewTarget !== Wrapper &&
3141
- isObject$1(NewTargetPrototype = NewTarget.prototype) &&
3142
+ isObject$3(NewTargetPrototype = NewTarget.prototype) &&
3142
3143
  NewTargetPrototype !== Wrapper.prototype
3143
- ) setPrototypeOf$1($this, NewTargetPrototype);
3144
+ ) setPrototypeOf$2($this, NewTargetPrototype);
3144
3145
  return $this;
3145
3146
  };
3146
3147
 
@@ -3163,56 +3164,56 @@ var defineBuiltInAccessor$3 = function (target, name, descriptor) {
3163
3164
  return defineProperty.f(target, name, descriptor);
3164
3165
  };
3165
3166
 
3166
- var getBuiltIn$1 = getBuiltIn$6;
3167
+ var getBuiltIn$4 = getBuiltIn$9;
3167
3168
  var defineBuiltInAccessor$2 = defineBuiltInAccessor$3;
3168
- var wellKnownSymbol$1 = wellKnownSymbol$e;
3169
- var DESCRIPTORS$4 = descriptors;
3169
+ var wellKnownSymbol$6 = wellKnownSymbol$j;
3170
+ var DESCRIPTORS$5 = descriptors;
3170
3171
 
3171
- var SPECIES = wellKnownSymbol$1('species');
3172
+ var SPECIES$2 = wellKnownSymbol$6('species');
3172
3173
 
3173
- var setSpecies$1 = function (CONSTRUCTOR_NAME) {
3174
- var Constructor = getBuiltIn$1(CONSTRUCTOR_NAME);
3174
+ var setSpecies$2 = function (CONSTRUCTOR_NAME) {
3175
+ var Constructor = getBuiltIn$4(CONSTRUCTOR_NAME);
3175
3176
 
3176
- if (DESCRIPTORS$4 && Constructor && !Constructor[SPECIES]) {
3177
- defineBuiltInAccessor$2(Constructor, SPECIES, {
3177
+ if (DESCRIPTORS$5 && Constructor && !Constructor[SPECIES$2]) {
3178
+ defineBuiltInAccessor$2(Constructor, SPECIES$2, {
3178
3179
  configurable: true,
3179
3180
  get: function () { return this; }
3180
3181
  });
3181
3182
  }
3182
3183
  };
3183
3184
 
3184
- var DESCRIPTORS$3 = descriptors;
3185
- var global$3 = global$h;
3186
- var uncurryThis$2 = functionUncurryThis;
3187
- var isForced = isForced_1;
3185
+ var DESCRIPTORS$4 = descriptors;
3186
+ var global$a = global$o;
3187
+ var uncurryThis$5 = functionUncurryThis;
3188
+ var isForced$1 = isForced_1;
3188
3189
  var inheritIfRequired$1 = inheritIfRequired$2;
3189
3190
  var createNonEnumerableProperty$3 = createNonEnumerableProperty$9;
3190
3191
  var create = objectCreate;
3191
3192
  var getOwnPropertyNames = objectGetOwnPropertyNames.f;
3192
- var isPrototypeOf$2 = objectIsPrototypeOf;
3193
+ var isPrototypeOf$4 = objectIsPrototypeOf;
3193
3194
  var isRegExp = isRegexp;
3194
3195
  var toString$2 = toString$a;
3195
3196
  var getRegExpFlags = regexpGetFlags;
3196
3197
  var stickyHelpers = regexpStickyHelpers;
3197
3198
  var proxyAccessor$1 = proxyAccessor$2;
3198
- var defineBuiltIn = defineBuiltIn$6;
3199
- var fails$1 = fails$n;
3200
- var hasOwn$2 = hasOwnProperty_1;
3199
+ var defineBuiltIn$2 = defineBuiltIn$8;
3200
+ var fails$4 = fails$q;
3201
+ var hasOwn$3 = hasOwnProperty_1;
3201
3202
  var enforceInternalState = internalState.enforce;
3202
- var setSpecies = setSpecies$1;
3203
- var wellKnownSymbol = wellKnownSymbol$e;
3203
+ var setSpecies$1 = setSpecies$2;
3204
+ var wellKnownSymbol$5 = wellKnownSymbol$j;
3204
3205
  var UNSUPPORTED_DOT_ALL$1 = regexpUnsupportedDotAll;
3205
3206
  var UNSUPPORTED_NCG = regexpUnsupportedNcg;
3206
3207
 
3207
- var MATCH = wellKnownSymbol('match');
3208
- var NativeRegExp = global$3.RegExp;
3208
+ var MATCH = wellKnownSymbol$5('match');
3209
+ var NativeRegExp = global$a.RegExp;
3209
3210
  var RegExpPrototype$1 = NativeRegExp.prototype;
3210
- var SyntaxError = global$3.SyntaxError;
3211
- var exec = uncurryThis$2(RegExpPrototype$1.exec);
3212
- var charAt = uncurryThis$2(''.charAt);
3213
- var replace$2 = uncurryThis$2(''.replace);
3214
- var stringIndexOf = uncurryThis$2(''.indexOf);
3215
- var stringSlice$1 = uncurryThis$2(''.slice);
3211
+ var SyntaxError = global$a.SyntaxError;
3212
+ var exec$1 = uncurryThis$5(RegExpPrototype$1.exec);
3213
+ var charAt = uncurryThis$5(''.charAt);
3214
+ var replace$2 = uncurryThis$5(''.replace);
3215
+ var stringIndexOf = uncurryThis$5(''.indexOf);
3216
+ var stringSlice$1 = uncurryThis$5(''.slice);
3216
3217
  // TODO: Use only proper RegExpIdentifierName
3217
3218
  var IS_NCG = /^\?<[^\s\d!#%&*+<=>@^][^\s!#%&*+<=>@^]*>/;
3218
3219
  var re1 = /a/g;
@@ -3224,8 +3225,8 @@ var CORRECT_NEW = new NativeRegExp(re1) !== re1;
3224
3225
  var MISSED_STICKY = stickyHelpers.MISSED_STICKY;
3225
3226
  var UNSUPPORTED_Y = stickyHelpers.UNSUPPORTED_Y;
3226
3227
 
3227
- var BASE_FORCED = DESCRIPTORS$3 &&
3228
- (!CORRECT_NEW || MISSED_STICKY || UNSUPPORTED_DOT_ALL$1 || UNSUPPORTED_NCG || fails$1(function () {
3228
+ var BASE_FORCED = DESCRIPTORS$4 &&
3229
+ (!CORRECT_NEW || MISSED_STICKY || UNSUPPORTED_DOT_ALL$1 || UNSUPPORTED_NCG || fails$4(function () {
3229
3230
  re2[MATCH] = false;
3230
3231
  // RegExp constructor can alter flags and IsRegExp works correct with @@match
3231
3232
  return NativeRegExp(re1) !== re1 || NativeRegExp(re2) === re2 || String(NativeRegExp(re1, 'i')) !== '/a/i';
@@ -3277,7 +3278,7 @@ var handleNCG = function (string) {
3277
3278
  brackets = true;
3278
3279
  break;
3279
3280
  case chr === '(':
3280
- if (exec(IS_NCG, stringSlice$1(string, index + 1))) {
3281
+ if (exec$1(IS_NCG, stringSlice$1(string, index + 1))) {
3281
3282
  index += 2;
3282
3283
  ncg = true;
3283
3284
  }
@@ -3285,7 +3286,7 @@ var handleNCG = function (string) {
3285
3286
  groupid++;
3286
3287
  continue;
3287
3288
  case chr === '>' && ncg:
3288
- if (groupname === '' || hasOwn$2(names, groupname)) {
3289
+ if (groupname === '' || hasOwn$3(names, groupname)) {
3289
3290
  throw new SyntaxError('Invalid capture group name');
3290
3291
  }
3291
3292
  names[groupname] = true;
@@ -3301,9 +3302,9 @@ var handleNCG = function (string) {
3301
3302
 
3302
3303
  // `RegExp` constructor
3303
3304
  // https://tc39.es/ecma262/#sec-regexp-constructor
3304
- if (isForced('RegExp', BASE_FORCED)) {
3305
+ if (isForced$1('RegExp', BASE_FORCED)) {
3305
3306
  var RegExpWrapper = function RegExp(pattern, flags) {
3306
- var thisIsRegExp = isPrototypeOf$2(RegExpPrototype$1, this);
3307
+ var thisIsRegExp = isPrototypeOf$4(RegExpPrototype$1, this);
3307
3308
  var patternIsRegExp = isRegExp(pattern);
3308
3309
  var flagsAreUndefined = flags === undefined;
3309
3310
  var groups = [];
@@ -3314,7 +3315,7 @@ if (isForced('RegExp', BASE_FORCED)) {
3314
3315
  return pattern;
3315
3316
  }
3316
3317
 
3317
- if (patternIsRegExp || isPrototypeOf$2(RegExpPrototype$1, pattern)) {
3318
+ if (patternIsRegExp || isPrototypeOf$4(RegExpPrototype$1, pattern)) {
3318
3319
  pattern = pattern.source;
3319
3320
  if (flagsAreUndefined) flags = getRegExpFlags(rawPattern);
3320
3321
  }
@@ -3367,34 +3368,34 @@ if (isForced('RegExp', BASE_FORCED)) {
3367
3368
 
3368
3369
  RegExpPrototype$1.constructor = RegExpWrapper;
3369
3370
  RegExpWrapper.prototype = RegExpPrototype$1;
3370
- defineBuiltIn(global$3, 'RegExp', RegExpWrapper, { constructor: true });
3371
+ defineBuiltIn$2(global$a, 'RegExp', RegExpWrapper, { constructor: true });
3371
3372
  }
3372
3373
 
3373
3374
  // https://tc39.es/ecma262/#sec-get-regexp-@@species
3374
- setSpecies('RegExp');
3375
+ setSpecies$1('RegExp');
3375
3376
 
3376
- var DESCRIPTORS$2 = descriptors;
3377
+ var DESCRIPTORS$3 = descriptors;
3377
3378
  var UNSUPPORTED_DOT_ALL = regexpUnsupportedDotAll;
3378
- var classof = classofRaw$1;
3379
+ var classof$3 = classofRaw$2;
3379
3380
  var defineBuiltInAccessor$1 = defineBuiltInAccessor$3;
3380
3381
  var getInternalState = internalState.get;
3381
3382
 
3382
3383
  var RegExpPrototype = RegExp.prototype;
3383
- var $TypeError = TypeError;
3384
+ var $TypeError$7 = TypeError;
3384
3385
 
3385
3386
  // `RegExp.prototype.dotAll` getter
3386
3387
  // https://tc39.es/ecma262/#sec-get-regexp.prototype.dotall
3387
- if (DESCRIPTORS$2 && UNSUPPORTED_DOT_ALL) {
3388
+ if (DESCRIPTORS$3 && UNSUPPORTED_DOT_ALL) {
3388
3389
  defineBuiltInAccessor$1(RegExpPrototype, 'dotAll', {
3389
3390
  configurable: true,
3390
3391
  get: function dotAll() {
3391
3392
  if (this === RegExpPrototype) return;
3392
3393
  // We can't use InternalStateModule.getterFor because
3393
3394
  // we don't add metadata for regexps created by a literal.
3394
- if (classof(this) === 'RegExp') {
3395
+ if (classof$3(this) === 'RegExp') {
3395
3396
  return !!getInternalState(this).dotAll;
3396
3397
  }
3397
- throw new $TypeError('Incompatible receiver, RegExp required');
3398
+ throw new $TypeError$7('Incompatible receiver, RegExp required');
3398
3399
  }
3399
3400
  });
3400
3401
  }
@@ -3652,21 +3653,21 @@ const GoAInputBaseControl = props => {
3652
3653
  });
3653
3654
  };
3654
3655
 
3655
- var $$1 = _export;
3656
- var DESCRIPTORS$1 = descriptors;
3657
- var global$2 = global$h;
3658
- var uncurryThis$1 = functionUncurryThis;
3659
- var hasOwn$1 = hasOwnProperty_1;
3660
- var isCallable = isCallable$l;
3661
- var isPrototypeOf$1 = objectIsPrototypeOf;
3656
+ var $$8 = _export;
3657
+ var DESCRIPTORS$2 = descriptors;
3658
+ var global$9 = global$o;
3659
+ var uncurryThis$4 = functionUncurryThis;
3660
+ var hasOwn$2 = hasOwnProperty_1;
3661
+ var isCallable$5 = isCallable$q;
3662
+ var isPrototypeOf$3 = objectIsPrototypeOf;
3662
3663
  var toString$1 = toString$a;
3663
3664
  var defineBuiltInAccessor = defineBuiltInAccessor$3;
3664
3665
  var copyConstructorProperties$1 = copyConstructorProperties$3;
3665
3666
 
3666
- var NativeSymbol = global$2.Symbol;
3667
+ var NativeSymbol = global$9.Symbol;
3667
3668
  var SymbolPrototype = NativeSymbol && NativeSymbol.prototype;
3668
3669
 
3669
- if (DESCRIPTORS$1 && isCallable(NativeSymbol) && (!('description' in SymbolPrototype) ||
3670
+ if (DESCRIPTORS$2 && isCallable$5(NativeSymbol) && (!('description' in SymbolPrototype) ||
3670
3671
  // Safari 12 bug
3671
3672
  NativeSymbol().description !== undefined
3672
3673
  )) {
@@ -3674,7 +3675,7 @@ if (DESCRIPTORS$1 && isCallable(NativeSymbol) && (!('description' in SymbolProto
3674
3675
  // wrap Symbol constructor for correct work with undefined description
3675
3676
  var SymbolWrapper = function Symbol() {
3676
3677
  var description = arguments.length < 1 || arguments[0] === undefined ? undefined : toString$1(arguments[0]);
3677
- var result = isPrototypeOf$1(SymbolPrototype, this)
3678
+ var result = isPrototypeOf$3(SymbolPrototype, this)
3678
3679
  ? new NativeSymbol(description)
3679
3680
  // in Edge 13, String(Symbol(undefined)) === 'Symbol(undefined)'
3680
3681
  : description === undefined ? NativeSymbol() : NativeSymbol(description);
@@ -3687,24 +3688,24 @@ if (DESCRIPTORS$1 && isCallable(NativeSymbol) && (!('description' in SymbolProto
3687
3688
  SymbolPrototype.constructor = SymbolWrapper;
3688
3689
 
3689
3690
  var NATIVE_SYMBOL = String(NativeSymbol('description detection')) === 'Symbol(description detection)';
3690
- var thisSymbolValue = uncurryThis$1(SymbolPrototype.valueOf);
3691
- var symbolDescriptiveString = uncurryThis$1(SymbolPrototype.toString);
3691
+ var thisSymbolValue = uncurryThis$4(SymbolPrototype.valueOf);
3692
+ var symbolDescriptiveString = uncurryThis$4(SymbolPrototype.toString);
3692
3693
  var regexp = /^Symbol\((.*)\)[^)]+$/;
3693
- var replace$1 = uncurryThis$1(''.replace);
3694
- var stringSlice = uncurryThis$1(''.slice);
3694
+ var replace$1 = uncurryThis$4(''.replace);
3695
+ var stringSlice = uncurryThis$4(''.slice);
3695
3696
 
3696
3697
  defineBuiltInAccessor(SymbolPrototype, 'description', {
3697
3698
  configurable: true,
3698
3699
  get: function description() {
3699
3700
  var symbol = thisSymbolValue(this);
3700
- if (hasOwn$1(EmptyStringDescriptionStore, symbol)) return '';
3701
+ if (hasOwn$2(EmptyStringDescriptionStore, symbol)) return '';
3701
3702
  var string = symbolDescriptiveString(symbol);
3702
3703
  var desc = NATIVE_SYMBOL ? stringSlice(string, 7, -1) : replace$1(string, regexp, '$1');
3703
3704
  return desc === '' ? undefined : desc;
3704
3705
  }
3705
3706
  });
3706
3707
 
3707
- $$1({ global: true, constructor: true, forced: true }, {
3708
+ $$8({ global: true, constructor: true, forced: true }, {
3708
3709
  Symbol: SymbolWrapper
3709
3710
  });
3710
3711
  }
@@ -4661,21 +4662,21 @@ var normalizeStringArgument$1 = function (argument, $default) {
4661
4662
  return argument === undefined ? arguments.length < 2 ? '' : $default : toString(argument);
4662
4663
  };
4663
4664
 
4664
- var isObject = isObject$b;
4665
+ var isObject$2 = isObject$d;
4665
4666
  var createNonEnumerableProperty$2 = createNonEnumerableProperty$9;
4666
4667
 
4667
4668
  // `InstallErrorCause` abstract operation
4668
4669
  // https://tc39.es/proposal-error-cause/#sec-errorobjects-install-error-cause
4669
4670
  var installErrorCause$1 = function (O, options) {
4670
- if (isObject(options) && 'cause' in options) {
4671
+ if (isObject$2(options) && 'cause' in options) {
4671
4672
  createNonEnumerableProperty$2(O, 'cause', options.cause);
4672
4673
  }
4673
4674
  };
4674
4675
 
4675
- var uncurryThis = functionUncurryThis;
4676
+ var uncurryThis$3 = functionUncurryThis;
4676
4677
 
4677
4678
  var $Error = Error;
4678
- var replace = uncurryThis(''.replace);
4679
+ var replace = uncurryThis$3(''.replace);
4679
4680
 
4680
4681
  var TEST = (function (arg) { return String(new $Error(arg).stack); })('zxcasd');
4681
4682
  // eslint-disable-next-line redos/no-vulnerable -- safe
@@ -4688,10 +4689,10 @@ var errorStackClear = function (stack, dropEntries) {
4688
4689
  } return stack;
4689
4690
  };
4690
4691
 
4691
- var fails = fails$n;
4692
+ var fails$3 = fails$q;
4692
4693
  var createPropertyDescriptor = createPropertyDescriptor$4;
4693
4694
 
4694
- var errorStackInstallable = !fails(function () {
4695
+ var errorStackInstallable = !fails$3(function () {
4695
4696
  var error = new Error('a');
4696
4697
  if (!('stack' in error)) return true;
4697
4698
  // eslint-disable-next-line es/no-object-defineproperty -- safe
@@ -4713,43 +4714,43 @@ var errorStackInstall = function (error, C, stack, dropEntries) {
4713
4714
  }
4714
4715
  };
4715
4716
 
4716
- var getBuiltIn = getBuiltIn$6;
4717
- var hasOwn = hasOwnProperty_1;
4717
+ var getBuiltIn$3 = getBuiltIn$9;
4718
+ var hasOwn$1 = hasOwnProperty_1;
4718
4719
  var createNonEnumerableProperty = createNonEnumerableProperty$9;
4719
- var isPrototypeOf = objectIsPrototypeOf;
4720
- var setPrototypeOf = objectSetPrototypeOf;
4720
+ var isPrototypeOf$2 = objectIsPrototypeOf;
4721
+ var setPrototypeOf$1 = objectSetPrototypeOf;
4721
4722
  var copyConstructorProperties = copyConstructorProperties$3;
4722
4723
  var proxyAccessor = proxyAccessor$2;
4723
4724
  var inheritIfRequired = inheritIfRequired$2;
4724
4725
  var normalizeStringArgument = normalizeStringArgument$1;
4725
4726
  var installErrorCause = installErrorCause$1;
4726
4727
  var installErrorStack = errorStackInstall;
4727
- var DESCRIPTORS = descriptors;
4728
+ var DESCRIPTORS$1 = descriptors;
4728
4729
 
4729
4730
  var wrapErrorConstructorWithCause$1 = function (FULL_NAME, wrapper, FORCED, IS_AGGREGATE_ERROR) {
4730
4731
  var STACK_TRACE_LIMIT = 'stackTraceLimit';
4731
4732
  var OPTIONS_POSITION = IS_AGGREGATE_ERROR ? 2 : 1;
4732
4733
  var path = FULL_NAME.split('.');
4733
4734
  var ERROR_NAME = path[path.length - 1];
4734
- var OriginalError = getBuiltIn.apply(null, path);
4735
+ var OriginalError = getBuiltIn$3.apply(null, path);
4735
4736
 
4736
4737
  if (!OriginalError) return;
4737
4738
 
4738
4739
  var OriginalErrorPrototype = OriginalError.prototype;
4739
4740
 
4740
4741
  // V8 9.3- bug https://bugs.chromium.org/p/v8/issues/detail?id=12006
4741
- if (hasOwn(OriginalErrorPrototype, 'cause')) delete OriginalErrorPrototype.cause;
4742
+ if (hasOwn$1(OriginalErrorPrototype, 'cause')) delete OriginalErrorPrototype.cause;
4742
4743
 
4743
4744
  if (!FORCED) return OriginalError;
4744
4745
 
4745
- var BaseError = getBuiltIn('Error');
4746
+ var BaseError = getBuiltIn$3('Error');
4746
4747
 
4747
4748
  var WrappedError = wrapper(function (a, b) {
4748
4749
  var message = normalizeStringArgument(IS_AGGREGATE_ERROR ? b : a, undefined);
4749
4750
  var result = IS_AGGREGATE_ERROR ? new OriginalError(a) : new OriginalError();
4750
4751
  if (message !== undefined) createNonEnumerableProperty(result, 'message', message);
4751
4752
  installErrorStack(result, WrappedError, result.stack, 2);
4752
- if (this && isPrototypeOf(OriginalErrorPrototype, this)) inheritIfRequired(result, this, WrappedError);
4753
+ if (this && isPrototypeOf$2(OriginalErrorPrototype, this)) inheritIfRequired(result, this, WrappedError);
4753
4754
  if (arguments.length > OPTIONS_POSITION) installErrorCause(result, arguments[OPTIONS_POSITION]);
4754
4755
  return result;
4755
4756
  });
@@ -4757,9 +4758,9 @@ var wrapErrorConstructorWithCause$1 = function (FULL_NAME, wrapper, FORCED, IS_A
4757
4758
  WrappedError.prototype = OriginalErrorPrototype;
4758
4759
 
4759
4760
  if (ERROR_NAME !== 'Error') {
4760
- if (setPrototypeOf) setPrototypeOf(WrappedError, BaseError);
4761
+ if (setPrototypeOf$1) setPrototypeOf$1(WrappedError, BaseError);
4761
4762
  else copyConstructorProperties(WrappedError, BaseError, { name: true });
4762
- } else if (DESCRIPTORS && STACK_TRACE_LIMIT in OriginalError) {
4763
+ } else if (DESCRIPTORS$1 && STACK_TRACE_LIMIT in OriginalError) {
4763
4764
  proxyAccessor(WrappedError, OriginalError, STACK_TRACE_LIMIT);
4764
4765
  proxyAccessor(WrappedError, OriginalError, 'prepareStackTrace');
4765
4766
  }
@@ -4778,61 +4779,61 @@ var wrapErrorConstructorWithCause$1 = function (FULL_NAME, wrapper, FORCED, IS_A
4778
4779
  };
4779
4780
 
4780
4781
  /* eslint-disable no-unused-vars -- required for functions `.length` */
4781
- var $ = _export;
4782
- var global$1 = global$h;
4783
- var apply = functionApply;
4782
+ var $$7 = _export;
4783
+ var global$8 = global$o;
4784
+ var apply$1 = functionApply;
4784
4785
  var wrapErrorConstructorWithCause = wrapErrorConstructorWithCause$1;
4785
4786
 
4786
4787
  var WEB_ASSEMBLY = 'WebAssembly';
4787
- var WebAssembly = global$1[WEB_ASSEMBLY];
4788
+ var WebAssembly = global$8[WEB_ASSEMBLY];
4788
4789
 
4789
4790
  // eslint-disable-next-line es/no-error-cause -- feature detection
4790
- var FORCED = new Error('e', { cause: 7 }).cause !== 7;
4791
+ var FORCED$1 = new Error('e', { cause: 7 }).cause !== 7;
4791
4792
 
4792
4793
  var exportGlobalErrorCauseWrapper = function (ERROR_NAME, wrapper) {
4793
4794
  var O = {};
4794
- O[ERROR_NAME] = wrapErrorConstructorWithCause(ERROR_NAME, wrapper, FORCED);
4795
- $({ global: true, constructor: true, arity: 1, forced: FORCED }, O);
4795
+ O[ERROR_NAME] = wrapErrorConstructorWithCause(ERROR_NAME, wrapper, FORCED$1);
4796
+ $$7({ global: true, constructor: true, arity: 1, forced: FORCED$1 }, O);
4796
4797
  };
4797
4798
 
4798
4799
  var exportWebAssemblyErrorCauseWrapper = function (ERROR_NAME, wrapper) {
4799
4800
  if (WebAssembly && WebAssembly[ERROR_NAME]) {
4800
4801
  var O = {};
4801
- O[ERROR_NAME] = wrapErrorConstructorWithCause(WEB_ASSEMBLY + '.' + ERROR_NAME, wrapper, FORCED);
4802
- $({ target: WEB_ASSEMBLY, stat: true, constructor: true, arity: 1, forced: FORCED }, O);
4802
+ O[ERROR_NAME] = wrapErrorConstructorWithCause(WEB_ASSEMBLY + '.' + ERROR_NAME, wrapper, FORCED$1);
4803
+ $$7({ target: WEB_ASSEMBLY, stat: true, constructor: true, arity: 1, forced: FORCED$1 }, O);
4803
4804
  }
4804
4805
  };
4805
4806
 
4806
4807
  // https://tc39.es/ecma262/#sec-nativeerror
4807
4808
  exportGlobalErrorCauseWrapper('Error', function (init) {
4808
- return function Error(message) { return apply(init, this, arguments); };
4809
+ return function Error(message) { return apply$1(init, this, arguments); };
4809
4810
  });
4810
4811
  exportGlobalErrorCauseWrapper('EvalError', function (init) {
4811
- return function EvalError(message) { return apply(init, this, arguments); };
4812
+ return function EvalError(message) { return apply$1(init, this, arguments); };
4812
4813
  });
4813
4814
  exportGlobalErrorCauseWrapper('RangeError', function (init) {
4814
- return function RangeError(message) { return apply(init, this, arguments); };
4815
+ return function RangeError(message) { return apply$1(init, this, arguments); };
4815
4816
  });
4816
4817
  exportGlobalErrorCauseWrapper('ReferenceError', function (init) {
4817
- return function ReferenceError(message) { return apply(init, this, arguments); };
4818
+ return function ReferenceError(message) { return apply$1(init, this, arguments); };
4818
4819
  });
4819
4820
  exportGlobalErrorCauseWrapper('SyntaxError', function (init) {
4820
- return function SyntaxError(message) { return apply(init, this, arguments); };
4821
+ return function SyntaxError(message) { return apply$1(init, this, arguments); };
4821
4822
  });
4822
4823
  exportGlobalErrorCauseWrapper('TypeError', function (init) {
4823
- return function TypeError(message) { return apply(init, this, arguments); };
4824
+ return function TypeError(message) { return apply$1(init, this, arguments); };
4824
4825
  });
4825
4826
  exportGlobalErrorCauseWrapper('URIError', function (init) {
4826
- return function URIError(message) { return apply(init, this, arguments); };
4827
+ return function URIError(message) { return apply$1(init, this, arguments); };
4827
4828
  });
4828
4829
  exportWebAssemblyErrorCauseWrapper('CompileError', function (init) {
4829
- return function CompileError(message) { return apply(init, this, arguments); };
4830
+ return function CompileError(message) { return apply$1(init, this, arguments); };
4830
4831
  });
4831
4832
  exportWebAssemblyErrorCauseWrapper('LinkError', function (init) {
4832
- return function LinkError(message) { return apply(init, this, arguments); };
4833
+ return function LinkError(message) { return apply$1(init, this, arguments); };
4833
4834
  });
4834
4835
  exportWebAssemblyErrorCauseWrapper('RuntimeError', function (init) {
4835
- return function RuntimeError(message) { return apply(init, this, arguments); };
4836
+ return function RuntimeError(message) { return apply$1(init, this, arguments); };
4836
4837
  });
4837
4838
 
4838
4839
  class ContextProviderClass {
@@ -6983,17 +6984,1215 @@ const GoAErrorControlTester = rankWith(1000, (uischema, schema, context) => {
6983
6984
  });
6984
6985
  var GoAErrorControl = withJsonFormsControlProps(ErrorControl);
6985
6986
 
6986
- const createDefaultAjv = () => {
6987
+ const createDefaultAjv = (...schemas) => {
6987
6988
  const ajv = new Ajv({
6988
6989
  allErrors: true,
6989
6990
  verbose: true,
6990
6991
  strict: 'log'
6991
6992
  });
6993
+ ajv.addSchema(schemas);
6992
6994
  ajv.addFormat('file-urn', /^urn:ads:platform:file-service:v[0-9]:\/files\/[a-zA-Z0-9.-]*$/);
6993
6995
  addFormats(ajv);
6994
6996
  return ajv;
6995
6997
  };
6996
6998
 
6999
+ var aCallable$6 = aCallable$9;
7000
+ var toObject = toObject$7;
7001
+ var IndexedObject = indexedObject;
7002
+ var lengthOfArrayLike$1 = lengthOfArrayLike$5;
7003
+
7004
+ var $TypeError$6 = TypeError;
7005
+
7006
+ var REDUCE_EMPTY = 'Reduce of empty array with no initial value';
7007
+
7008
+ // `Array.prototype.{ reduce, reduceRight }` methods implementation
7009
+ var createMethod = function (IS_RIGHT) {
7010
+ return function (that, callbackfn, argumentsLength, memo) {
7011
+ var O = toObject(that);
7012
+ var self = IndexedObject(O);
7013
+ var length = lengthOfArrayLike$1(O);
7014
+ aCallable$6(callbackfn);
7015
+ if (length === 0 && argumentsLength < 2) throw new $TypeError$6(REDUCE_EMPTY);
7016
+ var index = IS_RIGHT ? length - 1 : 0;
7017
+ var i = IS_RIGHT ? -1 : 1;
7018
+ if (argumentsLength < 2) while (true) {
7019
+ if (index in self) {
7020
+ memo = self[index];
7021
+ index += i;
7022
+ break;
7023
+ }
7024
+ index += i;
7025
+ if (IS_RIGHT ? index < 0 : length <= index) {
7026
+ throw new $TypeError$6(REDUCE_EMPTY);
7027
+ }
7028
+ }
7029
+ for (;IS_RIGHT ? index >= 0 : length > index; index += i) if (index in self) {
7030
+ memo = callbackfn(memo, self[index], index, O);
7031
+ }
7032
+ return memo;
7033
+ };
7034
+ };
7035
+
7036
+ var arrayReduce = {
7037
+ // `Array.prototype.reduce` method
7038
+ // https://tc39.es/ecma262/#sec-array.prototype.reduce
7039
+ left: createMethod(false),
7040
+ // `Array.prototype.reduceRight` method
7041
+ // https://tc39.es/ecma262/#sec-array.prototype.reduceright
7042
+ right: createMethod(true)
7043
+ };
7044
+
7045
+ var fails$2 = fails$q;
7046
+
7047
+ var arrayMethodIsStrict$1 = function (METHOD_NAME, argument) {
7048
+ var method = [][METHOD_NAME];
7049
+ return !!method && fails$2(function () {
7050
+ // eslint-disable-next-line no-useless-call -- required for testing
7051
+ method.call(null, argument || function () { return 1; }, 1);
7052
+ });
7053
+ };
7054
+
7055
+ var global$7 = global$o;
7056
+ var classof$2 = classofRaw$2;
7057
+
7058
+ var engineIsNode = classof$2(global$7.process) === 'process';
7059
+
7060
+ var $$6 = _export;
7061
+ var $reduce = arrayReduce.left;
7062
+ var arrayMethodIsStrict = arrayMethodIsStrict$1;
7063
+ var CHROME_VERSION = engineV8Version;
7064
+ var IS_NODE$4 = engineIsNode;
7065
+
7066
+ // Chrome 80-82 has a critical bug
7067
+ // https://bugs.chromium.org/p/chromium/issues/detail?id=1049982
7068
+ var CHROME_BUG = !IS_NODE$4 && CHROME_VERSION > 79 && CHROME_VERSION < 83;
7069
+ var FORCED = CHROME_BUG || !arrayMethodIsStrict('reduce');
7070
+
7071
+ // `Array.prototype.reduce` method
7072
+ // https://tc39.es/ecma262/#sec-array.prototype.reduce
7073
+ $$6({ target: 'Array', proto: true, forced: FORCED }, {
7074
+ reduce: function reduce(callbackfn /* , initialValue */) {
7075
+ var length = arguments.length;
7076
+ return $reduce(this, callbackfn, length, length > 1 ? arguments[1] : undefined);
7077
+ }
7078
+ });
7079
+
7080
+ var isPrototypeOf$1 = objectIsPrototypeOf;
7081
+
7082
+ var $TypeError$5 = TypeError;
7083
+
7084
+ var anInstance$1 = function (it, Prototype) {
7085
+ if (isPrototypeOf$1(Prototype, it)) return it;
7086
+ throw new $TypeError$5('Incorrect invocation');
7087
+ };
7088
+
7089
+ var uncurryThis$2 = functionUncurryThis;
7090
+ var fails$1 = fails$q;
7091
+ var isCallable$4 = isCallable$q;
7092
+ var classof$1 = classof$9;
7093
+ var getBuiltIn$2 = getBuiltIn$9;
7094
+ var inspectSource$1 = inspectSource$3;
7095
+
7096
+ var noop = function () { /* empty */ };
7097
+ var construct = getBuiltIn$2('Reflect', 'construct');
7098
+ var constructorRegExp = /^\s*(?:class|function)\b/;
7099
+ var exec = uncurryThis$2(constructorRegExp.exec);
7100
+ var INCORRECT_TO_STRING = !constructorRegExp.test(noop);
7101
+
7102
+ var isConstructorModern = function isConstructor(argument) {
7103
+ if (!isCallable$4(argument)) return false;
7104
+ try {
7105
+ construct(noop, [], argument);
7106
+ return true;
7107
+ } catch (error) {
7108
+ return false;
7109
+ }
7110
+ };
7111
+
7112
+ var isConstructorLegacy = function isConstructor(argument) {
7113
+ if (!isCallable$4(argument)) return false;
7114
+ switch (classof$1(argument)) {
7115
+ case 'AsyncFunction':
7116
+ case 'GeneratorFunction':
7117
+ case 'AsyncGeneratorFunction': return false;
7118
+ }
7119
+ try {
7120
+ // we can't check .prototype since constructors produced by .bind haven't it
7121
+ // `Function#toString` throws on some built-it function in some legacy engines
7122
+ // (for example, `DOMQuad` and similar in FF41-)
7123
+ return INCORRECT_TO_STRING || !!exec(constructorRegExp, inspectSource$1(argument));
7124
+ } catch (error) {
7125
+ return true;
7126
+ }
7127
+ };
7128
+
7129
+ isConstructorLegacy.sham = true;
7130
+
7131
+ // `IsConstructor` abstract operation
7132
+ // https://tc39.es/ecma262/#sec-isconstructor
7133
+ var isConstructor$1 = !construct || fails$1(function () {
7134
+ var called;
7135
+ return isConstructorModern(isConstructorModern.call)
7136
+ || !isConstructorModern(Object)
7137
+ || !isConstructorModern(function () { called = true; })
7138
+ || called;
7139
+ }) ? isConstructorLegacy : isConstructorModern;
7140
+
7141
+ var isConstructor = isConstructor$1;
7142
+ var tryToString$2 = tryToString$4;
7143
+
7144
+ var $TypeError$4 = TypeError;
7145
+
7146
+ // `Assert: IsConstructor(argument) is true`
7147
+ var aConstructor$1 = function (argument) {
7148
+ if (isConstructor(argument)) return argument;
7149
+ throw new $TypeError$4(tryToString$2(argument) + ' is not a constructor');
7150
+ };
7151
+
7152
+ var anObject$4 = anObject$e;
7153
+ var aConstructor = aConstructor$1;
7154
+ var isNullOrUndefined$1 = isNullOrUndefined$5;
7155
+ var wellKnownSymbol$4 = wellKnownSymbol$j;
7156
+
7157
+ var SPECIES$1 = wellKnownSymbol$4('species');
7158
+
7159
+ // `SpeciesConstructor` abstract operation
7160
+ // https://tc39.es/ecma262/#sec-speciesconstructor
7161
+ var speciesConstructor$1 = function (O, defaultConstructor) {
7162
+ var C = anObject$4(O).constructor;
7163
+ var S;
7164
+ return C === undefined || isNullOrUndefined$1(S = anObject$4(C)[SPECIES$1]) ? defaultConstructor : aConstructor(S);
7165
+ };
7166
+
7167
+ var classofRaw = classofRaw$2;
7168
+ var uncurryThis$1 = functionUncurryThis;
7169
+
7170
+ var functionUncurryThisClause = function (fn) {
7171
+ // Nashorn bug:
7172
+ // https://github.com/zloirock/core-js/issues/1128
7173
+ // https://github.com/zloirock/core-js/issues/1130
7174
+ if (classofRaw(fn) === 'Function') return uncurryThis$1(fn);
7175
+ };
7176
+
7177
+ var uncurryThis = functionUncurryThisClause;
7178
+ var aCallable$5 = aCallable$9;
7179
+ var NATIVE_BIND = functionBindNative;
7180
+
7181
+ var bind$4 = uncurryThis(uncurryThis.bind);
7182
+
7183
+ // optional / simple context binding
7184
+ var functionBindContext = function (fn, that) {
7185
+ aCallable$5(fn);
7186
+ return that === undefined ? fn : NATIVE_BIND ? bind$4(fn, that) : function (/* ...args */) {
7187
+ return fn.apply(that, arguments);
7188
+ };
7189
+ };
7190
+
7191
+ var $TypeError$3 = TypeError;
7192
+
7193
+ var validateArgumentsLength$1 = function (passed, required) {
7194
+ if (passed < required) throw new $TypeError$3('Not enough arguments');
7195
+ return passed;
7196
+ };
7197
+
7198
+ var userAgent$2 = engineUserAgent;
7199
+
7200
+ // eslint-disable-next-line redos/no-vulnerable -- safe
7201
+ var engineIsIos = /(?:ipad|iphone|ipod).*applewebkit/i.test(userAgent$2);
7202
+
7203
+ var global$6 = global$o;
7204
+ var apply = functionApply;
7205
+ var bind$3 = functionBindContext;
7206
+ var isCallable$3 = isCallable$q;
7207
+ var hasOwn = hasOwnProperty_1;
7208
+ var fails = fails$q;
7209
+ var html = html$2;
7210
+ var arraySlice = arraySlice$2;
7211
+ var createElement = documentCreateElement$2;
7212
+ var validateArgumentsLength = validateArgumentsLength$1;
7213
+ var IS_IOS$1 = engineIsIos;
7214
+ var IS_NODE$3 = engineIsNode;
7215
+
7216
+ var set = global$6.setImmediate;
7217
+ var clear = global$6.clearImmediate;
7218
+ var process$2 = global$6.process;
7219
+ var Dispatch = global$6.Dispatch;
7220
+ var Function$1 = global$6.Function;
7221
+ var MessageChannel = global$6.MessageChannel;
7222
+ var String$1 = global$6.String;
7223
+ var counter = 0;
7224
+ var queue$2 = {};
7225
+ var ONREADYSTATECHANGE = 'onreadystatechange';
7226
+ var $location, defer, channel, port;
7227
+
7228
+ fails(function () {
7229
+ // Deno throws a ReferenceError on `location` access without `--location` flag
7230
+ $location = global$6.location;
7231
+ });
7232
+
7233
+ var run = function (id) {
7234
+ if (hasOwn(queue$2, id)) {
7235
+ var fn = queue$2[id];
7236
+ delete queue$2[id];
7237
+ fn();
7238
+ }
7239
+ };
7240
+
7241
+ var runner = function (id) {
7242
+ return function () {
7243
+ run(id);
7244
+ };
7245
+ };
7246
+
7247
+ var eventListener = function (event) {
7248
+ run(event.data);
7249
+ };
7250
+
7251
+ var globalPostMessageDefer = function (id) {
7252
+ // old engines have not location.origin
7253
+ global$6.postMessage(String$1(id), $location.protocol + '//' + $location.host);
7254
+ };
7255
+
7256
+ // Node.js 0.9+ & IE10+ has setImmediate, otherwise:
7257
+ if (!set || !clear) {
7258
+ set = function setImmediate(handler) {
7259
+ validateArgumentsLength(arguments.length, 1);
7260
+ var fn = isCallable$3(handler) ? handler : Function$1(handler);
7261
+ var args = arraySlice(arguments, 1);
7262
+ queue$2[++counter] = function () {
7263
+ apply(fn, undefined, args);
7264
+ };
7265
+ defer(counter);
7266
+ return counter;
7267
+ };
7268
+ clear = function clearImmediate(id) {
7269
+ delete queue$2[id];
7270
+ };
7271
+ // Node.js 0.8-
7272
+ if (IS_NODE$3) {
7273
+ defer = function (id) {
7274
+ process$2.nextTick(runner(id));
7275
+ };
7276
+ // Sphere (JS game engine) Dispatch API
7277
+ } else if (Dispatch && Dispatch.now) {
7278
+ defer = function (id) {
7279
+ Dispatch.now(runner(id));
7280
+ };
7281
+ // Browsers with MessageChannel, includes WebWorkers
7282
+ // except iOS - https://github.com/zloirock/core-js/issues/624
7283
+ } else if (MessageChannel && !IS_IOS$1) {
7284
+ channel = new MessageChannel();
7285
+ port = channel.port2;
7286
+ channel.port1.onmessage = eventListener;
7287
+ defer = bind$3(port.postMessage, port);
7288
+ // Browsers with postMessage, skip WebWorkers
7289
+ // IE8 has postMessage, but it's sync & typeof its postMessage is 'object'
7290
+ } else if (
7291
+ global$6.addEventListener &&
7292
+ isCallable$3(global$6.postMessage) &&
7293
+ !global$6.importScripts &&
7294
+ $location && $location.protocol !== 'file:' &&
7295
+ !fails(globalPostMessageDefer)
7296
+ ) {
7297
+ defer = globalPostMessageDefer;
7298
+ global$6.addEventListener('message', eventListener, false);
7299
+ // IE8-
7300
+ } else if (ONREADYSTATECHANGE in createElement('script')) {
7301
+ defer = function (id) {
7302
+ html.appendChild(createElement('script'))[ONREADYSTATECHANGE] = function () {
7303
+ html.removeChild(this);
7304
+ run(id);
7305
+ };
7306
+ };
7307
+ // Rest old browsers
7308
+ } else {
7309
+ defer = function (id) {
7310
+ setTimeout(runner(id), 0);
7311
+ };
7312
+ }
7313
+ }
7314
+
7315
+ var task$1 = {
7316
+ set: set,
7317
+ clear: clear
7318
+ };
7319
+
7320
+ var global$5 = global$o;
7321
+ var DESCRIPTORS = descriptors;
7322
+
7323
+ // eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe
7324
+ var getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;
7325
+
7326
+ // Avoid NodeJS experimental warning
7327
+ var safeGetBuiltIn$1 = function (name) {
7328
+ if (!DESCRIPTORS) return global$5[name];
7329
+ var descriptor = getOwnPropertyDescriptor(global$5, name);
7330
+ return descriptor && descriptor.value;
7331
+ };
7332
+
7333
+ var Queue$2 = function () {
7334
+ this.head = null;
7335
+ this.tail = null;
7336
+ };
7337
+
7338
+ Queue$2.prototype = {
7339
+ add: function (item) {
7340
+ var entry = { item: item, next: null };
7341
+ var tail = this.tail;
7342
+ if (tail) tail.next = entry;
7343
+ else this.head = entry;
7344
+ this.tail = entry;
7345
+ },
7346
+ get: function () {
7347
+ var entry = this.head;
7348
+ if (entry) {
7349
+ var next = this.head = entry.next;
7350
+ if (next === null) this.tail = null;
7351
+ return entry.item;
7352
+ }
7353
+ }
7354
+ };
7355
+
7356
+ var queue$1 = Queue$2;
7357
+
7358
+ var userAgent$1 = engineUserAgent;
7359
+
7360
+ var engineIsIosPebble = /ipad|iphone|ipod/i.test(userAgent$1) && typeof Pebble != 'undefined';
7361
+
7362
+ var userAgent = engineUserAgent;
7363
+
7364
+ var engineIsWebosWebkit = /web0s(?!.*chrome)/i.test(userAgent);
7365
+
7366
+ var global$4 = global$o;
7367
+ var safeGetBuiltIn = safeGetBuiltIn$1;
7368
+ var bind$2 = functionBindContext;
7369
+ var macrotask = task$1.set;
7370
+ var Queue$1 = queue$1;
7371
+ var IS_IOS = engineIsIos;
7372
+ var IS_IOS_PEBBLE = engineIsIosPebble;
7373
+ var IS_WEBOS_WEBKIT = engineIsWebosWebkit;
7374
+ var IS_NODE$2 = engineIsNode;
7375
+
7376
+ var MutationObserver = global$4.MutationObserver || global$4.WebKitMutationObserver;
7377
+ var document$2 = global$4.document;
7378
+ var process$1 = global$4.process;
7379
+ var Promise$1 = global$4.Promise;
7380
+ var microtask$1 = safeGetBuiltIn('queueMicrotask');
7381
+ var notify$1, toggle, node, promise, then;
7382
+
7383
+ // modern engines have queueMicrotask method
7384
+ if (!microtask$1) {
7385
+ var queue = new Queue$1();
7386
+
7387
+ var flush = function () {
7388
+ var parent, fn;
7389
+ if (IS_NODE$2 && (parent = process$1.domain)) parent.exit();
7390
+ while (fn = queue.get()) try {
7391
+ fn();
7392
+ } catch (error) {
7393
+ if (queue.head) notify$1();
7394
+ throw error;
7395
+ }
7396
+ if (parent) parent.enter();
7397
+ };
7398
+
7399
+ // browsers with MutationObserver, except iOS - https://github.com/zloirock/core-js/issues/339
7400
+ // also except WebOS Webkit https://github.com/zloirock/core-js/issues/898
7401
+ if (!IS_IOS && !IS_NODE$2 && !IS_WEBOS_WEBKIT && MutationObserver && document$2) {
7402
+ toggle = true;
7403
+ node = document$2.createTextNode('');
7404
+ new MutationObserver(flush).observe(node, { characterData: true });
7405
+ notify$1 = function () {
7406
+ node.data = toggle = !toggle;
7407
+ };
7408
+ // environments with maybe non-completely correct, but existent Promise
7409
+ } else if (!IS_IOS_PEBBLE && Promise$1 && Promise$1.resolve) {
7410
+ // Promise.resolve without an argument throws an error in LG WebOS 2
7411
+ promise = Promise$1.resolve(undefined);
7412
+ // workaround of WebKit ~ iOS Safari 10.1 bug
7413
+ promise.constructor = Promise$1;
7414
+ then = bind$2(promise.then, promise);
7415
+ notify$1 = function () {
7416
+ then(flush);
7417
+ };
7418
+ // Node.js without promises
7419
+ } else if (IS_NODE$2) {
7420
+ notify$1 = function () {
7421
+ process$1.nextTick(flush);
7422
+ };
7423
+ // for other environments - macrotask based on:
7424
+ // - setImmediate
7425
+ // - MessageChannel
7426
+ // - window.postMessage
7427
+ // - onreadystatechange
7428
+ // - setTimeout
7429
+ } else {
7430
+ // `webpack` dev server bug on IE global methods - use bind(fn, global)
7431
+ macrotask = bind$2(macrotask, global$4);
7432
+ notify$1 = function () {
7433
+ macrotask(flush);
7434
+ };
7435
+ }
7436
+
7437
+ microtask$1 = function (fn) {
7438
+ if (!queue.head) notify$1();
7439
+ queue.add(fn);
7440
+ };
7441
+ }
7442
+
7443
+ var microtask_1 = microtask$1;
7444
+
7445
+ var hostReportErrors$1 = function (a, b) {
7446
+ try {
7447
+ // eslint-disable-next-line no-console -- safe
7448
+ arguments.length === 1 ? console.error(a) : console.error(a, b);
7449
+ } catch (error) { /* empty */ }
7450
+ };
7451
+
7452
+ var perform$3 = function (exec) {
7453
+ try {
7454
+ return { error: false, value: exec() };
7455
+ } catch (error) {
7456
+ return { error: true, value: error };
7457
+ }
7458
+ };
7459
+
7460
+ var global$3 = global$o;
7461
+
7462
+ var promiseNativeConstructor = global$3.Promise;
7463
+
7464
+ /* global Deno -- Deno case */
7465
+ var engineIsDeno = typeof Deno == 'object' && Deno && typeof Deno.version == 'object';
7466
+
7467
+ var IS_DENO$1 = engineIsDeno;
7468
+ var IS_NODE$1 = engineIsNode;
7469
+
7470
+ var engineIsBrowser = !IS_DENO$1 && !IS_NODE$1
7471
+ && typeof window == 'object'
7472
+ && typeof document == 'object';
7473
+
7474
+ var global$2 = global$o;
7475
+ var NativePromiseConstructor$3 = promiseNativeConstructor;
7476
+ var isCallable$2 = isCallable$q;
7477
+ var isForced = isForced_1;
7478
+ var inspectSource = inspectSource$3;
7479
+ var wellKnownSymbol$3 = wellKnownSymbol$j;
7480
+ var IS_BROWSER = engineIsBrowser;
7481
+ var IS_DENO = engineIsDeno;
7482
+ var V8_VERSION = engineV8Version;
7483
+
7484
+ NativePromiseConstructor$3 && NativePromiseConstructor$3.prototype;
7485
+ var SPECIES = wellKnownSymbol$3('species');
7486
+ var SUBCLASSING = false;
7487
+ var NATIVE_PROMISE_REJECTION_EVENT$1 = isCallable$2(global$2.PromiseRejectionEvent);
7488
+
7489
+ var FORCED_PROMISE_CONSTRUCTOR$5 = isForced('Promise', function () {
7490
+ var PROMISE_CONSTRUCTOR_SOURCE = inspectSource(NativePromiseConstructor$3);
7491
+ var GLOBAL_CORE_JS_PROMISE = PROMISE_CONSTRUCTOR_SOURCE !== String(NativePromiseConstructor$3);
7492
+ // V8 6.6 (Node 10 and Chrome 66) have a bug with resolving custom thenables
7493
+ // https://bugs.chromium.org/p/chromium/issues/detail?id=830565
7494
+ // We can't detect it synchronously, so just check versions
7495
+ if (!GLOBAL_CORE_JS_PROMISE && V8_VERSION === 66) return true;
7496
+ // We can't use @@species feature detection in V8 since it causes
7497
+ // deoptimization and performance degradation
7498
+ // https://github.com/zloirock/core-js/issues/679
7499
+ if (!V8_VERSION || V8_VERSION < 51 || !/native code/.test(PROMISE_CONSTRUCTOR_SOURCE)) {
7500
+ // Detect correctness of subclassing with @@species support
7501
+ var promise = new NativePromiseConstructor$3(function (resolve) { resolve(1); });
7502
+ var FakePromise = function (exec) {
7503
+ exec(function () { /* empty */ }, function () { /* empty */ });
7504
+ };
7505
+ var constructor = promise.constructor = {};
7506
+ constructor[SPECIES] = FakePromise;
7507
+ SUBCLASSING = promise.then(function () { /* empty */ }) instanceof FakePromise;
7508
+ if (!SUBCLASSING) return true;
7509
+ // Unhandled rejections tracking support, NodeJS Promise without it fails @@species test
7510
+ } return !GLOBAL_CORE_JS_PROMISE && (IS_BROWSER || IS_DENO) && !NATIVE_PROMISE_REJECTION_EVENT$1;
7511
+ });
7512
+
7513
+ var promiseConstructorDetection = {
7514
+ CONSTRUCTOR: FORCED_PROMISE_CONSTRUCTOR$5,
7515
+ REJECTION_EVENT: NATIVE_PROMISE_REJECTION_EVENT$1,
7516
+ SUBCLASSING: SUBCLASSING
7517
+ };
7518
+
7519
+ var newPromiseCapability$2 = {};
7520
+
7521
+ var aCallable$4 = aCallable$9;
7522
+
7523
+ var $TypeError$2 = TypeError;
7524
+
7525
+ var PromiseCapability = function (C) {
7526
+ var resolve, reject;
7527
+ this.promise = new C(function ($$resolve, $$reject) {
7528
+ if (resolve !== undefined || reject !== undefined) throw new $TypeError$2('Bad Promise constructor');
7529
+ resolve = $$resolve;
7530
+ reject = $$reject;
7531
+ });
7532
+ this.resolve = aCallable$4(resolve);
7533
+ this.reject = aCallable$4(reject);
7534
+ };
7535
+
7536
+ // `NewPromiseCapability` abstract operation
7537
+ // https://tc39.es/ecma262/#sec-newpromisecapability
7538
+ newPromiseCapability$2.f = function (C) {
7539
+ return new PromiseCapability(C);
7540
+ };
7541
+
7542
+ var $$5 = _export;
7543
+ var IS_NODE = engineIsNode;
7544
+ var global$1 = global$o;
7545
+ var call$5 = functionCall;
7546
+ var defineBuiltIn$1 = defineBuiltIn$8;
7547
+ var setPrototypeOf = objectSetPrototypeOf;
7548
+ var setToStringTag = setToStringTag$4;
7549
+ var setSpecies = setSpecies$2;
7550
+ var aCallable$3 = aCallable$9;
7551
+ var isCallable$1 = isCallable$q;
7552
+ var isObject$1 = isObject$d;
7553
+ var anInstance = anInstance$1;
7554
+ var speciesConstructor = speciesConstructor$1;
7555
+ var task = task$1.set;
7556
+ var microtask = microtask_1;
7557
+ var hostReportErrors = hostReportErrors$1;
7558
+ var perform$2 = perform$3;
7559
+ var Queue = queue$1;
7560
+ var InternalStateModule = internalState;
7561
+ var NativePromiseConstructor$2 = promiseNativeConstructor;
7562
+ var PromiseConstructorDetection = promiseConstructorDetection;
7563
+ var newPromiseCapabilityModule$3 = newPromiseCapability$2;
7564
+
7565
+ var PROMISE = 'Promise';
7566
+ var FORCED_PROMISE_CONSTRUCTOR$4 = PromiseConstructorDetection.CONSTRUCTOR;
7567
+ var NATIVE_PROMISE_REJECTION_EVENT = PromiseConstructorDetection.REJECTION_EVENT;
7568
+ var NATIVE_PROMISE_SUBCLASSING = PromiseConstructorDetection.SUBCLASSING;
7569
+ var getInternalPromiseState = InternalStateModule.getterFor(PROMISE);
7570
+ var setInternalState = InternalStateModule.set;
7571
+ var NativePromisePrototype$1 = NativePromiseConstructor$2 && NativePromiseConstructor$2.prototype;
7572
+ var PromiseConstructor = NativePromiseConstructor$2;
7573
+ var PromisePrototype = NativePromisePrototype$1;
7574
+ var TypeError$1 = global$1.TypeError;
7575
+ var document$1 = global$1.document;
7576
+ var process = global$1.process;
7577
+ var newPromiseCapability$1 = newPromiseCapabilityModule$3.f;
7578
+ var newGenericPromiseCapability = newPromiseCapability$1;
7579
+
7580
+ var DISPATCH_EVENT = !!(document$1 && document$1.createEvent && global$1.dispatchEvent);
7581
+ var UNHANDLED_REJECTION = 'unhandledrejection';
7582
+ var REJECTION_HANDLED = 'rejectionhandled';
7583
+ var PENDING = 0;
7584
+ var FULFILLED = 1;
7585
+ var REJECTED = 2;
7586
+ var HANDLED = 1;
7587
+ var UNHANDLED = 2;
7588
+
7589
+ var Internal, OwnPromiseCapability, PromiseWrapper, nativeThen;
7590
+
7591
+ // helpers
7592
+ var isThenable = function (it) {
7593
+ var then;
7594
+ return isObject$1(it) && isCallable$1(then = it.then) ? then : false;
7595
+ };
7596
+
7597
+ var callReaction = function (reaction, state) {
7598
+ var value = state.value;
7599
+ var ok = state.state === FULFILLED;
7600
+ var handler = ok ? reaction.ok : reaction.fail;
7601
+ var resolve = reaction.resolve;
7602
+ var reject = reaction.reject;
7603
+ var domain = reaction.domain;
7604
+ var result, then, exited;
7605
+ try {
7606
+ if (handler) {
7607
+ if (!ok) {
7608
+ if (state.rejection === UNHANDLED) onHandleUnhandled(state);
7609
+ state.rejection = HANDLED;
7610
+ }
7611
+ if (handler === true) result = value;
7612
+ else {
7613
+ if (domain) domain.enter();
7614
+ result = handler(value); // can throw
7615
+ if (domain) {
7616
+ domain.exit();
7617
+ exited = true;
7618
+ }
7619
+ }
7620
+ if (result === reaction.promise) {
7621
+ reject(new TypeError$1('Promise-chain cycle'));
7622
+ } else if (then = isThenable(result)) {
7623
+ call$5(then, result, resolve, reject);
7624
+ } else resolve(result);
7625
+ } else reject(value);
7626
+ } catch (error) {
7627
+ if (domain && !exited) domain.exit();
7628
+ reject(error);
7629
+ }
7630
+ };
7631
+
7632
+ var notify = function (state, isReject) {
7633
+ if (state.notified) return;
7634
+ state.notified = true;
7635
+ microtask(function () {
7636
+ var reactions = state.reactions;
7637
+ var reaction;
7638
+ while (reaction = reactions.get()) {
7639
+ callReaction(reaction, state);
7640
+ }
7641
+ state.notified = false;
7642
+ if (isReject && !state.rejection) onUnhandled(state);
7643
+ });
7644
+ };
7645
+
7646
+ var dispatchEvent = function (name, promise, reason) {
7647
+ var event, handler;
7648
+ if (DISPATCH_EVENT) {
7649
+ event = document$1.createEvent('Event');
7650
+ event.promise = promise;
7651
+ event.reason = reason;
7652
+ event.initEvent(name, false, true);
7653
+ global$1.dispatchEvent(event);
7654
+ } else event = { promise: promise, reason: reason };
7655
+ if (!NATIVE_PROMISE_REJECTION_EVENT && (handler = global$1['on' + name])) handler(event);
7656
+ else if (name === UNHANDLED_REJECTION) hostReportErrors('Unhandled promise rejection', reason);
7657
+ };
7658
+
7659
+ var onUnhandled = function (state) {
7660
+ call$5(task, global$1, function () {
7661
+ var promise = state.facade;
7662
+ var value = state.value;
7663
+ var IS_UNHANDLED = isUnhandled(state);
7664
+ var result;
7665
+ if (IS_UNHANDLED) {
7666
+ result = perform$2(function () {
7667
+ if (IS_NODE) {
7668
+ process.emit('unhandledRejection', value, promise);
7669
+ } else dispatchEvent(UNHANDLED_REJECTION, promise, value);
7670
+ });
7671
+ // Browsers should not trigger `rejectionHandled` event if it was handled here, NodeJS - should
7672
+ state.rejection = IS_NODE || isUnhandled(state) ? UNHANDLED : HANDLED;
7673
+ if (result.error) throw result.value;
7674
+ }
7675
+ });
7676
+ };
7677
+
7678
+ var isUnhandled = function (state) {
7679
+ return state.rejection !== HANDLED && !state.parent;
7680
+ };
7681
+
7682
+ var onHandleUnhandled = function (state) {
7683
+ call$5(task, global$1, function () {
7684
+ var promise = state.facade;
7685
+ if (IS_NODE) {
7686
+ process.emit('rejectionHandled', promise);
7687
+ } else dispatchEvent(REJECTION_HANDLED, promise, state.value);
7688
+ });
7689
+ };
7690
+
7691
+ var bind$1 = function (fn, state, unwrap) {
7692
+ return function (value) {
7693
+ fn(state, value, unwrap);
7694
+ };
7695
+ };
7696
+
7697
+ var internalReject = function (state, value, unwrap) {
7698
+ if (state.done) return;
7699
+ state.done = true;
7700
+ if (unwrap) state = unwrap;
7701
+ state.value = value;
7702
+ state.state = REJECTED;
7703
+ notify(state, true);
7704
+ };
7705
+
7706
+ var internalResolve = function (state, value, unwrap) {
7707
+ if (state.done) return;
7708
+ state.done = true;
7709
+ if (unwrap) state = unwrap;
7710
+ try {
7711
+ if (state.facade === value) throw new TypeError$1("Promise can't be resolved itself");
7712
+ var then = isThenable(value);
7713
+ if (then) {
7714
+ microtask(function () {
7715
+ var wrapper = { done: false };
7716
+ try {
7717
+ call$5(then, value,
7718
+ bind$1(internalResolve, wrapper, state),
7719
+ bind$1(internalReject, wrapper, state)
7720
+ );
7721
+ } catch (error) {
7722
+ internalReject(wrapper, error, state);
7723
+ }
7724
+ });
7725
+ } else {
7726
+ state.value = value;
7727
+ state.state = FULFILLED;
7728
+ notify(state, false);
7729
+ }
7730
+ } catch (error) {
7731
+ internalReject({ done: false }, error, state);
7732
+ }
7733
+ };
7734
+
7735
+ // constructor polyfill
7736
+ if (FORCED_PROMISE_CONSTRUCTOR$4) {
7737
+ // 25.4.3.1 Promise(executor)
7738
+ PromiseConstructor = function Promise(executor) {
7739
+ anInstance(this, PromisePrototype);
7740
+ aCallable$3(executor);
7741
+ call$5(Internal, this);
7742
+ var state = getInternalPromiseState(this);
7743
+ try {
7744
+ executor(bind$1(internalResolve, state), bind$1(internalReject, state));
7745
+ } catch (error) {
7746
+ internalReject(state, error);
7747
+ }
7748
+ };
7749
+
7750
+ PromisePrototype = PromiseConstructor.prototype;
7751
+
7752
+ // eslint-disable-next-line no-unused-vars -- required for `.length`
7753
+ Internal = function Promise(executor) {
7754
+ setInternalState(this, {
7755
+ type: PROMISE,
7756
+ done: false,
7757
+ notified: false,
7758
+ parent: false,
7759
+ reactions: new Queue(),
7760
+ rejection: false,
7761
+ state: PENDING,
7762
+ value: undefined
7763
+ });
7764
+ };
7765
+
7766
+ // `Promise.prototype.then` method
7767
+ // https://tc39.es/ecma262/#sec-promise.prototype.then
7768
+ Internal.prototype = defineBuiltIn$1(PromisePrototype, 'then', function then(onFulfilled, onRejected) {
7769
+ var state = getInternalPromiseState(this);
7770
+ var reaction = newPromiseCapability$1(speciesConstructor(this, PromiseConstructor));
7771
+ state.parent = true;
7772
+ reaction.ok = isCallable$1(onFulfilled) ? onFulfilled : true;
7773
+ reaction.fail = isCallable$1(onRejected) && onRejected;
7774
+ reaction.domain = IS_NODE ? process.domain : undefined;
7775
+ if (state.state === PENDING) state.reactions.add(reaction);
7776
+ else microtask(function () {
7777
+ callReaction(reaction, state);
7778
+ });
7779
+ return reaction.promise;
7780
+ });
7781
+
7782
+ OwnPromiseCapability = function () {
7783
+ var promise = new Internal();
7784
+ var state = getInternalPromiseState(promise);
7785
+ this.promise = promise;
7786
+ this.resolve = bind$1(internalResolve, state);
7787
+ this.reject = bind$1(internalReject, state);
7788
+ };
7789
+
7790
+ newPromiseCapabilityModule$3.f = newPromiseCapability$1 = function (C) {
7791
+ return C === PromiseConstructor || C === PromiseWrapper
7792
+ ? new OwnPromiseCapability(C)
7793
+ : newGenericPromiseCapability(C);
7794
+ };
7795
+
7796
+ if (isCallable$1(NativePromiseConstructor$2) && NativePromisePrototype$1 !== Object.prototype) {
7797
+ nativeThen = NativePromisePrototype$1.then;
7798
+
7799
+ if (!NATIVE_PROMISE_SUBCLASSING) {
7800
+ // make `Promise#then` return a polyfilled `Promise` for native promise-based APIs
7801
+ defineBuiltIn$1(NativePromisePrototype$1, 'then', function then(onFulfilled, onRejected) {
7802
+ var that = this;
7803
+ return new PromiseConstructor(function (resolve, reject) {
7804
+ call$5(nativeThen, that, resolve, reject);
7805
+ }).then(onFulfilled, onRejected);
7806
+ // https://github.com/zloirock/core-js/issues/640
7807
+ }, { unsafe: true });
7808
+ }
7809
+
7810
+ // make `.constructor === Promise` work for native promise-based APIs
7811
+ try {
7812
+ delete NativePromisePrototype$1.constructor;
7813
+ } catch (error) { /* empty */ }
7814
+
7815
+ // make `instanceof Promise` work for native promise-based APIs
7816
+ if (setPrototypeOf) {
7817
+ setPrototypeOf(NativePromisePrototype$1, PromisePrototype);
7818
+ }
7819
+ }
7820
+ }
7821
+
7822
+ $$5({ global: true, constructor: true, wrap: true, forced: FORCED_PROMISE_CONSTRUCTOR$4 }, {
7823
+ Promise: PromiseConstructor
7824
+ });
7825
+
7826
+ setToStringTag(PromiseConstructor, PROMISE, false);
7827
+ setSpecies(PROMISE);
7828
+
7829
+ var wellKnownSymbol$2 = wellKnownSymbol$j;
7830
+ var Iterators$1 = iterators;
7831
+
7832
+ var ITERATOR$2 = wellKnownSymbol$2('iterator');
7833
+ var ArrayPrototype = Array.prototype;
7834
+
7835
+ // check on default Array iterator
7836
+ var isArrayIteratorMethod$1 = function (it) {
7837
+ return it !== undefined && (Iterators$1.Array === it || ArrayPrototype[ITERATOR$2] === it);
7838
+ };
7839
+
7840
+ var classof = classof$9;
7841
+ var getMethod$1 = getMethod$4;
7842
+ var isNullOrUndefined = isNullOrUndefined$5;
7843
+ var Iterators = iterators;
7844
+ var wellKnownSymbol$1 = wellKnownSymbol$j;
7845
+
7846
+ var ITERATOR$1 = wellKnownSymbol$1('iterator');
7847
+
7848
+ var getIteratorMethod$2 = function (it) {
7849
+ if (!isNullOrUndefined(it)) return getMethod$1(it, ITERATOR$1)
7850
+ || getMethod$1(it, '@@iterator')
7851
+ || Iterators[classof(it)];
7852
+ };
7853
+
7854
+ var call$4 = functionCall;
7855
+ var aCallable$2 = aCallable$9;
7856
+ var anObject$3 = anObject$e;
7857
+ var tryToString$1 = tryToString$4;
7858
+ var getIteratorMethod$1 = getIteratorMethod$2;
7859
+
7860
+ var $TypeError$1 = TypeError;
7861
+
7862
+ var getIterator$1 = function (argument, usingIterator) {
7863
+ var iteratorMethod = arguments.length < 2 ? getIteratorMethod$1(argument) : usingIterator;
7864
+ if (aCallable$2(iteratorMethod)) return anObject$3(call$4(iteratorMethod, argument));
7865
+ throw new $TypeError$1(tryToString$1(argument) + ' is not iterable');
7866
+ };
7867
+
7868
+ var call$3 = functionCall;
7869
+ var anObject$2 = anObject$e;
7870
+ var getMethod = getMethod$4;
7871
+
7872
+ var iteratorClose$1 = function (iterator, kind, value) {
7873
+ var innerResult, innerError;
7874
+ anObject$2(iterator);
7875
+ try {
7876
+ innerResult = getMethod(iterator, 'return');
7877
+ if (!innerResult) {
7878
+ if (kind === 'throw') throw value;
7879
+ return value;
7880
+ }
7881
+ innerResult = call$3(innerResult, iterator);
7882
+ } catch (error) {
7883
+ innerError = true;
7884
+ innerResult = error;
7885
+ }
7886
+ if (kind === 'throw') throw value;
7887
+ if (innerError) throw innerResult;
7888
+ anObject$2(innerResult);
7889
+ return value;
7890
+ };
7891
+
7892
+ var bind = functionBindContext;
7893
+ var call$2 = functionCall;
7894
+ var anObject$1 = anObject$e;
7895
+ var tryToString = tryToString$4;
7896
+ var isArrayIteratorMethod = isArrayIteratorMethod$1;
7897
+ var lengthOfArrayLike = lengthOfArrayLike$5;
7898
+ var isPrototypeOf = objectIsPrototypeOf;
7899
+ var getIterator = getIterator$1;
7900
+ var getIteratorMethod = getIteratorMethod$2;
7901
+ var iteratorClose = iteratorClose$1;
7902
+
7903
+ var $TypeError = TypeError;
7904
+
7905
+ var Result = function (stopped, result) {
7906
+ this.stopped = stopped;
7907
+ this.result = result;
7908
+ };
7909
+
7910
+ var ResultPrototype = Result.prototype;
7911
+
7912
+ var iterate$2 = function (iterable, unboundFunction, options) {
7913
+ var that = options && options.that;
7914
+ var AS_ENTRIES = !!(options && options.AS_ENTRIES);
7915
+ var IS_RECORD = !!(options && options.IS_RECORD);
7916
+ var IS_ITERATOR = !!(options && options.IS_ITERATOR);
7917
+ var INTERRUPTED = !!(options && options.INTERRUPTED);
7918
+ var fn = bind(unboundFunction, that);
7919
+ var iterator, iterFn, index, length, result, next, step;
7920
+
7921
+ var stop = function (condition) {
7922
+ if (iterator) iteratorClose(iterator, 'normal', condition);
7923
+ return new Result(true, condition);
7924
+ };
7925
+
7926
+ var callFn = function (value) {
7927
+ if (AS_ENTRIES) {
7928
+ anObject$1(value);
7929
+ return INTERRUPTED ? fn(value[0], value[1], stop) : fn(value[0], value[1]);
7930
+ } return INTERRUPTED ? fn(value, stop) : fn(value);
7931
+ };
7932
+
7933
+ if (IS_RECORD) {
7934
+ iterator = iterable.iterator;
7935
+ } else if (IS_ITERATOR) {
7936
+ iterator = iterable;
7937
+ } else {
7938
+ iterFn = getIteratorMethod(iterable);
7939
+ if (!iterFn) throw new $TypeError(tryToString(iterable) + ' is not iterable');
7940
+ // optimisation for array iterators
7941
+ if (isArrayIteratorMethod(iterFn)) {
7942
+ for (index = 0, length = lengthOfArrayLike(iterable); length > index; index++) {
7943
+ result = callFn(iterable[index]);
7944
+ if (result && isPrototypeOf(ResultPrototype, result)) return result;
7945
+ } return new Result(false);
7946
+ }
7947
+ iterator = getIterator(iterable, iterFn);
7948
+ }
7949
+
7950
+ next = IS_RECORD ? iterable.next : iterator.next;
7951
+ while (!(step = call$2(next, iterator)).done) {
7952
+ try {
7953
+ result = callFn(step.value);
7954
+ } catch (error) {
7955
+ iteratorClose(iterator, 'throw', error);
7956
+ }
7957
+ if (typeof result == 'object' && result && isPrototypeOf(ResultPrototype, result)) return result;
7958
+ } return new Result(false);
7959
+ };
7960
+
7961
+ var wellKnownSymbol = wellKnownSymbol$j;
7962
+
7963
+ var ITERATOR = wellKnownSymbol('iterator');
7964
+ var SAFE_CLOSING = false;
7965
+
7966
+ try {
7967
+ var called = 0;
7968
+ var iteratorWithReturn = {
7969
+ next: function () {
7970
+ return { done: !!called++ };
7971
+ },
7972
+ 'return': function () {
7973
+ SAFE_CLOSING = true;
7974
+ }
7975
+ };
7976
+ iteratorWithReturn[ITERATOR] = function () {
7977
+ return this;
7978
+ };
7979
+ // eslint-disable-next-line es/no-array-from, no-throw-literal -- required for testing
7980
+ Array.from(iteratorWithReturn, function () { throw 2; });
7981
+ } catch (error) { /* empty */ }
7982
+
7983
+ var checkCorrectnessOfIteration$1 = function (exec, SKIP_CLOSING) {
7984
+ try {
7985
+ if (!SKIP_CLOSING && !SAFE_CLOSING) return false;
7986
+ } catch (error) { return false; } // workaround of old WebKit + `eval` bug
7987
+ var ITERATION_SUPPORT = false;
7988
+ try {
7989
+ var object = {};
7990
+ object[ITERATOR] = function () {
7991
+ return {
7992
+ next: function () {
7993
+ return { done: ITERATION_SUPPORT = true };
7994
+ }
7995
+ };
7996
+ };
7997
+ exec(object);
7998
+ } catch (error) { /* empty */ }
7999
+ return ITERATION_SUPPORT;
8000
+ };
8001
+
8002
+ var NativePromiseConstructor$1 = promiseNativeConstructor;
8003
+ var checkCorrectnessOfIteration = checkCorrectnessOfIteration$1;
8004
+ var FORCED_PROMISE_CONSTRUCTOR$3 = promiseConstructorDetection.CONSTRUCTOR;
8005
+
8006
+ var promiseStaticsIncorrectIteration = FORCED_PROMISE_CONSTRUCTOR$3 || !checkCorrectnessOfIteration(function (iterable) {
8007
+ NativePromiseConstructor$1.all(iterable).then(undefined, function () { /* empty */ });
8008
+ });
8009
+
8010
+ var $$4 = _export;
8011
+ var call$1 = functionCall;
8012
+ var aCallable$1 = aCallable$9;
8013
+ var newPromiseCapabilityModule$2 = newPromiseCapability$2;
8014
+ var perform$1 = perform$3;
8015
+ var iterate$1 = iterate$2;
8016
+ var PROMISE_STATICS_INCORRECT_ITERATION$1 = promiseStaticsIncorrectIteration;
8017
+
8018
+ // `Promise.all` method
8019
+ // https://tc39.es/ecma262/#sec-promise.all
8020
+ $$4({ target: 'Promise', stat: true, forced: PROMISE_STATICS_INCORRECT_ITERATION$1 }, {
8021
+ all: function all(iterable) {
8022
+ var C = this;
8023
+ var capability = newPromiseCapabilityModule$2.f(C);
8024
+ var resolve = capability.resolve;
8025
+ var reject = capability.reject;
8026
+ var result = perform$1(function () {
8027
+ var $promiseResolve = aCallable$1(C.resolve);
8028
+ var values = [];
8029
+ var counter = 0;
8030
+ var remaining = 1;
8031
+ iterate$1(iterable, function (promise) {
8032
+ var index = counter++;
8033
+ var alreadyCalled = false;
8034
+ remaining++;
8035
+ call$1($promiseResolve, C, promise).then(function (value) {
8036
+ if (alreadyCalled) return;
8037
+ alreadyCalled = true;
8038
+ values[index] = value;
8039
+ --remaining || resolve(values);
8040
+ }, reject);
8041
+ });
8042
+ --remaining || resolve(values);
8043
+ });
8044
+ if (result.error) reject(result.value);
8045
+ return capability.promise;
8046
+ }
8047
+ });
8048
+
8049
+ var $$3 = _export;
8050
+ var FORCED_PROMISE_CONSTRUCTOR$2 = promiseConstructorDetection.CONSTRUCTOR;
8051
+ var NativePromiseConstructor = promiseNativeConstructor;
8052
+ var getBuiltIn$1 = getBuiltIn$9;
8053
+ var isCallable = isCallable$q;
8054
+ var defineBuiltIn = defineBuiltIn$8;
8055
+
8056
+ var NativePromisePrototype = NativePromiseConstructor && NativePromiseConstructor.prototype;
8057
+
8058
+ // `Promise.prototype.catch` method
8059
+ // https://tc39.es/ecma262/#sec-promise.prototype.catch
8060
+ $$3({ target: 'Promise', proto: true, forced: FORCED_PROMISE_CONSTRUCTOR$2, real: true }, {
8061
+ 'catch': function (onRejected) {
8062
+ return this.then(undefined, onRejected);
8063
+ }
8064
+ });
8065
+
8066
+ // makes sure that native promise-based APIs `Promise#catch` properly works with patched `Promise#then`
8067
+ if (isCallable(NativePromiseConstructor)) {
8068
+ var method = getBuiltIn$1('Promise').prototype['catch'];
8069
+ if (NativePromisePrototype['catch'] !== method) {
8070
+ defineBuiltIn(NativePromisePrototype, 'catch', method, { unsafe: true });
8071
+ }
8072
+ }
8073
+
8074
+ var $$2 = _export;
8075
+ var call = functionCall;
8076
+ var aCallable = aCallable$9;
8077
+ var newPromiseCapabilityModule$1 = newPromiseCapability$2;
8078
+ var perform = perform$3;
8079
+ var iterate = iterate$2;
8080
+ var PROMISE_STATICS_INCORRECT_ITERATION = promiseStaticsIncorrectIteration;
8081
+
8082
+ // `Promise.race` method
8083
+ // https://tc39.es/ecma262/#sec-promise.race
8084
+ $$2({ target: 'Promise', stat: true, forced: PROMISE_STATICS_INCORRECT_ITERATION }, {
8085
+ race: function race(iterable) {
8086
+ var C = this;
8087
+ var capability = newPromiseCapabilityModule$1.f(C);
8088
+ var reject = capability.reject;
8089
+ var result = perform(function () {
8090
+ var $promiseResolve = aCallable(C.resolve);
8091
+ iterate(iterable, function (promise) {
8092
+ call($promiseResolve, C, promise).then(capability.resolve, reject);
8093
+ });
8094
+ });
8095
+ if (result.error) reject(result.value);
8096
+ return capability.promise;
8097
+ }
8098
+ });
8099
+
8100
+ var $$1 = _export;
8101
+ var newPromiseCapabilityModule = newPromiseCapability$2;
8102
+ var FORCED_PROMISE_CONSTRUCTOR$1 = promiseConstructorDetection.CONSTRUCTOR;
8103
+
8104
+ // `Promise.reject` method
8105
+ // https://tc39.es/ecma262/#sec-promise.reject
8106
+ $$1({ target: 'Promise', stat: true, forced: FORCED_PROMISE_CONSTRUCTOR$1 }, {
8107
+ reject: function reject(r) {
8108
+ var capability = newPromiseCapabilityModule.f(this);
8109
+ var capabilityReject = capability.reject;
8110
+ capabilityReject(r);
8111
+ return capability.promise;
8112
+ }
8113
+ });
8114
+
8115
+ var anObject = anObject$e;
8116
+ var isObject = isObject$d;
8117
+ var newPromiseCapability = newPromiseCapability$2;
8118
+
8119
+ var promiseResolve$1 = function (C, x) {
8120
+ anObject(C);
8121
+ if (isObject(x) && x.constructor === C) return x;
8122
+ var promiseCapability = newPromiseCapability.f(C);
8123
+ var resolve = promiseCapability.resolve;
8124
+ resolve(x);
8125
+ return promiseCapability.promise;
8126
+ };
8127
+
8128
+ var $ = _export;
8129
+ var getBuiltIn = getBuiltIn$9;
8130
+ var FORCED_PROMISE_CONSTRUCTOR = promiseConstructorDetection.CONSTRUCTOR;
8131
+ var promiseResolve = promiseResolve$1;
8132
+
8133
+ getBuiltIn('Promise');
8134
+
8135
+ // `Promise.resolve` method
8136
+ // https://tc39.es/ecma262/#sec-promise.resolve
8137
+ $({ target: 'Promise', stat: true, forced: FORCED_PROMISE_CONSTRUCTOR }, {
8138
+ resolve: function resolve(x) {
8139
+ return promiseResolve(this, x);
8140
+ }
8141
+ });
8142
+
8143
+ let dereference;
8144
+ function resolveRefs(schema, ...refSchemas) {
8145
+ return __awaiter(this, void 0, void 0, function* () {
8146
+ var _a;
8147
+ if (!dereference) {
8148
+ dereference = (_a = yield import('@apidevtools/json-schema-ref-parser')) === null || _a === void 0 ? void 0 : _a.dereference;
8149
+ if (!dereference) {
8150
+ throw new Error('@apidevtools/json-schema-ref-parser is required for use of resolveRefs().');
8151
+ }
8152
+ }
8153
+ const available = refSchemas.reduce((schemas, refSchema) => {
8154
+ const id = refSchema.$id || refSchema.id;
8155
+ if (id) {
8156
+ schemas[id] = refSchema;
8157
+ }
8158
+ return schemas;
8159
+ }, {});
8160
+ // Clone since dereference will in place modify the input schema.
8161
+ const source = _$8.cloneDeep(schema);
8162
+ const result = yield dereference(source, {
8163
+ continueOnError: false,
8164
+ resolve: {
8165
+ http: false,
8166
+ file: false,
8167
+ static: {
8168
+ order: 1,
8169
+ canRead: /^https?:/,
8170
+ read: function ({
8171
+ url
8172
+ }) {
8173
+ const resolved = available[url];
8174
+ if (!resolved) {
8175
+ throw new Error(`Failed to resolve schema for: ${url}`);
8176
+ }
8177
+ return resolved;
8178
+ }
8179
+ }
8180
+ }
8181
+ });
8182
+ return result;
8183
+ });
8184
+ }
8185
+ function tryResolveRefs(schema, ...refSchemas) {
8186
+ return __awaiter(this, void 0, void 0, function* () {
8187
+ try {
8188
+ const result = yield resolveRefs(schema, ...refSchemas);
8189
+ return [result];
8190
+ } catch (err) {
8191
+ return [schema, err];
8192
+ }
8193
+ });
8194
+ }
8195
+
6997
8196
  const GoABaseRenderers = [
6998
8197
  // controls
6999
8198
  {
@@ -7131,4 +8330,4 @@ const GoARenderers = [...GoABaseRenderers, {
7131
8330
  }];
7132
8331
  const GoACells = [...InputCells];
7133
8332
 
7134
- export { ADD_DATALIST_ACTION, ADD_NO_ANONYMOUS_ACTION, ADD_REGISTER_DATA_ACTION, ADD_REGISTER_DATA_ERROR, ContextProviderC, ContextProviderClass, ContextProviderFactory, GoABaseRenderers, GoABaseReviewRenderers, GoACells, GoARenderers, GoAReviewRenderers, JsonFormContext, JsonFormRegisterProvider, JsonFormsRegisterContext, createDefaultAjv, registerReducer };
8333
+ export { ADD_DATALIST_ACTION, ADD_NO_ANONYMOUS_ACTION, ADD_REGISTER_DATA_ACTION, ADD_REGISTER_DATA_ERROR, ContextProviderC, ContextProviderClass, ContextProviderFactory, GoABaseRenderers, GoABaseReviewRenderers, GoACells, GoARenderers, GoAReviewRenderers, JsonFormContext, JsonFormRegisterProvider, JsonFormsRegisterContext, createDefaultAjv, registerReducer, resolveRefs, tryResolveRefs };