From 7347f3aa662bd828568458af4bc8e39da818480a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Felix=20B=C3=B6hm?= <188768+fb55@users.noreply.github.com> Date: Thu, 31 Mar 2022 13:15:51 +0100 Subject: [PATCH] refactor(trie): Store short values in nodes (#773) --- scripts/trie/README.md | 26 +++++++++++-------- scripts/trie/encode-trie.spec.ts | 25 +++++++----------- scripts/trie/encode-trie.ts | 40 +++++++++++++++++++++------- src/decode.ts | 43 +++++++++++++++++++------------ src/generated/decode-data-html.ts | 2 +- src/generated/decode-data-xml.ts | 2 +- 6 files changed, 85 insertions(+), 53 deletions(-) diff --git a/scripts/trie/README.md b/scripts/trie/README.md index e63138ea..77cc525c 100644 --- a/scripts/trie/README.md +++ b/scripts/trie/README.md @@ -58,26 +58,30 @@ A node may contain one or two bytes of data and/or branch data. The layout of a node is as follows: ``` -1 bit | 7 bit | 1 bit | 7 bit - \ \ \ \ - \ \ \ \ - \ \ \ jump table offset - \ \ flag if the value uses two bytes (for surrugate pairs) +2 bit | 7 bit | 7 bit + \ \ \ + \ \ \ + \ \ \ + \ \ jump table offset \ number of branches - has value flag + value length ``` -If the _has value_ flag is set, the node will immediately be followed by the -value. If it has any branch data (indicated by the _number of branches_ or the -_jump table offset_ being set), it will then be followed by the branch data. +The _value length_ is the number of bytes in the value. If the length is 1, the +node does not have any branches and the value will be stored inside the lower 14 +bit of the node. Otherwise, the value will be stored in the next bytes of the +array. + +If it has any branch data (indicated by the _number of branches_ or the _jump +table offset_ being set), the node will be followed by the branch data. ### Branch data Branches can be represented in three different ways: 1. If we only have a single branch, and this branch wasn't encoded earlier in - the tree, we set the number of branch to 0 and the jump table offset to the - branch value. The node will be followed by the serialized branch. + the tree, we set the number of branches to 0 and the jump table offset to + the branch value. The node will be followed by the serialized branch. 2. If the branch values are close to one another, we use a jump table. This is indicated by the jump table offset not being 0. The jump table is an array of destination indices. diff --git a/scripts/trie/encode-trie.spec.ts b/scripts/trie/encode-trie.spec.ts index c5cdf7c8..0a8250f1 100644 --- a/scripts/trie/encode-trie.spec.ts +++ b/scripts/trie/encode-trie.spec.ts @@ -1,4 +1,3 @@ -import { BinTrieFlags } from "../../src/decode"; import { encodeTrie } from "./encode-trie"; import type { TrieNode } from "./trie"; @@ -9,14 +8,13 @@ describe("encode_trie", () => { it("should encode a node with a value", () => { expect(encodeTrie({ value: "a" })).toStrictEqual([ - BinTrieFlags.HAS_VALUE, - "a".charCodeAt(0), + 0b0100_0000_0000_0000 | "a".charCodeAt(0), ]); }); it("should encode a node with a multi-byte value", () => { expect(encodeTrie({ value: "ab" })).toStrictEqual([ - BinTrieFlags.HAS_VALUE | BinTrieFlags.MULTI_BYTE, + 0b1100_0000_0000_0000, "a".charCodeAt(0), "b".charCodeAt(0), ]); @@ -29,8 +27,7 @@ describe("encode_trie", () => { }) ).toStrictEqual([ "b".charCodeAt(0), - BinTrieFlags.HAS_VALUE, - "a".charCodeAt(0), + 0b0100_0000_0000_0000 | "a".charCodeAt(0), ]); }); @@ -44,14 +41,13 @@ describe("encode_trie", () => { ]), }; expect(encodeTrie(trie)).toStrictEqual([ - 0b0000_0010_0000_0000, + 0b0000_0001_0000_0000, "A".charCodeAt(0), "b".charCodeAt(0), 0b101, - 0b111, - BinTrieFlags.HAS_VALUE, - "a".charCodeAt(0), - 0b0000_0001_0000_0000 | "c".charCodeAt(0), + 0b110, + 0b0100_0000_0000_0000 | "a".charCodeAt(0), + 0b0000_0000_1000_0000 | "c".charCodeAt(0), 0b110, // Index plus one ]); }); @@ -61,13 +57,12 @@ describe("encode_trie", () => { recursiveTrie.next.set("a".charCodeAt(0), { value: "a" }); recursiveTrie.next.set("0".charCodeAt(0), recursiveTrie); expect(encodeTrie(recursiveTrie)).toStrictEqual([ - 0b0000_0010_0000_0000, + 0b0000_0001_0000_0000, "0".charCodeAt(0), "a".charCodeAt(0), 0, 5, - BinTrieFlags.HAS_VALUE, - "a".charCodeAt(0), + 0b0100_0000_0000_0000 | "a".charCodeAt(0), ]); }); @@ -77,7 +72,7 @@ describe("encode_trie", () => { jumpRecursiveTrie.next.set(val, jumpRecursiveTrie) ); expect(encodeTrie(jumpRecursiveTrie)).toStrictEqual([ - 0b0000_1010_0011_0000, 1, 1, 0, 0, 1, 0, 1, 0, 1, 1, + 0b0000_0101_0011_0000, 1, 1, 0, 0, 1, 0, 1, 0, 1, 1, ]); }); }); diff --git a/scripts/trie/encode-trie.ts b/scripts/trie/encode-trie.ts index a8ae92b9..7b690b4f 100644 --- a/scripts/trie/encode-trie.ts +++ b/scripts/trie/encode-trie.ts @@ -1,7 +1,6 @@ /* eslint-disable node/no-unsupported-features/es-builtins */ import * as assert from "assert"; -import { BinTrieFlags } from "../../src/decode"; import { TrieNode } from "./trie"; function binaryLength(num: number) { @@ -43,14 +42,37 @@ export function encodeTrie(trie: TrieNode, maxJumpTableOverhead = 2): number[] { const nodeIdx = enc.push(0) - 1; if (node.value != null) { - enc[nodeIdx] |= BinTrieFlags.HAS_VALUE; - - if (node.value.length === 2) { - enc[nodeIdx] |= BinTrieFlags.MULTI_BYTE; + let valueLength = 0; + + /* + * If we don't have a branch and the value is short, we can + * store the value in the node. + */ + if ( + node.next || + node.value.length > 1 || + binaryLength(node.value.charCodeAt(0)) > 14 + ) { + valueLength = node.value.length; } - for (let i = 0; i < node.value.length; i++) - enc.push(node.value.charCodeAt(i)); + // Add 1 to the value length, to signal that we have a value. + valueLength += 1; + + assert.ok( + binaryLength(valueLength) <= 2, + "Too many bits for value length" + ); + + enc[nodeIdx] |= valueLength << 14; + + if (valueLength === 1) { + enc[nodeIdx] |= node.value.charCodeAt(0); + } else { + for (let i = 0; i < node.value.length; i++) { + enc.push(node.value.charCodeAt(i)); + } + } } if (node.next) addBranches(node.next, nodeIdx); @@ -109,7 +131,7 @@ export function encodeTrie(trie: TrieNode, maxJumpTableOverhead = 2): number[] { ); // Write the length of the adjusted table, plus jump offset - enc[nodeIdx] |= (jumpTableLength << 8) | jumpOffset; + enc[nodeIdx] |= (jumpTableLength << 7) | jumpOffset; assert.ok( binaryLength(jumpTableLength) <= 7, @@ -129,7 +151,7 @@ export function encodeTrie(trie: TrieNode, maxJumpTableOverhead = 2): number[] { return; } - enc[nodeIdx] |= branches.length << 8; + enc[nodeIdx] |= branches.length << 7; enc.push( ...branches.map(([char]) => char), diff --git a/src/decode.ts b/src/decode.ts index a13959e9..3b6d3bbd 100644 --- a/src/decode.ts +++ b/src/decode.ts @@ -18,9 +18,8 @@ const enum CharCodes { } export enum BinTrieFlags { - HAS_VALUE = 0b1000_0000_0000_0000, - BRANCH_LENGTH = 0b0111_1111_0000_0000, - MULTI_BYTE = 0b0000_0000_1000_0000, + VALUE_LENGTH = 0b1100_0000_0000_0000, + BRANCH_LENGTH = 0b0011_1111_1000_0000, JUMP_TABLE = 0b0000_0000_0111_1111, } @@ -91,31 +90,39 @@ function getDecoder(decodeTree: Uint16Array) { current = decodeTree[treeIdx]; + const masked = current & BinTrieFlags.VALUE_LENGTH; + // If the branch is a value, store it and continue - if (current & BinTrieFlags.HAS_VALUE) { + if (masked) { // If we have a legacy entity while parsing strictly, just skip the number of bytes - if (strict && str.charCodeAt(strIdx) !== CharCodes.SEMI) { - // No need to consider multi-byte values, as the legacy entity is always a single byte - treeIdx += 1; - } else { - // If this is a surrogate pair, combine the higher bits from the node with the next byte + if (!strict || str.charCodeAt(strIdx) === CharCodes.SEMI) { resultIdx = treeIdx; - treeIdx += - 1 + - Number((current & BinTrieFlags.MULTI_BYTE) !== 0); excess = 0; } + + // The mask is the number of bytes of the value, including the current byte. + const valueLength = (masked >> 14) - 1; + + if (valueLength === 0) break; + + treeIdx += valueLength; } } if (resultIdx !== 0) { + const valueLength = + (decodeTree[resultIdx] & BinTrieFlags.VALUE_LENGTH) >> 14; ret += - decodeTree[resultIdx] & BinTrieFlags.MULTI_BYTE + valueLength === 1 ? String.fromCharCode( + decodeTree[resultIdx] & ~BinTrieFlags.VALUE_LENGTH + ) + : valueLength === 2 + ? String.fromCharCode(decodeTree[resultIdx + 1]) + : String.fromCharCode( decodeTree[resultIdx + 1], decodeTree[resultIdx + 2] - ) - : String.fromCharCode(decodeTree[resultIdx + 1]); + ); lastIdx = strIdx - excess + 1; } } @@ -130,13 +137,15 @@ export function determineBranch( nodeIdx: number, char: number ): number { - const branchCount = (current & BinTrieFlags.BRANCH_LENGTH) >> 8; + const branchCount = (current & BinTrieFlags.BRANCH_LENGTH) >> 7; const jumpOffset = current & BinTrieFlags.JUMP_TABLE; + // Case 1: Single branch encoded in jump offset if (branchCount === 0) { return jumpOffset !== 0 && char === jumpOffset ? nodeIdx : -1; } + // Case 2: Multiple branches encoded in jump table if (jumpOffset) { const value = char - jumpOffset; @@ -145,6 +154,8 @@ export function determineBranch( : decodeTree[nodeIdx + value] - 1; } + // Case 3: Multiple branches encoded in dictionary + // Binary search for the character. let lo = nodeIdx; let hi = lo + branchCount - 1; diff --git a/src/generated/decode-data-html.ts b/src/generated/decode-data-html.ts index aac5f47f..6af260fe 100644 --- a/src/generated/decode-data-html.ts +++ b/src/generated/decode-data-html.ts @@ -1,3 +1,3 @@ // Generated using scripts/write-decode-map.ts // prettier-ignore -export default new Uint16Array([14913,60,229,330,707,1284,1529,1619,1802,1917,2135,2191,2253,2875,2952,3781,4005,4176,4207,4669,5050,5253,5591,5740,5780,5809,5886,0,0,0,0,0,0,5964,6362,7153,7864,8359,8819,9070,9437,9675,10014,10078,10156,11233,11488,12549,12905,13330,13405,14135,15106,15504,15867,16173,16250,16363,16449,4096,69,77,97,98,99,102,103,108,109,110,111,112,114,115,116,117,92,99,104,112,119,133,138,146,152,158,162,177,191,198,214,222,108,105,103,32827,198,32768,198,80,32827,38,32768,38,99,117,116,101,32827,193,32768,193,114,101,118,101,59,32768,258,512,105,121,124,130,114,99,32827,194,32768,194,59,32768,1040,114,59,32896,55349,56580,114,97,118,101,32827,192,32768,192,112,104,97,59,32768,913,97,99,114,59,32768,256,100,59,32768,10835,512,103,112,167,172,111,110,59,32768,260,102,59,32896,55349,56632,112,108,121,70,117,110,99,116,105,111,110,59,32768,8289,105,110,103,32827,197,32768,197,512,99,115,203,208,114,59,32896,55349,56476,105,103,110,59,32768,8788,105,108,100,101,32827,195,32768,195,109,108,32827,196,32768,196,2048,97,99,101,102,111,114,115,117,245,270,274,302,307,313,319,322,512,99,114,250,259,107,115,108,97,115,104,59,32768,8726,630,263,266,59,32768,10983,101,100,59,32768,8966,121,59,32768,1041,768,99,114,116,281,288,298,97,117,115,101,59,32768,8757,110,111,117,108,108,105,115,59,32768,8492,97,59,32768,914,114,59,32896,55349,56581,112,102,59,32896,55349,56633,101,118,101,59,32768,728,99,370,296,109,112,101,113,59,32768,8782,3584,72,79,97,99,100,101,102,104,105,108,111,114,115,117,358,363,369,415,449,454,475,477,481,519,579,681,687,693,99,121,59,32768,1063,80,89,32827,169,32768,169,768,99,112,121,376,382,408,117,116,101,59,32768,262,512,59,105,387,389,32768,8914,116,97,108,68,105,102,102,101,114,101,110,116,105,97,108,68,59,32768,8517,108,101,121,115,59,32768,8493,1024,97,101,105,111,424,430,437,442,114,111,110,59,32768,268,100,105,108,32827,199,32768,199,114,99,59,32768,264,110,105,110,116,59,32768,8752,111,116,59,32768,266,512,100,110,459,466,105,108,108,97,59,32768,184,116,101,114,68,111,116,59,32768,183,370,413,105,59,32768,935,114,99,108,101,1024,68,77,80,84,494,499,506,512,111,116,59,32768,8857,105,110,117,115,59,32768,8854,108,117,115,59,32768,8853,105,109,101,115,59,32768,8855,111,512,99,115,525,548,107,119,105,115,101,67,111,110,116,111,117,114,73,110,116,101,103,114,97,108,59,32768,8754,101,67,117,114,108,121,512,68,81,559,572,111,117,98,108,101,81,117,111,116,101,59,32768,8221,117,111,116,101,59,32768,8217,1024,108,110,112,117,588,600,634,650,111,110,512,59,101,595,597,32768,8759,59,32768,10868,768,103,105,116,607,615,620,114,117,101,110,116,59,32768,8801,110,116,59,32768,8751,111,117,114,73,110,116,101,103,114,97,108,59,32768,8750,512,102,114,639,642,59,32768,8450,111,100,117,99,116,59,32768,8720,110,116,101,114,67,108,111,99,107,119,105,115,101,67,111,110,116,111,117,114,73,110,116,101,103,114,97,108,59,32768,8755,111,115,115,59,32768,10799,99,114,59,32896,55349,56478,112,512,59,67,699,701,32768,8915,97,112,59,32768,8781,2816,68,74,83,90,97,99,101,102,105,111,115,729,742,747,752,757,779,793,805,810,894,1267,512,59,111,406,734,116,114,97,104,100,59,32768,10513,99,121,59,32768,1026,99,121,59,32768,1029,99,121,59,32768,1039,768,103,114,115,764,770,774,103,101,114,59,32768,8225,114,59,32768,8609,104,118,59,32768,10980,512,97,121,784,790,114,111,110,59,32768,270,59,32768,1044,108,512,59,116,799,801,32768,8711,97,59,32768,916,114,59,32896,55349,56583,512,97,102,815,881,512,99,109,820,875,114,105,116,105,99,97,108,1024,65,68,71,84,836,843,861,868,99,117,116,101,59,32768,180,111,628,848,851,59,32768,729,98,108,101,65,99,117,116,101,59,32768,733,114,97,118,101,59,32768,96,105,108,100,101,59,32768,732,111,110,100,59,32768,8900,102,101,114,101,110,116,105,97,108,68,59,32768,8518,2160,904,0,0,0,909,930,0,1118,102,59,32896,55349,56635,768,59,68,69,915,917,922,32768,168,111,116,59,32768,8412,113,117,97,108,59,32768,8784,98,108,101,1536,67,68,76,82,85,86,945,960,977,1059,1080,1104,111,110,116,111,117,114,73,110,116,101,103,114,97,364,618,111,1140,967,0,0,969,315,916,110,65,114,114,111,119,59,32768,8659,512,101,111,982,1013,102,116,768,65,82,84,991,998,1010,114,114,111,119,59,32768,8656,105,103,104,116,65,114,114,111,119,59,32768,8660,101,357,777,110,103,512,76,82,1020,1047,101,102,116,512,65,82,1028,1035,114,114,111,119,59,32768,10232,105,103,104,116,65,114,114,111,119,59,32768,10234,105,103,104,116,65,114,114,111,119,59,32768,10233,105,103,104,116,512,65,84,1068,1075,114,114,111,119,59,32768,8658,101,101,59,32768,8872,112,1089,1087,0,0,1094,114,114,111,119,59,32768,8657,111,119,110,65,114,114,111,119,59,32768,8661,101,114,116,105,99,97,108,66,97,114,59,32768,8741,110,1536,65,66,76,82,84,97,1131,1158,1165,1215,1251,970,114,114,111,119,768,59,66,85,1142,1144,1149,32768,8595,97,114,59,32768,10515,112,65,114,114,111,119,59,32768,8693,114,101,118,101,59,32768,785,101,102,116,1362,1175,0,1188,0,1199,105,103,104,116,86,101,99,116,111,114,59,32768,10576,101,101,86,101,99,116,111,114,59,32768,10590,101,99,116,111,114,512,59,66,1208,1210,32768,8637,97,114,59,32768,10582,105,103,104,116,852,1224,0,1235,101,101,86,101,99,116,111,114,59,32768,10591,101,99,116,111,114,512,59,66,1244,1246,32768,8641,97,114,59,32768,10583,101,101,512,59,65,1258,1260,32768,8868,114,114,111,119,59,32768,8615,512,99,116,1272,1277,114,59,32896,55349,56479,114,111,107,59,32768,272,4096,78,84,97,99,100,102,103,108,109,111,112,113,115,116,117,120,1316,1320,1325,1333,1355,1360,1365,1373,1381,1428,1443,1451,1482,1495,1499,1505,71,59,32768,330,72,32827,208,32768,208,99,117,116,101,32827,201,32768,201,768,97,105,121,1340,1346,1352,114,111,110,59,32768,282,114,99,32827,202,32768,202,59,32768,1069,111,116,59,32768,278,114,59,32896,55349,56584,114,97,118,101,32827,200,32768,200,101,109,101,110,116,59,32768,8712,512,97,112,1386,1391,99,114,59,32768,274,116,121,1107,1399,0,0,1412,109,97,108,108,83,113,117,97,114,101,59,32768,9723,101,114,121,83,109,97,108,108,83,113,117,97,114,101,59,32768,9643,512,103,112,1433,1438,111,110,59,32768,280,102,59,32896,55349,56636,115,105,108,111,110,59,32768,917,117,512,97,105,1457,1472,108,512,59,84,1463,1465,32768,10869,105,108,100,101,59,32768,8770,108,105,98,114,105,117,109,59,32768,8652,512,99,105,1487,1491,114,59,32768,8496,109,59,32768,10867,97,59,32768,919,109,108,32827,203,32768,203,512,105,112,1510,1516,115,116,115,59,32768,8707,111,110,101,110,116,105,97,108,69,59,32768,8519,1280,99,102,105,111,115,1539,1543,1548,1587,1615,121,59,32768,1060,114,59,32896,55349,56585,108,108,101,100,1107,1558,0,0,1571,109,97,108,108,83,113,117,97,114,101,59,32768,9724,101,114,121,83,109,97,108,108,83,113,117,97,114,101,59,32768,9642,1648,1595,0,1600,0,0,1606,102,59,32896,55349,56637,65,108,108,59,32768,8704,114,105,101,114,116,114,102,59,32768,8497,99,370,1613,3072,74,84,97,98,99,100,102,103,111,114,115,116,1643,1648,1652,1665,1672,1693,1698,1703,1706,1712,1792,1798,99,121,59,32768,1027,32827,62,32768,62,109,109,97,512,59,100,1660,1662,32768,915,59,32768,988,114,101,118,101,59,32768,286,768,101,105,121,1679,1685,1690,100,105,108,59,32768,290,114,99,59,32768,284,59,32768,1043,111,116,59,32768,288,114,59,32896,55349,56586,59,32768,8921,112,102,59,32896,55349,56638,101,97,116,101,114,1536,69,70,71,76,83,84,1730,1747,1758,1767,1773,1785,113,117,97,108,512,59,76,1739,1741,32768,8805,101,115,115,59,32768,8923,117,108,108,69,113,117,97,108,59,32768,8807,114,101,97,116,101,114,59,32768,10914,101,115,115,59,32768,8823,108,97,110,116,69,113,117,97,108,59,32768,10878,105,108,100,101,59,32768,8819,99,114,59,32896,55349,56482,59,32768,8811,2048,65,97,99,102,105,111,115,117,1818,1825,1838,1844,1848,1861,1883,1896,82,68,99,121,59,32768,1066,512,99,116,1830,1835,101,107,59,32768,711,59,32768,94,105,114,99,59,32768,292,114,59,32768,8460,108,98,101,114,116,83,112,97,99,101,59,32768,8459,880,1866,0,1870,102,59,32768,8461,105,122,111,110,116,97,108,76,105,110,101,59,32768,9472,512,99,116,1888,1890,370,1859,114,111,107,59,32768,294,109,112,580,1902,1910,111,119,110,72,117,109,368,327,113,117,97,108,59,32768,8783,3584,69,74,79,97,99,100,102,103,109,110,111,115,116,117,1945,1950,1956,1961,1969,1983,1988,1992,2000,2030,2087,2108,2113,2120,99,121,59,32768,1045,108,105,103,59,32768,306,99,121,59,32768,1025,99,117,116,101,32827,205,32768,205,512,105,121,1974,1980,114,99,32827,206,32768,206,59,32768,1048,111,116,59,32768,304,114,59,32768,8465,114,97,118,101,32827,204,32768,204,768,59,97,112,1990,2007,2025,512,99,103,2012,2016,114,59,32768,298,105,110,97,114,121,73,59,32768,8520,108,105,101,371,1073,884,2035,0,2063,512,59,101,2039,2041,32768,8748,512,103,114,2046,2052,114,97,108,59,32768,8747,115,101,99,116,105,111,110,59,32768,8898,105,115,105,98,108,101,512,67,84,2073,2080,111,109,109,97,59,32768,8291,105,109,101,115,59,32768,8290,768,103,112,116,2094,2099,2104,111,110,59,32768,302,102,59,32896,55349,56640,97,59,32768,921,99,114,59,32768,8464,105,108,100,101,59,32768,296,875,2125,0,2130,99,121,59,32768,1030,108,32827,207,32768,207,1280,99,102,111,115,117,2145,2158,2163,2169,2184,512,105,121,2150,2155,114,99,59,32768,308,59,32768,1049,114,59,32896,55349,56589,112,102,59,32896,55349,56641,867,2174,0,2179,114,59,32896,55349,56485,114,99,121,59,32768,1032,107,99,121,59,32768,1028,1792,72,74,97,99,102,111,115,2205,2210,2215,2221,2235,2240,2246,99,121,59,32768,1061,99,121,59,32768,1036,112,112,97,59,32768,922,512,101,121,2226,2232,100,105,108,59,32768,310,59,32768,1050,114,59,32896,55349,56590,112,102,59,32896,55349,56642,99,114,59,32896,55349,56486,2816,74,84,97,99,101,102,108,109,111,115,116,2275,2280,2284,2325,2347,2713,2718,2735,2742,2853,2871,99,121,59,32768,1033,32827,60,32768,60,1280,99,109,110,112,114,2295,2301,2307,2311,2321,117,116,101,59,32768,313,98,100,97,59,32768,923,103,59,32768,10218,108,97,99,101,116,114,102,59,32768,8466,114,59,32768,8606,768,97,101,121,2332,2338,2344,114,111,110,59,32768,317,100,105,108,59,32768,315,59,32768,1051,512,102,115,2352,2640,116,2560,65,67,68,70,82,84,85,86,97,114,2374,2421,2430,2481,2488,2512,2569,2617,991,2634,512,110,114,2379,2392,103,108,101,66,114,97,99,107,101,116,59,32768,10216,114,111,119,768,59,66,82,2402,2404,2409,32768,8592,97,114,59,32768,8676,105,103,104,116,65,114,114,111,119,59,32768,8646,101,105,108,105,110,103,59,32768,8968,111,885,2436,0,2449,98,108,101,66,114,97,99,107,101,116,59,32768,10214,110,852,2454,0,2465,101,101,86,101,99,116,111,114,59,32768,10593,101,99,116,111,114,512,59,66,2474,2476,32768,8643,97,114,59,32768,10585,108,111,111,114,59,32768,8970,105,103,104,116,512,65,86,2497,2504,114,114,111,119,59,32768,8596,101,99,116,111,114,59,32768,10574,512,101,114,2517,2542,101,768,59,65,86,2525,2527,2534,32768,8867,114,114,111,119,59,32768,8612,101,99,116,111,114,59,32768,10586,105,97,110,103,108,101,768,59,66,69,2555,2557,2562,32768,8882,97,114,59,32768,10703,113,117,97,108,59,32768,8884,112,768,68,84,86,2577,2589,2600,111,119,110,86,101,99,116,111,114,59,32768,10577,101,101,86,101,99,116,111,114,59,32768,10592,101,99,116,111,114,512,59,66,2610,2612,32768,8639,97,114,59,32768,10584,101,99,116,111,114,512,59,66,2627,2629,32768,8636,97,114,59,32768,10578,105,103,104,116,353,1004,115,1536,69,70,71,76,83,84,2654,2668,2679,2688,2694,2706,113,117,97,108,71,114,101,97,116,101,114,59,32768,8922,117,108,108,69,113,117,97,108,59,32768,8806,114,101,97,116,101,114,59,32768,8822,101,115,115,59,32768,10913,108,97,110,116,69,113,117,97,108,59,32768,10877,105,108,100,101,59,32768,8818,114,59,32896,55349,56591,512,59,101,2723,2725,32768,8920,102,116,97,114,114,111,119,59,32768,8666,105,100,111,116,59,32768,319,768,110,112,119,2749,2818,2823,103,1024,76,82,108,114,2759,2786,2798,2812,101,102,116,512,65,82,2767,2774,114,114,111,119,59,32768,10229,105,103,104,116,65,114,114,111,119,59,32768,10231,105,103,104,116,65,114,114,111,119,59,32768,10230,101,102,116,512,97,114,1028,2806,105,103,104,116,353,1041,105,103,104,116,353,1053,102,59,32896,55349,56643,101,114,512,76,82,2830,2841,101,102,116,65,114,114,111,119,59,32768,8601,105,103,104,116,65,114,114,111,119,59,32768,8600,768,99,104,116,2860,2862,2865,370,2319,59,32768,8624,114,111,107,59,32768,321,59,32768,8810,2048,97,99,101,102,105,111,115,117,2891,2895,2899,2924,2929,2939,2945,2948,112,59,32768,10501,121,59,32768,1052,512,100,108,2904,2915,105,117,109,83,112,97,99,101,59,32768,8287,108,105,110,116,114,102,59,32768,8499,114,59,32896,55349,56592,110,117,115,80,108,117,115,59,32768,8723,112,102,59,32896,55349,56644,99,370,2922,59,32768,924,2304,74,97,99,101,102,111,115,116,117,2970,2975,2982,3004,3090,3095,3763,3769,3777,99,121,59,32768,1034,99,117,116,101,59,32768,323,768,97,101,121,2989,2995,3001,114,111,110,59,32768,327,100,105,108,59,32768,325,59,32768,1053,768,103,115,119,3011,3053,3083,97,116,105,118,101,768,77,84,86,3023,3036,3045,101,100,105,117,109,83,112,97,99,101,59,32768,8203,104,105,512,99,110,3043,3028,363,3029,101,114,121,84,104,105,366,3029,116,101,100,512,71,76,3061,3075,114,101,97,116,101,114,71,114,101,97,116,101,370,1799,101,115,115,76,101,115,371,2872,76,105,110,101,59,32768,10,114,59,32896,55349,56593,1024,66,110,112,116,3104,3111,3127,3131,114,101,97,107,59,32768,8288,66,114,101,97,107,105,110,103,83,112,97,99,101,59,32768,160,102,59,32768,8469,3328,59,67,68,69,71,72,76,78,80,82,83,84,86,3158,3160,3182,3201,3241,3319,3344,3440,3478,3514,3567,3710,3750,32768,10988,512,111,117,3165,3175,110,103,114,117,101,110,116,59,32768,8802,112,67,97,112,59,32768,8813,111,117,98,108,101,86,101,114,116,105,99,97,108,66,97,114,59,32768,8742,768,108,113,120,3208,3216,3234,101,109,101,110,116,59,32768,8713,117,97,108,512,59,84,3224,3226,32768,8800,105,108,100,101,59,32896,8770,824,105,115,116,115,59,32768,8708,114,101,97,116,101,114,1792,59,69,70,71,76,83,84,3262,3264,3271,3283,3293,3299,3312,32768,8815,113,117,97,108,59,32768,8817,117,108,108,69,113,117,97,108,59,32896,8807,824,114,101,97,116,101,114,59,32896,8811,824,101,115,115,59,32768,8825,108,97,110,116,69,113,117,97,108,59,32896,10878,824,105,108,100,101,59,32768,8821,117,109,112,580,3326,3337,111,119,110,72,117,109,112,59,32896,8782,824,113,117,97,108,59,32896,8783,824,101,512,102,115,3350,3381,116,84,114,105,97,110,103,108,101,768,59,66,69,3366,3368,3374,32768,8938,97,114,59,32896,10703,824,113,117,97,108,59,32768,8940,115,1536,59,69,71,76,83,84,3395,3397,3404,3413,3420,3433,32768,8814,113,117,97,108,59,32768,8816,114,101,97,116,101,114,59,32768,8824,101,115,115,59,32896,8810,824,108,97,110,116,69,113,117,97,108,59,32896,10877,824,105,108,100,101,59,32768,8820,101,115,116,101,100,512,71,76,3450,3467,114,101,97,116,101,114,71,114,101,97,116,101,114,59,32896,10914,824,101,115,115,76,101,115,115,59,32896,10913,824,114,101,99,101,100,101,115,768,59,69,83,3492,3494,3502,32768,8832,113,117,97,108,59,32896,10927,824,108,97,110,116,69,113,117,97,108,59,32768,8928,512,101,105,3519,3534,118,101,114,115,101,69,108,101,109,101,110,116,59,32768,8716,103,104,116,84,114,105,97,110,103,108,101,768,59,66,69,3552,3554,3560,32768,8939,97,114,59,32896,10704,824,113,117,97,108,59,32768,8941,512,113,117,3572,3621,117,97,114,101,83,117,512,98,112,3583,3601,115,101,116,512,59,69,3591,3594,32896,8847,824,113,117,97,108,59,32768,8930,101,114,115,101,116,512,59,69,3611,3614,32896,8848,824,113,117,97,108,59,32768,8931,768,98,99,112,3628,3646,3690,115,101,116,512,59,69,3636,3639,32896,8834,8402,113,117,97,108,59,32768,8840,99,101,101,100,115,1024,59,69,83,84,3660,3662,3670,3682,32768,8833,113,117,97,108,59,32896,10928,824,108,97,110,116,69,113,117,97,108,59,32768,8929,105,108,100,101,59,32896,8831,824,101,114,115,101,116,512,59,69,3700,3703,32896,8835,8402,113,117,97,108,59,32768,8841,105,108,100,101,1024,59,69,70,84,3723,3725,3732,3743,32768,8769,113,117,97,108,59,32768,8772,117,108,108,69,113,117,97,108,59,32768,8775,105,108,100,101,59,32768,8777,101,114,116,105,99,97,108,66,97,114,59,32768,8740,99,114,59,32896,55349,56489,105,108,100,101,32827,209,32768,209,59,32768,925,3584,69,97,99,100,102,103,109,111,112,114,115,116,117,118,3809,3815,3823,3837,3844,3849,3857,3881,3887,3919,3922,3939,3954,3960,108,105,103,59,32768,338,99,117,116,101,32827,211,32768,211,512,105,121,3828,3834,114,99,32827,212,32768,212,59,32768,1054,98,108,97,99,59,32768,336,114,59,32896,55349,56594,114,97,118,101,32827,210,32768,210,768,97,101,105,3864,3869,3874,99,114,59,32768,332,103,97,59,32768,937,99,114,111,110,59,32768,927,112,102,59,32896,55349,56646,101,110,67,117,114,108,121,512,68,81,3899,3912,111,117,98,108,101,81,117,111,116,101,59,32768,8220,117,111,116,101,59,32768,8216,59,32768,10836,512,99,108,3927,3932,114,59,32896,55349,56490,97,115,104,32827,216,32768,216,105,620,3944,3950,100,101,32827,213,32768,213,101,115,59,32768,10807,109,108,32827,214,32768,214,101,114,512,66,80,3967,3991,512,97,114,3972,3976,114,59,32768,8254,97,99,512,101,107,3983,3986,59,32768,9182,101,116,59,32768,9140,97,114,101,110,116,104,101,115,105,115,59,32768,9180,2304,97,99,102,104,105,108,111,114,115,4023,4032,4036,4041,4045,4048,4058,4078,4162,114,116,105,97,108,68,59,32768,8706,121,59,32768,1055,114,59,32896,55349,56595,105,59,32768,934,59,32768,928,117,115,77,105,110,117,115,59,32768,177,512,105,112,4063,4074,110,99,97,114,101,112,108,97,110,357,1846,102,59,32768,8473,1024,59,101,105,111,4087,4089,4131,4136,32768,10939,99,101,100,101,115,1024,59,69,83,84,4103,4105,4112,4124,32768,8826,113,117,97,108,59,32768,10927,108,97,110,116,69,113,117,97,108,59,32768,8828,105,108,100,101,59,32768,8830,109,101,59,32768,8243,512,100,112,4141,4147,117,99,116,59,32768,8719,111,114,116,105,111,110,512,59,97,595,4158,108,59,32768,8733,512,99,105,4167,4172,114,59,32896,55349,56491,59,32768,936,1024,85,102,111,115,4184,4190,4195,4200,79,84,32827,34,32768,34,114,59,32896,55349,56596,112,102,59,32768,8474,99,114,59,32896,55349,56492,3072,66,69,97,99,101,102,104,105,111,114,115,117,4231,4237,4242,4271,4293,4349,4352,4356,4611,4632,4644,4656,97,114,114,59,32768,10512,71,32827,174,32768,174,768,99,110,114,4249,4255,4259,117,116,101,59,32768,340,103,59,32768,10219,114,512,59,116,4265,4267,32768,8608,108,59,32768,10518,768,97,101,121,4278,4284,4290,114,111,110,59,32768,344,100,105,108,59,32768,342,59,32768,1056,512,59,118,4298,4300,32768,8476,101,114,115,101,512,69,85,4309,4334,512,108,113,4314,4322,101,109,101,110,116,59,32768,8715,117,105,108,105,98,114,105,117,109,59,32768,8651,112,69,113,117,105,108,105,98,114,105,117,109,59,32768,10607,114,315,4299,111,59,32768,929,103,104,116,2048,65,67,68,70,84,85,86,97,4376,4422,4431,4482,4489,4546,4594,1068,512,110,114,4381,4394,103,108,101,66,114,97,99,107,101,116,59,32768,10217,114,111,119,768,59,66,76,4404,4406,4411,32768,8594,97,114,59,32768,8677,101,102,116,65,114,114,111,119,59,32768,8644,101,105,108,105,110,103,59,32768,8969,111,885,4437,0,4450,98,108,101,66,114,97,99,107,101,116,59,32768,10215,110,852,4455,0,4466,101,101,86,101,99,116,111,114,59,32768,10589,101,99,116,111,114,512,59,66,4475,4477,32768,8642,97,114,59,32768,10581,108,111,111,114,59,32768,8971,512,101,114,4494,4519,101,768,59,65,86,4502,4504,4511,32768,8866,114,114,111,119,59,32768,8614,101,99,116,111,114,59,32768,10587,105,97,110,103,108,101,768,59,66,69,4532,4534,4539,32768,8883,97,114,59,32768,10704,113,117,97,108,59,32768,8885,112,768,68,84,86,4554,4566,4577,111,119,110,86,101,99,116,111,114,59,32768,10575,101,101,86,101,99,116,111,114,59,32768,10588,101,99,116,111,114,512,59,66,4587,4589,32768,8638,97,114,59,32768,10580,101,99,116,111,114,512,59,66,4604,4606,32768,8640,97,114,59,32768,10579,512,112,117,4616,4620,102,59,32768,8477,110,100,73,109,112,108,105,101,115,59,32768,10608,105,103,104,116,97,114,114,111,119,59,32768,8667,512,99,104,4649,4653,114,59,32768,8475,59,32768,8625,108,101,68,101,108,97,121,101,100,59,32768,10740,3328,72,79,97,99,102,104,105,109,111,113,115,116,117,4695,4710,4717,4724,4757,4762,4814,4820,4832,4838,4924,4930,4935,512,67,99,4700,4706,72,99,121,59,32768,1065,121,59,32768,1064,70,84,99,121,59,32768,1068,99,117,116,101,59,32768,346,1280,59,97,101,105,121,4735,4737,4743,4749,4754,32768,10940,114,111,110,59,32768,352,100,105,108,59,32768,350,114,99,59,32768,348,59,32768,1057,114,59,32896,55349,56598,111,114,116,1024,68,76,82,85,4774,4784,4794,4805,111,119,110,65,114,114,111,119,315,1143,101,102,116,65,114,114,111,119,315,2403,105,103,104,116,65,114,114,111,119,315,4405,112,65,114,114,111,119,59,32768,8593,103,109,97,59,32768,931,97,108,108,67,105,114,99,108,101,59,32768,8728,112,102,59,32896,55349,56650,1138,4844,0,0,4848,116,59,32768,8730,97,114,101,1024,59,73,83,85,4859,4861,4875,4917,32768,9633,110,116,101,114,115,101,99,116,105,111,110,59,32768,8851,117,512,98,112,4881,4898,115,101,116,512,59,69,4889,4891,32768,8847,113,117,97,108,59,32768,8849,101,114,115,101,116,512,59,69,4908,4910,32768,8848,113,117,97,108,59,32768,8850,110,105,111,110,59,32768,8852,99,114,59,32896,55349,56494,97,114,59,32768,8902,1024,98,99,109,112,4944,4965,5015,5018,512,59,115,4949,4951,32768,8912,101,116,512,59,69,4949,4958,113,117,97,108,59,32768,8838,512,99,104,4970,5011,101,101,100,115,1024,59,69,83,84,4983,4985,4992,5004,32768,8827,113,117,97,108,59,32768,10928,108,97,110,116,69,113,117,97,108,59,32768,8829,105,108,100,101,59,32768,8831,84,104,353,4319,59,32768,8721,768,59,101,115,5025,5027,5045,32768,8913,114,115,101,116,512,59,69,5036,5038,32768,8835,113,117,97,108,59,32768,8839,101,116,315,5026,2816,72,82,83,97,99,102,104,105,111,114,115,5072,5079,5085,5099,5110,5132,5137,5181,5220,5226,5236,79,82,78,32827,222,32768,222,65,68,69,59,32768,8482,512,72,99,5090,5095,99,121,59,32768,1035,121,59,32768,1062,512,98,117,5104,5107,59,32768,9,59,32768,932,768,97,101,121,5117,5123,5129,114,111,110,59,32768,356,100,105,108,59,32768,354,59,32768,1058,114,59,32896,55349,56599,512,101,105,5142,5158,882,5147,0,5155,101,102,111,114,101,59,32768,8756,97,59,32768,920,512,99,110,5163,5173,107,83,112,97,99,101,59,32896,8287,8202,83,112,97,99,101,59,32768,8201,108,100,101,1024,59,69,70,84,5193,5195,5202,5213,32768,8764,113,117,97,108,59,32768,8771,117,108,108,69,113,117,97,108,59,32768,8773,105,108,100,101,59,32768,8776,112,102,59,32896,55349,56651,105,112,108,101,68,111,116,59,32768,8411,512,99,116,5241,5246,114,59,32896,55349,56495,114,111,107,59,32768,358,5473,5275,5301,5315,5329,0,5336,5341,0,0,0,0,0,5349,5355,5419,5434,0,5566,5572,5578,5585,512,99,114,5279,5286,117,116,101,32827,218,32768,218,114,512,59,111,5292,5294,32768,8607,99,105,114,59,32768,10569,114,867,5306,0,5310,121,59,32768,1038,118,101,59,32768,364,512,105,121,5319,5325,114,99,32827,219,32768,219,59,32768,1059,98,108,97,99,59,32768,368,114,59,32896,55349,56600,114,97,118,101,32827,217,32768,217,97,99,114,59,32768,362,512,100,105,5359,5403,101,114,512,66,80,5366,5390,512,97,114,5371,5375,114,59,32768,95,97,99,512,101,107,5382,5385,59,32768,9183,101,116,59,32768,9141,97,114,101,110,116,104,101,115,105,115,59,32768,9181,111,110,512,59,80,5410,5412,32768,8899,108,117,115,59,32768,8846,512,103,112,5423,5428,111,110,59,32768,370,102,59,32896,55349,56652,2048,65,68,69,84,97,100,112,115,5450,5477,5488,5501,1086,5517,5522,5552,114,114,111,119,768,59,66,68,4812,5461,5466,97,114,59,32768,10514,111,119,110,65,114,114,111,119,59,32768,8645,111,119,110,65,114,114,111,119,59,32768,8597,113,117,105,108,105,98,114,105,117,109,59,32768,10606,101,101,512,59,65,5508,5510,32768,8869,114,114,111,119,59,32768,8613,111,119,110,353,1098,101,114,512,76,82,5529,5540,101,102,116,65,114,114,111,119,59,32768,8598,105,103,104,116,65,114,114,111,119,59,32768,8599,105,512,59,108,5558,5560,32768,978,111,110,59,32768,933,105,110,103,59,32768,366,99,114,59,32896,55349,56496,105,108,100,101,59,32768,360,109,108,32827,220,32768,220,2304,68,98,99,100,101,102,111,115,118,5609,5615,5620,5624,5637,5715,5720,5726,5732,97,115,104,59,32768,8875,97,114,59,32768,10987,121,59,32768,1042,97,115,104,512,59,108,5632,5634,32768,8873,59,32768,10982,512,101,114,5642,5645,59,32768,8897,768,98,116,121,5652,5657,5703,97,114,59,32768,8214,512,59,105,5655,5662,99,97,108,1024,66,76,83,84,5674,5679,5685,5696,97,114,59,32768,8739,105,110,101,59,32768,124,101,112,97,114,97,116,111,114,59,32768,10072,105,108,100,101,59,32768,8768,84,104,105,110,83,112,97,99,101,59,32768,8202,114,59,32896,55349,56601,112,102,59,32896,55349,56653,99,114,59,32896,55349,56497,100,97,115,104,59,32768,8874,1280,99,101,102,111,115,5750,5756,5762,5767,5773,105,114,99,59,32768,372,100,103,101,59,32768,8896,114,59,32896,55349,56602,112,102,59,32896,55349,56654,99,114,59,32896,55349,56498,1024,102,105,111,115,5788,5793,5796,5802,114,59,32896,55349,56603,59,32768,926,112,102,59,32896,55349,56655,99,114,59,32896,55349,56499,2304,65,73,85,97,99,102,111,115,117,5827,5832,5837,5842,5850,5863,5868,5874,5880,99,121,59,32768,1071,99,121,59,32768,1031,99,121,59,32768,1070,99,117,116,101,32827,221,32768,221,512,105,121,5855,5860,114,99,59,32768,374,59,32768,1067,114,59,32896,55349,56604,112,102,59,32896,55349,56656,99,114,59,32896,55349,56500,109,108,59,32768,376,2048,72,97,99,100,101,102,111,115,5902,5907,5914,5928,5933,5948,5952,5957,99,121,59,32768,1046,99,117,116,101,59,32768,377,512,97,121,5919,5925,114,111,110,59,32768,381,59,32768,1047,111,116,59,32768,379,882,5938,0,5945,111,87,105,100,116,360,3029,97,59,32768,918,114,59,32768,8488,112,102,59,32768,8484,99,114,59,32896,55349,56501,5985,5988,5996,6003,0,6039,6046,6055,0,0,0,0,6063,6086,6104,6241,6256,0,6301,6308,6332,6340,0,6346,99,117,116,101,32827,225,32768,225,114,101,118,101,59,32768,259,1536,59,69,100,105,117,121,6015,6017,6021,6024,6030,6035,32768,8766,59,32896,8766,819,59,32768,8767,114,99,32827,226,32768,226,116,101,33083,180,842,59,32768,1072,108,105,103,32827,230,32768,230,512,59,114,189,6050,59,32896,55349,56606,114,97,118,101,32827,224,32768,224,512,101,112,6067,6080,512,102,112,6072,6078,115,121,109,59,32768,8501,360,6076,104,97,59,32768,945,512,97,112,6090,100,512,99,108,6095,6099,114,59,32768,257,103,59,32768,10815,1124,6109,0,0,6140,1280,59,97,100,115,118,6119,6121,6126,6129,6136,32768,8743,110,100,59,32768,10837,59,32768,10844,108,111,112,101,59,32768,10840,59,32768,10842,1792,59,101,108,109,114,115,122,6154,6156,6159,6162,6204,6223,6234,32768,8736,59,32768,10660,101,315,6155,115,100,512,59,97,6169,6171,32768,8737,2145,6181,6184,6187,6190,6193,6196,6199,6202,59,32768,10664,59,32768,10665,59,32768,10666,59,32768,10667,59,32768,10668,59,32768,10669,59,32768,10670,59,32768,10671,116,512,59,118,6210,6212,32768,8735,98,512,59,100,6218,6220,32768,8894,59,32768,10653,512,112,116,6228,6232,104,59,32768,8738,315,197,97,114,114,59,32768,9084,512,103,112,6245,6250,111,110,59,32768,261,102,59,32896,55349,56658,1792,59,69,97,101,105,111,112,5218,6270,6273,6279,6282,6286,6290,59,32768,10864,99,105,114,59,32768,10863,59,32768,8778,100,59,32768,8779,115,59,32768,39,114,111,120,512,59,101,5218,6298,369,6280,105,110,103,32827,229,32768,229,768,99,116,121,6314,6319,6322,114,59,32896,55349,56502,59,32768,42,109,112,512,59,101,5218,6329,369,704,105,108,100,101,32827,227,32768,227,109,108,32827,228,32768,228,512,99,105,6350,6356,111,110,105,110,372,679,110,116,59,32768,10769,4096,78,97,98,99,100,101,102,105,107,108,110,111,112,114,115,117,6394,6399,6469,6482,6490,6496,6548,6553,6661,6668,6761,6785,6429,7066,7078,7122,111,116,59,32768,10989,512,99,114,6404,6449,107,1024,99,101,112,115,6414,6420,6429,6436,111,110,103,59,32768,8780,112,115,105,108,111,110,59,32768,1014,114,105,109,101,59,32768,8245,105,109,512,59,101,6443,6445,32768,8765,113,59,32768,8909,630,6453,6458,101,101,59,32768,8893,101,100,512,59,103,6464,6466,32768,8965,101,315,6465,114,107,512,59,116,5388,6476,98,114,107,59,32768,9142,512,111,121,6415,6487,59,32768,1073,113,117,111,59,32768,8222,1280,99,109,112,114,116,6507,6515,6522,6525,6529,97,117,115,512,59,101,286,285,112,116,121,118,59,32768,10672,115,361,6427,110,111,373,296,768,97,104,119,6536,6539,6542,59,32768,946,59,32768,8502,101,101,110,59,32768,8812,114,59,32896,55349,56607,103,1792,99,111,115,116,117,118,119,6569,6586,6611,6627,6649,6656,6659,768,97,105,117,6576,6578,6583,368,2060,114,99,59,32768,9711,112,315,5411,768,100,112,116,6593,6598,6604,111,116,59,32768,10752,108,117,115,59,32768,10753,105,109,101,115,59,32768,10754,1137,6617,0,0,6623,99,117,112,59,32768,10758,97,114,59,32768,9733,114,105,97,110,103,108,101,512,100,117,6639,6645,111,119,110,59,32768,9661,112,59,32768,9651,112,108,117,115,59,32768,10756,101,357,5643,357,5757,97,114,111,119,59,32768,10509,768,97,107,111,6675,6738,6756,512,99,110,6680,6734,107,768,108,115,116,6688,1579,6697,111,122,101,110,103,101,59,32768,10731,114,105,97,110,103,108,101,1024,59,100,108,114,6713,6715,6721,6727,32768,9652,111,119,110,59,32768,9662,101,102,116,59,32768,9666,105,103,104,116,59,32768,9656,107,59,32768,9251,817,6743,0,6753,818,6747,0,6750,59,32768,9618,59,32768,9617,52,59,32768,9619,99,107,59,32768,9608,512,101,111,6766,6781,512,59,113,6771,6774,32896,61,8421,117,105,118,59,32896,8801,8421,116,59,32768,8976,1024,112,116,119,120,6794,6799,6808,6814,102,59,32896,55349,56659,512,59,116,5508,6804,111,109,315,5509,116,105,101,59,32768,8904,3072,68,72,85,86,98,100,104,109,112,116,117,118,6839,6860,6885,6906,6941,6946,6967,6990,6997,7003,7010,7031,1024,76,82,108,114,6848,6851,6854,6857,59,32768,9559,59,32768,9556,59,32768,9558,59,32768,9555,1280,59,68,85,100,117,6871,6873,6876,6879,6882,32768,9552,59,32768,9574,59,32768,9577,59,32768,9572,59,32768,9575,1024,76,82,108,114,6894,6897,6900,6903,59,32768,9565,59,32768,9562,59,32768,9564,59,32768,9561,1792,59,72,76,82,104,108,114,6921,6923,6926,6929,6932,6935,6938,32768,9553,59,32768,9580,59,32768,9571,59,32768,9568,59,32768,9579,59,32768,9570,59,32768,9567,111,120,59,32768,10697,1024,76,82,108,114,6955,6958,6961,6964,59,32768,9557,59,32768,9554,59,32768,9488,59,32768,9484,1280,59,68,85,100,117,1881,6978,6981,6984,6987,59,32768,9573,59,32768,9576,59,32768,9516,59,32768,9524,105,110,117,115,59,32768,8863,108,117,115,59,32768,8862,105,109,101,115,59,32768,8864,1024,76,82,108,114,7019,7022,7025,7028,59,32768,9563,59,32768,9560,59,32768,9496,59,32768,9492,1792,59,72,76,82,104,108,114,7046,7048,7051,7054,7057,7060,7063,32768,9474,59,32768,9578,59,32768,9569,59,32768,9566,59,32768,9532,59,32768,9508,59,32768,9500,512,101,118,314,7071,98,97,114,32827,166,32768,166,1024,99,101,105,111,7087,7092,7097,7103,114,59,32896,55349,56503,109,105,59,32768,8271,109,512,59,101,6443,6446,108,768,59,98,104,7111,7113,7116,32768,92,59,32768,10693,115,117,98,59,32768,10184,620,7126,7137,108,512,59,101,7131,7133,32768,8226,116,315,7132,112,768,59,69,101,327,7144,7147,59,32768,10926,512,59,113,1914,1913,6497,7179,0,7252,7299,7304,7335,0,7340,7368,0,0,7481,0,0,7495,0,0,7597,7612,7647,7653,0,7841,0,7857,768,99,112,114,7185,7191,7240,117,116,101,59,32768,263,1536,59,97,98,99,100,115,7204,7206,7211,7218,7231,7236,32768,8745,110,100,59,32768,10820,114,99,117,112,59,32768,10825,512,97,117,7223,7227,112,59,32768,10827,112,59,32768,10823,111,116,59,32768,10816,59,32896,8745,65024,512,101,111,7245,7249,116,59,32768,8257,366,1833,1024,97,101,105,117,7260,7273,7280,7285,880,7265,0,7269,115,59,32768,10829,111,110,59,32768,269,100,105,108,32827,231,32768,231,114,99,59,32768,265,112,115,512,59,115,7292,7294,32768,10828,109,59,32768,10832,111,116,59,32768,267,768,100,109,110,7310,7315,7322,105,108,33083,184,465,112,116,121,118,59,32768,10674,116,33280,162,59,101,7329,7331,32768,162,114,356,471,114,59,32896,55349,56608,768,99,101,105,7346,7350,7364,121,59,32768,1095,99,107,512,59,109,7357,7359,32768,10003,97,114,107,315,7358,59,32768,967,114,1792,59,69,99,101,102,109,115,7383,7385,7388,7398,7462,7469,7474,32768,9675,59,32768,10691,768,59,101,108,7395,7397,7401,32768,710,113,59,32768,8791,101,1121,7408,0,0,7430,114,114,111,119,512,108,114,7416,7422,101,102,116,59,32768,8634,105,103,104,116,59,32768,8635,1280,82,83,97,99,100,7440,7442,7445,7450,7456,315,4241,59,32768,9416,115,116,59,32768,8859,105,114,99,59,32768,8858,97,115,104,59,32768,8861,110,105,110,116,59,32768,10768,105,100,59,32768,10991,99,105,114,59,32768,10690,117,98,115,512,59,117,7488,7490,32768,9827,105,116,315,7489,1388,7501,7515,7556,0,7573,111,110,512,59,101,7507,7509,32768,58,512,59,113,212,211,1133,7520,0,0,7531,97,512,59,116,7525,7527,32768,44,59,32768,64,768,59,102,108,7537,7539,7541,32768,8705,366,4830,101,512,109,120,7547,7552,101,110,116,315,7538,101,371,640,871,7560,0,7570,512,59,100,5211,7564,111,116,59,32768,10861,110,372,632,768,102,114,121,7579,7583,7586,59,32896,55349,56660,111,356,648,33280,169,59,115,367,7592,114,59,32768,8471,512,97,111,7601,7606,114,114,59,32768,8629,115,115,59,32768,10007,512,99,117,7616,7621,114,59,32896,55349,56504,512,98,112,7626,7636,512,59,101,7631,7633,32768,10959,59,32768,10961,512,59,101,7641,7643,32768,10960,59,32768,10962,100,111,116,59,32768,8943,1792,100,101,108,112,114,118,119,7667,7681,7694,7707,7755,7797,7837,97,114,114,512,108,114,7675,7678,59,32768,10552,59,32768,10549,1136,7687,0,0,7691,114,59,32768,8926,99,59,32768,8927,97,114,114,512,59,112,7702,7704,32768,8630,59,32768,10557,1536,59,98,99,100,111,115,7720,7722,7729,7742,7747,7751,32768,8746,114,99,97,112,59,32768,10824,512,97,117,7734,7738,112,59,32768,10822,112,59,32768,10826,111,116,59,32768,8845,114,59,32768,10821,59,32896,8746,65024,1024,97,108,114,118,7764,7776,7809,7815,114,114,512,59,109,7771,7773,32768,8631,59,32768,10556,121,768,101,118,119,7784,7797,7802,113,1136,7791,0,0,7795,114,101,355,7688,117,355,7691,101,101,59,32768,8910,101,100,103,101,59,32768,8911,101,110,32827,164,32768,164,101,97,114,114,111,119,512,108,114,7826,7831,101,102,116,315,7703,105,103,104,116,315,7772,101,356,7807,512,99,105,7845,7851,111,110,105,110,372,546,110,116,59,32768,8753,108,99,116,121,59,32768,9005,4864,65,72,97,98,99,100,101,102,104,105,106,108,111,114,115,116,117,119,122,7902,7905,7910,7943,7956,7970,7993,8016,8031,8042,8115,8120,8136,8251,8275,8304,8322,8333,8341,114,370,975,97,114,59,32768,10597,1024,103,108,114,115,7919,7925,7931,7933,103,101,114,59,32768,8224,101,116,104,59,32768,8504,370,4783,104,512,59,118,7939,7941,32768,8208,315,2526,619,7947,7954,97,114,111,119,59,32768,10511,97,355,859,512,97,121,7961,7967,114,111,110,59,32768,271,59,32768,1076,768,59,97,111,892,7977,7986,512,103,114,764,7982,114,59,32768,8650,116,115,101,113,59,32768,10871,768,103,108,109,8000,8004,8009,32827,176,32768,176,116,97,59,32768,948,112,116,121,118,59,32768,10673,512,105,114,8021,8027,115,104,116,59,32768,10623,59,32896,55349,56609,97,114,512,108,114,8038,8040,315,2475,315,4476,1280,97,101,103,115,118,8053,966,8074,8081,8086,109,768,59,111,115,879,8061,8071,110,100,512,59,115,879,8068,117,105,116,59,32768,9830,97,109,109,97,59,32768,989,105,110,59,32768,8946,768,59,105,111,8093,8095,8112,32768,247,100,101,33280,247,59,111,8093,8103,110,116,105,109,101,115,59,32768,8903,110,376,8110,99,121,59,32768,1106,99,1135,8127,0,0,8132,114,110,59,32768,8990,111,112,59,32768,8973,1280,108,112,116,117,119,8147,8153,8158,8201,8213,108,97,114,59,32768,36,102,59,32896,55349,56661,1280,59,101,109,112,115,848,8169,8180,8187,8193,113,512,59,100,927,8175,111,116,59,32768,8785,105,110,117,115,59,32768,8760,108,117,115,59,32768,8724,113,117,97,114,101,59,32768,8865,98,108,101,98,97,114,119,101,100,103,357,268,110,768,97,100,104,4778,8221,8231,111,119,110,97,114,114,111,119,371,7984,97,114,112,111,111,110,512,108,114,8242,8246,101,102,372,8039,105,103,104,372,8041,610,8255,8261,107,97,114,111,375,4235,1135,8266,0,0,8271,114,110,59,32768,8991,111,112,59,32768,8972,768,99,111,116,8282,8294,8298,512,114,121,8287,8291,59,32896,55349,56505,59,32768,1109,108,59,32768,10742,114,111,107,59,32768,273,512,100,114,8309,8314,111,116,59,32768,8945,105,512,59,102,8320,6718,32768,9663,512,97,104,8327,8330,114,370,1156,97,370,4347,97,110,103,108,101,59,32768,10662,512,99,105,8346,8350,121,59,32768,1119,103,114,97,114,114,59,32768,10239,4608,68,97,99,100,101,102,103,108,109,110,111,112,113,114,115,116,117,120,8395,8403,8421,8457,1525,8462,8476,8504,8538,8582,8594,8609,8650,8727,8742,8756,8768,8782,512,68,111,8400,8176,111,372,7991,512,99,115,8408,8415,117,116,101,32827,233,32768,233,116,101,114,59,32768,10862,1024,97,105,111,121,8430,8436,8448,8454,114,111,110,59,32768,283,114,512,59,99,8442,8444,32768,8790,32827,234,32768,234,108,111,110,59,32768,8789,59,32768,1101,111,116,59,32768,279,512,68,114,8467,8472,111,116,59,32768,8786,59,32896,55349,56610,768,59,114,115,8483,8485,8492,32768,10906,97,118,101,32827,232,32768,232,512,59,100,8497,8499,32768,10902,111,116,59,32768,10904,1024,59,105,108,115,8513,8515,8523,8526,32768,10905,110,116,101,114,115,59,32768,9191,59,32768,8467,512,59,100,8531,8533,32768,10901,111,116,59,32768,10903,768,97,112,115,8545,8550,8565,99,114,59,32768,275,116,121,768,59,115,118,8559,8561,8563,32768,8709,101,116,315,8560,112,512,49,59,8571,8580,563,8575,8578,59,32768,8196,59,32768,8197,32768,8195,512,103,115,8587,8590,59,32768,331,112,59,32768,8194,512,103,112,8599,8604,111,110,59,32768,281,102,59,32896,55349,56662,768,97,108,115,8616,8628,8633,114,512,59,115,8622,8624,32768,8917,108,59,32768,10723,117,115,59,32768,10865,105,768,59,108,118,8641,8643,8647,32768,949,111,110,315,8642,59,32768,1013,1024,99,115,117,118,8659,8668,8692,8719,512,105,111,8664,8448,114,99,315,8443,1129,8674,0,0,8676,365,1470,97,110,116,512,103,108,8683,8687,116,114,315,8498,101,115,115,315,8532,768,97,101,105,8699,8704,8709,108,115,59,32768,61,115,116,59,32768,8799,118,512,59,68,613,8715,68,59,32768,10872,112,97,114,115,108,59,32768,10725,512,68,97,8732,8737,111,116,59,32768,8787,114,114,59,32768,10609,768,99,100,105,8749,8753,8673,114,59,32768,8495,111,372,927,512,97,104,8761,8764,59,32768,951,32827,240,32768,240,512,109,114,8773,8778,108,32827,235,32768,235,111,59,32768,8364,768,99,105,112,8789,8793,8796,108,59,32768,33,115,372,1514,512,101,111,8801,8809,99,116,97,116,105,111,366,1489,110,101,110,116,105,97,108,357,1526,4961,8839,0,8851,0,8855,8862,0,0,8893,8899,0,8906,0,8927,8932,8956,0,8965,9064,108,108,105,110,103,100,111,116,115,101,369,8470,121,59,32768,1092,109,97,108,101,59,32768,9792,768,105,108,114,8868,8874,8888,108,105,103,59,32768,64259,1129,8880,0,0,8884,103,59,32768,64256,105,103,59,32768,64260,59,32896,55349,56611,108,105,103,59,32768,64257,108,105,103,59,32896,102,106,768,97,108,116,8912,8916,8921,116,59,32768,9837,105,103,59,32768,64258,110,115,59,32768,9649,111,102,59,32768,402,880,8936,0,8941,102,59,32896,55349,56663,512,97,107,1600,8945,512,59,118,8950,8952,32768,8916,59,32768,10969,97,114,116,105,110,116,59,32768,10765,512,97,111,8969,9058,512,99,115,8974,9054,1841,8983,9011,9021,9037,9041,0,9051,1842,8991,8995,8998,9002,9005,0,9008,32827,189,32768,189,59,32768,8531,32827,188,32768,188,59,32768,8533,59,32768,8537,59,32768,8539,819,9015,0,9018,59,32768,8532,59,32768,8534,1332,9027,9031,0,0,9034,32827,190,32768,190,59,32768,8535,59,32768,8540,53,59,32768,8536,822,9045,0,9048,59,32768,8538,59,32768,8541,56,59,32768,8542,108,59,32768,8260,119,110,59,32768,8994,99,114,59,32896,55349,56507,4352,69,97,98,99,100,101,102,103,105,106,108,110,111,114,115,116,118,9104,9112,9137,9144,9157,9162,9227,9232,9237,9243,9248,9266,9308,862,9314,9337,9419,512,59,108,1756,9109,59,32768,10892,768,99,109,112,9119,9125,9134,117,116,101,59,32768,501,109,97,512,59,100,9132,8078,32768,947,59,32768,10886,114,101,118,101,59,32768,287,512,105,121,9149,9154,114,99,59,32768,285,59,32768,1075,111,116,59,32768,289,1024,59,108,113,115,1739,1744,9171,9183,768,59,113,115,1739,1755,9178,108,97,110,372,1783,1024,59,99,100,108,1783,9192,9196,9215,99,59,32768,10921,111,116,512,59,111,9203,9205,32768,10880,512,59,108,9210,9212,32768,10882,59,32768,10884,512,59,101,9220,9223,32896,8923,65024,115,59,32768,10900,114,59,32896,55349,56612,512,59,103,1799,1703,109,101,108,59,32768,8503,99,121,59,32768,1107,1024,59,69,97,106,1771,9257,9260,9263,59,32768,10898,59,32768,10917,59,32768,10916,1024,69,97,101,115,9275,9278,9291,9303,59,32768,8809,112,512,59,112,9284,9286,32768,10890,114,111,120,315,9285,512,59,113,9296,9298,32768,10888,512,59,113,9296,9275,105,109,59,32768,8935,112,102,59,32896,55349,56664,512,99,105,9319,9323,114,59,32768,8458,109,768,59,101,108,1790,9331,9334,59,32768,10894,59,32768,10896,34304,62,59,99,100,108,113,114,1650,9351,9363,9368,9374,9381,512,99,105,9356,9359,59,32768,10919,114,59,32768,10874,111,116,59,32768,8919,80,97,114,59,32768,10645,117,101,115,116,59,32768,10876,1280,97,100,101,108,115,9392,9363,9405,1767,9416,880,9397,0,9402,112,114,111,376,9135,114,59,32768,10616,113,512,108,113,1741,9411,108,101,115,371,9110,105,365,1790,512,101,110,9424,9434,114,116,110,101,113,113,59,32896,8809,65024,325,9431,2560,65,97,98,99,101,102,107,111,115,121,9457,9460,9505,9510,9516,9549,9554,9574,9636,9658,114,370,1008,1024,105,108,109,114,9469,9473,9476,9480,114,115,368,5713,102,315,8993,105,108,372,1859,512,100,114,9485,9490,99,121,59,32768,1098,768,59,99,119,2502,9497,9502,105,114,59,32768,10568,59,32768,8621,97,114,59,32768,8463,105,114,99,59,32768,293,768,97,108,114,9523,9537,9543,114,116,115,512,59,117,9531,9533,32768,9829,105,116,315,9532,108,105,112,59,32768,8230,99,111,110,59,32768,8889,114,59,32896,55349,56613,115,512,101,119,9560,9567,97,114,111,119,59,32768,10533,97,114,111,119,59,32768,10534,1280,97,109,111,112,114,9585,9590,9596,9625,9630,114,114,59,32768,8703,116,104,116,59,32768,8763,107,512,108,114,9602,9613,101,102,116,97,114,114,111,119,59,32768,8617,105,103,104,116,97,114,114,111,119,59,32768,8618,102,59,32896,55349,56665,98,97,114,59,32768,8213,768,99,108,116,9643,9648,9652,114,59,32896,55349,56509,97,115,360,9508,114,111,107,59,32768,295,512,98,112,9663,9669,117,108,108,59,32768,8259,104,101,110,315,7940,5473,9697,0,9705,0,9721,9736,9745,0,9753,9787,0,0,9793,9839,9914,9908,9941,0,9949,9989,10000,99,117,116,101,32827,237,32768,237,768,59,105,121,2078,9711,9717,114,99,32827,238,32768,238,59,32768,1080,512,99,120,9725,9729,121,59,32768,1077,99,108,32827,161,32768,161,512,102,114,1007,9740,59,32896,55349,56614,114,97,118,101,32827,236,32768,236,1024,59,105,110,111,2023,9761,9775,9781,512,105,110,9766,9771,110,116,59,32768,10764,116,59,32768,8749,102,105,110,59,32768,10716,116,97,59,32768,8489,108,105,103,59,32768,307,768,97,111,112,9799,9829,9833,768,99,103,116,9806,9810,9825,114,59,32768,299,768,101,108,112,1989,9817,9821,105,110,357,2111,97,114,372,1990,104,59,32768,305,102,59,32768,8887,101,100,59,32768,437,1280,59,99,102,111,116,1379,9849,9855,9869,9873,97,114,101,59,32768,8453,105,110,512,59,116,9862,9864,32768,8734,105,101,59,32768,10717,100,111,372,9827,1280,59,99,101,108,112,2050,9884,9889,9900,9907,97,108,59,32768,8890,512,103,114,9894,9898,101,114,371,5955,355,9885,97,114,104,107,59,32768,10775,114,111,100,59,32768,10812,1024,99,103,112,116,9922,9926,9931,9936,121,59,32768,1105,111,110,59,32768,303,102,59,32896,55349,56666,97,59,32768,953,117,101,115,116,32827,191,32768,191,512,99,105,9953,9958,114,59,32896,55349,56510,110,1280,59,69,100,115,118,1379,9970,9973,9978,1378,59,32768,8953,111,116,59,32768,8949,512,59,118,9983,9985,32768,8948,59,32768,8947,512,59,105,2085,9993,108,100,101,59,32768,297,875,10004,0,10009,99,121,59,32768,1110,108,32827,239,32768,239,1536,99,102,109,111,115,117,10026,10039,10044,10050,10056,10071,512,105,121,10031,10036,114,99,59,32768,309,59,32768,1081,114,59,32896,55349,56615,97,116,104,59,32768,567,112,102,59,32896,55349,56667,867,10061,0,10066,114,59,32896,55349,56511,114,99,121,59,32768,1112,107,99,121,59,32768,1108,2048,97,99,102,103,104,106,111,115,10094,10107,10121,10126,10133,10138,10143,10149,112,112,97,512,59,118,10102,10104,32768,954,59,32768,1008,512,101,121,10112,10118,100,105,108,59,32768,311,59,32768,1082,114,59,32896,55349,56616,114,101,101,110,59,32768,312,99,121,59,32768,1093,99,121,59,32768,1116,112,102,59,32896,55349,56668,99,114,59,32896,55349,56512,5888,65,66,69,72,97,98,99,100,101,102,103,104,106,108,109,110,111,112,114,115,116,117,118,10202,10220,10226,10234,10239,10379,10433,10465,10507,10722,10739,10747,10769,10774,10805,10831,10873,11015,11028,11066,11124,11196,11215,768,97,114,116,10209,10212,10214,114,370,2733,370,996,97,105,108,59,32768,10523,97,114,114,59,32768,10510,512,59,103,2677,10231,59,32768,10891,97,114,59,32768,10594,4707,10259,0,10265,0,10273,0,0,0,0,0,10277,10283,0,10296,10299,10305,0,10355,117,116,101,59,32768,314,109,112,116,121,118,59,32768,10676,114,97,366,2319,98,100,97,59,32768,955,103,768,59,100,108,2390,10290,10293,59,32768,10641,357,2390,59,32768,10885,117,111,32827,171,32768,171,114,2048,59,98,102,104,108,112,115,116,2402,10322,10331,10335,10337,10341,10345,10350,512,59,102,2407,10327,115,59,32768,10527,115,59,32768,10525,363,9611,112,59,32768,8619,108,59,32768,10553,105,109,59,32768,10611,108,59,32768,8610,768,59,97,101,10361,10363,10368,32768,10923,105,108,59,32768,10521,512,59,115,10373,10375,32768,10925,59,32896,10925,65024,768,97,98,114,10386,10391,10396,114,114,59,32768,10508,114,107,59,32768,10098,512,97,107,10401,10413,99,512,101,107,10407,10410,59,32768,123,59,32768,91,512,101,115,10418,10421,59,32768,10635,108,512,100,117,10427,10430,59,32768,10639,59,32768,10637,1024,97,101,117,121,10442,10448,10460,10462,114,111,110,59,32768,318,512,100,105,10453,10458,105,108,59,32768,316,364,2428,354,10408,59,32768,1083,1024,99,113,114,115,10474,10478,10485,10503,97,59,32768,10550,117,111,512,59,114,3910,6493,512,100,117,10490,10496,104,97,114,59,32768,10599,115,104,97,114,59,32768,10571,104,59,32768,8626,1280,59,102,103,113,115,10518,10520,2665,10625,10637,32768,8804,116,1280,97,104,108,114,116,10532,10544,10563,10575,10613,114,114,111,119,512,59,116,2402,10541,97,361,10351,97,114,112,111,111,110,512,100,117,10555,10560,111,119,110,315,1209,112,315,2628,101,102,116,97,114,114,111,119,115,59,32768,8647,105,103,104,116,768,97,104,115,10586,10595,10603,114,114,111,119,512,59,115,2502,2418,97,114,112,111,111,110,371,4332,113,117,105,103,97,114,114,111,375,9503,104,114,101,101,116,105,109,101,115,59,32768,8907,768,59,113,115,10518,2676,10632,108,97,110,372,2704,1280,59,99,100,103,115,2704,10648,10652,10671,10683,99,59,32768,10920,111,116,512,59,111,10659,10661,32768,10879,512,59,114,10666,10668,32768,10881,59,32768,10883,512,59,101,10676,10679,32896,8922,65024,115,59,32768,10899,1280,97,100,101,103,115,10694,10700,10705,10717,10719,112,112,114,111,376,10296,111,116,59,32768,8918,113,512,103,113,10711,10713,372,2665,103,116,370,10232,372,2685,105,365,2711,768,105,108,114,10729,2482,10735,115,104,116,59,32768,10620,59,32896,55349,56617,512,59,69,2686,10744,59,32768,10897,609,10751,10765,114,512,100,117,10558,10756,512,59,108,2627,10761,59,32768,10602,108,107,59,32768,9604,99,121,59,32768,1113,1280,59,97,99,104,116,2872,10785,10788,10794,10800,114,370,10573,111,114,110,101,370,8129,97,114,100,59,32768,10603,114,105,59,32768,9722,512,105,111,10810,10816,100,111,116,59,32768,320,117,115,116,512,59,97,10824,10826,32768,9136,99,104,101,315,10825,1024,69,97,101,115,10840,10843,10856,10868,59,32768,8808,112,512,59,112,10849,10851,32768,10889,114,111,120,315,10850,512,59,113,10861,10863,32768,10887,512,59,113,10861,10840,105,109,59,32768,8934,2048,97,98,110,111,112,116,119,122,10890,10903,10906,10942,10964,10984,10991,11001,512,110,114,10895,10899,103,59,32768,10220,114,59,32768,8701,114,363,2446,103,768,108,109,114,10914,10928,10936,101,102,116,512,97,114,2767,10922,105,103,104,116,353,2780,97,112,115,116,111,59,32768,10236,105,103,104,116,353,2792,112,97,114,114,111,119,512,108,114,10953,10957,101,102,372,10339,105,103,104,116,59,32768,8620,768,97,102,108,10971,10975,10979,114,59,32768,10629,59,32896,55349,56669,117,115,59,32768,10797,105,109,101,115,59,32768,10804,609,10995,11000,115,116,59,32768,8727,353,5372,768,59,101,102,11008,11010,6694,32768,9674,110,103,101,315,11009,97,114,512,59,108,11022,11024,32768,40,116,59,32768,10643,1280,97,99,104,109,116,11039,11042,11048,11058,11061,114,370,2419,111,114,110,101,370,8268,97,114,512,59,100,4332,11055,59,32768,10605,59,32768,8206,114,105,59,32768,8895,1536,97,99,104,105,113,116,11079,11085,2862,11090,11104,11118,113,117,111,59,32768,8249,114,59,32896,55349,56513,109,768,59,101,103,2711,11098,11101,59,32768,10893,59,32768,10895,512,98,117,10410,11109,111,512,59,114,3917,11115,59,32768,8218,114,111,107,59,32768,322,34816,60,59,99,100,104,105,108,113,114,2282,11142,10700,11154,11158,11164,11170,11177,512,99,105,11147,11150,59,32768,10918,114,59,32768,10873,114,101,357,10623,109,101,115,59,32768,8905,97,114,114,59,32768,10614,117,101,115,116,59,32768,10875,512,80,105,11182,11187,97,114,59,32768,10646,768,59,101,102,11194,2566,6724,32768,9667,114,512,100,117,11202,11209,115,104,97,114,59,32768,10570,104,97,114,59,32768,10598,512,101,110,11220,11230,114,116,110,101,113,113,59,32896,8808,65024,325,11227,3584,68,97,99,100,101,102,104,105,108,110,111,112,115,117,11261,11267,11332,11346,11352,11365,11370,11374,11428,11437,11439,2936,11455,11470,68,111,116,59,32768,8762,1024,99,108,112,114,11276,11281,11300,11326,114,32827,175,32768,175,512,101,116,11286,11289,59,32768,9794,512,59,101,11294,11296,32768,10016,115,101,315,11295,512,59,115,4509,11305,116,111,1024,59,100,108,117,4509,11316,11320,11324,111,119,366,1265,101,102,372,2532,368,5515,107,101,114,59,32768,9646,512,111,121,11337,11343,109,109,97,59,32768,10793,59,32768,1084,97,115,104,59,32768,8212,97,115,117,114,101,100,97,110,103,108,101,315,6170,114,59,32896,55349,56618,111,59,32768,8487,768,99,100,110,11381,11387,11409,114,111,32827,181,32768,181,1024,59,97,99,100,5677,11396,11399,11404,115,372,6320,105,114,59,32768,10992,111,116,33083,183,474,117,115,768,59,98,100,11418,6994,11420,32768,8722,512,59,117,8185,11425,59,32768,10794,611,11432,11436,112,59,32768,10971,370,9541,368,2934,512,100,112,11444,11450,101,108,115,59,32768,8871,102,59,32896,55349,56670,512,99,116,11460,11465,114,59,32896,55349,56514,112,111,115,315,6016,768,59,108,109,11477,11479,11482,32768,956,116,105,109,97,112,59,32768,8888,6144,71,76,82,86,97,98,99,100,101,102,103,104,105,106,108,109,111,112,114,115,116,117,118,119,11536,11553,11598,11610,11627,11696,11711,11760,11766,11831,11836,11874,11894,11911,11916,12010,12013,12079,12139,12187,12323,12375,12400,12515,512,103,116,11541,11545,59,32896,8921,824,512,59,118,11550,3289,32896,8811,8402,768,101,108,116,11560,11586,11590,102,116,512,97,114,11567,11574,114,114,111,119,59,32768,8653,105,103,104,116,97,114,114,111,119,59,32768,8654,59,32896,8920,824,512,59,118,11595,3416,32896,8810,8402,105,103,104,116,97,114,114,111,119,59,32768,8655,512,68,100,11615,11621,97,115,104,59,32768,8879,97,115,104,59,32768,8878,1280,98,99,110,112,116,11638,11642,11648,11653,11681,108,97,315,800,117,116,101,59,32768,324,103,59,32896,8736,8402,1280,59,69,105,111,112,3748,11664,11668,11673,11677,59,32896,10864,824,100,59,32896,8779,824,115,59,32768,329,114,111,376,3748,117,114,512,59,97,11688,11690,32768,9838,108,512,59,115,11688,3128,883,11701,0,11705,112,33083,160,3126,109,112,512,59,101,3333,3340,1280,97,101,111,117,121,11722,11734,11740,11753,11757,880,11727,0,11730,59,32768,10819,111,110,59,32768,328,100,105,108,59,32768,326,110,103,512,59,100,3741,11747,111,116,59,32896,10861,824,112,59,32768,10818,59,32768,1085,97,115,104,59,32768,8211,1792,59,65,97,100,113,115,120,3224,11781,11786,11801,11807,11811,11823,114,114,59,32768,8663,114,512,104,114,11792,11796,107,59,32768,10532,512,59,111,5550,5548,111,116,59,32896,8784,824,117,105,374,3173,512,101,105,11816,11821,97,114,59,32768,10536,365,3231,105,115,116,512,59,115,3239,3238,114,59,32896,55349,56619,1024,69,101,115,116,3279,11845,11864,11867,768,59,113,115,3269,11852,3308,768,59,113,115,3269,3279,11859,108,97,110,372,3309,105,365,3317,512,59,114,3262,11872,315,3263,768,65,97,112,11881,11884,11889,114,370,11584,114,114,59,32768,8622,97,114,59,32768,10994,768,59,115,118,4320,11901,4319,512,59,100,11906,11908,32768,8956,59,32768,8954,99,121,59,32768,1114,1792,65,69,97,100,101,115,116,11931,11934,11938,11943,11947,11996,11999,114,370,11572,59,32896,8806,824,114,114,59,32768,8602,114,59,32768,8229,1024,59,102,113,115,3402,11956,11977,11989,116,512,97,114,11962,11967,114,114,111,375,11941,105,103,104,116,97,114,114,111,375,11887,768,59,113,115,3402,11934,11984,108,97,110,372,3430,512,59,115,3430,11994,315,3396,105,365,3438,512,59,114,3395,12004,105,512,59,101,3366,3378,105,356,3761,512,112,116,12018,12023,102,59,32896,55349,56671,33536,172,59,105,110,12031,12033,12063,32768,172,110,1024,59,69,100,118,3214,12043,12047,12053,59,32896,8953,824,111,116,59,32896,8949,824,865,3214,12058,12061,59,32768,8951,59,32768,8950,105,512,59,118,3532,12069,865,3532,12074,12077,59,32768,8958,59,32768,8957,768,97,111,114,12086,12110,12117,114,1024,59,97,115,116,3199,12096,12101,12106,108,108,101,364,3199,108,59,32896,11005,8421,59,32896,8706,824,108,105,110,116,59,32768,10772,768,59,99,101,3492,12124,12127,117,357,3512,512,59,99,3499,12132,512,59,101,3492,12137,369,3499,1024,65,97,105,116,12148,12151,12170,12180,114,370,11608,114,114,768,59,99,119,12160,12162,12166,32768,8603,59,32896,10547,824,59,32896,8605,824,103,104,116,97,114,114,111,119,315,12161,114,105,512,59,101,3552,3564,1792,99,104,105,109,112,113,117,12202,12218,12230,12010,3196,12241,12252,1024,59,99,101,114,3660,12211,3666,12214,117,357,3680,59,32896,55349,56515,111,114,116,1133,12011,0,0,12227,97,114,353,12097,109,512,59,101,3723,12236,512,59,113,3730,3729,115,117,512,98,112,12248,12250,357,3599,357,3619,768,98,99,112,12259,12287,12295,1024,59,69,101,115,12268,12270,3643,12274,32768,8836,59,32896,10949,824,101,116,512,59,101,3636,12281,113,512,59,113,3644,12270,99,512,59,101,3660,12293,369,3667,1024,59,69,101,115,12304,12306,3707,12310,32768,8837,59,32896,10950,824,101,116,512,59,101,3700,12317,113,512,59,113,3708,12306,1024,103,105,108,114,12332,12334,12341,12343,364,3297,108,100,101,32827,241,32768,241,359,3411,105,97,110,103,108,101,512,108,114,12354,12364,101,102,116,512,59,101,3366,12362,369,3379,105,103,104,116,512,59,101,3552,12373,369,3565,512,59,109,12380,12382,32768,957,768,59,101,115,12389,12391,12396,32768,35,114,111,59,32768,8470,112,59,32768,8199,2304,68,72,97,100,103,105,108,114,115,12419,12425,12431,12436,12442,12455,12462,12492,12509,97,115,104,59,32768,8877,97,114,114,59,32768,10500,112,59,32896,8781,8402,97,115,104,59,32768,8876,512,101,116,12447,12451,59,32896,8805,8402,59,32896,62,8402,110,102,105,110,59,32768,10718,768,65,101,116,12469,12474,12478,114,114,59,32768,10498,59,32896,8804,8402,512,59,114,12483,12486,32896,60,8402,105,101,59,32896,8884,8402,512,65,116,12497,12502,114,114,59,32768,10499,114,105,101,59,32896,8885,8402,105,109,59,32896,8764,8402,768,65,97,110,12522,12527,12542,114,114,59,32768,8662,114,512,104,114,12533,12537,107,59,32768,10531,512,59,111,5538,5536,101,97,114,59,32768,10535,9299,7443,0,0,0,0,0,0,0,0,0,0,0,0,0,12586,0,12598,12616,12643,12649,12663,12684,7570,0,0,12694,12727,0,12760,12766,0,12782,12852,12872,12893,12899,512,99,115,12590,7446,117,116,101,32827,243,32768,243,512,105,121,12602,12612,114,512,59,99,7454,12608,32827,244,32768,244,59,32768,1086,1280,97,98,105,111,115,7457,12626,12632,495,12636,108,97,99,59,32768,337,118,59,32768,10808,111,108,100,59,32768,10684,108,105,103,59,32768,339,512,99,114,12653,12658,105,114,59,32768,10687,59,32896,55349,56620,1647,12670,0,0,12674,0,12681,110,59,32768,731,97,118,101,32827,242,32768,242,59,32768,10689,512,98,109,12688,3871,97,114,59,32768,10677,1024,97,99,105,116,12702,12705,12720,12723,114,370,7420,512,105,114,12710,12714,114,59,32768,10686,111,115,115,59,32768,10683,110,357,3974,59,32768,10688,768,97,101,105,12733,12738,12743,99,114,59,32768,333,103,97,59,32768,969,768,99,100,110,12750,12756,501,114,111,110,59,32768,959,59,32768,10678,112,102,59,32896,55349,56672,768,97,101,108,12772,12776,507,114,59,32768,10679,114,112,59,32768,10681,1792,59,97,100,105,111,115,118,12796,12798,12801,12831,12837,12841,12848,32768,8744,114,370,7427,1024,59,101,102,109,12810,12812,12823,12827,32768,10845,114,512,59,111,12818,12820,32768,8500,102,315,12819,32827,170,32768,170,32827,186,32768,186,103,111,102,59,32768,8886,114,59,32768,10838,108,111,112,101,59,32768,10839,59,32768,10843,768,99,108,111,12858,12860,12867,370,12822,97,115,104,32827,248,32768,248,108,59,32768,8856,105,620,12876,12882,100,101,32827,245,32768,245,101,115,512,59,97,517,12888,115,59,32768,10806,109,108,32827,246,32768,246,98,97,114,59,32768,9021,5473,12927,0,12961,0,12965,12998,0,13003,13029,0,0,13049,4056,0,13129,0,0,13155,13310,0,13323,114,1024,59,97,115,116,1115,12936,12948,4029,33280,182,59,108,12942,12944,32768,182,108,101,364,1115,1129,12954,0,0,12958,109,59,32768,10995,59,32768,11005,121,59,32768,1087,114,1280,99,105,109,112,116,12976,12981,12986,6806,12991,110,116,59,32768,37,111,100,59,32768,46,105,108,59,32768,8240,101,110,107,59,32768,8241,114,59,32896,55349,56621,768,105,109,111,13009,13019,13023,512,59,118,13014,13016,32768,966,59,32768,981,109,97,372,2922,110,101,59,32768,9742,768,59,116,118,13035,13037,13045,32768,960,99,104,102,111,114,107,315,8951,59,32768,982,512,97,117,13053,13070,110,512,99,107,13059,13068,107,512,59,104,9508,13065,59,32768,8462,374,9508,115,2304,59,97,98,99,100,101,109,115,116,13090,13092,7000,13098,13103,13111,13114,13118,13123,32768,43,99,105,114,59,32768,10787,105,114,59,32768,10786,512,111,117,8190,13108,59,32768,10789,59,32768,10866,110,33083,177,4057,105,109,59,32768,10790,119,111,59,32768,10791,768,105,112,117,13135,13143,13148,110,116,105,110,116,59,32768,10773,102,59,32896,55349,56673,110,100,32827,163,32768,163,2560,59,69,97,99,101,105,110,111,115,117,4103,13175,13178,13182,13185,13246,13255,13264,13243,13303,59,32768,10931,112,59,32768,10935,117,357,4122,512,59,99,4110,13190,1536,59,97,99,101,110,115,4103,13203,13209,13216,13218,13243,112,112,114,111,376,13180,117,114,108,121,101,369,4122,369,4110,768,97,101,115,13225,13233,13238,112,112,114,111,120,59,32768,10937,113,113,59,32768,10933,105,109,59,32768,8936,105,365,4129,109,101,512,59,115,13253,4075,32768,8242,768,69,97,115,13235,13262,13238,368,13231,768,100,102,112,4144,13271,13296,768,97,108,115,13278,13284,13290,108,97,114,59,32768,9006,105,110,101,59,32768,8978,117,114,102,59,32768,8979,512,59,116,4160,13301,367,4160,114,101,108,59,32768,8880,512,99,105,13314,13319,114,59,32896,55349,56517,59,32768,968,110,99,115,112,59,32768,8200,1536,102,105,111,112,115,117,13342,9766,13347,13353,13360,13366,114,59,32896,55349,56622,112,102,59,32896,55349,56674,114,105,109,101,59,32768,8279,99,114,59,32896,55349,56518,768,97,101,111,13373,13391,13402,116,512,101,105,13379,13386,114,110,105,111,110,371,1867,110,116,59,32768,10774,115,116,512,59,101,13398,13400,32768,63,369,8707,372,4187,5376,65,66,72,97,98,99,100,101,102,104,105,108,109,110,111,112,114,115,116,117,120,13447,13465,13469,13474,13624,13676,13708,13739,13767,13784,13815,13938,13954,13970,13976,14028,14053,14057,14088,14123,14131,768,97,114,116,13454,13457,13459,114,370,4642,370,1073,97,105,108,59,32768,10524,97,114,370,7951,97,114,59,32768,10596,1792,99,100,101,110,113,114,116,13489,13503,13506,13514,13532,13538,13602,512,101,117,13494,13498,59,32896,8765,817,116,101,59,32768,341,105,355,4845,109,112,116,121,118,59,32768,10675,103,1024,59,100,101,108,4392,13524,13527,13530,59,32768,10642,59,32768,10661,357,4392,117,111,32827,187,32768,187,114,2816,59,97,98,99,102,104,108,112,115,116,119,4404,13562,13566,13575,13578,13582,13584,13586,13590,13595,13599,112,59,32768,10613,512,59,102,4409,13571,115,59,32768,10528,59,32768,10547,115,59,32768,10526,363,9623,368,10962,108,59,32768,10565,105,109,59,32768,10612,108,59,32768,8611,59,32768,8605,512,97,105,13607,13612,105,108,59,32768,10522,111,512,59,110,13618,13620,32768,8758,97,108,371,4198,768,97,98,114,13631,13634,13639,114,370,6666,114,107,59,32768,10099,512,97,107,13644,13656,99,512,101,107,13650,13653,59,32768,125,59,32768,93,512,101,115,13661,13664,59,32768,10636,108,512,100,117,13670,13673,59,32768,10638,59,32768,10640,1024,97,101,117,121,13685,13691,13703,13705,114,111,110,59,32768,345,512,100,105,13696,13701,105,108,59,32768,343,364,4429,354,13651,59,32768,1088,1024,99,108,113,115,13717,13721,13728,13735,97,59,32768,10551,100,104,97,114,59,32768,10601,117,111,512,59,114,570,569,104,59,32768,8627,768,97,99,103,13746,13763,4238,108,1024,59,105,112,115,4298,13756,13759,4617,110,357,4651,97,114,372,4351,116,59,32768,9645,768,105,108,114,13774,4483,13780,115,104,116,59,32768,10621,59,32896,55349,56623,512,97,111,13789,13805,114,512,100,117,13795,13797,315,1245,512,59,108,4604,13802,59,32768,10604,512,59,118,13810,13812,32768,961,59,32768,1009,768,103,110,115,13822,13924,13928,104,116,1536,97,104,108,114,115,116,13837,13849,13867,13889,13902,13912,114,114,111,119,512,59,116,4404,13846,97,361,13596,97,114,112,111,111,110,512,100,117,13860,13864,111,119,366,13796,112,315,4605,101,102,116,512,97,104,13875,13881,114,114,111,119,371,4420,97,114,112,111,111,110,371,1480,105,103,104,116,97,114,114,111,119,115,59,32768,8649,113,117,105,103,97,114,114,111,375,13600,104,114,101,101,116,105,109,101,115,59,32768,8908,103,59,32768,730,105,110,103,100,111,116,115,101,369,8735,768,97,104,109,13945,13948,13951,114,370,4420,97,370,1480,59,32768,8207,111,117,115,116,512,59,97,13963,13965,32768,9137,99,104,101,315,13964,109,105,100,59,32768,10990,1024,97,98,112,116,13985,13998,14001,14021,512,110,114,13990,13994,103,59,32768,10221,114,59,32768,8702,114,363,4447,768,97,102,108,14008,14012,14016,114,59,32768,10630,59,32896,55349,56675,117,115,59,32768,10798,105,109,101,115,59,32768,10805,512,97,112,14033,14045,114,512,59,103,14039,14041,32768,41,116,59,32768,10644,111,108,105,110,116,59,32768,10770,97,114,370,13900,1024,97,99,104,113,14066,14072,4653,14077,113,117,111,59,32768,8250,114,59,32896,55349,56519,512,98,117,13653,14082,111,512,59,114,577,576,768,104,105,114,14095,14099,14105,114,101,357,13922,109,101,115,59,32768,8906,105,1024,59,101,102,108,14115,4543,6731,14117,32768,9657,116,114,105,59,32768,10702,108,117,104,97,114,59,32768,10600,59,32768,8478,6753,14162,14169,14173,14260,14274,14336,0,14345,14391,0,0,14473,14477,0,14538,14574,14593,14676,14680,14705,14745,0,15068,0,0,15099,99,117,116,101,59,32768,347,113,117,367,11116,2560,59,69,97,99,101,105,110,112,115,121,4983,14193,14196,14208,14211,14221,14226,14245,14253,14256,59,32768,10932,880,14201,0,14204,59,32768,10936,111,110,59,32768,353,117,357,5002,512,59,100,4990,14216,105,108,59,32768,351,114,99,59,32768,349,768,69,97,115,14233,14236,14240,59,32768,10934,112,59,32768,10938,105,109,59,32768,8937,111,108,105,110,116,59,32768,10771,105,365,5009,59,32768,1089,111,116,768,59,98,101,14268,8198,14270,32768,8901,59,32768,10854,1792,65,97,99,109,115,116,120,14288,14293,14306,14311,14315,14321,14331,114,114,59,32768,8664,114,512,104,114,14299,14301,363,9565,512,59,111,2851,2849,116,32827,167,32768,167,105,59,32768,59,119,97,114,59,32768,10537,109,512,105,110,14327,256,110,117,371,257,116,59,32768,10038,114,512,59,111,14341,9058,32896,55349,56624,1024,97,99,111,121,14353,14358,14371,14386,114,112,59,32768,9839,512,104,121,14363,14368,99,121,59,32768,1097,59,32768,1096,114,116,1133,14379,0,0,14382,105,356,5677,97,114,97,364,12945,32827,173,32768,173,512,103,109,14395,14409,109,97,768,59,102,118,14404,14406,14406,32768,963,59,32768,962,2048,59,100,101,103,108,110,112,114,5193,14426,14431,14436,14446,14456,14460,14466,111,116,59,32768,10858,512,59,113,5200,5199,512,59,69,14441,14443,32768,10910,59,32768,10912,512,59,69,14451,14453,32768,10909,59,32768,10911,101,59,32768,8774,108,117,115,59,32768,10788,97,114,114,59,32768,10610,97,114,370,4793,1024,97,101,105,116,14485,14502,14510,14519,512,108,115,14490,14497,108,115,101,116,109,361,14328,104,112,59,32768,10803,112,97,114,115,108,59,32768,10724,512,100,108,5676,14515,101,59,32768,8995,512,59,101,14524,14526,32768,10922,512,59,115,14531,14533,32768,10924,59,32896,10924,65024,768,102,108,112,14544,14550,14568,116,99,121,59,32768,1100,512,59,98,14555,14557,32768,47,512,59,97,14562,14564,32768,10692,114,59,32768,9023,102,59,32896,55349,56676,97,512,100,114,14579,1114,101,115,512,59,117,14586,14588,32768,9824,105,116,315,14587,768,99,115,117,14599,14624,14662,512,97,117,14604,14614,112,512,59,115,4873,14610,59,32896,8851,65024,112,512,59,115,4922,14620,59,32896,8852,65024,117,512,98,112,14630,14646,768,59,101,115,4889,4895,14637,101,116,512,59,101,4889,14644,369,4896,768,59,101,115,4908,4914,14653,101,116,512,59,101,4908,14660,369,4915,768,59,97,102,4859,14669,1584,114,613,14674,1585,315,4860,97,114,370,4804,1024,99,101,109,116,14688,14693,14697,14700,114,59,32896,55349,56520,116,109,366,257,105,364,14516,97,114,358,4933,512,97,114,14709,14717,114,512,59,102,14715,6624,32768,9734,512,97,110,14722,14741,105,103,104,116,512,101,112,14731,14738,112,115,105,108,111,366,8648,104,361,13017,115,315,11280,1280,98,99,109,110,112,14755,14866,5015,14911,14915,2304,59,69,100,101,109,110,112,114,115,14774,14776,14779,14784,14794,14800,14811,14817,14823,32768,8834,59,32768,10949,111,116,59,32768,10941,512,59,100,4963,14789,111,116,59,32768,10947,117,108,116,59,32768,10945,512,69,101,14805,14808,59,32768,10955,59,32768,8842,108,117,115,59,32768,10943,97,114,114,59,32768,10617,768,101,105,117,14830,14851,14855,116,768,59,101,110,14774,14838,14844,113,512,59,113,4963,14776,101,113,512,59,113,14809,14805,109,59,32768,10951,512,98,112,14860,14863,59,32768,10965,59,32768,10963,99,1536,59,97,99,101,110,115,4983,14880,14886,14893,14895,14253,112,112,114,111,376,14201,117,114,108,121,101,369,5002,369,4990,768,97,101,115,14902,14908,14240,112,112,114,111,376,14238,113,369,14234,103,59,32768,9834,3328,49,50,51,59,69,100,101,104,108,109,110,112,115,14942,14946,14950,5036,14954,14957,14971,14981,14995,15001,15007,15018,15024,32827,185,32768,185,32827,178,32768,178,32827,179,32768,179,59,32768,10950,512,111,115,14962,14966,116,59,32768,10942,117,98,59,32768,10968,512,59,100,5043,14976,111,116,59,32768,10948,115,512,111,117,14987,14991,108,59,32768,10185,98,59,32768,10967,97,114,114,59,32768,10619,117,108,116,59,32768,10946,512,69,101,15012,15015,59,32768,10956,59,32768,8843,108,117,115,59,32768,10944,768,101,105,117,15031,15052,15056,116,768,59,101,110,5036,15039,15045,113,512,59,113,5043,14954,101,113,512,59,113,15016,15012,109,59,32768,10952,512,98,112,15061,15064,59,32768,10964,59,32768,10966,768,65,97,110,15074,15079,15092,114,114,59,32768,8665,114,512,104,114,15085,15087,363,9572,512,59,111,2839,2837,119,97,114,59,32768,10538,108,105,103,32827,223,32768,223,5985,15130,15144,15147,5232,15169,15176,0,15181,15252,0,0,0,0,0,15280,15323,0,15330,15437,0,0,0,15467,1138,15135,0,0,15141,103,101,116,59,32768,8982,59,32768,964,114,363,3989,768,97,101,121,15153,15159,15165,114,111,110,59,32768,357,100,105,108,59,32768,355,59,32768,1090,108,114,101,99,59,32768,8981,114,59,32896,55349,56625,1024,101,105,107,111,15189,15214,15238,15245,882,15194,0,15200,101,512,52,102,5151,5148,97,768,59,115,118,15207,15209,15211,32768,952,121,109,59,32768,977,512,99,110,15219,15235,107,512,97,115,15225,15231,112,112,114,111,376,5218,105,109,315,5194,115,368,5179,512,97,115,15243,15231,368,5218,114,110,32827,254,32768,254,876,871,15256,9772,101,115,33536,215,59,98,100,15265,15267,15276,32768,215,512,59,97,7008,15272,114,59,32768,10801,59,32768,10800,768,101,112,115,15286,15288,15320,353,11819,1024,59,98,99,102,1258,15297,15302,15307,111,116,59,32768,9014,105,114,59,32768,10993,512,59,111,15312,15315,32896,55349,56677,114,107,59,32768,10970,353,14319,114,105,109,101,59,32768,8244,768,97,105,112,15336,15339,15428,100,357,5083,1792,97,100,101,109,112,115,116,15354,15400,15386,15405,15412,15418,15422,110,103,108,101,1280,59,100,108,113,114,15369,15371,15376,15386,15389,32768,9653,111,119,110,315,8321,101,102,116,512,59,101,11194,15384,369,2567,59,32768,8796,105,103,104,116,512,59,101,14115,15398,369,4544,111,116,59,32768,9708,105,110,117,115,59,32768,10810,108,117,115,59,32768,10809,98,59,32768,10701,105,109,101,59,32768,10811,101,122,105,117,109,59,32768,9186,768,99,104,116,15443,15455,15460,512,114,121,15448,15452,59,32896,55349,56521,59,32768,1094,99,121,59,32768,1115,114,111,107,59,32768,359,512,105,111,15471,15474,120,372,6546,104,101,97,100,512,108,114,15483,15492,101,102,116,97,114,114,111,375,2323,105,103,104,116,97,114,114,111,119,315,4266,4608,65,72,97,98,99,100,102,103,104,108,109,111,112,114,115,116,117,119,15540,15543,15548,15562,15576,15590,15609,15624,15632,15650,15682,15695,15710,15774,15813,15819,15845,15858,114,370,1091,97,114,59,32768,10595,512,99,114,15553,15560,117,116,101,32827,250,32768,250,370,4812,114,867,15568,0,15572,121,59,32768,1118,118,101,59,32768,365,512,105,121,15581,15587,114,99,32827,251,32768,251,59,32768,1091,768,97,98,104,15597,15600,15606,114,370,5475,108,97,99,59,32768,369,97,370,5499,512,105,114,15614,15620,115,104,116,59,32768,10622,59,32896,55349,56626,114,97,118,101,32827,249,32768,249,609,15636,15646,114,512,108,114,15641,15643,315,2611,315,4588,108,107,59,32768,9600,512,99,116,15655,15677,1135,15661,0,0,15673,114,110,512,59,101,15667,15669,32768,8988,114,315,15668,111,112,59,32768,8975,114,105,59,32768,9720,512,97,108,15687,15692,99,114,59,32768,363,33083,168,916,512,103,112,15700,15705,111,110,59,32768,371,102,59,32896,55349,56678,1536,97,100,104,108,115,117,4807,15723,15728,5413,15748,15764,111,119,110,353,5482,97,114,112,111,111,110,512,108,114,15739,15743,101,102,372,15642,105,103,104,372,15644,105,768,59,104,108,15756,15758,15760,32768,965,315,5559,111,110,315,15757,112,97,114,114,111,119,115,59,32768,8648,768,99,105,116,15781,15803,15808,1135,15787,0,0,15799,114,110,512,59,101,15793,15795,32768,8989,114,315,15794,111,112,59,32768,8974,110,103,59,32768,367,114,105,59,32768,9721,99,114,59,32896,55349,56522,768,100,105,114,15826,15831,15837,111,116,59,32768,8944,108,100,101,59,32768,361,105,512,59,102,15369,15843,315,6714,512,97,109,15850,15853,114,370,15772,108,32827,252,32768,252,97,110,103,108,101,59,32768,10663,3840,65,66,68,97,99,100,101,102,108,110,111,112,114,115,122,15897,15900,15912,15916,16053,16057,16062,16099,16104,16108,16119,16125,16129,16133,16164,114,370,1102,97,114,512,59,118,15907,15909,32768,10984,59,32768,10985,97,115,360,1078,512,110,114,15921,15927,103,114,116,59,32768,10652,1792,101,107,110,112,114,115,116,14731,15942,15947,15954,15965,15972,16022,97,112,112,353,10105,111,116,104,105,110,359,8564,768,104,105,114,14739,13045,15961,111,112,372,13302,512,59,104,5486,15970,367,13813,512,105,117,15977,15981,103,109,353,14407,512,98,112,15986,16004,115,101,116,110,101,113,512,59,113,15997,16000,32896,8842,65024,59,32896,10955,65024,115,101,116,110,101,113,512,59,113,16015,16018,32896,8843,65024,59,32896,10956,65024,512,104,114,16027,16031,101,116,353,15212,105,97,110,103,108,101,512,108,114,16042,16047,101,102,116,315,2556,105,103,104,116,315,4533,121,59,32768,1074,97,115,104,315,4503,768,101,108,114,16069,16085,16091,768,59,98,101,12796,16076,16081,97,114,59,32768,8891,113,59,32768,8794,108,105,112,59,32768,8942,512,98,116,16096,5682,97,370,5683,114,59,32896,55349,56627,116,114,361,16046,115,117,512,98,112,16115,16117,315,3637,315,3701,112,102,59,32896,55349,56679,114,111,368,4160,116,114,361,16052,512,99,117,16138,16143,114,59,32896,55349,56523,512,98,112,16148,16156,110,512,69,101,16000,16154,315,15998,110,512,69,101,16018,16162,315,16016,105,103,122,97,103,59,32768,10650,1792,99,101,102,111,112,114,115,16187,16193,16223,16228,16220,16234,16243,105,114,99,59,32768,373,512,100,105,16198,16217,512,98,103,16203,16208,97,114,59,32768,10847,101,512,59,113,6119,16214,59,32768,8793,101,114,112,59,32768,8472,114,59,32896,55349,56628,112,102,59,32896,55349,56680,512,59,101,5701,16239,97,116,360,5701,99,114,59,32896,55349,56524,5475,6570,16272,0,16276,0,16281,16292,0,0,16295,16306,16309,16314,0,0,16334,16345,0,16355,6657,6660,116,114,361,6643,114,59,32896,55349,56629,512,65,97,16285,16288,114,370,1045,114,370,2784,59,32768,958,512,65,97,16299,16302,114,370,1033,114,370,2772,97,368,10934,105,115,59,32768,8955,768,100,112,116,6593,16320,16329,512,102,108,16325,6599,59,32896,55349,56681,105,109,357,6609,512,65,97,16338,16341,114,370,1057,114,370,2796,512,99,113,16349,6616,114,59,32896,55349,56525,512,112,116,6650,16359,114,361,6647,2048,97,99,101,102,105,111,115,117,16379,16394,16407,16412,16417,16422,16428,16434,99,512,117,121,16385,16391,116,101,32827,253,32768,253,59,32768,1103,512,105,121,16399,16404,114,99,59,32768,375,59,32768,1099,110,32827,165,32768,165,114,59,32896,55349,56630,99,121,59,32768,1111,112,102,59,32896,55349,56682,99,114,59,32896,55349,56526,512,99,109,16439,16443,121,59,32768,1102,108,32827,255,32768,255,2560,97,99,100,101,102,104,105,111,115,119,16469,16476,16490,16495,16508,16513,16518,16526,16532,16538,99,117,116,101,59,32768,378,512,97,121,16481,16487,114,111,110,59,32768,382,59,32768,1079,111,116,59,32768,380,512,101,116,16500,16504,116,114,358,5950,97,59,32768,950,114,59,32896,55349,56631,99,121,59,32768,1078,103,114,97,114,114,59,32768,8669,112,102,59,32896,55349,56683,99,114,59,32896,55349,56527,512,106,110,16543,16546,59,32768,8205,106,59,32768,8204]); +export default new Uint16Array([7489,60,213,305,650,1181,1403,1488,1653,1758,1954,2006,2063,2634,2705,3489,3693,3849,3878,4298,4648,4833,5141,5277,5315,5343,5413,0,0,0,0,0,0,5483,5837,6541,7186,7645,8062,8288,8624,8845,9152,9211,9282,10276,10514,11528,11848,12238,12310,12986,13881,14252,14590,14888,14961,15072,15150,2048,69,77,97,98,99,102,103,108,109,110,111,112,114,115,116,117,92,98,102,109,115,127,132,139,144,149,152,166,179,185,200,207,108,105,103,32827,198,16582,80,32827,38,16422,99,117,116,101,32827,193,16577,114,101,118,101,59,16642,256,105,121,120,125,114,99,32827,194,16578,59,17424,114,59,49152,55349,56580,114,97,118,101,32827,192,16576,112,104,97,59,17297,97,99,114,59,16640,100,59,27219,256,103,112,157,161,111,110,59,16644,102,59,49152,55349,56632,112,108,121,70,117,110,99,116,105,111,110,59,24673,105,110,103,32827,197,16581,256,99,115,190,195,114,59,49152,55349,56476,105,103,110,59,25172,105,108,100,101,32827,195,16579,109,108,32827,196,16580,1024,97,99,101,102,111,114,115,117,229,251,254,279,284,290,295,298,256,99,114,234,242,107,115,108,97,115,104,59,25110,374,246,248,59,27367,101,100,59,25350,121,59,17425,384,99,114,116,261,267,276,97,117,115,101,59,25141,110,111,117,108,108,105,115,59,24876,97,59,17298,114,59,49152,55349,56581,112,102,59,49152,55349,56633,101,118,101,59,17112,99,242,275,109,112,101,113,59,25166,1792,72,79,97,99,100,101,102,104,105,108,111,114,115,117,333,337,342,384,414,418,437,439,442,476,533,627,632,638,99,121,59,17447,80,89,32827,169,16553,384,99,112,121,349,354,378,117,116,101,59,16646,256,59,105,359,360,25298,116,97,108,68,105,102,102,101,114,101,110,116,105,97,108,68,59,24901,108,101,121,115,59,24877,512,97,101,105,111,393,398,404,408,114,111,110,59,16652,100,105,108,32827,199,16583,114,99,59,16648,110,105,110,116,59,25136,111,116,59,16650,256,100,110,423,429,105,108,108,97,59,16568,116,101,114,68,111,116,59,16567,242,383,105,59,17319,114,99,108,101,512,68,77,80,84,455,459,465,470,111,116,59,25241,105,110,117,115,59,25238,108,117,115,59,25237,105,109,101,115,59,25239,111,256,99,115,482,504,107,119,105,115,101,67,111,110,116,111,117,114,73,110,116,101,103,114,97,108,59,25138,101,67,117,114,108,121,256,68,81,515,527,111,117,98,108,101,81,117,111,116,101,59,24605,117,111,116,101,59,24601,512,108,110,112,117,542,552,583,597,111,110,256,59,101,549,550,25143,59,27252,384,103,105,116,559,566,570,114,117,101,110,116,59,25185,110,116,59,25135,111,117,114,73,110,116,101,103,114,97,108,59,25134,256,102,114,588,590,59,24834,111,100,117,99,116,59,25104,110,116,101,114,67,108,111,99,107,119,105,115,101,67,111,110,116,111,117,114,73,110,116,101,103,114,97,108,59,25139,111,115,115,59,27183,99,114,59,49152,55349,56478,112,256,59,67,644,645,25299,97,112,59,25165,1408,68,74,83,90,97,99,101,102,105,111,115,672,684,688,692,696,715,727,737,742,819,1165,256,59,111,377,677,116,114,97,104,100,59,26897,99,121,59,17410,99,121,59,17413,99,121,59,17423,384,103,114,115,703,708,711,103,101,114,59,24609,114,59,24993,104,118,59,27364,256,97,121,720,725,114,111,110,59,16654,59,17428,108,256,59,116,733,734,25095,97,59,17300,114,59,49152,55349,56583,256,97,102,747,807,256,99,109,752,802,114,105,116,105,99,97,108,512,65,68,71,84,768,774,790,796,99,117,116,101,59,16564,111,372,779,781,59,17113,98,108,101,65,99,117,116,101,59,17117,114,97,118,101,59,16480,105,108,100,101,59,17116,111,110,100,59,25284,102,101,114,101,110,116,105,97,108,68,59,24902,1136,829,0,0,0,834,852,0,1029,102,59,49152,55349,56635,384,59,68,69,840,841,845,16552,111,116,59,24796,113,117,97,108,59,25168,98,108,101,768,67,68,76,82,85,86,867,882,898,975,994,1016,111,110,116,111,117,114,73,110,116,101,103,114,97,236,569,111,628,889,0,0,891,187,841,110,65,114,114,111,119,59,25043,256,101,111,903,932,102,116,384,65,82,84,912,918,929,114,114,111,119,59,25040,105,103,104,116,65,114,114,111,119,59,25044,101,229,714,110,103,256,76,82,939,964,101,102,116,256,65,82,947,953,114,114,111,119,59,26616,105,103,104,116,65,114,114,111,119,59,26618,105,103,104,116,65,114,114,111,119,59,26617,105,103,104,116,256,65,84,984,990,114,114,111,119,59,25042,101,101,59,25256,112,577,1001,0,0,1007,114,114,111,119,59,25041,111,119,110,65,114,114,111,119,59,25045,101,114,116,105,99,97,108,66,97,114,59,25125,110,768,65,66,76,82,84,97,1042,1066,1072,1118,1151,892,114,114,111,119,384,59,66,85,1053,1054,1058,24979,97,114,59,26899,112,65,114,114,111,119,59,25077,114,101,118,101,59,17169,101,102,116,722,1082,0,1094,0,1104,105,103,104,116,86,101,99,116,111,114,59,26960,101,101,86,101,99,116,111,114,59,26974,101,99,116,111,114,256,59,66,1113,1114,25021,97,114,59,26966,105,103,104,116,468,1127,0,1137,101,101,86,101,99,116,111,114,59,26975,101,99,116,111,114,256,59,66,1146,1147,25025,97,114,59,26967,101,101,256,59,65,1158,1159,25252,114,114,111,119,59,24999,256,99,116,1170,1175,114,59,49152,55349,56479,114,111,107,59,16656,2048,78,84,97,99,100,102,103,108,109,111,112,113,115,116,117,120,1213,1216,1220,1227,1246,1250,1255,1262,1269,1313,1327,1334,1362,1373,1376,1381,71,59,16714,72,32827,208,16592,99,117,116,101,32827,201,16585,384,97,105,121,1234,1239,1244,114,111,110,59,16666,114,99,32827,202,16586,59,17453,111,116,59,16662,114,59,49152,55349,56584,114,97,118,101,32827,200,16584,101,109,101,110,116,59,25096,256,97,112,1274,1278,99,114,59,16658,116,121,595,1286,0,0,1298,109,97,108,108,83,113,117,97,114,101,59,26107,101,114,121,83,109,97,108,108,83,113,117,97,114,101,59,26027,256,103,112,1318,1322,111,110,59,16664,102,59,49152,55349,56636,115,105,108,111,110,59,17301,117,256,97,105,1340,1353,108,256,59,84,1346,1347,27253,105,108,100,101,59,25154,108,105,98,114,105,117,109,59,25036,256,99,105,1367,1370,114,59,24880,109,59,27251,97,59,17303,109,108,32827,203,16587,256,105,112,1386,1391,115,116,115,59,25091,111,110,101,110,116,105,97,108,69,59,24903,640,99,102,105,111,115,1413,1416,1421,1458,1484,121,59,17444,114,59,49152,55349,56585,108,108,101,100,595,1431,0,0,1443,109,97,108,108,83,113,117,97,114,101,59,26108,101,114,121,83,109,97,108,108,83,113,117,97,114,101,59,26026,880,1466,0,1471,0,0,1476,102,59,49152,55349,56637,65,108,108,59,25088,114,105,101,114,116,114,102,59,24881,99,242,1483,1536,74,84,97,98,99,100,102,103,111,114,115,116,1512,1516,1519,1530,1536,1554,1558,1563,1565,1571,1644,1650,99,121,59,17411,32827,62,16446,109,109,97,256,59,100,1527,1528,17299,59,17372,114,101,118,101,59,16670,384,101,105,121,1543,1548,1552,100,105,108,59,16674,114,99,59,16668,59,17427,111,116,59,16672,114,59,49152,55349,56586,59,25305,112,102,59,49152,55349,56638,101,97,116,101,114,768,69,70,71,76,83,84,1589,1604,1614,1622,1627,1638,113,117,97,108,256,59,76,1598,1599,25189,101,115,115,59,25307,117,108,108,69,113,117,97,108,59,25191,114,101,97,116,101,114,59,27298,101,115,115,59,25207,108,97,110,116,69,113,117,97,108,59,27262,105,108,100,101,59,25203,99,114,59,49152,55349,56482,59,25195,1024,65,97,99,102,105,111,115,117,1669,1675,1686,1691,1694,1706,1726,1738,82,68,99,121,59,17450,256,99,116,1680,1684,101,107,59,17095,59,16478,105,114,99,59,16676,114,59,24844,108,98,101,114,116,83,112,97,99,101,59,24843,496,1711,0,1714,102,59,24845,105,122,111,110,116,97,108,76,105,110,101,59,25856,256,99,116,1731,1733,242,1705,114,111,107,59,16678,109,112,324,1744,1752,111,119,110,72,117,109,240,303,113,117,97,108,59,25167,1792,69,74,79,97,99,100,102,103,109,110,111,115,116,117,1786,1790,1795,1799,1806,1818,1822,1825,1832,1860,1912,1931,1935,1941,99,121,59,17429,108,105,103,59,16690,99,121,59,17409,99,117,116,101,32827,205,16589,256,105,121,1811,1816,114,99,32827,206,16590,59,17432,111,116,59,16688,114,59,24849,114,97,118,101,32827,204,16588,384,59,97,112,1824,1839,1855,256,99,103,1844,1847,114,59,16682,105,110,97,114,121,73,59,24904,108,105,101,243,989,500,1865,0,1890,256,59,101,1869,1870,25132,256,103,114,1875,1880,114,97,108,59,25131,115,101,99,116,105,111,110,59,25282,105,115,105,98,108,101,256,67,84,1900,1906,111,109,109,97,59,24675,105,109,101,115,59,24674,384,103,112,116,1919,1923,1928,111,110,59,16686,102,59,49152,55349,56640,97,59,17305,99,114,59,24848,105,108,100,101,59,16680,491,1946,0,1950,99,121,59,17414,108,32827,207,16591,640,99,102,111,115,117,1964,1975,1980,1986,2000,256,105,121,1969,1973,114,99,59,16692,59,17433,114,59,49152,55349,56589,112,102,59,49152,55349,56641,483,1991,0,1996,114,59,49152,55349,56485,114,99,121,59,17416,107,99,121,59,17412,896,72,74,97,99,102,111,115,2020,2024,2028,2033,2045,2050,2056,99,121,59,17445,99,121,59,17420,112,112,97,59,17306,256,101,121,2038,2043,100,105,108,59,16694,59,17434,114,59,49152,55349,56590,112,102,59,49152,55349,56642,99,114,59,49152,55349,56486,1408,74,84,97,99,101,102,108,109,111,115,116,2085,2089,2092,2128,2147,2483,2488,2503,2509,2615,2631,99,121,59,17417,32827,60,16444,640,99,109,110,112,114,2103,2108,2113,2116,2125,117,116,101,59,16697,98,100,97,59,17307,103,59,26602,108,97,99,101,116,114,102,59,24850,114,59,24990,384,97,101,121,2135,2140,2145,114,111,110,59,16701,100,105,108,59,16699,59,17435,256,102,115,2152,2416,116,1280,65,67,68,70,82,84,85,86,97,114,2174,2217,2225,2272,2278,2300,2351,2395,912,2410,256,110,114,2179,2191,103,108,101,66,114,97,99,107,101,116,59,26600,114,111,119,384,59,66,82,2201,2202,2206,24976,97,114,59,25060,105,103,104,116,65,114,114,111,119,59,25030,101,105,108,105,110,103,59,25352,111,501,2231,0,2243,98,108,101,66,114,97,99,107,101,116,59,26598,110,468,2248,0,2258,101,101,86,101,99,116,111,114,59,26977,101,99,116,111,114,256,59,66,2267,2268,25027,97,114,59,26969,108,111,111,114,59,25354,105,103,104,116,256,65,86,2287,2293,114,114,111,119,59,24980,101,99,116,111,114,59,26958,256,101,114,2305,2327,101,384,59,65,86,2313,2314,2320,25251,114,114,111,119,59,24996,101,99,116,111,114,59,26970,105,97,110,103,108,101,384,59,66,69,2340,2341,2345,25266,97,114,59,27087,113,117,97,108,59,25268,112,384,68,84,86,2359,2370,2380,111,119,110,86,101,99,116,111,114,59,26961,101,101,86,101,99,116,111,114,59,26976,101,99,116,111,114,256,59,66,2390,2391,25023,97,114,59,26968,101,99,116,111,114,256,59,66,2405,2406,25020,97,114,59,26962,105,103,104,116,225,924,115,768,69,70,71,76,83,84,2430,2443,2453,2461,2466,2477,113,117,97,108,71,114,101,97,116,101,114,59,25306,117,108,108,69,113,117,97,108,59,25190,114,101,97,116,101,114,59,25206,101,115,115,59,27297,108,97,110,116,69,113,117,97,108,59,27261,105,108,100,101,59,25202,114,59,49152,55349,56591,256,59,101,2493,2494,25304,102,116,97,114,114,111,119,59,25050,105,100,111,116,59,16703,384,110,112,119,2516,2582,2587,103,512,76,82,108,114,2526,2551,2562,2576,101,102,116,256,65,82,2534,2540,114,114,111,119,59,26613,105,103,104,116,65,114,114,111,119,59,26615,105,103,104,116,65,114,114,111,119,59,26614,101,102,116,256,97,114,947,2570,105,103,104,116,225,959,105,103,104,116,225,970,102,59,49152,55349,56643,101,114,256,76,82,2594,2604,101,102,116,65,114,114,111,119,59,24985,105,103,104,116,65,114,114,111,119,59,24984,384,99,104,116,2622,2624,2626,242,2124,59,25008,114,111,107,59,16705,59,25194,1024,97,99,101,102,105,111,115,117,2650,2653,2656,2679,2684,2693,2699,2702,112,59,26885,121,59,17436,256,100,108,2661,2671,105,117,109,83,112,97,99,101,59,24671,108,105,110,116,114,102,59,24883,114,59,49152,55349,56592,110,117,115,80,108,117,115,59,25107,112,102,59,49152,55349,56644,99,242,2678,59,17308,1152,74,97,99,101,102,111,115,116,117,2723,2727,2733,2752,2836,2841,3473,3479,3486,99,121,59,17418,99,117,116,101,59,16707,384,97,101,121,2740,2745,2750,114,111,110,59,16711,100,105,108,59,16709,59,17437,384,103,115,119,2759,2800,2830,97,116,105,118,101,384,77,84,86,2771,2783,2792,101,100,105,117,109,83,112,97,99,101,59,24587,104,105,256,99,110,2790,2776,235,2777,101,114,121,84,104,105,238,2777,116,101,100,256,71,76,2808,2822,114,101,97,116,101,114,71,114,101,97,116,101,242,1651,101,115,115,76,101,115,243,2632,76,105,110,101,59,16394,114,59,49152,55349,56593,512,66,110,112,116,2850,2856,2871,2874,114,101,97,107,59,24672,66,114,101,97,107,105,110,103,83,112,97,99,101,59,16544,102,59,24853,1664,59,67,68,69,71,72,76,78,80,82,83,84,86,2901,2902,2922,2940,2977,3051,3076,3166,3204,3238,3288,3425,3461,27372,256,111,117,2907,2916,110,103,114,117,101,110,116,59,25186,112,67,97,112,59,25197,111,117,98,108,101,86,101,114,116,105,99,97,108,66,97,114,59,25126,384,108,113,120,2947,2954,2971,101,109,101,110,116,59,25097,117,97,108,256,59,84,2962,2963,25184,105,108,100,101,59,49152,8770,824,105,115,116,115,59,25092,114,101,97,116,101,114,896,59,69,70,71,76,83,84,2998,2999,3005,3017,3027,3032,3045,25199,113,117,97,108,59,25201,117,108,108,69,113,117,97,108,59,49152,8807,824,114,101,97,116,101,114,59,49152,8811,824,101,115,115,59,25209,108,97,110,116,69,113,117,97,108,59,49152,10878,824,105,108,100,101,59,25205,117,109,112,324,3058,3069,111,119,110,72,117,109,112,59,49152,8782,824,113,117,97,108,59,49152,8783,824,101,256,102,115,3082,3111,116,84,114,105,97,110,103,108,101,384,59,66,69,3098,3099,3105,25322,97,114,59,49152,10703,824,113,117,97,108,59,25324,115,768,59,69,71,76,83,84,3125,3126,3132,3140,3147,3160,25198,113,117,97,108,59,25200,114,101,97,116,101,114,59,25208,101,115,115,59,49152,8810,824,108,97,110,116,69,113,117,97,108,59,49152,10877,824,105,108,100,101,59,25204,101,115,116,101,100,256,71,76,3176,3193,114,101,97,116,101,114,71,114,101,97,116,101,114,59,49152,10914,824,101,115,115,76,101,115,115,59,49152,10913,824,114,101,99,101,100,101,115,384,59,69,83,3218,3219,3227,25216,113,117,97,108,59,49152,10927,824,108,97,110,116,69,113,117,97,108,59,25312,256,101,105,3243,3257,118,101,114,115,101,69,108,101,109,101,110,116,59,25100,103,104,116,84,114,105,97,110,103,108,101,384,59,66,69,3275,3276,3282,25323,97,114,59,49152,10704,824,113,117,97,108,59,25325,256,113,117,3293,3340,117,97,114,101,83,117,256,98,112,3304,3321,115,101,116,256,59,69,3312,3315,49152,8847,824,113,117,97,108,59,25314,101,114,115,101,116,256,59,69,3331,3334,49152,8848,824,113,117,97,108,59,25315,384,98,99,112,3347,3364,3406,115,101,116,256,59,69,3355,3358,49152,8834,8402,113,117,97,108,59,25224,99,101,101,100,115,512,59,69,83,84,3378,3379,3387,3398,25217,113,117,97,108,59,49152,10928,824,108,97,110,116,69,113,117,97,108,59,25313,105,108,100,101,59,49152,8831,824,101,114,115,101,116,256,59,69,3416,3419,49152,8835,8402,113,117,97,108,59,25225,105,108,100,101,512,59,69,70,84,3438,3439,3445,3455,25153,113,117,97,108,59,25156,117,108,108,69,113,117,97,108,59,25159,105,108,100,101,59,25161,101,114,116,105,99,97,108,66,97,114,59,25124,99,114,59,49152,55349,56489,105,108,100,101,32827,209,16593,59,17309,1792,69,97,99,100,102,103,109,111,112,114,115,116,117,118,3517,3522,3529,3541,3547,3552,3559,3580,3586,3616,3618,3634,3647,3652,108,105,103,59,16722,99,117,116,101,32827,211,16595,256,105,121,3534,3539,114,99,32827,212,16596,59,17438,98,108,97,99,59,16720,114,59,49152,55349,56594,114,97,118,101,32827,210,16594,384,97,101,105,3566,3570,3574,99,114,59,16716,103,97,59,17321,99,114,111,110,59,17311,112,102,59,49152,55349,56646,101,110,67,117,114,108,121,256,68,81,3598,3610,111,117,98,108,101,81,117,111,116,101,59,24604,117,111,116,101,59,24600,59,27220,256,99,108,3623,3628,114,59,49152,55349,56490,97,115,104,32827,216,16600,105,364,3639,3644,100,101,32827,213,16597,101,115,59,27191,109,108,32827,214,16598,101,114,256,66,80,3659,3680,256,97,114,3664,3667,114,59,24638,97,99,256,101,107,3674,3676,59,25566,101,116,59,25524,97,114,101,110,116,104,101,115,105,115,59,25564,1152,97,99,102,104,105,108,111,114,115,3711,3719,3722,3727,3730,3732,3741,3760,3836,114,116,105,97,108,68,59,25090,121,59,17439,114,59,49152,55349,56595,105,59,17318,59,17312,117,115,77,105,110,117,115,59,16561,256,105,112,3746,3757,110,99,97,114,101,112,108,97,110,229,1693,102,59,24857,512,59,101,105,111,3769,3770,3808,3812,27323,99,101,100,101,115,512,59,69,83,84,3784,3785,3791,3802,25210,113,117,97,108,59,27311,108,97,110,116,69,113,117,97,108,59,25212,105,108,100,101,59,25214,109,101,59,24627,256,100,112,3817,3822,117,99,116,59,25103,111,114,116,105,111,110,256,59,97,549,3833,108,59,25117,256,99,105,3841,3846,114,59,49152,55349,56491,59,17320,512,85,102,111,115,3857,3862,3867,3871,79,84,32827,34,16418,114,59,49152,55349,56596,112,102,59,24858,99,114,59,49152,55349,56492,1536,66,69,97,99,101,102,104,105,111,114,115,117,3902,3907,3911,3936,3955,4007,4010,4013,4246,4265,4276,4286,97,114,114,59,26896,71,32827,174,16558,384,99,110,114,3918,3923,3926,117,116,101,59,16724,103,59,26603,114,256,59,116,3932,3933,24992,108,59,26902,384,97,101,121,3943,3948,3953,114,111,110,59,16728,100,105,108,59,16726,59,17440,256,59,118,3960,3961,24860,101,114,115,101,256,69,85,3970,3993,256,108,113,3975,3982,101,109,101,110,116,59,25099,117,105,108,105,98,114,105,117,109,59,25035,112,69,113,117,105,108,105,98,114,105,117,109,59,26991,114,187,3961,111,59,17313,103,104,116,1024,65,67,68,70,84,85,86,97,4033,4075,4083,4130,4136,4187,4231,984,256,110,114,4038,4050,103,108,101,66,114,97,99,107,101,116,59,26601,114,111,119,384,59,66,76,4060,4061,4065,24978,97,114,59,25061,101,102,116,65,114,114,111,119,59,25028,101,105,108,105,110,103,59,25353,111,501,4089,0,4101,98,108,101,66,114,97,99,107,101,116,59,26599,110,468,4106,0,4116,101,101,86,101,99,116,111,114,59,26973,101,99,116,111,114,256,59,66,4125,4126,25026,97,114,59,26965,108,111,111,114,59,25355,256,101,114,4141,4163,101,384,59,65,86,4149,4150,4156,25250,114,114,111,119,59,24998,101,99,116,111,114,59,26971,105,97,110,103,108,101,384,59,66,69,4176,4177,4181,25267,97,114,59,27088,113,117,97,108,59,25269,112,384,68,84,86,4195,4206,4216,111,119,110,86,101,99,116,111,114,59,26959,101,101,86,101,99,116,111,114,59,26972,101,99,116,111,114,256,59,66,4226,4227,25022,97,114,59,26964,101,99,116,111,114,256,59,66,4241,4242,25024,97,114,59,26963,256,112,117,4251,4254,102,59,24861,110,100,73,109,112,108,105,101,115,59,26992,105,103,104,116,97,114,114,111,119,59,25051,256,99,104,4281,4284,114,59,24859,59,25009,108,101,68,101,108,97,121,101,100,59,27124,1664,72,79,97,99,102,104,105,109,111,113,115,116,117,4324,4337,4343,4349,4377,4382,4433,4438,4449,4455,4533,4539,4543,256,67,99,4329,4334,72,99,121,59,17449,121,59,17448,70,84,99,121,59,17452,99,117,116,101,59,16730,640,59,97,101,105,121,4360,4361,4366,4371,4375,27324,114,111,110,59,16736,100,105,108,59,16734,114,99,59,16732,59,17441,114,59,49152,55349,56598,111,114,116,512,68,76,82,85,4394,4404,4414,4425,111,119,110,65,114,114,111,119,187,1054,101,102,116,65,114,114,111,119,187,2202,105,103,104,116,65,114,114,111,119,187,4061,112,65,114,114,111,119,59,24977,103,109,97,59,17315,97,108,108,67,105,114,99,108,101,59,25112,112,102,59,49152,55349,56650,626,4461,0,0,4464,116,59,25114,97,114,101,512,59,73,83,85,4475,4476,4489,4527,26017,110,116,101,114,115,101,99,116,105,111,110,59,25235,117,256,98,112,4495,4510,115,101,116,256,59,69,4503,4504,25231,113,117,97,108,59,25233,101,114,115,101,116,256,59,69,4520,4521,25232,113,117,97,108,59,25234,110,105,111,110,59,25236,99,114,59,49152,55349,56494,97,114,59,25286,512,98,99,109,112,4552,4571,4617,4619,256,59,115,4557,4558,25296,101,116,256,59,69,4557,4565,113,117,97,108,59,25222,256,99,104,4576,4613,101,101,100,115,512,59,69,83,84,4589,4590,4596,4607,25211,113,117,97,108,59,27312,108,97,110,116,69,113,117,97,108,59,25213,105,108,100,101,59,25215,84,104,225,3980,59,25105,384,59,101,115,4626,4627,4643,25297,114,115,101,116,256,59,69,4636,4637,25219,113,117,97,108,59,25223,101,116,187,4627,1408,72,82,83,97,99,102,104,105,111,114,115,4670,4676,4681,4693,4702,4721,4726,4767,4802,4808,4817,79,82,78,32827,222,16606,65,68,69,59,24866,256,72,99,4686,4690,99,121,59,17419,121,59,17446,256,98,117,4698,4700,59,16393,59,17316,384,97,101,121,4709,4714,4719,114,111,110,59,16740,100,105,108,59,16738,59,17442,114,59,49152,55349,56599,256,101,105,4731,4745,498,4736,0,4743,101,102,111,114,101,59,25140,97,59,17304,256,99,110,4750,4760,107,83,112,97,99,101,59,49152,8287,8202,83,112,97,99,101,59,24585,108,100,101,512,59,69,70,84,4779,4780,4786,4796,25148,113,117,97,108,59,25155,117,108,108,69,113,117,97,108,59,25157,105,108,100,101,59,25160,112,102,59,49152,55349,56651,105,112,108,101,68,111,116,59,24795,256,99,116,4822,4827,114,59,49152,55349,56495,114,111,107,59,16742,2785,4855,4878,4890,4902,0,4908,4913,0,0,0,0,0,4920,4925,4983,4997,0,5119,5124,5130,5136,256,99,114,4859,4865,117,116,101,32827,218,16602,114,256,59,111,4871,4872,24991,99,105,114,59,26953,114,483,4883,0,4886,121,59,17422,118,101,59,16748,256,105,121,4894,4899,114,99,32827,219,16603,59,17443,98,108,97,99,59,16752,114,59,49152,55349,56600,114,97,118,101,32827,217,16601,97,99,114,59,16746,256,100,105,4929,4969,101,114,256,66,80,4936,4957,256,97,114,4941,4944,114,59,16479,97,99,256,101,107,4951,4953,59,25567,101,116,59,25525,97,114,101,110,116,104,101,115,105,115,59,25565,111,110,256,59,80,4976,4977,25283,108,117,115,59,25230,256,103,112,4987,4991,111,110,59,16754,102,59,49152,55349,56652,1024,65,68,69,84,97,100,112,115,5013,5038,5048,5060,1000,5074,5079,5107,114,114,111,119,384,59,66,68,4432,5024,5028,97,114,59,26898,111,119,110,65,114,114,111,119,59,25029,111,119,110,65,114,114,111,119,59,24981,113,117,105,108,105,98,114,105,117,109,59,26990,101,101,256,59,65,5067,5068,25253,114,114,111,119,59,24997,111,119,110,225,1011,101,114,256,76,82,5086,5096,101,102,116,65,114,114,111,119,59,24982,105,103,104,116,65,114,114,111,119,59,24983,105,256,59,108,5113,5114,17362,111,110,59,17317,105,110,103,59,16750,99,114,59,49152,55349,56496,105,108,100,101,59,16744,109,108,32827,220,16604,1152,68,98,99,100,101,102,111,115,118,5159,5164,5168,5171,5182,5253,5258,5264,5270,97,115,104,59,25259,97,114,59,27371,121,59,17426,97,115,104,256,59,108,5179,5180,25257,59,27366,256,101,114,5187,5189,59,25281,384,98,116,121,5196,5200,5242,97,114,59,24598,256,59,105,5199,5205,99,97,108,512,66,76,83,84,5217,5221,5226,5236,97,114,59,25123,105,110,101,59,16508,101,112,97,114,97,116,111,114,59,26456,105,108,100,101,59,25152,84,104,105,110,83,112,97,99,101,59,24586,114,59,49152,55349,56601,112,102,59,49152,55349,56653,99,114,59,49152,55349,56497,100,97,115,104,59,25258,640,99,101,102,111,115,5287,5292,5297,5302,5308,105,114,99,59,16756,100,103,101,59,25280,114,59,49152,55349,56602,112,102,59,49152,55349,56654,99,114,59,49152,55349,56498,512,102,105,111,115,5323,5328,5330,5336,114,59,49152,55349,56603,59,17310,112,102,59,49152,55349,56655,99,114,59,49152,55349,56499,1152,65,73,85,97,99,102,111,115,117,5361,5365,5369,5373,5380,5391,5396,5402,5408,99,121,59,17455,99,121,59,17415,99,121,59,17454,99,117,116,101,32827,221,16605,256,105,121,5385,5389,114,99,59,16758,59,17451,114,59,49152,55349,56604,112,102,59,49152,55349,56656,99,114,59,49152,55349,56500,109,108,59,16760,1024,72,97,99,100,101,102,111,115,5429,5433,5439,5451,5455,5469,5472,5476,99,121,59,17430,99,117,116,101,59,16761,256,97,121,5444,5449,114,111,110,59,16765,59,17431,111,116,59,16763,498,5460,0,5467,111,87,105,100,116,232,2777,97,59,17302,114,59,24872,112,102,59,24868,99,114,59,49152,55349,56501,3041,5507,5514,5520,0,5552,5558,5567,0,0,0,0,5574,5595,5611,5727,5741,0,5781,5787,5810,5817,0,5822,99,117,116,101,32827,225,16609,114,101,118,101,59,16643,768,59,69,100,105,117,121,5532,5533,5537,5539,5544,5549,25150,59,49152,8766,819,59,25151,114,99,32827,226,16610,116,101,32955,180,774,59,17456,108,105,103,32827,230,16614,256,59,114,178,5562,59,49152,55349,56606,114,97,118,101,32827,224,16608,256,101,112,5578,5590,256,102,112,5583,5588,115,121,109,59,24885,232,5587,104,97,59,17329,256,97,112,5599,99,256,99,108,5604,5607,114,59,16641,103,59,27199,612,5616,0,0,5642,640,59,97,100,115,118,5626,5627,5631,5633,5639,25127,110,100,59,27221,59,27228,108,111,112,101,59,27224,59,27226,896,59,101,108,109,114,115,122,5656,5657,5659,5662,5695,5711,5721,25120,59,27044,101,187,5657,115,100,256,59,97,5669,5670,25121,1121,5680,5682,5684,5686,5688,5690,5692,5694,59,27048,59,27049,59,27050,59,27051,59,27052,59,27053,59,27054,59,27055,116,256,59,118,5701,5702,25119,98,256,59,100,5708,5709,25278,59,27037,256,112,116,5716,5719,104,59,25122,187,185,97,114,114,59,25468,256,103,112,5731,5735,111,110,59,16645,102,59,49152,55349,56658,896,59,69,97,101,105,111,112,4801,5755,5757,5762,5764,5767,5770,59,27248,99,105,114,59,27247,59,25162,100,59,25163,115,59,16423,114,111,120,256,59,101,4801,5778,241,5763,105,110,103,32827,229,16613,384,99,116,121,5793,5798,5800,114,59,49152,55349,56502,59,16426,109,112,256,59,101,4801,5807,241,648,105,108,100,101,32827,227,16611,109,108,32827,228,16612,256,99,105,5826,5832,111,110,105,110,244,626,110,116,59,27153,2048,78,97,98,99,100,101,102,105,107,108,110,111,112,114,115,117,5869,5873,5936,5948,5955,5960,6008,6013,6112,6118,6201,6224,5901,6461,6472,6512,111,116,59,27373,256,99,114,5878,5918,107,512,99,101,112,115,5888,5893,5901,5907,111,110,103,59,25164,112,115,105,108,111,110,59,17398,114,105,109,101,59,24629,105,109,256,59,101,5914,5915,25149,113,59,25293,374,5922,5926,101,101,59,25277,101,100,256,59,103,5932,5933,25349,101,187,5933,114,107,256,59,116,4956,5943,98,114,107,59,25526,256,111,121,5889,5953,59,17457,113,117,111,59,24606,640,99,109,112,114,116,5971,5979,5985,5988,5992,97,117,115,256,59,101,266,265,112,116,121,118,59,27056,115,233,5900,110,111,245,275,384,97,104,119,5999,6001,6003,59,17330,59,24886,101,101,110,59,25196,114,59,49152,55349,56607,103,896,99,111,115,116,117,118,119,6029,6045,6067,6081,6101,6107,6110,384,97,105,117,6036,6038,6042,240,1888,114,99,59,26095,112,187,4977,384,100,112,116,6052,6056,6061,111,116,59,27136,108,117,115,59,27137,105,109,101,115,59,27138,625,6073,0,0,6078,99,117,112,59,27142,97,114,59,26117,114,105,97,110,103,108,101,256,100,117,6093,6098,111,119,110,59,26045,112,59,26035,112,108,117,115,59,27140,101,229,5188,229,5293,97,114,111,119,59,26893,384,97,107,111,6125,6182,6197,256,99,110,6130,6179,107,384,108,115,116,6138,1451,6146,111,122,101,110,103,101,59,27115,114,105,97,110,103,108,101,512,59,100,108,114,6162,6163,6168,6173,26036,111,119,110,59,26046,101,102,116,59,26050,105,103,104,116,59,26040,107,59,25635,433,6187,0,6195,434,6191,0,6193,59,26002,59,26001,52,59,26003,99,107,59,25992,256,101,111,6206,6221,256,59,113,6211,6214,49152,61,8421,117,105,118,59,49152,8801,8421,116,59,25360,512,112,116,119,120,6233,6238,6247,6252,102,59,49152,55349,56659,256,59,116,5067,6243,111,109,187,5068,116,105,101,59,25288,1536,68,72,85,86,98,100,104,109,112,116,117,118,6277,6294,6314,6331,6359,6363,6380,6399,6405,6410,6416,6433,512,76,82,108,114,6286,6288,6290,6292,59,25943,59,25940,59,25942,59,25939,640,59,68,85,100,117,6305,6306,6308,6310,6312,25936,59,25958,59,25961,59,25956,59,25959,512,76,82,108,114,6323,6325,6327,6329,59,25949,59,25946,59,25948,59,25945,896,59,72,76,82,104,108,114,6346,6347,6349,6351,6353,6355,6357,25937,59,25964,59,25955,59,25952,59,25963,59,25954,59,25951,111,120,59,27081,512,76,82,108,114,6372,6374,6376,6378,59,25941,59,25938,59,25872,59,25868,640,59,68,85,100,117,1725,6391,6393,6395,6397,59,25957,59,25960,59,25900,59,25908,105,110,117,115,59,25247,108,117,115,59,25246,105,109,101,115,59,25248,512,76,82,108,114,6425,6427,6429,6431,59,25947,59,25944,59,25880,59,25876,896,59,72,76,82,104,108,114,6448,6449,6451,6453,6455,6457,6459,25858,59,25962,59,25953,59,25950,59,25916,59,25892,59,25884,256,101,118,291,6466,98,97,114,32827,166,16550,512,99,101,105,111,6481,6486,6490,6496,114,59,49152,55349,56503,109,105,59,24655,109,256,59,101,5914,5916,108,384,59,98,104,6504,6505,6507,16476,59,27077,115,117,98,59,26568,364,6516,6526,108,256,59,101,6521,6522,24610,116,187,6522,112,384,59,69,101,303,6533,6535,59,27310,256,59,113,1756,1755,3297,6567,0,6632,6673,6677,6706,0,6711,6736,0,0,6836,0,0,6849,0,0,6945,6958,6989,6994,0,7165,0,7180,384,99,112,114,6573,6578,6621,117,116,101,59,16647,768,59,97,98,99,100,115,6591,6592,6596,6602,6613,6617,25129,110,100,59,27204,114,99,117,112,59,27209,256,97,117,6607,6610,112,59,27211,112,59,27207,111,116,59,27200,59,49152,8745,65024,256,101,111,6626,6629,116,59,24641,238,1683,512,97,101,105,117,6640,6651,6657,6661,496,6645,0,6648,115,59,27213,111,110,59,16653,100,105,108,32827,231,16615,114,99,59,16649,112,115,256,59,115,6668,6669,27212,109,59,27216,111,116,59,16651,384,100,109,110,6683,6688,6694,105,108,32955,184,429,112,116,121,118,59,27058,116,33024,162,59,101,6701,6702,16546,114,228,434,114,59,49152,55349,56608,384,99,101,105,6717,6720,6733,121,59,17479,99,107,256,59,109,6727,6728,26387,97,114,107,187,6728,59,17351,114,896,59,69,99,101,102,109,115,6751,6752,6754,6763,6820,6826,6830,26059,59,27075,384,59,101,108,6761,6762,6765,17094,113,59,25175,101,609,6772,0,0,6792,114,114,111,119,256,108,114,6780,6785,101,102,116,59,25018,105,103,104,116,59,25019,640,82,83,97,99,100,6802,6804,6806,6810,6815,187,3911,59,25800,115,116,59,25243,105,114,99,59,25242,97,115,104,59,25245,110,105,110,116,59,27152,105,100,59,27375,99,105,114,59,27074,117,98,115,256,59,117,6843,6844,26211,105,116,187,6844,748,6855,6868,6906,0,6922,111,110,256,59,101,6861,6862,16442,256,59,113,199,198,621,6873,0,0,6882,97,256,59,116,6878,6879,16428,59,16448,384,59,102,108,6888,6889,6891,25089,238,4448,101,256,109,120,6897,6902,101,110,116,187,6889,101,243,589,487,6910,0,6919,256,59,100,4795,6914,111,116,59,27245,110,244,582,384,102,114,121,6928,6932,6935,59,49152,55349,56660,111,228,596,33024,169,59,115,341,6941,114,59,24855,256,97,111,6949,6953,114,114,59,25013,115,115,59,26391,256,99,117,6962,6967,114,59,49152,55349,56504,256,98,112,6972,6980,256,59,101,6977,6978,27343,59,27345,256,59,101,6985,6986,27344,59,27346,100,111,116,59,25327,896,100,101,108,112,114,118,119,7008,7020,7031,7042,7084,7124,7161,97,114,114,256,108,114,7016,7018,59,26936,59,26933,624,7026,0,0,7029,114,59,25310,99,59,25311,97,114,114,256,59,112,7039,7040,25014,59,26941,768,59,98,99,100,111,115,7055,7056,7062,7073,7077,7080,25130,114,99,97,112,59,27208,256,97,117,7067,7070,112,59,27206,112,59,27210,111,116,59,25229,114,59,27205,59,49152,8746,65024,512,97,108,114,118,7093,7103,7134,7139,114,114,256,59,109,7100,7101,25015,59,26940,121,384,101,118,119,7111,7124,7128,113,624,7118,0,0,7122,114,101,227,7027,117,227,7029,101,101,59,25294,101,100,103,101,59,25295,101,110,32827,164,16548,101,97,114,114,111,119,256,108,114,7150,7155,101,102,116,187,7040,105,103,104,116,187,7101,101,228,7133,256,99,105,7169,7175,111,110,105,110,244,503,110,116,59,25137,108,99,116,121,59,25389,2432,65,72,97,98,99,100,101,102,104,105,106,108,111,114,115,116,117,119,122,7224,7227,7231,7261,7273,7285,7306,7326,7340,7351,7419,7423,7437,7547,7569,7595,7611,7622,7629,114,242,897,97,114,59,26981,512,103,108,114,115,7240,7245,7250,7252,103,101,114,59,24608,101,116,104,59,24888,242,4403,104,256,59,118,7258,7259,24592,187,2314,363,7265,7271,97,114,111,119,59,26895,97,227,789,256,97,121,7278,7283,114,111,110,59,16655,59,17460,384,59,97,111,818,7292,7300,256,103,114,703,7297,114,59,25034,116,115,101,113,59,27255,384,103,108,109,7313,7316,7320,32827,176,16560,116,97,59,17332,112,116,121,118,59,27057,256,105,114,7331,7336,115,104,116,59,27007,59,49152,55349,56609,97,114,256,108,114,7347,7349,187,2268,187,4126,640,97,101,103,115,118,7362,888,7382,7388,7392,109,384,59,111,115,806,7370,7380,110,100,256,59,115,806,7377,117,105,116,59,26214,97,109,109,97,59,17373,105,110,59,25330,384,59,105,111,7399,7400,7416,16631,100,101,33024,247,59,111,7399,7408,110,116,105,109,101,115,59,25287,110,248,7415,99,121,59,17490,99,623,7430,0,0,7434,114,110,59,25374,111,112,59,25357,640,108,112,116,117,119,7448,7453,7458,7497,7509,108,97,114,59,16420,102,59,49152,55349,56661,640,59,101,109,112,115,779,7469,7479,7485,7490,113,256,59,100,850,7475,111,116,59,25169,105,110,117,115,59,25144,108,117,115,59,25108,113,117,97,114,101,59,25249,98,108,101,98,97,114,119,101,100,103,229,250,110,384,97,100,104,4398,7517,7527,111,119,110,97,114,114,111,119,243,7299,97,114,112,111,111,110,256,108,114,7538,7542,101,102,244,7348,105,103,104,244,7350,354,7551,7557,107,97,114,111,247,3906,623,7562,0,0,7566,114,110,59,25375,111,112,59,25356,384,99,111,116,7576,7587,7590,256,114,121,7581,7585,59,49152,55349,56505,59,17493,108,59,27126,114,111,107,59,16657,256,100,114,7600,7604,111,116,59,25329,105,256,59,102,7610,6166,26047,256,97,104,7616,7619,114,242,1065,97,242,4006,97,110,103,108,101,59,27046,256,99,105,7634,7637,121,59,17503,103,114,97,114,114,59,26623,2304,68,97,99,100,101,102,103,108,109,110,111,112,113,114,115,116,117,120,7681,7689,7705,7736,1400,7740,7753,7777,7806,7845,7855,7869,7905,7978,7991,8004,8014,8026,256,68,111,7686,7476,111,244,7305,256,99,115,7694,7700,117,116,101,32827,233,16617,116,101,114,59,27246,512,97,105,111,121,7714,7719,7729,7734,114,111,110,59,16667,114,256,59,99,7725,7726,25174,32827,234,16618,108,111,110,59,25173,59,17485,111,116,59,16663,256,68,114,7745,7749,111,116,59,25170,59,49152,55349,56610,384,59,114,115,7760,7761,7767,27290,97,118,101,32827,232,16616,256,59,100,7772,7773,27286,111,116,59,27288,512,59,105,108,115,7786,7787,7794,7796,27289,110,116,101,114,115,59,25575,59,24851,256,59,100,7801,7802,27285,111,116,59,27287,384,97,112,115,7813,7817,7831,99,114,59,16659,116,121,384,59,115,118,7826,7827,7829,25093,101,116,187,7827,112,256,49,59,7837,7844,307,7841,7843,59,24580,59,24581,24579,256,103,115,7850,7852,59,16715,112,59,24578,256,103,112,7860,7864,111,110,59,16665,102,59,49152,55349,56662,384,97,108,115,7876,7886,7890,114,256,59,115,7882,7883,25301,108,59,27107,117,115,59,27249,105,384,59,108,118,7898,7899,7903,17333,111,110,187,7899,59,17397,512,99,115,117,118,7914,7923,7947,7971,256,105,111,7919,7729,114,99,187,7726,617,7929,0,0,7931,237,1352,97,110,116,256,103,108,7938,7942,116,114,187,7773,101,115,115,187,7802,384,97,101,105,7954,7958,7962,108,115,59,16445,115,116,59,25183,118,256,59,68,565,7968,68,59,27256,112,97,114,115,108,59,27109,256,68,97,7983,7987,111,116,59,25171,114,114,59,26993,384,99,100,105,7998,8001,7928,114,59,24879,111,244,850,256,97,104,8009,8011,59,17335,32827,240,16624,256,109,114,8019,8023,108,32827,235,16619,111,59,24748,384,99,105,112,8033,8036,8039,108,59,16417,115,244,1390,256,101,111,8044,8052,99,116,97,116,105,111,238,1369,110,101,110,116,105,97,108,229,1401,2529,8082,0,8094,0,8097,8103,0,0,8134,8140,0,8147,0,8166,8170,8192,0,8200,8282,108,108,105,110,103,100,111,116,115,101,241,7748,121,59,17476,109,97,108,101,59,26176,384,105,108,114,8109,8115,8129,108,105,103,59,32768,64259,617,8121,0,0,8125,103,59,32768,64256,105,103,59,32768,64260,59,49152,55349,56611,108,105,103,59,32768,64257,108,105,103,59,49152,102,106,384,97,108,116,8153,8156,8161,116,59,26221,105,103,59,32768,64258,110,115,59,26033,111,102,59,16786,496,8174,0,8179,102,59,49152,55349,56663,256,97,107,1471,8183,256,59,118,8188,8189,25300,59,27353,97,114,116,105,110,116,59,27149,256,97,111,8204,8277,256,99,115,8209,8274,945,8218,8240,8248,8261,8264,0,8272,946,8226,8229,8231,8234,8236,0,8238,32827,189,16573,59,24915,32827,188,16572,59,24917,59,24921,59,24923,435,8244,0,8246,59,24916,59,24918,692,8254,8257,0,0,8259,32827,190,16574,59,24919,59,24924,53,59,24920,438,8268,0,8270,59,24922,59,24925,56,59,24926,108,59,24644,119,110,59,25378,99,114,59,49152,55349,56507,2176,69,97,98,99,100,101,102,103,105,106,108,110,111,114,115,116,118,8322,8329,8351,8357,8368,8372,8432,8437,8442,8447,8451,8466,8504,791,8510,8530,8606,256,59,108,1613,8327,59,27276,384,99,109,112,8336,8341,8349,117,116,101,59,16885,109,97,256,59,100,8348,7386,17331,59,27270,114,101,118,101,59,16671,256,105,121,8362,8366,114,99,59,16669,59,17459,111,116,59,16673,512,59,108,113,115,1598,1602,8381,8393,384,59,113,115,1598,1612,8388,108,97,110,244,1637,512,59,99,100,108,1637,8402,8405,8421,99,59,27305,111,116,256,59,111,8412,8413,27264,256,59,108,8418,8419,27266,59,27268,256,59,101,8426,8429,49152,8923,65024,115,59,27284,114,59,49152,55349,56612,256,59,103,1651,1563,109,101,108,59,24887,99,121,59,17491,512,59,69,97,106,1626,8460,8462,8464,59,27282,59,27301,59,27300,512,69,97,101,115,8475,8477,8489,8500,59,25193,112,256,59,112,8483,8484,27274,114,111,120,187,8484,256,59,113,8494,8495,27272,256,59,113,8494,8475,105,109,59,25319,112,102,59,49152,55349,56664,256,99,105,8515,8518,114,59,24842,109,384,59,101,108,1643,8526,8528,59,27278,59,27280,33536,62,59,99,100,108,113,114,1518,8544,8554,8558,8563,8569,256,99,105,8549,8551,59,27303,114,59,27258,111,116,59,25303,80,97,114,59,27029,117,101,115,116,59,27260,640,97,100,101,108,115,8580,8554,8592,1622,8603,496,8585,0,8590,112,114,111,248,8350,114,59,27000,113,256,108,113,1599,8598,108,101,115,243,8328,105,237,1643,256,101,110,8611,8621,114,116,110,101,113,113,59,49152,8809,65024,197,8618,1280,65,97,98,99,101,102,107,111,115,121,8644,8647,8689,8693,8698,8728,8733,8751,8808,8829,114,242,928,512,105,108,109,114,8656,8660,8663,8667,114,115,240,5252,102,187,8228,105,108,244,1705,256,100,114,8672,8676,99,121,59,17482,384,59,99,119,2292,8683,8687,105,114,59,26952,59,25005,97,114,59,24847,105,114,99,59,16677,384,97,108,114,8705,8718,8723,114,116,115,256,59,117,8713,8714,26213,105,116,187,8714,108,105,112,59,24614,99,111,110,59,25273,114,59,49152,55349,56613,115,256,101,119,8739,8745,97,114,111,119,59,26917,97,114,111,119,59,26918,640,97,109,111,112,114,8762,8766,8771,8798,8803,114,114,59,25087,116,104,116,59,25147,107,256,108,114,8777,8787,101,102,116,97,114,114,111,119,59,25001,105,103,104,116,97,114,114,111,119,59,25002,102,59,49152,55349,56665,98,97,114,59,24597,384,99,108,116,8815,8820,8824,114,59,49152,55349,56509,97,115,232,8692,114,111,107,59,16679,256,98,112,8834,8839,117,108,108,59,24643,104,101,110,187,7259,2785,8867,0,8874,0,8888,8901,8910,0,8917,8947,0,0,8952,8994,9063,9058,9087,0,9094,9130,9140,99,117,116,101,32827,237,16621,384,59,105,121,1905,8880,8885,114,99,32827,238,16622,59,17464,256,99,120,8892,8895,121,59,17461,99,108,32827,161,16545,256,102,114,927,8905,59,49152,55349,56614,114,97,118,101,32827,236,16620,512,59,105,110,111,1854,8925,8937,8942,256,105,110,8930,8934,110,116,59,27148,116,59,25133,102,105,110,59,27100,116,97,59,24873,108,105,103,59,16691,384,97,111,112,8958,8986,8989,384,99,103,116,8965,8968,8983,114,59,16683,384,101,108,112,1823,8975,8979,105,110,229,1934,97,114,244,1824,104,59,16689,102,59,25271,101,100,59,16821,640,59,99,102,111,116,1268,9004,9009,9021,9025,97,114,101,59,24837,105,110,256,59,116,9016,9017,25118,105,101,59,27101,100,111,244,8985,640,59,99,101,108,112,1879,9036,9040,9051,9057,97,108,59,25274,256,103,114,9045,9049,101,114,243,5475,227,9037,97,114,104,107,59,27159,114,111,100,59,27196,512,99,103,112,116,9071,9074,9078,9083,121,59,17489,111,110,59,16687,102,59,49152,55349,56666,97,59,17337,117,101,115,116,32827,191,16575,256,99,105,9098,9103,114,59,49152,55349,56510,110,640,59,69,100,115,118,1268,9115,9117,9121,1267,59,25337,111,116,59,25333,256,59,118,9126,9127,25332,59,25331,256,59,105,1911,9134,108,100,101,59,16681,491,9144,0,9148,99,121,59,17494,108,32827,239,16623,768,99,102,109,111,115,117,9164,9175,9180,9185,9191,9205,256,105,121,9169,9173,114,99,59,16693,59,17465,114,59,49152,55349,56615,97,116,104,59,16951,112,102,59,49152,55349,56667,483,9196,0,9201,114,59,49152,55349,56511,114,99,121,59,17496,107,99,121,59,17492,1024,97,99,102,103,104,106,111,115,9227,9238,9250,9255,9261,9265,9269,9275,112,112,97,256,59,118,9235,9236,17338,59,17392,256,101,121,9243,9248,100,105,108,59,16695,59,17466,114,59,49152,55349,56616,114,101,101,110,59,16696,99,121,59,17477,99,121,59,17500,112,102,59,49152,55349,56668,99,114,59,49152,55349,56512,2944,65,66,69,72,97,98,99,100,101,102,103,104,106,108,109,110,111,112,114,115,116,117,118,9328,9345,9350,9357,9361,9486,9533,9562,9600,9806,9822,9829,9849,9853,9882,9906,9944,10077,10088,10123,10176,10241,10258,384,97,114,116,9335,9338,9340,114,242,2502,242,917,97,105,108,59,26907,97,114,114,59,26894,256,59,103,2452,9355,59,27275,97,114,59,26978,2403,9381,0,9386,0,9393,0,0,0,0,0,9397,9402,0,9414,9416,9421,0,9465,117,116,101,59,16698,109,112,116,121,118,59,27060,114,97,238,2124,98,100,97,59,17339,103,384,59,100,108,2190,9409,9411,59,27025,229,2190,59,27269,117,111,32827,171,16555,114,1024,59,98,102,104,108,112,115,116,2201,9438,9446,9449,9451,9454,9457,9461,256,59,102,2205,9443,115,59,26911,115,59,26909,235,8786,112,59,25003,108,59,26937,105,109,59,26995,108,59,24994,384,59,97,101,9471,9472,9476,27307,105,108,59,26905,256,59,115,9481,9482,27309,59,49152,10925,65024,384,97,98,114,9493,9497,9501,114,114,59,26892,114,107,59,26482,256,97,107,9506,9516,99,256,101,107,9512,9514,59,16507,59,16475,256,101,115,9521,9523,59,27019,108,256,100,117,9529,9531,59,27023,59,27021,512,97,101,117,121,9542,9547,9558,9560,114,111,110,59,16702,256,100,105,9552,9556,105,108,59,16700,236,2224,226,9513,59,17467,512,99,113,114,115,9571,9574,9581,9597,97,59,26934,117,111,256,59,114,3609,5958,256,100,117,9586,9591,104,97,114,59,26983,115,104,97,114,59,26955,104,59,25010,640,59,102,103,113,115,9611,9612,2441,9715,9727,25188,116,640,97,104,108,114,116,9624,9636,9655,9666,9704,114,114,111,119,256,59,116,2201,9633,97,233,9462,97,114,112,111,111,110,256,100,117,9647,9652,111,119,110,187,1114,112,187,2406,101,102,116,97,114,114,111,119,115,59,25031,105,103,104,116,384,97,104,115,9677,9686,9694,114,114,111,119,256,59,115,2292,2215,97,114,112,111,111,110,243,3992,113,117,105,103,97,114,114,111,247,8688,104,114,101,101,116,105,109,101,115,59,25291,384,59,113,115,9611,2451,9722,108,97,110,244,2476,640,59,99,100,103,115,2476,9738,9741,9757,9768,99,59,27304,111,116,256,59,111,9748,9749,27263,256,59,114,9754,9755,27265,59,27267,256,59,101,9762,9765,49152,8922,65024,115,59,27283,640,97,100,101,103,115,9779,9785,9789,9801,9803,112,112,114,111,248,9414,111,116,59,25302,113,256,103,113,9795,9797,244,2441,103,116,242,9356,244,2459,105,237,2482,384,105,108,114,9813,2273,9818,115,104,116,59,27004,59,49152,55349,56617,256,59,69,2460,9827,59,27281,353,9833,9846,114,256,100,117,9650,9838,256,59,108,2405,9843,59,26986,108,107,59,25988,99,121,59,17497,640,59,97,99,104,116,2632,9864,9867,9873,9878,114,242,9665,111,114,110,101,242,7432,97,114,100,59,26987,114,105,59,26106,256,105,111,9887,9892,100,111,116,59,16704,117,115,116,256,59,97,9900,9901,25520,99,104,101,187,9901,512,69,97,101,115,9915,9917,9929,9940,59,25192,112,256,59,112,9923,9924,27273,114,111,120,187,9924,256,59,113,9934,9935,27271,256,59,113,9934,9915,105,109,59,25318,1024,97,98,110,111,112,116,119,122,9961,9972,9975,10010,10031,10049,10055,10064,256,110,114,9966,9969,103,59,26604,114,59,25085,114,235,2241,103,384,108,109,114,9983,9997,10004,101,102,116,256,97,114,2534,9991,105,103,104,116,225,2546,97,112,115,116,111,59,26620,105,103,104,116,225,2557,112,97,114,114,111,119,256,108,114,10021,10025,101,102,244,9453,105,103,104,116,59,25004,384,97,102,108,10038,10041,10045,114,59,27013,59,49152,55349,56669,117,115,59,27181,105,109,101,115,59,27188,353,10059,10063,115,116,59,25111,225,4942,384,59,101,102,10071,10072,6144,26058,110,103,101,187,10072,97,114,256,59,108,10084,10085,16424,116,59,27027,640,97,99,104,109,116,10099,10102,10108,10117,10119,114,242,2216,111,114,110,101,242,7564,97,114,256,59,100,3992,10115,59,26989,59,24590,114,105,59,25279,768,97,99,104,105,113,116,10136,10141,2624,10146,10158,10171,113,117,111,59,24633,114,59,49152,55349,56513,109,384,59,101,103,2482,10154,10156,59,27277,59,27279,256,98,117,9514,10163,111,256,59,114,3615,10169,59,24602,114,111,107,59,16706,33792,60,59,99,100,104,105,108,113,114,2091,10194,9785,10204,10208,10213,10218,10224,256,99,105,10199,10201,59,27302,114,59,27257,114,101,229,9714,109,101,115,59,25289,97,114,114,59,26998,117,101,115,116,59,27259,256,80,105,10229,10233,97,114,59,27030,384,59,101,102,10240,2349,6171,26051,114,256,100,117,10247,10253,115,104,97,114,59,26954,104,97,114,59,26982,256,101,110,10263,10273,114,116,110,101,113,113,59,49152,8808,65024,197,10270,1792,68,97,99,100,101,102,104,105,108,110,111,112,115,117,10304,10309,10370,10382,10387,10400,10405,10408,10458,10466,10468,2691,10483,10498,68,111,116,59,25146,512,99,108,112,114,10318,10322,10339,10365,114,32827,175,16559,256,101,116,10327,10329,59,26178,256,59,101,10334,10335,26400,115,101,187,10335,256,59,115,4155,10344,116,111,512,59,100,108,117,4155,10355,10359,10363,111,119,238,1164,101,102,244,2319,240,5073,107,101,114,59,26030,256,111,121,10375,10380,109,109,97,59,27177,59,17468,97,115,104,59,24596,97,115,117,114,101,100,97,110,103,108,101,187,5670,114,59,49152,55349,56618,111,59,24871,384,99,100,110,10415,10420,10441,114,111,32827,181,16565,512,59,97,99,100,5220,10429,10432,10436,115,244,5799,105,114,59,27376,111,116,32955,183,437,117,115,384,59,98,100,10450,6403,10451,25106,256,59,117,7484,10456,59,27178,355,10462,10465,112,59,27355,242,8722,240,2689,256,100,112,10473,10478,101,108,115,59,25255,102,59,49152,55349,56670,256,99,116,10488,10493,114,59,49152,55349,56514,112,111,115,187,5533,384,59,108,109,10505,10506,10509,17340,116,105,109,97,112,59,25272,3072,71,76,82,86,97,98,99,100,101,102,103,104,105,106,108,109,111,112,114,115,116,117,118,119,10562,10579,10622,10633,10648,10714,10729,10773,10778,10840,10845,10883,10901,10916,10920,11012,11015,11076,11135,11182,11316,11367,11388,11497,256,103,116,10567,10571,59,49152,8921,824,256,59,118,10576,3023,49152,8811,8402,384,101,108,116,10586,10610,10614,102,116,256,97,114,10593,10599,114,114,111,119,59,25037,105,103,104,116,97,114,114,111,119,59,25038,59,49152,8920,824,256,59,118,10619,3143,49152,8810,8402,105,103,104,116,97,114,114,111,119,59,25039,256,68,100,10638,10643,97,115,104,59,25263,97,115,104,59,25262,640,98,99,110,112,116,10659,10663,10668,10673,10700,108,97,187,734,117,116,101,59,16708,103,59,49152,8736,8402,640,59,69,105,111,112,3460,10684,10688,10693,10696,59,49152,10864,824,100,59,49152,8779,824,115,59,16713,114,111,248,3460,117,114,256,59,97,10707,10708,26222,108,256,59,115,10707,2872,499,10719,0,10723,112,32955,160,2871,109,112,256,59,101,3065,3072,640,97,101,111,117,121,10740,10750,10755,10768,10771,496,10745,0,10747,59,27203,111,110,59,16712,100,105,108,59,16710,110,103,256,59,100,3454,10762,111,116,59,49152,10861,824,112,59,27202,59,17469,97,115,104,59,24595,896,59,65,97,100,113,115,120,2962,10793,10797,10811,10817,10821,10832,114,114,59,25047,114,256,104,114,10803,10806,107,59,26916,256,59,111,5106,5104,111,116,59,49152,8784,824,117,105,246,2915,256,101,105,10826,10830,97,114,59,26920,237,2968,105,115,116,256,59,115,2976,2975,114,59,49152,55349,56619,512,69,101,115,116,3013,10854,10873,10876,384,59,113,115,3004,10861,3041,384,59,113,115,3004,3013,10868,108,97,110,244,3042,105,237,3050,256,59,114,2998,10881,187,2999,384,65,97,112,10890,10893,10897,114,242,10609,114,114,59,25006,97,114,59,27378,384,59,115,118,3981,10908,3980,256,59,100,10913,10914,25340,59,25338,99,121,59,17498,896,65,69,97,100,101,115,116,10935,10938,10942,10946,10949,10998,11001,114,242,10598,59,49152,8806,824,114,114,59,24986,114,59,24613,512,59,102,113,115,3131,10958,10979,10991,116,256,97,114,10964,10969,114,114,111,247,10945,105,103,104,116,97,114,114,111,247,10896,384,59,113,115,3131,10938,10986,108,97,110,244,3157,256,59,115,3157,10996,187,3126,105,237,3165,256,59,114,3125,11006,105,256,59,101,3098,3109,105,228,3472,256,112,116,11020,11025,102,59,49152,55349,56671,33152,172,59,105,110,11033,11034,11062,16556,110,512,59,69,100,118,2953,11044,11048,11054,59,49152,8953,824,111,116,59,49152,8949,824,481,2953,11059,11061,59,25335,59,25334,105,256,59,118,3256,11068,481,3256,11073,11075,59,25342,59,25341,384,97,111,114,11083,11107,11113,114,512,59,97,115,116,2939,11093,11098,11103,108,108,101,236,2939,108,59,49152,11005,8421,59,49152,8706,824,108,105,110,116,59,27156,384,59,99,101,3218,11120,11123,117,229,3237,256,59,99,3224,11128,256,59,101,3218,11133,241,3224,512,65,97,105,116,11144,11147,11165,11175,114,242,10632,114,114,384,59,99,119,11156,11157,11161,24987,59,49152,10547,824,59,49152,8605,824,103,104,116,97,114,114,111,119,187,11157,114,105,256,59,101,3275,3286,896,99,104,105,109,112,113,117,11197,11213,11225,11012,2936,11236,11247,512,59,99,101,114,3378,11206,3383,11209,117,229,3397,59,49152,55349,56515,111,114,116,621,11013,0,0,11222,97,114,225,11094,109,256,59,101,3438,11231,256,59,113,3444,3443,115,117,256,98,112,11243,11245,229,3320,229,3339,384,98,99,112,11254,11281,11289,512,59,69,101,115,11263,11264,3362,11268,25220,59,49152,10949,824,101,116,256,59,101,3355,11275,113,256,59,113,3363,11264,99,256,59,101,3378,11287,241,3384,512,59,69,101,115,11298,11299,3423,11303,25221,59,49152,10950,824,101,116,256,59,101,3416,11310,113,256,59,113,3424,11299,512,103,105,108,114,11325,11327,11333,11335,236,3031,108,100,101,32827,241,16625,231,3139,105,97,110,103,108,101,256,108,114,11346,11356,101,102,116,256,59,101,3098,11354,241,3110,105,103,104,116,256,59,101,3275,11365,241,3287,256,59,109,11372,11373,17341,384,59,101,115,11380,11381,11385,16419,114,111,59,24854,112,59,24583,1152,68,72,97,100,103,105,108,114,115,11407,11412,11417,11422,11427,11440,11446,11475,11491,97,115,104,59,25261,97,114,114,59,26884,112,59,49152,8781,8402,97,115,104,59,25260,256,101,116,11432,11436,59,49152,8805,8402,59,49152,62,8402,110,102,105,110,59,27102,384,65,101,116,11453,11457,11461,114,114,59,26882,59,49152,8804,8402,256,59,114,11466,11469,49152,60,8402,105,101,59,49152,8884,8402,256,65,116,11480,11484,114,114,59,26883,114,105,101,59,49152,8885,8402,105,109,59,49152,8764,8402,384,65,97,110,11504,11508,11522,114,114,59,25046,114,256,104,114,11514,11517,107,59,26915,256,59,111,5095,5093,101,97,114,59,26919,4691,6805,0,0,0,0,0,0,0,0,0,0,0,0,0,11565,0,11576,11592,11616,11621,11634,11652,6919,0,0,11661,11691,0,11720,11726,0,11740,11801,11819,11838,11843,256,99,115,11569,6807,117,116,101,32827,243,16627,256,105,121,11580,11589,114,256,59,99,6814,11586,32827,244,16628,59,17470,640,97,98,105,111,115,6816,11602,11607,456,11610,108,97,99,59,16721,118,59,27192,111,108,100,59,27068,108,105,103,59,16723,256,99,114,11625,11629,105,114,59,27071,59,49152,55349,56620,879,11641,0,0,11644,0,11650,110,59,17115,97,118,101,32827,242,16626,59,27073,256,98,109,11656,3572,97,114,59,27061,512,97,99,105,116,11669,11672,11685,11688,114,242,6784,256,105,114,11677,11680,114,59,27070,111,115,115,59,27067,110,229,3666,59,27072,384,97,101,105,11697,11701,11705,99,114,59,16717,103,97,59,17353,384,99,100,110,11712,11717,461,114,111,110,59,17343,59,27062,112,102,59,49152,55349,56672,384,97,101,108,11732,11735,466,114,59,27063,114,112,59,27065,896,59,97,100,105,111,115,118,11754,11755,11758,11784,11789,11792,11798,25128,114,242,6790,512,59,101,102,109,11767,11768,11778,11781,27229,114,256,59,111,11774,11775,24884,102,187,11775,32827,170,16554,32827,186,16570,103,111,102,59,25270,114,59,27222,108,111,112,101,59,27223,59,27227,384,99,108,111,11807,11809,11815,242,11777,97,115,104,32827,248,16632,108,59,25240,105,364,11823,11828,100,101,32827,245,16629,101,115,256,59,97,475,11834,115,59,27190,109,108,32827,246,16630,98,97,114,59,25405,2785,11870,0,11901,0,11904,11933,0,11938,11961,0,0,11979,3740,0,12051,0,0,12075,12220,0,12232,114,512,59,97,115,116,1027,11879,11890,3717,33024,182,59,108,11885,11886,16566,108,101,236,1027,617,11896,0,0,11899,109,59,27379,59,27389,121,59,17471,114,640,99,105,109,112,116,11915,11919,11923,6245,11927,110,116,59,16421,111,100,59,16430,105,108,59,24624,101,110,107,59,24625,114,59,49152,55349,56621,384,105,109,111,11944,11952,11956,256,59,118,11949,11950,17350,59,17365,109,97,244,2678,110,101,59,26126,384,59,116,118,11967,11968,11976,17344,99,104,102,111,114,107,187,8189,59,17366,256,97,117,11983,11999,110,256,99,107,11989,11997,107,256,59,104,8692,11995,59,24846,246,8692,115,1152,59,97,98,99,100,101,109,115,116,12019,12020,6408,12025,12029,12036,12038,12042,12046,16427,99,105,114,59,27171,105,114,59,27170,256,111,117,7488,12034,59,27173,59,27250,110,32955,177,3741,105,109,59,27174,119,111,59,27175,384,105,112,117,12057,12064,12069,110,116,105,110,116,59,27157,102,59,49152,55349,56673,110,100,32827,163,16547,1280,59,69,97,99,101,105,110,111,115,117,3784,12095,12097,12100,12103,12161,12169,12178,12158,12214,59,27315,112,59,27319,117,229,3801,256,59,99,3790,12108,768,59,97,99,101,110,115,3784,12121,12127,12134,12136,12158,112,112,114,111,248,12099,117,114,108,121,101,241,3801,241,3790,384,97,101,115,12143,12150,12154,112,112,114,111,120,59,27321,113,113,59,27317,105,109,59,25320,105,237,3807,109,101,256,59,115,12168,3758,24626,384,69,97,115,12152,12176,12154,240,12149,384,100,102,112,3820,12185,12207,384,97,108,115,12192,12197,12202,108,97,114,59,25390,105,110,101,59,25362,117,114,102,59,25363,256,59,116,3835,12212,239,3835,114,101,108,59,25264,256,99,105,12224,12229,114,59,49152,55349,56517,59,17352,110,99,115,112,59,24584,768,102,105,111,112,115,117,12250,8930,12255,12261,12267,12273,114,59,49152,55349,56622,112,102,59,49152,55349,56674,114,105,109,101,59,24663,99,114,59,49152,55349,56518,384,97,101,111,12280,12297,12307,116,256,101,105,12286,12293,114,110,105,111,110,243,1712,110,116,59,27158,115,116,256,59,101,12304,12305,16447,241,7961,244,3860,2688,65,66,72,97,98,99,100,101,102,104,105,108,109,110,111,112,114,115,116,117,120,12352,12369,12373,12377,12512,12558,12587,12615,12642,12658,12686,12806,12821,12836,12841,12888,12910,12914,12944,12976,12983,384,97,114,116,12359,12362,12364,114,242,4275,242,989,97,105,108,59,26908,97,114,242,7269,97,114,59,26980,896,99,100,101,110,113,114,116,12392,12405,12408,12415,12431,12436,12492,256,101,117,12397,12401,59,49152,8765,817,116,101,59,16725,105,227,4462,109,112,116,121,118,59,27059,103,512,59,100,101,108,4049,12425,12427,12429,59,27026,59,27045,229,4049,117,111,32827,187,16571,114,1408,59,97,98,99,102,104,108,112,115,116,119,4060,12460,12463,12471,12473,12476,12478,12480,12483,12487,12490,112,59,26997,256,59,102,4064,12468,115,59,26912,59,26931,115,59,26910,235,8797,240,10030,108,59,26949,105,109,59,26996,108,59,24995,59,24989,256,97,105,12497,12501,105,108,59,26906,111,256,59,110,12507,12508,25142,97,108,243,3870,384,97,98,114,12519,12522,12526,114,242,6117,114,107,59,26483,256,97,107,12531,12541,99,256,101,107,12537,12539,59,16509,59,16477,256,101,115,12546,12548,59,27020,108,256,100,117,12554,12556,59,27022,59,27024,512,97,101,117,121,12567,12572,12583,12585,114,111,110,59,16729,256,100,105,12577,12581,105,108,59,16727,236,4082,226,12538,59,17472,512,99,108,113,115,12596,12599,12605,12612,97,59,26935,100,104,97,114,59,26985,117,111,256,59,114,526,525,104,59,25011,384,97,99,103,12622,12639,3908,108,512,59,105,112,115,3960,12632,12635,4252,110,229,4283,97,114,244,4009,116,59,26029,384,105,108,114,12649,4131,12654,115,104,116,59,27005,59,49152,55349,56623,256,97,111,12663,12678,114,256,100,117,12669,12671,187,1147,256,59,108,4241,12676,59,26988,256,59,118,12683,12684,17345,59,17393,384,103,110,115,12693,12793,12796,104,116,768,97,104,108,114,115,116,12708,12720,12738,12760,12772,12782,114,114,111,119,256,59,116,4060,12717,97,233,12488,97,114,112,111,111,110,256,100,117,12731,12735,111,119,238,12670,112,187,4242,101,102,116,256,97,104,12746,12752,114,114,111,119,243,4074,97,114,112,111,111,110,243,1361,105,103,104,116,97,114,114,111,119,115,59,25033,113,117,105,103,97,114,114,111,247,12491,104,114,101,101,116,105,109,101,115,59,25292,103,59,17114,105,110,103,100,111,116,115,101,241,7986,384,97,104,109,12813,12816,12819,114,242,4074,97,242,1361,59,24591,111,117,115,116,256,59,97,12830,12831,25521,99,104,101,187,12831,109,105,100,59,27374,512,97,98,112,116,12850,12861,12864,12882,256,110,114,12855,12858,103,59,26605,114,59,25086,114,235,4099,384,97,102,108,12871,12874,12878,114,59,27014,59,49152,55349,56675,117,115,59,27182,105,109,101,115,59,27189,256,97,112,12893,12903,114,256,59,103,12899,12900,16425,116,59,27028,111,108,105,110,116,59,27154,97,114,242,12771,512,97,99,104,113,12923,12928,4284,12933,113,117,111,59,24634,114,59,49152,55349,56519,256,98,117,12539,12938,111,256,59,114,532,531,384,104,105,114,12951,12955,12960,114,101,229,12792,109,101,115,59,25290,105,512,59,101,102,108,12970,4185,6177,12971,26041,116,114,105,59,27086,108,117,104,97,114,59,26984,59,24862,3425,13013,13019,13023,13100,13112,13169,0,13178,13220,0,0,13292,13296,0,13352,13384,13402,13485,13489,13514,13553,0,13846,0,0,13875,99,117,116,101,59,16731,113,117,239,10170,1280,59,69,97,99,101,105,110,112,115,121,4589,13043,13045,13055,13058,13067,13071,13087,13094,13097,59,27316,496,13050,0,13052,59,27320,111,110,59,16737,117,229,4606,256,59,100,4595,13063,105,108,59,16735,114,99,59,16733,384,69,97,115,13078,13080,13083,59,27318,112,59,27322,105,109,59,25321,111,108,105,110,116,59,27155,105,237,4612,59,17473,111,116,384,59,98,101,13108,7495,13109,25285,59,27238,896,65,97,99,109,115,116,120,13126,13130,13143,13147,13150,13155,13165,114,114,59,25048,114,256,104,114,13136,13138,235,8744,256,59,111,2614,2612,116,32827,167,16551,105,59,16443,119,97,114,59,26921,109,256,105,110,13161,240,110,117,243,241,116,59,26422,114,256,59,111,13174,8277,49152,55349,56624,512,97,99,111,121,13186,13190,13201,13216,114,112,59,26223,256,104,121,13195,13199,99,121,59,17481,59,17480,114,116,621,13209,0,0,13212,105,228,5220,97,114,97,236,11887,32827,173,16557,256,103,109,13224,13236,109,97,384,59,102,118,13233,13234,13234,17347,59,17346,1024,59,100,101,103,108,110,112,114,4779,13253,13257,13262,13270,13278,13281,13286,111,116,59,27242,256,59,113,4785,4784,256,59,69,13267,13268,27294,59,27296,256,59,69,13275,13276,27293,59,27295,101,59,25158,108,117,115,59,27172,97,114,114,59,26994,97,114,242,4413,512,97,101,105,116,13304,13320,13327,13335,256,108,115,13309,13316,108,115,101,116,109,233,13162,104,112,59,27187,112,97,114,115,108,59,27108,256,100,108,5219,13332,101,59,25379,256,59,101,13340,13341,27306,256,59,115,13346,13347,27308,59,49152,10924,65024,384,102,108,112,13358,13363,13378,116,99,121,59,17484,256,59,98,13368,13369,16431,256,59,97,13374,13375,27076,114,59,25407,102,59,49152,55349,56676,97,256,100,114,13389,1026,101,115,256,59,117,13396,13397,26208,105,116,187,13397,384,99,115,117,13408,13433,13471,256,97,117,13413,13423,112,256,59,115,4488,13419,59,49152,8851,65024,112,256,59,115,4532,13429,59,49152,8852,65024,117,256,98,112,13439,13455,384,59,101,115,4503,4508,13446,101,116,256,59,101,4503,13453,241,4509,384,59,101,115,4520,4525,13462,101,116,256,59,101,4520,13469,241,4526,384,59,97,102,4475,13478,1456,114,357,13483,1457,187,4476,97,114,242,4424,512,99,101,109,116,13497,13502,13506,13509,114,59,49152,55349,56520,116,109,238,241,105,236,13333,97,114,230,4542,256,97,114,13518,13525,114,256,59,102,13524,6079,26118,256,97,110,13530,13549,105,103,104,116,256,101,112,13539,13546,112,115,105,108,111,238,7904,104,233,11951,115,187,10322,640,98,99,109,110,112,13563,13662,4617,13707,13710,1152,59,69,100,101,109,110,112,114,115,13582,13583,13585,13589,13598,13603,13612,13617,13622,25218,59,27333,111,116,59,27325,256,59,100,4570,13594,111,116,59,27331,117,108,116,59,27329,256,69,101,13608,13610,59,27339,59,25226,108,117,115,59,27327,97,114,114,59,27001,384,101,105,117,13629,13650,13653,116,384,59,101,110,13582,13637,13643,113,256,59,113,4570,13583,101,113,256,59,113,13611,13608,109,59,27335,256,98,112,13658,13660,59,27349,59,27347,99,768,59,97,99,101,110,115,4589,13676,13682,13689,13691,13094,112,112,114,111,248,13050,117,114,108,121,101,241,4606,241,4595,384,97,101,115,13698,13704,13083,112,112,114,111,248,13082,113,241,13079,103,59,26218,1664,49,50,51,59,69,100,101,104,108,109,110,112,115,13737,13740,13743,4636,13746,13748,13760,13769,13781,13786,13791,13800,13805,32827,185,16569,32827,178,16562,32827,179,16563,59,27334,256,111,115,13753,13756,116,59,27326,117,98,59,27352,256,59,100,4642,13765,111,116,59,27332,115,256,111,117,13775,13778,108,59,26569,98,59,27351,97,114,114,59,27003,117,108,116,59,27330,256,69,101,13796,13798,59,27340,59,25227,108,117,115,59,27328,384,101,105,117,13812,13833,13836,116,384,59,101,110,4636,13820,13826,113,256,59,113,4642,13746,101,113,256,59,113,13799,13796,109,59,27336,256,98,112,13841,13843,59,27348,59,27350,384,65,97,110,13852,13856,13869,114,114,59,25049,114,256,104,114,13862,13864,235,8750,256,59,111,2603,2601,119,97,114,59,26922,108,105,103,32827,223,16607,3041,13905,13917,13920,4814,13939,13945,0,13950,14018,0,0,0,0,0,14043,14083,0,14089,14188,0,0,0,14215,626,13910,0,0,13915,103,101,116,59,25366,59,17348,114,235,3679,384,97,101,121,13926,13931,13936,114,111,110,59,16741,100,105,108,59,16739,59,17474,108,114,101,99,59,25365,114,59,49152,55349,56625,512,101,105,107,111,13958,13981,14005,14012,498,13963,0,13969,101,256,52,102,4740,4737,97,384,59,115,118,13976,13977,13979,17336,121,109,59,17361,256,99,110,13986,14002,107,256,97,115,13992,13998,112,112,114,111,248,4801,105,109,187,4780,115,240,4766,256,97,115,14010,13998,240,4801,114,110,32827,254,16638,492,799,14022,8935,101,115,33152,215,59,98,100,14031,14032,14040,16599,256,59,97,6415,14037,114,59,27185,59,27184,384,101,112,115,14049,14051,14080,225,10829,512,59,98,99,102,1158,14060,14064,14068,111,116,59,25398,105,114,59,27377,256,59,111,14073,14076,49152,55349,56677,114,107,59,27354,225,13154,114,105,109,101,59,24628,384,97,105,112,14095,14098,14180,100,229,4680,896,97,100,101,109,112,115,116,14113,14157,14144,14161,14167,14172,14175,110,103,108,101,640,59,100,108,113,114,14128,14129,14134,14144,14146,26037,111,119,110,187,7611,101,102,116,256,59,101,10240,14142,241,2350,59,25180,105,103,104,116,256,59,101,12970,14155,241,4186,111,116,59,26092,105,110,117,115,59,27194,108,117,115,59,27193,98,59,27085,105,109,101,59,27195,101,122,105,117,109,59,25570,384,99,104,116,14194,14205,14209,256,114,121,14199,14203,59,49152,55349,56521,59,17478,99,121,59,17499,114,111,107,59,16743,256,105,111,14219,14222,120,244,6007,104,101,97,100,256,108,114,14231,14240,101,102,116,97,114,114,111,247,2127,105,103,104,116,97,114,114,111,119,187,3933,2304,65,72,97,98,99,100,102,103,104,108,109,111,112,114,115,116,117,119,14288,14291,14295,14308,14320,14332,14350,14364,14371,14388,14417,14429,14443,14505,14540,14546,14570,14582,114,242,1005,97,114,59,26979,256,99,114,14300,14306,117,116,101,32827,250,16634,242,4432,114,483,14314,0,14317,121,59,17502,118,101,59,16749,256,105,121,14325,14330,114,99,32827,251,16635,59,17475,384,97,98,104,14339,14342,14347,114,242,5037,108,97,99,59,16753,97,242,5059,256,105,114,14355,14360,115,104,116,59,27006,59,49152,55349,56626,114,97,118,101,32827,249,16633,353,14375,14385,114,256,108,114,14380,14382,187,2391,187,4227,108,107,59,25984,256,99,116,14393,14413,623,14399,0,0,14410,114,110,256,59,101,14405,14406,25372,114,187,14406,111,112,59,25359,114,105,59,26104,256,97,108,14422,14426,99,114,59,16747,32955,168,841,256,103,112,14434,14438,111,110,59,16755,102,59,49152,55349,56678,768,97,100,104,108,115,117,4427,14456,14461,4978,14481,14496,111,119,110,225,5043,97,114,112,111,111,110,256,108,114,14472,14476,101,102,244,14381,105,103,104,244,14383,105,384,59,104,108,14489,14490,14492,17349,187,5114,111,110,187,14490,112,97,114,114,111,119,115,59,25032,384,99,105,116,14512,14532,14536,623,14518,0,0,14529,114,110,256,59,101,14524,14525,25373,114,187,14525,111,112,59,25358,110,103,59,16751,114,105,59,26105,99,114,59,49152,55349,56522,384,100,105,114,14553,14557,14562,111,116,59,25328,108,100,101,59,16745,105,256,59,102,14128,14568,187,6163,256,97,109,14575,14578,114,242,14504,108,32827,252,16636,97,110,103,108,101,59,27047,1920,65,66,68,97,99,100,101,102,108,110,111,112,114,115,122,14620,14623,14633,14637,14773,14776,14781,14815,14820,14824,14835,14841,14845,14849,14880,114,242,1015,97,114,256,59,118,14630,14631,27368,59,27369,97,115,232,993,256,110,114,14642,14647,103,114,116,59,27036,896,101,107,110,112,114,115,116,13539,14662,14667,14674,14685,14692,14742,97,112,112,225,9237,111,116,104,105,110,231,7830,384,104,105,114,13547,11976,14681,111,112,244,12213,256,59,104,5047,14690,239,12685,256,105,117,14697,14701,103,109,225,13235,256,98,112,14706,14724,115,101,116,110,101,113,256,59,113,14717,14720,49152,8842,65024,59,49152,10955,65024,115,101,116,110,101,113,256,59,113,14735,14738,49152,8843,65024,59,49152,10956,65024,256,104,114,14747,14751,101,116,225,13980,105,97,110,103,108,101,256,108,114,14762,14767,101,102,116,187,2341,105,103,104,116,187,4177,121,59,17458,97,115,104,187,4150,384,101,108,114,14788,14802,14807,384,59,98,101,11754,14795,14799,97,114,59,25275,113,59,25178,108,105,112,59,25326,256,98,116,14812,5224,97,242,5225,114,59,49152,55349,56627,116,114,233,14766,115,117,256,98,112,14831,14833,187,3356,187,3417,112,102,59,49152,55349,56679,114,111,240,3835,116,114,233,14772,256,99,117,14854,14859,114,59,49152,55349,56523,256,98,112,14864,14872,110,256,69,101,14720,14870,187,14718,110,256,69,101,14738,14878,187,14736,105,103,122,97,103,59,27034,896,99,101,102,111,112,114,115,14902,14907,14934,14939,14932,14945,14954,105,114,99,59,16757,256,100,105,14912,14929,256,98,103,14917,14921,97,114,59,27231,101,256,59,113,5626,14927,59,25177,101,114,112,59,24856,114,59,49152,55349,56628,112,102,59,49152,55349,56680,256,59,101,5241,14950,97,116,232,5241,99,114,59,49152,55349,56524,2787,6030,14983,0,14987,0,14992,15003,0,0,15005,15016,15019,15023,0,0,15043,15054,0,15064,6108,6111,116,114,233,6097,114,59,49152,55349,56629,256,65,97,14996,14999,114,242,963,114,242,2550,59,17342,256,65,97,15009,15012,114,242,952,114,242,2539,97,240,10003,105,115,59,25339,384,100,112,116,6052,15029,15038,256,102,108,15034,6057,59,49152,55349,56681,105,109,229,6066,256,65,97,15047,15050,114,242,974,114,242,2561,256,99,113,15058,6072,114,59,49152,55349,56525,256,112,116,6102,15068,114,233,6100,1024,97,99,101,102,105,111,115,117,15088,15101,15112,15116,15121,15125,15131,15137,99,256,117,121,15094,15099,116,101,32827,253,16637,59,17487,256,105,121,15106,15110,114,99,59,16759,59,17483,110,32827,165,16549,114,59,49152,55349,56630,99,121,59,17495,112,102,59,49152,55349,56682,99,114,59,49152,55349,56526,256,99,109,15142,15145,121,59,17486,108,32827,255,16639,1280,97,99,100,101,102,104,105,111,115,119,15170,15176,15188,15192,15204,15209,15213,15220,15226,15232,99,117,116,101,59,16762,256,97,121,15181,15186,114,111,110,59,16766,59,17463,111,116,59,16764,256,101,116,15197,15201,116,114,230,5471,97,59,17334,114,59,49152,55349,56631,99,121,59,17462,103,114,97,114,114,59,25053,112,102,59,49152,55349,56683,99,114,59,49152,55349,56527,256,106,110,15237,15239,59,24589,106,59,24588]); diff --git a/src/generated/decode-data-xml.ts b/src/generated/decode-data-xml.ts index 2ffda745..52618f82 100644 --- a/src/generated/decode-data-xml.ts +++ b/src/generated/decode-data-xml.ts @@ -1,3 +1,3 @@ // Generated using scripts/write-decode-map.ts // prettier-ignore -export default new Uint16Array([1024,97,103,108,113,9,23,27,31,1133,15,0,0,19,112,59,32768,38,111,115,59,32768,39,116,59,32768,62,116,59,32768,60,117,111,116,59,32768,34]); +export default new Uint16Array([512,97,103,108,113,9,21,24,27,621,15,0,0,18,112,59,16422,111,115,59,16423,116,59,16446,116,59,16444,117,111,116,59,16418]);