json-schema-library 11.3.1 → 11.4.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.
Files changed (54) hide show
  1. package/CHANGELOG.md +21 -2
  2. package/README.md +44 -35
  3. package/dist/chunk-350yNsax.cjs +1 -0
  4. package/dist/formats.cjs +2 -0
  5. package/dist/formats.cjs.map +1 -0
  6. package/dist/formats.d.cts +8 -0
  7. package/dist/formats.d.mts +8 -0
  8. package/dist/formats.mjs +2 -0
  9. package/dist/formats.mjs.map +1 -0
  10. package/dist/index.cjs +2 -1
  11. package/dist/index.cjs.map +1 -0
  12. package/dist/index.d.cts +4 -4
  13. package/dist/index.d.mts +4 -4
  14. package/dist/index.mjs +2 -1
  15. package/dist/index.mjs.map +1 -0
  16. package/dist/jlib.js +2 -2
  17. package/dist/jlibFormats.iife.js +1 -0
  18. package/dist/jlibRemote.iife.js +1 -0
  19. package/dist/{remotes/index.cjs → remotes.cjs} +2 -1
  20. package/dist/remotes.cjs.map +1 -0
  21. package/dist/remotes.d.cts +8 -0
  22. package/dist/remotes.d.mts +8 -0
  23. package/dist/{remotes/index.mjs → remotes.mjs} +2 -1
  24. package/dist/remotes.mjs.map +1 -0
  25. package/dist/{types-DVyFDxCv.d.mts → types-BDjKcTVR.d.cts} +4 -2
  26. package/dist/{types-ZgoQMSny.d.cts → types-CqkCJmt8.d.mts} +4 -2
  27. package/package.json +21 -15
  28. package/src/SchemaNode.ts +12 -18
  29. package/src/compileSchema.ts +0 -3
  30. package/src/errors/errors.ts +3 -2
  31. package/src/formats/additionalFormats.ts +118 -0
  32. package/src/formats/formats.ts +3 -111
  33. package/src/keywords/$defs.ts +3 -0
  34. package/src/keywords/additionalProperties.ts +1 -0
  35. package/src/keywords/allOf.ts +2 -5
  36. package/src/keywords/anyOf.ts +2 -4
  37. package/src/keywords/dependencies.ts +2 -0
  38. package/src/keywords/dependentSchemas.ts +2 -3
  39. package/src/keywords/format.ts +8 -0
  40. package/src/keywords/ifthenelse.ts +4 -9
  41. package/src/keywords/oneOf.ts +2 -5
  42. package/src/keywords/patternProperties.ts +5 -1
  43. package/src/keywords/prefixItems.ts +14 -9
  44. package/src/keywords/properties.ts +2 -3
  45. package/src/keywords/propertyDependencies.ts +2 -3
  46. package/src/keywords/propertyNames.ts +1 -1
  47. package/src/utils/collectValidationErrors.ts +9 -0
  48. package/src/validateSchema.test.ts +29 -30
  49. package/tsconfig.json +1 -0
  50. package/tsconfig.test.json +1 -0
  51. package/tsdown.config.ts +5 -2
  52. package/tsdown.iife.config.ts +29 -8
  53. package/dist/remotes/index.d.cts +0 -7
  54. package/dist/remotes/index.d.mts +0 -7
package/CHANGELOG.md CHANGED
@@ -1,9 +1,28 @@
1
1
  ## Changelog
2
2
 
3
+ ### v11.4.0
4
+
5
+ - added schema annotation on `compileSchema` for unknown format
6
+ - replaced option `withSchemaAnnotations` in favor of always creating all annotations
7
+
8
+ **Breaking change**: Moved some large format-validators to separate entry point:
9
+
10
+ - the following format-validators have been moved to a separate entry point "json-schema-library/formats": `hostname`, `idn-email`, `ipv4`, `ipv6`, `uri`, `uri-reference`, `uri-template`
11
+ - the following additional format-validators are available through "json-schema-library/formats": `iri`, `iri-reference`, `idn-hostname`
12
+
13
+ _Use the following to add the additional format validators to drafts per default:_
14
+
15
+ ```ts
16
+ import { addFormats } from "json-schema-library/formats";
17
+ import { draft04, draft06, draft07, draft2019, draft2020 } from "json-schema-library";
18
+ // add additional formats to the following drafts
19
+ addFormats([draft04, draft06, draft07, draft2019, draft2020]);
20
+ ```
21
+
3
22
  ### v11.3.0
4
23
 
5
- - added option 'draft' as fallback for a missing `$schema` id
6
- - added properties to merge when resolvinf a $ref to `settings.PROPERTIES_TO_MERGE`
24
+ - added option `draft` as fallback for a missing `$schema` id
25
+ - added setting for properties to merge when resolving a `$ref` to `settings.PROPERTIES_TO_MERGE`
7
26
 
8
27
  ### v11.2.0
9
28
 
package/README.md CHANGED
@@ -46,6 +46,11 @@ console.log(schemaNode.getDraftVersion()); // draft-07
46
46
 
47
47
  ## Overview
48
48
 
