jscrewit 2.35.1 → 2.35.2
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/api-doc/README.md +24 -24
- package/api-doc/interfaces/CustomFeature.md +32 -7
- package/api-doc/interfaces/ElementaryFeature.md +28 -0
- package/api-doc/interfaces/Feature.md +9 -1
- package/api-doc/interfaces/FeatureConstructor.md +71 -67
- package/api-doc/interfaces/PredefinedFeature.md +35 -7
- package/api-doc/interfaces/default.md +1 -1
- package/api-doc/interfaces/encode.md +10 -10
- package/lib/jscrewit.js +28 -19
- package/lib/jscrewit.min.js +2 -2
- package/package.json +3 -3
- package/readme.md +1 -1
package/api-doc/README.md
CHANGED
|
@@ -43,7 +43,7 @@ ___
|
|
|
43
43
|
|
|
44
44
|
### FeatureElement
|
|
45
45
|
|
|
46
|
-
Ƭ **FeatureElement**: [`Feature`](
|
|
46
|
+
Ƭ **FeatureElement**: [`Feature`](interfaces/Feature.md) \| keyof [`FeatureAll`](interfaces/FeatureAll.md)
|
|
47
47
|
|
|
48
48
|
A feature object or a name or alias of a predefined feature.
|
|
49
49
|
|
|
@@ -88,7 +88,7 @@ See [`EncodeOptions.runAs`](interfaces/EncodeOptions.md#runas) for the meaning o
|
|
|
88
88
|
|
|
89
89
|
### default
|
|
90
90
|
|
|
91
|
-
• **default**: [`default`](
|
|
91
|
+
• **default**: [`default`](interfaces/default.md)
|
|
92
92
|
|
|
93
93
|
## Functions
|
|
94
94
|
|
|
@@ -101,12 +101,22 @@ Creates a new feature object from the union of the specified features.
|
|
|
101
101
|
The constructor can be used with or without the `new` operator, e.g.
|
|
102
102
|
`new JScrewIt.Feature(feature1, feature2)` or `JScrewIt.Feature(feature1, feature2)`.
|
|
103
103
|
If no arguments are specified, the new feature object will be equivalent to
|
|
104
|
-
[`DEFAULT`](interfaces/
|
|
104
|
+
[`DEFAULT`](interfaces/FeatureAll.md#default).
|
|
105
|
+
|
|
106
|
+
#### Parameters
|
|
107
|
+
|
|
108
|
+
| Name | Type |
|
|
109
|
+
| :------ | :------ |
|
|
110
|
+
| `...features` | [`FeatureElementOrCompatibleArray`](README.md#featureelementorcompatiblearray)[] |
|
|
111
|
+
|
|
112
|
+
#### Returns
|
|
113
|
+
|
|
114
|
+
[`CustomFeature`](interfaces/CustomFeature.md)
|
|
105
115
|
|
|
106
116
|
**`Example`**
|
|
107
117
|
|
|
108
118
|
The following statements are equivalent, and will all construct a new feature object
|
|
109
|
-
including both [`ANY_DOCUMENT`](interfaces/
|
|
119
|
+
including both [`ANY_DOCUMENT`](interfaces/FeatureAll.md#any_document) and [`ANY_WINDOW`](interfaces/FeatureConstructor.md#any_window).
|
|
110
120
|
|
|
111
121
|
```js
|
|
112
122
|
new JScrewIt.Feature("ANY_DOCUMENT", "ANY_WINDOW");
|
|
@@ -124,16 +134,6 @@ new JScrewIt.Feature([JScrewIt.Feature.ANY_DOCUMENT, JScrewIt.Feature.ANY_WINDOW
|
|
|
124
134
|
|
|
125
135
|
An error is thrown if any of the specified features are not mutually compatible.
|
|
126
136
|
|
|
127
|
-
#### Parameters
|
|
128
|
-
|
|
129
|
-
| Name | Type |
|
|
130
|
-
| :------ | :------ |
|
|
131
|
-
| `...features` | [`FeatureElementOrCompatibleArray`](README.md#featureelementorcompatiblearray)[] |
|
|
132
|
-
|
|
133
|
-
#### Returns
|
|
134
|
-
|
|
135
|
-
[`CustomFeature`](interfaces/CustomFeature.md)
|
|
136
|
-
|
|
137
137
|
___
|
|
138
138
|
|
|
139
139
|
### encode
|
|
@@ -142,16 +142,6 @@ ___
|
|
|
142
142
|
|
|
143
143
|
Encodes a given string into JSFuck.
|
|
144
144
|
|
|
145
|
-
**`Throws`**
|
|
146
|
-
|
|
147
|
-
An `Error` is thrown under the following circumstances.
|
|
148
|
-
- The specified string cannot be encoded with the specified options.
|
|
149
|
-
- Some unknown features were specified.
|
|
150
|
-
- A combination of mutually incompatible features was specified.
|
|
151
|
-
- The option `runAs` (or `wrapWith`) was specified with an invalid value.
|
|
152
|
-
|
|
153
|
-
Also, an out of memory condition may occur when processing very large data.
|
|
154
|
-
|
|
155
145
|
#### Parameters
|
|
156
146
|
|
|
157
147
|
| Name | Type | Description |
|
|
@@ -164,3 +154,13 @@ Also, an out of memory condition may occur when processing very large data.
|
|
|
164
154
|
`string`
|
|
165
155
|
|
|
166
156
|
The encoded string.
|
|
157
|
+
|
|
158
|
+
**`Throws`**
|
|
159
|
+
|
|
160
|
+
An `Error` is thrown under the following circumstances.
|
|
161
|
+
- The specified string cannot be encoded with the specified options.
|
|
162
|
+
- Some unknown features were specified.
|
|
163
|
+
- A combination of mutually incompatible features was specified.
|
|
164
|
+
- The option `runAs` (or `wrapWith`) was specified with an invalid value.
|
|
165
|
+
|
|
166
|
+
Also, an out of memory condition may occur when processing very large data.
|
|
@@ -1,8 +1,31 @@
|
|
|
1
1
|
# Interface: CustomFeature
|
|
2
2
|
|
|
3
|
+
Objects of this type indicate which of the capabilities that JScrewIt can use to minimize the
|
|
4
|
+
length of its output are available in a particular JavaScript engine.
|
|
5
|
+
|
|
6
|
+
JScrewIt comes with a set of predefined feature objects exposed as property values of
|
|
7
|
+
`JScrewIt.Feature` or [`JScrewIt.Feature.ALL`](FeatureConstructor.md#all), where the property
|
|
8
|
+
name is the feature's name or alias.
|
|
9
|
+
|
|
10
|
+
Besides these predefined features, it is possible to construct custom features from the union or
|
|
11
|
+
intersection of other features.
|
|
12
|
+
|
|
13
|
+
Among the predefined features, there are some special ones called *elementary* features.
|
|
14
|
+
Elementary features either cannot be expressed as a union of any number of other features, or
|
|
15
|
+
they are different from such a union in that they exclude some other feature not excluded by
|
|
16
|
+
their elementary components.
|
|
17
|
+
All other features, called *composite* features, can be constructed as a union of zero or more
|
|
18
|
+
elementary features.
|
|
19
|
+
Two of the predefined composite features are particularly important: [`DEFAULT`](FeatureConstructor.md#default) is the empty feature, indicating that no elementary
|
|
20
|
+
feature is available at all; [`AUTO`](FeatureAll.md#auto) is the union of all
|
|
21
|
+
elementary features available in the current environment.
|
|
22
|
+
|
|
23
|
+
Not all features can be available at the same time: some features are necessarily incompatible,
|
|
24
|
+
meaning that they mutually exclude each other, and thus their union cannot be constructed.
|
|
25
|
+
|
|
3
26
|
## Hierarchy
|
|
4
27
|
|
|
5
|
-
- [`Feature`](
|
|
28
|
+
- [`Feature`](Feature.md)
|
|
6
29
|
|
|
7
30
|
↳ **`CustomFeature`**
|
|
8
31
|
|
|
@@ -31,7 +54,7 @@ implied features.
|
|
|
31
54
|
|
|
32
55
|
#### Inherited from
|
|
33
56
|
|
|
34
|
-
Feature.canonicalNames
|
|
57
|
+
[Feature](Feature.md).[canonicalNames](Feature.md#canonicalnames)
|
|
35
58
|
|
|
36
59
|
___
|
|
37
60
|
|
|
@@ -39,9 +62,11 @@ ___
|
|
|
39
62
|
|
|
40
63
|
• `Readonly` **elementary**: ``false``
|
|
41
64
|
|
|
65
|
+
A boolean value indicating whether this is an elementary feature object.
|
|
66
|
+
|
|
42
67
|
#### Overrides
|
|
43
68
|
|
|
44
|
-
Feature.elementary
|
|
69
|
+
[Feature](Feature.md).[elementary](Feature.md#elementary)
|
|
45
70
|
|
|
46
71
|
___
|
|
47
72
|
|
|
@@ -53,7 +78,7 @@ An array of all elementary feature names included in this feature object, withou
|
|
|
53
78
|
|
|
54
79
|
#### Inherited from
|
|
55
80
|
|
|
56
|
-
Feature.elementaryNames
|
|
81
|
+
[Feature](Feature.md).[elementaryNames](Feature.md#elementarynames)
|
|
57
82
|
|
|
58
83
|
___
|
|
59
84
|
|
|
@@ -68,7 +93,7 @@ If a name is assigned, it will be used when the feature is converted into a stri
|
|
|
68
93
|
|
|
69
94
|
#### Inherited from
|
|
70
95
|
|
|
71
|
-
Feature.name
|
|
96
|
+
[Feature](Feature.md).[name](Feature.md#name)
|
|
72
97
|
|
|
73
98
|
## Methods
|
|
74
99
|
|
|
@@ -93,7 +118,7 @@ If no arguments are specified, the return value is `true`.
|
|
|
93
118
|
|
|
94
119
|
#### Inherited from
|
|
95
120
|
|
|
96
|
-
Feature.includes
|
|
121
|
+
[Feature](Feature.md).[includes](Feature.md#includes)
|
|
97
122
|
|
|
98
123
|
___
|
|
99
124
|
|
|
@@ -120,4 +145,4 @@ that require strict mode code, or inside web workers.
|
|
|
120
145
|
|
|
121
146
|
#### Inherited from
|
|
122
147
|
|
|
123
|
-
Feature.restrict
|
|
148
|
+
[Feature](Feature.md).[restrict](Feature.md#restrict)
|
|
@@ -1,5 +1,28 @@
|
|
|
1
1
|
# Interface: ElementaryFeature
|
|
2
2
|
|
|
3
|
+
Objects of this type indicate which of the capabilities that JScrewIt can use to minimize the
|
|
4
|
+
length of its output are available in a particular JavaScript engine.
|
|
5
|
+
|
|
6
|
+
JScrewIt comes with a set of predefined feature objects exposed as property values of
|
|
7
|
+
`JScrewIt.Feature` or [`JScrewIt.Feature.ALL`](FeatureConstructor.md#all), where the property
|
|
8
|
+
name is the feature's name or alias.
|
|
9
|
+
|
|
10
|
+
Besides these predefined features, it is possible to construct custom features from the union or
|
|
11
|
+
intersection of other features.
|
|
12
|
+
|
|
13
|
+
Among the predefined features, there are some special ones called *elementary* features.
|
|
14
|
+
Elementary features either cannot be expressed as a union of any number of other features, or
|
|
15
|
+
they are different from such a union in that they exclude some other feature not excluded by
|
|
16
|
+
their elementary components.
|
|
17
|
+
All other features, called *composite* features, can be constructed as a union of zero or more
|
|
18
|
+
elementary features.
|
|
19
|
+
Two of the predefined composite features are particularly important: [`DEFAULT`](FeatureConstructor.md#default) is the empty feature, indicating that no elementary
|
|
20
|
+
feature is available at all; [`AUTO`](FeatureAll.md#auto) is the union of all
|
|
21
|
+
elementary features available in the current environment.
|
|
22
|
+
|
|
23
|
+
Not all features can be available at the same time: some features are necessarily incompatible,
|
|
24
|
+
meaning that they mutually exclude each other, and thus their union cannot be constructed.
|
|
25
|
+
|
|
3
26
|
## Hierarchy
|
|
4
27
|
|
|
5
28
|
- [`PredefinedFeature`](PredefinedFeature.md)
|
|
@@ -63,6 +86,11 @@ ___
|
|
|
63
86
|
|
|
64
87
|
• `Readonly` **name**: [`ElementaryFeatureName`](../README.md#elementaryfeaturename)
|
|
65
88
|
|
|
89
|
+
The primary name of this feature object, useful for identification purpose.
|
|
90
|
+
|
|
91
|
+
All predefined features have a name; custom features may be optionally assigned a name, too.
|
|
92
|
+
If a name is assigned, it will be used when the feature is converted into a string.
|
|
93
|
+
|
|
66
94
|
#### Overrides
|
|
67
95
|
|
|
68
96
|
[PredefinedFeature](PredefinedFeature.md).[name](PredefinedFeature.md#name)
|
|
@@ -17,12 +17,20 @@ their elementary components.
|
|
|
17
17
|
All other features, called *composite* features, can be constructed as a union of zero or more
|
|
18
18
|
elementary features.
|
|
19
19
|
Two of the predefined composite features are particularly important: [`DEFAULT`](FeatureConstructor.md#default) is the empty feature, indicating that no elementary
|
|
20
|
-
feature is available at all; [`AUTO`](
|
|
20
|
+
feature is available at all; [`AUTO`](FeatureAll.md#auto) is the union of all
|
|
21
21
|
elementary features available in the current environment.
|
|
22
22
|
|
|
23
23
|
Not all features can be available at the same time: some features are necessarily incompatible,
|
|
24
24
|
meaning that they mutually exclude each other, and thus their union cannot be constructed.
|
|
25
25
|
|
|
26
|
+
## Hierarchy
|
|
27
|
+
|
|
28
|
+
- **`Feature`**
|
|
29
|
+
|
|
30
|
+
↳ [`CustomFeature`](CustomFeature.md)
|
|
31
|
+
|
|
32
|
+
↳ [`PredefinedFeature`](PredefinedFeature.md)
|
|
33
|
+
|
|
26
34
|
## Table of contents
|
|
27
35
|
|
|
28
36
|
### Properties
|
|
@@ -17,12 +17,22 @@ Creates a new feature object from the union of the specified features.
|
|
|
17
17
|
The constructor can be used with or without the `new` operator, e.g.
|
|
18
18
|
`new JScrewIt.Feature(feature1, feature2)` or `JScrewIt.Feature(feature1, feature2)`.
|
|
19
19
|
If no arguments are specified, the new feature object will be equivalent to
|
|
20
|
-
[`DEFAULT`](
|
|
20
|
+
[`DEFAULT`](FeatureAll.md#default).
|
|
21
|
+
|
|
22
|
+
#### Parameters
|
|
23
|
+
|
|
24
|
+
| Name | Type |
|
|
25
|
+
| :------ | :------ |
|
|
26
|
+
| `...features` | [`FeatureElementOrCompatibleArray`](../README.md#featureelementorcompatiblearray)[] |
|
|
27
|
+
|
|
28
|
+
#### Returns
|
|
29
|
+
|
|
30
|
+
[`CustomFeature`](CustomFeature.md)
|
|
21
31
|
|
|
22
32
|
**`Example`**
|
|
23
33
|
|
|
24
34
|
The following statements are equivalent, and will all construct a new feature object
|
|
25
|
-
including both [`ANY_DOCUMENT`](
|
|
35
|
+
including both [`ANY_DOCUMENT`](FeatureAll.md#any_document) and [`ANY_WINDOW`](FeatureConstructor.md#any_window).
|
|
26
36
|
|
|
27
37
|
```js
|
|
28
38
|
new JScrewIt.Feature("ANY_DOCUMENT", "ANY_WINDOW");
|
|
@@ -40,16 +50,6 @@ new JScrewIt.Feature([JScrewIt.Feature.ANY_DOCUMENT, JScrewIt.Feature.ANY_WINDOW
|
|
|
40
50
|
|
|
41
51
|
An error is thrown if any of the specified features are not mutually compatible.
|
|
42
52
|
|
|
43
|
-
#### Parameters
|
|
44
|
-
|
|
45
|
-
| Name | Type |
|
|
46
|
-
| :------ | :------ |
|
|
47
|
-
| `...features` | [`FeatureElementOrCompatibleArray`](../README.md#featureelementorcompatiblearray)[] |
|
|
48
|
-
|
|
49
|
-
#### Returns
|
|
50
|
-
|
|
51
|
-
[`CustomFeature`](CustomFeature.md)
|
|
52
|
-
|
|
53
53
|
## Table of contents
|
|
54
54
|
|
|
55
55
|
### Constructors
|
|
@@ -165,19 +165,29 @@ An error is thrown if any of the specified features are not mutually compatible.
|
|
|
165
165
|
|
|
166
166
|
### constructor
|
|
167
167
|
|
|
168
|
-
• **new FeatureConstructor**(`...features`)
|
|
168
|
+
• **new FeatureConstructor**(`...features`): [`CustomFeature`](CustomFeature.md)
|
|
169
169
|
|
|
170
170
|
Creates a new feature object from the union of the specified features.
|
|
171
171
|
|
|
172
172
|
The constructor can be used with or without the `new` operator, e.g.
|
|
173
173
|
`new JScrewIt.Feature(feature1, feature2)` or `JScrewIt.Feature(feature1, feature2)`.
|
|
174
174
|
If no arguments are specified, the new feature object will be equivalent to
|
|
175
|
-
[`DEFAULT`](
|
|
175
|
+
[`DEFAULT`](FeatureAll.md#default).
|
|
176
|
+
|
|
177
|
+
#### Parameters
|
|
178
|
+
|
|
179
|
+
| Name | Type |
|
|
180
|
+
| :------ | :------ |
|
|
181
|
+
| `...features` | [`FeatureElementOrCompatibleArray`](../README.md#featureelementorcompatiblearray)[] |
|
|
182
|
+
|
|
183
|
+
#### Returns
|
|
184
|
+
|
|
185
|
+
[`CustomFeature`](CustomFeature.md)
|
|
176
186
|
|
|
177
187
|
**`Example`**
|
|
178
188
|
|
|
179
189
|
The following statements are equivalent, and will all construct a new feature object
|
|
180
|
-
including both [`ANY_DOCUMENT`](
|
|
190
|
+
including both [`ANY_DOCUMENT`](FeatureAll.md#any_document) and [`ANY_WINDOW`](FeatureConstructor.md#any_window).
|
|
181
191
|
|
|
182
192
|
```js
|
|
183
193
|
JScrewIt.Feature("ANY_DOCUMENT", "ANY_WINDOW");
|
|
@@ -195,12 +205,6 @@ JScrewIt.Feature([JScrewIt.Feature.ANY_DOCUMENT, JScrewIt.Feature.ANY_WINDOW]);
|
|
|
195
205
|
|
|
196
206
|
An error is thrown if any of the specified features are not mutually compatible.
|
|
197
207
|
|
|
198
|
-
#### Parameters
|
|
199
|
-
|
|
200
|
-
| Name | Type |
|
|
201
|
-
| :------ | :------ |
|
|
202
|
-
| `...features` | [`FeatureElementOrCompatibleArray`](../README.md#featureelementorcompatiblearray)[] |
|
|
203
|
-
|
|
204
208
|
#### Inherited from
|
|
205
209
|
|
|
206
210
|
FeatureAll.constructor
|
|
@@ -1621,18 +1625,6 @@ Available in Chrome, Edge, Firefox, Internet Explorer, Safari, Opera, and Androi
|
|
|
1621
1625
|
|
|
1622
1626
|
Determines whether the specified features are mutually compatible.
|
|
1623
1627
|
|
|
1624
|
-
**`Example`**
|
|
1625
|
-
|
|
1626
|
-
```js
|
|
1627
|
-
// false: only one of "V8_SRC" or "IE_SRC" may be available.
|
|
1628
|
-
JScrewIt.Feature.areCompatible("V8_SRC", "IE_SRC")
|
|
1629
|
-
```
|
|
1630
|
-
|
|
1631
|
-
```js
|
|
1632
|
-
// true
|
|
1633
|
-
JScrewIt.Feature.areCompatible(JScrewIt.Feature.DEFAULT, JScrewIt.Feature.FILL)
|
|
1634
|
-
```
|
|
1635
|
-
|
|
1636
1628
|
#### Parameters
|
|
1637
1629
|
|
|
1638
1630
|
| Name | Type |
|
|
@@ -1646,6 +1638,18 @@ JScrewIt.Feature.areCompatible(JScrewIt.Feature.DEFAULT, JScrewIt.Feature.FILL)
|
|
|
1646
1638
|
`true` if the specified features are mutually compatible; otherwise, `false`.
|
|
1647
1639
|
If less than two features are specified, the return value is `true`.
|
|
1648
1640
|
|
|
1641
|
+
**`Example`**
|
|
1642
|
+
|
|
1643
|
+
```js
|
|
1644
|
+
// false: only one of "V8_SRC" or "IE_SRC" may be available.
|
|
1645
|
+
JScrewIt.Feature.areCompatible("V8_SRC", "IE_SRC")
|
|
1646
|
+
```
|
|
1647
|
+
|
|
1648
|
+
```js
|
|
1649
|
+
// true
|
|
1650
|
+
JScrewIt.Feature.areCompatible(JScrewIt.Feature.DEFAULT, JScrewIt.Feature.FILL)
|
|
1651
|
+
```
|
|
1652
|
+
|
|
1649
1653
|
___
|
|
1650
1654
|
|
|
1651
1655
|
### areEqual
|
|
@@ -1657,6 +1661,19 @@ Determines whether all of the specified features are equivalent.
|
|
|
1657
1661
|
Different features are considered equivalent if they include the same set of elementary
|
|
1658
1662
|
features, regardless of any other difference.
|
|
1659
1663
|
|
|
1664
|
+
#### Parameters
|
|
1665
|
+
|
|
1666
|
+
| Name | Type |
|
|
1667
|
+
| :------ | :------ |
|
|
1668
|
+
| `...features` | [`FeatureElementOrCompatibleArray`](../README.md#featureelementorcompatiblearray)[] |
|
|
1669
|
+
|
|
1670
|
+
#### Returns
|
|
1671
|
+
|
|
1672
|
+
`boolean`
|
|
1673
|
+
|
|
1674
|
+
`true` if all of the specified features are equivalent; otherwise, `false`.
|
|
1675
|
+
If less than two arguments are specified, the return value is `true`.
|
|
1676
|
+
|
|
1660
1677
|
**`Example`**
|
|
1661
1678
|
|
|
1662
1679
|
```js
|
|
@@ -1669,6 +1686,14 @@ JScrewIt.Feature.areEqual(JScrewIt.Feature.CHROME, JScrewIt.Feature.FF)
|
|
|
1669
1686
|
JScrewIt.Feature.areEqual("DEFAULT", [])
|
|
1670
1687
|
```
|
|
1671
1688
|
|
|
1689
|
+
___
|
|
1690
|
+
|
|
1691
|
+
### commonOf
|
|
1692
|
+
|
|
1693
|
+
▸ **commonOf**(`...features`): ``null`` \| [`CustomFeature`](CustomFeature.md)
|
|
1694
|
+
|
|
1695
|
+
Creates a new feature object equivalent to the intersection of the specified features.
|
|
1696
|
+
|
|
1672
1697
|
#### Parameters
|
|
1673
1698
|
|
|
1674
1699
|
| Name | Type |
|
|
@@ -1677,46 +1702,25 @@ JScrewIt.Feature.areEqual("DEFAULT", [])
|
|
|
1677
1702
|
|
|
1678
1703
|
#### Returns
|
|
1679
1704
|
|
|
1680
|
-
`
|
|
1681
|
-
|
|
1682
|
-
`true` if all of the specified features are equivalent; otherwise, `false`.
|
|
1683
|
-
If less than two arguments are specified, the return value is `true`.
|
|
1684
|
-
|
|
1685
|
-
___
|
|
1686
|
-
|
|
1687
|
-
### commonOf
|
|
1688
|
-
|
|
1689
|
-
▸ **commonOf**(`...features`): ``null`` \| [`CustomFeature`](CustomFeature.md)
|
|
1705
|
+
``null`` \| [`CustomFeature`](CustomFeature.md)
|
|
1690
1706
|
|
|
1691
|
-
|
|
1707
|
+
A feature object, or `null` if no arguments are specified.
|
|
1692
1708
|
|
|
1693
1709
|
**`Example`**
|
|
1694
1710
|
|
|
1695
|
-
This will create a new feature object equivalent to [`NAME`](
|
|
1711
|
+
This will create a new feature object equivalent to [`NAME`](FeatureAll.md#name).
|
|
1696
1712
|
|
|
1697
1713
|
```js
|
|
1698
1714
|
const newFeature = JScrewIt.Feature.commonOf(["ATOB", "NAME"], ["NAME", "SELF"]);
|
|
1699
1715
|
```
|
|
1700
1716
|
|
|
1701
|
-
This will create a new feature object equivalent to [`ANY_DOCUMENT`](
|
|
1702
|
-
This is because both [`HTMLDOCUMENT`](
|
|
1717
|
+
This will create a new feature object equivalent to [FeatureConstructor.ANY_DOCUMENT | `ANY_DOCUMENT`](FeatureAll.md#any_document).
|
|
1718
|
+
This is because both [`HTMLDOCUMENT`](FeatureAll.md#htmldocument) and [`DOCUMENT`](FeatureConstructor.md#document) imply [FeatureConstructor.ANY_DOCUMENT | `ANY_DOCUMENT`](FeatureAll.md#any_document).
|
|
1703
1719
|
|
|
1704
1720
|
```js
|
|
1705
1721
|
const newFeature = JScrewIt.Feature.commonOf("HTMLDOCUMENT", "DOCUMENT");
|
|
1706
1722
|
```
|
|
1707
1723
|
|
|
1708
|
-
#### Parameters
|
|
1709
|
-
|
|
1710
|
-
| Name | Type |
|
|
1711
|
-
| :------ | :------ |
|
|
1712
|
-
| `...features` | [`FeatureElementOrCompatibleArray`](../README.md#featureelementorcompatiblearray)[] |
|
|
1713
|
-
|
|
1714
|
-
#### Returns
|
|
1715
|
-
|
|
1716
|
-
``null`` \| [`CustomFeature`](CustomFeature.md)
|
|
1717
|
-
|
|
1718
|
-
A feature object, or `null` if no arguments are specified.
|
|
1719
|
-
|
|
1720
1724
|
___
|
|
1721
1725
|
|
|
1722
1726
|
### descriptionFor
|
|
@@ -1725,14 +1729,6 @@ ___
|
|
|
1725
1729
|
|
|
1726
1730
|
Returns a short description of a predefined feature in plain English.
|
|
1727
1731
|
|
|
1728
|
-
**`Remarks`**
|
|
1729
|
-
|
|
1730
|
-
Different names or aliases of the same feature may have different descriptions.
|
|
1731
|
-
|
|
1732
|
-
**`Throws`**
|
|
1733
|
-
|
|
1734
|
-
An error is thrown if the specified argument is not a name or alias of a predefined feature.
|
|
1735
|
-
|
|
1736
1732
|
#### Parameters
|
|
1737
1733
|
|
|
1738
1734
|
| Name | Type | Description |
|
|
@@ -1742,3 +1738,11 @@ An error is thrown if the specified argument is not a name or alias of a predefi
|
|
|
1742
1738
|
#### Returns
|
|
1743
1739
|
|
|
1744
1740
|
`string`
|
|
1741
|
+
|
|
1742
|
+
**`Remarks`**
|
|
1743
|
+
|
|
1744
|
+
Different names or aliases of the same feature may have different descriptions.
|
|
1745
|
+
|
|
1746
|
+
**`Throws`**
|
|
1747
|
+
|
|
1748
|
+
An error is thrown if the specified argument is not a name or alias of a predefined feature.
|
|
@@ -1,8 +1,31 @@
|
|
|
1
1
|
# Interface: PredefinedFeature
|
|
2
2
|
|
|
3
|
+
Objects of this type indicate which of the capabilities that JScrewIt can use to minimize the
|
|
4
|
+
length of its output are available in a particular JavaScript engine.
|
|
5
|
+
|
|
6
|
+
JScrewIt comes with a set of predefined feature objects exposed as property values of
|
|
7
|
+
`JScrewIt.Feature` or [`JScrewIt.Feature.ALL`](FeatureConstructor.md#all), where the property
|
|
8
|
+
name is the feature's name or alias.
|
|
9
|
+
|
|
10
|
+
Besides these predefined features, it is possible to construct custom features from the union or
|
|
11
|
+
intersection of other features.
|
|
12
|
+
|
|
13
|
+
Among the predefined features, there are some special ones called *elementary* features.
|
|
14
|
+
Elementary features either cannot be expressed as a union of any number of other features, or
|
|
15
|
+
they are different from such a union in that they exclude some other feature not excluded by
|
|
16
|
+
their elementary components.
|
|
17
|
+
All other features, called *composite* features, can be constructed as a union of zero or more
|
|
18
|
+
elementary features.
|
|
19
|
+
Two of the predefined composite features are particularly important: [`DEFAULT`](FeatureConstructor.md#default) is the empty feature, indicating that no elementary
|
|
20
|
+
feature is available at all; [`AUTO`](FeatureAll.md#auto) is the union of all
|
|
21
|
+
elementary features available in the current environment.
|
|
22
|
+
|
|
23
|
+
Not all features can be available at the same time: some features are necessarily incompatible,
|
|
24
|
+
meaning that they mutually exclude each other, and thus their union cannot be constructed.
|
|
25
|
+
|
|
3
26
|
## Hierarchy
|
|
4
27
|
|
|
5
|
-
- [`Feature`](
|
|
28
|
+
- [`Feature`](Feature.md)
|
|
6
29
|
|
|
7
30
|
↳ **`PredefinedFeature`**
|
|
8
31
|
|
|
@@ -33,7 +56,7 @@ implied features.
|
|
|
33
56
|
|
|
34
57
|
#### Inherited from
|
|
35
58
|
|
|
36
|
-
Feature.canonicalNames
|
|
59
|
+
[Feature](Feature.md).[canonicalNames](Feature.md#canonicalnames)
|
|
37
60
|
|
|
38
61
|
___
|
|
39
62
|
|
|
@@ -45,7 +68,7 @@ A boolean value indicating whether this is an elementary feature object.
|
|
|
45
68
|
|
|
46
69
|
#### Inherited from
|
|
47
70
|
|
|
48
|
-
Feature.elementary
|
|
71
|
+
[Feature](Feature.md).[elementary](Feature.md#elementary)
|
|
49
72
|
|
|
50
73
|
___
|
|
51
74
|
|
|
@@ -57,7 +80,7 @@ An array of all elementary feature names included in this feature object, withou
|
|
|
57
80
|
|
|
58
81
|
#### Inherited from
|
|
59
82
|
|
|
60
|
-
Feature.elementaryNames
|
|
83
|
+
[Feature](Feature.md).[elementaryNames](Feature.md#elementarynames)
|
|
61
84
|
|
|
62
85
|
___
|
|
63
86
|
|
|
@@ -65,9 +88,14 @@ ___
|
|
|
65
88
|
|
|
66
89
|
• `Readonly` **name**: [`PredefinedFeatureName`](../README.md#predefinedfeaturename)
|
|
67
90
|
|
|
91
|
+
The primary name of this feature object, useful for identification purpose.
|
|
92
|
+
|
|
93
|
+
All predefined features have a name; custom features may be optionally assigned a name, too.
|
|
94
|
+
If a name is assigned, it will be used when the feature is converted into a string.
|
|
95
|
+
|
|
68
96
|
#### Overrides
|
|
69
97
|
|
|
70
|
-
Feature.name
|
|
98
|
+
[Feature](Feature.md).[name](Feature.md#name)
|
|
71
99
|
|
|
72
100
|
## Methods
|
|
73
101
|
|
|
@@ -92,7 +120,7 @@ If no arguments are specified, the return value is `true`.
|
|
|
92
120
|
|
|
93
121
|
#### Inherited from
|
|
94
122
|
|
|
95
|
-
Feature.includes
|
|
123
|
+
[Feature](Feature.md).[includes](Feature.md#includes)
|
|
96
124
|
|
|
97
125
|
___
|
|
98
126
|
|
|
@@ -119,4 +147,4 @@ that require strict mode code, or inside web workers.
|
|
|
119
147
|
|
|
120
148
|
#### Inherited from
|
|
121
149
|
|
|
122
|
-
Feature.restrict
|
|
150
|
+
[Feature](Feature.md).[restrict](Feature.md#restrict)
|
|
@@ -8,16 +8,6 @@
|
|
|
8
8
|
|
|
9
9
|
Encodes a given string into JSFuck.
|
|
10
10
|
|
|
11
|
-
**`Throws`**
|
|
12
|
-
|
|
13
|
-
An `Error` is thrown under the following circumstances.
|
|
14
|
-
- The specified string cannot be encoded with the specified options.
|
|
15
|
-
- Some unknown features were specified.
|
|
16
|
-
- A combination of mutually incompatible features was specified.
|
|
17
|
-
- The option `runAs` (or `wrapWith`) was specified with an invalid value.
|
|
18
|
-
|
|
19
|
-
Also, an out of memory condition may occur when processing very large data.
|
|
20
|
-
|
|
21
11
|
#### Parameters
|
|
22
12
|
|
|
23
13
|
| Name | Type | Description |
|
|
@@ -31,6 +21,16 @@ Also, an out of memory condition may occur when processing very large data.
|
|
|
31
21
|
|
|
32
22
|
The encoded string.
|
|
33
23
|
|
|
24
|
+
**`Throws`**
|
|
25
|
+
|
|
26
|
+
An `Error` is thrown under the following circumstances.
|
|
27
|
+
- The specified string cannot be encoded with the specified options.
|
|
28
|
+
- Some unknown features were specified.
|
|
29
|
+
- A combination of mutually incompatible features was specified.
|
|
30
|
+
- The option `runAs` (or `wrapWith`) was specified with an invalid value.
|
|
31
|
+
|
|
32
|
+
Also, an out of memory condition may occur when processing very large data.
|
|
33
|
+
|
|
34
34
|
## Table of contents
|
|
35
35
|
|
|
36
36
|
### Properties
|
package/lib/jscrewit.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
// JScrewIt 2.35.
|
|
1
|
+
// JScrewIt 2.35.2 – https://jscrew.it
|
|
2
2
|
|
|
3
3
|
(function () {
|
|
4
4
|
'use strict';
|
|
@@ -248,33 +248,39 @@
|
|
|
248
248
|
|
|
249
249
|
|
|
250
250
|
var extendStatics = function(d, b) {
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
251
|
+
extendStatics = Object.setPrototypeOf ||
|
|
252
|
+
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
|
|
253
|
+
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
|
|
254
|
+
return extendStatics(d, b);
|
|
255
255
|
};
|
|
256
256
|
|
|
257
257
|
function __extends(d, b) {
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
258
|
+
if (typeof b !== "function" && b !== null)
|
|
259
|
+
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
|
|
260
|
+
extendStatics(d, b);
|
|
261
|
+
function __() { this.constructor = d; }
|
|
262
|
+
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
|
|
263
263
|
}
|
|
264
264
|
|
|
265
265
|
var __assign = function() {
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
266
|
+
__assign = Object.assign || function __assign(t) {
|
|
267
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
268
|
+
s = arguments[i];
|
|
269
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
|
|
270
|
+
}
|
|
271
|
+
return t;
|
|
272
|
+
};
|
|
273
|
+
return __assign.apply(this, arguments);
|
|
274
|
+
};
|
|
275
|
+
|
|
276
|
+
typeof SuppressedError === "function" ? SuppressedError : function (error, suppressed, message) {
|
|
277
|
+
var e = new Error(message);
|
|
278
|
+
return e.name = "SuppressedError", e.error = error, e.suppressed = suppressed, e;
|
|
274
279
|
};
|
|
275
280
|
|
|
276
281
|
// ~feature-hub – https://github.com/fasttime/JScrewIt/tree/master/packages/~feature-hub
|
|
277
282
|
|
|
283
|
+
|
|
278
284
|
var BIN_POW_31 = 2147483648;
|
|
279
285
|
var BIN_POW_32 = 4294967296;
|
|
280
286
|
var BIN_POW_51 = 2251799813685248;
|
|
@@ -2332,6 +2338,7 @@
|
|
|
2332
2338
|
|
|
2333
2339
|
// ~solution – https://github.com/fasttime/JScrewIt/tree/master/packages/~solution
|
|
2334
2340
|
|
|
2341
|
+
|
|
2335
2342
|
var INVALID_EXPR = {};
|
|
2336
2343
|
function evalExpr$1(expr) {
|
|
2337
2344
|
var value = tryEvalExpr(expr);
|
|
@@ -2726,6 +2733,7 @@
|
|
|
2726
2733
|
// Compared to generic purpose encoding, definition encoding differs mainly in that every identifier
|
|
2727
2734
|
// used must be defined itself, too, in a constant definition.
|
|
2728
2735
|
|
|
2736
|
+
|
|
2729
2737
|
var AMENDINGS = ['true', 'undefined', 'NaN'];
|
|
2730
2738
|
|
|
2731
2739
|
var JSFUCK_INFINITY = '1e1000';
|
|
@@ -5242,7 +5250,7 @@
|
|
|
5242
5250
|
ConstIdentifier: 'Infinity|NaN|false|true|undefined',
|
|
5243
5251
|
DecimalLiteral: '(?:(?:0|[1-9]\\d*)(?:\\.\\d*)?|\\.\\d+)(?:[Ee][+-]?\\d+)?',
|
|
5244
5252
|
DoubleQuotedString: '"(?:#EscapeSequence|(?!["\\\\]).)*"',
|
|
5245
|
-
EscapeSequence: '\\\\(?:u#HexDigit{4}|x#HexDigit{2}|0(
|
|
5253
|
+
EscapeSequence: '\\\\(?:u#HexDigit{4}|x#HexDigit{2}|0(?!\\d)|\r\n|[^\\dux])',
|
|
5246
5254
|
HexDigit: '[0-9A-Fa-f]',
|
|
5247
5255
|
HexIntegerLiteral: '0[Xx]#HexDigit+',
|
|
5248
5256
|
NumericLiteral: '#HexIntegerLiteral|#DecimalLiteral',
|
|
@@ -8298,6 +8306,7 @@
|
|
|
8298
8306
|
//
|
|
8299
8307
|
// The leading append plus is omitted when the optimized cluster is the first element of a group.
|
|
8300
8308
|
|
|
8309
|
+
|
|
8301
8310
|
var BOND_EXTRA_LENGTH = 2; // Extra length of bonding parentheses "(" and ")".
|
|
8302
8311
|
var CLUSTER_EXTRA_LENGTHS = [];
|
|
8303
8312
|
var DECIMAL_DIGIT_MAX_COUNTS = [];
|
package/lib/jscrewit.min.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
// JScrewIt 2.35.
|
|
2
|
-
!function(){"use strict";function s(n,r){return ln(r).forEach(function(e){var t=_n(r,e);t.enumerable=!1,fn(n,e,t)}),n}function m(t){var n=N();return ln(t).forEach(function(e){n[e]=t[e]}),n}function x(e,t){try{var n=Rn(e,t);if(n.flags===t)return n}catch(e){}}function w(e,t,n,r){var i=(i=this.startLinks)[o=e]||(i[o]=[]),o=i[t];o?o.saving<r&&(o.data=n,o.saving=r):(o=i[t]={start:e,length:t,data:n,saving:r},this.clusters.push(o)),this.maxLength<t&&(this.maxLength=t)}function D(e,t){return e.saving-t.saving||t.length-e.length||k(t,e)}function k(e,t){return t.start-e.start}function U(){var e,t=[],n=this.clusters;if(n.length){for(n.sort(D);e=function(e,t,n){for(var r;r=t.pop();)if(null!=r.saving){for(var i,o=e,u=n,a=r.start,c=a,s=a+r.length;(i=o[c])&&(W(i,0),delete o[c]),++c<s;);for(var f=1;f<u;)(i=o[a-f++])&&(W(i,f),i.length=f);return r}}(this.startLinks,n,this.maxLength);)t.push(e);t.sort(k)}return t}function W(e,t){for(var n=e.length;n-- >t;){var r=e[n];r&&delete r.saving}}function H(e,t){function n(){this.constructor=e}if("function"!=typeof t&&null!==t)throw new TypeError("Class extends value "+String(t)+" is not a constructor or null");Sn(e,t),e.prototype=null===t?Object.create(t):(n.prototype=t.prototype,new n)}function O(e,t){var n;return(e&(n=0|t))==n&&(e/bn&(n=t/bn|0))==n}function M(e,t){return((e|t)&On)+(e/Nn|t/Nn)*Nn}function X(e,t){for(var n=0,r=Un(t);n<r.length;n++){var i=r[n],o=kn(t,i);o.enumerable=!1,Dn(e,i,o)}}function G(e){if("symbol"==typeof e)throw new Hn("Cannot convert a symbol to a string");return Wn(e)}function q(e,t){Dn(e,"mask",{value:t})}function J(e,i,o,u,a,c,s){return(!u.length||e&&!function(){for(var e=i.length+o.length+(u.length-1)*(a.length+1)+c.length,t=0,n=u;t<n.length;t++){var r=n[t];if(~r.indexOf("\n"))return 1;if(e+=r.replace(/\x1b\[\d+m/g,"").length,s<e)return 1}}()?"".concat(i).concat(o).concat(u.join("".concat(a," "))):"".concat(i,"\n").concat(u.join("".concat(a,"\n")).replace(/^/gm," "),"\n")).concat(c)}function $(e){throw new mn("Unknown feature ".concat(xn(e)))}function e(e,t,n){t=t.toLocaleString(e);return n.test(t)}function j(){try{var e=self+""}catch(e){return!1}return this(e)}function n(e){return"Features available in "+e+"."}function B(){var e=arguments,t=e.length-2,n=e[t],r=e[1+t],e=Z(e,0,t),t=Z(n,r);return Jt(e,t),this.apply(null,e)}function K(e,t){return{definition:e,mask:t}}function f(e){return K(e,Z(arguments,1).reduce(function(e,t){return M(e,t.mask)},Y))}function Q(n,e){e=e.map(function(e){var t=n[e.definition];return K(t.definition,M(e.mask,t.mask))});return e.available=n,e}function V(e){e._=B}function Z(e,t,n){return $t(e,t,n)}function ee(e,t){return(e-55296<<10)+t+9216}function te(e){return Kt(e+1).join("0")}function ne(e,t){return Cn.replaceString(e,t)}function re(){var n,r=1/0;return Xt(arguments,function(e){var t=e.length;t<r&&(n=e,r=t)}),n}function r(){for(var e=[],t=0;t<arguments.length;t++)e[t]=arguments[t];for(var n=0,r=0,i=e;r<i.length;r++)n|=i[r];return n}function ie(){for(var e=[],t=0;t<arguments.length;t++)e[t]=arguments[t];var n=r.apply(void 0,e);return function(e){return kt(n,e)}}function oe(e){for(var t=0,n=Jn;t<n.length;t++){var r=n[t];if(function(e,n){return!(e.length>n.length)&&e.every(function(e,t){return kt(e,n[t].type)})}(r.typeSetList,e))return r}}function ue(e){return"undefined"!==e?"undefined":"falsefalse"}function _(e,t){return f._({block:e,shiftedIndex:t},arguments,2)}function ae(e){var t=ur[e];if(!t){var n=d.AT,r=d.FF_SRC,i=d.IE_SRC,o=d.NO_FF_SRC,u=d.NO_IE_SRC,a=d.NO_V8_SRC,c=d.V8_SRC;switch(e){case 16:t=[_("FBEP_4_S","2 + FH_SHIFT_1"),_("FBP_5_S",21,o),_("FBEP_4_S",20,u),_("RP_0_S","2 + FH_SHIFT_1",a),f(0,r),f(0,i),f(4,c)];break;case 18:case 28:t=[_("RP_5_A + [FBP_7_WA]",e+12),_("RP_4_A + [FBP_8_WA]",e+12,n),_("[RP_3_WA] + FBP_9_U",e+12,o),_("[RP_3_WA] + FBEP_9_U",e+12,u),_("FBEP_4_S",e+4,d.INCR_CHAR,u),_("RP_0_S",(e+2)/10+" + FH_SHIFT_3",a),f(0,r),f(0,i),f(3,c)];break;case 20:case 30:t=[_("RP_3_WA + [FBP_7_WA]",e+10),_("FBEP_10_S",(e+10)/10+" + FH_SHIFT_1",n),_("[RP_1_WA] + FBP_9_U",e+10,o),_("FBEP_10_S",e+10,u),_("RP_6_S",(e+10)/10+" + FH_SHIFT_1",a),f(6,r),f(5,i),f(0,c)];break;case 21:t=[_("FBEP_9_U","3 + FH_SHIFT_1"),_("FBP_9_U",30,o),_("FBEP_9_U",30,u),_("RP_5_A","3 + FH_SHIFT_1",a),f(5,r),f(4,i),f(0,c)];break;case 23:t=[_("FBP_7_WA",30),_("FBP_9_U",32,o),_("FBEP_9_U",32,u),_("RP_3_WA","3 + FH_SHIFT_1",a),f(3,r),f(3,i),f(0,c)];break;case 25:t=[_("FBP_7_WA",32),_("FBP_5_S",30,o),_("RP_1_WA + FBEP_4_S",30,u),_("RP_1_WA","3 + FH_SHIFT_1",a),f(1,r),f(0,i),f(5,c)];break;case 32:t=[_("FBP_8_WA",40),_("FBP_9_U",41,o),_("FBEP_9_U",41,u),_("RP_4_A","4 + FH_SHIFT_1",a),f(4,r),f(3,i),f(0,c)];break;case 34:t=[_("FBP_7_WA",41),_("RP_1_WA + FBP_5_S",40,o),_("FBEP_9_U",43,u),_("RP_2_WS","4 + FH_SHIFT_1",a),f(3,r),f(1,i),f(6,c)]}t.cacheKey="FBP:"+e,ur[e]=t}return t}function ce(e){var t=ar[e];if(!t){var n=d.IE_SRC,r=d.INCR_CHAR,i=d.NO_IE_SRC;switch(e){case 3:case 13:t=[_("RP_4_A + [FHP_3_WA]",e+7),_("FHP_8_S",e+8,r),f(6,n),f(0,i)];break;case 6:case 16:t=[_("FHP_5_A",e+5),f(3,n),f(4,i)];break;case 8:case 18:t=[_("FHP_3_WA",e+3),_("RP_2_WS",(e+2)/10+" + FH_SHIFT_1",r),f(1,n),f(3,i)];break;case 9:case 19:t=[_("RP_1_WA",(e+1)/10+" + FH_SHIFT_1"),f(0,n),f(1,i)];break;case 11:t=[_("RP_0_S","1 + FH_SHIFT_2"),f(0,n),f(0,i)];break;case 12:t=[_("FHP_8_S",20),f(0,n),f(0,i)];break;case 14:t=[_("[RP_1_WA] + FHP_5_A",20),f(5,n),f(6,i)];break;case 15:t=[_("FHP_5_A",20),f(4,n),f(5,i)];break;case 17:t=[_("FHP_3_WA",20),_("RP_3_WA","2 + FH_SHIFT_1",r),f(3,n),f(3,i)]}t.cacheKey="FHP:"+e,ar[e]=t}return t}function se(e,t){var n=function(e){for(var t=!1;"value"in e&&Te(e);){var n=e.value;if(!Qt(n))return null==n&&t?"":S(n);if(!(e=n[0]))return"";t=!0}}(t);null!=n&&(t.str=n),t.type="get",fe(e,t)}function fe(e,t){e=e.opsStack;e[e.length-1].push(t)}function _e(e,t){if(!e.mod&&"value"in e&&e.arithmetic&&!e.pmod){var n=e.value;e:for(var r=t.length;r--;)switch(t[r]){case"!":n=!n;break;case"+":n=+n;break;case"-":n=-n;break;case"#":break e}e.value=n,t=t.slice(0,r+1)}t&&(t=Se(t,e.mod||"",e.pmod),e.mod=t,e.arithmetic=!0)}function le(e){e=u(e,Si);if(e){var t=tn('"'+e+'"');if(/^[$A-Z_a-z][$\w]*$/.test(t))return{escaped:t.length<e.length,identifier:t}}}function Re(e){return en("return "+e)()}function de(e,t){if(i(e)&&xe(t))return Ne(t,{value:[e]}),o}function pe(e,t){if(Pe(t))return Ne(t,e),o}function Ae(e,t){if(i(e)&&xe(t))return se(t,e),o}function he(e,t){if(i(e)&&Pe(t))return e.type="param-call",fe(t,e),o}function i(e){var t=e.mod||"";if(!/-/.test(t)&&(!/#$/.test(t)||e.ops.length))return e.mod=t.replace(/#/g,"++"),e}function Te(e){return!e.mod&&!e.ops.length}function Se(e,t,n){e=(e+t).replace(/\+\+|--/,"+").replace(/\+-|-\+/,"-").replace(/!-/,"!+").replace(/\+#/,"#").replace(/!\+!/,"!!").replace("!!!","!");return n?e.replace(/\+$/,""):e}function Ee(e){e="^(?:"+De(e)+")";return Rn(e)}function Ne(e,t){e.opsStack.push([]),Fe(e,t)}function o(e){if(ge(e))return Pe(e)?(fe(e,{type:"call"}),o):(Ie(e,he),Oe);if(me(e))return Ie(e,Ae),Oe;if(u(e,/^\./))return(t=le(e))?(se(e,{ops:[],value:t.identifier}),o):void 0;var t=ve(e),n=e.opsStack.pop();if(n.length&&(t.arithmetic=!1,t.mod||t.pmod)){if(!i(t))return;t={terms:[t]}}t.ops=n=(t.ops||[]).concat(n),!n.length||t.mod||t.pmod||/^.*$/.test(e.separator)&&(n=u(e,/^\+\+/))&&(t.pmod=n,t.arithmetic=!0);n=e,e=t,t=ve(n);if(_e(e,n.modStack.pop()),t){if(!i(e))return;var r=t.terms;if(r&&Te(t))r.push(e),e.arithmetic||(t.arithmetic=!1);else{if(!i(t))return;t={arithmetic:t.arithmetic&&e.arithmetic,ops:[],terms:[t,e]}}}else t=e;r=u(n,/^(?:\+(?!\+)|-(?!-))/);return r?("-"!==r||t.arithmetic||_e(t,"+"),Le(n,Ce(n,"+"===r?"":r)),Fe(n,t),be):n.finalizerStack.pop()(t,n)}function be(e){var t=u(e,bi);if(t)return Ne(e,{value:Re(t)}),o;t=u(e,Ti);if(t)return Ne(e,{arithmetic:!0,value:Re(t)}),o;if(me(e))return xe(e)?(Ne(e,{value:[]}),o):(Ie(e,de),Oe);if(ge(e))return Ie(e,pe),Oe;t=le(e);if(t){var n,r=t.identifier,t=t.escaped;if(hi.indexOf(n=r)<0&&(!t||Ai.indexOf(n)<0))return Ne(e,{identifier:r}),o}}function Oe(e){if(e.finalizerStack.length<=1e3)return Le(e,Ce(e,"")),Fe(e),be}function ve(e){return e.unitStack.pop()}function Ie(e,t){e.finalizerStack.push(t)}function Le(e,t){e.modStack.push(t)}function Fe(e,t){e.unitStack.push(t)}function u(e,t){var n,r=e.data,t=t.exec(r);if(t)return t=t[0],r=r.slice(t.length),(n=Ni.exec(r)[0])&&(r=r.slice(n.length)),e.data=r,e.separator=n,t}function Ce(e,t){for(var n;n=u(e,/^(?:!|\+\+?|-(?!-))/);)t=Se(t,n.replace(/\+\+/g,"#"));return t}function ge(e){return u(e,/^\(/)}function Pe(e){return u(e,/^\)/)}function ye(e){e.data=e.data.replace(Ei,"")}function me(e){return u(e,/^\[/)}function xe(e){return u(e,/^]/)}function we(e,t){return"(?:"+(null==(r=pi[t])&&(n=di[t],pi[t]=r=De(n)),r)+")";var n,r}function De(e){return e.replace(/#(\w+)/g,we)}function ke(e){var t,e={data:e,modStack:[],opsStack:[],finalizerStack:[i],unitStack:[]};return ye(e),!e.data||((t=function(e){for(var t=Oe;"function"==typeof t;t=t(e));return t}(e))&&(ye(e),!e.data)?t:void 0)}function Ue(e,t,n,r,i){var o,u,a,c,t=e.$.slice(t,t+n),n=e.ee,s=(n.length&&(e=n,o=t,u=r,a=i,c={addCluster:w,clusters:[],conclude:U,maxLength:0,startLinks:N()},e.forEach(function(e){e.optimizeSolutions(c,o,u,a)}),c.conclude().forEach(function(e){var t=(0,e.data)();o.splice(e.start,e.length,t)})),t),n=r,e=i,f=new Kn,_=s.length;if(_){var l=0;do{var R=s[l]}while(f.append(R),++l<_)}else f.append(er);!f.isString&&e&&f.append(er);t=f.replacement;return n&&f.isLoose?"("+t+")":t}function We(e,t,n){this.te=t,this.ne=an(2,t-1),this.ee=n,this.re=e,this.$=[],this.ie=-3}function He(e,t,n){return+(e+t+"e"+n)}function je(e){var e=/^(\d+)(?:\.(\d+))?(?:e(.+))?$/.exec(e),t=e[2]||"",o=(e[1]+t).replace(/^0+/,""),u=o.search(/0*$/),a=(0|e[3])-t.length+o.length-u,e=function(){for(var e=u-1,t=o.slice(0,e),n=+o[e],r=He(t,n,a);;){var i=n-1;if(He(t,i,a)!==r)break;n=i}return t+n}();return 0<=a?a<10?e+te(a):a%100==99&&(99<a||e[1])?e.replace(/.$/,".$&e")+(1+a):e+"e"+a:a>=-e.length?e.slice(0,a)+"."+e.slice(a):(t=-e.length-a,function(e,t,n){var r,i=-93<t%100?-7<t%10?0:10+t%10:100+t%100;if(e+=te(i),6*i+26+136+(i=S(-(t-=i)),r=0,Xt(i,function(e){r+=vi[e]}),r)<n)return e+"e"+t}(e,a,73+6*t)||"."+te(t)+e)}function Be(e,t){return Qt(t)?e.findDefinition(t):t}function Me(e){var t="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"[e>>2]+qr[3&e],n="("+this.replaceString(t)+")",t=(2<t.length&&(n+=Ge(0)),Be(this,Qr[e>>4])),r=t+Be(this,Jr[15&e]),t=Ge(1+(t.length-2)/4*3),r="("+this.replaceString(r)+")"+t,t=Kr[e>>6],e=t+$r[63&e],t=Ge(2+(t.length-3)/4*3),n=re(n,r,"("+this.replaceString(e)+")"+t);return this.resolveConstant("atob").replacement+n}function Ge(e){return"["+ne(S(e))+"]"}function Ye(e){var t=e<65536?this.findDefinition(ni):"fromCodePoint",t=this.replaceString(t,{optimize:!0}),e=this.replaceExpr(0===e?"[]":1===e?"true":e<10?""+e:'"'+e+'"');return this.replaceExpr("String")+"["+t+"]("+e+")"}function ze(e,t,n){var r=e.findDefinition(ai),t=t.toString(16),i=(n=n?te(n-t.length)+t.replace(/fa?$/,"false"):t).replace(/b/g,r);return"b"!==r&&/(?=.*b.*b)(?=.*c)|(?=.*b.*b.*b)/.test(t)&&(r=e.replaceString(n,Ci),t=e.replaceString(i,Fi),r.length<t.length)?n:i}function Xe(e){var t,e=65536<=e?(n="u{"+ze(this,e)+"}",!(t=!1)):253<=e||e in gi?(t=5<(n="u"+ze(this,e,4)).length,!0):(n=e.toString(8),t=!1),n='Function("return\\"" + ESCAPING_BACKSLASH + "'+n+'\\"")()';return t&&(n+="[0]"),this.replaceExpr(n,{default:!1,toStringOpt:e})}function qe(e){var t,e=e<256?(t=2<(n=ze(this,e,2)).length,!1):(t=5<(n="u"+ze(this,e,4)).length,!0),n='unescape("%'+n+'")';return t&&(n+="[0]"),this.replaceExpr(n,{default:!1,toStringOpt:e})}function Je(e){this.mask=e,this.oe=sn(yi),this.ue=sn(mi),this.ae=N(),this.ce=N(),this.se=[]}function $e(e,t,n){var r,i,o,u,a=e.se,c=a.indexOf(t);a.push(t);try{if(~c)throw r=a.slice(c),i=wi(e.mask),o="Circular reference detected: "+r.join(" < ")+" – "+i,s(u=new dn(o),{chain:r,feature:i}),u;n.call(e)}finally{a.pop()}}function Ke(n,r,e,i){var o;return e.forEach(function(e,t){n.hasFeatures(e.mask)&&(e=n.resolve(e.definition,r,i),!o||o.length>e.length)&&null==(o=e).entryCode&&(o.entryCode=t)},n),o}function Qe(e,t,n){var r=t in e.constantDefinitions?e.resolveConstant(t):or[t],e=(r||Ze(e,"Undefined identifier "+t),n&&r.isLoose||1<n&&"!"===r.replacement[0]),t=r.replacement;return e?"("+t+")":t}function Ve(e,t,n,r,i){r=r.call(e,n),e=new C(t,r,F.STRING);return e.entryCode=i,e}function Ze(e,t){var e=e.se,n=e.length;throw n&&(t+=" in the definition of "+e[n-1]),new dn(t)}function et(n,r){function u(e,t){e=cn(e);return e.sortLength=t,e}function e(e,t,n){e=u(e,t);return e.isJoiner=n,e}function i(t){var e=c-t.sortLength,e=s[e];e&&e.forEach(function(e){o(e+t,c,t)})}function o(e,t,n){if(!(e in l)){l[e]=null;var r=s[t]||(s[t]=[]),i=u(e,t);for(r.push(i),n.isJoiner=!1;;++_){var o=a[_];if(!o)break;if(o.isJoiner){i.joiner=o.valueOf();break}}}}var a=[e("",0,!1),e("false",4,!0),e("true",5,!0),e("0",6,!0),e("undefined",7,!0),e("1",8,!0),e("NaN",9,!0),e("2",12,!0),e("f",14,!1),e("t",15,!1),e("a",16,!1),e("3",17,!0),e("N",17,!1),e("r",17,!1),e("u",17,!1),e("n",19,!1),e("l",20,!1),e("4",22,!0),e("d",23,!1),e("s",25,!1),e("e",26,!1),e("5",27,!0),e("i",28,!1),e("6",32,!0),e("7",37,!0),e("8",42,!0),e("9",47,!0)],c=0,s=[],f=[],_=0,l=N(),R=a.filter(function(e){var t=e.valueOf();if(0<=n.indexOf(t))o(t,e.sortLength,e);else if(t!==r)return!0});return function(e){for(;f.length<=e;){R.forEach(i);var t=s[c++];t&&Jt(f,t)}return f[e]}}function tt(i,e,t,n,r){var o,u,a=e.length,c=i.perfLog,s=[],f=(s.name=r,s.inputLength=a,c.push(s),cn(e));return ln(t).forEach(function(e){f[e]=t[e]}),n.forEach(function(e){var t,n=Bi[e],e={strategyName:e},r=a<n.minInputLength?"skipped":i.hasFeatures(n.mask)?(i.perfLog=e.perfLog=[],r=new Vt,t=null!=o?o.length:NaN,n=n.call(i,f,t),t=new Vt-r,i.perfLog=c,e.time=t,null!=n?(o=n,u&&(u.status="superseded"),(u=e).outputLength=n.length,"used"):"incomplete"):"unsuited";e.status=r,s.push(e)}),o}function nt(e,t,n,r,i,o,u){t=qt(t,function(e){return n[e]});return e.replaceStringArray(t,r,i,o,u)}function rt(e,t,n,r){return t+"["+e.replaceString("map",{optimize:!0})+"]("+e.replaceExpr(n,!0)+"("+r+"))"}function it(e,t,n,r){n=e.findDefinition(ri)(n,r);return t+"["+e.replaceString("map",{optimize:!0})+"]("+e.replaceExpr('Function("return '+n+'")()',!0)+")["+e.replaceString("join")+"]([])"}function ot(e,t,n,r,i,o){var u="strCodeCache"+(i?"Radix"+i:""),r=r(t.valueOf(),i,t[u]||(t[u]=N())),t=e.replaceFalseFreeArray(r,o);if(t&&!((i=i?it(e,t,n,"parseInt(undefined,"+i+")"):r.length>e.fe?it(e,t,n,"undefined"):(u=e.findDefinition(ci)+"."+n+"(",e.resolveConstant("Function").replacement+"("+e.replaceString(u,{optimize:!0})+"+"+t+"+"+e.resolveCharacter(")").replacement+")()")).length>o))return i}function ut(e,t,n,r,i){var o;if(!n||t){if(null==(o=st(e,t,!n||n.forceString?Ii:0,r,i)))return}else o="";if(!((o=n?n.call(e,o):o).length>i))return o}function at(e,t,n,r,i,o,u){var a=o.valueOf(),o=_t(o),c=N(),s=t(a),t=o.map(function(e,t){t=n(t);return c[e.char]=t,s+=e.count*t.sortLength,t}),o=ct(e,o.map(function(e){return e.char}),u-s);if(o){var r=e._e(r,n,t),f=u-o.length,t=e.replaceStringArray(t,r,null,!0,f-s);if(t){r=nt(e,a,c,i,null,!0,f-t.length);if(r)return a=e.findDefinition(ii),i=rt(e,r,a("undefined",".indexOf(undefined)"),t),e.createDictEncoding(o,i,u)}}}function ct(e,t,n){if(!(n<0)){e=tt(e,t.join(""),{screwMode:Ii},["byCodePointsRadix4","byCharCodesRadix4","byCodePoints","byCharCodes","plain"],"legend");if(e&&!(e.length>n))return e}}function st(e,t,n,r,i){e=tt(e,t,{screwMode:n},["byDenseFigures","bySparseFigures","byDictRadix5AmendedBy3","byDictRadix4AmendedBy2","byDictRadix4AmendedBy1","byDictRadix5","byDictRadix3AmendedBy1","byDictRadix4","byDict","byCodePointsRadix4","byCharCodesRadix4","byCodePoints","byCharCodes","plain"],r);if(null!=e&&!(e.length>i))return e}function ft(e,t){var n=[Ui],e=e(t.length-1).joiner;return null!=e&&n.push({joiner:e,separator:e}),n}function _t(e){var t,n,r=e.freqList;return r||(t=N(),Xt(e,function(e){(t[e]||(t[e]={char:e,charCode:e.charCodeAt(),count:0})).count++}),n=ln(t),e.freqList=r=n.map(function(e){return t[e]}).sort(function(e,t){return t.count-e.count||e.charCode-t.charCode})),r}function lt(){return[ki]}function Rt(e){return e.length?e.join(":"):"0"}function dt(e){return on(4*(e.length-1)-3,0)}function pt(){return-1}function At(e,t,n){for(var r=[],i=/[^]/g;o=i.exec(e);){var o=o[0],u=n[o];null==u&&(u=n[o]=o.charCodeAt().toString(t)),r.push(u)}return r}function ht(e,t,n){for(var r=[],i=x(".","gsu")||/[\ud800-\udbff][\udc00-\udfff]|[^]/g;o=i.exec(e);){var o=o[0],u=n[o];null==u&&(u=n[o]=Xi(o).toString(t)),r.push(u)}return r}function Tt(e){return"[][[]]"===e&&(e+="+[]"),e}function St(e){return this.resolveConstant("Function").replacement+"("+e+")()"}function Et(e){return this.replaceExpr('Function("return eval")()')+"("+e+")"}function Nt(e){if(","===e.source)return 0}function bt(e){e=e.source;return e&&1===e.length}function Ot(e,t,n){if(e&&1===e.length){e=e.charCodeAt();if(t<=e&&e<=n)return e}}function vt(e){return An(e,Ki)+1}function It(e){Gi.set(e.mask,e)}function Lt(e,t){e=function(e){if("symbol"==typeof e)throw new pn("Cannot convert a symbol to a string");return S(e)}(e);var n=(t=t||{}).features,r=t.runAs,r=void 0!==r?Ft(r,"runAs"):Ft(t.wrapWith,"wrapWith"),i=r[0],r=r[1],o=(t.trimCode&&(u=(u=e).replace(/^(?:\s|\uFEFF|\/\/.*(?!.)|\/\*[\s\S]*?\*\/)*(?!.)\s/,""),e=u=(o=Mi.exec(u))&&"\\"!==u[(o=o.index)-1]?u.slice(0,o):u),t.perfInfo),u=no(n);return(t=Gi.get(u))||(It(t=new Je(u)),Pt()),(Yi=t).le(e,i,r,o)}function Ft(e,t){var n=["text","express"],r=["text"];if(void 0===e)return[Et,n];switch(S(e)){case"call":return[St,r];case"eval":return[Et,r];case"express":return[,["express"]];case"express-call":return[St,n];case"express-eval":return[Et,n];case"none":return[,r]}throw new Zt("Invalid value for option "+t)}function Ct(){zi=void 0,ro||(gt(),It(Yi))}function gt(){Gi=new In}function Pt(){!ro&&!zi&&1<Gi.size&&(zi=hn(Ct))}function yt(e){return"_".concat(e)}function mt(){this.Re=Object.create(null),this.de=0}function xt(){return null!==vn&&vn.apply(this,arguments)||this}function wt(){return null!==Ln&&Ln.apply(this,arguments)||this}function Dt(){return wn(null)}function kt(e,t){return 0!=(e&t)}function Ut(){}function Wt(){var e=null!==$n&&$n.apply(this,arguments)||this;return e.$=[],e}function Ht(e,t,n){var r=Qn.call(this)||this;return r.source=e,r.type=n,r.defineReplacement({get:function(){var e=t();return this.defineReplacement({value:e,writable:!0}),e}}),r}function jt(e,t,n){var r=Zn.call(this)||this;return r.source=e,r.replacement=t,r.type=n,r}function a(t){function e(e){return!(t&&e in t)||t[e]}return f((n=e("atob"),r=e("charCode"),i=e("escSeq"),o=e("unescape"),function(e){var t=e.charCodeAt();return this.pe(e,t,n&&t<256,r,i,o)}));var n,r,i,o}function t(e,t){var n,r=e,i=ce(n=t);return f._(function(e){return this.Ae(e,r,n,i,ti)},arguments,2)}function Bt(e){return f((t=e,function(e){return this.he(e,t,ae,ei)}));var t}function Mt(e){var t=e;return f._(function(e){return this.he(e,t,ce,ti)},arguments,1)}function Gt(e,t,n){t="("+t+")[TO_LOCALE_STRING]("+e+")";return null!=n&&(4<n?t="("+ir[10-n]+" + "+t+")[10]":t+="["+n+"]"),f._(t,gr,arguments,3)}function Yt(e,t,n){var r;or[e]=(r=t,new Vn(e,function(){return Cn.replaceExpr(r)},n))}function c(e,t,n,r){Vr[e]=[Gt._(t,n,r,arguments,4),a()]}function zt(e,t){for(var n=S.fromCharCode,r=0;r<=9;++r){var i=n(t+r);c._(i,e,r,void 0,arguments,2)}}function l(e,t,n,r){return e.minInputLength=t,e.expressionMode=n=void 0!==n&&n,void 0===r&&(r=d.DEFAULT),e.mask=r.mask,e}var Xt,qt,Jt,$t,Kt=Array,Qt=Kt.isArray,Vt=Date,Zt=Error,en=Function,tn=JSON.parse,nn=JSON.stringify,rn=Math.abs,on=Math.max,un=Math.min,an=Math.pow,cn=Object,sn=cn.create,fn=cn.defineProperty,_n=cn.getOwnPropertyDescriptor,ln=cn.keys,Rn=RegExp,S=String,dn=SyntaxError,pn=TypeError,An=parseInt,hn=setTimeout,N=sn.bind(null,null,void 0),Tn=en(),Sn=(p=Kt.prototype,Bn=(R=en.prototype).apply,(R=R.call).bind(p.every),Xt=R.bind(p.forEach),qt=R.bind(p.map),$t=R.bind(p.slice),Jt=Bn.bind(p.push),function(e,t){return(Sn=Object.setPrototypeOf||({__proto__:[]}instanceof Array?function(e,t){e.__proto__=t}:function(e,t){for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}))(e,t)}),En=function(){return(En=Object.assign||function(e){for(var t,n=1,r=arguments.length;n<r;n++)for(var i in t=arguments[n])Object.prototype.hasOwnProperty.call(t,i)&&(e[i]=t[i]);return e}).apply(this,arguments)},Nn=2147483648,bn=4294967296,On=2147483647,Y=0,R=(Object.defineProperty(mt.prototype,"size",{get:function(){return this.de},enumerable:!1,configurable:!0}),mt.prototype.has=function(e){return yt(e)in this.Re},mt.prototype.Te=function(e,t){var e=yt(e),n=this.Re;e in n||++this.de,n[e]=t},mt);H(xt,vn=R),xt.prototype.get=function(e){e=yt(e);return this.Re[e]},xt.prototype.set=function(e,t){this.Te(e,t)};var vn,In=xt;H(wt,Ln=R),wt.prototype.add=function(e){this.Te(e,void 0)};var Ln,Fn,d,Cn,gn,Pn=wt,yn=Array.isArray,mn=Error,xn=JSON.stringify,wn=Object.create,Dn=Object.defineProperty,z=Object.freeze,kn=Object.getOwnPropertyDescriptor,Un=Object.keys,Wn=String,Hn=TypeError,jn={ANY_DOCUMENT:{description:'Existence of the global object document whose string representation starts with "[object " and ends with "Document]".',check:function(){return"object"==typeof document&&/^\[object [\S\s]*Document]$/.test(document+"")},attributes:{"web-worker":"web-worker-restriction"}},ANY_WINDOW:{description:'Existence of the global object self whose string representation starts with "[object " and ends with "Window]".',check:j.bind(function(e){return/^\[object [\S\s]*Window]$/.test(e)}),includes:["SELF_OBJ"],attributes:{"web-worker":"web-worker-restriction"}},ARRAY_ITERATOR:{description:'The property that the string representation of Array.prototype.entries() starts with "[object Array" and ends with "]" at index 21 or 22.',check:function(){return Array.prototype.entries&&/^\[object Array[\S\s]{8,9}]$/.test([].entries())}},ARROW:{description:"Support for arrow functions.",check:function(){try{return Function("()=>{}")(),!0}catch(e){}}},AT:{description:"Existence of the native function Array.prototype.at.",check:function(){return Array.prototype.at}},ATOB:{description:"Existence of the global functions atob and btoa.",check:function(){return"function"==typeof atob&&"function"==typeof btoa},attributes:{"web-worker":"old-safari-restriction"}},BARPROP:{description:'Existence of the global object statusbar having the string representation "[object BarProp]".',check:function(){return"object"==typeof statusbar&&statusbar+""=="[object BarProp]"},attributes:{"web-worker":"web-worker-restriction"}},CAPITAL_HTML:{description:"The property that the various string methods returning HTML code such as String.prototype.big or String.prototype.link have both the tag name and attributes written in capital letters.",check:function(){return"<BIG></BIG>"==="".big()&&'<FONT COLOR=""></FONT>'==="".fontcolor("")&&'<FONT SIZE=""></FONT>'==="".fontsize("")&&'<A HREF=""></A>'==="".link("")&&"<SMALL></SMALL>"==="".small()&&"<STRIKE></STRIKE>"==="".strike()&&"<SUB></SUB>"==="".sub()&&"<SUP></SUP>"==="".sup()}},CONSOLE:{description:'Existence of the global object console having the string representation "[object Console]".\nThis feature may become unavailable when certain browser extensions are active.',check:function(){return"object"==typeof console&&console+""=="[object Console]"},attributes:{"web-worker":"no-console-in-web-worker"}},DOCUMENT:{description:'Existence of the global object document having the string representation "[object Document]".',check:function(){return"object"==typeof document&&document+""=="[object Document]"},includes:["ANY_DOCUMENT"],excludes:["HTMLDOCUMENT"],attributes:{"web-worker":"web-worker-restriction"}},DOMWINDOW:{description:'Existence of the global object self having the string representation "[object DOMWindow]".',check:j.bind(function(e){return"[object DOMWindow]"===e}),includes:["ANY_WINDOW"],excludes:["WINDOW"],attributes:{"web-worker":"web-worker-restriction"}},ESC_HTML_ALL:{description:"The property that double quotation mark, less than and greater than characters in the argument of String.prototype.fontcolor are escaped into their respective HTML entities.",check:function(){return~"".fontcolor('"<>').indexOf(""<>")},includes:["ESC_HTML_QUOT"],excludes:["ESC_HTML_QUOT_ONLY"]},ESC_HTML_QUOT:{description:'The property that double quotation marks in the argument of String.prototype.fontcolor are escaped as """.',check:function(){return~"".fontcolor('"').indexOf(""")}},ESC_HTML_QUOT_ONLY:{description:"The property that only double quotation marks and no other characters in the argument of String.prototype.fontcolor are escaped into HTML entities.",check:function(){return~"".fontcolor('"<>').indexOf(""<>")},includes:["ESC_HTML_QUOT"],excludes:["ESC_HTML_ALL"]},ESC_REGEXP_LF:{description:'Having regular expressions created with the RegExp constructor use escape sequences starting with a backslash to format line feed characters ("\\n") in their string representation.',check:function(){return"\\"===(RegExp("\n")+"")[1]}},ESC_REGEXP_SLASH:{description:'Having regular expressions created with the RegExp constructor use escape sequences starting with a backslash to format slashes ("/") in their string representation.',check:function(){return"\\"===(RegExp("/")+"")[1]}},FF_SRC:{description:'A string representation of native functions typical for Firefox and Safari.\nRemarkable traits are the lack of line feed characters at the beginning and at the end of the string and the presence of a line feed followed by four whitespaces ("\\n ") before the "[native code]" sequence.',includes:["NO_IE_SRC","NO_V8_SRC"],excludes:["NO_FF_SRC"]},FILL:{description:"Existence of the native function Array.prototype.fill.",check:function(){return Array.prototype.fill}},FLAT:{description:"Existence of the native function Array.prototype.flat.",check:function(){return Array.prototype.flat}},FROM_CODE_POINT:{description:"Existence of the function String.fromCodePoint.",check:function(){return String.fromCodePoint}},FUNCTION_19_LF:{description:'A string representation of dynamically generated functions where the character at index 19 is a line feed ("\\n").',check:function(){return"\n"===(Function()+"")[19]}},FUNCTION_22_LF:{description:'A string representation of dynamically generated functions where the character at index 22 is a line feed ("\\n").',check:function(){return"\n"===(Function()+"")[22]}},GENERIC_ARRAY_TO_STRING:{description:"Ability to call Array.prototype.toString with a non-array binding.",check:function(){try{return Array.prototype.toString.call({}),!0}catch(e){}}},GLOBAL_UNDEFINED:{description:'Having the global function toString return the string "[object Undefined]" when invoked without a binding.',check:function(){return"[object Undefined]"===Function("return toString")()()},includes:["OBJECT_UNDEFINED"]},GMT:{description:'Presence of the text "GMT" after the first 25 characters in the string returned by Date().\nThe string representation of dates is implementation dependent, but most engines use a similar format, making this feature available in all supported engines except Internet Explorer 9 and 10.',check:function(){return/^.{25}GMT/.test(Date())}},HISTORY:{description:'Existence of the global object history having the string representation "[object History]".',check:function(){return"object"==typeof history&&history+""=="[object History]"},attributes:{"web-worker":"web-worker-restriction"}},HTMLAUDIOELEMENT:{description:'Existence of the global object Audio whose string representation starts with "function HTMLAudioElement".',check:function(){return"undefined"!=typeof Audio&&/^function HTMLAudioElement/.test(Audio)},includes:["NO_IE_SRC"],attributes:{"web-worker":"web-worker-restriction"}},HTMLDOCUMENT:{description:'Existence of the global object document having the string representation "[object HTMLDocument]".',check:function(){return"object"==typeof document&&document+""=="[object HTMLDocument]"},includes:["ANY_DOCUMENT"],excludes:["DOCUMENT"],attributes:{"web-worker":"web-worker-restriction"}},IE_SRC:{description:'A string representation of native functions typical for Internet Explorer.\nRemarkable traits are the presence of a line feed character ("\\n") at the beginning and at the end of the string and a line feed followed by four whitespaces ("\\n ") before the "[native code]" sequence.',includes:["NO_FF_SRC","NO_V8_SRC"],excludes:["NO_IE_SRC"]},INCR_CHAR:{description:'The ability to use unary increment operators with string characters, like in ( ++"some string"[0] ): this will result in a TypeError in strict mode in ECMAScript compliant engines.',check:function(){return!0},attributes:{"forced-strict-mode":"char-increment-restriction"}},INTL:{description:"Existence of the global object Intl.",check:function(){return"object"==typeof Intl}},LOCALE_INFINITY:{description:'Language sensitive string representation of Infinity as "∞".',check:function(){return"∞"===(1/0).toLocaleString()}},LOCALE_NUMERALS:{description:'Features shared by all engines capable of localized number formatting, including output of Arabic digits, the Arabic decimal separator "٫", the letters in the first word of the Arabic string representation of NaN ("ليس"), Persian digits and the Persian digit group separator "٬".',check:function(){return Number.prototype.toLocaleString&&e("ar",NaN,/^ليس/)&&e("ar-td",234567890.1,/^٢٣٤٬?٥٦٧٬?٨٩٠٫١/)&&e("fa",1234567890,/^۱٬۲۳۴٬۵۶۷٬۸۹۰/)}},LOCALE_NUMERALS_EXT:{description:'Extended localized number formatting.\nThis includes all features of LOCALE_NUMERALS plus the output of the first three letters in the second word of the Arabic string representation of NaN ("رقم"), Bengali digits, the letters in the Russian string representation of NaN ("не число") and the letters in the Persian string representation of NaN ("ناعدد").',check:function(){return Number.prototype.toLocaleString&&e("ar",NaN,/^ليس.رقم/)&&e("ar-td",234567890.1,/^٢٣٤٬?٥٦٧٬?٨٩٠٫١/)&&e("bn",1234567890,/^১,২৩,৪৫,৬৭,৮৯০/)&&e("fa",1234567890,/^۱٬۲۳۴٬۵۶۷٬۸۹۰/)&&e("fa",NaN,/^ناعد/)&&e("ru",NaN,/^не.число/)},includes:["LOCALE_NUMERALS"]},LOCATION:{description:'Existence of the global object location with the property that Object.prototype.toString.call(location) evaluates to a string that starts with "[object " and ends with "Location]".',check:function(){return"object"==typeof location&&/^\[object [\S\s]*Location]$/.test(Object.prototype.toString.call(location))}},NAME:{description:"Existence of the name property for functions.",check:function(){return"name"in Function()}},NODECONSTRUCTOR:{description:'Existence of the global object Node having the string representation "[object NodeConstructor]".',check:function(){return"undefined"!=typeof Node&&Node+""=="[object NodeConstructor]"},attributes:{"web-worker":"web-worker-restriction"}},NO_FF_SRC:{description:"A string representation of native functions typical for V8 or for Internet Explorer but not for Firefox and Safari.",check:function(){return/^(\n?)function Object\(\) \{\1 +\[native code]\s\}/.test(Object)},excludes:["FF_SRC"]},NO_IE_SRC:{description:"A string representation of native functions typical for most engines with the notable exception of Internet Explorer.\nA remarkable trait of this feature is the lack of line feed characters at the beginning and at the end of the string.",check:function(){return/^function Object\(\) \{(\n )? \[native code]\s\}/.test(Object)},excludes:["IE_SRC"]},NO_OLD_SAFARI_ARRAY_ITERATOR:{description:'The property that the string representation of Array.prototype.entries() evaluates to "[object Array Iterator]" and that Array.prototype.entries().constructor is the global function Object.',check:function(){var e;if(Array.prototype.entries)return(e=[].entries())+""=="[object Array Iterator]"&&e.constructor===Object},includes:["ARRAY_ITERATOR"]},NO_V8_SRC:{description:'A string representation of native functions typical for Firefox, Internet Explorer and Safari.\nA most remarkable trait of this feature is the presence of a line feed followed by four whitespaces ("\\n ") before the "[native code]" sequence.',check:function(){return/^\n?function Object\(\) \{\n \[native code]\s\}/.test(Object)},excludes:["V8_SRC"]},OBJECT_L_LOCATION_CTOR:{description:'Existence of the global function location.constructor whose string representation starts with "[object L"',check:function(){return"object"==typeof location&&/^\[object L/.test(location.constructor)},attributes:{"web-worker":"web-worker-restriction"}},OBJECT_UNDEFINED:{description:'Having the function Object.prototype.toString return the string "[object Undefined]" when invoked without a binding.',check:function(){return"[object Undefined]"===(0,Object.prototype.toString)()},includes:["UNDEFINED"]},OBJECT_W_CTOR:{description:'The property that the string representation of the global object constructor starts with "[object W"',check:function(){return/^\[object W/.test(constructor)},attributes:{"web-worker":"old-safari-restriction"}},OLD_SAFARI_LOCATION_CTOR:{description:'Existence of the global object location.constructor whose string representation starts with "[object " and ends with "LocationConstructor]"',check:function(){return"object"==typeof location&&/^\[object [\S\s]*LocationConstructor]$/.test(location.constructor)}},PLAIN_INTL:{description:'Existence of the global object Intl having the string representation "[object Object]"',check:function(){return"object"==typeof Intl&&Intl+""=="[object Object]"},includes:["INTL"]},REGEXP_STRING_ITERATOR:{description:'The property that the string representation of String.prototype.matchAll() evaluates to "[object RegExp String Iterator]".',check:function(){return String.prototype.matchAll&&"".matchAll()+""=="[object RegExp String Iterator]"}},SELF:{aliasFor:"ANY_WINDOW"},SELF_OBJ:{description:'Existence of the global object self whose string representation starts with "[object ".',check:j.bind(function(e){return/^\[object /.test(e)}),attributes:{"web-worker":"safari-bug-21820506"}},SHORT_LOCALES:{description:'Support for the two-letter locale name "ar" to format decimal numbers as Arabic numerals.',check:function(){var e=9876430.125,t=e.toLocaleString("ar");return t===e.toLocaleString("ar-td")&&t!==e.toLocaleString("en")},includes:["LOCALE_NUMERALS"]},STATUS:{description:"Existence of the global string status.",check:function(){return"string"==typeof status},attributes:{"web-worker":"web-worker-restriction"}},UNDEFINED:{description:'The property that Object.prototype.toString.call() evaluates to "[object Undefined]".\nThis behavior is specified by ECMAScript, and is enforced by all engines except Android Browser versions prior to 4.1.2, where this feature is not available.',check:function(){return"[object Undefined]"===Object.prototype.toString.call()}},V8_SRC:{description:'A string representation of native functions typical for the V8 engine.\nRemarkable traits are the lack of line feed characters at the beginning and at the end of the string and the presence of a single whitespace before the "[native code]" sequence.',includes:["NO_FF_SRC","NO_IE_SRC"],excludes:["NO_V8_SRC"]},WINDOW:{description:'Existence of the global object self having the string representation "[object Window]".',check:j.bind(function(e){return"[object Window]"===e}),includes:["ANY_WINDOW"],excludes:["DOMWINDOW"],attributes:{"web-worker":"web-worker-restriction"}},DEFAULT:{description:"Minimum feature level, compatible with all supported engines in all environments."},BROWSER:{description:"Features available in all browsers.\nNo support for Node.js.",includes:["ANY_DOCUMENT","ANY_WINDOW","HISTORY","INCR_CHAR","STATUS"],attributes:{"char-increment-restriction":null,"safari-bug-21820506":null,"web-worker-restriction":null}},COMPACT:{description:"All new browsers' features.\nNo support for Node.js and older browsers like Internet Explorer, Safari 9 or Android Browser.",includes:["ARROW","AT","ATOB","BARPROP","ESC_HTML_QUOT_ONLY","ESC_REGEXP_LF","ESC_REGEXP_SLASH","FILL","FLAT","FROM_CODE_POINT","GENERIC_ARRAY_TO_STRING","GLOBAL_UNDEFINED","GMT","HISTORY","HTMLDOCUMENT","INCR_CHAR","INTL","LOCALE_INFINITY","LOCALE_NUMERALS_EXT","LOCATION","NAME","NO_IE_SRC","NO_OLD_SAFARI_ARRAY_ITERATOR","REGEXP_STRING_ITERATOR","STATUS","WINDOW"],attributes:{"char-increment-restriction":null,"web-worker-restriction":null}},ANDRO_4_0:{families:["Android Browser"],versions:["4.0"],includes:["ATOB","CONSOLE","DOMWINDOW","ESC_HTML_ALL","FUNCTION_22_LF","GMT","HISTORY","HTMLDOCUMENT","INCR_CHAR","LOCATION","NAME","STATUS","V8_SRC"]},ANDRO_4_1:{inherits:"ANDRO_4_0",versions:[["4.1",,"4.3"]],includes:{GENERIC_ARRAY_TO_STRING:!0,OBJECT_UNDEFINED:!0}},ANDRO_4_4:{inherits:"ANDRO_4_1",versions:["4.4"],includes:{BARPROP:!0,DOMWINDOW:!1,HTMLAUDIOELEMENT:!0,LOCALE_INFINITY:!0,LOCALE_NUMERALS_EXT:!0,PLAIN_INTL:!0,SHORT_LOCALES:!0,WINDOW:!0},attributes:{"no-console-in-web-worker":null,"web-worker-restriction":null}},CHROME_PREV:{description:n("the previous to current versions of Chrome and Edge"),aliasFor:"CHROME_92"},CHROME:{description:n("the current stable versions of Chrome, Edge and Opera"),aliasFor:"CHROME_92"},CHROME_92:{families:["Chrome","Edge","Opera"],versions:[["92"],["92"],["78"]],includes:["ARROW","AT","ATOB","BARPROP","ESC_HTML_QUOT_ONLY","ESC_REGEXP_LF","ESC_REGEXP_SLASH","FILL","FLAT","FROM_CODE_POINT","FUNCTION_19_LF","GENERIC_ARRAY_TO_STRING","GLOBAL_UNDEFINED","GMT","HISTORY","HTMLDOCUMENT","INCR_CHAR","INTL","LOCALE_INFINITY","LOCALE_NUMERALS_EXT","LOCATION","NAME","NO_OLD_SAFARI_ARRAY_ITERATOR","REGEXP_STRING_ITERATOR","STATUS","V8_SRC","WINDOW"],attributes:{"char-increment-restriction":null,unstable:null,"web-worker-restriction":null}},FF_ESR:{description:n("the current version of Firefox ESR"),aliasFor:"FF_90"},FF_PREV:{description:n("the previous to current version of Firefox"),aliasFor:"FF_90"},FF:{description:n("the current stable version of Firefox"),aliasFor:"FF_90"},FF_90:{families:["Firefox"],versions:[["90"]],includes:["ARROW","AT","ATOB","BARPROP","ESC_HTML_QUOT_ONLY","ESC_REGEXP_LF","ESC_REGEXP_SLASH","FF_SRC","FILL","FLAT","FROM_CODE_POINT","FUNCTION_19_LF","GENERIC_ARRAY_TO_STRING","GLOBAL_UNDEFINED","GMT","HISTORY","HTMLDOCUMENT","INCR_CHAR","INTL","LOCALE_INFINITY","LOCALE_NUMERALS_EXT","LOCATION","NAME","NO_OLD_SAFARI_ARRAY_ITERATOR","REGEXP_STRING_ITERATOR","SHORT_LOCALES","STATUS","WINDOW"],attributes:{"char-increment-restriction":null,unstable:null,"web-worker-restriction":null}},IE_9:{families:["Internet Explorer"],versions:["9"],includes:["CAPITAL_HTML","DOCUMENT","ESC_REGEXP_LF","ESC_REGEXP_SLASH","FUNCTION_22_LF","GENERIC_ARRAY_TO_STRING","HISTORY","IE_SRC","INCR_CHAR","OBJECT_L_LOCATION_CTOR","OBJECT_W_CTOR","STATUS","UNDEFINED","WINDOW"]},IE_10:{inherits:"IE_9",versions:["10"],includes:{ATOB:!0,CONSOLE:!0,OBJECT_UNDEFINED:!0,UNDEFINED:!1},attributes:{"char-increment-restriction":null,"web-worker-restriction":null}},IE_11:{inherits:"IE_10",versions:["11"],includes:{DOCUMENT:!1,GMT:!0,HTMLDOCUMENT:!0,LOCALE_NUMERALS:!0,PLAIN_INTL:!0,SHORT_LOCALES:!0}},IE_11_WIN_10:{inherits:"IE_11",versions:["11"],compatibilityTag:"on Windows 10",compatibilityShortTag:"W10",includes:{LOCALE_INFINITY:!0,LOCALE_NUMERALS:!1,LOCALE_NUMERALS_EXT:!0}},NODE_0_10:{families:["Node.js"],versions:["0.10"],includes:["ESC_HTML_ALL","FUNCTION_22_LF","GENERIC_ARRAY_TO_STRING","GLOBAL_UNDEFINED","GMT","INCR_CHAR","NAME","V8_SRC"]},NODE_0_12:{inherits:"NODE_0_10",versions:["0.12"],includes:{ESC_HTML_ALL:!1,ESC_HTML_QUOT_ONLY:!0,LOCALE_INFINITY:!0,NO_OLD_SAFARI_ARRAY_ITERATOR:!0,PLAIN_INTL:!0}},NODE_4:{inherits:"NODE_0_12",versions:["4"],includes:{ARROW:!0,ESC_REGEXP_SLASH:!0,FILL:!0,FROM_CODE_POINT:!0}},NODE_5:{inherits:"NODE_4",versions:[["5",,"9"]],attributes:{"char-increment-restriction":null}},NODE_10:{inherits:"NODE_5",versions:["10"],includes:{FUNCTION_19_LF:!0,FUNCTION_22_LF:!1}},NODE_11:{inherits:"NODE_10",versions:["11"],includes:{FLAT:!0}},NODE_12:{inherits:"NODE_11",versions:["12"],includes:{ESC_REGEXP_LF:!0,REGEXP_STRING_ITERATOR:!0}},NODE_13:{inherits:"NODE_12",versions:[["13","14"]],includes:{LOCALE_NUMERALS_EXT:!0,SHORT_LOCALES:!0}},NODE_15:{inherits:"NODE_13",versions:["15"],includes:{INTL:!0,PLAIN_INTL:!1}},NODE_16_0:{inherits:"NODE_15",versions:[["16.0",,"16.5"]],includes:{ATOB:!0}},NODE_16_6:{inherits:"NODE_16_0",versions:[["16.6"]],includes:{AT:!0}},SAFARI_7_0:{families:["Safari"],versions:["7.0"],includes:["ATOB","BARPROP","CONSOLE","ESC_HTML_QUOT_ONLY","ESC_REGEXP_LF","ESC_REGEXP_SLASH","FF_SRC","GENERIC_ARRAY_TO_STRING","GLOBAL_UNDEFINED","GMT","HISTORY","HTMLDOCUMENT","INCR_CHAR","LOCATION","NAME","NODECONSTRUCTOR","OBJECT_L_LOCATION_CTOR","OBJECT_W_CTOR","OLD_SAFARI_LOCATION_CTOR","STATUS","WINDOW"],attributes:{"char-increment-restriction":null,"no-console-in-web-worker":null,"old-safari-restriction":null,"web-worker-restriction":null}},SAFARI_7_1:{inherits:"SAFARI_7_0",versions:[["7.1","8"]],includes:{ARRAY_ITERATOR:!0,FILL:!0},attributes:{"no-console-in-web-worker":void 0,"safari-bug-21820506":null}},SAFARI_9:{inherits:"SAFARI_7_1",versions:["9"],includes:{ARRAY_ITERATOR:!1,FROM_CODE_POINT:!0,FUNCTION_22_LF:!0,NO_OLD_SAFARI_ARRAY_ITERATOR:!0}},SAFARI_10:{inherits:"SAFARI_9",versions:[["10","11"]],includes:{ARROW:!0,LOCALE_INFINITY:!0,LOCALE_NUMERALS_EXT:!0,NODECONSTRUCTOR:!1,OBJECT_L_LOCATION_CTOR:!1,OBJECT_W_CTOR:!1,OLD_SAFARI_LOCATION_CTOR:!1,PLAIN_INTL:!0,SHORT_LOCALES:!0},attributes:{"old-safari-restriction":void 0,"safari-bug-21820506":void 0}},SAFARI_12:{inherits:"SAFARI_10",versions:["12"],includes:{FLAT:!0}},SAFARI_13:{inherits:"SAFARI_12",versions:[["13","14.0.0"]],includes:{REGEXP_STRING_ITERATOR:!0}},SAFARI_14_0_1:{inherits:"SAFARI_13",versions:[["14.0.1",,"14.0.3"]],includes:{INTL:!0,PLAIN_INTL:!1}},SAFARI_14_1:{inherits:"SAFARI_14_0_1",versions:[["14.1",,"15.3"]],includes:{CONSOLE:!1}},SAFARI:{description:n("the current stable version of Safari"),aliasFor:"SAFARI_15_4"},SAFARI_15_4:{inherits:"SAFARI_14_1",versions:[["15.4"]],includes:{AT:!0}}},Bn=ln(jn).filter(function(e){e=jn[e].check;return e&&e()}),Mn=(jn.AUTO={description:n("the current environment"),includes:Bn},d=function(P,y){function u(){for(var e=[],t=0;t<arguments.length;t++)e[t]=arguments[t];for(var n=Y,r=0,i=e;r<i.length;r++)n=M(n,c(i[r]));1<e.length&&s(n);var o=this instanceof u?this:wn(W);return q(o,n),o}function n(e){for(var t=Y,n=e.length,r=0;r<n;++r)t=M(t,i(e[r]));return t}function a(e){var t=wn(W);return q(t,e),t}function e(e,t){var n=null!=(n=null==t?void 0:t.breakLength)?n:80,r=null==(r=null==t?void 0:t.compact)||r,i=this.name,i=[void 0===i?J(r,"<","",this.canonicalNames,",",">",n-3):i],o=(this.elementary&&i.push("(elementary)"),this.check&&i.push("(check)"),this.attributes);return"object"==typeof o&&(o=_(En({},o),t),i.push(o)),J(r,"[Feature"," ",i,"","]",n-1)}function o(t){return r.every(function(e){return!O(t,e)})}function i(e){return(e instanceof u?e:((e=G(e))in x||$(e),x[e])).mask}function c(e){var t;return yn(e)?(t=n(e),1<e.length&&s(t)):t=i(e),t}function s(e){if(!o(e))throw new mn("Incompatible features")}function m(o){var e,t;if(o in x)c=x[o].mask;else{var n=P[o],r=function(e){return e in n?G(n[e]):void 0},i=r("description"),u=void 0;if("aliasFor"in n){var a=G(n.aliasFor),c=m(a),u=x[a];null==i&&(i=w[a])}else{var s,f,_,a=r("inherits"),l=void(null!=a&&m(a)),R=n.check,R=void 0!==R?(c=function(){for(var e=1,t=B;1&t;t/=2)e*=2;if(0x8000000000000<e)throw RangeError("Mask full");return e}(),B=M(B,c),t=R,function(){return!!t()}):(c=Y,null),d=n.includes,p=H[o]=Dt();if(yn(d))for(var A=0,h=d;A<h.length;A++)p[T=h[A]]=null;else{if(null!=a)for(T in H[a])p[T]=null;if(d)for(var T,S=0,E=Un(d);S<E.length;S++)d[T=E[S]]?p[T]=null:delete p[T]}for(T in p)c=M(c,m(T));"versions"in n&&(C=n.families,s=n.versions,null!=a&&null==C&&(C=j[a]),j[o]=C,f=r("compatibilityTag"),_=r("compatibilityShortTag"),l=C.map(function(e,t){e=G(e);var n,r,t=s[t],i=(r=yn(t)?(i=t.length,r=G(t[0]),i=i<2?void 0:G(t[i-1]),n=2===t.length,z({from:r,to:i,dense:n})):G(t),z({family:e,featureName:o,version:r,tag:f,shortTag:_}));return(null!=(n=U[e])?n:U[e]=[]).push(i),i}),null==i)&&(i=null==y?void 0:y(l));var N=Dt();if(null!=a){var b=x[a].attributes;for(L in b)N[L]=b[L]}var O=n.attributes;if(void 0!==O)for(var v=0,I=Un(O);v<I.length;v++){var L,F=O[L=I[v]];void 0!==F?N[L]="string"==typeof F?F:null:delete N[L]}var r=null!=R?R:n.excludes,C=o,a=c,g=r;z(e=N),e={attributes:{value:e},check:{value:R},name:{value:C}},g&&(e.elementary={value:!0}),q(R=wn(W,e),a),u=R,r&&D.push(u),l&&k.push(u)}x[o]=u,w[o]=i}return c}function t(e,t){return e.name<t.name?-1:1}var f,_,x=Dt(),w=Dt(),D=[],k=[],U=Dt(),W=u.prototype,r=[];try{_=require("util").inspect}catch(e){}var l={get canonicalNames(){for(var e=this.mask,t=[],n=Y,r=f.length;r--;){var i=f[r],o=i.mask;O(e,o)&&!O(n,o)&&(n=M(n,o),t.push(i.name))}return t.sort(),t},elementary:!1,get elementaryNames(){for(var e=[],t=this.mask,n=0,r=D;n<r.length;n++){var i=r[n];O(t,i.mask)&&e.push(i.name)}return e},includes:function(){for(var e=[],t=0;t<arguments.length;t++)e[t]=arguments[t];var n=this.mask;return e.every(function(e){e=c(e);return O(n,e)})},name:void 0,toString:function(){var e=null!=(e=this.name)?e:"<".concat(this.canonicalNames.join(", "),">");return"[Feature ".concat(e,"]")}};_&&(l.inspect=e),X(W,l),X(u,{ALL:x,ELEMENTARY:D,ENGINE:k,FAMILIES:U,Se:function(e){if(o(e)){for(var t=Y,n=0,r=D;n<r.length;n++){var i=r[n].mask;O(e,i)&&(t=M(t,i))}if(e===t)return a(e)}return null},Ee:function(e){return void 0!==e?c(e):Y},areCompatible:function(){var e;return o(n(1===arguments.length&&yn(e=arguments[0])?e:arguments))},areEqual:function(){for(var n,e=[],t=0;t<arguments.length;t++)e[t]=arguments[t];return e.every(function(e,t){e=c(e);return t?e===n:(n=e,!0)})},commonOf:function(){for(var e,t=[],n=0;n<arguments.length;n++)t[n]=arguments[n];if(t.length){for(var r=void 0,i=0,o=t;i<o.length;i++)var u=c(o[i]),r=null!=r?(r&u&On)+(r/Nn&u/Nn)*Nn:u;e=a(r)}else e=null;return e},descriptionFor:function(e){return(e=G(e))in w||$(e),w[e]}}),_&&(l=_.custom)&&Dn(W,l,{configurable:!0,value:e,writable:!0});var R,l=Un(P),H=Dt(),j=Dt(),B=Y;l.forEach(m);for(var d=new Pn,p=0,A=l;p<A.length;p++){var h=A[p],T=P[h].excludes;if(T)for(var S=x[h].mask,E=0,N=T;E<N.length;E++){var b=M(S,m(N[E]));d.has(b)||(r.push(b),d.add(b))}}for(R in f=D.slice(),D.sort(t),z(D),k.sort(t),z(k),z(x),z(U),U)z(U[R]);return u}(jn,function(e){var o="",e=e.map(function(e){var t,n=e.family,r=e.version,i=n,r=("string"==typeof r?i+=" "+r:(i+=" "+r.from,null!=(t=r.to)?i+=(r.dense?" and "+n+" ":" to ")+t:o=" or later"),e.tag);return null!=r&&(i+=" "+r),i}),t=e.pop();return n((e.length?e.join(", ")+" and "+t:t)+o)}),Fn=d.ELEMENTARY,jn=null,s(d.prototype,{restrict:function(r,i){var o=N(),e=Fn.filter(function(e){var t,n=this.includes(e);return n&&(e=e.attributes,n=!(r in e&&(void 0===i||(void 0===(e=o[t=e[r]])&&(o[t]=e=i.some(function(e){return t in e.attributes})),e)))),n},this);return d(e)}}),d.ALL),Gn={enumerable:!0};for(gn in Mn){var Yn=Mn[gn];Gn.value=Yn,fn(d,gn,Gn)}V(f),F={UNDEFINED:1,1:"UNDEFINED",ALGEBRAIC:2,2:"ALGEBRAIC",WEAK_ALGEBRAIC:4,4:"WEAK_ALGEBRAIC",OBJECT:8,8:"OBJECT",STRING:16,16:"STRING",PREFIXED_STRING:32,32:"PREFIXED_STRING",WEAK_PREFIXED_STRING:64,64:"WEAK_PREFIXED_STRING",COMBINED_STRING:128,128:"COMBINED_STRING"},Object.freeze(F);var F,zn=ie(F.WEAK_ALGEBRAIC,F.PREFIXED_STRING,F.WEAK_PREFIXED_STRING,F.COMBINED_STRING),Xn=ie(F.STRING,F.PREFIXED_STRING,F.WEAK_PREFIXED_STRING,F.COMBINED_STRING),qn=ie(F.WEAK_ALGEBRAIC,F.WEAK_PREFIXED_STRING),Jn=[{typeSetList:[r(F.UNDEFINED),r(F.UNDEFINED),r(F.WEAK_ALGEBRAIC)],replace:function(e,t,n){return"".concat(e,"+(").concat(t,"+[").concat(n,"])")},solutionType:F.PREFIXED_STRING},{typeSetList:[r(F.UNDEFINED),r(F.UNDEFINED),r(F.WEAK_PREFIXED_STRING)],replace:function(e,t,n){return"".concat(e,"+(").concat(t,"+(").concat(n,"))")},solutionType:F.PREFIXED_STRING},{typeSetList:[r(F.UNDEFINED),r(F.UNDEFINED),r(F.OBJECT,F.STRING,F.COMBINED_STRING)],replace:function(e,t,n){return"".concat(e,"+(").concat(t,"+").concat(n,")")},solutionType:F.PREFIXED_STRING},{typeSetList:[r(F.UNDEFINED),r(F.UNDEFINED)],replace:function(e,t){return"[]+".concat(e,"+").concat(t)},solutionType:F.COMBINED_STRING},{typeSetList:[r(F.UNDEFINED),r(F.ALGEBRAIC,F.WEAK_ALGEBRAIC)],replace:function(e,t){return"".concat(e,"+[").concat(t,"]")},solutionType:F.PREFIXED_STRING},{typeSetList:[r(F.UNDEFINED),r(F.PREFIXED_STRING)],replace:function(e,t){return"".concat(e,"+(").concat(t,")")},solutionType:F.PREFIXED_STRING},{typeSetList:[r(F.UNDEFINED)],replace:function(e){return e},solutionType:F.PREFIXED_STRING},{typeSetList:[r(F.ALGEBRAIC),r(F.UNDEFINED,F.ALGEBRAIC,F.PREFIXED_STRING)],replace:function(e,t){return"[".concat(e,"]+").concat(t)},solutionType:F.COMBINED_STRING},{typeSetList:[r(F.ALGEBRAIC),r(F.WEAK_ALGEBRAIC)],replace:function(e,t){return"".concat(e,"+[").concat(t,"]")},solutionType:F.PREFIXED_STRING},{typeSetList:[r(F.ALGEBRAIC,F.PREFIXED_STRING)],replace:function(e){return e},solutionType:F.PREFIXED_STRING},{typeSetList:[r(F.WEAK_ALGEBRAIC),r(F.UNDEFINED,F.ALGEBRAIC,F.PREFIXED_STRING)],replace:function(e,t){return"[".concat(e,"]+").concat(t)},solutionType:F.COMBINED_STRING},{typeSetList:[r(F.WEAK_ALGEBRAIC),r(F.WEAK_ALGEBRAIC)],replace:function(e,t){return"".concat(e,"+[").concat(t,"]")},solutionType:F.WEAK_PREFIXED_STRING},{typeSetList:[r(F.WEAK_ALGEBRAIC,F.WEAK_PREFIXED_STRING)],replace:function(e){return e},solutionType:F.WEAK_PREFIXED_STRING},{typeSetList:[r(F.OBJECT,F.STRING,F.COMBINED_STRING)],replace:function(e){return e},solutionType:F.COMBINED_STRING}],p=(Object.defineProperty(Ut.prototype,"isLoose",{get:function(){return zn(this.type)},enumerable:!1,configurable:!0}),Object.defineProperty(Ut.prototype,"isString",{get:function(){return Xn(this.type)},enumerable:!1,configurable:!0}),Object.defineProperty(Ut.prototype,"isWeak",{get:function(){return qn(this.type)},enumerable:!1,configurable:!0}),Object.defineProperty(Ut.prototype,"length",{get:function(){return this.replacement.length},enumerable:!1,configurable:!0}),Ut);H(Wt,$n=p),Object.defineProperty(Wt.prototype,"replacement",{get:function(){var e;return null!=(e=this.Ne)?e:this.Ne=this.Ne=function(e){switch(e.length){case 0:return er.replacement;case 1:return e[0].replacement;default:var t=oe(e),n=t.replace,t=t.typeSetList.length,r=e.slice(t).map(tr),t=e.slice(0,t).map(nr),n=n.apply(void 0,t);return r.unshift(n),r.join("")}}(this.$)},enumerable:!1,configurable:!0}),Object.defineProperty(Wt.prototype,"source",{get:function(){for(var e=[],t=0,n=this.$;t<n.length;t++){var r=n[t].source;if(void 0===r)return;e.push(r)}return e.join("")},enumerable:!1,configurable:!0}),Object.defineProperty(Wt.prototype,"type",{get:function(){var e=this.$;switch(e.length){case 0:return er.type;case 1:return e[0].type;default:return oe(e).solutionType}},enumerable:!1,configurable:!0}),Wt.prototype.append=function(e){this.Ne=void 0,this.$.push(e)},Wt.prototype.prepend=function(e){this.Ne=void 0,this.$.unshift(e)};var $n,Kn=Wt;H(Ht,Qn=p),Ht.prototype.defineReplacement=function(e){e.configurable=!0,e.enumerable=!0,Object.defineProperty(this,"replacement",e)};var Qn,Vn=Ht;H(jt,Zn=p);var Zn,C=jt,er=new C("","[]",F.OBJECT),tr=function(e){var t=e.replacement,e=e.type;return qn(e)?"+(".concat(t,")"):"+".concat(t)},nr=function(e){return e.replacement},rr=(s(p.prototype,{get appendLength(){var e=this.isWeak?3:1;return this.length+e},set appendLength(e){fn(this,"appendLength",{enumerable:!0,value:e})}}),["true","undefined","NaN"]),ir=["RP_0_S","RP_1_WA",,"RP_3_WA","RP_4_A","RP_5_A","RP_6_S"],or=N(),ur=N(),ar=N(),R=d.ANY_DOCUMENT,Bn=d.ANY_WINDOW,p=d.ARRAY_ITERATOR,cr=d.ARROW,A=d.AT,h=d.ATOB,sr=d.BARPROP,T=d.CAPITAL_HTML,fr=d.CONSOLE,_r=d.DOCUMENT,lr=d.DOMWINDOW,Rr=d.ESC_HTML_ALL,dr=d.ESC_HTML_QUOT,pr=d.ESC_HTML_QUOT_ONLY,E=d.ESC_REGEXP_LF,Ar=d.ESC_REGEXP_SLASH,b=d.FF_SRC,v=d.FILL,I=d.FLAT,hr=d.FROM_CODE_POINT,Tr=d.FUNCTION_19_LF,Sr=d.FUNCTION_22_LF,Er=d.GENERIC_ARRAY_TO_STRING,Nr=d.GLOBAL_UNDEFINED,br=d.GMT,Or=d.HISTORY,vr=d.HTMLAUDIOELEMENT,Ir=d.HTMLDOCUMENT,L=d.IE_SRC,Lr=d.INCR_CHAR,Fr=d.INTL,Cr=d.LOCALE_INFINITY,gr=d.LOCALE_NUMERALS,g=d.LOCALE_NUMERALS_EXT,Pr=d.LOCATION,yr=d.NAME,mr=d.NODECONSTRUCTOR,xr=d.NO_FF_SRC,P=d.NO_IE_SRC,wr=d.NO_OLD_SAFARI_ARRAY_ITERATOR,y=d.NO_V8_SRC,Dr=d.OBJECT_L_LOCATION_CTOR,kr=d.OBJECT_UNDEFINED,Ur=d.OBJECT_W_CTOR,Wr=d.OLD_SAFARI_LOCATION_CTOR,Hr=d.PLAIN_INTL,jr=d.REGEXP_STRING_ITERATOR,Br=d.SELF_OBJ,Mr=d.SHORT_LOCALES,Gr=d.STATUS,Yr=d.UNDEFINED,zr=d.V8_SRC,Xr=d.WINDOW,qr=["NaN","false","undefined","0"],Jr=[[f("A"),f("C",T),f("A",p)],"F","Infinity","NaNfalse",[f("S"),f("R",T),f("S",p)],[f("W"),f("U",T)],"a","false","i","n","r","true","y","0","4","8"],$r=["A","B","C","D","E","F","G","H","Infinity","J","K","L","M","NaN","O","P","Q","R","S","T","U","V","W","X","Y","Z","a","b","c","d","e","false","g","h","i","j","k","l","m","n","o","p","q","r","s","true","undefined","v","w","x","y","z","0","1","2","3","4","5","6","7","8","9","+","/"],Kr=["000","NaN","falsefalsefalse","00f"],Qr=["0A",[f("0B"),f("0R",T),f("0B",p)],"0i",[f("0j"),f("0T",T),f("0j",p)],"00","01","02","03","04","05","0a","0r","0s","0t","undefinedfalse","0f"],Vr=m({"\b":[f('Function("return\\"" + ESCAPING_BACKSLASH + "b\\"")()[0]'),a({escSeq:!1})],"\t":[f('Function("return\\"" + ESCAPING_BACKSLASH + "true\\"")()[0]'),a({escSeq:!1})],"\n":[f("(RP_0_S + Function())[23]"),f("(RP_1_WA + Function())[20]",Tr),f("(RP_0_S + Function())[22]",Sr),f("(RP_0_S + ANY_FUNCTION)[0]",L),Mt(13,y)],"\v":[f('Function("return\\"" + ESCAPING_BACKSLASH + "v\\"")()[0]'),a({escSeq:!1})],"\f":[f('Function("return\\"" + ESCAPING_BACKSLASH + "false\\"")()[0]'),a({escSeq:!1})],"\r":[f('Function("return\\"" + ESCAPING_BACKSLASH + "r\\"")()'),a({escSeq:!1})],"":[f('(RP_5_A + atob("NaNfalse"))[10]',h)]," ":[t("ANY_FUNCTION",8),f("(RP_3_WA + ARRAY_ITERATOR)[10]",p),f("(RP_0_S + FILTER)[20]",b),f("(+(RP_0_S + FILTER)[0] + FILTER)[22]",xr),f("(RP_0_S + FILTER)[21]",y),f("(RP_1_WA + FILTER)[20]",zr),f("(RP_1_WA + AT)[20]",A,y),f("(RP_5_A + AT)[20]",A,zr),f("(+(RP_0_S + FILL)[0] + FILL)[20]",v,xr),f("(RP_5_A + FILL)[20]",v,P),f("(RP_0_S + FILL)[20]",v,y),f("(+(RP_0_S + FLAT)[0] + FLAT)[20]",I,xr),f("(RP_5_A + FLAT)[20]",I,P),f("(RP_0_S + FLAT)[20]",I,y)],'"':[f('"".fontcolor()[12]')],"#":[f("document.nodeName[0]",R),a()],"%":[f("escape(FILTER)[20]"),f("escape(0 + AT)[20]",A),f('atob("000l")[2]',h),f("escape(FILL)[21]",v),f("escape(FLAT)[21]",I),f("escape(ANY_FUNCTION)[0]",L)],"&":[f('"".fontcolor("".italics())[22]',Rr),f('"".fontcolor("".sub())[20]',Rr),f('"".fontcolor("\\"")[13]',dr),f('"".fontcolor("".fontcolor([]))[31]',pr),a()],"(":[Mt(9)],")":[Mt(10)],"+":"(1e100 + [])[2]",",":[f("(RP_0_S + F_A_L_S_E)[1]"),f({expr:"[[]].concat([[]])",solutionType:F.OBJECT})],"-":"(.0000001 + [])[2]",".":"(11e20 + [])[1]","/":[f('"0false".italics()[10]'),f('"true".sub()[10]')],":":[f("(RP_0_S + RegExp())[3]"),a()],";":[f('"".fontcolor("".italics())[21]',Rr),f('"".fontcolor(true + "".sub())[20]',Rr),f('"".fontcolor("NaN\\"")[21]',dr),f('"".fontcolor("".fontcolor())[30]',pr),a()],"<":[f('"".italics()[0]'),f('"".sub()[0]')],"=":[f('"".fontcolor()[11]')],">":[f('"".italics()[2]'),f('"".sub()[10]')],"?":[f("(RP_0_S + RegExp())[2]"),a()],A:[t("Array",9),f("(RP_3_WA + ARRAY_ITERATOR)[11]",p)],B:[t("Boolean",9),f('"0".sub()[10]',T)],C:[f('escape("".italics())[2]'),f('escape("".sub())[2]'),f("escape(F_A_L_S_E)[11]"),f('atob("00NaNfalse")[1]',h),f('(RP_4_A + "".fontcolor())[10]',T),f('(RP_3_WA + Function("return console")())[11]',fr),f("(RP_0_S + Node)[12]",mr)],D:[f('escape((+("1000" + (RP_5_A + FILTER + 0)[40] + 0) + FILTER)[40])[2]'),f('escape("]")[2]'),f('escape("}")[2]'),f('(document + RP_0_S)[SLICE_OR_SUBSTR]("-10")[1]',R),f('escape((RP_4_A + [+("1000" + (AT + 0)[31] + 0)] + AT)[40])[2]',A),f('btoa("00")[1]',h),f("(RP_3_WA + document)[11]",_r),f("(RP_3_WA + self)[11]",lr),f('escape((NaN + [+("10" + [(RP_6_S + FILL)[40]] + "000")] + FILL)[40])[2]',v),f('escape((NaN + [+("10" + [(RP_6_S + FLAT)[40]] + "000")] + FLAT)[40])[2]',I),f("(RP_0_S + document)[12]",Ir),f("escape(ARRAY_ITERATOR)[30]",wr),f("escape(FILTER)[50]",zr),f('(document + [RP_1_WA]).at("-10")',R,A),f("escape(AT)[61]",A,L),f("escape([[]][+(RP_0_S + AT)[0]] + AT)[61]",A,xr),f("escape([NaN][+(RP_1_WA + AT)[20]] + AT)[61]",A,P),f("escape(true + AT)[50]",A,zr),f("escape(FILL)[60]",b,v),f("escape(FLAT)[60]",b,I)],E:[t("RegExp",12),f('btoa("0NaN")[1]',h),f('(RP_5_A + "".link())[10]',T),f("(RP_3_WA + Audio)[21]",vr),f("(RP_0_S + REGEXP_STRING_ITERATOR)[11]",jr)],F:[t("Function",9),f('"".fontcolor()[1]',T)],G:[f('btoa("0false")[1]',h),f('"0".big()[10]',T),f("(RP_5_A + Date())[30]",br)],H:[f("(RP_3_WA + document.createElement(false))[11]",R),f("btoa(true)[1]",h),f('"".link()[3]',T),f({expr:'(RP_3_WA + Function("return history")())[11]',optimize:!0},Or),f("(RP_1_WA + Audio)[10]",vr),f("(RP_3_WA + document)[11]",Ir)],I:'"Infinity"[0]',J:[f('"j"[TO_UPPER_CASE]()'),f("btoa(true)[2]",h),a({atob:!1})],K:[f('(RP_5_A + "".strike())[10]',T),a()],L:[f("(RP_0_S + document.createElement(false))[11]",R),f('btoa(".")[0]',h),f('(RP_3_WA + "".fontcolor())[11]',T),f("(RP_0_S + Audio)[12]",vr),f("(RP_0_S + document)[11]",Ir),f({expr:'Function("return toString.call(location)")()[SLICE_OR_SUBSTR]("-10")[1]',optimize:!0},Pr),f("(RP_3_WA + LOCATION_CONSTRUCTOR)[11]",Dr),f('(LOCATION_CONSTRUCTOR + RP_0_S)[SLICE_OR_SUBSTR]("-20")[0]',Wr),f({expr:'(Function("return toString.call(location)")() + RP_1_WA).at("-10")',optimize:!0},A,Pr),f('(LOCATION_CONSTRUCTOR + RP_0_S).at("-20")',A,Wr),f('[][TO_STRING].call(location)[SLICE_OR_SUBSTR]("-10")[1]',Er,Pr),f('([][TO_STRING].call(location) + RP_1_WA).at("-10")',A,Er,Pr)],M:[f("(RP_0_S + document.createElement(false))[10]",R),f("btoa(0)[0]",h),f('"".small()[2]',T),f("(RP_0_S + self)[10]",lr),f("(RP_4_A + Date())[30]",br),f("(RP_0_S + Audio)[11]",vr),f("(RP_0_S + document)[10]",Ir)],N:'"NaN"[0]',O:[t("Object",9),f("(RP_3_WA + PLAIN_OBJECT)[11]"),f("btoa(NaN)[3]",h),f('"".fontcolor()[2]',T),f("(RP_1_WA + self)[10]",lr),f("(RP_3_WA + Intl)[11]",Hr)],P:[f('String.fromCharCode("80")'),f('atob("01A")[1]',h),f('btoa("".italics())[0]',h),f('(RP_0_S + Function("return statusbar")())[11]',sr),f('"0".sup()[10]',T),a({atob:!1,charCode:!1})],Q:[f('"q"[TO_UPPER_CASE]()'),f("btoa(1)[1]",h),a({atob:!1})],R:[t("RegExp",9),f('btoa("0true")[2]',h),f('"".fontcolor()[10]',T),f("(RP_3_WA + REGEXP_STRING_ITERATOR)[11]",jr)],S:[t("String",9),f('"".sub()[1]',T)],T:[f({expr:'(RP_0_S + Function("try{undefined.false}catch(undefined){return undefined}")())[0]',optimize:!0}),f("btoa(NaN)[0]",h),f('"".fontcolor([])[20]',T),f("(RP_3_WA + Date())[30]",br),f("(RP_0_S + Audio)[10]",vr),f("(RP_1_WA + document)[10]",Ir),a({atob:!1})],U:[f('btoa("1NaN")[1]',h),f('"".sub()[2]',T),f({expr:'(RP_3_WA + Function("return toString")()())[11]',optimize:!0},Nr),f({expr:'(RP_3_WA + Function("return{}.toString")()())[11]',optimize:!0},kr),f("(RP_3_WA + PLAIN_OBJECT[TO_STRING].call())[11]",Yr),f("(RP_3_WA + ARRAY_ITERATOR[TO_STRING].call())[11]",p,Yr),f({expr:'(RP_3_WA + Function("return Intl.toString")()())[11]',optimize:!0},Fr,kr),f("(RP_3_WA + Intl[TO_STRING].call())[11]",Fr,Yr)],V:[f('"v"[TO_UPPER_CASE]()'),f('(RP_0_S + document.createElement("video"))[12]',R),f("btoa(undefined)[10]",h),a({atob:!1})],W:[f('"w"[TO_UPPER_CASE]()'),f('(self + RP_4_A)[SLICE_OR_SUBSTR]("-11")[0]',Bn),f("btoa(undefined)[1]",h),f("(RP_0_S + self)[11]",lr),f('(RP_3_WA + Function("return constructor")())[11]',Ur),f("(RP_3_WA + self)[11]",Xr),f('(self + RP_4_A).at("-11")',Bn,A),a({atob:!1})],X:[f('"x"[TO_UPPER_CASE]()'),f('btoa("1true")[1]',h),a({atob:!1})],Y:[f('"y"[TO_UPPER_CASE]()'),f('btoa("a")[0]',h),a({atob:!1})],Z:[f("btoa(false)[0]",h),f('(RP_3_WA + "".fontsize())[11]',T)],"[":[Bt(14),f("(RP_0_S + ARRAY_ITERATOR)[0]",p)],"\\":[f("ESCAPING_BACKSLASH"),a({atob:!1,escSeq:!1,unescape:!1})],"]":[Bt(26),f("(RP_0_S + ARRAY_ITERATOR)[22]",wr)],"^":[f('atob("undefined0")[2]',h)],a:'"false"[1]',b:[t("Number",12),f("(RP_0_S + ARRAY_ITERATOR)[2]",p)],c:[t("ANY_FUNCTION",3),f("(RP_5_A + ARRAY_ITERATOR)[10]",p)],d:'"undefined"[2]',e:'"true"[3]',f:'"false"[0]',g:[t("String",14)],h:[f('101[TO_STRING]("21")[1]'),f('btoa("0false")[3]',h)],i:"([RP_5_A] + undefined)[10]",j:[f("(RP_0_S + PLAIN_OBJECT)[10]"),f("(RP_0_S + ARRAY_ITERATOR)[3]",p),f("(RP_0_S + Intl)[3]",Fr),f("(RP_0_S + Node)[3]",mr),f("(RP_0_S + Intl)[10]",Hr),f("(RP_0_S + self)[3]",Br)],k:[f('20[TO_STRING]("21")'),a()],l:'"false"[2]',m:[t("Number",11),f("(RP_6_S + Function())[20]")],n:'"undefined"[1]',o:[t("ANY_FUNCTION",6),f("(RP_0_S + ARRAY_ITERATOR)[1]",p)],p:[f('211[TO_STRING]("31")[1]'),f("(RP_3_WA + btoa(undefined))[10]",h)],q:[f('212[TO_STRING]("31")[1]'),f('"".fontcolor(0 + "".fontcolor())[30]',Rr),f('"".fontcolor("0false\\"")[20]',dr),f('"".fontcolor(true + "".fontcolor())[30]',pr),a()],r:'"true"[1]',s:'"false"[3]',t:'"true"[0]',u:'"undefined"[0]',v:[Bt(19)],w:[f('32[TO_STRING]("33")'),f('(self + RP_0_S)[SLICE_OR_SUBSTR]("-2")[0]',Bn),f('atob("undefined0")[1]',h),f("(RP_4_A + self)[20]",lr),f("(RP_0_S + self)[13]",Xr),f('(self + RP_0_S).at("-2")',Bn,A)],x:[f('101[TO_STRING]("34")[1]'),f('btoa("falsefalse")[10]',h)],y:"(RP_3_WA + [Infinity])[10]",z:[f('35[TO_STRING]("36")'),f('btoa("falsefalse")[11]',h)],"{":[Mt(12)],"}":[Bt(28)],"":[f('(RP_4_A + atob("NaNundefined"))[10]',h)],"":[f('atob("0NaN")[2]',h)],"":[f('atob("00false")[3]',h)],"":[f("atob(true)[2]",h)],"£":[f("atob(NaN)[1]",h)],"¥":[f('atob("0false")[2]',h)],"§":[f('atob("00undefined")[2]',h)],"©":[f('atob("false0")[1]',h)],"±":[f('atob("0false")[3]',h)],"¶":[f("atob(true)[0]",h)],"º":[f('atob("undefined0")[0]',h)],"»":[f("atob(true)[1]",h)],"Ç":[f('atob("falsefalsefalse")[10]',h)],"Ú":[f('atob("0truefalse")[1]',h)],"Ý":[f('atob("0undefined")[2]',h)],"â":[f('atob("falsefalseundefined")[11]',h)],"é":[f('atob("0undefined")[1]',h)],"î":[f('atob("0truefalse")[2]',h)],"ö":[f('atob("0false")[1]',h)],"ø":[f('atob("undefinedundefined")[10]',h)],"∞":[f("Infinity[TO_LOCALE_STRING]()",Cr),a()]}),Zr=m({Number:f({expr:"Number.name",optimize:{complexOpt:!1}},yr),Object:f({expr:"Object.name",optimize:{complexOpt:!1}},yr),RegExp:f({expr:"RegExp.name",optimize:{complexOpt:!1}},yr),String:f("String.name",yr),fromCharCo:f({expr:'"from3har3o".split(3).join("C")',optimize:{complexOpt:!1}}),mCh:f('atob("bUNo")',d.ATOB)}),fr=m({Array:[f("[].constructor")],Audio:[f('Function("return Audio")()',vr)],Boolean:[f("false.constructor")],Date:[f('Function("return Date")()')],Function:[f("ANY_FUNCTION.constructor")],Intl:[f('Function("return Intl")()',Fr)],Node:[f('Function("return Node")()',mr)],Number:[f("0..constructor")],Object:[f("PLAIN_OBJECT.constructor"),f("Intl.constructor",Fr),f("[].entries().constructor",wr)],RegExp:[f('Function("return/false/")().constructor')],String:[f('"".constructor')],atob:[f('Function("return atob")()',h)],btoa:[f('Function("return btoa")()',h)],document:[f({expr:'Function("return document")()',optimize:!0},R)],escape:[f({expr:'Function("return escape")()',optimize:!0})],location:[f('Function("return location")()',Pr)],self:[f('Function("return self")()',Br)],unescape:[f({expr:'Function("return unescape")()',optimize:!0})],ANY_FUNCTION:[f("FILTER"),f("AT",A),f("FILL",v),f("FLAT",I)],ARRAY_ITERATOR:[f("[].entries()",p)],AT:[f("[].at",A)],ESCAPING_BACKSLASH:[f(function(){var e=this.be(92);return new C(void 0,e,F.STRING)}),f({expr:'atob("01y")[1]',solutionType:F.STRING},h),f({expr:'(RP_0_S + RegExp("\\n"))[1]',solutionType:F.STRING},E),f({expr:'(RP_5_A + RegExp("".italics()))[10]',solutionType:F.STRING},Ar),f({expr:'(RP_3_WA + RegExp("".sub()))[10]',solutionType:F.STRING},Ar),f({expr:"(RP_0_S + RegExp(FILTER))[20]",solutionType:F.STRING},E,b),f({expr:"(RP_0_S + RegExp(Function()))[20]",solutionType:F.STRING},E,Tr),f({expr:"(RP_5_A + RegExp(Function()))[30]",solutionType:F.STRING},E,Sr),f({expr:"(RP_0_S + RegExp(ANY_FUNCTION))[1]",solutionType:F.STRING},E,L),f({expr:"(+(RP_0_S + FILTER)[0] + RegExp(FILTER))[23]",solutionType:F.STRING},E,y),f({expr:"(RP_4_A + RegExp(AT))[20]",solutionType:F.STRING},A,E,b),f({expr:"(RP_1_WA + [+(RP_0_S + AT)[0]] + RegExp(AT))[20]",solutionType:F.STRING},A,E,y),f({expr:"(RP_3_WA + RegExp(FILL))[21]",solutionType:F.STRING},E,b,v),f({expr:"(RP_3_WA + RegExp(FLAT))[21]",solutionType:F.STRING},E,b,I),f({expr:"(+(RP_0_S + FILL)[0] + RegExp(FILL))[21]",solutionType:F.STRING},E,v,y),f({expr:"(+(RP_0_S + FLAT)[0] + RegExp(FLAT))[21]",solutionType:F.STRING},E,I,y)],FILL:[f("[].fill",v)],FILTER:[f("[].filter")],FLAT:[f("[].flat",I)],F_A_L_S_E:[f('[][SLICE_OR_FLAT].call("false")')],LOCALE_AR:[f({expr:'"ar-td"',solutionType:F.COMBINED_STRING}),f({expr:'"ar"',solutionType:F.COMBINED_STRING},Mr)],LOCATION_CONSTRUCTOR:[f('Function("return location")().constructor',Dr),f('Function("return location")().constructor',Wr)],PLAIN_OBJECT:[f('Function("return{}")()')],REGEXP_STRING_ITERATOR:[f({expr:'"".matchAll()',optimize:!0},jr)],SLICE_OR_FLAT:[f({expr:'"slice"',solutionType:F.COMBINED_STRING}),f({expr:'"flat"',solutionType:F.COMBINED_STRING},I)],SLICE_OR_SUBSTR:[f({expr:'"slice"',solutionType:F.COMBINED_STRING}),f({expr:'"substr"',solutionType:F.COMBINED_STRING})],TO_LOCALE_STRING:[f({expr:'"toLocaleString"',optimize:!0,solutionType:F.COMBINED_STRING})],TO_STRING:[f({expr:'"toString"',optimize:{toStringOpt:!1},solutionType:F.COMBINED_STRING})],TO_UPPER_CASE:[f({expr:'"toUpperCase"',optimize:!0,solutionType:F.COMBINED_STRING})],FBEP_4_S:[f("[[true][+(RP_3_WA + FILTER)[30]]]"),f("[[true][+(RP_1_WA + AT)[30]]]",A),f("[[true][+(RP_5_A + FILL)[30]]]",v),f("[[true][+(RP_5_A + FLAT)[30]]]",I),f("[[true][+!!++(RP_0_S + FILTER)[20]]]",Lr),f("[[true][+!!++(RP_1_WA + AT)[20]]]",A,Lr),f("[[true][+!!++(RP_0_S + FILL)[20]]]",v,Lr),f("[[true][+!!++(RP_0_S + FLAT)[20]]]",I,Lr)],FBEP_9_U:[f({expr:"[false][+(RP_0_S + FILTER)[20]]",solutionType:F.UNDEFINED}),f({expr:"[false][+(RP_1_WA + AT)[20]]",solutionType:F.UNDEFINED},A),f({expr:"[false][+(RP_0_S + FILL)[20]]",solutionType:F.UNDEFINED},v),f({expr:"[false][+(RP_0_S + FLAT)[20]]",solutionType:F.UNDEFINED},I)],FBEP_10_S:[f({expr:"[RP_1_WA] + FBEP_9_U",solutionType:F.COMBINED_STRING})],FBP_5_S:[f("[[false][+IS_IE_SRC_A]]",xr)],FBP_7_WA:[f({expr:'+("10" + [(RP_4_A + FILTER)[40]] + "00000")',solutionType:F.WEAK_ALGEBRAIC}),f({expr:'+("10" + [(RP_0_S + AT)[32]] + "00000")',solutionType:F.WEAK_ALGEBRAIC},A),f({expr:'+("10" + [(RP_6_S + FILL)[40]] + "00000")',solutionType:F.WEAK_ALGEBRAIC},v),f({expr:'+("10" + [(RP_6_S + FLAT)[40]] + "00000")',solutionType:F.WEAK_ALGEBRAIC},I)],FBP_8_WA:[f({expr:'+("1000" + (RP_5_A + FILTER + 0)[40] + "000")',solutionType:F.WEAK_ALGEBRAIC}),f({expr:'+("1000" + (AT + 0)[31] + "000")',solutionType:F.WEAK_ALGEBRAIC},A),f({expr:'+("1000" + (FILL + 0)[33] + "000")',solutionType:F.WEAK_ALGEBRAIC},v),f({expr:'+("1000" + (FLAT + 0)[33] + "000")',solutionType:F.WEAK_ALGEBRAIC},I)],FBP_9_U:[f({expr:"[true][+(RP_0_S + ANY_FUNCTION)[0]]",solutionType:F.UNDEFINED},xr)],FH_SHIFT_1:[f("[+IS_IE_SRC_A]")],FH_SHIFT_2:[f("[true + IS_IE_SRC_A]")],FH_SHIFT_3:[f("[2 + IS_IE_SRC_A]")],FHP_3_WA:[f({expr:"+(1 + [+(RP_0_S + ANY_FUNCTION)[0]])",solutionType:F.WEAK_ALGEBRAIC}),f({expr:"+(++(RP_0_S + ANY_FUNCTION)[0] + [0])",solutionType:F.WEAK_ALGEBRAIC},Lr)],FHP_5_A:[f({expr:"IS_IE_SRC_A",solutionType:F.ALGEBRAIC})],FHP_8_S:[f({expr:"[RP_3_WA] + FHP_5_A",solutionType:F.COMBINED_STRING})],IS_IE_SRC_A:[f({expr:"!![[]][+(RP_0_S + ANY_FUNCTION)[0]]",solutionType:F.ALGEBRAIC}),f({expr:"!!++(RP_0_S + ANY_FUNCTION)[0]",solutionType:F.ALGEBRAIC},Lr)],RP_0_S:{expr:"[]",solutionType:F.OBJECT},RP_1_WA:{expr:"0",solutionType:F.WEAK_ALGEBRAIC},RP_2_WS:{expr:'"00"',solutionType:F.WEAK_PREFIXED_STRING},RP_3_WA:{expr:"NaN",solutionType:F.WEAK_ALGEBRAIC},RP_4_A:{expr:"true",solutionType:F.ALGEBRAIC},RP_5_A:{expr:"false",solutionType:F.ALGEBRAIC},RP_6_S:{expr:'"0false"',solutionType:F.COMBINED_STRING}}),ei=[f(4,b),f(5,L),f(0,zr)],ti=[f(1,L),f(0,P)],ni=Q([f("fromCharCode"),f("fromCodePoint",hr)],[f(0),f(1,h),f(1,sr),f(1,T),f(0,p,h,T,hr)]),ri=Q([f(function(e,t){return"function(undefined){return String."+e+"("+t+")}"}),f(function(e,t){return"function(undefined){return(isNaN+false).constructor."+e+"("+t+")}"}),f(function(e,t){return"undefined=>String."+e+"("+t+")"},cr),f(function(e,t){return"undefined=>(isNaN+false).constructor."+e+"("+t+")"},cr),f(function(e,t){return"function(undefined){return status.constructor."+e+"("+t+")}"},Gr),f(function(e,t){return"undefined=>status.constructor."+e+"("+t+")"},cr,Gr)],[f(1),f(3),f(0,p,T),f(1,p,T,I),f(0,p,T,y),f(1,p,A,T),f(1,p,T,b,I),f(1,p,T,v,L),f(1,p,T,v,P),f(1,p,T,I,L),f(2,p,T),f(3,p,A,T,L),f(3,p,A,T,P),f(4),f(5)]),ii=Q([f(function(e,t){var n=ue(e);return'Function("return function('+n+"){return function("+e+"){return "+n+t+'}}")()'}),f(function(e,t){return'Function("return function('+e+"){return this"+t+'}")().bind'}),f(function(e,t){var n=ue(e);return'Function("return '+n+"=>"+e+"=>"+n+t+'")()'},cr)],[f(0),f(1,p,h),f(0,xr),f(0,y),f(1,p,T),f(0,p,A,h),f(0,p,A,T),f(0,p,h,v),f(0,p,h,I),f(0,p,h,P),f(0,p,T,v),f(0,p,T,I),f(0,p,T,L),f(0,p,T,P),f(2)]),oi=[f({expr:"FILTER",shift:6}),f({expr:"FILL",shift:4},v),f({expr:"FLAT",shift:4},I),f({expr:"AT",shift:2},A)],ui=Q([f("f"),f("undefined")],[f(0),f(1,A),f(1,v,L),f(1,v,P),f(0,I)]),ai=Q([f("B"),f("b")],[f(0),f(1,p)]),ci=Q([f("return String"),f("return(isNaN+false).constructor"),f("return status.constructor",Gr)],[f(1),f(0,p,T),f(1,I),f(0,p,T,y),f(1,p,A,T),f(1,p,T,b,I),f(1,p,T,v,L),f(1,p,T,v,P),f(1,p,T,I,L),f(2)]);Yt("false","![]",F.ALGEBRAIC),Yt("true","!![]",F.ALGEBRAIC),Yt("undefined","[][[]]",F.UNDEFINED),Yt("NaN","+[false]",F.WEAK_ALGEBRAIC),Yt("Infinity","1e1000",F.WEAK_ALGEBRAIC);for(var si=0;si<=9;++si){var fi=function(e){switch(e){case 0:return"+[]";case 1:return"+!![]";default:for(var t="!![]";t+="+!![]",1<--e;);return t}}(si);Vr[si]={expr:fi,solutionType:F.WEAK_ALGEBRAIC}}V(Gt),V(c),zt("LOCALE_AR",1632),c("٫","LOCALE_AR",.1,1),c("ل",'"ar"',NaN,0),c("ي",'"ar"',NaN,1),c("س",'"ar"',NaN,2),c("ر",'"ar"',NaN,4,g),c("ق",'"ar"',NaN,5,g),c("م",'"ar"',NaN,6,g),zt('"bn"',2534,g),zt('"fa"',1776),c("٬",'"fa"',1e3,1),c("ن",'"fa"',NaN,0,g),c("ا",'"fa"',NaN,1,g),c("ع",'"fa"',NaN,2,g),c("د",'"fa"',NaN,3,g),c("н",'"ru"',NaN,0,g),c("е",'"ru"',NaN,1,g),c("ч",'"ru"',NaN,3,g),c("и",'"ru"',NaN,4,g),c("с",'"ru"',NaN,5,g),c("л",'"ru"',NaN,6,g),c("о",'"ru"',NaN,7,g);var _i,li,Ri,di={ConstIdentifier:"Infinity|NaN|false|true|undefined",DecimalLiteral:"(?:(?:0|[1-9]\\d*)(?:\\.\\d*)?|\\.\\d+)(?:[Ee][+-]?\\d+)?",DoubleQuotedString:'"(?:#EscapeSequence|(?!["\\\\]).)*"',EscapeSequence:"\\\\(?:u#HexDigit{4}|x#HexDigit{2}|0(?![0-7])|\r\n|[^0-7ux])",HexDigit:"[0-9A-Fa-f]",HexIntegerLiteral:"0[Xx]#HexDigit+",NumericLiteral:"#HexIntegerLiteral|#DecimalLiteral",Separator:"#SeparatorChar|//.*(?!.)|/\\*[\\s\\S]*?\\*/",SeparatorChar:"(?!)[\\s\ufeff]",SingleQuotedString:"'(?:#EscapeSequence|(?!['\\\\]).)*'",UnicodeEscapeSequence:"\\\\u#HexDigit{4}"},pi=N(),Ai=["false","null","true"],hi=["arguments","debugger","delete","if","import","let","new","return","this","throw","typeof","void","while","with","yield"],Ti=Ee("(?:#NumericLiteral|#ConstIdentifier)"),Si=Ee("(?:[$\\w]|#UnicodeEscapeSequence)+"),Ei=Ee("(?:#Separator|;)*"),Ni=Ee("#Separator*"),bi=Ee("#SingleQuotedString|#DoubleQuotedString"),Oi="function"!=typeof WeakRef?ke:(_i=new Map,li=new FinalizationRegistry(function(e){var t=_i.get(e);t&&!t.deref()&&_i.delete(e)}),function(e){var t,n=_i.get(e);return(t=n?n.deref():t)||(t=ke(e))&&!0!==t&&(n=new WeakRef(t),_i.set(e,n),li.register(t,e)),t}),vi=[6,8,12,17,22,27,32,37,42,47],Ii=1,Li=(s(We.prototype,{get length(){return this.ie},append:function(t){var e=this.$;if(e.length>=this.ne)return!1;e.push(t);var n=t.appendLength;return this.ee.forEach(function(e){e=e.appendLengthOf(t);e<n&&(n=e)}),this.ie+=n,!0},toString:function(){var e=this.$.length,t=this.te,n=this.re,r=2===n;if(e<=t)var i=Ue(this,0,e,r,0!==n);else{for(var a=t,o=2;!(e<=--a*o);)o*=2;var c=this,i=function e(t,n,r,i){var o,u;return n<=a+1?u=Ue(c,t,n,i):(o=a*(r/=2),u=e(t,o=on(o-(o=2*o-n)+o%(a-1),(r/2^0)*(a+1)),r)+"+"+e(t+o,n-o,r,!0),i&&(u="("+u+")")),u}(0,e,o,r)}return i}}),0),Fi={firstSolution:er},Ci={firstSolution:er,optimize:{default:!1,toStringOpt:!0}},gi=N(),Pi=([15,31,47,63,111,127,175,223,239,240,241,242,243,244,245,246,247,250].forEach(function(e){gi[e]=null}),d.ATOB.mask),yi=N(),mi=N(),xi=new Je(Y),wi=d.Se,Di=(Ri=x(ln(or).join("|"),"y"))?function(e,t){Ri.lastIndex=t;t=e.match(Ri);if(t)return t[0]}:function(e,t){for(var n in or)if(e.substr(t,n.length)===n)return n},ki=(s(Je.prototype,{pe:function(e,t,n,r,i,o){var u=n&&this.hasFeatures(Pi)?Ve(this,e,t,Me,"atob"):(n=[],r&&(u=Ve(this,e,t,Ye,"char-code"),n.push(u)),i&&(u=Ve(this,e,t,Xe,"esc-seq"),n.push(u)),o&&(u=Ve(this,e,t,qe,"unescape"),n.push(u)),re.apply(null,n));return u},Oe:function(e){var t=ir[e];if(t)return t;Ze(this,"Undefined regular padding block with length "+e)},ve:Me,Ie:Ye,Le:Xe,be:qe,Fe:function(e,t,n,r,i){var o=e.mod||"",u=e.pmod||"",a=t&&"+"===o[0],c=r-(o?(a?2:0)+o.length:0)-u.length,s=e.ops,f=s.length,_=function(e,t,n,r,i,o){var u,a=o.appendString;if(u=t.terms){for(var c=u.length,s=i-(n?2:0),f=!1,_=0;_<c;++_){var l,R=u[_],d=1<c?r.concat(_):r;if(!a||"string"!=typeof R.value||R.mod||R.pmod||R.ops.length){var p=s-(A?A.length+1:0)-3*(c-_-1),d=e.Fe(R,_,d,p,o);if(!d)return;A?A+="+"+d:A=d}else A?(f||Ze(e,"Unsupported concatenation of a string to a potentially non-string expression"),l=new C(void 0,A,F.WEAK_PREFIXED_STRING)):f=!(l=void 0),A=a(e,R.value,l)}n&&(A="("+A+")")}else if(T=t.identifier)var A=(0,o.identifier)(e,T,n,r,i);else{var h,T=t.value;if("string"==typeof T)A=(0,o.string)(e,T,n?2:Ii,r,i);else if(Qt(T))T.length?(t=e.Fe(T[0],!1,r,i-2,o))&&(A="["+t+"]"):i<2||(A="[]");else if("number"==typeof T&&T==T?(t=T<0||1/T<0,h=0===(h=rn(T))?"0":h===1/0?"1e1000":je(h),A=ne(h=t?"-"+h:h),1<h.length&&(A="+("+A+")"),n&&(A="("+A+")")):A=Qe(xi,S(T),n),A.length>i)return}return A}(this,e,f||u?2:t||o?1:0,n,c,i);if(_){for(var l=0;l<f;++l){var R=s[l],d=R.type;if("call"===d){if((_+="()").length>c)return}else{var p=n.concat(l+1),A=c-_.length-2,h=R.str;if(!(h=null!=h?(0,i.string)(this,h,0,p,A):this.Fe(R,!1,p,A,i)))return;_+="get"===d?"["+h+"]":"("+h+")"}}_+=u,o&&(_=o+_,a)&&(_="("+_+")")}return _},Ae:function(e,t,n,r,i){r||Ze(this,"Missing padding entries for index "+n);var o,r=this.findDefinition(r),i=(n="number"==typeof r?(i=this.findDefinition(i),o=this.Oe(r),n+r+i):(o=r.block,r.shiftedIndex),"("+o+" + "+t+")["+n+"]"),r=this.replaceExpr(i);return new C(e,r,F.STRING)},he:function(e,t,n,r){var i=this.findDefinition(oi),o=i.expr,t=t+i.shift,i=n(t);return this.Ae(e,o,t,i,r)},constantDefinitions:fr,findDefinition:function(e){var t,n=e.cacheKey,r=(void 0===n&&(e.cacheKey=n=++Li),this.ae);if(n in r)return r[n];for(var i=e.length;i--;){var o=e[i];if(this.hasFeatures(o.mask)){t=o.definition;break}}return r[n]=t},hasFeatures:function(e){return O(this.mask,e)},maxGroupThreshold:1800,replaceExpr:function(e,t){function r(e,t,n){n.optimize=i;t=e.replaceString(t,n);return t||Ze(e,"String too complex"),t}var i,e=Oi(e),t=(e&&!0!==e||Ze(this,"Syntax error"),i=t,{appendString:function(e,t,n){return r(e,t,{firstSolution:n,screwMode:Ii})},identifier:Qe,string:function(e,t,n){return r(e,t,{screwMode:n})}});return this.Fe(e,!1,[],NaN,t)},replaceString:function(e,t){var n=this.Ce(e,(t=t||{}).optimize),r=new We(t.screwMode||0,this.maxGroupThreshold,n),n=t.firstSolution,i=t.maxLength;if(!(n&&(r.append(n),r.length>i))){for(var o=e.length,u=0;u<o;){var a=Di(e,u),a=a?(u+=a.length,or[a]):(a=e[u++],this.resolveCharacter(a));if(!r.append(a)||r.length>i)return}t=S(r);return t.length>i?void 0:t}},resolve:function(e,t,n){var r,i,o,u=typeof e;return"function"==u?e.call(this,t):("object"==u?(r=e.expr,i=e.solutionType,o=e.optimize):r=e,u=this.replaceExpr(r,o),new C(t,u,i=null==i?null!=n?n:F.STRING:i))},resolveCharacter:function(r){var i=this.oe,o=i[r];return void 0===o&&$e(this,nn(r),function(){var e,t,n=Vr[r];!n||Qt(n)?(o=n?Ke(this,r,n):o)||(t=(e=r).charCodeAt(),o=this.pe(e,t,t<256,!0,!0,!0)):((o=xi.resolve(n,r)).entryCode="static",i=yi),i[r]=o}),o},resolveConstant:function(t){var n=this.ue,r=n[t];return void 0===r&&$e(this,t,function(){var e=this.constantDefinitions[t];Qt(e)?r=Ke(this,t,e,F.OBJECT):(r=xi.resolve(e,void 0,F.OBJECT),n=mi),n[t]=r}),r}}),Cn=xi,{joiner:"false",separator:"false"}),Ui={joiner:"",separator:'Function("return/(?=false|true)/")()'},Wi={identifier:function(e,t,n,r,i){return ut(e,"return "+t,St,Rt(r),i)},string:function(e,t,n,r,i){return st(e,t,n,Rt(r),i)}},Hi=(Et.forceString=!(St.forceString=!1),et([""],"false")),ji=et(["false","true"],""),Bi={byCharCodes:l(function(e,t){return this.ge(e,void 0,t)},2),byCharCodesRadix4:l(function(e,t){return this.ge(e,4,t)},25),byCodePoints:l(function(e,t){return this.Pe(e,void 0,t)},3,void 0,d.FROM_CODE_POINT),byCodePointsRadix4:l(function(e,t){return this.Pe(e,4,t)},38,void 0,d.FROM_CODE_POINT),byDenseFigures:l(function(e,t){return this.ye(e,t)},1888),byDict:l(function(e,t){return this.me(e,void 0,void 0,t)},2),byDictRadix3AmendedBy1:l(function(e,t){return this.me(e,3,1,t)},153),byDictRadix4:l(function(e,t){return this.me(e,4,0,t)},160),byDictRadix4AmendedBy1:l(function(e,t){return this.me(e,4,1,t)},218),byDictRadix4AmendedBy2:l(function(e,t){return this.me(e,4,2,t)},279),byDictRadix5:l(function(e,t){return this.me(e,5,0,t)},223),byDictRadix5AmendedBy3:l(function(e,t){return this.me(e,5,3,t)},602),bySparseFigures:l(function(e,t){return this.xe(e,t)},347),express:l(function(e,t){e=e.valueOf();return this.we(e,t)},void 0,!0),plain:l(function(e,t){var n=e.valueOf(),t={maxLength:t,optimize:!0,screwMode:e.screwMode};return this.replaceString(n,t)}),text:l(function(e,t){return ut(this,e.valueOf(),e.wrapper,void 0,t)})};s(Je.prototype,{_e:function(e,t,n){return e(t,n)},ge:function(e,t,n){var r=this.findDefinition(ni);return ot(this,e,r,At,t,n)},Pe:function(e,t,n){return ot(this,e,"fromCodePoint",ht,t,n)},ye:function(e,t){return at(this,pt,ji,ft,[Ui],e,t)},me:function(e,t,n,r){var i=e.valueOf(),e=_t(e),o=e.length,u=!t||o&&71<6*e[0].count,a=t||10,c=function(e,t,n,r){var i,o,u=vi.slice(0,t);if(n){for(var a=t-n,c="[",s=0;s<n;++s){var f=a+s;u[f]=or[rr[s]].appendLength,c+=f}i=Rn(c+="]","g"),o=function(e){return rr[e-a]}}for(var _=[],s=0;s<e;++s){var l=r&&!s?"":s.toString(t),R=n?l.replace(i,o):l,R=_[s]=cn(R);R.sortLength=function(){var t=0;return Xt(l,function(e){t+=u[e]}),t}(),R.index=s}return _.sort(function(e,t){return e.sortLength-t.sortLength||e.index-t.index}),_}(o,a,n,u),s=N(),f=dt(i),_=[],o=(e.forEach(function(e,t){var t=c[t],n=e.char;s[n]=t,f+=e.count*t.sortLength,_[t.index]=n}),ct(this,_,r-f));if(o){if(n)for(var l=[],R=a-n,d=0;d<n;++d){var p=rr[d],A=S(R+d);l.push({separator:p,joiner:A})}e=nt(this,i,s,[ki],l,!1,r-o.length);if(e)return this.createDictEncoding(o,e,r,t,u)}},xe:function(e,t){return at(this,dt,Hi,lt,[ki],e,t)},we:function(e,t){var n,e=ke(e);if(e)return!0===e?t<0||(n=""):n=this.Fe(e,!1,[],t,Wi),n},le:function(e,t,n,r){var i=this.perfLog=[],e=tt(this,e,{wrapper:t},n);if(r&&(r.perfLog=i),delete this.perfLog,null==e)throw new Zt("Encoding failed");return e},fe:65533,createDictEncoding:function(e,t,n,r,i){var i=r?this.findDefinition(ii)(o=this.findDefinition(ui),"[parseInt("+(i?"+":"")+o+","+r+")]"):'"".charAt.bind',o=rt(this,t,i,e)+"["+this.replaceString("join")+"]([])";if(!(n<o.length))return o},replaceFalseFreeArray:function(e,t){return this.replaceStringArray(e,[ki],null,!1,t)},replaceJoinedArrayString:function(e,t){return ne(e,{maxLength:t,screwMode:2})},replaceStringArray:function(r,e,u,t,a){var n,i,o,c,s,f,_,l,R=r.length;return(u||3<R)&&(i=function(){var e=u?u.length:0,t=e+1,n=(a-7)/t-6,r=this.replaceString("split",{maxLength:n,optimize:!0});if(r){var i="";if(e){var n=(a-7-t*(r.length+6))/e-6,o=this.replaceString("join",{maxLength:n});if(!o)return;u.forEach(function(e){var t=Tt(this.replaceExpr(e.separator)),e=Tt(this.replaceString(e.joiner));i+="["+r+"]("+t+")["+o+"]("+e+")"},this)}return i+="["+r+"]"}}.call(this)),!u&&1<R&&(o=this.replaceString("concat",{maxLength:a,optimize:!0})),i&&(c=a-(i.length+2),e.forEach(function(e){var t,n=r.join(e.joiner),n=this.replaceJoinedArrayString(n,c);n&&(e=Tt(this.replaceExpr(e.separator)),t=n.length+e.length,c<t||(c=t,s=n,f=e))},this),s)&&(a=(n=s+i+"("+f+")").length-1),!u&&(R<=1||o&&!(4+(o.length+7)*(R-1)>a))&&(l={screwMode:t?Ii:0},r.some(function(e){e=Tt(ne(e,l));return _?_+="["+o+"]("+(e="[]"===e?"[[]]":e)+")":_="["+e+"]",_.length>a})||(n=_)),n}});var Mi,Gi,Yi,zi,Xi=S.prototype.codePointAt?function(e){return e.codePointAt()}:function(e){return e.length<2?e.charCodeAt():ee(e.charCodeAt(0),e.charCodeAt(1))},qi={appendLengthOf:Tn,optimizeSolutions:Tn},Ji=[],$i=[],Ki=36,Qi=9007199254740991,Vi=[],Zi=[,,,,,,,,,,,48,50,54,,64],eo=function(){for(var e=1/0,t=Ki;12<=t;--t){var n=ne(S(t)),r=n.length,r=(r<e&&(e=r),Vi[t]=n,$i[t]=Qi.toString(t).length);Ji[t]=Zi[r]+e}},to=d.FROM_CODE_POINT.mask,_r=(s(Je.prototype,{De:function(e,t,n,r){var i=this.ce,o=t,u=(null!=n&&(o+=":"+n),i[o]);u||(u=this.ke(t,n,r),i[o]=u),e.push(u)},ke:function(e,t,n){var r,f,i,o,u,_,l,R,v,I,L;switch(e){case"comma":l=(_=this).replaceExpr("[][SLICE_OR_FLAT].call"),R=l.length+2,r={appendLengthOf:Nt,optimizeSolutions:function(r,u,a,c){function e(e){for(;e<f;){var i,t,n,o=function(e,t){var n=0;if(bt(e[t]))for(var r=e.length-2;t<r&&","===e[++t].source&&bt(e[++t]);)++n;return n}(u,e);o?(t=function(e,t){for(var n=0,r=t+i;(r-=2)>t;)n+=e[r].appendLength;return n}(u,e,i=2*o+1)-R,e||i!==s||(c?t-=3:a&&(t+=2)),e&&u[e].isWeak&&(t+=2),0<t&&(n=function(e,t){for(var n=[],r=t+2*o;t<=r;t+=2){var i=e[t];n.push(i)}return function(){var e=n.map(function(e){return e.source}),t=e.join(),e=e.join(""),e=_.replaceString(e,{optimize:!0,screwMode:Ii});return new C(t,l+"("+e+")",F.OBJECT)}}(u,e),r.addCluster(e,i,n,t)),e+=1+i):e+=2}}var s=u.length,f=s-2;e(0),e(1)}};break;case"complex":r=function(r,e,t){function a(){return s}var c,s,n,i,f,_,o=0,u=N(),l=[],t=(Xt(e,function(e){var t=r.resolveCharacter(e).appendLength,n=(o+=t,u[e]);n?++n.count:(n=u[e]={appendLength:t,char:e,count:1},l.push(n))}),r.resolve(t,e)),R=t.appendLength,d=o-R;if(0<2+d){l.sort(function(e,t){return e.appendLength-t.appendLength});for(var p=R,A=e.length,h=0;A;++h){var T=l[h],S=T.appendLength;if(p<S*A)break;T=T.count;p-=S*T,A-=T}var R=p/A|0,E=(c=e,s=t,n=function(e,t){for(var n,r=N();n=e[t++];)r[n.char]=null;return r}(l,h),i=R,f=d,_=c.length,{appendLengthOf:function(e){e=e.source;if(null!=e&&e in n)return i},optimizeSolutions:function(e,t,n,r){for(var i,o=0,u=t.length-_;o<=u;++o)(function(e,t){for(var n=0;n<_;++n){var r=e[t+n],i=c[n];if(r.source!==i)return}return 1})(t,o)&&(i=f,u||(r&&!s.isString?i-=3:n&&(i+=2)),0<i)&&e.addCluster(o,_,a,i)}})}else E=qi;return E}(this,t,n);break;case"surrogatePair":i=(o=f=this).Ie(1e5).length,o=o.Le(65536).length,u=un(i,o)+1>>1,r={appendLengthOf:function(e){e=e.source;if(e&&1===e.length){e=e.charCodeAt();if(55296<=e&&e<=57343)return u}},optimizeSolutions:function(e,t,n){for(var r=t.length-1;r--;){var i,o,u,a=t[r],c=a.source,s=Ot(c,55296,56319);s&&(u=Ot(o=(i=t[r+1]).source,56320,57343))&&(s=ee(s,u),u=re(f.Ie(s),f.Le(s)),s=a.appendLength+i.appendLength-u.length-1,2===t.length&&n&&(s+=2),0<s)&&(a=function(e,t){return function(){return new C(e,t,F.STRING)}}(c+o,u),e.addCluster(r,2,a,s))}}};break;case"toString":eo&&(eo(),eo=null),v=this.resolveConstant("TO_STRING").replacement,I=v.length+7,L=N(),r={appendLengthOf:function(e){var t,n,e=e.source;if(null!=e&&/[bcghjkmopqvwxz]/.test(e))return null==(n=L[e])&&(t=vt(e),n=L[e]=(I+Ji[t])/$i[t]|0),n},optimizeSolutions:function(e,t,n){for(var r,i,o=t.length;0<o;){var u,a=t[--o];if(null!=(u=a.source)&&/^[\da-z]$/.test(u)){if(r||(r=o+1,i=!1),i||(u=a.source,i=L[u]<=a.appendLength),i&&2<=r-o){d=b=N=E=f=void 0;for(var c=e,s=t,f=o,_=r,l=n;;++f){var R=_-f;if("0"!==s[f].source){var d=b=N=E=void 0,p=c,A=s,h=f,T=R,S=l,E="",N=0,b="",d=0;do{var O=A[h+d],O=(N+=O.appendLength,O.source);if(E<O&&(E=O),b+=O,2<=++d&&I<N&&(S&&!h&&d===T&&(N+=2),function(e,t,n,r,i){do{var o=An(i,n);if(Qi<o)return null==s;var o=ne(je(o)),u=o.length+3,a=Vi[n],c=a.length,s=I+u+c,u=r-s;0<u&&(c=function(e,t){return function(){return new C(void 0,"(+("+e+"))["+v+"]("+t+")",F.STRING)}}(o,a),e.addCluster(t,i.length,c,u))}while(++n<=Ki)}(p,h,vt(E),N,b)))break}while(d<T)}if(R<=2)break}}}else r=void 0}}}}return r},Ce:function(e,t){var n,r,i,o,u,a=[];if(t){if("object"==typeof t?(n=!("default"in t&&!t.default),r=(u=function(e){e+="Opt";return e in t?!!t[e]:n})("comma"),i=u("complex"),o=u("surrogatePair"),u=u("toString")):r=i=o=u=!0,r&&0<=e.indexOf(",")&&this.De(a,"comma"),i)for(var c in Zr){var s=Zr[c];this.hasFeatures(s.mask)&&0<=e.indexOf(c)&&this.De(a,"complex",c,s.definition)}o&&this.hasFeatures(to)&&/[\ud800-\udbff][\udc00-\udfff]/.test(e)&&this.De(a,"surrogatePair"),u&&this.De(a,"toString")}return a}}),Mi=Rn("(?:(?!.)\\s)+(?:\\s|\ufeff|//(?:(?!\\*/|`).)*(?!.)|/\\*(?:(?!`)(?:[^*]|\\*[^/]))*?\\*/)*$"),s({},{Feature:d,encode:Lt})),no=d.Ee,ro=!1;gt(),s(Lt,{get permanentCaching(){return ro},set permanentCaching(e){ro=!!e,Pt()}}),"undefined"!=typeof self&&(self.JScrewIt=_r),"undefined"!=typeof module&&(module.exports=_r,exports.Feature=null,exports.encode=null)}();
|
|
1
|
+
// JScrewIt 2.35.2 – https://jscrew.it
|
|
2
|
+
!function(){"use strict";function s(n,r){return ln(r).forEach(function(e){var t=_n(r,e);t.enumerable=!1,fn(n,e,t)}),n}function m(t){var n=N();return ln(t).forEach(function(e){n[e]=t[e]}),n}function x(e,t){try{var n=Rn(e,t);if(n.flags===t)return n}catch(e){}}function w(e,t,n,r){var i=(i=this.startLinks)[o=e]||(i[o]=[]),o=i[t];o?o.saving<r&&(o.data=n,o.saving=r):(o=i[t]={start:e,length:t,data:n,saving:r},this.clusters.push(o)),this.maxLength<t&&(this.maxLength=t)}function D(e,t){return e.saving-t.saving||t.length-e.length||k(t,e)}function k(e,t){return t.start-e.start}function U(){var e,t=[],n=this.clusters;if(n.length){for(n.sort(D);e=function(e,t,n){for(var r;r=t.pop();)if(null!=r.saving){for(var i,o=e,u=n,a=r.start,c=a,s=a+r.length;(i=o[c])&&(W(i,0),delete o[c]),++c<s;);for(var f=1;f<u;)(i=o[a-f++])&&(W(i,f),i.length=f);return r}}(this.startLinks,n,this.maxLength);)t.push(e);t.sort(k)}return t}function W(e,t){for(var n=e.length;n-- >t;){var r=e[n];r&&delete r.saving}}function H(e,t){function n(){this.constructor=e}if("function"!=typeof t&&null!==t)throw new TypeError("Class extends value "+String(t)+" is not a constructor or null");Sn(e,t),e.prototype=null===t?Object.create(t):(n.prototype=t.prototype,new n)}function O(e,t){var n;return(e&(n=0|t))==n&&(e/bn&(n=t/bn|0))==n}function M(e,t){return((e|t)&On)+(e/Nn|t/Nn)*Nn}function X(e,t){for(var n=0,r=Un(t);n<r.length;n++){var i=r[n],o=kn(t,i);o.enumerable=!1,Dn(e,i,o)}}function G(e){if("symbol"==typeof e)throw new Hn("Cannot convert a symbol to a string");return Wn(e)}function q(e,t){Dn(e,"mask",{value:t})}function J(e,i,o,u,a,c,s){return(!u.length||e&&!function(){for(var e=i.length+o.length+(u.length-1)*(a.length+1)+c.length,t=0,n=u;t<n.length;t++){var r=n[t];if(~r.indexOf("\n"))return 1;if(e+=r.replace(/\x1b\[\d+m/g,"").length,s<e)return 1}}()?"".concat(i).concat(o).concat(u.join("".concat(a," "))):"".concat(i,"\n").concat(u.join("".concat(a,"\n")).replace(/^/gm," "),"\n")).concat(c)}function $(e){throw new mn("Unknown feature ".concat(xn(e)))}function e(e,t,n){t=t.toLocaleString(e);return n.test(t)}function j(){try{var e=self+""}catch(e){return!1}return this(e)}function n(e){return"Features available in "+e+"."}function B(){var e=arguments,t=e.length-2,n=e[t],r=e[1+t],e=Z(e,0,t),t=Z(n,r);return Jt(e,t),this.apply(null,e)}function K(e,t){return{definition:e,mask:t}}function f(e){return K(e,Z(arguments,1).reduce(function(e,t){return M(e,t.mask)},Y))}function Q(n,e){e=e.map(function(e){var t=n[e.definition];return K(t.definition,M(e.mask,t.mask))});return e.available=n,e}function V(e){e._=B}function Z(e,t,n){return $t(e,t,n)}function ee(e,t){return(e-55296<<10)+t+9216}function te(e){return Kt(e+1).join("0")}function ne(e,t){return Cn.replaceString(e,t)}function re(){var n,r=1/0;return Xt(arguments,function(e){var t=e.length;t<r&&(n=e,r=t)}),n}function r(){for(var e=[],t=0;t<arguments.length;t++)e[t]=arguments[t];for(var n=0,r=0,i=e;r<i.length;r++)n|=i[r];return n}function ie(){for(var e=[],t=0;t<arguments.length;t++)e[t]=arguments[t];var n=r.apply(void 0,e);return function(e){return kt(n,e)}}function oe(e){for(var t=0,n=Jn;t<n.length;t++){var r=n[t];if(function(e,n){return!(e.length>n.length)&&e.every(function(e,t){return kt(e,n[t].type)})}(r.typeSetList,e))return r}}function ue(e){return"undefined"!==e?"undefined":"falsefalse"}function _(e,t){return f._({block:e,shiftedIndex:t},arguments,2)}function ae(e){var t=ur[e];if(!t){var n=d.AT,r=d.FF_SRC,i=d.IE_SRC,o=d.NO_FF_SRC,u=d.NO_IE_SRC,a=d.NO_V8_SRC,c=d.V8_SRC;switch(e){case 16:t=[_("FBEP_4_S","2 + FH_SHIFT_1"),_("FBP_5_S",21,o),_("FBEP_4_S",20,u),_("RP_0_S","2 + FH_SHIFT_1",a),f(0,r),f(0,i),f(4,c)];break;case 18:case 28:t=[_("RP_5_A + [FBP_7_WA]",e+12),_("RP_4_A + [FBP_8_WA]",e+12,n),_("[RP_3_WA] + FBP_9_U",e+12,o),_("[RP_3_WA] + FBEP_9_U",e+12,u),_("FBEP_4_S",e+4,d.INCR_CHAR,u),_("RP_0_S",(e+2)/10+" + FH_SHIFT_3",a),f(0,r),f(0,i),f(3,c)];break;case 20:case 30:t=[_("RP_3_WA + [FBP_7_WA]",e+10),_("FBEP_10_S",(e+10)/10+" + FH_SHIFT_1",n),_("[RP_1_WA] + FBP_9_U",e+10,o),_("FBEP_10_S",e+10,u),_("RP_6_S",(e+10)/10+" + FH_SHIFT_1",a),f(6,r),f(5,i),f(0,c)];break;case 21:t=[_("FBEP_9_U","3 + FH_SHIFT_1"),_("FBP_9_U",30,o),_("FBEP_9_U",30,u),_("RP_5_A","3 + FH_SHIFT_1",a),f(5,r),f(4,i),f(0,c)];break;case 23:t=[_("FBP_7_WA",30),_("FBP_9_U",32,o),_("FBEP_9_U",32,u),_("RP_3_WA","3 + FH_SHIFT_1",a),f(3,r),f(3,i),f(0,c)];break;case 25:t=[_("FBP_7_WA",32),_("FBP_5_S",30,o),_("RP_1_WA + FBEP_4_S",30,u),_("RP_1_WA","3 + FH_SHIFT_1",a),f(1,r),f(0,i),f(5,c)];break;case 32:t=[_("FBP_8_WA",40),_("FBP_9_U",41,o),_("FBEP_9_U",41,u),_("RP_4_A","4 + FH_SHIFT_1",a),f(4,r),f(3,i),f(0,c)];break;case 34:t=[_("FBP_7_WA",41),_("RP_1_WA + FBP_5_S",40,o),_("FBEP_9_U",43,u),_("RP_2_WS","4 + FH_SHIFT_1",a),f(3,r),f(1,i),f(6,c)]}t.cacheKey="FBP:"+e,ur[e]=t}return t}function ce(e){var t=ar[e];if(!t){var n=d.IE_SRC,r=d.INCR_CHAR,i=d.NO_IE_SRC;switch(e){case 3:case 13:t=[_("RP_4_A + [FHP_3_WA]",e+7),_("FHP_8_S",e+8,r),f(6,n),f(0,i)];break;case 6:case 16:t=[_("FHP_5_A",e+5),f(3,n),f(4,i)];break;case 8:case 18:t=[_("FHP_3_WA",e+3),_("RP_2_WS",(e+2)/10+" + FH_SHIFT_1",r),f(1,n),f(3,i)];break;case 9:case 19:t=[_("RP_1_WA",(e+1)/10+" + FH_SHIFT_1"),f(0,n),f(1,i)];break;case 11:t=[_("RP_0_S","1 + FH_SHIFT_2"),f(0,n),f(0,i)];break;case 12:t=[_("FHP_8_S",20),f(0,n),f(0,i)];break;case 14:t=[_("[RP_1_WA] + FHP_5_A",20),f(5,n),f(6,i)];break;case 15:t=[_("FHP_5_A",20),f(4,n),f(5,i)];break;case 17:t=[_("FHP_3_WA",20),_("RP_3_WA","2 + FH_SHIFT_1",r),f(3,n),f(3,i)]}t.cacheKey="FHP:"+e,ar[e]=t}return t}function se(e,t){var n=function(e){for(var t=!1;"value"in e&&Te(e);){var n=e.value;if(!Qt(n))return null==n&&t?"":S(n);if(!(e=n[0]))return"";t=!0}}(t);null!=n&&(t.str=n),t.type="get",fe(e,t)}function fe(e,t){e=e.opsStack;e[e.length-1].push(t)}function _e(e,t){if(!e.mod&&"value"in e&&e.arithmetic&&!e.pmod){var n=e.value;e:for(var r=t.length;r--;)switch(t[r]){case"!":n=!n;break;case"+":n=+n;break;case"-":n=-n;break;case"#":break e}e.value=n,t=t.slice(0,r+1)}t&&(t=Se(t,e.mod||"",e.pmod),e.mod=t,e.arithmetic=!0)}function le(e){e=u(e,Si);if(e){var t=tn('"'+e+'"');if(/^[$A-Z_a-z][$\w]*$/.test(t))return{escaped:t.length<e.length,identifier:t}}}function Re(e){return en("return "+e)()}function de(e,t){if(i(e)&&xe(t))return Ne(t,{value:[e]}),o}function pe(e,t){if(Pe(t))return Ne(t,e),o}function Ae(e,t){if(i(e)&&xe(t))return se(t,e),o}function he(e,t){if(i(e)&&Pe(t))return e.type="param-call",fe(t,e),o}function i(e){var t=e.mod||"";if(!/-/.test(t)&&(!/#$/.test(t)||e.ops.length))return e.mod=t.replace(/#/g,"++"),e}function Te(e){return!e.mod&&!e.ops.length}function Se(e,t,n){e=(e+t).replace(/\+\+|--/,"+").replace(/\+-|-\+/,"-").replace(/!-/,"!+").replace(/\+#/,"#").replace(/!\+!/,"!!").replace("!!!","!");return n?e.replace(/\+$/,""):e}function Ee(e){e="^(?:"+De(e)+")";return Rn(e)}function Ne(e,t){e.opsStack.push([]),Fe(e,t)}function o(e){if(ge(e))return Pe(e)?(fe(e,{type:"call"}),o):(Ie(e,he),Oe);if(me(e))return Ie(e,Ae),Oe;if(u(e,/^\./))return(t=le(e))?(se(e,{ops:[],value:t.identifier}),o):void 0;var t=ve(e),n=e.opsStack.pop();if(n.length&&(t.arithmetic=!1,t.mod||t.pmod)){if(!i(t))return;t={terms:[t]}}t.ops=n=(t.ops||[]).concat(n),!n.length||t.mod||t.pmod||/^.*$/.test(e.separator)&&(n=u(e,/^\+\+/))&&(t.pmod=n,t.arithmetic=!0);n=e,e=t,t=ve(n);if(_e(e,n.modStack.pop()),t){if(!i(e))return;var r=t.terms;if(r&&Te(t))r.push(e),e.arithmetic||(t.arithmetic=!1);else{if(!i(t))return;t={arithmetic:t.arithmetic&&e.arithmetic,ops:[],terms:[t,e]}}}else t=e;r=u(n,/^(?:\+(?!\+)|-(?!-))/);return r?("-"!==r||t.arithmetic||_e(t,"+"),Le(n,Ce(n,"+"===r?"":r)),Fe(n,t),be):n.finalizerStack.pop()(t,n)}function be(e){var t=u(e,bi);if(t)return Ne(e,{value:Re(t)}),o;t=u(e,Ti);if(t)return Ne(e,{arithmetic:!0,value:Re(t)}),o;if(me(e))return xe(e)?(Ne(e,{value:[]}),o):(Ie(e,de),Oe);if(ge(e))return Ie(e,pe),Oe;t=le(e);if(t){var n,r=t.identifier,t=t.escaped;if(hi.indexOf(n=r)<0&&(!t||Ai.indexOf(n)<0))return Ne(e,{identifier:r}),o}}function Oe(e){if(e.finalizerStack.length<=1e3)return Le(e,Ce(e,"")),Fe(e),be}function ve(e){return e.unitStack.pop()}function Ie(e,t){e.finalizerStack.push(t)}function Le(e,t){e.modStack.push(t)}function Fe(e,t){e.unitStack.push(t)}function u(e,t){var n,r=e.data,t=t.exec(r);if(t)return t=t[0],r=r.slice(t.length),(n=Ni.exec(r)[0])&&(r=r.slice(n.length)),e.data=r,e.separator=n,t}function Ce(e,t){for(var n;n=u(e,/^(?:!|\+\+?|-(?!-))/);)t=Se(t,n.replace(/\+\+/g,"#"));return t}function ge(e){return u(e,/^\(/)}function Pe(e){return u(e,/^\)/)}function ye(e){e.data=e.data.replace(Ei,"")}function me(e){return u(e,/^\[/)}function xe(e){return u(e,/^]/)}function we(e,t){return"(?:"+(null==(r=pi[t])&&(n=di[t],pi[t]=r=De(n)),r)+")";var n,r}function De(e){return e.replace(/#(\w+)/g,we)}function ke(e){var t,e={data:e,modStack:[],opsStack:[],finalizerStack:[i],unitStack:[]};return ye(e),!e.data||((t=function(e){for(var t=Oe;"function"==typeof t;t=t(e));return t}(e))&&(ye(e),!e.data)?t:void 0)}function Ue(e,t,n,r,i){var o,u,a,c,t=e.$.slice(t,t+n),n=e.ee,s=(n.length&&(e=n,o=t,u=r,a=i,c={addCluster:w,clusters:[],conclude:U,maxLength:0,startLinks:N()},e.forEach(function(e){e.optimizeSolutions(c,o,u,a)}),c.conclude().forEach(function(e){var t=(0,e.data)();o.splice(e.start,e.length,t)})),t),n=r,e=i,f=new Kn,_=s.length;if(_){var l=0;do{var R=s[l]}while(f.append(R),++l<_)}else f.append(er);!f.isString&&e&&f.append(er);t=f.replacement;return n&&f.isLoose?"("+t+")":t}function We(e,t,n){this.te=t,this.ne=an(2,t-1),this.ee=n,this.re=e,this.$=[],this.ie=-3}function He(e,t,n){return+(e+t+"e"+n)}function je(e){var e=/^(\d+)(?:\.(\d+))?(?:e(.+))?$/.exec(e),t=e[2]||"",o=(e[1]+t).replace(/^0+/,""),u=o.search(/0*$/),a=(0|e[3])-t.length+o.length-u,e=function(){for(var e=u-1,t=o.slice(0,e),n=+o[e],r=He(t,n,a);;){var i=n-1;if(He(t,i,a)!==r)break;n=i}return t+n}();return 0<=a?a<10?e+te(a):a%100==99&&(99<a||e[1])?e.replace(/.$/,".$&e")+(1+a):e+"e"+a:a>=-e.length?e.slice(0,a)+"."+e.slice(a):(t=-e.length-a,function(e,t,n){var r,i=-93<t%100?-7<t%10?0:10+t%10:100+t%100;if(e+=te(i),6*i+26+136+(i=S(-(t-=i)),r=0,Xt(i,function(e){r+=vi[e]}),r)<n)return e+"e"+t}(e,a,73+6*t)||"."+te(t)+e)}function Be(e,t){return Qt(t)?e.findDefinition(t):t}function Me(e){var t="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"[e>>2]+qr[3&e],n="("+this.replaceString(t)+")",t=(2<t.length&&(n+=Ge(0)),Be(this,Qr[e>>4])),r=t+Be(this,Jr[15&e]),t=Ge(1+(t.length-2)/4*3),r="("+this.replaceString(r)+")"+t,t=Kr[e>>6],e=t+$r[63&e],t=Ge(2+(t.length-3)/4*3),n=re(n,r,"("+this.replaceString(e)+")"+t);return this.resolveConstant("atob").replacement+n}function Ge(e){return"["+ne(S(e))+"]"}function Ye(e){var t=e<65536?this.findDefinition(ni):"fromCodePoint",t=this.replaceString(t,{optimize:!0}),e=this.replaceExpr(0===e?"[]":1===e?"true":e<10?""+e:'"'+e+'"');return this.replaceExpr("String")+"["+t+"]("+e+")"}function ze(e,t,n){var r=e.findDefinition(ai),t=t.toString(16),i=(n=n?te(n-t.length)+t.replace(/fa?$/,"false"):t).replace(/b/g,r);return"b"!==r&&/(?=.*b.*b)(?=.*c)|(?=.*b.*b.*b)/.test(t)&&(r=e.replaceString(n,Ci),t=e.replaceString(i,Fi),r.length<t.length)?n:i}function Xe(e){var t,e=65536<=e?(n="u{"+ze(this,e)+"}",!(t=!1)):253<=e||e in gi?(t=5<(n="u"+ze(this,e,4)).length,!0):(n=e.toString(8),t=!1),n='Function("return\\"" + ESCAPING_BACKSLASH + "'+n+'\\"")()';return t&&(n+="[0]"),this.replaceExpr(n,{default:!1,toStringOpt:e})}function qe(e){var t,e=e<256?(t=2<(n=ze(this,e,2)).length,!1):(t=5<(n="u"+ze(this,e,4)).length,!0),n='unescape("%'+n+'")';return t&&(n+="[0]"),this.replaceExpr(n,{default:!1,toStringOpt:e})}function Je(e){this.mask=e,this.oe=sn(yi),this.ue=sn(mi),this.ae=N(),this.ce=N(),this.se=[]}function $e(e,t,n){var r,i,o,u,a=e.se,c=a.indexOf(t);a.push(t);try{if(~c)throw r=a.slice(c),i=wi(e.mask),o="Circular reference detected: "+r.join(" < ")+" – "+i,s(u=new dn(o),{chain:r,feature:i}),u;n.call(e)}finally{a.pop()}}function Ke(n,r,e,i){var o;return e.forEach(function(e,t){n.hasFeatures(e.mask)&&(e=n.resolve(e.definition,r,i),!o||o.length>e.length)&&null==(o=e).entryCode&&(o.entryCode=t)},n),o}function Qe(e,t,n){var r=t in e.constantDefinitions?e.resolveConstant(t):or[t],e=(r||Ze(e,"Undefined identifier "+t),n&&r.isLoose||1<n&&"!"===r.replacement[0]),t=r.replacement;return e?"("+t+")":t}function Ve(e,t,n,r,i){r=r.call(e,n),e=new C(t,r,F.STRING);return e.entryCode=i,e}function Ze(e,t){var e=e.se,n=e.length;throw n&&(t+=" in the definition of "+e[n-1]),new dn(t)}function et(n,r){function u(e,t){e=cn(e);return e.sortLength=t,e}function e(e,t,n){e=u(e,t);return e.isJoiner=n,e}function i(t){var e=c-t.sortLength,e=s[e];e&&e.forEach(function(e){o(e+t,c,t)})}function o(e,t,n){if(!(e in l)){l[e]=null;var r=s[t]||(s[t]=[]),i=u(e,t);for(r.push(i),n.isJoiner=!1;;++_){var o=a[_];if(!o)break;if(o.isJoiner){i.joiner=o.valueOf();break}}}}var a=[e("",0,!1),e("false",4,!0),e("true",5,!0),e("0",6,!0),e("undefined",7,!0),e("1",8,!0),e("NaN",9,!0),e("2",12,!0),e("f",14,!1),e("t",15,!1),e("a",16,!1),e("3",17,!0),e("N",17,!1),e("r",17,!1),e("u",17,!1),e("n",19,!1),e("l",20,!1),e("4",22,!0),e("d",23,!1),e("s",25,!1),e("e",26,!1),e("5",27,!0),e("i",28,!1),e("6",32,!0),e("7",37,!0),e("8",42,!0),e("9",47,!0)],c=0,s=[],f=[],_=0,l=N(),R=a.filter(function(e){var t=e.valueOf();if(0<=n.indexOf(t))o(t,e.sortLength,e);else if(t!==r)return!0});return function(e){for(;f.length<=e;){R.forEach(i);var t=s[c++];t&&Jt(f,t)}return f[e]}}function tt(i,e,t,n,r){var o,u,a=e.length,c=i.perfLog,s=[],f=(s.name=r,s.inputLength=a,c.push(s),cn(e));return ln(t).forEach(function(e){f[e]=t[e]}),n.forEach(function(e){var t,n=Bi[e],e={strategyName:e},r=a<n.minInputLength?"skipped":i.hasFeatures(n.mask)?(i.perfLog=e.perfLog=[],r=new Vt,t=null!=o?o.length:NaN,n=n.call(i,f,t),t=new Vt-r,i.perfLog=c,e.time=t,null!=n?(o=n,u&&(u.status="superseded"),(u=e).outputLength=n.length,"used"):"incomplete"):"unsuited";e.status=r,s.push(e)}),o}function nt(e,t,n,r,i,o,u){t=qt(t,function(e){return n[e]});return e.replaceStringArray(t,r,i,o,u)}function rt(e,t,n,r){return t+"["+e.replaceString("map",{optimize:!0})+"]("+e.replaceExpr(n,!0)+"("+r+"))"}function it(e,t,n,r){n=e.findDefinition(ri)(n,r);return t+"["+e.replaceString("map",{optimize:!0})+"]("+e.replaceExpr('Function("return '+n+'")()',!0)+")["+e.replaceString("join")+"]([])"}function ot(e,t,n,r,i,o){var u="strCodeCache"+(i?"Radix"+i:""),r=r(t.valueOf(),i,t[u]||(t[u]=N())),t=e.replaceFalseFreeArray(r,o);if(t&&!((i=i?it(e,t,n,"parseInt(undefined,"+i+")"):r.length>e.fe?it(e,t,n,"undefined"):(u=e.findDefinition(ci)+"."+n+"(",e.resolveConstant("Function").replacement+"("+e.replaceString(u,{optimize:!0})+"+"+t+"+"+e.resolveCharacter(")").replacement+")()")).length>o))return i}function ut(e,t,n,r,i){var o;if(!n||t){if(null==(o=st(e,t,!n||n.forceString?Ii:0,r,i)))return}else o="";if(!((o=n?n.call(e,o):o).length>i))return o}function at(e,t,n,r,i,o,u){var a=o.valueOf(),o=_t(o),c=N(),s=t(a),t=o.map(function(e,t){t=n(t);return c[e.char]=t,s+=e.count*t.sortLength,t}),o=ct(e,o.map(function(e){return e.char}),u-s);if(o){var r=e._e(r,n,t),f=u-o.length,t=e.replaceStringArray(t,r,null,!0,f-s);if(t){r=nt(e,a,c,i,null,!0,f-t.length);if(r)return a=e.findDefinition(ii),i=rt(e,r,a("undefined",".indexOf(undefined)"),t),e.createDictEncoding(o,i,u)}}}function ct(e,t,n){if(!(n<0)){e=tt(e,t.join(""),{screwMode:Ii},["byCodePointsRadix4","byCharCodesRadix4","byCodePoints","byCharCodes","plain"],"legend");if(e&&!(e.length>n))return e}}function st(e,t,n,r,i){e=tt(e,t,{screwMode:n},["byDenseFigures","bySparseFigures","byDictRadix5AmendedBy3","byDictRadix4AmendedBy2","byDictRadix4AmendedBy1","byDictRadix5","byDictRadix3AmendedBy1","byDictRadix4","byDict","byCodePointsRadix4","byCharCodesRadix4","byCodePoints","byCharCodes","plain"],r);if(null!=e&&!(e.length>i))return e}function ft(e,t){var n=[Ui],e=e(t.length-1).joiner;return null!=e&&n.push({joiner:e,separator:e}),n}function _t(e){var t,n,r=e.freqList;return r||(t=N(),Xt(e,function(e){(t[e]||(t[e]={char:e,charCode:e.charCodeAt(),count:0})).count++}),n=ln(t),e.freqList=r=n.map(function(e){return t[e]}).sort(function(e,t){return t.count-e.count||e.charCode-t.charCode})),r}function lt(){return[ki]}function Rt(e){return e.length?e.join(":"):"0"}function dt(e){return on(4*(e.length-1)-3,0)}function pt(){return-1}function At(e,t,n){for(var r=[],i=/[^]/g;o=i.exec(e);){var o=o[0],u=n[o];null==u&&(u=n[o]=o.charCodeAt().toString(t)),r.push(u)}return r}function ht(e,t,n){for(var r=[],i=x(".","gsu")||/[\ud800-\udbff][\udc00-\udfff]|[^]/g;o=i.exec(e);){var o=o[0],u=n[o];null==u&&(u=n[o]=Xi(o).toString(t)),r.push(u)}return r}function Tt(e){return"[][[]]"===e&&(e+="+[]"),e}function St(e){return this.resolveConstant("Function").replacement+"("+e+")()"}function Et(e){return this.replaceExpr('Function("return eval")()')+"("+e+")"}function Nt(e){if(","===e.source)return 0}function bt(e){e=e.source;return e&&1===e.length}function Ot(e,t,n){if(e&&1===e.length){e=e.charCodeAt();if(t<=e&&e<=n)return e}}function vt(e){return An(e,Ki)+1}function It(e){Gi.set(e.mask,e)}function Lt(e,t){e=function(e){if("symbol"==typeof e)throw new pn("Cannot convert a symbol to a string");return S(e)}(e);var n=(t=t||{}).features,r=t.runAs,r=void 0!==r?Ft(r,"runAs"):Ft(t.wrapWith,"wrapWith"),i=r[0],r=r[1],o=(t.trimCode&&(u=(u=e).replace(/^(?:\s|\uFEFF|\/\/.*(?!.)|\/\*[\s\S]*?\*\/)*(?!.)\s/,""),e=u=(o=Mi.exec(u))&&"\\"!==u[(o=o.index)-1]?u.slice(0,o):u),t.perfInfo),u=no(n);return(t=Gi.get(u))||(It(t=new Je(u)),Pt()),(Yi=t).le(e,i,r,o)}function Ft(e,t){var n=["text","express"],r=["text"];if(void 0===e)return[Et,n];switch(S(e)){case"call":return[St,r];case"eval":return[Et,r];case"express":return[,["express"]];case"express-call":return[St,n];case"express-eval":return[Et,n];case"none":return[,r]}throw new Zt("Invalid value for option "+t)}function Ct(){zi=void 0,ro||(gt(),It(Yi))}function gt(){Gi=new In}function Pt(){!ro&&!zi&&1<Gi.size&&(zi=hn(Ct))}function yt(e){return"_".concat(e)}function mt(){this.Re=Object.create(null),this.de=0}function xt(){return null!==vn&&vn.apply(this,arguments)||this}function wt(){return null!==Ln&&Ln.apply(this,arguments)||this}function Dt(){return wn(null)}function kt(e,t){return 0!=(e&t)}function Ut(){}function Wt(){var e=null!==$n&&$n.apply(this,arguments)||this;return e.$=[],e}function Ht(e,t,n){var r=Qn.call(this)||this;return r.source=e,r.type=n,r.defineReplacement({get:function(){var e=t();return this.defineReplacement({value:e,writable:!0}),e}}),r}function jt(e,t,n){var r=Zn.call(this)||this;return r.source=e,r.replacement=t,r.type=n,r}function a(t){function e(e){return!(t&&e in t)||t[e]}return f((n=e("atob"),r=e("charCode"),i=e("escSeq"),o=e("unescape"),function(e){var t=e.charCodeAt();return this.pe(e,t,n&&t<256,r,i,o)}));var n,r,i,o}function t(e,t){var n,r=e,i=ce(n=t);return f._(function(e){return this.Ae(e,r,n,i,ti)},arguments,2)}function Bt(e){return f((t=e,function(e){return this.he(e,t,ae,ei)}));var t}function Mt(e){var t=e;return f._(function(e){return this.he(e,t,ce,ti)},arguments,1)}function Gt(e,t,n){t="("+t+")[TO_LOCALE_STRING]("+e+")";return null!=n&&(4<n?t="("+ir[10-n]+" + "+t+")[10]":t+="["+n+"]"),f._(t,gr,arguments,3)}function Yt(e,t,n){var r;or[e]=(r=t,new Vn(e,function(){return Cn.replaceExpr(r)},n))}function c(e,t,n,r){Vr[e]=[Gt._(t,n,r,arguments,4),a()]}function zt(e,t){for(var n=S.fromCharCode,r=0;r<=9;++r){var i=n(t+r);c._(i,e,r,void 0,arguments,2)}}function l(e,t,n,r){return e.minInputLength=t,e.expressionMode=n=void 0!==n&&n,void 0===r&&(r=d.DEFAULT),e.mask=r.mask,e}var Xt,qt,Jt,$t,Kt=Array,Qt=Kt.isArray,Vt=Date,Zt=Error,en=Function,tn=JSON.parse,nn=JSON.stringify,rn=Math.abs,on=Math.max,un=Math.min,an=Math.pow,cn=Object,sn=cn.create,fn=cn.defineProperty,_n=cn.getOwnPropertyDescriptor,ln=cn.keys,Rn=RegExp,S=String,dn=SyntaxError,pn=TypeError,An=parseInt,hn=setTimeout,N=sn.bind(null,null,void 0),Tn=en(),Sn=(p=Kt.prototype,Bn=(R=en.prototype).apply,(R=R.call).bind(p.every),Xt=R.bind(p.forEach),qt=R.bind(p.map),$t=R.bind(p.slice),Jt=Bn.bind(p.push),function(e,t){return(Sn=Object.setPrototypeOf||({__proto__:[]}instanceof Array?function(e,t){e.__proto__=t}:function(e,t){for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])}))(e,t)}),En=function(){return(En=Object.assign||function(e){for(var t,n=1,r=arguments.length;n<r;n++)for(var i in t=arguments[n])Object.prototype.hasOwnProperty.call(t,i)&&(e[i]=t[i]);return e}).apply(this,arguments)},Nn=2147483648,bn=4294967296,On=2147483647,Y=0,R=(Object.defineProperty(mt.prototype,"size",{get:function(){return this.de},enumerable:!1,configurable:!0}),mt.prototype.has=function(e){return yt(e)in this.Re},mt.prototype.Te=function(e,t){var e=yt(e),n=this.Re;e in n||++this.de,n[e]=t},mt);H(xt,vn=R),xt.prototype.get=function(e){e=yt(e);return this.Re[e]},xt.prototype.set=function(e,t){this.Te(e,t)};var vn,In=xt;H(wt,Ln=R),wt.prototype.add=function(e){this.Te(e,void 0)};var Ln,Fn,d,Cn,gn,Pn=wt,yn=Array.isArray,mn=Error,xn=JSON.stringify,wn=Object.create,Dn=Object.defineProperty,z=Object.freeze,kn=Object.getOwnPropertyDescriptor,Un=Object.keys,Wn=String,Hn=TypeError,jn={ANY_DOCUMENT:{description:'Existence of the global object document whose string representation starts with "[object " and ends with "Document]".',check:function(){return"object"==typeof document&&/^\[object [\S\s]*Document]$/.test(document+"")},attributes:{"web-worker":"web-worker-restriction"}},ANY_WINDOW:{description:'Existence of the global object self whose string representation starts with "[object " and ends with "Window]".',check:j.bind(function(e){return/^\[object [\S\s]*Window]$/.test(e)}),includes:["SELF_OBJ"],attributes:{"web-worker":"web-worker-restriction"}},ARRAY_ITERATOR:{description:'The property that the string representation of Array.prototype.entries() starts with "[object Array" and ends with "]" at index 21 or 22.',check:function(){return Array.prototype.entries&&/^\[object Array[\S\s]{8,9}]$/.test([].entries())}},ARROW:{description:"Support for arrow functions.",check:function(){try{return Function("()=>{}")(),!0}catch(e){}}},AT:{description:"Existence of the native function Array.prototype.at.",check:function(){return Array.prototype.at}},ATOB:{description:"Existence of the global functions atob and btoa.",check:function(){return"function"==typeof atob&&"function"==typeof btoa},attributes:{"web-worker":"old-safari-restriction"}},BARPROP:{description:'Existence of the global object statusbar having the string representation "[object BarProp]".',check:function(){return"object"==typeof statusbar&&statusbar+""=="[object BarProp]"},attributes:{"web-worker":"web-worker-restriction"}},CAPITAL_HTML:{description:"The property that the various string methods returning HTML code such as String.prototype.big or String.prototype.link have both the tag name and attributes written in capital letters.",check:function(){return"<BIG></BIG>"==="".big()&&'<FONT COLOR=""></FONT>'==="".fontcolor("")&&'<FONT SIZE=""></FONT>'==="".fontsize("")&&'<A HREF=""></A>'==="".link("")&&"<SMALL></SMALL>"==="".small()&&"<STRIKE></STRIKE>"==="".strike()&&"<SUB></SUB>"==="".sub()&&"<SUP></SUP>"==="".sup()}},CONSOLE:{description:'Existence of the global object console having the string representation "[object Console]".\nThis feature may become unavailable when certain browser extensions are active.',check:function(){return"object"==typeof console&&console+""=="[object Console]"},attributes:{"web-worker":"no-console-in-web-worker"}},DOCUMENT:{description:'Existence of the global object document having the string representation "[object Document]".',check:function(){return"object"==typeof document&&document+""=="[object Document]"},includes:["ANY_DOCUMENT"],excludes:["HTMLDOCUMENT"],attributes:{"web-worker":"web-worker-restriction"}},DOMWINDOW:{description:'Existence of the global object self having the string representation "[object DOMWindow]".',check:j.bind(function(e){return"[object DOMWindow]"===e}),includes:["ANY_WINDOW"],excludes:["WINDOW"],attributes:{"web-worker":"web-worker-restriction"}},ESC_HTML_ALL:{description:"The property that double quotation mark, less than and greater than characters in the argument of String.prototype.fontcolor are escaped into their respective HTML entities.",check:function(){return~"".fontcolor('"<>').indexOf(""<>")},includes:["ESC_HTML_QUOT"],excludes:["ESC_HTML_QUOT_ONLY"]},ESC_HTML_QUOT:{description:'The property that double quotation marks in the argument of String.prototype.fontcolor are escaped as """.',check:function(){return~"".fontcolor('"').indexOf(""")}},ESC_HTML_QUOT_ONLY:{description:"The property that only double quotation marks and no other characters in the argument of String.prototype.fontcolor are escaped into HTML entities.",check:function(){return~"".fontcolor('"<>').indexOf(""<>")},includes:["ESC_HTML_QUOT"],excludes:["ESC_HTML_ALL"]},ESC_REGEXP_LF:{description:'Having regular expressions created with the RegExp constructor use escape sequences starting with a backslash to format line feed characters ("\\n") in their string representation.',check:function(){return"\\"===(RegExp("\n")+"")[1]}},ESC_REGEXP_SLASH:{description:'Having regular expressions created with the RegExp constructor use escape sequences starting with a backslash to format slashes ("/") in their string representation.',check:function(){return"\\"===(RegExp("/")+"")[1]}},FF_SRC:{description:'A string representation of native functions typical for Firefox and Safari.\nRemarkable traits are the lack of line feed characters at the beginning and at the end of the string and the presence of a line feed followed by four whitespaces ("\\n ") before the "[native code]" sequence.',includes:["NO_IE_SRC","NO_V8_SRC"],excludes:["NO_FF_SRC"]},FILL:{description:"Existence of the native function Array.prototype.fill.",check:function(){return Array.prototype.fill}},FLAT:{description:"Existence of the native function Array.prototype.flat.",check:function(){return Array.prototype.flat}},FROM_CODE_POINT:{description:"Existence of the function String.fromCodePoint.",check:function(){return String.fromCodePoint}},FUNCTION_19_LF:{description:'A string representation of dynamically generated functions where the character at index 19 is a line feed ("\\n").',check:function(){return"\n"===(Function()+"")[19]}},FUNCTION_22_LF:{description:'A string representation of dynamically generated functions where the character at index 22 is a line feed ("\\n").',check:function(){return"\n"===(Function()+"")[22]}},GENERIC_ARRAY_TO_STRING:{description:"Ability to call Array.prototype.toString with a non-array binding.",check:function(){try{return Array.prototype.toString.call({}),!0}catch(e){}}},GLOBAL_UNDEFINED:{description:'Having the global function toString return the string "[object Undefined]" when invoked without a binding.',check:function(){return"[object Undefined]"===Function("return toString")()()},includes:["OBJECT_UNDEFINED"]},GMT:{description:'Presence of the text "GMT" after the first 25 characters in the string returned by Date().\nThe string representation of dates is implementation dependent, but most engines use a similar format, making this feature available in all supported engines except Internet Explorer 9 and 10.',check:function(){return/^.{25}GMT/.test(Date())}},HISTORY:{description:'Existence of the global object history having the string representation "[object History]".',check:function(){return"object"==typeof history&&history+""=="[object History]"},attributes:{"web-worker":"web-worker-restriction"}},HTMLAUDIOELEMENT:{description:'Existence of the global object Audio whose string representation starts with "function HTMLAudioElement".',check:function(){return"undefined"!=typeof Audio&&/^function HTMLAudioElement/.test(Audio)},includes:["NO_IE_SRC"],attributes:{"web-worker":"web-worker-restriction"}},HTMLDOCUMENT:{description:'Existence of the global object document having the string representation "[object HTMLDocument]".',check:function(){return"object"==typeof document&&document+""=="[object HTMLDocument]"},includes:["ANY_DOCUMENT"],excludes:["DOCUMENT"],attributes:{"web-worker":"web-worker-restriction"}},IE_SRC:{description:'A string representation of native functions typical for Internet Explorer.\nRemarkable traits are the presence of a line feed character ("\\n") at the beginning and at the end of the string and a line feed followed by four whitespaces ("\\n ") before the "[native code]" sequence.',includes:["NO_FF_SRC","NO_V8_SRC"],excludes:["NO_IE_SRC"]},INCR_CHAR:{description:'The ability to use unary increment operators with string characters, like in ( ++"some string"[0] ): this will result in a TypeError in strict mode in ECMAScript compliant engines.',check:function(){return!0},attributes:{"forced-strict-mode":"char-increment-restriction"}},INTL:{description:"Existence of the global object Intl.",check:function(){return"object"==typeof Intl}},LOCALE_INFINITY:{description:'Language sensitive string representation of Infinity as "∞".',check:function(){return"∞"===(1/0).toLocaleString()}},LOCALE_NUMERALS:{description:'Features shared by all engines capable of localized number formatting, including output of Arabic digits, the Arabic decimal separator "٫", the letters in the first word of the Arabic string representation of NaN ("ليس"), Persian digits and the Persian digit group separator "٬".',check:function(){return Number.prototype.toLocaleString&&e("ar",NaN,/^ليس/)&&e("ar-td",234567890.1,/^٢٣٤٬?٥٦٧٬?٨٩٠٫١/)&&e("fa",1234567890,/^۱٬۲۳۴٬۵۶۷٬۸۹۰/)}},LOCALE_NUMERALS_EXT:{description:'Extended localized number formatting.\nThis includes all features of LOCALE_NUMERALS plus the output of the first three letters in the second word of the Arabic string representation of NaN ("رقم"), Bengali digits, the letters in the Russian string representation of NaN ("не число") and the letters in the Persian string representation of NaN ("ناعدد").',check:function(){return Number.prototype.toLocaleString&&e("ar",NaN,/^ليس.رقم/)&&e("ar-td",234567890.1,/^٢٣٤٬?٥٦٧٬?٨٩٠٫١/)&&e("bn",1234567890,/^১,২৩,৪৫,৬৭,৮৯০/)&&e("fa",1234567890,/^۱٬۲۳۴٬۵۶۷٬۸۹۰/)&&e("fa",NaN,/^ناعد/)&&e("ru",NaN,/^не.число/)},includes:["LOCALE_NUMERALS"]},LOCATION:{description:'Existence of the global object location with the property that Object.prototype.toString.call(location) evaluates to a string that starts with "[object " and ends with "Location]".',check:function(){return"object"==typeof location&&/^\[object [\S\s]*Location]$/.test(Object.prototype.toString.call(location))}},NAME:{description:"Existence of the name property for functions.",check:function(){return"name"in Function()}},NODECONSTRUCTOR:{description:'Existence of the global object Node having the string representation "[object NodeConstructor]".',check:function(){return"undefined"!=typeof Node&&Node+""=="[object NodeConstructor]"},attributes:{"web-worker":"web-worker-restriction"}},NO_FF_SRC:{description:"A string representation of native functions typical for V8 or for Internet Explorer but not for Firefox and Safari.",check:function(){return/^(\n?)function Object\(\) \{\1 +\[native code]\s\}/.test(Object)},excludes:["FF_SRC"]},NO_IE_SRC:{description:"A string representation of native functions typical for most engines with the notable exception of Internet Explorer.\nA remarkable trait of this feature is the lack of line feed characters at the beginning and at the end of the string.",check:function(){return/^function Object\(\) \{(\n )? \[native code]\s\}/.test(Object)},excludes:["IE_SRC"]},NO_OLD_SAFARI_ARRAY_ITERATOR:{description:'The property that the string representation of Array.prototype.entries() evaluates to "[object Array Iterator]" and that Array.prototype.entries().constructor is the global function Object.',check:function(){var e;if(Array.prototype.entries)return(e=[].entries())+""=="[object Array Iterator]"&&e.constructor===Object},includes:["ARRAY_ITERATOR"]},NO_V8_SRC:{description:'A string representation of native functions typical for Firefox, Internet Explorer and Safari.\nA most remarkable trait of this feature is the presence of a line feed followed by four whitespaces ("\\n ") before the "[native code]" sequence.',check:function(){return/^\n?function Object\(\) \{\n \[native code]\s\}/.test(Object)},excludes:["V8_SRC"]},OBJECT_L_LOCATION_CTOR:{description:'Existence of the global function location.constructor whose string representation starts with "[object L"',check:function(){return"object"==typeof location&&/^\[object L/.test(location.constructor)},attributes:{"web-worker":"web-worker-restriction"}},OBJECT_UNDEFINED:{description:'Having the function Object.prototype.toString return the string "[object Undefined]" when invoked without a binding.',check:function(){return"[object Undefined]"===(0,Object.prototype.toString)()},includes:["UNDEFINED"]},OBJECT_W_CTOR:{description:'The property that the string representation of the global object constructor starts with "[object W"',check:function(){return/^\[object W/.test(constructor)},attributes:{"web-worker":"old-safari-restriction"}},OLD_SAFARI_LOCATION_CTOR:{description:'Existence of the global object location.constructor whose string representation starts with "[object " and ends with "LocationConstructor]"',check:function(){return"object"==typeof location&&/^\[object [\S\s]*LocationConstructor]$/.test(location.constructor)}},PLAIN_INTL:{description:'Existence of the global object Intl having the string representation "[object Object]"',check:function(){return"object"==typeof Intl&&Intl+""=="[object Object]"},includes:["INTL"]},REGEXP_STRING_ITERATOR:{description:'The property that the string representation of String.prototype.matchAll() evaluates to "[object RegExp String Iterator]".',check:function(){return String.prototype.matchAll&&"".matchAll()+""=="[object RegExp String Iterator]"}},SELF:{aliasFor:"ANY_WINDOW"},SELF_OBJ:{description:'Existence of the global object self whose string representation starts with "[object ".',check:j.bind(function(e){return/^\[object /.test(e)}),attributes:{"web-worker":"safari-bug-21820506"}},SHORT_LOCALES:{description:'Support for the two-letter locale name "ar" to format decimal numbers as Arabic numerals.',check:function(){var e=9876430.125,t=e.toLocaleString("ar");return t===e.toLocaleString("ar-td")&&t!==e.toLocaleString("en")},includes:["LOCALE_NUMERALS"]},STATUS:{description:"Existence of the global string status.",check:function(){return"string"==typeof status},attributes:{"web-worker":"web-worker-restriction"}},UNDEFINED:{description:'The property that Object.prototype.toString.call() evaluates to "[object Undefined]".\nThis behavior is specified by ECMAScript, and is enforced by all engines except Android Browser versions prior to 4.1.2, where this feature is not available.',check:function(){return"[object Undefined]"===Object.prototype.toString.call()}},V8_SRC:{description:'A string representation of native functions typical for the V8 engine.\nRemarkable traits are the lack of line feed characters at the beginning and at the end of the string and the presence of a single whitespace before the "[native code]" sequence.',includes:["NO_FF_SRC","NO_IE_SRC"],excludes:["NO_V8_SRC"]},WINDOW:{description:'Existence of the global object self having the string representation "[object Window]".',check:j.bind(function(e){return"[object Window]"===e}),includes:["ANY_WINDOW"],excludes:["DOMWINDOW"],attributes:{"web-worker":"web-worker-restriction"}},DEFAULT:{description:"Minimum feature level, compatible with all supported engines in all environments."},BROWSER:{description:"Features available in all browsers.\nNo support for Node.js.",includes:["ANY_DOCUMENT","ANY_WINDOW","HISTORY","INCR_CHAR","STATUS"],attributes:{"char-increment-restriction":null,"safari-bug-21820506":null,"web-worker-restriction":null}},COMPACT:{description:"All new browsers' features.\nNo support for Node.js and older browsers like Internet Explorer, Safari 9 or Android Browser.",includes:["ARROW","AT","ATOB","BARPROP","ESC_HTML_QUOT_ONLY","ESC_REGEXP_LF","ESC_REGEXP_SLASH","FILL","FLAT","FROM_CODE_POINT","GENERIC_ARRAY_TO_STRING","GLOBAL_UNDEFINED","GMT","HISTORY","HTMLDOCUMENT","INCR_CHAR","INTL","LOCALE_INFINITY","LOCALE_NUMERALS_EXT","LOCATION","NAME","NO_IE_SRC","NO_OLD_SAFARI_ARRAY_ITERATOR","REGEXP_STRING_ITERATOR","STATUS","WINDOW"],attributes:{"char-increment-restriction":null,"web-worker-restriction":null}},ANDRO_4_0:{families:["Android Browser"],versions:["4.0"],includes:["ATOB","CONSOLE","DOMWINDOW","ESC_HTML_ALL","FUNCTION_22_LF","GMT","HISTORY","HTMLDOCUMENT","INCR_CHAR","LOCATION","NAME","STATUS","V8_SRC"]},ANDRO_4_1:{inherits:"ANDRO_4_0",versions:[["4.1",,"4.3"]],includes:{GENERIC_ARRAY_TO_STRING:!0,OBJECT_UNDEFINED:!0}},ANDRO_4_4:{inherits:"ANDRO_4_1",versions:["4.4"],includes:{BARPROP:!0,DOMWINDOW:!1,HTMLAUDIOELEMENT:!0,LOCALE_INFINITY:!0,LOCALE_NUMERALS_EXT:!0,PLAIN_INTL:!0,SHORT_LOCALES:!0,WINDOW:!0},attributes:{"no-console-in-web-worker":null,"web-worker-restriction":null}},CHROME_PREV:{description:n("the previous to current versions of Chrome and Edge"),aliasFor:"CHROME_92"},CHROME:{description:n("the current stable versions of Chrome, Edge and Opera"),aliasFor:"CHROME_92"},CHROME_92:{families:["Chrome","Edge","Opera"],versions:[["92"],["92"],["78"]],includes:["ARROW","AT","ATOB","BARPROP","ESC_HTML_QUOT_ONLY","ESC_REGEXP_LF","ESC_REGEXP_SLASH","FILL","FLAT","FROM_CODE_POINT","FUNCTION_19_LF","GENERIC_ARRAY_TO_STRING","GLOBAL_UNDEFINED","GMT","HISTORY","HTMLDOCUMENT","INCR_CHAR","INTL","LOCALE_INFINITY","LOCALE_NUMERALS_EXT","LOCATION","NAME","NO_OLD_SAFARI_ARRAY_ITERATOR","REGEXP_STRING_ITERATOR","STATUS","V8_SRC","WINDOW"],attributes:{"char-increment-restriction":null,unstable:null,"web-worker-restriction":null}},FF_ESR:{description:n("the current version of Firefox ESR"),aliasFor:"FF_90"},FF_PREV:{description:n("the previous to current version of Firefox"),aliasFor:"FF_90"},FF:{description:n("the current stable version of Firefox"),aliasFor:"FF_90"},FF_90:{families:["Firefox"],versions:[["90"]],includes:["ARROW","AT","ATOB","BARPROP","ESC_HTML_QUOT_ONLY","ESC_REGEXP_LF","ESC_REGEXP_SLASH","FF_SRC","FILL","FLAT","FROM_CODE_POINT","FUNCTION_19_LF","GENERIC_ARRAY_TO_STRING","GLOBAL_UNDEFINED","GMT","HISTORY","HTMLDOCUMENT","INCR_CHAR","INTL","LOCALE_INFINITY","LOCALE_NUMERALS_EXT","LOCATION","NAME","NO_OLD_SAFARI_ARRAY_ITERATOR","REGEXP_STRING_ITERATOR","SHORT_LOCALES","STATUS","WINDOW"],attributes:{"char-increment-restriction":null,unstable:null,"web-worker-restriction":null}},IE_9:{families:["Internet Explorer"],versions:["9"],includes:["CAPITAL_HTML","DOCUMENT","ESC_REGEXP_LF","ESC_REGEXP_SLASH","FUNCTION_22_LF","GENERIC_ARRAY_TO_STRING","HISTORY","IE_SRC","INCR_CHAR","OBJECT_L_LOCATION_CTOR","OBJECT_W_CTOR","STATUS","UNDEFINED","WINDOW"]},IE_10:{inherits:"IE_9",versions:["10"],includes:{ATOB:!0,CONSOLE:!0,OBJECT_UNDEFINED:!0,UNDEFINED:!1},attributes:{"char-increment-restriction":null,"web-worker-restriction":null}},IE_11:{inherits:"IE_10",versions:["11"],includes:{DOCUMENT:!1,GMT:!0,HTMLDOCUMENT:!0,LOCALE_NUMERALS:!0,PLAIN_INTL:!0,SHORT_LOCALES:!0}},IE_11_WIN_10:{inherits:"IE_11",versions:["11"],compatibilityTag:"on Windows 10",compatibilityShortTag:"W10",includes:{LOCALE_INFINITY:!0,LOCALE_NUMERALS:!1,LOCALE_NUMERALS_EXT:!0}},NODE_0_10:{families:["Node.js"],versions:["0.10"],includes:["ESC_HTML_ALL","FUNCTION_22_LF","GENERIC_ARRAY_TO_STRING","GLOBAL_UNDEFINED","GMT","INCR_CHAR","NAME","V8_SRC"]},NODE_0_12:{inherits:"NODE_0_10",versions:["0.12"],includes:{ESC_HTML_ALL:!1,ESC_HTML_QUOT_ONLY:!0,LOCALE_INFINITY:!0,NO_OLD_SAFARI_ARRAY_ITERATOR:!0,PLAIN_INTL:!0}},NODE_4:{inherits:"NODE_0_12",versions:["4"],includes:{ARROW:!0,ESC_REGEXP_SLASH:!0,FILL:!0,FROM_CODE_POINT:!0}},NODE_5:{inherits:"NODE_4",versions:[["5",,"9"]],attributes:{"char-increment-restriction":null}},NODE_10:{inherits:"NODE_5",versions:["10"],includes:{FUNCTION_19_LF:!0,FUNCTION_22_LF:!1}},NODE_11:{inherits:"NODE_10",versions:["11"],includes:{FLAT:!0}},NODE_12:{inherits:"NODE_11",versions:["12"],includes:{ESC_REGEXP_LF:!0,REGEXP_STRING_ITERATOR:!0}},NODE_13:{inherits:"NODE_12",versions:[["13","14"]],includes:{LOCALE_NUMERALS_EXT:!0,SHORT_LOCALES:!0}},NODE_15:{inherits:"NODE_13",versions:["15"],includes:{INTL:!0,PLAIN_INTL:!1}},NODE_16_0:{inherits:"NODE_15",versions:[["16.0",,"16.5"]],includes:{ATOB:!0}},NODE_16_6:{inherits:"NODE_16_0",versions:[["16.6"]],includes:{AT:!0}},SAFARI_7_0:{families:["Safari"],versions:["7.0"],includes:["ATOB","BARPROP","CONSOLE","ESC_HTML_QUOT_ONLY","ESC_REGEXP_LF","ESC_REGEXP_SLASH","FF_SRC","GENERIC_ARRAY_TO_STRING","GLOBAL_UNDEFINED","GMT","HISTORY","HTMLDOCUMENT","INCR_CHAR","LOCATION","NAME","NODECONSTRUCTOR","OBJECT_L_LOCATION_CTOR","OBJECT_W_CTOR","OLD_SAFARI_LOCATION_CTOR","STATUS","WINDOW"],attributes:{"char-increment-restriction":null,"no-console-in-web-worker":null,"old-safari-restriction":null,"web-worker-restriction":null}},SAFARI_7_1:{inherits:"SAFARI_7_0",versions:[["7.1","8"]],includes:{ARRAY_ITERATOR:!0,FILL:!0},attributes:{"no-console-in-web-worker":void 0,"safari-bug-21820506":null}},SAFARI_9:{inherits:"SAFARI_7_1",versions:["9"],includes:{ARRAY_ITERATOR:!1,FROM_CODE_POINT:!0,FUNCTION_22_LF:!0,NO_OLD_SAFARI_ARRAY_ITERATOR:!0}},SAFARI_10:{inherits:"SAFARI_9",versions:[["10","11"]],includes:{ARROW:!0,LOCALE_INFINITY:!0,LOCALE_NUMERALS_EXT:!0,NODECONSTRUCTOR:!1,OBJECT_L_LOCATION_CTOR:!1,OBJECT_W_CTOR:!1,OLD_SAFARI_LOCATION_CTOR:!1,PLAIN_INTL:!0,SHORT_LOCALES:!0},attributes:{"old-safari-restriction":void 0,"safari-bug-21820506":void 0}},SAFARI_12:{inherits:"SAFARI_10",versions:["12"],includes:{FLAT:!0}},SAFARI_13:{inherits:"SAFARI_12",versions:[["13","14.0.0"]],includes:{REGEXP_STRING_ITERATOR:!0}},SAFARI_14_0_1:{inherits:"SAFARI_13",versions:[["14.0.1",,"14.0.3"]],includes:{INTL:!0,PLAIN_INTL:!1}},SAFARI_14_1:{inherits:"SAFARI_14_0_1",versions:[["14.1",,"15.3"]],includes:{CONSOLE:!1}},SAFARI:{description:n("the current stable version of Safari"),aliasFor:"SAFARI_15_4"},SAFARI_15_4:{inherits:"SAFARI_14_1",versions:[["15.4"]],includes:{AT:!0}}},Bn=ln(jn).filter(function(e){e=jn[e].check;return e&&e()}),Mn=(jn.AUTO={description:n("the current environment"),includes:Bn},d=function(P,y){function u(){for(var e=[],t=0;t<arguments.length;t++)e[t]=arguments[t];for(var n=Y,r=0,i=e;r<i.length;r++)n=M(n,c(i[r]));1<e.length&&s(n);var o=this instanceof u?this:wn(W);return q(o,n),o}function n(e){for(var t=Y,n=e.length,r=0;r<n;++r)t=M(t,i(e[r]));return t}function a(e){var t=wn(W);return q(t,e),t}function e(e,t){var n=null!=(n=null==t?void 0:t.breakLength)?n:80,r=null==(r=null==t?void 0:t.compact)||r,i=this.name,i=[void 0===i?J(r,"<","",this.canonicalNames,",",">",n-3):i],o=(this.elementary&&i.push("(elementary)"),this.check&&i.push("(check)"),this.attributes);return"object"==typeof o&&(o=_(En({},o),t),i.push(o)),J(r,"[Feature"," ",i,"","]",n-1)}function o(t){return r.every(function(e){return!O(t,e)})}function i(e){return(e instanceof u?e:((e=G(e))in x||$(e),x[e])).mask}function c(e){var t;return yn(e)?(t=n(e),1<e.length&&s(t)):t=i(e),t}function s(e){if(!o(e))throw new mn("Incompatible features")}function m(o){var e,t;if(o in x)c=x[o].mask;else{var n=P[o],r=function(e){return e in n?G(n[e]):void 0},i=r("description"),u=void 0;if("aliasFor"in n){var a=G(n.aliasFor),c=m(a),u=x[a];null==i&&(i=w[a])}else{var s,f,_,a=r("inherits"),l=void(null!=a&&m(a)),R=n.check,R=void 0!==R?(c=function(){for(var e=1,t=B;1&t;t/=2)e*=2;if(0x8000000000000<e)throw RangeError("Mask full");return e}(),B=M(B,c),t=R,function(){return!!t()}):(c=Y,null),d=n.includes,p=H[o]=Dt();if(yn(d))for(var A=0,h=d;A<h.length;A++)p[T=h[A]]=null;else{if(null!=a)for(T in H[a])p[T]=null;if(d)for(var T,S=0,E=Un(d);S<E.length;S++)d[T=E[S]]?p[T]=null:delete p[T]}for(T in p)c=M(c,m(T));"versions"in n&&(C=n.families,s=n.versions,null!=a&&null==C&&(C=j[a]),j[o]=C,f=r("compatibilityTag"),_=r("compatibilityShortTag"),l=C.map(function(e,t){e=G(e);var n,r,t=s[t],i=(r=yn(t)?(i=t.length,r=G(t[0]),i=i<2?void 0:G(t[i-1]),n=2===t.length,z({from:r,to:i,dense:n})):G(t),z({family:e,featureName:o,version:r,tag:f,shortTag:_}));return(null!=(n=U[e])?n:U[e]=[]).push(i),i}),null==i)&&(i=null==y?void 0:y(l));var N=Dt();if(null!=a){var b=x[a].attributes;for(L in b)N[L]=b[L]}var O=n.attributes;if(void 0!==O)for(var v=0,I=Un(O);v<I.length;v++){var L,F=O[L=I[v]];void 0!==F?N[L]="string"==typeof F?F:null:delete N[L]}var r=null!=R?R:n.excludes,C=o,a=c,g=r;z(e=N),e={attributes:{value:e},check:{value:R},name:{value:C}},g&&(e.elementary={value:!0}),q(R=wn(W,e),a),u=R,r&&D.push(u),l&&k.push(u)}x[o]=u,w[o]=i}return c}function t(e,t){return e.name<t.name?-1:1}var f,_,x=Dt(),w=Dt(),D=[],k=[],U=Dt(),W=u.prototype,r=[];try{_=require("util").inspect}catch(e){}var l={get canonicalNames(){for(var e=this.mask,t=[],n=Y,r=f.length;r--;){var i=f[r],o=i.mask;O(e,o)&&!O(n,o)&&(n=M(n,o),t.push(i.name))}return t.sort(),t},elementary:!1,get elementaryNames(){for(var e=[],t=this.mask,n=0,r=D;n<r.length;n++){var i=r[n];O(t,i.mask)&&e.push(i.name)}return e},includes:function(){for(var e=[],t=0;t<arguments.length;t++)e[t]=arguments[t];var n=this.mask;return e.every(function(e){e=c(e);return O(n,e)})},name:void 0,toString:function(){var e=null!=(e=this.name)?e:"<".concat(this.canonicalNames.join(", "),">");return"[Feature ".concat(e,"]")}};_&&(l.inspect=e),X(W,l),X(u,{ALL:x,ELEMENTARY:D,ENGINE:k,FAMILIES:U,Se:function(e){if(o(e)){for(var t=Y,n=0,r=D;n<r.length;n++){var i=r[n].mask;O(e,i)&&(t=M(t,i))}if(e===t)return a(e)}return null},Ee:function(e){return void 0!==e?c(e):Y},areCompatible:function(){var e;return o(n(1===arguments.length&&yn(e=arguments[0])?e:arguments))},areEqual:function(){for(var n,e=[],t=0;t<arguments.length;t++)e[t]=arguments[t];return e.every(function(e,t){e=c(e);return t?e===n:(n=e,!0)})},commonOf:function(){for(var e,t=[],n=0;n<arguments.length;n++)t[n]=arguments[n];if(t.length){for(var r=void 0,i=0,o=t;i<o.length;i++)var u=c(o[i]),r=null!=r?(r&u&On)+(r/Nn&u/Nn)*Nn:u;e=a(r)}else e=null;return e},descriptionFor:function(e){return(e=G(e))in w||$(e),w[e]}}),_&&(l=_.custom)&&Dn(W,l,{configurable:!0,value:e,writable:!0});var R,l=Un(P),H=Dt(),j=Dt(),B=Y;l.forEach(m);for(var d=new Pn,p=0,A=l;p<A.length;p++){var h=A[p],T=P[h].excludes;if(T)for(var S=x[h].mask,E=0,N=T;E<N.length;E++){var b=M(S,m(N[E]));d.has(b)||(r.push(b),d.add(b))}}for(R in f=D.slice(),D.sort(t),z(D),k.sort(t),z(k),z(x),z(U),U)z(U[R]);return u}(jn,function(e){var o="",e=e.map(function(e){var t,n=e.family,r=e.version,i=n,r=("string"==typeof r?i+=" "+r:(i+=" "+r.from,null!=(t=r.to)?i+=(r.dense?" and "+n+" ":" to ")+t:o=" or later"),e.tag);return null!=r&&(i+=" "+r),i}),t=e.pop();return n((e.length?e.join(", ")+" and "+t:t)+o)}),Fn=d.ELEMENTARY,jn=null,s(d.prototype,{restrict:function(r,i){var o=N(),e=Fn.filter(function(e){var t,n=this.includes(e);return n&&(e=e.attributes,n=!(r in e&&(void 0===i||(void 0===(e=o[t=e[r]])&&(o[t]=e=i.some(function(e){return t in e.attributes})),e)))),n},this);return d(e)}}),d.ALL),Gn={enumerable:!0};for(gn in Mn){var Yn=Mn[gn];Gn.value=Yn,fn(d,gn,Gn)}V(f),F={UNDEFINED:1,1:"UNDEFINED",ALGEBRAIC:2,2:"ALGEBRAIC",WEAK_ALGEBRAIC:4,4:"WEAK_ALGEBRAIC",OBJECT:8,8:"OBJECT",STRING:16,16:"STRING",PREFIXED_STRING:32,32:"PREFIXED_STRING",WEAK_PREFIXED_STRING:64,64:"WEAK_PREFIXED_STRING",COMBINED_STRING:128,128:"COMBINED_STRING"},Object.freeze(F);var F,zn=ie(F.WEAK_ALGEBRAIC,F.PREFIXED_STRING,F.WEAK_PREFIXED_STRING,F.COMBINED_STRING),Xn=ie(F.STRING,F.PREFIXED_STRING,F.WEAK_PREFIXED_STRING,F.COMBINED_STRING),qn=ie(F.WEAK_ALGEBRAIC,F.WEAK_PREFIXED_STRING),Jn=[{typeSetList:[r(F.UNDEFINED),r(F.UNDEFINED),r(F.WEAK_ALGEBRAIC)],replace:function(e,t,n){return"".concat(e,"+(").concat(t,"+[").concat(n,"])")},solutionType:F.PREFIXED_STRING},{typeSetList:[r(F.UNDEFINED),r(F.UNDEFINED),r(F.WEAK_PREFIXED_STRING)],replace:function(e,t,n){return"".concat(e,"+(").concat(t,"+(").concat(n,"))")},solutionType:F.PREFIXED_STRING},{typeSetList:[r(F.UNDEFINED),r(F.UNDEFINED),r(F.OBJECT,F.STRING,F.COMBINED_STRING)],replace:function(e,t,n){return"".concat(e,"+(").concat(t,"+").concat(n,")")},solutionType:F.PREFIXED_STRING},{typeSetList:[r(F.UNDEFINED),r(F.UNDEFINED)],replace:function(e,t){return"[]+".concat(e,"+").concat(t)},solutionType:F.COMBINED_STRING},{typeSetList:[r(F.UNDEFINED),r(F.ALGEBRAIC,F.WEAK_ALGEBRAIC)],replace:function(e,t){return"".concat(e,"+[").concat(t,"]")},solutionType:F.PREFIXED_STRING},{typeSetList:[r(F.UNDEFINED),r(F.PREFIXED_STRING)],replace:function(e,t){return"".concat(e,"+(").concat(t,")")},solutionType:F.PREFIXED_STRING},{typeSetList:[r(F.UNDEFINED)],replace:function(e){return e},solutionType:F.PREFIXED_STRING},{typeSetList:[r(F.ALGEBRAIC),r(F.UNDEFINED,F.ALGEBRAIC,F.PREFIXED_STRING)],replace:function(e,t){return"[".concat(e,"]+").concat(t)},solutionType:F.COMBINED_STRING},{typeSetList:[r(F.ALGEBRAIC),r(F.WEAK_ALGEBRAIC)],replace:function(e,t){return"".concat(e,"+[").concat(t,"]")},solutionType:F.PREFIXED_STRING},{typeSetList:[r(F.ALGEBRAIC,F.PREFIXED_STRING)],replace:function(e){return e},solutionType:F.PREFIXED_STRING},{typeSetList:[r(F.WEAK_ALGEBRAIC),r(F.UNDEFINED,F.ALGEBRAIC,F.PREFIXED_STRING)],replace:function(e,t){return"[".concat(e,"]+").concat(t)},solutionType:F.COMBINED_STRING},{typeSetList:[r(F.WEAK_ALGEBRAIC),r(F.WEAK_ALGEBRAIC)],replace:function(e,t){return"".concat(e,"+[").concat(t,"]")},solutionType:F.WEAK_PREFIXED_STRING},{typeSetList:[r(F.WEAK_ALGEBRAIC,F.WEAK_PREFIXED_STRING)],replace:function(e){return e},solutionType:F.WEAK_PREFIXED_STRING},{typeSetList:[r(F.OBJECT,F.STRING,F.COMBINED_STRING)],replace:function(e){return e},solutionType:F.COMBINED_STRING}],p=(Object.defineProperty(Ut.prototype,"isLoose",{get:function(){return zn(this.type)},enumerable:!1,configurable:!0}),Object.defineProperty(Ut.prototype,"isString",{get:function(){return Xn(this.type)},enumerable:!1,configurable:!0}),Object.defineProperty(Ut.prototype,"isWeak",{get:function(){return qn(this.type)},enumerable:!1,configurable:!0}),Object.defineProperty(Ut.prototype,"length",{get:function(){return this.replacement.length},enumerable:!1,configurable:!0}),Ut);H(Wt,$n=p),Object.defineProperty(Wt.prototype,"replacement",{get:function(){var e;return null!=(e=this.Ne)?e:this.Ne=this.Ne=function(e){switch(e.length){case 0:return er.replacement;case 1:return e[0].replacement;default:var t=oe(e),n=t.replace,t=t.typeSetList.length,r=e.slice(t).map(tr),t=e.slice(0,t).map(nr),n=n.apply(void 0,t);return r.unshift(n),r.join("")}}(this.$)},enumerable:!1,configurable:!0}),Object.defineProperty(Wt.prototype,"source",{get:function(){for(var e=[],t=0,n=this.$;t<n.length;t++){var r=n[t].source;if(void 0===r)return;e.push(r)}return e.join("")},enumerable:!1,configurable:!0}),Object.defineProperty(Wt.prototype,"type",{get:function(){var e=this.$;switch(e.length){case 0:return er.type;case 1:return e[0].type;default:return oe(e).solutionType}},enumerable:!1,configurable:!0}),Wt.prototype.append=function(e){this.Ne=void 0,this.$.push(e)},Wt.prototype.prepend=function(e){this.Ne=void 0,this.$.unshift(e)};var $n,Kn=Wt;H(Ht,Qn=p),Ht.prototype.defineReplacement=function(e){e.configurable=!0,e.enumerable=!0,Object.defineProperty(this,"replacement",e)};var Qn,Vn=Ht;H(jt,Zn=p);var Zn,C=jt,er=new C("","[]",F.OBJECT),tr=function(e){var t=e.replacement,e=e.type;return qn(e)?"+(".concat(t,")"):"+".concat(t)},nr=function(e){return e.replacement},rr=(s(p.prototype,{get appendLength(){var e=this.isWeak?3:1;return this.length+e},set appendLength(e){fn(this,"appendLength",{enumerable:!0,value:e})}}),["true","undefined","NaN"]),ir=["RP_0_S","RP_1_WA",,"RP_3_WA","RP_4_A","RP_5_A","RP_6_S"],or=N(),ur=N(),ar=N(),R=d.ANY_DOCUMENT,Bn=d.ANY_WINDOW,p=d.ARRAY_ITERATOR,cr=d.ARROW,A=d.AT,h=d.ATOB,sr=d.BARPROP,T=d.CAPITAL_HTML,fr=d.CONSOLE,_r=d.DOCUMENT,lr=d.DOMWINDOW,Rr=d.ESC_HTML_ALL,dr=d.ESC_HTML_QUOT,pr=d.ESC_HTML_QUOT_ONLY,E=d.ESC_REGEXP_LF,Ar=d.ESC_REGEXP_SLASH,b=d.FF_SRC,v=d.FILL,I=d.FLAT,hr=d.FROM_CODE_POINT,Tr=d.FUNCTION_19_LF,Sr=d.FUNCTION_22_LF,Er=d.GENERIC_ARRAY_TO_STRING,Nr=d.GLOBAL_UNDEFINED,br=d.GMT,Or=d.HISTORY,vr=d.HTMLAUDIOELEMENT,Ir=d.HTMLDOCUMENT,L=d.IE_SRC,Lr=d.INCR_CHAR,Fr=d.INTL,Cr=d.LOCALE_INFINITY,gr=d.LOCALE_NUMERALS,g=d.LOCALE_NUMERALS_EXT,Pr=d.LOCATION,yr=d.NAME,mr=d.NODECONSTRUCTOR,xr=d.NO_FF_SRC,P=d.NO_IE_SRC,wr=d.NO_OLD_SAFARI_ARRAY_ITERATOR,y=d.NO_V8_SRC,Dr=d.OBJECT_L_LOCATION_CTOR,kr=d.OBJECT_UNDEFINED,Ur=d.OBJECT_W_CTOR,Wr=d.OLD_SAFARI_LOCATION_CTOR,Hr=d.PLAIN_INTL,jr=d.REGEXP_STRING_ITERATOR,Br=d.SELF_OBJ,Mr=d.SHORT_LOCALES,Gr=d.STATUS,Yr=d.UNDEFINED,zr=d.V8_SRC,Xr=d.WINDOW,qr=["NaN","false","undefined","0"],Jr=[[f("A"),f("C",T),f("A",p)],"F","Infinity","NaNfalse",[f("S"),f("R",T),f("S",p)],[f("W"),f("U",T)],"a","false","i","n","r","true","y","0","4","8"],$r=["A","B","C","D","E","F","G","H","Infinity","J","K","L","M","NaN","O","P","Q","R","S","T","U","V","W","X","Y","Z","a","b","c","d","e","false","g","h","i","j","k","l","m","n","o","p","q","r","s","true","undefined","v","w","x","y","z","0","1","2","3","4","5","6","7","8","9","+","/"],Kr=["000","NaN","falsefalsefalse","00f"],Qr=["0A",[f("0B"),f("0R",T),f("0B",p)],"0i",[f("0j"),f("0T",T),f("0j",p)],"00","01","02","03","04","05","0a","0r","0s","0t","undefinedfalse","0f"],Vr=m({"\b":[f('Function("return\\"" + ESCAPING_BACKSLASH + "b\\"")()[0]'),a({escSeq:!1})],"\t":[f('Function("return\\"" + ESCAPING_BACKSLASH + "true\\"")()[0]'),a({escSeq:!1})],"\n":[f("(RP_0_S + Function())[23]"),f("(RP_1_WA + Function())[20]",Tr),f("(RP_0_S + Function())[22]",Sr),f("(RP_0_S + ANY_FUNCTION)[0]",L),Mt(13,y)],"\v":[f('Function("return\\"" + ESCAPING_BACKSLASH + "v\\"")()[0]'),a({escSeq:!1})],"\f":[f('Function("return\\"" + ESCAPING_BACKSLASH + "false\\"")()[0]'),a({escSeq:!1})],"\r":[f('Function("return\\"" + ESCAPING_BACKSLASH + "r\\"")()'),a({escSeq:!1})],"":[f('(RP_5_A + atob("NaNfalse"))[10]',h)]," ":[t("ANY_FUNCTION",8),f("(RP_3_WA + ARRAY_ITERATOR)[10]",p),f("(RP_0_S + FILTER)[20]",b),f("(+(RP_0_S + FILTER)[0] + FILTER)[22]",xr),f("(RP_0_S + FILTER)[21]",y),f("(RP_1_WA + FILTER)[20]",zr),f("(RP_1_WA + AT)[20]",A,y),f("(RP_5_A + AT)[20]",A,zr),f("(+(RP_0_S + FILL)[0] + FILL)[20]",v,xr),f("(RP_5_A + FILL)[20]",v,P),f("(RP_0_S + FILL)[20]",v,y),f("(+(RP_0_S + FLAT)[0] + FLAT)[20]",I,xr),f("(RP_5_A + FLAT)[20]",I,P),f("(RP_0_S + FLAT)[20]",I,y)],'"':[f('"".fontcolor()[12]')],"#":[f("document.nodeName[0]",R),a()],"%":[f("escape(FILTER)[20]"),f("escape(0 + AT)[20]",A),f('atob("000l")[2]',h),f("escape(FILL)[21]",v),f("escape(FLAT)[21]",I),f("escape(ANY_FUNCTION)[0]",L)],"&":[f('"".fontcolor("".italics())[22]',Rr),f('"".fontcolor("".sub())[20]',Rr),f('"".fontcolor("\\"")[13]',dr),f('"".fontcolor("".fontcolor([]))[31]',pr),a()],"(":[Mt(9)],")":[Mt(10)],"+":"(1e100 + [])[2]",",":[f("(RP_0_S + F_A_L_S_E)[1]"),f({expr:"[[]].concat([[]])",solutionType:F.OBJECT})],"-":"(.0000001 + [])[2]",".":"(11e20 + [])[1]","/":[f('"0false".italics()[10]'),f('"true".sub()[10]')],":":[f("(RP_0_S + RegExp())[3]"),a()],";":[f('"".fontcolor("".italics())[21]',Rr),f('"".fontcolor(true + "".sub())[20]',Rr),f('"".fontcolor("NaN\\"")[21]',dr),f('"".fontcolor("".fontcolor())[30]',pr),a()],"<":[f('"".italics()[0]'),f('"".sub()[0]')],"=":[f('"".fontcolor()[11]')],">":[f('"".italics()[2]'),f('"".sub()[10]')],"?":[f("(RP_0_S + RegExp())[2]"),a()],A:[t("Array",9),f("(RP_3_WA + ARRAY_ITERATOR)[11]",p)],B:[t("Boolean",9),f('"0".sub()[10]',T)],C:[f('escape("".italics())[2]'),f('escape("".sub())[2]'),f("escape(F_A_L_S_E)[11]"),f('atob("00NaNfalse")[1]',h),f('(RP_4_A + "".fontcolor())[10]',T),f('(RP_3_WA + Function("return console")())[11]',fr),f("(RP_0_S + Node)[12]",mr)],D:[f('escape((+("1000" + (RP_5_A + FILTER + 0)[40] + 0) + FILTER)[40])[2]'),f('escape("]")[2]'),f('escape("}")[2]'),f('(document + RP_0_S)[SLICE_OR_SUBSTR]("-10")[1]',R),f('escape((RP_4_A + [+("1000" + (AT + 0)[31] + 0)] + AT)[40])[2]',A),f('btoa("00")[1]',h),f("(RP_3_WA + document)[11]",_r),f("(RP_3_WA + self)[11]",lr),f('escape((NaN + [+("10" + [(RP_6_S + FILL)[40]] + "000")] + FILL)[40])[2]',v),f('escape((NaN + [+("10" + [(RP_6_S + FLAT)[40]] + "000")] + FLAT)[40])[2]',I),f("(RP_0_S + document)[12]",Ir),f("escape(ARRAY_ITERATOR)[30]",wr),f("escape(FILTER)[50]",zr),f('(document + [RP_1_WA]).at("-10")',R,A),f("escape(AT)[61]",A,L),f("escape([[]][+(RP_0_S + AT)[0]] + AT)[61]",A,xr),f("escape([NaN][+(RP_1_WA + AT)[20]] + AT)[61]",A,P),f("escape(true + AT)[50]",A,zr),f("escape(FILL)[60]",b,v),f("escape(FLAT)[60]",b,I)],E:[t("RegExp",12),f('btoa("0NaN")[1]',h),f('(RP_5_A + "".link())[10]',T),f("(RP_3_WA + Audio)[21]",vr),f("(RP_0_S + REGEXP_STRING_ITERATOR)[11]",jr)],F:[t("Function",9),f('"".fontcolor()[1]',T)],G:[f('btoa("0false")[1]',h),f('"0".big()[10]',T),f("(RP_5_A + Date())[30]",br)],H:[f("(RP_3_WA + document.createElement(false))[11]",R),f("btoa(true)[1]",h),f('"".link()[3]',T),f({expr:'(RP_3_WA + Function("return history")())[11]',optimize:!0},Or),f("(RP_1_WA + Audio)[10]",vr),f("(RP_3_WA + document)[11]",Ir)],I:'"Infinity"[0]',J:[f('"j"[TO_UPPER_CASE]()'),f("btoa(true)[2]",h),a({atob:!1})],K:[f('(RP_5_A + "".strike())[10]',T),a()],L:[f("(RP_0_S + document.createElement(false))[11]",R),f('btoa(".")[0]',h),f('(RP_3_WA + "".fontcolor())[11]',T),f("(RP_0_S + Audio)[12]",vr),f("(RP_0_S + document)[11]",Ir),f({expr:'Function("return toString.call(location)")()[SLICE_OR_SUBSTR]("-10")[1]',optimize:!0},Pr),f("(RP_3_WA + LOCATION_CONSTRUCTOR)[11]",Dr),f('(LOCATION_CONSTRUCTOR + RP_0_S)[SLICE_OR_SUBSTR]("-20")[0]',Wr),f({expr:'(Function("return toString.call(location)")() + RP_1_WA).at("-10")',optimize:!0},A,Pr),f('(LOCATION_CONSTRUCTOR + RP_0_S).at("-20")',A,Wr),f('[][TO_STRING].call(location)[SLICE_OR_SUBSTR]("-10")[1]',Er,Pr),f('([][TO_STRING].call(location) + RP_1_WA).at("-10")',A,Er,Pr)],M:[f("(RP_0_S + document.createElement(false))[10]",R),f("btoa(0)[0]",h),f('"".small()[2]',T),f("(RP_0_S + self)[10]",lr),f("(RP_4_A + Date())[30]",br),f("(RP_0_S + Audio)[11]",vr),f("(RP_0_S + document)[10]",Ir)],N:'"NaN"[0]',O:[t("Object",9),f("(RP_3_WA + PLAIN_OBJECT)[11]"),f("btoa(NaN)[3]",h),f('"".fontcolor()[2]',T),f("(RP_1_WA + self)[10]",lr),f("(RP_3_WA + Intl)[11]",Hr)],P:[f('String.fromCharCode("80")'),f('atob("01A")[1]',h),f('btoa("".italics())[0]',h),f('(RP_0_S + Function("return statusbar")())[11]',sr),f('"0".sup()[10]',T),a({atob:!1,charCode:!1})],Q:[f('"q"[TO_UPPER_CASE]()'),f("btoa(1)[1]",h),a({atob:!1})],R:[t("RegExp",9),f('btoa("0true")[2]',h),f('"".fontcolor()[10]',T),f("(RP_3_WA + REGEXP_STRING_ITERATOR)[11]",jr)],S:[t("String",9),f('"".sub()[1]',T)],T:[f({expr:'(RP_0_S + Function("try{undefined.false}catch(undefined){return undefined}")())[0]',optimize:!0}),f("btoa(NaN)[0]",h),f('"".fontcolor([])[20]',T),f("(RP_3_WA + Date())[30]",br),f("(RP_0_S + Audio)[10]",vr),f("(RP_1_WA + document)[10]",Ir),a({atob:!1})],U:[f('btoa("1NaN")[1]',h),f('"".sub()[2]',T),f({expr:'(RP_3_WA + Function("return toString")()())[11]',optimize:!0},Nr),f({expr:'(RP_3_WA + Function("return{}.toString")()())[11]',optimize:!0},kr),f("(RP_3_WA + PLAIN_OBJECT[TO_STRING].call())[11]",Yr),f("(RP_3_WA + ARRAY_ITERATOR[TO_STRING].call())[11]",p,Yr),f({expr:'(RP_3_WA + Function("return Intl.toString")()())[11]',optimize:!0},Fr,kr),f("(RP_3_WA + Intl[TO_STRING].call())[11]",Fr,Yr)],V:[f('"v"[TO_UPPER_CASE]()'),f('(RP_0_S + document.createElement("video"))[12]',R),f("btoa(undefined)[10]",h),a({atob:!1})],W:[f('"w"[TO_UPPER_CASE]()'),f('(self + RP_4_A)[SLICE_OR_SUBSTR]("-11")[0]',Bn),f("btoa(undefined)[1]",h),f("(RP_0_S + self)[11]",lr),f('(RP_3_WA + Function("return constructor")())[11]',Ur),f("(RP_3_WA + self)[11]",Xr),f('(self + RP_4_A).at("-11")',Bn,A),a({atob:!1})],X:[f('"x"[TO_UPPER_CASE]()'),f('btoa("1true")[1]',h),a({atob:!1})],Y:[f('"y"[TO_UPPER_CASE]()'),f('btoa("a")[0]',h),a({atob:!1})],Z:[f("btoa(false)[0]",h),f('(RP_3_WA + "".fontsize())[11]',T)],"[":[Bt(14),f("(RP_0_S + ARRAY_ITERATOR)[0]",p)],"\\":[f("ESCAPING_BACKSLASH"),a({atob:!1,escSeq:!1,unescape:!1})],"]":[Bt(26),f("(RP_0_S + ARRAY_ITERATOR)[22]",wr)],"^":[f('atob("undefined0")[2]',h)],a:'"false"[1]',b:[t("Number",12),f("(RP_0_S + ARRAY_ITERATOR)[2]",p)],c:[t("ANY_FUNCTION",3),f("(RP_5_A + ARRAY_ITERATOR)[10]",p)],d:'"undefined"[2]',e:'"true"[3]',f:'"false"[0]',g:[t("String",14)],h:[f('101[TO_STRING]("21")[1]'),f('btoa("0false")[3]',h)],i:"([RP_5_A] + undefined)[10]",j:[f("(RP_0_S + PLAIN_OBJECT)[10]"),f("(RP_0_S + ARRAY_ITERATOR)[3]",p),f("(RP_0_S + Intl)[3]",Fr),f("(RP_0_S + Node)[3]",mr),f("(RP_0_S + Intl)[10]",Hr),f("(RP_0_S + self)[3]",Br)],k:[f('20[TO_STRING]("21")'),a()],l:'"false"[2]',m:[t("Number",11),f("(RP_6_S + Function())[20]")],n:'"undefined"[1]',o:[t("ANY_FUNCTION",6),f("(RP_0_S + ARRAY_ITERATOR)[1]",p)],p:[f('211[TO_STRING]("31")[1]'),f("(RP_3_WA + btoa(undefined))[10]",h)],q:[f('212[TO_STRING]("31")[1]'),f('"".fontcolor(0 + "".fontcolor())[30]',Rr),f('"".fontcolor("0false\\"")[20]',dr),f('"".fontcolor(true + "".fontcolor())[30]',pr),a()],r:'"true"[1]',s:'"false"[3]',t:'"true"[0]',u:'"undefined"[0]',v:[Bt(19)],w:[f('32[TO_STRING]("33")'),f('(self + RP_0_S)[SLICE_OR_SUBSTR]("-2")[0]',Bn),f('atob("undefined0")[1]',h),f("(RP_4_A + self)[20]",lr),f("(RP_0_S + self)[13]",Xr),f('(self + RP_0_S).at("-2")',Bn,A)],x:[f('101[TO_STRING]("34")[1]'),f('btoa("falsefalse")[10]',h)],y:"(RP_3_WA + [Infinity])[10]",z:[f('35[TO_STRING]("36")'),f('btoa("falsefalse")[11]',h)],"{":[Mt(12)],"}":[Bt(28)],"":[f('(RP_4_A + atob("NaNundefined"))[10]',h)],"":[f('atob("0NaN")[2]',h)],"":[f('atob("00false")[3]',h)],"":[f("atob(true)[2]",h)],"£":[f("atob(NaN)[1]",h)],"¥":[f('atob("0false")[2]',h)],"§":[f('atob("00undefined")[2]',h)],"©":[f('atob("false0")[1]',h)],"±":[f('atob("0false")[3]',h)],"¶":[f("atob(true)[0]",h)],"º":[f('atob("undefined0")[0]',h)],"»":[f("atob(true)[1]",h)],"Ç":[f('atob("falsefalsefalse")[10]',h)],"Ú":[f('atob("0truefalse")[1]',h)],"Ý":[f('atob("0undefined")[2]',h)],"â":[f('atob("falsefalseundefined")[11]',h)],"é":[f('atob("0undefined")[1]',h)],"î":[f('atob("0truefalse")[2]',h)],"ö":[f('atob("0false")[1]',h)],"ø":[f('atob("undefinedundefined")[10]',h)],"∞":[f("Infinity[TO_LOCALE_STRING]()",Cr),a()]}),Zr=m({Number:f({expr:"Number.name",optimize:{complexOpt:!1}},yr),Object:f({expr:"Object.name",optimize:{complexOpt:!1}},yr),RegExp:f({expr:"RegExp.name",optimize:{complexOpt:!1}},yr),String:f("String.name",yr),fromCharCo:f({expr:'"from3har3o".split(3).join("C")',optimize:{complexOpt:!1}}),mCh:f('atob("bUNo")',d.ATOB)}),fr=m({Array:[f("[].constructor")],Audio:[f('Function("return Audio")()',vr)],Boolean:[f("false.constructor")],Date:[f('Function("return Date")()')],Function:[f("ANY_FUNCTION.constructor")],Intl:[f('Function("return Intl")()',Fr)],Node:[f('Function("return Node")()',mr)],Number:[f("0..constructor")],Object:[f("PLAIN_OBJECT.constructor"),f("Intl.constructor",Fr),f("[].entries().constructor",wr)],RegExp:[f('Function("return/false/")().constructor')],String:[f('"".constructor')],atob:[f('Function("return atob")()',h)],btoa:[f('Function("return btoa")()',h)],document:[f({expr:'Function("return document")()',optimize:!0},R)],escape:[f({expr:'Function("return escape")()',optimize:!0})],location:[f('Function("return location")()',Pr)],self:[f('Function("return self")()',Br)],unescape:[f({expr:'Function("return unescape")()',optimize:!0})],ANY_FUNCTION:[f("FILTER"),f("AT",A),f("FILL",v),f("FLAT",I)],ARRAY_ITERATOR:[f("[].entries()",p)],AT:[f("[].at",A)],ESCAPING_BACKSLASH:[f(function(){var e=this.be(92);return new C(void 0,e,F.STRING)}),f({expr:'atob("01y")[1]',solutionType:F.STRING},h),f({expr:'(RP_0_S + RegExp("\\n"))[1]',solutionType:F.STRING},E),f({expr:'(RP_5_A + RegExp("".italics()))[10]',solutionType:F.STRING},Ar),f({expr:'(RP_3_WA + RegExp("".sub()))[10]',solutionType:F.STRING},Ar),f({expr:"(RP_0_S + RegExp(FILTER))[20]",solutionType:F.STRING},E,b),f({expr:"(RP_0_S + RegExp(Function()))[20]",solutionType:F.STRING},E,Tr),f({expr:"(RP_5_A + RegExp(Function()))[30]",solutionType:F.STRING},E,Sr),f({expr:"(RP_0_S + RegExp(ANY_FUNCTION))[1]",solutionType:F.STRING},E,L),f({expr:"(+(RP_0_S + FILTER)[0] + RegExp(FILTER))[23]",solutionType:F.STRING},E,y),f({expr:"(RP_4_A + RegExp(AT))[20]",solutionType:F.STRING},A,E,b),f({expr:"(RP_1_WA + [+(RP_0_S + AT)[0]] + RegExp(AT))[20]",solutionType:F.STRING},A,E,y),f({expr:"(RP_3_WA + RegExp(FILL))[21]",solutionType:F.STRING},E,b,v),f({expr:"(RP_3_WA + RegExp(FLAT))[21]",solutionType:F.STRING},E,b,I),f({expr:"(+(RP_0_S + FILL)[0] + RegExp(FILL))[21]",solutionType:F.STRING},E,v,y),f({expr:"(+(RP_0_S + FLAT)[0] + RegExp(FLAT))[21]",solutionType:F.STRING},E,I,y)],FILL:[f("[].fill",v)],FILTER:[f("[].filter")],FLAT:[f("[].flat",I)],F_A_L_S_E:[f('[][SLICE_OR_FLAT].call("false")')],LOCALE_AR:[f({expr:'"ar-td"',solutionType:F.COMBINED_STRING}),f({expr:'"ar"',solutionType:F.COMBINED_STRING},Mr)],LOCATION_CONSTRUCTOR:[f('Function("return location")().constructor',Dr),f('Function("return location")().constructor',Wr)],PLAIN_OBJECT:[f('Function("return{}")()')],REGEXP_STRING_ITERATOR:[f({expr:'"".matchAll()',optimize:!0},jr)],SLICE_OR_FLAT:[f({expr:'"slice"',solutionType:F.COMBINED_STRING}),f({expr:'"flat"',solutionType:F.COMBINED_STRING},I)],SLICE_OR_SUBSTR:[f({expr:'"slice"',solutionType:F.COMBINED_STRING}),f({expr:'"substr"',solutionType:F.COMBINED_STRING})],TO_LOCALE_STRING:[f({expr:'"toLocaleString"',optimize:!0,solutionType:F.COMBINED_STRING})],TO_STRING:[f({expr:'"toString"',optimize:{toStringOpt:!1},solutionType:F.COMBINED_STRING})],TO_UPPER_CASE:[f({expr:'"toUpperCase"',optimize:!0,solutionType:F.COMBINED_STRING})],FBEP_4_S:[f("[[true][+(RP_3_WA + FILTER)[30]]]"),f("[[true][+(RP_1_WA + AT)[30]]]",A),f("[[true][+(RP_5_A + FILL)[30]]]",v),f("[[true][+(RP_5_A + FLAT)[30]]]",I),f("[[true][+!!++(RP_0_S + FILTER)[20]]]",Lr),f("[[true][+!!++(RP_1_WA + AT)[20]]]",A,Lr),f("[[true][+!!++(RP_0_S + FILL)[20]]]",v,Lr),f("[[true][+!!++(RP_0_S + FLAT)[20]]]",I,Lr)],FBEP_9_U:[f({expr:"[false][+(RP_0_S + FILTER)[20]]",solutionType:F.UNDEFINED}),f({expr:"[false][+(RP_1_WA + AT)[20]]",solutionType:F.UNDEFINED},A),f({expr:"[false][+(RP_0_S + FILL)[20]]",solutionType:F.UNDEFINED},v),f({expr:"[false][+(RP_0_S + FLAT)[20]]",solutionType:F.UNDEFINED},I)],FBEP_10_S:[f({expr:"[RP_1_WA] + FBEP_9_U",solutionType:F.COMBINED_STRING})],FBP_5_S:[f("[[false][+IS_IE_SRC_A]]",xr)],FBP_7_WA:[f({expr:'+("10" + [(RP_4_A + FILTER)[40]] + "00000")',solutionType:F.WEAK_ALGEBRAIC}),f({expr:'+("10" + [(RP_0_S + AT)[32]] + "00000")',solutionType:F.WEAK_ALGEBRAIC},A),f({expr:'+("10" + [(RP_6_S + FILL)[40]] + "00000")',solutionType:F.WEAK_ALGEBRAIC},v),f({expr:'+("10" + [(RP_6_S + FLAT)[40]] + "00000")',solutionType:F.WEAK_ALGEBRAIC},I)],FBP_8_WA:[f({expr:'+("1000" + (RP_5_A + FILTER + 0)[40] + "000")',solutionType:F.WEAK_ALGEBRAIC}),f({expr:'+("1000" + (AT + 0)[31] + "000")',solutionType:F.WEAK_ALGEBRAIC},A),f({expr:'+("1000" + (FILL + 0)[33] + "000")',solutionType:F.WEAK_ALGEBRAIC},v),f({expr:'+("1000" + (FLAT + 0)[33] + "000")',solutionType:F.WEAK_ALGEBRAIC},I)],FBP_9_U:[f({expr:"[true][+(RP_0_S + ANY_FUNCTION)[0]]",solutionType:F.UNDEFINED},xr)],FH_SHIFT_1:[f("[+IS_IE_SRC_A]")],FH_SHIFT_2:[f("[true + IS_IE_SRC_A]")],FH_SHIFT_3:[f("[2 + IS_IE_SRC_A]")],FHP_3_WA:[f({expr:"+(1 + [+(RP_0_S + ANY_FUNCTION)[0]])",solutionType:F.WEAK_ALGEBRAIC}),f({expr:"+(++(RP_0_S + ANY_FUNCTION)[0] + [0])",solutionType:F.WEAK_ALGEBRAIC},Lr)],FHP_5_A:[f({expr:"IS_IE_SRC_A",solutionType:F.ALGEBRAIC})],FHP_8_S:[f({expr:"[RP_3_WA] + FHP_5_A",solutionType:F.COMBINED_STRING})],IS_IE_SRC_A:[f({expr:"!![[]][+(RP_0_S + ANY_FUNCTION)[0]]",solutionType:F.ALGEBRAIC}),f({expr:"!!++(RP_0_S + ANY_FUNCTION)[0]",solutionType:F.ALGEBRAIC},Lr)],RP_0_S:{expr:"[]",solutionType:F.OBJECT},RP_1_WA:{expr:"0",solutionType:F.WEAK_ALGEBRAIC},RP_2_WS:{expr:'"00"',solutionType:F.WEAK_PREFIXED_STRING},RP_3_WA:{expr:"NaN",solutionType:F.WEAK_ALGEBRAIC},RP_4_A:{expr:"true",solutionType:F.ALGEBRAIC},RP_5_A:{expr:"false",solutionType:F.ALGEBRAIC},RP_6_S:{expr:'"0false"',solutionType:F.COMBINED_STRING}}),ei=[f(4,b),f(5,L),f(0,zr)],ti=[f(1,L),f(0,P)],ni=Q([f("fromCharCode"),f("fromCodePoint",hr)],[f(0),f(1,h),f(1,sr),f(1,T),f(0,p,h,T,hr)]),ri=Q([f(function(e,t){return"function(undefined){return String."+e+"("+t+")}"}),f(function(e,t){return"function(undefined){return(isNaN+false).constructor."+e+"("+t+")}"}),f(function(e,t){return"undefined=>String."+e+"("+t+")"},cr),f(function(e,t){return"undefined=>(isNaN+false).constructor."+e+"("+t+")"},cr),f(function(e,t){return"function(undefined){return status.constructor."+e+"("+t+")}"},Gr),f(function(e,t){return"undefined=>status.constructor."+e+"("+t+")"},cr,Gr)],[f(1),f(3),f(0,p,T),f(1,p,T,I),f(0,p,T,y),f(1,p,A,T),f(1,p,T,b,I),f(1,p,T,v,L),f(1,p,T,v,P),f(1,p,T,I,L),f(2,p,T),f(3,p,A,T,L),f(3,p,A,T,P),f(4),f(5)]),ii=Q([f(function(e,t){var n=ue(e);return'Function("return function('+n+"){return function("+e+"){return "+n+t+'}}")()'}),f(function(e,t){return'Function("return function('+e+"){return this"+t+'}")().bind'}),f(function(e,t){var n=ue(e);return'Function("return '+n+"=>"+e+"=>"+n+t+'")()'},cr)],[f(0),f(1,p,h),f(0,xr),f(0,y),f(1,p,T),f(0,p,A,h),f(0,p,A,T),f(0,p,h,v),f(0,p,h,I),f(0,p,h,P),f(0,p,T,v),f(0,p,T,I),f(0,p,T,L),f(0,p,T,P),f(2)]),oi=[f({expr:"FILTER",shift:6}),f({expr:"FILL",shift:4},v),f({expr:"FLAT",shift:4},I),f({expr:"AT",shift:2},A)],ui=Q([f("f"),f("undefined")],[f(0),f(1,A),f(1,v,L),f(1,v,P),f(0,I)]),ai=Q([f("B"),f("b")],[f(0),f(1,p)]),ci=Q([f("return String"),f("return(isNaN+false).constructor"),f("return status.constructor",Gr)],[f(1),f(0,p,T),f(1,I),f(0,p,T,y),f(1,p,A,T),f(1,p,T,b,I),f(1,p,T,v,L),f(1,p,T,v,P),f(1,p,T,I,L),f(2)]);Yt("false","![]",F.ALGEBRAIC),Yt("true","!![]",F.ALGEBRAIC),Yt("undefined","[][[]]",F.UNDEFINED),Yt("NaN","+[false]",F.WEAK_ALGEBRAIC),Yt("Infinity","1e1000",F.WEAK_ALGEBRAIC);for(var si=0;si<=9;++si){var fi=function(e){switch(e){case 0:return"+[]";case 1:return"+!![]";default:for(var t="!![]";t+="+!![]",1<--e;);return t}}(si);Vr[si]={expr:fi,solutionType:F.WEAK_ALGEBRAIC}}V(Gt),V(c),zt("LOCALE_AR",1632),c("٫","LOCALE_AR",.1,1),c("ل",'"ar"',NaN,0),c("ي",'"ar"',NaN,1),c("س",'"ar"',NaN,2),c("ر",'"ar"',NaN,4,g),c("ق",'"ar"',NaN,5,g),c("م",'"ar"',NaN,6,g),zt('"bn"',2534,g),zt('"fa"',1776),c("٬",'"fa"',1e3,1),c("ن",'"fa"',NaN,0,g),c("ا",'"fa"',NaN,1,g),c("ع",'"fa"',NaN,2,g),c("د",'"fa"',NaN,3,g),c("н",'"ru"',NaN,0,g),c("е",'"ru"',NaN,1,g),c("ч",'"ru"',NaN,3,g),c("и",'"ru"',NaN,4,g),c("с",'"ru"',NaN,5,g),c("л",'"ru"',NaN,6,g),c("о",'"ru"',NaN,7,g);var _i,li,Ri,di={ConstIdentifier:"Infinity|NaN|false|true|undefined",DecimalLiteral:"(?:(?:0|[1-9]\\d*)(?:\\.\\d*)?|\\.\\d+)(?:[Ee][+-]?\\d+)?",DoubleQuotedString:'"(?:#EscapeSequence|(?!["\\\\]).)*"',EscapeSequence:"\\\\(?:u#HexDigit{4}|x#HexDigit{2}|0(?!\\d)|\r\n|[^\\dux])",HexDigit:"[0-9A-Fa-f]",HexIntegerLiteral:"0[Xx]#HexDigit+",NumericLiteral:"#HexIntegerLiteral|#DecimalLiteral",Separator:"#SeparatorChar|//.*(?!.)|/\\*[\\s\\S]*?\\*/",SeparatorChar:"(?!)[\\s\ufeff]",SingleQuotedString:"'(?:#EscapeSequence|(?!['\\\\]).)*'",UnicodeEscapeSequence:"\\\\u#HexDigit{4}"},pi=N(),Ai=["false","null","true"],hi=["arguments","debugger","delete","if","import","let","new","return","this","throw","typeof","void","while","with","yield"],Ti=Ee("(?:#NumericLiteral|#ConstIdentifier)"),Si=Ee("(?:[$\\w]|#UnicodeEscapeSequence)+"),Ei=Ee("(?:#Separator|;)*"),Ni=Ee("#Separator*"),bi=Ee("#SingleQuotedString|#DoubleQuotedString"),Oi="function"!=typeof WeakRef?ke:(_i=new Map,li=new FinalizationRegistry(function(e){var t=_i.get(e);t&&!t.deref()&&_i.delete(e)}),function(e){var t,n=_i.get(e);return(t=n?n.deref():t)||(t=ke(e))&&!0!==t&&(n=new WeakRef(t),_i.set(e,n),li.register(t,e)),t}),vi=[6,8,12,17,22,27,32,37,42,47],Ii=1,Li=(s(We.prototype,{get length(){return this.ie},append:function(t){var e=this.$;if(e.length>=this.ne)return!1;e.push(t);var n=t.appendLength;return this.ee.forEach(function(e){e=e.appendLengthOf(t);e<n&&(n=e)}),this.ie+=n,!0},toString:function(){var e=this.$.length,t=this.te,n=this.re,r=2===n;if(e<=t)var i=Ue(this,0,e,r,0!==n);else{for(var a=t,o=2;!(e<=--a*o);)o*=2;var c=this,i=function e(t,n,r,i){var o,u;return n<=a+1?u=Ue(c,t,n,i):(o=a*(r/=2),u=e(t,o=on(o-(o=2*o-n)+o%(a-1),(r/2^0)*(a+1)),r)+"+"+e(t+o,n-o,r,!0),i&&(u="("+u+")")),u}(0,e,o,r)}return i}}),0),Fi={firstSolution:er},Ci={firstSolution:er,optimize:{default:!1,toStringOpt:!0}},gi=N(),Pi=([15,31,47,63,111,127,175,223,239,240,241,242,243,244,245,246,247,250].forEach(function(e){gi[e]=null}),d.ATOB.mask),yi=N(),mi=N(),xi=new Je(Y),wi=d.Se,Di=(Ri=x(ln(or).join("|"),"y"))?function(e,t){Ri.lastIndex=t;t=e.match(Ri);if(t)return t[0]}:function(e,t){for(var n in or)if(e.substr(t,n.length)===n)return n},ki=(s(Je.prototype,{pe:function(e,t,n,r,i,o){var u=n&&this.hasFeatures(Pi)?Ve(this,e,t,Me,"atob"):(n=[],r&&(u=Ve(this,e,t,Ye,"char-code"),n.push(u)),i&&(u=Ve(this,e,t,Xe,"esc-seq"),n.push(u)),o&&(u=Ve(this,e,t,qe,"unescape"),n.push(u)),re.apply(null,n));return u},Oe:function(e){var t=ir[e];if(t)return t;Ze(this,"Undefined regular padding block with length "+e)},ve:Me,Ie:Ye,Le:Xe,be:qe,Fe:function(e,t,n,r,i){var o=e.mod||"",u=e.pmod||"",a=t&&"+"===o[0],c=r-(o?(a?2:0)+o.length:0)-u.length,s=e.ops,f=s.length,_=function(e,t,n,r,i,o){var u,a=o.appendString;if(u=t.terms){for(var c=u.length,s=i-(n?2:0),f=!1,_=0;_<c;++_){var l,R=u[_],d=1<c?r.concat(_):r;if(!a||"string"!=typeof R.value||R.mod||R.pmod||R.ops.length){var p=s-(A?A.length+1:0)-3*(c-_-1),d=e.Fe(R,_,d,p,o);if(!d)return;A?A+="+"+d:A=d}else A?(f||Ze(e,"Unsupported concatenation of a string to a potentially non-string expression"),l=new C(void 0,A,F.WEAK_PREFIXED_STRING)):f=!(l=void 0),A=a(e,R.value,l)}n&&(A="("+A+")")}else if(T=t.identifier)var A=(0,o.identifier)(e,T,n,r,i);else{var h,T=t.value;if("string"==typeof T)A=(0,o.string)(e,T,n?2:Ii,r,i);else if(Qt(T))T.length?(t=e.Fe(T[0],!1,r,i-2,o))&&(A="["+t+"]"):i<2||(A="[]");else if("number"==typeof T&&T==T?(t=T<0||1/T<0,h=0===(h=rn(T))?"0":h===1/0?"1e1000":je(h),A=ne(h=t?"-"+h:h),1<h.length&&(A="+("+A+")"),n&&(A="("+A+")")):A=Qe(xi,S(T),n),A.length>i)return}return A}(this,e,f||u?2:t||o?1:0,n,c,i);if(_){for(var l=0;l<f;++l){var R=s[l],d=R.type;if("call"===d){if((_+="()").length>c)return}else{var p=n.concat(l+1),A=c-_.length-2,h=R.str;if(!(h=null!=h?(0,i.string)(this,h,0,p,A):this.Fe(R,!1,p,A,i)))return;_+="get"===d?"["+h+"]":"("+h+")"}}_+=u,o&&(_=o+_,a)&&(_="("+_+")")}return _},Ae:function(e,t,n,r,i){r||Ze(this,"Missing padding entries for index "+n);var o,r=this.findDefinition(r),i=(n="number"==typeof r?(i=this.findDefinition(i),o=this.Oe(r),n+r+i):(o=r.block,r.shiftedIndex),"("+o+" + "+t+")["+n+"]"),r=this.replaceExpr(i);return new C(e,r,F.STRING)},he:function(e,t,n,r){var i=this.findDefinition(oi),o=i.expr,t=t+i.shift,i=n(t);return this.Ae(e,o,t,i,r)},constantDefinitions:fr,findDefinition:function(e){var t,n=e.cacheKey,r=(void 0===n&&(e.cacheKey=n=++Li),this.ae);if(n in r)return r[n];for(var i=e.length;i--;){var o=e[i];if(this.hasFeatures(o.mask)){t=o.definition;break}}return r[n]=t},hasFeatures:function(e){return O(this.mask,e)},maxGroupThreshold:1800,replaceExpr:function(e,t){function r(e,t,n){n.optimize=i;t=e.replaceString(t,n);return t||Ze(e,"String too complex"),t}var i,e=Oi(e),t=(e&&!0!==e||Ze(this,"Syntax error"),i=t,{appendString:function(e,t,n){return r(e,t,{firstSolution:n,screwMode:Ii})},identifier:Qe,string:function(e,t,n){return r(e,t,{screwMode:n})}});return this.Fe(e,!1,[],NaN,t)},replaceString:function(e,t){var n=this.Ce(e,(t=t||{}).optimize),r=new We(t.screwMode||0,this.maxGroupThreshold,n),n=t.firstSolution,i=t.maxLength;if(!(n&&(r.append(n),r.length>i))){for(var o=e.length,u=0;u<o;){var a=Di(e,u),a=a?(u+=a.length,or[a]):(a=e[u++],this.resolveCharacter(a));if(!r.append(a)||r.length>i)return}t=S(r);return t.length>i?void 0:t}},resolve:function(e,t,n){var r,i,o,u=typeof e;return"function"==u?e.call(this,t):("object"==u?(r=e.expr,i=e.solutionType,o=e.optimize):r=e,u=this.replaceExpr(r,o),new C(t,u,i=null==i?null!=n?n:F.STRING:i))},resolveCharacter:function(r){var i=this.oe,o=i[r];return void 0===o&&$e(this,nn(r),function(){var e,t,n=Vr[r];!n||Qt(n)?(o=n?Ke(this,r,n):o)||(t=(e=r).charCodeAt(),o=this.pe(e,t,t<256,!0,!0,!0)):((o=xi.resolve(n,r)).entryCode="static",i=yi),i[r]=o}),o},resolveConstant:function(t){var n=this.ue,r=n[t];return void 0===r&&$e(this,t,function(){var e=this.constantDefinitions[t];Qt(e)?r=Ke(this,t,e,F.OBJECT):(r=xi.resolve(e,void 0,F.OBJECT),n=mi),n[t]=r}),r}}),Cn=xi,{joiner:"false",separator:"false"}),Ui={joiner:"",separator:'Function("return/(?=false|true)/")()'},Wi={identifier:function(e,t,n,r,i){return ut(e,"return "+t,St,Rt(r),i)},string:function(e,t,n,r,i){return st(e,t,n,Rt(r),i)}},Hi=(Et.forceString=!(St.forceString=!1),et([""],"false")),ji=et(["false","true"],""),Bi={byCharCodes:l(function(e,t){return this.ge(e,void 0,t)},2),byCharCodesRadix4:l(function(e,t){return this.ge(e,4,t)},25),byCodePoints:l(function(e,t){return this.Pe(e,void 0,t)},3,void 0,d.FROM_CODE_POINT),byCodePointsRadix4:l(function(e,t){return this.Pe(e,4,t)},38,void 0,d.FROM_CODE_POINT),byDenseFigures:l(function(e,t){return this.ye(e,t)},1888),byDict:l(function(e,t){return this.me(e,void 0,void 0,t)},2),byDictRadix3AmendedBy1:l(function(e,t){return this.me(e,3,1,t)},153),byDictRadix4:l(function(e,t){return this.me(e,4,0,t)},160),byDictRadix4AmendedBy1:l(function(e,t){return this.me(e,4,1,t)},218),byDictRadix4AmendedBy2:l(function(e,t){return this.me(e,4,2,t)},279),byDictRadix5:l(function(e,t){return this.me(e,5,0,t)},223),byDictRadix5AmendedBy3:l(function(e,t){return this.me(e,5,3,t)},602),bySparseFigures:l(function(e,t){return this.xe(e,t)},347),express:l(function(e,t){e=e.valueOf();return this.we(e,t)},void 0,!0),plain:l(function(e,t){var n=e.valueOf(),t={maxLength:t,optimize:!0,screwMode:e.screwMode};return this.replaceString(n,t)}),text:l(function(e,t){return ut(this,e.valueOf(),e.wrapper,void 0,t)})};s(Je.prototype,{_e:function(e,t,n){return e(t,n)},ge:function(e,t,n){var r=this.findDefinition(ni);return ot(this,e,r,At,t,n)},Pe:function(e,t,n){return ot(this,e,"fromCodePoint",ht,t,n)},ye:function(e,t){return at(this,pt,ji,ft,[Ui],e,t)},me:function(e,t,n,r){var i=e.valueOf(),e=_t(e),o=e.length,u=!t||o&&71<6*e[0].count,a=t||10,c=function(e,t,n,r){var i,o,u=vi.slice(0,t);if(n){for(var a=t-n,c="[",s=0;s<n;++s){var f=a+s;u[f]=or[rr[s]].appendLength,c+=f}i=Rn(c+="]","g"),o=function(e){return rr[e-a]}}for(var _=[],s=0;s<e;++s){var l=r&&!s?"":s.toString(t),R=n?l.replace(i,o):l,R=_[s]=cn(R);R.sortLength=function(){var t=0;return Xt(l,function(e){t+=u[e]}),t}(),R.index=s}return _.sort(function(e,t){return e.sortLength-t.sortLength||e.index-t.index}),_}(o,a,n,u),s=N(),f=dt(i),_=[],o=(e.forEach(function(e,t){var t=c[t],n=e.char;s[n]=t,f+=e.count*t.sortLength,_[t.index]=n}),ct(this,_,r-f));if(o){if(n)for(var l=[],R=a-n,d=0;d<n;++d){var p=rr[d],A=S(R+d);l.push({separator:p,joiner:A})}e=nt(this,i,s,[ki],l,!1,r-o.length);if(e)return this.createDictEncoding(o,e,r,t,u)}},xe:function(e,t){return at(this,dt,Hi,lt,[ki],e,t)},we:function(e,t){var n,e=ke(e);if(e)return!0===e?t<0||(n=""):n=this.Fe(e,!1,[],t,Wi),n},le:function(e,t,n,r){var i=this.perfLog=[],e=tt(this,e,{wrapper:t},n);if(r&&(r.perfLog=i),delete this.perfLog,null==e)throw new Zt("Encoding failed");return e},fe:65533,createDictEncoding:function(e,t,n,r,i){var i=r?this.findDefinition(ii)(o=this.findDefinition(ui),"[parseInt("+(i?"+":"")+o+","+r+")]"):'"".charAt.bind',o=rt(this,t,i,e)+"["+this.replaceString("join")+"]([])";if(!(n<o.length))return o},replaceFalseFreeArray:function(e,t){return this.replaceStringArray(e,[ki],null,!1,t)},replaceJoinedArrayString:function(e,t){return ne(e,{maxLength:t,screwMode:2})},replaceStringArray:function(r,e,u,t,a){var n,i,o,c,s,f,_,l,R=r.length;return(u||3<R)&&(i=function(){var e=u?u.length:0,t=e+1,n=(a-7)/t-6,r=this.replaceString("split",{maxLength:n,optimize:!0});if(r){var i="";if(e){var n=(a-7-t*(r.length+6))/e-6,o=this.replaceString("join",{maxLength:n});if(!o)return;u.forEach(function(e){var t=Tt(this.replaceExpr(e.separator)),e=Tt(this.replaceString(e.joiner));i+="["+r+"]("+t+")["+o+"]("+e+")"},this)}return i+="["+r+"]"}}.call(this)),!u&&1<R&&(o=this.replaceString("concat",{maxLength:a,optimize:!0})),i&&(c=a-(i.length+2),e.forEach(function(e){var t,n=r.join(e.joiner),n=this.replaceJoinedArrayString(n,c);n&&(e=Tt(this.replaceExpr(e.separator)),t=n.length+e.length,c<t||(c=t,s=n,f=e))},this),s)&&(a=(n=s+i+"("+f+")").length-1),!u&&(R<=1||o&&!(4+(o.length+7)*(R-1)>a))&&(l={screwMode:t?Ii:0},r.some(function(e){e=Tt(ne(e,l));return _?_+="["+o+"]("+(e="[]"===e?"[[]]":e)+")":_="["+e+"]",_.length>a})||(n=_)),n}});var Mi,Gi,Yi,zi,Xi=S.prototype.codePointAt?function(e){return e.codePointAt()}:function(e){return e.length<2?e.charCodeAt():ee(e.charCodeAt(0),e.charCodeAt(1))},qi={appendLengthOf:Tn,optimizeSolutions:Tn},Ji=[],$i=[],Ki=36,Qi=9007199254740991,Vi=[],Zi=[,,,,,,,,,,,48,50,54,,64],eo=function(){for(var e=1/0,t=Ki;12<=t;--t){var n=ne(S(t)),r=n.length,r=(r<e&&(e=r),Vi[t]=n,$i[t]=Qi.toString(t).length);Ji[t]=Zi[r]+e}},to=d.FROM_CODE_POINT.mask,_r=(s(Je.prototype,{De:function(e,t,n,r){var i=this.ce,o=t,u=(null!=n&&(o+=":"+n),i[o]);u||(u=this.ke(t,n,r),i[o]=u),e.push(u)},ke:function(e,t,n){var r,f,i,o,u,_,l,R,v,I,L;switch(e){case"comma":l=(_=this).replaceExpr("[][SLICE_OR_FLAT].call"),R=l.length+2,r={appendLengthOf:Nt,optimizeSolutions:function(r,u,a,c){function e(e){for(;e<f;){var i,t,n,o=function(e,t){var n=0;if(bt(e[t]))for(var r=e.length-2;t<r&&","===e[++t].source&&bt(e[++t]);)++n;return n}(u,e);o?(t=function(e,t){for(var n=0,r=t+i;(r-=2)>t;)n+=e[r].appendLength;return n}(u,e,i=2*o+1)-R,e||i!==s||(c?t-=3:a&&(t+=2)),e&&u[e].isWeak&&(t+=2),0<t&&(n=function(e,t){for(var n=[],r=t+2*o;t<=r;t+=2){var i=e[t];n.push(i)}return function(){var e=n.map(function(e){return e.source}),t=e.join(),e=e.join(""),e=_.replaceString(e,{optimize:!0,screwMode:Ii});return new C(t,l+"("+e+")",F.OBJECT)}}(u,e),r.addCluster(e,i,n,t)),e+=1+i):e+=2}}var s=u.length,f=s-2;e(0),e(1)}};break;case"complex":r=function(r,e,t){function a(){return s}var c,s,n,i,f,_,o=0,u=N(),l=[],t=(Xt(e,function(e){var t=r.resolveCharacter(e).appendLength,n=(o+=t,u[e]);n?++n.count:(n=u[e]={appendLength:t,char:e,count:1},l.push(n))}),r.resolve(t,e)),R=t.appendLength,d=o-R;if(0<2+d){l.sort(function(e,t){return e.appendLength-t.appendLength});for(var p=R,A=e.length,h=0;A;++h){var T=l[h],S=T.appendLength;if(p<S*A)break;T=T.count;p-=S*T,A-=T}var R=p/A|0,E=(c=e,s=t,n=function(e,t){for(var n,r=N();n=e[t++];)r[n.char]=null;return r}(l,h),i=R,f=d,_=c.length,{appendLengthOf:function(e){e=e.source;if(null!=e&&e in n)return i},optimizeSolutions:function(e,t,n,r){for(var i,o=0,u=t.length-_;o<=u;++o)(function(e,t){for(var n=0;n<_;++n){var r=e[t+n],i=c[n];if(r.source!==i)return}return 1})(t,o)&&(i=f,u||(r&&!s.isString?i-=3:n&&(i+=2)),0<i)&&e.addCluster(o,_,a,i)}})}else E=qi;return E}(this,t,n);break;case"surrogatePair":i=(o=f=this).Ie(1e5).length,o=o.Le(65536).length,u=un(i,o)+1>>1,r={appendLengthOf:function(e){e=e.source;if(e&&1===e.length){e=e.charCodeAt();if(55296<=e&&e<=57343)return u}},optimizeSolutions:function(e,t,n){for(var r=t.length-1;r--;){var i,o,u,a=t[r],c=a.source,s=Ot(c,55296,56319);s&&(u=Ot(o=(i=t[r+1]).source,56320,57343))&&(s=ee(s,u),u=re(f.Ie(s),f.Le(s)),s=a.appendLength+i.appendLength-u.length-1,2===t.length&&n&&(s+=2),0<s)&&(a=function(e,t){return function(){return new C(e,t,F.STRING)}}(c+o,u),e.addCluster(r,2,a,s))}}};break;case"toString":eo&&(eo(),eo=null),v=this.resolveConstant("TO_STRING").replacement,I=v.length+7,L=N(),r={appendLengthOf:function(e){var t,n,e=e.source;if(null!=e&&/[bcghjkmopqvwxz]/.test(e))return null==(n=L[e])&&(t=vt(e),n=L[e]=(I+Ji[t])/$i[t]|0),n},optimizeSolutions:function(e,t,n){for(var r,i,o=t.length;0<o;){var u,a=t[--o];if(null!=(u=a.source)&&/^[\da-z]$/.test(u)){if(r||(r=o+1,i=!1),i||(u=a.source,i=L[u]<=a.appendLength),i&&2<=r-o){d=b=N=E=f=void 0;for(var c=e,s=t,f=o,_=r,l=n;;++f){var R=_-f;if("0"!==s[f].source){var d=b=N=E=void 0,p=c,A=s,h=f,T=R,S=l,E="",N=0,b="",d=0;do{var O=A[h+d],O=(N+=O.appendLength,O.source);if(E<O&&(E=O),b+=O,2<=++d&&I<N&&(S&&!h&&d===T&&(N+=2),function(e,t,n,r,i){do{var o=An(i,n);if(Qi<o)return null==s;var o=ne(je(o)),u=o.length+3,a=Vi[n],c=a.length,s=I+u+c,u=r-s;0<u&&(c=function(e,t){return function(){return new C(void 0,"(+("+e+"))["+v+"]("+t+")",F.STRING)}}(o,a),e.addCluster(t,i.length,c,u))}while(++n<=Ki)}(p,h,vt(E),N,b)))break}while(d<T)}if(R<=2)break}}}else r=void 0}}}}return r},Ce:function(e,t){var n,r,i,o,u,a=[];if(t){if("object"==typeof t?(n=!("default"in t&&!t.default),r=(u=function(e){e+="Opt";return e in t?!!t[e]:n})("comma"),i=u("complex"),o=u("surrogatePair"),u=u("toString")):r=i=o=u=!0,r&&0<=e.indexOf(",")&&this.De(a,"comma"),i)for(var c in Zr){var s=Zr[c];this.hasFeatures(s.mask)&&0<=e.indexOf(c)&&this.De(a,"complex",c,s.definition)}o&&this.hasFeatures(to)&&/[\ud800-\udbff][\udc00-\udfff]/.test(e)&&this.De(a,"surrogatePair"),u&&this.De(a,"toString")}return a}}),Mi=Rn("(?:(?!.)\\s)+(?:\\s|\ufeff|//(?:(?!\\*/|`).)*(?!.)|/\\*(?:(?!`)(?:[^*]|\\*[^/]))*?\\*/)*$"),s({},{Feature:d,encode:Lt})),no=d.Ee,ro=!1;gt(),s(Lt,{get permanentCaching(){return ro},set permanentCaching(e){ro=!!e,Pt()}}),"undefined"!=typeof self&&(self.JScrewIt=_r),"undefined"!=typeof module&&(module.exports=_r,exports.Feature=null,exports.encode=null)}();
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "jscrewit",
|
|
3
|
-
"version": "2.35.
|
|
3
|
+
"version": "2.35.2",
|
|
4
4
|
"description": "Converts plain JavaScript into JSFuck code, which consists of only six different characters: ! ( ) + [ ]",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"esoteric",
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
"build": "npm install && npm run -ws build && gulp",
|
|
40
40
|
"docs": "gulp docs",
|
|
41
41
|
"feature-info": "node dev/legacy/feature-info.js",
|
|
42
|
-
"
|
|
42
|
+
"release": "npm version -m 'Version %s' --tag-version-prefix=",
|
|
43
43
|
"test": "mocha --check-leaks --ui=ebdd test/{*,*/*,*/*/*}.spec.js"
|
|
44
44
|
},
|
|
45
45
|
"devDependencies": {
|
|
@@ -54,7 +54,7 @@
|
|
|
54
54
|
"ebdd": "latest",
|
|
55
55
|
"eslint-plugin-ebdd": "latest",
|
|
56
56
|
"expectations": "latest",
|
|
57
|
-
"
|
|
57
|
+
"glob": "latest",
|
|
58
58
|
"gulp": "latest",
|
|
59
59
|
"gulp-jsdoc3": "latest",
|
|
60
60
|
"gulp-rename": "latest",
|
package/readme.md
CHANGED
|
@@ -298,5 +298,5 @@ converted.
|
|
|
298
298
|
* [jsfuck.com](http://www.jsfuck.com)
|
|
299
299
|
* [jQuery *Screwed*](https://github.com/fasttime/jquery-screwed)
|
|
300
300
|
|
|
301
|
-
[npm badge]: https://
|
|
301
|
+
[npm badge]: https://img.shields.io/npm/v/jscrewit?logo=npm
|
|
302
302
|
[npm url]: https://www.npmjs.com/package/jscrewit
|