@swagger-api/apidom-json-pointer 0.81.0 → 0.82.1

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/CHANGELOG.md CHANGED
@@ -3,6 +3,14 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ ## [0.82.1](https://github.com/swagger-api/apidom/compare/v0.82.0...v0.82.1) (2023-11-03)
7
+
8
+ **Note:** Version bump only for package @swagger-api/apidom-json-pointer
9
+
10
+ # [0.82.0](https://github.com/swagger-api/apidom/compare/v0.81.0...v0.82.0) (2023-11-01)
11
+
12
+ **Note:** Version bump only for package @swagger-api/apidom-json-pointer
13
+
6
14
  # [0.81.0](https://github.com/swagger-api/apidom/compare/v0.80.0...v0.81.0) (2023-10-30)
7
15
 
8
16
  **Note:** Version bump only for package @swagger-api/apidom-json-pointer
@@ -3496,7 +3496,7 @@ module.exports = Set;
3496
3496
 
3497
3497
  /***/ }),
3498
3498
 
3499
- /***/ 7282:
3499
+ /***/ 5386:
3500
3500
  /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
3501
3501
 
3502
3502
  var MapCache = __webpack_require__(6738),
@@ -4231,7 +4231,7 @@ module.exports = coreJsData;
4231
4231
  /***/ 4871:
4232
4232
  /***/ ((module, __unused_webpack_exports, __webpack_require__) => {
4233
4233
 
4234
- var SetCache = __webpack_require__(7282),
4234
+ var SetCache = __webpack_require__(5386),
4235
4235
  arraySome = __webpack_require__(7064),
4236
4236
  cacheHas = __webpack_require__(9950);
4237
4237
 
@@ -9069,22 +9069,6 @@ var included = (0,ramda__WEBPACK_IMPORTED_MODULE_0__["default"])(ramda__WEBPACK_
9069
9069
 
9070
9070
  /***/ }),
9071
9071
 
9072
- /***/ 3723:
9073
- /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
9074
-
9075
- "use strict";
9076
- __webpack_require__.r(__webpack_exports__);
9077
- /* harmony export */ __webpack_require__.d(__webpack_exports__, {
9078
- /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
9079
- /* harmony export */ });
9080
- function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
9081
- var isOfTypeObject = function isOfTypeObject(val) {
9082
- return _typeof(val) === 'object';
9083
- };
9084
- /* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (isOfTypeObject);
9085
-
9086
- /***/ }),
9087
-
9088
9072
  /***/ 3043:
9089
9073
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
9090
9074
 
@@ -9379,74 +9363,6 @@ var isInteger = (0,_isFunction__WEBPACK_IMPORTED_MODULE_2__["default"])(Number.i
9379
9363
 
9380
9364
  /***/ }),
9381
9365
 
9382
- /***/ 875:
9383
- /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
9384
-
9385
- "use strict";
9386
- __webpack_require__.r(__webpack_exports__);
9387
- /* harmony export */ __webpack_require__.d(__webpack_exports__, {
9388
- /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
9389
- /* harmony export */ });
9390
- /* harmony import */ var ramda__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(8131);
9391
- /* harmony import */ var _isNull__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(858);
9392
-
9393
-
9394
-
9395
- /**
9396
- * Checks if input value is complement of `null`.
9397
- *
9398
- * @func isNotNull
9399
- * @memberOf RA
9400
- * @since {@link https://char0n.github.io/ramda-adjunct/0.1.0|v0.1.0}
9401
- * @category Type
9402
- * @sig * -> Boolean
9403
- * @param {*} val The value to test
9404
- * @return {boolean}
9405
- * @see {@link RA.isNull|isNull}
9406
- * @example
9407
- *
9408
- * RA.isNotNull(1); //=> true
9409
- * RA.isNotNull(undefined); //=> true
9410
- * RA.isNotNull(null); //=> false
9411
- */
9412
- var isNotNull = (0,ramda__WEBPACK_IMPORTED_MODULE_0__["default"])(_isNull__WEBPACK_IMPORTED_MODULE_1__["default"]);
9413
- /* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (isNotNull);
9414
-
9415
- /***/ }),
9416
-
9417
- /***/ 858:
9418
- /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
9419
-
9420
- "use strict";
9421
- __webpack_require__.r(__webpack_exports__);
9422
- /* harmony export */ __webpack_require__.d(__webpack_exports__, {
9423
- /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
9424
- /* harmony export */ });
9425
- /* harmony import */ var ramda__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(7087);
9426
-
9427
-
9428
- /**
9429
- * Checks if input value is `null`.
9430
- *
9431
- * @func isNull
9432
- * @memberOf RA
9433
- * @since {@link https://char0n.github.io/ramda-adjunct/0.1.0|v0.1.0}
9434
- * @category Type
9435
- * @sig * -> Boolean
9436
- * @param {*} val The value to test
9437
- * @return {boolean}
9438
- * @see {@link RA.isNotNull|isNotNull}
9439
- * @example
9440
- *
9441
- * RA.isNull(1); //=> false
9442
- * RA.isNull(undefined); //=> false
9443
- * RA.isNull(null); //=> true
9444
- */
9445
- var isNull = (0,ramda__WEBPACK_IMPORTED_MODULE_0__["default"])(null);
9446
- /* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (isNull);
9447
-
9448
- /***/ }),
9449
-
9450
9366
  /***/ 5058:
9451
9367
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
9452
9368
 
@@ -9485,118 +9401,6 @@ var isNumber = (0,ramda__WEBPACK_IMPORTED_MODULE_0__["default"])(1, (0,ramda__WE
9485
9401
 
9486
9402
  /***/ }),
9487
9403
 
9488
- /***/ 9503:
9489
- /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
9490
-
9491
- "use strict";
9492
- __webpack_require__.r(__webpack_exports__);
9493
- /* harmony export */ __webpack_require__.d(__webpack_exports__, {
9494
- /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
9495
- /* harmony export */ });
9496
- /* harmony import */ var ramda__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(7616);
9497
- /* harmony import */ var ramda__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(8426);
9498
- /* harmony import */ var _isNotNull__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(875);
9499
- /* harmony import */ var _internal_isOfTypeObject__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(3723);
9500
-
9501
-
9502
-
9503
-
9504
- /* eslint-disable max-len */
9505
- /**
9506
- * Checks if value is object-like. A value is object-like if it's not null and has a typeof result of "object".
9507
- *
9508
- * @func isObjLike
9509
- * @aliases isObjectLike
9510
- * @memberOf RA
9511
- * @since {@link https://char0n.github.io/ramda-adjunct/0.5.0|v0.5.0}
9512
- * @category Type
9513
- * @sig * -> Boolean
9514
- * @param {*} val The value to test
9515
- * @return {boolean}
9516
- * @see {@link RA.isNotObjLike|isNotObjLike}, {@link RA.isObj|isObj}, {@link RA.isPlainObj|isPlainObj}
9517
- * @example
9518
- *
9519
- * RA.isObjLike({}); //=> true
9520
- * RA.isObjLike([]); //=> true
9521
- * RA.isObjLike(() => {}); //=> false
9522
- * RA.isObjLike(null); //=> false
9523
- * RA.isObjLike(undefined); //=> false
9524
- */
9525
- /* eslint-enable max-len */
9526
- var isObjLike = (0,ramda__WEBPACK_IMPORTED_MODULE_0__["default"])(1, (0,ramda__WEBPACK_IMPORTED_MODULE_1__["default"])(_isNotNull__WEBPACK_IMPORTED_MODULE_2__["default"], _internal_isOfTypeObject__WEBPACK_IMPORTED_MODULE_3__["default"]));
9527
- /* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (isObjLike);
9528
-
9529
- /***/ }),
9530
-
9531
- /***/ 9723:
9532
- /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
9533
-
9534
- "use strict";
9535
- __webpack_require__.r(__webpack_exports__);
9536
- /* harmony export */ __webpack_require__.d(__webpack_exports__, {
9537
- /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
9538
- /* harmony export */ });
9539
- /* harmony import */ var ramda__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(4205);
9540
- /* harmony import */ var ramda__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(2406);
9541
- /* harmony import */ var ramda__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(2776);
9542
- /* harmony import */ var ramda__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(9168);
9543
- /* harmony import */ var ramda__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(7087);
9544
- /* harmony import */ var ramda__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(4465);
9545
- /* harmony import */ var ramda__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(8426);
9546
- /* harmony import */ var ramda__WEBPACK_IMPORTED_MODULE_8__ = __webpack_require__(7616);
9547
- /* harmony import */ var _isNull__WEBPACK_IMPORTED_MODULE_10__ = __webpack_require__(858);
9548
- /* harmony import */ var _isObjLike__WEBPACK_IMPORTED_MODULE_9__ = __webpack_require__(9503);
9549
- /* harmony import */ var _isFunction__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(9028);
9550
-
9551
-
9552
-
9553
-
9554
- var isObject = (0,ramda__WEBPACK_IMPORTED_MODULE_0__["default"])(ramda__WEBPACK_IMPORTED_MODULE_1__["default"], (0,ramda__WEBPACK_IMPORTED_MODULE_2__["default"])('Object'));
9555
- var isObjectConstructor = (0,ramda__WEBPACK_IMPORTED_MODULE_0__["default"])(ramda__WEBPACK_IMPORTED_MODULE_3__["default"], (0,ramda__WEBPACK_IMPORTED_MODULE_4__["default"])((0,ramda__WEBPACK_IMPORTED_MODULE_3__["default"])(Object)));
9556
- var hasObjectConstructor = (0,ramda__WEBPACK_IMPORTED_MODULE_5__["default"])((0,ramda__WEBPACK_IMPORTED_MODULE_6__["default"])(_isFunction__WEBPACK_IMPORTED_MODULE_7__["default"], isObjectConstructor), ['constructor']);
9557
-
9558
- /* eslint-disable max-len */
9559
- /**
9560
- * Check to see if an object is a plain object (created using `{}`, `new Object()` or `Object.create(null)`).
9561
- *
9562
- * @func isPlainObj
9563
- * @aliases isPlainObject
9564
- * @memberOf RA
9565
- * @since {@link https://char0n.github.io/ramda-adjunct/0.5.0|v0.5.0}
9566
- * @category Type
9567
- * @sig * -> Boolean
9568
- * @param {*} val The value to test
9569
- * @return {boolean}
9570
- * @see {@link RA.isNotPlainObj|isNotPlainObj}, {@link RA.isObjLike|isObjLike}, {@link RA.isObj|isObj}
9571
- * @example
9572
- *
9573
- * class Bar {
9574
- * constructor() {
9575
- * this.prop = 'value';
9576
- * }
9577
- * }
9578
- *
9579
- * RA.isPlainObj(new Bar()); //=> false
9580
- * RA.isPlainObj({ prop: 'value' }); //=> true
9581
- * RA.isPlainObj(['a', 'b', 'c']); //=> false
9582
- * RA.isPlainObj(Object.create(null); //=> true
9583
- * RA.isPlainObj(new Object()); //=> true
9584
- */
9585
- /* eslint-enable max-len */
9586
- var isPlainObj = (0,ramda__WEBPACK_IMPORTED_MODULE_8__["default"])(1, function (val) {
9587
- if (!(0,_isObjLike__WEBPACK_IMPORTED_MODULE_9__["default"])(val) || !isObject(val)) {
9588
- return false;
9589
- }
9590
- var proto = Object.getPrototypeOf(val);
9591
- if ((0,_isNull__WEBPACK_IMPORTED_MODULE_10__["default"])(proto)) {
9592
- return true;
9593
- }
9594
- return hasObjectConstructor(proto);
9595
- });
9596
- /* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (isPlainObj);
9597
-
9598
- /***/ }),
9599
-
9600
9404
  /***/ 9471:
9601
9405
  /***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
9602
9406
 
@@ -10086,48 +9890,6 @@ var both =
10086
9890
 
10087
9891
  /***/ }),
10088
9892
 
10089
- /***/ 8131:
10090
- /***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
10091
-
10092
- "use strict";
10093
- __webpack_require__.r(__webpack_exports__);
10094
- /* harmony export */ __webpack_require__.d(__webpack_exports__, {
10095
- /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
10096
- /* harmony export */ });
10097
- /* harmony import */ var _lift_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(8410);
10098
- /* harmony import */ var _not_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(5097);
10099
-
10100
-
10101
- /**
10102
- * Takes a function `f` and returns a function `g` such that if called with the same arguments
10103
- * when `f` returns a "truthy" value, `g` returns `false` and when `f` returns a "falsy" value `g` returns `true`.
10104
- *
10105
- * `R.complement` may be applied to any functor
10106
- *
10107
- * @func
10108
- * @memberOf R
10109
- * @since v0.12.0
10110
- * @category Logic
10111
- * @sig (*... -> *) -> (*... -> Boolean)
10112
- * @param {Function} f
10113
- * @return {Function}
10114
- * @see R.not
10115
- * @example
10116
- *
10117
- * const isNotNil = R.complement(R.isNil);
10118
- * R.isNil(null); //=> true
10119
- * isNotNil(null); //=> false
10120
- * R.isNil(7); //=> false
10121
- * isNotNil(7); //=> true
10122
- */
10123
-
10124
- var complement =
10125
- /*#__PURE__*/
10126
- (0,_lift_js__WEBPACK_IMPORTED_MODULE_0__["default"])(_not_js__WEBPACK_IMPORTED_MODULE_1__["default"]);
10127
- /* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (complement);
10128
-
10129
- /***/ }),
10130
-
10131
9893
  /***/ 6159:
10132
9894
  /***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
10133
9895
 
@@ -10566,59 +10328,6 @@ var flip =
10566
10328
 
10567
10329
  /***/ }),
10568
10330
 
10569
- /***/ 4506:
10570
- /***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
10571
-
10572
- "use strict";
10573
- __webpack_require__.r(__webpack_exports__);
10574
- /* harmony export */ __webpack_require__.d(__webpack_exports__, {
10575
- /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
10576
- /* harmony export */ });
10577
- /* harmony import */ var _internal_curry2_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(5652);
10578
- /* harmony import */ var _isNil_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(7596);
10579
-
10580
-
10581
- /**
10582
- * Returns whether or not an object or its prototype chain has a property with
10583
- * the specified name
10584
- *
10585
- * @func
10586
- * @memberOf R
10587
- * @since v0.7.0
10588
- * @category Object
10589
- * @sig s -> {s: x} -> Boolean
10590
- * @param {String} prop The name of the property to check for.
10591
- * @param {Object} obj The object to query.
10592
- * @return {Boolean} Whether the property exists.
10593
- * @example
10594
- *
10595
- * function Rectangle(width, height) {
10596
- * this.width = width;
10597
- * this.height = height;
10598
- * }
10599
- * Rectangle.prototype.area = function() {
10600
- * return this.width * this.height;
10601
- * };
10602
- *
10603
- * const square = new Rectangle(2, 2);
10604
- * R.hasIn('width', square); //=> true
10605
- * R.hasIn('area', square); //=> true
10606
- */
10607
-
10608
- var hasIn =
10609
- /*#__PURE__*/
10610
- (0,_internal_curry2_js__WEBPACK_IMPORTED_MODULE_0__["default"])(function hasIn(prop, obj) {
10611
- if ((0,_isNil_js__WEBPACK_IMPORTED_MODULE_1__["default"])(obj)) {
10612
- return false;
10613
- }
10614
-
10615
- return prop in obj;
10616
- });
10617
-
10618
- /* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (hasIn);
10619
-
10620
- /***/ }),
10621
-
10622
10331
  /***/ 2776:
10623
10332
  /***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
10624
10333
 
@@ -11787,7 +11496,7 @@ function _isFunction(x) {
11787
11496
 
11788
11497
  /***/ }),
11789
11498
 
11790
- /***/ 5386:
11499
+ /***/ 425:
11791
11500
  /***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
11792
11501
 
11793
11502
  "use strict";
@@ -12523,44 +12232,6 @@ var invoker =
12523
12232
 
12524
12233
  /***/ }),
12525
12234
 
12526
- /***/ 7596:
12527
- /***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
12528
-
12529
- "use strict";
12530
- __webpack_require__.r(__webpack_exports__);
12531
- /* harmony export */ __webpack_require__.d(__webpack_exports__, {
12532
- /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
12533
- /* harmony export */ });
12534
- /* harmony import */ var _internal_curry1_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(9757);
12535
-
12536
- /**
12537
- * Checks if the input value is `null` or `undefined`.
12538
- *
12539
- * @func
12540
- * @memberOf R
12541
- * @since v0.9.0
12542
- * @category Type
12543
- * @sig * -> Boolean
12544
- * @param {*} x The value to test.
12545
- * @return {Boolean} `true` if `x` is `undefined` or `null`, otherwise `false`.
12546
- * @example
12547
- *
12548
- * R.isNil(null); //=> true
12549
- * R.isNil(undefined); //=> true
12550
- * R.isNil(0); //=> false
12551
- * R.isNil([]); //=> false
12552
- */
12553
-
12554
- var isNil =
12555
- /*#__PURE__*/
12556
- (0,_internal_curry1_js__WEBPACK_IMPORTED_MODULE_0__["default"])(function isNil(x) {
12557
- return x == null;
12558
- });
12559
-
12560
- /* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (isNil);
12561
-
12562
- /***/ }),
12563
-
12564
12235
  /***/ 1197:
12565
12236
  /***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
12566
12237
 
@@ -12952,46 +12623,6 @@ var max =
12952
12623
 
12953
12624
  /***/ }),
12954
12625
 
12955
- /***/ 5097:
12956
- /***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
12957
-
12958
- "use strict";
12959
- __webpack_require__.r(__webpack_exports__);
12960
- /* harmony export */ __webpack_require__.d(__webpack_exports__, {
12961
- /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
12962
- /* harmony export */ });
12963
- /* harmony import */ var _internal_curry1_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(9757);
12964
-
12965
- /**
12966
- * A function that returns the `!` of its argument. It will return `true` when
12967
- * passed false-y value, and `false` when passed a truth-y one.
12968
- *
12969
- * @func
12970
- * @memberOf R
12971
- * @since v0.1.0
12972
- * @category Logic
12973
- * @sig * -> Boolean
12974
- * @param {*} a any value
12975
- * @return {Boolean} the logical inverse of passed argument.
12976
- * @see R.complement
12977
- * @example
12978
- *
12979
- * R.not(true); //=> false
12980
- * R.not(false); //=> true
12981
- * R.not(0); //=> true
12982
- * R.not(1); //=> false
12983
- */
12984
-
12985
- var not =
12986
- /*#__PURE__*/
12987
- (0,_internal_curry1_js__WEBPACK_IMPORTED_MODULE_0__["default"])(function not(a) {
12988
- return !a;
12989
- });
12990
-
12991
- /* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (not);
12992
-
12993
- /***/ }),
12994
-
12995
12626
  /***/ 9605:
12996
12627
  /***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
12997
12628
 
@@ -13042,208 +12673,6 @@ var nth =
13042
12673
 
13043
12674
  /***/ }),
13044
12675
 
13045
- /***/ 4783:
13046
- /***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
13047
-
13048
- "use strict";
13049
- __webpack_require__.r(__webpack_exports__);
13050
- /* harmony export */ __webpack_require__.d(__webpack_exports__, {
13051
- /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
13052
- /* harmony export */ });
13053
- /* harmony import */ var _internal_curry2_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(5652);
13054
-
13055
- /**
13056
- * Returns a partial copy of an object omitting the keys specified.
13057
- *
13058
- * @func
13059
- * @memberOf R
13060
- * @since v0.1.0
13061
- * @category Object
13062
- * @sig [String] -> {String: *} -> {String: *}
13063
- * @param {Array} names an array of String property names to omit from the new object
13064
- * @param {Object} obj The object to copy from
13065
- * @return {Object} A new object with properties from `names` not on it.
13066
- * @see R.pick
13067
- * @example
13068
- *
13069
- * R.omit(['a', 'd'], {a: 1, b: 2, c: 3, d: 4}); //=> {b: 2, c: 3}
13070
- */
13071
-
13072
- var omit =
13073
- /*#__PURE__*/
13074
- (0,_internal_curry2_js__WEBPACK_IMPORTED_MODULE_0__["default"])(function omit(names, obj) {
13075
- var result = {};
13076
- var index = {};
13077
- var idx = 0;
13078
- var len = names.length;
13079
-
13080
- while (idx < len) {
13081
- index[names[idx]] = 1;
13082
- idx += 1;
13083
- }
13084
-
13085
- for (var prop in obj) {
13086
- if (!index.hasOwnProperty(prop)) {
13087
- result[prop] = obj[prop];
13088
- }
13089
- }
13090
-
13091
- return result;
13092
- });
13093
-
13094
- /* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (omit);
13095
-
13096
- /***/ }),
13097
-
13098
- /***/ 9154:
13099
- /***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
13100
-
13101
- "use strict";
13102
- __webpack_require__.r(__webpack_exports__);
13103
- /* harmony export */ __webpack_require__.d(__webpack_exports__, {
13104
- /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
13105
- /* harmony export */ });
13106
- /* harmony import */ var _internal_curry2_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(5652);
13107
- /* harmony import */ var _paths_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(393);
13108
-
13109
-
13110
- /**
13111
- * Retrieves the value at a given path. The nodes of the path can be arbitrary strings or non-negative integers.
13112
- * For anything else, the value is unspecified. Integer paths are meant to index arrays, strings are meant for objects.
13113
- *
13114
- * @func
13115
- * @memberOf R
13116
- * @since v0.2.0
13117
- * @category Object
13118
- * @typedefn Idx = String | Int | Symbol
13119
- * @sig [Idx] -> {a} -> a | Undefined
13120
- * @sig Idx = String | NonNegativeInt
13121
- * @param {Array} path The path to use.
13122
- * @param {Object} obj The object or array to retrieve the nested property from.
13123
- * @return {*} The data at `path`.
13124
- * @see R.prop, R.nth, R.assocPath, R.dissocPath
13125
- * @example
13126
- *
13127
- * R.path(['a', 'b'], {a: {b: 2}}); //=> 2
13128
- * R.path(['a', 'b'], {c: {b: 2}}); //=> undefined
13129
- * R.path(['a', 'b', 0], {a: {b: [1, 2, 3]}}); //=> 1
13130
- * R.path(['a', 'b', -2], {a: {b: [1, 2, 3]}}); //=> 2
13131
- * R.path([2], {'2': 2}); //=> 2
13132
- * R.path([-2], {'-2': 'a'}); //=> undefined
13133
- */
13134
-
13135
- var path =
13136
- /*#__PURE__*/
13137
- (0,_internal_curry2_js__WEBPACK_IMPORTED_MODULE_0__["default"])(function path(pathAr, obj) {
13138
- return (0,_paths_js__WEBPACK_IMPORTED_MODULE_1__["default"])([pathAr], obj)[0];
13139
- });
13140
-
13141
- /* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (path);
13142
-
13143
- /***/ }),
13144
-
13145
- /***/ 4465:
13146
- /***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
13147
-
13148
- "use strict";
13149
- __webpack_require__.r(__webpack_exports__);
13150
- /* harmony export */ __webpack_require__.d(__webpack_exports__, {
13151
- /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
13152
- /* harmony export */ });
13153
- /* harmony import */ var _internal_curry3_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(1924);
13154
- /* harmony import */ var _path_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(9154);
13155
-
13156
-
13157
- /**
13158
- * Returns `true` if the specified object property at given path satisfies the
13159
- * given predicate; `false` otherwise.
13160
- *
13161
- * @func
13162
- * @memberOf R
13163
- * @since v0.19.0
13164
- * @category Logic
13165
- * @typedefn Idx = String | Int | Symbol
13166
- * @sig (a -> Boolean) -> [Idx] -> {a} -> Boolean
13167
- * @param {Function} pred
13168
- * @param {Array} propPath
13169
- * @param {*} obj
13170
- * @return {Boolean}
13171
- * @see R.propSatisfies, R.path
13172
- * @example
13173
- *
13174
- * R.pathSatisfies(y => y > 0, ['x', 'y'], {x: {y: 2}}); //=> true
13175
- * R.pathSatisfies(R.is(Object), [], {x: {y: 2}}); //=> true
13176
- */
13177
-
13178
- var pathSatisfies =
13179
- /*#__PURE__*/
13180
- (0,_internal_curry3_js__WEBPACK_IMPORTED_MODULE_0__["default"])(function pathSatisfies(pred, propPath, obj) {
13181
- return pred((0,_path_js__WEBPACK_IMPORTED_MODULE_1__["default"])(propPath, obj));
13182
- });
13183
-
13184
- /* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (pathSatisfies);
13185
-
13186
- /***/ }),
13187
-
13188
- /***/ 393:
13189
- /***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
13190
-
13191
- "use strict";
13192
- __webpack_require__.r(__webpack_exports__);
13193
- /* harmony export */ __webpack_require__.d(__webpack_exports__, {
13194
- /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
13195
- /* harmony export */ });
13196
- /* harmony import */ var _internal_curry2_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(5652);
13197
- /* harmony import */ var _internal_isInteger_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(5386);
13198
- /* harmony import */ var _nth_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(9605);
13199
-
13200
-
13201
-
13202
- /**
13203
- * Retrieves the values at given paths of an object.
13204
- *
13205
- * @func
13206
- * @memberOf R
13207
- * @since v0.27.1
13208
- * @category Object
13209
- * @typedefn Idx = [String | Int | Symbol]
13210
- * @sig [Idx] -> {a} -> [a | Undefined]
13211
- * @param {Array} pathsArray The array of paths to be fetched.
13212
- * @param {Object} obj The object to retrieve the nested properties from.
13213
- * @return {Array} A list consisting of values at paths specified by "pathsArray".
13214
- * @see R.path
13215
- * @example
13216
- *
13217
- * R.paths([['a', 'b'], ['p', 0, 'q']], {a: {b: 2}, p: [{q: 3}]}); //=> [2, 3]
13218
- * R.paths([['a', 'b'], ['p', 'r']], {a: {b: 2}, p: [{q: 3}]}); //=> [2, undefined]
13219
- */
13220
-
13221
- var paths =
13222
- /*#__PURE__*/
13223
- (0,_internal_curry2_js__WEBPACK_IMPORTED_MODULE_0__["default"])(function paths(pathsArray, obj) {
13224
- return pathsArray.map(function (paths) {
13225
- var val = obj;
13226
- var idx = 0;
13227
- var p;
13228
-
13229
- while (idx < paths.length) {
13230
- if (val == null) {
13231
- return;
13232
- }
13233
-
13234
- p = paths[idx];
13235
- val = (0,_internal_isInteger_js__WEBPACK_IMPORTED_MODULE_1__["default"])(p) ? (0,_nth_js__WEBPACK_IMPORTED_MODULE_2__["default"])(p, val) : val[p];
13236
- idx += 1;
13237
- }
13238
-
13239
- return val;
13240
- });
13241
- });
13242
-
13243
- /* harmony default export */ const __WEBPACK_DEFAULT_EXPORT__ = (paths);
13244
-
13245
- /***/ }),
13246
-
13247
12676
  /***/ 4205:
13248
12677
  /***/ ((__unused_webpack___webpack_module__, __webpack_exports__, __webpack_require__) => {
13249
12678
 
@@ -13356,7 +12785,7 @@ __webpack_require__.r(__webpack_exports__);
13356
12785
  /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
13357
12786
  /* harmony export */ });
13358
12787
  /* harmony import */ var _internal_curry2_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(5652);
13359
- /* harmony import */ var _internal_isInteger_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(5386);
12788
+ /* harmony import */ var _internal_isInteger_js__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(425);
13360
12789
  /* harmony import */ var _nth_js__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(9605);
13361
12790
 
13362
12791
 
@@ -14491,10 +13920,6 @@ __webpack_require__.r(__webpack_exports__);
14491
13920
  /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
14492
13921
  /* harmony export */ });
14493
13922
  /* harmony import */ var _babel_runtime_corejs3_core_js_aggregate_error__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(1427);
14494
- /* harmony import */ var ramda_adjunct__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(9723);
14495
- /* harmony import */ var ramda__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(4506);
14496
-
14497
-
14498
13923
 
