jscrewit 2.38.0 → 2.39.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -232,6 +232,16 @@ Available in Internet Explorer 10+, Safari before 14.1, and Android Browser. Thi
232
232
 
233
233
  ***
234
234
 
235
+ ### CREATE\_ELEMENT
236
+
237
+ > **CREATE\_ELEMENT**: [`ElementaryFeature`](ElementaryFeature.md)
238
+
239
+ Existence of the function document.createElement.
240
+
241
+ An alias for `ANY_DOCUMENT`.
242
+
243
+ ***
244
+
235
245
  ### DEFAULT
236
246
 
237
247
  > **DEFAULT**: [`PredefinedFeature`](PredefinedFeature.md)
@@ -424,6 +434,16 @@ Available in Chrome, Edge, Firefox, Safari 12+, Opera, and Node.js 11+.
424
434
 
425
435
  ***
426
436
 
437
+ ### FORMS
438
+
439
+ > **FORMS**: [`ElementaryFeature`](ElementaryFeature.md)
440
+
441
+ Existence of the object document.forms with string representation "\[object HTMLCollection\]".
442
+
443
+ An alias for `ANY_DOCUMENT`.
444
+
445
+ ***
446
+
427
447
  ### FROM\_CODE\_POINT
428
448
 
429
449
  > **FROM\_CODE\_POINT**: [`ElementaryFeature`](ElementaryFeature.md)
@@ -846,6 +866,16 @@ Features available in Node.js 7.6 to 9.
846
866
 
847
867
  ***
848
868
 
869
+ ### NODE\_NAME
870
+
871
+ > **NODE\_NAME**: [`ElementaryFeature`](ElementaryFeature.md)
872
+
873
+ Existence of the string document.nodeName that starts with a number sign \("#"\).
874
+
875
+ An alias for `ANY_DOCUMENT`.
876
+
877
+ ***
878
+
849
879
  ### NODECONSTRUCTOR
850
880
 
851
881
  > **NODECONSTRUCTOR**: [`ElementaryFeature`](ElementaryFeature.md)
@@ -418,6 +418,20 @@ Available in Internet Explorer 10+, Safari before 14.1, and Android Browser. Thi
418
418
 
419
419
  ***
420
420
 