49
+ [compileSchema](#compileschema) ·
50
+ [validate input schema](#validate-input-schema) ·
51
+ [SchemaNode](#schemanode) ·
52
+ [Draft Support](#draft-support)
53
+
49
54
  ### compileSchema
50
55
 
51
56
  Use `compileSchema` once to turn a JSON Schema into a tree of SchemaNodes. After that, you'll work with individual nodes in the tree. You can also pass an options object to `compileSchema` to customize how the nodes are created.
@@ -54,25 +59,25 @@ Use `compileSchema` once to turn a JSON Schema into a tree of SchemaNodes. After
54
59
  type CompileOptions = {
55
60
  // set of drafts to use
56
61
  drafts: Draft[];
62
+ /** fallback draft version in case no draft_is specified by `schema.$schema` */
63
+ draft?: string;
57
64
  // a context to share
58
65
  remote: SchemaNode;
59
66
  // if format-validations should create errors. Defaults to true
60
67
  formatAssertion: boolean | "meta-schema";
61
68
  /** set to true to throw an Error on errors in input schema. Defaults to false */
62
69
  throwOnInvalidSchema?: boolean;
63
- /** set to true to collect unknown keywords of input schema in `node.schemaAnnotations`. Defaults to false */
64
- withSchemaAnnotations?: boolean;
65
70
  /** set to true to throw an Error when encountering an unresolvable ref */
66
71
  throwOnInvalidRef?: boolean;
67
72
  // default options for all calls to node.getData()
68
73
  getDataDefaultOptions?: {
69
- // Add all properties (required and optional) to the generated data
74
+ // add all properties (required and optional) to the generated data
70
75
  addOptionalProps?: boolean;
71
- // Remove data that does not match input schema. Defaults to false
76
+ // remove data that does not match input schema. Defaults to false
72
77
  removeInvalidData?: boolean;
73
- // Set to false to take default values as they are and not extend them. Defaults to true
78
+ // set to false to take default values as they are and not extend them. Defaults to true
74
79
  extendDefaults?: boolean;
75
- // Limits how often a $ref should be followed before aborting. Prevents infinite data-structure. Defaults to 1
80
+ // limits how often a $ref should be followed before aborting. Prevents infinite data-structure. Defaults to 1
76
81
  recursionLimit?: number;
77
82
  };
78
83
  };
@@ -251,7 +256,19 @@ Note that rootNodes will change when working across remote schema (using $ref).
251
256
 
252
257
  ### Draft Support
253
258
 
254
- _json-schema-library_ fully supports all core features of draft versions draft-04, draft-06, draft-07, draft-2019-09 and draft-2020-12. Additionally, most format-validations are supported per default besides the listed format below. You can always override or extend format validation as is documented in [draft customization](#draft-customization).
259
+ _json-schema-library_ fully supports all core features of draft versions draft-04, draft-06, draft-07, draft-2019-09 and draft-2020-12. Additionally, all JSON Schema format validators are supported:
260
+
261
+ - The following formats are **available per default**: `date`, `date-time`, `duration`, `email`, `json-pointer`, `relative-json-pointer`, `regex`, `time`, `url`, `uuid`
262
+ - **Add remaining format** validators `hostname`, `idn-email`, `ipv4`, `ipv6`, `uri`, `uri-reference`, `uri-template` to drafts with:
263
+
264
+ ```ts
265
+ import { addFormats } from "json-schema-library/formats";
266
+ import { draft04, draft06, draft07, draft2019, draft2020 } from "json-schema-library";
267
+ // add additional formats to the following drafts
268
+ addFormats([draft04, draft06, draft07, draft2019, draft2020]);
269
+ ```
270
+
271
+ You can always override or extend format validation as is documented in [draft customization](#draft-customization).
255
272
 
256
273
  <details><summary>Overview draft support</summary>
257
274
 
@@ -268,17 +285,6 @@ Please note that these benchmarks refer to validation only. _json-schema-library
268
285
 
269
286
  </details>
270
287
 
271
- <details><summary>Overview format validation support</summary>
272
-
273
- ---
274
-
275
- - **`❌ unsupported formats`** iri, iri-reference, idn-hostname
276
- - **`✅ supported formats`**: date, date-time, date, duration, ecmascript-regex, email, hostname, idn-email, ipv4, ipv6, json-pointer, regex, relative-json-pointer, time, unknown, uri-reference, uri-template, uri, uuid
277
-
278
- ---
279
-
280
- </details>
281
-
282
288
  ## SchemaNode methods
283
289
 
284
290
  [addRemoteSchema](#addremoteschema) ·
@@ -435,6 +441,22 @@ schemaNode.getNodeRef("https://sagold.com/remote#/properties/character");
435
441
  const someNode = node.compileSchema({ prefixItems: [{ type: "string" }, { $ref: "#/$defs/string" }] });
436
442
  ```
437
443
 
444
+ #### custom error messages
445
+
446
+ You can set custom errors messages locally by using the errors-keyword:
447
+
448
+ ```ts
449
+ const { errors } = compileSchema({
450
+ type: "array",
451
+ minItems: 2,
452
+ errorMessages: {
453
+ "min-items-error": "Custom error {{minItems}}"
454
+ }
455
+ }).validate([1]);
456
+
457
+ assert.deepEqual(errors[0].message, "Custom error 2");
458
+ ```
459
+
438
460
  ### createSchema
439
461
 
440
462
  `createSchema` returns a simple JSON Schema for the input data.
@@ -892,7 +914,8 @@ if (node) {
892
914
  }
893
915
  ```
894
916
 
895
- ---
917
+ > [!CAUTION]
918
+ > `getNode` returns the root of the current schema. If a remote schema was resolved, the returned node will be the remote-schema root - not the initial schema-root you passed in to compileSchema
896
919
 
897
920
  ### reduceNode
898
921
 
@@ -1150,7 +1173,7 @@ console.log(errors); /// [{ code: "type-error", value: "data", pointer: "#", ...
1150
1173
 
1151
1174
  ## Draft Customization
1152
1175
 
1153
- [**Extending a Draft**](#extending-a-draft) · [**Keyword**](#keyword)
1176
+ [Extending a Draft](#extending-a-draft) · [Overwrite format validator](#overwrite-a-format-validator) · [Keyword](#keyword)
1154
1177
 
1155
1178
  _json-schema-library_ uses the concept of **drafts** to support different versions of the JSON Schema specification — such as Draft 04, Draft 07, or 2020-12 — and to allow customization of schema behavior.
1156
1179
 
@@ -1549,21 +1572,7 @@ const myDraft = extendDraft(draft2020, {
1549
1572
  });
1550
1573
  ```
1551
1574
 
1552
- ### errorMessages
1553
-
1554
- You can set custom errors messages locally by using the errors-keyword:
1555
-
1556
- ```ts
1557
- const { errors } = compileSchema({
1558
- type: "array",
1559
- minItems: 2,
1560
- errorMessages: {
1561
- "min-items-error": "Custom error {{minItems}}"
1562
- }
1563
- }).validate([1]);
1564
-
1565
- assert.deepEqual(errors[0].message, "Custom error 2");
1566
- ```
1575
+ ## Settings
1567
1576
 
1568
1577
  ### regexFlags
1569
1578
 
@@ -0,0 +1 @@
1
+ var e=Object.create,t=Object.defineProperty,n=Object.getOwnPropertyDescriptor,r=Object.getOwnPropertyNames,i=Object.getPrototypeOf,a=Object.prototype.hasOwnProperty,o=(e,t)=>()=>(t||e((t={exports:{}}).exports,t),t.exports),s=(e,i,o,s)=>{if(i&&typeof i==`object`||typeof i==`function`)for(var c=r(i),l=0,u=c.length,d;l<u;l++)d=c[l],!a.call(e,d)&&d!==o&&t(e,d,{get:(e=>i[e]).bind(null,d),enumerable:!(s=n(i,d))||s.enumerable});return e},c=(n,r,a)=>(a=n==null?{}:e(i(n)),s(r||!n||!n.__esModule?t(a,`default`,{value:n,enumerable:!0}):a,n));Object.defineProperty(exports,`n`,{enumerable:!0,get:function(){return c}}),Object.defineProperty(exports,`t`,{enumerable:!0,get:function(){return o}});
@@ -0,0 +1,2 @@
1
+ Object.defineProperty(exports,Symbol.toStringTag,{value:`Module`});const e=require(`./chunk-350yNsax.cjs`),t=`(?:[01]\\d|2[0-3])`,n=`[0-5]\\d`,r=`\\.\\d+`,i=`(?:[zZ]|${`[+-]${t}:${n}`})`,a=`${`${t}:${n}:[0-5]\\d(?:${r})?`}${i}`;RegExp.prototype.test.bind(RegExp(`^${a}$`)),RegExp(`^${t}:${n}:(?<seconds>[0-5]\\d|60)(?:${r})?${i}$`);const o=`\\d+S`,s=`\\d+M(?:${o})?`,c=`T(?:${`\\d+H(?:${s})?`}|${s}|${o})`,l=`\\d+D`,u=`\\d+M(?:${l})?`,d=`P(?:${`(?:${l}|${u}|${`\\d+Y(?:${u})?`})(?:${c})?`}|${c}|\\d+W)`;RegExp.prototype.test.bind(RegExp(`^${d}$`));const f="[\\w!#$%&'*+\\-/=?^`{|}~]+",p=`(?:${`${f}(?:\\.${f})*`}|"(?:[\\x20-\\x21\\x23-\\x5B\\x5D-\\x7E]|\\\\[\\x20-\\x7E])*")`,m=`(?:[a-zA-Z]|\\d)`,h=`(?:${m}|-)*${m}`,g=`${m}${h}?`,_=`${g}(?:\\.${g})*`,v=`(?:\\d|[1-9]\\d|1\\d\\d|2[0-4]\\d|25[0-5])`,y=`${v}\\.${v}\\.${v}\\.${v}`,b=`[\\da-fA-F]{1,4}`,x=`(?:${b}:${b}|${y})`,ee=`${p}@(?:${_}|${`\\[(?:${y}|${`IPv6:${`(?:(?:${b}:){6}${x}|::(?:${b}:){5}${x}|(?:${b})?::(?:${b}:){4}${x}|(?:(?:${b}:){0,1}${b})?::(?:${b}:){3}${x}|(?:(?:${b}:){0,2}${b})?::(?:${b}:){2}${x}|(?:(?:${b}:){0,3}${b})?::(?:${b}:){1}${x}|(?:(?:${b}:){0,4}${b})?::${x}|(?:(?:${b}:){0,5}${b})?::${b}|(?:(?:${b}:){0,6}${b})?::)`}`}|${`${h}:[\\x21-\\x5A\\x5E-\\x7E]+`})]`})`;RegExp.prototype.test.bind(RegExp(`^${ee}$`));var te=e.t(((e,t)=>{let n=2147483647,r=/^xn--/,i=/[^\0-\x7F]/,a=/[\x2E\u3002\uFF0E\uFF61]/g,o={overflow:`Overflow: input needs wider integers to process`,"not-basic":`Illegal input >= 0x80 (not a basic code point)`,"invalid-input":`Invalid input`},s=Math.floor,c=String.fromCharCode;function l(e){throw RangeError(o[e])}function u(e,t){let n=[],r=e.length;for(;r--;)n[r]=t(e[r]);return n}function d(e,t){let n=e.split(`@`),r=``;n.length>1&&(r=n[0]+`@`,e=n[1]),e=e.replace(a,`.`);let i=u(e.split(`.`),t).join(`.`);return r+i}function f(e){let t=[],n=0,r=e.length;for(;n<r;){let i=e.charCodeAt(n++);if(i>=55296&&i<=56319&&n<r){let r=e.charCodeAt(n++);(r&64512)==56320?t.push(((i&1023)<<10)+(r&1023)+65536):(t.push(i),n--)}else t.push(i)}return t}let p=e=>String.fromCodePoint(...e),m=function(e){return e>=48&&e<58?26+(e-48):e>=65&&e<91?e-65:e>=97&&e<123?e-97:36},h=function(e,t){return e+22+75*(e<26)-((t!=0)<<5)},g=function(e,t,n){let r=0;for(e=n?s(e/700):e>>1,e+=s(e/t);e>455;r+=36)e=s(e/35);return s(r+36*e/(e+38))},_=function(e){let t=[],r=e.length,i=0,a=128,o=72,c=e.lastIndexOf(`-`);c<0&&(c=0);for(let n=0;n<c;++n)e.charCodeAt(n)>=128&&l(`not-basic`),t.push(e.charCodeAt(n));for(let u=c>0?c+1:0;u<r;){let c=i;for(let t=1,a=36;;a+=36){u>=r&&l(`invalid-input`);let c=m(e.charCodeAt(u++));c>=36&&l(`invalid-input`),c>s((n-i)/t)&&l(`overflow`),i+=c*t;let d=a<=o?1:a>=o+26?26:a-o;if(c<d)break;let f=36-d;t>s(n/f)&&l(`overflow`),t*=f}let d=t.length+1;o=g(i-c,d,c==0),s(i/d)>n-a&&l(`overflow`),a+=s(i/d),i%=d,t.splice(i++,0,a)}return String.fromCodePoint(...t)},v=function(e){let t=[];e=f(e);let r=e.length,i=128,a=0,o=72;for(let n of e)n<128&&t.push(c(n));let u=t.length,d=u;for(u&&t.push(`-`);d<r;){let r=n;for(let t of e)t>=i&&t<r&&(r=t);let f=d+1;r-i>s((n-a)/f)&&l(`overflow`),a+=(r-i)*f,i=r;for(let r of e)if(r<i&&++a>n&&l(`overflow`),r===i){let e=a;for(let n=36;;n+=36){let r=n<=o?1:n>=o+26?26:n-o;if(e<r)break;let i=e-r,a=36-r;t.push(c(h(r+i%a,0))),e=s(i/a)}t.push(c(h(e,0))),o=g(a,f,d===u),a=0,++d}++a,++i}return t.join(``)};t.exports={version:`2.3.1`,ucs2:{decode:f,encode:p},decode:_,encode:v,toASCII:function(e){return d(e,function(e){return i.test(e)?`xn--`+v(e):e})},toUnicode:function(e){return d(e,function(e){return r.test(e)?_(e.slice(4).toLowerCase()):e})}}})),ne=e.t(((e,t)=>{t.exports={props:[`valid`,`mapped`,`deviation`,`ignored`,`disallowed`],viramas:[2381,2509,2637,2765,2893,3021,3149,3277,3387,3388,3405,3530,3642,3770,3972,4153,4154,5908,5909,5940,6098,6752,6980,7082,7083,7154,7155,11647,43014,43052,43204,43347,43456,43766,44013,68159,69702,69744,69759,69817,69939,69940,70080,70197,70378,70477,70722,70850,71103,71231,71350,71467,71737,71997,71998,72160,72244,72263,72345,72767,73028,73029,73111,73537,73538],ranges:[[45,45,0],[48,57,0],[65,90,1],[97,122,0],[170,170,1],[173,173,3],[178,179,1],[181,181,1],[183,183,0],[185,186,1],[188,190,1],[192,214,1],[216,222,1],[223,223,2],[224,246,0],[248,255,0],[256,256,1],[257,257,0],[258,258,1],[259,259,0],[260,260,1],[261,261,0],[262,262,1],[263,263,0],[264,264,1],[265,265,0],[266,266,1],[267,267,0],[268,268,1],[269,269,0],[270,270,1],[271,271,0],[272,272,1],[273,273,0],[274,274,1],[275,275,0],[276,276,1],[277,277,0],[278,278,1],[279,279,0],[280,280,1],[281,281,0],[282,282,1],[283,283,0],[284,284,1],[285,285,0],[286,286,1],[287,287,0],[288,288,1],[289,289,0],[290,290,1],[291,291,0],[292,292,1],[293,293,0],[294,294,1],[295,295,0],[296,296,1],[297,297,0],[298,298,1],[299,299,0],[300,300,1],[301,301,0],[302,302,1],[303,303,0],[304,304,1],[305,305,0],[306,306,1],[308,308,1],[309,309,0],[310,310,1],[311,312,0],[313,313,1],[314,314,0],[315,315,1],[316,316,0],[317,317,1],[318,318,0],[319,319,1],[321,321,1],[322,322,0],[323,323,1],[324,324,0],[325,325,1],[326,326,0],[327,327,1],[328,328,0],[329,330,1],[331,331,0],[332,332,1],[333,333,0],[334,334,1],[335,335,0],[336,336,1],[337,337,0],[338,338,1],[339,339,0],[340,340,1],[341,341,0],[342,342,1],[343,343,0],[344,344,1],[345,345,0],[346,346,1],[347,347,0],[348,348,1],[349,349,0],[350,350,1],[351,351,0],[352,352,1],[353,353,0],[354,354,1],[355,355,0],[356,356,1],[357,357,0],[358,358,1],[359,359,0],[360,360,1],[361,361,0],[362,362,1],[363,363,0],[364,364,1],[365,365,0],[366,366,1],[367,367,0],[368,368,1],[369,369,0],[370,370,1],[371,371,0],[372,372,1],[373,373,0],[374,374,1],[375,375,0],[376,377,1],[378,378,0],[379,379,1],[380,380,0],[381,381,1],[382,382,0],[383,383,1],[384,384,0],[385,386,1],[387,387,0],[388,388,1],[389,389,0],[390,391,1],[392,392,0],[393,395,1],[396,397,0],[398,401,1],[402,402,0],[403,404,1],[405,405,0],[406,408,1],[409,411,0],[412,413,1],[414,414,0],[415,416,1],[417,417,0],[418,418,1],[419,419,0],[420,420,1],[421,421,0],[422,423,1],[424,424,0],[425,425,1],[426,427,0],[428,428,1],[429,429,0],[430,431,1],[432,432,0],[433,435,1],[436,436,0],[437,437,1],[438,438,0],[439,440,1],[441,443,0],[444,444,1],[445,451,0],[452,452,1],[455,455,1],[458,458,1],[461,461,1],[462,462,0],[463,463,1],[464,464,0],[465,465,1],[466,466,0],[467,467,1],[468,468,0],[469,469,1],[470,470,0],[471,471,1],[472,472,0],[473,473,1],[474,474,0],[475,475,1],[476,477,0],[478,478,1],[479,479,0],[480,480,1],[481,481,0],[482,482,1],[483,483,0],[484,484,1],[485,485,0],[486,486,1],[487,487,0],[488,488,1],[489,489,0],[490,490,1],[491,491,0],[492,492,1],[493,493,0],[494,494,1],[495,496,0],[497,497,1],[500,500,1],[501,501,0],[502,504,1],[505,505,0],[506,506,1],[507,507,0],[508,508,1],[509,509,0],[510,510,1],[511,511,0],[512,512,1],[513,513,0],[514,514,1],[515,515,0],[516,516,1],[517,517,0],[518,518,1],[519,519,0],[520,520,1],[521,521,0],[522,522,1],[523,523,0],[524,524,1],[525,525,0],[526,526,1],[527,527,0],[528,528,1],[529,529,0],[530,530,1],[531,531,0],[532,532,1],[533,533,0],[534,534,1],[535,535,0],[536,536,1],[537,537,0],[538,538,1],[539,539,0],[540,540,1],[541,541,0],[542,542,1],[543,543,0],[544,544,1],[545,545,0],[546,546,1],[547,547,0],[548,548,1],[549,549,0],[550,550,1],[551,551,0],[552,552,1],[553,553,0],[554,554,1],[555,555,0],[556,556,1],[557,557,0],[558,558,1],[559,559,0],[560,560,1],[561,561,0],[562,562,1],[563,569,0],[570,571,1],[572,572,0],[573,574,1],[575,576,0],[577,577,1],[578,578,0],[579,582,1],[583,583,0],[584,584,1],[585,585,0],[586,586,1],[587,587,0],[588,588,1],[589,589,0],[590,590,1],[591,687,0],[688,696,1],[697,705,0],[710,721,0],[736,740,1],[748,748,0],[750,750,0],[768,831,0],[832,833,1],[834,834,0],[835,837,1],[838,846,0],[847,847,3],[848,879,0],[880,880,1],[881,881,0],[882,882,1],[883,883,0],[884,884,1],[885,885,0],[886,886,1],[887,887,0],[891,893,0],[895,895,1],[902,906,1],[908,908,1],[910,911,1],[912,912,0],[913,929,1],[931,939,1],[940,961,0],[962,962,2],[963,974,0],[975,982,1],[983,983,0],[984,984,1],[985,985,0],[986,986,1],[987,987,0],[988,988,1],[989,989,0],[990,990,1],[991,991,0],[992,992,1],[993,993,0],[994,994,1],[995,995,0],[996,996,1],[997,997,0],[998,998,1],[999,999,0],[1e3,1e3,1],[1001,1001,0],[1002,1002,1],[1003,1003,0],[1004,1004,1],[1005,1005,0],[1006,1006,1],[1007,1007,0],[1008,1010,1],[1011,1011,0],[1012,1013,1],[1015,1015,1],[1016,1016,0],[1017,1018,1],[1019,1020,0],[1021,1071,1],[1072,1119,0],[1120,1120,1],[1121,1121,0],[1122,1122,1],[1123,1123,0],[1124,1124,1],[1125,1125,0],[1126,1126,1],[1127,1127,0],[1128,1128,1],[1129,1129,0],[1130,1130,1],[1131,1131,0],[1132,1132,1],[1133,1133,0],[1134,1134,1],[1135,1135,0],[1136,1136,1],[1137,1137,0],[1138,1138,1],[1139,1139,0],[1140,1140,1],[1141,1141,0],[1142,1142,1],[1143,1143,0],[1144,1144,1],[1145,1145,0],[1146,1146,1],[1147,1147,0],[1148,1148,1],[1149,1149,0],[1150,1150,1],[1151,1151,0],[1152,1152,1],[1153,1153,0],[1155,1159,0],[1162,1162,1],[1163,1163,0],[1164,1164,1],[1165,1165,0],[1166,1166,1],[1167,1167,0],[1168,1168,1],[1169,1169,0],[1170,1170,1],[1171,1171,0],[1172,1172,1],[1173,1173,0],[1174,1174,1],[1175,1175,0],[1176,1176,1],[1177,1177,0],[1178,1178,1],[1179,1179,0],[1180,1180,1],[1181,1181,0],[1182,1182,1],[1183,1183,0],[1184,1184,1],[1185,1185,0],[1186,1186,1],[1187,1187,0],[1188,1188,1],[1189,1189,0],[1190,1190,1],[1191,1191,0],[1192,1192,1],[1193,1193,0],[1194,1194,1],[1195,1195,0],[1196,1196,1],[1197,1197,0],[1198,1198,1],[1199,1199,0],[1200,1200,1],[1201,1201,0],[1202,1202,1],[1203,1203,0],[1204,1204,1],[1205,1205,0],[1206,1206,1],[1207,1207,0],[1208,1208,1],[1209,1209,0],[1210,1210,1],[1211,1211,0],[1212,1212,1],[1213,1213,0],[1214,1214,1],[1215,1215,0],[1217,1217,1],[1218,1218,0],[1219,1219,1],[1220,1220,0],[1221,1221,1],[1222,1222,0],[1223,1223,1],[1224,1224,0],[1225,1225,1],[1226,1226,0],[1227,1227,1],[1228,1228,0],[1229,1229,1],[1230,1231,0],[1232,1232,1],[1233,1233,0],[1234,1234,1],[1235,1235,0],[1236,1236,1],[1237,1237,0],[1238,1238,1],[1239,1239,0],[1240,1240,1],[1241,1241,0],[1242,1242,1],[1243,1243,0],[1244,1244,1],[1245,1245,0],[1246,1246,1],[1247,1247,0],[1248,1248,1],[1249,1249,0],[1250,1250,1],[1251,1251,0],[1252,1252,1],[1253,1253,0],[1254,1254,1],[1255,1255,0],[1256,1256,1],[1257,1257,0],[1258,1258,1],[1259,1259,0],[1260,1260,1],[1261,1261,0],[1262,1262,1],[1263,1263,0],[1264,1264,1],[1265,1265,0],[1266,1266,1],[1267,1267,0],[1268,1268,1],[1269,1269,0],[1270,1270,1],[1271,1271,0],[1272,1272,1],[1273,1273,0],[1274,1274,1],[1275,1275,0],[1276,1276,1],[1277,1277,0],[1278,1278,1],[1279,1279,0],[1280,1280,1],[1281,1281,0],[1282,1282,1],[1283,1283,0],[1284,1284,1],[1285,1285,0],[1286,1286,1],[1287,1287,0],[1288,1288,1],[1289,1289,0],[1290,1290,1],[1291,1291,0],[1292,1292,1],[1293,1293,0],[1294,1294,1],[1295,1295,0],[1296,1296,1],[1297,1297,0],[1298,1298,1],[1299,1299,0],[1300,1300,1],[1301,1301,0],[1302,1302,1],[1303,1303,0],[1304,1304,1],[1305,1305,0],[1306,1306,1],[1307,1307,0],[1308,1308,1],[1309,1309,0],[1310,1310,1],[1311,1311,0],[1312,1312,1],[1313,1313,0],[1314,1314,1],[1315,1315,0],[1316,1316,1],[1317,1317,0],[1318,1318,1],[1319,1319,0],[1320,1320,1],[1321,1321,0],[1322,1322,1],[1323,1323,0],[1324,1324,1],[1325,1325,0],[1326,1326,1],[1327,1327,0],[1329,1366,1],[1369,1369,0],[1376,1414,0],[1415,1415,1],[1416,1416,0],[1425,1469,0],[1471,1471,0],[1473,1474,0],[1476,1477,0],[1479,1479,0],[1488,1514,0],[1519,1524,0],[1552,1562,0],[1568,1599,0],[1601,1641,0],[1646,1652,0],[1653,1656,1],[1657,1747,0],[1749,1756,0],[1759,1768,0],[1770,1791,0],[1808,1866,0],[1869,1969,0],[1984,2037,0],[2045,2045,0],[2048,2093,0],[2112,2139,0],[2144,2154,0],[2160,2183,0],[2185,2190,0],[2200,2273,0],[2275,2391,0],[2392,2399,1],[2400,2403,0],[2406,2415,0],[2417,2435,0],[2437,2444,0],[2447,2448,0],[2451,2472,0],[2474,2480,0],[2482,2482,0],[2486,2489,0],[2492,2500,0],[2503,2504,0],[2507,2510,0],[2519,2519,0],[2524,2525,1],[2527,2527,1],[2528,2531,0],[2534,2545,0],[2556,2556,0],[2558,2558,0],[2561,2563,0],[2565,2570,0],[2575,2576,0],[2579,2600,0],[2602,2608,0],[2610,2610,0],[2611,2611,1],[2613,2613,0],[2614,2614,1],[2616,2617,0],[2620,2620,0],[2622,2626,0],[2631,2632,0],[2635,2637,0],[2641,2641,0],[2649,2651,1],[2652,2652,0],[2654,2654,1],[2662,2677,0],[2689,2691,0],[2693,2701,0],[2703,2705,0],[2707,2728,0],[2730,2736,0],[2738,2739,0],[2741,2745,0],[2748,2757,0],[2759,2761,0],[2763,2765,0],[2768,2768,0],[2784,2787,0],[2790,2799,0],[2809,2815,0],[2817,2819,0],[2821,2828,0],[2831,2832,0],[2835,2856,0],[2858,2864,0],[2866,2867,0],[2869,2873,0],[2876,2884,0],[2887,2888,0],[2891,2893,0],[2901,2903,0],[2908,2909,1],[2911,2915,0],[2918,2927,0],[2929,2929,0],[2946,2947,0],[2949,2954,0],[2958,2960,0],[2962,2965,0],[2969,2970,0],[2972,2972,0],[2974,2975,0],[2979,2980,0],[2984,2986,0],[2990,3001,0],[3006,3010,0],[3014,3016,0],[3018,3021,0],[3024,3024,0],[3031,3031,0],[3046,3055,0],[3072,3084,0],[3086,3088,0],[3090,3112,0],[3114,3129,0],[3132,3140,0],[3142,3144,0],[3146,3149,0],[3157,3158,0],[3160,3162,0],[3165,3165,0],[3168,3171,0],[3174,3183,0],[3200,3203,0],[3205,3212,0],[3214,3216,0],[3218,3240,0],[3242,3251,0],[3253,3257,0],[3260,3268,0],[3270,3272,0],[3274,3277,0],[3285,3286,0],[3293,3294,0],[3296,3299,0],[3302,3311,0],[3313,3315,0],[3328,3340,0],[3342,3344,0],[3346,3396,0],[3398,3400,0],[3402,3406,0],[3412,3415,0],[3423,3427,0],[3430,3439,0],[3450,3455,0],[3457,3459,0],[3461,3478,0],[3482,3505,0],[3507,3515,0],[3517,3517,0],[3520,3526,0],[3530,3530,0],[3535,3540,0],[3542,3542,0],[3544,3551,0],[3558,3567,0],[3570,3571,0],[3585,3634,0],[3635,3635,1],[3636,3642,0],[3648,3662,0],[3664,3673,0],[3713,3714,0],[3716,3716,0],[3718,3722,0],[3724,3747,0],[3749,3749,0],[3751,3762,0],[3763,3763,1],[3764,3773,0],[3776,3780,0],[3782,3782,0],[3784,3790,0],[3792,3801,0],[3804,3805,1],[3806,3807,0],[3840,3840,0],[3851,3851,0],[3852,3852,1],[3864,3865,0],[3872,3881,0],[3893,3893,0],[3895,3895,0],[3897,3897,0],[3902,3906,0],[3907,3907,1],[3908,3911,0],[3913,3916,0],[3917,3917,1],[3918,3921,0],[3922,3922,1],[3923,3926,0],[3927,3927,1],[3928,3931,0],[3932,3932,1],[3933,3944,0],[3945,3945,1],[3946,3948,0],[3953,3954,0],[3955,3955,1],[3956,3956,0],[3957,3961,1],[3962,3968,0],[3969,3969,1],[3970,3972,0],[3974,3986,0],[3987,3987,1],[3988,3991,0],[3993,3996,0],[3997,3997,1],[3998,4001,0],[4002,4002,1],[4003,4006,0],[4007,4007,1],[4008,4011,0],[4012,4012,1],[4013,4024,0],[4025,4025,1],[4026,4028,0],[4038,4038,0],[4096,4169,0],[4176,4253,0],[4295,4295,1],[4301,4301,1],[4304,4346,0],[4348,4348,1],[4349,4351,0],[4608,4680,0],[4682,4685,0],[4688,4694,0],[4696,4696,0],[4698,4701,0],[4704,4744,0],[4746,4749,0],[4752,4784,0],[4786,4789,0],[4792,4798,0],[4800,4800,0],[4802,4805,0],[4808,4822,0],[4824,4880,0],[4882,4885,0],[4888,4954,0],[4957,4959,0],[4992,5007,0],[5024,5109,0],[5112,5117,1],[5121,5740,0],[5743,5759,0],[5761,5786,0],[5792,5866,0],[5873,5880,0],[5888,5909,0],[5919,5940,0],[5952,5971,0],[5984,5996,0],[5998,6e3,0],[6002,6003,0],[6016,6067,0],[6070,6099,0],[6103,6103,0],[6108,6109,0],[6112,6121,0],[6155,6155,3],[6159,6159,3],[6160,6169,0],[6176,6264,0],[6272,6314,0],[6320,6389,0],[6400,6430,0],[6432,6443,0],[6448,6459,0],[6470,6509,0],[6512,6516,0],[6528,6571,0],[6576,6601,0],[6608,6617,0],[6656,6683,0],[6688,6750,0],[6752,6780,0],[6783,6793,0],[6800,6809,0],[6823,6823,0],[6832,6845,0],[6847,6862,0],[6912,6988,0],[6992,7001,0],[7019,7027,0],[7040,7155,0],[7168,7223,0],[7232,7241,0],[7245,7293,0],[7296,7300,1],[7302,7304,1],[7312,7354,1],[7357,7359,1],[7376,7378,0],[7380,7418,0],[7424,7467,0],[7468,7470,1],[7471,7471,0],[7472,7482,1],[7483,7483,0],[7484,7501,1],[7502,7502,0],[7503,7530,1],[7531,7543,0],[7544,7544,1],[7545,7578,0],[7579,7615,1],[7616,7679,0],[7680,7680,1],[7681,7681,0],[7682,7682,1],[7683,7683,0],[7684,7684,1],[7685,7685,0],[7686,7686,1],[7687,7687,0],[7688,7688,1],[7689,7689,0],[7690,7690,1],[7691,7691,0],[7692,7692,1],[7693,7693,0],[7694,7694,1],[7695,7695,0],[7696,7696,1],[7697,7697,0],[7698,7698,1],[7699,7699,0],[7700,7700,1],[7701,7701,0],[7702,7702,1],[7703,7703,0],[7704,7704,1],[7705,7705,0],[7706,7706,1],[7707,7707,0],[7708,7708,1],[7709,7709,0],[7710,7710,1],[7711,7711,0],[7712,7712,1],[7713,7713,0],[7714,7714,1],[7715,7715,0],[7716,7716,1],[7717,7717,0],[7718,7718,1],[7719,7719,0],[7720,7720,1],[7721,7721,0],[7722,7722,1],[7723,7723,0],[7724,7724,1],[7725,7725,0],[7726,7726,1],[7727,7727,0],[7728,7728,1],[7729,7729,0],[7730,7730,1],[7731,7731,0],[7732,7732,1],[7733,7733,0],[7734,7734,1],[7735,7735,0],[7736,7736,1],[7737,7737,0],[7738,7738,1],[7739,7739,0],[7740,7740,1],[7741,7741,0],[7742,7742,1],[7743,7743,0],[7744,7744,1],[7745,7745,0],[7746,7746,1],[7747,7747,0],[7748,7748,1],[7749,7749,0],[7750,7750,1],[7751,7751,0],[7752,7752,1],[7753,7753,0],[7754,7754,1],[7755,7755,0],[7756,7756,1],[7757,7757,0],[7758,7758,1],[7759,7759,0],[7760,7760,1],[7761,7761,0],[7762,7762,1],[7763,7763,0],[7764,7764,1],[7765,7765,0],[7766,7766,1],[7767,7767,0],[7768,7768,1],[7769,7769,0],[7770,7770,1],[7771,7771,0],[7772,7772,1],[7773,7773,0],[7774,7774,1],[7775,7775,0],[7776,7776,1],[7777,7777,0],[7778,7778,1],[7779,7779,0],[7780,7780,1],[7781,7781,0],[7782,7782,1],[7783,7783,0],[7784,7784,1],[7785,7785,0],[7786,7786,1],[7787,7787,0],[7788,7788,1],[7789,7789,0],[7790,7790,1],[7791,7791,0],[7792,7792,1],[7793,7793,0],[7794,7794,1],[7795,7795,0],[7796,7796,1],[7797,7797,0],[7798,7798,1],[7799,7799,0],[7800,7800,1],[7801,7801,0],[7802,7802,1],[7803,7803,0],[7804,7804,1],[7805,7805,0],[7806,7806,1],[7807,7807,0],[7808,7808,1],[7809,7809,0],[7810,7810,1],[7811,7811,0],[7812,7812,1],[7813,7813,0],[7814,7814,1],[7815,7815,0],[7816,7816,1],[7817,7817,0],[7818,7818,1],[7819,7819,0],[7820,7820,1],[7821,7821,0],[7822,7822,1],[7823,7823,0],[7824,7824,1],[7825,7825,0],[7826,7826,1],[7827,7827,0],[7828,7828,1],[7829,7833,0],[7834,7835,1],[7836,7837,0],[7838,7838,1],[7839,7839,0],[7840,7840,1],[7841,7841,0],[7842,7842,1],[7843,7843,0],[7844,7844,1],[7845,7845,0],[7846,7846,1],[7847,7847,0],[7848,7848,1],[7849,7849,0],[7850,7850,1],[7851,7851,0],[7852,7852,1],[7853,7853,0],[7854,7854,1],[7855,7855,0],[7856,7856,1],[7857,7857,0],[7858,7858,1],[7859,7859,0],[7860,7860,1],[7861,7861,0],[7862,7862,1],[7863,7863,0],[7864,7864,1],[7865,7865,0],[7866,7866,1],[7867,7867,0],[7868,7868,1],[7869,7869,0],[7870,7870,1],[7871,7871,0],[7872,7872,1],[7873,7873,0],[7874,7874,1],[7875,7875,0],[7876,7876,1],[7877,7877,0],[7878,7878,1],[7879,7879,0],[7880,7880,1],[7881,7881,0],[7882,7882,1],[7883,7883,0],[7884,7884,1],[7885,7885,0],[7886,7886,1],[7887,7887,0],[7888,7888,1],[7889,7889,0],[7890,7890,1],[7891,7891,0],[7892,7892,1],[7893,7893,0],[7894,7894,1],[7895,7895,0],[7896,7896,1],[7897,7897,0],[7898,7898,1],[7899,7899,0],[7900,7900,1],[7901,7901,0],[7902,7902,1],[7903,7903,0],[7904,7904,1],[7905,7905,0],[7906,7906,1],[7907,7907,0],[7908,7908,1],[7909,7909,0],[7910,7910,1],[7911,7911,0],[7912,7912,1],[7913,7913,0],[7914,7914,1],[7915,7915,0],[7916,7916,1],[7917,7917,0],[7918,7918,1],[7919,7919,0],[7920,7920,1],[7921,7921,0],[7922,7922,1],[7923,7923,0],[7924,7924,1],[7925,7925,0],[7926,7926,1],[7927,7927,0],[7928,7928,1],[7929,7929,0],[7930,7930,1],[7931,7931,0],[7932,7932,1],[7933,7933,0],[7934,7934,1],[7935,7943,0],[7944,7951,1],[7952,7957,0],[7960,7965,1],[7968,7975,0],[7976,7983,1],[7984,7991,0],[7992,7999,1],[8e3,8005,0],[8008,8013,1],[8016,8023,0],[8025,8025,1],[8027,8027,1],[8029,8029,1],[8031,8031,1],[8032,8039,0],[8040,8047,1],[8048,8048,0],[8049,8049,1],[8050,8050,0],[8051,8051,1],[8052,8052,0],[8053,8053,1],[8054,8054,0],[8055,8055,1],[8056,8056,0],[8057,8057,1],[8058,8058,0],[8059,8059,1],[8060,8060,0],[8061,8061,1],[8064,8111,1],[8112,8113,0],[8114,8116,1],[8118,8118,0],[8119,8124,1],[8126,8126,1],[8130,8132,1],[8134,8134,0],[8135,8140,1],[8144,8146,0],[8147,8147,1],[8150,8151,0],[8152,8155,1],[8160,8162,0],[8163,8163,1],[8164,8167,0],[8168,8172,1],[8178,8180,1],[8182,8182,0],[8183,8188,1],[8203,8203,3],[8204,8204,2],[8205,8205,0],[8209,8209,1],[8243,8244,1],[8246,8247,1],[8279,8279,1],[8288,8288,3],[8292,8292,3],[8304,8305,1],[8308,8313,1],[8315,8315,1],[8319,8329,1],[8331,8331,1],[8336,8348,1],[8360,8360,1],[8450,8451,1],[8455,8455,1],[8457,8459,1],[8463,8464,1],[8466,8466,1],[8469,8470,1],[8473,8475,1],[8480,8482,1],[8484,8484,1],[8486,8486,1],[8488,8488,1],[8490,8493,1],[8495,8495,1],[8497,8497,1],[8499,8505,1],[8507,8509,1],[8511,8512,1],[8517,8517,1],[8519,8521,1],[8526,8526,0],[8528,8575,1],[8580,8580,0],[8585,8585,1],[8748,8749,1],[8751,8752,1],[9001,9002,1],[9312,9331,1],[9398,9450,1],[10764,10764,1],[10972,10972,1],[11264,11311,1],[11312,11359,0],[11360,11360,1],[11361,11361,0],[11362,11364,1],[11365,11366,0],[11367,11367,1],[11368,11368,0],[11369,11369,1],[11370,11370,0],[11371,11371,1],[11372,11372,0],[11373,11376,1],[11377,11377,0],[11378,11378,1],[11379,11380,0],[11381,11381,1],[11382,11387,0],[11388,11392,1],[11393,11393,0],[11394,11394,1],[11395,11395,0],[11396,11396,1],[11397,11397,0],[11398,11398,1],[11399,11399,0],[11400,11400,1],[11401,11401,0],[11402,11402,1],[11403,11403,0],[11404,11404,1],[11405,11405,0],[11406,11406,1],[11407,11407,0],[11408,11408,1],[11409,11409,0],[11410,11410,1],[11411,11411,0],[11412,11412,1],[11413,11413,0],[11414,11414,1],[11415,11415,0],[11416,11416,1],[11417,11417,0],[11418,11418,1],[11419,11419,0],[11420,11420,1],[11421,11421,0],[11422,11422,1],[11423,11423,0],[11424,11424,1],[11425,11425,0],[11426,11426,1],[11427,11427,0],[11428,11428,1],[11429,11429,0],[11430,11430,1],[11431,11431,0],[11432,11432,1],[11433,11433,0],[11434,11434,1],[11435,11435,0],[11436,11436,1],[11437,11437,0],[11438,11438,1],[11439,11439,0],[11440,11440,1],[11441,11441,0],[11442,11442,1],[11443,11443,0],[11444,11444,1],[11445,11445,0],[11446,11446,1],[11447,11447,0],[11448,11448,1],[11449,11449,0],[11450,11450,1],[11451,11451,0],[11452,11452,1],[11453,11453,0],[11454,11454,1],[11455,11455,0],[11456,11456,1],[11457,11457,0],[11458,11458,1],[11459,11459,0],[11460,11460,1],[11461,11461,0],[11462,11462,1],[11463,11463,0],[11464,11464,1],[11465,11465,0],[11466,11466,1],[11467,11467,0],[11468,11468,1],[11469,11469,0],[11470,11470,1],[11471,11471,0],[11472,11472,1],[11473,11473,0],[11474,11474,1],[11475,11475,0],[11476,11476,1],[11477,11477,0],[11478,11478,1],[11479,11479,0],[11480,11480,1],[11481,11481,0],[11482,11482,1],[11483,11483,0],[11484,11484,1],[11485,11485,0],[11486,11486,1],[11487,11487,0],[11488,11488,1],[11489,11489,0],[11490,11490,1],[11491,11492,0],[11499,11499,1],[11500,11500,0],[11501,11501,1],[11502,11505,0],[11506,11506,1],[11507,11507,0],[11520,11557,0],[11559,11559,0],[11565,11565,0],[11568,11623,0],[11631,11631,1],[11647,11670,0],[11680,11686,0],[11688,11694,0],[11696,11702,0],[11704,11710,0],[11712,11718,0],[11720,11726,0],[11728,11734,0],[11736,11742,0],[11744,11775,0],[11823,11823,0],[11935,11935,1],[12019,12019,1],[12032,12245,1],[12290,12290,1],[12293,12295,0],[12330,12333,0],[12342,12342,1],[12344,12346,1],[12348,12348,0],[12353,12438,0],[12441,12442,0],[12445,12446,0],[12447,12447,1],[12449,12542,0],[12543,12543,1],[12549,12591,0],[12593,12643,1],[12645,12686,1],[12690,12703,1],[12704,12735,0],[12784,12799,0],[12868,12871,1],[12880,12926,1],[12928,13249,1],[13251,13254,1],[13256,13271,1],[13273,13311,1],[13312,19903,0],[19968,42124,0],[42192,42237,0],[42240,42508,0],[42512,42539,0],[42560,42560,1],[42561,42561,0],[42562,42562,1],[42563,42563,0],[42564,42564,1],[42565,42565,0],[42566,42566,1],[42567,42567,0],[42568,42568,1],[42569,42569,0],[42570,42570,1],[42571,42571,0],[42572,42572,1],[42573,42573,0],[42574,42574,1],[42575,42575,0],[42576,42576,1],[42577,42577,0],[42578,42578,1],[42579,42579,0],[42580,42580,1],[42581,42581,0],[42582,42582,1],[42583,42583,0],[42584,42584,1],[42585,42585,0],[42586,42586,1],[42587,42587,0],[42588,42588,1],[42589,42589,0],[42590,42590,1],[42591,42591,0],[42592,42592,1],[42593,42593,0],[42594,42594,1],[42595,42595,0],[42596,42596,1],[42597,42597,0],[42598,42598,1],[42599,42599,0],[42600,42600,1],[42601,42601,0],[42602,42602,1],[42603,42603,0],[42604,42604,1],[42605,42607,0],[42612,42621,0],[42623,42623,0],[42624,42624,1],[42625,42625,0],[42626,42626,1],[42627,42627,0],[42628,42628,1],[42629,42629,0],[42630,42630,1],[42631,42631,0],[42632,42632,1],[42633,42633,0],[42634,42634,1],[42635,42635,0],[42636,42636,1],[42637,42637,0],[42638,42638,1],[42639,42639,0],[42640,42640,1],[42641,42641,0],[42642,42642,1],[42643,42643,0],[42644,42644,1],[42645,42645,0],[42646,42646,1],[42647,42647,0],[42648,42648,1],[42649,42649,0],[42650,42650,1],[42651,42651,0],[42652,42653,1],[42654,42725,0],[42736,42737,0],[42775,42783,0],[42786,42786,1],[42787,42787,0],[42788,42788,1],[42789,42789,0],[42790,42790,1],[42791,42791,0],[42792,42792,1],[42793,42793,0],[42794,42794,1],[42795,42795,0],[42796,42796,1],[42797,42797,0],[42798,42798,1],[42799,42801,0],[42802,42802,1],[42803,42803,0],[42804,42804,1],[42805,42805,0],[42806,42806,1],[42807,42807,0],[42808,42808,1],[42809,42809,0],[42810,42810,1],[42811,42811,0],[42812,42812,1],[42813,42813,0],[42814,42814,1],[42815,42815,0],[42816,42816,1],[42817,42817,0],[42818,42818,1],[42819,42819,0],[42820,42820,1],[42821,42821,0],[42822,42822,1],[42823,42823,0],[42824,42824,1],[42825,42825,0],[42826,42826,1],[42827,42827,0],[42828,42828,1],[42829,42829,0],[42830,42830,1],[42831,42831,0],[42832,42832,1],[42833,42833,0],[42834,42834,1],[42835,42835,0],[42836,42836,1],[42837,42837,0],[42838,42838,1],[42839,42839,0],[42840,42840,1],[42841,42841,0],[42842,42842,1],[42843,42843,0],[42844,42844,1],[42845,42845,0],[42846,42846,1],[42847,42847,0],[42848,42848,1],[42849,42849,0],[42850,42850,1],[42851,42851,0],[42852,42852,1],[42853,42853,0],[42854,42854,1],[42855,42855,0],[42856,42856,1],[42857,42857,0],[42858,42858,1],[42859,42859,0],[42860,42860,1],[42861,42861,0],[42862,42862,1],[42863,42863,0],[42864,42864,1],[42865,42872,0],[42873,42873,1],[42874,42874,0],[42875,42875,1],[42876,42876,0],[42877,42878,1],[42879,42879,0],[42880,42880,1],[42881,42881,0],[42882,42882,1],[42883,42883,0],[42884,42884,1],[42885,42885,0],[42886,42886,1],[42887,42888,0],[42891,42891,1],[42892,42892,0],[42893,42893,1],[42894,42895,0],[42896,42896,1],[42897,42897,0],[42898,42898,1],[42899,42901,0],[42902,42902,1],[42903,42903,0],[42904,42904,1],[42905,42905,0],[42906,42906,1],[42907,42907,0],[42908,42908,1],[42909,42909,0],[42910,42910,1],[42911,42911,0],[42912,42912,1],[42913,42913,0],[42914,42914,1],[42915,42915,0],[42916,42916,1],[42917,42917,0],[42918,42918,1],[42919,42919,0],[42920,42920,1],[42921,42921,0],[42922,42926,1],[42927,42927,0],[42928,42932,1],[42933,42933,0],[42934,42934,1],[42935,42935,0],[42936,42936,1],[42937,42937,0],[42938,42938,1],[42939,42939,0],[42940,42940,1],[42941,42941,0],[42942,42942,1],[42943,42943,0],[42944,42944,1],[42945,42945,0],[42946,42946,1],[42947,42947,0],[42948,42951,1],[42952,42952,0],[42953,42953,1],[42954,42954,0],[42960,42960,1],[42961,42961,0],[42963,42963,0],[42965,42965,0],[42966,42966,1],[42967,42967,0],[42968,42968,1],[42969,42969,0],[42994,42997,1],[42998,42999,0],[43e3,43001,1],[43002,43047,0],[43052,43052,0],[43072,43123,0],[43136,43205,0],[43216,43225,0],[43232,43255,0],[43259,43259,0],[43261,43309,0],[43312,43347,0],[43392,43456,0],[43471,43481,0],[43488,43518,0],[43520,43574,0],[43584,43597,0],[43600,43609,0],[43616,43638,0],[43642,43714,0],[43739,43741,0],[43744,43759,0],[43762,43766,0],[43777,43782,0],[43785,43790,0],[43793,43798,0],[43808,43814,0],[43816,43822,0],[43824,43866,0],[43868,43871,1],[43872,43880,0],[43881,43881,1],[43888,43967,1],[43968,44010,0],[44012,44013,0],[44016,44025,0],[44032,55203,0],[63744,63751,1],[63753,64013,1],[64014,64015,0],[64016,64016,1],[64017,64017,0],[64018,64018,1],[64019,64020,0],[64021,64030,1],[64031,64031,0],[64032,64032,1],[64033,64033,0],[64034,64034,1],[64035,64036,0],[64037,64038,1],[64039,64041,0],[64042,64093,1],[64095,64109,1],[64112,64217,1],[64256,64261,1],[64275,64279,1],[64285,64285,1],[64286,64286,0],[64287,64296,1],[64298,64310,1],[64312,64316,1],[64318,64318,1],[64320,64321,1],[64323,64324,1],[64326,64336,1],[64338,64338,1],[64342,64342,1],[64346,64346,1],[64350,64350,1],[64354,64354,1],[64358,64358,1],[64362,64362,1],[64366,64366,1],[64370,64370,1],[64374,64374,1],[64378,64378,1],[64382,64382,1],[64386,64386,1],[64388,64388,1],[64390,64390,1],[64392,64392,1],[64394,64394,1],[64396,64396,1],[64398,64398,1],[64402,64402,1],[64406,64406,1],[64410,64410,1],[64414,64414,1],[64416,64416,1],[64420,64420,1],[64422,64422,1],[64426,64426,1],[64430,64430,1],[64432,64432,1],[64467,64467,1],[64471,64471,1],[64473,64473,1],[64475,64475,1],[64477,64478,1],[64480,64480,1],[64482,64482,1],[64484,64484,1],[64488,64488,1],[64490,64490,1],[64492,64492,1],[64494,64494,1],[64496,64496,1],[64498,64498,1],[64500,64500,1],[64502,64502,1],[64505,64505,1],[64508,64508,1],[64512,64605,1],[64612,64828,1],[64848,64849,1],[64851,64856,1],[64858,64863,1],[64865,64866,1],[64868,64868,1],[64870,64871,1],[64873,64874,1],[64876,64876,1],[64878,64879,1],[64881,64881,1],[64883,64886,1],[64888,64892,1],[64894,64899,1],[64901,64901,1],[64903,64903,1],[64905,64911,1],[64914,64919,1],[64921,64924,1],[64926,64967,1],[65008,65017,1],[65020,65020,1],[65024,65024,3],[65041,65041,1],[65047,65048,1],[65056,65071,0],[65073,65074,1],[65081,65092,1],[65105,65105,1],[65112,65112,1],[65117,65118,1],[65123,65123,1],[65137,65137,1],[65139,65139,0],[65143,65143,1],[65145,65145,1],[65147,65147,1],[65149,65149,1],[65151,65153,1],[65155,65155,1],[65157,65157,1],[65159,65159,1],[65161,65161,1],[65165,65165,1],[65167,65167,1],[65171,65171,1],[65173,65173,1],[65177,65177,1],[65181,65181,1],[65185,65185,1],[65189,65189,1],[65193,65193,1],[65195,65195,1],[65197,65197,1],[65199,65199,1],[65201,65201,1],[65205,65205,1],[65209,65209,1],[65213,65213,1],[65217,65217,1],[65221,65221,1],[65225,65225,1],[65229,65229,1],[65233,65233,1],[65237,65237,1],[65241,65241,1],[65245,65245,1],[65249,65249,1],[65253,65253,1],[65257,65257,1],[65261,65261,1],[65263,65263,1],[65265,65265,1],[65269,65269,1],[65271,65271,1],[65273,65273,1],[65275,65275,1],[65279,65279,3],[65293,65294,1],[65296,65305,1],[65313,65338,1],[65345,65370,1],[65375,65439,1],[65441,65470,1],[65474,65479,1],[65482,65487,1],[65490,65495,1],[65498,65500,1],[65504,65506,1],[65508,65510,1],[65512,65518,1],[65536,65547,0],[65549,65574,0],[65576,65594,0],[65596,65597,0],[65599,65613,0],[65616,65629,0],[65664,65786,0],[66045,66045,0],[66176,66204,0],[66208,66256,0],[66272,66272,0],[66304,66335,0],[66349,66368,0],[66370,66377,0],[66384,66426,0],[66432,66461,0],[66464,66499,0],[66504,66511,0],[66560,66599,1],[66600,66717,0],[66720,66729,0],[66736,66771,1],[66776,66811,0],[66816,66855,0],[66864,66915,0],[66928,66938,1],[66940,66954,1],[66956,66962,1],[66964,66965,1],[66967,66977,0],[66979,66993,0],[66995,67001,0],[67003,67004,0],[67072,67382,0],[67392,67413,0],[67424,67431,0],[67456,67456,0],[67457,67461,1],[67463,67504,1],[67506,67514,1],[67584,67589,0],[67592,67592,0],[67594,67637,0],[67639,67640,0],[67644,67644,0],[67647,67669,0],[67680,67702,0],[67712,67742,0],[67808,67826,0],[67828,67829,0],[67840,67861,0],[67872,67897,0],[67968,68023,0],[68030,68031,0],[68096,68099,0],[68101,68102,0],[68108,68115,0],[68117,68119,0],[68121,68149,0],[68152,68154,0],[68159,68159,0],[68192,68220,0],[68224,68252,0],[68288,68295,0],[68297,68326,0],[68352,68405,0],[68416,68437,0],[68448,68466,0],[68480,68497,0],[68608,68680,0],[68736,68786,1],[68800,68850,0],[68864,68903,0],[68912,68921,0],[69248,69289,0],[69291,69292,0],[69296,69297,0],[69373,69404,0],[69415,69415,0],[69424,69456,0],[69488,69509,0],[69552,69572,0],[69600,69622,0],[69632,69702,0],[69734,69749,0],[69759,69818,0],[69826,69826,0],[69840,69864,0],[69872,69881,0],[69888,69940,0],[69942,69951,0],[69956,69959,0],[69968,70003,0],[70006,70006,0],[70016,70084,0],[70089,70092,0],[70094,70106,0],[70108,70108,0],[70144,70161,0],[70163,70199,0],[70206,70209,0],[70272,70278,0],[70280,70280,0],[70282,70285,0],[70287,70301,0],[70303,70312,0],[70320,70378,0],[70384,70393,0],[70400,70403,0],[70405,70412,0],[70415,70416,0],[70419,70440,0],[70442,70448,0],[70450,70451,0],[70453,70457,0],[70459,70468,0],[70471,70472,0],[70475,70477,0],[70480,70480,0],[70487,70487,0],[70493,70499,0],[70502,70508,0],[70512,70516,0],[70656,70730,0],[70736,70745,0],[70750,70753,0],[70784,70853,0],[70855,70855,0],[70864,70873,0],[71040,71093,0],[71096,71104,0],[71128,71133,0],[71168,71232,0],[71236,71236,0],[71248,71257,0],[71296,71352,0],[71360,71369,0],[71424,71450,0],[71453,71467,0],[71472,71481,0],[71488,71494,0],[71680,71738,0],[71840,71871,1],[71872,71913,0],[71935,71942,0],[71945,71945,0],[71948,71955,0],[71957,71958,0],[71960,71989,0],[71991,71992,0],[71995,72003,0],[72016,72025,0],[72096,72103,0],[72106,72151,0],[72154,72161,0],[72163,72164,0],[72192,72254,0],[72263,72263,0],[72272,72345,0],[72349,72349,0],[72368,72440,0],[72704,72712,0],[72714,72758,0],[72760,72768,0],[72784,72793,0],[72818,72847,0],[72850,72871,0],[72873,72886,0],[72960,72966,0],[72968,72969,0],[72971,73014,0],[73018,73018,0],[73020,73021,0],[73023,73031,0],[73040,73049,0],[73056,73061,0],[73063,73064,0],[73066,73102,0],[73104,73105,0],[73107,73112,0],[73120,73129,0],[73440,73462,0],[73472,73488,0],[73490,73530,0],[73534,73538,0],[73552,73561,0],[73648,73648,0],[73728,74649,0],[74880,75075,0],[77712,77808,0],[77824,78895,0],[78912,78933,0],[82944,83526,0],[92160,92728,0],[92736,92766,0],[92768,92777,0],[92784,92862,0],[92864,92873,0],[92880,92909,0],[92912,92916,0],[92928,92982,0],[92992,92995,0],[93008,93017,0],[93027,93047,0],[93053,93071,0],[93760,93791,1],[93792,93823,0],[93952,94026,0],[94031,94087,0],[94095,94111,0],[94176,94177,0],[94179,94180,0],[94192,94193,0],[94208,100343,0],[100352,101589,0],[101632,101640,0],[110576,110579,0],[110581,110587,0],[110589,110590,0],[110592,110882,0],[110898,110898,0],[110928,110930,0],[110933,110933,0],[110948,110951,0],[110960,111355,0],[113664,113770,0],[113776,113788,0],[113792,113800,0],[113808,113817,0],[113821,113822,0],[113824,113824,3],[118528,118573,0],[118576,118598,0],[119134,119140,1],[119227,119232,1],[119808,119892,1],[119894,119964,1],[119966,119967,1],[119970,119970,1],[119973,119974,1],[119977,119980,1],[119982,119993,1],[119995,119995,1],[119997,120003,1],[120005,120069,1],[120071,120074,1],[120077,120084,1],[120086,120092,1],[120094,120121,1],[120123,120126,1],[120128,120132,1],[120134,120134,1],[120138,120144,1],[120146,120485,1],[120488,120531,1],[120533,120589,1],[120591,120647,1],[120649,120705,1],[120707,120763,1],[120765,120778,1],[120782,120831,1],[121344,121398,0],[121403,121452,0],[121461,121461,0],[121476,121476,0],[121499,121503,0],[121505,121519,0],[122624,122654,0],[122661,122666,0],[122880,122886,0],[122888,122904,0],[122907,122913,0],[122915,122916,0],[122918,122922,0],[122928,122989,1],[123023,123023,0],[123136,123180,0],[123184,123197,0],[123200,123209,0],[123214,123214,0],[123536,123566,0],[123584,123641,0],[124112,124153,0],[124896,124902,0],[124904,124907,0],[124909,124910,0],[124912,124926,0],[124928,125124,0],[125136,125142,0],[125184,125217,1],[125218,125259,0],[125264,125273,0],[126464,126467,1],[126469,126495,1],[126497,126498,1],[126500,126500,1],[126503,126503,1],[126505,126514,1],[126516,126519,1],[126521,126521,1],[126523,126523,1],[126530,126530,1],[126535,126535,1],[126537,126537,1],[126539,126539,1],[126541,126543,1],[126545,126546,1],[126548,126548,1],[126551,126551,1],[126553,126553,1],[126555,126555,1],[126557,126557,1],[126559,126559,1],[126561,126562,1],[126564,126564,1],[126567,126570,1],[126572,126578,1],[126580,126583,1],[126585,126588,1],[126590,126590,1],[126592,126601,1],[126603,126619,1],[126625,126627,1],[126629,126633,1],[126635,126651,1],[127274,127278,1],[127280,127311,1],[127338,127340,1],[127376,127376,1],[127488,127490,1],[127504,127547,1],[127552,127560,1],[127568,127569,1],[130032,130041,1],[131072,173791,0],[173824,177977,0],[177984,178205,0],[178208,183969,0],[183984,191456,0],[191472,192093,0],[194560,194609,1],[194612,194629,1],[194631,194663,1],[194665,194666,1],[194668,194675,1],[194677,194705,1],[194707,194708,1],[194710,194846,1],[194848,194860,1],[194862,194886,1],[194888,194909,1],[194912,195006,1],[195008,195070,1],[195072,195101,1],[196608,201546,0],[201552,205743,0],[917760,917760,3]],mappings:{65:[97],66:[98],67:[99],68:[100],69:[101],70:[102],71:[103],72:[104],73:[105],74:[106],75:[107],76:[108],77:[109],78:[110],79:[111],80:[112],81:[113],82:[114],83:[115],84:[116],85:[117],86:[118],87:[119],88:[120],89:[121],90:[122],160:[32],168:[32,776],170:[97],175:[32,772],178:[50],179:[51],180:[32,769],181:[956],184:[32,807],185:[49],186:[111],188:[49,8260,52],189:[49,8260,50],190:[51,8260,52],192:[224],193:[225],194:[226],195:[227],196:[228],197:[229],198:[230],199:[231],200:[232],201:[233],202:[234],203:[235],204:[236],205:[237],206:[238],207:[239],208:[240],209:[241],210:[242],211:[243],212:[244],213:[245],214:[246],216:[248],217:[249],218:[250],219:[251],220:[252],221:[253],222:[254],223:[115,115],256:[257],258:[259],260:[261],262:[263],264:[265],266:[267],268:[269],270:[271],272:[273],274:[275],276:[277],278:[279],280:[281],282:[283],284:[285],286:[287],288:[289],290:[291],292:[293],294:[295],296:[297],298:[299],300:[301],302:[303],304:[105,775],306:[105,106],308:[309],310:[311],313:[314],315:[316],317:[318],319:[108,183],321:[322],323:[324],325:[326],327:[328],329:[700,110],330:[331],332:[333],334:[335],336:[337],338:[339],340:[341],342:[343],344:[345],346:[347],348:[349],350:[351],352:[353],354:[355],356:[357],358:[359],360:[361],362:[363],364:[365],366:[367],368:[369],370:[371],372:[373],374:[375],376:[255],377:[378],379:[380],381:[382],383:[115],385:[595],386:[387],388:[389],390:[596],391:[392],393:[598],394:[599],395:[396],398:[477],399:[601],400:[603],401:[402],403:[608],404:[611],406:[617],407:[616],408:[409],412:[623],413:[626],415:[629],416:[417],418:[419],420:[421],422:[640],423:[424],425:[643],428:[429],430:[648],431:[432],433:[650],434:[651],435:[436],437:[438],439:[658],440:[441],444:[445],452:[100,382],455:[108,106],458:[110,106],461:[462],463:[464],465:[466],467:[468],469:[470],471:[472],473:[474],475:[476],478:[479],480:[481],482:[483],484:[485],486:[487],488:[489],490:[491],492:[493],494:[495],497:[100,122],500:[501],502:[405],503:[447],504:[505],506:[507],508:[509],510:[511],512:[513],514:[515],516:[517],518:[519],520:[521],522:[523],524:[525],526:[527],528:[529],530:[531],532:[533],534:[535],536:[537],538:[539],540:[541],542:[543],544:[414],546:[547],548:[549],550:[551],552:[553],554:[555],556:[557],558:[559],560:[561],562:[563],570:[11365],571:[572],573:[410],574:[11366],577:[578],579:[384],580:[649],581:[652],582:[583],584:[585],586:[587],588:[589],590:[591],688:[104],689:[614],690:[106],691:[114],692:[633],693:[635],694:[641],695:[119],696:[121],728:[32,774],729:[32,775],730:[32,778],731:[32,808],732:[32,771],733:[32,779],736:[611],737:[108],738:[115],739:[120],740:[661],832:[768],833:[769],835:[787],836:[776,769],837:[953],880:[881],882:[883],884:[697],886:[887],890:[32,953],894:[59],895:[1011],900:[32,769],901:[32,776,769],902:[940],903:[183],904:[941],905:[942],906:[943],908:[972],910:[973],911:[974],913:[945],914:[946],915:[947],916:[948],917:[949],918:[950],919:[951],920:[952],921:[953],922:[954],923:[955],924:[956],925:[957],926:[958],927:[959],928:[960],929:[961],931:[963],932:[964],933:[965],934:[966],935:[967],936:[968],937:[969],938:[970],939:[971],962:[963],975:[983],976:[946],977:[952],978:[965],979:[973],980:[971],981:[966],982:[960],984:[985],986:[987],988:[989],990:[991],992:[993],994:[995],996:[997],998:[999],1e3:[1001],1002:[1003],1004:[1005],1006:[1007],1008:[954],1009:[961],1010:[963],1012:[952],1013:[949],1015:[1016],1017:[963],1018:[1019],1021:[891],1022:[892],1023:[893],1024:[1104],1025:[1105],1026:[1106],1027:[1107],1028:[1108],1029:[1109],1030:[1110],1031:[1111],1032:[1112],1033:[1113],1034:[1114],1035:[1115],1036:[1116],1037:[1117],1038:[1118],1039:[1119],1040:[1072],1041:[1073],1042:[1074],1043:[1075],1044:[1076],1045:[1077],1046:[1078],1047:[1079],1048:[1080],1049:[1081],1050:[1082],1051:[1083],1052:[1084],1053:[1085],1054:[1086],1055:[1087],1056:[1088],1057:[1089],1058:[1090],1059:[1091],1060:[1092],1061:[1093],1062:[1094],1063:[1095],1064:[1096],1065:[1097],1066:[1098],1067:[1099],1068:[1100],1069:[1101],1070:[1102],1071:[1103],1120:[1121],1122:[1123],1124:[1125],1126:[1127],1128:[1129],1130:[1131],1132:[1133],1134:[1135],1136:[1137],1138:[1139],1140:[1141],1142:[1143],1144:[1145],1146:[1147],1148:[1149],1150:[1151],1152:[1153],1162:[1163],1164:[1165],1166:[1167],1168:[1169],1170:[1171],1172:[1173],1174:[1175],1176:[1177],1178:[1179],1180:[1181],1182:[1183],1184:[1185],1186:[1187],1188:[1189],1190:[1191],1192:[1193],1194:[1195],1196:[1197],1198:[1199],1200:[1201],1202:[1203],1204:[1205],1206:[1207],1208:[1209],1210:[1211],1212:[1213],1214:[1215],1217:[1218],1219:[1220],1221:[1222],1223:[1224],1225:[1226],1227:[1228],1229:[1230],1232:[1233],1234:[1235],1236:[1237],1238:[1239],1240:[1241],1242:[1243],1244:[1245],1246:[1247],1248:[1249],1250:[1251],1252:[1253],1254:[1255],1256:[1257],1258:[1259],1260:[1261],1262:[1263],1264:[1265],1266:[1267],1268:[1269],1270:[1271],1272:[1273],1274:[1275],1276:[1277],1278:[1279],1280:[1281],1282:[1283],1284:[1285],1286:[1287],1288:[1289],1290:[1291],1292:[1293],1294:[1295],1296:[1297],1298:[1299],1300:[1301],1302:[1303],1304:[1305],1306:[1307],1308:[1309],1310:[1311],1312:[1313],1314:[1315],1316:[1317],1318:[1319],1320:[1321],1322:[1323],1324:[1325],1326:[1327],1329:[1377],1330:[1378],1331:[1379],1332:[1380],1333:[1381],1334:[1382],1335:[1383],1336:[1384],1337:[1385],1338:[1386],1339:[1387],1340:[1388],1341:[1389],1342:[1390],1343:[1391],1344:[1392],1345:[1393],1346:[1394],1347:[1395],1348:[1396],1349:[1397],1350:[1398],1351:[1399],1352:[1400],1353:[1401],1354:[1402],1355:[1403],1356:[1404],1357:[1405],1358:[1406],1359:[1407],1360:[1408],1361:[1409],1362:[1410],1363:[1411],1364:[1412],1365:[1413],1366:[1414],1415:[1381,1410],1653:[1575,1652],1654:[1608,1652],1655:[1735,1652],1656:[1610,1652],2392:[2325,2364],2393:[2326,2364],2394:[2327,2364],2395:[2332,2364],2396:[2337,2364],2397:[2338,2364],2398:[2347,2364],2399:[2351,2364],2524:[2465,2492],2525:[2466,2492],2527:[2479,2492],2611:[2610,2620],2614:[2616,2620],2649:[2582,2620],2650:[2583,2620],2651:[2588,2620],2654:[2603,2620],2908:[2849,2876],2909:[2850,2876],3635:[3661,3634],3763:[3789,3762],3804:[3755,3737],3805:[3755,3745],3852:[3851],3907:[3906,4023],3917:[3916,4023],3922:[3921,4023],3927:[3926,4023],3932:[3931,4023],3945:[3904,4021],3955:[3953,3954],3957:[3953,3956],3958:[4018,3968],3959:[4018,3953,3968],3960:[4019,3968],3961:[4019,3953,3968],3969:[3953,3968],3987:[3986,4023],3997:[3996,4023],4002:[4001,4023],4007:[4006,4023],4012:[4011,4023],4025:[3984,4021],4295:[11559],4301:[11565],4348:[4316],5112:[5104],5113:[5105],5114:[5106],5115:[5107],5116:[5108],5117:[5109],7296:[1074],7297:[1076],7298:[1086],7299:[1089],7300:[1090],7302:[1098],7303:[1123],7304:[42571],7312:[4304],7313:[4305],7314:[4306],7315:[4307],7316:[4308],7317:[4309],7318:[4310],7319:[4311],7320:[4312],7321:[4313],7322:[4314],7323:[4315],7324:[4316],7325:[4317],7326:[4318],7327:[4319],7328:[4320],7329:[4321],7330:[4322],7331:[4323],7332:[4324],7333:[4325],7334:[4326],7335:[4327],7336:[4328],7337:[4329],7338:[4330],7339:[4331],7340:[4332],7341:[4333],7342:[4334],7343:[4335],7344:[4336],7345:[4337],7346:[4338],7347:[4339],7348:[4340],7349:[4341],7350:[4342],7351:[4343],7352:[4344],7353:[4345],7354:[4346],7357:[4349],7358:[4350],7359:[4351],7468:[97],7469:[230],7470:[98],7472:[100],7473:[101],7474:[477],7475:[103],7476:[104],7477:[105],7478:[106],7479:[107],7480:[108],7481:[109],7482:[110],7484:[111],7485:[547],7486:[112],7487:[114],7488:[116],7489:[117],7490:[119],7491:[97],7492:[592],7493:[593],7494:[7426],7495:[98],7496:[100],7497:[101],7498:[601],7499:[603],7500:[604],7501:[103],7503:[107],7504:[109],7505:[331],7506:[111],7507:[596],7508:[7446],7509:[7447],7510:[112],7511:[116],7512:[117],7513:[7453],7514:[623],7515:[118],7516:[7461],7517:[946],7518:[947],7519:[948],7520:[966],7521:[967],7522:[105],7523:[114],7524:[117],7525:[118],7526:[946],7527:[947],7528:[961],7529:[966],7530:[967],7544:[1085],7579:[594],7580:[99],7581:[597],7582:[240],7583:[604],7584:[102],7585:[607],7586:[609],7587:[613],7588:[616],7589:[617],7590:[618],7591:[7547],7592:[669],7593:[621],7594:[7557],7595:[671],7596:[625],7597:[624],7598:[626],7599:[627],7600:[628],7601:[629],7602:[632],7603:[642],7604:[643],7605:[427],7606:[649],7607:[650],7608:[7452],7609:[651],7610:[652],7611:[122],7612:[656],7613:[657],7614:[658],7615:[952],7680:[7681],7682:[7683],7684:[7685],7686:[7687],7688:[7689],7690:[7691],7692:[7693],7694:[7695],7696:[7697],7698:[7699],7700:[7701],7702:[7703],7704:[7705],7706:[7707],7708:[7709],7710:[7711],7712:[7713],7714:[7715],7716:[7717],7718:[7719],7720:[7721],7722:[7723],7724:[7725],7726:[7727],7728:[7729],7730:[7731],7732:[7733],7734:[7735],7736:[7737],7738:[7739],7740:[7741],7742:[7743],7744:[7745],7746:[7747],7748:[7749],7750:[7751],7752:[7753],7754:[7755],7756:[7757],7758:[7759],7760:[7761],7762:[7763],7764:[7765],7766:[7767],7768:[7769],7770:[7771],7772:[7773],7774:[7775],7776:[7777],7778:[7779],7780:[7781],7782:[7783],7784:[7785],7786:[7787],7788:[7789],7790:[7791],7792:[7793],7794:[7795],7796:[7797],7798:[7799],7800:[7801],7802:[7803],7804:[7805],7806:[7807],7808:[7809],7810:[7811],7812:[7813],7814:[7815],7816:[7817],7818:[7819],7820:[7821],7822:[7823],7824:[7825],7826:[7827],7828:[7829],7834:[97,702],7835:[7777],7838:[223],7840:[7841],7842:[7843],7844:[7845],7846:[7847],7848:[7849],7850:[7851],7852:[7853],7854:[7855],7856:[7857],7858:[7859],7860:[7861],7862:[7863],7864:[7865],7866:[7867],7868:[7869],7870:[7871],7872:[7873],7874:[7875],7876:[7877],7878:[7879],7880:[7881],7882:[7883],7884:[7885],7886:[7887],7888:[7889],7890:[7891],7892:[7893],7894:[7895],7896:[7897],7898:[7899],7900:[7901],7902:[7903],7904:[7905],7906:[7907],7908:[7909],7910:[7911],7912:[7913],7914:[7915],7916:[7917],7918:[7919],7920:[7921],7922:[7923],7924:[7925],7926:[7927],7928:[7929],7930:[7931],7932:[7933],7934:[7935],7944:[7936],7945:[7937],7946:[7938],7947:[7939],7948:[7940],7949:[7941],7950:[7942],7951:[7943],7960:[7952],7961:[7953],7962:[7954],7963:[7955],7964:[7956],7965:[7957],7976:[7968],7977:[7969],7978:[7970],7979:[7971],7980:[7972],7981:[7973],7982:[7974],7983:[7975],7992:[7984],7993:[7985],7994:[7986],7995:[7987],7996:[7988],7997:[7989],7998:[7990],7999:[7991],8008:[8e3],8009:[8001],8010:[8002],8011:[8003],8012:[8004],8013:[8005],8025:[8017],8027:[8019],8029:[8021],8031:[8023],8040:[8032],8041:[8033],8042:[8034],8043:[8035],8044:[8036],8045:[8037],8046:[8038],8047:[8039],8049:[940],8051:[941],8053:[942],8055:[943],8057:[972],8059:[973],8061:[974],8064:[7936,953],8065:[7937,953],8066:[7938,953],8067:[7939,953],8068:[7940,953],8069:[7941,953],8070:[7942,953],8071:[7943,953],8072:[7936,953],8073:[7937,953],8074:[7938,953],8075:[7939,953],8076:[7940,953],8077:[7941,953],8078:[7942,953],8079:[7943,953],8080:[7968,953],8081:[7969,953],8082:[7970,953],8083:[7971,953],8084:[7972,953],8085:[7973,953],8086:[7974,953],8087:[7975,953],8088:[7968,953],8089:[7969,953],8090:[7970,953],8091:[7971,953],8092:[7972,953],8093:[7973,953],8094:[7974,953],8095:[7975,953],8096:[8032,953],8097:[8033,953],8098:[8034,953],8099:[8035,953],8100:[8036,953],8101:[8037,953],8102:[8038,953],8103:[8039,953],8104:[8032,953],8105:[8033,953],8106:[8034,953],8107:[8035,953],8108:[8036,953],8109:[8037,953],8110:[8038,953],8111:[8039,953],8114:[8048,953],8115:[945,953],8116:[940,953],8119:[8118,953],8120:[8112],8121:[8113],8122:[8048],8123:[940],8124:[945,953],8125:[32,787],8126:[953],8127:[32,787],8128:[32,834],8129:[32,776,834],8130:[8052,953],8131:[951,953],8132:[942,953],8135:[8134,953],8136:[8050],8137:[941],8138:[8052],8139:[942],8140:[951,953],8141:[32,787,768],8142:[32,787,769],8143:[32,787,834],8147:[912],8152:[8144],8153:[8145],8154:[8054],8155:[943],8157:[32,788,768],8158:[32,788,769],8159:[32,788,834],8163:[944],8168:[8160],8169:[8161],8170:[8058],8171:[973],8172:[8165],8173:[32,776,768],8174:[32,776,769],8175:[96],8178:[8060,953],8179:[969,953],8180:[974,953],8183:[8182,953],8184:[8056],8185:[972],8186:[8060],8187:[974],8188:[969,953],8189:[32,769],8190:[32,788],8192:[32],8204:[],8209:[8208],8215:[32,819],8239:[32],8243:[8242,8242],8244:[8242,8242,8242],8246:[8245,8245],8247:[8245,8245,8245],8252:[33,33],8254:[32,773],8263:[63,63],8264:[63,33],8265:[33,63],8279:[8242,8242,8242,8242],8287:[32],8304:[48],8305:[105],8308:[52],8309:[53],8310:[54],8311:[55],8312:[56],8313:[57],8314:[43],8315:[8722],8316:[61],8317:[40],8318:[41],8319:[110],8320:[48],8321:[49],8322:[50],8323:[51],8324:[52],8325:[53],8326:[54],8327:[55],8328:[56],8329:[57],8330:[43],8331:[8722],8332:[61],8333:[40],8334:[41],8336:[97],8337:[101],8338:[111],8339:[120],8340:[601],8341:[104],8342:[107],8343:[108],8344:[109],8345:[110],8346:[112],8347:[115],8348:[116],8360:[114,115],8448:[97,47,99],8449:[97,47,115],8450:[99],8451:[176,99],8453:[99,47,111],8454:[99,47,117],8455:[603],8457:[176,102],8458:[103],8459:[104],8463:[295],8464:[105],8466:[108],8469:[110],8470:[110,111],8473:[112],8474:[113],8475:[114],8480:[115,109],8481:[116,101,108],8482:[116,109],8484:[122],8486:[969],8488:[122],8490:[107],8491:[229],8492:[98],8493:[99],8495:[101],8497:[102],8499:[109],8500:[111],8501:[1488],8502:[1489],8503:[1490],8504:[1491],8505:[105],8507:[102,97,120],8508:[960],8509:[947],8511:[960],8512:[8721],8517:[100],8519:[101],8520:[105],8521:[106],8528:[49,8260,55],8529:[49,8260,57],8530:[49,8260,49,48],8531:[49,8260,51],8532:[50,8260,51],8533:[49,8260,53],8534:[50,8260,53],8535:[51,8260,53],8536:[52,8260,53],8537:[49,8260,54],8538:[53,8260,54],8539:[49,8260,56],8540:[51,8260,56],8541:[53,8260,56],8542:[55,8260,56],8543:[49,8260],8544:[105],8545:[105,105],8546:[105,105,105],8547:[105,118],8548:[118],8549:[118,105],8550:[118,105,105],8551:[118,105,105,105],8552:[105,120],8553:[120],8554:[120,105],8555:[120,105,105],8556:[108],8557:[99],8558:[100],8559:[109],8560:[105],8561:[105,105],8562:[105,105,105],8563:[105,118],8564:[118],8565:[118,105],8566:[118,105,105],8567:[118,105,105,105],8568:[105,120],8569:[120],8570:[120,105],8571:[120,105,105],8572:[108],8573:[99],8574:[100],8575:[109],8585:[48,8260,51],8748:[8747,8747],8749:[8747,8747,8747],8751:[8750,8750],8752:[8750,8750,8750],9001:[12296],9002:[12297],9312:[49],9313:[50],9314:[51],9315:[52],9316:[53],9317:[54],9318:[55],9319:[56],9320:[57],9321:[49,48],9322:[49,49],9323:[49,50],9324:[49,51],9325:[49,52],9326:[49,53],9327:[49,54],9328:[49,55],9329:[49,56],9330:[49,57],9331:[50,48],9332:[40,49,41],9333:[40,50,41],9334:[40,51,41],9335:[40,52,41],9336:[40,53,41],9337:[40,54,41],9338:[40,55,41],9339:[40,56,41],9340:[40,57,41],9341:[40,49,48,41],9342:[40,49,49,41],9343:[40,49,50,41],9344:[40,49,51,41],9345:[40,49,52,41],9346:[40,49,53,41],9347:[40,49,54,41],9348:[40,49,55,41],9349:[40,49,56,41],9350:[40,49,57,41],9351:[40,50,48,41],9372:[40,97,41],9373:[40,98,41],9374:[40,99,41],9375:[40,100,41],9376:[40,101,41],9377:[40,102,41],9378:[40,103,41],9379:[40,104,41],9380:[40,105,41],9381:[40,106,41],9382:[40,107,41],9383:[40,108,41],9384:[40,109,41],9385:[40,110,41],9386:[40,111,41],9387:[40,112,41],9388:[40,113,41],9389:[40,114,41],9390:[40,115,41],9391:[40,116,41],9392:[40,117,41],9393:[40,118,41],9394:[40,119,41],9395:[40,120,41],9396:[40,121,41],9397:[40,122,41],9398:[97],9399:[98],9400:[99],9401:[100],9402:[101],9403:[102],9404:[103],9405:[104],9406:[105],9407:[106],9408:[107],9409:[108],9410:[109],9411:[110],9412:[111],9413:[112],9414:[113],9415:[114],9416:[115],9417:[116],9418:[117],9419:[118],9420:[119],9421:[120],9422:[121],9423:[122],9424:[97],9425:[98],9426:[99],9427:[100],9428:[101],9429:[102],9430:[103],9431:[104],9432:[105],9433:[106],9434:[107],9435:[108],9436:[109],9437:[110],9438:[111],9439:[112],9440:[113],9441:[114],9442:[115],9443:[116],9444:[117],9445:[118],9446:[119],9447:[120],9448:[121],9449:[122],9450:[48],10764:[8747,8747,8747,8747],10868:[58,58,61],10869:[61,61],10870:[61,61,61],10972:[10973,824],11264:[11312],11265:[11313],11266:[11314],11267:[11315],11268:[11316],11269:[11317],11270:[11318],11271:[11319],11272:[11320],11273:[11321],11274:[11322],11275:[11323],11276:[11324],11277:[11325],11278:[11326],11279:[11327],11280:[11328],11281:[11329],11282:[11330],11283:[11331],11284:[11332],11285:[11333],11286:[11334],11287:[11335],11288:[11336],11289:[11337],11290:[11338],11291:[11339],11292:[11340],11293:[11341],11294:[11342],11295:[11343],11296:[11344],11297:[11345],11298:[11346],11299:[11347],11300:[11348],11301:[11349],11302:[11350],11303:[11351],11304:[11352],11305:[11353],11306:[11354],11307:[11355],11308:[11356],11309:[11357],11310:[11358],11311:[11359],11360:[11361],11362:[619],11363:[7549],11364:[637],11367:[11368],11369:[11370],11371:[11372],11373:[593],11374:[625],11375:[592],11376:[594],11378:[11379],11381:[11382],11388:[106],11389:[118],11390:[575],11391:[576],11392:[11393],11394:[11395],11396:[11397],11398:[11399],11400:[11401],11402:[11403],11404:[11405],11406:[11407],11408:[11409],11410:[11411],11412:[11413],11414:[11415],11416:[11417],11418:[11419],11420:[11421],11422:[11423],11424:[11425],11426:[11427],11428:[11429],11430:[11431],11432:[11433],11434:[11435],11436:[11437],11438:[11439],11440:[11441],11442:[11443],11444:[11445],11446:[11447],11448:[11449],11450:[11451],11452:[11453],11454:[11455],11456:[11457],11458:[11459],11460:[11461],11462:[11463],11464:[11465],11466:[11467],11468:[11469],11470:[11471],11472:[11473],11474:[11475],11476:[11477],11478:[11479],11480:[11481],11482:[11483],11484:[11485],11486:[11487],11488:[11489],11490:[11491],11499:[11500],11501:[11502],11506:[11507],11631:[11617],11935:[27597],12019:[40863],12032:[19968],12033:[20008],12034:[20022],12035:[20031],12036:[20057],12037:[20101],12038:[20108],12039:[20128],12040:[20154],12041:[20799],12042:[20837],12043:[20843],12044:[20866],12045:[20886],12046:[20907],12047:[20960],12048:[20981],12049:[20992],12050:[21147],12051:[21241],12052:[21269],12053:[21274],12054:[21304],12055:[21313],12056:[21340],12057:[21353],12058:[21378],12059:[21430],12060:[21448],12061:[21475],12062:[22231],12063:[22303],12064:[22763],12065:[22786],12066:[22794],12067:[22805],12068:[22823],12069:[22899],12070:[23376],12071:[23424],12072:[23544],12073:[23567],12074:[23586],12075:[23608],12076:[23662],12077:[23665],12078:[24027],12079:[24037],12080:[24049],12081:[24062],12082:[24178],12083:[24186],12084:[24191],12085:[24308],12086:[24318],12087:[24331],12088:[24339],12089:[24400],12090:[24417],12091:[24435],12092:[24515],12093:[25096],12094:[25142],12095:[25163],12096:[25903],12097:[25908],12098:[25991],12099:[26007],12100:[26020],12101:[26041],12102:[26080],12103:[26085],12104:[26352],12105:[26376],12106:[26408],12107:[27424],12108:[27490],12109:[27513],12110:[27571],12111:[27595],12112:[27604],12113:[27611],12114:[27663],12115:[27668],12116:[27700],12117:[28779],12118:[29226],12119:[29238],12120:[29243],12121:[29247],12122:[29255],12123:[29273],12124:[29275],12125:[29356],12126:[29572],12127:[29577],12128:[29916],12129:[29926],12130:[29976],12131:[29983],12132:[29992],12133:[3e4],12134:[30091],12135:[30098],12136:[30326],12137:[30333],12138:[30382],12139:[30399],12140:[30446],12141:[30683],12142:[30690],12143:[30707],12144:[31034],12145:[31160],12146:[31166],12147:[31348],12148:[31435],12149:[31481],12150:[31859],12151:[31992],12152:[32566],12153:[32593],12154:[32650],12155:[32701],12156:[32769],12157:[32780],12158:[32786],12159:[32819],12160:[32895],12161:[32905],12162:[33251],12163:[33258],12164:[33267],12165:[33276],12166:[33292],12167:[33307],12168:[33311],12169:[33390],12170:[33394],12171:[33400],12172:[34381],12173:[34411],12174:[34880],12175:[34892],12176:[34915],12177:[35198],12178:[35211],12179:[35282],12180:[35328],12181:[35895],12182:[35910],12183:[35925],12184:[35960],12185:[35997],12186:[36196],12187:[36208],12188:[36275],12189:[36523],12190:[36554],12191:[36763],12192:[36784],12193:[36789],12194:[37009],12195:[37193],12196:[37318],12197:[37324],12198:[37329],12199:[38263],12200:[38272],12201:[38428],12202:[38582],12203:[38585],12204:[38632],12205:[38737],12206:[38750],12207:[38754],12208:[38761],12209:[38859],12210:[38893],12211:[38899],12212:[38913],12213:[39080],12214:[39131],12215:[39135],12216:[39318],12217:[39321],12218:[39340],12219:[39592],12220:[39640],12221:[39647],12222:[39717],12223:[39727],12224:[39730],12225:[39740],12226:[39770],12227:[40165],12228:[40565],12229:[40575],12230:[40613],12231:[40635],12232:[40643],12233:[40653],12234:[40657],12235:[40697],12236:[40701],12237:[40718],12238:[40723],12239:[40736],12240:[40763],12241:[40778],12242:[40786],12243:[40845],12244:[40860],12245:[40864],12288:[32],12290:[46],12342:[12306],12344:[21313],12345:[21316],12346:[21317],12443:[32,12441],12444:[32,12442],12447:[12424,12426],12543:[12467,12488],12593:[4352],12594:[4353],12595:[4522],12596:[4354],12597:[4524],12598:[4525],12599:[4355],12600:[4356],12601:[4357],12602:[4528],12603:[4529],12604:[4530],12605:[4531],12606:[4532],12607:[4533],12608:[4378],12609:[4358],12610:[4359],12611:[4360],12612:[4385],12613:[4361],12614:[4362],12615:[4363],12616:[4364],12617:[4365],12618:[4366],12619:[4367],12620:[4368],12621:[4369],12622:[4370],12623:[4449],12624:[4450],12625:[4451],12626:[4452],12627:[4453],12628:[4454],12629:[4455],12630:[4456],12631:[4457],12632:[4458],12633:[4459],12634:[4460],12635:[4461],12636:[4462],12637:[4463],12638:[4464],12639:[4465],12640:[4466],12641:[4467],12642:[4468],12643:[4469],12645:[4372],12646:[4373],12647:[4551],12648:[4552],12649:[4556],12650:[4558],12651:[4563],12652:[4567],12653:[4569],12654:[4380],12655:[4573],12656:[4575],12657:[4381],12658:[4382],12659:[4384],12660:[4386],12661:[4387],12662:[4391],12663:[4393],12664:[4395],12665:[4396],12666:[4397],12667:[4398],12668:[4399],12669:[4402],12670:[4406],12671:[4416],12672:[4423],12673:[4428],12674:[4593],12675:[4594],12676:[4439],12677:[4440],12678:[4441],12679:[4484],12680:[4485],12681:[4488],12682:[4497],12683:[4498],12684:[4500],12685:[4510],12686:[4513],12690:[19968],12691:[20108],12692:[19977],12693:[22235],12694:[19978],12695:[20013],12696:[19979],12697:[30002],12698:[20057],12699:[19993],12700:[19969],12701:[22825],12702:[22320],12703:[20154],12800:[40,4352,41],12801:[40,4354,41],12802:[40,4355,41],12803:[40,4357,41],12804:[40,4358,41],12805:[40,4359,41],12806:[40,4361,41],12807:[40,4363,41],12808:[40,4364,41],12809:[40,4366,41],12810:[40,4367,41],12811:[40,4368,41],12812:[40,4369,41],12813:[40,4370,41],12814:[40,44032,41],12815:[40,45208,41],12816:[40,45796,41],12817:[40,46972,41],12818:[40,47560,41],12819:[40,48148,41],12820:[40,49324,41],12821:[40,50500,41],12822:[40,51088,41],12823:[40,52264,41],12824:[40,52852,41],12825:[40,53440,41],12826:[40,54028,41],12827:[40,54616,41],12828:[40,51452,41],12829:[40,50724,51204,41],12830:[40,50724,54980,41],12832:[40,19968,41],12833:[40,20108,41],12834:[40,19977,41],12835:[40,22235,41],12836:[40,20116,41],12837:[40,20845,41],12838:[40,19971,41],12839:[40,20843,41],12840:[40,20061,41],12841:[40,21313,41],12842:[40,26376,41],12843:[40,28779,41],12844:[40,27700,41],12845:[40,26408,41],12846:[40,37329,41],12847:[40,22303,41],12848:[40,26085,41],12849:[40,26666,41],12850:[40,26377,41],12851:[40,31038,41],12852:[40,21517,41],12853:[40,29305,41],12854:[40,36001,41],12855:[40,31069,41],12856:[40,21172,41],12857:[40,20195,41],12858:[40,21628,41],12859:[40,23398,41],12860:[40,30435,41],12861:[40,20225,41],12862:[40,36039,41],12863:[40,21332,41],12864:[40,31085,41],12865:[40,20241,41],12866:[40,33258,41],12867:[40,33267,41],12868:[21839],12869:[24188],12870:[25991],12871:[31631],12880:[112,116,101],12881:[50,49],12882:[50,50],12883:[50,51],12884:[50,52],12885:[50,53],12886:[50,54],12887:[50,55],12888:[50,56],12889:[50,57],12890:[51,48],12891:[51,49],12892:[51,50],12893:[51,51],12894:[51,52],12895:[51,53],12896:[4352],12897:[4354],12898:[4355],12899:[4357],12900:[4358],12901:[4359],12902:[4361],12903:[4363],12904:[4364],12905:[4366],12906:[4367],12907:[4368],12908:[4369],12909:[4370],12910:[44032],12911:[45208],12912:[45796],12913:[46972],12914:[47560],12915:[48148],12916:[49324],12917:[50500],12918:[51088],12919:[52264],12920:[52852],12921:[53440],12922:[54028],12923:[54616],12924:[52280,44256],12925:[51452,51032],12926:[50864],12928:[19968],12929:[20108],12930:[19977],12931:[22235],12932:[20116],12933:[20845],12934:[19971],12935:[20843],12936:[20061],12937:[21313],12938:[26376],12939:[28779],12940:[27700],12941:[26408],12942:[37329],12943:[22303],12944:[26085],12945:[26666],12946:[26377],12947:[31038],12948:[21517],12949:[29305],12950:[36001],12951:[31069],12952:[21172],12953:[31192],12954:[30007],12955:[22899],12956:[36969],12957:[20778],12958:[21360],12959:[27880],12960:[38917],12961:[20241],12962:[20889],12963:[27491],12964:[19978],12965:[20013],12966:[19979],12967:[24038],12968:[21491],12969:[21307],12970:[23447],12971:[23398],12972:[30435],12973:[20225],12974:[36039],12975:[21332],12976:[22812],12977:[51,54],12978:[51,55],12979:[51,56],12980:[51,57],12981:[52,48],12982:[52,49],12983:[52,50],12984:[52,51],12985:[52,52],12986:[52,53],12987:[52,54],12988:[52,55],12989:[52,56],12990:[52,57],12991:[53,48],12992:[49,26376],12993:[50,26376],12994:[51,26376],12995:[52,26376],12996:[53,26376],12997:[54,26376],12998:[55,26376],12999:[56,26376],13e3:[57,26376],13001:[49,48,26376],13002:[49,49,26376],13003:[49,50,26376],13004:[104,103],13005:[101,114,103],13006:[101,118],13007:[108,116,100],13008:[12450],13009:[12452],13010:[12454],13011:[12456],13012:[12458],13013:[12459],13014:[12461],13015:[12463],13016:[12465],13017:[12467],13018:[12469],13019:[12471],13020:[12473],13021:[12475],13022:[12477],13023:[12479],13024:[12481],13025:[12484],13026:[12486],13027:[12488],13028:[12490],13029:[12491],13030:[12492],13031:[12493],13032:[12494],13033:[12495],13034:[12498],13035:[12501],13036:[12504],13037:[12507],13038:[12510],13039:[12511],13040:[12512],13041:[12513],13042:[12514],13043:[12516],13044:[12518],13045:[12520],13046:[12521],13047:[12522],13048:[12523],13049:[12524],13050:[12525],13051:[12527],13052:[12528],13053:[12529],13054:[12530],13055:[20196,21644],13056:[12450,12497,12540,12488],13057:[12450,12523,12501,12449],13058:[12450,12531,12506,12450],13059:[12450,12540,12523],13060:[12452,12491,12531,12464],13061:[12452,12531,12481],13062:[12454,12457,12531],13063:[12456,12473,12463,12540,12489],13064:[12456,12540,12459,12540],13065:[12458,12531,12473],13066:[12458,12540,12512],13067:[12459,12452,12522],13068:[12459,12521,12483,12488],13069:[12459,12525,12522,12540],13070:[12460,12525,12531],13071:[12460,12531,12510],13072:[12462,12460],13073:[12462,12491,12540],13074:[12461,12517,12522,12540],13075:[12462,12523,12480,12540],13076:[12461,12525],13077:[12461,12525,12464,12521,12512],13078:[12461,12525,12513,12540,12488,12523],13079:[12461,12525,12527,12483,12488],13080:[12464,12521,12512],13081:[12464,12521,12512,12488,12531],13082:[12463,12523,12476,12452,12525],13083:[12463,12525,12540,12493],13084:[12465,12540,12473],13085:[12467,12523,12490],13086:[12467,12540,12509],13087:[12469,12452,12463,12523],13088:[12469,12531,12481,12540,12512],13089:[12471,12522,12531,12464],13090:[12475,12531,12481],13091:[12475,12531,12488],13092:[12480,12540,12473],13093:[12487,12471],13094:[12489,12523],13095:[12488,12531],13096:[12490,12494],13097:[12494,12483,12488],13098:[12495,12452,12484],13099:[12497,12540,12475,12531,12488],13100:[12497,12540,12484],13101:[12496,12540,12524,12523],13102:[12500,12450,12473,12488,12523],13103:[12500,12463,12523],13104:[12500,12467],13105:[12499,12523],13106:[12501,12449,12521,12483,12489],13107:[12501,12451,12540,12488],13108:[12502,12483,12471,12455,12523],13109:[12501,12521,12531],13110:[12504,12463,12479,12540,12523],13111:[12506,12477],13112:[12506,12491,12498],13113:[12504,12523,12484],13114:[12506,12531,12473],13115:[12506,12540,12472],13116:[12505,12540,12479],13117:[12509,12452,12531,12488],13118:[12508,12523,12488],13119:[12507,12531],13120:[12509,12531,12489],13121:[12507,12540,12523],13122:[12507,12540,12531],13123:[12510,12452,12463,12525],13124:[12510,12452,12523],13125:[12510,12483,12495],13126:[12510,12523,12463],13127:[12510,12531,12471,12519,12531],13128:[12511,12463,12525,12531],13129:[12511,12522],13130:[12511,12522,12496,12540,12523],13131:[12513,12460],13132:[12513,12460,12488,12531],13133:[12513,12540,12488,12523],13134:[12516,12540,12489],13135:[12516,12540,12523],13136:[12518,12450,12531],13137:[12522,12483,12488,12523],13138:[12522,12521],13139:[12523,12500,12540],13140:[12523,12540,12502,12523],13141:[12524,12512],13142:[12524,12531,12488,12466,12531],13143:[12527,12483,12488],13144:[48,28857],13145:[49,28857],13146:[50,28857],13147:[51,28857],13148:[52,28857],13149:[53,28857],13150:[54,28857],13151:[55,28857],13152:[56,28857],13153:[57,28857],13154:[49,48,28857],13155:[49,49,28857],13156:[49,50,28857],13157:[49,51,28857],13158:[49,52,28857],13159:[49,53,28857],13160:[49,54,28857],13161:[49,55,28857],13162:[49,56,28857],13163:[49,57,28857],13164:[50,48,28857],13165:[50,49,28857],13166:[50,50,28857],13167:[50,51,28857],13168:[50,52,28857],13169:[104,112,97],13170:[100,97],13171:[97,117],13172:[98,97,114],13173:[111,118],13174:[112,99],13175:[100,109],13176:[100,109,50],13177:[100,109,51],13178:[105,117],13179:[24179,25104],13180:[26157,21644],13181:[22823,27491],13182:[26126,27835],13183:[26666,24335,20250,31038],13184:[112,97],13185:[110,97],13186:[956,97],13187:[109,97],13188:[107,97],13189:[107,98],13190:[109,98],13191:[103,98],13192:[99,97,108],13193:[107,99,97,108],13194:[112,102],13195:[110,102],13196:[956,102],13197:[956,103],13198:[109,103],13199:[107,103],13200:[104,122],13201:[107,104,122],13202:[109,104,122],13203:[103,104,122],13204:[116,104,122],13205:[956,108],13206:[109,108],13207:[100,108],13208:[107,108],13209:[102,109],13210:[110,109],13211:[956,109],13212:[109,109],13213:[99,109],13214:[107,109],13215:[109,109,50],13216:[99,109,50],13217:[109,50],13218:[107,109,50],13219:[109,109,51],13220:[99,109,51],13221:[109,51],13222:[107,109,51],13223:[109,8725,115],13224:[109,8725,115,50],13225:[112,97],13226:[107,112,97],13227:[109,112,97],13228:[103,112,97],13229:[114,97,100],13230:[114,97,100,8725,115],13231:[114,97,100,8725,115,50],13232:[112,115],13233:[110,115],13234:[956,115],13235:[109,115],13236:[112,118],13237:[110,118],13238:[956,118],13239:[109,118],13240:[107,118],13241:[109,118],13242:[112,119],13243:[110,119],13244:[956,119],13245:[109,119],13246:[107,119],13247:[109,119],13248:[107,969],13249:[109,969],13251:[98,113],13252:[99,99],13253:[99,100],13254:[99,8725,107,103],13256:[100,98],13257:[103,121],13258:[104,97],13259:[104,112],13260:[105,110],13261:[107,107],13262:[107,109],13263:[107,116],13264:[108,109],13265:[108,110],13266:[108,111,103],13267:[108,120],13268:[109,98],13269:[109,105,108],13270:[109,111,108],13271:[112,104],13273:[112,112,109],13274:[112,114],13275:[115,114],13276:[115,118],13277:[119,98],13278:[118,8725,109],13279:[97,8725,109],13280:[49,26085],13281:[50,26085],13282:[51,26085],13283:[52,26085],13284:[53,26085],13285:[54,26085],13286:[55,26085],13287:[56,26085],13288:[57,26085],13289:[49,48,26085],13290:[49,49,26085],13291:[49,50,26085],13292:[49,51,26085],13293:[49,52,26085],13294:[49,53,26085],13295:[49,54,26085],13296:[49,55,26085],13297:[49,56,26085],13298:[49,57,26085],13299:[50,48,26085],13300:[50,49,26085],13301:[50,50,26085],13302:[50,51,26085],13303:[50,52,26085],13304:[50,53,26085],13305:[50,54,26085],13306:[50,55,26085],13307:[50,56,26085],13308:[50,57,26085],13309:[51,48,26085],13310:[51,49,26085],13311:[103,97,108],42560:[42561],42562:[42563],42564:[42565],42566:[42567],42568:[42569],42570:[42571],42572:[42573],42574:[42575],42576:[42577],42578:[42579],42580:[42581],42582:[42583],42584:[42585],42586:[42587],42588:[42589],42590:[42591],42592:[42593],42594:[42595],42596:[42597],42598:[42599],42600:[42601],42602:[42603],42604:[42605],42624:[42625],42626:[42627],42628:[42629],42630:[42631],42632:[42633],42634:[42635],42636:[42637],42638:[42639],42640:[42641],42642:[42643],42644:[42645],42646:[42647],42648:[42649],42650:[42651],42652:[1098],42653:[1100],42786:[42787],42788:[42789],42790:[42791],42792:[42793],42794:[42795],42796:[42797],42798:[42799],42802:[42803],42804:[42805],42806:[42807],42808:[42809],42810:[42811],42812:[42813],42814:[42815],42816:[42817],42818:[42819],42820:[42821],42822:[42823],42824:[42825],42826:[42827],42828:[42829],42830:[42831],42832:[42833],42834:[42835],42836:[42837],42838:[42839],42840:[42841],42842:[42843],42844:[42845],42846:[42847],42848:[42849],42850:[42851],42852:[42853],42854:[42855],42856:[42857],42858:[42859],42860:[42861],42862:[42863],42864:[42863],42873:[42874],42875:[42876],42877:[7545],42878:[42879],42880:[42881],42882:[42883],42884:[42885],42886:[42887],42891:[42892],42893:[613],42896:[42897],42898:[42899],42902:[42903],42904:[42905],42906:[42907],42908:[42909],42910:[42911],42912:[42913],42914:[42915],42916:[42917],42918:[42919],42920:[42921],42922:[614],42923:[604],42924:[609],42925:[620],42926:[618],42928:[670],42929:[647],42930:[669],42931:[43859],42932:[42933],42934:[42935],42936:[42937],42938:[42939],42940:[42941],42942:[42943],42944:[42945],42946:[42947],42948:[42900],42949:[642],42950:[7566],42951:[42952],42953:[42954],42960:[42961],42966:[42967],42968:[42969],42994:[99],42995:[102],42996:[113],42997:[42998],43e3:[295],43001:[339],43868:[42791],43869:[43831],43870:[619],43871:[43858],43881:[653],43888:[5024],43889:[5025],43890:[5026],43891:[5027],43892:[5028],43893:[5029],43894:[5030],43895:[5031],43896:[5032],43897:[5033],43898:[5034],43899:[5035],43900:[5036],43901:[5037],43902:[5038],43903:[5039],43904:[5040],43905:[5041],43906:[5042],43907:[5043],43908:[5044],43909:[5045],43910:[5046],43911:[5047],43912:[5048],43913:[5049],43914:[5050],43915:[5051],43916:[5052],43917:[5053],43918:[5054],43919:[5055],43920:[5056],43921:[5057],43922:[5058],43923:[5059],43924:[5060],43925:[5061],43926:[5062],43927:[5063],43928:[5064],43929:[5065],43930:[5066],43931:[5067],43932:[5068],43933:[5069],43934:[5070],43935:[5071],43936:[5072],43937:[5073],43938:[5074],43939:[5075],43940:[5076],43941:[5077],43942:[5078],43943:[5079],43944:[5080],43945:[5081],43946:[5082],43947:[5083],43948:[5084],43949:[5085],43950:[5086],43951:[5087],43952:[5088],43953:[5089],43954:[5090],43955:[5091],43956:[5092],43957:[5093],43958:[5094],43959:[5095],43960:[5096],43961:[5097],43962:[5098],43963:[5099],43964:[5100],43965:[5101],43966:[5102],43967:[5103],63744:[35912],63745:[26356],63746:[36554],63747:[36040],63748:[28369],63749:[20018],63750:[21477],63751:[40860],63753:[22865],63754:[37329],63755:[21895],63756:[22856],63757:[25078],63758:[30313],63759:[32645],63760:[34367],63761:[34746],63762:[35064],63763:[37007],63764:[27138],63765:[27931],63766:[28889],63767:[29662],63768:[33853],63769:[37226],63770:[39409],63771:[20098],63772:[21365],63773:[27396],63774:[29211],63775:[34349],63776:[40478],63777:[23888],63778:[28651],63779:[34253],63780:[35172],63781:[25289],63782:[33240],63783:[34847],63784:[24266],63785:[26391],63786:[28010],63787:[29436],63788:[37070],63789:[20358],63790:[20919],63791:[21214],63792:[25796],63793:[27347],63794:[29200],63795:[30439],63796:[32769],63797:[34310],63798:[34396],63799:[36335],63800:[38706],63801:[39791],63802:[40442],63803:[30860],63804:[31103],63805:[32160],63806:[33737],63807:[37636],63808:[40575],63809:[35542],63810:[22751],63811:[24324],63812:[31840],63813:[32894],63814:[29282],63815:[30922],63816:[36034],63817:[38647],63818:[22744],63819:[23650],63820:[27155],63821:[28122],63822:[28431],63823:[32047],63824:[32311],63825:[38475],63826:[21202],63827:[32907],63828:[20956],63829:[20940],63830:[31260],63831:[32190],63832:[33777],63833:[38517],63834:[35712],63835:[25295],63836:[27138],63837:[35582],63838:[20025],63839:[23527],63840:[24594],63841:[29575],63842:[30064],63843:[21271],63844:[30971],63845:[20415],63846:[24489],63847:[19981],63848:[27852],63849:[25976],63850:[32034],63851:[21443],63852:[22622],63853:[30465],63854:[33865],63855:[35498],63856:[27578],63857:[36784],63858:[27784],63859:[25342],63860:[33509],63861:[25504],63862:[30053],63863:[20142],63864:[20841],63865:[20937],63866:[26753],63867:[31975],63868:[33391],63869:[35538],63870:[37327],63871:[21237],63872:[21570],63873:[22899],63874:[24300],63875:[26053],63876:[28670],63877:[31018],63878:[38317],63879:[39530],63880:[40599],63881:[40654],63882:[21147],63883:[26310],63884:[27511],63885:[36706],63886:[24180],63887:[24976],63888:[25088],63889:[25754],63890:[28451],63891:[29001],63892:[29833],63893:[31178],63894:[32244],63895:[32879],63896:[36646],63897:[34030],63898:[36899],63899:[37706],63900:[21015],63901:[21155],63902:[21693],63903:[28872],63904:[35010],63905:[35498],63906:[24265],63907:[24565],63908:[25467],63909:[27566],63910:[31806],63911:[29557],63912:[20196],63913:[22265],63914:[23527],63915:[23994],63916:[24604],63917:[29618],63918:[29801],63919:[32666],63920:[32838],63921:[37428],63922:[38646],63923:[38728],63924:[38936],63925:[20363],63926:[31150],63927:[37300],63928:[38584],63929:[24801],63930:[20102],63931:[20698],63932:[23534],63933:[23615],63934:[26009],63935:[27138],63936:[29134],63937:[30274],63938:[34044],63939:[36988],63940:[40845],63941:[26248],63942:[38446],63943:[21129],63944:[26491],63945:[26611],63946:[27969],63947:[28316],63948:[29705],63949:[30041],63950:[30827],63951:[32016],63952:[39006],63953:[20845],63954:[25134],63955:[38520],63956:[20523],63957:[23833],63958:[28138],63959:[36650],63960:[24459],63961:[24900],63962:[26647],63963:[29575],63964:[38534],63965:[21033],63966:[21519],63967:[23653],63968:[26131],63969:[26446],63970:[26792],63971:[27877],63972:[29702],63973:[30178],63974:[32633],63975:[35023],63976:[35041],63977:[37324],63978:[38626],63979:[21311],63980:[28346],63981:[21533],63982:[29136],63983:[29848],63984:[34298],63985:[38563],63986:[40023],63987:[40607],63988:[26519],63989:[28107],63990:[33256],63991:[31435],63992:[31520],63993:[31890],63994:[29376],63995:[28825],63996:[35672],63997:[20160],63998:[33590],63999:[21050],64e3:[20999],64001:[24230],64002:[25299],64003:[31958],64004:[23429],64005:[27934],64006:[26292],64007:[36667],64008:[34892],64009:[38477],64010:[35211],64011:[24275],64012:[20800],64013:[21952],64016:[22618],64018:[26228],64021:[20958],64022:[29482],64023:[30410],64024:[31036],64025:[31070],64026:[31077],64027:[31119],64028:[38742],64029:[31934],64030:[32701],64032:[34322],64034:[35576],64037:[36920],64038:[37117],64042:[39151],64043:[39164],64044:[39208],64045:[40372],64046:[37086],64047:[38583],64048:[20398],64049:[20711],64050:[20813],64051:[21193],64052:[21220],64053:[21329],64054:[21917],64055:[22022],64056:[22120],64057:[22592],64058:[22696],64059:[23652],64060:[23662],64061:[24724],64062:[24936],64063:[24974],64064:[25074],64065:[25935],64066:[26082],64067:[26257],64068:[26757],64069:[28023],64070:[28186],64071:[28450],64072:[29038],64073:[29227],64074:[29730],64075:[30865],64076:[31038],64077:[31049],64078:[31048],64079:[31056],64080:[31062],64081:[31069],64082:[31117],64083:[31118],64084:[31296],64085:[31361],64086:[31680],64087:[32244],64088:[32265],64089:[32321],64090:[32626],64091:[32773],64092:[33261],64093:[33401],64095:[33879],64096:[35088],64097:[35222],64098:[35585],64099:[35641],64100:[36051],64101:[36104],64102:[36790],64103:[36920],64104:[38627],64105:[38911],64106:[38971],64107:[24693],64108:[148206],64109:[33304],64112:[20006],64113:[20917],64114:[20840],64115:[20352],64116:[20805],64117:[20864],64118:[21191],64119:[21242],64120:[21917],64121:[21845],64122:[21913],64123:[21986],64124:[22618],64125:[22707],64126:[22852],64127:[22868],64128:[23138],64129:[23336],64130:[24274],64131:[24281],64132:[24425],64133:[24493],64134:[24792],64135:[24910],64136:[24840],64137:[24974],64138:[24928],64139:[25074],64140:[25140],64141:[25540],64142:[25628],64143:[25682],64144:[25942],64145:[26228],64146:[26391],64147:[26395],64148:[26454],64149:[27513],64150:[27578],64151:[27969],64152:[28379],64153:[28363],64154:[28450],64155:[28702],64156:[29038],64157:[30631],64158:[29237],64159:[29359],64160:[29482],64161:[29809],64162:[29958],64163:[30011],64164:[30237],64165:[30239],64166:[30410],64167:[30427],64168:[30452],64169:[30538],64170:[30528],64171:[30924],64172:[31409],64173:[31680],64174:[31867],64175:[32091],64176:[32244],64177:[32574],64178:[32773],64179:[33618],64180:[33775],64181:[34681],64182:[35137],64183:[35206],64184:[35222],64185:[35519],64186:[35576],64187:[35531],64188:[35585],64189:[35582],64190:[35565],64191:[35641],64192:[35722],64193:[36104],64194:[36664],64195:[36978],64196:[37273],64197:[37494],64198:[38524],64199:[38627],64200:[38742],64201:[38875],64202:[38911],64203:[38923],64204:[38971],64205:[39698],64206:[40860],64207:[141386],64208:[141380],64209:[144341],64210:[15261],64211:[16408],64212:[16441],64213:[152137],64214:[154832],64215:[163539],64216:[40771],64217:[40846],64256:[102,102],64257:[102,105],64258:[102,108],64259:[102,102,105],64260:[102,102,108],64261:[115,116],64275:[1396,1398],64276:[1396,1381],64277:[1396,1387],64278:[1406,1398],64279:[1396,1389],64285:[1497,1460],64287:[1522,1463],64288:[1506],64289:[1488],64290:[1491],64291:[1492],64292:[1499],64293:[1500],64294:[1501],64295:[1512],64296:[1514],64297:[43],64298:[1513,1473],64299:[1513,1474],64300:[1513,1468,1473],64301:[1513,1468,1474],64302:[1488,1463],64303:[1488,1464],64304:[1488,1468],64305:[1489,1468],64306:[1490,1468],64307:[1491,1468],64308:[1492,1468],64309:[1493,1468],64310:[1494,1468],64312:[1496,1468],64313:[1497,1468],64314:[1498,1468],64315:[1499,1468],64316:[1500,1468],64318:[1502,1468],64320:[1504,1468],64321:[1505,1468],64323:[1507,1468],64324:[1508,1468],64326:[1510,1468],64327:[1511,1468],64328:[1512,1468],64329:[1513,1468],64330:[1514,1468],64331:[1493,1465],64332:[1489,1471],64333:[1499,1471],64334:[1508,1471],64335:[1488,1500],64336:[1649],64338:[1659],64342:[1662],64346:[1664],64350:[1658],64354:[1663],64358:[1657],64362:[1700],64366:[1702],64370:[1668],64374:[1667],64378:[1670],64382:[1671],64386:[1677],64388:[1676],64390:[1678],64392:[1672],64394:[1688],64396:[1681],64398:[1705],64402:[1711],64406:[1715],64410:[1713],64414:[1722],64416:[1723],64420:[1728],64422:[1729],64426:[1726],64430:[1746],64432:[1747],64467:[1709],64471:[1735],64473:[1734],64475:[1736],64477:[1735,1652],64478:[1739],64480:[1733],64482:[1737],64484:[1744],64488:[1609],64490:[1574,1575],64492:[1574,1749],64494:[1574,1608],64496:[1574,1735],64498:[1574,1734],64500:[1574,1736],64502:[1574,1744],64505:[1574,1609],64508:[1740],64512:[1574,1580],64513:[1574,1581],64514:[1574,1605],64515:[1574,1609],64516:[1574,1610],64517:[1576,1580],64518:[1576,1581],64519:[1576,1582],64520:[1576,1605],64521:[1576,1609],64522:[1576,1610],64523:[1578,1580],64524:[1578,1581],64525:[1578,1582],64526:[1578,1605],64527:[1578,1609],64528:[1578,1610],64529:[1579,1580],64530:[1579,1605],64531:[1579,1609],64532:[1579,1610],64533:[1580,1581],64534:[1580,1605],64535:[1581,1580],64536:[1581,1605],64537:[1582,1580],64538:[1582,1581],64539:[1582,1605],64540:[1587,1580],64541:[1587,1581],64542:[1587,1582],64543:[1587,1605],64544:[1589,1581],64545:[1589,1605],64546:[1590,1580],64547:[1590,1581],64548:[1590,1582],64549:[1590,1605],64550:[1591,1581],64551:[1591,1605],64552:[1592,1605],64553:[1593,1580],64554:[1593,1605],64555:[1594,1580],64556:[1594,1605],64557:[1601,1580],64558:[1601,1581],64559:[1601,1582],64560:[1601,1605],64561:[1601,1609],64562:[1601,1610],64563:[1602,1581],64564:[1602,1605],64565:[1602,1609],64566:[1602,1610],64567:[1603,1575],64568:[1603,1580],64569:[1603,1581],64570:[1603,1582],64571:[1603,1604],64572:[1603,1605],64573:[1603,1609],64574:[1603,1610],64575:[1604,1580],64576:[1604,1581],64577:[1604,1582],64578:[1604,1605],64579:[1604,1609],64580:[1604,1610],64581:[1605,1580],64582:[1605,1581],64583:[1605,1582],64584:[1605,1605],64585:[1605,1609],64586:[1605,1610],64587:[1606,1580],64588:[1606,1581],64589:[1606,1582],64590:[1606,1605],64591:[1606,1609],64592:[1606,1610],64593:[1607,1580],64594:[1607,1605],64595:[1607,1609],64596:[1607,1610],64597:[1610,1580],64598:[1610,1581],64599:[1610,1582],64600:[1610,1605],64601:[1610,1609],64602:[1610,1610],64603:[1584,1648],64604:[1585,1648],64605:[1609,1648],64606:[32,1612,1617],64607:[32,1613,1617],64608:[32,1614,1617],64609:[32,1615,1617],64610:[32,1616,1617],64611:[32,1617,1648],64612:[1574,1585],64613:[1574,1586],64614:[1574,1605],64615:[1574,1606],64616:[1574,1609],64617:[1574,1610],64618:[1576,1585],64619:[1576,1586],64620:[1576,1605],64621:[1576,1606],64622:[1576,1609],64623:[1576,1610],64624:[1578,1585],64625:[1578,1586],64626:[1578,1605],64627:[1578,1606],64628:[1578,1609],64629:[1578,1610],64630:[1579,1585],64631:[1579,1586],64632:[1579,1605],64633:[1579,1606],64634:[1579,1609],64635:[1579,1610],64636:[1601,1609],64637:[1601,1610],64638:[1602,1609],64639:[1602,1610],64640:[1603,1575],64641:[1603,1604],64642:[1603,1605],64643:[1603,1609],64644:[1603,1610],64645:[1604,1605],64646:[1604,1609],64647:[1604,1610],64648:[1605,1575],64649:[1605,1605],64650:[1606,1585],64651:[1606,1586],64652:[1606,1605],64653:[1606,1606],64654:[1606,1609],64655:[1606,1610],64656:[1609,1648],64657:[1610,1585],64658:[1610,1586],64659:[1610,1605],64660:[1610,1606],64661:[1610,1609],64662:[1610,1610],64663:[1574,1580],64664:[1574,1581],64665:[1574,1582],64666:[1574,1605],64667:[1574,1607],64668:[1576,1580],64669:[1576,1581],64670:[1576,1582],64671:[1576,1605],64672:[1576,1607],64673:[1578,1580],64674:[1578,1581],64675:[1578,1582],64676:[1578,1605],64677:[1578,1607],64678:[1579,1605],64679:[1580,1581],64680:[1580,1605],64681:[1581,1580],64682:[1581,1605],64683:[1582,1580],64684:[1582,1605],64685:[1587,1580],64686:[1587,1581],64687:[1587,1582],64688:[1587,1605],64689:[1589,1581],64690:[1589,1582],64691:[1589,1605],64692:[1590,1580],64693:[1590,1581],64694:[1590,1582],64695:[1590,1605],64696:[1591,1581],64697:[1592,1605],64698:[1593,1580],64699:[1593,1605],64700:[1594,1580],64701:[1594,1605],64702:[1601,1580],64703:[1601,1581],64704:[1601,1582],64705:[1601,1605],64706:[1602,1581],64707:[1602,1605],64708:[1603,1580],64709:[1603,1581],64710:[1603,1582],64711:[1603,1604],64712:[1603,1605],64713:[1604,1580],64714:[1604,1581],64715:[1604,1582],64716:[1604,1605],64717:[1604,1607],64718:[1605,1580],64719:[1605,1581],64720:[1605,1582],64721:[1605,1605],64722:[1606,1580],64723:[1606,1581],64724:[1606,1582],64725:[1606,1605],64726:[1606,1607],64727:[1607,1580],64728:[1607,1605],64729:[1607,1648],64730:[1610,1580],64731:[1610,1581],64732:[1610,1582],64733:[1610,1605],64734:[1610,1607],64735:[1574,1605],64736:[1574,1607],64737:[1576,1605],64738:[1576,1607],64739:[1578,1605],64740:[1578,1607],64741:[1579,1605],64742:[1579,1607],64743:[1587,1605],64744:[1587,1607],64745:[1588,1605],64746:[1588,1607],64747:[1603,1604],64748:[1603,1605],64749:[1604,1605],64750:[1606,1605],64751:[1606,1607],64752:[1610,1605],64753:[1610,1607],64754:[1600,1614,1617],64755:[1600,1615,1617],64756:[1600,1616,1617],64757:[1591,1609],64758:[1591,1610],64759:[1593,1609],64760:[1593,1610],64761:[1594,1609],64762:[1594,1610],64763:[1587,1609],64764:[1587,1610],64765:[1588,1609],64766:[1588,1610],64767:[1581,1609],64768:[1581,1610],64769:[1580,1609],64770:[1580,1610],64771:[1582,1609],64772:[1582,1610],64773:[1589,1609],64774:[1589,1610],64775:[1590,1609],64776:[1590,1610],64777:[1588,1580],64778:[1588,1581],64779:[1588,1582],64780:[1588,1605],64781:[1588,1585],64782:[1587,1585],64783:[1589,1585],64784:[1590,1585],64785:[1591,1609],64786:[1591,1610],64787:[1593,1609],64788:[1593,1610],64789:[1594,1609],64790:[1594,1610],64791:[1587,1609],64792:[1587,1610],64793:[1588,1609],64794:[1588,1610],64795:[1581,1609],64796:[1581,1610],64797:[1580,1609],64798:[1580,1610],64799:[1582,1609],64800:[1582,1610],64801:[1589,1609],64802:[1589,1610],64803:[1590,1609],64804:[1590,1610],64805:[1588,1580],64806:[1588,1581],64807:[1588,1582],64808:[1588,1605],64809:[1588,1585],64810:[1587,1585],64811:[1589,1585],64812:[1590,1585],64813:[1588,1580],64814:[1588,1581],64815:[1588,1582],64816:[1588,1605],64817:[1587,1607],64818:[1588,1607],64819:[1591,1605],64820:[1587,1580],64821:[1587,1581],64822:[1587,1582],64823:[1588,1580],64824:[1588,1581],64825:[1588,1582],64826:[1591,1605],64827:[1592,1605],64828:[1575,1611],64848:[1578,1580,1605],64849:[1578,1581,1580],64851:[1578,1581,1605],64852:[1578,1582,1605],64853:[1578,1605,1580],64854:[1578,1605,1581],64855:[1578,1605,1582],64856:[1580,1605,1581],64858:[1581,1605,1610],64859:[1581,1605,1609],64860:[1587,1581,1580],64861:[1587,1580,1581],64862:[1587,1580,1609],64863:[1587,1605,1581],64865:[1587,1605,1580],64866:[1587,1605,1605],64868:[1589,1581,1581],64870:[1589,1605,1605],64871:[1588,1581,1605],64873:[1588,1580,1610],64874:[1588,1605,1582],64876:[1588,1605,1605],64878:[1590,1581,1609],64879:[1590,1582,1605],64881:[1591,1605,1581],64883:[1591,1605,1605],64884:[1591,1605,1610],64885:[1593,1580,1605],64886:[1593,1605,1605],64888:[1593,1605,1609],64889:[1594,1605,1605],64890:[1594,1605,1610],64891:[1594,1605,1609],64892:[1601,1582,1605],64894:[1602,1605,1581],64895:[1602,1605,1605],64896:[1604,1581,1605],64897:[1604,1581,1610],64898:[1604,1581,1609],64899:[1604,1580,1580],64901:[1604,1582,1605],64903:[1604,1605,1581],64905:[1605,1581,1580],64906:[1605,1581,1605],64907:[1605,1581,1610],64908:[1605,1580,1581],64909:[1605,1580,1605],64910:[1605,1582,1580],64911:[1605,1582,1605],64914:[1605,1580,1582],64915:[1607,1605,1580],64916:[1607,1605,1605],64917:[1606,1581,1605],64918:[1606,1581,1609],64919:[1606,1580,1605],64921:[1606,1580,1609],64922:[1606,1605,1610],64923:[1606,1605,1609],64924:[1610,1605,1605],64926:[1576,1582,1610],64927:[1578,1580,1610],64928:[1578,1580,1609],64929:[1578,1582,1610],64930:[1578,1582,1609],64931:[1578,1605,1610],64932:[1578,1605,1609],64933:[1580,1605,1610],64934:[1580,1581,1609],64935:[1580,1605,1609],64936:[1587,1582,1609],64937:[1589,1581,1610],64938:[1588,1581,1610],64939:[1590,1581,1610],64940:[1604,1580,1610],64941:[1604,1605,1610],64942:[1610,1581,1610],64943:[1610,1580,1610],64944:[1610,1605,1610],64945:[1605,1605,1610],64946:[1602,1605,1610],64947:[1606,1581,1610],64948:[1602,1605,1581],64949:[1604,1581,1605],64950:[1593,1605,1610],64951:[1603,1605,1610],64952:[1606,1580,1581],64953:[1605,1582,1610],64954:[1604,1580,1605],64955:[1603,1605,1605],64956:[1604,1580,1605],64957:[1606,1580,1581],64958:[1580,1581,1610],64959:[1581,1580,1610],64960:[1605,1580,1610],64961:[1601,1605,1610],64962:[1576,1581,1610],64963:[1603,1605,1605],64964:[1593,1580,1605],64965:[1589,1605,1605],64966:[1587,1582,1610],64967:[1606,1580,1610],65008:[1589,1604,1746],65009:[1602,1604,1746],65010:[1575,1604,1604,1607],65011:[1575,1603,1576,1585],65012:[1605,1581,1605,1583],65013:[1589,1604,1593,1605],65014:[1585,1587,1608,1604],65015:[1593,1604,1610,1607],65016:[1608,1587,1604,1605],65017:[1589,1604,1609],65018:[1589,1604,1609,32,1575,1604,1604,1607,32,1593,1604,1610,1607,32,1608,1587,1604,1605],65019:[1580,1604,32,1580,1604,1575,1604,1607],65020:[1585,1740,1575,1604],65040:[44],65041:[12289],65043:[58],65044:[59],65045:[33],65046:[63],65047:[12310],65048:[12311],65073:[8212],65074:[8211],65075:[95],65077:[40],65078:[41],65079:[123],65080:[125],65081:[12308],65082:[12309],65083:[12304],65084:[12305],65085:[12298],65086:[12299],65087:[12296],65088:[12297],65089:[12300],65090:[12301],65091:[12302],65092:[12303],65095:[91],65096:[93],65097:[32,773],65101:[95],65104:[44],65105:[12289],65108:[59],65109:[58],65110:[63],65111:[33],65112:[8212],65113:[40],65114:[41],65115:[123],65116:[125],65117:[12308],65118:[12309],65119:[35],65120:[38],65121:[42],65122:[43],65123:[45],65124:[60],65125:[62],65126:[61],65128:[92],65129:[36],65130:[37],65131:[64],65136:[32,1611],65137:[1600,1611],65138:[32,1612],65140:[32,1613],65142:[32,1614],65143:[1600,1614],65144:[32,1615],65145:[1600,1615],65146:[32,1616],65147:[1600,1616],65148:[32,1617],65149:[1600,1617],65150:[32,1618],65151:[1600,1618],65152:[1569],65153:[1570],65155:[1571],65157:[1572],65159:[1573],65161:[1574],65165:[1575],65167:[1576],65171:[1577],65173:[1578],65177:[1579],65181:[1580],65185:[1581],65189:[1582],65193:[1583],65195:[1584],65197:[1585],65199:[1586],65201:[1587],65205:[1588],65209:[1589],65213:[1590],65217:[1591],65221:[1592],65225:[1593],65229:[1594],65233:[1601],65237:[1602],65241:[1603],65245:[1604],65249:[1605],65253:[1606],65257:[1607],65261:[1608],65263:[1609],65265:[1610],65269:[1604,1570],65271:[1604,1571],65273:[1604,1573],65275:[1604,1575],65281:[33],65282:[34],65283:[35],65284:[36],65285:[37],65286:[38],65287:[39],65288:[40],65289:[41],65290:[42],65291:[43],65292:[44],65293:[45],65294:[46],65295:[47],65296:[48],65297:[49],65298:[50],65299:[51],65300:[52],65301:[53],65302:[54],65303:[55],65304:[56],65305:[57],65306:[58],65307:[59],65308:[60],65309:[61],65310:[62],65311:[63],65312:[64],65313:[97],65314:[98],65315:[99],65316:[100],65317:[101],65318:[102],65319:[103],65320:[104],65321:[105],65322:[106],65323:[107],65324:[108],65325:[109],65326:[110],65327:[111],65328:[112],65329:[113],65330:[114],65331:[115],65332:[116],65333:[117],65334:[118],65335:[119],65336:[120],65337:[121],65338:[122],65339:[91],65340:[92],65341:[93],65342:[94],65343:[95],65344:[96],65345:[97],65346:[98],65347:[99],65348:[100],65349:[101],65350:[102],65351:[103],65352:[104],65353:[105],65354:[106],65355:[107],65356:[108],65357:[109],65358:[110],65359:[111],65360:[112],65361:[113],65362:[114],65363:[115],65364:[116],65365:[117],65366:[118],65367:[119],65368:[120],65369:[121],65370:[122],65371:[123],65372:[124],65373:[125],65374:[126],65375:[10629],65376:[10630],65377:[46],65378:[12300],65379:[12301],65380:[12289],65381:[12539],65382:[12530],65383:[12449],65384:[12451],65385:[12453],65386:[12455],65387:[12457],65388:[12515],65389:[12517],65390:[12519],65391:[12483],65392:[12540],65393:[12450],65394:[12452],65395:[12454],65396:[12456],65397:[12458],65398:[12459],65399:[12461],65400:[12463],65401:[12465],65402:[12467],65403:[12469],65404:[12471],65405:[12473],65406:[12475],65407:[12477],65408:[12479],65409:[12481],65410:[12484],65411:[12486],65412:[12488],65413:[12490],65414:[12491],65415:[12492],65416:[12493],65417:[12494],65418:[12495],65419:[12498],65420:[12501],65421:[12504],65422:[12507],65423:[12510],65424:[12511],65425:[12512],65426:[12513],65427:[12514],65428:[12516],65429:[12518],65430:[12520],65431:[12521],65432:[12522],65433:[12523],65434:[12524],65435:[12525],65436:[12527],65437:[12531],65438:[12441],65439:[12442],65441:[4352],65442:[4353],65443:[4522],65444:[4354],65445:[4524],65446:[4525],65447:[4355],65448:[4356],65449:[4357],65450:[4528],65451:[4529],65452:[4530],65453:[4531],65454:[4532],65455:[4533],65456:[4378],65457:[4358],65458:[4359],65459:[4360],65460:[4385],65461:[4361],65462:[4362],65463:[4363],65464:[4364],65465:[4365],65466:[4366],65467:[4367],65468:[4368],65469:[4369],65470:[4370],65474:[4449],65475:[4450],65476:[4451],65477:[4452],65478:[4453],65479:[4454],65482:[4455],65483:[4456],65484:[4457],65485:[4458],65486:[4459],65487:[4460],65490:[4461],65491:[4462],65492:[4463],65493:[4464],65494:[4465],65495:[4466],65498:[4467],65499:[4468],65500:[4469],65504:[162],65505:[163],65506:[172],65507:[32,772],65508:[166],65509:[165],65510:[8361],65512:[9474],65513:[8592],65514:[8593],65515:[8594],65516:[8595],65517:[9632],65518:[9675],66560:[66600],66561:[66601],66562:[66602],66563:[66603],66564:[66604],66565:[66605],66566:[66606],66567:[66607],66568:[66608],66569:[66609],66570:[66610],66571:[66611],66572:[66612],66573:[66613],66574:[66614],66575:[66615],66576:[66616],66577:[66617],66578:[66618],66579:[66619],66580:[66620],66581:[66621],66582:[66622],66583:[66623],66584:[66624],66585:[66625],66586:[66626],66587:[66627],66588:[66628],66589:[66629],66590:[66630],66591:[66631],66592:[66632],66593:[66633],66594:[66634],66595:[66635],66596:[66636],66597:[66637],66598:[66638],66599:[66639],66736:[66776],66737:[66777],66738:[66778],66739:[66779],66740:[66780],66741:[66781],66742:[66782],66743:[66783],66744:[66784],66745:[66785],66746:[66786],66747:[66787],66748:[66788],66749:[66789],66750:[66790],66751:[66791],66752:[66792],66753:[66793],66754:[66794],66755:[66795],66756:[66796],66757:[66797],66758:[66798],66759:[66799],66760:[66800],66761:[66801],66762:[66802],66763:[66803],66764:[66804],66765:[66805],66766:[66806],66767:[66807],66768:[66808],66769:[66809],66770:[66810],66771:[66811],66928:[66967],66929:[66968],66930:[66969],66931:[66970],66932:[66971],66933:[66972],66934:[66973],66935:[66974],66936:[66975],66937:[66976],66938:[66977],66940:[66979],66941:[66980],66942:[66981],66943:[66982],66944:[66983],66945:[66984],66946:[66985],66947:[66986],66948:[66987],66949:[66988],66950:[66989],66951:[66990],66952:[66991],66953:[66992],66954:[66993],66956:[66995],66957:[66996],66958:[66997],66959:[66998],66960:[66999],66961:[67e3],66962:[67001],66964:[67003],66965:[67004],67457:[720],67458:[721],67459:[230],67460:[665],67461:[595],67463:[675],67464:[43878],67465:[677],67466:[676],67467:[598],67468:[599],67469:[7569],67470:[600],67471:[606],67472:[681],67473:[612],67474:[610],67475:[608],67476:[667],67477:[295],67478:[668],67479:[615],67480:[644],67481:[682],67482:[683],67483:[620],67484:[122628],67485:[42894],67486:[622],67487:[122629],67488:[654],67489:[122630],67490:[248],67491:[630],67492:[631],67493:[113],67494:[634],67495:[122632],67496:[637],67497:[638],67498:[640],67499:[680],67500:[678],67501:[43879],67502:[679],67503:[648],67504:[11377],67506:[655],67507:[673],67508:[674],67509:[664],67510:[448],67511:[449],67512:[450],67513:[122634],67514:[122654],68736:[68800],68737:[68801],68738:[68802],68739:[68803],68740:[68804],68741:[68805],68742:[68806],68743:[68807],68744:[68808],68745:[68809],68746:[68810],68747:[68811],68748:[68812],68749:[68813],68750:[68814],68751:[68815],68752:[68816],68753:[68817],68754:[68818],68755:[68819],68756:[68820],68757:[68821],68758:[68822],68759:[68823],68760:[68824],68761:[68825],68762:[68826],68763:[68827],68764:[68828],68765:[68829],68766:[68830],68767:[68831],68768:[68832],68769:[68833],68770:[68834],68771:[68835],68772:[68836],68773:[68837],68774:[68838],68775:[68839],68776:[68840],68777:[68841],68778:[68842],68779:[68843],68780:[68844],68781:[68845],68782:[68846],68783:[68847],68784:[68848],68785:[68849],68786:[68850],71840:[71872],71841:[71873],71842:[71874],71843:[71875],71844:[71876],71845:[71877],71846:[71878],71847:[71879],71848:[71880],71849:[71881],71850:[71882],71851:[71883],71852:[71884],71853:[71885],71854:[71886],71855:[71887],71856:[71888],71857:[71889],71858:[71890],71859:[71891],71860:[71892],71861:[71893],71862:[71894],71863:[71895],71864:[71896],71865:[71897],71866:[71898],71867:[71899],71868:[71900],71869:[71901],71870:[71902],71871:[71903],93760:[93792],93761:[93793],93762:[93794],93763:[93795],93764:[93796],93765:[93797],93766:[93798],93767:[93799],93768:[93800],93769:[93801],93770:[93802],93771:[93803],93772:[93804],93773:[93805],93774:[93806],93775:[93807],93776:[93808],93777:[93809],93778:[93810],93779:[93811],93780:[93812],93781:[93813],93782:[93814],93783:[93815],93784:[93816],93785:[93817],93786:[93818],93787:[93819],93788:[93820],93789:[93821],93790:[93822],93791:[93823],119134:[119127,119141],119135:[119128,119141],119136:[119128,119141,119150],119137:[119128,119141,119151],119138:[119128,119141,119152],119139:[119128,119141,119153],119140:[119128,119141,119154],119227:[119225,119141],119228:[119226,119141],119229:[119225,119141,119150],119230:[119226,119141,119150],119231:[119225,119141,119151],119232:[119226,119141,119151],119808:[97],119809:[98],119810:[99],119811:[100],119812:[101],119813:[102],119814:[103],119815:[104],119816:[105],119817:[106],119818:[107],119819:[108],119820:[109],119821:[110],119822:[111],119823:[112],119824:[113],119825:[114],119826:[115],119827:[116],119828:[117],119829:[118],119830:[119],119831:[120],119832:[121],119833:[122],119834:[97],119835:[98],119836:[99],119837:[100],119838:[101],119839:[102],119840:[103],119841:[104],119842:[105],119843:[106],119844:[107],119845:[108],119846:[109],119847:[110],119848:[111],119849:[112],119850:[113],119851:[114],119852:[115],119853:[116],119854:[117],119855:[118],119856:[119],119857:[120],119858:[121],119859:[122],119860:[97],119861:[98],119862:[99],119863:[100],119864:[101],119865:[102],119866:[103],119867:[104],119868:[105],119869:[106],119870:[107],119871:[108],119872:[109],119873:[110],119874:[111],119875:[112],119876:[113],119877:[114],119878:[115],119879:[116],119880:[117],119881:[118],119882:[119],119883:[120],119884:[121],119885:[122],119886:[97],119887:[98],119888:[99],119889:[100],119890:[101],119891:[102],119892:[103],119894:[105],119895:[106],119896:[107],119897:[108],119898:[109],119899:[110],119900:[111],119901:[112],119902:[113],119903:[114],119904:[115],119905:[116],119906:[117],119907:[118],119908:[119],119909:[120],119910:[121],119911:[122],119912:[97],119913:[98],119914:[99],119915:[100],119916:[101],119917:[102],119918:[103],119919:[104],119920:[105],119921:[106],119922:[107],119923:[108],119924:[109],119925:[110],119926:[111],119927:[112],119928:[113],119929:[114],119930:[115],119931:[116],119932:[117],119933:[118],119934:[119],119935:[120],119936:[121],119937:[122],119938:[97],119939:[98],119940:[99],119941:[100],119942:[101],119943:[102],119944:[103],119945:[104],119946:[105],119947:[106],119948:[107],119949:[108],119950:[109],119951:[110],119952:[111],119953:[112],119954:[113],119955:[114],119956:[115],119957:[116],119958:[117],119959:[118],119960:[119],119961:[120],119962:[121],119963:[122],119964:[97],119966:[99],119967:[100],119970:[103],119973:[106],119974:[107],119977:[110],119978:[111],119979:[112],119980:[113],119982:[115],119983:[116],119984:[117],119985:[118],119986:[119],119987:[120],119988:[121],119989:[122],119990:[97],119991:[98],119992:[99],119993:[100],119995:[102],119997:[104],119998:[105],119999:[106],12e4:[107],120001:[108],120002:[109],120003:[110],120005:[112],120006:[113],120007:[114],120008:[115],120009:[116],120010:[117],120011:[118],120012:[119],120013:[120],120014:[121],120015:[122],120016:[97],120017:[98],120018:[99],120019:[100],120020:[101],120021:[102],120022:[103],120023:[104],120024:[105],120025:[106],120026:[107],120027:[108],120028:[109],120029:[110],120030:[111],120031:[112],120032:[113],120033:[114],120034:[115],120035:[116],120036:[117],120037:[118],120038:[119],120039:[120],120040:[121],120041:[122],120042:[97],120043:[98],120044:[99],120045:[100],120046:[101],120047:[102],120048:[103],120049:[104],120050:[105],120051:[106],120052:[107],120053:[108],120054:[109],120055:[110],120056:[111],120057:[112],120058:[113],120059:[114],120060:[115],120061:[116],120062:[117],120063:[118],120064:[119],120065:[120],120066:[121],120067:[122],120068:[97],120069:[98],120071:[100],120072:[101],120073:[102],120074:[103],120077:[106],120078:[107],120079:[108],120080:[109],120081:[110],120082:[111],120083:[112],120084:[113],120086:[115],120087:[116],120088:[117],120089:[118],120090:[119],120091:[120],120092:[121],120094:[97],120095:[98],120096:[99],120097:[100],120098:[101],120099:[102],120100:[103],120101:[104],120102:[105],120103:[106],120104:[107],120105:[108],120106:[109],120107:[110],120108:[111],120109:[112],120110:[113],120111:[114],120112:[115],120113:[116],120114:[117],120115:[118],120116:[119],120117:[120],120118:[121],120119:[122],120120:[97],120121:[98],120123:[100],120124:[101],120125:[102],120126:[103],120128:[105],120129:[106],120130:[107],120131:[108],120132:[109],120134:[111],120138:[115],120139:[116],120140:[117],120141:[118],120142:[119],120143:[120],120144:[121],120146:[97],120147:[98],120148:[99],120149:[100],120150:[101],120151:[102],120152:[103],120153:[104],120154:[105],120155:[106],120156:[107],120157:[108],120158:[109],120159:[110],120160:[111],120161:[112],120162:[113],120163:[114],120164:[115],120165:[116],120166:[117],120167:[118],120168:[119],120169:[120],120170:[121],120171:[122],120172:[97],120173:[98],120174:[99],120175:[100],120176:[101],120177:[102],120178:[103],120179:[104],120180:[105],120181:[106],120182:[107],120183:[108],120184:[109],120185:[110],120186:[111],120187:[112],120188:[113],120189:[114],120190:[115],120191:[116],120192:[117],120193:[118],120194:[119],120195:[120],120196:[121],120197:[122],120198:[97],120199:[98],120200:[99],120201:[100],120202:[101],120203:[102],120204:[103],120205:[104],120206:[105],120207:[106],120208:[107],120209:[108],120210:[109],120211:[110],120212:[111],120213:[112],120214:[113],120215:[114],120216:[115],120217:[116],120218:[117],120219:[118],120220:[119],120221:[120],120222:[121],120223:[122],120224:[97],120225:[98],120226:[99],120227:[100],120228:[101],120229:[102],120230:[103],120231:[104],120232:[105],120233:[106],120234:[107],120235:[108],120236:[109],120237:[110],120238:[111],120239:[112],120240:[113],120241:[114],120242:[115],120243:[116],120244:[117],120245:[118],120246:[119],120247:[120],120248:[121],120249:[122],120250:[97],120251:[98],120252:[99],120253:[100],120254:[101],120255:[102],120256:[103],120257:[104],120258:[105],120259:[106],120260:[107],120261:[108],120262:[109],120263:[110],120264:[111],120265:[112],120266:[113],120267:[114],120268:[115],120269:[116],120270:[117],120271:[118],120272:[119],120273:[120],120274:[121],120275:[122],120276:[97],120277:[98],120278:[99],120279:[100],120280:[101],120281:[102],120282:[103],120283:[104],120284:[105],120285:[106],120286:[107],120287:[108],120288:[109],120289:[110],120290:[111],120291:[112],120292:[113],120293:[114],120294:[115],120295:[116],120296:[117],120297:[118],120298:[119],120299:[120],120300:[121],120301:[122],120302:[97],120303:[98],120304:[99],120305:[100],120306:[101],120307:[102],120308:[103],120309:[104],120310:[105],120311:[106],120312:[107],120313:[108],120314:[109],120315:[110],120316:[111],120317:[112],120318:[113],120319:[114],120320:[115],120321:[116],120322:[117],120323:[118],120324:[119],120325:[120],120326:[121],120327:[122],120328:[97],120329:[98],120330:[99],120331:[100],120332:[101],120333:[102],120334:[103],120335:[104],120336:[105],120337:[106],120338:[107],120339:[108],120340:[109],120341:[110],120342:[111],120343:[112],120344:[113],120345:[114],120346:[115],120347:[116],120348:[117],120349:[118],120350:[119],120351:[120],120352:[121],120353:[122],120354:[97],120355:[98],120356:[99],120357:[100],120358:[101],120359:[102],120360:[103],120361:[104],120362:[105],120363:[106],120364:[107],120365:[108],120366:[109],120367:[110],120368:[111],120369:[112],120370:[113],120371:[114],120372:[115],120373:[116],120374:[117],120375:[118],120376:[119],120377:[120],120378:[121],120379:[122],120380:[97],120381:[98],120382:[99],120383:[100],120384:[101],120385:[102],120386:[103],120387:[104],120388:[105],120389:[106],120390:[107],120391:[108],120392:[109],120393:[110],120394:[111],120395:[112],120396:[113],120397:[114],120398:[115],120399:[116],120400:[117],120401:[118],120402:[119],120403:[120],120404:[121],120405:[122],120406:[97],120407:[98],120408:[99],120409:[100],120410:[101],120411:[102],120412:[103],120413:[104],120414:[105],120415:[106],120416:[107],120417:[108],120418:[109],120419:[110],120420:[111],120421:[112],120422:[113],120423:[114],120424:[115],120425:[116],120426:[117],120427:[118],120428:[119],120429:[120],120430:[121],120431:[122],120432:[97],120433:[98],120434:[99],120435:[100],120436:[101],120437:[102],120438:[103],120439:[104],120440:[105],120441:[106],120442:[107],120443:[108],120444:[109],120445:[110],120446:[111],120447:[112],120448:[113],120449:[114],120450:[115],120451:[116],120452:[117],120453:[118],120454:[119],120455:[120],120456:[121],120457:[122],120458:[97],120459:[98],120460:[99],120461:[100],120462:[101],120463:[102],120464:[103],120465:[104],120466:[105],120467:[106],120468:[107],120469:[108],120470:[109],120471:[110],120472:[111],120473:[112],120474:[113],120475:[114],120476:[115],120477:[116],120478:[117],120479:[118],120480:[119],120481:[120],120482:[121],120483:[122],120484:[305],120485:[567],120488:[945],120489:[946],120490:[947],120491:[948],120492:[949],120493:[950],120494:[951],120495:[952],120496:[953],120497:[954],120498:[955],120499:[956],120500:[957],120501:[958],120502:[959],120503:[960],120504:[961],120505:[952],120506:[963],120507:[964],120508:[965],120509:[966],120510:[967],120511:[968],120512:[969],120513:[8711],120514:[945],120515:[946],120516:[947],120517:[948],120518:[949],120519:[950],120520:[951],120521:[952],120522:[953],120523:[954],120524:[955],120525:[956],120526:[957],120527:[958],120528:[959],120529:[960],120530:[961],120531:[963],120533:[964],120534:[965],120535:[966],120536:[967],120537:[968],120538:[969],120539:[8706],120540:[949],120541:[952],120542:[954],120543:[966],120544:[961],120545:[960],120546:[945],120547:[946],120548:[947],120549:[948],120550:[949],120551:[950],120552:[951],120553:[952],120554:[953],120555:[954],120556:[955],120557:[956],120558:[957],120559:[958],120560:[959],120561:[960],120562:[961],120563:[952],120564:[963],120565:[964],120566:[965],120567:[966],120568:[967],120569:[968],120570:[969],120571:[8711],120572:[945],120573:[946],120574:[947],120575:[948],120576:[949],120577:[950],120578:[951],120579:[952],120580:[953],120581:[954],120582:[955],120583:[956],120584:[957],120585:[958],120586:[959],120587:[960],120588:[961],120589:[963],120591:[964],120592:[965],120593:[966],120594:[967],120595:[968],120596:[969],120597:[8706],120598:[949],120599:[952],120600:[954],120601:[966],120602:[961],120603:[960],120604:[945],120605:[946],120606:[947],120607:[948],120608:[949],120609:[950],120610:[951],120611:[952],120612:[953],120613:[954],120614:[955],120615:[956],120616:[957],120617:[958],120618:[959],120619:[960],120620:[961],120621:[952],120622:[963],120623:[964],120624:[965],120625:[966],120626:[967],120627:[968],120628:[969],120629:[8711],120630:[945],120631:[946],120632:[947],120633:[948],120634:[949],120635:[950],120636:[951],120637:[952],120638:[953],120639:[954],120640:[955],120641:[956],120642:[957],120643:[958],120644:[959],120645:[960],120646:[961],120647:[963],120649:[964],120650:[965],120651:[966],120652:[967],120653:[968],120654:[969],120655:[8706],120656:[949],120657:[952],120658:[954],120659:[966],120660:[961],120661:[960],120662:[945],120663:[946],120664:[947],120665:[948],120666:[949],120667:[950],120668:[951],120669:[952],120670:[953],120671:[954],120672:[955],120673:[956],120674:[957],120675:[958],120676:[959],120677:[960],120678:[961],120679:[952],120680:[963],120681:[964],120682:[965],120683:[966],120684:[967],120685:[968],120686:[969],120687:[8711],120688:[945],120689:[946],120690:[947],120691:[948],120692:[949],120693:[950],120694:[951],120695:[952],120696:[953],120697:[954],120698:[955],120699:[956],120700:[957],120701:[958],120702:[959],120703:[960],120704:[961],120705:[963],120707:[964],120708:[965],120709:[966],120710:[967],120711:[968],120712:[969],120713:[8706],120714:[949],120715:[952],120716:[954],120717:[966],120718:[961],120719:[960],120720:[945],120721:[946],120722:[947],120723:[948],120724:[949],120725:[950],120726:[951],120727:[952],120728:[953],120729:[954],120730:[955],120731:[956],120732:[957],120733:[958],120734:[959],120735:[960],120736:[961],120737:[952],120738:[963],120739:[964],120740:[965],120741:[966],120742:[967],120743:[968],120744:[969],120745:[8711],120746:[945],120747:[946],120748:[947],120749:[948],120750:[949],120751:[950],120752:[951],120753:[952],120754:[953],120755:[954],120756:[955],120757:[956],120758:[957],120759:[958],120760:[959],120761:[960],120762:[961],120763:[963],120765:[964],120766:[965],120767:[966],120768:[967],120769:[968],120770:[969],120771:[8706],120772:[949],120773:[952],120774:[954],120775:[966],120776:[961],120777:[960],120778:[989],120782:[48],120783:[49],120784:[50],120785:[51],120786:[52],120787:[53],120788:[54],120789:[55],120790:[56],120791:[57],120792:[48],120793:[49],120794:[50],120795:[51],120796:[52],120797:[53],120798:[54],120799:[55],120800:[56],120801:[57],120802:[48],120803:[49],120804:[50],120805:[51],120806:[52],120807:[53],120808:[54],120809:[55],120810:[56],120811:[57],120812:[48],120813:[49],120814:[50],120815:[51],120816:[52],120817:[53],120818:[54],120819:[55],120820:[56],120821:[57],120822:[48],120823:[49],120824:[50],120825:[51],120826:[52],120827:[53],120828:[54],120829:[55],120830:[56],120831:[57],122928:[1072],122929:[1073],122930:[1074],122931:[1075],122932:[1076],122933:[1077],122934:[1078],122935:[1079],122936:[1080],122937:[1082],122938:[1083],122939:[1084],122940:[1086],122941:[1087],122942:[1088],122943:[1089],122944:[1090],122945:[1091],122946:[1092],122947:[1093],122948:[1094],122949:[1095],122950:[1096],122951:[1099],122952:[1101],122953:[1102],122954:[42633],122955:[1241],122956:[1110],122957:[1112],122958:[1257],122959:[1199],122960:[1231],122961:[1072],122962:[1073],122963:[1074],122964:[1075],122965:[1076],122966:[1077],122967:[1078],122968:[1079],122969:[1080],122970:[1082],122971:[1083],122972:[1086],122973:[1087],122974:[1089],122975:[1091],122976:[1092],122977:[1093],122978:[1094],122979:[1095],122980:[1096],122981:[1098],122982:[1099],122983:[1169],122984:[1110],122985:[1109],122986:[1119],122987:[1195],122988:[42577],122989:[1201],125184:[125218],125185:[125219],125186:[125220],125187:[125221],125188:[125222],125189:[125223],125190:[125224],125191:[125225],125192:[125226],125193:[125227],125194:[125228],125195:[125229],125196:[125230],125197:[125231],125198:[125232],125199:[125233],125200:[125234],125201:[125235],125202:[125236],125203:[125237],125204:[125238],125205:[125239],125206:[125240],125207:[125241],125208:[125242],125209:[125243],125210:[125244],125211:[125245],125212:[125246],125213:[125247],125214:[125248],125215:[125249],125216:[125250],125217:[125251],126464:[1575],126465:[1576],126466:[1580],126467:[1583],126469:[1608],126470:[1586],126471:[1581],126472:[1591],126473:[1610],126474:[1603],126475:[1604],126476:[1605],126477:[1606],126478:[1587],126479:[1593],126480:[1601],126481:[1589],126482:[1602],126483:[1585],126484:[1588],126485:[1578],126486:[1579],126487:[1582],126488:[1584],126489:[1590],126490:[1592],126491:[1594],126492:[1646],126493:[1722],126494:[1697],126495:[1647],126497:[1576],126498:[1580],126500:[1607],126503:[1581],126505:[1610],126506:[1603],126507:[1604],126508:[1605],126509:[1606],126510:[1587],126511:[1593],126512:[1601],126513:[1589],126514:[1602],126516:[1588],126517:[1578],126518:[1579],126519:[1582],126521:[1590],126523:[1594],126530:[1580],126535:[1581],126537:[1610],126539:[1604],126541:[1606],126542:[1587],126543:[1593],126545:[1589],126546:[1602],126548:[1588],126551:[1582],126553:[1590],126555:[1594],126557:[1722],126559:[1647],126561:[1576],126562:[1580],126564:[1607],126567:[1581],126568:[1591],126569:[1610],126570:[1603],126572:[1605],126573:[1606],126574:[1587],126575:[1593],126576:[1601],126577:[1589],126578:[1602],126580:[1588],126581:[1578],126582:[1579],126583:[1582],126585:[1590],126586:[1592],126587:[1594],126588:[1646],126590:[1697],126592:[1575],126593:[1576],126594:[1580],126595:[1583],126596:[1607],126597:[1608],126598:[1586],126599:[1581],126600:[1591],126601:[1610],126603:[1604],126604:[1605],126605:[1606],126606:[1587],126607:[1593],126608:[1601],126609:[1589],126610:[1602],126611:[1585],126612:[1588],126613:[1578],126614:[1579],126615:[1582],126616:[1584],126617:[1590],126618:[1592],126619:[1594],126625:[1576],126626:[1580],126627:[1583],126629:[1608],126630:[1586],126631:[1581],126632:[1591],126633:[1610],126635:[1604],126636:[1605],126637:[1606],126638:[1587],126639:[1593],126640:[1601],126641:[1589],126642:[1602],126643:[1585],126644:[1588],126645:[1578],126646:[1579],126647:[1582],126648:[1584],126649:[1590],126650:[1592],126651:[1594],127233:[48,44],127234:[49,44],127235:[50,44],127236:[51,44],127237:[52,44],127238:[53,44],127239:[54,44],127240:[55,44],127241:[56,44],127242:[57,44],127248:[40,97,41],127249:[40,98,41],127250:[40,99,41],127251:[40,100,41],127252:[40,101,41],127253:[40,102,41],127254:[40,103,41],127255:[40,104,41],127256:[40,105,41],127257:[40,106,41],127258:[40,107,41],127259:[40,108,41],127260:[40,109,41],127261:[40,110,41],127262:[40,111,41],127263:[40,112,41],127264:[40,113,41],127265:[40,114,41],127266:[40,115,41],127267:[40,116,41],127268:[40,117,41],127269:[40,118,41],127270:[40,119,41],127271:[40,120,41],127272:[40,121,41],127273:[40,122,41],127274:[12308,115,12309],127275:[99],127276:[114],127277:[99,100],127278:[119,122],127280:[97],127281:[98],127282:[99],127283:[100],127284:[101],127285:[102],127286:[103],127287:[104],127288:[105],127289:[106],127290:[107],127291:[108],127292:[109],127293:[110],127294:[111],127295:[112],127296:[113],127297:[114],127298:[115],127299:[116],127300:[117],127301:[118],127302:[119],127303:[120],127304:[121],127305:[122],127306:[104,118],127307:[109,118],127308:[115,100],127309:[115,115],127310:[112,112,118],127311:[119,99],127338:[109,99],127339:[109,100],127340:[109,114],127376:[100,106],127488:[12411,12363],127489:[12467,12467],127490:[12469],127504:[25163],127505:[23383],127506:[21452],127507:[12487],127508:[20108],127509:[22810],127510:[35299],127511:[22825],127512:[20132],127513:[26144],127514:[28961],127515:[26009],127516:[21069],127517:[24460],127518:[20877],127519:[26032],127520:[21021],127521:[32066],127522:[29983],127523:[36009],127524:[22768],127525:[21561],127526:[28436],127527:[25237],127528:[25429],127529:[19968],127530:[19977],127531:[36938],127532:[24038],127533:[20013],127534:[21491],127535:[25351],127536:[36208],127537:[25171],127538:[31105],127539:[31354],127540:[21512],127541:[28288],127542:[26377],127543:[26376],127544:[30003],127545:[21106],127546:[21942],127547:[37197],127552:[12308,26412,12309],127553:[12308,19977,12309],127554:[12308,20108,12309],127555:[12308,23433,12309],127556:[12308,28857,12309],127557:[12308,25171,12309],127558:[12308,30423,12309],127559:[12308,21213,12309],127560:[12308,25943,12309],127568:[24471],127569:[21487],130032:[48],130033:[49],130034:[50],130035:[51],130036:[52],130037:[53],130038:[54],130039:[55],130040:[56],130041:[57],194560:[20029],194561:[20024],194562:[20033],194563:[131362],194564:[20320],194565:[20398],194566:[20411],194567:[20482],194568:[20602],194569:[20633],194570:[20711],194571:[20687],194572:[13470],194573:[132666],194574:[20813],194575:[20820],194576:[20836],194577:[20855],194578:[132380],194579:[13497],194580:[20839],194581:[20877],194582:[132427],194583:[20887],194584:[20900],194585:[20172],194586:[20908],194587:[20917],194588:[168415],194589:[20981],194590:[20995],194591:[13535],194592:[21051],194593:[21062],194594:[21106],194595:[21111],194596:[13589],194597:[21191],194598:[21193],194599:[21220],194600:[21242],194601:[21253],194602:[21254],194603:[21271],194604:[21321],194605:[21329],194606:[21338],194607:[21363],194608:[21373],194609:[21375],194612:[133676],194613:[28784],194614:[21450],194615:[21471],194616:[133987],194617:[21483],194618:[21489],194619:[21510],194620:[21662],194621:[21560],194622:[21576],194623:[21608],194624:[21666],194625:[21750],194626:[21776],194627:[21843],194628:[21859],194629:[21892],194631:[21913],194632:[21931],194633:[21939],194634:[21954],194635:[22294],194636:[22022],194637:[22295],194638:[22097],194639:[22132],194640:[20999],194641:[22766],194642:[22478],194643:[22516],194644:[22541],194645:[22411],194646:[22578],194647:[22577],194648:[22700],194649:[136420],194650:[22770],194651:[22775],194652:[22790],194653:[22810],194654:[22818],194655:[22882],194656:[136872],194657:[136938],194658:[23020],194659:[23067],194660:[23079],194661:[23e3],194662:[23142],194663:[14062],194665:[23304],194666:[23358],194668:[137672],194669:[23491],194670:[23512],194671:[23527],194672:[23539],194673:[138008],194674:[23551],194675:[23558],194677:[23586],194678:[14209],194679:[23648],194680:[23662],194681:[23744],194682:[23693],194683:[138724],194684:[23875],194685:[138726],194686:[23918],194687:[23915],194688:[23932],194689:[24033],194690:[24034],194691:[14383],194692:[24061],194693:[24104],194694:[24125],194695:[24169],194696:[14434],194697:[139651],194698:[14460],194699:[24240],194700:[24243],194701:[24246],194702:[24266],194703:[172946],194704:[24318],194705:[140081],194707:[33281],194708:[24354],194710:[14535],194711:[144056],194712:[156122],194713:[24418],194714:[24427],194715:[14563],194716:[24474],194717:[24525],194718:[24535],194719:[24569],194720:[24705],194721:[14650],194722:[14620],194723:[24724],194724:[141012],194725:[24775],194726:[24904],194727:[24908],194728:[24910],194729:[24908],194730:[24954],194731:[24974],194732:[25010],194733:[24996],194734:[25007],194735:[25054],194736:[25074],194737:[25078],194738:[25104],194739:[25115],194740:[25181],194741:[25265],194742:[25300],194743:[25424],194744:[142092],194745:[25405],194746:[25340],194747:[25448],194748:[25475],194749:[25572],194750:[142321],194751:[25634],194752:[25541],194753:[25513],194754:[14894],194755:[25705],194756:[25726],194757:[25757],194758:[25719],194759:[14956],194760:[25935],194761:[25964],194762:[143370],194763:[26083],194764:[26360],194765:[26185],194766:[15129],194767:[26257],194768:[15112],194769:[15076],194770:[20882],194771:[20885],194772:[26368],194773:[26268],194774:[32941],194775:[17369],194776:[26391],194777:[26395],194778:[26401],194779:[26462],194780:[26451],194781:[144323],194782:[15177],194783:[26618],194784:[26501],194785:[26706],194786:[26757],194787:[144493],194788:[26766],194789:[26655],194790:[26900],194791:[15261],194792:[26946],194793:[27043],194794:[27114],194795:[27304],194796:[145059],194797:[27355],194798:[15384],194799:[27425],194800:[145575],194801:[27476],194802:[15438],194803:[27506],194804:[27551],194805:[27578],194806:[27579],194807:[146061],194808:[138507],194809:[146170],194810:[27726],194811:[146620],194812:[27839],194813:[27853],194814:[27751],194815:[27926],194816:[27966],194817:[28023],194818:[27969],194819:[28009],194820:[28024],194821:[28037],194822:[146718],194823:[27956],194824:[28207],194825:[28270],194826:[15667],194827:[28363],194828:[28359],194829:[147153],194830:[28153],194831:[28526],194832:[147294],194833:[147342],194834:[28614],194835:[28729],194836:[28702],194837:[28699],194838:[15766],194839:[28746],194840:[28797],194841:[28791],194842:[28845],194843:[132389],194844:[28997],194845:[148067],194846:[29084],194848:[29224],194849:[29237],194850:[29264],194851:[149e3],194852:[29312],194853:[29333],194854:[149301],194855:[149524],194856:[29562],194857:[29579],194858:[16044],194859:[29605],194860:[16056],194862:[29767],194863:[29788],194864:[29809],194865:[29829],194866:[29898],194867:[16155],194868:[29988],194869:[150582],194870:[30014],194871:[150674],194872:[30064],194873:[139679],194874:[30224],194875:[151457],194876:[151480],194877:[151620],194878:[16380],194879:[16392],194880:[30452],194881:[151795],194882:[151794],194883:[151833],194884:[151859],194885:[30494],194886:[30495],194888:[30538],194889:[16441],194890:[30603],194891:[16454],194892:[16534],194893:[152605],194894:[30798],194895:[30860],194896:[30924],194897:[16611],194898:[153126],194899:[31062],194900:[153242],194901:[153285],194902:[31119],194903:[31211],194904:[16687],194905:[31296],194906:[31306],194907:[31311],194908:[153980],194909:[154279],194912:[16898],194913:[154539],194914:[31686],194915:[31689],194916:[16935],194917:[154752],194918:[31954],194919:[17056],194920:[31976],194921:[31971],194922:[32e3],194923:[155526],194924:[32099],194925:[17153],194926:[32199],194927:[32258],194928:[32325],194929:[17204],194930:[156200],194931:[156231],194932:[17241],194933:[156377],194934:[32634],194935:[156478],194936:[32661],194937:[32762],194938:[32773],194939:[156890],194940:[156963],194941:[32864],194942:[157096],194943:[32880],194944:[144223],194945:[17365],194946:[32946],194947:[33027],194948:[17419],194949:[33086],194950:[23221],194951:[157607],194952:[157621],194953:[144275],194954:[144284],194955:[33281],194956:[33284],194957:[36766],194958:[17515],194959:[33425],194960:[33419],194961:[33437],194962:[21171],194963:[33457],194964:[33459],194965:[33469],194966:[33510],194967:[158524],194968:[33509],194969:[33565],194970:[33635],194971:[33709],194972:[33571],194973:[33725],194974:[33767],194975:[33879],194976:[33619],194977:[33738],194978:[33740],194979:[33756],194980:[158774],194981:[159083],194982:[158933],194983:[17707],194984:[34033],194985:[34035],194986:[34070],194987:[160714],194988:[34148],194989:[159532],194990:[17757],194991:[17761],194992:[159665],194993:[159954],194994:[17771],194995:[34384],194996:[34396],194997:[34407],194998:[34409],194999:[34473],195e3:[34440],195001:[34574],195002:[34530],195003:[34681],195004:[34600],195005:[34667],195006:[34694],195008:[34785],195009:[34817],195010:[17913],195011:[34912],195012:[34915],195013:[161383],195014:[35031],195015:[35038],195016:[17973],195017:[35066],195018:[13499],195019:[161966],195020:[162150],195021:[18110],195022:[18119],195023:[35488],195024:[35565],195025:[35722],195026:[35925],195027:[162984],195028:[36011],195029:[36033],195030:[36123],195031:[36215],195032:[163631],195033:[133124],195034:[36299],195035:[36284],195036:[36336],195037:[133342],195038:[36564],195039:[36664],195040:[165330],195041:[165357],195042:[37012],195043:[37105],195044:[37137],195045:[165678],195046:[37147],195047:[37432],195048:[37591],195049:[37592],195050:[37500],195051:[37881],195052:[37909],195053:[166906],195054:[38283],195055:[18837],195056:[38327],195057:[167287],195058:[18918],195059:[38595],195060:[23986],195061:[38691],195062:[168261],195063:[168474],195064:[19054],195065:[19062],195066:[38880],195067:[168970],195068:[19122],195069:[169110],195070:[38923],195072:[38953],195073:[169398],195074:[39138],195075:[19251],195076:[39209],195077:[39335],195078:[39362],195079:[39422],195080:[19406],195081:[170800],195082:[39698],195083:[4e4],195084:[40189],195085:[19662],195086:[19693],195087:[40295],195088:[172238],195089:[19704],195090:[172293],195091:[172558],195092:[172689],195093:[40635],195094:[19798],195095:[40697],195096:[40702],195097:[40709],195098:[40719],195099:[40726],195100:[40763],195101:[173568]},bidi_ranges:[[0,8,`BN`],[9,9,`S`],[10,10,`B`],[11,11,`S`],[12,12,`WS`],[13,13,`B`],[14,27,`BN`],[28,30,`B`],[31,31,`S`],[32,32,`WS`],[33,34,`ON`],[35,37,`ET`],[38,42,`ON`],[43,43,`ES`],[44,44,`CS`],[45,45,`ES`],[46,47,`CS`],[48,57,`EN`],[58,58,`CS`],[59,64,`ON`],[65,90,`L`],[91,96,`ON`],[97,122,`L`],[123,126,`ON`],[127,132,`BN`],[133,133,`B`],[134,159,`BN`],[160,160,`CS`],[161,161,`ON`],[162,165,`ET`],[166,169,`ON`],[170,170,`L`],[171,172,`ON`],[173,173,`BN`],[174,175,`ON`],[176,177,`ET`],[178,179,`EN`],[180,180,`ON`],[181,181,`L`],[182,184,`ON`],[185,185,`EN`],[186,186,`L`],[187,191,`ON`],[192,214,`L`],[215,215,`ON`],[216,246,`L`],[247,247,`ON`],[248,696,`L`],[697,698,`ON`],[699,705,`L`],[706,719,`ON`],[720,721,`L`],[722,735,`ON`],[736,740,`L`],[741,749,`ON`],[750,750,`L`],[751,767,`ON`],[768,879,`NSM`],[880,883,`L`],[884,885,`ON`],[886,887,`L`],[890,893,`L`],[894,894,`ON`],[895,895,`L`],[900,901,`ON`],[902,902,`L`],[903,903,`ON`],[904,906,`L`],[908,908,`L`],[910,929,`L`],[931,1013,`L`],[1014,1014,`ON`],[1015,1154,`L`],[1155,1161,`NSM`],[1162,1327,`L`],[1329,1366,`L`],[1369,1417,`L`],[1418,1418,`ON`],[1421,1422,`ON`],[1423,1423,`ET`],[1425,1469,`NSM`],[1470,1470,`R`],[1471,1471,`NSM`],[1472,1472,`R`],[1473,1474,`NSM`],[1475,1475,`R`],[1476,1477,`NSM`],[1478,1478,`R`],[1479,1479,`NSM`],[1488,1514,`R`],[1519,1524,`R`],[1536,1541,`AN`],[1542,1543,`ON`],[1544,1544,`AL`],[1545,1546,`ET`],[1547,1547,`AL`],[1548,1548,`CS`],[1549,1549,`AL`],[1550,1551,`ON`],[1552,1562,`NSM`],[1563,1610,`AL`],[1611,1631,`NSM`],[1632,1641,`AN`],[1642,1642,`ET`],[1643,1644,`AN`],[1645,1647,`AL`],[1648,1648,`NSM`],[1649,1749,`AL`],[1750,1756,`NSM`],[1757,1757,`AN`],[1758,1758,`ON`],[1759,1764,`NSM`],[1765,1766,`AL`],[1767,1768,`NSM`],[1769,1769,`ON`],[1770,1773,`NSM`],[1774,1775,`AL`],[1776,1785,`EN`],[1786,1805,`AL`],[1807,1808,`AL`],[1809,1809,`NSM`],[1810,1839,`AL`],[1840,1866,`NSM`],[1869,1957,`AL`],[1958,1968,`NSM`],[1969,1969,`AL`],[1984,2026,`R`],[2027,2035,`NSM`],[2036,2037,`R`],[2038,2041,`ON`],[2042,2042,`R`],[2045,2045,`NSM`],[2046,2069,`R`],[2070,2073,`NSM`],[2074,2074,`R`],[2075,2083,`NSM`],[2084,2084,`R`],[2085,2087,`NSM`],[2088,2088,`R`],[2089,2093,`NSM`],[2096,2110,`R`],[2112,2136,`R`],[2137,2139,`NSM`],[2142,2142,`R`],[2144,2154,`AL`],[2160,2190,`AL`],[2192,2193,`AN`],[2200,2207,`NSM`],[2208,2249,`AL`],[2250,2273,`NSM`],[2274,2274,`AN`],[2275,2306,`NSM`],[2307,2361,`L`],[2362,2362,`NSM`],[2363,2363,`L`],[2364,2364,`NSM`],[2365,2368,`L`],[2369,2376,`NSM`],[2377,2380,`L`],[2381,2381,`NSM`],[2382,2384,`L`],[2385,2391,`NSM`],[2392,2401,`L`],[2402,2403,`NSM`],[2404,2432,`L`],[2433,2433,`NSM`],[2434,2435,`L`],[2437,2444,`L`],[2447,2448,`L`],[2451,2472,`L`],[2474,2480,`L`],[2482,2482,`L`],[2486,2489,`L`],[2492,2492,`NSM`],[2493,2496,`L`],[2497,2500,`NSM`],[2503,2504,`L`],[2507,2508,`L`],[2509,2509,`NSM`],[2510,2510,`L`],[2519,2519,`L`],[2524,2525,`L`],[2527,2529,`L`],[2530,2531,`NSM`],[2534,2545,`L`],[2546,2547,`ET`],[2548,2554,`L`],[2555,2555,`ET`],[2556,2557,`L`],[2558,2558,`NSM`],[2561,2562,`NSM`],[2563,2563,`L`],[2565,2570,`L`],[2575,2576,`L`],[2579,2600,`L`],[2602,2608,`L`],[2610,2611,`L`],[2613,2614,`L`],[2616,2617,`L`],[2620,2620,`NSM`],[2622,2624,`L`],[2625,2626,`NSM`],[2631,2632,`NSM`],[2635,2637,`NSM`],[2641,2641,`NSM`],[2649,2652,`L`],[2654,2654,`L`],[2662,2671,`L`],[2672,2673,`NSM`],[2674,2676,`L`],[2677,2677,`NSM`],[2678,2678,`L`],[2689,2690,`NSM`],[2691,2691,`L`],[2693,2701,`L`],[2703,2705,`L`],[2707,2728,`L`],[2730,2736,`L`],[2738,2739,`L`],[2741,2745,`L`],[2748,2748,`NSM`],[2749,2752,`L`],[2753,2757,`NSM`],[2759,2760,`NSM`],[2761,2761,`L`],[2763,2764,`L`],[2765,2765,`NSM`],[2768,2768,`L`],[2784,2785,`L`],[2786,2787,`NSM`],[2790,2800,`L`],[2801,2801,`ET`],[2809,2809,`L`],[2810,2815,`NSM`],[2817,2817,`NSM`],[2818,2819,`L`],[2821,2828,`L`],[2831,2832,`L`],[2835,2856,`L`],[2858,2864,`L`],[2866,2867,`L`],[2869,2873,`L`],[2876,2876,`NSM`],[2877,2878,`L`],[2879,2879,`NSM`],[2880,2880,`L`],[2881,2884,`NSM`],[2887,2888,`L`],[2891,2892,`L`],[2893,2893,`NSM`],[2901,2902,`NSM`],[2903,2903,`L`],[2908,2909,`L`],[2911,2913,`L`],[2914,2915,`NSM`],[2918,2935,`L`],[2946,2946,`NSM`],[2947,2947,`L`],[2949,2954,`L`],[2958,2960,`L`],[2962,2965,`L`],[2969,2970,`L`],[2972,2972,`L`],[2974,2975,`L`],[2979,2980,`L`],[2984,2986,`L`],[2990,3001,`L`],[3006,3007,`L`],[3008,3008,`NSM`],[3009,3010,`L`],[3014,3016,`L`],[3018,3020,`L`],[3021,3021,`NSM`],[3024,3024,`L`],[3031,3031,`L`],[3046,3058,`L`],[3059,3064,`ON`],[3065,3065,`ET`],[3066,3066,`ON`],[3072,3072,`NSM`],[3073,3075,`L`],[3076,3076,`NSM`],[3077,3084,`L`],[3086,3088,`L`],[3090,3112,`L`],[3114,3129,`L`],[3132,3132,`NSM`],[3133,3133,`L`],[3134,3136,`NSM`],[3137,3140,`L`],[3142,3144,`NSM`],[3146,3149,`NSM`],[3157,3158,`NSM`],[3160,3162,`L`],[3165,3165,`L`],[3168,3169,`L`],[3170,3171,`NSM`],[3174,3183,`L`],[3191,3191,`L`],[3192,3198,`ON`],[3199,3200,`L`],[3201,3201,`NSM`],[3202,3212,`L`],[3214,3216,`L`],[3218,3240,`L`],[3242,3251,`L`],[3253,3257,`L`],[3260,3260,`NSM`],[3261,3268,`L`],[3270,3272,`L`],[3274,3275,`L`],[3276,3277,`NSM`],[3285,3286,`L`],[3293,3294,`L`],[3296,3297,`L`],[3298,3299,`NSM`],[3302,3311,`L`],[3313,3315,`L`],[3328,3329,`NSM`],[3330,3340,`L`],[3342,3344,`L`],[3346,3386,`L`],[3387,3388,`NSM`],[3389,3392,`L`],[3393,3396,`NSM`],[3398,3400,`L`],[3402,3404,`L`],[3405,3405,`NSM`],[3406,3407,`L`],[3412,3425,`L`],[3426,3427,`NSM`],[3430,3455,`L`],[3457,3457,`NSM`],[3458,3459,`L`],[3461,3478,`L`],[3482,3505,`L`],[3507,3515,`L`],[3517,3517,`L`],[3520,3526,`L`],[3530,3530,`NSM`],[3535,3537,`L`],[3538,3540,`NSM`],[3542,3542,`NSM`],[3544,3551,`L`],[3558,3567,`L`],[3570,3572,`L`],[3585,3632,`L`],[3633,3633,`NSM`],[3634,3635,`L`],[3636,3642,`NSM`],[3647,3647,`ET`],[3648,3654,`L`],[3655,3662,`NSM`],[3663,3675,`L`],[3713,3714,`L`],[3716,3716,`L`],[3718,3722,`L`],[3724,3747,`L`],[3749,3749,`L`],[3751,3760,`L`],[3761,3761,`NSM`],[3762,3763,`L`],[3764,3772,`NSM`],[3773,3773,`L`],[3776,3780,`L`],[3782,3782,`L`],[3784,3790,`NSM`],[3792,3801,`L`],[3804,3807,`L`],[3840,3863,`L`],[3864,3865,`NSM`],[3866,3892,`L`],[3893,3893,`NSM`],[3894,3894,`L`],[3895,3895,`NSM`],[3896,3896,`L`],[3897,3897,`NSM`],[3898,3901,`ON`],[3902,3911,`L`],[3913,3948,`L`],[3953,3966,`NSM`],[3967,3967,`L`],[3968,3972,`NSM`],[3973,3973,`L`],[3974,3975,`NSM`],[3976,3980,`L`],[3981,3991,`NSM`],[3993,4028,`NSM`],[4030,4037,`L`],[4038,4038,`NSM`],[4039,4044,`L`],[4046,4058,`L`],[4096,4140,`L`],[4141,4144,`NSM`],[4145,4145,`L`],[4146,4151,`NSM`],[4152,4152,`L`],[4153,4154,`NSM`],[4155,4156,`L`],[4157,4158,`NSM`],[4159,4183,`L`],[4184,4185,`NSM`],[4186,4189,`L`],[4190,4192,`NSM`],[4193,4208,`L`],[4209,4212,`NSM`],[4213,4225,`L`],[4226,4226,`NSM`],[4227,4228,`L`],[4229,4230,`NSM`],[4231,4236,`L`],[4237,4237,`NSM`],[4238,4252,`L`],[4253,4253,`NSM`],[4254,4293,`L`],[4295,4295,`L`],[4301,4301,`L`],[4304,4680,`L`],[4682,4685,`L`],[4688,4694,`L`],[4696,4696,`L`],[4698,4701,`L`],[4704,4744,`L`],[4746,4749,`L`],[4752,4784,`L`],[4786,4789,`L`],[4792,4798,`L`],[4800,4800,`L`],[4802,4805,`L`],[4808,4822,`L`],[4824,4880,`L`],[4882,4885,`L`],[4888,4954,`L`],[4957,4959,`NSM`],[4960,4988,`L`],[4992,5007,`L`],[5008,5017,`ON`],[5024,5109,`L`],[5112,5117,`L`],[5120,5120,`ON`],[5121,5759,`L`],[5760,5760,`WS`],[5761,5786,`L`],[5787,5788,`ON`],[5792,5880,`L`],[5888,5905,`L`],[5906,5908,`NSM`],[5909,5909,`L`],[5919,5937,`L`],[5938,5939,`NSM`],[5940,5942,`L`],[5952,5969,`L`],[5970,5971,`NSM`],[5984,5996,`L`],[5998,6e3,`L`],[6002,6003,`NSM`],[6016,6067,`L`],[6068,6069,`NSM`],[6070,6070,`L`],[6071,6077,`NSM`],[6078,6085,`L`],[6086,6086,`NSM`],[6087,6088,`L`],[6089,6099,`NSM`],[6100,6106,`L`],[6107,6107,`ET`],[6108,6108,`L`],[6109,6109,`NSM`],[6112,6121,`L`],[6128,6137,`ON`],[6144,6154,`ON`],[6155,6157,`NSM`],[6158,6158,`BN`],[6159,6159,`NSM`],[6160,6169,`L`],[6176,6264,`L`],[6272,6276,`L`],[6277,6278,`NSM`],[6279,6312,`L`],[6313,6313,`NSM`],[6314,6314,`L`],[6320,6389,`L`],[6400,6430,`L`],[6432,6434,`NSM`],[6435,6438,`L`],[6439,6440,`NSM`],[6441,6443,`L`],[6448,6449,`L`],[6450,6450,`NSM`],[6451,6456,`L`],[6457,6459,`NSM`],[6464,6464,`ON`],[6468,6469,`ON`],[6470,6509,`L`],[6512,6516,`L`],[6528,6571,`L`],[6576,6601,`L`],[6608,6618,`L`],[6622,6655,`ON`],[6656,6678,`L`],[6679,6680,`NSM`],[6681,6682,`L`],[6683,6683,`NSM`],[6686,6741,`L`],[6742,6742,`NSM`],[6743,6743,`L`],[6744,6750,`NSM`],[6752,6752,`NSM`],[6753,6753,`L`],[6754,6754,`NSM`],[6755,6756,`L`],[6757,6764,`NSM`],[6765,6770,`L`],[6771,6780,`NSM`],[6783,6783,`NSM`],[6784,6793,`L`],[6800,6809,`L`],[6816,6829,`L`],[6832,6862,`NSM`],[6912,6915,`NSM`],[6916,6963,`L`],[6964,6964,`NSM`],[6965,6965,`L`],[6966,6970,`NSM`],[6971,6971,`L`],[6972,6972,`NSM`],[6973,6977,`L`],[6978,6978,`NSM`],[6979,6988,`L`],[6992,7018,`L`],[7019,7027,`NSM`],[7028,7038,`L`],[7040,7041,`NSM`],[7042,7073,`L`],[7074,7077,`NSM`],[7078,7079,`L`],[7080,7081,`NSM`],[7082,7082,`L`],[7083,7085,`NSM`],[7086,7141,`L`],[7142,7142,`NSM`],[7143,7143,`L`],[7144,7145,`NSM`],[7146,7148,`L`],[7149,7149,`NSM`],[7150,7150,`L`],[7151,7153,`NSM`],[7154,7155,`L`],[7164,7211,`L`],[7212,7219,`NSM`],[7220,7221,`L`],[7222,7223,`NSM`],[7227,7241,`L`],[7245,7304,`L`],[7312,7354,`L`],[7357,7367,`L`],[7376,7378,`NSM`],[7379,7379,`L`],[7380,7392,`NSM`],[7393,7393,`L`],[7394,7400,`NSM`],[7401,7404,`L`],[7405,7405,`NSM`],[7406,7411,`L`],[7412,7412,`NSM`],[7413,7415,`L`],[7416,7417,`NSM`],[7418,7418,`L`],[7424,7615,`L`],[7616,7679,`NSM`],[7680,7957,`L`],[7960,7965,`L`],[7968,8005,`L`],[8008,8013,`L`],[8016,8023,`L`],[8025,8025,`L`],[8027,8027,`L`],[8029,8029,`L`],[8031,8061,`L`],[8064,8116,`L`],[8118,8124,`L`],[8125,8125,`ON`],[8126,8126,`L`],[8127,8129,`ON`],[8130,8132,`L`],[8134,8140,`L`],[8141,8143,`ON`],[8144,8147,`L`],[8150,8155,`L`],[8157,8159,`ON`],[8160,8172,`L`],[8173,8175,`ON`],[8178,8180,`L`],[8182,8188,`L`],[8189,8190,`ON`],[8192,8202,`WS`],[8203,8205,`BN`],[8206,8206,`L`],[8207,8207,`R`],[8208,8231,`ON`],[8232,8232,`WS`],[8233,8233,`B`],[8234,8234,`LRE`],[8235,8235,`RLE`],[8236,8236,`PDF`],[8237,8237,`LRO`],[8238,8238,`RLO`],[8239,8239,`CS`],[8240,8244,`ET`],[8245,8259,`ON`],[8260,8260,`CS`],[8261,8286,`ON`],[8287,8287,`WS`],[8288,8293,`BN`],[8294,8294,`LRI`],[8295,8295,`RLI`],[8296,8296,`FSI`],[8297,8297,`PDI`],[8298,8303,`BN`],[8304,8304,`EN`],[8305,8305,`L`],[8308,8313,`EN`],[8314,8315,`ES`],[8316,8318,`ON`],[8319,8319,`L`],[8320,8329,`EN`],[8330,8331,`ES`],[8332,8334,`ON`],[8336,8348,`L`],[8352,8384,`ET`],[8400,8432,`NSM`],[8448,8449,`ON`],[8450,8450,`L`],[8451,8454,`ON`],[8455,8455,`L`],[8456,8457,`ON`],[8458,8467,`L`],[8468,8468,`ON`],[8469,8469,`L`],[8470,8472,`ON`],[8473,8477,`L`],[8478,8483,`ON`],[8484,8484,`L`],[8485,8485,`ON`],[8486,8486,`L`],[8487,8487,`ON`],[8488,8488,`L`],[8489,8489,`ON`],[8490,8493,`L`],[8494,8494,`ET`],[8495,8505,`L`],[8506,8507,`ON`],[8508,8511,`L`],[8512,8516,`ON`],[8517,8521,`L`],[8522,8525,`ON`],[8526,8527,`L`],[8528,8543,`ON`],[8544,8584,`L`],[8585,8587,`ON`],[8592,8721,`ON`],[8722,8722,`ES`],[8723,8723,`ET`],[8724,9013,`ON`],[9014,9082,`L`],[9083,9108,`ON`],[9109,9109,`L`],[9110,9254,`ON`],[9280,9290,`ON`],[9312,9351,`ON`],[9352,9371,`EN`],[9372,9449,`L`],[9450,9899,`ON`],[9900,9900,`L`],[9901,10239,`ON`],[10240,10495,`L`],[10496,11123,`ON`],[11126,11157,`ON`],[11159,11263,`ON`],[11264,11492,`L`],[11493,11498,`ON`],[11499,11502,`L`],[11503,11505,`NSM`],[11506,11507,`L`],[11513,11519,`ON`],[11520,11557,`L`],[11559,11559,`L`],[11565,11565,`L`],[11568,11623,`L`],[11631,11632,`L`],[11647,11647,`NSM`],[11648,11670,`L`],[11680,11686,`L`],[11688,11694,`L`],[11696,11702,`L`],[11704,11710,`L`],[11712,11718,`L`],[11720,11726,`L`],[11728,11734,`L`],[11736,11742,`L`],[11744,11775,`NSM`],[11776,11869,`ON`],[11904,11929,`ON`],[11931,12019,`ON`],[12032,12245,`ON`],[12272,12287,`ON`],[12288,12288,`WS`],[12289,12292,`ON`],[12293,12295,`L`],[12296,12320,`ON`],[12321,12329,`L`],[12330,12333,`NSM`],[12334,12335,`L`],[12336,12336,`ON`],[12337,12341,`L`],[12342,12343,`ON`],[12344,12348,`L`],[12349,12351,`ON`],[12353,12438,`L`],[12441,12442,`NSM`],[12443,12444,`ON`],[12445,12447,`L`],[12448,12448,`ON`],[12449,12538,`L`],[12539,12539,`ON`],[12540,12543,`L`],[12549,12591,`L`],[12593,12686,`L`],[12688,12735,`L`],[12736,12771,`ON`],[12783,12783,`ON`],[12784,12828,`L`],[12829,12830,`ON`],[12832,12879,`L`],[12880,12895,`ON`],[12896,12923,`L`],[12924,12926,`ON`],[12927,12976,`L`],[12977,12991,`ON`],[12992,13003,`L`],[13004,13007,`ON`],[13008,13174,`L`],[13175,13178,`ON`],[13179,13277,`L`],[13278,13279,`ON`],[13280,13310,`L`],[13311,13311,`ON`],[13312,19903,`L`],[19904,19967,`ON`],[19968,42124,`L`],[42128,42182,`ON`],[42192,42508,`L`],[42509,42511,`ON`],[42512,42539,`L`],[42560,42606,`L`],[42607,42610,`NSM`],[42611,42611,`ON`],[42612,42621,`NSM`],[42622,42623,`ON`],[42624,42653,`L`],[42654,42655,`NSM`],[42656,42735,`L`],[42736,42737,`NSM`],[42738,42743,`L`],[42752,42785,`ON`],[42786,42887,`L`],[42888,42888,`ON`],[42889,42954,`L`],[42960,42961,`L`],[42963,42963,`L`],[42965,42969,`L`],[42994,43009,`L`],[43010,43010,`NSM`],[43011,43013,`L`],[43014,43014,`NSM`],[43015,43018,`L`],[43019,43019,`NSM`],[43020,43044,`L`],[43045,43046,`NSM`],[43047,43047,`L`],[43048,43051,`ON`],[43052,43052,`NSM`],[43056,43063,`L`],[43064,43065,`ET`],[43072,43123,`L`],[43124,43127,`ON`],[43136,43203,`L`],[43204,43205,`NSM`],[43214,43225,`L`],[43232,43249,`NSM`],[43250,43262,`L`],[43263,43263,`NSM`],[43264,43301,`L`],[43302,43309,`NSM`],[43310,43334,`L`],[43335,43345,`NSM`],[43346,43347,`L`],[43359,43388,`L`],[43392,43394,`NSM`],[43395,43442,`L`],[43443,43443,`NSM`],[43444,43445,`L`],[43446,43449,`NSM`],[43450,43451,`L`],[43452,43453,`NSM`],[43454,43469,`L`],[43471,43481,`L`],[43486,43492,`L`],[43493,43493,`NSM`],[43494,43518,`L`],[43520,43560,`L`],[43561,43566,`NSM`],[43567,43568,`L`],[43569,43570,`NSM`],[43571,43572,`L`],[43573,43574,`NSM`],[43584,43586,`L`],[43587,43587,`NSM`],[43588,43595,`L`],[43596,43596,`NSM`],[43597,43597,`L`],[43600,43609,`L`],[43612,43643,`L`],[43644,43644,`NSM`],[43645,43695,`L`],[43696,43696,`NSM`],[43697,43697,`L`],[43698,43700,`NSM`],[43701,43702,`L`],[43703,43704,`NSM`],[43705,43709,`L`],[43710,43711,`NSM`],[43712,43712,`L`],[43713,43713,`NSM`],[43714,43714,`L`],[43739,43755,`L`],[43756,43757,`NSM`],[43758,43765,`L`],[43766,43766,`NSM`],[43777,43782,`L`],[43785,43790,`L`],[43793,43798,`L`],[43808,43814,`L`],[43816,43822,`L`],[43824,43881,`L`],[43882,43883,`ON`],[43888,44004,`L`],[44005,44005,`NSM`],[44006,44007,`L`],[44008,44008,`NSM`],[44009,44012,`L`],[44013,44013,`NSM`],[44016,44025,`L`],[44032,55203,`L`],[55216,55238,`L`],[55243,55291,`L`],[57344,64109,`L`],[64112,64217,`L`],[64256,64262,`L`],[64275,64279,`L`],[64285,64285,`R`],[64286,64286,`NSM`],[64287,64296,`R`],[64297,64297,`ES`],[64298,64310,`R`],[64312,64316,`R`],[64318,64318,`R`],[64320,64321,`R`],[64323,64324,`R`],[64326,64335,`R`],[64336,64450,`AL`],[64467,64829,`AL`],[64830,64847,`ON`],[64848,64911,`AL`],[64914,64967,`AL`],[64975,64975,`ON`],[64976,65007,`BN`],[65008,65020,`AL`],[65021,65023,`ON`],[65024,65039,`NSM`],[65040,65049,`ON`],[65056,65071,`NSM`],[65072,65103,`ON`],[65104,65104,`CS`],[65105,65105,`ON`],[65106,65106,`CS`],[65108,65108,`ON`],[65109,65109,`CS`],[65110,65118,`ON`],[65119,65119,`ET`],[65120,65121,`ON`],[65122,65123,`ES`],[65124,65126,`ON`],[65128,65128,`ON`],[65129,65130,`ET`],[65131,65131,`ON`],[65136,65140,`AL`],[65142,65276,`AL`],[65279,65279,`BN`],[65281,65282,`ON`],[65283,65285,`ET`],[65286,65290,`ON`],[65291,65291,`ES`],[65292,65292,`CS`],[65293,65293,`ES`],[65294,65295,`CS`],[65296,65305,`EN`],[65306,65306,`CS`],[65307,65312,`ON`],[65313,65338,`L`],[65339,65344,`ON`],[65345,65370,`L`],[65371,65381,`ON`],[65382,65470,`L`],[65474,65479,`L`],[65482,65487,`L`],[65490,65495,`L`],[65498,65500,`L`],[65504,65505,`ET`],[65506,65508,`ON`],[65509,65510,`ET`],[65512,65518,`ON`],[65520,65528,`BN`],[65529,65533,`ON`],[65534,65535,`BN`],[65536,65547,`L`],[65549,65574,`L`],[65576,65594,`L`],[65596,65597,`L`],[65599,65613,`L`],[65616,65629,`L`],[65664,65786,`L`],[65792,65792,`L`],[65793,65793,`ON`],[65794,65794,`L`],[65799,65843,`L`],[65847,65855,`L`],[65856,65932,`ON`],[65933,65934,`L`],[65936,65948,`ON`],[65952,65952,`ON`],[66e3,66044,`L`],[66045,66045,`NSM`],[66176,66204,`L`],[66208,66256,`L`],[66272,66272,`NSM`],[66273,66299,`EN`],[66304,66339,`L`],[66349,66378,`L`],[66384,66421,`L`],[66422,66426,`NSM`],[66432,66461,`L`],[66463,66499,`L`],[66504,66517,`L`],[66560,66717,`L`],[66720,66729,`L`],[66736,66771,`L`],[66776,66811,`L`],[66816,66855,`L`],[66864,66915,`L`],[66927,66938,`L`],[66940,66954,`L`],[66956,66962,`L`],[66964,66965,`L`],[66967,66977,`L`],[66979,66993,`L`],[66995,67001,`L`],[67003,67004,`L`],[67072,67382,`L`],[67392,67413,`L`],[67424,67431,`L`],[67456,67461,`L`],[67463,67504,`L`],[67506,67514,`L`],[67584,67589,`R`],[67592,67592,`R`],[67594,67637,`R`],[67639,67640,`R`],[67644,67644,`R`],[67647,67669,`R`],[67671,67742,`R`],[67751,67759,`R`],[67808,67826,`R`],[67828,67829,`R`],[67835,67867,`R`],[67871,67871,`ON`],[67872,67897,`R`],[67903,67903,`R`],[67968,68023,`R`],[68028,68047,`R`],[68050,68096,`R`],[68097,68099,`NSM`],[68101,68102,`NSM`],[68108,68111,`NSM`],[68112,68115,`R`],[68117,68119,`R`],[68121,68149,`R`],[68152,68154,`NSM`],[68159,68159,`NSM`],[68160,68168,`R`],[68176,68184,`R`],[68192,68255,`R`],[68288,68324,`R`],[68325,68326,`NSM`],[68331,68342,`R`],[68352,68405,`R`],[68409,68415,`ON`],[68416,68437,`R`],[68440,68466,`R`],[68472,68497,`R`],[68505,68508,`R`],[68521,68527,`R`],[68608,68680,`R`],[68736,68786,`R`],[68800,68850,`R`],[68858,68863,`R`],[68864,68899,`AL`],[68900,68903,`NSM`],[68912,68921,`AN`],[69216,69246,`AN`],[69248,69289,`R`],[69291,69292,`NSM`],[69293,69293,`R`],[69296,69297,`R`],[69373,69375,`NSM`],[69376,69415,`R`],[69424,69445,`AL`],[69446,69456,`NSM`],[69457,69465,`AL`],[69488,69505,`R`],[69506,69509,`NSM`],[69510,69513,`R`],[69552,69579,`R`],[69600,69622,`R`],[69632,69632,`L`],[69633,69633,`NSM`],[69634,69687,`L`],[69688,69702,`NSM`],[69703,69709,`L`],[69714,69733,`ON`],[69734,69743,`L`],[69744,69744,`NSM`],[69745,69746,`L`],[69747,69748,`NSM`],[69749,69749,`L`],[69759,69761,`NSM`],[69762,69810,`L`],[69811,69814,`NSM`],[69815,69816,`L`],[69817,69818,`NSM`],[69819,69825,`L`],[69826,69826,`NSM`],[69837,69837,`L`],[69840,69864,`L`],[69872,69881,`L`],[69888,69890,`NSM`],[69891,69926,`L`],[69927,69931,`NSM`],[69932,69932,`L`],[69933,69940,`NSM`],[69942,69959,`L`],[69968,70002,`L`],[70003,70003,`NSM`],[70004,70006,`L`],[70016,70017,`NSM`],[70018,70069,`L`],[70070,70078,`NSM`],[70079,70088,`L`],[70089,70092,`NSM`],[70093,70094,`L`],[70095,70095,`NSM`],[70096,70111,`L`],[70113,70132,`L`],[70144,70161,`L`],[70163,70190,`L`],[70191,70193,`NSM`],[70194,70195,`L`],[70196,70196,`NSM`],[70197,70197,`L`],[70198,70199,`NSM`],[70200,70205,`L`],[70206,70206,`NSM`],[70207,70208,`L`],[70209,70209,`NSM`],[70272,70278,`L`],[70280,70280,`L`],[70282,70285,`L`],[70287,70301,`L`],[70303,70313,`L`],[70320,70366,`L`],[70367,70367,`NSM`],[70368,70370,`L`],[70371,70378,`NSM`],[70384,70393,`L`],[70400,70401,`NSM`],[70402,70403,`L`],[70405,70412,`L`],[70415,70416,`L`],[70419,70440,`L`],[70442,70448,`L`],[70450,70451,`L`],[70453,70457,`L`],[70459,70460,`NSM`],[70461,70463,`L`],[70464,70464,`NSM`],[70465,70468,`L`],[70471,70472,`L`],[70475,70477,`L`],[70480,70480,`L`],[70487,70487,`L`],[70493,70499,`L`],[70502,70508,`NSM`],[70512,70516,`NSM`],[70656,70711,`L`],[70712,70719,`NSM`],[70720,70721,`L`],[70722,70724,`NSM`],[70725,70725,`L`],[70726,70726,`NSM`],[70727,70747,`L`],[70749,70749,`L`],[70750,70750,`NSM`],[70751,70753,`L`],[70784,70834,`L`],[70835,70840,`NSM`],[70841,70841,`L`],[70842,70842,`NSM`],[70843,70846,`L`],[70847,70848,`NSM`],[70849,70849,`L`],[70850,70851,`NSM`],[70852,70855,`L`],[70864,70873,`L`],[71040,71089,`L`],[71090,71093,`NSM`],[71096,71099,`L`],[71100,71101,`NSM`],[71102,71102,`L`],[71103,71104,`NSM`],[71105,71131,`L`],[71132,71133,`NSM`],[71168,71218,`L`],[71219,71226,`NSM`],[71227,71228,`L`],[71229,71229,`NSM`],[71230,71230,`L`],[71231,71232,`NSM`],[71233,71236,`L`],[71248,71257,`L`],[71264,71276,`ON`],[71296,71338,`L`],[71339,71339,`NSM`],[71340,71340,`L`],[71341,71341,`NSM`],[71342,71343,`L`],[71344,71349,`NSM`],[71350,71350,`L`],[71351,71351,`NSM`],[71352,71353,`L`],[71360,71369,`L`],[71424,71450,`L`],[71453,71455,`NSM`],[71456,71457,`L`],[71458,71461,`NSM`],[71462,71462,`L`],[71463,71467,`NSM`],[71472,71494,`L`],[71680,71726,`L`],[71727,71735,`NSM`],[71736,71736,`L`],[71737,71738,`NSM`],[71739,71739,`L`],[71840,71922,`L`],[71935,71942,`L`],[71945,71945,`L`],[71948,71955,`L`],[71957,71958,`L`],[71960,71989,`L`],[71991,71992,`L`],[71995,71996,`NSM`],[71997,71997,`L`],[71998,71998,`NSM`],[71999,72002,`L`],[72003,72003,`NSM`],[72004,72006,`L`],[72016,72025,`L`],[72096,72103,`L`],[72106,72147,`L`],[72148,72151,`NSM`],[72154,72155,`NSM`],[72156,72159,`L`],[72160,72160,`NSM`],[72161,72164,`L`],[72192,72192,`L`],[72193,72198,`NSM`],[72199,72200,`L`],[72201,72202,`NSM`],[72203,72242,`L`],[72243,72248,`NSM`],[72249,72250,`L`],[72251,72254,`NSM`],[72255,72262,`L`],[72263,72263,`NSM`],[72272,72272,`L`],[72273,72278,`NSM`],[72279,72280,`L`],[72281,72283,`NSM`],[72284,72329,`L`],[72330,72342,`NSM`],[72343,72343,`L`],[72344,72345,`NSM`],[72346,72354,`L`],[72368,72440,`L`],[72448,72457,`L`],[72704,72712,`L`],[72714,72751,`L`],[72752,72758,`NSM`],[72760,72765,`NSM`],[72766,72773,`L`],[72784,72812,`L`],[72816,72847,`L`],[72850,72871,`NSM`],[72873,72873,`L`],[72874,72880,`NSM`],[72881,72881,`L`],[72882,72883,`NSM`],[72884,72884,`L`],[72885,72886,`NSM`],[72960,72966,`L`],[72968,72969,`L`],[72971,73008,`L`],[73009,73014,`NSM`],[73018,73018,`NSM`],[73020,73021,`NSM`],[73023,73029,`NSM`],[73030,73030,`L`],[73031,73031,`NSM`],[73040,73049,`L`],[73056,73061,`L`],[73063,73064,`L`],[73066,73102,`L`],[73104,73105,`NSM`],[73107,73108,`L`],[73109,73109,`NSM`],[73110,73110,`L`],[73111,73111,`NSM`],[73112,73112,`L`],[73120,73129,`L`],[73440,73458,`L`],[73459,73460,`NSM`],[73461,73464,`L`],[73472,73473,`NSM`],[73474,73488,`L`],[73490,73525,`L`],[73526,73530,`NSM`],[73534,73535,`L`],[73536,73536,`NSM`],[73537,73537,`L`],[73538,73538,`NSM`],[73539,73561,`L`],[73648,73648,`L`],[73664,73684,`L`],[73685,73692,`ON`],[73693,73696,`ET`],[73697,73713,`ON`],[73727,74649,`L`],[74752,74862,`L`],[74864,74868,`L`],[74880,75075,`L`],[77712,77810,`L`],[77824,78911,`L`],[78912,78912,`NSM`],[78913,78918,`L`],[78919,78933,`NSM`],[82944,83526,`L`],[92160,92728,`L`],[92736,92766,`L`],[92768,92777,`L`],[92782,92862,`L`],[92864,92873,`L`],[92880,92909,`L`],[92912,92916,`NSM`],[92917,92917,`L`],[92928,92975,`L`],[92976,92982,`NSM`],[92983,92997,`L`],[93008,93017,`L`],[93019,93025,`L`],[93027,93047,`L`],[93053,93071,`L`],[93760,93850,`L`],[93952,94026,`L`],[94031,94031,`NSM`],[94032,94087,`L`],[94095,94098,`NSM`],[94099,94111,`L`],[94176,94177,`L`],[94178,94178,`ON`],[94179,94179,`L`],[94180,94180,`NSM`],[94192,94193,`L`],[94208,100343,`L`],[100352,101589,`L`],[101632,101640,`L`],[110576,110579,`L`],[110581,110587,`L`],[110589,110590,`L`],[110592,110882,`L`],[110898,110898,`L`],[110928,110930,`L`],[110933,110933,`L`],[110948,110951,`L`],[110960,111355,`L`],[113664,113770,`L`],[113776,113788,`L`],[113792,113800,`L`],[113808,113817,`L`],[113820,113820,`L`],[113821,113822,`NSM`],[113823,113823,`L`],[113824,113827,`BN`],[118528,118573,`NSM`],[118576,118598,`NSM`],[118608,118723,`L`],[118784,119029,`L`],[119040,119078,`L`],[119081,119142,`L`],[119143,119145,`NSM`],[119146,119154,`L`],[119155,119162,`BN`],[119163,119170,`NSM`],[119171,119172,`L`],[119173,119179,`NSM`],[119180,119209,`L`],[119210,119213,`NSM`],[119214,119272,`L`],[119273,119274,`ON`],[119296,119361,`ON`],[119362,119364,`NSM`],[119365,119365,`ON`],[119488,119507,`L`],[119520,119539,`L`],[119552,119638,`ON`],[119648,119672,`L`],[119808,119892,`L`],[119894,119964,`L`],[119966,119967,`L`],[119970,119970,`L`],[119973,119974,`L`],[119977,119980,`L`],[119982,119993,`L`],[119995,119995,`L`],[119997,120003,`L`],[120005,120069,`L`],[120071,120074,`L`],[120077,120084,`L`],[120086,120092,`L`],[120094,120121,`L`],[120123,120126,`L`],[120128,120132,`L`],[120134,120134,`L`],[120138,120144,`L`],[120146,120485,`L`],[120488,120538,`L`],[120539,120539,`ON`],[120540,120596,`L`],[120597,120597,`ON`],[120598,120654,`L`],[120655,120655,`ON`],[120656,120712,`L`],[120713,120713,`ON`],[120714,120770,`L`],[120771,120771,`ON`],[120772,120779,`L`],[120782,120831,`EN`],[120832,121343,`L`],[121344,121398,`NSM`],[121399,121402,`L`],[121403,121452,`NSM`],[121453,121460,`L`],[121461,121461,`NSM`],[121462,121475,`L`],[121476,121476,`NSM`],[121477,121483,`L`],[121499,121503,`NSM`],[121505,121519,`NSM`],[122624,122654,`L`],[122661,122666,`L`],[122880,122886,`NSM`],[122888,122904,`NSM`],[122907,122913,`NSM`],[122915,122916,`NSM`],[122918,122922,`NSM`],[122928,122989,`L`],[123023,123023,`NSM`],[123136,123180,`L`],[123184,123190,`NSM`],[123191,123197,`L`],[123200,123209,`L`],[123214,123215,`L`],[123536,123565,`L`],[123566,123566,`NSM`],[123584,123627,`L`],[123628,123631,`NSM`],[123632,123641,`L`],[123647,123647,`ET`],[124112,124139,`L`],[124140,124143,`NSM`],[124144,124153,`L`],[124896,124902,`L`],[124904,124907,`L`],[124909,124910,`L`],[124912,124926,`L`],[124928,125124,`R`],[125127,125135,`R`],[125136,125142,`NSM`],[125184,125251,`R`],[125252,125258,`NSM`],[125259,125259,`R`],[125264,125273,`R`],[125278,125279,`R`],[126065,126132,`AL`],[126209,126269,`AL`],[126464,126467,`AL`],[126469,126495,`AL`],[126497,126498,`AL`],[126500,126500,`AL`],[126503,126503,`AL`],[126505,126514,`AL`],[126516,126519,`AL`],[126521,126521,`AL`],[126523,126523,`AL`],[126530,126530,`AL`],[126535,126535,`AL`],[126537,126537,`AL`],[126539,126539,`AL`],[126541,126543,`AL`],[126545,126546,`AL`],[126548,126548,`AL`],[126551,126551,`AL`],[126553,126553,`AL`],[126555,126555,`AL`],[126557,126557,`AL`],[126559,126559,`AL`],[126561,126562,`AL`],[126564,126564,`AL`],[126567,126570,`AL`],[126572,126578,`AL`],[126580,126583,`AL`],[126585,126588,`AL`],[126590,126590,`AL`],[126592,126601,`AL`],[126603,126619,`AL`],[126625,126627,`AL`],[126629,126633,`AL`],[126635,126651,`AL`],[126704,126705,`ON`],[126976,127019,`ON`],[127024,127123,`ON`],[127136,127150,`ON`],[127153,127167,`ON`],[127169,127183,`ON`],[127185,127221,`ON`],[127232,127242,`EN`],[127243,127247,`ON`],[127248,127278,`L`],[127279,127279,`ON`],[127280,127337,`L`],[127338,127343,`ON`],[127344,127404,`L`],[127405,127405,`ON`],[127462,127490,`L`],[127504,127547,`L`],[127552,127560,`L`],[127568,127569,`L`],[127584,127589,`ON`],[127744,128727,`ON`],[128732,128748,`ON`],[128752,128764,`ON`],[128768,128886,`ON`],[128891,128985,`ON`],[128992,129003,`ON`],[129008,129008,`ON`],[129024,129035,`ON`],[129040,129095,`ON`],[129104,129113,`ON`],[129120,129159,`ON`],[129168,129197,`ON`],[129200,129201,`ON`],[129280,129619,`ON`],[129632,129645,`ON`],[129648,129660,`ON`],[129664,129672,`ON`],[129680,129725,`ON`],[129727,129733,`ON`],[129742,129755,`ON`],[129760,129768,`ON`],[129776,129784,`ON`],[129792,129938,`ON`],[129940,129994,`ON`],[130032,130041,`EN`],[131070,131071,`BN`],[131072,173791,`L`],[173824,177977,`L`],[177984,178205,`L`],[178208,183969,`L`],[183984,191456,`L`],[191472,192093,`L`],[194560,195101,`L`],[196606,196607,`BN`],[196608,201546,`L`],[201552,205743,`L`],[262142,262143,`BN`],[327678,327679,`BN`],[393214,393215,`BN`],[458750,458751,`BN`],[524286,524287,`BN`],[589822,589823,`BN`],[655358,655359,`BN`],[720894,720895,`BN`],[786430,786431,`BN`],[851966,851967,`BN`],[917502,917759,`BN`],[917760,917999,`NSM`],[918e3,921599,`BN`],[983038,983039,`BN`],[983040,1048573,`L`],[1048574,1048575,`BN`],[1048576,1114109,`L`],[1114110,1114111,`BN`]],joining_type_ranges:[[173,173,`T`],[768,879,`T`],[1155,1161,`T`],[1425,1469,`T`],[1471,1471,`T`],[1473,1474,`T`],[1476,1477,`T`],[1479,1479,`T`],[1552,1562,`T`],[1564,1564,`T`],[1568,1568,`D`],[1570,1573,`R`],[1574,1574,`D`],[1575,1575,`R`],[1576,1576,`D`],[1577,1577,`R`],[1578,1582,`D`],[1583,1586,`R`],[1587,1599,`D`],[1600,1600,`C`],[1601,1607,`D`],[1608,1608,`R`],[1609,1610,`D`],[1611,1631,`T`],[1646,1647,`D`],[1648,1648,`T`],[1649,1651,`R`],[1653,1655,`R`],[1656,1671,`D`],[1672,1689,`R`],[1690,1727,`D`],[1728,1728,`R`],[1729,1730,`D`],[1731,1739,`R`],[1740,1740,`D`],[1741,1741,`R`],[1742,1742,`D`],[1743,1743,`R`],[1744,1745,`D`],[1746,1747,`R`],[1749,1749,`R`],[1750,1756,`T`],[1759,1764,`T`],[1767,1768,`T`],[1770,1773,`T`],[1774,1775,`R`],[1786,1788,`D`],[1791,1791,`D`],[1807,1807,`T`],[1808,1808,`R`],[1809,1809,`T`],[1810,1812,`D`],[1813,1817,`R`],[1818,1821,`D`],[1822,1822,`R`],[1823,1831,`D`],[1832,1832,`R`],[1833,1833,`D`],[1834,1834,`R`],[1835,1835,`D`],[1836,1836,`R`],[1837,1838,`D`],[1839,1839,`R`],[1840,1866,`T`],[1869,1869,`R`],[1870,1880,`D`],[1881,1883,`R`],[1884,1898,`D`],[1899,1900,`R`],[1901,1904,`D`],[1905,1905,`R`],[1906,1906,`D`],[1907,1908,`R`],[1909,1911,`D`],[1912,1913,`R`],[1914,1919,`D`],[1958,1968,`T`],[1994,2026,`D`],[2027,2035,`T`],[2042,2042,`C`],[2045,2045,`T`],[2070,2073,`T`],[2075,2083,`T`],[2085,2087,`T`],[2089,2093,`T`],[2112,2112,`R`],[2113,2117,`D`],[2118,2119,`R`],[2120,2120,`D`],[2121,2121,`R`],[2122,2131,`D`],[2132,2132,`R`],[2133,2133,`D`],[2134,2136,`R`],[2137,2139,`T`],[2144,2144,`D`],[2146,2149,`D`],[2151,2151,`R`],[2152,2152,`D`],[2153,2154,`R`],[2160,2178,`R`],[2179,2181,`C`],[2182,2182,`D`],[2185,2189,`D`],[2190,2190,`R`],[2200,2207,`T`],[2208,2217,`D`],[2218,2220,`R`],[2222,2222,`R`],[2223,2224,`D`],[2225,2226,`R`],[2227,2232,`D`],[2233,2233,`R`],[2234,2248,`D`],[2250,2273,`T`],[2275,2306,`T`],[2362,2362,`T`],[2364,2364,`T`],[2369,2376,`T`],[2381,2381,`T`],[2385,2391,`T`],[2402,2403,`T`],[2433,2433,`T`],[2492,2492,`T`],[2497,2500,`T`],[2509,2509,`T`],[2530,2531,`T`],[2558,2558,`T`],[2561,2562,`T`],[2620,2620,`T`],[2625,2626,`T`],[2631,2632,`T`],[2635,2637,`T`],[2641,2641,`T`],[2672,2673,`T`],[2677,2677,`T`],[2689,2690,`T`],[2748,2748,`T`],[2753,2757,`T`],[2759,2760,`T`],[2765,2765,`T`],[2786,2787,`T`],[2810,2815,`T`],[2817,2817,`T`],[2876,2876,`T`],[2879,2879,`T`],[2881,2884,`T`],[2893,2893,`T`],[2901,2902,`T`],[2914,2915,`T`],[2946,2946,`T`],[3008,3008,`T`],[3021,3021,`T`],[3072,3072,`T`],[3076,3076,`T`],[3132,3132,`T`],[3134,3136,`T`],[3142,3144,`T`],[3146,3149,`T`],[3157,3158,`T`],[3170,3171,`T`],[3201,3201,`T`],[3260,3260,`T`],[3263,3263,`T`],[3270,3270,`T`],[3276,3277,`T`],[3298,3299,`T`],[3328,3329,`T`],[3387,3388,`T`],[3393,3396,`T`],[3405,3405,`T`],[3426,3427,`T`],[3457,3457,`T`],[3530,3530,`T`],[3538,3540,`T`],[3542,3542,`T`],[3633,3633,`T`],[3636,3642,`T`],[3655,3662,`T`],[3761,3761,`T`],[3764,3772,`T`],[3784,3790,`T`],[3864,3865,`T`],[3893,3893,`T`],[3895,3895,`T`],[3897,3897,`T`],[3953,3966,`T`],[3968,3972,`T`],[3974,3975,`T`],[3981,3991,`T`],[3993,4028,`T`],[4038,4038,`T`],[4141,4144,`T`],[4146,4151,`T`],[4153,4154,`T`],[4157,4158,`T`],[4184,4185,`T`],[4190,4192,`T`],[4209,4212,`T`],[4226,4226,`T`],[4229,4230,`T`],[4237,4237,`T`],[4253,4253,`T`],[4957,4959,`T`],[5906,5908,`T`],[5938,5939,`T`],[5970,5971,`T`],[6002,6003,`T`],[6068,6069,`T`],[6071,6077,`T`],[6086,6086,`T`],[6089,6099,`T`],[6109,6109,`T`],[6151,6151,`D`],[6154,6154,`C`],[6155,6157,`T`],[6159,6159,`T`],[6176,6264,`D`],[6277,6278,`T`],[6279,6312,`D`],[6313,6313,`T`],[6314,6314,`D`],[6432,6434,`T`],[6439,6440,`T`],[6450,6450,`T`],[6457,6459,`T`],[6679,6680,`T`],[6683,6683,`T`],[6742,6742,`T`],[6744,6750,`T`],[6752,6752,`T`],[6754,6754,`T`],[6757,6764,`T`],[6771,6780,`T`],[6783,6783,`T`],[6832,6862,`T`],[6912,6915,`T`],[6964,6964,`T`],[6966,6970,`T`],[6972,6972,`T`],[6978,6978,`T`],[7019,7027,`T`],[7040,7041,`T`],[7074,7077,`T`],[7080,7081,`T`],[7083,7085,`T`],[7142,7142,`T`],[7144,7145,`T`],[7149,7149,`T`],[7151,7153,`T`],[7212,7219,`T`],[7222,7223,`T`],[7376,7378,`T`],[7380,7392,`T`],[7394,7400,`T`],[7405,7405,`T`],[7412,7412,`T`],[7416,7417,`T`],[7616,7679,`T`],[8203,8203,`T`],[8205,8205,`C`],[8206,8207,`T`],[8234,8238,`T`],[8288,8292,`T`],[8298,8303,`T`],[8400,8432,`T`],[11503,11505,`T`],[11647,11647,`T`],[11744,11775,`T`],[12330,12333,`T`],[12441,12442,`T`],[42607,42610,`T`],[42612,42621,`T`],[42654,42655,`T`],[42736,42737,`T`],[43010,43010,`T`],[43014,43014,`T`],[43019,43019,`T`],[43045,43046,`T`],[43052,43052,`T`],[43072,43121,`D`],[43122,43122,`L`],[43204,43205,`T`],[43232,43249,`T`],[43263,43263,`T`],[43302,43309,`T`],[43335,43345,`T`],[43392,43394,`T`],[43443,43443,`T`],[43446,43449,`T`],[43452,43453,`T`],[43493,43493,`T`],[43561,43566,`T`],[43569,43570,`T`],[43573,43574,`T`],[43587,43587,`T`],[43596,43596,`T`],[43644,43644,`T`],[43696,43696,`T`],[43698,43700,`T`],[43703,43704,`T`],[43710,43711,`T`],[43713,43713,`T`],[43756,43757,`T`],[43766,43766,`T`],[44005,44005,`T`],[44008,44008,`T`],[44013,44013,`T`],[64286,64286,`T`],[65024,65039,`T`],[65056,65071,`T`],[65279,65279,`T`],[65529,65531,`T`],[66045,66045,`T`],[66272,66272,`T`],[66422,66426,`T`],[68097,68099,`T`],[68101,68102,`T`],[68108,68111,`T`],[68152,68154,`T`],[68159,68159,`T`],[68288,68292,`D`],[68293,68293,`R`],[68295,68295,`R`],[68297,68298,`R`],[68301,68301,`L`],[68302,68306,`R`],[68307,68310,`D`],[68311,68311,`L`],[68312,68316,`D`],[68317,68317,`R`],[68318,68320,`D`],[68321,68321,`R`],[68324,68324,`R`],[68325,68326,`T`],[68331,68334,`D`],[68335,68335,`R`],[68480,68480,`D`],[68481,68481,`R`],[68482,68482,`D`],[68483,68485,`R`],[68486,68488,`D`],[68489,68489,`R`],[68490,68491,`D`],[68492,68492,`R`],[68493,68493,`D`],[68494,68495,`R`],[68496,68496,`D`],[68497,68497,`R`],[68521,68524,`R`],[68525,68526,`D`],[68864,68864,`L`],[68865,68897,`D`],[68898,68898,`R`],[68899,68899,`D`],[68900,68903,`T`],[69291,69292,`T`],[69373,69375,`T`],[69424,69426,`D`],[69427,69427,`R`],[69428,69444,`D`],[69446,69456,`T`],[69457,69459,`D`],[69460,69460,`R`],[69488,69491,`D`],[69492,69493,`R`],[69494,69505,`D`],[69506,69509,`T`],[69552,69552,`D`],[69554,69555,`D`],[69556,69558,`R`],[69560,69560,`D`],[69561,69562,`R`],[69563,69564,`D`],[69565,69565,`R`],[69566,69567,`D`],[69569,69569,`D`],[69570,69571,`R`],[69572,69572,`D`],[69577,69577,`R`],[69578,69578,`D`],[69579,69579,`L`],[69633,69633,`T`],[69688,69702,`T`],[69744,69744,`T`],[69747,69748,`T`],[69759,69761,`T`],[69811,69814,`T`],[69817,69818,`T`],[69826,69826,`T`],[69888,69890,`T`],[69927,69931,`T`],[69933,69940,`T`],[70003,70003,`T`],[70016,70017,`T`],[70070,70078,`T`],[70089,70092,`T`],[70095,70095,`T`],[70191,70193,`T`],[70196,70196,`T`],[70198,70199,`T`],[70206,70206,`T`],[70209,70209,`T`],[70367,70367,`T`],[70371,70378,`T`],[70400,70401,`T`],[70459,70460,`T`],[70464,70464,`T`],[70502,70508,`T`],[70512,70516,`T`],[70712,70719,`T`],[70722,70724,`T`],[70726,70726,`T`],[70750,70750,`T`],[70835,70840,`T`],[70842,70842,`T`],[70847,70848,`T`],[70850,70851,`T`],[71090,71093,`T`],[71100,71101,`T`],[71103,71104,`T`],[71132,71133,`T`],[71219,71226,`T`],[71229,71229,`T`],[71231,71232,`T`],[71339,71339,`T`],[71341,71341,`T`],[71344,71349,`T`],[71351,71351,`T`],[71453,71455,`T`],[71458,71461,`T`],[71463,71467,`T`],[71727,71735,`T`],[71737,71738,`T`],[71995,71996,`T`],[71998,71998,`T`],[72003,72003,`T`],[72148,72151,`T`],[72154,72155,`T`],[72160,72160,`T`],[72193,72202,`T`],[72243,72248,`T`],[72251,72254,`T`],[72263,72263,`T`],[72273,72278,`T`],[72281,72283,`T`],[72330,72342,`T`],[72344,72345,`T`],[72752,72758,`T`],[72760,72765,`T`],[72767,72767,`T`],[72850,72871,`T`],[72874,72880,`T`],[72882,72883,`T`],[72885,72886,`T`],[73009,73014,`T`],[73018,73018,`T`],[73020,73021,`T`],[73023,73029,`T`],[73031,73031,`T`],[73104,73105,`T`],[73109,73109,`T`],[73111,73111,`T`],[73459,73460,`T`],[73472,73473,`T`],[73526,73530,`T`],[73536,73536,`T`],[73538,73538,`T`],[78896,78912,`T`],[78919,78933,`T`],[92912,92916,`T`],[92976,92982,`T`],[94031,94031,`T`],[94095,94098,`T`],[94180,94180,`T`],[113821,113822,`T`],[113824,113827,`T`],[118528,118573,`T`],[118576,118598,`T`],[119143,119145,`T`],[119155,119170,`T`],[119173,119179,`T`],[119210,119213,`T`],[119362,119364,`T`],[121344,121398,`T`],[121403,121452,`T`],[121461,121461,`T`],[121476,121476,`T`],[121499,121503,`T`],[121505,121519,`T`],[122880,122886,`T`],[122888,122904,`T`],[122907,122913,`T`],[122915,122916,`T`],[122918,122922,`T`],[123023,123023,`T`],[123184,123190,`T`],[123566,123566,`T`],[123628,123631,`T`],[124140,124143,`T`],[125136,125142,`T`],[125184,125251,`D`],[125252,125259,`T`],[917505,917505,`T`],[917536,917631,`T`],[917760,917999,`T`]]}})),re=e.t(((e,t)=>{let n=te(),{props:r,viramas:i,ranges:a,mappings:o,bidi_ranges:s,joining_type_ranges:c}=ne(),l=e=>{throw Object.assign(SyntaxError(e),{name:`IdnaContextJError`})},u=e=>{throw Object.assign(SyntaxError(e),{name:`IdnaContextOError`})},d=e=>{throw Object.assign(SyntaxError(e),{name:`IdnaUnicodeError`})},f=e=>{throw Object.assign(SyntaxError(e),{name:`IdnaLengthError`})},p=e=>{throw Object.assign(SyntaxError(e),{name:`IdnaSyntaxError`})},m=e=>{throw Object.assign(SyntaxError(e),{name:`PunycodeError`})},h=e=>{throw Object.assign(SyntaxError(e),{name:`IdnaBidiError`})},g=8204,_=new Set(i);function v(e,t){if(!Array.isArray(e)||e.length===0)return null;let n=0,r=e.length-1;for(;n<=r;){let i=n+r>>1,a=e[i];if(t<a[0])r=i-1;else if(t>a[1])n=i+1;else return a[2]}return null}function y(e){let t=[];for(let n=0;n<e.length;){let i=e.codePointAt(n),s=r[v(a,i)],c=o[String(i)];if(s===`mapped`&&Array.isArray(c)&&c.length)for(let e of c)t.push(e);else s===`valid`||s===`deviation`?t.push(i):s===`ignored`||d(`${b(i)} is disallowed in hostname (RFC 5892, UTS #46).`);n+=i>65535?2:1}return String.fromCodePoint(...t)}function b(e){return`char '${String.fromCodePoint(e)}' `+JSON.stringify(`(U+`+e.toString(16).toUpperCase().padStart(4,`0`)+`)`)}function x(e){typeof e!=`string`&&p(`Label must be a string (RFC 5890 §2.3.2.3).`);let t=e.split(/[\x2E\uFF0E\u3002\uFF61]/);t.some(e=>e.length===0)&&f(`Label cannot be empty (consecutive or leading/trailing dot) (RFC 5890 §2.3.2.3).`);let r=0;for(let e of t){let t=e;if(/^xn--/i.test(e)){/[^\p{ASCII}]/u.test(e)&&p(`A-label '${e}' cannot contain non-ASCII character(s) (RFC 5890 §2.3.2.1).`);let r=e.slice(4);try{t=n.decode(r)}catch{m(`Invalid ASCII Compatible Encoding (ACE) of label '${e}' (RFC 5891 §4.4 → RFC 3492).`)}/[^\p{ASCII}]/u.test(t)||p(`decoded A-label '${e}' result U-label '${t}' cannot be empty or all-ASCII character(s) (RFC 5890 §2.3.2.1).`),n.encode(t)!==r&&m(`Re-encode mismatch for ASCII Compatible Encoding (ACE) label '${e}' (RFC 5891 §4.4 → RFC 3492).`)}t=y(t).normalize(`NFC`);let i;try{i=/[^\p{ASCII}]/u.test(t)?n.toASCII(t):t}catch{m(`ASCII conversion failed for '${t}' (RFC 3492).`)}i.length>63&&f(`Final ASCII Compatible Encoding (ACE) label cannot exceed 63 bytes (RFC 5890 §2.3.2.1).`),r+=i.length+1,/^-|-$/.test(t)&&p(`Label cannot begin or end with hyphen-minus (RFC 5891 §4.2.3.1).`),t.indexOf(`--`)===2&&p(`Label cannot contain consecutive hyphen-minus in the 3rd and 4th positions (RFC 5891 §4.2.3.1).`),/^\p{M}$/u.test(String.fromCodePoint(t.codePointAt(0)))&&p(`Label cannot begin with combining/enclosing mark ${b(t.codePointAt(0))} (RFC 5891 §4.2.3.2).`);let a=Array.from(t).map(e=>e.codePointAt(0)),o=``,d=``,x=[];for(let e=0;e<a.length;e++){let n=a[e];if(a.includes(g)&&(o+=_.has(n)?`V`:n===g?`Z`:v(c,n)||`U`,e===a.length-1&&/(?![LD][T]*)(?<!V)Z(?![T]*[RD])/.test(o)&&l(`char ${JSON.stringify(`U+200C`)} (ZWNJ) has invalid join context: '${o}' (RFC 5892 Appendix A.1).`)),n===8205&&(e===0||!_.has(a[e-1]))&&l(`${b(n)} cannot appear at start or without a Virama before (RFC 5892 Appendix A.2).`),n===183&&(e===0||e===a.length-1||!(a[e-1]===108&&a[e+1]===108))&&u(`${b(n)} must be between two ASCII 'l' characters (RFC 5892 A.3).`),n===885&&(/^\p{Mn}*\p{sc=Greek}$/u.test(String.fromCodePoint(...a.slice(e+1)))||u(`${b(n)} must be followed by Greek script (RFC 5892 A.4).`)),(n===1523||n===1524)&&(e===0||!/^\p{sc=Hebrew}$/u.test(String.fromCodePoint(a[e-1])))&&u(`${b(n)} must be preceded by Hebrew script (RFC 5892 A.5/A.6).`),n===12539&&(/[\p{sc=Hiragana}\p{sc=Katakana}\p{sc=Han}]/u.test(String.fromCodePoint(...a))||u(`${b(n)} requires at least one Hiragana/Katakana/Han in the label (RFC 5892 Appendix A.7).`)),(n>=1632&&n<=1641||n>=1776&&n<=1785)&&(d+=n<1776?`a`:`e`),e===a.length-1&&/^(?=.*a)(?=.*e).*$/.test(d)&&u(`Arabic-Indic digits cannot be mixed with Extended Arabic-Indic digits (RFC 5892 Appendix A.8/A.9).`),x.push(v(s,n)),e===a.length-1&&(x.includes(`R`)||x.includes(`AL`)))if(x[0]===`R`||x[0]===`AL`){for(let e of x)[`R`,`AL`,`AN`,`EN`,`ET`,`ES`,`CS`,`ON`,`BN`,`NSM`].includes(e)||h(`'${t}' breaks rule #2: Only R, AL, AN, EN, ET, ES, CS, ON, BN, NSM allowed in label (RFC 5893 §2.2)`);/(R|AL|EN|AN)(NSM)*$/.test(x.join(``))||h(`'${t}' breaks rule #3: label must end with R, AL, EN, or AN, followed by zero or more NSM (RFC 5893 §2.3)`),x.includes(`EN`)&&x.includes(`AN`)&&h(`'${t}' breaks rule #4: EN and AN cannot be mixed in the same label (RFC 5893 §2.4)`)}else if(x[0]===`L`){for(let e of x)[`L`,`EN`,`ET`,`ES`,`CS`,`ON`,`BN`,`NSM`].includes(e)||h(`'${t}' breaks rule #5: Only L, EN, ET, ES, CS, ON, BN, NSM allowed in label (RFC 5893 §2.5)`);/(L|EN)(NSM)*$/.test(x.join(``))||h(`'${t}' breaks rule #6: label must end with L or EN, followed by zero or more NSM (RFC 5893 §2.6)`)}else h(`'${t}' breaks rule #1: label must start with L or R or AL (RFC 5893 §2.1)`)}}return r-1>253&&f(`Final ASCII Compatible Encoding (ACE) hostname cannot exceed 253 bytes (RFC 5890 → RFC 1034 §3.1).`),!0}t.exports={isIdnHostname:x,idnHostname:e=>x(e)&&n.toASCII(e.split(`.`).map(e=>y(e).normalize(`NFC`)).join(`.`)),uts46map:y,punycode:n}}))();const ie=`(?!-)[A-Za-z0-9-]{1,63}(?<!-)`,ae=`${ie}(?:\\.${ie})*`,oe=RegExp(`^${ae}$`),se=e=>oe.test(e)&&e.length<256,ce=e=>se(e)&&S(e),S=e=>{try{return(0,re.isIdnHostname)(e)}catch{return!1}},C=`[\\u{A0}-\\u{D7FF}\\u{F900}-\\u{FDCF}\\u{FDF0}-\\u{FFEF}\\u{10000}-\\u{1FFFD}\\u{20000}-\\u{2FFFD}\\u{30000}-\\u{3FFFD}\\u{40000}-\\u{4FFFD}\\u{50000}-\\u{5FFFD}\\u{60000}-\\u{6FFFD}\\u{70000}-\\u{7FFFD}\\u{80000}-\\u{8FFFD}\\u{90000}-\\u{9FFFD}\\u{A0000}-\\u{AFFFD}\\u{B0000}-\\u{BFFFD}\\u{C0000}-\\u{CFFFD}\\u{D0000}-\\u{DFFFD}\\u{E1000}-\\u{EFFFD}]`,le=`[a-zA-Z]`,ue=`${`(?:[\\w!#$%&'*+\\-/=?^\`{|}~]|${C})`}+`,de=`(?:${`${ue}(?:\\.${ue})*`}|${`"${`(?:${`(?:[\\x20-\\x21\\x23-\\x5B\\x5D-\\x7E]|${C})`}|\\\\[\\x20-\\x7E])`}*"`})`,fe=`(?:${le}|\\d)`,pe=`(?:${fe}|-)*${fe}`,w=`(?:${le}|\\d|${C})`,me=`${w}${`(?:${w}|-)*${w}`}?`,he=`${me}(?:\\.${me})*`,T=`(?:\\d|[1-9]\\d|1\\d\\d|2[0-4]\\d|25[0-5])`,ge=`${T}\\.${T}\\.${T}\\.${T}`,E=`[\\da-fA-F]{1,4}`,D=`(?:${E}:${E}|${ge})`,_e=`(?<localPart>${de})@(?:(?<ip>${`\\[(?:${ge}|${`IPv6:${`(?:(?:${E}:){6}${D}|::(?:${E}:){5}${D}|(?:${E})?::(?:${E}:){4}${D}|(?:(?:${E}:){0,1}${E})?::(?:${E}:){3}${D}|(?:(?:${E}:){0,2}${E})?::(?:${E}:){2}${D}|(?:(?:${E}:){0,3}${E})?::(?:${E}:){1}${D}|(?:(?:${E}:){0,4}${E})?::${D}|(?:(?:${E}:){0,5}${E})?::${E}|(?:(?:${E}:){0,6}${E})?::)`}`}|${`${pe}:[\\x21-\\x5A\\x5E-\\x7E]+`})\\]`})|(?<domain>${he}))`,ve=RegExp(`^${_e}$`,`u`),ye=e=>{let t=ve.exec(e)?.groups;return!!t&&(!t.domain||S(t.domain))},O=`(?:\\d|[1-9]\\d|1\\d\\d|2[0-4]\\d|25[0-5])`,be=`${O}\\.${O}\\.${O}\\.${O}`;RegExp.prototype.test.bind(RegExp(`^${be}$`));const k=`(?:\\d|[1-9]\\d|1\\d\\d|2[0-4]\\d|25[0-5])`,xe=`${k}\\.${k}\\.${k}\\.${k}`,A=`[a-fA-F0-9]{1,4}`,j=`(?:${A}:${A}|${xe})`,Se=`(?:(?:${A}:){6}${j}|::(?:${A}:){5}${j}|(?:${A})?::(?:${A}:){4}${j}|(?:(?:${A}:){0,1}${A})?::(?:${A}:){3}${j}|(?:(?:${A}:){0,2}${A})?::(?:${A}:){2}${j}|(?:(?:${A}:){0,3}${A})?::(?:${A}:){1}${j}|(?:(?:${A}:){0,4}${A})?::${j}|(?:(?:${A}:){0,5}${A})?::${A}|(?:(?:${A}:){0,6}${A})?::)`;RegExp.prototype.test.bind(RegExp(`^${Se}$`));const M=`[a-fA-F0-9]`,N=`[a-zA-Z0-9-._~]`,P=`[!$&'()*+,;=]`,F=`%${M}${M}`,I=`(?:\\d|[1-9]\\d|1\\d\\d|2[0-4]\\d|25[0-5])`,L=`${I}\\.${I}\\.${I}\\.${I}`,R=`${M}{1,4}`,z=`(?:${R}:${R}|${L})`,Ce=`\\[(?:${`(?:(?:${R}:){6}${z}|::(?:${R}:){5}${z}|(?:${R})?::(?:${R}:){4}${z}|(?:(?:${R}:){0,1}${R})?::(?:${R}:){3}${z}|(?:(?:${R}:){0,2}${R})?::(?:${R}:){2}${z}|(?:(?:${R}:){0,3}${R})?::(?:${R}:){1}${z}|(?:(?:${R}:){0,4}${R})?::${z}|(?:(?:${R}:){0,5}${R})?::${R}|(?:(?:${R}:){0,6}${R})?::)`}|${`v${M}+\\.(?:${N}|${P}|:)+`})\\]`,B=`(?<scheme>[a-zA-Z][a-zA-Z0-9-+.]*)`,we=`:(?<port>\\d*)`,Te=`(?<host>${Ce}|${L}|${`(?:${N}|${F}|${P})*?`})`,Ee=`(?<userinfo>(?:${N}|${F}|${P}|:)*)`,V=`(?:${N}|${F}|${P}|:|@)`,De=`${V}*?`,Oe=`(?:/${De})*`,H=`(?<authority>(?:${Ee}@)?${Te}(?:${we})?)`,U=`(?<path>${Oe})`,W=`(?<path2>(?!//)${De}${Oe})`,G=`(?:\\?(?<query>(?:${V}|/|\\?)*))?`,ke=`(?:#(?<fragment>(?:${V}|/|\\?)*))?`,Ae=`^${B}:(?://${H}${U}|${W})${G}${ke}$`,je=`^(?:${B}:|)(?://${H}${U}|${W})${G}${ke}$`,Me=`^${B}:(?://${H}${U}|${W})${G}$`,K=`[a-zA-Z0-9\\-._~\\u{A0}-\\u{D7FF}\\u{F900}-\\u{FDCF}\\u{FDF0}-\\u{FFEF}\\u{10000}-\\u{1FFFD}\\u{20000}-\\u{2FFFD}\\u{30000}-\\u{3FFFD}\\u{40000}-\\u{4FFFD}\\u{50000}-\\u{5FFFD}\\u{60000}-\\u{6FFFD}\\u{70000}-\\u{7FFFD}\\u{80000}-\\u{8FFFD}\\u{90000}-\\u{9FFFD}\\u{A0000}-\\u{AFFFD}\\u{B0000}-\\u{BFFFD}\\u{C0000}-\\u{CFFFD}\\u{D0000}-\\u{DFFFD}\\u{E1000}-\\u{EFFFD}]`,Ne=`(?<host>${Ce}|${L}|${`(?:${K}|${F}|${P})*?`})`,Pe=`(?<userinfo>(?:${K}|${F}|${P}|:)*)`,q=`(?:${K}|${F}|${P}|:|@)`,Fe=`${q}*?`,Ie=`(?:/${Fe})*`,J=`(?<authority>(?:${Pe}@)?${Ne}(?:${we})?)`,Le=`(?<path>${Ie})`,Re=`(?<path2>(?!//)${Fe}${Ie})`,Y=`(?:\\?(?<query>(?:${q}|[\\u{E000}-\\u{F8FF}\\u{F0000}-\\u{FFFFD}\\u{100000}-\\u{10FFFD}]|/|\\?)*))?`,ze=`(?:#(?<fragment>(?:${q}|/|\\?)*))?`,Be=`^${B}:(?://${J}${Le}|${Re})${Y}${ze}$`,Ve=`^(?:${B}:|)(?://${J}${Le}|${Re})${Y}${ze}$`,He=`^${B}:(?://${J}${Le}|${Re})${Y}$`,Ue=/^\.?\.\/|^\.\.?$/,We=/^\/\.(?:\/|$)/,Ge=/^\/\.\.(?:\/|$)/,Ke=e=>{let t=``;for(;e.length>0;)if(Ue.test(e))e=qe(e);else if(We.test(e))e=Je(e);else if(Ge.test(e))e=Je(e),t=Ye(t);else{let n=Xe(e);e=qe(e),t+=n}return t},qe=e=>{let t=e.indexOf(`/`,1);return t===-1?``:`/`+e.slice(t+1)},Je=e=>{let t=e.indexOf(`/`,1);return t===-1?`/`:`/`+e.slice(t+1)},Ye=e=>{let t=e.lastIndexOf(`/`);return t===-1?e:e.slice(0,t)},Xe=e=>{let t=e.indexOf(`/`,1);return t===-1?e:e.slice(0,t)},Ze=new RegExp(F,`g`),Qe=e=>t=>{let n=parseInt(t.slice(1),16),r=String.fromCharCode(n);return e(r)?r:t.toUpperCase()},$e=RegExp.prototype.test.bind(RegExp(`${N}|${P}|[:@]`)),et=RegExp.prototype.test.bind(RegExp(`${K}|${P}|[:@]`,`u`)),tt=e=>t=>Ke(t).replaceAll(Ze,Qe(e)),nt=RegExp.prototype.test.bind(RegExp(`${N}|${P}|[:@/?]`)),rt=RegExp.prototype.test.bind(RegExp(`${K}|${P}|[:@/?]`,`u`)),X=e=>t=>t.replaceAll(Ze,Qe(e)),it=RegExp.prototype.test.bind(new RegExp(Ae));RegExp.prototype.test.bind(new RegExp(je)),RegExp.prototype.test.bind(new RegExp(Me));const at=RegExp.prototype.test.bind(new RegExp(Be,`u`)),ot=RegExp.prototype.test.bind(new RegExp(Ve,`u`));RegExp.prototype.test.bind(new RegExp(He,`u`));const Z=(e,t)=>n=>{let r=e.exec(n);if(r===null)throw Error(`Invalid ${t}: ${n}`);let i=r.groups;return i.authority===void 0&&(i.path=i.path2),delete i.path2,i},st=Z(new RegExp(Ae),`URI`),ct=Z(new RegExp(je),`URI-reference`),lt=Z(new RegExp(Me),`absolute-URI`),ut=Z(new RegExp(Be,`u`),`IRI`),dt=Z(new RegExp(Ve,`u`),`IRI-reference`),ft=Z(new RegExp(He,`u`),`absolute-IRI`),Q={uri:{parseAbsolute:lt,parseReference:ct,parse:st,normalizePath:tt($e),normalizeQuery:X(nt),normalizeFragment:X(nt)},iri:{parseAbsolute:ft,parseReference:dt,parse:ut,normalizePath:tt(et),normalizeQuery:X(rt),normalizeFragment:X(rt)}};Q.uri,Q.iri,Q.uri,Q.iri,Q.uri,Q.iri,Q.uri,Q.iri;const pt=it,mt=at,ht=ot,$=`(?:[0-9a-fA-F]{2})`,gt=`${`${$}{4}`}\\-${`${$}{2}`}\\-${`${$}{2}`}\\-${$}${$}\\-${`${$}{6}`}`;RegExp.prototype.test.bind(RegExp(`^${gt}$`));const _t=`[\\da-fA-F]`,vt=`%${_t}${_t}`,yt=`(?:[a-zA-Z]|\\d|_|${vt})`,bt=`${`${yt}(?:\\.?${yt})*`}(?::(?:[1-9]|\\d{0,3})|\\*)?`,xt=`\\{(?:[+#]|[./;?&][=,!@|])?${`${bt}(?:,${bt})*`}\\}`,St=`(?:${`(?:[\\x21\\x23-\\x24\\x26-\\x3B\\x3D\\x3F-\\x5B\\x5D\\x5F\\x61-\\x7A\\x7E]|[\\u{A0}-\\u{D7FF}\\u{F900}-\\u{FDCF}\\u{FDF0}-\\u{FFEF}\\u{10000}-\\u{1FFFD}\\u{20000}-\\u{2FFFD}\\u{30000}-\\u{3FFFD}\\u{40000}-\\u{4FFFD}\\u{50000}-\\u{5FFFD}\\u{60000}-\\u{6FFFD}\\u{70000}-\\u{7FFFD}\\u{80000}-\\u{8FFFD}\\u{90000}-\\u{9FFFD}\\u{A0000}-\\u{AFFFD}\\u{B0000}-\\u{BFFFD}\\u{C0000}-\\u{CFFFD}\\u{D0000}-\\u{DFFFD}\\u{E1000}-\\u{EFFFD}]|[\\u{E000}-\\u{F8FF}\\u{F0000}-\\u{FFFFD}\\u{100000}-\\u{10FFFD}]|${vt})`}|${xt})*`;RegExp.prototype.test.bind(RegExp(`^${St}$`,`u`)),RegExp.prototype.test.bind(RegExp(`^(?:/(?:[\\u{00}-\\u{2E}\\u{30}-\\u{7D}\\u{7F}-\\u{10FFFF}]|~[01])*)*$`,`u`));const Ct=`(?:0|[1-9][0-9]*)`,wt=`${Ct}(?:${`(?:[+-]${Ct})`}?(?:/(?:[\\u{00}-\\u{2E}\\u{30}-\\u{7D}\\u{7F}-\\u{10FFFF}]|~[01])*)*|#)`;RegExp.prototype.test.bind(RegExp(`^${wt}$`,`u`));const Tt=/^(?:(?:25[0-5]|2[0-4]\d|[01]?\d\d?)\.){3}(?:25[0-5]|2[0-4]\d|[01]?\d\d?)$/,Et=/^((([0-9a-f]{1,4}:){7}([0-9a-f]{1,4}|:))|(([0-9a-f]{1,4}:){6}(:[0-9a-f]{1,4}|((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3})|:))|(([0-9a-f]{1,4}:){5}(((:[0-9a-f]{1,4}){1,2})|:((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3})|:))|(([0-9a-f]{1,4}:){4}(((:[0-9a-f]{1,4}){1,3})|((:[0-9a-f]{1,4})?:((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:))|(([0-9a-f]{1,4}:){3}(((:[0-9a-f]{1,4}){1,4})|((:[0-9a-f]{1,4}){0,2}:((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:))|(([0-9a-f]{1,4}:){2}(((:[0-9a-f]{1,4}){1,5})|((:[0-9a-f]{1,4}){0,3}:((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:))|(([0-9a-f]{1,4}:){1}(((:[0-9a-f]{1,4}){1,6})|((:[0-9a-f]{1,4}){0,4}:((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:))|(:(((:[0-9a-f]{1,4}){1,7})|((:[0-9a-f]{1,4}){0,5}:((25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)(\.(25[0-5]|2[0-4]\d|1\d\d|[1-9]?\d)){3}))|:)))$/i,Dt=/^(?:[a-z][a-z0-9+\-.]*:)?(?:\/?\/(?:(?:[a-z0-9\-._~!$&'()*+,;=:]|%[0-9a-f]{2})*@)?(?:\[(?:(?:(?:(?:[0-9a-f]{1,4}:){6}|::(?:[0-9a-f]{1,4}:){5}|(?:[0-9a-f]{1,4})?::(?:[0-9a-f]{1,4}:){4}|(?:(?:[0-9a-f]{1,4}:){0,1}[0-9a-f]{1,4})?::(?:[0-9a-f]{1,4}:){3}|(?:(?:[0-9a-f]{1,4}:){0,2}[0-9a-f]{1,4})?::(?:[0-9a-f]{1,4}:){2}|(?:(?:[0-9a-f]{1,4}:){0,3}[0-9a-f]{1,4})?::[0-9a-f]{1,4}:|(?:(?:[0-9a-f]{1,4}:){0,4}[0-9a-f]{1,4})?::)(?:[0-9a-f]{1,4}:[0-9a-f]{1,4}|(?:(?:25[0-5]|2[0-4]\d|[01]?\d\d?)\.){3}(?:25[0-5]|2[0-4]\d|[01]?\d\d?))|(?:(?:[0-9a-f]{1,4}:){0,5}[0-9a-f]{1,4})?::[0-9a-f]{1,4}|(?:(?:[0-9a-f]{1,4}:){0,6}[0-9a-f]{1,4})?::)|[Vv][0-9a-f]+\.[a-z0-9\-._~!$&'()*+,;=:]+)\]|(?:(?:25[0-5]|2[0-4]\d|[01]?\d\d?)\.){3}(?:25[0-5]|2[0-4]\d|[01]?\d\d?)|(?:[a-z0-9\-._~!$&'"()*+,;=]|%[0-9a-f]{2})*)(?::\d*)?(?:\/(?:[a-z0-9\-._~!$&'"()*+,;=:@]|%[0-9a-f]{2})*)*|\/(?:(?:[a-z0-9\-._~!$&'"()*+,;=:@]|%[0-9a-f]{2})+(?:\/(?:[a-z0-9\-._~!$&'"()*+,;=:@]|%[0-9a-f]{2})*)*)?|(?:[a-z0-9\-._~!$&'"()*+,;=:@]|%[0-9a-f]{2})+(?:\/(?:[a-z0-9\-._~!$&'"()*+,;=:@]|%[0-9a-f]{2})*)*)?(?:\?(?:[a-z0-9\-._~!$&'"()*+,;=:@/?]|%[0-9a-f]{2})*)?(?:#(?:[a-z0-9\-._~!$&'"()*+,;=:@/?]|%[0-9a-f]{2})*)?$/i,Ot=/^(?:(?:[^\x00-\x20"'<>%\\^`{|}]|%[0-9a-f]{2})|\{[+#./;?&=,!@|]?(?:[a-z0-9_]|%[0-9a-f]{2})+(?::[1-9][0-9]{0,3}|\*)?(?:,(?:[a-z0-9_]|%[0-9a-f]{2})+(?::[1-9][0-9]{0,3}|\*)?)*\})*$/i;function kt(e){e.forEach(e=>e.formats={...At,...e.formats})}const At={hostname:({node:e,pointer:t,data:n})=>{let{schema:r}=e;if(!(typeof n!=`string`||ce(n)))return e.createError(`format-hostname-error`,{value:n,pointer:t,schema:r})},"idn-hostname":({node:e,pointer:t,data:n})=>{if(!(typeof n!=`string`||S(n)))return e.createError(`format-idn-hostname-error`,{value:n,pointer:t,schema:e.schema})},"idn-email":({node:e,pointer:t,data:n})=>{if(!(typeof n!=`string`||n===``||ye(n)))return e.createError(`format-email-error`,{value:n,pointer:t,schema:e.schema})},ipv4:({node:e,pointer:t,data:n})=>{let{schema:r}=e;if(!(typeof n!=`string`||n===``)){if(n&&n[0]===`0`)return e.createError(`format-ipv4-leading-zero-error`,{value:n,pointer:t,schema:r});if(!(n.length<=15&&Tt.test(n)))return e.createError(`format-ipv4-error`,{value:n,pointer:t,schema:r})}},ipv6:({node:e,pointer:t,data:n})=>{let{schema:r}=e;if(!(typeof n!=`string`||n===``)){if(n&&n[0]===`0`)return e.createError(`format-ipv6-leading-zero-error`,{value:n,pointer:t,schema:r});if(!(n.length<=45&&Et.test(n)))return e.createError(`format-ipv6-error`,{value:n,pointer:t,schema:r})}},iri:({node:e,pointer:t,data:n})=>{let{schema:r}=e;if(!(typeof n!=`string`||n===``||mt(n)))return e.createError(`format-iri-error`,{value:n,pointer:t,schema:r})},"iri-reference":({node:e,pointer:t,data:n})=>{let{schema:r}=e;if(!(typeof n!=`string`||n===``||ht(n)))return e.createError(`format-iri-reference-error`,{value:n,pointer:t,schema:r})},uri:({node:e,pointer:t,data:n})=>{if(!(typeof n!=`string`||n===``||pt(n)))return e.createError(`format-uri-error`,{value:n,pointer:t,schema:e.schema})},"uri-reference":({node:e,pointer:t,data:n})=>{let{schema:r}=e;if(!(typeof n!=`string`||n===``)&&!Dt.test(n))return e.createError(`format-uri-reference-error`,{value:n,pointer:t,schema:r})},"uri-template":({node:e,pointer:t,data:n})=>{let{schema:r}=e;if(!(typeof n!=`string`||n===``)&&!Ot.test(n))return e.createError(`format-uri-template-error`,{value:n,pointer:t,schema:r})}};exports.addFormats=kt,exports.formats=At;
2
+ //# sourceMappingURL=formats.cjs.map