14499
13924
  class ApiDOMAggregateError extends _babel_runtime_corejs3_core_js_aggregate_error__WEBPACK_IMPORTED_MODULE_0__ {
14500
13925
  constructor(errors, message, options) {
@@ -14511,15 +13936,15 @@ class ApiDOMAggregateError extends _babel_runtime_corejs3_core_js_aggregate_erro
14511
13936
 
14512
13937
  /**
14513
13938
  * This needs to stay here until our minimum supported version of Node.js is >= 16.9.0.
14514
- * Node.js is >= 16.9.0 supports error causes natively.
13939
+ * Node.js >= 16.9.0 supports error causes natively.
14515
13940
  */
14516
- if ((0,ramda_adjunct__WEBPACK_IMPORTED_MODULE_1__["default"])(options) && (0,ramda__WEBPACK_IMPORTED_MODULE_2__["default"])('cause', options) && !(0,ramda__WEBPACK_IMPORTED_MODULE_2__["default"])('cause', this)) {
13941
+ if (options != null && typeof options === 'object' && Object.hasOwn(options, 'cause') && !('cause' in this)) {
14517
13942
  const {
14518
13943
  cause
14519
13944
  } = options;
14520
13945
  this.cause = cause;
14521
- if (cause instanceof Error && (0,ramda__WEBPACK_IMPORTED_MODULE_2__["default"])('stack', cause)) {
14522
- this.stack = `${this.stack}\nCAUSE: ${cause === null || cause === void 0 ? void 0 : cause.stack}`;
13946
+ if (cause instanceof Error && 'stack' in cause) {
13947
+ this.stack = `${this.stack}\nCAUSE: ${cause.stack}`;
14523
13948
  }
14524
13949
  }
14525
13950
  }
@@ -14536,12 +13961,8 @@ __webpack_require__.r(__webpack_exports__);
14536
13961
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
14537
13962
  /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
14538
13963
  /* harmony export */ });
14539
- /* harmony import */ var ramda__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(4506);
14540
- /* harmony import */ var ramda_adjunct__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(9723);
14541
13964
  /* harmony import */ var _ApiDOMAggregateError_mjs__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(7345);
14542
13965
 
14543
-
14544
-
14545
13966
  class ApiDOMError extends Error {
14546
13967
  static [Symbol.hasInstance](instance) {
14547
13968
  // we want to ApiDOMAggregateError to act as if ApiDOMError was its superclass
@@ -14563,13 +13984,13 @@ class ApiDOMError extends Error {
14563
13984
  * This needs to stay here until our minimum supported version of Node.js is >= 16.9.0.
14564
13985
  * Node.js is >= 16.9.0 supports error causes natively.
14565
13986
  */
14566
- if ((0,ramda_adjunct__WEBPACK_IMPORTED_MODULE_1__["default"])(options) && (0,ramda__WEBPACK_IMPORTED_MODULE_2__["default"])('cause', options) && !(0,ramda__WEBPACK_IMPORTED_MODULE_2__["default"])('cause', this)) {
13987
+ if (options != null && typeof options === 'object' && Object.hasOwn(options, 'cause') && !('cause' in this)) {
14567
13988
  const {
14568
13989
  cause
14569
13990
  } = options;
14570
13991
  this.cause = cause;
14571
- if (cause instanceof Error && (0,ramda__WEBPACK_IMPORTED_MODULE_2__["default"])('stack', cause)) {
14572
- this.stack = `${this.stack}\nCAUSE: ${cause === null || cause === void 0 ? void 0 : cause.stack}`;
13992
+ if (cause instanceof Error && 'stack' in cause) {
13993
+ this.stack = `${this.stack}\nCAUSE: ${cause.stack}`;
14573
13994
  }
14574
13995
  }
14575
13996
  }
@@ -14586,15 +14007,17 @@ __webpack_require__.r(__webpack_exports__);
14586
14007
  /* harmony export */ __webpack_require__.d(__webpack_exports__, {
14587
14008
  /* harmony export */ "default": () => (__WEBPACK_DEFAULT_EXPORT__)
14588
14009
  /* harmony export */ });
14589
- /* harmony import */ var ramda__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(4783);
14590
14010
  /* harmony import */ var _ApiDOMError_mjs__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(7471);
14591
14011
 
14592
-
14593
14012
  class ApiDOMStructuredError extends _ApiDOMError_mjs__WEBPACK_IMPORTED_MODULE_0__["default"] {
14594
14013
  constructor(message, structuredOptions) {
14595
14014
  super(message, structuredOptions);
14596
- if (typeof structuredOptions !== 'undefined') {
14597
- Object.assign(this, (0,ramda__WEBPACK_IMPORTED_MODULE_1__["default"])(['cause'], structuredOptions));
14015
+ if (structuredOptions != null && typeof structuredOptions === 'object') {
14016
+ const {
14017
+ cause,
14018
+ ...causelessOptions
14019
+ } = structuredOptions;
14020
+ Object.assign(this, causelessOptions);
14598
14021
  }
14599
14022
  }
14600
14023
  }
@@ -1 +1 @@
1
- !function(t,e){"object"==typeof exports&&"object"==typeof module?module.exports=e():"function"==typeof define&&define.amd?define([],e):"object"==typeof exports?exports.apidomJsonPointer=e():t.apidomJsonPointer=e()}(self,(()=>(()=>{var t={42:(t,e,r)=>{"use strict";var n=r(5846);t.exports=n},6791:(t,e,r)=>{"use strict";r(4339),r(4242),r(4016),r(8939),r(5454);var n=r(7545);t.exports=n.AggregateError},6762:(t,e,r)=>{"use strict";t.exports=r(3028)},3028:(t,e,r)=>{"use strict";r(2752);var n=r(42);t.exports=n},6235:(t,e,r)=>{"use strict";var n=r(6447),s=r(9288),o=TypeError;t.exports=function(t){if(n(t))return t;throw new o(s(t)+" is not a function")}},7757:(t,e,r)=>{"use strict";var n=r(6447),s=String,o=TypeError;t.exports=function(t){if("object"==typeof t||n(t))return t;throw new o("Can't set "+s(t)+" as a prototype")}},7423:t=>{"use strict";t.exports=function(){}},1138:(t,e,r)=>{"use strict";var n=r(5744),s=String,o=TypeError;t.exports=function(t){if(n(t))return t;throw new o(s(t)+" is not an object")}},8180:(t,e,r)=>{"use strict";var n=r(101),s=r(7739),o=r(4104),i=function(t){return function(e,r,i){var a,c=n(e),u=o(c),l=s(i,u);if(t&&r!=r){for(;u>l;)if((a=c[l++])!=a)return!0}else for(;u>l;l++)if((t||l in c)&&c[l]===r)return t||l||0;return!t&&-1}};t.exports={includes:i(!0),indexOf:i(!1)}},9272:(t,e,r)=>{"use strict";var n=r(4120),s=n({}.toString),o=n("".slice);t.exports=function(t){return o(s(t),8,-1)}},4696:(t,e,r)=>{"use strict";var n=r(3471),s=r(6447),o=r(9272),i=r(8182)("toStringTag"),a=Object,c="Arguments"===o(function(){return arguments}());t.exports=n?o:function(t){var e,r,n;return void 0===t?"Undefined":null===t?"Null":"string"==typeof(r=function(t,e){try{return t[e]}catch(t){}}(e=a(t),i))?r:c?o(e):"Object"===(n=o(e))&&s(e.callee)?"Arguments":n}},7987:(t,e,r)=>{"use strict";var n=r(4500),s=r(3011),o=r(5141),i=r(2760);t.exports=function(t,e,r){for(var a=s(e),c=i.f,u=o.f,l=0;l<a.length;l++){var f=a[l];n(t,f)||r&&n(r,f)||c(t,f,u(e,f))}}},4635:(t,e,r)=>{"use strict";var n=r(6192);t.exports=!n((function(){function t(){}return t.prototype.constructor=null,Object.getPrototypeOf(new t)!==t.prototype}))},7271:t=>{"use strict";t.exports=function(t,e){return{value:t,done:e}}},8711:(t,e,r)=>{"use strict";var n=r(69),s=r(2760),o=r(774);t.exports=n?function(t,e,r){return s.f(t,e,o(1,r))}:function(t,e,r){return t[e]=r,t}},774:t=>{"use strict";t.exports=function(t,e){return{enumerable:!(1&t),configurable:!(2&t),writable:!(4&t),value:e}}},9362:(t,e,r)=>{"use strict";var n=r(8711);t.exports=function(t,e,r,s){return s&&s.enumerable?t[e]=r:n(t,e,r),t}},5098:(t,e,r)=>{"use strict";var n=r(8576),s=Object.defineProperty;t.exports=function(t,e){try{s(n,t,{value:e,configurable:!0,writable:!0})}catch(r){n[t]=e}return e}},69:(t,e,r)=>{"use strict";var n=r(6192);t.exports=!n((function(){return 7!==Object.defineProperty({},1,{get:function(){return 7}})[1]}))},8382:t=>{"use strict";var e="object"==typeof document&&document.all,r=void 0===e&&void 0!==e;t.exports={all:e,IS_HTMLDDA:r}},7449:(t,e,r)=>{"use strict";var n=r(8576),s=r(5744),o=n.document,i=s(o)&&s(o.createElement);t.exports=function(t){return i?o.createElement(t):{}}},7365:t=>{"use strict";t.exports={CSSRuleList:0,CSSStyleDeclaration:0,CSSValueList:0,ClientRectList:0,DOMRectList:0,DOMStringList:0,DOMTokenList:1,DataTransferItemList:0,FileList:0,HTMLAllCollection:0,HTMLCollection:0,HTMLFormElement:0,HTMLSelectElement:0,MediaList:0,MimeTypeArray:0,NamedNodeMap:0,NodeList:1,PaintRequestList:0,Plugin:0,PluginArray:0,SVGLengthList:0,SVGNumberList:0,SVGPathSegList:0,SVGPointList:0,SVGStringList:0,SVGTransformList:0,SourceBufferList:0,StyleSheetList:0,TextTrackCueList:0,TextTrackList:0,TouchList:0}},8989:t=>{"use strict";t.exports="undefined"!=typeof navigator&&String(navigator.userAgent)||""},4218:(t,e,r)=>{"use strict";var n,s,o=r(8576),i=r(8989),a=o.process,c=o.Deno,u=a&&a.versions||c&&c.version,l=u&&u.v8;l&&(s=(n=l.split("."))[0]>0&&n[0]<4?1:+(n[0]+n[1])),!s&&i&&(!(n=i.match(/Edge\/(\d+)/))||n[1]>=74)&&(n=i.match(/Chrome\/(\d+)/))&&(s=+n[1]),t.exports=s},2952:t=>{"use strict";t.exports=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"]},4503:(t,e,r)=>{"use strict";var n=r(4120),s=Error,o=n("".replace),i=String(new s("zxcasd").stack),a=/\n\s*at [^:]*:[^\n]*/,c=a.test(i);t.exports=function(t,e){if(c&&"string"==typeof t&&!s.prepareStackTrace)for(;e--;)t=o(t,a,"");return t}},8266:(t,e,r)=>{"use strict";var n=r(8711),s=r(4503),o=r(274),i=Error.captureStackTrace;t.exports=function(t,e,r,a){o&&(i?i(t,e):n(t,"stack",s(r,a)))}},274:(t,e,r)=>{"use strict";var n=r(6192),s=r(774);t.exports=!n((function(){var t=new Error("a");return!("stack"in t)||(Object.defineProperty(t,"stack",s(1,7)),7!==t.stack)}))},3085:(t,e,r)=>{"use strict";var n=r(8576),s=r(6298),o=r(4914),i=r(6447),a=r(5141).f,c=r(9245),u=r(7545),l=r(8043),f=r(8711),p=r(4500),h=function(t){var e=function(r,n,o){if(this instanceof e){switch(arguments.length){case 0:return new t;case 1:return new t(r);case 2:return new t(r,n)}return new t(r,n,o)}return s(t,this,arguments)};return e.prototype=t.prototype,e};t.exports=function(t,e){var r,s,y,m,v,d,b,g,x,w=t.target,j=t.global,E=t.stat,O=t.proto,_=j?n:E?n[w]:(n[w]||{}).prototype,S=j?u:u[w]||f(u,w,{})[w],k=S.prototype;for(m in e)s=!(r=c(j?m:w+(E?".":"#")+m,t.forced))&&_&&p(_,m),d=S[m],s&&(b=t.dontCallGetSet?(x=a(_,m))&&x.value:_[m]),v=s&&b?b:e[m],s&&typeof d==typeof v||(g=t.bind&&s?l(v,n):t.wrap&&s?h(v):O&&i(v)?o(v):v,(t.sham||v&&v.sham||d&&d.sham)&&f(g,"sham",!0),f(S,m,g),O&&(p(u,y=w+"Prototype")||f(u,y,{}),f(u[y],m,v),t.real&&k&&(r||!k[m])&&f(k,m,v)))}},6192:t=>{"use strict";t.exports=function(t){try{return!!t()}catch(t){return!0}}},6298:(t,e,r)=>{"use strict";var n=r(2784),s=Function.prototype,o=s.apply,i=s.call;t.exports="object"==typeof Reflect&&Reflect.apply||(n?i.bind(o):function(){return i.apply(o,arguments)})},8043:(t,e,r)=>{"use strict";var n=r(4914),s=r(6235),o=r(2784),i=n(n.bind);t.exports=function(t,e){return s(t),void 0===e?t:o?i(t,e):function(){return t.apply(e,arguments)}}},2784:(t,e,r)=>{"use strict";var n=r(6192);t.exports=!n((function(){var t=function(){}.bind();return"function"!=typeof t||t.hasOwnProperty("prototype")}))},8922:(t,e,r)=>{"use strict";var n=r(2784),s=Function.prototype.call;t.exports=n?s.bind(s):function(){return s.apply(s,arguments)}},2282:(t,e,r)=>{"use strict";var n=r(69),s=r(4500),o=Function.prototype,i=n&&Object.getOwnPropertyDescriptor,a=s(o,"name"),c=a&&"something"===function(){}.name,u=a&&(!n||n&&i(o,"name").configurable);t.exports={EXISTS:a,PROPER:c,CONFIGURABLE:u}},6419:(t,e,r)=>{"use strict";var n=r(4120),s=r(6235);t.exports=function(t,e,r){try{return n(s(Object.getOwnPropertyDescriptor(t,e)[r]))}catch(t){}}},4914:(t,e,r)=>{"use strict";var n=r(9272),s=r(4120);t.exports=function(t){if("Function"===n(t))return s(t)}},4120:(t,e,r)=>{"use strict";var n=r(2784),s=Function.prototype,o=s.call,i=n&&s.bind.bind(o,o);t.exports=n?i:function(t){return function(){return o.apply(t,arguments)}}},150:(t,e,r)=>{"use strict";var n=r(7545),s=r(8576),o=r(6447),i=function(t){return o(t)?t:void 0};t.exports=function(t,e){return arguments.length<2?i(n[t])||i(s[t]):n[t]&&n[t][e]||s[t]&&s[t][e]}},8703:(t,e,r)=>{"use strict";var n=r(4696),s=r(5037),o=r(5646),i=r(7771),a=r(8182)("iterator");t.exports=function(t){if(!o(t))return s(t,a)||s(t,"@@iterator")||i[n(t)]}},1669:(t,e,r)=>{"use strict";var n=r(8922),s=r(6235),o=r(1138),i=r(9288),a=r(8703),c=TypeError;t.exports=function(t,e){var r=arguments.length<2?a(t):e;if(s(r))return o(n(r,t));throw new c(i(t)+" is not iterable")}},5037:(t,e,r)=>{"use strict";var n=r(6235),s=r(5646);t.exports=function(t,e){var r=t[e];return s(r)?void 0:n(r)}},8576:function(t,e,r){"use strict";var n=function(t){return t&&t.Math===Math&&t};t.exports=n("object"==typeof globalThis&&globalThis)||n("object"==typeof window&&window)||n("object"==typeof self&&self)||n("object"==typeof r.g&&r.g)||function(){return this}()||this||Function("return this")()},4500:(t,e,r)=>{"use strict";var n=r(4120),s=r(1795),o=n({}.hasOwnProperty);t.exports=Object.hasOwn||function(t,e){return o(s(t),e)}},4535:t=>{"use strict";t.exports={}},7403:(t,e,r)=>{"use strict";var n=r(150);t.exports=n("document","documentElement")},188:(t,e,r)=>{"use strict";var n=r(69),s=r(6192),o=r(7449);t.exports=!n&&!s((function(){return 7!==Object.defineProperty(o("div"),"a",{get:function(){return 7}}).a}))},2202:(t,e,r)=>{"use strict";var n=r(4120),s=r(6192),o=r(9272),i=Object,a=n("".split);t.exports=s((function(){return!i("z").propertyIsEnumerable(0)}))?function(t){return"String"===o(t)?a(t,""):i(t)}:i},2643:(t,e,r)=>{"use strict";var n=r(6447),s=r(5744),o=r(4469);t.exports=function(t,e,r){var i,a;return o&&n(i=e.constructor)&&i!==r&&s(a=i.prototype)&&a!==r.prototype&&o(t,a),t}},273:(t,e,r)=>{"use strict";var n=r(5744),s=r(8711);t.exports=function(t,e){n(e)&&"cause"in e&&s(t,"cause",e.cause)}},3326:(t,e,r)=>{"use strict";var n,s,o,i=r(5278),a=r(8576),c=r(5744),u=r(8711),l=r(4500),f=r(6434),p=r(9766),h=r(4535),y="Object already initialized",m=a.TypeError,v=a.WeakMap;if(i||f.state){var d=f.state||(f.state=new v);d.get=d.get,d.has=d.has,d.set=d.set,n=function(t,e){if(d.has(t))throw new m(y);return e.facade=t,d.set(t,e),e},s=function(t){return d.get(t)||{}},o=function(t){return d.has(t)}}else{var b=p("state");h[b]=!0,n=function(t,e){if(l(t,b))throw new m(y);return e.facade=t,u(t,b,e),e},s=function(t){return l(t,b)?t[b]:{}},o=function(t){return l(t,b)}}t.exports={set:n,get:s,has:o,enforce:function(t){return o(t)?s(t):n(t,{})},getterFor:function(t){return function(e){var r;if(!c(e)||(r=s(e)).type!==t)throw new m("Incompatible receiver, "+t+" required");return r}}}},6109:(t,e,r)=>{"use strict";var n=r(8182),s=r(7771),o=n("iterator"),i=Array.prototype;t.exports=function(t){return void 0!==t&&(s.Array===t||i[o]===t)}},6447:(t,e,r)=>{"use strict";var n=r(8382),s=n.all;t.exports=n.IS_HTMLDDA?function(t){return"function"==typeof t||t===s}:function(t){return"function"==typeof t}},9245:(t,e,r)=>{"use strict";var n=r(6192),s=r(6447),o=/#|\.prototype\./,i=function(t,e){var r=c[a(t)];return r===l||r!==u&&(s(e)?n(e):!!e)},a=i.normalize=function(t){return String(t).replace(o,".").toLowerCase()},c=i.data={},u=i.NATIVE="N",l=i.POLYFILL="P";t.exports=i},5646:t=>{"use strict";t.exports=function(t){return null==t}},5744:(t,e,r)=>{"use strict";var n=r(6447),s=r(8382),o=s.all;t.exports=s.IS_HTMLDDA?function(t){return"object"==typeof t?null!==t:n(t)||t===o}:function(t){return"object"==typeof t?null!==t:n(t)}},5546:t=>{"use strict";t.exports=!0},3236:(t,e,r)=>{"use strict";var n=r(150),s=r(6447),o=r(8902),i=r(615),a=Object;t.exports=i?function(t){return"symbol"==typeof t}:function(t){var e=n("Symbol");return s(e)&&o(e.prototype,a(t))}},3442:(t,e,r)=>{"use strict";var n=r(8043),s=r(8922),o=r(1138),i=r(9288),a=r(6109),c=r(4104),u=r(8902),l=r(1669),f=r(8703),p=r(6639),h=TypeError,y=function(t,e){this.stopped=t,this.result=e},m=y.prototype;t.exports=function(t,e,r){var v,d,b,g,x,w,j,E=r&&r.that,O=!(!r||!r.AS_ENTRIES),_=!(!r||!r.IS_RECORD),S=!(!r||!r.IS_ITERATOR),k=!(!r||!r.INTERRUPTED),A=n(e,E),P=function(t){return v&&p(v,"normal",t),new y(!0,t)},T=function(t){return O?(o(t),k?A(t[0],t[1],P):A(t[0],t[1])):k?A(t,P):A(t)};if(_)v=t.iterator;else if(S)v=t;else{if(!(d=f(t)))throw new h(i(t)+" is not iterable");if(a(d)){for(b=0,g=c(t);g>b;b++)if((x=T(t[b]))&&u(m,x))return x;return new y(!1)}v=l(t,d)}for(w=_?t.next:v.next;!(j=s(w,v)).done;){try{x=T(j.value)}catch(t){p(v,"throw",t)}if("object"==typeof x&&x&&u(m,x))return x}return new y(!1)}},6639:(t,e,r)=>{"use strict";var n=r(8922),s=r(1138),o=r(5037);t.exports=function(t,e,r){var i,a;s(t);try{if(!(i=o(t,"return"))){if("throw"===e)throw r;return r}i=n(i,t)}catch(t){a=!0,i=t}if("throw"===e)throw r;if(a)throw i;return s(i),r}},5695:(t,e,r)=>{"use strict";var n=r(4413).IteratorPrototype,s=r(2853),o=r(774),i=r(1284),a=r(7771),c=function(){return this};t.exports=function(t,e,r,u){var l=e+" Iterator";return t.prototype=s(n,{next:o(+!u,r)}),i(t,l,!1,!0),a[l]=c,t}},5297:(t,e,r)=>{"use strict";var n=r(3085),s=r(8922),o=r(5546),i=r(2282),a=r(6447),c=r(5695),u=r(9341),l=r(4469),f=r(1284),p=r(8711),h=r(9362),y=r(8182),m=r(7771),v=r(4413),d=i.PROPER,b=i.CONFIGURABLE,g=v.IteratorPrototype,x=v.BUGGY_SAFARI_ITERATORS,w=y("iterator"),j="keys",E="values",O="entries",_=function(){return this};t.exports=function(t,e,r,i,y,v,S){c(r,e,i);var k,A,P,T=function(t){if(t===y&&N)return N;if(!x&&t&&t in R)return R[t];switch(t){case j:case E:case O:return function(){return new r(this,t)}}return function(){return new r(this)}},M=e+" Iterator",C=!1,R=t.prototype,I=R[w]||R["@@iterator"]||y&&R[y],N=!x&&I||T(y),V="Array"===e&&R.entries||I;if(V&&(k=u(V.call(new t)))!==Object.prototype&&k.next&&(o||u(k)===g||(l?l(k,g):a(k[w])||h(k,w,_)),f(k,M,!0,!0),o&&(m[M]=_)),d&&y===E&&I&&I.name!==E&&(!o&&b?p(R,"name",E):(C=!0,N=function(){return s(I,this)})),y)if(A={values:T(E),keys:v?N:T(j),entries:T(O)},S)for(P in A)(x||C||!(P in R))&&h(R,P,A[P]);else n({target:e,proto:!0,forced:x||C},A);return o&&!S||R[w]===N||h(R,w,N,{name:y}),m[e]=N,A}},4413:(t,e,r)=>{"use strict";var n,s,o,i=r(6192),a=r(6447),c=r(5744),u=r(2853),l=r(9341),f=r(9362),p=r(8182),h=r(5546),y=p("iterator"),m=!1;[].keys&&("next"in(o=[].keys())?(s=l(l(o)))!==Object.prototype&&(n=s):m=!0),!c(n)||i((function(){var t={};return n[y].call(t)!==t}))?n={}:h&&(n=u(n)),a(n[y])||f(n,y,(function(){return this})),t.exports={IteratorPrototype:n,BUGGY_SAFARI_ITERATORS:m}},7771:t=>{"use strict";t.exports={}},4104:(t,e,r)=>{"use strict";var n=r(8445);t.exports=function(t){return n(t.length)}},7679:t=>{"use strict";var e=Math.ceil,r=Math.floor;t.exports=Math.trunc||function(t){var n=+t;return(n>0?r:e)(n)}},6016:(t,e,r)=>{"use strict";var n=r(4845);t.exports=function(t,e){return void 0===t?arguments.length<2?"":e:n(t)}},2853:(t,e,r)=>{"use strict";var n,s=r(1138),o=r(1187),i=r(2952),a=r(4535),c=r(7403),u=r(7449),l=r(9766),f="prototype",p="script",h=l("IE_PROTO"),y=function(){},m=function(t){return"<"+p+">"+t+"</"+p+">"},v=function(t){t.write(m("")),t.close();var e=t.parentWindow.Object;return t=null,e},d=function(){try{n=new ActiveXObject("htmlfile")}catch(t){}var t,e,r;d="undefined"!=typeof document?document.domain&&n?v(n):(e=u("iframe"),r="java"+p+":",e.style.display="none",c.appendChild(e),e.src=String(r),(t=e.contentWindow.document).open(),t.write(m("document.F=Object")),t.close(),t.F):v(n);for(var s=i.length;s--;)delete d[f][i[s]];return d()};a[h]=!0,t.exports=Object.create||function(t,e){var r;return null!==t?(y[f]=s(t),r=new y,y[f]=null,r[h]=t):r=d(),void 0===e?r:o.f(r,e)}},1187:(t,e,r)=>{"use strict";var n=r(69),s=r(9600),o=r(2760),i=r(1138),a=r(101),c=r(7653);e.f=n&&!s?Object.defineProperties:function(t,e){i(t);for(var r,n=a(e),s=c(e),u=s.length,l=0;u>l;)o.f(t,r=s[l++],n[r]);return t}},2760:(t,e,r)=>{"use strict";var n=r(69),s=r(188),o=r(9600),i=r(1138),a=r(77),c=TypeError,u=Object.defineProperty,l=Object.getOwnPropertyDescriptor,f="enumerable",p="configurable",h="writable";e.f=n?o?function(t,e,r){if(i(t),e=a(e),i(r),"function"==typeof t&&"prototype"===e&&"value"in r&&h in r&&!r[h]){var n=l(t,e);n&&n[h]&&(t[e]=r.value,r={configurable:p in r?r[p]:n[p],enumerable:f in r?r[f]:n[f],writable:!1})}return u(t,e,r)}:u:function(t,e,r){if(i(t),e=a(e),i(r),s)try{return u(t,e,r)}catch(t){}if("get"in r||"set"in r)throw new c("Accessors not supported");return"value"in r&&(t[e]=r.value),t}},5141:(t,e,r)=>{"use strict";var n=r(69),s=r(8922),o=r(6007),i=r(774),a=r(101),c=r(77),u=r(4500),l=r(188),f=Object.getOwnPropertyDescriptor;e.f=n?f:function(t,e){if(t=a(t),e=c(e),l)try{return f(t,e)}catch(t){}if(u(t,e))return i(!s(o.f,t,e),t[e])}},2092:(t,e,r)=>{"use strict";var n=r(7934),s=r(2952).concat("length","prototype");e.f=Object.getOwnPropertyNames||function(t){return n(t,s)}},4750:(t,e)=>{"use strict";e.f=Object.getOwnPropertySymbols},9341:(t,e,r)=>{"use strict";var n=r(4500),s=r(6447),o=r(1795),i=r(9766),a=r(4635),c=i("IE_PROTO"),u=Object,l=u.prototype;t.exports=a?u.getPrototypeOf:function(t){var e=o(t);if(n(e,c))return e[c];var r=e.constructor;return s(r)&&e instanceof r?r.prototype:e instanceof u?l:null}},8902:(t,e,r)=>{"use strict";var n=r(4120);t.exports=n({}.isPrototypeOf)},7934:(t,e,r)=>{"use strict";var n=r(4120),s=r(4500),o=r(101),i=r(8180).indexOf,a=r(4535),c=n([].push);t.exports=function(t,e){var r,n=o(t),u=0,l=[];for(r in n)!s(a,r)&&s(n,r)&&c(l,r);for(;e.length>u;)s(n,r=e[u++])&&(~i(l,r)||c(l,r));return l}},7653:(t,e,r)=>{"use strict";var n=r(7934),s=r(2952);t.exports=Object.keys||function(t){return n(t,s)}},6007:(t,e)=>{"use strict";var r={}.propertyIsEnumerable,n=Object.getOwnPropertyDescriptor,s=n&&!r.call({1:2},1);e.f=s?function(t){var e=n(this,t);return!!e&&e.enumerable}:r},4469:(t,e,r)=>{"use strict";var n=r(6419),s=r(1138),o=r(7757);t.exports=Object.setPrototypeOf||("__proto__"in{}?function(){var t,e=!1,r={};try{(t=n(Object.prototype,"__proto__","set"))(r,[]),e=r instanceof Array}catch(t){}return function(r,n){return s(r),o(n),e?t(r,n):r.__proto__=n,r}}():void 0)},158:(t,e,r)=>{"use strict";var n=r(3471),s=r(4696);t.exports=n?{}.toString:function(){return"[object "+s(this)+"]"}},380:(t,e,r)=>{"use strict";var n=r(8922),s=r(6447),o=r(5744),i=TypeError;t.exports=function(t,e){var r,a;if("string"===e&&s(r=t.toString)&&!o(a=n(r,t)))return a;if(s(r=t.valueOf)&&!o(a=n(r,t)))return a;if("string"!==e&&s(r=t.toString)&&!o(a=n(r,t)))return a;throw new i("Can't convert object to primitive value")}},3011:(t,e,r)=>{"use strict";var n=r(150),s=r(4120),o=r(2092),i=r(4750),a=r(1138),c=s([].concat);t.exports=n("Reflect","ownKeys")||function(t){var e=o.f(a(t)),r=i.f;return r?c(e,r(t)):e}},7545:t=>{"use strict";t.exports={}},7656:(t,e,r)=>{"use strict";var n=r(2760).f;t.exports=function(t,e,r){r in t||n(t,r,{configurable:!0,get:function(){return e[r]},set:function(t){e[r]=t}})}},3209:(t,e,r)=>{"use strict";var n=r(5646),s=TypeError;t.exports=function(t){if(n(t))throw new s("Can't call method on "+t);return t}},1284:(t,e,r)=>{"use strict";var n=r(3471),s=r(2760).f,o=r(8711),i=r(4500),a=r(158),c=r(8182)("toStringTag");t.exports=function(t,e,r,u){if(t){var l=r?t:t.prototype;i(l,c)||s(l,c,{configurable:!0,value:e}),u&&!n&&o(l,"toString",a)}}},9766:(t,e,r)=>{"use strict";var n=r(8717),s=r(2759),o=n("keys");t.exports=function(t){return o[t]||(o[t]=s(t))}},6434:(t,e,r)=>{"use strict";var n=r(8576),s=r(5098),o="__core-js_shared__",i=n[o]||s(o,{});t.exports=i},8717:(t,e,r)=>{"use strict";var n=r(5546),s=r(6434);(t.exports=function(t,e){return s[t]||(s[t]=void 0!==e?e:{})})("versions",[]).push({version:"3.33.0",mode:n?"pure":"global",copyright:"© 2014-2023 Denis Pushkarev (zloirock.ru)",license:"https://github.com/zloirock/core-js/blob/v3.33.0/LICENSE",source:"https://github.com/zloirock/core-js"})},863:(t,e,r)=>{"use strict";var n=r(4120),s=r(1941),o=r(4845),i=r(3209),a=n("".charAt),c=n("".charCodeAt),u=n("".slice),l=function(t){return function(e,r){var n,l,f=o(i(e)),p=s(r),h=f.length;return p<0||p>=h?t?"":void 0:(n=c(f,p))<55296||n>56319||p+1===h||(l=c(f,p+1))<56320||l>57343?t?a(f,p):n:t?u(f,p,p+2):l-56320+(n-55296<<10)+65536}};t.exports={codeAt:l(!1),charAt:l(!0)}},6770:(t,e,r)=>{"use strict";var n=r(4218),s=r(6192),o=r(8576).String;t.exports=!!Object.getOwnPropertySymbols&&!s((function(){var t=Symbol("symbol detection");return!o(t)||!(Object(t)instanceof Symbol)||!Symbol.sham&&n&&n<41}))},7739:(t,e,r)=>{"use strict";var n=r(1941),s=Math.max,o=Math.min;t.exports=function(t,e){var r=n(t);return r<0?s(r+e,0):o(r,e)}},101:(t,e,r)=>{"use strict";var n=r(2202),s=r(3209);t.exports=function(t){return n(s(t))}},1941:(t,e,r)=>{"use strict";var n=r(7679);t.exports=function(t){var e=+t;return e!=e||0===e?0:n(e)}},8445:(t,e,r)=>{"use strict";var n=r(1941),s=Math.min;t.exports=function(t){return t>0?s(n(t),9007199254740991):0}},1795:(t,e,r)=>{"use strict";var n=r(3209),s=Object;t.exports=function(t){return s(n(t))}},7888:(t,e,r)=>{"use strict";var n=r(8922),s=r(5744),o=r(3236),i=r(5037),a=r(380),c=r(8182),u=TypeError,l=c("toPrimitive");t.exports=function(t,e){if(!s(t)||o(t))return t;var r,c=i(t,l);if(c){if(void 0===e&&(e="default"),r=n(c,t,e),!s(r)||o(r))return r;throw new u("Can't convert object to primitive value")}return void 0===e&&(e="number"),a(t,e)}},77:(t,e,r)=>{"use strict";var n=r(7888),s=r(3236);t.exports=function(t){var e=n(t,"string");return s(e)?e:e+""}},3471:(t,e,r)=>{"use strict";var n={};n[r(8182)("toStringTag")]="z",t.exports="[object z]"===String(n)},4845:(t,e,r)=>{"use strict";var n=r(4696),s=String;t.exports=function(t){if("Symbol"===n(t))throw new TypeError("Cannot convert a Symbol value to a string");return s(t)}},9288:t=>{"use strict";var e=String;t.exports=function(t){try{return e(t)}catch(t){return"Object"}}},2759:(t,e,r)=>{"use strict";var n=r(4120),s=0,o=Math.random(),i=n(1..toString);t.exports=function(t){return"Symbol("+(void 0===t?"":t)+")_"+i(++s+o,36)}},615:(t,e,r)=>{"use strict";var n=r(6770);t.exports=n&&!Symbol.sham&&"symbol"==typeof Symbol.iterator},9600:(t,e,r)=>{"use strict";var n=r(69),s=r(6192);t.exports=n&&s((function(){return 42!==Object.defineProperty((function(){}),"prototype",{value:42,writable:!1}).prototype}))},5278:(t,e,r)=>{"use strict";var n=r(8576),s=r(6447),o=n.WeakMap;t.exports=s(o)&&/native code/.test(String(o))},8182:(t,e,r)=>{"use strict";var n=r(8576),s=r(8717),o=r(4500),i=r(2759),a=r(6770),c=r(615),u=n.Symbol,l=s("wks"),f=c?u.for||u:u&&u.withoutSetter||i;t.exports=function(t){return o(l,t)||(l[t]=a&&o(u,t)?u[t]:f("Symbol."+t)),l[t]}},426:(t,e,r)=>{"use strict";var n=r(150),s=r(4500),o=r(8711),i=r(8902),a=r(4469),c=r(7987),u=r(7656),l=r(2643),f=r(6016),p=r(273),h=r(8266),y=r(69),m=r(5546);t.exports=function(t,e,r,v){var d="stackTraceLimit",b=v?2:1,g=t.split("."),x=g[g.length-1],w=n.apply(null,g);if(w){var j=w.prototype;if(!m&&s(j,"cause")&&delete j.cause,!r)return w;var E=n("Error"),O=e((function(t,e){var r=f(v?e:t,void 0),n=v?new w(t):new w;return void 0!==r&&o(n,"message",r),h(n,O,n.stack,2),this&&i(j,this)&&l(n,this,O),arguments.length>b&&p(n,arguments[b]),n}));if(O.prototype=j,"Error"!==x?a?a(O,E):c(O,E,{name:!0}):y&&d in w&&(u(O,w,d),u(O,w,"prepareStackTrace")),c(O,w),!m)try{j.name!==x&&o(j,"name",x),j.constructor=O}catch(t){}return O}}},4016:(t,e,r)=>{"use strict";var n=r(3085),s=r(150),o=r(6298),i=r(6192),a=r(426),c="AggregateError",u=s(c),l=!i((function(){return 1!==u([1]).errors[0]}))&&i((function(){return 7!==u([1],c,{cause:7}).cause}));n({global:!0,constructor:!0,arity:2,forced:l},{AggregateError:a(c,(function(t){return function(e,r){return o(t,this,arguments)}}),l,!0)})},3820:(t,e,r)=>{"use strict";var n=r(3085),s=r(8902),o=r(9341),i=r(4469),a=r(7987),c=r(2853),u=r(8711),l=r(774),f=r(273),p=r(8266),h=r(3442),y=r(6016),m=r(8182)("toStringTag"),v=Error,d=[].push,b=function(t,e){var r,n=s(g,this);i?r=i(new v,n?o(this):g):(r=n?this:c(g),u(r,m,"Error")),void 0!==e&&u(r,"message",y(e)),p(r,b,r.stack,1),arguments.length>2&&f(r,arguments[2]);var a=[];return h(t,d,{that:a}),u(r,"errors",a),r};i?i(b,v):a(b,v,{name:!0});var g=b.prototype=c(v.prototype,{constructor:l(1,b),message:l(1,""),name:l(1,"AggregateError")});n({global:!0,constructor:!0,arity:2},{AggregateError:b})},4242:(t,e,r)=>{"use strict";r(3820)},8939:(t,e,r)=>{"use strict";var n=r(101),s=r(7423),o=r(7771),i=r(3326),a=r(2760).f,c=r(5297),u=r(7271),l=r(5546),f=r(69),p="Array Iterator",h=i.set,y=i.getterFor(p);t.exports=c(Array,"Array",(function(t,e){h(this,{type:p,target:n(t),index:0,kind:e})}),(function(){var t=y(this),e=t.target,r=t.kind,n=t.index++;if(!e||n>=e.length)return t.target=void 0,u(void 0,!0);switch(r){case"keys":return u(n,!1);case"values":return u(e[n],!1)}return u([n,e[n]],!1)}),"values");var m=o.Arguments=o.Array;if(s("keys"),s("values"),s("entries"),!l&&f&&"values"!==m.name)try{a(m,"name",{value:"values"})}catch(t){}},4339:(t,e,r)=>{"use strict";var n=r(3085),s=r(8576),o=r(6298),i=r(426),a="WebAssembly",c=s[a],u=7!==new Error("e",{cause:7}).cause,l=function(t,e){var r={};r[t]=i(t,e,u),n({global:!0,constructor:!0,arity:1,forced:u},r)},f=function(t,e){if(c&&c[t]){var r={};r[t]=i(a+"."+t,e,u),n({target:a,stat:!0,constructor:!0,arity:1,forced:u},r)}};l("Error",(function(t){return function(e){return o(t,this,arguments)}})),l("EvalError",(function(t){return function(e){return o(t,this,arguments)}})),l("RangeError",(function(t){return function(e){return o(t,this,arguments)}})),l("ReferenceError",(function(t){return function(e){return o(t,this,arguments)}})),l("SyntaxError",(function(t){return function(e){return o(t,this,arguments)}})),l("TypeError",(function(t){return function(e){return o(t,this,arguments)}})),l("URIError",(function(t){return function(e){return o(t,this,arguments)}})),f("CompileError",(function(t){return function(e){return o(t,this,arguments)}})),f("LinkError",(function(t){return function(e){return o(t,this,arguments)}})),f("RuntimeError",(function(t){return function(e){return o(t,this,arguments)}}))},5454:(t,e,r)=>{"use strict";var n=r(863).charAt,s=r(4845),o=r(3326),i=r(5297),a=r(7271),c="String Iterator",u=o.set,l=o.getterFor(c);i(String,"String",(function(t){u(this,{type:c,string:s(t),index:0})}),(function(){var t,e=l(this),r=e.string,s=e.index;return s>=r.length?a(void 0,!0):(t=n(r,s),e.index+=t.length,a(t,!1))}))},2752:(t,e,r)=>{"use strict";r(4242)},162:(t,e,r)=>{"use strict";r(8939);var n=r(7365),s=r(8576),o=r(4696),i=r(8711),a=r(7771),c=r(8182)("toStringTag");for(var u in n){var l=s[u],f=l&&l.prototype;f&&o(f)!==c&&i(f,c,u),a[u]=a.Array}},5846:(t,e,r)=>{"use strict";r(2752);var n=r(6791);r(162),t.exports=n},9515:(t,e,r)=>{var n=r(8761)(r(7772),"DataView");t.exports=n},9612:(t,e,r)=>{var n=r(2118),s=r(6909),o=r(8138),i=r(4174),a=r(7942);function c(t){var e=-1,r=null==t?0:t.length;for(this.clear();++e<r;){var n=t[e];this.set(n[0],n[1])}}c.prototype.clear=n,c.prototype.delete=s,c.prototype.get=o,c.prototype.has=i,c.prototype.set=a,t.exports=c},235:(t,e,r)=>{var n=r(3945),s=r(1846),o=r(8028),i=r(2344),a=r(4769);function c(t){var e=-1,r=null==t?0:t.length;for(this.clear();++e<r;){var n=t[e];this.set(n[0],n[1])}}c.prototype.clear=n,c.prototype.delete=s,c.prototype.get=o,c.prototype.has=i,c.prototype.set=a,t.exports=c},326:(t,e,r)=>{var n=r(8761)(r(7772),"Map");t.exports=n},6738:(t,e,r)=>{var n=r(2411),s=r(6417),o=r(6928),i=r(9493),a=r(4150);function c(t){var e=-1,r=null==t?0:t.length;for(this.clear();++e<r;){var n=t[e];this.set(n[0],n[1])}}c.prototype.clear=n,c.prototype.delete=s,c.prototype.get=o,c.prototype.has=i,c.prototype.set=a,t.exports=c},1985:(t,e,r)=>{var n=r(8761)(r(7772),"Promise");t.exports=n},2143:(t,e,r)=>{var n=r(8761)(r(7772),"Set");t.exports=n},5386:(t,e,r)=>{var n=r(6738),s=r(2842),o=r(2482);function i(t){var e=-1,r=null==t?0:t.length;for(this.__data__=new n;++e<r;)this.add(t[e])}i.prototype.add=i.prototype.push=s,i.prototype.has=o,t.exports=i},6571:(t,e,r)=>{var n=r(235),s=r(5243),o=r(2858),i=r(4417),a=r(8605),c=r(1418);function u(t){var e=this.__data__=new n(t);this.size=e.size}u.prototype.clear=s,u.prototype.delete=o,u.prototype.get=i,u.prototype.has=a,u.prototype.set=c,t.exports=u},857:(t,e,r)=>{var n=r(7772).Symbol;t.exports=n},9162:(t,e,r)=>{var n=r(7772).Uint8Array;t.exports=n},3215:(t,e,r)=>{var n=r(8761)(r(7772),"WeakMap");t.exports=n},7552:t=>{t.exports=function(t,e){for(var r=-1,n=null==t?0:t.length,s=0,o=[];++r<n;){var i=t[r];e(i,r,t)&&(o[s++]=i)}return o}},1634:(t,e,r)=>{var n=r(6473),s=r(9631),o=r(6152),i=r(3226),a=r(9045),c=r(7598),u=Object.prototype.hasOwnProperty;t.exports=function(t,e){var r=o(t),l=!r&&s(t),f=!r&&!l&&i(t),p=!r&&!l&&!f&&c(t),h=r||l||f||p,y=h?n(t.length,String):[],m=y.length;for(var v in t)!e&&!u.call(t,v)||h&&("length"==v||f&&("offset"==v||"parent"==v)||p&&("buffer"==v||"byteLength"==v||"byteOffset"==v)||a(v,m))||y.push(v);return y}},5067:t=>{t.exports=function(t,e){for(var r=-1,n=e.length,s=t.length;++r<n;)t[s+r]=e[r];return t}},7064:t=>{t.exports=function(t,e){for(var r=-1,n=null==t?0:t.length;++r<n;)if(e(t[r],r,t))return!0;return!1}},2218:(t,e,r)=>{var n=r(1225);t.exports=function(t,e){for(var r=t.length;r--;)if(n(t[r][0],e))return r;return-1}},1897:(t,e,r)=>{var n=r(5067),s=r(6152);t.exports=function(t,e,r){var o=e(t);return s(t)?o:n(o,r(t))}},3366:(t,e,r)=>{var n=r(857),s=r(2107),o=r(7157),i=n?n.toStringTag:void 0;t.exports=function(t){return null==t?void 0===t?"[object Undefined]":"[object Null]":i&&i in Object(t)?s(t):o(t)}},5183:(t,e,r)=>{var n=r(3366),s=r(5125);t.exports=function(t){return s(t)&&"[object Arguments]"==n(t)}},8746:(t,e,r)=>{var n=r(1952),s=r(5125);t.exports=function t(e,r,o,i,a){return e===r||(null==e||null==r||!s(e)&&!s(r)?e!=e&&r!=r:n(e,r,o,i,t,a))}},1952:(t,e,r)=>{var n=r(6571),s=r(4871),o=r(1491),i=r(7416),a=r(940),c=r(6152),u=r(3226),l=r(7598),f="[object Arguments]",p="[object Array]",h="[object Object]",y=Object.prototype.hasOwnProperty;t.exports=function(t,e,r,m,v,d){var b=c(t),g=c(e),x=b?p:a(t),w=g?p:a(e),j=(x=x==f?h:x)==h,E=(w=w==f?h:w)==h,O=x==w;if(O&&u(t)){if(!u(e))return!1;b=!0,j=!1}if(O&&!j)return d||(d=new n),b||l(t)?s(t,e,r,m,v,d):o(t,e,x,r,m,v,d);if(!(1&r)){var _=j&&y.call(t,"__wrapped__"),S=E&&y.call(e,"__wrapped__");if(_||S){var k=_?t.value():t,A=S?e.value():e;return d||(d=new n),v(k,A,r,m,d)}}return!!O&&(d||(d=new n),i(t,e,r,m,v,d))}},6840:(t,e,r)=>{var n=r(1049),s=r(7394),o=r(9259),i=r(7035),a=/^\[object .+?Constructor\]$/,c=Function.prototype,u=Object.prototype,l=c.toString,f=u.hasOwnProperty,p=RegExp("^"+l.call(f).replace(/[\\^$.*+?()[\]{}|]/g,"\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g,"$1.*?")+"$");t.exports=function(t){return!(!o(t)||s(t))&&(n(t)?p:a).test(i(t))}},5522:(t,e,r)=>{var n=r(3366),s=r(1158),o=r(5125),i={};i["[object Float32Array]"]=i["[object Float64Array]"]=i["[object Int8Array]"]=i["[object Int16Array]"]=i["[object Int32Array]"]=i["[object Uint8Array]"]=i["[object Uint8ClampedArray]"]=i["[object Uint16Array]"]=i["[object Uint32Array]"]=!0,i["[object Arguments]"]=i["[object Array]"]=i["[object ArrayBuffer]"]=i["[object Boolean]"]=i["[object DataView]"]=i["[object Date]"]=i["[object Error]"]=i["[object Function]"]=i["[object Map]"]=i["[object Number]"]=i["[object Object]"]=i["[object RegExp]"]=i["[object Set]"]=i["[object String]"]=i["[object WeakMap]"]=!1,t.exports=function(t){return o(t)&&s(t.length)&&!!i[n(t)]}},6411:(t,e,r)=>{var n=r(6001),s=r(4248),o=Object.prototype.hasOwnProperty;t.exports=function(t){if(!n(t))return s(t);var e=[];for(var r in Object(t))o.call(t,r)&&"constructor"!=r&&e.push(r);return e}},6473:t=>{t.exports=function(t,e){for(var r=-1,n=Array(t);++r<t;)n[r]=e(r);return n}},7826:t=>{t.exports=function(t){return function(e){return t(e)}}},9950:t=>{t.exports=function(t,e){return t.has(e)}},4019:(t,e,r)=>{var n=r(7772)["__core-js_shared__"];t.exports=n},4871:(t,e,r)=>{var n=r(5386),s=r(7064),o=r(9950);t.exports=function(t,e,r,i,a,c){var u=1&r,l=t.length,f=e.length;if(l!=f&&!(u&&f>l))return!1;var p=c.get(t),h=c.get(e);if(p&&h)return p==e&&h==t;var y=-1,m=!0,v=2&r?new n:void 0;for(c.set(t,e),c.set(e,t);++y<l;){var d=t[y],b=e[y];if(i)var g=u?i(b,d,y,e,t,c):i(d,b,y,t,e,c);if(void 0!==g){if(g)continue;m=!1;break}if(v){if(!s(e,(function(t,e){if(!o(v,e)&&(d===t||a(d,t,r,i,c)))return v.push(e)}))){m=!1;break}}else if(d!==b&&!a(d,b,r,i,c)){m=!1;break}}return c.delete(t),c.delete(e),m}},1491:(t,e,r)=>{var n=r(857),s=r(9162),o=r(1225),i=r(4871),a=r(5179),c=r(4207),u=n?n.prototype:void 0,l=u?u.valueOf:void 0;t.exports=function(t,e,r,n,u,f,p){switch(r){case"[object DataView]":if(t.byteLength!=e.byteLength||t.byteOffset!=e.byteOffset)return!1;t=t.buffer,e=e.buffer;case"[object ArrayBuffer]":return!(t.byteLength!=e.byteLength||!f(new s(t),new s(e)));case"[object Boolean]":case"[object Date]":case"[object Number]":return o(+t,+e);case"[object Error]":return t.name==e.name&&t.message==e.message;case"[object RegExp]":case"[object String]":return t==e+"";case"[object Map]":var h=a;case"[object Set]":var y=1&n;if(h||(h=c),t.size!=e.size&&!y)return!1;var m=p.get(t);if(m)return m==e;n|=2,p.set(t,e);var v=i(h(t),h(e),n,u,f,p);return p.delete(t),v;case"[object Symbol]":if(l)return l.call(t)==l.call(e)}return!1}},7416:(t,e,r)=>{var n=r(3483),s=Object.prototype.hasOwnProperty;t.exports=function(t,e,r,o,i,a){var c=1&r,u=n(t),l=u.length;if(l!=n(e).length&&!c)return!1;for(var f=l;f--;){var p=u[f];if(!(c?p in e:s.call(e,p)))return!1}var h=a.get(t),y=a.get(e);if(h&&y)return h==e&&y==t;var m=!0;a.set(t,e),a.set(e,t);for(var v=c;++f<l;){var d=t[p=u[f]],b=e[p];if(o)var g=c?o(b,d,p,e,t,a):o(d,b,p,t,e,a);if(!(void 0===g?d===b||i(d,b,r,o,a):g)){m=!1;break}v||(v="constructor"==p)}if(m&&!v){var x=t.constructor,w=e.constructor;x==w||!("constructor"in t)||!("constructor"in e)||"function"==typeof x&&x instanceof x&&"function"==typeof w&&w instanceof w||(m=!1)}return a.delete(t),a.delete(e),m}},1242:(t,e,r)=>{var n="object"==typeof r.g&&r.g&&r.g.Object===Object&&r.g;t.exports=n},3483:(t,e,r)=>{var n=r(1897),s=r(633),o=r(249);t.exports=function(t){return n(t,o,s)}},7937:(t,e,r)=>{var n=r(8304);t.exports=function(t,e){var r=t.__data__;return n(e)?r["string"==typeof e?"string":"hash"]:r.map}},8761:(t,e,r)=>{var n=r(6840),s=r(8109);t.exports=function(t,e){var r=s(t,e);return n(r)?r:void 0}},2107:(t,e,r)=>{var n=r(857),s=Object.prototype,o=s.hasOwnProperty,i=s.toString,a=n?n.toStringTag:void 0;t.exports=function(t){var e=o.call(t,a),r=t[a];try{t[a]=void 0;var n=!0}catch(t){}var s=i.call(t);return n&&(e?t[a]=r:delete t[a]),s}},633:(t,e,r)=>{var n=r(7552),s=r(981),o=Object.prototype.propertyIsEnumerable,i=Object.getOwnPropertySymbols,a=i?function(t){return null==t?[]:(t=Object(t),n(i(t),(function(e){return o.call(t,e)})))}:s;t.exports=a},940:(t,e,r)=>{var n=r(9515),s=r(326),o=r(1985),i=r(2143),a=r(3215),c=r(3366),u=r(7035),l="[object Map]",f="[object Promise]",p="[object Set]",h="[object WeakMap]",y="[object DataView]",m=u(n),v=u(s),d=u(o),b=u(i),g=u(a),x=c;(n&&x(new n(new ArrayBuffer(1)))!=y||s&&x(new s)!=l||o&&x(o.resolve())!=f||i&&x(new i)!=p||a&&x(new a)!=h)&&(x=function(t){var e=c(t),r="[object Object]"==e?t.constructor:void 0,n=r?u(r):"";if(n)switch(n){case m:return y;case v:return l;case d:return f;case b:return p;case g:return h}return e}),t.exports=x},8109:t=>{t.exports=function(t,e){return null==t?void 0:t[e]}},2118:(t,e,r)=>{var n=r(9191);t.exports=function(){this.__data__=n?n(null):{},this.size=0}},6909:t=>{t.exports=function(t){var e=this.has(t)&&delete this.__data__[t];return this.size-=e?1:0,e}},8138:(t,e,r)=>{var n=r(9191),s=Object.prototype.hasOwnProperty;t.exports=function(t){var e=this.__data__;if(n){var r=e[t];return"__lodash_hash_undefined__"===r?void 0:r}return s.call(e,t)?e[t]:void 0}},4174:(t,e,r)=>{var n=r(9191),s=Object.prototype.hasOwnProperty;t.exports=function(t){var e=this.__data__;return n?void 0!==e[t]:s.call(e,t)}},7942:(t,e,r)=>{var n=r(9191);t.exports=function(t,e){var r=this.__data__;return this.size+=this.has(t)?0:1,r[t]=n&&void 0===e?"__lodash_hash_undefined__":e,this}},9045:t=>{var e=/^(?:0|[1-9]\d*)$/;t.exports=function(t,r){var n=typeof t;return!!(r=null==r?9007199254740991:r)&&("number"==n||"symbol"!=n&&e.test(t))&&t>-1&&t%1==0&&t<r}},8304:t=>{t.exports=function(t){var e=typeof t;return"string"==e||"number"==e||"symbol"==e||"boolean"==e?"__proto__"!==t:null===t}},7394:(t,e,r)=>{var n,s=r(4019),o=(n=/[^.]+$/.exec(s&&s.keys&&s.keys.IE_PROTO||""))?"Symbol(src)_1."+n:"";t.exports=function(t){return!!o&&o in t}},6001:t=>{var e=Object.prototype;t.exports=function(t){var r=t&&t.constructor;return t===("function"==typeof r&&r.prototype||e)}},3945:t=>{t.exports=function(){this.__data__=[],this.size=0}},1846:(t,e,r)=>{var n=r(2218),s=Array.prototype.splice;t.exports=function(t){var e=this.__data__,r=n(e,t);return!(r<0)&&(r==e.length-1?e.pop():s.call(e,r,1),--this.size,!0)}},8028:(t,e,r)=>{var n=r(2218);t.exports=function(t){var e=this.__data__,r=n(e,t);return r<0?void 0:e[r][1]}},2344:(t,e,r)=>{var n=r(2218);t.exports=function(t){return n(this.__data__,t)>-1}},4769:(t,e,r)=>{var n=r(2218);t.exports=function(t,e){var r=this.__data__,s=n(r,t);return s<0?(++this.size,r.push([t,e])):r[s][1]=e,this}},2411:(t,e,r)=>{var n=r(9612),s=r(235),o=r(326);t.exports=function(){this.size=0,this.__data__={hash:new n,map:new(o||s),string:new n}}},6417:(t,e,r)=>{var n=r(7937);t.exports=function(t){var e=n(this,t).delete(t);return this.size-=e?1:0,e}},6928:(t,e,r)=>{var n=r(7937);t.exports=function(t){return n(this,t).get(t)}},9493:(t,e,r)=>{var n=r(7937);t.exports=function(t){return n(this,t).has(t)}},4150:(t,e,r)=>{var n=r(7937);t.exports=function(t,e){var r=n(this,t),s=r.size;return r.set(t,e),this.size+=r.size==s?0:1,this}},5179:t=>{t.exports=function(t){var e=-1,r=Array(t.size);return t.forEach((function(t,n){r[++e]=[n,t]})),r}},9191:(t,e,r)=>{var n=r(8761)(Object,"create");t.exports=n},4248:(t,e,r)=>{var n=r(241)(Object.keys,Object);t.exports=n},4146:(t,e,r)=>{t=r.nmd(t);var n=r(1242),s=e&&!e.nodeType&&e,o=s&&t&&!t.nodeType&&t,i=o&&o.exports===s&&n.process,a=function(){try{var t=o&&o.require&&o.require("util").types;return t||i&&i.binding&&i.binding("util")}catch(t){}}();t.exports=a},7157:t=>{var e=Object.prototype.toString;t.exports=function(t){return e.call(t)}},241:t=>{t.exports=function(t,e){return function(r){return t(e(r))}}},7772:(t,e,r)=>{var n=r(1242),s="object"==typeof self&&self&&self.Object===Object&&self,o=n||s||Function("return this")();t.exports=o},2842:t=>{t.exports=function(t){return this.__data__.set(t,"__lodash_hash_undefined__"),this}},2482:t=>{t.exports=function(t){return this.__data__.has(t)}},4207:t=>{t.exports=function(t){var e=-1,r=Array(t.size);return t.forEach((function(t){r[++e]=t})),r}},5243:(t,e,r)=>{var n=r(235);t.exports=function(){this.__data__=new n,this.size=0}},2858:t=>{t.exports=function(t){var e=this.__data__,r=e.delete(t);return this.size=e.size,r}},4417:t=>{t.exports=function(t){return this.__data__.get(t)}},8605:t=>{t.exports=function(t){return this.__data__.has(t)}},1418:(t,e,r)=>{var n=r(235),s=r(326),o=r(6738);t.exports=function(t,e){var r=this.__data__;if(r instanceof n){var i=r.__data__;if(!s||i.length<199)return i.push([t,e]),this.size=++r.size,this;r=this.__data__=new o(i)}return r.set(t,e),this.size=r.size,this}},7035:t=>{var e=Function.prototype.toString;t.exports=function(t){if(null!=t){try{return e.call(t)}catch(t){}try{return t+""}catch(t){}}return""}},1225:t=>{t.exports=function(t,e){return t===e||t!=t&&e!=e}},9631:(t,e,r)=>{var n=r(5183),s=r(5125),o=Object.prototype,i=o.hasOwnProperty,a=o.propertyIsEnumerable,c=n(function(){return arguments}())?n:function(t){return s(t)&&i.call(t,"callee")&&!a.call(t,"callee")};t.exports=c},6152:t=>{var e=Array.isArray;t.exports=e},7878:(t,e,r)=>{var n=r(1049),s=r(1158);t.exports=function(t){return null!=t&&s(t.length)&&!n(t)}},4335:(t,e,r)=>{var n=r(3366),s=r(5125);t.exports=function(t){return!0===t||!1===t||s(t)&&"[object Boolean]"==n(t)}},3226:(t,e,r)=>{t=r.nmd(t);var n=r(7772),s=r(6330),o=e&&!e.nodeType&&e,i=o&&t&&!t.nodeType&&t,a=i&&i.exports===o?n.Buffer:void 0,c=(a?a.isBuffer:void 0)||s;t.exports=c},8149:(t,e,r)=>{var n=r(8746);t.exports=function(t,e){return n(t,e)}},1049:(t,e,r)=>{var n=r(3366),s=r(9259);t.exports=function(t){if(!s(t))return!1;var e=n(t);return"[object Function]"==e||"[object GeneratorFunction]"==e||"[object AsyncFunction]"==e||"[object Proxy]"==e}},1158:t=>{t.exports=function(t){return"number"==typeof t&&t>-1&&t%1==0&&t<=9007199254740991}},5877:t=>{t.exports=function(t){return null===t}},537:(t,e,r)=>{var n=r(3366),s=r(5125);t.exports=function(t){return"number"==typeof t||s(t)&&"[object Number]"==n(t)}},9259:t=>{t.exports=function(t){var e=typeof t;return null!=t&&("object"==e||"function"==e)}},5125:t=>{t.exports=function(t){return null!=t&&"object"==typeof t}},5505:(t,e,r)=>{var n=r(3366),s=r(6152),o=r(5125);t.exports=function(t){return"string"==typeof t||!s(t)&&o(t)&&"[object String]"==n(t)}},7598:(t,e,r)=>{var n=r(5522),s=r(7826),o=r(4146),i=o&&o.isTypedArray,a=i?s(i):n;t.exports=a},249:(t,e,r)=>{var n=r(1634),s=r(6411),o=r(7878);t.exports=function(t){return o(t)?n(t):s(t)}},1570:t=>{t.exports=function(t){if("function"!=typeof t)throw new TypeError("Expected a function");return function(){var e=arguments;switch(e.length){case 0:return!t.call(this);case 1:return!t.call(this,e[0]);case 2:return!t.call(this,e[0],e[1]);case 3:return!t.call(this,e[0],e[1],e[2])}return!t.apply(this,e)}}},981:t=>{t.exports=function(){return[]}},6330:t=>{t.exports=function(){return!1}},1178:(t,e,r)=>{const n=r(1570);function s(t){return"string"==typeof t?e=>e.element===t:t.constructor&&t.extend?e=>e instanceof t:t}class o{constructor(t){this.elements=t||[]}toValue(){return this.elements.map((t=>t.toValue()))}map(t,e){return this.elements.map(t,e)}flatMap(t,e){return this.map(t,e).reduce(((t,e)=>t.concat(e)),[])}compactMap(t,e){const r=[];return this.forEach((n=>{const s=t.bind(e)(n);s&&r.push(s)})),r}filter(t,e){return t=s(t),new o(this.elements.filter(t,e))}reject(t,e){return t=s(t),new o(this.elements.filter(n(t),e))}find(t,e){return t=s(t),this.elements.find(t,e)}forEach(t,e){this.elements.forEach(t,e)}reduce(t,e){return this.elements.reduce(t,e)}includes(t){return this.elements.some((e=>e.equals(t)))}shift(){return this.elements.shift()}unshift(t){this.elements.unshift(this.refract(t))}push(t){return this.elements.push(this.refract(t)),this}add(t){this.push(t)}get(t){return this.elements[t]}getValue(t){const e=this.elements[t];if(e)return e.toValue()}get length(){return this.elements.length}get isEmpty(){return 0===this.elements.length}get first(){return this.elements[0]}}"undefined"!=typeof Symbol&&(o.prototype[Symbol.iterator]=function(){return this.elements[Symbol.iterator]()}),t.exports=o},3026:t=>{class e{constructor(t,e){this.key=t,this.value=e}clone(){const t=new e;return this.key&&(t.key=this.key.clone()),this.value&&(t.value=this.value.clone()),t}}t.exports=e},5140:(t,e,r)=>{const n=r(5877),s=r(5505),o=r(537),i=r(4335),a=r(9259),c=r(2947),u=r(3756);class l{constructor(t){this.elementMap={},this.elementDetection=[],this.Element=u.Element,this.KeyValuePair=u.KeyValuePair,t&&t.noDefault||this.useDefault(),this._attributeElementKeys=[],this._attributeElementArrayKeys=[]}use(t){return t.namespace&&t.namespace({base:this}),t.load&&t.load({base:this}),this}useDefault(){return this.register("null",u.NullElement).register("string",u.StringElement).register("number",u.NumberElement).register("boolean",u.BooleanElement).register("array",u.ArrayElement).register("object",u.ObjectElement).register("member",u.MemberElement).register("ref",u.RefElement).register("link",u.LinkElement),this.detect(n,u.NullElement,!1).detect(s,u.StringElement,!1).detect(o,u.NumberElement,!1).detect(i,u.BooleanElement,!1).detect(Array.isArray,u.ArrayElement,!1).detect(a,u.ObjectElement,!1),this}register(t,e){return this._elements=void 0,this.elementMap[t]=e,this}unregister(t){return this._elements=void 0,delete this.elementMap[t],this}detect(t,e,r){return void 0===r||r?this.elementDetection.unshift([t,e]):this.elementDetection.push([t,e]),this}toElement(t){if(t instanceof this.Element)return t;let e;for(let r=0;r<this.elementDetection.length;r+=1){const n=this.elementDetection[r][0],s=this.elementDetection[r][1];if(n(t)){e=new s(t);break}}return e}getElementClass(t){const e=this.elementMap[t];return void 0===e?this.Element:e}fromRefract(t){return this.serialiser.deserialise(t)}toRefract(t){return this.serialiser.serialise(t)}get elements(){return void 0===this._elements&&(this._elements={Element:this.Element},Object.keys(this.elementMap).forEach((t=>{const e=t[0].toUpperCase()+t.substr(1);this._elements[e]=this.elementMap[t]}))),this._elements}get serialiser(){return new c(this)}}c.prototype.Namespace=l,t.exports=l},3853:(t,e,r)=>{const n=r(1570),s=r(1178);class o extends s{map(t,e){return this.elements.map((r=>t.bind(e)(r.value,r.key,r)))}filter(t,e){return new o(this.elements.filter((r=>t.bind(e)(r.value,r.key,r))))}reject(t,e){return this.filter(n(t.bind(e)))}forEach(t,e){return this.elements.forEach(((r,n)=>{t.bind(e)(r.value,r.key,r,n)}))}keys(){return this.map(((t,e)=>e.toValue()))}values(){return this.map((t=>t.toValue()))}}t.exports=o},3756:(t,e,r)=>{const n=r(6420),s=r(4152),o=r(9542),i=r(3710),a=r(3312),c=r(1641),u=r(8858),l=r(3860),f=r(5202),p=r(2320),h=r(1178),y=r(3853),m=r(3026);function v(t){if(t instanceof n)return t;if("string"==typeof t)return new o(t);if("number"==typeof t)return new i(t);if("boolean"==typeof t)return new a(t);if(null===t)return new s;if(Array.isArray(t))return new c(t.map(v));if("object"==typeof t){return new l(t)}return t}n.prototype.ObjectElement=l,n.prototype.RefElement=p,n.prototype.MemberElement=u,n.prototype.refract=v,h.prototype.refract=v,t.exports={Element:n,NullElement:s,StringElement:o,NumberElement:i,BooleanElement:a,ArrayElement:c,MemberElement:u,ObjectElement:l,LinkElement:f,RefElement:p,refract:v,ArraySlice:h,ObjectSlice:y,KeyValuePair:m}},5202:(t,e,r)=>{const n=r(6420);t.exports=class extends n{constructor(t,e,r){super(t||[],e,r),this.element="link"}get relation(){return this.attributes.get("relation")}set relation(t){this.attributes.set("relation",t)}get href(){return this.attributes.get("href")}set href(t){this.attributes.set("href",t)}}},2320:(t,e,r)=>{const n=r(6420);t.exports=class extends n{constructor(t,e,r){super(t||[],e,r),this.element="ref",this.path||(this.path="element")}get path(){return this.attributes.get("path")}set path(t){this.attributes.set("path",t)}}},7952:(t,e,r)=>{const n=r(5140),s=r(3756);e.KeyValuePair=r(3026),e.O4=s.ArraySlice,e.rm=s.ObjectSlice,e.W_=s.Element,e.RP=s.StringElement,e.VL=s.NumberElement,e.hh=s.BooleanElement,e.zr=s.NullElement,e.ON=s.ArrayElement,e.Sb=s.ObjectElement,e.c6=s.MemberElement,e.tK=s.RefElement,e.EA=s.LinkElement,s.refract,r(2947),r(8910)},1641:(t,e,r)=>{const n=r(1570),s=r(6420),o=r(1178);class i extends s{constructor(t,e,r){super(t||[],e,r),this.element="array"}primitive(){return"array"}get(t){return this.content[t]}getValue(t){const e=this.get(t);if(e)return e.toValue()}getIndex(t){return this.content[t]}set(t,e){return this.content[t]=this.refract(e),this}remove(t){const e=this.content.splice(t,1);return e.length?e[0]:null}map(t,e){return this.content.map(t,e)}flatMap(t,e){return this.map(t,e).reduce(((t,e)=>t.concat(e)),[])}compactMap(t,e){const r=[];return this.forEach((n=>{const s=t.bind(e)(n);s&&r.push(s)})),r}filter(t,e){return new o(this.content.filter(t,e))}reject(t,e){return this.filter(n(t),e)}reduce(t,e){let r,n;void 0!==e?(r=0,n=this.refract(e)):(r=1,n="object"===this.primitive()?this.first.value:this.first);for(let e=r;e<this.length;e+=1){const r=this.content[e];n="object"===this.primitive()?this.refract(t(n,r.value,r.key,r,this)):this.refract(t(n,r,e,this))}return n}forEach(t,e){this.content.forEach(((r,n)=>{t.bind(e)(r,this.refract(n))}))}shift(){return this.content.shift()}unshift(t){this.content.unshift(this.refract(t))}push(t){return this.content.push(this.refract(t)),this}add(t){this.push(t)}findElements(t,e){const r=e||{},n=!!r.recursive,s=void 0===r.results?[]:r.results;return this.forEach(((e,r,o)=>{n&&void 0!==e.findElements&&e.findElements(t,{results:s,recursive:n}),t(e,r,o)&&s.push(e)})),s}find(t){return new o(this.findElements(t,{recursive:!0}))}findByElement(t){return this.find((e=>e.element===t))}findByClass(t){return this.find((e=>e.classes.includes(t)))}getById(t){return this.find((e=>e.id.toValue()===t)).first}includes(t){return this.content.some((e=>e.equals(t)))}contains(t){return this.includes(t)}empty(){return new this.constructor([])}"fantasy-land/empty"(){return this.empty()}concat(t){return new this.constructor(this.content.concat(t.content))}"fantasy-land/concat"(t){return this.concat(t)}"fantasy-land/map"(t){return new this.constructor(this.map(t))}"fantasy-land/chain"(t){return this.map((e=>t(e)),this).reduce(((t,e)=>t.concat(e)),this.empty())}"fantasy-land/filter"(t){return new this.constructor(this.content.filter(t))}"fantasy-land/reduce"(t,e){return this.content.reduce(t,e)}get length(){return this.content.length}get isEmpty(){return 0===this.content.length}get first(){return this.getIndex(0)}get second(){return this.getIndex(1)}get last(){return this.getIndex(this.length-1)}}i.empty=function(){return new this},i["fantasy-land/empty"]=i.empty,"undefined"!=typeof Symbol&&(i.prototype[Symbol.iterator]=function(){return this.content[Symbol.iterator]()}),t.exports=i},3312:(t,e,r)=>{const n=r(6420);t.exports=class extends n{constructor(t,e,r){super(t,e,r),this.element="boolean"}primitive(){return"boolean"}}},6420:(t,e,r)=>{const n=r(8149),s=r(3026),o=r(1178);class i{constructor(t,e,r){e&&(this.meta=e),r&&(this.attributes=r),this.content=t}freeze(){Object.isFrozen(this)||(this._meta&&(this.meta.parent=this,this.meta.freeze()),this._attributes&&(this.attributes.parent=this,this.attributes.freeze()),this.children.forEach((t=>{t.parent=this,t.freeze()}),this),this.content&&Array.isArray(this.content)&&Object.freeze(this.content),Object.freeze(this))}primitive(){}clone(){const t=new this.constructor;return t.element=this.element,this.meta.length&&(t._meta=this.meta.clone()),this.attributes.length&&(t._attributes=this.attributes.clone()),this.content?this.content.clone?t.content=this.content.clone():Array.isArray(this.content)?t.content=this.content.map((t=>t.clone())):t.content=this.content:t.content=this.content,t}toValue(){return this.content instanceof i?this.content.toValue():this.content instanceof s?{key:this.content.key.toValue(),value:this.content.value?this.content.value.toValue():void 0}:this.content&&this.content.map?this.content.map((t=>t.toValue()),this):this.content}toRef(t){if(""===this.id.toValue())throw Error("Cannot create reference to an element that does not contain an ID");const e=new this.RefElement(this.id.toValue());return t&&(e.path=t),e}findRecursive(...t){if(arguments.length>1&&!this.isFrozen)throw new Error("Cannot find recursive with multiple element names without first freezing the element. Call `element.freeze()`");const e=t.pop();let r=new o;const n=(t,e)=>(t.push(e),t),i=(t,r)=>{r.element===e&&t.push(r);const o=r.findRecursive(e);return o&&o.reduce(n,t),r.content instanceof s&&(r.content.key&&i(t,r.content.key),r.content.value&&i(t,r.content.value)),t};return this.content&&(this.content.element&&i(r,this.content),Array.isArray(this.content)&&this.content.reduce(i,r)),t.isEmpty||(r=r.filter((e=>{let r=e.parents.map((t=>t.element));for(const e in t){const n=t[e],s=r.indexOf(n);if(-1===s)return!1;r=r.splice(0,s)}return!0}))),r}set(t){return this.content=t,this}equals(t){return n(this.toValue(),t)}getMetaProperty(t,e){if(!this.meta.hasKey(t)){if(this.isFrozen){const t=this.refract(e);return t.freeze(),t}this.meta.set(t,e)}return this.meta.get(t)}setMetaProperty(t,e){this.meta.set(t,e)}get element(){return this._storedElement||"element"}set element(t){this._storedElement=t}get content(){return this._content}set content(t){if(t instanceof i)this._content=t;else if(t instanceof o)this.content=t.elements;else if("string"==typeof t||"number"==typeof t||"boolean"==typeof t||"null"===t||null==t)this._content=t;else if(t instanceof s)this._content=t;else if(Array.isArray(t))this._content=t.map(this.refract);else{if("object"!=typeof t)throw new Error("Cannot set content to given value");this._content=Object.keys(t).map((e=>new this.MemberElement(e,t[e])))}}get meta(){if(!this._meta){if(this.isFrozen){const t=new this.ObjectElement;return t.freeze(),t}this._meta=new this.ObjectElement}return this._meta}set meta(t){t instanceof this.ObjectElement?this._meta=t:this.meta.set(t||{})}get attributes(){if(!this._attributes){if(this.isFrozen){const t=new this.ObjectElement;return t.freeze(),t}this._attributes=new this.ObjectElement}return this._attributes}set attributes(t){t instanceof this.ObjectElement?this._attributes=t:this.attributes.set(t||{})}get id(){return this.getMetaProperty("id","")}set id(t){this.setMetaProperty("id",t)}get classes(){return this.getMetaProperty("classes",[])}set classes(t){this.setMetaProperty("classes",t)}get title(){return this.getMetaProperty("title","")}set title(t){this.setMetaProperty("title",t)}get description(){return this.getMetaProperty("description","")}set description(t){this.setMetaProperty("description",t)}get links(){return this.getMetaProperty("links",[])}set links(t){this.setMetaProperty("links",t)}get isFrozen(){return Object.isFrozen(this)}get parents(){let{parent:t}=this;const e=new o;for(;t;)e.push(t),t=t.parent;return e}get children(){if(Array.isArray(this.content))return new o(this.content);if(this.content instanceof s){const t=new o([this.content.key]);return this.content.value&&t.push(this.content.value),t}return this.content instanceof i?new o([this.content]):new o}get recursiveChildren(){const t=new o;return this.children.forEach((e=>{t.push(e),e.recursiveChildren.forEach((e=>{t.push(e)}))})),t}}t.exports=i},8858:(t,e,r)=>{const n=r(3026),s=r(6420);t.exports=class extends s{constructor(t,e,r,s){super(new n,r,s),this.element="member",this.key=t,this.value=e}get key(){return this.content.key}set key(t){this.content.key=this.refract(t)}get value(){return this.content.value}set value(t){this.content.value=this.refract(t)}}},4152:(t,e,r)=>{const n=r(6420);t.exports=class extends n{constructor(t,e,r){super(t||null,e,r),this.element="null"}primitive(){return"null"}set(){return new Error("Cannot set the value of null")}}},3710:(t,e,r)=>{const n=r(6420);t.exports=class extends n{constructor(t,e,r){super(t,e,r),this.element="number"}primitive(){return"number"}}},3860:(t,e,r)=>{const n=r(1570),s=r(9259),o=r(1641),i=r(8858),a=r(3853);t.exports=class extends o{constructor(t,e,r){super(t||[],e,r),this.element="object"}primitive(){return"object"}toValue(){return this.content.reduce(((t,e)=>(t[e.key.toValue()]=e.value?e.value.toValue():void 0,t)),{})}get(t){const e=this.getMember(t);if(e)return e.value}getMember(t){if(void 0!==t)return this.content.find((e=>e.key.toValue()===t))}remove(t){let e=null;return this.content=this.content.filter((r=>r.key.toValue()!==t||(e=r,!1))),e}getKey(t){const e=this.getMember(t);if(e)return e.key}set(t,e){if(s(t))return Object.keys(t).forEach((e=>{this.set(e,t[e])})),this;const r=t,n=this.getMember(r);return n?n.value=e:this.content.push(new i(r,e)),this}keys(){return this.content.map((t=>t.key.toValue()))}values(){return this.content.map((t=>t.value.toValue()))}hasKey(t){return this.content.some((e=>e.key.equals(t)))}items(){return this.content.map((t=>[t.key.toValue(),t.value.toValue()]))}map(t,e){return this.content.map((r=>t.bind(e)(r.value,r.key,r)))}compactMap(t,e){const r=[];return this.forEach(((n,s,o)=>{const i=t.bind(e)(n,s,o);i&&r.push(i)})),r}filter(t,e){return new a(this.content).filter(t,e)}reject(t,e){return this.filter(n(t),e)}forEach(t,e){return this.content.forEach((r=>t.bind(e)(r.value,r.key,r)))}}},9542:(t,e,r)=>{const n=r(6420);t.exports=class extends n{constructor(t,e,r){super(t,e,r),this.element="string"}primitive(){return"string"}get length(){return this.content.length}}},8910:(t,e,r)=>{const n=r(2947);t.exports=class extends n{serialise(t){if(!(t instanceof this.namespace.elements.Element))throw new TypeError(`Given element \`${t}\` is not an Element instance`);let e;t._attributes&&t.attributes.get("variable")&&(e=t.attributes.get("variable"));const r={element:t.element};t._meta&&t._meta.length>0&&(r.meta=this.serialiseObject(t.meta));const n="enum"===t.element||-1!==t.attributes.keys().indexOf("enumerations");if(n){const e=this.enumSerialiseAttributes(t);e&&(r.attributes=e)}else if(t._attributes&&t._attributes.length>0){let{attributes:n}=t;n.get("metadata")&&(n=n.clone(),n.set("meta",n.get("metadata")),n.remove("metadata")),"member"===t.element&&e&&(n=n.clone(),n.remove("variable")),n.length>0&&(r.attributes=this.serialiseObject(n))}if(n)r.content=this.enumSerialiseContent(t,r);else if(this[`${t.element}SerialiseContent`])r.content=this[`${t.element}SerialiseContent`](t,r);else if(void 0!==t.content){let n;e&&t.content.key?(n=t.content.clone(),n.key.attributes.set("variable",e),n=this.serialiseContent(n)):n=this.serialiseContent(t.content),this.shouldSerialiseContent(t,n)&&(r.content=n)}else this.shouldSerialiseContent(t,t.content)&&t instanceof this.namespace.elements.Array&&(r.content=[]);return r}shouldSerialiseContent(t,e){return"parseResult"===t.element||"httpRequest"===t.element||"httpResponse"===t.element||"category"===t.element||"link"===t.element||void 0!==e&&(!Array.isArray(e)||0!==e.length)}refSerialiseContent(t,e){return delete e.attributes,{href:t.toValue(),path:t.path.toValue()}}sourceMapSerialiseContent(t){return t.toValue()}dataStructureSerialiseContent(t){return[this.serialiseContent(t.content)]}enumSerialiseAttributes(t){const e=t.attributes.clone(),r=e.remove("enumerations")||new this.namespace.elements.Array([]),n=e.get("default");let s=e.get("samples")||new this.namespace.elements.Array([]);if(n&&n.content&&(n.content.attributes&&n.content.attributes.remove("typeAttributes"),e.set("default",new this.namespace.elements.Array([n.content]))),s.forEach((t=>{t.content&&t.content.element&&t.content.attributes.remove("typeAttributes")})),t.content&&0!==r.length&&s.unshift(t.content),s=s.map((t=>t instanceof this.namespace.elements.Array?[t]:new this.namespace.elements.Array([t.content]))),s.length&&e.set("samples",s),e.length>0)return this.serialiseObject(e)}enumSerialiseContent(t){if(t._attributes){const e=t.attributes.get("enumerations");if(e&&e.length>0)return e.content.map((t=>{const e=t.clone();return e.attributes.remove("typeAttributes"),this.serialise(e)}))}if(t.content){const e=t.content.clone();return e.attributes.remove("typeAttributes"),[this.serialise(e)]}return[]}deserialise(t){if("string"==typeof t)return new this.namespace.elements.String(t);if("number"==typeof t)return new this.namespace.elements.Number(t);if("boolean"==typeof t)return new this.namespace.elements.Boolean(t);if(null===t)return new this.namespace.elements.Null;if(Array.isArray(t))return new this.namespace.elements.Array(t.map(this.deserialise,this));const e=this.namespace.getElementClass(t.element),r=new e;r.element!==t.element&&(r.element=t.element),t.meta&&this.deserialiseObject(t.meta,r.meta),t.attributes&&this.deserialiseObject(t.attributes,r.attributes);const n=this.deserialiseContent(t.content);if(void 0===n&&null!==r.content||(r.content=n),"enum"===r.element){r.content&&r.attributes.set("enumerations",r.content);let t=r.attributes.get("samples");if(r.attributes.remove("samples"),t){const n=t;t=new this.namespace.elements.Array,n.forEach((n=>{n.forEach((n=>{const s=new e(n);s.element=r.element,t.push(s)}))}));const s=t.shift();r.content=s?s.content:void 0,r.attributes.set("samples",t)}else r.content=void 0;let n=r.attributes.get("default");if(n&&n.length>0){n=n.get(0);const t=new e(n);t.element=r.element,r.attributes.set("default",t)}}else if("dataStructure"===r.element&&Array.isArray(r.content))[r.content]=r.content;else if("category"===r.element){const t=r.attributes.get("meta");t&&(r.attributes.set("metadata",t),r.attributes.remove("meta"))}else"member"===r.element&&r.key&&r.key._attributes&&r.key._attributes.getValue("variable")&&(r.attributes.set("variable",r.key.attributes.get("variable")),r.key.attributes.remove("variable"));return r}serialiseContent(t){if(t instanceof this.namespace.elements.Element)return this.serialise(t);if(t instanceof this.namespace.KeyValuePair){const e={key:this.serialise(t.key)};return t.value&&(e.value=this.serialise(t.value)),e}return t&&t.map?t.map(this.serialise,this):t}deserialiseContent(t){if(t){if(t.element)return this.deserialise(t);if(t.key){const e=new this.namespace.KeyValuePair(this.deserialise(t.key));return t.value&&(e.value=this.deserialise(t.value)),e}if(t.map)return t.map(this.deserialise,this)}return t}shouldRefract(t){return!!(t._attributes&&t.attributes.keys().length||t._meta&&t.meta.keys().length)||"enum"!==t.element&&(t.element!==t.primitive()||"member"===t.element)}convertKeyToRefract(t,e){return this.shouldRefract(e)?this.serialise(e):"enum"===e.element?this.serialiseEnum(e):"array"===e.element?e.map((e=>this.shouldRefract(e)||"default"===t?this.serialise(e):"array"===e.element||"object"===e.element||"enum"===e.element?e.children.map((t=>this.serialise(t))):e.toValue())):"object"===e.element?(e.content||[]).map(this.serialise,this):e.toValue()}serialiseEnum(t){return t.children.map((t=>this.serialise(t)))}serialiseObject(t){const e={};return t.forEach(((t,r)=>{if(t){const n=r.toValue();e[n]=this.convertKeyToRefract(n,t)}})),e}deserialiseObject(t,e){Object.keys(t).forEach((r=>{e.set(r,this.deserialise(t[r]))}))}}},2947:t=>{t.exports=class{constructor(t){this.namespace=t||new this.Namespace}serialise(t){if(!(t instanceof this.namespace.elements.Element))throw new TypeError(`Given element \`${t}\` is not an Element instance`);const e={element:t.element};t._meta&&t._meta.length>0&&(e.meta=this.serialiseObject(t.meta)),t._attributes&&t._attributes.length>0&&(e.attributes=this.serialiseObject(t.attributes));const r=this.serialiseContent(t.content);return void 0!==r&&(e.content=r),e}deserialise(t){if(!t.element)throw new Error("Given value is not an object containing an element name");const e=new(this.namespace.getElementClass(t.element));e.element!==t.element&&(e.element=t.element),t.meta&&this.deserialiseObject(t.meta,e.meta),t.attributes&&this.deserialiseObject(t.attributes,e.attributes);const r=this.deserialiseContent(t.content);return void 0===r&&null!==e.content||(e.content=r),e}serialiseContent(t){if(t instanceof this.namespace.elements.Element)return this.serialise(t);if(t instanceof this.namespace.KeyValuePair){const e={key:this.serialise(t.key)};return t.value&&(e.value=this.serialise(t.value)),e}if(t&&t.map){if(0===t.length)return;return t.map(this.serialise,this)}return t}deserialiseContent(t){if(t){if(t.element)return this.deserialise(t);if(t.key){const e=new this.namespace.KeyValuePair(this.deserialise(t.key));return t.value&&(e.value=this.deserialise(t.value)),e}if(t.map)return t.map(this.deserialise,this)}return t}serialiseObject(t){const e={};if(t.forEach(((t,r)=>{t&&(e[r.toValue()]=this.serialise(t))})),0!==Object.keys(e).length)return e}deserialiseObject(t,e){Object.keys(t).forEach((r=>{e.set(r,this.deserialise(t[r]))}))}}},1427:(t,e,r)=>{t.exports=r(6762)}},e={};function r(n){var s=e[n];if(void 0!==s)return s.exports;var o=e[n]={id:n,loaded:!1,exports:{}};return t[n].call(o.exports,o,o.exports,r),o.loaded=!0,o.exports}r.d=(t,e)=>{for(var n in e)r.o(e,n)&&!r.o(t,n)&&Object.defineProperty(t,n,{enumerable:!0,get:e[n]})},r.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(t){if("object"==typeof window)return window}}(),r.o=(t,e)=>Object.prototype.hasOwnProperty.call(t,e),r.r=t=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},r.nmd=t=>(t.paths=[],t.children||(t.children=[]),t);var n={};return(()=>{"use strict";function t(t){return null!=t&&"object"==typeof t&&!0===t["@@functional/placeholder"]}function e(e){return function r(n){return 0===arguments.length||t(n)?r:e.apply(this,arguments)}}function s(r){return function n(s,o){switch(arguments.length){case 0:return n;case 1:return t(s)?n:e((function(t){return r(s,t)}));default:return t(s)&&t(o)?n:t(s)?e((function(t){return r(t,o)})):t(o)?e((function(t){return r(s,t)})):r(s,o)}}}r.r(n),r.d(n,{CompilationJsonPointerError:()=>Wt,EvaluationJsonPointerError:()=>Ht,InvalidJsonPointerError:()=>Jt,JsonPointerError:()=>Gt,compile:()=>me,escape:()=>Xt,evaluate:()=>Xe,parse:()=>ye,unescape:()=>Zt,uriToPointer:()=>he});var o=s((function(t,e){for(var r={},n={},s=0,o=t.length;s<o;)n[t[s]]=1,s+=1;for(var i in e)n.hasOwnProperty(i)||(r[i]=e[i]);return r}));const i=o;const a=e((function(t){return null==t}));var c=s((function(t,e){return!a(e)&&t in e}));const u=c;function l(t,e){switch(t){case 0:return function(){return e.apply(this,arguments)};case 1:return function(t){return e.apply(this,arguments)};case 2:return function(t,r){return e.apply(this,arguments)};case 3:return function(t,r,n){return e.apply(this,arguments)};case 4:return function(t,r,n,s){return e.apply(this,arguments)};case 5:return function(t,r,n,s,o){return e.apply(this,arguments)};case 6:return function(t,r,n,s,o,i){return e.apply(this,arguments)};case 7:return function(t,r,n,s,o,i,a){return e.apply(this,arguments)};case 8:return function(t,r,n,s,o,i,a,c){return e.apply(this,arguments)};case 9:return function(t,r,n,s,o,i,a,c,u){return e.apply(this,arguments)};case 10:return function(t,r,n,s,o,i,a,c,u,l){return e.apply(this,arguments)};default:throw new Error("First argument to _arity must be a non-negative integer no greater than ten")}}function f(t,e){return function(){return e.call(this,t.apply(this,arguments))}}function p(r){return function n(o,i,a){switch(arguments.length){case 0:return n;case 1:return t(o)?n:s((function(t,e){return r(o,t,e)}));case 2:return t(o)&&t(i)?n:t(o)?s((function(t,e){return r(t,i,e)})):t(i)?s((function(t,e){return r(o,t,e)})):e((function(t){return r(o,i,t)}));default:return t(o)&&t(i)&&t(a)?n:t(o)&&t(i)?s((function(t,e){return r(t,e,a)})):t(o)&&t(a)?s((function(t,e){return r(t,i,e)})):t(i)&&t(a)?s((function(t,e){return r(o,t,e)})):t(o)?e((function(t){return r(t,i,a)})):t(i)?e((function(t){return r(o,t,a)})):t(a)?e((function(t){return r(o,i,t)})):r(o,i,a)}}}const h=Array.isArray||function(t){return null!=t&&t.length>=0&&"[object Array]"===Object.prototype.toString.call(t)};function y(t){return"[object String]"===Object.prototype.toString.call(t)}const m=e((function(t){return!!h(t)||!!t&&("object"==typeof t&&(!y(t)&&(0===t.length||t.length>0&&(t.hasOwnProperty(0)&&t.hasOwnProperty(t.length-1)))))}));var v="undefined"!=typeof Symbol?Symbol.iterator:"@@iterator";function d(t,e,r){return function(n,s,o){if(m(o))return t(n,s,o);if(null==o)return s;if("function"==typeof o["fantasy-land/reduce"])return e(n,s,o,"fantasy-land/reduce");if(null!=o[v])return r(n,s,o[v]());if("function"==typeof o.next)return r(n,s,o);if("function"==typeof o.reduce)return e(n,s,o,"reduce");throw new TypeError("reduce: list must be array or iterable")}}function b(t,e,r){for(var n=0,s=r.length;n<s;){if((e=t["@@transducer/step"](e,r[n]))&&e["@@transducer/reduced"]){e=e["@@transducer/value"];break}n+=1}return t["@@transducer/result"](e)}const g=s((function(t,e){return l(t.length,(function(){return t.apply(e,arguments)}))}));function x(t,e,r){for(var n=r.next();!n.done;){if((e=t["@@transducer/step"](e,n.value))&&e["@@transducer/reduced"]){e=e["@@transducer/value"];break}n=r.next()}return t["@@transducer/result"](e)}function w(t,e,r,n){return t["@@transducer/result"](r[n](g(t["@@transducer/step"],t),e))}const j=d(b,w,x);var E=function(){function t(t){this.f=t}return t.prototype["@@transducer/init"]=function(){throw new Error("init not implemented on XWrap")},t.prototype["@@transducer/result"]=function(t){return t},t.prototype["@@transducer/step"]=function(t,e){return this.f(t,e)},t}();const O=p((function(t,e,r){return j("function"==typeof t?new E(t):t,e,r)}));function _(t,e){return function(){var r=arguments.length;if(0===r)return e();var n=arguments[r-1];return h(n)||"function"!=typeof n[t]?e.apply(this,arguments):n[t].apply(n,Array.prototype.slice.call(arguments,0,r-1))}}const S=p(_("slice",(function(t,e,r){return Array.prototype.slice.call(r,t,e)})));const k=e(_("tail",S(1,1/0)));function A(){if(0===arguments.length)throw new Error("pipe requires at least one argument");return l(arguments[0].length,O(f,arguments[0],k(arguments)))}const P=e((function(t){return null===t?"Null":void 0===t?"Undefined":Object.prototype.toString.call(t).slice(8,-1)}));const T="function"==typeof Object.is?Object.is:function(t,e){return t===e?0!==t||1/t==1/e:t!=t&&e!=e};var M=function(t,e){switch(arguments.length){case 0:return M;case 1:return function e(r){return 0===arguments.length?e:T(t,r)};default:return T(t,e)}};const C=M;function R(t){for(var e,r=[];!(e=t.next()).done;)r.push(e.value);return r}function I(t,e,r){for(var n=0,s=r.length;n<s;){if(t(e,r[n]))return!0;n+=1}return!1}function N(t,e){return Object.prototype.hasOwnProperty.call(e,t)}var V=Object.prototype.toString;const z=function(){return"[object Arguments]"===V.call(arguments)?function(t){return"[object Arguments]"===V.call(t)}:function(t){return N("callee",t)}}();var F=!{toString:null}.propertyIsEnumerable("toString"),L=["constructor","valueOf","isPrototypeOf","toString","propertyIsEnumerable","hasOwnProperty","toLocaleString"],D=function(){return arguments.propertyIsEnumerable("length")}(),B=function(t,e){for(var r=0;r<t.length;){if(t[r]===e)return!0;r+=1}return!1},q="function"!=typeof Object.keys||D?e((function(t){if(Object(t)!==t)return[];var e,r,n=[],s=D&&z(t);for(e in t)!N(e,t)||s&&"length"===e||(n[n.length]=e);if(F)for(r=L.length-1;r>=0;)N(e=L[r],t)&&!B(n,e)&&(n[n.length]=e),r-=1;return n})):e((function(t){return Object(t)!==t?[]:Object.keys(t)}));const U=q;function K(t,e,r,n){var s=R(t);function o(t,e){return $(t,e,r.slice(),n.slice())}return!I((function(t,e){return!I(o,e,t)}),R(e),s)}function $(t,e,r,n){if(T(t,e))return!0;var s,o,i=P(t);if(i!==P(e))return!1;if("function"==typeof t["fantasy-land/equals"]||"function"==typeof e["fantasy-land/equals"])return"function"==typeof t["fantasy-land/equals"]&&t["fantasy-land/equals"](e)&&"function"==typeof e["fantasy-land/equals"]&&e["fantasy-land/equals"](t);if("function"==typeof t.equals||"function"==typeof e.equals)return"function"==typeof t.equals&&t.equals(e)&&"function"==typeof e.equals&&e.equals(t);switch(i){case"Arguments":case"Array":case"Object":if("function"==typeof t.constructor&&"Promise"===(s=t.constructor,null==(o=String(s).match(/^function (\w*)/))?"":o[1]))return t===e;break;case"Boolean":case"Number":case"String":if(typeof t!=typeof e||!T(t.valueOf(),e.valueOf()))return!1;break;case"Date":if(!T(t.valueOf(),e.valueOf()))return!1;break;case"Error":return t.name===e.name&&t.message===e.message;case"RegExp":if(t.source!==e.source||t.global!==e.global||t.ignoreCase!==e.ignoreCase||t.multiline!==e.multiline||t.sticky!==e.sticky||t.unicode!==e.unicode)return!1}for(var a=r.length-1;a>=0;){if(r[a]===t)return n[a]===e;a-=1}switch(i){case"Map":return t.size===e.size&&K(t.entries(),e.entries(),r.concat([t]),n.concat([e]));case"Set":return t.size===e.size&&K(t.values(),e.values(),r.concat([t]),n.concat([e]));case"Arguments":case"Array":case"Object":case"Boolean":case"Number":case"String":case"Date":case"Error":case"RegExp":case"Int8Array":case"Uint8Array":case"Uint8ClampedArray":case"Int16Array":case"Uint16Array":case"Int32Array":case"Uint32Array":case"Float32Array":case"Float64Array":case"ArrayBuffer":break;default:return!1}var c=U(t);if(c.length!==U(e).length)return!1;var u=r.concat([t]),l=n.concat([e]);for(a=c.length-1;a>=0;){var f=c[a];if(!N(f,e)||!$(e[f],t[f],u,l))return!1;a-=1}return!0}const G=s((function(t,e){return $(t,e,[],[])}));function J(t,e){return function(t,e,r){var n,s;if("function"==typeof t.indexOf)switch(typeof e){case"number":if(0===e){for(n=1/e;r<t.length;){if(0===(s=t[r])&&1/s===n)return r;r+=1}return-1}if(e!=e){for(;r<t.length;){if("number"==typeof(s=t[r])&&s!=s)return r;r+=1}return-1}return t.indexOf(e,r);case"string":case"boolean":case"function":case"undefined":return t.indexOf(e,r);case"object":if(null===e)return t.indexOf(e,r)}for(;r<t.length;){if(G(t[r],e))return r;r+=1}return-1}(e,t,0)>=0}function W(t,e){for(var r=0,n=e.length,s=Array(n);r<n;)s[r]=t(e[r]),r+=1;return s}function H(t){return'"'+t.replace(/\\/g,"\\\\").replace(/[\b]/g,"\\b").replace(/\f/g,"\\f").replace(/\n/g,"\\n").replace(/\r/g,"\\r").replace(/\t/g,"\\t").replace(/\v/g,"\\v").replace(/\0/g,"\\0").replace(/"/g,'\\"')+'"'}var Y=function(t){return(t<10?"0":"")+t};const X="function"==typeof Date.prototype.toISOString?function(t){return t.toISOString()}:function(t){return t.getUTCFullYear()+"-"+Y(t.getUTCMonth()+1)+"-"+Y(t.getUTCDate())+"T"+Y(t.getUTCHours())+":"+Y(t.getUTCMinutes())+":"+Y(t.getUTCSeconds())+"."+(t.getUTCMilliseconds()/1e3).toFixed(3).slice(2,5)+"Z"};function Z(t,e,r){for(var n=0,s=r.length;n<s;)e=t(e,r[n]),n+=1;return e}function Q(t,e,r){return function(){if(0===arguments.length)return r();var n=arguments[arguments.length-1];if(!h(n)){for(var s=0;s<t.length;){if("function"==typeof n[t[s]])return n[t[s]].apply(n,Array.prototype.slice.call(arguments,0,-1));s+=1}if(function(t){return null!=t&&"function"==typeof t["@@transducer/step"]}(n))return e.apply(null,Array.prototype.slice.call(arguments,0,-1))(n)}return r.apply(this,arguments)}}const tt=function(){return this.xf["@@transducer/init"]()},et=function(t){return this.xf["@@transducer/result"](t)};var rt=function(){function t(t,e){this.xf=e,this.f=t}return t.prototype["@@transducer/init"]=tt,t.prototype["@@transducer/result"]=et,t.prototype["@@transducer/step"]=function(t,e){return this.f(e)?this.xf["@@transducer/step"](t,e):t},t}();function nt(t){return function(e){return new rt(t,e)}}const st=s(Q(["fantasy-land/filter","filter"],nt,(function(t,e){return r=e,"[object Object]"===Object.prototype.toString.call(r)?Z((function(r,n){return t(e[n])&&(r[n]=e[n]),r}),{},U(e)):function(t,e){for(var r=0,n=e.length,s=[];r<n;)t(e[r])&&(s[s.length]=e[r]),r+=1;return s}(t,e);var r})));const ot=s((function(t,e){return st((r=t,function(){return!r.apply(this,arguments)}),e);var r}));function it(t,e){var r=function(r){var n=e.concat([t]);return J(r,n)?"<Circular>":it(r,n)},n=function(t,e){return W((function(e){return H(e)+": "+r(t[e])}),e.slice().sort())};switch(Object.prototype.toString.call(t)){case"[object Arguments]":return"(function() { return arguments; }("+W(r,t).join(", ")+"))";case"[object Array]":return"["+W(r,t).concat(n(t,ot((function(t){return/^\d+$/.test(t)}),U(t)))).join(", ")+"]";case"[object Boolean]":return"object"==typeof t?"new Boolean("+r(t.valueOf())+")":t.toString();case"[object Date]":return"new Date("+(isNaN(t.valueOf())?r(NaN):H(X(t)))+")";case"[object Map]":return"new Map("+r(Array.from(t))+")";case"[object Null]":return"null";case"[object Number]":return"object"==typeof t?"new Number("+r(t.valueOf())+")":1/t==-1/0?"-0":t.toString(10);case"[object Set]":return"new Set("+r(Array.from(t).sort())+")";case"[object String]":return"object"==typeof t?"new String("+r(t.valueOf())+")":H(t);case"[object Undefined]":return"undefined";default:if("function"==typeof t.toString){var s=t.toString();if("[object Object]"!==s)return s}return"{"+n(t,U(t)).join(", ")+"}"}}const at=e((function(t){return it(t,[])})),ct=Number.isInteger||function(t){return t<<0===t};const ut=s((function(t,e){var r=t<0?e.length+t:t;return y(e)?e.charAt(r):e[r]}));const lt=s((function(t,e){return t.map((function(t){for(var r,n=e,s=0;s<t.length;){if(null==n)return;r=t[s],n=ct(r)?ut(r,n):n[r],s+=1}return n}))}));const ft=s((function(t,e){return lt([t],e)[0]}));const pt=p((function(t,e,r){return t(ft(e,r))}));function ht(t){var e=Object.prototype.toString.call(t);return"[object Function]"===e||"[object AsyncFunction]"===e||"[object GeneratorFunction]"===e||"[object AsyncGeneratorFunction]"===e}const yt=s((function(t,e){return t&&e}));function mt(t,e,r){for(var n=r.next();!n.done;)e=t(e,n.value),n=r.next();return e}function vt(t,e,r,n){return r[n](t,e)}const dt=d(Z,vt,mt);var bt=function(){function t(t,e){this.xf=e,this.f=t}return t.prototype["@@transducer/init"]=tt,t.prototype["@@transducer/result"]=et,t.prototype["@@transducer/step"]=function(t,e){return this.xf["@@transducer/step"](t,this.f(e))},t}();const gt=function(t){return function(e){return new bt(t,e)}};function xt(e,r,n){return function(){for(var s=[],o=0,i=e,a=0,c=!1;a<r.length||o<arguments.length;){var u;a<r.length&&(!t(r[a])||o>=arguments.length)?u=r[a]:(u=arguments[o],o+=1),s[a]=u,t(u)?c=!0:i-=1,a+=1}return!c&&i<=0?n.apply(this,s):l(Math.max(0,i),xt(e,s,n))}}const wt=s((function(t,r){return 1===t?e(r):l(t,xt(t,[],r))}));const jt=s(Q(["fantasy-land/map","map"],gt,(function(t,e){switch(Object.prototype.toString.call(e)){case"[object Function]":return wt(e.length,(function(){return t.call(this,e.apply(this,arguments))}));case"[object Object]":return Z((function(r,n){return r[n]=t(e[n]),r}),{},U(e));default:return W(t,e)}})));const Et=s((function(t,e){return"function"==typeof e["fantasy-land/ap"]?e["fantasy-land/ap"](t):"function"==typeof t.ap?t.ap(e):"function"==typeof t?function(r){return t(r)(e(r))}:dt((function(t,r){return function(t,e){var r;e=e||[];var n=(t=t||[]).length,s=e.length,o=[];for(r=0;r<n;)o[o.length]=t[r],r+=1;for(r=0;r<s;)o[o.length]=e[r],r+=1;return o}(t,jt(r,e))}),[],t)}));const Ot=s((function(t,e){var r=wt(t,e);return wt(t,(function(){return Z(Et,jt(r,arguments[0]),Array.prototype.slice.call(arguments,1))}))}));const _t=e((function(t){return Ot(t.length,t)}));const St=s((function(t,e){return ht(t)?function(){return t.apply(this,arguments)&&e.apply(this,arguments)}:_t(yt)(t,e)}));const kt=G(null);var At=_t(e((function(t){return!t})))(kt);function Pt(t){return Pt="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t},Pt(t)}const Tt=wt(1,St(At,(function(t){return"object"===Pt(t)})));const Mt=s((function(t,e){if(t===e)return e;function r(t,e){if(t>e!=e>t)return e>t?e:t}var n=r(t,e);if(void 0!==n)return n;var s=r(typeof t,typeof e);if(void 0!==s)return s===typeof t?t:e;var o=at(t),i=r(o,at(e));return void 0!==i&&i===o?t:e}));const Ct=s((function(t,e){if(null!=e)return ct(t)?ut(t,e):e[t]}));const Rt=s((function(t,e){return jt(Ct(t),e)}));const It=e((function(t){return wt(O(Mt,0,Rt("length",t)),(function(){for(var e=0,r=t.length;e<r;){if(t[e].apply(this,arguments))return!0;e+=1}return!1}))}));const Nt=wt(1,A(P,C("GeneratorFunction")));const Vt=wt(1,A(P,C("AsyncFunction")));const zt=It([A(P,C("Function")),Nt,Vt]);var Ft=A(P,C("Object")),Lt=pt(St(zt,A(at,G(at(Object)))),["constructor"]);const Dt=wt(1,(function(t){if(!Tt(t)||!Ft(t))return!1;var e=Object.getPrototypeOf(t);return!!kt(e)||Lt(e)}));var Bt=r(1427);const qt=class extends Bt{constructor(t,e,r){if(super(t,e,r),this.name=this.constructor.name,"string"==typeof e&&(this.message=e),"function"==typeof Error.captureStackTrace?Error.captureStackTrace(this,this.constructor):this.stack=new Error(e).stack,Dt(r)&&u("cause",r)&&!u("cause",this)){const{cause:t}=r;this.cause=t,t instanceof Error&&u("stack",t)&&(this.stack=`${this.stack}\nCAUSE: ${null==t?void 0:t.stack}`)}}};class Ut extends Error{static[Symbol.hasInstance](t){return super[Symbol.hasInstance](t)||Function.prototype[Symbol.hasInstance].call(qt,t)}constructor(t,e){if(super(t,e),this.name=this.constructor.name,"string"==typeof t&&(this.message=t),"function"==typeof Error.captureStackTrace?Error.captureStackTrace(this,this.constructor):this.stack=new Error(t).stack,Dt(e)&&u("cause",e)&&!u("cause",this)){const{cause:t}=e;this.cause=t,t instanceof Error&&u("stack",t)&&(this.stack=`${this.stack}\nCAUSE: ${null==t?void 0:t.stack}`)}}}const Kt=Ut;const $t=class extends Kt{constructor(t,e){super(t,e),void 0!==e&&Object.assign(this,i(["cause"],e))}};const Gt=class extends $t{};const Jt=class extends Gt{constructor(t,e){super(t,e),void 0!==e&&(this.pointer=e.pointer)}};const Wt=class extends Gt{constructor(t,e){super(t,e),void 0!==e&&(this.tokens=[...e.tokens])}};const Ht=class extends Gt{constructor(t,e){super(t,e),void 0!==e&&(this.pointer=e.pointer,Array.isArray(e.tokens)&&(this.tokens=[...e.tokens]),this.failedToken=e.failedToken,this.failedTokenPosition=e.failedTokenPosition,this.element=e.element)}};const Yt=p((function(t,e,r){return r.replace(t,e)})),Xt=A(Yt(/~/g,"~0"),Yt(/\//g,"~1"),encodeURIComponent),Zt=A(Yt(/~1/g,"/"),Yt(/~0/g,"~"),(t=>{try{return decodeURIComponent(t)}catch{return t}}));var Qt=function(){function t(t,e){this.xf=e,this.n=t,this.i=0}return t.prototype["@@transducer/init"]=tt,t.prototype["@@transducer/result"]=et,t.prototype["@@transducer/step"]=function(t,e){this.i+=1;var r,n=0===this.n?t:this.xf["@@transducer/step"](t,e);return this.n>=0&&this.i>=this.n?(r=n)&&r["@@transducer/reduced"]?r:{"@@transducer/value":r,"@@transducer/reduced":!0}:n},t}();function te(t){return function(e){return new Qt(t,e)}}const ee=s(Q(["take"],te,(function(t,e){return S(0,t<0?1/0:t,e)})));const re=s((function(t,e){return G(ee(t.length,e),t)}));const ne=s((function(t,e){return wt(t+1,(function(){var r=arguments[t];if(null!=r&&ht(r[e]))return r[e].apply(r,Array.prototype.slice.call(arguments,0,t));throw new TypeError(at(r)+' does not have a method named "'+e+'"')}))}));const se=ne(1,"split");const oe=G("");const ie=e((function(t){return wt(t.length,t)}));var ae=function(){function t(t,e){this.xf=e,this.f=t}return t.prototype["@@transducer/init"]=tt,t.prototype["@@transducer/result"]=et,t.prototype["@@transducer/step"]=function(t,e){if(this.f){if(this.f(e))return t;this.f=null}return this.xf["@@transducer/step"](t,e)},t}();function ce(t){return function(e){return new ae(t,e)}}const ue=s(Q(["dropWhile"],ce,(function(t,e){for(var r=0,n=e.length;r<n&&t(e[r]);)r+=1;return S(r,1/0,e)})));const le=ne(1,"join");const fe=e((function(t){return wt(t.length,(function(e,r){var n=Array.prototype.slice.call(arguments,0);return n[0]=r,n[1]=e,t.apply(this,n)}))}))(s(J));const pe=ie((function(t,e){return A(se(""),ue(fe(t)),le(""))(e)})),he=t=>{const e=(t=>{const e=t.indexOf("#");return-1!==e?t.substring(e):"#"})(t);return pe("#",e)},ye=t=>{if(oe(t))return[];if(!re("/",t))throw new Jt(`Invalid JSON Pointer "${t}". JSON Pointers must begin with "/"`,{pointer:t});try{const e=A(se("/"),jt(Zt))(t);return k(e)}catch(e){throw new Jt(`JSON Pointer parsing of "${t}" encountered an error.`,{pointer:t,cause:e})}},me=t=>{try{return 0===t.length?"":`/${t.map(Xt).join("/")}`}catch(e){throw new Wt("JSON Pointer compilation of tokens encountered an error.",{tokens:t,cause:e})}};const ve=s((function(t,e){return wt(O(Mt,0,Rt("length",e)),(function(){var r=arguments,n=this;return t.apply(n,W((function(t){return t.apply(n,r)}),e))}))}));function de(t){return t}const be=e(de);var ge=St(wt(1,A(P,C("Number"))),isFinite);var xe=wt(1,ge);var we=St(zt(Number.isFinite)?wt(1,g(Number.isFinite,Number)):xe,ve(G,[Math.floor,be]));var je=wt(1,we);const Ee=zt(Number.isInteger)?wt(1,g(Number.isInteger,Number)):je;var Oe=r(7952);class _e extends Oe.RP{constructor(t,e,r){super(t,e,r),this.element="annotation"}get code(){return this.attributes.get("code")}set code(t){this.attributes.set("code",t)}}const Se=_e;class ke extends Oe.RP{constructor(t,e,r){super(t,e,r),this.element="comment"}}const Ae=ke;var Pe=e((function(t){return function(){return t}}))(void 0);const Te=G(Pe());class Me extends Oe.ON{constructor(t,e,r){super(t,e,r),this.element="parseResult"}get api(){return this.children.filter((t=>t.classes.contains("api"))).first}get results(){return this.children.filter((t=>t.classes.contains("result")))}get result(){return this.results.first}get annotations(){return this.children.filter((t=>"annotation"===t.element))}get warnings(){return this.children.filter((t=>"annotation"===t.element&&t.classes.contains("warning")))}get errors(){return this.children.filter((t=>"annotation"===t.element&&t.classes.contains("error")))}get isEmpty(){return this.children.reject((t=>"annotation"===t.element)).isEmpty}replaceResult(t){const{result:e}=this;if(Te(e))return!1;const r=this.content.findIndex((t=>t===e));return-1!==r&&(this.content[r]=t,!0)}}const Ce=Me;class Re extends Oe.ON{constructor(t,e,r){super(t,e,r),this.element="sourceMap"}get positionStart(){return this.children.filter((t=>t.classes.contains("position"))).get(0)}get positionEnd(){return this.children.filter((t=>t.classes.contains("position"))).get(1)}set position(t){if(null===t)return;const e=new Oe.ON([t.start.row,t.start.column,t.start.char]),r=new Oe.ON([t.end.row,t.end.column,t.end.char]);e.classes.push("position"),r.classes.push("position"),this.push(e).push(r)}}const Ie=Re,Ne=(t,e)=>"object"==typeof e&&null!==e&&t in e&&"function"==typeof e[t],Ve=t=>"object"==typeof t&&null!=t&&"_storedElement"in t&&"string"==typeof t._storedElement&&"_content"in t,ze=(t,e)=>"object"==typeof e&&null!==e&&"primitive"in e&&("function"==typeof e.primitive&&e.primitive()===t),Fe=(t,e)=>"object"==typeof e&&null!==e&&"classes"in e&&(Array.isArray(e.classes)||e.classes instanceof Oe.ON)&&e.classes.includes(t),Le=(t,e)=>"object"==typeof e&&null!==e&&"element"in e&&e.element===t,De=t=>t({hasMethod:Ne,hasBasicElementProps:Ve,primitiveEq:ze,isElementType:Le,hasClass:Fe}),Be=De((({hasBasicElementProps:t,primitiveEq:e})=>r=>r instanceof Oe.W_||t(r)&&e(void 0,r))),qe=(De((({hasBasicElementProps:t,primitiveEq:e})=>r=>r instanceof Oe.RP||t(r)&&e("string",r))),De((({hasBasicElementProps:t,primitiveEq:e})=>r=>r instanceof Oe.VL||t(r)&&e("number",r))),De((({hasBasicElementProps:t,primitiveEq:e})=>r=>r instanceof Oe.zr||t(r)&&e("null",r))),De((({hasBasicElementProps:t,primitiveEq:e})=>r=>r instanceof Oe.hh||t(r)&&e("boolean",r))),De((({hasBasicElementProps:t,primitiveEq:e,hasMethod:r})=>n=>n instanceof Oe.Sb||t(n)&&e("object",n)&&r("keys",n)&&r("values",n)&&r("items",n)))),Ue=De((({hasBasicElementProps:t,primitiveEq:e,hasMethod:r})=>n=>n instanceof Oe.ON&&!(n instanceof Oe.Sb)||t(n)&&e("array",n)&&r("push",n)&&r("unshift",n)&&r("map",n)&&r("reduce",n)));De((({hasBasicElementProps:t,isElementType:e,primitiveEq:r})=>n=>n instanceof Oe.c6||t(n)&&e("member",n)&&r(void 0,n))),De((({hasBasicElementProps:t,isElementType:e,primitiveEq:r})=>n=>n instanceof Oe.EA||t(n)&&e("link",n)&&r(void 0,n))),De((({hasBasicElementProps:t,isElementType:e,primitiveEq:r})=>n=>n instanceof Oe.tK||t(n)&&e("ref",n)&&r(void 0,n))),De((({hasBasicElementProps:t,isElementType:e,primitiveEq:r})=>n=>n instanceof Se||t(n)&&e("annotation",n)&&r("array",n))),De((({hasBasicElementProps:t,isElementType:e,primitiveEq:r})=>n=>n instanceof Ae||t(n)&&e("comment",n)&&r("string",n))),De((({hasBasicElementProps:t,isElementType:e,primitiveEq:r})=>n=>n instanceof Ce||t(n)&&e("parseResult",n)&&r("array",n))),De((({hasBasicElementProps:t,isElementType:e,primitiveEq:r})=>n=>n instanceof Ie||t(n)&&e("sourceMap",n)&&r("array",n)));const Ke=class extends $t{constructor(t,e){super(t,e),void 0!==e&&(this.value=e.source)}};const $e=class extends Ke{};const Ge=class extends Ke{},Je=(t,e={})=>{const{visited:r=new WeakMap}=e,n={...e,visited:r};if(r.has(t))return r.get(t);if(t instanceof Oe.KeyValuePair){const{key:e,value:s}=t,o=Be(e)?Je(e,n):e,i=Be(s)?Je(s,n):s,a=new Oe.KeyValuePair(o,i);return r.set(t,a),a}if(t instanceof Oe.rm){const e=t=>Je(t,n),s=[...t].map(e),o=new Oe.rm(s);return r.set(t,o),o}if(t instanceof Oe.O4){const e=t=>Je(t,n),s=[...t].map(e),o=new Oe.O4(s);return r.set(t,o),o}if(Be(t)){const e=Ye(t);if(r.set(t,e),t.content)if(Be(t.content))e.content=Je(t.content,n);else if(t.content instanceof Oe.KeyValuePair)e.content=Je(t.content,n);else if(Array.isArray(t.content)){const r=t=>Je(t,n);e.content=t.content.map(r)}else e.content=t.content;else e.content=t.content;return e}throw new $e("Value provided to cloneDeep function couldn't be cloned",{value:t})};Je.safe=t=>{try{return Je(t)}catch{return t}};const We=t=>{const{key:e,value:r}=t;return new Oe.KeyValuePair(e,r)},He=t=>{const e=new t.constructor;if(e.element=t.element,t.meta.length>0&&(e._meta=Je(t.meta)),t.attributes.length>0&&(e._attributes=Je(t.attributes)),Be(t.content)){const r=t.content;e.content=He(r)}else Array.isArray(t.content)?e.content=[...t.content]:t.content instanceof Oe.KeyValuePair?e.content=We(t.content):e.content=t.content;return e},Ye=t=>{if(t instanceof Oe.KeyValuePair)return We(t);if(t instanceof Oe.rm)return(t=>{const e=[...t];return new Oe.rm(e)})(t);if(t instanceof Oe.O4)return(t=>{const e=[...t];return new Oe.O4(e)})(t);if(Be(t))return He(t);throw new Ge("Value provided to cloneShallow function couldn't be cloned",{value:t})};Ye.safe=t=>{try{return Ye(t)}catch{return t}};const Xe=(t,e)=>{let r;try{r=ye(t)}catch(r){throw new Ht(`JSON Pointer evaluation failed while parsing the pointer "${t}".`,{pointer:t,element:Je(e),cause:r})}return r.reduce(((e,n,s)=>{if(qe(e)){if(!e.hasKey(n))throw new Ht(`JSON Pointer evaluation failed while evaluating token "${n}" against an ObjectElement`,{pointer:t,tokens:r,failedToken:n,failedTokenPosition:s,element:Je(e)});return e.get(n)}if(Ue(e)){if(!(n in e.content)||!Ee(Number(n)))throw new Ht(`JSON Pointer evaluation failed while evaluating token "${n}" against an ArrayElement`,{pointer:t,tokens:r,failedToken:n,failedTokenPosition:s,element:Je(e)});return e.get(Number(n))}throw new Ht(`JSON Pointer evaluation failed while evaluating token "${n}" against an unexpected Element`,{pointer:t,tokens:r,failedToken:n,failedTokenPosition:s,element:Je(e)})}),e)}})(),n})()));
1
+ !function(t,e){"object"==typeof exports&&"object"==typeof module?module.exports=e():"function"==typeof define&&define.amd?define([],e):"object"==typeof exports?exports.apidomJsonPointer=e():t.apidomJsonPointer=e()}(self,(()=>(()=>{var t={42:(t,e,r)=>{"use strict";var n=r(5846);t.exports=n},6791:(t,e,r)=>{"use strict";r(4339),r(4242),r(4016),r(8939),r(5454);var n=r(7545);t.exports=n.AggregateError},6762:(t,e,r)=>{"use strict";t.exports=r(3028)},3028:(t,e,r)=>{"use strict";r(2752);var n=r(42);t.exports=n},6235:(t,e,r)=>{"use strict";var n=r(6447),s=r(9288),i=TypeError;t.exports=function(t){if(n(t))return t;throw new i(s(t)+" is not a function")}},7757:(t,e,r)=>{"use strict";var n=r(6447),s=String,i=TypeError;t.exports=function(t){if("object"==typeof t||n(t))return t;throw new i("Can't set "+s(t)+" as a prototype")}},7423:t=>{"use strict";t.exports=function(){}},1138:(t,e,r)=>{"use strict";var n=r(5744),s=String,i=TypeError;t.exports=function(t){if(n(t))return t;throw new i(s(t)+" is not an object")}},8180:(t,e,r)=>{"use strict";var n=r(101),s=r(7739),i=r(4104),o=function(t){return function(e,r,o){var a,c=n(e),u=i(c),l=s(o,u);if(t&&r!=r){for(;u>l;)if((a=c[l++])!=a)return!0}else for(;u>l;l++)if((t||l in c)&&c[l]===r)return t||l||0;return!t&&-1}};t.exports={includes:o(!0),indexOf:o(!1)}},9272:(t,e,r)=>{"use strict";var n=r(4120),s=n({}.toString),i=n("".slice);t.exports=function(t){return i(s(t),8,-1)}},4696:(t,e,r)=>{"use strict";var n=r(3471),s=r(6447),i=r(9272),o=r(8182)("toStringTag"),a=Object,c="Arguments"===i(function(){return arguments}());t.exports=n?i:function(t){var e,r,n;return void 0===t?"Undefined":null===t?"Null":"string"==typeof(r=function(t,e){try{return t[e]}catch(t){}}(e=a(t),o))?r:c?i(e):"Object"===(n=i(e))&&s(e.callee)?"Arguments":n}},7987:(t,e,r)=>{"use strict";var n=r(4500),s=r(3011),i=r(5141),o=r(2760);t.exports=function(t,e,r){for(var a=s(e),c=o.f,u=i.f,l=0;l<a.length;l++){var f=a[l];n(t,f)||r&&n(r,f)||c(t,f,u(e,f))}}},4635:(t,e,r)=>{"use strict";var n=r(6192);t.exports=!n((function(){function t(){}return t.prototype.constructor=null,Object.getPrototypeOf(new t)!==t.prototype}))},7271:t=>{"use strict";t.exports=function(t,e){return{value:t,done:e}}},8711:(t,e,r)=>{"use strict";var n=r(69),s=r(2760),i=r(774);t.exports=n?function(t,e,r){return s.f(t,e,i(1,r))}:function(t,e,r){return t[e]=r,t}},774:t=>{"use strict";t.exports=function(t,e){return{enumerable:!(1&t),configurable:!(2&t),writable:!(4&t),value:e}}},9362:(t,e,r)=>{"use strict";var n=r(8711);t.exports=function(t,e,r,s){return s&&s.enumerable?t[e]=r:n(t,e,r),t}},5098:(t,e,r)=>{"use strict";var n=r(8576),s=Object.defineProperty;t.exports=function(t,e){try{s(n,t,{value:e,configurable:!0,writable:!0})}catch(r){n[t]=e}return e}},69:(t,e,r)=>{"use strict";var n=r(6192);t.exports=!n((function(){return 7!==Object.defineProperty({},1,{get:function(){return 7}})[1]}))},8382:t=>{"use strict";var e="object"==typeof document&&document.all,r=void 0===e&&void 0!==e;t.exports={all:e,IS_HTMLDDA:r}},7449:(t,e,r)=>{"use strict";var n=r(8576),s=r(5744),i=n.document,o=s(i)&&s(i.createElement);t.exports=function(t){return o?i.createElement(t):{}}},7365:t=>{"use strict";t.exports={CSSRuleList:0,CSSStyleDeclaration:0,CSSValueList:0,ClientRectList:0,DOMRectList:0,DOMStringList:0,DOMTokenList:1,DataTransferItemList:0,FileList:0,HTMLAllCollection:0,HTMLCollection:0,HTMLFormElement:0,HTMLSelectElement:0,MediaList:0,MimeTypeArray:0,NamedNodeMap:0,NodeList:1,PaintRequestList:0,Plugin:0,PluginArray:0,SVGLengthList:0,SVGNumberList:0,SVGPathSegList:0,SVGPointList:0,SVGStringList:0,SVGTransformList:0,SourceBufferList:0,StyleSheetList:0,TextTrackCueList:0,TextTrackList:0,TouchList:0}},8989:t=>{"use strict";t.exports="undefined"!=typeof navigator&&String(navigator.userAgent)||""},4218:(t,e,r)=>{"use strict";var n,s,i=r(8576),o=r(8989),a=i.process,c=i.Deno,u=a&&a.versions||c&&c.version,l=u&&u.v8;l&&(s=(n=l.split("."))[0]>0&&n[0]<4?1:+(n[0]+n[1])),!s&&o&&(!(n=o.match(/Edge\/(\d+)/))||n[1]>=74)&&(n=o.match(/Chrome\/(\d+)/))&&(s=+n[1]),t.exports=s},2952:t=>{"use strict";t.exports=["constructor","hasOwnProperty","isPrototypeOf","propertyIsEnumerable","toLocaleString","toString","valueOf"]},4503:(t,e,r)=>{"use strict";var n=r(4120),s=Error,i=n("".replace),o=String(new s("zxcasd").stack),a=/\n\s*at [^:]*:[^\n]*/,c=a.test(o);t.exports=function(t,e){if(c&&"string"==typeof t&&!s.prepareStackTrace)for(;e--;)t=i(t,a,"");return t}},8266:(t,e,r)=>{"use strict";var n=r(8711),s=r(4503),i=r(274),o=Error.captureStackTrace;t.exports=function(t,e,r,a){i&&(o?o(t,e):n(t,"stack",s(r,a)))}},274:(t,e,r)=>{"use strict";var n=r(6192),s=r(774);t.exports=!n((function(){var t=new Error("a");return!("stack"in t)||(Object.defineProperty(t,"stack",s(1,7)),7!==t.stack)}))},3085:(t,e,r)=>{"use strict";var n=r(8576),s=r(6298),i=r(4914),o=r(6447),a=r(5141).f,c=r(9245),u=r(7545),l=r(8043),f=r(8711),p=r(4500),h=function(t){var e=function(r,n,i){if(this instanceof e){switch(arguments.length){case 0:return new t;case 1:return new t(r);case 2:return new t(r,n)}return new t(r,n,i)}return s(t,this,arguments)};return e.prototype=t.prototype,e};t.exports=function(t,e){var r,s,y,m,v,d,b,g,x,w=t.target,j=t.global,E=t.stat,O=t.proto,_=j?n:E?n[w]:(n[w]||{}).prototype,S=j?u:u[w]||f(u,w,{})[w],k=S.prototype;for(m in e)s=!(r=c(j?m:w+(E?".":"#")+m,t.forced))&&_&&p(_,m),d=S[m],s&&(b=t.dontCallGetSet?(x=a(_,m))&&x.value:_[m]),v=s&&b?b:e[m],s&&typeof d==typeof v||(g=t.bind&&s?l(v,n):t.wrap&&s?h(v):O&&o(v)?i(v):v,(t.sham||v&&v.sham||d&&d.sham)&&f(g,"sham",!0),f(S,m,g),O&&(p(u,y=w+"Prototype")||f(u,y,{}),f(u[y],m,v),t.real&&k&&(r||!k[m])&&f(k,m,v)))}},6192:t=>{"use strict";t.exports=function(t){try{return!!t()}catch(t){return!0}}},6298:(t,e,r)=>{"use strict";var n=r(2784),s=Function.prototype,i=s.apply,o=s.call;t.exports="object"==typeof Reflect&&Reflect.apply||(n?o.bind(i):function(){return o.apply(i,arguments)})},8043:(t,e,r)=>{"use strict";var n=r(4914),s=r(6235),i=r(2784),o=n(n.bind);t.exports=function(t,e){return s(t),void 0===e?t:i?o(t,e):function(){return t.apply(e,arguments)}}},2784:(t,e,r)=>{"use strict";var n=r(6192);t.exports=!n((function(){var t=function(){}.bind();return"function"!=typeof t||t.hasOwnProperty("prototype")}))},8922:(t,e,r)=>{"use strict";var n=r(2784),s=Function.prototype.call;t.exports=n?s.bind(s):function(){return s.apply(s,arguments)}},2282:(t,e,r)=>{"use strict";var n=r(69),s=r(4500),i=Function.prototype,o=n&&Object.getOwnPropertyDescriptor,a=s(i,"name"),c=a&&"something"===function(){}.name,u=a&&(!n||n&&o(i,"name").configurable);t.exports={EXISTS:a,PROPER:c,CONFIGURABLE:u}},6419:(t,e,r)=>{"use strict";var n=r(4120),s=r(6235);t.exports=function(t,e,r){try{return n(s(Object.getOwnPropertyDescriptor(t,e)[r]))}catch(t){}}},4914:(t,e,r)=>{"use strict";var n=r(9272),s=r(4120);t.exports=function(t){if("Function"===n(t))return s(t)}},4120:(t,e,r)=>{"use strict";var n=r(2784),s=Function.prototype,i=s.call,o=n&&s.bind.bind(i,i);t.exports=n?o:function(t){return function(){return i.apply(t,arguments)}}},150:(t,e,r)=>{"use strict";var n=r(7545),s=r(8576),i=r(6447),o=function(t){return i(t)?t:void 0};t.exports=function(t,e){return arguments.length<2?o(n[t])||o(s[t]):n[t]&&n[t][e]||s[t]&&s[t][e]}},8703:(t,e,r)=>{"use strict";var n=r(4696),s=r(5037),i=r(5646),o=r(7771),a=r(8182)("iterator");t.exports=function(t){if(!i(t))return s(t,a)||s(t,"@@iterator")||o[n(t)]}},1669:(t,e,r)=>{"use strict";var n=r(8922),s=r(6235),i=r(1138),o=r(9288),a=r(8703),c=TypeError;t.exports=function(t,e){var r=arguments.length<2?a(t):e;if(s(r))return i(n(r,t));throw new c(o(t)+" is not iterable")}},5037:(t,e,r)=>{"use strict";var n=r(6235),s=r(5646);t.exports=function(t,e){var r=t[e];return s(r)?void 0:n(r)}},8576:function(t,e,r){"use strict";var n=function(t){return t&&t.Math===Math&&t};t.exports=n("object"==typeof globalThis&&globalThis)||n("object"==typeof window&&window)||n("object"==typeof self&&self)||n("object"==typeof r.g&&r.g)||function(){return this}()||this||Function("return this")()},4500:(t,e,r)=>{"use strict";var n=r(4120),s=r(1795),i=n({}.hasOwnProperty);t.exports=Object.hasOwn||function(t,e){return i(s(t),e)}},4535:t=>{"use strict";t.exports={}},7403:(t,e,r)=>{"use strict";var n=r(150);t.exports=n("document","documentElement")},188:(t,e,r)=>{"use strict";var n=r(69),s=r(6192),i=r(7449);t.exports=!n&&!s((function(){return 7!==Object.defineProperty(i("div"),"a",{get:function(){return 7}}).a}))},2202:(t,e,r)=>{"use strict";var n=r(4120),s=r(6192),i=r(9272),o=Object,a=n("".split);t.exports=s((function(){return!o("z").propertyIsEnumerable(0)}))?function(t){return"String"===i(t)?a(t,""):o(t)}:o},2643:(t,e,r)=>{"use strict";var n=r(6447),s=r(5744),i=r(4469);t.exports=function(t,e,r){var o,a;return i&&n(o=e.constructor)&&o!==r&&s(a=o.prototype)&&a!==r.prototype&&i(t,a),t}},273:(t,e,r)=>{"use strict";var n=r(5744),s=r(8711);t.exports=function(t,e){n(e)&&"cause"in e&&s(t,"cause",e.cause)}},3326:(t,e,r)=>{"use strict";var n,s,i,o=r(5278),a=r(8576),c=r(5744),u=r(8711),l=r(4500),f=r(6434),p=r(9766),h=r(4535),y="Object already initialized",m=a.TypeError,v=a.WeakMap;if(o||f.state){var d=f.state||(f.state=new v);d.get=d.get,d.has=d.has,d.set=d.set,n=function(t,e){if(d.has(t))throw new m(y);return e.facade=t,d.set(t,e),e},s=function(t){return d.get(t)||{}},i=function(t){return d.has(t)}}else{var b=p("state");h[b]=!0,n=function(t,e){if(l(t,b))throw new m(y);return e.facade=t,u(t,b,e),e},s=function(t){return l(t,b)?t[b]:{}},i=function(t){return l(t,b)}}t.exports={set:n,get:s,has:i,enforce:function(t){return i(t)?s(t):n(t,{})},getterFor:function(t){return function(e){var r;if(!c(e)||(r=s(e)).type!==t)throw new m("Incompatible receiver, "+t+" required");return r}}}},6109:(t,e,r)=>{"use strict";var n=r(8182),s=r(7771),i=n("iterator"),o=Array.prototype;t.exports=function(t){return void 0!==t&&(s.Array===t||o[i]===t)}},6447:(t,e,r)=>{"use strict";var n=r(8382),s=n.all;t.exports=n.IS_HTMLDDA?function(t){return"function"==typeof t||t===s}:function(t){return"function"==typeof t}},9245:(t,e,r)=>{"use strict";var n=r(6192),s=r(6447),i=/#|\.prototype\./,o=function(t,e){var r=c[a(t)];return r===l||r!==u&&(s(e)?n(e):!!e)},a=o.normalize=function(t){return String(t).replace(i,".").toLowerCase()},c=o.data={},u=o.NATIVE="N",l=o.POLYFILL="P";t.exports=o},5646:t=>{"use strict";t.exports=function(t){return null==t}},5744:(t,e,r)=>{"use strict";var n=r(6447),s=r(8382),i=s.all;t.exports=s.IS_HTMLDDA?function(t){return"object"==typeof t?null!==t:n(t)||t===i}:function(t){return"object"==typeof t?null!==t:n(t)}},5546:t=>{"use strict";t.exports=!0},3236:(t,e,r)=>{"use strict";var n=r(150),s=r(6447),i=r(8902),o=r(615),a=Object;t.exports=o?function(t){return"symbol"==typeof t}:function(t){var e=n("Symbol");return s(e)&&i(e.prototype,a(t))}},3442:(t,e,r)=>{"use strict";var n=r(8043),s=r(8922),i=r(1138),o=r(9288),a=r(6109),c=r(4104),u=r(8902),l=r(1669),f=r(8703),p=r(6639),h=TypeError,y=function(t,e){this.stopped=t,this.result=e},m=y.prototype;t.exports=function(t,e,r){var v,d,b,g,x,w,j,E=r&&r.that,O=!(!r||!r.AS_ENTRIES),_=!(!r||!r.IS_RECORD),S=!(!r||!r.IS_ITERATOR),k=!(!r||!r.INTERRUPTED),A=n(e,E),P=function(t){return v&&p(v,"normal",t),new y(!0,t)},T=function(t){return O?(i(t),k?A(t[0],t[1],P):A(t[0],t[1])):k?A(t,P):A(t)};if(_)v=t.iterator;else if(S)v=t;else{if(!(d=f(t)))throw new h(o(t)+" is not iterable");if(a(d)){for(b=0,g=c(t);g>b;b++)if((x=T(t[b]))&&u(m,x))return x;return new y(!1)}v=l(t,d)}for(w=_?t.next:v.next;!(j=s(w,v)).done;){try{x=T(j.value)}catch(t){p(v,"throw",t)}if("object"==typeof x&&x&&u(m,x))return x}return new y(!1)}},6639:(t,e,r)=>{"use strict";var n=r(8922),s=r(1138),i=r(5037);t.exports=function(t,e,r){var o,a;s(t);try{if(!(o=i(t,"return"))){if("throw"===e)throw r;return r}o=n(o,t)}catch(t){a=!0,o=t}if("throw"===e)throw r;if(a)throw o;return s(o),r}},5695:(t,e,r)=>{"use strict";var n=r(4413).IteratorPrototype,s=r(2853),i=r(774),o=r(1284),a=r(7771),c=function(){return this};t.exports=function(t,e,r,u){var l=e+" Iterator";return t.prototype=s(n,{next:i(+!u,r)}),o(t,l,!1,!0),a[l]=c,t}},5297:(t,e,r)=>{"use strict";var n=r(3085),s=r(8922),i=r(5546),o=r(2282),a=r(6447),c=r(5695),u=r(9341),l=r(4469),f=r(1284),p=r(8711),h=r(9362),y=r(8182),m=r(7771),v=r(4413),d=o.PROPER,b=o.CONFIGURABLE,g=v.IteratorPrototype,x=v.BUGGY_SAFARI_ITERATORS,w=y("iterator"),j="keys",E="values",O="entries",_=function(){return this};t.exports=function(t,e,r,o,y,v,S){c(r,e,o);var k,A,P,T=function(t){if(t===y&&N)return N;if(!x&&t&&t in R)return R[t];switch(t){case j:case E:case O:return function(){return new r(this,t)}}return function(){return new r(this)}},M=e+" Iterator",C=!1,R=t.prototype,I=R[w]||R["@@iterator"]||y&&R[y],N=!x&&I||T(y),V="Array"===e&&R.entries||I;if(V&&(k=u(V.call(new t)))!==Object.prototype&&k.next&&(i||u(k)===g||(l?l(k,g):a(k[w])||h(k,w,_)),f(k,M,!0,!0),i&&(m[M]=_)),d&&y===E&&I&&I.name!==E&&(!i&&b?p(R,"name",E):(C=!0,N=function(){return s(I,this)})),y)if(A={values:T(E),keys:v?N:T(j),entries:T(O)},S)for(P in A)(x||C||!(P in R))&&h(R,P,A[P]);else n({target:e,proto:!0,forced:x||C},A);return i&&!S||R[w]===N||h(R,w,N,{name:y}),m[e]=N,A}},4413:(t,e,r)=>{"use strict";var n,s,i,o=r(6192),a=r(6447),c=r(5744),u=r(2853),l=r(9341),f=r(9362),p=r(8182),h=r(5546),y=p("iterator"),m=!1;[].keys&&("next"in(i=[].keys())?(s=l(l(i)))!==Object.prototype&&(n=s):m=!0),!c(n)||o((function(){var t={};return n[y].call(t)!==t}))?n={}:h&&(n=u(n)),a(n[y])||f(n,y,(function(){return this})),t.exports={IteratorPrototype:n,BUGGY_SAFARI_ITERATORS:m}},7771:t=>{"use strict";t.exports={}},4104:(t,e,r)=>{"use strict";var n=r(8445);t.exports=function(t){return n(t.length)}},7679:t=>{"use strict";var e=Math.ceil,r=Math.floor;t.exports=Math.trunc||function(t){var n=+t;return(n>0?r:e)(n)}},6016:(t,e,r)=>{"use strict";var n=r(4845);t.exports=function(t,e){return void 0===t?arguments.length<2?"":e:n(t)}},2853:(t,e,r)=>{"use strict";var n,s=r(1138),i=r(1187),o=r(2952),a=r(4535),c=r(7403),u=r(7449),l=r(9766),f="prototype",p="script",h=l("IE_PROTO"),y=function(){},m=function(t){return"<"+p+">"+t+"</"+p+">"},v=function(t){t.write(m("")),t.close();var e=t.parentWindow.Object;return t=null,e},d=function(){try{n=new ActiveXObject("htmlfile")}catch(t){}var t,e,r;d="undefined"!=typeof document?document.domain&&n?v(n):(e=u("iframe"),r="java"+p+":",e.style.display="none",c.appendChild(e),e.src=String(r),(t=e.contentWindow.document).open(),t.write(m("document.F=Object")),t.close(),t.F):v(n);for(var s=o.length;s--;)delete d[f][o[s]];return d()};a[h]=!0,t.exports=Object.create||function(t,e){var r;return null!==t?(y[f]=s(t),r=new y,y[f]=null,r[h]=t):r=d(),void 0===e?r:i.f(r,e)}},1187:(t,e,r)=>{"use strict";var n=r(69),s=r(9600),i=r(2760),o=r(1138),a=r(101),c=r(7653);e.f=n&&!s?Object.defineProperties:function(t,e){o(t);for(var r,n=a(e),s=c(e),u=s.length,l=0;u>l;)i.f(t,r=s[l++],n[r]);return t}},2760:(t,e,r)=>{"use strict";var n=r(69),s=r(188),i=r(9600),o=r(1138),a=r(77),c=TypeError,u=Object.defineProperty,l=Object.getOwnPropertyDescriptor,f="enumerable",p="configurable",h="writable";e.f=n?i?function(t,e,r){if(o(t),e=a(e),o(r),"function"==typeof t&&"prototype"===e&&"value"in r&&h in r&&!r[h]){var n=l(t,e);n&&n[h]&&(t[e]=r.value,r={configurable:p in r?r[p]:n[p],enumerable:f in r?r[f]:n[f],writable:!1})}return u(t,e,r)}:u:function(t,e,r){if(o(t),e=a(e),o(r),s)try{return u(t,e,r)}catch(t){}if("get"in r||"set"in r)throw new c("Accessors not supported");return"value"in r&&(t[e]=r.value),t}},5141:(t,e,r)=>{"use strict";var n=r(69),s=r(8922),i=r(6007),o=r(774),a=r(101),c=r(77),u=r(4500),l=r(188),f=Object.getOwnPropertyDescriptor;e.f=n?f:function(t,e){if(t=a(t),e=c(e),l)try{return f(t,e)}catch(t){}if(u(t,e))return o(!s(i.f,t,e),t[e])}},2092:(t,e,r)=>{"use strict";var n=r(7934),s=r(2952).concat("length","prototype");e.f=Object.getOwnPropertyNames||function(t){return n(t,s)}},4750:(t,e)=>{"use strict";e.f=Object.getOwnPropertySymbols},9341:(t,e,r)=>{"use strict";var n=r(4500),s=r(6447),i=r(1795),o=r(9766),a=r(4635),c=o("IE_PROTO"),u=Object,l=u.prototype;t.exports=a?u.getPrototypeOf:function(t){var e=i(t);if(n(e,c))return e[c];var r=e.constructor;return s(r)&&e instanceof r?r.prototype:e instanceof u?l:null}},8902:(t,e,r)=>{"use strict";var n=r(4120);t.exports=n({}.isPrototypeOf)},7934:(t,e,r)=>{"use strict";var n=r(4120),s=r(4500),i=r(101),o=r(8180).indexOf,a=r(4535),c=n([].push);t.exports=function(t,e){var r,n=i(t),u=0,l=[];for(r in n)!s(a,r)&&s(n,r)&&c(l,r);for(;e.length>u;)s(n,r=e[u++])&&(~o(l,r)||c(l,r));return l}},7653:(t,e,r)=>{"use strict";var n=r(7934),s=r(2952);t.exports=Object.keys||function(t){return n(t,s)}},6007:(t,e)=>{"use strict";var r={}.propertyIsEnumerable,n=Object.getOwnPropertyDescriptor,s=n&&!r.call({1:2},1);e.f=s?function(t){var e=n(this,t);return!!e&&e.enumerable}:r},4469:(t,e,r)=>{"use strict";var n=r(6419),s=r(1138),i=r(7757);t.exports=Object.setPrototypeOf||("__proto__"in{}?function(){var t,e=!1,r={};try{(t=n(Object.prototype,"__proto__","set"))(r,[]),e=r instanceof Array}catch(t){}return function(r,n){return s(r),i(n),e?t(r,n):r.__proto__=n,r}}():void 0)},158:(t,e,r)=>{"use strict";var n=r(3471),s=r(4696);t.exports=n?{}.toString:function(){return"[object "+s(this)+"]"}},380:(t,e,r)=>{"use strict";var n=r(8922),s=r(6447),i=r(5744),o=TypeError;t.exports=function(t,e){var r,a;if("string"===e&&s(r=t.toString)&&!i(a=n(r,t)))return a;if(s(r=t.valueOf)&&!i(a=n(r,t)))return a;if("string"!==e&&s(r=t.toString)&&!i(a=n(r,t)))return a;throw new o("Can't convert object to primitive value")}},3011:(t,e,r)=>{"use strict";var n=r(150),s=r(4120),i=r(2092),o=r(4750),a=r(1138),c=s([].concat);t.exports=n("Reflect","ownKeys")||function(t){var e=i.f(a(t)),r=o.f;return r?c(e,r(t)):e}},7545:t=>{"use strict";t.exports={}},7656:(t,e,r)=>{"use strict";var n=r(2760).f;t.exports=function(t,e,r){r in t||n(t,r,{configurable:!0,get:function(){return e[r]},set:function(t){e[r]=t}})}},3209:(t,e,r)=>{"use strict";var n=r(5646),s=TypeError;t.exports=function(t){if(n(t))throw new s("Can't call method on "+t);return t}},1284:(t,e,r)=>{"use strict";var n=r(3471),s=r(2760).f,i=r(8711),o=r(4500),a=r(158),c=r(8182)("toStringTag");t.exports=function(t,e,r,u){if(t){var l=r?t:t.prototype;o(l,c)||s(l,c,{configurable:!0,value:e}),u&&!n&&i(l,"toString",a)}}},9766:(t,e,r)=>{"use strict";var n=r(8717),s=r(2759),i=n("keys");t.exports=function(t){return i[t]||(i[t]=s(t))}},6434:(t,e,r)=>{"use strict";var n=r(8576),s=r(5098),i="__core-js_shared__",o=n[i]||s(i,{});t.exports=o},8717:(t,e,r)=>{"use strict";var n=r(5546),s=r(6434);(t.exports=function(t,e){return s[t]||(s[t]=void 0!==e?e:{})})("versions",[]).push({version:"3.33.0",mode:n?"pure":"global",copyright:"© 2014-2023 Denis Pushkarev (zloirock.ru)",license:"https://github.com/zloirock/core-js/blob/v3.33.0/LICENSE",source:"https://github.com/zloirock/core-js"})},863:(t,e,r)=>{"use strict";var n=r(4120),s=r(1941),i=r(4845),o=r(3209),a=n("".charAt),c=n("".charCodeAt),u=n("".slice),l=function(t){return function(e,r){var n,l,f=i(o(e)),p=s(r),h=f.length;return p<0||p>=h?t?"":void 0:(n=c(f,p))<55296||n>56319||p+1===h||(l=c(f,p+1))<56320||l>57343?t?a(f,p):n:t?u(f,p,p+2):l-56320+(n-55296<<10)+65536}};t.exports={codeAt:l(!1),charAt:l(!0)}},6770:(t,e,r)=>{"use strict";var n=r(4218),s=r(6192),i=r(8576).String;t.exports=!!Object.getOwnPropertySymbols&&!s((function(){var t=Symbol("symbol detection");return!i(t)||!(Object(t)instanceof Symbol)||!Symbol.sham&&n&&n<41}))},7739:(t,e,r)=>{"use strict";var n=r(1941),s=Math.max,i=Math.min;t.exports=function(t,e){var r=n(t);return r<0?s(r+e,0):i(r,e)}},101:(t,e,r)=>{"use strict";var n=r(2202),s=r(3209);t.exports=function(t){return n(s(t))}},1941:(t,e,r)=>{"use strict";var n=r(7679);t.exports=function(t){var e=+t;return e!=e||0===e?0:n(e)}},8445:(t,e,r)=>{"use strict";var n=r(1941),s=Math.min;t.exports=function(t){return t>0?s(n(t),9007199254740991):0}},1795:(t,e,r)=>{"use strict";var n=r(3209),s=Object;t.exports=function(t){return s(n(t))}},7888:(t,e,r)=>{"use strict";var n=r(8922),s=r(5744),i=r(3236),o=r(5037),a=r(380),c=r(8182),u=TypeError,l=c("toPrimitive");t.exports=function(t,e){if(!s(t)||i(t))return t;var r,c=o(t,l);if(c){if(void 0===e&&(e="default"),r=n(c,t,e),!s(r)||i(r))return r;throw new u("Can't convert object to primitive value")}return void 0===e&&(e="number"),a(t,e)}},77:(t,e,r)=>{"use strict";var n=r(7888),s=r(3236);t.exports=function(t){var e=n(t,"string");return s(e)?e:e+""}},3471:(t,e,r)=>{"use strict";var n={};n[r(8182)("toStringTag")]="z",t.exports="[object z]"===String(n)},4845:(t,e,r)=>{"use strict";var n=r(4696),s=String;t.exports=function(t){if("Symbol"===n(t))throw new TypeError("Cannot convert a Symbol value to a string");return s(t)}},9288:t=>{"use strict";var e=String;t.exports=function(t){try{return e(t)}catch(t){return"Object"}}},2759:(t,e,r)=>{"use strict";var n=r(4120),s=0,i=Math.random(),o=n(1..toString);t.exports=function(t){return"Symbol("+(void 0===t?"":t)+")_"+o(++s+i,36)}},615:(t,e,r)=>{"use strict";var n=r(6770);t.exports=n&&!Symbol.sham&&"symbol"==typeof Symbol.iterator},9600:(t,e,r)=>{"use strict";var n=r(69),s=r(6192);t.exports=n&&s((function(){return 42!==Object.defineProperty((function(){}),"prototype",{value:42,writable:!1}).prototype}))},5278:(t,e,r)=>{"use strict";var n=r(8576),s=r(6447),i=n.WeakMap;t.exports=s(i)&&/native code/.test(String(i))},8182:(t,e,r)=>{"use strict";var n=r(8576),s=r(8717),i=r(4500),o=r(2759),a=r(6770),c=r(615),u=n.Symbol,l=s("wks"),f=c?u.for||u:u&&u.withoutSetter||o;t.exports=function(t){return i(l,t)||(l[t]=a&&i(u,t)?u[t]:f("Symbol."+t)),l[t]}},426:(t,e,r)=>{"use strict";var n=r(150),s=r(4500),i=r(8711),o=r(8902),a=r(4469),c=r(7987),u=r(7656),l=r(2643),f=r(6016),p=r(273),h=r(8266),y=r(69),m=r(5546);t.exports=function(t,e,r,v){var d="stackTraceLimit",b=v?2:1,g=t.split("."),x=g[g.length-1],w=n.apply(null,g);if(w){var j=w.prototype;if(!m&&s(j,"cause")&&delete j.cause,!r)return w;var E=n("Error"),O=e((function(t,e){var r=f(v?e:t,void 0),n=v?new w(t):new w;return void 0!==r&&i(n,"message",r),h(n,O,n.stack,2),this&&o(j,this)&&l(n,this,O),arguments.length>b&&p(n,arguments[b]),n}));if(O.prototype=j,"Error"!==x?a?a(O,E):c(O,E,{name:!0}):y&&d in w&&(u(O,w,d),u(O,w,"prepareStackTrace")),c(O,w),!m)try{j.name!==x&&i(j,"name",x),j.constructor=O}catch(t){}return O}}},4016:(t,e,r)=>{"use strict";var n=r(3085),s=r(150),i=r(6298),o=r(6192),a=r(426),c="AggregateError",u=s(c),l=!o((function(){return 1!==u([1]).errors[0]}))&&o((function(){return 7!==u([1],c,{cause:7}).cause}));n({global:!0,constructor:!0,arity:2,forced:l},{AggregateError:a(c,(function(t){return function(e,r){return i(t,this,arguments)}}),l,!0)})},3820:(t,e,r)=>{"use strict";var n=r(3085),s=r(8902),i=r(9341),o=r(4469),a=r(7987),c=r(2853),u=r(8711),l=r(774),f=r(273),p=r(8266),h=r(3442),y=r(6016),m=r(8182)("toStringTag"),v=Error,d=[].push,b=function(t,e){var r,n=s(g,this);o?r=o(new v,n?i(this):g):(r=n?this:c(g),u(r,m,"Error")),void 0!==e&&u(r,"message",y(e)),p(r,b,r.stack,1),arguments.length>2&&f(r,arguments[2]);var a=[];return h(t,d,{that:a}),u(r,"errors",a),r};o?o(b,v):a(b,v,{name:!0});var g=b.prototype=c(v.prototype,{constructor:l(1,b),message:l(1,""),name:l(1,"AggregateError")});n({global:!0,constructor:!0,arity:2},{AggregateError:b})},4242:(t,e,r)=>{"use strict";r(3820)},8939:(t,e,r)=>{"use strict";var n=r(101),s=r(7423),i=r(7771),o=r(3326),a=r(2760).f,c=r(5297),u=r(7271),l=r(5546),f=r(69),p="Array Iterator",h=o.set,y=o.getterFor(p);t.exports=c(Array,"Array",(function(t,e){h(this,{type:p,target:n(t),index:0,kind:e})}),(function(){var t=y(this),e=t.target,r=t.kind,n=t.index++;if(!e||n>=e.length)return t.target=void 0,u(void 0,!0);switch(r){case"keys":return u(n,!1);case"values":return u(e[n],!1)}return u([n,e[n]],!1)}),"values");var m=i.Arguments=i.Array;if(s("keys"),s("values"),s("entries"),!l&&f&&"values"!==m.name)try{a(m,"name",{value:"values"})}catch(t){}},4339:(t,e,r)=>{"use strict";var n=r(3085),s=r(8576),i=r(6298),o=r(426),a="WebAssembly",c=s[a],u=7!==new Error("e",{cause:7}).cause,l=function(t,e){var r={};r[t]=o(t,e,u),n({global:!0,constructor:!0,arity:1,forced:u},r)},f=function(t,e){if(c&&c[t]){var r={};r[t]=o(a+"."+t,e,u),n({target:a,stat:!0,constructor:!0,arity:1,forced:u},r)}};l("Error",(function(t){return function(e){return i(t,this,arguments)}})),l("EvalError",(function(t){return function(e){return i(t,this,arguments)}})),l("RangeError",(function(t){return function(e){return i(t,this,arguments)}})),l("ReferenceError",(function(t){return function(e){return i(t,this,arguments)}})),l("SyntaxError",(function(t){return function(e){return i(t,this,arguments)}})),l("TypeError",(function(t){return function(e){return i(t,this,arguments)}})),l("URIError",(function(t){return function(e){return i(t,this,arguments)}})),f("CompileError",(function(t){return function(e){return i(t,this,arguments)}})),f("LinkError",(function(t){return function(e){return i(t,this,arguments)}})),f("RuntimeError",(function(t){return function(e){return i(t,this,arguments)}}))},5454:(t,e,r)=>{"use strict";var n=r(863).charAt,s=r(4845),i=r(3326),o=r(5297),a=r(7271),c="String Iterator",u=i.set,l=i.getterFor(c);o(String,"String",(function(t){u(this,{type:c,string:s(t),index:0})}),(function(){var t,e=l(this),r=e.string,s=e.index;return s>=r.length?a(void 0,!0):(t=n(r,s),e.index+=t.length,a(t,!1))}))},2752:(t,e,r)=>{"use strict";r(4242)},162:(t,e,r)=>{"use strict";r(8939);var n=r(7365),s=r(8576),i=r(4696),o=r(8711),a=r(7771),c=r(8182)("toStringTag");for(var u in n){var l=s[u],f=l&&l.prototype;f&&i(f)!==c&&o(f,c,u),a[u]=a.Array}},5846:(t,e,r)=>{"use strict";r(2752);var n=r(6791);r(162),t.exports=n},9515:(t,e,r)=>{var n=r(8761)(r(7772),"DataView");t.exports=n},9612:(t,e,r)=>{var n=r(2118),s=r(6909),i=r(8138),o=r(4174),a=r(7942);function c(t){var e=-1,r=null==t?0:t.length;for(this.clear();++e<r;){var n=t[e];this.set(n[0],n[1])}}c.prototype.clear=n,c.prototype.delete=s,c.prototype.get=i,c.prototype.has=o,c.prototype.set=a,t.exports=c},235:(t,e,r)=>{var n=r(3945),s=r(1846),i=r(8028),o=r(2344),a=r(4769);function c(t){var e=-1,r=null==t?0:t.length;for(this.clear();++e<r;){var n=t[e];this.set(n[0],n[1])}}c.prototype.clear=n,c.prototype.delete=s,c.prototype.get=i,c.prototype.has=o,c.prototype.set=a,t.exports=c},326:(t,e,r)=>{var n=r(8761)(r(7772),"Map");t.exports=n},6738:(t,e,r)=>{var n=r(2411),s=r(6417),i=r(6928),o=r(9493),a=r(4150);function c(t){var e=-1,r=null==t?0:t.length;for(this.clear();++e<r;){var n=t[e];this.set(n[0],n[1])}}c.prototype.clear=n,c.prototype.delete=s,c.prototype.get=i,c.prototype.has=o,c.prototype.set=a,t.exports=c},1985:(t,e,r)=>{var n=r(8761)(r(7772),"Promise");t.exports=n},2143:(t,e,r)=>{var n=r(8761)(r(7772),"Set");t.exports=n},5386:(t,e,r)=>{var n=r(6738),s=r(2842),i=r(2482);function o(t){var e=-1,r=null==t?0:t.length;for(this.__data__=new n;++e<r;)this.add(t[e])}o.prototype.add=o.prototype.push=s,o.prototype.has=i,t.exports=o},6571:(t,e,r)=>{var n=r(235),s=r(5243),i=r(2858),o=r(4417),a=r(8605),c=r(1418);function u(t){var e=this.__data__=new n(t);this.size=e.size}u.prototype.clear=s,u.prototype.delete=i,u.prototype.get=o,u.prototype.has=a,u.prototype.set=c,t.exports=u},857:(t,e,r)=>{var n=r(7772).Symbol;t.exports=n},9162:(t,e,r)=>{var n=r(7772).Uint8Array;t.exports=n},3215:(t,e,r)=>{var n=r(8761)(r(7772),"WeakMap");t.exports=n},7552:t=>{t.exports=function(t,e){for(var r=-1,n=null==t?0:t.length,s=0,i=[];++r<n;){var o=t[r];e(o,r,t)&&(i[s++]=o)}return i}},1634:(t,e,r)=>{var n=r(6473),s=r(9631),i=r(6152),o=r(3226),a=r(9045),c=r(7598),u=Object.prototype.hasOwnProperty;t.exports=function(t,e){var r=i(t),l=!r&&s(t),f=!r&&!l&&o(t),p=!r&&!l&&!f&&c(t),h=r||l||f||p,y=h?n(t.length,String):[],m=y.length;for(var v in t)!e&&!u.call(t,v)||h&&("length"==v||f&&("offset"==v||"parent"==v)||p&&("buffer"==v||"byteLength"==v||"byteOffset"==v)||a(v,m))||y.push(v);return y}},5067:t=>{t.exports=function(t,e){for(var r=-1,n=e.length,s=t.length;++r<n;)t[s+r]=e[r];return t}},7064:t=>{t.exports=function(t,e){for(var r=-1,n=null==t?0:t.length;++r<n;)if(e(t[r],r,t))return!0;return!1}},2218:(t,e,r)=>{var n=r(1225);t.exports=function(t,e){for(var r=t.length;r--;)if(n(t[r][0],e))return r;return-1}},1897:(t,e,r)=>{var n=r(5067),s=r(6152);t.exports=function(t,e,r){var i=e(t);return s(t)?i:n(i,r(t))}},3366:(t,e,r)=>{var n=r(857),s=r(2107),i=r(7157),o=n?n.toStringTag:void 0;t.exports=function(t){return null==t?void 0===t?"[object Undefined]":"[object Null]":o&&o in Object(t)?s(t):i(t)}},5183:(t,e,r)=>{var n=r(3366),s=r(5125);t.exports=function(t){return s(t)&&"[object Arguments]"==n(t)}},8746:(t,e,r)=>{var n=r(1952),s=r(5125);t.exports=function t(e,r,i,o,a){return e===r||(null==e||null==r||!s(e)&&!s(r)?e!=e&&r!=r:n(e,r,i,o,t,a))}},1952:(t,e,r)=>{var n=r(6571),s=r(4871),i=r(1491),o=r(7416),a=r(940),c=r(6152),u=r(3226),l=r(7598),f="[object Arguments]",p="[object Array]",h="[object Object]",y=Object.prototype.hasOwnProperty;t.exports=function(t,e,r,m,v,d){var b=c(t),g=c(e),x=b?p:a(t),w=g?p:a(e),j=(x=x==f?h:x)==h,E=(w=w==f?h:w)==h,O=x==w;if(O&&u(t)){if(!u(e))return!1;b=!0,j=!1}if(O&&!j)return d||(d=new n),b||l(t)?s(t,e,r,m,v,d):i(t,e,x,r,m,v,d);if(!(1&r)){var _=j&&y.call(t,"__wrapped__"),S=E&&y.call(e,"__wrapped__");if(_||S){var k=_?t.value():t,A=S?e.value():e;return d||(d=new n),v(k,A,r,m,d)}}return!!O&&(d||(d=new n),o(t,e,r,m,v,d))}},6840:(t,e,r)=>{var n=r(1049),s=r(7394),i=r(9259),o=r(7035),a=/^\[object .+?Constructor\]$/,c=Function.prototype,u=Object.prototype,l=c.toString,f=u.hasOwnProperty,p=RegExp("^"+l.call(f).replace(/[\\^$.*+?()[\]{}|]/g,"\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g,"$1.*?")+"$");t.exports=function(t){return!(!i(t)||s(t))&&(n(t)?p:a).test(o(t))}},5522:(t,e,r)=>{var n=r(3366),s=r(1158),i=r(5125),o={};o["[object Float32Array]"]=o["[object Float64Array]"]=o["[object Int8Array]"]=o["[object Int16Array]"]=o["[object Int32Array]"]=o["[object Uint8Array]"]=o["[object Uint8ClampedArray]"]=o["[object Uint16Array]"]=o["[object Uint32Array]"]=!0,o["[object Arguments]"]=o["[object Array]"]=o["[object ArrayBuffer]"]=o["[object Boolean]"]=o["[object DataView]"]=o["[object Date]"]=o["[object Error]"]=o["[object Function]"]=o["[object Map]"]=o["[object Number]"]=o["[object Object]"]=o["[object RegExp]"]=o["[object Set]"]=o["[object String]"]=o["[object WeakMap]"]=!1,t.exports=function(t){return i(t)&&s(t.length)&&!!o[n(t)]}},6411:(t,e,r)=>{var n=r(6001),s=r(4248),i=Object.prototype.hasOwnProperty;t.exports=function(t){if(!n(t))return s(t);var e=[];for(var r in Object(t))i.call(t,r)&&"constructor"!=r&&e.push(r);return e}},6473:t=>{t.exports=function(t,e){for(var r=-1,n=Array(t);++r<t;)n[r]=e(r);return n}},7826:t=>{t.exports=function(t){return function(e){return t(e)}}},9950:t=>{t.exports=function(t,e){return t.has(e)}},4019:(t,e,r)=>{var n=r(7772)["__core-js_shared__"];t.exports=n},4871:(t,e,r)=>{var n=r(5386),s=r(7064),i=r(9950);t.exports=function(t,e,r,o,a,c){var u=1&r,l=t.length,f=e.length;if(l!=f&&!(u&&f>l))return!1;var p=c.get(t),h=c.get(e);if(p&&h)return p==e&&h==t;var y=-1,m=!0,v=2&r?new n:void 0;for(c.set(t,e),c.set(e,t);++y<l;){var d=t[y],b=e[y];if(o)var g=u?o(b,d,y,e,t,c):o(d,b,y,t,e,c);if(void 0!==g){if(g)continue;m=!1;break}if(v){if(!s(e,(function(t,e){if(!i(v,e)&&(d===t||a(d,t,r,o,c)))return v.push(e)}))){m=!1;break}}else if(d!==b&&!a(d,b,r,o,c)){m=!1;break}}return c.delete(t),c.delete(e),m}},1491:(t,e,r)=>{var n=r(857),s=r(9162),i=r(1225),o=r(4871),a=r(5179),c=r(4207),u=n?n.prototype:void 0,l=u?u.valueOf:void 0;t.exports=function(t,e,r,n,u,f,p){switch(r){case"[object DataView]":if(t.byteLength!=e.byteLength||t.byteOffset!=e.byteOffset)return!1;t=t.buffer,e=e.buffer;case"[object ArrayBuffer]":return!(t.byteLength!=e.byteLength||!f(new s(t),new s(e)));case"[object Boolean]":case"[object Date]":case"[object Number]":return i(+t,+e);case"[object Error]":return t.name==e.name&&t.message==e.message;case"[object RegExp]":case"[object String]":return t==e+"";case"[object Map]":var h=a;case"[object Set]":var y=1&n;if(h||(h=c),t.size!=e.size&&!y)return!1;var m=p.get(t);if(m)return m==e;n|=2,p.set(t,e);var v=o(h(t),h(e),n,u,f,p);return p.delete(t),v;case"[object Symbol]":if(l)return l.call(t)==l.call(e)}return!1}},7416:(t,e,r)=>{var n=r(3483),s=Object.prototype.hasOwnProperty;t.exports=function(t,e,r,i,o,a){var c=1&r,u=n(t),l=u.length;if(l!=n(e).length&&!c)return!1;for(var f=l;f--;){var p=u[f];if(!(c?p in e:s.call(e,p)))return!1}var h=a.get(t),y=a.get(e);if(h&&y)return h==e&&y==t;var m=!0;a.set(t,e),a.set(e,t);for(var v=c;++f<l;){var d=t[p=u[f]],b=e[p];if(i)var g=c?i(b,d,p,e,t,a):i(d,b,p,t,e,a);if(!(void 0===g?d===b||o(d,b,r,i,a):g)){m=!1;break}v||(v="constructor"==p)}if(m&&!v){var x=t.constructor,w=e.constructor;x==w||!("constructor"in t)||!("constructor"in e)||"function"==typeof x&&x instanceof x&&"function"==typeof w&&w instanceof w||(m=!1)}return a.delete(t),a.delete(e),m}},1242:(t,e,r)=>{var n="object"==typeof r.g&&r.g&&r.g.Object===Object&&r.g;t.exports=n},3483:(t,e,r)=>{var n=r(1897),s=r(633),i=r(249);t.exports=function(t){return n(t,i,s)}},7937:(t,e,r)=>{var n=r(8304);t.exports=function(t,e){var r=t.__data__;return n(e)?r["string"==typeof e?"string":"hash"]:r.map}},8761:(t,e,r)=>{var n=r(6840),s=r(8109);t.exports=function(t,e){var r=s(t,e);return n(r)?r:void 0}},2107:(t,e,r)=>{var n=r(857),s=Object.prototype,i=s.hasOwnProperty,o=s.toString,a=n?n.toStringTag:void 0;t.exports=function(t){var e=i.call(t,a),r=t[a];try{t[a]=void 0;var n=!0}catch(t){}var s=o.call(t);return n&&(e?t[a]=r:delete t[a]),s}},633:(t,e,r)=>{var n=r(7552),s=r(981),i=Object.prototype.propertyIsEnumerable,o=Object.getOwnPropertySymbols,a=o?function(t){return null==t?[]:(t=Object(t),n(o(t),(function(e){return i.call(t,e)})))}:s;t.exports=a},940:(t,e,r)=>{var n=r(9515),s=r(326),i=r(1985),o=r(2143),a=r(3215),c=r(3366),u=r(7035),l="[object Map]",f="[object Promise]",p="[object Set]",h="[object WeakMap]",y="[object DataView]",m=u(n),v=u(s),d=u(i),b=u(o),g=u(a),x=c;(n&&x(new n(new ArrayBuffer(1)))!=y||s&&x(new s)!=l||i&&x(i.resolve())!=f||o&&x(new o)!=p||a&&x(new a)!=h)&&(x=function(t){var e=c(t),r="[object Object]"==e?t.constructor:void 0,n=r?u(r):"";if(n)switch(n){case m:return y;case v:return l;case d:return f;case b:return p;case g:return h}return e}),t.exports=x},8109:t=>{t.exports=function(t,e){return null==t?void 0:t[e]}},2118:(t,e,r)=>{var n=r(9191);t.exports=function(){this.__data__=n?n(null):{},this.size=0}},6909:t=>{t.exports=function(t){var e=this.has(t)&&delete this.__data__[t];return this.size-=e?1:0,e}},8138:(t,e,r)=>{var n=r(9191),s=Object.prototype.hasOwnProperty;t.exports=function(t){var e=this.__data__;if(n){var r=e[t];return"__lodash_hash_undefined__"===r?void 0:r}return s.call(e,t)?e[t]:void 0}},4174:(t,e,r)=>{var n=r(9191),s=Object.prototype.hasOwnProperty;t.exports=function(t){var e=this.__data__;return n?void 0!==e[t]:s.call(e,t)}},7942:(t,e,r)=>{var n=r(9191);t.exports=function(t,e){var r=this.__data__;return this.size+=this.has(t)?0:1,r[t]=n&&void 0===e?"__lodash_hash_undefined__":e,this}},9045:t=>{var e=/^(?:0|[1-9]\d*)$/;t.exports=function(t,r){var n=typeof t;return!!(r=null==r?9007199254740991:r)&&("number"==n||"symbol"!=n&&e.test(t))&&t>-1&&t%1==0&&t<r}},8304:t=>{t.exports=function(t){var e=typeof t;return"string"==e||"number"==e||"symbol"==e||"boolean"==e?"__proto__"!==t:null===t}},7394:(t,e,r)=>{var n,s=r(4019),i=(n=/[^.]+$/.exec(s&&s.keys&&s.keys.IE_PROTO||""))?"Symbol(src)_1."+n:"";t.exports=function(t){return!!i&&i in t}},6001:t=>{var e=Object.prototype;t.exports=function(t){var r=t&&t.constructor;return t===("function"==typeof r&&r.prototype||e)}},3945:t=>{t.exports=function(){this.__data__=[],this.size=0}},1846:(t,e,r)=>{var n=r(2218),s=Array.prototype.splice;t.exports=function(t){var e=this.__data__,r=n(e,t);return!(r<0)&&(r==e.length-1?e.pop():s.call(e,r,1),--this.size,!0)}},8028:(t,e,r)=>{var n=r(2218);t.exports=function(t){var e=this.__data__,r=n(e,t);return r<0?void 0:e[r][1]}},2344:(t,e,r)=>{var n=r(2218);t.exports=function(t){return n(this.__data__,t)>-1}},4769:(t,e,r)=>{var n=r(2218);t.exports=function(t,e){var r=this.__data__,s=n(r,t);return s<0?(++this.size,r.push([t,e])):r[s][1]=e,this}},2411:(t,e,r)=>{var n=r(9612),s=r(235),i=r(326);t.exports=function(){this.size=0,this.__data__={hash:new n,map:new(i||s),string:new n}}},6417:(t,e,r)=>{var n=r(7937);t.exports=function(t){var e=n(this,t).delete(t);return this.size-=e?1:0,e}},6928:(t,e,r)=>{var n=r(7937);t.exports=function(t){return n(this,t).get(t)}},9493:(t,e,r)=>{var n=r(7937);t.exports=function(t){return n(this,t).has(t)}},4150:(t,e,r)=>{var n=r(7937);t.exports=function(t,e){var r=n(this,t),s=r.size;return r.set(t,e),this.size+=r.size==s?0:1,this}},5179:t=>{t.exports=function(t){var e=-1,r=Array(t.size);return t.forEach((function(t,n){r[++e]=[n,t]})),r}},9191:(t,e,r)=>{var n=r(8761)(Object,"create");t.exports=n},4248:(t,e,r)=>{var n=r(241)(Object.keys,Object);t.exports=n},4146:(t,e,r)=>{t=r.nmd(t);var n=r(1242),s=e&&!e.nodeType&&e,i=s&&t&&!t.nodeType&&t,o=i&&i.exports===s&&n.process,a=function(){try{var t=i&&i.require&&i.require("util").types;return t||o&&o.binding&&o.binding("util")}catch(t){}}();t.exports=a},7157:t=>{var e=Object.prototype.toString;t.exports=function(t){return e.call(t)}},241:t=>{t.exports=function(t,e){return function(r){return t(e(r))}}},7772:(t,e,r)=>{var n=r(1242),s="object"==typeof self&&self&&self.Object===Object&&self,i=n||s||Function("return this")();t.exports=i},2842:t=>{t.exports=function(t){return this.__data__.set(t,"__lodash_hash_undefined__"),this}},2482:t=>{t.exports=function(t){return this.__data__.has(t)}},4207:t=>{t.exports=function(t){var e=-1,r=Array(t.size);return t.forEach((function(t){r[++e]=t})),r}},5243:(t,e,r)=>{var n=r(235);t.exports=function(){this.__data__=new n,this.size=0}},2858:t=>{t.exports=function(t){var e=this.__data__,r=e.delete(t);return this.size=e.size,r}},4417:t=>{t.exports=function(t){return this.__data__.get(t)}},8605:t=>{t.exports=function(t){return this.__data__.has(t)}},1418:(t,e,r)=>{var n=r(235),s=r(326),i=r(6738);t.exports=function(t,e){var r=this.__data__;if(r instanceof n){var o=r.__data__;if(!s||o.length<199)return o.push([t,e]),this.size=++r.size,this;r=this.__data__=new i(o)}return r.set(t,e),this.size=r.size,this}},7035:t=>{var e=Function.prototype.toString;t.exports=function(t){if(null!=t){try{return e.call(t)}catch(t){}try{return t+""}catch(t){}}return""}},1225:t=>{t.exports=function(t,e){return t===e||t!=t&&e!=e}},9631:(t,e,r)=>{var n=r(5183),s=r(5125),i=Object.prototype,o=i.hasOwnProperty,a=i.propertyIsEnumerable,c=n(function(){return arguments}())?n:function(t){return s(t)&&o.call(t,"callee")&&!a.call(t,"callee")};t.exports=c},6152:t=>{var e=Array.isArray;t.exports=e},7878:(t,e,r)=>{var n=r(1049),s=r(1158);t.exports=function(t){return null!=t&&s(t.length)&&!n(t)}},4335:(t,e,r)=>{var n=r(3366),s=r(5125);t.exports=function(t){return!0===t||!1===t||s(t)&&"[object Boolean]"==n(t)}},3226:(t,e,r)=>{t=r.nmd(t);var n=r(7772),s=r(6330),i=e&&!e.nodeType&&e,o=i&&t&&!t.nodeType&&t,a=o&&o.exports===i?n.Buffer:void 0,c=(a?a.isBuffer:void 0)||s;t.exports=c},8149:(t,e,r)=>{var n=r(8746);t.exports=function(t,e){return n(t,e)}},1049:(t,e,r)=>{var n=r(3366),s=r(9259);t.exports=function(t){if(!s(t))return!1;var e=n(t);return"[object Function]"==e||"[object GeneratorFunction]"==e||"[object AsyncFunction]"==e||"[object Proxy]"==e}},1158:t=>{t.exports=function(t){return"number"==typeof t&&t>-1&&t%1==0&&t<=9007199254740991}},5877:t=>{t.exports=function(t){return null===t}},537:(t,e,r)=>{var n=r(3366),s=r(5125);t.exports=function(t){return"number"==typeof t||s(t)&&"[object Number]"==n(t)}},9259:t=>{t.exports=function(t){var e=typeof t;return null!=t&&("object"==e||"function"==e)}},5125:t=>{t.exports=function(t){return null!=t&&"object"==typeof t}},5505:(t,e,r)=>{var n=r(3366),s=r(6152),i=r(5125);t.exports=function(t){return"string"==typeof t||!s(t)&&i(t)&&"[object String]"==n(t)}},7598:(t,e,r)=>{var n=r(5522),s=r(7826),i=r(4146),o=i&&i.isTypedArray,a=o?s(o):n;t.exports=a},249:(t,e,r)=>{var n=r(1634),s=r(6411),i=r(7878);t.exports=function(t){return i(t)?n(t):s(t)}},1570:t=>{t.exports=function(t){if("function"!=typeof t)throw new TypeError("Expected a function");return function(){var e=arguments;switch(e.length){case 0:return!t.call(this);case 1:return!t.call(this,e[0]);case 2:return!t.call(this,e[0],e[1]);case 3:return!t.call(this,e[0],e[1],e[2])}return!t.apply(this,e)}}},981:t=>{t.exports=function(){return[]}},6330:t=>{t.exports=function(){return!1}},1178:(t,e,r)=>{const n=r(1570);function s(t){return"string"==typeof t?e=>e.element===t:t.constructor&&t.extend?e=>e instanceof t:t}class i{constructor(t){this.elements=t||[]}toValue(){return this.elements.map((t=>t.toValue()))}map(t,e){return this.elements.map(t,e)}flatMap(t,e){return this.map(t,e).reduce(((t,e)=>t.concat(e)),[])}compactMap(t,e){const r=[];return this.forEach((n=>{const s=t.bind(e)(n);s&&r.push(s)})),r}filter(t,e){return t=s(t),new i(this.elements.filter(t,e))}reject(t,e){return t=s(t),new i(this.elements.filter(n(t),e))}find(t,e){return t=s(t),this.elements.find(t,e)}forEach(t,e){this.elements.forEach(t,e)}reduce(t,e){return this.elements.reduce(t,e)}includes(t){return this.elements.some((e=>e.equals(t)))}shift(){return this.elements.shift()}unshift(t){this.elements.unshift(this.refract(t))}push(t){return this.elements.push(this.refract(t)),this}add(t){this.push(t)}get(t){return this.elements[t]}getValue(t){const e=this.elements[t];if(e)return e.toValue()}get length(){return this.elements.length}get isEmpty(){return 0===this.elements.length}get first(){return this.elements[0]}}"undefined"!=typeof Symbol&&(i.prototype[Symbol.iterator]=function(){return this.elements[Symbol.iterator]()}),t.exports=i},3026:t=>{class e{constructor(t,e){this.key=t,this.value=e}clone(){const t=new e;return this.key&&(t.key=this.key.clone()),this.value&&(t.value=this.value.clone()),t}}t.exports=e},5140:(t,e,r)=>{const n=r(5877),s=r(5505),i=r(537),o=r(4335),a=r(9259),c=r(2947),u=r(3756);class l{constructor(t){this.elementMap={},this.elementDetection=[],this.Element=u.Element,this.KeyValuePair=u.KeyValuePair,t&&t.noDefault||this.useDefault(),this._attributeElementKeys=[],this._attributeElementArrayKeys=[]}use(t){return t.namespace&&t.namespace({base:this}),t.load&&t.load({base:this}),this}useDefault(){return this.register("null",u.NullElement).register("string",u.StringElement).register("number",u.NumberElement).register("boolean",u.BooleanElement).register("array",u.ArrayElement).register("object",u.ObjectElement).register("member",u.MemberElement).register("ref",u.RefElement).register("link",u.LinkElement),this.detect(n,u.NullElement,!1).detect(s,u.StringElement,!1).detect(i,u.NumberElement,!1).detect(o,u.BooleanElement,!1).detect(Array.isArray,u.ArrayElement,!1).detect(a,u.ObjectElement,!1),this}register(t,e){return this._elements=void 0,this.elementMap[t]=e,this}unregister(t){return this._elements=void 0,delete this.elementMap[t],this}detect(t,e,r){return void 0===r||r?this.elementDetection.unshift([t,e]):this.elementDetection.push([t,e]),this}toElement(t){if(t instanceof this.Element)return t;let e;for(let r=0;r<this.elementDetection.length;r+=1){const n=this.elementDetection[r][0],s=this.elementDetection[r][1];if(n(t)){e=new s(t);break}}return e}getElementClass(t){const e=this.elementMap[t];return void 0===e?this.Element:e}fromRefract(t){return this.serialiser.deserialise(t)}toRefract(t){return this.serialiser.serialise(t)}get elements(){return void 0===this._elements&&(this._elements={Element:this.Element},Object.keys(this.elementMap).forEach((t=>{const e=t[0].toUpperCase()+t.substr(1);this._elements[e]=this.elementMap[t]}))),this._elements}get serialiser(){return new c(this)}}c.prototype.Namespace=l,t.exports=l},3853:(t,e,r)=>{const n=r(1570),s=r(1178);class i extends s{map(t,e){return this.elements.map((r=>t.bind(e)(r.value,r.key,r)))}filter(t,e){return new i(this.elements.filter((r=>t.bind(e)(r.value,r.key,r))))}reject(t,e){return this.filter(n(t.bind(e)))}forEach(t,e){return this.elements.forEach(((r,n)=>{t.bind(e)(r.value,r.key,r,n)}))}keys(){return this.map(((t,e)=>e.toValue()))}values(){return this.map((t=>t.toValue()))}}t.exports=i},3756:(t,e,r)=>{const n=r(6420),s=r(4152),i=r(9542),o=r(3710),a=r(3312),c=r(1641),u=r(8858),l=r(3860),f=r(5202),p=r(2320),h=r(1178),y=r(3853),m=r(3026);function v(t){if(t instanceof n)return t;if("string"==typeof t)return new i(t);if("number"==typeof t)return new o(t);if("boolean"==typeof t)return new a(t);if(null===t)return new s;if(Array.isArray(t))return new c(t.map(v));if("object"==typeof t){return new l(t)}return t}n.prototype.ObjectElement=l,n.prototype.RefElement=p,n.prototype.MemberElement=u,n.prototype.refract=v,h.prototype.refract=v,t.exports={Element:n,NullElement:s,StringElement:i,NumberElement:o,BooleanElement:a,ArrayElement:c,MemberElement:u,ObjectElement:l,LinkElement:f,RefElement:p,refract:v,ArraySlice:h,ObjectSlice:y,KeyValuePair:m}},5202:(t,e,r)=>{const n=r(6420);t.exports=class extends n{constructor(t,e,r){super(t||[],e,r),this.element="link"}get relation(){return this.attributes.get("relation")}set relation(t){this.attributes.set("relation",t)}get href(){return this.attributes.get("href")}set href(t){this.attributes.set("href",t)}}},2320:(t,e,r)=>{const n=r(6420);t.exports=class extends n{constructor(t,e,r){super(t||[],e,r),this.element="ref",this.path||(this.path="element")}get path(){return this.attributes.get("path")}set path(t){this.attributes.set("path",t)}}},7952:(t,e,r)=>{const n=r(5140),s=r(3756);e.KeyValuePair=r(3026),e.O4=s.ArraySlice,e.rm=s.ObjectSlice,e.W_=s.Element,e.RP=s.StringElement,e.VL=s.NumberElement,e.hh=s.BooleanElement,e.zr=s.NullElement,e.ON=s.ArrayElement,e.Sb=s.ObjectElement,e.c6=s.MemberElement,e.tK=s.RefElement,e.EA=s.LinkElement,s.refract,r(2947),r(8910)},1641:(t,e,r)=>{const n=r(1570),s=r(6420),i=r(1178);class o extends s{constructor(t,e,r){super(t||[],e,r),this.element="array"}primitive(){return"array"}get(t){return this.content[t]}getValue(t){const e=this.get(t);if(e)return e.toValue()}getIndex(t){return this.content[t]}set(t,e){return this.content[t]=this.refract(e),this}remove(t){const e=this.content.splice(t,1);return e.length?e[0]:null}map(t,e){return this.content.map(t,e)}flatMap(t,e){return this.map(t,e).reduce(((t,e)=>t.concat(e)),[])}compactMap(t,e){const r=[];return this.forEach((n=>{const s=t.bind(e)(n);s&&r.push(s)})),r}filter(t,e){return new i(this.content.filter(t,e))}reject(t,e){return this.filter(n(t),e)}reduce(t,e){let r,n;void 0!==e?(r=0,n=this.refract(e)):(r=1,n="object"===this.primitive()?this.first.value:this.first);for(let e=r;e<this.length;e+=1){const r=this.content[e];n="object"===this.primitive()?this.refract(t(n,r.value,r.key,r,this)):this.refract(t(n,r,e,this))}return n}forEach(t,e){this.content.forEach(((r,n)=>{t.bind(e)(r,this.refract(n))}))}shift(){return this.content.shift()}unshift(t){this.content.unshift(this.refract(t))}push(t){return this.content.push(this.refract(t)),this}add(t){this.push(t)}findElements(t,e){const r=e||{},n=!!r.recursive,s=void 0===r.results?[]:r.results;return this.forEach(((e,r,i)=>{n&&void 0!==e.findElements&&e.findElements(t,{results:s,recursive:n}),t(e,r,i)&&s.push(e)})),s}find(t){return new i(this.findElements(t,{recursive:!0}))}findByElement(t){return this.find((e=>e.element===t))}findByClass(t){return this.find((e=>e.classes.includes(t)))}getById(t){return this.find((e=>e.id.toValue()===t)).first}includes(t){return this.content.some((e=>e.equals(t)))}contains(t){return this.includes(t)}empty(){return new this.constructor([])}"fantasy-land/empty"(){return this.empty()}concat(t){return new this.constructor(this.content.concat(t.content))}"fantasy-land/concat"(t){return this.concat(t)}"fantasy-land/map"(t){return new this.constructor(this.map(t))}"fantasy-land/chain"(t){return this.map((e=>t(e)),this).reduce(((t,e)=>t.concat(e)),this.empty())}"fantasy-land/filter"(t){return new this.constructor(this.content.filter(t))}"fantasy-land/reduce"(t,e){return this.content.reduce(t,e)}get length(){return this.content.length}get isEmpty(){return 0===this.content.length}get first(){return this.getIndex(0)}get second(){return this.getIndex(1)}get last(){return this.getIndex(this.length-1)}}o.empty=function(){return new this},o["fantasy-land/empty"]=o.empty,"undefined"!=typeof Symbol&&(o.prototype[Symbol.iterator]=function(){return this.content[Symbol.iterator]()}),t.exports=o},3312:(t,e,r)=>{const n=r(6420);t.exports=class extends n{constructor(t,e,r){super(t,e,r),this.element="boolean"}primitive(){return"boolean"}}},6420:(t,e,r)=>{const n=r(8149),s=r(3026),i=r(1178);class o{constructor(t,e,r){e&&(this.meta=e),r&&(this.attributes=r),this.content=t}freeze(){Object.isFrozen(this)||(this._meta&&(this.meta.parent=this,this.meta.freeze()),this._attributes&&(this.attributes.parent=this,this.attributes.freeze()),this.children.forEach((t=>{t.parent=this,t.freeze()}),this),this.content&&Array.isArray(this.content)&&Object.freeze(this.content),Object.freeze(this))}primitive(){}clone(){const t=new this.constructor;return t.element=this.element,this.meta.length&&(t._meta=this.meta.clone()),this.attributes.length&&(t._attributes=this.attributes.clone()),this.content?this.content.clone?t.content=this.content.clone():Array.isArray(this.content)?t.content=this.content.map((t=>t.clone())):t.content=this.content:t.content=this.content,t}toValue(){return this.content instanceof o?this.content.toValue():this.content instanceof s?{key:this.content.key.toValue(),value:this.content.value?this.content.value.toValue():void 0}:this.content&&this.content.map?this.content.map((t=>t.toValue()),this):this.content}toRef(t){if(""===this.id.toValue())throw Error("Cannot create reference to an element that does not contain an ID");const e=new this.RefElement(this.id.toValue());return t&&(e.path=t),e}findRecursive(...t){if(arguments.length>1&&!this.isFrozen)throw new Error("Cannot find recursive with multiple element names without first freezing the element. Call `element.freeze()`");const e=t.pop();let r=new i;const n=(t,e)=>(t.push(e),t),o=(t,r)=>{r.element===e&&t.push(r);const i=r.findRecursive(e);return i&&i.reduce(n,t),r.content instanceof s&&(r.content.key&&o(t,r.content.key),r.content.value&&o(t,r.content.value)),t};return this.content&&(this.content.element&&o(r,this.content),Array.isArray(this.content)&&this.content.reduce(o,r)),t.isEmpty||(r=r.filter((e=>{let r=e.parents.map((t=>t.element));for(const e in t){const n=t[e],s=r.indexOf(n);if(-1===s)return!1;r=r.splice(0,s)}return!0}))),r}set(t){return this.content=t,this}equals(t){return n(this.toValue(),t)}getMetaProperty(t,e){if(!this.meta.hasKey(t)){if(this.isFrozen){const t=this.refract(e);return t.freeze(),t}this.meta.set(t,e)}return this.meta.get(t)}setMetaProperty(t,e){this.meta.set(t,e)}get element(){return this._storedElement||"element"}set element(t){this._storedElement=t}get content(){return this._content}set content(t){if(t instanceof o)this._content=t;else if(t instanceof i)this.content=t.elements;else if("string"==typeof t||"number"==typeof t||"boolean"==typeof t||"null"===t||null==t)this._content=t;else if(t instanceof s)this._content=t;else if(Array.isArray(t))this._content=t.map(this.refract);else{if("object"!=typeof t)throw new Error("Cannot set content to given value");this._content=Object.keys(t).map((e=>new this.MemberElement(e,t[e])))}}get meta(){if(!this._meta){if(this.isFrozen){const t=new this.ObjectElement;return t.freeze(),t}this._meta=new this.ObjectElement}return this._meta}set meta(t){t instanceof this.ObjectElement?this._meta=t:this.meta.set(t||{})}get attributes(){if(!this._attributes){if(this.isFrozen){const t=new this.ObjectElement;return t.freeze(),t}this._attributes=new this.ObjectElement}return this._attributes}set attributes(t){t instanceof this.ObjectElement?this._attributes=t:this.attributes.set(t||{})}get id(){return this.getMetaProperty("id","")}set id(t){this.setMetaProperty("id",t)}get classes(){return this.getMetaProperty("classes",[])}set classes(t){this.setMetaProperty("classes",t)}get title(){return this.getMetaProperty("title","")}set title(t){this.setMetaProperty("title",t)}get description(){return this.getMetaProperty("description","")}set description(t){this.setMetaProperty("description",t)}get links(){return this.getMetaProperty("links",[])}set links(t){this.setMetaProperty("links",t)}get isFrozen(){return Object.isFrozen(this)}get parents(){let{parent:t}=this;const e=new i;for(;t;)e.push(t),t=t.parent;return e}get children(){if(Array.isArray(this.content))return new i(this.content);if(this.content instanceof s){const t=new i([this.content.key]);return this.content.value&&t.push(this.content.value),t}return this.content instanceof o?new i([this.content]):new i}get recursiveChildren(){const t=new i;return this.children.forEach((e=>{t.push(e),e.recursiveChildren.forEach((e=>{t.push(e)}))})),t}}t.exports=o},8858:(t,e,r)=>{const n=r(3026),s=r(6420);t.exports=class extends s{constructor(t,e,r,s){super(new n,r,s),this.element="member",this.key=t,this.value=e}get key(){return this.content.key}set key(t){this.content.key=this.refract(t)}get value(){return this.content.value}set value(t){this.content.value=this.refract(t)}}},4152:(t,e,r)=>{const n=r(6420);t.exports=class extends n{constructor(t,e,r){super(t||null,e,r),this.element="null"}primitive(){return"null"}set(){return new Error("Cannot set the value of null")}}},3710:(t,e,r)=>{const n=r(6420);t.exports=class extends n{constructor(t,e,r){super(t,e,r),this.element="number"}primitive(){return"number"}}},3860:(t,e,r)=>{const n=r(1570),s=r(9259),i=r(1641),o=r(8858),a=r(3853);t.exports=class extends i{constructor(t,e,r){super(t||[],e,r),this.element="object"}primitive(){return"object"}toValue(){return this.content.reduce(((t,e)=>(t[e.key.toValue()]=e.value?e.value.toValue():void 0,t)),{})}get(t){const e=this.getMember(t);if(e)return e.value}getMember(t){if(void 0!==t)return this.content.find((e=>e.key.toValue()===t))}remove(t){let e=null;return this.content=this.content.filter((r=>r.key.toValue()!==t||(e=r,!1))),e}getKey(t){const e=this.getMember(t);if(e)return e.key}set(t,e){if(s(t))return Object.keys(t).forEach((e=>{this.set(e,t[e])})),this;const r=t,n=this.getMember(r);return n?n.value=e:this.content.push(new o(r,e)),this}keys(){return this.content.map((t=>t.key.toValue()))}values(){return this.content.map((t=>t.value.toValue()))}hasKey(t){return this.content.some((e=>e.key.equals(t)))}items(){return this.content.map((t=>[t.key.toValue(),t.value.toValue()]))}map(t,e){return this.content.map((r=>t.bind(e)(r.value,r.key,r)))}compactMap(t,e){const r=[];return this.forEach(((n,s,i)=>{const o=t.bind(e)(n,s,i);o&&r.push(o)})),r}filter(t,e){return new a(this.content).filter(t,e)}reject(t,e){return this.filter(n(t),e)}forEach(t,e){return this.content.forEach((r=>t.bind(e)(r.value,r.key,r)))}}},9542:(t,e,r)=>{const n=r(6420);t.exports=class extends n{constructor(t,e,r){super(t,e,r),this.element="string"}primitive(){return"string"}get length(){return this.content.length}}},8910:(t,e,r)=>{const n=r(2947);t.exports=class extends n{serialise(t){if(!(t instanceof this.namespace.elements.Element))throw new TypeError(`Given element \`${t}\` is not an Element instance`);let e;t._attributes&&t.attributes.get("variable")&&(e=t.attributes.get("variable"));const r={element:t.element};t._meta&&t._meta.length>0&&(r.meta=this.serialiseObject(t.meta));const n="enum"===t.element||-1!==t.attributes.keys().indexOf("enumerations");if(n){const e=this.enumSerialiseAttributes(t);e&&(r.attributes=e)}else if(t._attributes&&t._attributes.length>0){let{attributes:n}=t;n.get("metadata")&&(n=n.clone(),n.set("meta",n.get("metadata")),n.remove("metadata")),"member"===t.element&&e&&(n=n.clone(),n.remove("variable")),n.length>0&&(r.attributes=this.serialiseObject(n))}if(n)r.content=this.enumSerialiseContent(t,r);else if(this[`${t.element}SerialiseContent`])r.content=this[`${t.element}SerialiseContent`](t,r);else if(void 0!==t.content){let n;e&&t.content.key?(n=t.content.clone(),n.key.attributes.set("variable",e),n=this.serialiseContent(n)):n=this.serialiseContent(t.content),this.shouldSerialiseContent(t,n)&&(r.content=n)}else this.shouldSerialiseContent(t,t.content)&&t instanceof this.namespace.elements.Array&&(r.content=[]);return r}shouldSerialiseContent(t,e){return"parseResult"===t.element||"httpRequest"===t.element||"httpResponse"===t.element||"category"===t.element||"link"===t.element||void 0!==e&&(!Array.isArray(e)||0!==e.length)}refSerialiseContent(t,e){return delete e.attributes,{href:t.toValue(),path:t.path.toValue()}}sourceMapSerialiseContent(t){return t.toValue()}dataStructureSerialiseContent(t){return[this.serialiseContent(t.content)]}enumSerialiseAttributes(t){const e=t.attributes.clone(),r=e.remove("enumerations")||new this.namespace.elements.Array([]),n=e.get("default");let s=e.get("samples")||new this.namespace.elements.Array([]);if(n&&n.content&&(n.content.attributes&&n.content.attributes.remove("typeAttributes"),e.set("default",new this.namespace.elements.Array([n.content]))),s.forEach((t=>{t.content&&t.content.element&&t.content.attributes.remove("typeAttributes")})),t.content&&0!==r.length&&s.unshift(t.content),s=s.map((t=>t instanceof this.namespace.elements.Array?[t]:new this.namespace.elements.Array([t.content]))),s.length&&e.set("samples",s),e.length>0)return this.serialiseObject(e)}enumSerialiseContent(t){if(t._attributes){const e=t.attributes.get("enumerations");if(e&&e.length>0)return e.content.map((t=>{const e=t.clone();return e.attributes.remove("typeAttributes"),this.serialise(e)}))}if(t.content){const e=t.content.clone();return e.attributes.remove("typeAttributes"),[this.serialise(e)]}return[]}deserialise(t){if("string"==typeof t)return new this.namespace.elements.String(t);if("number"==typeof t)return new this.namespace.elements.Number(t);if("boolean"==typeof t)return new this.namespace.elements.Boolean(t);if(null===t)return new this.namespace.elements.Null;if(Array.isArray(t))return new this.namespace.elements.Array(t.map(this.deserialise,this));const e=this.namespace.getElementClass(t.element),r=new e;r.element!==t.element&&(r.element=t.element),t.meta&&this.deserialiseObject(t.meta,r.meta),t.attributes&&this.deserialiseObject(t.attributes,r.attributes);const n=this.deserialiseContent(t.content);if(void 0===n&&null!==r.content||(r.content=n),"enum"===r.element){r.content&&r.attributes.set("enumerations",r.content);let t=r.attributes.get("samples");if(r.attributes.remove("samples"),t){const n=t;t=new this.namespace.elements.Array,n.forEach((n=>{n.forEach((n=>{const s=new e(n);s.element=r.element,t.push(s)}))}));const s=t.shift();r.content=s?s.content:void 0,r.attributes.set("samples",t)}else r.content=void 0;let n=r.attributes.get("default");if(n&&n.length>0){n=n.get(0);const t=new e(n);t.element=r.element,r.attributes.set("default",t)}}else if("dataStructure"===r.element&&Array.isArray(r.content))[r.content]=r.content;else if("category"===r.element){const t=r.attributes.get("meta");t&&(r.attributes.set("metadata",t),r.attributes.remove("meta"))}else"member"===r.element&&r.key&&r.key._attributes&&r.key._attributes.getValue("variable")&&(r.attributes.set("variable",r.key.attributes.get("variable")),r.key.attributes.remove("variable"));return r}serialiseContent(t){if(t instanceof this.namespace.elements.Element)return this.serialise(t);if(t instanceof this.namespace.KeyValuePair){const e={key:this.serialise(t.key)};return t.value&&(e.value=this.serialise(t.value)),e}return t&&t.map?t.map(this.serialise,this):t}deserialiseContent(t){if(t){if(t.element)return this.deserialise(t);if(t.key){const e=new this.namespace.KeyValuePair(this.deserialise(t.key));return t.value&&(e.value=this.deserialise(t.value)),e}if(t.map)return t.map(this.deserialise,this)}return t}shouldRefract(t){return!!(t._attributes&&t.attributes.keys().length||t._meta&&t.meta.keys().length)||"enum"!==t.element&&(t.element!==t.primitive()||"member"===t.element)}convertKeyToRefract(t,e){return this.shouldRefract(e)?this.serialise(e):"enum"===e.element?this.serialiseEnum(e):"array"===e.element?e.map((e=>this.shouldRefract(e)||"default"===t?this.serialise(e):"array"===e.element||"object"===e.element||"enum"===e.element?e.children.map((t=>this.serialise(t))):e.toValue())):"object"===e.element?(e.content||[]).map(this.serialise,this):e.toValue()}serialiseEnum(t){return t.children.map((t=>this.serialise(t)))}serialiseObject(t){const e={};return t.forEach(((t,r)=>{if(t){const n=r.toValue();e[n]=this.convertKeyToRefract(n,t)}})),e}deserialiseObject(t,e){Object.keys(t).forEach((r=>{e.set(r,this.deserialise(t[r]))}))}}},2947:t=>{t.exports=class{constructor(t){this.namespace=t||new this.Namespace}serialise(t){if(!(t instanceof this.namespace.elements.Element))throw new TypeError(`Given element \`${t}\` is not an Element instance`);const e={element:t.element};t._meta&&t._meta.length>0&&(e.meta=this.serialiseObject(t.meta)),t._attributes&&t._attributes.length>0&&(e.attributes=this.serialiseObject(t.attributes));const r=this.serialiseContent(t.content);return void 0!==r&&(e.content=r),e}deserialise(t){if(!t.element)throw new Error("Given value is not an object containing an element name");const e=new(this.namespace.getElementClass(t.element));e.element!==t.element&&(e.element=t.element),t.meta&&this.deserialiseObject(t.meta,e.meta),t.attributes&&this.deserialiseObject(t.attributes,e.attributes);const r=this.deserialiseContent(t.content);return void 0===r&&null!==e.content||(e.content=r),e}serialiseContent(t){if(t instanceof this.namespace.elements.Element)return this.serialise(t);if(t instanceof this.namespace.KeyValuePair){const e={key:this.serialise(t.key)};return t.value&&(e.value=this.serialise(t.value)),e}if(t&&t.map){if(0===t.length)return;return t.map(this.serialise,this)}return t}deserialiseContent(t){if(t){if(t.element)return this.deserialise(t);if(t.key){const e=new this.namespace.KeyValuePair(this.deserialise(t.key));return t.value&&(e.value=this.deserialise(t.value)),e}if(t.map)return t.map(this.deserialise,this)}return t}serialiseObject(t){const e={};if(t.forEach(((t,r)=>{t&&(e[r.toValue()]=this.serialise(t))})),0!==Object.keys(e).length)return e}deserialiseObject(t,e){Object.keys(t).forEach((r=>{e.set(r,this.deserialise(t[r]))}))}}},1427:(t,e,r)=>{t.exports=r(6762)}},e={};function r(n){var s=e[n];if(void 0!==s)return s.exports;var i=e[n]={id:n,loaded:!1,exports:{}};return t[n].call(i.exports,i,i.exports,r),i.loaded=!0,i.exports}r.d=(t,e)=>{for(var n in e)r.o(e,n)&&!r.o(t,n)&&Object.defineProperty(t,n,{enumerable:!0,get:e[n]})},r.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(t){if("object"==typeof window)return window}}(),r.o=(t,e)=>Object.prototype.hasOwnProperty.call(t,e),r.r=t=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(t,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(t,"__esModule",{value:!0})},r.nmd=t=>(t.paths=[],t.children||(t.children=[]),t);var n={};return(()=>{"use strict";r.r(n),r.d(n,{CompilationJsonPointerError:()=>u,EvaluationJsonPointerError:()=>l,InvalidJsonPointerError:()=>c,JsonPointerError:()=>a,compile:()=>It,escape:()=>I,evaluate:()=>Ne,parse:()=>Rt,unescape:()=>N,uriToPointer:()=>Ct});var t=r(1427);const e=class extends t{constructor(t,e,r){if(super(t,e,r),this.name=this.constructor.name,"string"==typeof e&&(this.message=e),"function"==typeof Error.captureStackTrace?Error.captureStackTrace(this,this.constructor):this.stack=new Error(e).stack,null!=r&&"object"==typeof r&&Object.hasOwn(r,"cause")&&!("cause"in this)){const{cause:t}=r;this.cause=t,t instanceof Error&&"stack"in t&&(this.stack=`${this.stack}\nCAUSE: ${t.stack}`)}}};class s extends Error{static[Symbol.hasInstance](t){return super[Symbol.hasInstance](t)||Function.prototype[Symbol.hasInstance].call(e,t)}constructor(t,e){if(super(t,e),this.name=this.constructor.name,"string"==typeof t&&(this.message=t),"function"==typeof Error.captureStackTrace?Error.captureStackTrace(this,this.constructor):this.stack=new Error(t).stack,null!=e&&"object"==typeof e&&Object.hasOwn(e,"cause")&&!("cause"in this)){const{cause:t}=e;this.cause=t,t instanceof Error&&"stack"in t&&(this.stack=`${this.stack}\nCAUSE: ${t.stack}`)}}}const i=s;const o=class extends i{constructor(t,e){if(super(t,e),null!=e&&"object"==typeof e){const{cause:t,...r}=e;Object.assign(this,r)}}};const a=class extends o{};const c=class extends a{constructor(t,e){super(t,e),void 0!==e&&(this.pointer=e.pointer)}};const u=class extends a{constructor(t,e){super(t,e),void 0!==e&&(this.tokens=[...e.tokens])}};const l=class extends a{constructor(t,e){super(t,e),void 0!==e&&(this.pointer=e.pointer,Array.isArray(e.tokens)&&(this.tokens=[...e.tokens]),this.failedToken=e.failedToken,this.failedTokenPosition=e.failedTokenPosition,this.element=e.element)}};function f(t,e){switch(t){case 0:return function(){return e.apply(this,arguments)};case 1:return function(t){return e.apply(this,arguments)};case 2:return function(t,r){return e.apply(this,arguments)};case 3:return function(t,r,n){return e.apply(this,arguments)};case 4:return function(t,r,n,s){return e.apply(this,arguments)};case 5:return function(t,r,n,s,i){return e.apply(this,arguments)};case 6:return function(t,r,n,s,i,o){return e.apply(this,arguments)};case 7:return function(t,r,n,s,i,o,a){return e.apply(this,arguments)};case 8:return function(t,r,n,s,i,o,a,c){return e.apply(this,arguments)};case 9:return function(t,r,n,s,i,o,a,c,u){return e.apply(this,arguments)};case 10:return function(t,r,n,s,i,o,a,c,u,l){return e.apply(this,arguments)};default:throw new Error("First argument to _arity must be a non-negative integer no greater than ten")}}function p(t,e){return function(){return e.call(this,t.apply(this,arguments))}}function h(t){return null!=t&&"object"==typeof t&&!0===t["@@functional/placeholder"]}function y(t){return function e(r){return 0===arguments.length||h(r)?e:t.apply(this,arguments)}}function m(t){return function e(r,n){switch(arguments.length){case 0:return e;case 1:return h(r)?e:y((function(e){return t(r,e)}));default:return h(r)&&h(n)?e:h(r)?y((function(e){return t(e,n)})):h(n)?y((function(e){return t(r,e)})):t(r,n)}}}function v(t){return function e(r,n,s){switch(arguments.length){case 0:return e;case 1:return h(r)?e:m((function(e,n){return t(r,e,n)}));case 2:return h(r)&&h(n)?e:h(r)?m((function(e,r){return t(e,n,r)})):h(n)?m((function(e,n){return t(r,e,n)})):y((function(e){return t(r,n,e)}));default:return h(r)&&h(n)&&h(s)?e:h(r)&&h(n)?m((function(e,r){return t(e,r,s)})):h(r)&&h(s)?m((function(e,r){return t(e,n,r)})):h(n)&&h(s)?m((function(e,n){return t(r,e,n)})):h(r)?y((function(e){return t(e,n,s)})):h(n)?y((function(e){return t(r,e,s)})):h(s)?y((function(e){return t(r,n,e)})):t(r,n,s)}}}const d=Array.isArray||function(t){return null!=t&&t.length>=0&&"[object Array]"===Object.prototype.toString.call(t)};function b(t){return"[object String]"===Object.prototype.toString.call(t)}const g=y((function(t){return!!d(t)||!!t&&("object"==typeof t&&(!b(t)&&(0===t.length||t.length>0&&(t.hasOwnProperty(0)&&t.hasOwnProperty(t.length-1)))))}));var x="undefined"!=typeof Symbol?Symbol.iterator:"@@iterator";function w(t,e,r){return function(n,s,i){if(g(i))return t(n,s,i);if(null==i)return s;if("function"==typeof i["fantasy-land/reduce"])return e(n,s,i,"fantasy-land/reduce");if(null!=i[x])return r(n,s,i[x]());if("function"==typeof i.next)return r(n,s,i);if("function"==typeof i.reduce)return e(n,s,i,"reduce");throw new TypeError("reduce: list must be array or iterable")}}function j(t,e,r){for(var n=0,s=r.length;n<s;){if((e=t["@@transducer/step"](e,r[n]))&&e["@@transducer/reduced"]){e=e["@@transducer/value"];break}n+=1}return t["@@transducer/result"](e)}const E=m((function(t,e){return f(t.length,(function(){return t.apply(e,arguments)}))}));function O(t,e,r){for(var n=r.next();!n.done;){if((e=t["@@transducer/step"](e,n.value))&&e["@@transducer/reduced"]){e=e["@@transducer/value"];break}n=r.next()}return t["@@transducer/result"](e)}function _(t,e,r,n){return t["@@transducer/result"](r[n](E(t["@@transducer/step"],t),e))}const S=w(j,_,O);var k=function(){function t(t){this.f=t}return t.prototype["@@transducer/init"]=function(){throw new Error("init not implemented on XWrap")},t.prototype["@@transducer/result"]=function(t){return t},t.prototype["@@transducer/step"]=function(t,e){return this.f(t,e)},t}();const A=v((function(t,e,r){return S("function"==typeof t?new k(t):t,e,r)}));function P(t,e){return function(){var r=arguments.length;if(0===r)return e();var n=arguments[r-1];return d(n)||"function"!=typeof n[t]?e.apply(this,arguments):n[t].apply(n,Array.prototype.slice.call(arguments,0,r-1))}}const T=v(P("slice",(function(t,e,r){return Array.prototype.slice.call(r,t,e)})));const M=y(P("tail",T(1,1/0)));function C(){if(0===arguments.length)throw new Error("pipe requires at least one argument");return f(arguments[0].length,A(p,arguments[0],M(arguments)))}const R=v((function(t,e,r){return r.replace(t,e)})),I=C(R(/~/g,"~0"),R(/\//g,"~1"),encodeURIComponent),N=C(R(/~1/g,"/"),R(/~0/g,"~"),(t=>{try{return decodeURIComponent(t)}catch{return t}}));function V(t){for(var e,r=[];!(e=t.next()).done;)r.push(e.value);return r}function z(t,e,r){for(var n=0,s=r.length;n<s;){if(t(e,r[n]))return!0;n+=1}return!1}function F(t,e){return Object.prototype.hasOwnProperty.call(e,t)}const L="function"==typeof Object.is?Object.is:function(t,e){return t===e?0!==t||1/t==1/e:t!=t&&e!=e};var D=Object.prototype.toString;const B=function(){return"[object Arguments]"===D.call(arguments)?function(t){return"[object Arguments]"===D.call(t)}:function(t){return F("callee",t)}}();var q=!{toString:null}.propertyIsEnumerable("toString"),U=["constructor","valueOf","isPrototypeOf","toString","propertyIsEnumerable","hasOwnProperty","toLocaleString"],K=function(){return arguments.propertyIsEnumerable("length")}(),$=function(t,e){for(var r=0;r<t.length;){if(t[r]===e)return!0;r+=1}return!1},G="function"!=typeof Object.keys||K?y((function(t){if(Object(t)!==t)return[];var e,r,n=[],s=K&&B(t);for(e in t)!F(e,t)||s&&"length"===e||(n[n.length]=e);if(q)for(r=U.length-1;r>=0;)F(e=U[r],t)&&!$(n,e)&&(n[n.length]=e),r-=1;return n})):y((function(t){return Object(t)!==t?[]:Object.keys(t)}));const J=G;const W=y((function(t){return null===t?"Null":void 0===t?"Undefined":Object.prototype.toString.call(t).slice(8,-1)}));function H(t,e,r,n){var s=V(t);function i(t,e){return Y(t,e,r.slice(),n.slice())}return!z((function(t,e){return!z(i,e,t)}),V(e),s)}function Y(t,e,r,n){if(L(t,e))return!0;var s,i,o=W(t);if(o!==W(e))return!1;if("function"==typeof t["fantasy-land/equals"]||"function"==typeof e["fantasy-land/equals"])return"function"==typeof t["fantasy-land/equals"]&&t["fantasy-land/equals"](e)&&"function"==typeof e["fantasy-land/equals"]&&e["fantasy-land/equals"](t);if("function"==typeof t.equals||"function"==typeof e.equals)return"function"==typeof t.equals&&t.equals(e)&&"function"==typeof e.equals&&e.equals(t);switch(o){case"Arguments":case"Array":case"Object":if("function"==typeof t.constructor&&"Promise"===(s=t.constructor,null==(i=String(s).match(/^function (\w*)/))?"":i[1]))return t===e;break;case"Boolean":case"Number":case"String":if(typeof t!=typeof e||!L(t.valueOf(),e.valueOf()))return!1;break;case"Date":if(!L(t.valueOf(),e.valueOf()))return!1;break;case"Error":return t.name===e.name&&t.message===e.message;case"RegExp":if(t.source!==e.source||t.global!==e.global||t.ignoreCase!==e.ignoreCase||t.multiline!==e.multiline||t.sticky!==e.sticky||t.unicode!==e.unicode)return!1}for(var a=r.length-1;a>=0;){if(r[a]===t)return n[a]===e;a-=1}switch(o){case"Map":return t.size===e.size&&H(t.entries(),e.entries(),r.concat([t]),n.concat([e]));case"Set":return t.size===e.size&&H(t.values(),e.values(),r.concat([t]),n.concat([e]));case"Arguments":case"Array":case"Object":case"Boolean":case"Number":case"String":case"Date":case"Error":case"RegExp":case"Int8Array":case"Uint8Array":case"Uint8ClampedArray":case"Int16Array":case"Uint16Array":case"Int32Array":case"Uint32Array":case"Float32Array":case"Float64Array":case"ArrayBuffer":break;default:return!1}var c=J(t);if(c.length!==J(e).length)return!1;var u=r.concat([t]),l=n.concat([e]);for(a=c.length-1;a>=0;){var f=c[a];if(!F(f,e)||!Y(e[f],t[f],u,l))return!1;a-=1}return!0}const X=m((function(t,e){return Y(t,e,[],[])}));function Z(t,e,r){return function(){if(0===arguments.length)return r();var n=arguments[arguments.length-1];if(!d(n)){for(var s=0;s<t.length;){if("function"==typeof n[t[s]])return n[t[s]].apply(n,Array.prototype.slice.call(arguments,0,-1));s+=1}if(function(t){return null!=t&&"function"==typeof t["@@transducer/step"]}(n))return e.apply(null,Array.prototype.slice.call(arguments,0,-1))(n)}return r.apply(this,arguments)}}const Q=function(){return this.xf["@@transducer/init"]()},tt=function(t){return this.xf["@@transducer/result"](t)};var et=function(){function t(t,e){this.xf=e,this.n=t,this.i=0}return t.prototype["@@transducer/init"]=Q,t.prototype["@@transducer/result"]=tt,t.prototype["@@transducer/step"]=function(t,e){this.i+=1;var r,n=0===this.n?t:this.xf["@@transducer/step"](t,e);return this.n>=0&&this.i>=this.n?(r=n)&&r["@@transducer/reduced"]?r:{"@@transducer/value":r,"@@transducer/reduced":!0}:n},t}();function rt(t){return function(e){return new et(t,e)}}const nt=m(Z(["take"],rt,(function(t,e){return T(0,t<0?1/0:t,e)})));const st=m((function(t,e){return X(nt(t.length,e),t)}));function it(t){var e=Object.prototype.toString.call(t);return"[object Function]"===e||"[object AsyncFunction]"===e||"[object GeneratorFunction]"===e||"[object AsyncGeneratorFunction]"===e}function ot(t,e,r){return function(){for(var n=[],s=0,i=t,o=0,a=!1;o<e.length||s<arguments.length;){var c;o<e.length&&(!h(e[o])||s>=arguments.length)?c=e[o]:(c=arguments[s],s+=1),n[o]=c,h(c)?a=!0:i-=1,o+=1}return!a&&i<=0?r.apply(this,n):f(Math.max(0,i),ot(t,n,r))}}const at=m((function(t,e){return 1===t?y(e):f(t,ot(t,[],e))}));function ct(t,e){return function(t,e,r){var n,s;if("function"==typeof t.indexOf)switch(typeof e){case"number":if(0===e){for(n=1/e;r<t.length;){if(0===(s=t[r])&&1/s===n)return r;r+=1}return-1}if(e!=e){for(;r<t.length;){if("number"==typeof(s=t[r])&&s!=s)return r;r+=1}return-1}return t.indexOf(e,r);case"string":case"boolean":case"function":case"undefined":return t.indexOf(e,r);case"object":if(null===e)return t.indexOf(e,r)}for(;r<t.length;){if(X(t[r],e))return r;r+=1}return-1}(e,t,0)>=0}function ut(t,e){for(var r=0,n=e.length,s=Array(n);r<n;)s[r]=t(e[r]),r+=1;return s}function lt(t){return'"'+t.replace(/\\/g,"\\\\").replace(/[\b]/g,"\\b").replace(/\f/g,"\\f").replace(/\n/g,"\\n").replace(/\r/g,"\\r").replace(/\t/g,"\\t").replace(/\v/g,"\\v").replace(/\0/g,"\\0").replace(/"/g,'\\"')+'"'}var ft=function(t){return(t<10?"0":"")+t};const pt="function"==typeof Date.prototype.toISOString?function(t){return t.toISOString()}:function(t){return t.getUTCFullYear()+"-"+ft(t.getUTCMonth()+1)+"-"+ft(t.getUTCDate())+"T"+ft(t.getUTCHours())+":"+ft(t.getUTCMinutes())+":"+ft(t.getUTCSeconds())+"."+(t.getUTCMilliseconds()/1e3).toFixed(3).slice(2,5)+"Z"};function ht(t,e,r){for(var n=0,s=r.length;n<s;)e=t(e,r[n]),n+=1;return e}var yt=function(){function t(t,e){this.xf=e,this.f=t}return t.prototype["@@transducer/init"]=Q,t.prototype["@@transducer/result"]=tt,t.prototype["@@transducer/step"]=function(t,e){return this.f(e)?this.xf["@@transducer/step"](t,e):t},t}();function mt(t){return function(e){return new yt(t,e)}}const vt=m(Z(["fantasy-land/filter","filter"],mt,(function(t,e){return r=e,"[object Object]"===Object.prototype.toString.call(r)?ht((function(r,n){return t(e[n])&&(r[n]=e[n]),r}),{},J(e)):function(t,e){for(var r=0,n=e.length,s=[];r<n;)t(e[r])&&(s[s.length]=e[r]),r+=1;return s}(t,e);var r})));const dt=m((function(t,e){return vt((r=t,function(){return!r.apply(this,arguments)}),e);var r}));function bt(t,e){var r=function(r){var n=e.concat([t]);return ct(r,n)?"<Circular>":bt(r,n)},n=function(t,e){return ut((function(e){return lt(e)+": "+r(t[e])}),e.slice().sort())};switch(Object.prototype.toString.call(t)){case"[object Arguments]":return"(function() { return arguments; }("+ut(r,t).join(", ")+"))";case"[object Array]":return"["+ut(r,t).concat(n(t,dt((function(t){return/^\d+$/.test(t)}),J(t)))).join(", ")+"]";case"[object Boolean]":return"object"==typeof t?"new Boolean("+r(t.valueOf())+")":t.toString();case"[object Date]":return"new Date("+(isNaN(t.valueOf())?r(NaN):lt(pt(t)))+")";case"[object Map]":return"new Map("+r(Array.from(t))+")";case"[object Null]":return"null";case"[object Number]":return"object"==typeof t?"new Number("+r(t.valueOf())+")":1/t==-1/0?"-0":t.toString(10);case"[object Set]":return"new Set("+r(Array.from(t).sort())+")";case"[object String]":return"object"==typeof t?"new String("+r(t.valueOf())+")":lt(t);case"[object Undefined]":return"undefined";default:if("function"==typeof t.toString){var s=t.toString();if("[object Object]"!==s)return s}return"{"+n(t,J(t)).join(", ")+"}"}}const gt=y((function(t){return bt(t,[])}));const xt=m((function(t,e){return at(t+1,(function(){var r=arguments[t];if(null!=r&&it(r[e]))return r[e].apply(r,Array.prototype.slice.call(arguments,0,t));throw new TypeError(gt(r)+' does not have a method named "'+e+'"')}))}));const wt=xt(1,"split");var jt=function(){function t(t,e){this.xf=e,this.f=t}return t.prototype["@@transducer/init"]=Q,t.prototype["@@transducer/result"]=tt,t.prototype["@@transducer/step"]=function(t,e){return this.xf["@@transducer/step"](t,this.f(e))},t}();const Et=m(Z(["fantasy-land/map","map"],(function(t){return function(e){return new jt(t,e)}}),(function(t,e){switch(Object.prototype.toString.call(e)){case"[object Function]":return at(e.length,(function(){return t.call(this,e.apply(this,arguments))}));case"[object Object]":return ht((function(r,n){return r[n]=t(e[n]),r}),{},J(e));default:return ut(t,e)}})));const Ot=X("");const _t=y((function(t){return at(t.length,t)}));var St=function(){function t(t,e){this.xf=e,this.f=t}return t.prototype["@@transducer/init"]=Q,t.prototype["@@transducer/result"]=tt,t.prototype["@@transducer/step"]=function(t,e){if(this.f){if(this.f(e))return t;this.f=null}return this.xf["@@transducer/step"](t,e)},t}();function kt(t){return function(e){return new St(t,e)}}const At=m(Z(["dropWhile"],kt,(function(t,e){for(var r=0,n=e.length;r<n&&t(e[r]);)r+=1;return T(r,1/0,e)})));const Pt=xt(1,"join");const Tt=y((function(t){return at(t.length,(function(e,r){var n=Array.prototype.slice.call(arguments,0);return n[0]=r,n[1]=e,t.apply(this,n)}))}))(m(ct));const Mt=_t((function(t,e){return C(wt(""),At(Tt(t)),Pt(""))(e)})),Ct=t=>{const e=(t=>{const e=t.indexOf("#");return-1!==e?t.substring(e):"#"})(t);return Mt("#",e)},Rt=t=>{if(Ot(t))return[];if(!st("/",t))throw new c(`Invalid JSON Pointer "${t}". JSON Pointers must begin with "/"`,{pointer:t});try{const e=C(wt("/"),Et(N))(t);return M(e)}catch(e){throw new c(`JSON Pointer parsing of "${t}" encountered an error.`,{pointer:t,cause:e})}},It=t=>{try{return 0===t.length?"":`/${t.map(I).join("/")}`}catch(e){throw new u("JSON Pointer compilation of tokens encountered an error.",{tokens:t,cause:e})}};const Nt=m((function(t,e){if(t===e)return e;function r(t,e){if(t>e!=e>t)return e>t?e:t}var n=r(t,e);if(void 0!==n)return n;var s=r(typeof t,typeof e);if(void 0!==s)return s===typeof t?t:e;var i=gt(t),o=r(i,gt(e));return void 0!==o&&o===i?t:e})),Vt=Number.isInteger||function(t){return t<<0===t};const zt=m((function(t,e){var r=t<0?e.length+t:t;return b(e)?e.charAt(r):e[r]}));const Ft=m((function(t,e){if(null!=e)return Vt(t)?zt(t,e):e[t]}));const Lt=m((function(t,e){return Et(Ft(t),e)}));const Dt=y((function(t){return at(A(Nt,0,Lt("length",t)),(function(){for(var e=0,r=t.length;e<r;){if(t[e].apply(this,arguments))return!0;e+=1}return!1}))}));var Bt=function(t,e){switch(arguments.length){case 0:return Bt;case 1:return function e(r){return 0===arguments.length?e:L(t,r)};default:return L(t,e)}};const qt=Bt;const Ut=at(1,C(W,qt("GeneratorFunction")));const Kt=at(1,C(W,qt("AsyncFunction")));const $t=Dt([C(W,qt("Function")),Ut,Kt]);const Gt=m((function(t,e){return t&&e}));function Jt(t,e,r){for(var n=r.next();!n.done;)e=t(e,n.value),n=r.next();return e}function Wt(t,e,r,n){return r[n](t,e)}const Ht=w(ht,Wt,Jt);const Yt=m((function(t,e){return"function"==typeof e["fantasy-land/ap"]?e["fantasy-land/ap"](t):"function"==typeof t.ap?t.ap(e):"function"==typeof t?function(r){return t(r)(e(r))}:Ht((function(t,r){return function(t,e){var r;e=e||[];var n=(t=t||[]).length,s=e.length,i=[];for(r=0;r<n;)i[i.length]=t[r],r+=1;for(r=0;r<s;)i[i.length]=e[r],r+=1;return i}(t,Et(r,e))}),[],t)}));const Xt=m((function(t,e){var r=at(t,e);return at(t,(function(){return ht(Yt,Et(r,arguments[0]),Array.prototype.slice.call(arguments,1))}))}));const Zt=y((function(t){return Xt(t.length,t)}));const Qt=m((function(t,e){return it(t)?function(){return t.apply(this,arguments)&&e.apply(this,arguments)}:Zt(Gt)(t,e)}));const te=m((function(t,e){return at(A(Nt,0,Lt("length",e)),(function(){var r=arguments,n=this;return t.apply(n,ut((function(t){return t.apply(n,r)}),e))}))}));function ee(t){return t}const re=y(ee);var ne=Qt(at(1,C(W,qt("Number"))),isFinite);var se=at(1,ne);var ie=Qt($t(Number.isFinite)?at(1,E(Number.isFinite,Number)):se,te(X,[Math.floor,re]));var oe=at(1,ie);const ae=$t(Number.isInteger)?at(1,E(Number.isInteger,Number)):oe;var ce=r(7952);class ue extends ce.RP{constructor(t,e,r){super(t,e,r),this.element="annotation"}get code(){return this.attributes.get("code")}set code(t){this.attributes.set("code",t)}}const le=ue;class fe extends ce.RP{constructor(t,e,r){super(t,e,r),this.element="comment"}}const pe=fe;var he=y((function(t){return function(){return t}}))(void 0);const ye=X(he());class me extends ce.ON{constructor(t,e,r){super(t,e,r),this.element="parseResult"}get api(){return this.children.filter((t=>t.classes.contains("api"))).first}get results(){return this.children.filter((t=>t.classes.contains("result")))}get result(){return this.results.first}get annotations(){return this.children.filter((t=>"annotation"===t.element))}get warnings(){return this.children.filter((t=>"annotation"===t.element&&t.classes.contains("warning")))}get errors(){return this.children.filter((t=>"annotation"===t.element&&t.classes.contains("error")))}get isEmpty(){return this.children.reject((t=>"annotation"===t.element)).isEmpty}replaceResult(t){const{result:e}=this;if(ye(e))return!1;const r=this.content.findIndex((t=>t===e));return-1!==r&&(this.content[r]=t,!0)}}const ve=me;class de extends ce.ON{constructor(t,e,r){super(t,e,r),this.element="sourceMap"}get positionStart(){return this.children.filter((t=>t.classes.contains("position"))).get(0)}get positionEnd(){return this.children.filter((t=>t.classes.contains("position"))).get(1)}set position(t){if(null===t)return;const e=new ce.ON([t.start.row,t.start.column,t.start.char]),r=new ce.ON([t.end.row,t.end.column,t.end.char]);e.classes.push("position"),r.classes.push("position"),this.push(e).push(r)}}const be=de,ge=(t,e)=>"object"==typeof e&&null!==e&&t in e&&"function"==typeof e[t],xe=t=>"object"==typeof t&&null!=t&&"_storedElement"in t&&"string"==typeof t._storedElement&&"_content"in t,we=(t,e)=>"object"==typeof e&&null!==e&&"primitive"in e&&("function"==typeof e.primitive&&e.primitive()===t),je=(t,e)=>"object"==typeof e&&null!==e&&"classes"in e&&(Array.isArray(e.classes)||e.classes instanceof ce.ON)&&e.classes.includes(t),Ee=(t,e)=>"object"==typeof e&&null!==e&&"element"in e&&e.element===t,Oe=t=>t({hasMethod:ge,hasBasicElementProps:xe,primitiveEq:we,isElementType:Ee,hasClass:je}),_e=Oe((({hasBasicElementProps:t,primitiveEq:e})=>r=>r instanceof ce.W_||t(r)&&e(void 0,r))),Se=(Oe((({hasBasicElementProps:t,primitiveEq:e})=>r=>r instanceof ce.RP||t(r)&&e("string",r))),Oe((({hasBasicElementProps:t,primitiveEq:e})=>r=>r instanceof ce.VL||t(r)&&e("number",r))),Oe((({hasBasicElementProps:t,primitiveEq:e})=>r=>r instanceof ce.zr||t(r)&&e("null",r))),Oe((({hasBasicElementProps:t,primitiveEq:e})=>r=>r instanceof ce.hh||t(r)&&e("boolean",r))),Oe((({hasBasicElementProps:t,primitiveEq:e,hasMethod:r})=>n=>n instanceof ce.Sb||t(n)&&e("object",n)&&r("keys",n)&&r("values",n)&&r("items",n)))),ke=Oe((({hasBasicElementProps:t,primitiveEq:e,hasMethod:r})=>n=>n instanceof ce.ON&&!(n instanceof ce.Sb)||t(n)&&e("array",n)&&r("push",n)&&r("unshift",n)&&r("map",n)&&r("reduce",n)));Oe((({hasBasicElementProps:t,isElementType:e,primitiveEq:r})=>n=>n instanceof ce.c6||t(n)&&e("member",n)&&r(void 0,n))),Oe((({hasBasicElementProps:t,isElementType:e,primitiveEq:r})=>n=>n instanceof ce.EA||t(n)&&e("link",n)&&r(void 0,n))),Oe((({hasBasicElementProps:t,isElementType:e,primitiveEq:r})=>n=>n instanceof ce.tK||t(n)&&e("ref",n)&&r(void 0,n))),Oe((({hasBasicElementProps:t,isElementType:e,primitiveEq:r})=>n=>n instanceof le||t(n)&&e("annotation",n)&&r("array",n))),Oe((({hasBasicElementProps:t,isElementType:e,primitiveEq:r})=>n=>n instanceof pe||t(n)&&e("comment",n)&&r("string",n))),Oe((({hasBasicElementProps:t,isElementType:e,primitiveEq:r})=>n=>n instanceof ve||t(n)&&e("parseResult",n)&&r("array",n))),Oe((({hasBasicElementProps:t,isElementType:e,primitiveEq:r})=>n=>n instanceof be||t(n)&&e("sourceMap",n)&&r("array",n)));const Ae=class extends o{constructor(t,e){super(t,e),void 0!==e&&(this.value=e.source)}};const Pe=class extends Ae{};const Te=class extends Ae{},Me=(t,e={})=>{const{visited:r=new WeakMap}=e,n={...e,visited:r};if(r.has(t))return r.get(t);if(t instanceof ce.KeyValuePair){const{key:e,value:s}=t,i=_e(e)?Me(e,n):e,o=_e(s)?Me(s,n):s,a=new ce.KeyValuePair(i,o);return r.set(t,a),a}if(t instanceof ce.rm){const e=t=>Me(t,n),s=[...t].map(e),i=new ce.rm(s);return r.set(t,i),i}if(t instanceof ce.O4){const e=t=>Me(t,n),s=[...t].map(e),i=new ce.O4(s);return r.set(t,i),i}if(_e(t)){const e=Ie(t);if(r.set(t,e),t.content)if(_e(t.content))e.content=Me(t.content,n);else if(t.content instanceof ce.KeyValuePair)e.content=Me(t.content,n);else if(Array.isArray(t.content)){const r=t=>Me(t,n);e.content=t.content.map(r)}else e.content=t.content;else e.content=t.content;return e}throw new Pe("Value provided to cloneDeep function couldn't be cloned",{value:t})};Me.safe=t=>{try{return Me(t)}catch{return t}};const Ce=t=>{const{key:e,value:r}=t;return new ce.KeyValuePair(e,r)},Re=t=>{const e=new t.constructor;if(e.element=t.element,t.meta.length>0&&(e._meta=Me(t.meta)),t.attributes.length>0&&(e._attributes=Me(t.attributes)),_e(t.content)){const r=t.content;e.content=Re(r)}else Array.isArray(t.content)?e.content=[...t.content]:t.content instanceof ce.KeyValuePair?e.content=Ce(t.content):e.content=t.content;return e},Ie=t=>{if(t instanceof ce.KeyValuePair)return Ce(t);if(t instanceof ce.rm)return(t=>{const e=[...t];return new ce.rm(e)})(t);if(t instanceof ce.O4)return(t=>{const e=[...t];return new ce.O4(e)})(t);if(_e(t))return Re(t);throw new Te("Value provided to cloneShallow function couldn't be cloned",{value:t})};Ie.safe=t=>{try{return Ie(t)}catch{return t}};const Ne=(t,e)=>{let r;try{r=Rt(t)}catch(r){throw new l(`JSON Pointer evaluation failed while parsing the pointer "${t}".`,{pointer:t,element:Me(e),cause:r})}return r.reduce(((e,n,s)=>{if(Se(e)){if(!e.hasKey(n))throw new l(`JSON Pointer evaluation failed while evaluating token "${n}" against an ObjectElement`,{pointer:t,tokens:r,failedToken:n,failedTokenPosition:s,element:Me(e)});return e.get(n)}if(ke(e)){if(!(n in e.content)||!ae(Number(n)))throw new l(`JSON Pointer evaluation failed while evaluating token "${n}" against an ArrayElement`,{pointer:t,tokens:r,failedToken:n,failedTokenPosition:s,element:Me(e)});return e.get(Number(n))}throw new l(`JSON Pointer evaluation failed while evaluating token "${n}" against an unexpected Element`,{pointer:t,tokens:r,failedToken:n,failedTokenPosition:s,element:Me(e)})}),e)}})(),n})()));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@swagger-api/apidom-json-pointer",
3
- "version": "0.81.0",
3
+ "version": "0.82.1",
4
4
  "description": "Evaluate JSON Pointer expressions against ApiDOM.",
5
5
  "publishConfig": {
6
6
  "access": "public",
@@ -38,8 +38,8 @@
38
38
  "license": "Apache-2.0",
39
39
  "dependencies": {
40
40
  "@babel/runtime-corejs3": "^7.20.7",
41
- "@swagger-api/apidom-core": "^0.81.0",
42
- "@swagger-api/apidom-error": "^0.81.0",
41
+ "@swagger-api/apidom-core": "^0.82.1",
42
+ "@swagger-api/apidom-error": "^0.82.1",
43
43
  "@types/ramda": "~0.29.6",
44
44
  "ramda": "~0.29.0",
45
45
  "ramda-adjunct": "^4.0.0"
@@ -54,5 +54,5 @@
54
54
  "README.md",
55
55
  "CHANGELOG.md"
56
56
  ],
57
- "gitHead": "06960c4ddf3aaaaf394b4ffcb4e42201f9bcbad6"
57
+ "gitHead": "94999a0e9d60437edf7a922f8a844753fcb51469"
58
58
  }