421
+ ### CREATE\_ELEMENT
422
+
423
+ > **CREATE\_ELEMENT**: [`ElementaryFeature`](ElementaryFeature.md)
424
+
425
+ Existence of the function document.createElement.
426
+
427
+ An alias for `ANY_DOCUMENT`.
428
+
429
+ #### Inherited from
430
+
431
+ [`FeatureAll`](FeatureAll.md).[`CREATE_ELEMENT`](FeatureAll.md#create_element)
432
+
433
+ ***
434
+
421
435
  ### DEFAULT
422
436
 
423
437
  > **DEFAULT**: [`PredefinedFeature`](PredefinedFeature.md)
@@ -682,6 +696,20 @@ Available in Chrome, Edge, Firefox, Safari 12+, Opera, and Node.js 11+.
682
696
 
683
697
  ***
684
698
 
699
+ ### FORMS
700
+
701
+ > **FORMS**: [`ElementaryFeature`](ElementaryFeature.md)
702
+
703
+ Existence of the object document.forms with string representation "\[object HTMLCollection\]".
704
+
705
+ An alias for `ANY_DOCUMENT`.
706
+
707
+ #### Inherited from
708
+
709
+ [`FeatureAll`](FeatureAll.md).[`FORMS`](FeatureAll.md#forms)
710
+
711
+ ***
712
+
685
713
  ### FROM\_CODE\_POINT
686
714
 
687
715
  > **FROM\_CODE\_POINT**: [`ElementaryFeature`](ElementaryFeature.md)
@@ -1264,6 +1292,20 @@ Features available in Node.js 7.6 to 9.
1264
1292
 
1265
1293
  ***
1266
1294
 
1295
+ ### NODE\_NAME
1296
+
1297
+ > **NODE\_NAME**: [`ElementaryFeature`](ElementaryFeature.md)
1298
+
1299
+ Existence of the string document.nodeName that starts with a number sign \("#"\).
1300
+
1301
+ An alias for `ANY_DOCUMENT`.
1302
+
1303
+ #### Inherited from
1304
+
1305
+ [`FeatureAll`](FeatureAll.md).[`NODE_NAME`](FeatureAll.md#node_name)
1306
+
1307
+ ***
1308
+
1267
1309
  ### NODECONSTRUCTOR
1268
1310
 
1269
1311
  > **NODECONSTRUCTOR**: [`ElementaryFeature`](ElementaryFeature.md)
@@ -156,6 +156,13 @@ export interface FeatureAll
156
156
  */
157
157
  CONSOLE: ElementaryFeature;
158
158
 
159
+ /**
160
+ * Existence of the function document.createElement.
161
+ *
162
+ * An alias for `ANY_DOCUMENT`.
163
+ */
164
+ CREATE_ELEMENT: ElementaryFeature;
165
+
159
166
  /** Minimum feature level, compatible with all supported engines in all environments. */
160
167
  DEFAULT: PredefinedFeature;
161
168
 
@@ -298,6 +305,13 @@ export interface FeatureAll
298
305
  */
299
306
  FLAT: ElementaryFeature;
300
307
 
308
+ /**
309
+ * Existence of the object document.forms with string representation "\[object HTMLCollection\]".
310
+ *
311
+ * An alias for `ANY_DOCUMENT`.
312
+ */
313
+ FORMS: ElementaryFeature;
314
+
301
315
  /**
302
316
  * Existence of the function String.fromCodePoint.
303
317
  *
@@ -535,6 +549,13 @@ export interface FeatureAll
535
549
  /** Features available in Node.js 7.6 to 9. */
536
550
  NODE_7_6: PredefinedFeature;
537
551
 
552
+ /**
553
+ * Existence of the string document.nodeName that starts with a number sign \("#"\).
554
+ *
555
+ * An alias for `ANY_DOCUMENT`.
556
+ */
557
+ NODE_NAME: ElementaryFeature;
558
+
538
559
  /**
539
560
  * A string representation of native functions typical for V8 or for Internet Explorer but not for Firefox and Safari.
540
561
  *
package/lib/jscrewit.js CHANGED
@@ -1,4 +1,4 @@
1
- // JScrewIt 2.38.0 – https://jscrew.it
1
+ // JScrewIt 2.39.0 – https://jscrew.it
2
2
 
3
3
  (function () {
4
4
  'use strict';
@@ -1151,6 +1151,11 @@
1151
1151
  },
1152
1152
  attributes: { 'web-worker': 'no-console-in-web-worker' },
1153
1153
  },
1154
+ CREATE_ELEMENT:
1155
+ {
1156
+ description: 'Existence of the function document.createElement.',
1157
+ aliasFor: 'ANY_DOCUMENT',
1158
+ },
1154
1159
  DOCUMENT:
1155
1160
  {
1156
1161
  description:
@@ -1270,6 +1275,13 @@
1270
1275
  return available;
1271
1276
  },
1272
1277
  },
1278
+ FORMS:
1279
+ {
1280
+ description:
1281
+ 'Existence of the object document.forms with string representation "[object ' +
1282
+ 'HTMLCollection]".',
1283
+ aliasFor: 'ANY_DOCUMENT',
1284
+ },
1273
1285
  FROM_CODE_POINT:
1274
1286
  {
1275
1287
  description: 'Existence of the function String.fromCodePoint.',
@@ -1528,6 +1540,12 @@
1528
1540
  },
1529
1541
  attributes: { 'web-worker': 'web-worker-restriction' },
1530
1542
  },
1543
+ NODE_NAME:
1544
+ {
1545
+ description:
1546
+ 'Existence of the string document.nodeName that starts with a number sign ("#").',
1547
+ aliasFor: 'ANY_DOCUMENT',
1548
+ },
1531
1549
  NO_FF_SRC:
1532
1550
  {
1533
1551
  description:
@@ -3185,6 +3203,7 @@
3185
3203
  var CALL_ON_GLOBAL = Feature.CALL_ON_GLOBAL;
3186
3204
  var CAPITAL_HTML = Feature.CAPITAL_HTML;
3187
3205
  var CONSOLE = Feature.CONSOLE;
3206
+ var CREATE_ELEMENT = Feature.CREATE_ELEMENT;
3188
3207
  var DOCUMENT = Feature.DOCUMENT;
3189
3208
  var DOMWINDOW = Feature.DOMWINDOW;
3190
3209
  var ESC_HTML_ALL = Feature.ESC_HTML_ALL;
@@ -3195,6 +3214,7 @@
3195
3214
  var FF_SRC = Feature.FF_SRC;
3196
3215
  var FILL = Feature.FILL;
3197
3216
  var FLAT = Feature.FLAT;
3217
+ var FORMS = Feature.FORMS;
3198
3218
  var FROM_CODE_POINT = Feature.FROM_CODE_POINT;
3199
3219
  var FUNCTION_19_LF = Feature.FUNCTION_19_LF;
3200
3220
  var FUNCTION_22_LF = Feature.FUNCTION_22_LF;
@@ -3215,6 +3235,7 @@
3215
3235
  var MOZILLA = Feature.MOZILLA;
3216
3236
  var NAME = Feature.NAME;
3217
3237
  var NODECONSTRUCTOR = Feature.NODECONSTRUCTOR;
3238
+ var NODE_NAME = Feature.NODE_NAME;
3218
3239
  var NO_FF_SRC = Feature.NO_FF_SRC;
3219
3240
  var NO_IE_SRC = Feature.NO_IE_SRC;
3220
3241
  var NO_OLD_SAFARI_ARRAY_ITERATOR = Feature.NO_OLD_SAFARI_ARRAY_ITERATOR;
@@ -3598,7 +3619,7 @@
3598
3619
  ],
3599
3620
  '#':
3600
3621
  [
3601
- define('document.nodeName[0]', ANY_DOCUMENT),
3622
+ define('document.nodeName[0]', NODE_NAME),
3602
3623
  defineCharDefault(),
3603
3624
  ],
3604
3625
  // '$'
@@ -3742,9 +3763,9 @@
3742
3763
  ],
3743
3764
  'H':
3744
3765
  [
3745
- define('(RP_3_WA + document.createElement(false))[11]', ANY_DOCUMENT),
3746
3766
  define('btoa(true)[1]', ATOB),
3747
3767
  define('"".link()[3]', CAPITAL_HTML),
3768
+ define('(RP_3_WA + document.forms)[11]', FORMS),
3748
3769
  define
3749
3770
  ({ expr: '(RP_3_WA + Function("return history")())[11]', optimize: true }, HISTORY),
3750
3771
  define('(RP_1_WA + Audio)[10]', HTMLAUDIOELEMENT),
@@ -3765,9 +3786,9 @@
3765
3786
  ],
3766
3787
  'L':
3767
3788
  [
3768
- define('(RP_0_S + document.createElement(false))[11]', ANY_DOCUMENT),
3769
3789
  define('btoa(".")[0]', ATOB),
3770
3790
  define('(RP_3_WA + "".fontcolor())[11]', CAPITAL_HTML),
3791
+ define('(RP_0_S + document.forms)[11]', FORMS),
3771
3792
  define('(RP_0_S + Audio)[12]', HTMLAUDIOELEMENT),
3772
3793
  define
3773
3794
  (
@@ -3814,10 +3835,10 @@
3814
3835
  ],
3815
3836
  'M':
3816
3837
  [
3817
- define('(RP_0_S + document.createElement(false))[10]', ANY_DOCUMENT),
3818
3838
  define('btoa(0)[0]', ATOB),
3819
3839
  define('"".small()[2]', CAPITAL_HTML),
3820
3840
  define('(RP_0_S + self)[10]', DOMWINDOW),
3841
+ define('(RP_0_S + document.forms)[10]', FORMS),
3821
3842
  define('(RP_4_A + Date())[30]', GMT),
3822
3843
  define('(RP_0_S + Audio)[11]', HTMLAUDIOELEMENT),
3823
3844
  define('USER_AGENT[0]', MOZILLA),
@@ -3874,6 +3895,7 @@
3874
3895
  ),
3875
3896
  define('btoa(NaN)[0]', ATOB),
3876
3897
  define('"".fontcolor([])[20]', CAPITAL_HTML),
3898
+ define('(RP_1_WA + document.forms)[10]', FORMS),
3877
3899
  define('(RP_3_WA + Date())[30]', GMT),
3878
3900
  define('(RP_0_S + Audio)[10]', HTMLAUDIOELEMENT),
3879
3901
  defineCharDefault({ atob: false }),
@@ -3905,8 +3927,8 @@
3905
3927
  'V':
3906
3928
  [
3907
3929
  define('"v"[TO_UPPER_CASE]()'),
3908
- define('(RP_0_S + document.createElement("video"))[12]', ANY_DOCUMENT),
3909
3930
  define('btoa(undefined)[10]', ATOB),
3931
+ define('(RP_0_S + document.createElement("video"))[12]', CREATE_ELEMENT),
3910
3932
  defineCharDefault({ atob: false }),
3911
3933
  ],
3912
3934
  'W':
@@ -1,2 +1,2 @@
1
- // JScrewIt 2.38.0 – https://jscrew.it
2
- (()=>{function k(n,r){return Sn(r).forEach(function(e){var t=Nn(r,e);t.enumerable=!1,En(n,e,t)}),n}function U(t){var n=S();return Sn(t).forEach(function(e){n[e]=t[e]}),n}function B(e,t){try{var n=On(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 H(e,t){return e.saving-t.saving||t.length-e.length||j(t,e)}function j(e,t){return t.start-e.start}function M(){var e,t=[],n=this.clusters;if(n.length){for(n.sort(H);e=((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])&&(G(i,0),delete o[c]),++c<s;);for(var _=1;_<u;)(i=o[a-_++])&&(G(i,_),i.length=_);return r}})(this.startLinks,n,this.maxLength);)t.push(e);t.sort(j)}return t}function G(e,t){for(var n=e.length;n-- >t;){var r=e[n];r&&delete r.saving}}function Y(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");Cn(e,t),e.prototype=null===t?Object.create(t):(n.prototype=t.prototype,new n)}function z(e,t){return e[Pn]===t[Pn]&&e[yn]===t[yn]}function J(e,t){var n;return(n=t[Pn])===(n&e[Pn])&&(n=t[yn])===(n&e[yn])}function X(e,t){var n=e[Pn]|t[Pn];return mn([n,e[yn]|t[yn]])}function q(e,t){for(var n=0,r=qn(t);n<r.length;n++){var i=r[n],o=Xn(t,i);o.enumerable=!1,zn(e,i,o)}}function $(e){if("symbol"==typeof e)throw new Kn("Cannot convert a symbol to a string");return $n(e)}function K(e,t){zn(e,"mask",{value:t})}function Q(e,i,o,u,a,c,s){return(!u.length||e&&!(()=>{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 V(e){throw new Mn("Unknown feature ".concat(Gn(e)))}function Z(e,t,n){t=t.toLocaleString(e);return n.test(t)}function ee(e){return"Features available in "+e+"."}function te(t){return function(){try{var e=self+""}catch(e){return!1}return t.test(e)}}function ne(){var e=arguments,t=e.length-2,n=e[t],r=e[1+t],e=ue(e,0,t),t=ue(n,r);return rn(e,t),this.apply(null,e)}function re(e,t){return{definition:e,mask:t}}function s(e){return re(e,ue(arguments,1).reduce(function(e,t){return X(e,t.mask)},xn))}function ie(n,e){e=e.map(function(e){var t=n[e.definition];return re(t.definition,X(e.mask,t.mask))});return e.available=n,e}function oe(e){e._=ne}function ue(e,t,n){return on(e,t,n)}function ae(e,t){return(e-55296<<10)+t+9216}function ce(e){return un(e+1).join("0")}function se(e,t){return Bn.replaceString(e,t)}function _e(){var n,r=1/0;return tn(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 fe(){for(var e=[],t=0;t<arguments.length;t++)e[t]=arguments[t];var n=r.apply(void 0,e);return function(e){return en(n,e)}}function le(e){for(var t=0,n=or;t<n.length;t++){var r=n[t];if(((e,n)=>!(e.length>n.length)&&e.every(function(e,t){return en(e,n[t].type)}))(r.typeSetList,e))return r}}function Ae(e){return"undefined"!==e?"undefined":"falsefalse"}function _(e,t){return s._({block:e,shiftedIndex:t},arguments,2)}function Re(e){var t=Tr[e];if(!t){var n=f.AT,r=f.FF_SRC,i=f.IE_SRC,o=f.NO_FF_SRC,u=f.NO_IE_SRC,a=f.NO_V8_SRC,c=f.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),s(0,r),s(0,i),s(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,f.INCR_CHAR,u),_("RP_0_S",(e+2)/10+" + FH_SHIFT_3",a),s(0,r),s(0,i),s(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),s(6,r),s(5,i),s(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),s(5,r),s(4,i),s(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),s(3,r),s(3,i),s(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),s(1,r),s(0,i),s(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),s(4,r),s(3,i),s(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),s(3,r),s(1,i),s(6,c)]}t.cacheKey="FBP:"+e,Tr[e]=t}return t}function pe(e){var t=Er[e];if(!t){var n=f.IE_SRC,r=f.INCR_CHAR,i=f.NO_IE_SRC;switch(e){case 3:case 13:t=[_("RP_4_A + [FHP_3_WA]",e+7),_("FHP_8_S",e+8,r),s(6,n),s(0,i)];break;case 6:case 16:t=[_("FHP_5_A",e+5),s(3,n),s(4,i)];break;case 8:case 18:t=[_("FHP_3_WA",e+3),_("RP_2_WS",(e+2)/10+" + FH_SHIFT_1",r),s(1,n),s(3,i)];break;case 9:case 19:t=[_("RP_1_WA",(e+1)/10+" + FH_SHIFT_1"),s(0,n),s(1,i)];break;case 11:t=[_("RP_0_S","1 + FH_SHIFT_2"),s(0,n),s(0,i)];break;case 12:t=[_("FHP_8_S",20),s(0,n),s(0,i)];break;case 14:t=[_("[RP_1_WA] + FHP_5_A",20),s(5,n),s(6,i)];break;case 15:t=[_("FHP_5_A",20),s(4,n),s(5,i)];break;case 17:t=[_("FHP_3_WA",20),_("RP_3_WA","2 + FH_SHIFT_1",r),s(3,n),s(3,i)]}t.cacheKey="FHP:"+e,Er[e]=t}return t}function de(e,t){var n=(e=>{for(var t=!1;"value"in e&&ve(e);){var n=e.value;if(!an(n))return null==n&&t?"":E(n);if(!(e=n[0]))return"";t=!0}})(t);null!=n&&(t.str=n),t.type="get",he(e,t)}function he(e,t){e=e.opsStack;e[e.length-1].push(t)}function Te(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=Fe(t,e.mod||"",e.pmod),e.mod=t,e.arithmetic=!0)}function Ee(e){e=i(e,Li);if(e){var t=fn('"'+e+'"');if(/^[$A-Z_a-z][$\w]*$/.test(t))return{escaped:t.length<e.length,identifier:t}}}function Ne(e){return _n("return "+e)()}function Se(e,t){if(Le(e)&&Me(t))return ge(t,{value:[e]}),Pe}function Oe(e,t){if(We(t))return ge(t,e),Pe}function Ie(e,t){if(Le(e)&&Me(t))return de(t,e),Pe}function be(e,t){if(Le(e)&&We(t))return e.type="param-call",he(t,e),Pe}function Le(e){var t=e.mod||"";if(!/-/.test(t)&&(!/#$/.test(t)||e.ops.length))return e.mod=t.replace(/#/g,"++"),e}function ve(e){return!e.mod&&!e.ops.length}function Fe(e,t,n){e=(e+t).replace(/\+\+|--/,"+").replace(/\+-|-\+/,"-").replace(/!-/,"!+").replace(/\+#/,"#").replace(/!\+!/,"!!").replace("!!!","!");return n?e.replace(/\+$/,""):e}function Ce(e){e="^(?:"+Ye(e)+")";return On(e)}function ge(e,t){e.opsStack.push([]),ke(e,t)}function Pe(e){if(Be(e))return We(e)?(he(e,{type:"call"}),Pe):(we(e,be),me);if(je(e))return we(e,Ie),me;if(i(e,/^\./))return(t=Ee(e))?(de(e,{ops:[],value:t.identifier}),Pe):void 0;var t=xe(e),n=e.opsStack.pop();if(n.length&&(t.arithmetic=!1,t.mod||t.pmod)){if(!Le(t))return;t={terms:[t]}}t.ops=n=(t.ops||[]).concat(n),!n.length||t.mod||t.pmod||/^.*$/.test(e.separator)&&(n=i(e,/^\+\+/))&&(t.pmod=n,t.arithmetic=!0);n=e,e=t,t=xe(n);if(Te(e,n.modStack.pop()),t){if(!Le(e))return;var r=t.terms;if(r&&ve(t))r.push(e),e.arithmetic||(t.arithmetic=!1);else{if(!Le(t))return;t={arithmetic:t.arithmetic&&e.arithmetic,ops:[],terms:[t,e]}}}else t=e;r=i(n,/^(?:\+(?!\+)|-(?!-))/);return r?("-"!==r||t.arithmetic||Te(t,"+"),De(n,Ue(n,"+"===r?"":r)),ke(n,t),ye):n.finalizerStack.pop()(t,n)}function ye(e){var t=i(e,Ci);if(t)return ge(e,{value:Ne(t)}),Pe;t=i(e,bi);if(t)return ge(e,{arithmetic:!0,value:Ne(t)}),Pe;if(je(e))return Me(e)?(ge(e,{value:[]}),Pe):(we(e,Se),me);if(Be(e))return we(e,Oe),me;t=Ee(e);if(t){var n,r=t.identifier,t=t.escaped;if(Ii.indexOf(n=r)<0&&(!t||Oi.indexOf(n)<0))return ge(e,{identifier:r}),Pe}}function me(e){if(e.finalizerStack.length<=1e3)return De(e,Ue(e,"")),ke(e),ye}function xe(e){return e.unitStack.pop()}function we(e,t){e.finalizerStack.push(t)}function De(e,t){e.modStack.push(t)}function ke(e,t){e.unitStack.push(t)}function i(e,t){var n,r=e.data,t=t.exec(r);if(t)return t=t[0],r=r.slice(t.length),(n=Fi.exec(r)[0])&&(r=r.slice(n.length)),e.data=r,e.separator=n,t}function Ue(e,t){for(var n;n=i(e,/^(?:!|\+\+?|-(?!-))/);)t=Fe(t,n.replace(/\+\+/g,"#"));return t}function Be(e){return i(e,/^\(/)}function We(e){return i(e,/^\)/)}function He(e){e.data=e.data.replace(vi,"")}function je(e){return i(e,/^\[/)}function Me(e){return i(e,/^]/)}function Ge(e,t){return"(?:"+(null==(r=Si[t])&&(n=Ni[t],Si[t]=r=Ye(n)),r)+")";var n,r}function Ye(e){return e.replace(/#(\w+)/g,Ge)}function ze(e){var t,e={data:e,modStack:[],opsStack:[],finalizerStack:[Le],unitStack:[]};return He(e),!e.data||((t=(e=>{for(var t=me;"function"==typeof t;t=t(e));return t})(e))&&(He(e),!e.data)?t:void 0)}function Je(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:M,maxLength:0,startLinks:S()},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,_=new ar,f=s.length;if(f){var l=0;do{var A=s[l]}while(_.append(A),++l<f)}else _.append(lr);!_.isString&&e&&_.append(lr);t=_.replacement;return n&&_.isLoose?"("+t+")":t}function Xe(e,t,n){this.te=t,this.ne=dn(2,t-1),this.ee=n,this.re=e,this.$=[],this.ie=-3}function qe(e,t,n){return+(e+t+"e"+n)}function $e(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=(()=>{for(var e=u-1,t=o.slice(0,e),n=+o[e],r=qe(t,n,a);;){var i=n-1;if(qe(t,i,a)!==r)break;n=i}return t+n})();return 0<=a?a<10?e+ce(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,((e,t,n)=>{var r,i;if(e+=ce(r=-93<t%100?-7<t%10?0:10+t%10:100+t%100),6*r+26+136+(r=E(-(t-=r)),i=0,tn(r,function(e){e=Pi[e];i+=e}),i)<n)return e+"e"+t})(e,a,73+6*t)||"."+ce(t)+e)}function Ke(e,t){return an(t)?e.findDefinition(t):t}function Qe(e){var t="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"[e>>2]+Zr[3&e],n="("+this.replaceString(t)+")",t=(2<t.length&&(n+=Ve(0)),Ke(this,ri[e>>4])),r=t+Ke(this,ei[15&e]),t=Ve(1+(t.length-2)/4*3),r="("+this.replaceString(r)+")"+t,t=ni[e>>6],e=t+ti[63&e],t=Ve(2+(t.length-3)/4*3),n=_e(n,r,"("+this.replaceString(e)+")"+t);return this.resolveConstant("atob").replacement+n}function Ve(e){return"["+se(E(e))+"]"}function Ze(e){var t=e<65536?this.findDefinition(ci):"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 et(e,t,n){var r=e.findDefinition(Ai),t=t.toString(16),i=(n=n?ce(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,wi),t=e.replaceString(i,xi),r.length<t.length)?n:i}function tt(e){var t,e=65536<=e?(n="u{"+et(this,e)+"}",!(t=!1)):253<=e||e in Di?(t=5<(n="u"+et(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 nt(e){var t,e=e<256?(t=2<(n=et(this,e,2)).length,!1):(t=5<(n="u"+et(this,e,4)).length,!0),n='unescape("%'+n+'")';return t&&(n+="[0]"),this.replaceExpr(n,{default:!1,toStringOpt:e})}function rt(e){this.mask=e,this.oe=Tn(Ui),this.ue=Tn(Bi),this.ae=S(),this.ce=S(),this.se=[]}function it(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=Hi(e.mask),o="Circular reference detected: "+r.join(" < ")+" – "+i,k(u=new In(o),{chain:r,feature:i}),u;n.call(e)}finally{a.pop()}}function ot(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 ut(e,t,n){var r=t in e.constantDefinitions?e.resolveConstant(t):hr[t],e=(r||ct(e,"Undefined identifier "+t),n&&r.isLoose||1<n&&"!"===r.replacement[0]),t=r.replacement;return e?"("+t+")":t}function at(e,t,n,r,i){r=r.call(e,n),e=new fr(t,r,F.STRING);return e.entryCode=i,e}function ct(e,t){var e=e.se,n=e.length;throw n&&(t+=" in the definition of "+e[n-1]),new In(t)}function st(n,r){function u(e,t){e=hn(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;;++f){var o=a[f];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=S(),A=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(;_.length<=e;){A.forEach(i);var t=s[c++];t&&rn(_,t)}return _[e]}}function _t(i,e,t,n,r){var o,u,a=e.length,c=i.perfLog,s=[],_=(s.name=r,s.inputLength=a,c.push(s),hn(e));return Sn(t).forEach(function(e){_[e]=t[e]}),n.forEach(function(e){var t,n=Xi[e],e={strategyName:e},r=a<n.minInputLength?"skipped":i.hasFeatures(n.mask)?(i.perfLog=e.perfLog=[],r=new cn,t=null!=o?o.length:NaN,n=n.call(i,_,t),t=new cn-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 ft(e,t,n,r,i,o,u){t=nn(t,function(e){return n[e]});return e.replaceStringArray(t,r,i,o,u)}function lt(e,t,n,r){return t+"["+e.replaceString("map",{optimize:!0})+"]("+e.replaceExpr(n,!0)+"("+r+"))"}function At(e,t,n,r){n=e.findDefinition(si)(n,r);return t+"["+e.replaceString("map",{optimize:!0})+"]("+e.replaceExpr('Function("return '+n+'")()',!0)+")["+e.replaceString("join")+"]([])"}function Rt(e,t,n,r,i,o){var u="strCodeCache"+(i?"Radix"+i:""),r=r(t.valueOf(),i,t[u]||(t[u]=S())),t=e.replaceFalseFreeArray(r,o);if(t&&!((i=i?At(e,t,n,"parseInt(undefined,"+i+")"):r.length>e._e?At(e,t,n,"undefined"):(u=e.findDefinition(Ri)+"."+n+"(",e.resolveConstant("Function").replacement+"("+e.replaceString(u,{optimize:!0})+"+"+t+"+"+e.resolveCharacter(")").replacement+")()")).length>o))return i}function pt(e,t,n,r,i){var o;if(!n||t){if(null==(o=Tt(e,t,!n||n.forceString?yi:0,r,i)))return}else o="";if(!((o=n?n.call(e,o):o).length>i))return o}function dt(e,t,n,r,i,o,u){var a=o.valueOf(),o=Nt(o),c=S(),s=t(a),t=o.map(function(e,t){t=n(t);return c[e.char]=t,s+=e.count*t.sortLength,t}),o=ht(e,o.map(function(e){return e.char}),u-s);if(o){var r=e.fe(r,n,t),_=u-o.length,t=e.replaceStringArray(t,r,null,!0,_-s);if(t){r=ft(e,a,c,i,null,!0,_-t.length);if(r)return a=e.findDefinition(_i),i=lt(e,r,a("undefined",".indexOf(undefined)"),t),e.createDictEncoding(o,i,u)}}}function ht(e,t,n){if(!(n<0)){e=_t(e,t.join(""),{screwMode:yi},["byCodePointsRadix4","byCharCodesRadix4","byCodePoints","byCharCodes","plain"],"legend");if(e&&!(e.length>n))return e}}function Tt(e,t,n,r,i){e=_t(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 Et(e,t){var n=[Gi],e=e(t.length-1).joiner;return null!=e&&n.push({joiner:e,separator:e}),n}function Nt(e){var t,n,r=e.freqList;return r||(t=S(),tn(e,function(e){(t[e]||(t[e]={char:e,charCode:e.charCodeAt(),count:0})).count++}),n=Sn(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 St(){return[Mi]}function Ot(e){return e.length?e.join(":"):"0"}function It(e){return Rn(4*(e.length-1)-3,0)}function bt(){return-1}function Lt(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 vt(e,t,n){for(var r=[],i=B(".","gsu")||/[\ud800-\udbff][\udc00-\udfff]|[^]/g;o=i.exec(e);){var o=o[0],u=n[o];null==u&&(u=n[o]=Vi(o).toString(t)),r.push(u)}return r}function Ft(e){return"[][[]]"===e&&(e+="+[]"),e}function Ct(e){return this.resolveConstant("Function").replacement+"("+e+")()"}function gt(e){return this.replaceExpr('Function("return eval")()')+"("+e+")"}function Pt(e){if(","===e.source)return 0}function yt(e){e=e.source;return e&&1===e.length}function mt(e,t,n){if(e&&1===e.length){e=e.charCodeAt();if(t<=e&&e<=n)return e}}function xt(e){return Ln(e,no)+1}function wt(e){$i.set(e.mask,e)}function Dt(e,t){e=(e=>{if("symbol"==typeof e)throw new bn("Cannot convert a symbol to a string");return E(e)})(e);var n=(t=t||{}).features,r=t.runAs,r=void 0!==r?kt(r,"runAs"):kt(t.wrapWith,"wrapWith"),i=r[0],r=r[1],o=(t.trimCode&&(u=(u=e).replace(/^(?:\s|\uFEFF|\/\/.*(?!.)|\/\*[\s\S]*?\*\/)*(?!.)\s/,""),e=u=(o=qi.exec(u))&&"\\"!==u[(o=o.index)-1]?u.slice(0,o):u),t.perfInfo),u=co(n);return(t=$i.get(u))||(wt(t=new rt(u)),Wt()),(Ki=t).le(e,i,r,o)}function kt(e,t){var n=["text","express"],r=["text"];if(void 0===e)return[gt,n];switch(E(e)){case"call":return[Ct,r];case"eval":return[gt,r];case"express":return[,["express"]];case"express-call":return[Ct,n];case"express-eval":return[gt,n];case"none":return[,r]}throw new sn("Invalid value for option "+t)}function Ut(){Qi=void 0,so||(Bt(),wt(Ki))}function Bt(){$i=new Dn}function Wt(){!so&&!Qi&&1<$i.size&&(Qi=vn(Ut))}function Ht(e){return"_".concat(e)}function jt(){this.Ae=Object.create(null),this.Re=0}function Mt(){return null!==wn&&wn.apply(this,arguments)||this}function Gt(){return null!==kn&&kn.apply(this,arguments)||this}function Yt(){return Yn(null)}function zt(){}function Jt(){var e=null!==ur&&ur.apply(this,arguments)||this;return e.$=[],e}function Xt(e,t,n){var r=cr.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 qt(e,t,n){var r=_r.call(this)||this;return r.source=e,r.replacement=t,r.type=n,r}function o(t){function e(e){return!(t&&e in t)||t[e]}return s((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 e(e,t){var n,r=e,i=pe(n=t);return s._(function(e){return this.de(e,r,n,i,ai)},arguments,2)}function $t(e){return s((t=e,function(e){return this.he(e,t,Re,ui)}));var t}function Kt(e){var t=e;return s._(function(e){return this.he(e,t,pe,ai)},arguments,1)}function Qt(e,t,n){t="("+t+")[TO_LOCALE_STRING]("+e+")";return null!=n&&(4<n?t="("+dr[10-n]+" + "+t+")[10]":t+="["+n+"]"),s._(t,Br,arguments,3)}function Vt(e,t,n){var r;hr[e]=(r=t,new sr(e,function(){return Bn.replaceExpr(r)},n))}function u(e,t,n,r){ii[e]=[Qt._(t,n,r,arguments,4),o()]}function Zt(e,t){for(var n=E.fromCharCode,r=0;r<=9;++r){var i=n(t+r);u._(i,e,r,void 0,arguments,2)}}function t(e,t,n,r){return e.minInputLength=t,e.expressionMode=n=void 0!==n&&n,void 0===r&&(r=f.DEFAULT),e.mask=r.mask,e}function en(e,t){return 0!=(e&t)}var tn,nn,rn,on,un=Array,an=un.isArray,cn=Date,sn=Error,_n=Function,fn=JSON.parse,ln=JSON.stringify,An=Math.abs,Rn=Math.max,pn=Math.min,dn=Math.pow,hn=Object,Tn=hn.create,En=hn.defineProperty,Nn=hn.getOwnPropertyDescriptor,Sn=hn.keys,On=RegExp,E=String,In=SyntaxError,bn=TypeError,Ln=parseInt,vn=setTimeout,S=Tn.bind(null,null,void 0),Fn=_n(),Cn=(a=un.prototype,Vn=(n=_n.prototype).apply,(n=n.call).bind(a.every),tn=n.bind(a.forEach),nn=n.bind(a.map),on=n.bind(a.slice),rn=Vn.bind(a.push),function(e,t){return(Cn=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)}),gn=function(){return(gn=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)},Pn=0,yn=1,mn=function(e){return Object.freeze(e)},xn=mn([0,0]),n=(Object.defineProperty(jt.prototype,"size",{get:function(){return this.Re},enumerable:!1,configurable:!0}),jt.prototype.has=function(e){return Ht(e)in this.Ae},jt.prototype.Te=function(e,t){var e=Ht(e),n=this.Ae;e in n||++this.Re,n[e]=t},jt);Y(Mt,wn=n),Mt.prototype.get=function(e){e=Ht(e);return this.Ae[e]},Mt.prototype.set=function(e,t){this.Te(e,t)};var wn,Dn=Mt;Y(Gt,kn=n),Gt.prototype.add=function(e){this.Te(e,void 0)};var kn,Un,f,Bn,Wn,Hn=Gt,jn=Array.isArray,Mn=Error,Gn=JSON.stringify,Yn=Object.create,zn=Object.defineProperty,Jn=Object.freeze,Xn=Object.getOwnPropertyDescriptor,qn=Object.keys,$n=String,Kn=TypeError,Qn={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:te(/^\[object [\S\s]*Window]$/),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())}},ASYNC_FUNCTION:{description:"Support for async functions, which return Promise object.",check:function(){try{return Function("return async function(){}"),!0}catch(e){}}},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"}},CALL_ON_GLOBAL:{description:"The ability to call a function on the global object when invoking Function.prototype.call without binding.",check:function(){try{if([].concat.call()[0])return!0}catch(e){}}},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"],attributes:{"web-worker":"web-worker-restriction"}},DOMWINDOW:{description:'Existence of the global object self having the string representation "[object DOMWindow]".',check:te(/^\[object DOMWindow]$/),includes:["ANY_WINDOW"],excludes:["OBJECT_W_SELF"],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("&quot;&lt;&gt;")},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 "&quot;".',check:function(){return~"".fontcolor('"').indexOf("&quot;")}},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("&quot;<>")},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"}},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}},ITERATOR_HELPER:{description:"Availability of iterator helpers.",check:function(){return"function"==typeof Iterator}},JAPANESE_INFINITY:{description:'Japanese string representation of Infinity ending with "∞".',check:function(){return/∞$/.test((1/0).toLocaleString("ja"))}},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 Z("ar",NaN,/^ليس/)&&Z("ar-td",234567890.1,/^٢٣٤٬?٥٦٧٬?٨٩٠٫١/)&&Z("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 Z("ar",NaN,/^ليس.رقم/)&&Z("ar-td",234567890.1,/^٢٣٤٬?٥٦٧٬?٨٩٠٫١/)&&Z("bn",1234567890,/^১,২৩,৪৫,৬৭,৮৯০/)&&Z("fa",1234567890,/^۱٬۲۳۴٬۵۶۷٬۸۹۰/)&&Z("fa",NaN,/^ناعد/)&&Z("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))}},MOZILLA:{description:'Existence of user agent string navigator.userAgent that starts with "Mozilla".',check:function(){return"object"==typeof navigator&&/^Mozilla/.test(navigator.userAgent)}},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]".',check:function(){if(Array.prototype.entries)return[].entries()+""=="[object Array Iterator]"},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_ARRAY_ENTRIES_CTOR:{description:"The property that the Array.prototype.entries().constructor is the Object constructor.",check:function(){return Array.prototype.entries&&[].entries().constructor===Object}},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_SELF:{description:'The property that the string representation of the global object self starts with "[object W".',check:te(/^\[object W/),includes:["SELF_OBJ"],excludes:["DOMWINDOW"],attributes:{"web-worker":"non-ie-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:te(/^\[object /),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:te(/^\[object Window]$/),includes:["ANY_WINDOW","OBJECT_W_SELF"],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","MOZILLA","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 17.3 or Android Browser.",includes:["ANY_DOCUMENT","ARROW","ASYNC_FUNCTION","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","INCR_CHAR","INTL","JAPANESE_INFINITY","LOCALE_INFINITY","LOCALE_NUMERALS_EXT","LOCATION","MOZILLA","NAME","NO_IE_SRC","NO_OLD_SAFARI_ARRAY_ITERATOR","REGEXP_STRING_ITERATOR","STATUS","WINDOW"],attributes:{"char-increment-restriction":null,"non-ie-restriction":null,"web-worker-restriction":null}},ANDRO_4_0:{families:["Android Browser"],versions:["4.0"],includes:["ANY_DOCUMENT","ATOB","CALL_ON_GLOBAL","CONSOLE","DOMWINDOW","ESC_HTML_ALL","FUNCTION_22_LF","GMT","HISTORY","INCR_CHAR","LOCATION","MOZILLA","NAME","STATUS","V8_SRC"]},ANDRO_4_1:{inherits:"ANDRO_4_0",versions:[["4.1",,"4.3"]],includes:{CALL_ON_GLOBAL:!1,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,JAPANESE_INFINITY:!0,LOCALE_INFINITY:!0,LOCALE_NUMERALS_EXT:!0,PLAIN_INTL:!0,SHORT_LOCALES:!0,WINDOW:!0},attributes:{"no-console-in-web-worker":null,"non-ie-restriction":null,"web-worker-restriction":null}},CHROME_PREV:{description:ee("the previous to current versions of Chrome and Edge"),aliasFor:"CHROME_122"},CHROME:{description:ee("the current stable versions of Chrome, Edge and Opera"),aliasFor:"CHROME_122"},CHROME_122:{families:["Chrome","Edge","Opera"],versions:[["122"],["122"],["108"]],includes:["ANY_DOCUMENT","ARROW","ASYNC_FUNCTION","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","INCR_CHAR","INTL","ITERATOR_HELPER","JAPANESE_INFINITY","LOCALE_INFINITY","LOCALE_NUMERALS_EXT","LOCATION","MOZILLA","NAME","NO_OLD_SAFARI_ARRAY_ITERATOR","REGEXP_STRING_ITERATOR","STATUS","V8_SRC","WINDOW"],attributes:{"char-increment-restriction":null,"non-ie-restriction":null,unstable:null,"web-worker-restriction":null}},FF_ESR:{description:ee("the current version of Firefox ESR"),aliasFor:"FF_90"},FF_PREV:{description:ee("the previous to current version of Firefox"),aliasFor:"FF_90"},FF:{description:ee("the current stable version of Firefox"),aliasFor:"FF_131"},FF_90:{families:["Firefox"],versions:[["90",,"130"]],includes:["ANY_DOCUMENT","ARROW","ASYNC_FUNCTION","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","INCR_CHAR","INTL","JAPANESE_INFINITY","LOCALE_INFINITY","LOCALE_NUMERALS_EXT","LOCATION","MOZILLA","NAME","NO_OLD_SAFARI_ARRAY_ITERATOR","OBJECT_ARRAY_ENTRIES_CTOR","REGEXP_STRING_ITERATOR","SHORT_LOCALES","STATUS","WINDOW"],attributes:{"char-increment-restriction":null,"non-ie-restriction":null,unstable:null,"web-worker-restriction":null}},FF_131:{inherits:"FF_90",versions:[["131"]],includes:{ITERATOR_HELPER:!0,OBJECT_ARRAY_ENTRIES_CTOR:!1}},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","MOZILLA","OBJECT_L_LOCATION_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:{ANY_DOCUMENT:!0,DOCUMENT:!1,GMT:!0,JAPANESE_INFINITY:!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,JAPANESE_INFINITY:!0,LOCALE_INFINITY:!0,NO_OLD_SAFARI_ARRAY_ITERATOR:!0,OBJECT_ARRAY_ENTRIES_CTOR:!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",,"7.5"]],attributes:{"char-increment-restriction":null}},NODE_7_6:{inherits:"NODE_5",versions:[["7.6",,"9"]],includes:{ASYNC_FUNCTION:!0}},NODE_10:{inherits:"NODE_7_6",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",,"21"]],includes:{AT:!0}},NODE_22:{inherits:"NODE_16_6",versions:[["22"]],includes:{ITERATOR_HELPER:!0,OBJECT_ARRAY_ENTRIES_CTOR:!1}},SAFARI_7_0:{families:["Safari"],versions:["7.0"],includes:["ANY_DOCUMENT","ATOB","BARPROP","CONSOLE","ESC_HTML_QUOT_ONLY","ESC_REGEXP_LF","ESC_REGEXP_SLASH","FF_SRC","GENERIC_ARRAY_TO_STRING","GLOBAL_UNDEFINED","GMT","HISTORY","INCR_CHAR","LOCATION","MOZILLA","NAME","NODECONSTRUCTOR","OBJECT_L_LOCATION_CTOR","OLD_SAFARI_LOCATION_CTOR","STATUS","WINDOW"],attributes:{"char-increment-restriction":null,"no-console-in-web-worker":null,"non-ie-restriction":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,OBJECT_ARRAY_ENTRIES_CTOR:!0}},SAFARI_10_0:{inherits:"SAFARI_9",versions:["10.0"],includes:{ARROW:!0,JAPANESE_INFINITY:!0,LOCALE_INFINITY:!0,LOCALE_NUMERALS_EXT:!0,NODECONSTRUCTOR:!1,OBJECT_L_LOCATION_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_10_1:{inherits:"SAFARI_10_0",versions:[["10.1","11"]],includes:{ASYNC_FUNCTION:!0}},SAFARI_12:{inherits:"SAFARI_10_1",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_15_4:{inherits:"SAFARI_14_1",versions:[["15.4",,"17.3"]],includes:{AT:!0}},SAFARI_17_4:{inherits:"SAFARI_15_4",versions:[["17.4",,"17.6"]],includes:{FUNCTION_19_LF:!0,FUNCTION_22_LF:!1}},SAFARI:{description:ee("the current stable version of Safari"),aliasFor:"SAFARI_18"},SAFARI_18:{inherits:"SAFARI_17_4",versions:[["18"]],includes:{SHORT_LOCALES:!1}}},Vn=Sn(Qn).filter(function(e){e=Qn[e].check;return e&&e()}),Zn=(Qn.AUTO={description:ee("the current environment"),includes:Vn},f=((P,y)=>{function u(){for(var e=[],t=0;t<arguments.length;t++)e[t]=arguments[t];for(var n=xn,r=0,i=e;r<i.length;r++)n=X(n,s(i[r]));1<e.length&&a(n);var o=this instanceof u?this:Yn(B);return K(o,n),o}function n(e){for(var t=xn,n=e.length,r=0;r<n;++r)t=X(t,i(e[r]));return t}function c(e){var t=Yn(B);return K(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?Q(r,"<","",this.canonicalNames,",",">",n-3):i],o=(this.elementary&&i.push("(elementary)"),this.check&&i.push("(check)"),this.attributes);return"object"==typeof o&&(o=f(gn({},o),t),i.push(o)),Q(r,"[Feature"," ",i,"","]",n-1)}function o(t){return r.every(function(e){return!J(t,e)})}function i(e){return(e instanceof u?e:((e=$(e))in x||V(e),x[e])).mask}function s(e){var t;return jn(e)?(t=n(e),1<e.length&&a(t)):t=i(e),t}function a(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?$(n[e]):void 0},i=r("description"),u=void 0;if("aliasFor"in n){var a=$(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)),A=n.check,A=void 0!==A?(c=(()=>{for(var e=j,t=0;e[t>>5]&1<<(31&t);t++)if(63===t)throw RangeError("Mask full");var n=[0,0];return n[t>>5]=1<<(31&t),mn(n)})(),j=X(j,c),t=A,function(){return!!t()}):(c=xn,null),R=n.includes,p=W[o]=Yt();if(jn(R))for(var d=0,h=R;d<h.length;d++)p[T=h[d]]=null;else{if(null!=a)for(T in W[a])p[T]=null;if(R)for(var T,E=0,N=qn(R);E<N.length;E++)R[T=N[E]]?p[T]=null:delete p[T]}for(T in p)c=X(c,m(T));"versions"in n&&(C=n.families,s=n.versions,null!=a&&null==C&&(C=H[a]),H[o]=C,_=r("compatibilityTag"),f=r("compatibilityShortTag"),l=C.map(function(e,t){e=$(e);var n,r,t=s[t],i=(r=jn(t)?(i=t.length,r=$(t[0]),i=i<2?void 0:$(t[i-1]),n=2===t.length,Jn({from:r,to:i,dense:n})):$(t),Jn({family:e,featureName:o,version:r,tag:_,shortTag:f}));return(null!=(n=U[e])?n:U[e]=[]).push(i),i}),null==i)&&(i=null==y?void 0:y(l));var S=Yt();if(null!=a){var O=x[a].attributes;for(v in O)S[v]=O[v]}var I=n.attributes;if(void 0!==I)for(var b=0,L=qn(I);b<L.length;b++){var v,F=I[v=L[b]];void 0!==F?S[v]="string"==typeof F?F:null:delete S[v]}var r=null!=A?A:n.excludes,C=o,a=c,g=r;Jn(e=S),e={attributes:{value:e},check:{value:A},name:{value:C}},g&&(e.elementary={value:!0}),K(A=Yn(B,e),a),u=A,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=Yt(),w=Yt(),D=[],k=[],U=Yt(),B=u.prototype,r=[];try{f=require("util").inspect}catch(e){}var l={get canonicalNames(){for(var e=this.mask,t=[],n=xn,r=_.length;r--;){var i=_[r],o=i.mask;J(e,o)&&!J(n,o)&&(n=X(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];J(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=s(e);return J(n,e)})},name:void 0,toString:function(){var e=null!=(e=this.name)?e:"<".concat(this.canonicalNames.join(", "),">");return"[Feature ".concat(e,"]")}};f&&(l.inspect=e),q(B,l),q(u,{ALL:x,ELEMENTARY:D,ENGINE:k,FAMILIES:U,Ee:function(e){if(o(e)){for(var t=xn,n=0,r=D;n<r.length;n++){var i=r[n].mask;J(e,i)&&(t=X(t,i))}if(z(e,t))return c(e)}return null},Ne:function(e){return void 0!==e?s(e):xn},areCompatible:function(){var e;return o(n(1===arguments.length&&jn(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=s(e);return t?z(e,n):(n=e,!0)})},commonOf:function(){for(var e,t,n=[],r=0;r<arguments.length;r++)n[r]=arguments[r];if(n.length){for(var i=void 0,o=0,u=n;o<u.length;o++)var a=s(u[o]),i=null!=i?(t=i[Pn]&a[Pn],mn([t,i[yn]&a[yn]])):a;e=c(i)}else e=null;return e},descriptionFor:function(e){return(e=$(e))in w||V(e),w[e]}}),f&&(l=f.custom)&&zn(B,l,{configurable:!0,value:e,writable:!0});var A,l=qn(P),W=Yt(),H=Yt(),j=xn;l.forEach(m);for(var R=new Hn,p=0,d=l;p<d.length;p++){var h=d[p],T=P[h].excludes;if(T)for(var E=x[h].mask,N=0,S=T;N<S.length;N++){var O=X(E,m(S[N]));R.has(O)||(r.push(O),R.add(O))}}for(A in _=D.slice(),D.sort(t),Jn(D),k.sort(t),Jn(k),Jn(x),Jn(U),U)Jn(U[A]);return u})(Qn,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 ee((e.length?e.join(", ")+" and "+t:t)+o)}),Un=f.ELEMENTARY,Qn=null,k(f.prototype,{restrict:function(r,i){var o=S(),e=Un.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 f(e)}}),f.ALL),er={enumerable:!0};for(Wn in Zn){var tr=Zn[Wn];er.value=tr,En(f,Wn,er)}oe(s),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,nr=fe(F.WEAK_ALGEBRAIC,F.PREFIXED_STRING,F.WEAK_PREFIXED_STRING,F.COMBINED_STRING),rr=fe(F.STRING,F.PREFIXED_STRING,F.WEAK_PREFIXED_STRING,F.COMBINED_STRING),ir=fe(F.WEAK_ALGEBRAIC,F.WEAK_PREFIXED_STRING),or=[{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}],a=(Object.defineProperty(zt.prototype,"isLoose",{get:function(){return nr(this.type)},enumerable:!1,configurable:!0}),Object.defineProperty(zt.prototype,"isString",{get:function(){return rr(this.type)},enumerable:!1,configurable:!0}),Object.defineProperty(zt.prototype,"isWeak",{get:function(){return ir(this.type)},enumerable:!1,configurable:!0}),Object.defineProperty(zt.prototype,"length",{get:function(){return this.replacement.length},enumerable:!1,configurable:!0}),zt);Y(Jt,ur=a),Object.defineProperty(Jt.prototype,"replacement",{get:function(){var e;return null!=(e=this.Se)?e:this.Se=this.Se=(e=>{switch(e.length){case 0:return lr.replacement;case 1:return e[0].replacement;default:var t=le(e),n=t.replace,t=t.typeSetList.length,r=e.slice(t).map(Ar),t=e.slice(0,t).map(Rr),n=n.apply(void 0,t);return r.unshift(n),r.join("")}})(this.$)},enumerable:!1,configurable:!0}),Object.defineProperty(Jt.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(Jt.prototype,"type",{get:function(){var e=this.$;switch(e.length){case 0:return lr.type;case 1:return e[0].type;default:return le(e).solutionType}},enumerable:!1,configurable:!0}),Jt.prototype.append=function(e){this.Se=void 0,this.$.push(e)},Jt.prototype.prepend=function(e){this.Se=void 0,this.$.unshift(e)};var ur,ar=Jt;Y(Xt,cr=a),Xt.prototype.defineReplacement=function(e){e.configurable=!0,e.enumerable=!0,Object.defineProperty(this,"replacement",e)};var cr,sr=Xt;Y(qt,_r=a);var _r,fr=qt,lr=new fr("","[]",F.OBJECT),Ar=function(e){var t=e.replacement;return ir(e.type)?"+(".concat(t,")"):"+".concat(t)},Rr=function(e){return e.replacement},pr=(k(a.prototype,{get appendLength(){var e=this.isWeak?3:1;return this.length+e},set appendLength(e){En(this,"appendLength",{enumerable:!0,value:e})}}),["true","undefined","NaN"]),dr=["RP_0_S","RP_1_WA",,"RP_3_WA","RP_4_A","RP_5_A","RP_6_S"],hr=S(),Tr=S(),Er=S(),n=f.ANY_DOCUMENT,Vn=f.ANY_WINDOW,a=f.ARRAY_ITERATOR,Nr=f.ARROW,c=f.ASYNC_FUNCTION,l=f.AT,A=f.ATOB,Sr=f.BARPROP,R=f.CALL_ON_GLOBAL,p=f.CAPITAL_HTML,Or=f.CONSOLE,Ir=f.DOCUMENT,br=f.DOMWINDOW,Lr=f.ESC_HTML_ALL,vr=f.ESC_HTML_QUOT,Fr=f.ESC_HTML_QUOT_ONLY,d=f.ESC_REGEXP_LF,Cr=f.ESC_REGEXP_SLASH,h=f.FF_SRC,T=f.FILL,N=f.FLAT,O=f.FROM_CODE_POINT,gr=f.FUNCTION_19_LF,Pr=f.FUNCTION_22_LF,yr=f.GENERIC_ARRAY_TO_STRING,mr=f.GLOBAL_UNDEFINED,xr=f.GMT,wr=f.HISTORY,Dr=f.HTMLAUDIOELEMENT,I=f.IE_SRC,b=f.INCR_CHAR,L=f.INTL,v=f.ITERATOR_HELPER,kr=f.JAPANESE_INFINITY,Ur=f.LOCALE_INFINITY,Br=f.LOCALE_NUMERALS,C=f.LOCALE_NUMERALS_EXT,Wr=f.LOCATION,Hr=f.MOZILLA,g=f.NAME,P=f.NODECONSTRUCTOR,y=f.NO_FF_SRC,m=f.NO_IE_SRC,jr=f.NO_OLD_SAFARI_ARRAY_ITERATOR,x=f.NO_V8_SRC,Mr=f.OBJECT_ARRAY_ENTRIES_CTOR,Gr=f.OBJECT_L_LOCATION_CTOR,Yr=f.OBJECT_UNDEFINED,zr=f.OBJECT_W_SELF,Jr=f.OLD_SAFARI_LOCATION_CTOR,Xr=f.PLAIN_INTL,qr=f.REGEXP_STRING_ITERATOR,w=f.SELF_OBJ,$r=f.SHORT_LOCALES,Kr=f.STATUS,Qr=f.UNDEFINED,D=f.V8_SRC,Vr=f.WINDOW,Zr=["NaN","false","undefined","0"],ei=[[s("A"),s("D",R,br),s("C",p),s("A",a,p),s("A",a,R,br)],[s("F"),s("H",v),s("F",l,p,I),s("F",l,p,m)],"Infinity","NaNfalse",[s("S"),s("R",p),s("S",a)],[s("W"),s("U",p),s("W",R,br),s("W",R,zr),s("U",a,p)],"a","false","i","n","r","true","y","0","4","8"],ti=["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","+","/"],ni=["000","NaN","falsefalsefalse","00f"],ri=["0A",[s("0B"),s("0R",p),s("0B",a)],"0i",[s("0j"),s("0T",p),s("0j",a)],"00","01","02","03","04","05","0a","0r","0s","0t","undefinedfalse","0f"],ii=U({"\b":[s('Function("return\\"" + ESCAPING_BACKSLASH + "b\\"")()[0]'),o({escSeq:!1})],"\t":[s('Function("return\\"" + ESCAPING_BACKSLASH + "true\\"")()[0]'),o({escSeq:!1})],"\n":[s("(RP_0_S + Function())[23]"),s("(RP_1_WA + Function())[20]",gr),s("(RP_0_S + Function())[22]",Pr),s("(RP_0_S + ANY_FUNCTION)[0]",I),Kt(13,x)],"\v":[s('Function("return\\"" + ESCAPING_BACKSLASH + "v\\"")()[0]'),o({escSeq:!1})],"\f":[s('Function("return\\"" + ESCAPING_BACKSLASH + "false\\"")()[0]'),o({escSeq:!1})],"\r":[s('Function("return\\"" + ESCAPING_BACKSLASH + "r\\"")()'),o({escSeq:!1})],"":[s('(RP_5_A + atob("NaNfalse"))[10]',A)]," ":[e("ANY_FUNCTION",8),s("(RP_3_WA + ARRAY_ITERATOR)[10]",a),s("(RP_0_S + FILTER)[20]",h),s("(+(RP_0_S + FILTER)[0] + FILTER)[22]",y),s("(RP_0_S + FILTER)[21]",x),s("(RP_1_WA + FILTER)[20]",D),s("(RP_1_WA + AT)[20]",l,x),s("(RP_5_A + AT)[20]",l,D),s("(+(RP_0_S + FILL)[0] + FILL)[20]",T,y),s("(RP_5_A + FILL)[20]",T,m),s("(RP_0_S + FILL)[20]",T,x),s("(+(RP_0_S + FLAT)[0] + FLAT)[20]",N,y),s("(RP_5_A + FLAT)[20]",N,m),s("(RP_0_S + FLAT)[20]",N,x)],'"':[s('"".fontcolor()[12]')],"#":[s("document.nodeName[0]",n),o()],"%":[s("escape(FILTER)[20]"),s("escape(0 + AT)[20]",l),s('atob("000l")[2]',A),s("escape(FILL)[21]",T),s("escape(FLAT)[21]",N),s("escape(ANY_FUNCTION)[0]",I)],"&":[s('"".fontcolor("".italics())[22]',Lr),s('"".fontcolor("".sub())[20]',Lr),s('"".fontcolor("\\"")[13]',vr),s('"".fontcolor("".fontcolor([]))[31]',Fr),o()],"(":[Kt(9)],")":[Kt(10)],"+":"(1e100 + [])[2]",",":[s("(RP_0_S + F_A_L_S_E)[1]"),s({expr:"[[]].concat([[]])",solutionType:F.OBJECT})],"-":"(.0000001 + [])[2]",".":"(11e20 + [])[1]","/":[s('"0false".italics()[10]'),s('"true".sub()[10]')],":":[s("(RP_0_S + RegExp())[3]"),o()],";":[s('"".fontcolor("".italics())[21]',Lr),s('"".fontcolor(true + "".sub())[20]',Lr),s('"".fontcolor("NaN\\"")[21]',vr),s('"".fontcolor("".fontcolor())[30]',Fr),o()],"<":[s('"".italics()[0]'),s('"".sub()[0]')],"=":[s('"".fontcolor()[11]')],">":[s('"".italics()[2]'),s('"".sub()[10]')],"?":[s("(RP_0_S + RegExp())[2]"),o()],A:[e("Array",9),s("(RP_3_WA + ARRAY_ITERATOR)[11]",a)],B:[e("Boolean",9),s('"0".sub()[10]',p)],C:[s('escape("".italics())[2]'),s('escape("".sub())[2]'),s("escape(F_A_L_S_E)[11]"),s('atob("00NaNfalse")[1]',A),s('(RP_4_A + "".fontcolor())[10]',p),s('(RP_3_WA + Function("return console")())[11]',Or),s("(RP_0_S + Node)[12]",P)],D:[s('escape((+("1000" + (RP_5_A + FILTER + 0)[40] + 0) + FILTER)[40])[2]'),s('escape("]")[2]'),s('escape("}")[2]'),s('(document + RP_0_S)[SLICE_OR_SUBSTR]("-10")[1]',n),s('escape((RP_4_A + [+("1000" + (AT + 0)[31] + 0)] + AT)[40])[2]',l),s('btoa("00")[1]',A),s("(RP_3_WA + document)[11]",Ir),s("(RP_3_WA + self)[11]",br),s('escape((NaN + [+("10" + [(RP_6_S + FILL)[40]] + "000")] + FILL)[40])[2]',T),s('escape((NaN + [+("10" + [(RP_6_S + FLAT)[40]] + "000")] + FLAT)[40])[2]',N),s("escape(ARRAY_ITERATOR)[30]",jr),s("escape(FILTER)[50]",D),s('(document + [RP_1_WA]).at("-10")',n,l),s("escape(AT)[61]",l,I),s("escape([[]][+(RP_0_S + AT)[0]] + AT)[61]",l,y),s("escape([NaN][+(RP_1_WA + AT)[20]] + AT)[61]",l,m),s("escape(true + AT)[50]",l,D),s("escape(FILL)[60]",h,T),s("escape(FLAT)[60]",h,N)],E:[e("RegExp",12),s('btoa("0NaN")[1]',A),s('(RP_5_A + "".link())[10]',p),s("(RP_3_WA + Audio)[21]",Dr),s("(RP_0_S + REGEXP_STRING_ITERATOR)[11]",qr)],F:[e("Function",9),s('"".fontcolor()[1]',p)],G:[s('btoa("0false")[1]',A),s('"0".big()[10]',p),s("(RP_5_A + Date())[30]",xr)],H:[s("(RP_3_WA + document.createElement(false))[11]",n),s("btoa(true)[1]",A),s('"".link()[3]',p),s({expr:'(RP_3_WA + Function("return history")())[11]',optimize:!0},wr),s("(RP_1_WA + Audio)[10]",Dr),s("(RP_4_A + [].entries().filter(ANY_FUNCTION))[21]",v),s({expr:"(RP_3_WA + self.history)[11]",optimize:!0},wr,w)],I:'"Infinity"[0]',J:[s('"j"[TO_UPPER_CASE]()'),s("btoa(true)[2]",A),o({atob:!1})],K:[s('(RP_5_A + "".strike())[10]',p),o()],L:[s("(RP_0_S + document.createElement(false))[11]",n),s('btoa(".")[0]',A),s('(RP_3_WA + "".fontcolor())[11]',p),s("(RP_0_S + Audio)[12]",Dr),s({expr:'Function("return toString.call(location)")()[SLICE_OR_SUBSTR]("-10")[1]',optimize:!0},Wr),s("(RP_3_WA + LOCATION_CONSTRUCTOR)[11]",Gr),s('(LOCATION_CONSTRUCTOR + RP_0_S)[SLICE_OR_SUBSTR]("-20")[0]',Jr),s({expr:'(Function("return toString.call(location)")() + RP_1_WA).at("-10")',optimize:!0},l,Wr),s('(LOCATION_CONSTRUCTOR + RP_0_S).at("-20")',l,Jr),s('[][TO_STRING].call(location)[SLICE_OR_SUBSTR]("-10")[1]',yr,Wr),s('self[TO_STRING].call(location)[SLICE_OR_SUBSTR]("-10")[1]',Wr,w),s('([][TO_STRING].call(location) + RP_1_WA).at("-10")',l,yr,Wr),s('(self[TO_STRING].call(location) + RP_1_WA).at("-10")',l,Wr,w)],M:[s("(RP_0_S + document.createElement(false))[10]",n),s("btoa(0)[0]",A),s('"".small()[2]',p),s("(RP_0_S + self)[10]",br),s("(RP_4_A + Date())[30]",xr),s("(RP_0_S + Audio)[11]",Dr),s("USER_AGENT[0]",Hr)],N:'"NaN"[0]',O:[e("Object",9),s("(RP_3_WA + PLAIN_OBJECT)[11]"),s("btoa(NaN)[3]",A),s('"".fontcolor()[2]',p),s("(RP_1_WA + self)[10]",br),s("(RP_3_WA + Intl)[11]",Xr)],P:[s('String.fromCharCode("80")'),s('(RP_3_WA + Function("return async function(){}")()())[11]',c),s('atob("01A")[1]',A),s('btoa("".italics())[0]',A),s('(RP_0_S + Function("return statusbar")())[11]',Sr),s('"0".sup()[10]',p),s("(RP_0_S + self.statusbar)[11]",Sr,w),o({atob:!1,charCode:!1})],Q:[s('"q"[TO_UPPER_CASE]()'),s("btoa(1)[1]",A),o({atob:!1})],R:[e("RegExp",9),s('btoa("0true")[2]',A),s('"".fontcolor()[10]',p),s("(RP_3_WA + REGEXP_STRING_ITERATOR)[11]",qr)],S:[e("String",9),s('"".sub()[1]',p)],T:[s({expr:'(RP_0_S + Function("try{undefined.false}catch(undefined){return undefined}")())[0]',optimize:!0}),s("btoa(NaN)[0]",A),s('"".fontcolor([])[20]',p),s("(RP_3_WA + Date())[30]",xr),s("(RP_0_S + Audio)[10]",Dr),o({atob:!1})],U:[s('btoa("1NaN")[1]',A),s('"".sub()[2]',p),s({expr:'(RP_3_WA + Function("return toString")()())[11]',optimize:!0},mr),s({expr:'(RP_3_WA + Function("return{}.toString")()())[11]',optimize:!0},Yr),s("(RP_3_WA + PLAIN_OBJECT[TO_STRING].call())[11]",Qr),s("(RP_3_WA + ARRAY_ITERATOR[TO_STRING].call())[11]",a,Qr),s({expr:'(RP_3_WA + Function("return Intl.toString")()())[11]',optimize:!0},L,Yr),s("(RP_3_WA + Intl[TO_STRING].call())[11]",L,Qr)],V:[s('"v"[TO_UPPER_CASE]()'),s('(RP_0_S + document.createElement("video"))[12]',n),s("btoa(undefined)[10]",A),o({atob:!1})],W:[s('"w"[TO_UPPER_CASE]()'),s('(self + RP_4_A)[SLICE_OR_SUBSTR]("-11")[0]',Vn),s("btoa(undefined)[1]",A),s("(RP_0_S + self)[11]",br),s("(RP_3_WA + self)[11]",zr),s('(self + RP_4_A).at("-11")',Vn,l),o({atob:!1})],X:[s('"x"[TO_UPPER_CASE]()'),s('btoa("1true")[1]',A),o({atob:!1})],Y:[s('"y"[TO_UPPER_CASE]()'),s('btoa("a")[0]',A),o({atob:!1})],Z:[s("btoa(false)[0]",A),s('(RP_3_WA + "".fontsize())[11]',p)],"[":[$t(14),s("(RP_0_S + ARRAY_ITERATOR)[0]",a)],"\\":[s("ESCAPING_BACKSLASH"),o({atob:!1,escSeq:!1,unescape:!1})],"]":[$t(26),s("(RP_0_S + ARRAY_ITERATOR)[22]",jr)],"^":[s('atob("undefined0")[2]',A)],a:'"false"[1]',b:[e("Number",12),s("(RP_0_S + ARRAY_ITERATOR)[2]",a)],c:[e("ANY_FUNCTION",3),s("(RP_5_A + ARRAY_ITERATOR)[10]",a)],d:'"undefined"[2]',e:'"true"[3]',f:'"false"[0]',g:[e("String",14)],h:[s('101[TO_STRING]("21")[1]'),s('btoa("0false")[3]',A)],i:"([RP_5_A] + undefined)[10]",j:[s("(RP_0_S + PLAIN_OBJECT)[10]"),s("(RP_0_S + ARRAY_ITERATOR)[3]",a),s("(RP_0_S + Intl)[3]",L),s("(RP_0_S + Node)[3]",P),s("(RP_0_S + Intl)[10]",Xr),s("(RP_0_S + self)[3]",w)],k:[s('20[TO_STRING]("21")'),o()],l:'"false"[2]',m:[e("Number",11),s("(RP_6_S + Function())[20]")],n:'"undefined"[1]',o:[e("ANY_FUNCTION",6),s("(RP_0_S + ARRAY_ITERATOR)[1]",a)],p:[s('211[TO_STRING]("31")[1]'),s("(RP_3_WA + btoa(undefined))[10]",A),s("(RP_0_S + [].entries().filter(ANY_FUNCTION))[20]",v)],q:[s('212[TO_STRING]("31")[1]'),s('"".fontcolor(0 + "".fontcolor())[30]',Lr),s('"".fontcolor("0false\\"")[20]',vr),s('"".fontcolor(true + "".fontcolor())[30]',Fr),o()],r:'"true"[1]',s:'"false"[3]',t:'"true"[0]',u:'"undefined"[0]',v:[$t(19)],w:[s('32[TO_STRING]("33")'),s('(self + RP_0_S)[SLICE_OR_SUBSTR]("-2")[0]',Vn),s('atob("undefined0")[1]',A),s("(RP_4_A + self)[20]",br),s("(RP_0_S + self)[13]",Vr),s('(self + RP_0_S).at("-2")',Vn,l)],x:[s('101[TO_STRING]("34")[1]'),s('btoa("falsefalse")[10]',A)],y:"(RP_3_WA + [Infinity])[10]",z:[s('35[TO_STRING]("36")'),s('btoa("falsefalse")[11]',A)],"{":[Kt(12)],"}":[$t(28)],"Š":[s('(RP_4_A + atob("NaNundefined"))[10]',A)],"":[s('atob("0NaN")[2]',A)],"–":[s('atob("00false")[3]',A)],"ž":[s("atob(true)[2]",A)],"£":[s("atob(NaN)[1]",A)],"¥":[s('atob("0false")[2]',A)],"§":[s('atob("00undefined")[2]',A)],"©":[s('atob("false0")[1]',A)],"±":[s('atob("0false")[3]',A)],"¶":[s("atob(true)[0]",A)],"º":[s('atob("undefined0")[0]',A)],"»":[s("atob(true)[1]",A)],"Ç":[s('atob("falsefalsefalse")[10]',A)],"Ú":[s('atob("0truefalse")[1]',A)],"Ý":[s('atob("0undefined")[2]',A)],"â":[s('atob("falsefalseundefined")[11]',A)],"é":[s('atob("0undefined")[1]',A)],"î":[s('atob("0truefalse")[2]',A)],"ö":[s('atob("0false")[1]',A)],"ø":[s('atob("undefinedundefined")[10]',A)],"∞":[s("Infinity[TO_LOCALE_STRING]()",Ur),s('Infinity[TO_LOCALE_STRING]("ja")[SLICE_OR_SUBSTR]("-1")',kr),s('Infinity[TO_LOCALE_STRING]("ja").at("-1")',kr,l),o()]}),oi=U({Number:s({expr:"Number.name",optimize:{complexOpt:!1}},g),Object:s({expr:"Object.name",optimize:{complexOpt:!1}},g),RegExp:s({expr:"RegExp.name",optimize:{complexOpt:!1}},g),String:s("String.name",g),fromCharCo:s({expr:'"from3har3o".split(3).join("C")',optimize:{complexOpt:!1}}),mCh:s('atob("bUNo")',f.ATOB)}),Or=U({Array:[s("[].constructor")],Audio:[s('Function("return Audio")()',Dr),s("self.Audio",Dr,w)],Boolean:[s("false.constructor")],Date:[s('Function("return Date")()'),s("self.Date",w)],Function:[s("ANY_FUNCTION.constructor")],Intl:[s('Function("return Intl")()',L),s("self.Intl",L,w)],Node:[s('Function("return Node")()',P),s("self.Node",P,w)],Number:[s("0..constructor")],Object:[s("PLAIN_OBJECT.constructor"),s("Intl.constructor",L),s("[].entries().constructor",Mr)],RegExp:[s('Function("return/false/")().constructor')],String:[s('"".constructor')],atob:[s('Function("return atob")()',A),s("self.atob",A,w)],btoa:[s('Function("return btoa")()',A),s("self.btoa",A,w)],document:[s({expr:'Function("return document")()',optimize:!0},n),s({expr:"self.document",optimize:!0},n,w)],escape:[s({expr:'Function("return escape")()',optimize:!0}),s({expr:"self.escape",optimize:!0},w)],location:[s('Function("return location")()',Wr),s("self.location",Wr,w)],self:[s('Function("return self")()',w),s("[].concat.call()[0]",R,w)],unescape:[s({expr:'Function("return unescape")()',optimize:!0}),s({expr:"self.unescape",optimize:!0},w)],ANY_FUNCTION:[s("FILTER"),s("AT",l),s("FILL",T),s("FLAT",N)],ARRAY_ITERATOR:[s("[].entries()",a)],AT:[s("[].at",l)],ESCAPING_BACKSLASH:[s(function(){var e=this.Oe(92);return new fr(void 0,e,F.STRING)}),s({expr:'atob("01y")[1]',solutionType:F.STRING},A),s({expr:'(RP_0_S + RegExp("\\n"))[1]',solutionType:F.STRING},d),s({expr:'(RP_5_A + RegExp("".italics()))[10]',solutionType:F.STRING},Cr),s({expr:'(RP_3_WA + RegExp("".sub()))[10]',solutionType:F.STRING},Cr),s({expr:"(RP_0_S + RegExp(FILTER))[20]",solutionType:F.STRING},d,h),s({expr:"(RP_0_S + RegExp(Function()))[20]",solutionType:F.STRING},d,gr),s({expr:"(RP_5_A + RegExp(Function()))[30]",solutionType:F.STRING},d,Pr),s({expr:"(RP_0_S + RegExp(ANY_FUNCTION))[1]",solutionType:F.STRING},d,I),s({expr:"(+(RP_0_S + FILTER)[0] + RegExp(FILTER))[23]",solutionType:F.STRING},d,x),s({expr:"(RP_4_A + RegExp(AT))[20]",solutionType:F.STRING},l,d,h),s({expr:"(RP_1_WA + [+(RP_0_S + AT)[0]] + RegExp(AT))[20]",solutionType:F.STRING},l,d,x),s({expr:"(RP_3_WA + RegExp(FILL))[21]",solutionType:F.STRING},d,h,T),s({expr:"(RP_3_WA + RegExp(FLAT))[21]",solutionType:F.STRING},d,h,N),s({expr:"(+(RP_0_S + FILL)[0] + RegExp(FILL))[21]",solutionType:F.STRING},d,T,x),s({expr:"(+(RP_0_S + FLAT)[0] + RegExp(FLAT))[21]",solutionType:F.STRING},d,N,x)],FILL:[s("[].fill",T)],FILTER:[s("[].filter")],FLAT:[s("[].flat",N)],F_A_L_S_E:[s('[][SLICE_OR_FLAT].call("false")')],LOCALE_AR:[s({expr:'"ar-td"',solutionType:F.COMBINED_STRING}),s({expr:'"ar"',solutionType:F.COMBINED_STRING},$r)],LOCATION_CONSTRUCTOR:[s('Function("return location")().constructor',Gr),s('Function("return location")().constructor',Jr),s("self.location.constructor",Gr,w),s("self.location.constructor",Jr,w)],PLAIN_OBJECT:[s('Function("return{}")()')],REGEXP_STRING_ITERATOR:[s({expr:'"".matchAll()',optimize:!0},qr)],SLICE_OR_FLAT:[s({expr:'"slice"',solutionType:F.COMBINED_STRING}),s({expr:'"flat"',solutionType:F.COMBINED_STRING},N)],SLICE_OR_SUBSTR:[s({expr:'"slice"',solutionType:F.COMBINED_STRING}),s({expr:'"substr"',solutionType:F.COMBINED_STRING})],TO_LOCALE_STRING:[s({expr:'"toLocaleString"',optimize:!0,solutionType:F.COMBINED_STRING})],TO_STRING:[s({expr:'"toString"',optimize:{toStringOpt:!1},solutionType:F.COMBINED_STRING})],TO_UPPER_CASE:[s({expr:'"toUpperCase"',optimize:!0,solutionType:F.COMBINED_STRING})],USER_AGENT:[s({expr:'Function("return navigator")().userAgent',solutionType:F.STRING},Hr),s({expr:"self.navigator.userAgent",solutionType:F.STRING},Hr,w)],FBEP_4_S:[s("[[true][+(RP_3_WA + FILTER)[30]]]"),s("[[true][+(RP_1_WA + AT)[30]]]",l),s("[[true][+(RP_5_A + FILL)[30]]]",T),s("[[true][+(RP_5_A + FLAT)[30]]]",N),s("[[true][+!!++(RP_0_S + FILTER)[20]]]",b),s("[[true][+!!++(RP_1_WA + AT)[20]]]",l,b),s("[[true][+!!++(RP_0_S + FILL)[20]]]",T,b),s("[[true][+!!++(RP_0_S + FLAT)[20]]]",N,b)],FBEP_9_U:[s({expr:"[false][+(RP_0_S + FILTER)[20]]",solutionType:F.UNDEFINED}),s({expr:"[false][+(RP_1_WA + AT)[20]]",solutionType:F.UNDEFINED},l),s({expr:"[false][+(RP_0_S + FILL)[20]]",solutionType:F.UNDEFINED},T),s({expr:"[false][+(RP_0_S + FLAT)[20]]",solutionType:F.UNDEFINED},N)],FBEP_10_S:[s({expr:"[RP_1_WA] + FBEP_9_U",solutionType:F.COMBINED_STRING})],FBP_5_S:[s("[[false][+IS_IE_SRC_A]]",y)],FBP_7_WA:[s({expr:'+("10" + [(RP_4_A + FILTER)[40]] + "00000")',solutionType:F.WEAK_ALGEBRAIC}),s({expr:'+("10" + [(RP_0_S + AT)[32]] + "00000")',solutionType:F.WEAK_ALGEBRAIC},l),s({expr:'+("10" + [(RP_6_S + FILL)[40]] + "00000")',solutionType:F.WEAK_ALGEBRAIC},T),s({expr:'+("10" + [(RP_6_S + FLAT)[40]] + "00000")',solutionType:F.WEAK_ALGEBRAIC},N)],FBP_8_WA:[s({expr:'+("1000" + (RP_5_A + FILTER + 0)[40] + "000")',solutionType:F.WEAK_ALGEBRAIC}),s({expr:'+("1000" + (AT + 0)[31] + "000")',solutionType:F.WEAK_ALGEBRAIC},l),s({expr:'+("1000" + (FILL + 0)[33] + "000")',solutionType:F.WEAK_ALGEBRAIC},T),s({expr:'+("1000" + (FLAT + 0)[33] + "000")',solutionType:F.WEAK_ALGEBRAIC},N)],FBP_9_U:[s({expr:"[true][+(RP_0_S + ANY_FUNCTION)[0]]",solutionType:F.UNDEFINED},y)],FH_SHIFT_1:[s("[+IS_IE_SRC_A]")],FH_SHIFT_2:[s("[true + IS_IE_SRC_A]")],FH_SHIFT_3:[s("[2 + IS_IE_SRC_A]")],FHP_3_WA:[s({expr:"+(1 + [+(RP_0_S + ANY_FUNCTION)[0]])",solutionType:F.WEAK_ALGEBRAIC}),s({expr:"+(++(RP_0_S + ANY_FUNCTION)[0] + [0])",solutionType:F.WEAK_ALGEBRAIC},b)],FHP_5_A:[s({expr:"IS_IE_SRC_A",solutionType:F.ALGEBRAIC})],FHP_8_S:[s({expr:"[RP_3_WA] + FHP_5_A",solutionType:F.COMBINED_STRING})],IS_IE_SRC_A:[s({expr:"!![[]][+(RP_0_S + ANY_FUNCTION)[0]]",solutionType:F.ALGEBRAIC}),s({expr:"!!++(RP_0_S + ANY_FUNCTION)[0]",solutionType:F.ALGEBRAIC},b)],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}}),ui=[s(4,h),s(5,I),s(0,D)],ai=[s(1,I),s(0,m)],ci=ie([s("fromCharCode"),s("fromCodePoint",O)],[s(0),s(1,c),s(1,A),s(0,c,R,O,b,g,P,w),s(1,c,y),s(1,c,x),s(0,a,c,O,g),s(1,a,c,l,g),s(1,a,c,T,g),s(1,a,c,N,g),s(1,a,c,g,m),s(1,a,c,g,x),s(0,a,A,O,I,v),s(0,c,l,R,O,g,P,w),s(1,a,l,A,I,v),s(0,c,R,N,O,g,P,w),s(1,c,l,R,g,P,y,w),s(1,c,l,R,g,P,x,w),s(1,c,R,N,g,P,y,w),s(1,c,R,N,g,P,x,w),s(0,A,O,L,v),s(1,A,T,L,v),s(1,A,I,L,v),s(1,A,L,v,m),s(0,c,R,O,I,P,w),s(1,c,l,R,I,P,w),s(1,c,R,T,I,P,w),s(1,c,R,N,I,P,w),s(0,a,A,O,v,m),s(0,c,R,N,O,I,g,P,w),s(1,a,l,A,v,m),s(0,c,R,T,O,g,P,w),s(1,c,R,T,g,P,y,w),s(1,c,R,T,g,P,x,w),s(0,c,R,T,O,I,g,P,w),s(1,l,A,L,v),s(0,A,O,v,w),s(1,a,A,v,w),s(1,A,T,v,w),s(1,A,N,L,v),s(1,A,N,v,w),s(0,a,c,R,O,P,w),s(1,a,c,l,R,P,w),s(1,a,c,R,N,P,w),s(1,a,c,R,T,b,P,w),s(1,a,c,R,T,P,y,w),s(0,a,c,R,O,g,P,w),s(1,a,c,R,N,g,P,y,w),s(1,a,c,R,N,g,P,x,w),s(0,a,c,R,N,O,I,g,P,w),s(1,a,c,R,T,P,x,w),s(0,a,c,R,T,O,I,g,P,w),s(1,a,c,l,R,g,P,y,w),s(1,a,c,l,R,g,P,x,w),s(0,c,O,v),s(1,c,N,v),s(1,c,v,x),s(0,c,O,L,v),s(1,c,I,L,v),s(1,c,N,L,v,x),s(0,c,O,v,P,x),s(1,c,T,v,P,x),s(0,c,O,L,v,P,x),s(1,c,I,v,P),s(1,c,N,v,P,x),s(0,c,N,O,v,w),s(0,c,O,v,x,w),s(1,c,I,v,w),s(1,c,N,v,x,w),s(0,c,R,O,v,x,w),s(1,c,v,m),s(0,c,O,L,v,m),s(0,c,O,v,m,w),s(1,c,v,D),s(1,c,h,L,v),s(1,c,T,L,v,m),s(1,c,N,L,v,m),s(0,c,O,v,g,P,m),s(1,c,h,v,w),s(1,c,T,v,m,w),s(1,c,N,v,m,w),s(1,c,v,g,P,D),s(1,c,T,v,g,P,m),s(0,c,N,O,v,g),s(0,c,R,h,O,v,w),s(0,c,R,O,v,w,D),s(0,c,R,T,O,v,m,w),s(0,c,R,N,O,v,m,w),s(1,c,N,v,g,m),s(0,A,O,v,g),s(0,c,R,N,O,v,g,w),s(1,A,v,g,x),s(0,A,O,v,g,P),s(1,A,b,v,g),s(0,A,O,b,L,v,g),s(0,A,O,b,v,g,P),s(0,A,O,b,v,g,y),s(0,A,O,b,v,g,w),s(0,A,O,L,v,g,x),s(1,A,T,v,g),s(1,A,I,L,v,g),s(0,A,T,O,L,v,g),s(1,A,T,I,v,g),s(0,a,A,O,b,v,g),s(0,A,T,O,v,g,w),s(0,A,O,v,g,x,w),s(1,A,I,v,g,P),s(0,a,A,O,v,g,x),s(1,A,N,v,g),s(0,a,A,T,O,v),s(1,a,A,T,v,x),s(1,a,A,R,T,v,w),s(0,a,A,T,O,v,g,x),s(1,a,A,T,I,v),s(0,c,R,O,P,m,w),s(1,c,R,h,N,P,w),s(1,c,R,N,P,w,D),s(0,c,R,O,v,P,m,w),s(0,c,R,O,g,P,m,w),s(1,c,l,R,h,P,w),s(1,c,l,R,P,w,D),s(0,a,c,N,O,v),s(0,A,R,N,O,v,g,w),s(1,A,I,v,w),s(0,a,A,O,I,v,w),s(1,c,l,v),s(1,a,l,A,T,v),s(1,a,A,T,v,m),s(1,A,R,I,v,w),s(1,A,T,I,v,w),s(0,c,l,R,O,v,w),s(1,c,l,I,v),s(1,c,l,v,m),s(0,c,l,R,O,v,P,m,w),s(1,c,l,R,h,v,w),s(1,c,l,R,v,w,D),s(0,a,c,O,v,m),s(0,c,O,v,g,x),s(1,c,T,b,v,g,x),s(0,c,O,L,v,g,x),s(1,c,N,v,g,x),s(0,c,N,O,L,v,g,x),s(0,c,T,O,b,v,g,P,x),s(0,c,T,O,b,v,g,x,w),s(1,c,I,v,g),s(1,c,l,v,g,x),s(0,c,R,O,I,v,g,w),s(1,c,h,v,g),s(0,c,R,h,O,v,g,w),s(0,c,N,O,v,g,x,w),s(1,c,N,I,v,g,w),s(1,c,l,N,v,g,x,w),s(0,c,R,N,O,I,v,g,w),s(1,c,h,N,v,g,w),s(0,c,l,R,O,v,g,x,w),s(0,c,R,h,N,O,v,g,w),s(1,c,l,R,h,v,g,w),s(1,c,l,R,I,v,g,w),s(0,a,A,N,O,v),s(1,a,A,N,v,x),s(1,a,A,R,N,b,v,w),s(0,a,A,N,O,v,g,x),s(1,A,v,m,w),s(1,a,l,A,N,v),s(1,a,A,N,I,v),s(0,a,A,O,v,m,w),s(1,a,A,N,v,m),s(1,A,R,v,m,w),s(1,A,T,v,m,w),s(0,a,c,l,O,v),s(1,A,v,g,m),s(0,a,A,O,v,g,m),s(1,A,T,v,g,m),s(1,A,N,v,g,m),s(1,a,A,R,v,g,w),s(0,a,A,R,N,O,v,g,w),s(1,a,A,R,I,v,g,w),s(1,a,A,R,b,v,g,w),s(1,a,A,R,v,g,m,w),s(0,a,c,O,v,x),s(1,p),s(1,l,A,v,w),s(0,a,A,p,O),s(1,Sr),s(1,p,v),s(1,l,A,v,g),s(0,a,A,Sr,p,O)]),si=ie([s(function(e,t){return"function(undefined){return String."+e+"("+t+")}"}),s(function(e,t){return"function(undefined){return(isNaN+false).constructor."+e+"("+t+")}"}),s(function(e,t){return"undefined=>String."+e+"("+t+")"},Nr),s(function(e,t){return"undefined=>(isNaN+false).constructor."+e+"("+t+")"},Nr),s(function(e,t){return"function(undefined){return status.constructor."+e+"("+t+")}"},Kr),s(function(e,t){return"undefined=>status.constructor."+e+"("+t+")"},Nr,Kr)],[s(1),s(3),s(0,a,p),s(1,a,p,N),s(0,a,p,x),s(1,a,l,p),s(1,a,p,h,N),s(1,a,p,T,I),s(1,a,p,T,m),s(1,a,p,N,I),s(2,a,p),s(3,a,l,p,I),s(3,a,l,p,m),s(4),s(5)]),_i=ie([s(function(e,t){var n=Ae(e);return'Function("return function('+n+"){return function("+e+"){return "+n+t+'}}")()'}),s(function(e,t){return'Function("return function('+e+"){return this"+t+'}")().bind'}),s(function(e,t){var n=Ae(e);return'Function("return '+n+"=>"+e+"=>"+n+t+'")()'},Nr)],[s(0),s(1,a,A),s(0,y),s(0,x),s(1,a,p),s(1,a,A,R,w),s(0,a,A,T),s(0,a,p,T),s(0,a,p,I),s(0,a,A,R,I,w),s(1,a,A,R,T,w),s(0,a,A,m),s(0,a,p,m),s(0,a,A,T,I),s(0,a,A,T,b,x),s(1,a,A,R,m,w),s(0,a,l,A),s(0,a,l,p),s(0,a,A,h),s(0,a,A,N),s(0,a,A,D),s(0,a,p,N),s(0,a,A,T,m),s(2)]),fi=[s({expr:"FILTER",shift:6}),s({expr:"FILL",shift:4},T),s({expr:"FLAT",shift:4},N),s({expr:"AT",shift:2},l)],li=ie([s("f"),s("undefined")],[s(0),s(1,l),s(0,N),s(1,T,I),s(1,T,m),s(0,T,N,I),s(0,T,N,m)]),Ai=ie([s("B"),s("b")],[s(0),s(1,a)]),Ri=ie([s("return String"),s("return(isNaN+false).constructor"),s("return status.constructor",Kr)],[s(1),s(0,a,p),s(1,N),s(0,a,p,x),s(1,a,l,p),s(1,a,p,h,N),s(1,a,p,T,I),s(1,a,p,T,m),s(1,a,p,N,I),s(2)]);Vt("false","![]",F.ALGEBRAIC),Vt("true","!![]",F.ALGEBRAIC),Vt("undefined","[][[]]",F.UNDEFINED),Vt("NaN","+[false]",F.WEAK_ALGEBRAIC),Vt("Infinity","1e1000",F.WEAK_ALGEBRAIC);for(var pi=0;pi<=9;++pi){var di=(e=>{switch(e){case 0:return"+[]";case 1:return"+!![]";default:for(var t="!![]";t+="+!![]",1<--e;);return t}})(pi);ii[pi]={expr:di,solutionType:F.WEAK_ALGEBRAIC}}oe(Qt),oe(u),Zt("LOCALE_AR",1632),u("٫","LOCALE_AR",.1,1),u("ل",'"ar"',NaN,0),u("ي",'"ar"',NaN,1),u("س",'"ar"',NaN,2),u("ر",'"ar"',NaN,4,C),u("ق",'"ar"',NaN,5,C),u("م",'"ar"',NaN,6,C),Zt('"bn"',2534,C),Zt('"fa"',1776),u("٬",'"fa"',1e3,1),u("ن",'"fa"',NaN,0,C),u("ا",'"fa"',NaN,1,C),u("ع",'"fa"',NaN,2,C),u("د",'"fa"',NaN,3,C),u("н",'"ru"',NaN,0,C),u("е",'"ru"',NaN,1,C),u("ч",'"ru"',NaN,3,C),u("и",'"ru"',NaN,4,C),u("с",'"ru"',NaN,5,C),u("л",'"ru"',NaN,6,C),u("о",'"ru"',NaN,7,C);var hi,Ti,Ei,Ni={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}"},Si=S(),Oi=["false","null","true"],Ii=["arguments","await","debugger","delete","if","import","let","new","return","this","throw","typeof","void","while","with","yield"],bi=Ce("(?:#NumericLiteral|#ConstIdentifier)"),Li=Ce("(?:[$\\w]|#UnicodeEscapeSequence)+"),vi=Ce("(?:#Separator|;)*"),Fi=Ce("#Separator*"),Ci=Ce("#SingleQuotedString|#DoubleQuotedString"),gi="function"!=typeof WeakRef?ze:(hi=new Map,Ti=new FinalizationRegistry(function(e){var t=hi.get(e);t&&!t.deref()&&hi.delete(e)}),function(e){var t,n=hi.get(e);return(t=n?n.deref():t)||(t=ze(e))&&!0!==t&&(n=new WeakRef(t),hi.set(e,n),Ti.register(t,e)),t}),Pi=[6,8,12,17,22,27,32,37,42,47],yi=1,mi=(k(Xe.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=Je(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=Je(c,t,n,i):(o=a*(r/=2),u=e(t,o=Rn(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),xi={firstSolution:lr},wi={firstSolution:lr,optimize:{default:!1,toStringOpt:!0}},Di=S(),ki=([15,31,47,63,111,127,175,223,239,240,241,242,243,244,245,246,247,250].forEach(function(e){Di[e]=null}),f.ATOB.mask),Ui=S(),Bi=S(),Wi=new rt(xn),Hi=f.Ee,ji=(Ei=B(Sn(hr).join("|"),"y"))?function(e,t){Ei.lastIndex=t;t=Ei.exec(e);if(t)return t[0]}:function(e,t){for(var n in hr)if(e.substr(t,n.length)===n)return n},Mi=(k(rt.prototype,{pe:function(e,t,n,r,i,o){var u=n&&this.hasFeatures(ki)?at(this,e,t,Qe,"atob"):(n=[],r&&(u=at(this,e,t,Ze,"char-code"),n.push(u)),i&&(u=at(this,e,t,tt,"esc-seq"),n.push(u)),o&&(u=at(this,e,t,nt,"unescape"),n.push(u)),_e.apply(null,n));return u},Ie:function(e){var t=dr[e];if(t)return t;ct(this,"Undefined regular padding block with length "+e)},be:Qe,Le:Ze,ve:tt,Oe:nt,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,_=s.length,f=((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),_=!1,f=0;f<c;++f){var l,A=u[f],R=1<c?r.concat(f):r;if(!a||"string"!=typeof A.value||A.mod||A.pmod||A.ops.length){var p=s-(d?d.length+1:0)-3*(c-f-1),R=e.Fe(A,f,R,p,o);if(!R)return;d?d+="+"+R:d=R}else d?(_||ct(e,"Unsupported concatenation of a string to a potentially non-string expression"),l=new fr(void 0,d,F.WEAK_PREFIXED_STRING)):_=!(l=void 0),d=a(e,A.value,l)}n&&(d="("+d+")")}else if(T=t.identifier)var d=(0,o.identifier)(e,T,n,r,i);else{var h,T=t.value;if("string"==typeof T)d=(0,o.string)(e,T,n?2:yi,r,i);else if(an(T))T.length?(t=e.Fe(T[0],!1,r,i-2,o))&&(d="["+t+"]"):i<2||(d="[]");else if("number"==typeof T&&T==T?(t=T<0||1/T<0,h=0===(h=An(T))?"0":h===1/0?"1e1000":$e(h),d=se(h=t?"-"+h:h),1<h.length&&(d="+("+d+")"),n&&(d="("+d+")")):d=ut(Wi,E(T),n),d.length>i)return}return d})(this,e,_||u?2:t||o?1:0,n,c,i);if(f){for(var l=0;l<_;++l){var A=s[l],R=A.type;if("call"===R){if((f+="()").length>c)return}else{var p=n.concat(l+1),d=c-f.length-2,h=A.str;if(!(h=null!=h?(0,i.string)(this,h,0,p,d):this.Fe(A,!1,p,d,i)))return;f+="get"===R?"["+h+"]":"("+h+")"}}f+=u,o&&(f=o+f,a)&&(f="("+f+")")}return f},de:function(e,t,n,r,i){r||ct(this,"Missing padding entries for index "+n);var o,r=this.findDefinition(r),i=(n="number"==typeof r?(i=this.findDefinition(i),o=this.Ie(r),n+r+i):(o=r.block,r.shiftedIndex),"("+o+" + "+t+")["+n+"]"),r=this.replaceExpr(i);return new fr(e,r,F.STRING)},he:function(e,t,n,r){var i=this.findDefinition(fi),o=i.expr,t=t+i.shift,i=n(t);return this.de(e,o,t,i,r)},constantDefinitions:Or,findDefinition:function(e){var t,n=e.cacheKey,r=(void 0===n&&(e.cacheKey=n=++mi),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 J(this.mask,e)},maxGroupThreshold:1800,replaceExpr:function(e,t){function r(e,t,n){n.optimize=i;t=e.replaceString(t,n);return t||ct(e,"String too complex"),t}var i,e=gi(e),t=(e&&!0!==e||ct(this,"Syntax error"),i=t,{appendString:function(e,t,n){return r(e,t,{firstSolution:n,screwMode:yi})},identifier:ut,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 Xe(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=ji(e,u),a=a?(u+=a.length,hr[a]):(a=e[u++],this.resolveCharacter(a));if(!r.append(a)||r.length>i)return}t=E(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 fr(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&&it(this,ln(r),function(){var e,t,n=ii[r];!n||an(n)?(o=n?ot(this,r,n):o)||(t=(e=r).charCodeAt(),o=this.pe(e,t,t<256,!0,!0,!0)):((o=Wi.resolve(n,r)).entryCode="static",i=Ui),i[r]=o}),o},resolveConstant:function(t){var n=this.ue,r=n[t];return void 0===r&&it(this,t,function(){var e=this.constantDefinitions[t];an(e)?r=ot(this,t,e,F.OBJECT):(r=Wi.resolve(e,void 0,F.OBJECT),n=Bi),n[t]=r}),r}}),Bn=Wi,{joiner:"false",separator:"false"}),Gi={joiner:"",separator:'Function("return/(?=false|true)/")()'},Yi={identifier:function(e,t,n,r,i){return pt(e,"return "+t,Ct,Ot(r),i)},string:function(e,t,n,r,i){return Tt(e,t,n,Ot(r),i)}},zi=(gt.forceString=!(Ct.forceString=!1),st([""],"false")),Ji=st(["false","true"],""),Xi={byCharCodes:t(function(e,t){return this.ge(e,void 0,t)},2),byCharCodesRadix4:t(function(e,t){return this.ge(e,4,t)},25),byCodePoints:t(function(e,t){return this.Pe(e,void 0,t)},3,void 0,f.FROM_CODE_POINT),byCodePointsRadix4:t(function(e,t){return this.Pe(e,4,t)},30,void 0,f.FROM_CODE_POINT),byDenseFigures:t(function(e,t){return this.ye(e,t)},1888),byDict:t(function(e,t){return this.me(e,void 0,void 0,t)},2),byDictRadix3AmendedBy1:t(function(e,t){return this.me(e,3,1,t)},136),byDictRadix4:t(function(e,t){return this.me(e,4,0,t)},160),byDictRadix4AmendedBy1:t(function(e,t){return this.me(e,4,1,t)},218),byDictRadix4AmendedBy2:t(function(e,t){return this.me(e,4,2,t)},263),byDictRadix5:t(function(e,t){return this.me(e,5,0,t)},223),byDictRadix5AmendedBy3:t(function(e,t){return this.me(e,5,3,t)},570),bySparseFigures:t(function(e,t){return this.xe(e,t)},347),express:t(function(e,t){e=e.valueOf();return this.we(e,t)},void 0,!0),plain:t(function(e,t){var n=e.valueOf(),t={maxLength:t,optimize:!0,screwMode:e.screwMode};return this.replaceString(n,t)}),text:t(function(e,t){return pt(this,e.valueOf(),e.wrapper,void 0,t)})};k(rt.prototype,{fe:function(e,t,n){return e(t,n)},ge:function(e,t,n){var r=this.findDefinition(ci);return Rt(this,e,r,Lt,t,n)},Pe:function(e,t,n){return Rt(this,e,"fromCodePoint",vt,t,n)},ye:function(e,t){return dt(this,bt,Ji,Et,[Gi],e,t)},me:function(e,t,n,r){var i=e.valueOf(),e=Nt(e),o=e.length,u=!t||o&&71<6*e[0].count,a=t||10,c=((e,t,n,r)=>{var i,o,u=Pi.slice(0,t);if(n){for(var a=t-n,c="[",s=0;s<n;++s){var _=a+s;u[_]=hr[pr[s]].appendLength,c+=_}i=On(c+="]","g"),o=function(e){return pr[e-a]}}for(var f=[],s=0;s<e;++s){var l=r&&!s?"":s.toString(t),A=n?l.replace(i,o):l,A=f[s]=hn(A);A.sortLength=(()=>{var t=0;return tn(l,function(e){t+=u[e]}),t})(),A.index=s}return f.sort(function(e,t){return e.sortLength-t.sortLength||e.index-t.index}),f})(o,a,n,u),s=S(),_=It(i),f=[],o=(e.forEach(function(e,t){var t=c[t],n=e.char;s[n]=t,_+=e.count*t.sortLength,f[t.index]=n}),ht(this,f,r-_));if(o){if(n)for(var l=[],A=a-n,R=0;R<n;++R){var p=pr[R],d=E(A+R);l.push({separator:p,joiner:d})}e=ft(this,i,s,[Mi],l,!1,r-o.length);if(e)return this.createDictEncoding(o,e,r,t,u)}},xe:function(e,t){return dt(this,It,zi,St,[Mi],e,t)},we:function(e,t){var n,e=ze(e);if(e)return!0===e?t<0||(n=""):n=this.Fe(e,!1,[],t,Yi),n},le:function(e,t,n,r){var i=this.perfLog=[],e=_t(this,e,{wrapper:t},n);if(r&&(r.perfLog=i),delete this.perfLog,null==e)throw new sn("Encoding failed");return e},_e:65533,createDictEncoding:function(e,t,n,r,i){var i=r?this.findDefinition(_i)(o=this.findDefinition(li),"[parseInt("+(i?"+":"")+o+","+r+")]"):'"".charAt.bind',o=lt(this,t,i,e)+"["+this.replaceString("join")+"]([])";if(!(n<o.length))return o},replaceFalseFreeArray:function(e,t){return this.replaceStringArray(e,[Mi],null,!1,t)},replaceJoinedArrayString:function(e,t){return se(e,{maxLength:t,screwMode:2})},replaceStringArray:function(r,e,u,t,a){var n,i,o,c,s,_,f,l,A=r.length;return(u||3<A)&&(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=Ft(this.replaceExpr(e.separator)),e=Ft(this.replaceString(e.joiner));i+="["+r+"]("+t+")["+o+"]("+e+")"},this)}return i+="["+r+"]"}}.call(this)),!u&&1<A&&(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=Ft(this.replaceExpr(e.separator)),t=n.length+e.length,c<t||(c=t,s=n,_=e))},this),s)&&(a=(n=s+i+"("+_+")").length-1),!u&&(A<=1||o&&!(4+(o.length+7)*(A-1)>a))&&(l={screwMode:t?yi:0},r.some(function(e){e=Ft(se(e,l));return f?f+="["+o+"]("+(e="[]"===e?"[[]]":e)+")":f="["+e+"]",f.length>a})||(n=f)),n}});var qi,$i,Ki,Qi,Vi=E.prototype.codePointAt?function(e){return e.codePointAt()}:function(e){return e.length<2?e.charCodeAt():ae(e.charCodeAt(0),e.charCodeAt(1))},Zi={appendLengthOf:Fn,optimizeSolutions:Fn},eo=[],to=[],no=36,ro=9007199254740991,io=[],oo=[,,,,,,,,,,,48,50,54,,64],uo=function(){for(var e=1/0,t=no;12<=t;--t){var n=se(E(t)),r=n.length,r=(r<e&&(e=r),io[t]=n,to[t]=ro.toString(t).length);eo[t]=oo[r]+e}},ao=f.FROM_CODE_POINT.mask,Ir=(k(rt.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,_,i,o,u,f,l,A,b,L,v;switch(e){case"comma":l=(f=this).replaceExpr("[][SLICE_OR_FLAT].call"),A=l.length+2,r={appendLengthOf:Pt,optimizeSolutions:function(r,u,a,c){function e(e){for(;e<_;){var i,t,n,o=((e,t)=>{var n=0;if(yt(e[t]))for(var r=e.length-2;t<r&&","===e[++t].source&&yt(e[++t]);)++n;return n})(u,e);o?(t=((e,t)=>{for(var n=0,r=t+i;(r-=2)>t;)n+=e[r].appendLength;return n})(u,e,i=2*o+1)-A,e||i!==s||(c?t-=3:a&&(t+=2)),e&&u[e].isWeak&&(t+=2),0<t&&(n=((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=f.replaceString(e,{optimize:!0,screwMode:yi});return new fr(t,l+"("+e+")",F.OBJECT)}})(u,e),r.addCluster(e,i,n,t)),e+=1+i):e+=2}}var s=u.length,_=s-2;e(0),e(1)}};break;case"complex":r=((r,e,t)=>{function a(){return s}var c,s,n,i,_,f,o=0,u=S(),l=[],t=(tn(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)),A=t.appendLength,R=o-A;if(0<2+R){l.sort(function(e,t){return e.appendLength-t.appendLength});for(var p=A,d=e.length,h=0;d;++h){var T=l[h],E=T.appendLength;if(p<E*d)break;T=T.count;p-=E*T,d-=T}var A=p/d|0,N=(c=e,s=t,n=((e,t)=>{for(var n,r=S();n=e[t++];)r[n.char]=null;return r})(l,h),i=A,_=R,f=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-f;o<=u;++o)((e,t)=>{for(var n=0;n<f;++n)if(e[t+n].source!==c[n])return;return 1})(t,o)&&(i=_,u||(r&&!s.isString?i-=3:n&&(i+=2)),0<i)&&e.addCluster(o,f,a,i)}})}else N=Zi;return N})(this,t,n);break;case"surrogatePair":i=(o=_=this).Le(1e5).length,o=o.ve(65536).length,u=pn(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=mt(c,55296,56319);s&&(u=mt(o=(i=t[r+1]).source,56320,57343))&&(s=ae(s,u),u=_e(_.Le(s),_.ve(s)),s=a.appendLength+i.appendLength-u.length-1,2===t.length&&n&&(s+=2),0<s)&&(a=((e,t)=>function(){return new fr(e,t,F.STRING)})(c+o,u),e.addCluster(r,2,a,s))}}};break;case"toString":uo&&(uo(),uo=null),b=this.resolveConstant("TO_STRING").replacement,L=b.length+7,v=S(),r={appendLengthOf:function(e){var t,n,e=e.source;if(null!=e&&/[bcghjkmopqvwxz]/.test(e))return null==(n=v[e])&&(t=xt(e),n=v[e]=(L+eo[t])/to[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=v[u]<=a.appendLength),i&&2<=r-o){R=O=S=N=_=void 0;for(var c=e,s=t,_=o,f=r,l=n;;++_){var A=f-_;if("0"!==s[_].source){var R=O=S=N=void 0,p=c,d=s,h=_,T=A,E=l,N="",S=0,O="",R=0;do{var I=d[h+R],I=(S+=I.appendLength,I.source);if(N<I&&(N=I),O+=I,2<=++R&&L<S&&(E&&!h&&R===T&&(S+=2),((e,t,n,r,i)=>{do{var o=Ln(i,n);if(ro<o)return null==s;var o=se($e(o)),u=o.length+3,a=io[n],c=a.length,s=L+u+c,u=r-s;0<u&&(c=((e,t)=>function(){return new fr(void 0,"(+("+e+"))["+b+"]("+t+")",F.STRING)})(o,a),e.addCluster(t,i.length,c,u))}while(++n<=no)})(p,h,xt(N),S,O)))break}while(R<T)}if(A<=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 oi){var s=oi[c];this.hasFeatures(s.mask)&&0<=e.indexOf(c)&&this.De(a,"complex",c,s.definition)}o&&this.hasFeatures(ao)&&/[\ud800-\udbff][\udc00-\udfff]/.test(e)&&this.De(a,"surrogatePair"),u&&this.De(a,"toString")}return a}}),qi=On("(?:(?!.)\\s)+(?:\\s|\ufeff|//(?:(?!\\*/|`).)*(?!.)|/\\*(?:(?!`)(?:[^*]|\\*[^/]))*?\\*/)*$"),k({},{Feature:f,encode:Dt})),co=f.Ne,so=!1;Bt(),k(Dt,{get permanentCaching(){return so},set permanentCaching(e){so=!!e,Wt()}}),"undefined"!=typeof self&&(self.JScrewIt=Ir),"undefined"!=typeof module&&(module.exports=Ir,exports.Feature=null,exports.encode=null)})();
1
+ // JScrewIt 2.39.0 – https://jscrew.it
2
+ !function(){function k(n,r){return Sn(r).forEach(function(e){var t=Nn(r,e);t.enumerable=!1,En(n,e,t)}),n}function U(t){var n=S();return Sn(t).forEach(function(e){n[e]=t[e]}),n}function B(e,t){try{var n=On(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 j(e,t){return e.saving-t.saving||t.length-e.length||H(t,e)}function H(e,t){return t.start-e.start}function M(){var e,t=[],n=this.clusters;if(n.length){for(n.sort(j);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])&&(G(i,0),delete o[c]),++c<s;);for(var f=1;f<u;)(i=o[a-f++])&&(G(i,f),i.length=f);return r}}(this.startLinks,n,this.maxLength);)t.push(e);t.sort(H)}return t}function G(e,t){for(var n=e.length;n-- >t;){var r=e[n];r&&delete r.saving}}function Y(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");Cn(e,t),e.prototype=null===t?Object.create(t):(n.prototype=t.prototype,new n)}function z(e,t){return e[Pn]===t[Pn]&&e[yn]===t[yn]}function J(e,t){var n;return(n=t[Pn])===(n&e[Pn])&&(n=t[yn])===(n&e[yn])}function X(e,t){var n=e[Pn]|t[Pn];return mn([n,e[yn]|t[yn]])}function q(e,t){for(var n=0,r=qn(t);n<r.length;n++){var i=r[n],o=Xn(t,i);o.enumerable=!1,zn(e,i,o)}}function $(e){if("symbol"==typeof e)throw new Kn("Cannot convert a symbol to a string");return $n(e)}function K(e,t){zn(e,"mask",{value:t})}function Q(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 V(e){throw new Mn("Unknown feature ".concat(Gn(e)))}function Z(e,t,n){t=t.toLocaleString(e);return n.test(t)}function ee(e){return"Features available in "+e+"."}function te(t){return function(){try{var e=self+""}catch(e){return!1}return t.test(e)}}function ne(){var e=arguments,t=e.length-2,n=e[t],r=e[1+t],e=ue(e,0,t),t=ue(n,r);return rn(e,t),this.apply(null,e)}function re(e,t){return{definition:e,mask:t}}function s(e){return re(e,ue(arguments,1).reduce(function(e,t){return X(e,t.mask)},xn))}function ie(n,e){e=e.map(function(e){var t=n[e.definition];return re(t.definition,X(e.mask,t.mask))});return e.available=n,e}function oe(e){e._=ne}function ue(e,t,n){return on(e,t,n)}function ae(e,t){return(e-55296<<10)+t+9216}function ce(e){return un(e+1).join("0")}function se(e,t){return Bn.replaceString(e,t)}function fe(){var n,r=1/0;return tn(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 _e(){for(var e=[],t=0;t<arguments.length;t++)e[t]=arguments[t];var n=r.apply(void 0,e);return function(e){return en(n,e)}}function le(e){for(var t=0,n=or;t<n.length;t++){var r=n[t];if(function(e,n){return!(e.length>n.length)&&e.every(function(e,t){return en(e,n[t].type)})}(r.typeSetList,e))return r}}function Ae(e){return"undefined"!==e?"undefined":"falsefalse"}function f(e,t){return s._({block:e,shiftedIndex:t},arguments,2)}function Re(e){var t=Tr[e];if(!t){var n=_.AT,r=_.FF_SRC,i=_.IE_SRC,o=_.NO_FF_SRC,u=_.NO_IE_SRC,a=_.NO_V8_SRC,c=_.V8_SRC;switch(e){case 16:t=[f("FBEP_4_S","2 + FH_SHIFT_1"),f("FBP_5_S",21,o),f("FBEP_4_S",20,u),f("RP_0_S","2 + FH_SHIFT_1",a),s(0,r),s(0,i),s(4,c)];break;case 18:case 28:t=[f("RP_5_A + [FBP_7_WA]",e+12),f("RP_4_A + [FBP_8_WA]",e+12,n),f("[RP_3_WA] + FBP_9_U",e+12,o),f("[RP_3_WA] + FBEP_9_U",e+12,u),f("FBEP_4_S",e+4,_.INCR_CHAR,u),f("RP_0_S",(e+2)/10+" + FH_SHIFT_3",a),s(0,r),s(0,i),s(3,c)];break;case 20:case 30:t=[f("RP_3_WA + [FBP_7_WA]",e+10),f("FBEP_10_S",(e+10)/10+" + FH_SHIFT_1",n),f("[RP_1_WA] + FBP_9_U",e+10,o),f("FBEP_10_S",e+10,u),f("RP_6_S",(e+10)/10+" + FH_SHIFT_1",a),s(6,r),s(5,i),s(0,c)];break;case 21:t=[f("FBEP_9_U","3 + FH_SHIFT_1"),f("FBP_9_U",30,o),f("FBEP_9_U",30,u),f("RP_5_A","3 + FH_SHIFT_1",a),s(5,r),s(4,i),s(0,c)];break;case 23:t=[f("FBP_7_WA",30),f("FBP_9_U",32,o),f("FBEP_9_U",32,u),f("RP_3_WA","3 + FH_SHIFT_1",a),s(3,r),s(3,i),s(0,c)];break;case 25:t=[f("FBP_7_WA",32),f("FBP_5_S",30,o),f("RP_1_WA + FBEP_4_S",30,u),f("RP_1_WA","3 + FH_SHIFT_1",a),s(1,r),s(0,i),s(5,c)];break;case 32:t=[f("FBP_8_WA",40),f("FBP_9_U",41,o),f("FBEP_9_U",41,u),f("RP_4_A","4 + FH_SHIFT_1",a),s(4,r),s(3,i),s(0,c)];break;case 34:t=[f("FBP_7_WA",41),f("RP_1_WA + FBP_5_S",40,o),f("FBEP_9_U",43,u),f("RP_2_WS","4 + FH_SHIFT_1",a),s(3,r),s(1,i),s(6,c)]}t.cacheKey="FBP:"+e,Tr[e]=t}return t}function pe(e){var t=Er[e];if(!t){var n=_.IE_SRC,r=_.INCR_CHAR,i=_.NO_IE_SRC;switch(e){case 3:case 13:t=[f("RP_4_A + [FHP_3_WA]",e+7),f("FHP_8_S",e+8,r),s(6,n),s(0,i)];break;case 6:case 16:t=[f("FHP_5_A",e+5),s(3,n),s(4,i)];break;case 8:case 18:t=[f("FHP_3_WA",e+3),f("RP_2_WS",(e+2)/10+" + FH_SHIFT_1",r),s(1,n),s(3,i)];break;case 9:case 19:t=[f("RP_1_WA",(e+1)/10+" + FH_SHIFT_1"),s(0,n),s(1,i)];break;case 11:t=[f("RP_0_S","1 + FH_SHIFT_2"),s(0,n),s(0,i)];break;case 12:t=[f("FHP_8_S",20),s(0,n),s(0,i)];break;case 14:t=[f("[RP_1_WA] + FHP_5_A",20),s(5,n),s(6,i)];break;case 15:t=[f("FHP_5_A",20),s(4,n),s(5,i)];break;case 17:t=[f("FHP_3_WA",20),f("RP_3_WA","2 + FH_SHIFT_1",r),s(3,n),s(3,i)]}t.cacheKey="FHP:"+e,Er[e]=t}return t}function de(e,t){var n=function(e){for(var t=!1;"value"in e&&ve(e);){var n=e.value;if(!an(n))return null==n&&t?"":E(n);if(!(e=n[0]))return"";t=!0}}(t);null!=n&&(t.str=n),t.type="get",he(e,t)}function he(e,t){e=e.opsStack;e[e.length-1].push(t)}function Te(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=Fe(t,e.mod||"",e.pmod),e.mod=t,e.arithmetic=!0)}function Ee(e){e=i(e,Ci);if(e){var t=_n('"'+e+'"');if(/^[$A-Z_a-z][$\w]*$/.test(t))return{escaped:t.length<e.length,identifier:t}}}function Ne(e){return fn("return "+e)()}function Se(e,t){if(Le(e)&&Me(t))return ge(t,{value:[e]}),Pe}function Oe(e,t){if(We(t))return ge(t,e),Pe}function Ie(e,t){if(Le(e)&&Me(t))return de(t,e),Pe}function be(e,t){if(Le(e)&&We(t))return e.type="param-call",he(t,e),Pe}function Le(e){var t=e.mod||"";if(!/-/.test(t)&&(!/#$/.test(t)||e.ops.length))return e.mod=t.replace(/#/g,"++"),e}function ve(e){return!e.mod&&!e.ops.length}function Fe(e,t,n){e=(e+t).replace(/\+\+|--/,"+").replace(/\+-|-\+/,"-").replace(/!-/,"!+").replace(/\+#/,"#").replace(/!\+!/,"!!").replace("!!!","!");return n?e.replace(/\+$/,""):e}function Ce(e){e="^(?:"+Ye(e)+")";return On(e)}function ge(e,t){e.opsStack.push([]),ke(e,t)}function Pe(e){if(Be(e))return We(e)?(he(e,{type:"call"}),Pe):(we(e,be),me);if(He(e))return we(e,Ie),me;if(i(e,/^\./))return(t=Ee(e))?(de(e,{ops:[],value:t.identifier}),Pe):void 0;var t=xe(e),n=e.opsStack.pop();if(n.length&&(t.arithmetic=!1,t.mod||t.pmod)){if(!Le(t))return;t={terms:[t]}}t.ops=n=(t.ops||[]).concat(n),!n.length||t.mod||t.pmod||/^.*$/.test(e.separator)&&(n=i(e,/^\+\+/))&&(t.pmod=n,t.arithmetic=!0);n=e,e=t,t=xe(n);if(Te(e,n.modStack.pop()),t){if(!Le(e))return;var r=t.terms;if(r&&ve(t))r.push(e),e.arithmetic||(t.arithmetic=!1);else{if(!Le(t))return;t={arithmetic:t.arithmetic&&e.arithmetic,ops:[],terms:[t,e]}}}else t=e;r=i(n,/^(?:\+(?!\+)|-(?!-))/);return r?("-"!==r||t.arithmetic||Te(t,"+"),De(n,Ue(n,"+"===r?"":r)),ke(n,t),ye):n.finalizerStack.pop()(t,n)}function ye(e){var t=i(e,yi);if(t)return ge(e,{value:Ne(t)}),Pe;t=i(e,Fi);if(t)return ge(e,{arithmetic:!0,value:Ne(t)}),Pe;if(He(e))return Me(e)?(ge(e,{value:[]}),Pe):(we(e,Se),me);if(Be(e))return we(e,Oe),me;t=Ee(e);if(t){var n,r=t.identifier,t=t.escaped;if(vi.indexOf(n=r)<0&&(!t||Li.indexOf(n)<0))return ge(e,{identifier:r}),Pe}}function me(e){if(e.finalizerStack.length<=1e3)return De(e,Ue(e,"")),ke(e),ye}function xe(e){return e.unitStack.pop()}function we(e,t){e.finalizerStack.push(t)}function De(e,t){e.modStack.push(t)}function ke(e,t){e.unitStack.push(t)}function i(e,t){var n,r=e.data,t=t.exec(r);if(t)return t=t[0],r=r.slice(t.length),(n=Pi.exec(r)[0])&&(r=r.slice(n.length)),e.data=r,e.separator=n,t}function Ue(e,t){for(var n;n=i(e,/^(?:!|\+\+?|-(?!-))/);)t=Fe(t,n.replace(/\+\+/g,"#"));return t}function Be(e){return i(e,/^\(/)}function We(e){return i(e,/^\)/)}function je(e){e.data=e.data.replace(gi,"")}function He(e){return i(e,/^\[/)}function Me(e){return i(e,/^]/)}function Ge(e,t){return"(?:"+(null==(r=bi[t])&&(n=Ii[t],bi[t]=r=Ye(n)),r)+")";var n,r}function Ye(e){return e.replace(/#(\w+)/g,Ge)}function ze(e){var t,e={data:e,modStack:[],opsStack:[],finalizerStack:[Le],unitStack:[]};return je(e),!e.data||((t=function(e){for(var t=me;"function"==typeof t;t=t(e));return t}(e))&&(je(e),!e.data)?t:void 0)}function Je(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:M,maxLength:0,startLinks:S()},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 ar,_=s.length;if(_){var l=0;do{var A=s[l]}while(f.append(A),++l<_)}else f.append(lr);!f.isString&&e&&f.append(lr);t=f.replacement;return n&&f.isLoose?"("+t+")":t}function Xe(e,t,n){this.te=t,this.ne=dn(2,t-1),this.ee=n,this.re=e,this.$=[],this.ie=-3}function qe(e,t,n){return+(e+t+"e"+n)}function $e(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=qe(t,n,a);;){var i=n-1;if(qe(t,i,a)!==r)break;n=i}return t+n}();return 0<=a?a<10?e+ce(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):function(e,t,n){var r,i=-93<t%100?-7<t%10?0:10+t%10:100+t%100;if(e+=ce(i),6*i+26+136+(i=E(-(t-=i)),r=0,tn(i,function(e){e=xi[e];r+=e}),r)<n)return e+"e"+t}(e,a,73+6*(t=-e.length-a))||"."+ce(t)+e}function Ke(e,t){return an(t)?e.findDefinition(t):t}function Qe(e){var t="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"[e>>2]+ni[3&e],n="("+this.replaceString(t)+")",t=(2<t.length&&(n+=Ve(0)),Ke(this,ui[e>>4])),r=t+Ke(this,ri[15&e]),t=Ve(1+(t.length-2)/4*3),r="("+this.replaceString(r)+")"+t,t=oi[e>>6],e=t+ii[63&e],t=Ve(2+(t.length-3)/4*3),n=fe(n,r,"("+this.replaceString(e)+")"+t);return this.resolveConstant("atob").replacement+n}function Ve(e){return"["+se(E(e))+"]"}function Ze(e){var t=e<65536?this.findDefinition(_i):"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 et(e,t,n){var r=e.findDefinition(di),t=t.toString(16),i=(n=n?ce(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,Ui),t=e.replaceString(i,ki),r.length<t.length)?n:i}function tt(e){var t,e=65536<=e?(n="u{"+et(this,e)+"}",!(t=!1)):253<=e||e in Bi?(t=5<(n="u"+et(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 nt(e){var t,e=e<256?(t=2<(n=et(this,e,2)).length,!1):(t=5<(n="u"+et(this,e,4)).length,!0),n='unescape("%'+n+'")';return t&&(n+="[0]"),this.replaceExpr(n,{default:!1,toStringOpt:e})}function rt(e){this.mask=e,this.oe=Tn(ji),this.ue=Tn(Hi),this.ae=S(),this.ce=S(),this.se=[]}function it(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=Gi(e.mask),o="Circular reference detected: "+r.join(" < ")+" – "+i,k(u=new In(o),{chain:r,feature:i}),u;n.call(e)}finally{a.pop()}}function ot(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 ut(e,t,n){var r=t in e.constantDefinitions?e.resolveConstant(t):hr[t],e=(r||ct(e,"Undefined identifier "+t),n&&r.isLoose||1<n&&"!"===r.replacement[0]),t=r.replacement;return e?"("+t+")":t}function at(e,t,n,r,i){r=r.call(e,n),e=new _r(t,r,F.STRING);return e.entryCode=i,e}function ct(e,t){var e=e.se,n=e.length;throw n&&(t+=" in the definition of "+e[n-1]),new In(t)}function st(n,r){function u(e,t){e=hn(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=S(),A=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;){A.forEach(i);var t=s[c++];t&&rn(f,t)}return f[e]}}function ft(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),hn(e));return Sn(t).forEach(function(e){f[e]=t[e]}),n.forEach(function(e){var t,n=Ki[e],e={strategyName:e},r=a<n.minInputLength?"skipped":i.hasFeatures(n.mask)?(i.perfLog=e.perfLog=[],r=new cn,t=null!=o?o.length:NaN,n=n.call(i,f,t),t=new cn-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 _t(e,t,n,r,i,o,u){t=nn(t,function(e){return n[e]});return e.replaceStringArray(t,r,i,o,u)}function lt(e,t,n,r){return t+"["+e.replaceString("map",{optimize:!0})+"]("+e.replaceExpr(n,!0)+"("+r+"))"}function At(e,t,n,r){n=e.findDefinition(li)(n,r);return t+"["+e.replaceString("map",{optimize:!0})+"]("+e.replaceExpr('Function("return '+n+'")()',!0)+")["+e.replaceString("join")+"]([])"}function Rt(e,t,n,r,i,o){var u="strCodeCache"+(i?"Radix"+i:""),r=r(t.valueOf(),i,t[u]||(t[u]=S())),t=e.replaceFalseFreeArray(r,o);if(t&&!((i=i?At(e,t,n,"parseInt(undefined,"+i+")"):r.length>e.fe?At(e,t,n,"undefined"):(u=e.findDefinition(hi)+"."+n+"(",e.resolveConstant("Function").replacement+"("+e.replaceString(u,{optimize:!0})+"+"+t+"+"+e.resolveCharacter(")").replacement+")()")).length>o))return i}function pt(e,t,n,r,i){var o;if(!n||t){if(null==(o=Tt(e,t,!n||n.forceString?wi:0,r,i)))return}else o="";if(!((o=n?n.call(e,o):o).length>i))return o}function dt(e,t,n,r,i,o,u){var a=o.valueOf(),o=Nt(o),c=S(),s=t(a),t=o.map(function(e,t){t=n(t);return c[e.char]=t,s+=e.count*t.sortLength,t}),o=ht(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=_t(e,a,c,i,null,!0,f-t.length);if(r)return a=e.findDefinition(Ai),i=lt(e,r,a("undefined",".indexOf(undefined)"),t),e.createDictEncoding(o,i,u)}}}function ht(e,t,n){if(!(n<0)){e=ft(e,t.join(""),{screwMode:wi},["byCodePointsRadix4","byCharCodesRadix4","byCodePoints","byCharCodes","plain"],"legend");if(e&&!(e.length>n))return e}}function Tt(e,t,n,r,i){e=ft(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 Et(e,t){var n=[Ji],e=e(t.length-1).joiner;return null!=e&&n.push({joiner:e,separator:e}),n}function Nt(e){var t,n,r=e.freqList;return r||(t=S(),tn(e,function(e){(t[e]||(t[e]={char:e,charCode:e.charCodeAt(),count:0})).count++}),n=Sn(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 St(){return[zi]}function Ot(e){return e.length?e.join(":"):"0"}function It(e){return Rn(4*(e.length-1)-3,0)}function bt(){return-1}function Lt(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 vt(e,t,n){for(var r=[],i=B(".","gsu")||/[\ud800-\udbff][\udc00-\udfff]|[^]/g;o=i.exec(e);){var o=o[0],u=n[o];null==u&&(u=n[o]=to(o).toString(t)),r.push(u)}return r}function Ft(e){return"[][[]]"===e&&(e+="+[]"),e}function Ct(e){return this.resolveConstant("Function").replacement+"("+e+")()"}function gt(e){return this.replaceExpr('Function("return eval")()')+"("+e+")"}function Pt(e){if(","===e.source)return 0}function yt(e){e=e.source;return e&&1===e.length}function mt(e,t,n){if(e&&1===e.length){e=e.charCodeAt();if(t<=e&&e<=n)return e}}function xt(e){return Ln(e,oo)+1}function wt(e){Vi.set(e.mask,e)}function Dt(e,t){e=function(e){if("symbol"==typeof e)throw new bn("Cannot convert a symbol to a string");return E(e)}(e);var n=(t=t||{}).features,r=t.runAs,r=void 0!==r?kt(r,"runAs"):kt(t.wrapWith,"wrapWith"),i=r[0],r=r[1],o=(t.trimCode&&(u=(u=e).replace(/^(?:\s|\uFEFF|\/\/.*(?!.)|\/\*[\s\S]*?\*\/)*(?!.)\s/,""),e=u=(o=Qi.exec(u))&&"\\"!==u[(o=o.index)-1]?u.slice(0,o):u),t.perfInfo),u=_o(n);return(t=Vi.get(u))||(wt(t=new rt(u)),Wt()),(Zi=t).le(e,i,r,o)}function kt(e,t){var n=["text","express"],r=["text"];if(void 0===e)return[gt,n];switch(E(e)){case"call":return[Ct,r];case"eval":return[gt,r];case"express":return[,["express"]];case"express-call":return[Ct,n];case"express-eval":return[gt,n];case"none":return[,r]}throw new sn("Invalid value for option "+t)}function Ut(){eo=void 0,lo||(Bt(),wt(Zi))}function Bt(){Vi=new Dn}function Wt(){!lo&&!eo&&1<Vi.size&&(eo=vn(Ut))}function jt(e){return"_".concat(e)}function Ht(){this.Ae=Object.create(null),this.Re=0}function Mt(){return null!==wn&&wn.apply(this,arguments)||this}function Gt(){return null!==kn&&kn.apply(this,arguments)||this}function Yt(){return Yn(null)}function zt(){}function Jt(){var e=null!==ur&&ur.apply(this,arguments)||this;return e.$=[],e}function Xt(e,t,n){var r=cr.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 qt(e,t,n){var r=fr.call(this)||this;return r.source=e,r.replacement=t,r.type=n,r}function o(t){function e(e){return!(t&&e in t)||t[e]}return s((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 e(e,t){var n,r=e,i=pe(n=t);return s._(function(e){return this.de(e,r,n,i,fi)},arguments,2)}function $t(e){return s((t=e,function(e){return this.he(e,t,Re,si)}));var t}function Kt(e){var t=e;return s._(function(e){return this.he(e,t,pe,fi)},arguments,1)}function Qt(e,t,n){t="("+t+")[TO_LOCALE_STRING]("+e+")";return null!=n&&(4<n?t="("+dr[10-n]+" + "+t+")[10]":t+="["+n+"]"),s._(t,jr,arguments,3)}function Vt(e,t,n){var r;hr[e]=(r=t,new sr(e,function(){return Bn.replaceExpr(r)},n))}function u(e,t,n,r){ai[e]=[Qt._(t,n,r,arguments,4),o()]}function Zt(e,t){for(var n=E.fromCharCode,r=0;r<=9;++r){var i=n(t+r);u._(i,e,r,void 0,arguments,2)}}function t(e,t,n,r){return e.minInputLength=t,e.expressionMode=n=void 0!==n&&n,void 0===r&&(r=_.DEFAULT),e.mask=r.mask,e}function en(e,t){return 0!=(e&t)}var tn,nn,rn,on,un=Array,an=un.isArray,cn=Date,sn=Error,fn=Function,_n=JSON.parse,ln=JSON.stringify,An=Math.abs,Rn=Math.max,pn=Math.min,dn=Math.pow,hn=Object,Tn=hn.create,En=hn.defineProperty,Nn=hn.getOwnPropertyDescriptor,Sn=hn.keys,On=RegExp,E=String,In=SyntaxError,bn=TypeError,Ln=parseInt,vn=setTimeout,S=Tn.bind(null,null,void 0),Fn=fn(),Cn=(a=un.prototype,Vn=(n=fn.prototype).apply,(n=n.call).bind(a.every),tn=n.bind(a.forEach),nn=n.bind(a.map),on=n.bind(a.slice),rn=Vn.bind(a.push),function(e,t){return(Cn=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)}),gn=function(){return(gn=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)},Pn=0,yn=1,mn=function(e){return Object.freeze(e)},xn=mn([0,0]),n=(Object.defineProperty(Ht.prototype,"size",{get:function(){return this.Re},enumerable:!1,configurable:!0}),Ht.prototype.has=function(e){return jt(e)in this.Ae},Ht.prototype.Te=function(e,t){var e=jt(e),n=this.Ae;e in n||++this.Re,n[e]=t},Ht);Y(Mt,wn=n),Mt.prototype.get=function(e){e=jt(e);return this.Ae[e]},Mt.prototype.set=function(e,t){this.Te(e,t)};var wn,Dn=Mt;Y(Gt,kn=n),Gt.prototype.add=function(e){this.Te(e,void 0)};var kn,Un,_,Bn,Wn,jn=Gt,Hn=Array.isArray,Mn=Error,Gn=JSON.stringify,Yn=Object.create,zn=Object.defineProperty,Jn=Object.freeze,Xn=Object.getOwnPropertyDescriptor,qn=Object.keys,$n=String,Kn=TypeError,Qn={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:te(/^\[object [\S\s]*Window]$/),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())}},ASYNC_FUNCTION:{description:"Support for async functions, which return Promise object.",check:function(){try{return Function("return async function(){}"),!0}catch(e){}}},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"}},CALL_ON_GLOBAL:{description:"The ability to call a function on the global object when invoking Function.prototype.call without binding.",check:function(){try{if([].concat.call()[0])return!0}catch(e){}}},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"}},CREATE_ELEMENT:{description:"Existence of the function document.createElement.",aliasFor:"ANY_DOCUMENT"},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"],attributes:{"web-worker":"web-worker-restriction"}},DOMWINDOW:{description:'Existence of the global object self having the string representation "[object DOMWindow]".',check:te(/^\[object DOMWindow]$/),includes:["ANY_WINDOW"],excludes:["OBJECT_W_SELF"],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("&quot;&lt;&gt;")},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 "&quot;".',check:function(){return~"".fontcolor('"').indexOf("&quot;")}},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("&quot;<>")},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}},FORMS:{description:'Existence of the object document.forms with string representation "[object HTMLCollection]".',aliasFor:"ANY_DOCUMENT"},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"}},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}},ITERATOR_HELPER:{description:"Availability of iterator helpers.",check:function(){return"function"==typeof Iterator}},JAPANESE_INFINITY:{description:'Japanese string representation of Infinity ending with "∞".',check:function(){return/∞$/.test((1/0).toLocaleString("ja"))}},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 Z("ar",NaN,/^ليس/)&&Z("ar-td",234567890.1,/^٢٣٤٬?٥٦٧٬?٨٩٠٫١/)&&Z("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 Z("ar",NaN,/^ليس.رقم/)&&Z("ar-td",234567890.1,/^٢٣٤٬?٥٦٧٬?٨٩٠٫١/)&&Z("bn",1234567890,/^১,২৩,৪৫,৬৭,৮৯০/)&&Z("fa",1234567890,/^۱٬۲۳۴٬۵۶۷٬۸۹۰/)&&Z("fa",NaN,/^ناعد/)&&Z("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))}},MOZILLA:{description:'Existence of user agent string navigator.userAgent that starts with "Mozilla".',check:function(){return"object"==typeof navigator&&/^Mozilla/.test(navigator.userAgent)}},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"}},NODE_NAME:{description:'Existence of the string document.nodeName that starts with a number sign ("#").',aliasFor:"ANY_DOCUMENT"},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]".',check:function(){if(Array.prototype.entries)return[].entries()+""=="[object Array Iterator]"},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_ARRAY_ENTRIES_CTOR:{description:"The property that the Array.prototype.entries().constructor is the Object constructor.",check:function(){return Array.prototype.entries&&[].entries().constructor===Object}},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_SELF:{description:'The property that the string representation of the global object self starts with "[object W".',check:te(/^\[object W/),includes:["SELF_OBJ"],excludes:["DOMWINDOW"],attributes:{"web-worker":"non-ie-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:te(/^\[object /),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:te(/^\[object Window]$/),includes:["ANY_WINDOW","OBJECT_W_SELF"],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","MOZILLA","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 17.3 or Android Browser.",includes:["ANY_DOCUMENT","ARROW","ASYNC_FUNCTION","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","INCR_CHAR","INTL","JAPANESE_INFINITY","LOCALE_INFINITY","LOCALE_NUMERALS_EXT","LOCATION","MOZILLA","NAME","NO_IE_SRC","NO_OLD_SAFARI_ARRAY_ITERATOR","REGEXP_STRING_ITERATOR","STATUS","WINDOW"],attributes:{"char-increment-restriction":null,"non-ie-restriction":null,"web-worker-restriction":null}},ANDRO_4_0:{families:["Android Browser"],versions:["4.0"],includes:["ANY_DOCUMENT","ATOB","CALL_ON_GLOBAL","CONSOLE","DOMWINDOW","ESC_HTML_ALL","FUNCTION_22_LF","GMT","HISTORY","INCR_CHAR","LOCATION","MOZILLA","NAME","STATUS","V8_SRC"]},ANDRO_4_1:{inherits:"ANDRO_4_0",versions:[["4.1",,"4.3"]],includes:{CALL_ON_GLOBAL:!1,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,JAPANESE_INFINITY:!0,LOCALE_INFINITY:!0,LOCALE_NUMERALS_EXT:!0,PLAIN_INTL:!0,SHORT_LOCALES:!0,WINDOW:!0},attributes:{"no-console-in-web-worker":null,"non-ie-restriction":null,"web-worker-restriction":null}},CHROME_PREV:{description:ee("the previous to current versions of Chrome and Edge"),aliasFor:"CHROME_122"},CHROME:{description:ee("the current stable versions of Chrome, Edge and Opera"),aliasFor:"CHROME_122"},CHROME_122:{families:["Chrome","Edge","Opera"],versions:[["122"],["122"],["108"]],includes:["ANY_DOCUMENT","ARROW","ASYNC_FUNCTION","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","INCR_CHAR","INTL","ITERATOR_HELPER","JAPANESE_INFINITY","LOCALE_INFINITY","LOCALE_NUMERALS_EXT","LOCATION","MOZILLA","NAME","NO_OLD_SAFARI_ARRAY_ITERATOR","REGEXP_STRING_ITERATOR","STATUS","V8_SRC","WINDOW"],attributes:{"char-increment-restriction":null,"non-ie-restriction":null,unstable:null,"web-worker-restriction":null}},FF_ESR:{description:ee("the current version of Firefox ESR"),aliasFor:"FF_90"},FF_PREV:{description:ee("the previous to current version of Firefox"),aliasFor:"FF_90"},FF:{description:ee("the current stable version of Firefox"),aliasFor:"FF_131"},FF_90:{families:["Firefox"],versions:[["90",,"130"]],includes:["ANY_DOCUMENT","ARROW","ASYNC_FUNCTION","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","INCR_CHAR","INTL","JAPANESE_INFINITY","LOCALE_INFINITY","LOCALE_NUMERALS_EXT","LOCATION","MOZILLA","NAME","NO_OLD_SAFARI_ARRAY_ITERATOR","OBJECT_ARRAY_ENTRIES_CTOR","REGEXP_STRING_ITERATOR","SHORT_LOCALES","STATUS","WINDOW"],attributes:{"char-increment-restriction":null,"non-ie-restriction":null,unstable:null,"web-worker-restriction":null}},FF_131:{inherits:"FF_90",versions:[["131"]],includes:{ITERATOR_HELPER:!0,OBJECT_ARRAY_ENTRIES_CTOR:!1}},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","MOZILLA","OBJECT_L_LOCATION_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:{ANY_DOCUMENT:!0,DOCUMENT:!1,GMT:!0,JAPANESE_INFINITY:!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,JAPANESE_INFINITY:!0,LOCALE_INFINITY:!0,NO_OLD_SAFARI_ARRAY_ITERATOR:!0,OBJECT_ARRAY_ENTRIES_CTOR:!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",,"7.5"]],attributes:{"char-increment-restriction":null}},NODE_7_6:{inherits:"NODE_5",versions:[["7.6",,"9"]],includes:{ASYNC_FUNCTION:!0}},NODE_10:{inherits:"NODE_7_6",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",,"21"]],includes:{AT:!0}},NODE_22:{inherits:"NODE_16_6",versions:[["22"]],includes:{ITERATOR_HELPER:!0,OBJECT_ARRAY_ENTRIES_CTOR:!1}},SAFARI_7_0:{families:["Safari"],versions:["7.0"],includes:["ANY_DOCUMENT","ATOB","BARPROP","CONSOLE","ESC_HTML_QUOT_ONLY","ESC_REGEXP_LF","ESC_REGEXP_SLASH","FF_SRC","GENERIC_ARRAY_TO_STRING","GLOBAL_UNDEFINED","GMT","HISTORY","INCR_CHAR","LOCATION","MOZILLA","NAME","NODECONSTRUCTOR","OBJECT_L_LOCATION_CTOR","OLD_SAFARI_LOCATION_CTOR","STATUS","WINDOW"],attributes:{"char-increment-restriction":null,"no-console-in-web-worker":null,"non-ie-restriction":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,OBJECT_ARRAY_ENTRIES_CTOR:!0}},SAFARI_10_0:{inherits:"SAFARI_9",versions:["10.0"],includes:{ARROW:!0,JAPANESE_INFINITY:!0,LOCALE_INFINITY:!0,LOCALE_NUMERALS_EXT:!0,NODECONSTRUCTOR:!1,OBJECT_L_LOCATION_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_10_1:{inherits:"SAFARI_10_0",versions:[["10.1","11"]],includes:{ASYNC_FUNCTION:!0}},SAFARI_12:{inherits:"SAFARI_10_1",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_15_4:{inherits:"SAFARI_14_1",versions:[["15.4",,"17.3"]],includes:{AT:!0}},SAFARI_17_4:{inherits:"SAFARI_15_4",versions:[["17.4",,"17.6"]],includes:{FUNCTION_19_LF:!0,FUNCTION_22_LF:!1}},SAFARI:{description:ee("the current stable version of Safari"),aliasFor:"SAFARI_18"},SAFARI_18:{inherits:"SAFARI_17_4",versions:[["18"]],includes:{SHORT_LOCALES:!1}}},Vn=Sn(Qn).filter(function(e){e=Qn[e].check;return e&&e()}),Zn=(Qn.AUTO={description:ee("the current environment"),includes:Vn},_=function(P,y){function u(){for(var e=[],t=0;t<arguments.length;t++)e[t]=arguments[t];for(var n=xn,r=0,i=e;r<i.length;r++)n=X(n,s(i[r]));1<e.length&&a(n);var o=this instanceof u?this:Yn(B);return K(o,n),o}function n(e){for(var t=xn,n=e.length,r=0;r<n;++r)t=X(t,i(e[r]));return t}function c(e){var t=Yn(B);return K(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?Q(r,"<","",this.canonicalNames,",",">",n-3):i],o=(this.elementary&&i.push("(elementary)"),this.check&&i.push("(check)"),this.attributes);return"object"==typeof o&&(o=_(gn({},o),t),i.push(o)),Q(r,"[Feature"," ",i,"","]",n-1)}function o(t){return r.every(function(e){return!J(t,e)})}function i(e){return(e instanceof u?e:((e=$(e))in x||V(e),x[e])).mask}function s(e){var t;return Hn(e)?(t=n(e),1<e.length&&a(t)):t=i(e),t}function a(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?$(n[e]):void 0},i=r("description"),u=void 0;if("aliasFor"in n){var a=$(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)),A=n.check,A=void 0!==A?(c=function(){for(var e=H,t=0;e[t>>5]&1<<(31&t);t++)if(63===t)throw RangeError("Mask full");var n=[0,0];return n[t>>5]=1<<(31&t),mn(n)}(),H=X(H,c),t=A,function(){return!!t()}):(c=xn,null),R=n.includes,p=W[o]=Yt();if(Hn(R))for(var d=0,h=R;d<h.length;d++)p[T=h[d]]=null;else{if(null!=a)for(T in W[a])p[T]=null;if(R)for(var T,E=0,N=qn(R);E<N.length;E++)R[T=N[E]]?p[T]=null:delete p[T]}for(T in p)c=X(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=$(e);var n,r,t=s[t],i=(r=Hn(t)?(i=t.length,r=$(t[0]),i=i<2?void 0:$(t[i-1]),n=2===t.length,Jn({from:r,to:i,dense:n})):$(t),Jn({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 S=Yt();if(null!=a){var O=x[a].attributes;for(v in O)S[v]=O[v]}var I=n.attributes;if(void 0!==I)for(var b=0,L=qn(I);b<L.length;b++){var v,F=I[v=L[b]];void 0!==F?S[v]="string"==typeof F?F:null:delete S[v]}var r=null!=A?A:n.excludes,C=o,a=c,g=r;Jn(e=S),e={attributes:{value:e},check:{value:A},name:{value:C}},g&&(e.elementary={value:!0}),K(A=Yn(B,e),a),u=A,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=Yt(),w=Yt(),D=[],k=[],U=Yt(),B=u.prototype,r=[];try{_=require("util").inspect}catch(e){}var l={get canonicalNames(){for(var e=this.mask,t=[],n=xn,r=f.length;r--;){var i=f[r],o=i.mask;J(e,o)&&!J(n,o)&&(n=X(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];J(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=s(e);return J(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),q(B,l),q(u,{ALL:x,ELEMENTARY:D,ENGINE:k,FAMILIES:U,Ee:function(e){if(o(e)){for(var t=xn,n=0,r=D;n<r.length;n++){var i=r[n].mask;J(e,i)&&(t=X(t,i))}if(z(e,t))return c(e)}return null},Ne:function(e){return void 0!==e?s(e):xn},areCompatible:function(){var e;return o(n(1===arguments.length&&Hn(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=s(e);return t?z(e,n):(n=e,!0)})},commonOf:function(){for(var e,t,n=[],r=0;r<arguments.length;r++)n[r]=arguments[r];if(n.length){for(var i=void 0,o=0,u=n;o<u.length;o++)var a=s(u[o]),i=null!=i?(t=i[Pn]&a[Pn],mn([t,i[yn]&a[yn]])):a;e=c(i)}else e=null;return e},descriptionFor:function(e){return(e=$(e))in w||V(e),w[e]}}),_&&(l=_.custom)&&zn(B,l,{configurable:!0,value:e,writable:!0});var A,l=qn(P),W=Yt(),j=Yt(),H=xn;l.forEach(m);for(var R=new jn,p=0,d=l;p<d.length;p++){var h=d[p],T=P[h].excludes;if(T)for(var E=x[h].mask,N=0,S=T;N<S.length;N++){var O=X(E,m(S[N]));R.has(O)||(r.push(O),R.add(O))}}for(A in f=D.slice(),D.sort(t),Jn(D),k.sort(t),Jn(k),Jn(x),Jn(U),U)Jn(U[A]);return u}(Qn,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 ee((e.length?e.join(", ")+" and "+t:t)+o)}),Un=_.ELEMENTARY,Qn=null,k(_.prototype,{restrict:function(r,i){var o=S(),e=Un.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 _(e)}}),_.ALL),er={enumerable:!0};for(Wn in Zn){var tr=Zn[Wn];er.value=tr,En(_,Wn,er)}oe(s),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,nr=_e(F.WEAK_ALGEBRAIC,F.PREFIXED_STRING,F.WEAK_PREFIXED_STRING,F.COMBINED_STRING),rr=_e(F.STRING,F.PREFIXED_STRING,F.WEAK_PREFIXED_STRING,F.COMBINED_STRING),ir=_e(F.WEAK_ALGEBRAIC,F.WEAK_PREFIXED_STRING),or=[{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}],a=(Object.defineProperty(zt.prototype,"isLoose",{get:function(){return nr(this.type)},enumerable:!1,configurable:!0}),Object.defineProperty(zt.prototype,"isString",{get:function(){return rr(this.type)},enumerable:!1,configurable:!0}),Object.defineProperty(zt.prototype,"isWeak",{get:function(){return ir(this.type)},enumerable:!1,configurable:!0}),Object.defineProperty(zt.prototype,"length",{get:function(){return this.replacement.length},enumerable:!1,configurable:!0}),zt);Y(Jt,ur=a),Object.defineProperty(Jt.prototype,"replacement",{get:function(){var e;return null!=(e=this.Se)?e:this.Se=this.Se=function(e){switch(e.length){case 0:return lr.replacement;case 1:return e[0].replacement;default:var t=le(e),n=t.replace,t=t.typeSetList.length,r=e.slice(t).map(Ar),t=e.slice(0,t).map(Rr),n=n.apply(void 0,t);return r.unshift(n),r.join("")}}(this.$)},enumerable:!1,configurable:!0}),Object.defineProperty(Jt.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(Jt.prototype,"type",{get:function(){var e=this.$;switch(e.length){case 0:return lr.type;case 1:return e[0].type;default:return le(e).solutionType}},enumerable:!1,configurable:!0}),Jt.prototype.append=function(e){this.Se=void 0,this.$.push(e)},Jt.prototype.prepend=function(e){this.Se=void 0,this.$.unshift(e)};var ur,ar=Jt;Y(Xt,cr=a),Xt.prototype.defineReplacement=function(e){e.configurable=!0,e.enumerable=!0,Object.defineProperty(this,"replacement",e)};var cr,sr=Xt;Y(qt,fr=a);var fr,_r=qt,lr=new _r("","[]",F.OBJECT),Ar=function(e){var t=e.replacement;return ir(e.type)?"+(".concat(t,")"):"+".concat(t)},Rr=function(e){return e.replacement},pr=(k(a.prototype,{get appendLength(){var e=this.isWeak?3:1;return this.length+e},set appendLength(e){En(this,"appendLength",{enumerable:!0,value:e})}}),["true","undefined","NaN"]),dr=["RP_0_S","RP_1_WA",,"RP_3_WA","RP_4_A","RP_5_A","RP_6_S"],hr=S(),Tr=S(),Er=S(),n=_.ANY_DOCUMENT,Vn=_.ANY_WINDOW,a=_.ARRAY_ITERATOR,Nr=_.ARROW,c=_.ASYNC_FUNCTION,l=_.AT,A=_.ATOB,Sr=_.BARPROP,R=_.CALL_ON_GLOBAL,p=_.CAPITAL_HTML,Or=_.CONSOLE,Ir=_.CREATE_ELEMENT,br=_.DOCUMENT,Lr=_.DOMWINDOW,vr=_.ESC_HTML_ALL,Fr=_.ESC_HTML_QUOT,Cr=_.ESC_HTML_QUOT_ONLY,d=_.ESC_REGEXP_LF,gr=_.ESC_REGEXP_SLASH,h=_.FF_SRC,T=_.FILL,N=_.FLAT,Pr=_.FORMS,O=_.FROM_CODE_POINT,yr=_.FUNCTION_19_LF,mr=_.FUNCTION_22_LF,xr=_.GENERIC_ARRAY_TO_STRING,wr=_.GLOBAL_UNDEFINED,Dr=_.GMT,kr=_.HISTORY,Ur=_.HTMLAUDIOELEMENT,I=_.IE_SRC,b=_.INCR_CHAR,L=_.INTL,v=_.ITERATOR_HELPER,Br=_.JAPANESE_INFINITY,Wr=_.LOCALE_INFINITY,jr=_.LOCALE_NUMERALS,C=_.LOCALE_NUMERALS_EXT,Hr=_.LOCATION,Mr=_.MOZILLA,g=_.NAME,P=_.NODECONSTRUCTOR,Gr=_.NODE_NAME,y=_.NO_FF_SRC,m=_.NO_IE_SRC,Yr=_.NO_OLD_SAFARI_ARRAY_ITERATOR,x=_.NO_V8_SRC,zr=_.OBJECT_ARRAY_ENTRIES_CTOR,Jr=_.OBJECT_L_LOCATION_CTOR,Xr=_.OBJECT_UNDEFINED,qr=_.OBJECT_W_SELF,$r=_.OLD_SAFARI_LOCATION_CTOR,Kr=_.PLAIN_INTL,Qr=_.REGEXP_STRING_ITERATOR,w=_.SELF_OBJ,Vr=_.SHORT_LOCALES,Zr=_.STATUS,ei=_.UNDEFINED,D=_.V8_SRC,ti=_.WINDOW,ni=["NaN","false","undefined","0"],ri=[[s("A"),s("D",R,Lr),s("C",p),s("A",a,p),s("A",a,R,Lr)],[s("F"),s("H",v),s("F",l,p,I),s("F",l,p,m)],"Infinity","NaNfalse",[s("S"),s("R",p),s("S",a)],[s("W"),s("U",p),s("W",R,Lr),s("W",R,qr),s("U",a,p)],"a","false","i","n","r","true","y","0","4","8"],ii=["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","+","/"],oi=["000","NaN","falsefalsefalse","00f"],ui=["0A",[s("0B"),s("0R",p),s("0B",a)],"0i",[s("0j"),s("0T",p),s("0j",a)],"00","01","02","03","04","05","0a","0r","0s","0t","undefinedfalse","0f"],ai=U({"\b":[s('Function("return\\"" + ESCAPING_BACKSLASH + "b\\"")()[0]'),o({escSeq:!1})],"\t":[s('Function("return\\"" + ESCAPING_BACKSLASH + "true\\"")()[0]'),o({escSeq:!1})],"\n":[s("(RP_0_S + Function())[23]"),s("(RP_1_WA + Function())[20]",yr),s("(RP_0_S + Function())[22]",mr),s("(RP_0_S + ANY_FUNCTION)[0]",I),Kt(13,x)],"\v":[s('Function("return\\"" + ESCAPING_BACKSLASH + "v\\"")()[0]'),o({escSeq:!1})],"\f":[s('Function("return\\"" + ESCAPING_BACKSLASH + "false\\"")()[0]'),o({escSeq:!1})],"\r":[s('Function("return\\"" + ESCAPING_BACKSLASH + "r\\"")()'),o({escSeq:!1})],"":[s('(RP_5_A + atob("NaNfalse"))[10]',A)]," ":[e("ANY_FUNCTION",8),s("(RP_3_WA + ARRAY_ITERATOR)[10]",a),s("(RP_0_S + FILTER)[20]",h),s("(+(RP_0_S + FILTER)[0] + FILTER)[22]",y),s("(RP_0_S + FILTER)[21]",x),s("(RP_1_WA + FILTER)[20]",D),s("(RP_1_WA + AT)[20]",l,x),s("(RP_5_A + AT)[20]",l,D),s("(+(RP_0_S + FILL)[0] + FILL)[20]",T,y),s("(RP_5_A + FILL)[20]",T,m),s("(RP_0_S + FILL)[20]",T,x),s("(+(RP_0_S + FLAT)[0] + FLAT)[20]",N,y),s("(RP_5_A + FLAT)[20]",N,m),s("(RP_0_S + FLAT)[20]",N,x)],'"':[s('"".fontcolor()[12]')],"#":[s("document.nodeName[0]",Gr),o()],"%":[s("escape(FILTER)[20]"),s("escape(0 + AT)[20]",l),s('atob("000l")[2]',A),s("escape(FILL)[21]",T),s("escape(FLAT)[21]",N),s("escape(ANY_FUNCTION)[0]",I)],"&":[s('"".fontcolor("".italics())[22]',vr),s('"".fontcolor("".sub())[20]',vr),s('"".fontcolor("\\"")[13]',Fr),s('"".fontcolor("".fontcolor([]))[31]',Cr),o()],"(":[Kt(9)],")":[Kt(10)],"+":"(1e100 + [])[2]",",":[s("(RP_0_S + F_A_L_S_E)[1]"),s({expr:"[[]].concat([[]])",solutionType:F.OBJECT})],"-":"(.0000001 + [])[2]",".":"(11e20 + [])[1]","/":[s('"0false".italics()[10]'),s('"true".sub()[10]')],":":[s("(RP_0_S + RegExp())[3]"),o()],";":[s('"".fontcolor("".italics())[21]',vr),s('"".fontcolor(true + "".sub())[20]',vr),s('"".fontcolor("NaN\\"")[21]',Fr),s('"".fontcolor("".fontcolor())[30]',Cr),o()],"<":[s('"".italics()[0]'),s('"".sub()[0]')],"=":[s('"".fontcolor()[11]')],">":[s('"".italics()[2]'),s('"".sub()[10]')],"?":[s("(RP_0_S + RegExp())[2]"),o()],A:[e("Array",9),s("(RP_3_WA + ARRAY_ITERATOR)[11]",a)],B:[e("Boolean",9),s('"0".sub()[10]',p)],C:[s('escape("".italics())[2]'),s('escape("".sub())[2]'),s("escape(F_A_L_S_E)[11]"),s('atob("00NaNfalse")[1]',A),s('(RP_4_A + "".fontcolor())[10]',p),s('(RP_3_WA + Function("return console")())[11]',Or),s("(RP_0_S + Node)[12]",P)],D:[s('escape((+("1000" + (RP_5_A + FILTER + 0)[40] + 0) + FILTER)[40])[2]'),s('escape("]")[2]'),s('escape("}")[2]'),s('(document + RP_0_S)[SLICE_OR_SUBSTR]("-10")[1]',n),s('escape((RP_4_A + [+("1000" + (AT + 0)[31] + 0)] + AT)[40])[2]',l),s('btoa("00")[1]',A),s("(RP_3_WA + document)[11]",br),s("(RP_3_WA + self)[11]",Lr),s('escape((NaN + [+("10" + [(RP_6_S + FILL)[40]] + "000")] + FILL)[40])[2]',T),s('escape((NaN + [+("10" + [(RP_6_S + FLAT)[40]] + "000")] + FLAT)[40])[2]',N),s("escape(ARRAY_ITERATOR)[30]",Yr),s("escape(FILTER)[50]",D),s('(document + [RP_1_WA]).at("-10")',n,l),s("escape(AT)[61]",l,I),s("escape([[]][+(RP_0_S + AT)[0]] + AT)[61]",l,y),s("escape([NaN][+(RP_1_WA + AT)[20]] + AT)[61]",l,m),s("escape(true + AT)[50]",l,D),s("escape(FILL)[60]",h,T),s("escape(FLAT)[60]",h,N)],E:[e("RegExp",12),s('btoa("0NaN")[1]',A),s('(RP_5_A + "".link())[10]',p),s("(RP_3_WA + Audio)[21]",Ur),s("(RP_0_S + REGEXP_STRING_ITERATOR)[11]",Qr)],F:[e("Function",9),s('"".fontcolor()[1]',p)],G:[s('btoa("0false")[1]',A),s('"0".big()[10]',p),s("(RP_5_A + Date())[30]",Dr)],H:[s("btoa(true)[1]",A),s('"".link()[3]',p),s("(RP_3_WA + document.forms)[11]",Pr),s({expr:'(RP_3_WA + Function("return history")())[11]',optimize:!0},kr),s("(RP_1_WA + Audio)[10]",Ur),s("(RP_4_A + [].entries().filter(ANY_FUNCTION))[21]",v),s({expr:"(RP_3_WA + self.history)[11]",optimize:!0},kr,w)],I:'"Infinity"[0]',J:[s('"j"[TO_UPPER_CASE]()'),s("btoa(true)[2]",A),o({atob:!1})],K:[s('(RP_5_A + "".strike())[10]',p),o()],L:[s('btoa(".")[0]',A),s('(RP_3_WA + "".fontcolor())[11]',p),s("(RP_0_S + document.forms)[11]",Pr),s("(RP_0_S + Audio)[12]",Ur),s({expr:'Function("return toString.call(location)")()[SLICE_OR_SUBSTR]("-10")[1]',optimize:!0},Hr),s("(RP_3_WA + LOCATION_CONSTRUCTOR)[11]",Jr),s('(LOCATION_CONSTRUCTOR + RP_0_S)[SLICE_OR_SUBSTR]("-20")[0]',$r),s({expr:'(Function("return toString.call(location)")() + RP_1_WA).at("-10")',optimize:!0},l,Hr),s('(LOCATION_CONSTRUCTOR + RP_0_S).at("-20")',l,$r),s('[][TO_STRING].call(location)[SLICE_OR_SUBSTR]("-10")[1]',xr,Hr),s('self[TO_STRING].call(location)[SLICE_OR_SUBSTR]("-10")[1]',Hr,w),s('([][TO_STRING].call(location) + RP_1_WA).at("-10")',l,xr,Hr),s('(self[TO_STRING].call(location) + RP_1_WA).at("-10")',l,Hr,w)],M:[s("btoa(0)[0]",A),s('"".small()[2]',p),s("(RP_0_S + self)[10]",Lr),s("(RP_0_S + document.forms)[10]",Pr),s("(RP_4_A + Date())[30]",Dr),s("(RP_0_S + Audio)[11]",Ur),s("USER_AGENT[0]",Mr)],N:'"NaN"[0]',O:[e("Object",9),s("(RP_3_WA + PLAIN_OBJECT)[11]"),s("btoa(NaN)[3]",A),s('"".fontcolor()[2]',p),s("(RP_1_WA + self)[10]",Lr),s("(RP_3_WA + Intl)[11]",Kr)],P:[s('String.fromCharCode("80")'),s('(RP_3_WA + Function("return async function(){}")()())[11]',c),s('atob("01A")[1]',A),s('btoa("".italics())[0]',A),s('(RP_0_S + Function("return statusbar")())[11]',Sr),s('"0".sup()[10]',p),s("(RP_0_S + self.statusbar)[11]",Sr,w),o({atob:!1,charCode:!1})],Q:[s('"q"[TO_UPPER_CASE]()'),s("btoa(1)[1]",A),o({atob:!1})],R:[e("RegExp",9),s('btoa("0true")[2]',A),s('"".fontcolor()[10]',p),s("(RP_3_WA + REGEXP_STRING_ITERATOR)[11]",Qr)],S:[e("String",9),s('"".sub()[1]',p)],T:[s({expr:'(RP_0_S + Function("try{undefined.false}catch(undefined){return undefined}")())[0]',optimize:!0}),s("btoa(NaN)[0]",A),s('"".fontcolor([])[20]',p),s("(RP_1_WA + document.forms)[10]",Pr),s("(RP_3_WA + Date())[30]",Dr),s("(RP_0_S + Audio)[10]",Ur),o({atob:!1})],U:[s('btoa("1NaN")[1]',A),s('"".sub()[2]',p),s({expr:'(RP_3_WA + Function("return toString")()())[11]',optimize:!0},wr),s({expr:'(RP_3_WA + Function("return{}.toString")()())[11]',optimize:!0},Xr),s("(RP_3_WA + PLAIN_OBJECT[TO_STRING].call())[11]",ei),s("(RP_3_WA + ARRAY_ITERATOR[TO_STRING].call())[11]",a,ei),s({expr:'(RP_3_WA + Function("return Intl.toString")()())[11]',optimize:!0},L,Xr),s("(RP_3_WA + Intl[TO_STRING].call())[11]",L,ei)],V:[s('"v"[TO_UPPER_CASE]()'),s("btoa(undefined)[10]",A),s('(RP_0_S + document.createElement("video"))[12]',Ir),o({atob:!1})],W:[s('"w"[TO_UPPER_CASE]()'),s('(self + RP_4_A)[SLICE_OR_SUBSTR]("-11")[0]',Vn),s("btoa(undefined)[1]",A),s("(RP_0_S + self)[11]",Lr),s("(RP_3_WA + self)[11]",qr),s('(self + RP_4_A).at("-11")',Vn,l),o({atob:!1})],X:[s('"x"[TO_UPPER_CASE]()'),s('btoa("1true")[1]',A),o({atob:!1})],Y:[s('"y"[TO_UPPER_CASE]()'),s('btoa("a")[0]',A),o({atob:!1})],Z:[s("btoa(false)[0]",A),s('(RP_3_WA + "".fontsize())[11]',p)],"[":[$t(14),s("(RP_0_S + ARRAY_ITERATOR)[0]",a)],"\\":[s("ESCAPING_BACKSLASH"),o({atob:!1,escSeq:!1,unescape:!1})],"]":[$t(26),s("(RP_0_S + ARRAY_ITERATOR)[22]",Yr)],"^":[s('atob("undefined0")[2]',A)],a:'"false"[1]',b:[e("Number",12),s("(RP_0_S + ARRAY_ITERATOR)[2]",a)],c:[e("ANY_FUNCTION",3),s("(RP_5_A + ARRAY_ITERATOR)[10]",a)],d:'"undefined"[2]',e:'"true"[3]',f:'"false"[0]',g:[e("String",14)],h:[s('101[TO_STRING]("21")[1]'),s('btoa("0false")[3]',A)],i:"([RP_5_A] + undefined)[10]",j:[s("(RP_0_S + PLAIN_OBJECT)[10]"),s("(RP_0_S + ARRAY_ITERATOR)[3]",a),s("(RP_0_S + Intl)[3]",L),s("(RP_0_S + Node)[3]",P),s("(RP_0_S + Intl)[10]",Kr),s("(RP_0_S + self)[3]",w)],k:[s('20[TO_STRING]("21")'),o()],l:'"false"[2]',m:[e("Number",11),s("(RP_6_S + Function())[20]")],n:'"undefined"[1]',o:[e("ANY_FUNCTION",6),s("(RP_0_S + ARRAY_ITERATOR)[1]",a)],p:[s('211[TO_STRING]("31")[1]'),s("(RP_3_WA + btoa(undefined))[10]",A),s("(RP_0_S + [].entries().filter(ANY_FUNCTION))[20]",v)],q:[s('212[TO_STRING]("31")[1]'),s('"".fontcolor(0 + "".fontcolor())[30]',vr),s('"".fontcolor("0false\\"")[20]',Fr),s('"".fontcolor(true + "".fontcolor())[30]',Cr),o()],r:'"true"[1]',s:'"false"[3]',t:'"true"[0]',u:'"undefined"[0]',v:[$t(19)],w:[s('32[TO_STRING]("33")'),s('(self + RP_0_S)[SLICE_OR_SUBSTR]("-2")[0]',Vn),s('atob("undefined0")[1]',A),s("(RP_4_A + self)[20]",Lr),s("(RP_0_S + self)[13]",ti),s('(self + RP_0_S).at("-2")',Vn,l)],x:[s('101[TO_STRING]("34")[1]'),s('btoa("falsefalse")[10]',A)],y:"(RP_3_WA + [Infinity])[10]",z:[s('35[TO_STRING]("36")'),s('btoa("falsefalse")[11]',A)],"{":[Kt(12)],"}":[$t(28)],"Š":[s('(RP_4_A + atob("NaNundefined"))[10]',A)],"":[s('atob("0NaN")[2]',A)],"–":[s('atob("00false")[3]',A)],"ž":[s("atob(true)[2]",A)],"£":[s("atob(NaN)[1]",A)],"¥":[s('atob("0false")[2]',A)],"§":[s('atob("00undefined")[2]',A)],"©":[s('atob("false0")[1]',A)],"±":[s('atob("0false")[3]',A)],"¶":[s("atob(true)[0]",A)],"º":[s('atob("undefined0")[0]',A)],"»":[s("atob(true)[1]",A)],"Ç":[s('atob("falsefalsefalse")[10]',A)],"Ú":[s('atob("0truefalse")[1]',A)],"Ý":[s('atob("0undefined")[2]',A)],"â":[s('atob("falsefalseundefined")[11]',A)],"é":[s('atob("0undefined")[1]',A)],"î":[s('atob("0truefalse")[2]',A)],"ö":[s('atob("0false")[1]',A)],"ø":[s('atob("undefinedundefined")[10]',A)],"∞":[s("Infinity[TO_LOCALE_STRING]()",Wr),s('Infinity[TO_LOCALE_STRING]("ja")[SLICE_OR_SUBSTR]("-1")',Br),s('Infinity[TO_LOCALE_STRING]("ja").at("-1")',Br,l),o()]}),ci=U({Number:s({expr:"Number.name",optimize:{complexOpt:!1}},g),Object:s({expr:"Object.name",optimize:{complexOpt:!1}},g),RegExp:s({expr:"RegExp.name",optimize:{complexOpt:!1}},g),String:s("String.name",g),fromCharCo:s({expr:'"from3har3o".split(3).join("C")',optimize:{complexOpt:!1}}),mCh:s('atob("bUNo")',_.ATOB)}),Gr=U({Array:[s("[].constructor")],Audio:[s('Function("return Audio")()',Ur),s("self.Audio",Ur,w)],Boolean:[s("false.constructor")],Date:[s('Function("return Date")()'),s("self.Date",w)],Function:[s("ANY_FUNCTION.constructor")],Intl:[s('Function("return Intl")()',L),s("self.Intl",L,w)],Node:[s('Function("return Node")()',P),s("self.Node",P,w)],Number:[s("0..constructor")],Object:[s("PLAIN_OBJECT.constructor"),s("Intl.constructor",L),s("[].entries().constructor",zr)],RegExp:[s('Function("return/false/")().constructor')],String:[s('"".constructor')],atob:[s('Function("return atob")()',A),s("self.atob",A,w)],btoa:[s('Function("return btoa")()',A),s("self.btoa",A,w)],document:[s({expr:'Function("return document")()',optimize:!0},n),s({expr:"self.document",optimize:!0},n,w)],escape:[s({expr:'Function("return escape")()',optimize:!0}),s({expr:"self.escape",optimize:!0},w)],location:[s('Function("return location")()',Hr),s("self.location",Hr,w)],self:[s('Function("return self")()',w),s("[].concat.call()[0]",R,w)],unescape:[s({expr:'Function("return unescape")()',optimize:!0}),s({expr:"self.unescape",optimize:!0},w)],ANY_FUNCTION:[s("FILTER"),s("AT",l),s("FILL",T),s("FLAT",N)],ARRAY_ITERATOR:[s("[].entries()",a)],AT:[s("[].at",l)],ESCAPING_BACKSLASH:[s(function(){var e=this.Oe(92);return new _r(void 0,e,F.STRING)}),s({expr:'atob("01y")[1]',solutionType:F.STRING},A),s({expr:'(RP_0_S + RegExp("\\n"))[1]',solutionType:F.STRING},d),s({expr:'(RP_5_A + RegExp("".italics()))[10]',solutionType:F.STRING},gr),s({expr:'(RP_3_WA + RegExp("".sub()))[10]',solutionType:F.STRING},gr),s({expr:"(RP_0_S + RegExp(FILTER))[20]",solutionType:F.STRING},d,h),s({expr:"(RP_0_S + RegExp(Function()))[20]",solutionType:F.STRING},d,yr),s({expr:"(RP_5_A + RegExp(Function()))[30]",solutionType:F.STRING},d,mr),s({expr:"(RP_0_S + RegExp(ANY_FUNCTION))[1]",solutionType:F.STRING},d,I),s({expr:"(+(RP_0_S + FILTER)[0] + RegExp(FILTER))[23]",solutionType:F.STRING},d,x),s({expr:"(RP_4_A + RegExp(AT))[20]",solutionType:F.STRING},l,d,h),s({expr:"(RP_1_WA + [+(RP_0_S + AT)[0]] + RegExp(AT))[20]",solutionType:F.STRING},l,d,x),s({expr:"(RP_3_WA + RegExp(FILL))[21]",solutionType:F.STRING},d,h,T),s({expr:"(RP_3_WA + RegExp(FLAT))[21]",solutionType:F.STRING},d,h,N),s({expr:"(+(RP_0_S + FILL)[0] + RegExp(FILL))[21]",solutionType:F.STRING},d,T,x),s({expr:"(+(RP_0_S + FLAT)[0] + RegExp(FLAT))[21]",solutionType:F.STRING},d,N,x)],FILL:[s("[].fill",T)],FILTER:[s("[].filter")],FLAT:[s("[].flat",N)],F_A_L_S_E:[s('[][SLICE_OR_FLAT].call("false")')],LOCALE_AR:[s({expr:'"ar-td"',solutionType:F.COMBINED_STRING}),s({expr:'"ar"',solutionType:F.COMBINED_STRING},Vr)],LOCATION_CONSTRUCTOR:[s('Function("return location")().constructor',Jr),s('Function("return location")().constructor',$r),s("self.location.constructor",Jr,w),s("self.location.constructor",$r,w)],PLAIN_OBJECT:[s('Function("return{}")()')],REGEXP_STRING_ITERATOR:[s({expr:'"".matchAll()',optimize:!0},Qr)],SLICE_OR_FLAT:[s({expr:'"slice"',solutionType:F.COMBINED_STRING}),s({expr:'"flat"',solutionType:F.COMBINED_STRING},N)],SLICE_OR_SUBSTR:[s({expr:'"slice"',solutionType:F.COMBINED_STRING}),s({expr:'"substr"',solutionType:F.COMBINED_STRING})],TO_LOCALE_STRING:[s({expr:'"toLocaleString"',optimize:!0,solutionType:F.COMBINED_STRING})],TO_STRING:[s({expr:'"toString"',optimize:{toStringOpt:!1},solutionType:F.COMBINED_STRING})],TO_UPPER_CASE:[s({expr:'"toUpperCase"',optimize:!0,solutionType:F.COMBINED_STRING})],USER_AGENT:[s({expr:'Function("return navigator")().userAgent',solutionType:F.STRING},Mr),s({expr:"self.navigator.userAgent",solutionType:F.STRING},Mr,w)],FBEP_4_S:[s("[[true][+(RP_3_WA + FILTER)[30]]]"),s("[[true][+(RP_1_WA + AT)[30]]]",l),s("[[true][+(RP_5_A + FILL)[30]]]",T),s("[[true][+(RP_5_A + FLAT)[30]]]",N),s("[[true][+!!++(RP_0_S + FILTER)[20]]]",b),s("[[true][+!!++(RP_1_WA + AT)[20]]]",l,b),s("[[true][+!!++(RP_0_S + FILL)[20]]]",T,b),s("[[true][+!!++(RP_0_S + FLAT)[20]]]",N,b)],FBEP_9_U:[s({expr:"[false][+(RP_0_S + FILTER)[20]]",solutionType:F.UNDEFINED}),s({expr:"[false][+(RP_1_WA + AT)[20]]",solutionType:F.UNDEFINED},l),s({expr:"[false][+(RP_0_S + FILL)[20]]",solutionType:F.UNDEFINED},T),s({expr:"[false][+(RP_0_S + FLAT)[20]]",solutionType:F.UNDEFINED},N)],FBEP_10_S:[s({expr:"[RP_1_WA] + FBEP_9_U",solutionType:F.COMBINED_STRING})],FBP_5_S:[s("[[false][+IS_IE_SRC_A]]",y)],FBP_7_WA:[s({expr:'+("10" + [(RP_4_A + FILTER)[40]] + "00000")',solutionType:F.WEAK_ALGEBRAIC}),s({expr:'+("10" + [(RP_0_S + AT)[32]] + "00000")',solutionType:F.WEAK_ALGEBRAIC},l),s({expr:'+("10" + [(RP_6_S + FILL)[40]] + "00000")',solutionType:F.WEAK_ALGEBRAIC},T),s({expr:'+("10" + [(RP_6_S + FLAT)[40]] + "00000")',solutionType:F.WEAK_ALGEBRAIC},N)],FBP_8_WA:[s({expr:'+("1000" + (RP_5_A + FILTER + 0)[40] + "000")',solutionType:F.WEAK_ALGEBRAIC}),s({expr:'+("1000" + (AT + 0)[31] + "000")',solutionType:F.WEAK_ALGEBRAIC},l),s({expr:'+("1000" + (FILL + 0)[33] + "000")',solutionType:F.WEAK_ALGEBRAIC},T),s({expr:'+("1000" + (FLAT + 0)[33] + "000")',solutionType:F.WEAK_ALGEBRAIC},N)],FBP_9_U:[s({expr:"[true][+(RP_0_S + ANY_FUNCTION)[0]]",solutionType:F.UNDEFINED},y)],FH_SHIFT_1:[s("[+IS_IE_SRC_A]")],FH_SHIFT_2:[s("[true + IS_IE_SRC_A]")],FH_SHIFT_3:[s("[2 + IS_IE_SRC_A]")],FHP_3_WA:[s({expr:"+(1 + [+(RP_0_S + ANY_FUNCTION)[0]])",solutionType:F.WEAK_ALGEBRAIC}),s({expr:"+(++(RP_0_S + ANY_FUNCTION)[0] + [0])",solutionType:F.WEAK_ALGEBRAIC},b)],FHP_5_A:[s({expr:"IS_IE_SRC_A",solutionType:F.ALGEBRAIC})],FHP_8_S:[s({expr:"[RP_3_WA] + FHP_5_A",solutionType:F.COMBINED_STRING})],IS_IE_SRC_A:[s({expr:"!![[]][+(RP_0_S + ANY_FUNCTION)[0]]",solutionType:F.ALGEBRAIC}),s({expr:"!!++(RP_0_S + ANY_FUNCTION)[0]",solutionType:F.ALGEBRAIC},b)],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}}),si=[s(4,h),s(5,I),s(0,D)],fi=[s(1,I),s(0,m)],_i=ie([s("fromCharCode"),s("fromCodePoint",O)],[s(0),s(1,c),s(1,A),s(0,c,R,O,b,g,P,w),s(1,c,y),s(1,c,x),s(0,a,c,O,g),s(1,a,c,l,g),s(1,a,c,T,g),s(1,a,c,N,g),s(1,a,c,g,m),s(1,a,c,g,x),s(0,a,A,O,I,v),s(0,c,l,R,O,g,P,w),s(1,a,l,A,I,v),s(0,c,R,N,O,g,P,w),s(1,c,l,R,g,P,y,w),s(1,c,l,R,g,P,x,w),s(1,c,R,N,g,P,y,w),s(1,c,R,N,g,P,x,w),s(0,A,O,L,v),s(1,A,T,L,v),s(1,A,I,L,v),s(1,A,L,v,m),s(0,c,R,O,I,P,w),s(1,c,l,R,I,P,w),s(1,c,R,T,I,P,w),s(1,c,R,N,I,P,w),s(0,a,A,O,v,m),s(0,c,R,N,O,I,g,P,w),s(1,a,l,A,v,m),s(0,c,R,T,O,g,P,w),s(1,c,R,T,g,P,y,w),s(1,c,R,T,g,P,x,w),s(0,c,R,T,O,I,g,P,w),s(1,l,A,L,v),s(0,A,O,v,w),s(1,a,A,v,w),s(1,A,T,v,w),s(1,A,N,L,v),s(1,A,N,v,w),s(0,a,c,R,O,P,w),s(1,a,c,l,R,P,w),s(1,a,c,R,N,P,w),s(1,a,c,R,T,b,P,w),s(1,a,c,R,T,P,y,w),s(0,a,c,R,O,g,P,w),s(1,a,c,R,N,g,P,y,w),s(1,a,c,R,N,g,P,x,w),s(0,a,c,R,N,O,I,g,P,w),s(1,a,c,R,T,P,x,w),s(0,a,c,R,T,O,I,g,P,w),s(1,a,c,l,R,g,P,y,w),s(1,a,c,l,R,g,P,x,w),s(0,c,O,v),s(1,c,N,v),s(1,c,v,x),s(0,c,O,L,v),s(1,c,I,L,v),s(1,c,N,L,v,x),s(0,c,O,v,P,x),s(1,c,T,v,P,x),s(0,c,O,L,v,P,x),s(1,c,I,v,P),s(1,c,N,v,P,x),s(0,c,N,O,v,w),s(0,c,O,v,x,w),s(1,c,I,v,w),s(1,c,N,v,x,w),s(0,c,R,O,v,x,w),s(1,c,v,m),s(0,c,O,L,v,m),s(0,c,O,v,m,w),s(1,c,v,D),s(1,c,h,L,v),s(1,c,T,L,v,m),s(1,c,N,L,v,m),s(0,c,O,v,g,P,m),s(1,c,h,v,w),s(1,c,T,v,m,w),s(1,c,N,v,m,w),s(1,c,v,g,P,D),s(1,c,T,v,g,P,m),s(0,c,N,O,v,g),s(0,c,R,h,O,v,w),s(0,c,R,O,v,w,D),s(0,c,R,T,O,v,m,w),s(0,c,R,N,O,v,m,w),s(1,c,N,v,g,m),s(0,A,O,v,g),s(0,c,R,N,O,v,g,w),s(1,A,v,g,x),s(0,A,O,v,g,P),s(1,A,b,v,g),s(0,A,O,b,L,v,g),s(0,A,O,b,v,g,P),s(0,A,O,b,v,g,y),s(0,A,O,b,v,g,w),s(0,A,O,L,v,g,x),s(1,A,T,v,g),s(1,A,I,L,v,g),s(0,A,T,O,L,v,g),s(1,A,T,I,v,g),s(0,a,A,O,b,v,g),s(0,A,T,O,v,g,w),s(0,A,O,v,g,x,w),s(1,A,I,v,g,P),s(0,a,A,O,v,g,x),s(1,A,N,v,g),s(0,a,A,T,O,v),s(1,a,A,T,v,x),s(1,a,A,R,T,v,w),s(0,a,A,T,O,v,g,x),s(1,a,A,T,I,v),s(0,c,R,O,P,m,w),s(1,c,R,h,N,P,w),s(1,c,R,N,P,w,D),s(0,c,R,O,v,P,m,w),s(0,c,R,O,g,P,m,w),s(1,c,l,R,h,P,w),s(1,c,l,R,P,w,D),s(0,a,c,N,O,v),s(0,A,R,N,O,v,g,w),s(1,A,I,v,w),s(0,a,A,O,I,v,w),s(1,c,l,v),s(1,a,l,A,T,v),s(1,a,A,T,v,m),s(1,A,R,I,v,w),s(1,A,T,I,v,w),s(0,c,l,R,O,v,w),s(1,c,l,I,v),s(1,c,l,v,m),s(0,c,l,R,O,v,P,m,w),s(1,c,l,R,h,v,w),s(1,c,l,R,v,w,D),s(0,a,c,O,v,m),s(0,c,O,v,g,x),s(1,c,T,b,v,g,x),s(0,c,O,L,v,g,x),s(1,c,N,v,g,x),s(0,c,N,O,L,v,g,x),s(0,c,T,O,b,v,g,P,x),s(0,c,T,O,b,v,g,x,w),s(1,c,I,v,g),s(1,c,l,v,g,x),s(0,c,R,O,I,v,g,w),s(1,c,h,v,g),s(0,c,R,h,O,v,g,w),s(0,c,N,O,v,g,x,w),s(1,c,N,I,v,g,w),s(1,c,l,N,v,g,x,w),s(0,c,R,N,O,I,v,g,w),s(1,c,h,N,v,g,w),s(0,c,l,R,O,v,g,x,w),s(0,c,R,h,N,O,v,g,w),s(1,c,l,R,h,v,g,w),s(1,c,l,R,I,v,g,w),s(0,a,A,N,O,v),s(1,a,A,N,v,x),s(1,a,A,R,N,b,v,w),s(0,a,A,N,O,v,g,x),s(1,A,v,m,w),s(1,a,l,A,N,v),s(1,a,A,N,I,v),s(0,a,A,O,v,m,w),s(1,a,A,N,v,m),s(1,A,R,v,m,w),s(1,A,T,v,m,w),s(0,a,c,l,O,v),s(1,A,v,g,m),s(0,a,A,O,v,g,m),s(1,A,T,v,g,m),s(1,A,N,v,g,m),s(1,a,A,R,v,g,w),s(0,a,A,R,N,O,v,g,w),s(1,a,A,R,I,v,g,w),s(1,a,A,R,b,v,g,w),s(1,a,A,R,v,g,m,w),s(0,a,c,O,v,x),s(1,p),s(1,l,A,v,w),s(0,a,A,p,O),s(1,Sr),s(1,p,v),s(1,l,A,v,g),s(0,a,A,Sr,p,O)]),li=ie([s(function(e,t){return"function(undefined){return String."+e+"("+t+")}"}),s(function(e,t){return"function(undefined){return(isNaN+false).constructor."+e+"("+t+")}"}),s(function(e,t){return"undefined=>String."+e+"("+t+")"},Nr),s(function(e,t){return"undefined=>(isNaN+false).constructor."+e+"("+t+")"},Nr),s(function(e,t){return"function(undefined){return status.constructor."+e+"("+t+")}"},Zr),s(function(e,t){return"undefined=>status.constructor."+e+"("+t+")"},Nr,Zr)],[s(1),s(3),s(0,a,p),s(1,a,p,N),s(0,a,p,x),s(1,a,l,p),s(1,a,p,h,N),s(1,a,p,T,I),s(1,a,p,T,m),s(1,a,p,N,I),s(2,a,p),s(3,a,l,p,I),s(3,a,l,p,m),s(4),s(5)]),Ai=ie([s(function(e,t){var n=Ae(e);return'Function("return function('+n+"){return function("+e+"){return "+n+t+'}}")()'}),s(function(e,t){return'Function("return function('+e+"){return this"+t+'}")().bind'}),s(function(e,t){var n=Ae(e);return'Function("return '+n+"=>"+e+"=>"+n+t+'")()'},Nr)],[s(0),s(1,a,A),s(0,y),s(0,x),s(1,a,p),s(1,a,A,R,w),s(0,a,A,T),s(0,a,p,T),s(0,a,p,I),s(0,a,A,R,I,w),s(1,a,A,R,T,w),s(0,a,A,m),s(0,a,p,m),s(0,a,A,T,I),s(0,a,A,T,b,x),s(1,a,A,R,m,w),s(0,a,l,A),s(0,a,l,p),s(0,a,A,h),s(0,a,A,N),s(0,a,A,D),s(0,a,p,N),s(0,a,A,T,m),s(2)]),Ri=[s({expr:"FILTER",shift:6}),s({expr:"FILL",shift:4},T),s({expr:"FLAT",shift:4},N),s({expr:"AT",shift:2},l)],pi=ie([s("f"),s("undefined")],[s(0),s(1,l),s(0,N),s(1,T,I),s(1,T,m),s(0,T,N,I),s(0,T,N,m)]),di=ie([s("B"),s("b")],[s(0),s(1,a)]),hi=ie([s("return String"),s("return(isNaN+false).constructor"),s("return status.constructor",Zr)],[s(1),s(0,a,p),s(1,N),s(0,a,p,x),s(1,a,l,p),s(1,a,p,h,N),s(1,a,p,T,I),s(1,a,p,T,m),s(1,a,p,N,I),s(2)]);Vt("false","![]",F.ALGEBRAIC),Vt("true","!![]",F.ALGEBRAIC),Vt("undefined","[][[]]",F.UNDEFINED),Vt("NaN","+[false]",F.WEAK_ALGEBRAIC),Vt("Infinity","1e1000",F.WEAK_ALGEBRAIC);for(var Ti=0;Ti<=9;++Ti){var Ei=function(e){switch(e){case 0:return"+[]";case 1:return"+!![]";default:for(var t="!![]";t+="+!![]",1<--e;);return t}}(Ti);ai[Ti]={expr:Ei,solutionType:F.WEAK_ALGEBRAIC}}oe(Qt),oe(u),Zt("LOCALE_AR",1632),u("٫","LOCALE_AR",.1,1),u("ل",'"ar"',NaN,0),u("ي",'"ar"',NaN,1),u("س",'"ar"',NaN,2),u("ر",'"ar"',NaN,4,C),u("ق",'"ar"',NaN,5,C),u("م",'"ar"',NaN,6,C),Zt('"bn"',2534,C),Zt('"fa"',1776),u("٬",'"fa"',1e3,1),u("ن",'"fa"',NaN,0,C),u("ا",'"fa"',NaN,1,C),u("ع",'"fa"',NaN,2,C),u("د",'"fa"',NaN,3,C),u("н",'"ru"',NaN,0,C),u("е",'"ru"',NaN,1,C),u("ч",'"ru"',NaN,3,C),u("и",'"ru"',NaN,4,C),u("с",'"ru"',NaN,5,C),u("л",'"ru"',NaN,6,C),u("о",'"ru"',NaN,7,C);var Ni,Si,Oi,Ii={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}"},bi=S(),Li=["false","null","true"],vi=["arguments","await","debugger","delete","if","import","let","new","return","this","throw","typeof","void","while","with","yield"],Fi=Ce("(?:#NumericLiteral|#ConstIdentifier)"),Ci=Ce("(?:[$\\w]|#UnicodeEscapeSequence)+"),gi=Ce("(?:#Separator|;)*"),Pi=Ce("#Separator*"),yi=Ce("#SingleQuotedString|#DoubleQuotedString"),mi="function"!=typeof WeakRef?ze:(Ni=new Map,Si=new FinalizationRegistry(function(e){var t=Ni.get(e);t&&!t.deref()&&Ni.delete(e)}),function(e){var t,n=Ni.get(e);return(t=n?n.deref():t)||(t=ze(e))&&!0!==t&&(n=new WeakRef(t),Ni.set(e,n),Si.register(t,e)),t}),xi=[6,8,12,17,22,27,32,37,42,47],wi=1,Di=(k(Xe.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=Je(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=Je(c,t,n,i):(o=a*(r/=2),u=e(t,o=Rn(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),ki={firstSolution:lr},Ui={firstSolution:lr,optimize:{default:!1,toStringOpt:!0}},Bi=S(),Wi=([15,31,47,63,111,127,175,223,239,240,241,242,243,244,245,246,247,250].forEach(function(e){Bi[e]=null}),_.ATOB.mask),ji=S(),Hi=S(),Mi=new rt(xn),Gi=_.Ee,Yi=(Oi=B(Sn(hr).join("|"),"y"))?function(e,t){Oi.lastIndex=t;t=Oi.exec(e);if(t)return t[0]}:function(e,t){for(var n in hr)if(e.substr(t,n.length)===n)return n},zi=(k(rt.prototype,{pe:function(e,t,n,r,i,o){var u=n&&this.hasFeatures(Wi)?at(this,e,t,Qe,"atob"):(n=[],r&&(u=at(this,e,t,Ze,"char-code"),n.push(u)),i&&(u=at(this,e,t,tt,"esc-seq"),n.push(u)),o&&(u=at(this,e,t,nt,"unescape"),n.push(u)),fe.apply(null,n));return u},Ie:function(e){var t=dr[e];if(t)return t;ct(this,"Undefined regular padding block with length "+e)},be:Qe,Le:Ze,ve:tt,Oe:nt,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,A=u[_],R=1<c?r.concat(_):r;if(!a||"string"!=typeof A.value||A.mod||A.pmod||A.ops.length){var p=s-(d?d.length+1:0)-3*(c-_-1),R=e.Fe(A,_,R,p,o);if(!R)return;d?d+="+"+R:d=R}else d?(f||ct(e,"Unsupported concatenation of a string to a potentially non-string expression"),l=new _r(void 0,d,F.WEAK_PREFIXED_STRING)):f=!(l=void 0),d=a(e,A.value,l)}n&&(d="("+d+")")}else if(T=t.identifier)var d=(0,o.identifier)(e,T,n,r,i);else{var h,T=t.value;if("string"==typeof T)d=(0,o.string)(e,T,n?2:wi,r,i);else if(an(T))T.length?(t=e.Fe(T[0],!1,r,i-2,o))&&(d="["+t+"]"):i<2||(d="[]");else if("number"==typeof T&&T==T?(t=T<0||1/T<0,h=0===(h=An(T))?"0":h===1/0?"1e1000":$e(h),d=se(h=t?"-"+h:h),1<h.length&&(d="+("+d+")"),n&&(d="("+d+")")):d=ut(Mi,E(T),n),d.length>i)return}return d}(this,e,f||u?2:t||o?1:0,n,c,i);if(_){for(var l=0;l<f;++l){var A=s[l],R=A.type;if("call"===R){if((_+="()").length>c)return}else{var p=n.concat(l+1),d=c-_.length-2,h=A.str;if(!(h=null!=h?(0,i.string)(this,h,0,p,d):this.Fe(A,!1,p,d,i)))return;_+="get"===R?"["+h+"]":"("+h+")"}}_+=u,o&&(_=o+_,a)&&(_="("+_+")")}return _},de:function(e,t,n,r,i){r||ct(this,"Missing padding entries for index "+n);var o,r=this.findDefinition(r),i=(n="number"==typeof r?(i=this.findDefinition(i),o=this.Ie(r),n+r+i):(o=r.block,r.shiftedIndex),"("+o+" + "+t+")["+n+"]"),r=this.replaceExpr(i);return new _r(e,r,F.STRING)},he:function(e,t,n,r){var i=this.findDefinition(Ri),o=i.expr,t=t+i.shift,i=n(t);return this.de(e,o,t,i,r)},constantDefinitions:Gr,findDefinition:function(e){var t,n=e.cacheKey,r=(void 0===n&&(e.cacheKey=n=++Di),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 J(this.mask,e)},maxGroupThreshold:1800,replaceExpr:function(e,t){function r(e,t,n){n.optimize=i;t=e.replaceString(t,n);return t||ct(e,"String too complex"),t}var i,e=mi(e),t=(e&&!0!==e||ct(this,"Syntax error"),i=t,{appendString:function(e,t,n){return r(e,t,{firstSolution:n,screwMode:wi})},identifier:ut,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 Xe(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=Yi(e,u),a=a?(u+=a.length,hr[a]):(a=e[u++],this.resolveCharacter(a));if(!r.append(a)||r.length>i)return}t=E(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 _r(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&&it(this,ln(r),function(){var e,t,n=ai[r];!n||an(n)?(o=n?ot(this,r,n):o)||(t=(e=r).charCodeAt(),o=this.pe(e,t,t<256,!0,!0,!0)):((o=Mi.resolve(n,r)).entryCode="static",i=ji),i[r]=o}),o},resolveConstant:function(t){var n=this.ue,r=n[t];return void 0===r&&it(this,t,function(){var e=this.constantDefinitions[t];an(e)?r=ot(this,t,e,F.OBJECT):(r=Mi.resolve(e,void 0,F.OBJECT),n=Hi),n[t]=r}),r}}),Bn=Mi,{joiner:"false",separator:"false"}),Ji={joiner:"",separator:'Function("return/(?=false|true)/")()'},Xi={identifier:function(e,t,n,r,i){return pt(e,"return "+t,Ct,Ot(r),i)},string:function(e,t,n,r,i){return Tt(e,t,n,Ot(r),i)}},qi=(gt.forceString=!(Ct.forceString=!1),st([""],"false")),$i=st(["false","true"],""),Ki={byCharCodes:t(function(e,t){return this.ge(e,void 0,t)},2),byCharCodesRadix4:t(function(e,t){return this.ge(e,4,t)},25),byCodePoints:t(function(e,t){return this.Pe(e,void 0,t)},3,void 0,_.FROM_CODE_POINT),byCodePointsRadix4:t(function(e,t){return this.Pe(e,4,t)},30,void 0,_.FROM_CODE_POINT),byDenseFigures:t(function(e,t){return this.ye(e,t)},1888),byDict:t(function(e,t){return this.me(e,void 0,void 0,t)},2),byDictRadix3AmendedBy1:t(function(e,t){return this.me(e,3,1,t)},136),byDictRadix4:t(function(e,t){return this.me(e,4,0,t)},160),byDictRadix4AmendedBy1:t(function(e,t){return this.me(e,4,1,t)},218),byDictRadix4AmendedBy2:t(function(e,t){return this.me(e,4,2,t)},263),byDictRadix5:t(function(e,t){return this.me(e,5,0,t)},223),byDictRadix5AmendedBy3:t(function(e,t){return this.me(e,5,3,t)},570),bySparseFigures:t(function(e,t){return this.xe(e,t)},347),express:t(function(e,t){e=e.valueOf();return this.we(e,t)},void 0,!0),plain:t(function(e,t){var n=e.valueOf(),t={maxLength:t,optimize:!0,screwMode:e.screwMode};return this.replaceString(n,t)}),text:t(function(e,t){return pt(this,e.valueOf(),e.wrapper,void 0,t)})};k(rt.prototype,{_e:function(e,t,n){return e(t,n)},ge:function(e,t,n){var r=this.findDefinition(_i);return Rt(this,e,r,Lt,t,n)},Pe:function(e,t,n){return Rt(this,e,"fromCodePoint",vt,t,n)},ye:function(e,t){return dt(this,bt,$i,Et,[Ji],e,t)},me:function(e,t,n,r){var i=e.valueOf(),e=Nt(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=xi.slice(0,t);if(n){for(var a=t-n,c="[",s=0;s<n;++s){var f=a+s;u[f]=hr[pr[s]].appendLength,c+=f}i=On(c+="]","g"),o=function(e){return pr[e-a]}}for(var _=[],s=0;s<e;++s){var l=r&&!s?"":s.toString(t),A=n?l.replace(i,o):l,A=_[s]=hn(A);A.sortLength=function(){var t=0;return tn(l,function(e){t+=u[e]}),t}(),A.index=s}return _.sort(function(e,t){return e.sortLength-t.sortLength||e.index-t.index}),_}(o,a,n,u),s=S(),f=It(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}),ht(this,_,r-f));if(o){if(n)for(var l=[],A=a-n,R=0;R<n;++R){var p=pr[R],d=E(A+R);l.push({separator:p,joiner:d})}e=_t(this,i,s,[zi],l,!1,r-o.length);if(e)return this.createDictEncoding(o,e,r,t,u)}},xe:function(e,t){return dt(this,It,qi,St,[zi],e,t)},we:function(e,t){var n,e=ze(e);if(e)return!0===e?t<0||(n=""):n=this.Fe(e,!1,[],t,Xi),n},le:function(e,t,n,r){var i=this.perfLog=[],e=ft(this,e,{wrapper:t},n);if(r&&(r.perfLog=i),delete this.perfLog,null==e)throw new sn("Encoding failed");return e},fe:65533,createDictEncoding:function(e,t,n,r,i){var i=r?this.findDefinition(Ai)(o=this.findDefinition(pi),"[parseInt("+(i?"+":"")+o+","+r+")]"):'"".charAt.bind',o=lt(this,t,i,e)+"["+this.replaceString("join")+"]([])";if(!(n<o.length))return o},replaceFalseFreeArray:function(e,t){return this.replaceStringArray(e,[zi],null,!1,t)},replaceJoinedArrayString:function(e,t){return se(e,{maxLength:t,screwMode:2})},replaceStringArray:function(r,e,u,t,a){var n,i,o,c,s,f,_,l,A=r.length;return(u||3<A)&&(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=Ft(this.replaceExpr(e.separator)),e=Ft(this.replaceString(e.joiner));i+="["+r+"]("+t+")["+o+"]("+e+")"},this)}return i+="["+r+"]"}}.call(this)),!u&&1<A&&(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=Ft(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&&(A<=1||o&&!(4+(o.length+7)*(A-1)>a))&&(l={screwMode:t?wi:0},r.some(function(e){e=Ft(se(e,l));return _?_+="["+o+"]("+(e="[]"===e?"[[]]":e)+")":_="["+e+"]",_.length>a})||(n=_)),n}});var Qi,Vi,Zi,eo,to=E.prototype.codePointAt?function(e){return e.codePointAt()}:function(e){return e.length<2?e.charCodeAt():ae(e.charCodeAt(0),e.charCodeAt(1))},no={appendLengthOf:Fn,optimizeSolutions:Fn},ro=[],io=[],oo=36,uo=9007199254740991,ao=[],co=[,,,,,,,,,,,48,50,54,,64],so=function(){for(var e=1/0,t=oo;12<=t;--t){var n=se(E(t)),r=n.length,r=(r<e&&(e=r),ao[t]=n,io[t]=uo.toString(t).length);ro[t]=co[r]+e}},fo=_.FROM_CODE_POINT.mask,Or=(k(rt.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,A,b,L,v;switch(e){case"comma":l=(_=this).replaceExpr("[][SLICE_OR_FLAT].call"),A=l.length+2,r={appendLengthOf:Pt,optimizeSolutions:function(r,u,a,c){function e(e){for(;e<f;){var i,t,n,o=function(e,t){var n=0;if(yt(e[t]))for(var r=e.length-2;t<r&&","===e[++t].source&&yt(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)-A,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:wi});return new _r(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=S(),l=[],t=(tn(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)),A=t.appendLength,R=o-A;if(0<2+R){l.sort(function(e,t){return e.appendLength-t.appendLength});for(var p=A,d=e.length,h=0;d;++h){var T=l[h],E=T.appendLength;if(p<E*d)break;T=T.count;p-=E*T,d-=T}var A=p/d|0,N=(c=e,s=t,n=function(e,t){for(var n,r=S();n=e[t++];)r[n.char]=null;return r}(l,h),i=A,f=R,_=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)if(e[t+n].source!==c[n])return;return 1})(t,o)&&(i=f,u||(r&&!s.isString?i-=3:n&&(i+=2)),0<i)&&e.addCluster(o,_,a,i)}})}else N=no;return N}(this,t,n);break;case"surrogatePair":i=(o=f=this).Le(1e5).length,o=o.ve(65536).length,u=pn(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=mt(c,55296,56319);s&&(u=mt(o=(i=t[r+1]).source,56320,57343))&&(s=ae(s,u),u=fe(f.Le(s),f.ve(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 _r(e,t,F.STRING)}}(c+o,u),e.addCluster(r,2,a,s))}}};break;case"toString":so&&(so(),so=null),b=this.resolveConstant("TO_STRING").replacement,L=b.length+7,v=S(),r={appendLengthOf:function(e){var t,n,e=e.source;if(null!=e&&/[bcghjkmopqvwxz]/.test(e))return null==(n=v[e])&&(t=xt(e),n=v[e]=(L+ro[t])/io[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=i||v[a.source]<=a.appendLength)&&2<=r-o){R=O=S=N=f=void 0;for(var c=e,s=t,f=o,_=r,l=n;;++f){var A=_-f;if("0"!==s[f].source){var R=O=S=N=void 0,p=c,d=s,h=f,T=A,E=l,N="",S=0,O="",R=0;do{var I=d[h+R],I=(S+=I.appendLength,I.source);if(N<I&&(N=I),O+=I,2<=++R&&L<S&&(E&&!h&&R===T&&(S+=2),function(e,t,n,r,i){do{var o=Ln(i,n);if(uo<o)return null==s;var o=se($e(o)),u=o.length+3,a=ao[n],c=a.length,s=L+u+c,u=r-s;0<u&&(c=function(e,t){return function(){return new _r(void 0,"(+("+e+"))["+b+"]("+t+")",F.STRING)}}(o,a),e.addCluster(t,i.length,c,u))}while(++n<=oo)}(p,h,xt(N),S,O)))break}while(R<T)}if(A<=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 ci){var s=ci[c];this.hasFeatures(s.mask)&&0<=e.indexOf(c)&&this.De(a,"complex",c,s.definition)}o&&this.hasFeatures(fo)&&/[\ud800-\udbff][\udc00-\udfff]/.test(e)&&this.De(a,"surrogatePair"),u&&this.De(a,"toString")}return a}}),Qi=On("(?:(?!.)\\s)+(?:\\s|\ufeff|//(?:(?!\\*/|`).)*(?!.)|/\\*(?:(?!`)(?:[^*]|\\*[^/]))*?\\*/)*$"),k({},{Feature:_,encode:Dt})),_o=_.Ne,lo=!1;Bt(),k(Dt,{get permanentCaching(){return lo},set permanentCaching(e){lo=!!e,Wt()}}),"undefined"!=typeof self&&(self.JScrewIt=Or),"undefined"!=typeof module&&(module.exports=Or,exports.Feature=null,exports.encode=null)}();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jscrewit",
3
- "version": "2.38.0",
3
+ "version": "2.39.0",
4
4
  "description": "Converts plain JavaScript into JSFuck code, which consists of only six different characters: ! ( ) + [ ]",
5
5
  "keywords": [
6
6
  "esoteric",
@@ -77,7 +77,8 @@
77
77
  "tslib": "latest",
78
78
  "typedoc": "latest",
79
79
  "typedoc-plugin-markdown": "latest",
80
- "typescript": "latest"
80
+ "typescript": "latest",
81
+ "uglify-js": "3.19.1"
81
82
  },
82
83
  "workspaces": [
83
84
  "./packages/*"
package/ui/ui.js CHANGED
@@ -1 +1 @@
1
- (()=>{function a(e){var t=typeof e;return"object"==t&&null!==e||"undefined"==t&&void 0!==e}function o(n,o,i,r){return function(t){function e(e){t[r](e,o,i)}Array.isArray(n)?n.forEach(e):e(n)}}function u(e){e.removeAttribute("tabindex")}function T(e){e.setAttribute("tabindex",0)}function E(e){function t(){c.className="button focusable",a("off")}function n(e){e.target!==c&&i()&&t()}function o(e){!e.relatedTarget&&i()&&t()}function i(){return/\bactive\b/.test(c.className)}function r(){return!c.hasAttribute("tabindex")}function a(e){e=B[e];B(document,e("mousemove",n),e("mouseout",o))}var c=B("SPAN",{className:"button focusable",get disabled(){return r()},set disabled(e){(e=!!e)!==r()&&(e?(B(c,u),i()&&(document.releaseCapture(),a("off")),c.blur()):B(c,T),c.className="",c.className="button focusable")}},T,B.on("click",function(e){r()&&e.stopImmediatePropagation(),e.preventDefault()}),B.on("keydown",function(e){13===e.keyCode&&(c.click(),e.preventDefault())}),B.on("keyup",function(e){32===e.keyCode&&(c.click(),e.preventDefault())}),B.on("mouseup",function(e){0===e.button&&i()&&(document.releaseCapture(),t())}),B("SPAN",e),B("SPAN"));return c.setCapture&&(c.firstChild.setAttribute("unselectable","on"),B(c,B.on("mousedown",function(e){0!==e.button||r()||i()||(c.setCapture(),c.className="active button focusable",a("on"))}))),c}function N(e,t){function n(){var e=document.body;e.removeChild(c),B(e,B.off("keydown",r),B.off("focus",i,!0)),void 0!==t&&t()}function o(){a.focus()}function i(e){a.contains(e.target)||o()}function r(e){var t=e.keyCode;13!==t&&27!==t||!(t=document.activeElement).contains(a)&&t.contains(e.target)||(n(),e.preventDefault())}var a=B("DIV",{style:{borderRadius:"25px",display:"inline-block",maxWidth:"500px",width:"100%"}},T,B("DIV",{className:"focusable",id:"modalBox",style:{background:"whitesmoke",border:"10px solid blue",borderRadius:"23px",margin:"2px"}},B("DIV",{style:{margin:"1.5em 1.5em .25em",overflow:"hidden"}},e,B("DIV",{style:{margin:"1.25em 0"}},B(E("OK"),{style:{maxWidth:"5em",width:"100%"}},B.on("click",n)))))),c=B("DIV",{style:{background:"rgba(0, 0, 0, .25)",overflow:"auto",position:"fixed",textAlign:"center",left:"0",top:"0",bottom:"0",width:"100%"}},B("DIV",{style:{display:"table",tableLayout:"fixed",width:"100%",height:"100%"}},B("DIV",{style:{display:"table-cell",verticalAlign:"middle"}},a)));B(document.body,c,B.on("focus",i,!0),B.on("keydown",r)),setTimeout(o)}function i(e){var t,n=typeof e;try{t="string"==n?'"'.concat(e,'"'):0===e&&1/e<0?"-0":Array.isArray(e)?e.length?"[…]":"[]":"bigint"==n?"".concat(e,"n"):"symbol"!=n?String(e):e.toString()}catch(e){}return t}function t(){(O=new Worker(y)).onmessage=S}function n(){URL.revokeObjectURL(y),y=void 0}function D(){var e,t=r();try{e=JScrewIt.encode(inputArea.value,t)}catch(e){return l(),void d(String(e))}p(e)}function M(){var e=r(),e={input:inputArea.value,options:e};v&&(O.terminate(),t(),e.url=m),O.postMessage(e),l(),s(!0),inputArea.onkeyup=null}function r(){return{features:C.canonicalNames}}function k(e){9!==e.keyCode&&M()}function J(e){var t;L(e)&&(e=outputArea.value.length,0===outputArea.selectionStart&&outputArea.selectionEnd===e||(outputArea.selectionStart=0,outputArea.selectionEnd=e,"scrollTopMax"in outputArea&&(t=outputArea.scrollTop,B(outputArea,B.on("scroll",function(){outputArea.scrollTop=t},{once:!0})))))}function w(){V.disabled=!1;var e=this.result;null!=e&&(inputArea.value=e),inputArea.oninput(),inputArea.disabled=!1}function q(){var e,t,n,o;try{t=(0,eval)(outputArea.value)}catch(e){n=B("P",String(e))}void 0!==t&&(e=(e=>{var t;if(Array.isArray(e))try{t="[".concat(e.map(i).join(", "),"]")}catch(e){}else t=i(e);return t})(t),t=(e=>{var t;if(null!==e){var n=typeof e;if("function"==n||"object"==n||"undefined"==n){var o=Object.getPrototypeOf(e);if(o===Array.prototype)switch(e.length){case 0:t="an empty array";break;case 1:t="a one element array";break;default:t="an array"}else t=o===Date.prototype?"a date":o===RegExp.prototype?"a regular expression":"function"==n?"a function":"an object"}}return t})(t),n=e?B("DIV",B("P",t?"Evaluation result is "+t+":":"Evaluation result is"),B("P",{style:{overflowX:"auto"}},B("DIV",{style:{display:"inline-block",textAlign:"left",whiteSpace:"pre"}},e))):B("DIV",B("P","Evaluation result is "+t+"."))),null!=n&&(o=this,N(n,function(){o.focus()}))}function S(e){var e=e.data,t=e.error;t?d(t):p(e.output),s(!1)}function L(e){var t,n,o=e.target;return(o="runtimeStyle"in o?(t=o.lastMainMouseButtonEventTimeStamp,n=0===e.button?e.timeStamp:void 0,(o.lastMainMouseButtonEventTimeStamp=n)-t<=500):2<=e.detail&&0===e.button)&&e.preventDefault(),o}function e(){function n(){var e=+new Date;0<=((d=u+(e-l)*s/250)-a)*s&&(d=a,o()),i.height=1===d?"":t.scrollHeight*d+"px",r.display=0===d?"none":""}function o(){clearInterval(c),c=null,s=0}document.querySelector("main>div").style.display="block",inputArea.value=inputArea.defaultValue,B(outputArea,B.on("mousedown",J),B.on("mouseup",L),B.on("input",P)),B(stats.parentNode,B(E("Run this"),{style:{bottom:"0",fontSize:"10pt",position:"absolute",right:"0"}},B.on("click",q))),e=F.COMPACT,C=F.AUTO.includes(e)?e:F.BROWSER,compMenu.value=C.name,compMenu.previousIndex=compMenu.selectedIndex,O?(h=M)():(e=B(E("Encode"),B.on("click",D)),B(controls,e),h=W,outputArea.value=""),"undefined"!=typeof File&&(e=B("INPUT",{accept:".js",style:{display:"none"},type:"file"},B.on("change",H)),k=HTMLInputElement.prototype.click.bind(e),V=B(E("Load file…"),B.on("click",k)),B(controls,V,e)),inputArea.oninput=h;var t,i,r,a,c,u,l,s,d,p,f,m,b,v,e,y,h,g,A,k=function(){var e=compMenu.selectedIndex,t=compMenu.options[e].value,n=t?F[t]:R.feature;!j&&F.areEqual(n,C)||(C=n,this()),e!==compMenu.previousIndex&&(compMenu.previousIndex=e,U.rollTo(+!t))}.bind(h);function w(e,t){return B("LABEL",{style:{display:"inline-table"}},B("SPAN",{style:{display:"table-cell",verticalAlign:"middle"}},B("INPUT",{style:{margin:"0 .25em 0 0"},type:"checkbox"},t)),B("SPAN",{style:{display:"table-cell"}},e))}function S(e){var t=B("DIV",{className:"help-text"});return t.innerHTML=e,B("SPAN",{className:"focusable",style:{background:"black",borderRadius:"1em",color:"white",cursor:"pointer",display:"inline-table",fontSize:"8pt",fontWeight:"bold",lineHeight:"10.5pt",position:"relative",textAlign:"center",top:"-1.5pt",width:"10.5pt"},title:"Learn more…"},"?",T,B.on("click",function(){N(t)}))}function x(){var t=p.checked;Array.prototype.forEach.call(m,function(e){e.checked=t})}function I(){var t=JScrewIt.Feature,e=Array.prototype.filter.call(m,function(e){return e.checked}).map(function(e){return++n,t[e.featureName]}),n=e.length;p.checked=n,p.indeterminate=n&&n<m.length,f=t.commonOf.apply(null,e)||t.DEFAULT,v.checked&&(f=f.restrict("web-worker",e)),b.checked&&(f=f.restrict("forced-strict-mode",e))}B(compMenu,B.on("change",k)),R=B((e=B(w("Select/deselect all"),{style:{margin:"0 0 .5em"}},B.on("change",x),B.on(["keyup","mouseup"],function(){setTimeout(function(){p.indeterminate||x()})})),y=B("TABLE",{style:{borderSpacing:"0",width:"100%"}}),h=w("Generate strict mode code"),g=w("Support web workers"),A=B("FIELDSET",{className:"engine-selection-box",get feature(){return f}},B("DIV",B("P",{style:{margin:".25em 0 .75em"}},"Select the engines you want your code to support."),e,y,B("HR"),B("DIV",g," ",S("<p>Web workers are part of a standard HTML technology used to perform background tasks in JavaScript.<p>Check the option <dfn>Support web workers</dfn> only if your code needs to run inside a web worker. To create or use a web worker in your code, this option is not required.")),B("DIV",h," ",S('<p>The option <dfn>Generate strict mode code</dfn> instructs JScrewIt to avoid optimizations that don\'t work in strict mode JavaScript code. Check this option only if your environment disallows non-strict code. You may want to do this for example in one of the following circumstances.<ul><li>To encode a string or a number and embed it in a JavaScript file in a place where strict mode code is expected, like in a scope containing a <code>"use strict"</code> statement or in a class body.<li>To encode a script and run it in Node.js with the option <code>--use_strict</code>.<li>To encode an ECMAScript module. Note that module support in JSFuck is <em>very</em> limited, as <code>import</code> and <code>export</code> statements don\'t work at all. If your module doesn\'t contain these statements, you can encode it using this option.</ul><p>In most other cases, this option is not required, not even to encode a script that contains a top level <code>"use strict"</code> statement.')),B.on("change",function(){var e;I(),(e=document.createEvent("Event")).initEvent("input",!0,!1),A.dispatchEvent(e)}))),["Chrome","Edge","Firefox","Internet Explorer","Safari","Opera","Android Browser","Node.js"].forEach(function(e,t){for(var n,o=JScrewIt.Feature.FAMILIES[e],i=1&t?{className:"even-field"}:null,r=(o.length+2)/3^0,a=3*r,c=0;c<a;++c){var u,l,s,d=o[c],p=(c%3||(n=B("TR",i),c||B(n,B("TD",{rowSpan:r,style:{padding:"0 .5em 0 0"}},e)),B(y,n)),null);d&&("string"!=typeof(l=d.version)&&(s=l.from,l=null==(u=l.to)?s+"+":s+"–"+u),null!=(s=d.shortTag)&&(l+=" ("+s+")"),p=w(l,{checked:!0,featureName:d.featureName})),B(n,B("TD",{style:{padding:"0 0 0 .5em",width:"6em"}},p))}}),p=e.querySelector("INPUT"),m=y.querySelectorAll("INPUT"),b=h.querySelector("INPUT"),v=g.querySelector("INPUT"),I(),A),B.on("input",k)),d=s=0,e=B("DIV"),(r=e.style).display="none",t=B("DIV",e,{container:e,rollTo:function(e){var t;e===d?o():((t=d<e?1:-1)!==s&&(u=d,l=+new Date,s=t),a=e,c=c||setInterval(n,0))}}),(i=t.style).height="0",i.overflowY="hidden",U=t,g="Custom Compatibility Selection","open"in(k=document.createElement("DETAILS"))?(B(k,{open:!0},B("SUMMARY",{dir:"rtl"},B("SPAN",{style:{float:"left"}},g))),B.css("details.frame:not([open])>:first-child",{"margin-bottom":"initial"})):k=B("DIV",B("SPAN",g)),B(U.container,B(k,{className:"frame"},R)),B(controls.parentNode,U),inputArea.selectionStart=2147483647,inputArea.focus()}function c(){document.addEventListener("DOMContentLoaded",e)}function H(){var e,t=this.files[0];t&&(inputArea.disabled=!0,inputArea.value="",V.disabled=!0,(e=new FileReader).addEventListener("loadend",w),e.readAsText(t))}function W(){b&&P(!0)}function l(){b=!1,outputArea.value="",stats.textContent="…"}function s(e){v=e,outputArea.disabled=e}function d(e){N(B("P",e))}function p(e){outputArea.value=e,P()}function P(e){var t=outputArea.value.length,t=1===t?"1 char":t+" chars";j=!!e,e&&(O&&(inputArea.onkeyup=k),t+=" – <i>out of sync</i>"),b=!0,stats.innerHTML=t}var f,C,R,m,V,j,b,U,v,O,y,h,g=Object,B=function(e){for(var t=e instanceof Node?e:"function"==typeof e?e.call(B):document.createElement(e),n=arguments.length,o=0;++o<n;){var i=arguments[o];i instanceof Node?t.appendChild(i):a(i)?function o(i,r){g.keys(r).forEach(function(e){var t,n=g.getOwnPropertyDescriptor(r,e);"value"in n?(t=n.value,e in i&&a(t)?o(i[e],t):i[e]=t):g.defineProperty(i,e,n)})}(t,i):"function"==typeof i?i.call(B,t):null!=i&&(i=document.createTextNode(i),t.appendChild(i))}return t},A=(B.off=function(e,t,n){return o(e,t,n,"removeEventListener")},B.on=function(e,t,n){return o(e,t,n,"addEventListener")},B.css=function(e,t){var n=t,t=e+"{"+g.keys(n).map(function(e){return e+":"+n[e]}).join(";")+"}";f||(e=B("STYLE"),B(document.head,e),f=e.sheet),f.insertRule(t,f.cssRules.length)},B.css(".button",{background:"#e0e0e0",color:"#212121",cursor:"default",display:"inline-block",position:"relative"}),B.css(".button, .button>:last-child",{"border-radius":".1em"}),B.css(".button.active, .button[tabindex]:active",{background:"#29b3e5"}),B.css(".button.active>:first-child, .button[tabindex]:active>:first-child",{left:".1em",top:".1em"}),B.css(".button.active>:last-child, .button[tabindex]:active>:last-child",{"border-color":"#0088b6"}),B.css(".button:not([tabindex])",{background:"#e9e9e9",color:"#707070"}),B.css(".button:not([tabindex])>:last-child",{"border-color":"#bababa"}),B.css(".button>:first-child",{display:"inline-block",margin:".15em .5em",position:"relative","user-select":"none","-moz-user-select":"none","-ms-user-select":"none","-webkit-user-select":"none"}),B.css(".button>:last-child",{"border-color":"#707070","border-style":"solid","border-width":"1px",display:"inline-block",position:"absolute",left:"0",right:"0",top:"0",bottom:"0"}),B.css(".button[tabindex]:hover:not(.active):not(:active)",{background:"#a3f4ff"}),B.css(".button[tabindex]:hover:not(.active):not(:active)>:last-child",{"border-color":"#189fdd"}),B.css("#modalBox p:first-child",{"margin-top":"0"}),B.css("#modalBox p:last-child",{"margin-bottom":"0"}),B.css(".engine-selection-box",{background:"#f0f0f0"}),B.css(".engine-selection-box .even-field",{background:"#fff"}),B.css(".help-text",{"font-size":"11pt","text-align":"justify"}),B.css(".help-text code",{"white-space":"pre"}),B.css(".help-text dfn",{"font-style":"normal","font-weight":"bold"}),B.css(".help-text li",{margin:".5em 0"}),"application/javascript"),F=JScrewIt.Feature;try{(h=new XMLHttpRequest).open("GET","lib/jscrewit.min.js",!0)}catch(e){h=void 0}if(h&&"undefined"!=typeof Worker){y=URL.createObjectURL(new Blob(["self.onmessage=function(t){var t=t.data,r=t.url,r=(null!=r&&importScripts(r),t.input);if(null!=r){try{e={output:JScrewIt.encode(r,t.options)}}catch(t){var e={error:String(t)}}postMessage(e)}};"],{type:A}));try{t()}catch(e){n()}}O?(h.onerror=function(){O.terminate(),O=void 0,n()},h.onload=function(){h.status<400?(m=URL.createObjectURL(h.response),O.postMessage({url:m})):this.onerror()},h.onloadend=function(){("loading"===document.readyState?c:e)()},h.overrideMimeType(A),h.responseType="blob",h.send()):c()})();
1
+ !function(){function a(e){var t=typeof e;return"object"==t&&null!==e||"undefined"==t&&void 0!==e}function o(n,o,i,r){return function(t){function e(e){t[r](e,o,i)}Array.isArray(n)?n.forEach(e):e(n)}}function u(e){e.removeAttribute("tabindex")}function T(e){e.setAttribute("tabindex",0)}function E(e){function t(){c.className="button focusable",a("off")}function n(e){e.target!==c&&i()&&t()}function o(e){!e.relatedTarget&&i()&&t()}function i(){return/\bactive\b/.test(c.className)}function r(){return!c.hasAttribute("tabindex")}function a(e){e=B[e];B(document,e("mousemove",n),e("mouseout",o))}var c=B("SPAN",{className:"button focusable",get disabled(){return r()},set disabled(e){(e=!!e)!==r()&&(e?(B(c,u),i()&&(document.releaseCapture(),a("off")),c.blur()):B(c,T),c.className="",c.className="button focusable")}},T,B.on("click",function(e){r()&&e.stopImmediatePropagation(),e.preventDefault()}),B.on("keydown",function(e){13===e.keyCode&&(c.click(),e.preventDefault())}),B.on("keyup",function(e){32===e.keyCode&&(c.click(),e.preventDefault())}),B.on("mouseup",function(e){0===e.button&&i()&&(document.releaseCapture(),t())}),B("SPAN",e),B("SPAN"));return c.setCapture&&(c.firstChild.setAttribute("unselectable","on"),B(c,B.on("mousedown",function(e){0!==e.button||r()||i()||(c.setCapture(),c.className="active button focusable",a("on"))}))),c}function N(e,t){function n(){var e=document.body;e.removeChild(c),B(e,B.off("keydown",r),B.off("focus",i,!0)),void 0!==t&&t()}function o(){a.focus()}function i(e){a.contains(e.target)||o()}function r(e){var t=e.keyCode;13!==t&&27!==t||!(t=document.activeElement).contains(a)&&t.contains(e.target)||(n(),e.preventDefault())}var a=B("DIV",{style:{borderRadius:"25px",display:"inline-block",maxWidth:"500px",width:"100%"}},T,B("DIV",{className:"focusable",id:"modalBox",style:{background:"whitesmoke",border:"10px solid blue",borderRadius:"23px",margin:"2px"}},B("DIV",{style:{margin:"1.5em 1.5em .25em",overflow:"hidden"}},e,B("DIV",{style:{margin:"1.25em 0"}},B(E("OK"),{style:{maxWidth:"5em",width:"100%"}},B.on("click",n)))))),c=B("DIV",{style:{background:"rgba(0, 0, 0, .25)",overflow:"auto",position:"fixed",textAlign:"center",left:"0",top:"0",bottom:"0",width:"100%"}},B("DIV",{style:{display:"table",tableLayout:"fixed",width:"100%",height:"100%"}},B("DIV",{style:{display:"table-cell",verticalAlign:"middle"}},a)));B(document.body,c,B.on("focus",i,!0),B.on("keydown",r)),setTimeout(o)}function i(e){var t,n=typeof e;try{t="string"==n?'"'.concat(e,'"'):0===e&&1/e<0?"-0":Array.isArray(e)?e.length?"[…]":"[]":"bigint"==n?"".concat(e,"n"):"symbol"!=n?String(e):e.toString()}catch(e){}return t}function t(){(O=new Worker(y)).onmessage=S}function n(){URL.revokeObjectURL(y),y=void 0}function D(){var e,t=r();try{e=JScrewIt.encode(inputArea.value,t)}catch(e){return l(),void d(String(e))}p(e)}function M(){var e=r(),e={input:inputArea.value,options:e};v&&(O.terminate(),t(),e.url=m),O.postMessage(e),l(),s(!0),inputArea.onkeyup=null}function r(){return{features:C.canonicalNames}}function k(e){9!==e.keyCode&&M()}function J(e){var t;L(e)&&(e=outputArea.value.length,0===outputArea.selectionStart&&outputArea.selectionEnd===e||(outputArea.selectionStart=0,outputArea.selectionEnd=e,"scrollTopMax"in outputArea&&(t=outputArea.scrollTop,B(outputArea,B.on("scroll",function(){outputArea.scrollTop=t},{once:!0})))))}function w(){V.disabled=!1;var e=this.result;null!=e&&(inputArea.value=e),inputArea.oninput(),inputArea.disabled=!1}function q(){var e,t,n,o;try{t=(0,eval)(outputArea.value)}catch(e){n=B("P",String(e))}void 0!==t&&(e=function(e){var t;if(Array.isArray(e))try{t="[".concat(e.map(i).join(", "),"]")}catch(e){}else t=i(e);return t}(t),t=function(e){var t;if(null!==e){var n=typeof e;if("function"==n||"object"==n||"undefined"==n){var o=Object.getPrototypeOf(e);if(o===Array.prototype)switch(e.length){case 0:t="an empty array";break;case 1:t="a one element array";break;default:t="an array"}else t=o===Date.prototype?"a date":o===RegExp.prototype?"a regular expression":"function"==n?"a function":"an object"}}return t}(t),n=e?B("DIV",B("P",t?"Evaluation result is "+t+":":"Evaluation result is"),B("P",{style:{overflowX:"auto"}},B("DIV",{style:{display:"inline-block",textAlign:"left",whiteSpace:"pre"}},e))):B("DIV",B("P","Evaluation result is "+t+"."))),null!=n&&(o=this,N(n,function(){o.focus()}))}function S(e){var e=e.data,t=e.error;t?d(t):p(e.output),s(!1)}function L(e){var t,n=e.target;return(n="runtimeStyle"in n?(t=n.lastMainMouseButtonEventTimeStamp,(n.lastMainMouseButtonEventTimeStamp=0===e.button?e.timeStamp:void 0)-t<=500):2<=e.detail&&0===e.button)&&e.preventDefault(),n}function e(){function n(){var e=+new Date;0<=((d=u+(e-l)*s/250)-a)*s&&(d=a,o()),i.height=1===d?"":t.scrollHeight*d+"px",r.display=0===d?"none":""}function o(){clearInterval(c),c=null,s=0}document.querySelector("main>div").style.display="block",inputArea.value=inputArea.defaultValue,B(outputArea,B.on("mousedown",J),B.on("mouseup",L),B.on("input",P)),B(stats.parentNode,B(E("Run this"),{style:{bottom:"0",fontSize:"10pt",position:"absolute",right:"0"}},B.on("click",q))),e=F.COMPACT,C=F.AUTO.includes(e)?e:F.BROWSER,compMenu.value=C.name,compMenu.previousIndex=compMenu.selectedIndex,O?(h=M)():(e=B(E("Encode"),B.on("click",D)),B(controls,e),h=W,outputArea.value=""),"undefined"!=typeof File&&(e=B("INPUT",{accept:".js",style:{display:"none"},type:"file"},B.on("change",H)),k=HTMLInputElement.prototype.click.bind(e),V=B(E("Load file…"),B.on("click",k)),B(controls,V,e)),inputArea.oninput=h;var t,i,r,a,c,u,l,s,d,p,f,m,b,v,e,y,h,g,A,k=function(){var e=compMenu.selectedIndex,t=compMenu.options[e].value,n=t?F[t]:R.feature;!j&&F.areEqual(n,C)||(C=n,this()),e!==compMenu.previousIndex&&(compMenu.previousIndex=e,U.rollTo(+!t))}.bind(h);function w(e,t){return B("LABEL",{style:{display:"inline-table"}},B("SPAN",{style:{display:"table-cell",verticalAlign:"middle"}},B("INPUT",{style:{margin:"0 .25em 0 0"},type:"checkbox"},t)),B("SPAN",{style:{display:"table-cell"}},e))}function S(e){var t=B("DIV",{className:"help-text"});return t.innerHTML=e,B("SPAN",{className:"focusable",style:{background:"black",borderRadius:"1em",color:"white",cursor:"pointer",display:"inline-table",fontSize:"8pt",fontWeight:"bold",lineHeight:"10.5pt",position:"relative",textAlign:"center",top:"-1.5pt",width:"10.5pt"},title:"Learn more…"},"?",T,B.on("click",function(){N(t)}))}function x(){var t=p.checked;Array.prototype.forEach.call(m,function(e){e.checked=t})}function I(){var t=JScrewIt.Feature,e=Array.prototype.filter.call(m,function(e){return e.checked}).map(function(e){return++n,t[e.featureName]}),n=e.length;p.checked=n,p.indeterminate=n&&n<m.length,f=t.commonOf.apply(null,e)||t.DEFAULT,v.checked&&(f=f.restrict("web-worker",e)),b.checked&&(f=f.restrict("forced-strict-mode",e))}B(compMenu,B.on("change",k)),R=B((e=B(w("Select/deselect all"),{style:{margin:"0 0 .5em"}},B.on("change",x),B.on(["keyup","mouseup"],function(){setTimeout(function(){p.indeterminate||x()})})),y=B("TABLE",{style:{borderSpacing:"0",width:"100%"}}),h=w("Generate strict mode code"),g=w("Support web workers"),A=B("FIELDSET",{className:"engine-selection-box",get feature(){return f}},B("DIV",B("P",{style:{margin:".25em 0 .75em"}},"Select the engines you want your code to support."),e,y,B("HR"),B("DIV",g," ",S("<p>Web workers are part of a standard HTML technology used to perform background tasks in JavaScript.<p>Check the option <dfn>Support web workers</dfn> only if your code needs to run inside a web worker. To create or use a web worker in your code, this option is not required.")),B("DIV",h," ",S('<p>The option <dfn>Generate strict mode code</dfn> instructs JScrewIt to avoid optimizations that don\'t work in strict mode JavaScript code. Check this option only if your environment disallows non-strict code. You may want to do this for example in one of the following circumstances.<ul><li>To encode a string or a number and embed it in a JavaScript file in a place where strict mode code is expected, like in a scope containing a <code>"use strict"</code> statement or in a class body.<li>To encode a script and run it in Node.js with the option <code>--use_strict</code>.<li>To encode an ECMAScript module. Note that module support in JSFuck is <em>very</em> limited, as <code>import</code> and <code>export</code> statements don\'t work at all. If your module doesn\'t contain these statements, you can encode it using this option.</ul><p>In most other cases, this option is not required, not even to encode a script that contains a top level <code>"use strict"</code> statement.')),B.on("change",function(){var e;I(),(e=document.createEvent("Event")).initEvent("input",!0,!1),A.dispatchEvent(e)}))),["Chrome","Edge","Firefox","Internet Explorer","Safari","Opera","Android Browser","Node.js"].forEach(function(e,t){for(var n,o=JScrewIt.Feature.FAMILIES[e],i=1&t?{className:"even-field"}:null,r=(o.length+2)/3^0,a=3*r,c=0;c<a;++c){var u,l,s,d=o[c],p=(c%3||(n=B("TR",i),c||B(n,B("TD",{rowSpan:r,style:{padding:"0 .5em 0 0"}},e)),B(y,n)),null);d&&("string"!=typeof(l=d.version)&&(s=l.from,l=null==(u=l.to)?s+"+":s+"–"+u),null!=(s=d.shortTag)&&(l+=" ("+s+")"),p=w(l,{checked:!0,featureName:d.featureName})),B(n,B("TD",{style:{padding:"0 0 0 .5em",width:"6em"}},p))}}),p=e.querySelector("INPUT"),m=y.querySelectorAll("INPUT"),b=h.querySelector("INPUT"),v=g.querySelector("INPUT"),I(),A),B.on("input",k)),d=s=0,e=B("DIV"),(r=e.style).display="none",t=B("DIV",e,{container:e,rollTo:function(e){var t;e===d?o():((t=d<e?1:-1)!==s&&(u=d,l=+new Date,s=t),a=e,c=c||setInterval(n,0))}}),(i=t.style).height="0",i.overflowY="hidden",U=t,g="Custom Compatibility Selection","open"in(k=document.createElement("DETAILS"))?(B(k,{open:!0},B("SUMMARY",{dir:"rtl"},B("SPAN",{style:{float:"left"}},g))),B.css("details.frame:not([open])>:first-child",{"margin-bottom":"initial"})):k=B("DIV",B("SPAN",g)),B(U.container,B(k,{className:"frame"},R)),B(controls.parentNode,U),inputArea.selectionStart=2147483647,inputArea.focus()}function c(){document.addEventListener("DOMContentLoaded",e)}function H(){var e,t=this.files[0];t&&(inputArea.disabled=!0,inputArea.value="",V.disabled=!0,(e=new FileReader).addEventListener("loadend",w),e.readAsText(t))}function W(){b&&P(!0)}function l(){b=!1,outputArea.value="",stats.textContent="…"}function s(e){v=e,outputArea.disabled=e}function d(e){N(B("P",e))}function p(e){outputArea.value=e,P()}function P(e){var t=outputArea.value.length,t=1===t?"1 char":t+" chars";j=!!e,e&&(O&&(inputArea.onkeyup=k),t+=" – <i>out of sync</i>"),b=!0,stats.innerHTML=t}var f,C,R,m,V,j,b,U,v,O,y,h,g=Object,B=function(e){for(var t=e instanceof Node?e:"function"==typeof e?e.call(B):document.createElement(e),n=arguments.length,o=0;++o<n;){var i=arguments[o];i instanceof Node?t.appendChild(i):a(i)?function o(i,r){g.keys(r).forEach(function(e){var t,n=g.getOwnPropertyDescriptor(r,e);"value"in n?(t=n.value,e in i&&a(t)?o(i[e],t):i[e]=t):g.defineProperty(i,e,n)})}(t,i):"function"==typeof i?i.call(B,t):null!=i&&(i=document.createTextNode(i),t.appendChild(i))}return t},A=(B.off=function(e,t,n){return o(e,t,n,"removeEventListener")},B.on=function(e,t,n){return o(e,t,n,"addEventListener")},B.css=function(e,t){var n=t,t=e+"{"+g.keys(n).map(function(e){return e+":"+n[e]}).join(";")+"}";f||(e=B("STYLE"),B(document.head,e),f=e.sheet),f.insertRule(t,f.cssRules.length)},B.css(".button",{background:"#e0e0e0",color:"#212121",cursor:"default",display:"inline-block",position:"relative"}),B.css(".button, .button>:last-child",{"border-radius":".1em"}),B.css(".button.active, .button[tabindex]:active",{background:"#29b3e5"}),B.css(".button.active>:first-child, .button[tabindex]:active>:first-child",{left:".1em",top:".1em"}),B.css(".button.active>:last-child, .button[tabindex]:active>:last-child",{"border-color":"#0088b6"}),B.css(".button:not([tabindex])",{background:"#e9e9e9",color:"#707070"}),B.css(".button:not([tabindex])>:last-child",{"border-color":"#bababa"}),B.css(".button>:first-child",{display:"inline-block",margin:".15em .5em",position:"relative","user-select":"none","-moz-user-select":"none","-ms-user-select":"none","-webkit-user-select":"none"}),B.css(".button>:last-child",{"border-color":"#707070","border-style":"solid","border-width":"1px",display:"inline-block",position:"absolute",left:"0",right:"0",top:"0",bottom:"0"}),B.css(".button[tabindex]:hover:not(.active):not(:active)",{background:"#a3f4ff"}),B.css(".button[tabindex]:hover:not(.active):not(:active)>:last-child",{"border-color":"#189fdd"}),B.css("#modalBox p:first-child",{"margin-top":"0"}),B.css("#modalBox p:last-child",{"margin-bottom":"0"}),B.css(".engine-selection-box",{background:"#f0f0f0"}),B.css(".engine-selection-box .even-field",{background:"#fff"}),B.css(".help-text",{"font-size":"11pt","text-align":"justify"}),B.css(".help-text code",{"white-space":"pre"}),B.css(".help-text dfn",{"font-style":"normal","font-weight":"bold"}),B.css(".help-text li",{margin:".5em 0"}),"application/javascript"),F=JScrewIt.Feature;try{(h=new XMLHttpRequest).open("GET","lib/jscrewit.min.js",!0)}catch(e){h=void 0}if(h&&"undefined"!=typeof Worker){y=URL.createObjectURL(new Blob(["self.onmessage=function(t){var t=t.data,r=t.url,r=(null!=r&&importScripts(r),t.input);if(null!=r){try{e={output:JScrewIt.encode(r,t.options)}}catch(t){var e={error:String(t)}}postMessage(e)}};"],{type:A}));try{t()}catch(e){n()}}O?(h.onerror=function(){O.terminate(),O=void 0,n()},h.onload=function(){h.status<400?(m=URL.createObjectURL(h.response),O.postMessage({url:m})):this.onerror()},h.onloadend=function(){("loading"===document.readyState?c:e)()},h.overrideMimeType(A),h.responseType="blob",h.send()):c()}();