From 31b57a494be5cb5a8145ab48348f797fa6e0c261 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=90=89=E6=98=93?= Date: Sun, 21 Apr 2024 12:10:36 +0800 Subject: [PATCH] fix: #295 #297 optimize impala data types suggestion and create table (#296) * fix: #295 impala data types suggestion * fix: #297 impala create table with STRUCT --- src/grammar/impala/ImpalaSqlLexer.g4 | 22 +- src/grammar/impala/ImpalaSqlParser.g4 | 29 +- src/lib/impala/ImpalaSqlLexer.interp | 62 +- src/lib/impala/ImpalaSqlLexer.tokens | 606 +- src/lib/impala/ImpalaSqlLexer.ts | 2277 +++--- src/lib/impala/ImpalaSqlParser.interp | 43 +- src/lib/impala/ImpalaSqlParser.tokens | 606 +- src/lib/impala/ImpalaSqlParser.ts | 7258 +++++++++-------- src/lib/impala/ImpalaSqlParserListener.ts | 11 + src/lib/impala/ImpalaSqlParserVisitor.ts | 7 + .../suggestion/fixtures/tokenSuggestion.sql | 2 + .../impala/suggestion/tokenSuggestion.test.ts | 34 + .../impala/syntax/fixtures/create_table.sql | 29 + 13 files changed, 5738 insertions(+), 5248 deletions(-) diff --git a/src/grammar/impala/ImpalaSqlLexer.g4 b/src/grammar/impala/ImpalaSqlLexer.g4 index ca3f801..219fceb 100644 --- a/src/grammar/impala/ImpalaSqlLexer.g4 +++ b/src/grammar/impala/ImpalaSqlLexer.g4 @@ -151,7 +151,6 @@ KW_LOAD : 'LOAD'; KW_LOCALTIME : 'LOCALTIME'; KW_LOCALTIMESTAMP : 'LOCALTIMESTAMP'; KW_METADATA : 'METADATA'; -KW_MAP : 'MAP'; KW_MINUTE : 'MINUTE'; KW_MINUTES : 'MINUTES'; KW_MONTH : 'MONTH'; @@ -213,7 +212,6 @@ KW_SHOW : 'SHOW'; KW_SHUTDOWN : 'SHUTDOWN'; KW_SOME : 'SOME'; KW_STATS : 'STATS'; -KW_STRUCT : 'STRUCT'; KW_STRAIGHT_JOIN : 'STRAIGHT_JOIN'; KW_SUBSTRING : 'SUBSTRING'; KW_SYSTEM : 'SYSTEM'; @@ -259,6 +257,26 @@ KW_REFERENCES : 'REFERENCES'; KW_NOVALIDATE : 'NOVALIDATE'; KW_RELY : 'RELY'; +// dataType +KW_BINARY : 'BINARY'; +KW_BIGINT : 'BIGINT'; +KW_BOOLEAN : 'BOOLEAN'; +KW_CHAR : 'CHAR'; +KW_DATE : 'DATE'; +KW_DECIMAL : 'DECIMAL'; +KW_DOUBLE : 'DOUBLE'; +KW_INT : 'INT'; +KW_MAP : 'MAP'; +KW_REAL : 'REAL'; +KW_SMALLINT : 'SMALLINT'; +KW_FLOAT : 'FLOAT'; +KW_STRING : 'STRING'; +KW_STRUCT : 'STRUCT'; +KW_TIMESTAMP : 'TIMESTAMP'; +KW_TINYINT : 'TINYINT'; +KW_VARCHAR : 'VARCHAR'; +KW_COMPLEX : 'COMPLEX'; + STATS_NUMDVS : '\'NUMDVS\''; STATS_NUMNULLS : '\'NUMNULLS\''; STATS_AVGSIZE : '\'AVGSIZE\''; diff --git a/src/grammar/impala/ImpalaSqlParser.g4 b/src/grammar/impala/ImpalaSqlParser.g4 index a1a51cc..4f91079 100644 --- a/src/grammar/impala/ImpalaSqlParser.g4 +++ b/src/grammar/impala/ImpalaSqlParser.g4 @@ -265,7 +265,7 @@ computeStats ; computeIncrementalStats - : KW_COMPUTE KW_INCREMENTAL KW_STATS tableNamePath (KW_PARTITION expression)? + : KW_COMPUTE KW_INCREMENTAL KW_STATS tableNamePath (KW_PARTITION LPAREN expression RPAREN)? ; dropStatement @@ -1003,8 +1003,30 @@ type : type KW_ARRAY | KW_ARRAY LT type GT | KW_MAP LT type COMMA type GT - | KW_STRUCT LT identifier COLON type (COMMA identifier COLON type)* GT - | baseType (LPAREN typeParameter (COMMA typeParameter)* RPAREN)? + | KW_STRUCT LT identifier type (COMMA identifier type)* GT + | (baseType | dataType) (LPAREN typeParameter (COMMA typeParameter)* RPAREN)? + ; + +dataType + : KW_ARRAY + | KW_BINARY + | KW_BIGINT + | KW_BOOLEAN + | KW_CHAR + | KW_DATE + | KW_DECIMAL + | KW_DOUBLE + | KW_FLOAT + | KW_INT + | KW_MAP + | KW_REAL + | KW_SMALLINT + | KW_STRING + | KW_STRUCT + | KW_TIMESTAMP + | KW_TINYINT + | KW_VARCHAR + | KW_COMPLEX ; typeParameter @@ -1125,6 +1147,7 @@ nonReserved // IMPORTANT: this rule must only contain tokens. Nested rules are not supported. See SqlParser.exitNonReserved : KW_BERNOULLI | KW_DAY + | KW_DATE | KW_DAYS | KW_EXCLUDING | KW_HOUR diff --git a/src/lib/impala/ImpalaSqlLexer.interp b/src/lib/impala/ImpalaSqlLexer.interp index 36c2abd..80c3410 100644 --- a/src/lib/impala/ImpalaSqlLexer.interp +++ b/src/lib/impala/ImpalaSqlLexer.interp @@ -121,7 +121,6 @@ null 'LOCALTIME' 'LOCALTIMESTAMP' 'METADATA' -'MAP' 'MINUTE' 'MINUTES' 'MONTH' @@ -183,7 +182,6 @@ null 'SHUTDOWN' 'SOME' 'STATS' -'STRUCT' 'STRAIGHT_JOIN' 'SUBSTRING' 'SYSTEM' @@ -228,6 +226,24 @@ null 'REFERENCES' 'NOVALIDATE' 'RELY' +'BINARY' +'BIGINT' +'BOOLEAN' +'CHAR' +'DATE' +'DECIMAL' +'DOUBLE' +'INT' +'MAP' +'REAL' +'SMALLINT' +'FLOAT' +'STRING' +'STRUCT' +'TIMESTAMP' +'TINYINT' +'VARCHAR' +'COMPLEX' '\'NUMDVS\'' '\'NUMNULLS\'' '\'AVGSIZE\'' @@ -397,7 +413,6 @@ KW_LOAD KW_LOCALTIME KW_LOCALTIMESTAMP KW_METADATA -KW_MAP KW_MINUTE KW_MINUTES KW_MONTH @@ -459,7 +474,6 @@ KW_SHOW KW_SHUTDOWN KW_SOME KW_STATS -KW_STRUCT KW_STRAIGHT_JOIN KW_SUBSTRING KW_SYSTEM @@ -504,6 +518,24 @@ KW_RCFILE KW_REFERENCES KW_NOVALIDATE KW_RELY +KW_BINARY +KW_BIGINT +KW_BOOLEAN +KW_CHAR +KW_DATE +KW_DECIMAL +KW_DOUBLE +KW_INT +KW_MAP +KW_REAL +KW_SMALLINT +KW_FLOAT +KW_STRING +KW_STRUCT +KW_TIMESTAMP +KW_TINYINT +KW_VARCHAR +KW_COMPLEX STATS_NUMDVS STATS_NUMNULLS STATS_AVGSIZE @@ -672,7 +704,6 @@ KW_LOAD KW_LOCALTIME KW_LOCALTIMESTAMP KW_METADATA -KW_MAP KW_MINUTE KW_MINUTES KW_MONTH @@ -734,7 +765,6 @@ KW_SHOW KW_SHUTDOWN KW_SOME KW_STATS -KW_STRUCT KW_STRAIGHT_JOIN KW_SUBSTRING KW_SYSTEM @@ -779,6 +809,24 @@ KW_RCFILE KW_REFERENCES KW_NOVALIDATE KW_RELY +KW_BINARY +KW_BIGINT +KW_BOOLEAN +KW_CHAR +KW_DATE +KW_DECIMAL +KW_DOUBLE +KW_INT +KW_MAP +KW_REAL +KW_SMALLINT +KW_FLOAT +KW_STRING +KW_STRUCT +KW_TIMESTAMP +KW_TINYINT +KW_VARCHAR +KW_COMPLEX STATS_NUMDVS STATS_NUMNULLS STATS_AVGSIZE @@ -836,4 +884,4 @@ mode names: DEFAULT_MODE atn: -[4, 0, 273, 2600, 6, -1, 2, 0, 7, 0, 2, 1, 7, 1, 2, 2, 7, 2, 2, 3, 7, 3, 2, 4, 7, 4, 2, 5, 7, 5, 2, 6, 7, 6, 2, 7, 7, 7, 2, 8, 7, 8, 2, 9, 7, 9, 2, 10, 7, 10, 2, 11, 7, 11, 2, 12, 7, 12, 2, 13, 7, 13, 2, 14, 7, 14, 2, 15, 7, 15, 2, 16, 7, 16, 2, 17, 7, 17, 2, 18, 7, 18, 2, 19, 7, 19, 2, 20, 7, 20, 2, 21, 7, 21, 2, 22, 7, 22, 2, 23, 7, 23, 2, 24, 7, 24, 2, 25, 7, 25, 2, 26, 7, 26, 2, 27, 7, 27, 2, 28, 7, 28, 2, 29, 7, 29, 2, 30, 7, 30, 2, 31, 7, 31, 2, 32, 7, 32, 2, 33, 7, 33, 2, 34, 7, 34, 2, 35, 7, 35, 2, 36, 7, 36, 2, 37, 7, 37, 2, 38, 7, 38, 2, 39, 7, 39, 2, 40, 7, 40, 2, 41, 7, 41, 2, 42, 7, 42, 2, 43, 7, 43, 2, 44, 7, 44, 2, 45, 7, 45, 2, 46, 7, 46, 2, 47, 7, 47, 2, 48, 7, 48, 2, 49, 7, 49, 2, 50, 7, 50, 2, 51, 7, 51, 2, 52, 7, 52, 2, 53, 7, 53, 2, 54, 7, 54, 2, 55, 7, 55, 2, 56, 7, 56, 2, 57, 7, 57, 2, 58, 7, 58, 2, 59, 7, 59, 2, 60, 7, 60, 2, 61, 7, 61, 2, 62, 7, 62, 2, 63, 7, 63, 2, 64, 7, 64, 2, 65, 7, 65, 2, 66, 7, 66, 2, 67, 7, 67, 2, 68, 7, 68, 2, 69, 7, 69, 2, 70, 7, 70, 2, 71, 7, 71, 2, 72, 7, 72, 2, 73, 7, 73, 2, 74, 7, 74, 2, 75, 7, 75, 2, 76, 7, 76, 2, 77, 7, 77, 2, 78, 7, 78, 2, 79, 7, 79, 2, 80, 7, 80, 2, 81, 7, 81, 2, 82, 7, 82, 2, 83, 7, 83, 2, 84, 7, 84, 2, 85, 7, 85, 2, 86, 7, 86, 2, 87, 7, 87, 2, 88, 7, 88, 2, 89, 7, 89, 2, 90, 7, 90, 2, 91, 7, 91, 2, 92, 7, 92, 2, 93, 7, 93, 2, 94, 7, 94, 2, 95, 7, 95, 2, 96, 7, 96, 2, 97, 7, 97, 2, 98, 7, 98, 2, 99, 7, 99, 2, 100, 7, 100, 2, 101, 7, 101, 2, 102, 7, 102, 2, 103, 7, 103, 2, 104, 7, 104, 2, 105, 7, 105, 2, 106, 7, 106, 2, 107, 7, 107, 2, 108, 7, 108, 2, 109, 7, 109, 2, 110, 7, 110, 2, 111, 7, 111, 2, 112, 7, 112, 2, 113, 7, 113, 2, 114, 7, 114, 2, 115, 7, 115, 2, 116, 7, 116, 2, 117, 7, 117, 2, 118, 7, 118, 2, 119, 7, 119, 2, 120, 7, 120, 2, 121, 7, 121, 2, 122, 7, 122, 2, 123, 7, 123, 2, 124, 7, 124, 2, 125, 7, 125, 2, 126, 7, 126, 2, 127, 7, 127, 2, 128, 7, 128, 2, 129, 7, 129, 2, 130, 7, 130, 2, 131, 7, 131, 2, 132, 7, 132, 2, 133, 7, 133, 2, 134, 7, 134, 2, 135, 7, 135, 2, 136, 7, 136, 2, 137, 7, 137, 2, 138, 7, 138, 2, 139, 7, 139, 2, 140, 7, 140, 2, 141, 7, 141, 2, 142, 7, 142, 2, 143, 7, 143, 2, 144, 7, 144, 2, 145, 7, 145, 2, 146, 7, 146, 2, 147, 7, 147, 2, 148, 7, 148, 2, 149, 7, 149, 2, 150, 7, 150, 2, 151, 7, 151, 2, 152, 7, 152, 2, 153, 7, 153, 2, 154, 7, 154, 2, 155, 7, 155, 2, 156, 7, 156, 2, 157, 7, 157, 2, 158, 7, 158, 2, 159, 7, 159, 2, 160, 7, 160, 2, 161, 7, 161, 2, 162, 7, 162, 2, 163, 7, 163, 2, 164, 7, 164, 2, 165, 7, 165, 2, 166, 7, 166, 2, 167, 7, 167, 2, 168, 7, 168, 2, 169, 7, 169, 2, 170, 7, 170, 2, 171, 7, 171, 2, 172, 7, 172, 2, 173, 7, 173, 2, 174, 7, 174, 2, 175, 7, 175, 2, 176, 7, 176, 2, 177, 7, 177, 2, 178, 7, 178, 2, 179, 7, 179, 2, 180, 7, 180, 2, 181, 7, 181, 2, 182, 7, 182, 2, 183, 7, 183, 2, 184, 7, 184, 2, 185, 7, 185, 2, 186, 7, 186, 2, 187, 7, 187, 2, 188, 7, 188, 2, 189, 7, 189, 2, 190, 7, 190, 2, 191, 7, 191, 2, 192, 7, 192, 2, 193, 7, 193, 2, 194, 7, 194, 2, 195, 7, 195, 2, 196, 7, 196, 2, 197, 7, 197, 2, 198, 7, 198, 2, 199, 7, 199, 2, 200, 7, 200, 2, 201, 7, 201, 2, 202, 7, 202, 2, 203, 7, 203, 2, 204, 7, 204, 2, 205, 7, 205, 2, 206, 7, 206, 2, 207, 7, 207, 2, 208, 7, 208, 2, 209, 7, 209, 2, 210, 7, 210, 2, 211, 7, 211, 2, 212, 7, 212, 2, 213, 7, 213, 2, 214, 7, 214, 2, 215, 7, 215, 2, 216, 7, 216, 2, 217, 7, 217, 2, 218, 7, 218, 2, 219, 7, 219, 2, 220, 7, 220, 2, 221, 7, 221, 2, 222, 7, 222, 2, 223, 7, 223, 2, 224, 7, 224, 2, 225, 7, 225, 2, 226, 7, 226, 2, 227, 7, 227, 2, 228, 7, 228, 2, 229, 7, 229, 2, 230, 7, 230, 2, 231, 7, 231, 2, 232, 7, 232, 2, 233, 7, 233, 2, 234, 7, 234, 2, 235, 7, 235, 2, 236, 7, 236, 2, 237, 7, 237, 2, 238, 7, 238, 2, 239, 7, 239, 2, 240, 7, 240, 2, 241, 7, 241, 2, 242, 7, 242, 2, 243, 7, 243, 2, 244, 7, 244, 2, 245, 7, 245, 2, 246, 7, 246, 2, 247, 7, 247, 2, 248, 7, 248, 2, 249, 7, 249, 2, 250, 7, 250, 2, 251, 7, 251, 2, 252, 7, 252, 2, 253, 7, 253, 2, 254, 7, 254, 2, 255, 7, 255, 2, 256, 7, 256, 2, 257, 7, 257, 2, 258, 7, 258, 2, 259, 7, 259, 2, 260, 7, 260, 2, 261, 7, 261, 2, 262, 7, 262, 2, 263, 7, 263, 2, 264, 7, 264, 2, 265, 7, 265, 2, 266, 7, 266, 2, 267, 7, 267, 2, 268, 7, 268, 2, 269, 7, 269, 2, 270, 7, 270, 2, 271, 7, 271, 2, 272, 7, 272, 2, 273, 7, 273, 2, 274, 7, 274, 2, 275, 7, 275, 1, 0, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 4, 1, 4, 1, 4, 1, 4, 1, 5, 1, 5, 1, 5, 1, 5, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 8, 1, 8, 1, 8, 1, 9, 1, 9, 1, 9, 1, 9, 1, 10, 1, 10, 1, 10, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 25, 1, 25, 1, 25, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 47, 1, 47, 1, 47, 1, 47, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 60, 1, 60, 1, 60, 1, 60, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 77, 1, 77, 1, 77, 1, 77, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 92, 1, 92, 1, 92, 1, 93, 1, 93, 1, 93, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 107, 1, 107, 1, 107, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 109, 1, 109, 1, 109, 1, 109, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 121, 1, 121, 1, 121, 1, 121, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 126, 1, 127, 1, 127, 1, 127, 1, 127, 1, 128, 1, 128, 1, 128, 1, 128, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 132, 1, 132, 1, 132, 1, 132, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 135, 1, 136, 1, 136, 1, 136, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 137, 1, 138, 1, 138, 1, 138, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 1, 168, 1, 168, 1, 168, 1, 168, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 176, 1, 176, 1, 176, 1, 176, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 192, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 194, 1, 194, 1, 194, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 197, 1, 197, 1, 197, 1, 197, 1, 197, 1, 197, 1, 197, 1, 197, 1, 197, 1, 198, 1, 198, 1, 198, 1, 198, 1, 198, 1, 198, 1, 198, 1, 198, 1, 198, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 200, 1, 200, 1, 200, 1, 200, 1, 200, 1, 200, 1, 200, 1, 200, 1, 200, 1, 200, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 202, 1, 203, 1, 203, 1, 203, 1, 203, 1, 203, 1, 203, 1, 204, 1, 204, 1, 204, 1, 204, 1, 205, 1, 205, 1, 205, 1, 205, 1, 205, 1, 206, 1, 206, 1, 206, 1, 206, 1, 206, 1, 206, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 208, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 210, 1, 210, 1, 210, 1, 210, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 219, 1, 219, 1, 219, 1, 219, 1, 219, 1, 219, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 221, 1, 221, 1, 221, 1, 221, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, 1, 226, 1, 226, 1, 226, 1, 226, 1, 226, 1, 226, 1, 226, 1, 226, 1, 226, 1, 226, 1, 226, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 229, 1, 229, 1, 229, 1, 229, 1, 229, 1, 229, 1, 229, 1, 229, 1, 229, 1, 229, 1, 229, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 232, 1, 232, 1, 233, 1, 233, 1, 233, 1, 233, 3, 233, 2289, 8, 233, 1, 234, 1, 234, 1, 235, 1, 235, 1, 235, 1, 236, 1, 236, 1, 237, 1, 237, 1, 237, 1, 238, 1, 238, 1, 239, 1, 239, 1, 240, 1, 240, 1, 241, 1, 241, 1, 242, 1, 242, 1, 243, 1, 243, 1, 243, 1, 244, 1, 244, 1, 245, 1, 245, 1, 246, 1, 246, 1, 247, 1, 247, 1, 248, 1, 248, 1, 249, 1, 249, 1, 250, 1, 250, 1, 251, 1, 251, 1, 252, 1, 252, 1, 253, 1, 253, 1, 254, 1, 254, 1, 255, 1, 255, 1, 256, 1, 256, 1, 256, 1, 257, 1, 257, 1, 257, 1, 257, 5, 257, 2345, 8, 257, 10, 257, 12, 257, 2348, 9, 257, 1, 257, 1, 257, 1, 257, 1, 257, 1, 257, 5, 257, 2355, 8, 257, 10, 257, 12, 257, 2358, 9, 257, 1, 257, 3, 257, 2361, 8, 257, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 1, 258, 5, 258, 2370, 8, 258, 10, 258, 12, 258, 2373, 9, 258, 1, 258, 1, 258, 1, 259, 1, 259, 1, 259, 1, 259, 5, 259, 2381, 8, 259, 10, 259, 12, 259, 2384, 9, 259, 1, 259, 1, 259, 1, 260, 4, 260, 2389, 8, 260, 11, 260, 12, 260, 2390, 1, 261, 4, 261, 2394, 8, 261, 11, 261, 12, 261, 2395, 1, 261, 1, 261, 5, 261, 2400, 8, 261, 10, 261, 12, 261, 2403, 9, 261, 1, 261, 1, 261, 4, 261, 2407, 8, 261, 11, 261, 12, 261, 2408, 3, 261, 2411, 8, 261, 1, 262, 4, 262, 2414, 8, 262, 11, 262, 12, 262, 2415, 1, 262, 1, 262, 5, 262, 2420, 8, 262, 10, 262, 12, 262, 2423, 9, 262, 3, 262, 2425, 8, 262, 1, 262, 1, 262, 1, 262, 1, 262, 4, 262, 2431, 8, 262, 11, 262, 12, 262, 2432, 1, 262, 1, 262, 3, 262, 2437, 8, 262, 1, 263, 1, 263, 3, 263, 2441, 8, 263, 1, 263, 1, 263, 1, 263, 5, 263, 2446, 8, 263, 10, 263, 12, 263, 2449, 9, 263, 1, 264, 1, 264, 1, 264, 1, 264, 4, 264, 2455, 8, 264, 11, 264, 12, 264, 2456, 1, 265, 1, 265, 1, 265, 1, 265, 5, 265, 2463, 8, 265, 10, 265, 12, 265, 2466, 9, 265, 1, 265, 1, 265, 1, 266, 1, 266, 1, 266, 1, 266, 5, 266, 2474, 8, 266, 10, 266, 12, 266, 2477, 9, 266, 1, 266, 1, 266, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 267, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 268, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 269, 1, 270, 1, 270, 3, 270, 2552, 8, 270, 1, 270, 4, 270, 2555, 8, 270, 11, 270, 12, 270, 2556, 1, 271, 1, 271, 1, 272, 1, 272, 1, 273, 1, 273, 1, 273, 1, 273, 5, 273, 2567, 8, 273, 10, 273, 12, 273, 2570, 9, 273, 1, 273, 3, 273, 2573, 8, 273, 1, 273, 3, 273, 2576, 8, 273, 1, 273, 1, 273, 1, 274, 1, 274, 1, 274, 1, 274, 5, 274, 2584, 8, 274, 10, 274, 12, 274, 2587, 9, 274, 1, 274, 1, 274, 1, 274, 1, 274, 1, 274, 1, 275, 4, 275, 2595, 8, 275, 11, 275, 12, 275, 2596, 1, 275, 1, 275, 1, 2585, 0, 276, 1, 1, 3, 2, 5, 3, 7, 4, 9, 5, 11, 6, 13, 7, 15, 8, 17, 9, 19, 10, 21, 11, 23, 12, 25, 13, 27, 14, 29, 15, 31, 16, 33, 17, 35, 18, 37, 19, 39, 20, 41, 21, 43, 22, 45, 23, 47, 24, 49, 25, 51, 26, 53, 27, 55, 28, 57, 29, 59, 30, 61, 31, 63, 32, 65, 33, 67, 34, 69, 35, 71, 36, 73, 37, 75, 38, 77, 39, 79, 40, 81, 41, 83, 42, 85, 43, 87, 44, 89, 45, 91, 46, 93, 47, 95, 48, 97, 49, 99, 50, 101, 51, 103, 52, 105, 53, 107, 54, 109, 55, 111, 56, 113, 57, 115, 58, 117, 59, 119, 60, 121, 61, 123, 62, 125, 63, 127, 64, 129, 65, 131, 66, 133, 67, 135, 68, 137, 69, 139, 70, 141, 71, 143, 72, 145, 73, 147, 74, 149, 75, 151, 76, 153, 77, 155, 78, 157, 79, 159, 80, 161, 81, 163, 82, 165, 83, 167, 84, 169, 85, 171, 86, 173, 87, 175, 88, 177, 89, 179, 90, 181, 91, 183, 92, 185, 93, 187, 94, 189, 95, 191, 96, 193, 97, 195, 98, 197, 99, 199, 100, 201, 101, 203, 102, 205, 103, 207, 104, 209, 105, 211, 106, 213, 107, 215, 108, 217, 109, 219, 110, 221, 111, 223, 112, 225, 113, 227, 114, 229, 115, 231, 116, 233, 117, 235, 118, 237, 119, 239, 120, 241, 121, 243, 122, 245, 123, 247, 124, 249, 125, 251, 126, 253, 127, 255, 128, 257, 129, 259, 130, 261, 131, 263, 132, 265, 133, 267, 134, 269, 135, 271, 136, 273, 137, 275, 138, 277, 139, 279, 140, 281, 141, 283, 142, 285, 143, 287, 144, 289, 145, 291, 146, 293, 147, 295, 148, 297, 149, 299, 150, 301, 151, 303, 152, 305, 153, 307, 154, 309, 155, 311, 156, 313, 157, 315, 158, 317, 159, 319, 160, 321, 161, 323, 162, 325, 163, 327, 164, 329, 165, 331, 166, 333, 167, 335, 168, 337, 169, 339, 170, 341, 171, 343, 172, 345, 173, 347, 174, 349, 175, 351, 176, 353, 177, 355, 178, 357, 179, 359, 180, 361, 181, 363, 182, 365, 183, 367, 184, 369, 185, 371, 186, 373, 187, 375, 188, 377, 189, 379, 190, 381, 191, 383, 192, 385, 193, 387, 194, 389, 195, 391, 196, 393, 197, 395, 198, 397, 199, 399, 200, 401, 201, 403, 202, 405, 203, 407, 204, 409, 205, 411, 206, 413, 207, 415, 208, 417, 209, 419, 210, 421, 211, 423, 212, 425, 213, 427, 214, 429, 215, 431, 216, 433, 217, 435, 218, 437, 219, 439, 220, 441, 221, 443, 222, 445, 223, 447, 224, 449, 225, 451, 226, 453, 227, 455, 228, 457, 229, 459, 230, 461, 231, 463, 232, 465, 233, 467, 234, 469, 235, 471, 236, 473, 237, 475, 238, 477, 239, 479, 240, 481, 241, 483, 242, 485, 243, 487, 244, 489, 245, 491, 246, 493, 247, 495, 248, 497, 249, 499, 250, 501, 251, 503, 252, 505, 253, 507, 254, 509, 255, 511, 256, 513, 257, 515, 258, 517, 259, 519, 260, 521, 261, 523, 262, 525, 263, 527, 264, 529, 265, 531, 266, 533, 267, 535, 268, 537, 269, 539, 270, 541, 0, 543, 0, 545, 0, 547, 271, 549, 272, 551, 273, 1, 0, 35, 2, 0, 65, 65, 97, 97, 2, 0, 68, 68, 100, 100, 2, 0, 76, 76, 108, 108, 2, 0, 78, 78, 110, 110, 2, 0, 89, 89, 121, 121, 2, 0, 84, 84, 116, 116, 2, 0, 73, 73, 105, 105, 2, 0, 67, 67, 99, 99, 2, 0, 69, 69, 101, 101, 2, 0, 82, 82, 114, 114, 2, 0, 83, 83, 115, 115, 2, 0, 71, 71, 103, 103, 2, 0, 85, 85, 117, 117, 2, 0, 72, 72, 104, 104, 2, 0, 79, 79, 111, 111, 2, 0, 90, 90, 122, 122, 2, 0, 66, 66, 98, 98, 2, 0, 87, 87, 119, 119, 2, 0, 75, 75, 107, 107, 2, 0, 80, 80, 112, 112, 2, 0, 70, 70, 102, 102, 2, 0, 88, 88, 120, 120, 2, 0, 77, 77, 109, 109, 2, 0, 86, 86, 118, 118, 2, 0, 74, 74, 106, 106, 2, 0, 81, 81, 113, 113, 1, 0, 39, 39, 1, 0, 34, 34, 3, 0, 58, 58, 64, 64, 95, 95, 1, 0, 96, 96, 2, 0, 43, 43, 45, 45, 1, 0, 48, 57, 2, 0, 65, 90, 97, 122, 2, 0, 10, 10, 13, 13, 3, 0, 9, 10, 13, 13, 32, 32, 2633, 0, 1, 1, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 5, 1, 0, 0, 0, 0, 7, 1, 0, 0, 0, 0, 9, 1, 0, 0, 0, 0, 11, 1, 0, 0, 0, 0, 13, 1, 0, 0, 0, 0, 15, 1, 0, 0, 0, 0, 17, 1, 0, 0, 0, 0, 19, 1, 0, 0, 0, 0, 21, 1, 0, 0, 0, 0, 23, 1, 0, 0, 0, 0, 25, 1, 0, 0, 0, 0, 27, 1, 0, 0, 0, 0, 29, 1, 0, 0, 0, 0, 31, 1, 0, 0, 0, 0, 33, 1, 0, 0, 0, 0, 35, 1, 0, 0, 0, 0, 37, 1, 0, 0, 0, 0, 39, 1, 0, 0, 0, 0, 41, 1, 0, 0, 0, 0, 43, 1, 0, 0, 0, 0, 45, 1, 0, 0, 0, 0, 47, 1, 0, 0, 0, 0, 49, 1, 0, 0, 0, 0, 51, 1, 0, 0, 0, 0, 53, 1, 0, 0, 0, 0, 55, 1, 0, 0, 0, 0, 57, 1, 0, 0, 0, 0, 59, 1, 0, 0, 0, 0, 61, 1, 0, 0, 0, 0, 63, 1, 0, 0, 0, 0, 65, 1, 0, 0, 0, 0, 67, 1, 0, 0, 0, 0, 69, 1, 0, 0, 0, 0, 71, 1, 0, 0, 0, 0, 73, 1, 0, 0, 0, 0, 75, 1, 0, 0, 0, 0, 77, 1, 0, 0, 0, 0, 79, 1, 0, 0, 0, 0, 81, 1, 0, 0, 0, 0, 83, 1, 0, 0, 0, 0, 85, 1, 0, 0, 0, 0, 87, 1, 0, 0, 0, 0, 89, 1, 0, 0, 0, 0, 91, 1, 0, 0, 0, 0, 93, 1, 0, 0, 0, 0, 95, 1, 0, 0, 0, 0, 97, 1, 0, 0, 0, 0, 99, 1, 0, 0, 0, 0, 101, 1, 0, 0, 0, 0, 103, 1, 0, 0, 0, 0, 105, 1, 0, 0, 0, 0, 107, 1, 0, 0, 0, 0, 109, 1, 0, 0, 0, 0, 111, 1, 0, 0, 0, 0, 113, 1, 0, 0, 0, 0, 115, 1, 0, 0, 0, 0, 117, 1, 0, 0, 0, 0, 119, 1, 0, 0, 0, 0, 121, 1, 0, 0, 0, 0, 123, 1, 0, 0, 0, 0, 125, 1, 0, 0, 0, 0, 127, 1, 0, 0, 0, 0, 129, 1, 0, 0, 0, 0, 131, 1, 0, 0, 0, 0, 133, 1, 0, 0, 0, 0, 135, 1, 0, 0, 0, 0, 137, 1, 0, 0, 0, 0, 139, 1, 0, 0, 0, 0, 141, 1, 0, 0, 0, 0, 143, 1, 0, 0, 0, 0, 145, 1, 0, 0, 0, 0, 147, 1, 0, 0, 0, 0, 149, 1, 0, 0, 0, 0, 151, 1, 0, 0, 0, 0, 153, 1, 0, 0, 0, 0, 155, 1, 0, 0, 0, 0, 157, 1, 0, 0, 0, 0, 159, 1, 0, 0, 0, 0, 161, 1, 0, 0, 0, 0, 163, 1, 0, 0, 0, 0, 165, 1, 0, 0, 0, 0, 167, 1, 0, 0, 0, 0, 169, 1, 0, 0, 0, 0, 171, 1, 0, 0, 0, 0, 173, 1, 0, 0, 0, 0, 175, 1, 0, 0, 0, 0, 177, 1, 0, 0, 0, 0, 179, 1, 0, 0, 0, 0, 181, 1, 0, 0, 0, 0, 183, 1, 0, 0, 0, 0, 185, 1, 0, 0, 0, 0, 187, 1, 0, 0, 0, 0, 189, 1, 0, 0, 0, 0, 191, 1, 0, 0, 0, 0, 193, 1, 0, 0, 0, 0, 195, 1, 0, 0, 0, 0, 197, 1, 0, 0, 0, 0, 199, 1, 0, 0, 0, 0, 201, 1, 0, 0, 0, 0, 203, 1, 0, 0, 0, 0, 205, 1, 0, 0, 0, 0, 207, 1, 0, 0, 0, 0, 209, 1, 0, 0, 0, 0, 211, 1, 0, 0, 0, 0, 213, 1, 0, 0, 0, 0, 215, 1, 0, 0, 0, 0, 217, 1, 0, 0, 0, 0, 219, 1, 0, 0, 0, 0, 221, 1, 0, 0, 0, 0, 223, 1, 0, 0, 0, 0, 225, 1, 0, 0, 0, 0, 227, 1, 0, 0, 0, 0, 229, 1, 0, 0, 0, 0, 231, 1, 0, 0, 0, 0, 233, 1, 0, 0, 0, 0, 235, 1, 0, 0, 0, 0, 237, 1, 0, 0, 0, 0, 239, 1, 0, 0, 0, 0, 241, 1, 0, 0, 0, 0, 243, 1, 0, 0, 0, 0, 245, 1, 0, 0, 0, 0, 247, 1, 0, 0, 0, 0, 249, 1, 0, 0, 0, 0, 251, 1, 0, 0, 0, 0, 253, 1, 0, 0, 0, 0, 255, 1, 0, 0, 0, 0, 257, 1, 0, 0, 0, 0, 259, 1, 0, 0, 0, 0, 261, 1, 0, 0, 0, 0, 263, 1, 0, 0, 0, 0, 265, 1, 0, 0, 0, 0, 267, 1, 0, 0, 0, 0, 269, 1, 0, 0, 0, 0, 271, 1, 0, 0, 0, 0, 273, 1, 0, 0, 0, 0, 275, 1, 0, 0, 0, 0, 277, 1, 0, 0, 0, 0, 279, 1, 0, 0, 0, 0, 281, 1, 0, 0, 0, 0, 283, 1, 0, 0, 0, 0, 285, 1, 0, 0, 0, 0, 287, 1, 0, 0, 0, 0, 289, 1, 0, 0, 0, 0, 291, 1, 0, 0, 0, 0, 293, 1, 0, 0, 0, 0, 295, 1, 0, 0, 0, 0, 297, 1, 0, 0, 0, 0, 299, 1, 0, 0, 0, 0, 301, 1, 0, 0, 0, 0, 303, 1, 0, 0, 0, 0, 305, 1, 0, 0, 0, 0, 307, 1, 0, 0, 0, 0, 309, 1, 0, 0, 0, 0, 311, 1, 0, 0, 0, 0, 313, 1, 0, 0, 0, 0, 315, 1, 0, 0, 0, 0, 317, 1, 0, 0, 0, 0, 319, 1, 0, 0, 0, 0, 321, 1, 0, 0, 0, 0, 323, 1, 0, 0, 0, 0, 325, 1, 0, 0, 0, 0, 327, 1, 0, 0, 0, 0, 329, 1, 0, 0, 0, 0, 331, 1, 0, 0, 0, 0, 333, 1, 0, 0, 0, 0, 335, 1, 0, 0, 0, 0, 337, 1, 0, 0, 0, 0, 339, 1, 0, 0, 0, 0, 341, 1, 0, 0, 0, 0, 343, 1, 0, 0, 0, 0, 345, 1, 0, 0, 0, 0, 347, 1, 0, 0, 0, 0, 349, 1, 0, 0, 0, 0, 351, 1, 0, 0, 0, 0, 353, 1, 0, 0, 0, 0, 355, 1, 0, 0, 0, 0, 357, 1, 0, 0, 0, 0, 359, 1, 0, 0, 0, 0, 361, 1, 0, 0, 0, 0, 363, 1, 0, 0, 0, 0, 365, 1, 0, 0, 0, 0, 367, 1, 0, 0, 0, 0, 369, 1, 0, 0, 0, 0, 371, 1, 0, 0, 0, 0, 373, 1, 0, 0, 0, 0, 375, 1, 0, 0, 0, 0, 377, 1, 0, 0, 0, 0, 379, 1, 0, 0, 0, 0, 381, 1, 0, 0, 0, 0, 383, 1, 0, 0, 0, 0, 385, 1, 0, 0, 0, 0, 387, 1, 0, 0, 0, 0, 389, 1, 0, 0, 0, 0, 391, 1, 0, 0, 0, 0, 393, 1, 0, 0, 0, 0, 395, 1, 0, 0, 0, 0, 397, 1, 0, 0, 0, 0, 399, 1, 0, 0, 0, 0, 401, 1, 0, 0, 0, 0, 403, 1, 0, 0, 0, 0, 405, 1, 0, 0, 0, 0, 407, 1, 0, 0, 0, 0, 409, 1, 0, 0, 0, 0, 411, 1, 0, 0, 0, 0, 413, 1, 0, 0, 0, 0, 415, 1, 0, 0, 0, 0, 417, 1, 0, 0, 0, 0, 419, 1, 0, 0, 0, 0, 421, 1, 0, 0, 0, 0, 423, 1, 0, 0, 0, 0, 425, 1, 0, 0, 0, 0, 427, 1, 0, 0, 0, 0, 429, 1, 0, 0, 0, 0, 431, 1, 0, 0, 0, 0, 433, 1, 0, 0, 0, 0, 435, 1, 0, 0, 0, 0, 437, 1, 0, 0, 0, 0, 439, 1, 0, 0, 0, 0, 441, 1, 0, 0, 0, 0, 443, 1, 0, 0, 0, 0, 445, 1, 0, 0, 0, 0, 447, 1, 0, 0, 0, 0, 449, 1, 0, 0, 0, 0, 451, 1, 0, 0, 0, 0, 453, 1, 0, 0, 0, 0, 455, 1, 0, 0, 0, 0, 457, 1, 0, 0, 0, 0, 459, 1, 0, 0, 0, 0, 461, 1, 0, 0, 0, 0, 463, 1, 0, 0, 0, 0, 465, 1, 0, 0, 0, 0, 467, 1, 0, 0, 0, 0, 469, 1, 0, 0, 0, 0, 471, 1, 0, 0, 0, 0, 473, 1, 0, 0, 0, 0, 475, 1, 0, 0, 0, 0, 477, 1, 0, 0, 0, 0, 479, 1, 0, 0, 0, 0, 481, 1, 0, 0, 0, 0, 483, 1, 0, 0, 0, 0, 485, 1, 0, 0, 0, 0, 487, 1, 0, 0, 0, 0, 489, 1, 0, 0, 0, 0, 491, 1, 0, 0, 0, 0, 493, 1, 0, 0, 0, 0, 495, 1, 0, 0, 0, 0, 497, 1, 0, 0, 0, 0, 499, 1, 0, 0, 0, 0, 501, 1, 0, 0, 0, 0, 503, 1, 0, 0, 0, 0, 505, 1, 0, 0, 0, 0, 507, 1, 0, 0, 0, 0, 509, 1, 0, 0, 0, 0, 511, 1, 0, 0, 0, 0, 513, 1, 0, 0, 0, 0, 515, 1, 0, 0, 0, 0, 517, 1, 0, 0, 0, 0, 519, 1, 0, 0, 0, 0, 521, 1, 0, 0, 0, 0, 523, 1, 0, 0, 0, 0, 525, 1, 0, 0, 0, 0, 527, 1, 0, 0, 0, 0, 529, 1, 0, 0, 0, 0, 531, 1, 0, 0, 0, 0, 533, 1, 0, 0, 0, 0, 535, 1, 0, 0, 0, 0, 537, 1, 0, 0, 0, 0, 539, 1, 0, 0, 0, 0, 547, 1, 0, 0, 0, 0, 549, 1, 0, 0, 0, 0, 551, 1, 0, 0, 0, 1, 553, 1, 0, 0, 0, 3, 557, 1, 0, 0, 0, 5, 561, 1, 0, 0, 0, 7, 570, 1, 0, 0, 0, 9, 576, 1, 0, 0, 0, 11, 580, 1, 0, 0, 0, 13, 584, 1, 0, 0, 0, 15, 589, 1, 0, 0, 0, 17, 595, 1, 0, 0, 0, 19, 598, 1, 0, 0, 0, 21, 602, 1, 0, 0, 0, 23, 605, 1, 0, 0, 0, 25, 615, 1, 0, 0, 0, 27, 629, 1, 0, 0, 0, 29, 639, 1, 0, 0, 0, 31, 647, 1, 0, 0, 0, 33, 658, 1, 0, 0, 0, 35, 670, 1, 0, 0, 0, 37, 681, 1, 0, 0, 0, 39, 690, 1, 0, 0, 0, 41, 698, 1, 0, 0, 0, 43, 703, 1, 0, 0, 0, 45, 709, 1, 0, 0, 0, 47, 716, 1, 0, 0, 0, 49, 725, 1, 0, 0, 0, 51, 739, 1, 0, 0, 0, 53, 742, 1, 0, 0, 0, 55, 750, 1, 0, 0, 0, 57, 755, 1, 0, 0, 0, 59, 760, 1, 0, 0, 0, 61, 767, 1, 0, 0, 0, 63, 774, 1, 0, 0, 0, 65, 781, 1, 0, 0, 0, 67, 789, 1, 0, 0, 0, 69, 797, 1, 0, 0, 0, 71, 809, 1, 0, 0, 0, 73, 817, 1, 0, 0, 0, 75, 824, 1, 0, 0, 0, 77, 830, 1, 0, 0, 0, 79, 838, 1, 0, 0, 0, 81, 851, 1, 0, 0, 0, 83, 864, 1, 0, 0, 0, 85, 877, 1, 0, 0, 0, 87, 895, 1, 0, 0, 0, 89, 908, 1, 0, 0, 0, 91, 913, 1, 0, 0, 0, 93, 922, 1, 0, 0, 0, 95, 932, 1, 0, 0, 0, 97, 936, 1, 0, 0, 0, 99, 941, 1, 0, 0, 0, 101, 948, 1, 0, 0, 0, 103, 956, 1, 0, 0, 0, 105, 966, 1, 0, 0, 0, 107, 974, 1, 0, 0, 0, 109, 981, 1, 0, 0, 0, 111, 986, 1, 0, 0, 0, 113, 995, 1, 0, 0, 0, 115, 1004, 1, 0, 0, 0, 117, 1009, 1, 0, 0, 0, 119, 1014, 1, 0, 0, 0, 121, 1023, 1, 0, 0, 0, 123, 1027, 1, 0, 0, 0, 125, 1034, 1, 0, 0, 0, 127, 1042, 1, 0, 0, 0, 129, 1049, 1, 0, 0, 0, 131, 1059, 1, 0, 0, 0, 133, 1066, 1, 0, 0, 0, 135, 1074, 1, 0, 0, 0, 137, 1082, 1, 0, 0, 0, 139, 1091, 1, 0, 0, 0, 141, 1097, 1, 0, 0, 0, 143, 1104, 1, 0, 0, 0, 145, 1115, 1, 0, 0, 0, 147, 1121, 1, 0, 0, 0, 149, 1128, 1, 0, 0, 0, 151, 1134, 1, 0, 0, 0, 153, 1146, 1, 0, 0, 0, 155, 1156, 1, 0, 0, 0, 157, 1160, 1, 0, 0, 0, 159, 1167, 1, 0, 0, 0, 161, 1177, 1, 0, 0, 0, 163, 1185, 1, 0, 0, 0, 165, 1190, 1, 0, 0, 0, 167, 1195, 1, 0, 0, 0, 169, 1204, 1, 0, 0, 0, 171, 1214, 1, 0, 0, 0, 173, 1220, 1, 0, 0, 0, 175, 1226, 1, 0, 0, 0, 177, 1235, 1, 0, 0, 0, 179, 1240, 1, 0, 0, 0, 181, 1247, 1, 0, 0, 0, 183, 1252, 1, 0, 0, 0, 185, 1258, 1, 0, 0, 0, 187, 1261, 1, 0, 0, 0, 189, 1264, 1, 0, 0, 0, 191, 1274, 1, 0, 0, 0, 193, 1286, 1, 0, 0, 0, 195, 1292, 1, 0, 0, 0, 197, 1299, 1, 0, 0, 0, 199, 1306, 1, 0, 0, 0, 201, 1316, 1, 0, 0, 0, 203, 1325, 1, 0, 0, 0, 205, 1338, 1, 0, 0, 0, 207, 1343, 1, 0, 0, 0, 209, 1351, 1, 0, 0, 0, 211, 1359, 1, 0, 0, 0, 213, 1365, 1, 0, 0, 0, 215, 1376, 1, 0, 0, 0, 217, 1379, 1, 0, 0, 0, 219, 1384, 1, 0, 0, 0, 221, 1388, 1, 0, 0, 0, 223, 1393, 1, 0, 0, 0, 225, 1398, 1, 0, 0, 0, 227, 1406, 1, 0, 0, 0, 229, 1411, 1, 0, 0, 0, 231, 1416, 1, 0, 0, 0, 233, 1422, 1, 0, 0, 0, 235, 1428, 1, 0, 0, 0, 237, 1433, 1, 0, 0, 0, 239, 1443, 1, 0, 0, 0, 241, 1458, 1, 0, 0, 0, 243, 1467, 1, 0, 0, 0, 245, 1471, 1, 0, 0, 0, 247, 1478, 1, 0, 0, 0, 249, 1486, 1, 0, 0, 0, 251, 1492, 1, 0, 0, 0, 253, 1499, 1, 0, 0, 0, 255, 1508, 1, 0, 0, 0, 257, 1512, 1, 0, 0, 0, 259, 1516, 1, 0, 0, 0, 261, 1521, 1, 0, 0, 0, 263, 1526, 1, 0, 0, 0, 265, 1536, 1, 0, 0, 0, 267, 1540, 1, 0, 0, 0, 269, 1545, 1, 0, 0, 0, 271, 1551, 1, 0, 0, 0, 273, 1558, 1, 0, 0, 0, 275, 1561, 1, 0, 0, 0, 277, 1568, 1, 0, 0, 0, 279, 1571, 1, 0, 0, 0, 281, 1577, 1, 0, 0, 0, 283, 1588, 1, 0, 0, 0, 285, 1594, 1, 0, 0, 0, 287, 1600, 1, 0, 0, 0, 289, 1605, 1, 0, 0, 0, 291, 1615, 1, 0, 0, 0, 293, 1625, 1, 0, 0, 0, 295, 1636, 1, 0, 0, 0, 297, 1644, 1, 0, 0, 0, 299, 1653, 1, 0, 0, 0, 301, 1663, 1, 0, 0, 0, 303, 1671, 1, 0, 0, 0, 305, 1683, 1, 0, 0, 0, 307, 1694, 1, 0, 0, 0, 309, 1705, 1, 0, 0, 0, 311, 1711, 1, 0, 0, 0, 313, 1719, 1, 0, 0, 0, 315, 1726, 1, 0, 0, 0, 317, 1737, 1, 0, 0, 0, 319, 1745, 1, 0, 0, 0, 321, 1754, 1, 0, 0, 0, 323, 1762, 1, 0, 0, 0, 325, 1769, 1, 0, 0, 0, 327, 1777, 1, 0, 0, 0, 329, 1784, 1, 0, 0, 0, 331, 1790, 1, 0, 0, 0, 333, 1796, 1, 0, 0, 0, 335, 1801, 1, 0, 0, 0, 337, 1807, 1, 0, 0, 0, 339, 1811, 1, 0, 0, 0, 341, 1816, 1, 0, 0, 0, 343, 1823, 1, 0, 0, 0, 345, 1831, 1, 0, 0, 0, 347, 1838, 1, 0, 0, 0, 349, 1846, 1, 0, 0, 0, 351, 1853, 1, 0, 0, 0, 353, 1869, 1, 0, 0, 0, 355, 1873, 1, 0, 0, 0, 357, 1878, 1, 0, 0, 0, 359, 1885, 1, 0, 0, 0, 361, 1890, 1, 0, 0, 0, 363, 1899, 1, 0, 0, 0, 365, 1904, 1, 0, 0, 0, 367, 1910, 1, 0, 0, 0, 369, 1917, 1, 0, 0, 0, 371, 1931, 1, 0, 0, 0, 373, 1941, 1, 0, 0, 0, 375, 1948, 1, 0, 0, 0, 377, 1955, 1, 0, 0, 0, 379, 1968, 1, 0, 0, 0, 381, 1974, 1, 0, 0, 0, 383, 1981, 1, 0, 0, 0, 385, 1993, 1, 0, 0, 0, 387, 2005, 1, 0, 0, 0, 389, 2010, 1, 0, 0, 0, 391, 2013, 1, 0, 0, 0, 393, 2018, 1, 0, 0, 0, 395, 2027, 1, 0, 0, 0, 397, 2036, 1, 0, 0, 0, 399, 2045, 1, 0, 0, 0, 401, 2053, 1, 0, 0, 0, 403, 2063, 1, 0, 0, 0, 405, 2069, 1, 0, 0, 0, 407, 2076, 1, 0, 0, 0, 409, 2082, 1, 0, 0, 0, 411, 2086, 1, 0, 0, 0, 413, 2091, 1, 0, 0, 0, 415, 2097, 1, 0, 0, 0, 417, 2107, 1, 0, 0, 0, 419, 2114, 1, 0, 0, 0, 421, 2122, 1, 0, 0, 0, 423, 2126, 1, 0, 0, 0, 425, 2132, 1, 0, 0, 0, 427, 2139, 1, 0, 0, 0, 429, 2144, 1, 0, 0, 0, 431, 2150, 1, 0, 0, 0, 433, 2155, 1, 0, 0, 0, 435, 2161, 1, 0, 0, 0, 437, 2166, 1, 0, 0, 0, 439, 2171, 1, 0, 0, 0, 441, 2177, 1, 0, 0, 0, 443, 2186, 1, 0, 0, 0, 445, 2190, 1, 0, 0, 0, 447, 2195, 1, 0, 0, 0, 449, 2208, 1, 0, 0, 0, 451, 2215, 1, 0, 0, 0, 453, 2226, 1, 0, 0, 0, 455, 2237, 1, 0, 0, 0, 457, 2242, 1, 0, 0, 0, 459, 2251, 1, 0, 0, 0, 461, 2262, 1, 0, 0, 0, 463, 2272, 1, 0, 0, 0, 465, 2282, 1, 0, 0, 0, 467, 2288, 1, 0, 0, 0, 469, 2290, 1, 0, 0, 0, 471, 2292, 1, 0, 0, 0, 473, 2295, 1, 0, 0, 0, 475, 2297, 1, 0, 0, 0, 477, 2300, 1, 0, 0, 0, 479, 2302, 1, 0, 0, 0, 481, 2304, 1, 0, 0, 0, 483, 2306, 1, 0, 0, 0, 485, 2308, 1, 0, 0, 0, 487, 2310, 1, 0, 0, 0, 489, 2313, 1, 0, 0, 0, 491, 2315, 1, 0, 0, 0, 493, 2317, 1, 0, 0, 0, 495, 2319, 1, 0, 0, 0, 497, 2321, 1, 0, 0, 0, 499, 2323, 1, 0, 0, 0, 501, 2325, 1, 0, 0, 0, 503, 2327, 1, 0, 0, 0, 505, 2329, 1, 0, 0, 0, 507, 2331, 1, 0, 0, 0, 509, 2333, 1, 0, 0, 0, 511, 2335, 1, 0, 0, 0, 513, 2337, 1, 0, 0, 0, 515, 2360, 1, 0, 0, 0, 517, 2362, 1, 0, 0, 0, 519, 2376, 1, 0, 0, 0, 521, 2388, 1, 0, 0, 0, 523, 2410, 1, 0, 0, 0, 525, 2436, 1, 0, 0, 0, 527, 2440, 1, 0, 0, 0, 529, 2450, 1, 0, 0, 0, 531, 2458, 1, 0, 0, 0, 533, 2469, 1, 0, 0, 0, 535, 2480, 1, 0, 0, 0, 537, 2503, 1, 0, 0, 0, 539, 2531, 1, 0, 0, 0, 541, 2549, 1, 0, 0, 0, 543, 2558, 1, 0, 0, 0, 545, 2560, 1, 0, 0, 0, 547, 2562, 1, 0, 0, 0, 549, 2579, 1, 0, 0, 0, 551, 2594, 1, 0, 0, 0, 553, 554, 7, 0, 0, 0, 554, 555, 7, 1, 0, 0, 555, 556, 7, 1, 0, 0, 556, 2, 1, 0, 0, 0, 557, 558, 7, 0, 0, 0, 558, 559, 7, 2, 0, 0, 559, 560, 7, 2, 0, 0, 560, 4, 1, 0, 0, 0, 561, 562, 7, 0, 0, 0, 562, 563, 7, 3, 0, 0, 563, 564, 7, 0, 0, 0, 564, 565, 7, 2, 0, 0, 565, 566, 7, 4, 0, 0, 566, 567, 7, 5, 0, 0, 567, 568, 7, 6, 0, 0, 568, 569, 7, 7, 0, 0, 569, 6, 1, 0, 0, 0, 570, 571, 7, 0, 0, 0, 571, 572, 7, 2, 0, 0, 572, 573, 7, 5, 0, 0, 573, 574, 7, 8, 0, 0, 574, 575, 7, 9, 0, 0, 575, 8, 1, 0, 0, 0, 576, 577, 7, 0, 0, 0, 577, 578, 7, 3, 0, 0, 578, 579, 7, 1, 0, 0, 579, 10, 1, 0, 0, 0, 580, 581, 7, 0, 0, 0, 581, 582, 7, 3, 0, 0, 582, 583, 7, 4, 0, 0, 583, 12, 1, 0, 0, 0, 584, 585, 7, 0, 0, 0, 585, 586, 7, 3, 0, 0, 586, 587, 7, 5, 0, 0, 587, 588, 7, 6, 0, 0, 588, 14, 1, 0, 0, 0, 589, 590, 7, 0, 0, 0, 590, 591, 7, 9, 0, 0, 591, 592, 7, 9, 0, 0, 592, 593, 7, 0, 0, 0, 593, 594, 7, 4, 0, 0, 594, 16, 1, 0, 0, 0, 595, 596, 7, 0, 0, 0, 596, 597, 7, 10, 0, 0, 597, 18, 1, 0, 0, 0, 598, 599, 7, 0, 0, 0, 599, 600, 7, 10, 0, 0, 600, 601, 7, 7, 0, 0, 601, 20, 1, 0, 0, 0, 602, 603, 7, 0, 0, 0, 603, 604, 7, 5, 0, 0, 604, 22, 1, 0, 0, 0, 605, 606, 7, 0, 0, 0, 606, 607, 7, 11, 0, 0, 607, 608, 7, 11, 0, 0, 608, 609, 7, 9, 0, 0, 609, 610, 7, 8, 0, 0, 610, 611, 7, 11, 0, 0, 611, 612, 7, 0, 0, 0, 612, 613, 7, 5, 0, 0, 613, 614, 7, 8, 0, 0, 614, 24, 1, 0, 0, 0, 615, 616, 7, 0, 0, 0, 616, 617, 7, 12, 0, 0, 617, 618, 7, 5, 0, 0, 618, 619, 7, 13, 0, 0, 619, 620, 7, 14, 0, 0, 620, 621, 7, 9, 0, 0, 621, 622, 7, 6, 0, 0, 622, 623, 7, 15, 0, 0, 623, 624, 7, 0, 0, 0, 624, 625, 7, 5, 0, 0, 625, 626, 7, 6, 0, 0, 626, 627, 7, 14, 0, 0, 627, 628, 7, 3, 0, 0, 628, 26, 1, 0, 0, 0, 629, 630, 7, 16, 0, 0, 630, 631, 7, 8, 0, 0, 631, 632, 7, 9, 0, 0, 632, 633, 7, 3, 0, 0, 633, 634, 7, 14, 0, 0, 634, 635, 7, 12, 0, 0, 635, 636, 7, 2, 0, 0, 636, 637, 7, 2, 0, 0, 637, 638, 7, 6, 0, 0, 638, 28, 1, 0, 0, 0, 639, 640, 7, 16, 0, 0, 640, 641, 7, 8, 0, 0, 641, 642, 7, 5, 0, 0, 642, 643, 7, 17, 0, 0, 643, 644, 7, 8, 0, 0, 644, 645, 7, 8, 0, 0, 645, 646, 7, 3, 0, 0, 646, 30, 1, 0, 0, 0, 647, 648, 7, 16, 0, 0, 648, 649, 7, 2, 0, 0, 649, 650, 7, 14, 0, 0, 650, 651, 7, 7, 0, 0, 651, 652, 7, 18, 0, 0, 652, 653, 5, 95, 0, 0, 653, 654, 7, 10, 0, 0, 654, 655, 7, 6, 0, 0, 655, 656, 7, 15, 0, 0, 656, 657, 7, 8, 0, 0, 657, 32, 1, 0, 0, 0, 658, 659, 7, 19, 0, 0, 659, 660, 7, 0, 0, 0, 660, 661, 7, 9, 0, 0, 661, 662, 7, 5, 0, 0, 662, 663, 7, 6, 0, 0, 663, 664, 7, 5, 0, 0, 664, 665, 7, 6, 0, 0, 665, 666, 7, 14, 0, 0, 666, 667, 7, 3, 0, 0, 667, 668, 7, 8, 0, 0, 668, 669, 7, 1, 0, 0, 669, 34, 1, 0, 0, 0, 670, 671, 7, 19, 0, 0, 671, 672, 7, 9, 0, 0, 672, 673, 7, 8, 0, 0, 673, 674, 7, 19, 0, 0, 674, 675, 7, 0, 0, 0, 675, 676, 7, 9, 0, 0, 676, 677, 7, 8, 0, 0, 677, 678, 5, 95, 0, 0, 678, 679, 7, 20, 0, 0, 679, 680, 7, 3, 0, 0, 680, 36, 1, 0, 0, 0, 681, 682, 7, 8, 0, 0, 682, 683, 7, 21, 0, 0, 683, 684, 7, 5, 0, 0, 684, 685, 7, 8, 0, 0, 685, 686, 7, 9, 0, 0, 686, 687, 7, 3, 0, 0, 687, 688, 7, 0, 0, 0, 688, 689, 7, 2, 0, 0, 689, 38, 1, 0, 0, 0, 690, 691, 7, 7, 0, 0, 691, 692, 7, 2, 0, 0, 692, 693, 7, 14, 0, 0, 693, 694, 7, 10, 0, 0, 694, 695, 7, 8, 0, 0, 695, 696, 7, 20, 0, 0, 696, 697, 7, 3, 0, 0, 697, 40, 1, 0, 0, 0, 698, 699, 7, 10, 0, 0, 699, 700, 7, 14, 0, 0, 700, 701, 7, 9, 0, 0, 701, 702, 7, 5, 0, 0, 702, 42, 1, 0, 0, 0, 703, 704, 7, 19, 0, 0, 704, 705, 7, 12, 0, 0, 705, 706, 7, 9, 0, 0, 706, 707, 7, 11, 0, 0, 707, 708, 7, 8, 0, 0, 708, 44, 1, 0, 0, 0, 709, 710, 7, 10, 0, 0, 710, 711, 7, 5, 0, 0, 711, 712, 7, 14, 0, 0, 712, 713, 7, 9, 0, 0, 713, 714, 7, 8, 0, 0, 714, 715, 7, 1, 0, 0, 715, 46, 1, 0, 0, 0, 716, 717, 7, 2, 0, 0, 717, 718, 7, 14, 0, 0, 718, 719, 7, 7, 0, 0, 719, 720, 7, 0, 0, 0, 720, 721, 7, 5, 0, 0, 721, 722, 7, 6, 0, 0, 722, 723, 7, 14, 0, 0, 723, 724, 7, 3, 0, 0, 724, 48, 1, 0, 0, 0, 725, 726, 7, 5, 0, 0, 726, 727, 7, 16, 0, 0, 727, 728, 7, 2, 0, 0, 728, 729, 7, 19, 0, 0, 729, 730, 7, 9, 0, 0, 730, 731, 7, 14, 0, 0, 731, 732, 7, 19, 0, 0, 732, 733, 7, 8, 0, 0, 733, 734, 7, 9, 0, 0, 734, 735, 7, 5, 0, 0, 735, 736, 7, 6, 0, 0, 736, 737, 7, 8, 0, 0, 737, 738, 7, 10, 0, 0, 738, 50, 1, 0, 0, 0, 739, 740, 7, 16, 0, 0, 740, 741, 7, 4, 0, 0, 741, 52, 1, 0, 0, 0, 742, 743, 7, 7, 0, 0, 743, 744, 7, 0, 0, 0, 744, 745, 7, 10, 0, 0, 745, 746, 7, 7, 0, 0, 746, 747, 7, 0, 0, 0, 747, 748, 7, 1, 0, 0, 748, 749, 7, 8, 0, 0, 749, 54, 1, 0, 0, 0, 750, 751, 7, 7, 0, 0, 751, 752, 7, 0, 0, 0, 752, 753, 7, 10, 0, 0, 753, 754, 7, 8, 0, 0, 754, 56, 1, 0, 0, 0, 755, 756, 7, 7, 0, 0, 756, 757, 7, 0, 0, 0, 757, 758, 7, 10, 0, 0, 758, 759, 7, 5, 0, 0, 759, 58, 1, 0, 0, 0, 760, 761, 7, 7, 0, 0, 761, 762, 7, 0, 0, 0, 762, 763, 7, 7, 0, 0, 763, 764, 7, 13, 0, 0, 764, 765, 7, 8, 0, 0, 765, 766, 7, 1, 0, 0, 766, 60, 1, 0, 0, 0, 767, 768, 7, 7, 0, 0, 768, 769, 7, 13, 0, 0, 769, 770, 7, 0, 0, 0, 770, 771, 7, 3, 0, 0, 771, 772, 7, 11, 0, 0, 772, 773, 7, 8, 0, 0, 773, 62, 1, 0, 0, 0, 774, 775, 7, 7, 0, 0, 775, 776, 7, 14, 0, 0, 776, 777, 7, 2, 0, 0, 777, 778, 7, 12, 0, 0, 778, 779, 7, 22, 0, 0, 779, 780, 7, 3, 0, 0, 780, 64, 1, 0, 0, 0, 781, 782, 7, 7, 0, 0, 782, 783, 7, 14, 0, 0, 783, 784, 7, 2, 0, 0, 784, 785, 7, 12, 0, 0, 785, 786, 7, 22, 0, 0, 786, 787, 7, 3, 0, 0, 787, 788, 7, 10, 0, 0, 788, 66, 1, 0, 0, 0, 789, 790, 7, 7, 0, 0, 790, 791, 7, 14, 0, 0, 791, 792, 7, 22, 0, 0, 792, 793, 7, 22, 0, 0, 793, 794, 7, 8, 0, 0, 794, 795, 7, 3, 0, 0, 795, 796, 7, 5, 0, 0, 796, 68, 1, 0, 0, 0, 797, 798, 7, 7, 0, 0, 798, 799, 7, 14, 0, 0, 799, 800, 7, 22, 0, 0, 800, 801, 7, 19, 0, 0, 801, 802, 7, 9, 0, 0, 802, 803, 7, 8, 0, 0, 803, 804, 7, 10, 0, 0, 804, 805, 7, 10, 0, 0, 805, 806, 7, 6, 0, 0, 806, 807, 7, 14, 0, 0, 807, 808, 7, 3, 0, 0, 808, 70, 1, 0, 0, 0, 809, 810, 7, 7, 0, 0, 810, 811, 7, 14, 0, 0, 811, 812, 7, 22, 0, 0, 812, 813, 7, 19, 0, 0, 813, 814, 7, 12, 0, 0, 814, 815, 7, 5, 0, 0, 815, 816, 7, 8, 0, 0, 816, 72, 1, 0, 0, 0, 817, 818, 7, 7, 0, 0, 818, 819, 7, 9, 0, 0, 819, 820, 7, 8, 0, 0, 820, 821, 7, 0, 0, 0, 821, 822, 7, 5, 0, 0, 822, 823, 7, 8, 0, 0, 823, 74, 1, 0, 0, 0, 824, 825, 7, 7, 0, 0, 825, 826, 7, 9, 0, 0, 826, 827, 7, 14, 0, 0, 827, 828, 7, 10, 0, 0, 828, 829, 7, 10, 0, 0, 829, 76, 1, 0, 0, 0, 830, 831, 7, 7, 0, 0, 831, 832, 7, 12, 0, 0, 832, 833, 7, 9, 0, 0, 833, 834, 7, 9, 0, 0, 834, 835, 7, 8, 0, 0, 835, 836, 7, 3, 0, 0, 836, 837, 7, 5, 0, 0, 837, 78, 1, 0, 0, 0, 838, 839, 7, 7, 0, 0, 839, 840, 7, 12, 0, 0, 840, 841, 7, 9, 0, 0, 841, 842, 7, 9, 0, 0, 842, 843, 7, 8, 0, 0, 843, 844, 7, 3, 0, 0, 844, 845, 7, 5, 0, 0, 845, 846, 5, 95, 0, 0, 846, 847, 7, 1, 0, 0, 847, 848, 7, 0, 0, 0, 848, 849, 7, 5, 0, 0, 849, 850, 7, 8, 0, 0, 850, 80, 1, 0, 0, 0, 851, 852, 7, 7, 0, 0, 852, 853, 7, 12, 0, 0, 853, 854, 7, 9, 0, 0, 854, 855, 7, 9, 0, 0, 855, 856, 7, 8, 0, 0, 856, 857, 7, 3, 0, 0, 857, 858, 7, 5, 0, 0, 858, 859, 5, 95, 0, 0, 859, 860, 7, 19, 0, 0, 860, 861, 7, 0, 0, 0, 861, 862, 7, 5, 0, 0, 862, 863, 7, 13, 0, 0, 863, 82, 1, 0, 0, 0, 864, 865, 7, 7, 0, 0, 865, 866, 7, 12, 0, 0, 866, 867, 7, 9, 0, 0, 867, 868, 7, 9, 0, 0, 868, 869, 7, 8, 0, 0, 869, 870, 7, 3, 0, 0, 870, 871, 7, 5, 0, 0, 871, 872, 5, 95, 0, 0, 872, 873, 7, 5, 0, 0, 873, 874, 7, 6, 0, 0, 874, 875, 7, 22, 0, 0, 875, 876, 7, 8, 0, 0, 876, 84, 1, 0, 0, 0, 877, 878, 7, 7, 0, 0, 878, 879, 7, 12, 0, 0, 879, 880, 7, 9, 0, 0, 880, 881, 7, 9, 0, 0, 881, 882, 7, 8, 0, 0, 882, 883, 7, 3, 0, 0, 883, 884, 7, 5, 0, 0, 884, 885, 5, 95, 0, 0, 885, 886, 7, 5, 0, 0, 886, 887, 7, 6, 0, 0, 887, 888, 7, 22, 0, 0, 888, 889, 7, 8, 0, 0, 889, 890, 7, 10, 0, 0, 890, 891, 7, 5, 0, 0, 891, 892, 7, 0, 0, 0, 892, 893, 7, 22, 0, 0, 893, 894, 7, 19, 0, 0, 894, 86, 1, 0, 0, 0, 895, 896, 7, 7, 0, 0, 896, 897, 7, 12, 0, 0, 897, 898, 7, 9, 0, 0, 898, 899, 7, 9, 0, 0, 899, 900, 7, 8, 0, 0, 900, 901, 7, 3, 0, 0, 901, 902, 7, 5, 0, 0, 902, 903, 5, 95, 0, 0, 903, 904, 7, 12, 0, 0, 904, 905, 7, 10, 0, 0, 905, 906, 7, 8, 0, 0, 906, 907, 7, 9, 0, 0, 907, 88, 1, 0, 0, 0, 908, 909, 7, 1, 0, 0, 909, 910, 7, 0, 0, 0, 910, 911, 7, 5, 0, 0, 911, 912, 7, 0, 0, 0, 912, 90, 1, 0, 0, 0, 913, 914, 7, 1, 0, 0, 914, 915, 7, 0, 0, 0, 915, 916, 7, 5, 0, 0, 916, 917, 7, 0, 0, 0, 917, 918, 7, 16, 0, 0, 918, 919, 7, 0, 0, 0, 919, 920, 7, 10, 0, 0, 920, 921, 7, 8, 0, 0, 921, 92, 1, 0, 0, 0, 922, 923, 7, 1, 0, 0, 923, 924, 7, 0, 0, 0, 924, 925, 7, 5, 0, 0, 925, 926, 7, 0, 0, 0, 926, 927, 7, 16, 0, 0, 927, 928, 7, 0, 0, 0, 928, 929, 7, 10, 0, 0, 929, 930, 7, 8, 0, 0, 930, 931, 7, 10, 0, 0, 931, 94, 1, 0, 0, 0, 932, 933, 7, 1, 0, 0, 933, 934, 7, 0, 0, 0, 934, 935, 7, 4, 0, 0, 935, 96, 1, 0, 0, 0, 936, 937, 7, 1, 0, 0, 937, 938, 7, 0, 0, 0, 938, 939, 7, 4, 0, 0, 939, 940, 7, 10, 0, 0, 940, 98, 1, 0, 0, 0, 941, 942, 7, 1, 0, 0, 942, 943, 7, 8, 0, 0, 943, 944, 7, 2, 0, 0, 944, 945, 7, 8, 0, 0, 945, 946, 7, 5, 0, 0, 946, 947, 7, 8, 0, 0, 947, 100, 1, 0, 0, 0, 948, 949, 7, 1, 0, 0, 949, 950, 7, 8, 0, 0, 950, 951, 7, 20, 0, 0, 951, 952, 7, 0, 0, 0, 952, 953, 7, 12, 0, 0, 953, 954, 7, 2, 0, 0, 954, 955, 7, 5, 0, 0, 955, 102, 1, 0, 0, 0, 956, 957, 7, 1, 0, 0, 957, 958, 7, 8, 0, 0, 958, 959, 7, 2, 0, 0, 959, 960, 7, 6, 0, 0, 960, 961, 7, 22, 0, 0, 961, 962, 7, 6, 0, 0, 962, 963, 7, 5, 0, 0, 963, 964, 7, 8, 0, 0, 964, 965, 7, 1, 0, 0, 965, 104, 1, 0, 0, 0, 966, 967, 7, 1, 0, 0, 967, 968, 7, 6, 0, 0, 968, 969, 7, 10, 0, 0, 969, 970, 7, 0, 0, 0, 970, 971, 7, 16, 0, 0, 971, 972, 7, 2, 0, 0, 972, 973, 7, 8, 0, 0, 973, 106, 1, 0, 0, 0, 974, 975, 7, 12, 0, 0, 975, 976, 7, 19, 0, 0, 976, 977, 7, 1, 0, 0, 977, 978, 7, 0, 0, 0, 978, 979, 7, 5, 0, 0, 979, 980, 7, 8, 0, 0, 980, 108, 1, 0, 0, 0, 981, 982, 7, 1, 0, 0, 982, 983, 7, 8, 0, 0, 983, 984, 7, 10, 0, 0, 984, 985, 7, 7, 0, 0, 985, 110, 1, 0, 0, 0, 986, 987, 7, 1, 0, 0, 987, 988, 7, 8, 0, 0, 988, 989, 7, 10, 0, 0, 989, 990, 7, 7, 0, 0, 990, 991, 7, 9, 0, 0, 991, 992, 7, 6, 0, 0, 992, 993, 7, 16, 0, 0, 993, 994, 7, 8, 0, 0, 994, 112, 1, 0, 0, 0, 995, 996, 7, 1, 0, 0, 996, 997, 7, 6, 0, 0, 997, 998, 7, 10, 0, 0, 998, 999, 7, 5, 0, 0, 999, 1000, 7, 6, 0, 0, 1000, 1001, 7, 3, 0, 0, 1001, 1002, 7, 7, 0, 0, 1002, 1003, 7, 5, 0, 0, 1003, 114, 1, 0, 0, 0, 1004, 1005, 7, 1, 0, 0, 1005, 1006, 7, 9, 0, 0, 1006, 1007, 7, 14, 0, 0, 1007, 1008, 7, 19, 0, 0, 1008, 116, 1, 0, 0, 0, 1009, 1010, 7, 8, 0, 0, 1010, 1011, 7, 2, 0, 0, 1011, 1012, 7, 10, 0, 0, 1012, 1013, 7, 8, 0, 0, 1013, 118, 1, 0, 0, 0, 1014, 1015, 7, 8, 0, 0, 1015, 1016, 7, 3, 0, 0, 1016, 1017, 7, 7, 0, 0, 1017, 1018, 7, 14, 0, 0, 1018, 1019, 7, 1, 0, 0, 1019, 1020, 7, 6, 0, 0, 1020, 1021, 7, 3, 0, 0, 1021, 1022, 7, 11, 0, 0, 1022, 120, 1, 0, 0, 0, 1023, 1024, 7, 8, 0, 0, 1024, 1025, 7, 3, 0, 0, 1025, 1026, 7, 1, 0, 0, 1026, 122, 1, 0, 0, 0, 1027, 1028, 7, 8, 0, 0, 1028, 1029, 7, 10, 0, 0, 1029, 1030, 7, 7, 0, 0, 1030, 1031, 7, 0, 0, 0, 1031, 1032, 7, 19, 0, 0, 1032, 1033, 7, 8, 0, 0, 1033, 124, 1, 0, 0, 0, 1034, 1035, 7, 8, 0, 0, 1035, 1036, 7, 10, 0, 0, 1036, 1037, 7, 7, 0, 0, 1037, 1038, 7, 0, 0, 0, 1038, 1039, 7, 19, 0, 0, 1039, 1040, 7, 8, 0, 0, 1040, 1041, 7, 1, 0, 0, 1041, 126, 1, 0, 0, 0, 1042, 1043, 7, 8, 0, 0, 1043, 1044, 7, 21, 0, 0, 1044, 1045, 7, 7, 0, 0, 1045, 1046, 7, 8, 0, 0, 1046, 1047, 7, 19, 0, 0, 1047, 1048, 7, 5, 0, 0, 1048, 128, 1, 0, 0, 0, 1049, 1050, 7, 8, 0, 0, 1050, 1051, 7, 21, 0, 0, 1051, 1052, 7, 7, 0, 0, 1052, 1053, 7, 2, 0, 0, 1053, 1054, 7, 12, 0, 0, 1054, 1055, 7, 1, 0, 0, 1055, 1056, 7, 6, 0, 0, 1056, 1057, 7, 3, 0, 0, 1057, 1058, 7, 11, 0, 0, 1058, 130, 1, 0, 0, 0, 1059, 1060, 7, 8, 0, 0, 1060, 1061, 7, 21, 0, 0, 1061, 1062, 7, 6, 0, 0, 1062, 1063, 7, 10, 0, 0, 1063, 1064, 7, 5, 0, 0, 1064, 1065, 7, 10, 0, 0, 1065, 132, 1, 0, 0, 0, 1066, 1067, 7, 8, 0, 0, 1067, 1068, 7, 21, 0, 0, 1068, 1069, 7, 19, 0, 0, 1069, 1070, 7, 2, 0, 0, 1070, 1071, 7, 0, 0, 0, 1071, 1072, 7, 6, 0, 0, 1072, 1073, 7, 3, 0, 0, 1073, 134, 1, 0, 0, 0, 1074, 1075, 7, 8, 0, 0, 1075, 1076, 7, 21, 0, 0, 1076, 1077, 7, 5, 0, 0, 1077, 1078, 7, 9, 0, 0, 1078, 1079, 7, 0, 0, 0, 1079, 1080, 7, 7, 0, 0, 1080, 1081, 7, 5, 0, 0, 1081, 136, 1, 0, 0, 0, 1082, 1083, 7, 8, 0, 0, 1083, 1084, 7, 21, 0, 0, 1084, 1085, 7, 5, 0, 0, 1085, 1086, 7, 8, 0, 0, 1086, 1087, 7, 3, 0, 0, 1087, 1088, 7, 1, 0, 0, 1088, 1089, 7, 8, 0, 0, 1089, 1090, 7, 1, 0, 0, 1090, 138, 1, 0, 0, 0, 1091, 1092, 7, 20, 0, 0, 1092, 1093, 7, 0, 0, 0, 1093, 1094, 7, 2, 0, 0, 1094, 1095, 7, 10, 0, 0, 1095, 1096, 7, 8, 0, 0, 1096, 140, 1, 0, 0, 0, 1097, 1098, 7, 20, 0, 0, 1098, 1099, 7, 6, 0, 0, 1099, 1100, 7, 8, 0, 0, 1100, 1101, 7, 2, 0, 0, 1101, 1102, 7, 1, 0, 0, 1102, 1103, 7, 10, 0, 0, 1103, 142, 1, 0, 0, 0, 1104, 1105, 7, 20, 0, 0, 1105, 1106, 7, 6, 0, 0, 1106, 1107, 7, 2, 0, 0, 1107, 1108, 7, 8, 0, 0, 1108, 1109, 7, 20, 0, 0, 1109, 1110, 7, 14, 0, 0, 1110, 1111, 7, 9, 0, 0, 1111, 1112, 7, 22, 0, 0, 1112, 1113, 7, 0, 0, 0, 1113, 1114, 7, 5, 0, 0, 1114, 144, 1, 0, 0, 0, 1115, 1116, 7, 20, 0, 0, 1116, 1117, 7, 6, 0, 0, 1117, 1118, 7, 2, 0, 0, 1118, 1119, 7, 8, 0, 0, 1119, 1120, 7, 10, 0, 0, 1120, 146, 1, 0, 0, 0, 1121, 1122, 7, 20, 0, 0, 1122, 1123, 7, 6, 0, 0, 1123, 1124, 7, 2, 0, 0, 1124, 1125, 7, 5, 0, 0, 1125, 1126, 7, 8, 0, 0, 1126, 1127, 7, 9, 0, 0, 1127, 148, 1, 0, 0, 0, 1128, 1129, 7, 20, 0, 0, 1129, 1130, 7, 6, 0, 0, 1130, 1131, 7, 9, 0, 0, 1131, 1132, 7, 10, 0, 0, 1132, 1133, 7, 5, 0, 0, 1133, 150, 1, 0, 0, 0, 1134, 1135, 7, 20, 0, 0, 1135, 1136, 7, 6, 0, 0, 1136, 1137, 7, 3, 0, 0, 1137, 1138, 7, 0, 0, 0, 1138, 1139, 7, 2, 0, 0, 1139, 1140, 7, 6, 0, 0, 1140, 1141, 7, 15, 0, 0, 1141, 1142, 7, 8, 0, 0, 1142, 1143, 5, 95, 0, 0, 1143, 1144, 7, 20, 0, 0, 1144, 1145, 7, 3, 0, 0, 1145, 152, 1, 0, 0, 0, 1146, 1147, 7, 20, 0, 0, 1147, 1148, 7, 14, 0, 0, 1148, 1149, 7, 2, 0, 0, 1149, 1150, 7, 2, 0, 0, 1150, 1151, 7, 14, 0, 0, 1151, 1152, 7, 17, 0, 0, 1152, 1153, 7, 6, 0, 0, 1153, 1154, 7, 3, 0, 0, 1154, 1155, 7, 11, 0, 0, 1155, 154, 1, 0, 0, 0, 1156, 1157, 7, 20, 0, 0, 1157, 1158, 7, 14, 0, 0, 1158, 1159, 7, 9, 0, 0, 1159, 156, 1, 0, 0, 0, 1160, 1161, 7, 20, 0, 0, 1161, 1162, 7, 14, 0, 0, 1162, 1163, 7, 9, 0, 0, 1163, 1164, 7, 22, 0, 0, 1164, 1165, 7, 0, 0, 0, 1165, 1166, 7, 5, 0, 0, 1166, 158, 1, 0, 0, 0, 1167, 1168, 7, 20, 0, 0, 1168, 1169, 7, 14, 0, 0, 1169, 1170, 7, 9, 0, 0, 1170, 1171, 7, 22, 0, 0, 1171, 1172, 7, 0, 0, 0, 1172, 1173, 7, 5, 0, 0, 1173, 1174, 7, 5, 0, 0, 1174, 1175, 7, 8, 0, 0, 1175, 1176, 7, 1, 0, 0, 1176, 160, 1, 0, 0, 0, 1177, 1178, 7, 20, 0, 0, 1178, 1179, 7, 14, 0, 0, 1179, 1180, 7, 9, 0, 0, 1180, 1181, 7, 8, 0, 0, 1181, 1182, 7, 6, 0, 0, 1182, 1183, 7, 11, 0, 0, 1183, 1184, 7, 3, 0, 0, 1184, 162, 1, 0, 0, 0, 1185, 1186, 7, 20, 0, 0, 1186, 1187, 7, 9, 0, 0, 1187, 1188, 7, 14, 0, 0, 1188, 1189, 7, 22, 0, 0, 1189, 164, 1, 0, 0, 0, 1190, 1191, 7, 20, 0, 0, 1191, 1192, 7, 12, 0, 0, 1192, 1193, 7, 2, 0, 0, 1193, 1194, 7, 2, 0, 0, 1194, 166, 1, 0, 0, 0, 1195, 1196, 7, 20, 0, 0, 1196, 1197, 7, 12, 0, 0, 1197, 1198, 7, 3, 0, 0, 1198, 1199, 7, 7, 0, 0, 1199, 1200, 7, 5, 0, 0, 1200, 1201, 7, 6, 0, 0, 1201, 1202, 7, 14, 0, 0, 1202, 1203, 7, 3, 0, 0, 1203, 168, 1, 0, 0, 0, 1204, 1205, 7, 20, 0, 0, 1205, 1206, 7, 12, 0, 0, 1206, 1207, 7, 3, 0, 0, 1207, 1208, 7, 7, 0, 0, 1208, 1209, 7, 5, 0, 0, 1209, 1210, 7, 6, 0, 0, 1210, 1211, 7, 14, 0, 0, 1211, 1212, 7, 3, 0, 0, 1212, 1213, 7, 10, 0, 0, 1213, 170, 1, 0, 0, 0, 1214, 1215, 7, 11, 0, 0, 1215, 1216, 7, 9, 0, 0, 1216, 1217, 7, 0, 0, 0, 1217, 1218, 7, 3, 0, 0, 1218, 1219, 7, 5, 0, 0, 1219, 172, 1, 0, 0, 0, 1220, 1221, 7, 11, 0, 0, 1221, 1222, 7, 9, 0, 0, 1222, 1223, 7, 14, 0, 0, 1223, 1224, 7, 12, 0, 0, 1224, 1225, 7, 19, 0, 0, 1225, 174, 1, 0, 0, 0, 1226, 1227, 7, 11, 0, 0, 1227, 1228, 7, 9, 0, 0, 1228, 1229, 7, 14, 0, 0, 1229, 1230, 7, 12, 0, 0, 1230, 1231, 7, 19, 0, 0, 1231, 1232, 7, 6, 0, 0, 1232, 1233, 7, 3, 0, 0, 1233, 1234, 7, 11, 0, 0, 1234, 176, 1, 0, 0, 0, 1235, 1236, 7, 13, 0, 0, 1236, 1237, 7, 0, 0, 0, 1237, 1238, 7, 10, 0, 0, 1238, 1239, 7, 13, 0, 0, 1239, 178, 1, 0, 0, 0, 1240, 1241, 7, 13, 0, 0, 1241, 1242, 7, 0, 0, 0, 1242, 1243, 7, 23, 0, 0, 1243, 1244, 7, 6, 0, 0, 1244, 1245, 7, 3, 0, 0, 1245, 1246, 7, 11, 0, 0, 1246, 180, 1, 0, 0, 0, 1247, 1248, 7, 13, 0, 0, 1248, 1249, 7, 14, 0, 0, 1249, 1250, 7, 12, 0, 0, 1250, 1251, 7, 9, 0, 0, 1251, 182, 1, 0, 0, 0, 1252, 1253, 7, 13, 0, 0, 1253, 1254, 7, 14, 0, 0, 1254, 1255, 7, 12, 0, 0, 1255, 1256, 7, 9, 0, 0, 1256, 1257, 7, 10, 0, 0, 1257, 184, 1, 0, 0, 0, 1258, 1259, 7, 6, 0, 0, 1259, 1260, 7, 20, 0, 0, 1260, 186, 1, 0, 0, 0, 1261, 1262, 7, 6, 0, 0, 1262, 1263, 7, 3, 0, 0, 1263, 188, 1, 0, 0, 0, 1264, 1265, 7, 6, 0, 0, 1265, 1266, 7, 3, 0, 0, 1266, 1267, 7, 7, 0, 0, 1267, 1268, 7, 2, 0, 0, 1268, 1269, 7, 12, 0, 0, 1269, 1270, 7, 1, 0, 0, 1270, 1271, 7, 6, 0, 0, 1271, 1272, 7, 3, 0, 0, 1272, 1273, 7, 11, 0, 0, 1273, 190, 1, 0, 0, 0, 1274, 1275, 7, 6, 0, 0, 1275, 1276, 7, 3, 0, 0, 1276, 1277, 7, 7, 0, 0, 1277, 1278, 7, 9, 0, 0, 1278, 1279, 7, 8, 0, 0, 1279, 1280, 7, 22, 0, 0, 1280, 1281, 7, 8, 0, 0, 1281, 1282, 7, 3, 0, 0, 1282, 1283, 7, 5, 0, 0, 1283, 1284, 7, 0, 0, 0, 1284, 1285, 7, 2, 0, 0, 1285, 192, 1, 0, 0, 0, 1286, 1287, 7, 6, 0, 0, 1287, 1288, 7, 3, 0, 0, 1288, 1289, 7, 3, 0, 0, 1289, 1290, 7, 8, 0, 0, 1290, 1291, 7, 9, 0, 0, 1291, 194, 1, 0, 0, 0, 1292, 1293, 7, 6, 0, 0, 1293, 1294, 7, 3, 0, 0, 1294, 1295, 7, 19, 0, 0, 1295, 1296, 7, 0, 0, 0, 1296, 1297, 7, 5, 0, 0, 1297, 1298, 7, 13, 0, 0, 1298, 196, 1, 0, 0, 0, 1299, 1300, 7, 6, 0, 0, 1300, 1301, 7, 3, 0, 0, 1301, 1302, 7, 10, 0, 0, 1302, 1303, 7, 8, 0, 0, 1303, 1304, 7, 9, 0, 0, 1304, 1305, 7, 5, 0, 0, 1305, 198, 1, 0, 0, 0, 1306, 1307, 7, 6, 0, 0, 1307, 1308, 7, 3, 0, 0, 1308, 1309, 7, 5, 0, 0, 1309, 1310, 7, 8, 0, 0, 1310, 1311, 7, 9, 0, 0, 1311, 1312, 7, 10, 0, 0, 1312, 1313, 7, 8, 0, 0, 1313, 1314, 7, 7, 0, 0, 1314, 1315, 7, 5, 0, 0, 1315, 200, 1, 0, 0, 0, 1316, 1317, 7, 6, 0, 0, 1317, 1318, 7, 3, 0, 0, 1318, 1319, 7, 5, 0, 0, 1319, 1320, 7, 8, 0, 0, 1320, 1321, 7, 9, 0, 0, 1321, 1322, 7, 23, 0, 0, 1322, 1323, 7, 0, 0, 0, 1323, 1324, 7, 2, 0, 0, 1324, 202, 1, 0, 0, 0, 1325, 1326, 7, 6, 0, 0, 1326, 1327, 7, 3, 0, 0, 1327, 1328, 7, 5, 0, 0, 1328, 1329, 7, 8, 0, 0, 1329, 1330, 7, 9, 0, 0, 1330, 1331, 7, 22, 0, 0, 1331, 1332, 7, 8, 0, 0, 1332, 1333, 7, 1, 0, 0, 1333, 1334, 7, 6, 0, 0, 1334, 1335, 7, 0, 0, 0, 1335, 1336, 7, 5, 0, 0, 1336, 1337, 7, 8, 0, 0, 1337, 204, 1, 0, 0, 0, 1338, 1339, 7, 6, 0, 0, 1339, 1340, 7, 3, 0, 0, 1340, 1341, 7, 5, 0, 0, 1341, 1342, 7, 14, 0, 0, 1342, 206, 1, 0, 0, 0, 1343, 1344, 7, 6, 0, 0, 1344, 1345, 7, 3, 0, 0, 1345, 1346, 7, 6, 0, 0, 1346, 1347, 7, 5, 0, 0, 1347, 1348, 5, 95, 0, 0, 1348, 1349, 7, 20, 0, 0, 1349, 1350, 7, 3, 0, 0, 1350, 208, 1, 0, 0, 0, 1351, 1352, 7, 6, 0, 0, 1352, 1353, 7, 9, 0, 0, 1353, 1354, 7, 8, 0, 0, 1354, 1355, 7, 11, 0, 0, 1355, 1356, 7, 8, 0, 0, 1356, 1357, 7, 21, 0, 0, 1357, 1358, 7, 19, 0, 0, 1358, 210, 1, 0, 0, 0, 1359, 1360, 7, 6, 0, 0, 1360, 1361, 7, 2, 0, 0, 1361, 1362, 7, 6, 0, 0, 1362, 1363, 7, 18, 0, 0, 1363, 1364, 7, 8, 0, 0, 1364, 212, 1, 0, 0, 0, 1365, 1366, 7, 6, 0, 0, 1366, 1367, 7, 3, 0, 0, 1367, 1368, 7, 23, 0, 0, 1368, 1369, 7, 0, 0, 0, 1369, 1370, 7, 2, 0, 0, 1370, 1371, 7, 6, 0, 0, 1371, 1372, 7, 1, 0, 0, 1372, 1373, 7, 0, 0, 0, 1373, 1374, 7, 5, 0, 0, 1374, 1375, 7, 8, 0, 0, 1375, 214, 1, 0, 0, 0, 1376, 1377, 7, 6, 0, 0, 1377, 1378, 7, 10, 0, 0, 1378, 216, 1, 0, 0, 0, 1379, 1380, 7, 24, 0, 0, 1380, 1381, 7, 14, 0, 0, 1381, 1382, 7, 6, 0, 0, 1382, 1383, 7, 3, 0, 0, 1383, 218, 1, 0, 0, 0, 1384, 1385, 7, 18, 0, 0, 1385, 1386, 7, 8, 0, 0, 1386, 1387, 7, 4, 0, 0, 1387, 220, 1, 0, 0, 0, 1388, 1389, 7, 18, 0, 0, 1389, 1390, 7, 12, 0, 0, 1390, 1391, 7, 1, 0, 0, 1391, 1392, 7, 12, 0, 0, 1392, 222, 1, 0, 0, 0, 1393, 1394, 7, 2, 0, 0, 1394, 1395, 7, 0, 0, 0, 1395, 1396, 7, 10, 0, 0, 1396, 1397, 7, 5, 0, 0, 1397, 224, 1, 0, 0, 0, 1398, 1399, 7, 2, 0, 0, 1399, 1400, 7, 0, 0, 0, 1400, 1401, 7, 5, 0, 0, 1401, 1402, 7, 8, 0, 0, 1402, 1403, 7, 9, 0, 0, 1403, 1404, 7, 0, 0, 0, 1404, 1405, 7, 2, 0, 0, 1405, 226, 1, 0, 0, 0, 1406, 1407, 7, 2, 0, 0, 1407, 1408, 7, 8, 0, 0, 1408, 1409, 7, 20, 0, 0, 1409, 1410, 7, 5, 0, 0, 1410, 228, 1, 0, 0, 0, 1411, 1412, 7, 2, 0, 0, 1412, 1413, 7, 6, 0, 0, 1413, 1414, 7, 18, 0, 0, 1414, 1415, 7, 8, 0, 0, 1415, 230, 1, 0, 0, 0, 1416, 1417, 7, 2, 0, 0, 1417, 1418, 7, 6, 0, 0, 1418, 1419, 7, 22, 0, 0, 1419, 1420, 7, 6, 0, 0, 1420, 1421, 7, 5, 0, 0, 1421, 232, 1, 0, 0, 0, 1422, 1423, 7, 2, 0, 0, 1423, 1424, 7, 6, 0, 0, 1424, 1425, 7, 3, 0, 0, 1425, 1426, 7, 8, 0, 0, 1426, 1427, 7, 10, 0, 0, 1427, 234, 1, 0, 0, 0, 1428, 1429, 7, 2, 0, 0, 1429, 1430, 7, 14, 0, 0, 1430, 1431, 7, 0, 0, 0, 1431, 1432, 7, 1, 0, 0, 1432, 236, 1, 0, 0, 0, 1433, 1434, 7, 2, 0, 0, 1434, 1435, 7, 14, 0, 0, 1435, 1436, 7, 7, 0, 0, 1436, 1437, 7, 0, 0, 0, 1437, 1438, 7, 2, 0, 0, 1438, 1439, 7, 5, 0, 0, 1439, 1440, 7, 6, 0, 0, 1440, 1441, 7, 22, 0, 0, 1441, 1442, 7, 8, 0, 0, 1442, 238, 1, 0, 0, 0, 1443, 1444, 7, 2, 0, 0, 1444, 1445, 7, 14, 0, 0, 1445, 1446, 7, 7, 0, 0, 1446, 1447, 7, 0, 0, 0, 1447, 1448, 7, 2, 0, 0, 1448, 1449, 7, 5, 0, 0, 1449, 1450, 7, 6, 0, 0, 1450, 1451, 7, 22, 0, 0, 1451, 1452, 7, 8, 0, 0, 1452, 1453, 7, 10, 0, 0, 1453, 1454, 7, 5, 0, 0, 1454, 1455, 7, 0, 0, 0, 1455, 1456, 7, 22, 0, 0, 1456, 1457, 7, 19, 0, 0, 1457, 240, 1, 0, 0, 0, 1458, 1459, 7, 22, 0, 0, 1459, 1460, 7, 8, 0, 0, 1460, 1461, 7, 5, 0, 0, 1461, 1462, 7, 0, 0, 0, 1462, 1463, 7, 1, 0, 0, 1463, 1464, 7, 0, 0, 0, 1464, 1465, 7, 5, 0, 0, 1465, 1466, 7, 0, 0, 0, 1466, 242, 1, 0, 0, 0, 1467, 1468, 7, 22, 0, 0, 1468, 1469, 7, 0, 0, 0, 1469, 1470, 7, 19, 0, 0, 1470, 244, 1, 0, 0, 0, 1471, 1472, 7, 22, 0, 0, 1472, 1473, 7, 6, 0, 0, 1473, 1474, 7, 3, 0, 0, 1474, 1475, 7, 12, 0, 0, 1475, 1476, 7, 5, 0, 0, 1476, 1477, 7, 8, 0, 0, 1477, 246, 1, 0, 0, 0, 1478, 1479, 7, 22, 0, 0, 1479, 1480, 7, 6, 0, 0, 1480, 1481, 7, 3, 0, 0, 1481, 1482, 7, 12, 0, 0, 1482, 1483, 7, 5, 0, 0, 1483, 1484, 7, 8, 0, 0, 1484, 1485, 7, 10, 0, 0, 1485, 248, 1, 0, 0, 0, 1486, 1487, 7, 22, 0, 0, 1487, 1488, 7, 14, 0, 0, 1488, 1489, 7, 3, 0, 0, 1489, 1490, 7, 5, 0, 0, 1490, 1491, 7, 13, 0, 0, 1491, 250, 1, 0, 0, 0, 1492, 1493, 7, 22, 0, 0, 1493, 1494, 7, 14, 0, 0, 1494, 1495, 7, 3, 0, 0, 1495, 1496, 7, 5, 0, 0, 1496, 1497, 7, 13, 0, 0, 1497, 1498, 7, 10, 0, 0, 1498, 252, 1, 0, 0, 0, 1499, 1500, 7, 22, 0, 0, 1500, 1501, 7, 8, 0, 0, 1501, 1502, 7, 9, 0, 0, 1502, 1503, 7, 11, 0, 0, 1503, 1504, 7, 8, 0, 0, 1504, 1505, 5, 95, 0, 0, 1505, 1506, 7, 20, 0, 0, 1506, 1507, 7, 3, 0, 0, 1507, 254, 1, 0, 0, 0, 1508, 1509, 7, 3, 0, 0, 1509, 1510, 7, 20, 0, 0, 1510, 1511, 7, 7, 0, 0, 1511, 256, 1, 0, 0, 0, 1512, 1513, 7, 3, 0, 0, 1513, 1514, 7, 20, 0, 0, 1514, 1515, 7, 1, 0, 0, 1515, 258, 1, 0, 0, 0, 1516, 1517, 7, 3, 0, 0, 1517, 1518, 7, 20, 0, 0, 1518, 1519, 7, 18, 0, 0, 1519, 1520, 7, 7, 0, 0, 1520, 260, 1, 0, 0, 0, 1521, 1522, 7, 3, 0, 0, 1522, 1523, 7, 20, 0, 0, 1523, 1524, 7, 18, 0, 0, 1524, 1525, 7, 1, 0, 0, 1525, 262, 1, 0, 0, 0, 1526, 1527, 7, 3, 0, 0, 1527, 1528, 7, 14, 0, 0, 1528, 1529, 7, 9, 0, 0, 1529, 1530, 7, 22, 0, 0, 1530, 1531, 7, 0, 0, 0, 1531, 1532, 7, 2, 0, 0, 1532, 1533, 7, 6, 0, 0, 1533, 1534, 7, 15, 0, 0, 1534, 1535, 7, 8, 0, 0, 1535, 264, 1, 0, 0, 0, 1536, 1537, 7, 3, 0, 0, 1537, 1538, 7, 14, 0, 0, 1538, 1539, 7, 5, 0, 0, 1539, 266, 1, 0, 0, 0, 1540, 1541, 7, 3, 0, 0, 1541, 1542, 7, 12, 0, 0, 1542, 1543, 7, 2, 0, 0, 1543, 1544, 7, 2, 0, 0, 1544, 268, 1, 0, 0, 0, 1545, 1546, 7, 3, 0, 0, 1546, 1547, 7, 12, 0, 0, 1547, 1548, 7, 2, 0, 0, 1548, 1549, 7, 2, 0, 0, 1549, 1550, 7, 10, 0, 0, 1550, 270, 1, 0, 0, 0, 1551, 1552, 7, 14, 0, 0, 1552, 1553, 7, 20, 0, 0, 1553, 1554, 7, 20, 0, 0, 1554, 1555, 7, 10, 0, 0, 1555, 1556, 7, 8, 0, 0, 1556, 1557, 7, 5, 0, 0, 1557, 272, 1, 0, 0, 0, 1558, 1559, 7, 14, 0, 0, 1559, 1560, 7, 3, 0, 0, 1560, 274, 1, 0, 0, 0, 1561, 1562, 7, 14, 0, 0, 1562, 1563, 7, 19, 0, 0, 1563, 1564, 7, 5, 0, 0, 1564, 1565, 7, 6, 0, 0, 1565, 1566, 7, 14, 0, 0, 1566, 1567, 7, 3, 0, 0, 1567, 276, 1, 0, 0, 0, 1568, 1569, 7, 14, 0, 0, 1569, 1570, 7, 9, 0, 0, 1570, 278, 1, 0, 0, 0, 1571, 1572, 7, 14, 0, 0, 1572, 1573, 7, 9, 0, 0, 1573, 1574, 7, 1, 0, 0, 1574, 1575, 7, 8, 0, 0, 1575, 1576, 7, 9, 0, 0, 1576, 280, 1, 0, 0, 0, 1577, 1578, 7, 14, 0, 0, 1578, 1579, 7, 9, 0, 0, 1579, 1580, 7, 1, 0, 0, 1580, 1581, 7, 6, 0, 0, 1581, 1582, 7, 3, 0, 0, 1582, 1583, 7, 0, 0, 0, 1583, 1584, 7, 2, 0, 0, 1584, 1585, 7, 6, 0, 0, 1585, 1586, 7, 5, 0, 0, 1586, 1587, 7, 4, 0, 0, 1587, 282, 1, 0, 0, 0, 1588, 1589, 7, 14, 0, 0, 1589, 1590, 7, 12, 0, 0, 1590, 1591, 7, 5, 0, 0, 1591, 1592, 7, 8, 0, 0, 1592, 1593, 7, 9, 0, 0, 1593, 284, 1, 0, 0, 0, 1594, 1595, 7, 14, 0, 0, 1595, 1596, 7, 17, 0, 0, 1596, 1597, 7, 3, 0, 0, 1597, 1598, 7, 8, 0, 0, 1598, 1599, 7, 9, 0, 0, 1599, 286, 1, 0, 0, 0, 1600, 1601, 7, 14, 0, 0, 1601, 1602, 7, 23, 0, 0, 1602, 1603, 7, 8, 0, 0, 1603, 1604, 7, 9, 0, 0, 1604, 288, 1, 0, 0, 0, 1605, 1606, 7, 14, 0, 0, 1606, 1607, 7, 23, 0, 0, 1607, 1608, 7, 8, 0, 0, 1608, 1609, 7, 9, 0, 0, 1609, 1610, 7, 17, 0, 0, 1610, 1611, 7, 9, 0, 0, 1611, 1612, 7, 6, 0, 0, 1612, 1613, 7, 5, 0, 0, 1613, 1614, 7, 8, 0, 0, 1614, 290, 1, 0, 0, 0, 1615, 1616, 7, 19, 0, 0, 1616, 1617, 7, 0, 0, 0, 1617, 1618, 7, 9, 0, 0, 1618, 1619, 7, 5, 0, 0, 1619, 1620, 7, 6, 0, 0, 1620, 1621, 7, 5, 0, 0, 1621, 1622, 7, 6, 0, 0, 1622, 1623, 7, 14, 0, 0, 1623, 1624, 7, 3, 0, 0, 1624, 292, 1, 0, 0, 0, 1625, 1626, 7, 19, 0, 0, 1626, 1627, 7, 0, 0, 0, 1627, 1628, 7, 9, 0, 0, 1628, 1629, 7, 5, 0, 0, 1629, 1630, 7, 6, 0, 0, 1630, 1631, 7, 5, 0, 0, 1631, 1632, 7, 6, 0, 0, 1632, 1633, 7, 14, 0, 0, 1633, 1634, 7, 3, 0, 0, 1634, 1635, 7, 10, 0, 0, 1635, 294, 1, 0, 0, 0, 1636, 1637, 7, 19, 0, 0, 1637, 1638, 7, 0, 0, 0, 1638, 1639, 7, 9, 0, 0, 1639, 1640, 7, 25, 0, 0, 1640, 1641, 7, 12, 0, 0, 1641, 1642, 7, 8, 0, 0, 1642, 1643, 7, 5, 0, 0, 1643, 296, 1, 0, 0, 0, 1644, 1645, 7, 19, 0, 0, 1645, 1646, 7, 14, 0, 0, 1646, 1647, 7, 10, 0, 0, 1647, 1648, 7, 6, 0, 0, 1648, 1649, 7, 5, 0, 0, 1649, 1650, 7, 6, 0, 0, 1650, 1651, 7, 14, 0, 0, 1651, 1652, 7, 3, 0, 0, 1652, 298, 1, 0, 0, 0, 1653, 1654, 7, 19, 0, 0, 1654, 1655, 7, 9, 0, 0, 1655, 1656, 7, 8, 0, 0, 1656, 1657, 7, 7, 0, 0, 1657, 1658, 7, 8, 0, 0, 1658, 1659, 7, 1, 0, 0, 1659, 1660, 7, 6, 0, 0, 1660, 1661, 7, 3, 0, 0, 1661, 1662, 7, 11, 0, 0, 1662, 300, 1, 0, 0, 0, 1663, 1664, 7, 19, 0, 0, 1664, 1665, 7, 9, 0, 0, 1665, 1666, 7, 6, 0, 0, 1666, 1667, 7, 22, 0, 0, 1667, 1668, 7, 0, 0, 0, 1668, 1669, 7, 9, 0, 0, 1669, 1670, 7, 4, 0, 0, 1670, 302, 1, 0, 0, 0, 1671, 1672, 7, 9, 0, 0, 1672, 1673, 7, 8, 0, 0, 1673, 1674, 7, 19, 0, 0, 1674, 1675, 7, 2, 0, 0, 1675, 1676, 7, 6, 0, 0, 1676, 1677, 7, 7, 0, 0, 1677, 1678, 7, 0, 0, 0, 1678, 1679, 7, 5, 0, 0, 1679, 1680, 7, 6, 0, 0, 1680, 1681, 7, 14, 0, 0, 1681, 1682, 7, 3, 0, 0, 1682, 304, 1, 0, 0, 0, 1683, 1684, 7, 19, 0, 0, 1684, 1685, 7, 9, 0, 0, 1685, 1686, 7, 6, 0, 0, 1686, 1687, 7, 23, 0, 0, 1687, 1688, 7, 6, 0, 0, 1688, 1689, 7, 2, 0, 0, 1689, 1690, 7, 8, 0, 0, 1690, 1691, 7, 11, 0, 0, 1691, 1692, 7, 8, 0, 0, 1692, 1693, 7, 10, 0, 0, 1693, 306, 1, 0, 0, 0, 1694, 1695, 7, 19, 0, 0, 1695, 1696, 7, 9, 0, 0, 1696, 1697, 7, 14, 0, 0, 1697, 1698, 7, 19, 0, 0, 1698, 1699, 7, 8, 0, 0, 1699, 1700, 7, 9, 0, 0, 1700, 1701, 7, 5, 0, 0, 1701, 1702, 7, 6, 0, 0, 1702, 1703, 7, 8, 0, 0, 1703, 1704, 7, 10, 0, 0, 1704, 308, 1, 0, 0, 0, 1705, 1706, 7, 9, 0, 0, 1706, 1707, 7, 0, 0, 0, 1707, 1708, 7, 3, 0, 0, 1708, 1709, 7, 11, 0, 0, 1709, 1710, 7, 8, 0, 0, 1710, 310, 1, 0, 0, 0, 1711, 1712, 7, 9, 0, 0, 1712, 1713, 7, 8, 0, 0, 1713, 1714, 7, 7, 0, 0, 1714, 1715, 7, 14, 0, 0, 1715, 1716, 7, 23, 0, 0, 1716, 1717, 7, 8, 0, 0, 1717, 1718, 7, 9, 0, 0, 1718, 312, 1, 0, 0, 0, 1719, 1720, 7, 9, 0, 0, 1720, 1721, 7, 8, 0, 0, 1721, 1722, 7, 3, 0, 0, 1722, 1723, 7, 0, 0, 0, 1723, 1724, 7, 22, 0, 0, 1724, 1725, 7, 8, 0, 0, 1725, 314, 1, 0, 0, 0, 1726, 1727, 7, 9, 0, 0, 1727, 1728, 7, 8, 0, 0, 1728, 1729, 7, 19, 0, 0, 1729, 1730, 7, 8, 0, 0, 1730, 1731, 7, 0, 0, 0, 1731, 1732, 7, 5, 0, 0, 1732, 1733, 7, 0, 0, 0, 1733, 1734, 7, 16, 0, 0, 1734, 1735, 7, 2, 0, 0, 1735, 1736, 7, 8, 0, 0, 1736, 316, 1, 0, 0, 0, 1737, 1738, 7, 9, 0, 0, 1738, 1739, 7, 8, 0, 0, 1739, 1740, 7, 19, 0, 0, 1740, 1741, 7, 2, 0, 0, 1741, 1742, 7, 0, 0, 0, 1742, 1743, 7, 7, 0, 0, 1743, 1744, 7, 8, 0, 0, 1744, 318, 1, 0, 0, 0, 1745, 1746, 7, 9, 0, 0, 1746, 1747, 7, 8, 0, 0, 1747, 1748, 7, 10, 0, 0, 1748, 1749, 7, 5, 0, 0, 1749, 1750, 7, 9, 0, 0, 1750, 1751, 7, 6, 0, 0, 1751, 1752, 7, 7, 0, 0, 1752, 1753, 7, 5, 0, 0, 1753, 320, 1, 0, 0, 0, 1754, 1755, 7, 9, 0, 0, 1755, 1756, 7, 8, 0, 0, 1756, 1757, 7, 5, 0, 0, 1757, 1758, 7, 12, 0, 0, 1758, 1759, 7, 9, 0, 0, 1759, 1760, 7, 3, 0, 0, 1760, 1761, 7, 10, 0, 0, 1761, 322, 1, 0, 0, 0, 1762, 1763, 7, 9, 0, 0, 1763, 1764, 7, 8, 0, 0, 1764, 1765, 7, 23, 0, 0, 1765, 1766, 7, 14, 0, 0, 1766, 1767, 7, 18, 0, 0, 1767, 1768, 7, 8, 0, 0, 1768, 324, 1, 0, 0, 0, 1769, 1770, 7, 9, 0, 0, 1770, 1771, 7, 8, 0, 0, 1771, 1772, 7, 20, 0, 0, 1772, 1773, 7, 9, 0, 0, 1773, 1774, 7, 8, 0, 0, 1774, 1775, 7, 10, 0, 0, 1775, 1776, 7, 13, 0, 0, 1776, 326, 1, 0, 0, 0, 1777, 1778, 7, 9, 0, 0, 1778, 1779, 7, 8, 0, 0, 1779, 1780, 7, 11, 0, 0, 1780, 1781, 7, 8, 0, 0, 1781, 1782, 7, 21, 0, 0, 1782, 1783, 7, 19, 0, 0, 1783, 328, 1, 0, 0, 0, 1784, 1785, 7, 9, 0, 0, 1785, 1786, 7, 2, 0, 0, 1786, 1787, 7, 6, 0, 0, 1787, 1788, 7, 18, 0, 0, 1788, 1789, 7, 8, 0, 0, 1789, 330, 1, 0, 0, 0, 1790, 1791, 7, 9, 0, 0, 1791, 1792, 7, 6, 0, 0, 1792, 1793, 7, 11, 0, 0, 1793, 1794, 7, 13, 0, 0, 1794, 1795, 7, 5, 0, 0, 1795, 332, 1, 0, 0, 0, 1796, 1797, 7, 9, 0, 0, 1797, 1798, 7, 14, 0, 0, 1798, 1799, 7, 2, 0, 0, 1799, 1800, 7, 8, 0, 0, 1800, 334, 1, 0, 0, 0, 1801, 1802, 7, 9, 0, 0, 1802, 1803, 7, 14, 0, 0, 1803, 1804, 7, 2, 0, 0, 1804, 1805, 7, 8, 0, 0, 1805, 1806, 7, 10, 0, 0, 1806, 336, 1, 0, 0, 0, 1807, 1808, 7, 9, 0, 0, 1808, 1809, 7, 14, 0, 0, 1809, 1810, 7, 17, 0, 0, 1810, 338, 1, 0, 0, 0, 1811, 1812, 7, 9, 0, 0, 1812, 1813, 7, 14, 0, 0, 1813, 1814, 7, 17, 0, 0, 1814, 1815, 7, 10, 0, 0, 1815, 340, 1, 0, 0, 0, 1816, 1817, 7, 10, 0, 0, 1817, 1818, 7, 7, 0, 0, 1818, 1819, 7, 13, 0, 0, 1819, 1820, 7, 8, 0, 0, 1820, 1821, 7, 22, 0, 0, 1821, 1822, 7, 0, 0, 0, 1822, 342, 1, 0, 0, 0, 1823, 1824, 7, 10, 0, 0, 1824, 1825, 7, 7, 0, 0, 1825, 1826, 7, 13, 0, 0, 1826, 1827, 7, 8, 0, 0, 1827, 1828, 7, 22, 0, 0, 1828, 1829, 7, 0, 0, 0, 1829, 1830, 7, 10, 0, 0, 1830, 344, 1, 0, 0, 0, 1831, 1832, 7, 10, 0, 0, 1832, 1833, 7, 8, 0, 0, 1833, 1834, 7, 7, 0, 0, 1834, 1835, 7, 14, 0, 0, 1835, 1836, 7, 3, 0, 0, 1836, 1837, 7, 1, 0, 0, 1837, 346, 1, 0, 0, 0, 1838, 1839, 7, 10, 0, 0, 1839, 1840, 7, 8, 0, 0, 1840, 1841, 7, 7, 0, 0, 1841, 1842, 7, 14, 0, 0, 1842, 1843, 7, 3, 0, 0, 1843, 1844, 7, 1, 0, 0, 1844, 1845, 7, 10, 0, 0, 1845, 348, 1, 0, 0, 0, 1846, 1847, 7, 10, 0, 0, 1847, 1848, 7, 8, 0, 0, 1848, 1849, 7, 2, 0, 0, 1849, 1850, 7, 8, 0, 0, 1850, 1851, 7, 7, 0, 0, 1851, 1852, 7, 5, 0, 0, 1852, 350, 1, 0, 0, 0, 1853, 1854, 7, 10, 0, 0, 1854, 1855, 7, 8, 0, 0, 1855, 1856, 7, 9, 0, 0, 1856, 1857, 7, 1, 0, 0, 1857, 1858, 7, 8, 0, 0, 1858, 1859, 7, 19, 0, 0, 1859, 1860, 7, 9, 0, 0, 1860, 1861, 7, 14, 0, 0, 1861, 1862, 7, 19, 0, 0, 1862, 1863, 7, 8, 0, 0, 1863, 1864, 7, 9, 0, 0, 1864, 1865, 7, 5, 0, 0, 1865, 1866, 7, 6, 0, 0, 1866, 1867, 7, 8, 0, 0, 1867, 1868, 7, 10, 0, 0, 1868, 352, 1, 0, 0, 0, 1869, 1870, 7, 10, 0, 0, 1870, 1871, 7, 8, 0, 0, 1871, 1872, 7, 5, 0, 0, 1872, 354, 1, 0, 0, 0, 1873, 1874, 7, 10, 0, 0, 1874, 1875, 7, 8, 0, 0, 1875, 1876, 7, 22, 0, 0, 1876, 1877, 7, 6, 0, 0, 1877, 356, 1, 0, 0, 0, 1878, 1879, 7, 10, 0, 0, 1879, 1880, 7, 8, 0, 0, 1880, 1881, 7, 9, 0, 0, 1881, 1882, 7, 23, 0, 0, 1882, 1883, 7, 8, 0, 0, 1883, 1884, 7, 9, 0, 0, 1884, 358, 1, 0, 0, 0, 1885, 1886, 7, 10, 0, 0, 1886, 1887, 7, 13, 0, 0, 1887, 1888, 7, 14, 0, 0, 1888, 1889, 7, 17, 0, 0, 1889, 360, 1, 0, 0, 0, 1890, 1891, 7, 10, 0, 0, 1891, 1892, 7, 13, 0, 0, 1892, 1893, 7, 12, 0, 0, 1893, 1894, 7, 5, 0, 0, 1894, 1895, 7, 1, 0, 0, 1895, 1896, 7, 14, 0, 0, 1896, 1897, 7, 17, 0, 0, 1897, 1898, 7, 3, 0, 0, 1898, 362, 1, 0, 0, 0, 1899, 1900, 7, 10, 0, 0, 1900, 1901, 7, 14, 0, 0, 1901, 1902, 7, 22, 0, 0, 1902, 1903, 7, 8, 0, 0, 1903, 364, 1, 0, 0, 0, 1904, 1905, 7, 10, 0, 0, 1905, 1906, 7, 5, 0, 0, 1906, 1907, 7, 0, 0, 0, 1907, 1908, 7, 5, 0, 0, 1908, 1909, 7, 10, 0, 0, 1909, 366, 1, 0, 0, 0, 1910, 1911, 7, 10, 0, 0, 1911, 1912, 7, 5, 0, 0, 1912, 1913, 7, 9, 0, 0, 1913, 1914, 7, 12, 0, 0, 1914, 1915, 7, 7, 0, 0, 1915, 1916, 7, 5, 0, 0, 1916, 368, 1, 0, 0, 0, 1917, 1918, 7, 10, 0, 0, 1918, 1919, 7, 5, 0, 0, 1919, 1920, 7, 9, 0, 0, 1920, 1921, 7, 0, 0, 0, 1921, 1922, 7, 6, 0, 0, 1922, 1923, 7, 11, 0, 0, 1923, 1924, 7, 13, 0, 0, 1924, 1925, 7, 5, 0, 0, 1925, 1926, 5, 95, 0, 0, 1926, 1927, 7, 24, 0, 0, 1927, 1928, 7, 14, 0, 0, 1928, 1929, 7, 6, 0, 0, 1929, 1930, 7, 3, 0, 0, 1930, 370, 1, 0, 0, 0, 1931, 1932, 7, 10, 0, 0, 1932, 1933, 7, 12, 0, 0, 1933, 1934, 7, 16, 0, 0, 1934, 1935, 7, 10, 0, 0, 1935, 1936, 7, 5, 0, 0, 1936, 1937, 7, 9, 0, 0, 1937, 1938, 7, 6, 0, 0, 1938, 1939, 7, 3, 0, 0, 1939, 1940, 7, 11, 0, 0, 1940, 372, 1, 0, 0, 0, 1941, 1942, 7, 10, 0, 0, 1942, 1943, 7, 4, 0, 0, 1943, 1944, 7, 10, 0, 0, 1944, 1945, 7, 5, 0, 0, 1945, 1946, 7, 8, 0, 0, 1946, 1947, 7, 22, 0, 0, 1947, 374, 1, 0, 0, 0, 1948, 1949, 7, 10, 0, 0, 1949, 1950, 7, 4, 0, 0, 1950, 1951, 7, 22, 0, 0, 1951, 1952, 7, 16, 0, 0, 1952, 1953, 7, 14, 0, 0, 1953, 1954, 7, 2, 0, 0, 1954, 376, 1, 0, 0, 0, 1955, 1956, 7, 10, 0, 0, 1956, 1957, 7, 8, 0, 0, 1957, 1958, 7, 9, 0, 0, 1958, 1959, 7, 6, 0, 0, 1959, 1960, 7, 0, 0, 0, 1960, 1961, 7, 2, 0, 0, 1961, 1962, 7, 6, 0, 0, 1962, 1963, 7, 15, 0, 0, 1963, 1964, 7, 8, 0, 0, 1964, 1965, 5, 95, 0, 0, 1965, 1966, 7, 20, 0, 0, 1966, 1967, 7, 3, 0, 0, 1967, 378, 1, 0, 0, 0, 1968, 1969, 7, 5, 0, 0, 1969, 1970, 7, 0, 0, 0, 1970, 1971, 7, 16, 0, 0, 1971, 1972, 7, 2, 0, 0, 1972, 1973, 7, 8, 0, 0, 1973, 380, 1, 0, 0, 0, 1974, 1975, 7, 5, 0, 0, 1975, 1976, 7, 0, 0, 0, 1976, 1977, 7, 16, 0, 0, 1977, 1978, 7, 2, 0, 0, 1978, 1979, 7, 8, 0, 0, 1979, 1980, 7, 10, 0, 0, 1980, 382, 1, 0, 0, 0, 1981, 1982, 7, 5, 0, 0, 1982, 1983, 7, 0, 0, 0, 1983, 1984, 7, 16, 0, 0, 1984, 1985, 7, 2, 0, 0, 1985, 1986, 7, 8, 0, 0, 1986, 1987, 7, 10, 0, 0, 1987, 1988, 7, 0, 0, 0, 1988, 1989, 7, 22, 0, 0, 1989, 1990, 7, 19, 0, 0, 1990, 1991, 7, 2, 0, 0, 1991, 1992, 7, 8, 0, 0, 1992, 384, 1, 0, 0, 0, 1993, 1994, 7, 5, 0, 0, 1994, 1995, 7, 8, 0, 0, 1995, 1996, 7, 9, 0, 0, 1996, 1997, 7, 22, 0, 0, 1997, 1998, 7, 6, 0, 0, 1998, 1999, 7, 3, 0, 0, 1999, 2000, 7, 0, 0, 0, 2000, 2001, 7, 5, 0, 0, 2001, 2002, 7, 8, 0, 0, 2002, 2003, 7, 1, 0, 0, 2003, 2004, 5, 32, 0, 0, 2004, 386, 1, 0, 0, 0, 2005, 2006, 7, 5, 0, 0, 2006, 2007, 7, 13, 0, 0, 2007, 2008, 7, 8, 0, 0, 2008, 2009, 7, 3, 0, 0, 2009, 388, 1, 0, 0, 0, 2010, 2011, 7, 5, 0, 0, 2011, 2012, 7, 14, 0, 0, 2012, 390, 1, 0, 0, 0, 2013, 2014, 7, 5, 0, 0, 2014, 2015, 7, 9, 0, 0, 2015, 2016, 7, 12, 0, 0, 2016, 2017, 7, 8, 0, 0, 2017, 392, 1, 0, 0, 0, 2018, 2019, 7, 5, 0, 0, 2019, 2020, 7, 9, 0, 0, 2020, 2021, 7, 4, 0, 0, 2021, 2022, 5, 95, 0, 0, 2022, 2023, 7, 7, 0, 0, 2023, 2024, 7, 0, 0, 0, 2024, 2025, 7, 10, 0, 0, 2025, 2026, 7, 5, 0, 0, 2026, 394, 1, 0, 0, 0, 2027, 2028, 7, 5, 0, 0, 2028, 2029, 7, 9, 0, 0, 2029, 2030, 7, 12, 0, 0, 2030, 2031, 7, 3, 0, 0, 2031, 2032, 7, 7, 0, 0, 2032, 2033, 7, 0, 0, 0, 2033, 2034, 7, 5, 0, 0, 2034, 2035, 7, 8, 0, 0, 2035, 396, 1, 0, 0, 0, 2036, 2037, 7, 12, 0, 0, 2037, 2038, 7, 3, 0, 0, 2038, 2039, 7, 7, 0, 0, 2039, 2040, 7, 0, 0, 0, 2040, 2041, 7, 7, 0, 0, 2041, 2042, 7, 13, 0, 0, 2042, 2043, 7, 8, 0, 0, 2043, 2044, 7, 1, 0, 0, 2044, 398, 1, 0, 0, 0, 2045, 2046, 7, 12, 0, 0, 2046, 2047, 7, 8, 0, 0, 2047, 2048, 7, 10, 0, 0, 2048, 2049, 7, 7, 0, 0, 2049, 2050, 7, 0, 0, 0, 2050, 2051, 7, 19, 0, 0, 2051, 2052, 7, 8, 0, 0, 2052, 400, 1, 0, 0, 0, 2053, 2054, 7, 12, 0, 0, 2054, 2055, 7, 3, 0, 0, 2055, 2056, 7, 16, 0, 0, 2056, 2057, 7, 14, 0, 0, 2057, 2058, 7, 12, 0, 0, 2058, 2059, 7, 3, 0, 0, 2059, 2060, 7, 1, 0, 0, 2060, 2061, 7, 8, 0, 0, 2061, 2062, 7, 1, 0, 0, 2062, 402, 1, 0, 0, 0, 2063, 2064, 7, 12, 0, 0, 2064, 2065, 7, 3, 0, 0, 2065, 2066, 7, 6, 0, 0, 2066, 2067, 7, 14, 0, 0, 2067, 2068, 7, 3, 0, 0, 2068, 404, 1, 0, 0, 0, 2069, 2070, 7, 12, 0, 0, 2070, 2071, 7, 3, 0, 0, 2071, 2072, 7, 3, 0, 0, 2072, 2073, 7, 8, 0, 0, 2073, 2074, 7, 10, 0, 0, 2074, 2075, 7, 5, 0, 0, 2075, 406, 1, 0, 0, 0, 2076, 2077, 7, 12, 0, 0, 2077, 2078, 7, 3, 0, 0, 2078, 2079, 7, 10, 0, 0, 2079, 2080, 7, 8, 0, 0, 2080, 2081, 7, 5, 0, 0, 2081, 408, 1, 0, 0, 0, 2082, 2083, 7, 12, 0, 0, 2083, 2084, 7, 10, 0, 0, 2084, 2085, 7, 8, 0, 0, 2085, 410, 1, 0, 0, 0, 2086, 2087, 7, 12, 0, 0, 2087, 2088, 7, 10, 0, 0, 2088, 2089, 7, 8, 0, 0, 2089, 2090, 7, 9, 0, 0, 2090, 412, 1, 0, 0, 0, 2091, 2092, 7, 12, 0, 0, 2092, 2093, 7, 10, 0, 0, 2093, 2094, 7, 6, 0, 0, 2094, 2095, 7, 3, 0, 0, 2095, 2096, 7, 11, 0, 0, 2096, 414, 1, 0, 0, 0, 2097, 2098, 7, 12, 0, 0, 2098, 2099, 7, 19, 0, 0, 2099, 2100, 7, 1, 0, 0, 2100, 2101, 7, 0, 0, 0, 2101, 2102, 7, 5, 0, 0, 2102, 2103, 7, 8, 0, 0, 2103, 2104, 5, 95, 0, 0, 2104, 2105, 7, 20, 0, 0, 2105, 2106, 7, 3, 0, 0, 2106, 416, 1, 0, 0, 0, 2107, 2108, 7, 12, 0, 0, 2108, 2109, 7, 19, 0, 0, 2109, 2110, 7, 10, 0, 0, 2110, 2111, 7, 8, 0, 0, 2111, 2112, 7, 9, 0, 0, 2112, 2113, 7, 5, 0, 0, 2113, 418, 1, 0, 0, 0, 2114, 2115, 7, 12, 0, 0, 2115, 2116, 7, 3, 0, 0, 2116, 2117, 7, 18, 0, 0, 2117, 2118, 7, 3, 0, 0, 2118, 2119, 7, 14, 0, 0, 2119, 2120, 7, 17, 0, 0, 2120, 2121, 7, 3, 0, 0, 2121, 420, 1, 0, 0, 0, 2122, 2123, 7, 12, 0, 0, 2123, 2124, 7, 9, 0, 0, 2124, 2125, 7, 6, 0, 0, 2125, 422, 1, 0, 0, 0, 2126, 2127, 7, 23, 0, 0, 2127, 2128, 7, 0, 0, 0, 2128, 2129, 7, 2, 0, 0, 2129, 2130, 7, 12, 0, 0, 2130, 2131, 7, 8, 0, 0, 2131, 424, 1, 0, 0, 0, 2132, 2133, 7, 23, 0, 0, 2133, 2134, 7, 0, 0, 0, 2134, 2135, 7, 2, 0, 0, 2135, 2136, 7, 12, 0, 0, 2136, 2137, 7, 8, 0, 0, 2137, 2138, 7, 10, 0, 0, 2138, 426, 1, 0, 0, 0, 2139, 2140, 7, 23, 0, 0, 2140, 2141, 7, 6, 0, 0, 2141, 2142, 7, 8, 0, 0, 2142, 2143, 7, 17, 0, 0, 2143, 428, 1, 0, 0, 0, 2144, 2145, 7, 23, 0, 0, 2145, 2146, 7, 6, 0, 0, 2146, 2147, 7, 8, 0, 0, 2147, 2148, 7, 17, 0, 0, 2148, 2149, 7, 10, 0, 0, 2149, 430, 1, 0, 0, 0, 2150, 2151, 7, 17, 0, 0, 2151, 2152, 7, 13, 0, 0, 2152, 2153, 7, 8, 0, 0, 2153, 2154, 7, 3, 0, 0, 2154, 432, 1, 0, 0, 0, 2155, 2156, 7, 17, 0, 0, 2156, 2157, 7, 13, 0, 0, 2157, 2158, 7, 8, 0, 0, 2158, 2159, 7, 9, 0, 0, 2159, 2160, 7, 8, 0, 0, 2160, 434, 1, 0, 0, 0, 2161, 2162, 7, 17, 0, 0, 2162, 2163, 7, 6, 0, 0, 2163, 2164, 7, 5, 0, 0, 2164, 2165, 7, 13, 0, 0, 2165, 436, 1, 0, 0, 0, 2166, 2167, 7, 4, 0, 0, 2167, 2168, 7, 8, 0, 0, 2168, 2169, 7, 0, 0, 0, 2169, 2170, 7, 9, 0, 0, 2170, 438, 1, 0, 0, 0, 2171, 2172, 7, 4, 0, 0, 2172, 2173, 7, 8, 0, 0, 2173, 2174, 7, 0, 0, 0, 2174, 2175, 7, 9, 0, 0, 2175, 2176, 7, 10, 0, 0, 2176, 440, 1, 0, 0, 0, 2177, 2178, 7, 5, 0, 0, 2178, 2179, 7, 8, 0, 0, 2179, 2180, 7, 21, 0, 0, 2180, 2181, 7, 5, 0, 0, 2181, 2182, 7, 20, 0, 0, 2182, 2183, 7, 6, 0, 0, 2183, 2184, 7, 2, 0, 0, 2184, 2185, 7, 8, 0, 0, 2185, 442, 1, 0, 0, 0, 2186, 2187, 7, 14, 0, 0, 2187, 2188, 7, 9, 0, 0, 2188, 2189, 7, 7, 0, 0, 2189, 444, 1, 0, 0, 0, 2190, 2191, 7, 0, 0, 0, 2191, 2192, 7, 23, 0, 0, 2192, 2193, 7, 9, 0, 0, 2193, 2194, 7, 14, 0, 0, 2194, 446, 1, 0, 0, 0, 2195, 2196, 7, 10, 0, 0, 2196, 2197, 7, 8, 0, 0, 2197, 2198, 7, 25, 0, 0, 2198, 2199, 7, 12, 0, 0, 2199, 2200, 7, 8, 0, 0, 2200, 2201, 7, 3, 0, 0, 2201, 2202, 7, 7, 0, 0, 2202, 2203, 7, 8, 0, 0, 2203, 2204, 7, 20, 0, 0, 2204, 2205, 7, 6, 0, 0, 2205, 2206, 7, 2, 0, 0, 2206, 2207, 7, 8, 0, 0, 2207, 448, 1, 0, 0, 0, 2208, 2209, 7, 9, 0, 0, 2209, 2210, 7, 7, 0, 0, 2210, 2211, 7, 20, 0, 0, 2211, 2212, 7, 6, 0, 0, 2212, 2213, 7, 2, 0, 0, 2213, 2214, 7, 8, 0, 0, 2214, 450, 1, 0, 0, 0, 2215, 2216, 7, 9, 0, 0, 2216, 2217, 7, 8, 0, 0, 2217, 2218, 7, 20, 0, 0, 2218, 2219, 7, 8, 0, 0, 2219, 2220, 7, 9, 0, 0, 2220, 2221, 7, 8, 0, 0, 2221, 2222, 7, 3, 0, 0, 2222, 2223, 7, 7, 0, 0, 2223, 2224, 7, 8, 0, 0, 2224, 2225, 7, 10, 0, 0, 2225, 452, 1, 0, 0, 0, 2226, 2227, 7, 3, 0, 0, 2227, 2228, 7, 14, 0, 0, 2228, 2229, 7, 23, 0, 0, 2229, 2230, 7, 0, 0, 0, 2230, 2231, 7, 2, 0, 0, 2231, 2232, 7, 6, 0, 0, 2232, 2233, 7, 1, 0, 0, 2233, 2234, 7, 0, 0, 0, 2234, 2235, 7, 5, 0, 0, 2235, 2236, 7, 8, 0, 0, 2236, 454, 1, 0, 0, 0, 2237, 2238, 7, 9, 0, 0, 2238, 2239, 7, 8, 0, 0, 2239, 2240, 7, 2, 0, 0, 2240, 2241, 7, 4, 0, 0, 2241, 456, 1, 0, 0, 0, 2242, 2243, 5, 39, 0, 0, 2243, 2244, 7, 3, 0, 0, 2244, 2245, 7, 12, 0, 0, 2245, 2246, 7, 22, 0, 0, 2246, 2247, 7, 1, 0, 0, 2247, 2248, 7, 23, 0, 0, 2248, 2249, 7, 10, 0, 0, 2249, 2250, 5, 39, 0, 0, 2250, 458, 1, 0, 0, 0, 2251, 2252, 5, 39, 0, 0, 2252, 2253, 7, 3, 0, 0, 2253, 2254, 7, 12, 0, 0, 2254, 2255, 7, 22, 0, 0, 2255, 2256, 7, 3, 0, 0, 2256, 2257, 7, 12, 0, 0, 2257, 2258, 7, 2, 0, 0, 2258, 2259, 7, 2, 0, 0, 2259, 2260, 7, 10, 0, 0, 2260, 2261, 5, 39, 0, 0, 2261, 460, 1, 0, 0, 0, 2262, 2263, 5, 39, 0, 0, 2263, 2264, 7, 0, 0, 0, 2264, 2265, 7, 23, 0, 0, 2265, 2266, 7, 11, 0, 0, 2266, 2267, 7, 10, 0, 0, 2267, 2268, 7, 6, 0, 0, 2268, 2269, 7, 15, 0, 0, 2269, 2270, 7, 8, 0, 0, 2270, 2271, 5, 39, 0, 0, 2271, 462, 1, 0, 0, 0, 2272, 2273, 5, 39, 0, 0, 2273, 2274, 7, 22, 0, 0, 2274, 2275, 7, 0, 0, 0, 2275, 2276, 7, 21, 0, 0, 2276, 2277, 7, 10, 0, 0, 2277, 2278, 7, 6, 0, 0, 2278, 2279, 7, 15, 0, 0, 2279, 2280, 7, 8, 0, 0, 2280, 2281, 5, 39, 0, 0, 2281, 464, 1, 0, 0, 0, 2282, 2283, 5, 61, 0, 0, 2283, 466, 1, 0, 0, 0, 2284, 2285, 5, 60, 0, 0, 2285, 2289, 5, 62, 0, 0, 2286, 2287, 5, 33, 0, 0, 2287, 2289, 5, 61, 0, 0, 2288, 2284, 1, 0, 0, 0, 2288, 2286, 1, 0, 0, 0, 2289, 468, 1, 0, 0, 0, 2290, 2291, 5, 60, 0, 0, 2291, 470, 1, 0, 0, 0, 2292, 2293, 5, 60, 0, 0, 2293, 2294, 5, 61, 0, 0, 2294, 472, 1, 0, 0, 0, 2295, 2296, 5, 62, 0, 0, 2296, 474, 1, 0, 0, 0, 2297, 2298, 5, 62, 0, 0, 2298, 2299, 5, 61, 0, 0, 2299, 476, 1, 0, 0, 0, 2300, 2301, 5, 43, 0, 0, 2301, 478, 1, 0, 0, 0, 2302, 2303, 5, 45, 0, 0, 2303, 480, 1, 0, 0, 0, 2304, 2305, 5, 42, 0, 0, 2305, 482, 1, 0, 0, 0, 2306, 2307, 5, 47, 0, 0, 2307, 484, 1, 0, 0, 0, 2308, 2309, 5, 37, 0, 0, 2309, 486, 1, 0, 0, 0, 2310, 2311, 5, 124, 0, 0, 2311, 2312, 5, 124, 0, 0, 2312, 488, 1, 0, 0, 0, 2313, 2314, 5, 46, 0, 0, 2314, 490, 1, 0, 0, 0, 2315, 2316, 5, 59, 0, 0, 2316, 492, 1, 0, 0, 0, 2317, 2318, 5, 44, 0, 0, 2318, 494, 1, 0, 0, 0, 2319, 2320, 5, 58, 0, 0, 2320, 496, 1, 0, 0, 0, 2321, 2322, 5, 40, 0, 0, 2322, 498, 1, 0, 0, 0, 2323, 2324, 5, 41, 0, 0, 2324, 500, 1, 0, 0, 0, 2325, 2326, 5, 91, 0, 0, 2326, 502, 1, 0, 0, 0, 2327, 2328, 5, 93, 0, 0, 2328, 504, 1, 0, 0, 0, 2329, 2330, 5, 123, 0, 0, 2330, 506, 1, 0, 0, 0, 2331, 2332, 5, 125, 0, 0, 2332, 508, 1, 0, 0, 0, 2333, 2334, 5, 124, 0, 0, 2334, 510, 1, 0, 0, 0, 2335, 2336, 5, 63, 0, 0, 2336, 512, 1, 0, 0, 0, 2337, 2338, 5, 45, 0, 0, 2338, 2339, 5, 62, 0, 0, 2339, 514, 1, 0, 0, 0, 2340, 2346, 5, 39, 0, 0, 2341, 2345, 8, 26, 0, 0, 2342, 2343, 5, 39, 0, 0, 2343, 2345, 5, 39, 0, 0, 2344, 2341, 1, 0, 0, 0, 2344, 2342, 1, 0, 0, 0, 2345, 2348, 1, 0, 0, 0, 2346, 2344, 1, 0, 0, 0, 2346, 2347, 1, 0, 0, 0, 2347, 2349, 1, 0, 0, 0, 2348, 2346, 1, 0, 0, 0, 2349, 2361, 5, 39, 0, 0, 2350, 2356, 5, 34, 0, 0, 2351, 2355, 8, 27, 0, 0, 2352, 2353, 5, 34, 0, 0, 2353, 2355, 5, 34, 0, 0, 2354, 2351, 1, 0, 0, 0, 2354, 2352, 1, 0, 0, 0, 2355, 2358, 1, 0, 0, 0, 2356, 2354, 1, 0, 0, 0, 2356, 2357, 1, 0, 0, 0, 2357, 2359, 1, 0, 0, 0, 2358, 2356, 1, 0, 0, 0, 2359, 2361, 5, 34, 0, 0, 2360, 2340, 1, 0, 0, 0, 2360, 2350, 1, 0, 0, 0, 2361, 516, 1, 0, 0, 0, 2362, 2363, 7, 12, 0, 0, 2363, 2364, 5, 38, 0, 0, 2364, 2365, 5, 39, 0, 0, 2365, 2371, 1, 0, 0, 0, 2366, 2370, 8, 26, 0, 0, 2367, 2368, 5, 39, 0, 0, 2368, 2370, 5, 39, 0, 0, 2369, 2366, 1, 0, 0, 0, 2369, 2367, 1, 0, 0, 0, 2370, 2373, 1, 0, 0, 0, 2371, 2369, 1, 0, 0, 0, 2371, 2372, 1, 0, 0, 0, 2372, 2374, 1, 0, 0, 0, 2373, 2371, 1, 0, 0, 0, 2374, 2375, 5, 39, 0, 0, 2375, 518, 1, 0, 0, 0, 2376, 2377, 7, 21, 0, 0, 2377, 2378, 5, 39, 0, 0, 2378, 2382, 1, 0, 0, 0, 2379, 2381, 8, 26, 0, 0, 2380, 2379, 1, 0, 0, 0, 2381, 2384, 1, 0, 0, 0, 2382, 2380, 1, 0, 0, 0, 2382, 2383, 1, 0, 0, 0, 2383, 2385, 1, 0, 0, 0, 2384, 2382, 1, 0, 0, 0, 2385, 2386, 5, 39, 0, 0, 2386, 520, 1, 0, 0, 0, 2387, 2389, 3, 543, 271, 0, 2388, 2387, 1, 0, 0, 0, 2389, 2390, 1, 0, 0, 0, 2390, 2388, 1, 0, 0, 0, 2390, 2391, 1, 0, 0, 0, 2391, 522, 1, 0, 0, 0, 2392, 2394, 3, 543, 271, 0, 2393, 2392, 1, 0, 0, 0, 2394, 2395, 1, 0, 0, 0, 2395, 2393, 1, 0, 0, 0, 2395, 2396, 1, 0, 0, 0, 2396, 2397, 1, 0, 0, 0, 2397, 2401, 5, 46, 0, 0, 2398, 2400, 3, 543, 271, 0, 2399, 2398, 1, 0, 0, 0, 2400, 2403, 1, 0, 0, 0, 2401, 2399, 1, 0, 0, 0, 2401, 2402, 1, 0, 0, 0, 2402, 2411, 1, 0, 0, 0, 2403, 2401, 1, 0, 0, 0, 2404, 2406, 5, 46, 0, 0, 2405, 2407, 3, 543, 271, 0, 2406, 2405, 1, 0, 0, 0, 2407, 2408, 1, 0, 0, 0, 2408, 2406, 1, 0, 0, 0, 2408, 2409, 1, 0, 0, 0, 2409, 2411, 1, 0, 0, 0, 2410, 2393, 1, 0, 0, 0, 2410, 2404, 1, 0, 0, 0, 2411, 524, 1, 0, 0, 0, 2412, 2414, 3, 543, 271, 0, 2413, 2412, 1, 0, 0, 0, 2414, 2415, 1, 0, 0, 0, 2415, 2413, 1, 0, 0, 0, 2415, 2416, 1, 0, 0, 0, 2416, 2424, 1, 0, 0, 0, 2417, 2421, 5, 46, 0, 0, 2418, 2420, 3, 543, 271, 0, 2419, 2418, 1, 0, 0, 0, 2420, 2423, 1, 0, 0, 0, 2421, 2419, 1, 0, 0, 0, 2421, 2422, 1, 0, 0, 0, 2422, 2425, 1, 0, 0, 0, 2423, 2421, 1, 0, 0, 0, 2424, 2417, 1, 0, 0, 0, 2424, 2425, 1, 0, 0, 0, 2425, 2426, 1, 0, 0, 0, 2426, 2427, 3, 541, 270, 0, 2427, 2437, 1, 0, 0, 0, 2428, 2430, 5, 46, 0, 0, 2429, 2431, 3, 543, 271, 0, 2430, 2429, 1, 0, 0, 0, 2431, 2432, 1, 0, 0, 0, 2432, 2430, 1, 0, 0, 0, 2432, 2433, 1, 0, 0, 0, 2433, 2434, 1, 0, 0, 0, 2434, 2435, 3, 541, 270, 0, 2435, 2437, 1, 0, 0, 0, 2436, 2413, 1, 0, 0, 0, 2436, 2428, 1, 0, 0, 0, 2437, 526, 1, 0, 0, 0, 2438, 2441, 3, 545, 272, 0, 2439, 2441, 5, 95, 0, 0, 2440, 2438, 1, 0, 0, 0, 2440, 2439, 1, 0, 0, 0, 2441, 2447, 1, 0, 0, 0, 2442, 2446, 3, 545, 272, 0, 2443, 2446, 3, 543, 271, 0, 2444, 2446, 7, 28, 0, 0, 2445, 2442, 1, 0, 0, 0, 2445, 2443, 1, 0, 0, 0, 2445, 2444, 1, 0, 0, 0, 2446, 2449, 1, 0, 0, 0, 2447, 2445, 1, 0, 0, 0, 2447, 2448, 1, 0, 0, 0, 2448, 528, 1, 0, 0, 0, 2449, 2447, 1, 0, 0, 0, 2450, 2454, 3, 543, 271, 0, 2451, 2455, 3, 545, 272, 0, 2452, 2455, 3, 543, 271, 0, 2453, 2455, 7, 28, 0, 0, 2454, 2451, 1, 0, 0, 0, 2454, 2452, 1, 0, 0, 0, 2454, 2453, 1, 0, 0, 0, 2455, 2456, 1, 0, 0, 0, 2456, 2454, 1, 0, 0, 0, 2456, 2457, 1, 0, 0, 0, 2457, 530, 1, 0, 0, 0, 2458, 2464, 5, 34, 0, 0, 2459, 2463, 8, 27, 0, 0, 2460, 2461, 5, 34, 0, 0, 2461, 2463, 5, 34, 0, 0, 2462, 2459, 1, 0, 0, 0, 2462, 2460, 1, 0, 0, 0, 2463, 2466, 1, 0, 0, 0, 2464, 2462, 1, 0, 0, 0, 2464, 2465, 1, 0, 0, 0, 2465, 2467, 1, 0, 0, 0, 2466, 2464, 1, 0, 0, 0, 2467, 2468, 5, 34, 0, 0, 2468, 532, 1, 0, 0, 0, 2469, 2475, 5, 96, 0, 0, 2470, 2474, 8, 29, 0, 0, 2471, 2472, 5, 96, 0, 0, 2472, 2474, 5, 96, 0, 0, 2473, 2470, 1, 0, 0, 0, 2473, 2471, 1, 0, 0, 0, 2474, 2477, 1, 0, 0, 0, 2475, 2473, 1, 0, 0, 0, 2475, 2476, 1, 0, 0, 0, 2476, 2478, 1, 0, 0, 0, 2477, 2475, 1, 0, 0, 0, 2478, 2479, 5, 96, 0, 0, 2479, 534, 1, 0, 0, 0, 2480, 2481, 7, 5, 0, 0, 2481, 2482, 7, 6, 0, 0, 2482, 2483, 7, 22, 0, 0, 2483, 2484, 7, 8, 0, 0, 2484, 2485, 1, 0, 0, 0, 2485, 2486, 3, 551, 275, 0, 2486, 2487, 7, 17, 0, 0, 2487, 2488, 7, 6, 0, 0, 2488, 2489, 7, 5, 0, 0, 2489, 2490, 7, 13, 0, 0, 2490, 2491, 1, 0, 0, 0, 2491, 2492, 3, 551, 275, 0, 2492, 2493, 7, 5, 0, 0, 2493, 2494, 7, 6, 0, 0, 2494, 2495, 7, 22, 0, 0, 2495, 2496, 7, 8, 0, 0, 2496, 2497, 1, 0, 0, 0, 2497, 2498, 3, 551, 275, 0, 2498, 2499, 7, 15, 0, 0, 2499, 2500, 7, 14, 0, 0, 2500, 2501, 7, 3, 0, 0, 2501, 2502, 7, 8, 0, 0, 2502, 536, 1, 0, 0, 0, 2503, 2504, 7, 5, 0, 0, 2504, 2505, 7, 6, 0, 0, 2505, 2506, 7, 22, 0, 0, 2506, 2507, 7, 8, 0, 0, 2507, 2508, 7, 10, 0, 0, 2508, 2509, 7, 5, 0, 0, 2509, 2510, 7, 0, 0, 0, 2510, 2511, 7, 22, 0, 0, 2511, 2512, 7, 19, 0, 0, 2512, 2513, 1, 0, 0, 0, 2513, 2514, 3, 551, 275, 0, 2514, 2515, 7, 17, 0, 0, 2515, 2516, 7, 6, 0, 0, 2516, 2517, 7, 5, 0, 0, 2517, 2518, 7, 13, 0, 0, 2518, 2519, 1, 0, 0, 0, 2519, 2520, 3, 551, 275, 0, 2520, 2521, 7, 5, 0, 0, 2521, 2522, 7, 6, 0, 0, 2522, 2523, 7, 22, 0, 0, 2523, 2524, 7, 8, 0, 0, 2524, 2525, 1, 0, 0, 0, 2525, 2526, 3, 551, 275, 0, 2526, 2527, 7, 15, 0, 0, 2527, 2528, 7, 14, 0, 0, 2528, 2529, 7, 3, 0, 0, 2529, 2530, 7, 8, 0, 0, 2530, 538, 1, 0, 0, 0, 2531, 2532, 7, 1, 0, 0, 2532, 2533, 7, 14, 0, 0, 2533, 2534, 7, 12, 0, 0, 2534, 2535, 7, 16, 0, 0, 2535, 2536, 7, 2, 0, 0, 2536, 2537, 7, 8, 0, 0, 2537, 2538, 1, 0, 0, 0, 2538, 2539, 3, 551, 275, 0, 2539, 2540, 7, 19, 0, 0, 2540, 2541, 7, 9, 0, 0, 2541, 2542, 7, 8, 0, 0, 2542, 2543, 7, 7, 0, 0, 2543, 2544, 7, 6, 0, 0, 2544, 2545, 7, 10, 0, 0, 2545, 2546, 7, 6, 0, 0, 2546, 2547, 7, 14, 0, 0, 2547, 2548, 7, 3, 0, 0, 2548, 540, 1, 0, 0, 0, 2549, 2551, 7, 8, 0, 0, 2550, 2552, 7, 30, 0, 0, 2551, 2550, 1, 0, 0, 0, 2551, 2552, 1, 0, 0, 0, 2552, 2554, 1, 0, 0, 0, 2553, 2555, 3, 543, 271, 0, 2554, 2553, 1, 0, 0, 0, 2555, 2556, 1, 0, 0, 0, 2556, 2554, 1, 0, 0, 0, 2556, 2557, 1, 0, 0, 0, 2557, 542, 1, 0, 0, 0, 2558, 2559, 7, 31, 0, 0, 2559, 544, 1, 0, 0, 0, 2560, 2561, 7, 32, 0, 0, 2561, 546, 1, 0, 0, 0, 2562, 2563, 5, 45, 0, 0, 2563, 2564, 5, 45, 0, 0, 2564, 2568, 1, 0, 0, 0, 2565, 2567, 8, 33, 0, 0, 2566, 2565, 1, 0, 0, 0, 2567, 2570, 1, 0, 0, 0, 2568, 2566, 1, 0, 0, 0, 2568, 2569, 1, 0, 0, 0, 2569, 2572, 1, 0, 0, 0, 2570, 2568, 1, 0, 0, 0, 2571, 2573, 5, 13, 0, 0, 2572, 2571, 1, 0, 0, 0, 2572, 2573, 1, 0, 0, 0, 2573, 2575, 1, 0, 0, 0, 2574, 2576, 5, 10, 0, 0, 2575, 2574, 1, 0, 0, 0, 2575, 2576, 1, 0, 0, 0, 2576, 2577, 1, 0, 0, 0, 2577, 2578, 6, 273, 0, 0, 2578, 548, 1, 0, 0, 0, 2579, 2580, 5, 47, 0, 0, 2580, 2581, 5, 42, 0, 0, 2581, 2585, 1, 0, 0, 0, 2582, 2584, 9, 0, 0, 0, 2583, 2582, 1, 0, 0, 0, 2584, 2587, 1, 0, 0, 0, 2585, 2586, 1, 0, 0, 0, 2585, 2583, 1, 0, 0, 0, 2586, 2588, 1, 0, 0, 0, 2587, 2585, 1, 0, 0, 0, 2588, 2589, 5, 42, 0, 0, 2589, 2590, 5, 47, 0, 0, 2590, 2591, 1, 0, 0, 0, 2591, 2592, 6, 274, 0, 0, 2592, 550, 1, 0, 0, 0, 2593, 2595, 7, 34, 0, 0, 2594, 2593, 1, 0, 0, 0, 2595, 2596, 1, 0, 0, 0, 2596, 2594, 1, 0, 0, 0, 2596, 2597, 1, 0, 0, 0, 2597, 2598, 1, 0, 0, 0, 2598, 2599, 6, 275, 0, 0, 2599, 552, 1, 0, 0, 0, 36, 0, 2288, 2344, 2346, 2354, 2356, 2360, 2369, 2371, 2382, 2390, 2395, 2401, 2408, 2410, 2415, 2421, 2424, 2432, 2436, 2440, 2445, 2447, 2454, 2456, 2462, 2464, 2473, 2475, 2551, 2556, 2568, 2572, 2575, 2585, 2596, 1, 0, 1, 0] \ No newline at end of file +[4, 0, 289, 2744, 6, -1, 2, 0, 7, 0, 2, 1, 7, 1, 2, 2, 7, 2, 2, 3, 7, 3, 2, 4, 7, 4, 2, 5, 7, 5, 2, 6, 7, 6, 2, 7, 7, 7, 2, 8, 7, 8, 2, 9, 7, 9, 2, 10, 7, 10, 2, 11, 7, 11, 2, 12, 7, 12, 2, 13, 7, 13, 2, 14, 7, 14, 2, 15, 7, 15, 2, 16, 7, 16, 2, 17, 7, 17, 2, 18, 7, 18, 2, 19, 7, 19, 2, 20, 7, 20, 2, 21, 7, 21, 2, 22, 7, 22, 2, 23, 7, 23, 2, 24, 7, 24, 2, 25, 7, 25, 2, 26, 7, 26, 2, 27, 7, 27, 2, 28, 7, 28, 2, 29, 7, 29, 2, 30, 7, 30, 2, 31, 7, 31, 2, 32, 7, 32, 2, 33, 7, 33, 2, 34, 7, 34, 2, 35, 7, 35, 2, 36, 7, 36, 2, 37, 7, 37, 2, 38, 7, 38, 2, 39, 7, 39, 2, 40, 7, 40, 2, 41, 7, 41, 2, 42, 7, 42, 2, 43, 7, 43, 2, 44, 7, 44, 2, 45, 7, 45, 2, 46, 7, 46, 2, 47, 7, 47, 2, 48, 7, 48, 2, 49, 7, 49, 2, 50, 7, 50, 2, 51, 7, 51, 2, 52, 7, 52, 2, 53, 7, 53, 2, 54, 7, 54, 2, 55, 7, 55, 2, 56, 7, 56, 2, 57, 7, 57, 2, 58, 7, 58, 2, 59, 7, 59, 2, 60, 7, 60, 2, 61, 7, 61, 2, 62, 7, 62, 2, 63, 7, 63, 2, 64, 7, 64, 2, 65, 7, 65, 2, 66, 7, 66, 2, 67, 7, 67, 2, 68, 7, 68, 2, 69, 7, 69, 2, 70, 7, 70, 2, 71, 7, 71, 2, 72, 7, 72, 2, 73, 7, 73, 2, 74, 7, 74, 2, 75, 7, 75, 2, 76, 7, 76, 2, 77, 7, 77, 2, 78, 7, 78, 2, 79, 7, 79, 2, 80, 7, 80, 2, 81, 7, 81, 2, 82, 7, 82, 2, 83, 7, 83, 2, 84, 7, 84, 2, 85, 7, 85, 2, 86, 7, 86, 2, 87, 7, 87, 2, 88, 7, 88, 2, 89, 7, 89, 2, 90, 7, 90, 2, 91, 7, 91, 2, 92, 7, 92, 2, 93, 7, 93, 2, 94, 7, 94, 2, 95, 7, 95, 2, 96, 7, 96, 2, 97, 7, 97, 2, 98, 7, 98, 2, 99, 7, 99, 2, 100, 7, 100, 2, 101, 7, 101, 2, 102, 7, 102, 2, 103, 7, 103, 2, 104, 7, 104, 2, 105, 7, 105, 2, 106, 7, 106, 2, 107, 7, 107, 2, 108, 7, 108, 2, 109, 7, 109, 2, 110, 7, 110, 2, 111, 7, 111, 2, 112, 7, 112, 2, 113, 7, 113, 2, 114, 7, 114, 2, 115, 7, 115, 2, 116, 7, 116, 2, 117, 7, 117, 2, 118, 7, 118, 2, 119, 7, 119, 2, 120, 7, 120, 2, 121, 7, 121, 2, 122, 7, 122, 2, 123, 7, 123, 2, 124, 7, 124, 2, 125, 7, 125, 2, 126, 7, 126, 2, 127, 7, 127, 2, 128, 7, 128, 2, 129, 7, 129, 2, 130, 7, 130, 2, 131, 7, 131, 2, 132, 7, 132, 2, 133, 7, 133, 2, 134, 7, 134, 2, 135, 7, 135, 2, 136, 7, 136, 2, 137, 7, 137, 2, 138, 7, 138, 2, 139, 7, 139, 2, 140, 7, 140, 2, 141, 7, 141, 2, 142, 7, 142, 2, 143, 7, 143, 2, 144, 7, 144, 2, 145, 7, 145, 2, 146, 7, 146, 2, 147, 7, 147, 2, 148, 7, 148, 2, 149, 7, 149, 2, 150, 7, 150, 2, 151, 7, 151, 2, 152, 7, 152, 2, 153, 7, 153, 2, 154, 7, 154, 2, 155, 7, 155, 2, 156, 7, 156, 2, 157, 7, 157, 2, 158, 7, 158, 2, 159, 7, 159, 2, 160, 7, 160, 2, 161, 7, 161, 2, 162, 7, 162, 2, 163, 7, 163, 2, 164, 7, 164, 2, 165, 7, 165, 2, 166, 7, 166, 2, 167, 7, 167, 2, 168, 7, 168, 2, 169, 7, 169, 2, 170, 7, 170, 2, 171, 7, 171, 2, 172, 7, 172, 2, 173, 7, 173, 2, 174, 7, 174, 2, 175, 7, 175, 2, 176, 7, 176, 2, 177, 7, 177, 2, 178, 7, 178, 2, 179, 7, 179, 2, 180, 7, 180, 2, 181, 7, 181, 2, 182, 7, 182, 2, 183, 7, 183, 2, 184, 7, 184, 2, 185, 7, 185, 2, 186, 7, 186, 2, 187, 7, 187, 2, 188, 7, 188, 2, 189, 7, 189, 2, 190, 7, 190, 2, 191, 7, 191, 2, 192, 7, 192, 2, 193, 7, 193, 2, 194, 7, 194, 2, 195, 7, 195, 2, 196, 7, 196, 2, 197, 7, 197, 2, 198, 7, 198, 2, 199, 7, 199, 2, 200, 7, 200, 2, 201, 7, 201, 2, 202, 7, 202, 2, 203, 7, 203, 2, 204, 7, 204, 2, 205, 7, 205, 2, 206, 7, 206, 2, 207, 7, 207, 2, 208, 7, 208, 2, 209, 7, 209, 2, 210, 7, 210, 2, 211, 7, 211, 2, 212, 7, 212, 2, 213, 7, 213, 2, 214, 7, 214, 2, 215, 7, 215, 2, 216, 7, 216, 2, 217, 7, 217, 2, 218, 7, 218, 2, 219, 7, 219, 2, 220, 7, 220, 2, 221, 7, 221, 2, 222, 7, 222, 2, 223, 7, 223, 2, 224, 7, 224, 2, 225, 7, 225, 2, 226, 7, 226, 2, 227, 7, 227, 2, 228, 7, 228, 2, 229, 7, 229, 2, 230, 7, 230, 2, 231, 7, 231, 2, 232, 7, 232, 2, 233, 7, 233, 2, 234, 7, 234, 2, 235, 7, 235, 2, 236, 7, 236, 2, 237, 7, 237, 2, 238, 7, 238, 2, 239, 7, 239, 2, 240, 7, 240, 2, 241, 7, 241, 2, 242, 7, 242, 2, 243, 7, 243, 2, 244, 7, 244, 2, 245, 7, 245, 2, 246, 7, 246, 2, 247, 7, 247, 2, 248, 7, 248, 2, 249, 7, 249, 2, 250, 7, 250, 2, 251, 7, 251, 2, 252, 7, 252, 2, 253, 7, 253, 2, 254, 7, 254, 2, 255, 7, 255, 2, 256, 7, 256, 2, 257, 7, 257, 2, 258, 7, 258, 2, 259, 7, 259, 2, 260, 7, 260, 2, 261, 7, 261, 2, 262, 7, 262, 2, 263, 7, 263, 2, 264, 7, 264, 2, 265, 7, 265, 2, 266, 7, 266, 2, 267, 7, 267, 2, 268, 7, 268, 2, 269, 7, 269, 2, 270, 7, 270, 2, 271, 7, 271, 2, 272, 7, 272, 2, 273, 7, 273, 2, 274, 7, 274, 2, 275, 7, 275, 2, 276, 7, 276, 2, 277, 7, 277, 2, 278, 7, 278, 2, 279, 7, 279, 2, 280, 7, 280, 2, 281, 7, 281, 2, 282, 7, 282, 2, 283, 7, 283, 2, 284, 7, 284, 2, 285, 7, 285, 2, 286, 7, 286, 2, 287, 7, 287, 2, 288, 7, 288, 2, 289, 7, 289, 2, 290, 7, 290, 2, 291, 7, 291, 1, 0, 1, 0, 1, 0, 1, 0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 3, 1, 4, 1, 4, 1, 4, 1, 4, 1, 5, 1, 5, 1, 5, 1, 5, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 8, 1, 8, 1, 8, 1, 9, 1, 9, 1, 9, 1, 9, 1, 10, 1, 10, 1, 10, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 25, 1, 25, 1, 25, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 1, 27, 1, 27, 1, 27, 1, 27, 1, 27, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 32, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 33, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 34, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 38, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 39, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 40, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 41, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 43, 1, 44, 1, 44, 1, 44, 1, 44, 1, 44, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 1, 47, 1, 47, 1, 47, 1, 47, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 49, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 51, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 52, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 53, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 55, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 57, 1, 57, 1, 57, 1, 57, 1, 57, 1, 58, 1, 58, 1, 58, 1, 58, 1, 58, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 59, 1, 60, 1, 60, 1, 60, 1, 60, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 64, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 66, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 72, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 76, 1, 77, 1, 77, 1, 77, 1, 77, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 78, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 79, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 81, 1, 81, 1, 81, 1, 81, 1, 81, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 83, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 84, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 85, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 86, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 87, 1, 88, 1, 88, 1, 88, 1, 88, 1, 88, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 89, 1, 90, 1, 90, 1, 90, 1, 90, 1, 90, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 91, 1, 92, 1, 92, 1, 92, 1, 93, 1, 93, 1, 93, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 94, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 95, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 1, 96, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 97, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 99, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 100, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 101, 1, 102, 1, 102, 1, 102, 1, 102, 1, 102, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 103, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 104, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 106, 1, 107, 1, 107, 1, 107, 1, 108, 1, 108, 1, 108, 1, 108, 1, 108, 1, 109, 1, 109, 1, 109, 1, 109, 1, 110, 1, 110, 1, 110, 1, 110, 1, 110, 1, 111, 1, 111, 1, 111, 1, 111, 1, 111, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 112, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 114, 1, 114, 1, 114, 1, 114, 1, 114, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 115, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 116, 1, 117, 1, 117, 1, 117, 1, 117, 1, 117, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 123, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 124, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 125, 1, 126, 1, 126, 1, 126, 1, 126, 1, 127, 1, 127, 1, 127, 1, 127, 1, 128, 1, 128, 1, 128, 1, 128, 1, 128, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 131, 1, 131, 1, 131, 1, 131, 1, 132, 1, 132, 1, 132, 1, 132, 1, 132, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 133, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 134, 1, 135, 1, 135, 1, 135, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 136, 1, 137, 1, 137, 1, 137, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 138, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 144, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 145, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 146, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 147, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 148, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 150, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 151, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 152, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 157, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 158, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 159, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 160, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 162, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 163, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 165, 1, 165, 1, 165, 1, 165, 1, 165, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 166, 1, 167, 1, 167, 1, 167, 1, 167, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 175, 1, 175, 1, 175, 1, 175, 1, 176, 1, 176, 1, 176, 1, 176, 1, 176, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 1, 180, 1, 180, 1, 180, 1, 180, 1, 180, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 181, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 182, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 183, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 184, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 185, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 1, 186, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 187, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 1, 188, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 189, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 190, 1, 191, 1, 191, 1, 191, 1, 191, 1, 191, 1, 192, 1, 192, 1, 192, 1, 193, 1, 193, 1, 193, 1, 193, 1, 193, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 1, 194, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 195, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 196, 1, 197, 1, 197, 1, 197, 1, 197, 1, 197, 1, 197, 1, 197, 1, 197, 1, 198, 1, 198, 1, 198, 1, 198, 1, 198, 1, 198, 1, 198, 1, 198, 1, 198, 1, 198, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 199, 1, 200, 1, 200, 1, 200, 1, 200, 1, 200, 1, 200, 1, 200, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 201, 1, 202, 1, 202, 1, 202, 1, 202, 1, 203, 1, 203, 1, 203, 1, 203, 1, 203, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 204, 1, 205, 1, 205, 1, 205, 1, 205, 1, 205, 1, 205, 1, 205, 1, 205, 1, 205, 1, 205, 1, 206, 1, 206, 1, 206, 1, 206, 1, 206, 1, 206, 1, 206, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 207, 1, 208, 1, 208, 1, 208, 1, 208, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 209, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 210, 1, 211, 1, 211, 1, 211, 1, 211, 1, 211, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 212, 1, 213, 1, 213, 1, 213, 1, 213, 1, 213, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 214, 1, 215, 1, 215, 1, 215, 1, 215, 1, 215, 1, 216, 1, 216, 1, 216, 1, 216, 1, 216, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 217, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 218, 1, 219, 1, 219, 1, 219, 1, 219, 1, 220, 1, 220, 1, 220, 1, 220, 1, 220, 1, 221, 1, 221, 1, 221, 1, 221, 1, 221, 1, 221, 1, 221, 1, 221, 1, 221, 1, 221, 1, 221, 1, 221, 1, 221, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 222, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 223, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 224, 1, 225, 1, 225, 1, 225, 1, 225, 1, 225, 1, 226, 1, 226, 1, 226, 1, 226, 1, 226, 1, 226, 1, 226, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 227, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 228, 1, 229, 1, 229, 1, 229, 1, 229, 1, 229, 1, 230, 1, 230, 1, 230, 1, 230, 1, 230, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 231, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 232, 1, 233, 1, 233, 1, 233, 1, 233, 1, 234, 1, 234, 1, 234, 1, 234, 1, 235, 1, 235, 1, 235, 1, 235, 1, 235, 1, 236, 1, 236, 1, 236, 1, 236, 1, 236, 1, 236, 1, 236, 1, 236, 1, 236, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 1, 237, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 238, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 239, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, 1, 240, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 1, 241, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 1, 242, 1, 243, 1, 243, 1, 243, 1, 243, 1, 243, 1, 243, 1, 243, 1, 243, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 244, 1, 245, 1, 245, 1, 245, 1, 245, 1, 245, 1, 245, 1, 245, 1, 245, 1, 245, 1, 245, 1, 245, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 246, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 247, 1, 248, 1, 248, 1, 249, 1, 249, 1, 249, 1, 249, 3, 249, 2433, 8, 249, 1, 250, 1, 250, 1, 251, 1, 251, 1, 251, 1, 252, 1, 252, 1, 253, 1, 253, 1, 253, 1, 254, 1, 254, 1, 255, 1, 255, 1, 256, 1, 256, 1, 257, 1, 257, 1, 258, 1, 258, 1, 259, 1, 259, 1, 259, 1, 260, 1, 260, 1, 261, 1, 261, 1, 262, 1, 262, 1, 263, 1, 263, 1, 264, 1, 264, 1, 265, 1, 265, 1, 266, 1, 266, 1, 267, 1, 267, 1, 268, 1, 268, 1, 269, 1, 269, 1, 270, 1, 270, 1, 271, 1, 271, 1, 272, 1, 272, 1, 272, 1, 273, 1, 273, 1, 273, 1, 273, 5, 273, 2489, 8, 273, 10, 273, 12, 273, 2492, 9, 273, 1, 273, 1, 273, 1, 273, 1, 273, 1, 273, 5, 273, 2499, 8, 273, 10, 273, 12, 273, 2502, 9, 273, 1, 273, 3, 273, 2505, 8, 273, 1, 274, 1, 274, 1, 274, 1, 274, 1, 274, 1, 274, 1, 274, 5, 274, 2514, 8, 274, 10, 274, 12, 274, 2517, 9, 274, 1, 274, 1, 274, 1, 275, 1, 275, 1, 275, 1, 275, 5, 275, 2525, 8, 275, 10, 275, 12, 275, 2528, 9, 275, 1, 275, 1, 275, 1, 276, 4, 276, 2533, 8, 276, 11, 276, 12, 276, 2534, 1, 277, 4, 277, 2538, 8, 277, 11, 277, 12, 277, 2539, 1, 277, 1, 277, 5, 277, 2544, 8, 277, 10, 277, 12, 277, 2547, 9, 277, 1, 277, 1, 277, 4, 277, 2551, 8, 277, 11, 277, 12, 277, 2552, 3, 277, 2555, 8, 277, 1, 278, 4, 278, 2558, 8, 278, 11, 278, 12, 278, 2559, 1, 278, 1, 278, 5, 278, 2564, 8, 278, 10, 278, 12, 278, 2567, 9, 278, 3, 278, 2569, 8, 278, 1, 278, 1, 278, 1, 278, 1, 278, 4, 278, 2575, 8, 278, 11, 278, 12, 278, 2576, 1, 278, 1, 278, 3, 278, 2581, 8, 278, 1, 279, 1, 279, 3, 279, 2585, 8, 279, 1, 279, 1, 279, 1, 279, 5, 279, 2590, 8, 279, 10, 279, 12, 279, 2593, 9, 279, 1, 280, 1, 280, 1, 280, 1, 280, 4, 280, 2599, 8, 280, 11, 280, 12, 280, 2600, 1, 281, 1, 281, 1, 281, 1, 281, 5, 281, 2607, 8, 281, 10, 281, 12, 281, 2610, 9, 281, 1, 281, 1, 281, 1, 282, 1, 282, 1, 282, 1, 282, 5, 282, 2618, 8, 282, 10, 282, 12, 282, 2621, 9, 282, 1, 282, 1, 282, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 283, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 284, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 285, 1, 286, 1, 286, 3, 286, 2696, 8, 286, 1, 286, 4, 286, 2699, 8, 286, 11, 286, 12, 286, 2700, 1, 287, 1, 287, 1, 288, 1, 288, 1, 289, 1, 289, 1, 289, 1, 289, 5, 289, 2711, 8, 289, 10, 289, 12, 289, 2714, 9, 289, 1, 289, 3, 289, 2717, 8, 289, 1, 289, 3, 289, 2720, 8, 289, 1, 289, 1, 289, 1, 290, 1, 290, 1, 290, 1, 290, 5, 290, 2728, 8, 290, 10, 290, 12, 290, 2731, 9, 290, 1, 290, 1, 290, 1, 290, 1, 290, 1, 290, 1, 291, 4, 291, 2739, 8, 291, 11, 291, 12, 291, 2740, 1, 291, 1, 291, 1, 2729, 0, 292, 1, 1, 3, 2, 5, 3, 7, 4, 9, 5, 11, 6, 13, 7, 15, 8, 17, 9, 19, 10, 21, 11, 23, 12, 25, 13, 27, 14, 29, 15, 31, 16, 33, 17, 35, 18, 37, 19, 39, 20, 41, 21, 43, 22, 45, 23, 47, 24, 49, 25, 51, 26, 53, 27, 55, 28, 57, 29, 59, 30, 61, 31, 63, 32, 65, 33, 67, 34, 69, 35, 71, 36, 73, 37, 75, 38, 77, 39, 79, 40, 81, 41, 83, 42, 85, 43, 87, 44, 89, 45, 91, 46, 93, 47, 95, 48, 97, 49, 99, 50, 101, 51, 103, 52, 105, 53, 107, 54, 109, 55, 111, 56, 113, 57, 115, 58, 117, 59, 119, 60, 121, 61, 123, 62, 125, 63, 127, 64, 129, 65, 131, 66, 133, 67, 135, 68, 137, 69, 139, 70, 141, 71, 143, 72, 145, 73, 147, 74, 149, 75, 151, 76, 153, 77, 155, 78, 157, 79, 159, 80, 161, 81, 163, 82, 165, 83, 167, 84, 169, 85, 171, 86, 173, 87, 175, 88, 177, 89, 179, 90, 181, 91, 183, 92, 185, 93, 187, 94, 189, 95, 191, 96, 193, 97, 195, 98, 197, 99, 199, 100, 201, 101, 203, 102, 205, 103, 207, 104, 209, 105, 211, 106, 213, 107, 215, 108, 217, 109, 219, 110, 221, 111, 223, 112, 225, 113, 227, 114, 229, 115, 231, 116, 233, 117, 235, 118, 237, 119, 239, 120, 241, 121, 243, 122, 245, 123, 247, 124, 249, 125, 251, 126, 253, 127, 255, 128, 257, 129, 259, 130, 261, 131, 263, 132, 265, 133, 267, 134, 269, 135, 271, 136, 273, 137, 275, 138, 277, 139, 279, 140, 281, 141, 283, 142, 285, 143, 287, 144, 289, 145, 291, 146, 293, 147, 295, 148, 297, 149, 299, 150, 301, 151, 303, 152, 305, 153, 307, 154, 309, 155, 311, 156, 313, 157, 315, 158, 317, 159, 319, 160, 321, 161, 323, 162, 325, 163, 327, 164, 329, 165, 331, 166, 333, 167, 335, 168, 337, 169, 339, 170, 341, 171, 343, 172, 345, 173, 347, 174, 349, 175, 351, 176, 353, 177, 355, 178, 357, 179, 359, 180, 361, 181, 363, 182, 365, 183, 367, 184, 369, 185, 371, 186, 373, 187, 375, 188, 377, 189, 379, 190, 381, 191, 383, 192, 385, 193, 387, 194, 389, 195, 391, 196, 393, 197, 395, 198, 397, 199, 399, 200, 401, 201, 403, 202, 405, 203, 407, 204, 409, 205, 411, 206, 413, 207, 415, 208, 417, 209, 419, 210, 421, 211, 423, 212, 425, 213, 427, 214, 429, 215, 431, 216, 433, 217, 435, 218, 437, 219, 439, 220, 441, 221, 443, 222, 445, 223, 447, 224, 449, 225, 451, 226, 453, 227, 455, 228, 457, 229, 459, 230, 461, 231, 463, 232, 465, 233, 467, 234, 469, 235, 471, 236, 473, 237, 475, 238, 477, 239, 479, 240, 481, 241, 483, 242, 485, 243, 487, 244, 489, 245, 491, 246, 493, 247, 495, 248, 497, 249, 499, 250, 501, 251, 503, 252, 505, 253, 507, 254, 509, 255, 511, 256, 513, 257, 515, 258, 517, 259, 519, 260, 521, 261, 523, 262, 525, 263, 527, 264, 529, 265, 531, 266, 533, 267, 535, 268, 537, 269, 539, 270, 541, 271, 543, 272, 545, 273, 547, 274, 549, 275, 551, 276, 553, 277, 555, 278, 557, 279, 559, 280, 561, 281, 563, 282, 565, 283, 567, 284, 569, 285, 571, 286, 573, 0, 575, 0, 577, 0, 579, 287, 581, 288, 583, 289, 1, 0, 35, 2, 0, 65, 65, 97, 97, 2, 0, 68, 68, 100, 100, 2, 0, 76, 76, 108, 108, 2, 0, 78, 78, 110, 110, 2, 0, 89, 89, 121, 121, 2, 0, 84, 84, 116, 116, 2, 0, 73, 73, 105, 105, 2, 0, 67, 67, 99, 99, 2, 0, 69, 69, 101, 101, 2, 0, 82, 82, 114, 114, 2, 0, 83, 83, 115, 115, 2, 0, 71, 71, 103, 103, 2, 0, 85, 85, 117, 117, 2, 0, 72, 72, 104, 104, 2, 0, 79, 79, 111, 111, 2, 0, 90, 90, 122, 122, 2, 0, 66, 66, 98, 98, 2, 0, 87, 87, 119, 119, 2, 0, 75, 75, 107, 107, 2, 0, 80, 80, 112, 112, 2, 0, 70, 70, 102, 102, 2, 0, 88, 88, 120, 120, 2, 0, 77, 77, 109, 109, 2, 0, 86, 86, 118, 118, 2, 0, 74, 74, 106, 106, 2, 0, 81, 81, 113, 113, 1, 0, 39, 39, 1, 0, 34, 34, 3, 0, 58, 58, 64, 64, 95, 95, 1, 0, 96, 96, 2, 0, 43, 43, 45, 45, 1, 0, 48, 57, 2, 0, 65, 90, 97, 122, 2, 0, 10, 10, 13, 13, 3, 0, 9, 10, 13, 13, 32, 32, 2777, 0, 1, 1, 0, 0, 0, 0, 3, 1, 0, 0, 0, 0, 5, 1, 0, 0, 0, 0, 7, 1, 0, 0, 0, 0, 9, 1, 0, 0, 0, 0, 11, 1, 0, 0, 0, 0, 13, 1, 0, 0, 0, 0, 15, 1, 0, 0, 0, 0, 17, 1, 0, 0, 0, 0, 19, 1, 0, 0, 0, 0, 21, 1, 0, 0, 0, 0, 23, 1, 0, 0, 0, 0, 25, 1, 0, 0, 0, 0, 27, 1, 0, 0, 0, 0, 29, 1, 0, 0, 0, 0, 31, 1, 0, 0, 0, 0, 33, 1, 0, 0, 0, 0, 35, 1, 0, 0, 0, 0, 37, 1, 0, 0, 0, 0, 39, 1, 0, 0, 0, 0, 41, 1, 0, 0, 0, 0, 43, 1, 0, 0, 0, 0, 45, 1, 0, 0, 0, 0, 47, 1, 0, 0, 0, 0, 49, 1, 0, 0, 0, 0, 51, 1, 0, 0, 0, 0, 53, 1, 0, 0, 0, 0, 55, 1, 0, 0, 0, 0, 57, 1, 0, 0, 0, 0, 59, 1, 0, 0, 0, 0, 61, 1, 0, 0, 0, 0, 63, 1, 0, 0, 0, 0, 65, 1, 0, 0, 0, 0, 67, 1, 0, 0, 0, 0, 69, 1, 0, 0, 0, 0, 71, 1, 0, 0, 0, 0, 73, 1, 0, 0, 0, 0, 75, 1, 0, 0, 0, 0, 77, 1, 0, 0, 0, 0, 79, 1, 0, 0, 0, 0, 81, 1, 0, 0, 0, 0, 83, 1, 0, 0, 0, 0, 85, 1, 0, 0, 0, 0, 87, 1, 0, 0, 0, 0, 89, 1, 0, 0, 0, 0, 91, 1, 0, 0, 0, 0, 93, 1, 0, 0, 0, 0, 95, 1, 0, 0, 0, 0, 97, 1, 0, 0, 0, 0, 99, 1, 0, 0, 0, 0, 101, 1, 0, 0, 0, 0, 103, 1, 0, 0, 0, 0, 105, 1, 0, 0, 0, 0, 107, 1, 0, 0, 0, 0, 109, 1, 0, 0, 0, 0, 111, 1, 0, 0, 0, 0, 113, 1, 0, 0, 0, 0, 115, 1, 0, 0, 0, 0, 117, 1, 0, 0, 0, 0, 119, 1, 0, 0, 0, 0, 121, 1, 0, 0, 0, 0, 123, 1, 0, 0, 0, 0, 125, 1, 0, 0, 0, 0, 127, 1, 0, 0, 0, 0, 129, 1, 0, 0, 0, 0, 131, 1, 0, 0, 0, 0, 133, 1, 0, 0, 0, 0, 135, 1, 0, 0, 0, 0, 137, 1, 0, 0, 0, 0, 139, 1, 0, 0, 0, 0, 141, 1, 0, 0, 0, 0, 143, 1, 0, 0, 0, 0, 145, 1, 0, 0, 0, 0, 147, 1, 0, 0, 0, 0, 149, 1, 0, 0, 0, 0, 151, 1, 0, 0, 0, 0, 153, 1, 0, 0, 0, 0, 155, 1, 0, 0, 0, 0, 157, 1, 0, 0, 0, 0, 159, 1, 0, 0, 0, 0, 161, 1, 0, 0, 0, 0, 163, 1, 0, 0, 0, 0, 165, 1, 0, 0, 0, 0, 167, 1, 0, 0, 0, 0, 169, 1, 0, 0, 0, 0, 171, 1, 0, 0, 0, 0, 173, 1, 0, 0, 0, 0, 175, 1, 0, 0, 0, 0, 177, 1, 0, 0, 0, 0, 179, 1, 0, 0, 0, 0, 181, 1, 0, 0, 0, 0, 183, 1, 0, 0, 0, 0, 185, 1, 0, 0, 0, 0, 187, 1, 0, 0, 0, 0, 189, 1, 0, 0, 0, 0, 191, 1, 0, 0, 0, 0, 193, 1, 0, 0, 0, 0, 195, 1, 0, 0, 0, 0, 197, 1, 0, 0, 0, 0, 199, 1, 0, 0, 0, 0, 201, 1, 0, 0, 0, 0, 203, 1, 0, 0, 0, 0, 205, 1, 0, 0, 0, 0, 207, 1, 0, 0, 0, 0, 209, 1, 0, 0, 0, 0, 211, 1, 0, 0, 0, 0, 213, 1, 0, 0, 0, 0, 215, 1, 0, 0, 0, 0, 217, 1, 0, 0, 0, 0, 219, 1, 0, 0, 0, 0, 221, 1, 0, 0, 0, 0, 223, 1, 0, 0, 0, 0, 225, 1, 0, 0, 0, 0, 227, 1, 0, 0, 0, 0, 229, 1, 0, 0, 0, 0, 231, 1, 0, 0, 0, 0, 233, 1, 0, 0, 0, 0, 235, 1, 0, 0, 0, 0, 237, 1, 0, 0, 0, 0, 239, 1, 0, 0, 0, 0, 241, 1, 0, 0, 0, 0, 243, 1, 0, 0, 0, 0, 245, 1, 0, 0, 0, 0, 247, 1, 0, 0, 0, 0, 249, 1, 0, 0, 0, 0, 251, 1, 0, 0, 0, 0, 253, 1, 0, 0, 0, 0, 255, 1, 0, 0, 0, 0, 257, 1, 0, 0, 0, 0, 259, 1, 0, 0, 0, 0, 261, 1, 0, 0, 0, 0, 263, 1, 0, 0, 0, 0, 265, 1, 0, 0, 0, 0, 267, 1, 0, 0, 0, 0, 269, 1, 0, 0, 0, 0, 271, 1, 0, 0, 0, 0, 273, 1, 0, 0, 0, 0, 275, 1, 0, 0, 0, 0, 277, 1, 0, 0, 0, 0, 279, 1, 0, 0, 0, 0, 281, 1, 0, 0, 0, 0, 283, 1, 0, 0, 0, 0, 285, 1, 0, 0, 0, 0, 287, 1, 0, 0, 0, 0, 289, 1, 0, 0, 0, 0, 291, 1, 0, 0, 0, 0, 293, 1, 0, 0, 0, 0, 295, 1, 0, 0, 0, 0, 297, 1, 0, 0, 0, 0, 299, 1, 0, 0, 0, 0, 301, 1, 0, 0, 0, 0, 303, 1, 0, 0, 0, 0, 305, 1, 0, 0, 0, 0, 307, 1, 0, 0, 0, 0, 309, 1, 0, 0, 0, 0, 311, 1, 0, 0, 0, 0, 313, 1, 0, 0, 0, 0, 315, 1, 0, 0, 0, 0, 317, 1, 0, 0, 0, 0, 319, 1, 0, 0, 0, 0, 321, 1, 0, 0, 0, 0, 323, 1, 0, 0, 0, 0, 325, 1, 0, 0, 0, 0, 327, 1, 0, 0, 0, 0, 329, 1, 0, 0, 0, 0, 331, 1, 0, 0, 0, 0, 333, 1, 0, 0, 0, 0, 335, 1, 0, 0, 0, 0, 337, 1, 0, 0, 0, 0, 339, 1, 0, 0, 0, 0, 341, 1, 0, 0, 0, 0, 343, 1, 0, 0, 0, 0, 345, 1, 0, 0, 0, 0, 347, 1, 0, 0, 0, 0, 349, 1, 0, 0, 0, 0, 351, 1, 0, 0, 0, 0, 353, 1, 0, 0, 0, 0, 355, 1, 0, 0, 0, 0, 357, 1, 0, 0, 0, 0, 359, 1, 0, 0, 0, 0, 361, 1, 0, 0, 0, 0, 363, 1, 0, 0, 0, 0, 365, 1, 0, 0, 0, 0, 367, 1, 0, 0, 0, 0, 369, 1, 0, 0, 0, 0, 371, 1, 0, 0, 0, 0, 373, 1, 0, 0, 0, 0, 375, 1, 0, 0, 0, 0, 377, 1, 0, 0, 0, 0, 379, 1, 0, 0, 0, 0, 381, 1, 0, 0, 0, 0, 383, 1, 0, 0, 0, 0, 385, 1, 0, 0, 0, 0, 387, 1, 0, 0, 0, 0, 389, 1, 0, 0, 0, 0, 391, 1, 0, 0, 0, 0, 393, 1, 0, 0, 0, 0, 395, 1, 0, 0, 0, 0, 397, 1, 0, 0, 0, 0, 399, 1, 0, 0, 0, 0, 401, 1, 0, 0, 0, 0, 403, 1, 0, 0, 0, 0, 405, 1, 0, 0, 0, 0, 407, 1, 0, 0, 0, 0, 409, 1, 0, 0, 0, 0, 411, 1, 0, 0, 0, 0, 413, 1, 0, 0, 0, 0, 415, 1, 0, 0, 0, 0, 417, 1, 0, 0, 0, 0, 419, 1, 0, 0, 0, 0, 421, 1, 0, 0, 0, 0, 423, 1, 0, 0, 0, 0, 425, 1, 0, 0, 0, 0, 427, 1, 0, 0, 0, 0, 429, 1, 0, 0, 0, 0, 431, 1, 0, 0, 0, 0, 433, 1, 0, 0, 0, 0, 435, 1, 0, 0, 0, 0, 437, 1, 0, 0, 0, 0, 439, 1, 0, 0, 0, 0, 441, 1, 0, 0, 0, 0, 443, 1, 0, 0, 0, 0, 445, 1, 0, 0, 0, 0, 447, 1, 0, 0, 0, 0, 449, 1, 0, 0, 0, 0, 451, 1, 0, 0, 0, 0, 453, 1, 0, 0, 0, 0, 455, 1, 0, 0, 0, 0, 457, 1, 0, 0, 0, 0, 459, 1, 0, 0, 0, 0, 461, 1, 0, 0, 0, 0, 463, 1, 0, 0, 0, 0, 465, 1, 0, 0, 0, 0, 467, 1, 0, 0, 0, 0, 469, 1, 0, 0, 0, 0, 471, 1, 0, 0, 0, 0, 473, 1, 0, 0, 0, 0, 475, 1, 0, 0, 0, 0, 477, 1, 0, 0, 0, 0, 479, 1, 0, 0, 0, 0, 481, 1, 0, 0, 0, 0, 483, 1, 0, 0, 0, 0, 485, 1, 0, 0, 0, 0, 487, 1, 0, 0, 0, 0, 489, 1, 0, 0, 0, 0, 491, 1, 0, 0, 0, 0, 493, 1, 0, 0, 0, 0, 495, 1, 0, 0, 0, 0, 497, 1, 0, 0, 0, 0, 499, 1, 0, 0, 0, 0, 501, 1, 0, 0, 0, 0, 503, 1, 0, 0, 0, 0, 505, 1, 0, 0, 0, 0, 507, 1, 0, 0, 0, 0, 509, 1, 0, 0, 0, 0, 511, 1, 0, 0, 0, 0, 513, 1, 0, 0, 0, 0, 515, 1, 0, 0, 0, 0, 517, 1, 0, 0, 0, 0, 519, 1, 0, 0, 0, 0, 521, 1, 0, 0, 0, 0, 523, 1, 0, 0, 0, 0, 525, 1, 0, 0, 0, 0, 527, 1, 0, 0, 0, 0, 529, 1, 0, 0, 0, 0, 531, 1, 0, 0, 0, 0, 533, 1, 0, 0, 0, 0, 535, 1, 0, 0, 0, 0, 537, 1, 0, 0, 0, 0, 539, 1, 0, 0, 0, 0, 541, 1, 0, 0, 0, 0, 543, 1, 0, 0, 0, 0, 545, 1, 0, 0, 0, 0, 547, 1, 0, 0, 0, 0, 549, 1, 0, 0, 0, 0, 551, 1, 0, 0, 0, 0, 553, 1, 0, 0, 0, 0, 555, 1, 0, 0, 0, 0, 557, 1, 0, 0, 0, 0, 559, 1, 0, 0, 0, 0, 561, 1, 0, 0, 0, 0, 563, 1, 0, 0, 0, 0, 565, 1, 0, 0, 0, 0, 567, 1, 0, 0, 0, 0, 569, 1, 0, 0, 0, 0, 571, 1, 0, 0, 0, 0, 579, 1, 0, 0, 0, 0, 581, 1, 0, 0, 0, 0, 583, 1, 0, 0, 0, 1, 585, 1, 0, 0, 0, 3, 589, 1, 0, 0, 0, 5, 593, 1, 0, 0, 0, 7, 602, 1, 0, 0, 0, 9, 608, 1, 0, 0, 0, 11, 612, 1, 0, 0, 0, 13, 616, 1, 0, 0, 0, 15, 621, 1, 0, 0, 0, 17, 627, 1, 0, 0, 0, 19, 630, 1, 0, 0, 0, 21, 634, 1, 0, 0, 0, 23, 637, 1, 0, 0, 0, 25, 647, 1, 0, 0, 0, 27, 661, 1, 0, 0, 0, 29, 671, 1, 0, 0, 0, 31, 679, 1, 0, 0, 0, 33, 690, 1, 0, 0, 0, 35, 702, 1, 0, 0, 0, 37, 713, 1, 0, 0, 0, 39, 722, 1, 0, 0, 0, 41, 730, 1, 0, 0, 0, 43, 735, 1, 0, 0, 0, 45, 741, 1, 0, 0, 0, 47, 748, 1, 0, 0, 0, 49, 757, 1, 0, 0, 0, 51, 771, 1, 0, 0, 0, 53, 774, 1, 0, 0, 0, 55, 782, 1, 0, 0, 0, 57, 787, 1, 0, 0, 0, 59, 792, 1, 0, 0, 0, 61, 799, 1, 0, 0, 0, 63, 806, 1, 0, 0, 0, 65, 813, 1, 0, 0, 0, 67, 821, 1, 0, 0, 0, 69, 829, 1, 0, 0, 0, 71, 841, 1, 0, 0, 0, 73, 849, 1, 0, 0, 0, 75, 856, 1, 0, 0, 0, 77, 862, 1, 0, 0, 0, 79, 870, 1, 0, 0, 0, 81, 883, 1, 0, 0, 0, 83, 896, 1, 0, 0, 0, 85, 909, 1, 0, 0, 0, 87, 927, 1, 0, 0, 0, 89, 940, 1, 0, 0, 0, 91, 945, 1, 0, 0, 0, 93, 954, 1, 0, 0, 0, 95, 964, 1, 0, 0, 0, 97, 968, 1, 0, 0, 0, 99, 973, 1, 0, 0, 0, 101, 980, 1, 0, 0, 0, 103, 988, 1, 0, 0, 0, 105, 998, 1, 0, 0, 0, 107, 1006, 1, 0, 0, 0, 109, 1013, 1, 0, 0, 0, 111, 1018, 1, 0, 0, 0, 113, 1027, 1, 0, 0, 0, 115, 1036, 1, 0, 0, 0, 117, 1041, 1, 0, 0, 0, 119, 1046, 1, 0, 0, 0, 121, 1055, 1, 0, 0, 0, 123, 1059, 1, 0, 0, 0, 125, 1066, 1, 0, 0, 0, 127, 1074, 1, 0, 0, 0, 129, 1081, 1, 0, 0, 0, 131, 1091, 1, 0, 0, 0, 133, 1098, 1, 0, 0, 0, 135, 1106, 1, 0, 0, 0, 137, 1114, 1, 0, 0, 0, 139, 1123, 1, 0, 0, 0, 141, 1129, 1, 0, 0, 0, 143, 1136, 1, 0, 0, 0, 145, 1147, 1, 0, 0, 0, 147, 1153, 1, 0, 0, 0, 149, 1160, 1, 0, 0, 0, 151, 1166, 1, 0, 0, 0, 153, 1178, 1, 0, 0, 0, 155, 1188, 1, 0, 0, 0, 157, 1192, 1, 0, 0, 0, 159, 1199, 1, 0, 0, 0, 161, 1209, 1, 0, 0, 0, 163, 1217, 1, 0, 0, 0, 165, 1222, 1, 0, 0, 0, 167, 1227, 1, 0, 0, 0, 169, 1236, 1, 0, 0, 0, 171, 1246, 1, 0, 0, 0, 173, 1252, 1, 0, 0, 0, 175, 1258, 1, 0, 0, 0, 177, 1267, 1, 0, 0, 0, 179, 1272, 1, 0, 0, 0, 181, 1279, 1, 0, 0, 0, 183, 1284, 1, 0, 0, 0, 185, 1290, 1, 0, 0, 0, 187, 1293, 1, 0, 0, 0, 189, 1296, 1, 0, 0, 0, 191, 1306, 1, 0, 0, 0, 193, 1318, 1, 0, 0, 0, 195, 1324, 1, 0, 0, 0, 197, 1331, 1, 0, 0, 0, 199, 1338, 1, 0, 0, 0, 201, 1348, 1, 0, 0, 0, 203, 1357, 1, 0, 0, 0, 205, 1370, 1, 0, 0, 0, 207, 1375, 1, 0, 0, 0, 209, 1383, 1, 0, 0, 0, 211, 1391, 1, 0, 0, 0, 213, 1397, 1, 0, 0, 0, 215, 1408, 1, 0, 0, 0, 217, 1411, 1, 0, 0, 0, 219, 1416, 1, 0, 0, 0, 221, 1420, 1, 0, 0, 0, 223, 1425, 1, 0, 0, 0, 225, 1430, 1, 0, 0, 0, 227, 1438, 1, 0, 0, 0, 229, 1443, 1, 0, 0, 0, 231, 1448, 1, 0, 0, 0, 233, 1454, 1, 0, 0, 0, 235, 1460, 1, 0, 0, 0, 237, 1465, 1, 0, 0, 0, 239, 1475, 1, 0, 0, 0, 241, 1490, 1, 0, 0, 0, 243, 1499, 1, 0, 0, 0, 245, 1506, 1, 0, 0, 0, 247, 1514, 1, 0, 0, 0, 249, 1520, 1, 0, 0, 0, 251, 1527, 1, 0, 0, 0, 253, 1536, 1, 0, 0, 0, 255, 1540, 1, 0, 0, 0, 257, 1544, 1, 0, 0, 0, 259, 1549, 1, 0, 0, 0, 261, 1554, 1, 0, 0, 0, 263, 1564, 1, 0, 0, 0, 265, 1568, 1, 0, 0, 0, 267, 1573, 1, 0, 0, 0, 269, 1579, 1, 0, 0, 0, 271, 1586, 1, 0, 0, 0, 273, 1589, 1, 0, 0, 0, 275, 1596, 1, 0, 0, 0, 277, 1599, 1, 0, 0, 0, 279, 1605, 1, 0, 0, 0, 281, 1616, 1, 0, 0, 0, 283, 1622, 1, 0, 0, 0, 285, 1628, 1, 0, 0, 0, 287, 1633, 1, 0, 0, 0, 289, 1643, 1, 0, 0, 0, 291, 1653, 1, 0, 0, 0, 293, 1664, 1, 0, 0, 0, 295, 1672, 1, 0, 0, 0, 297, 1681, 1, 0, 0, 0, 299, 1691, 1, 0, 0, 0, 301, 1699, 1, 0, 0, 0, 303, 1711, 1, 0, 0, 0, 305, 1722, 1, 0, 0, 0, 307, 1733, 1, 0, 0, 0, 309, 1739, 1, 0, 0, 0, 311, 1747, 1, 0, 0, 0, 313, 1754, 1, 0, 0, 0, 315, 1765, 1, 0, 0, 0, 317, 1773, 1, 0, 0, 0, 319, 1782, 1, 0, 0, 0, 321, 1790, 1, 0, 0, 0, 323, 1797, 1, 0, 0, 0, 325, 1805, 1, 0, 0, 0, 327, 1812, 1, 0, 0, 0, 329, 1818, 1, 0, 0, 0, 331, 1824, 1, 0, 0, 0, 333, 1829, 1, 0, 0, 0, 335, 1835, 1, 0, 0, 0, 337, 1839, 1, 0, 0, 0, 339, 1844, 1, 0, 0, 0, 341, 1851, 1, 0, 0, 0, 343, 1859, 1, 0, 0, 0, 345, 1866, 1, 0, 0, 0, 347, 1874, 1, 0, 0, 0, 349, 1881, 1, 0, 0, 0, 351, 1897, 1, 0, 0, 0, 353, 1901, 1, 0, 0, 0, 355, 1906, 1, 0, 0, 0, 357, 1913, 1, 0, 0, 0, 359, 1918, 1, 0, 0, 0, 361, 1927, 1, 0, 0, 0, 363, 1932, 1, 0, 0, 0, 365, 1938, 1, 0, 0, 0, 367, 1952, 1, 0, 0, 0, 369, 1962, 1, 0, 0, 0, 371, 1969, 1, 0, 0, 0, 373, 1976, 1, 0, 0, 0, 375, 1989, 1, 0, 0, 0, 377, 1995, 1, 0, 0, 0, 379, 2002, 1, 0, 0, 0, 381, 2014, 1, 0, 0, 0, 383, 2026, 1, 0, 0, 0, 385, 2031, 1, 0, 0, 0, 387, 2034, 1, 0, 0, 0, 389, 2039, 1, 0, 0, 0, 391, 2048, 1, 0, 0, 0, 393, 2057, 1, 0, 0, 0, 395, 2066, 1, 0, 0, 0, 397, 2074, 1, 0, 0, 0, 399, 2084, 1, 0, 0, 0, 401, 2090, 1, 0, 0, 0, 403, 2097, 1, 0, 0, 0, 405, 2103, 1, 0, 0, 0, 407, 2107, 1, 0, 0, 0, 409, 2112, 1, 0, 0, 0, 411, 2118, 1, 0, 0, 0, 413, 2128, 1, 0, 0, 0, 415, 2135, 1, 0, 0, 0, 417, 2143, 1, 0, 0, 0, 419, 2147, 1, 0, 0, 0, 421, 2153, 1, 0, 0, 0, 423, 2160, 1, 0, 0, 0, 425, 2165, 1, 0, 0, 0, 427, 2171, 1, 0, 0, 0, 429, 2176, 1, 0, 0, 0, 431, 2182, 1, 0, 0, 0, 433, 2187, 1, 0, 0, 0, 435, 2192, 1, 0, 0, 0, 437, 2198, 1, 0, 0, 0, 439, 2207, 1, 0, 0, 0, 441, 2211, 1, 0, 0, 0, 443, 2216, 1, 0, 0, 0, 445, 2229, 1, 0, 0, 0, 447, 2236, 1, 0, 0, 0, 449, 2247, 1, 0, 0, 0, 451, 2258, 1, 0, 0, 0, 453, 2263, 1, 0, 0, 0, 455, 2270, 1, 0, 0, 0, 457, 2277, 1, 0, 0, 0, 459, 2285, 1, 0, 0, 0, 461, 2290, 1, 0, 0, 0, 463, 2295, 1, 0, 0, 0, 465, 2303, 1, 0, 0, 0, 467, 2310, 1, 0, 0, 0, 469, 2314, 1, 0, 0, 0, 471, 2318, 1, 0, 0, 0, 473, 2323, 1, 0, 0, 0, 475, 2332, 1, 0, 0, 0, 477, 2338, 1, 0, 0, 0, 479, 2345, 1, 0, 0, 0, 481, 2352, 1, 0, 0, 0, 483, 2362, 1, 0, 0, 0, 485, 2370, 1, 0, 0, 0, 487, 2378, 1, 0, 0, 0, 489, 2386, 1, 0, 0, 0, 491, 2395, 1, 0, 0, 0, 493, 2406, 1, 0, 0, 0, 495, 2416, 1, 0, 0, 0, 497, 2426, 1, 0, 0, 0, 499, 2432, 1, 0, 0, 0, 501, 2434, 1, 0, 0, 0, 503, 2436, 1, 0, 0, 0, 505, 2439, 1, 0, 0, 0, 507, 2441, 1, 0, 0, 0, 509, 2444, 1, 0, 0, 0, 511, 2446, 1, 0, 0, 0, 513, 2448, 1, 0, 0, 0, 515, 2450, 1, 0, 0, 0, 517, 2452, 1, 0, 0, 0, 519, 2454, 1, 0, 0, 0, 521, 2457, 1, 0, 0, 0, 523, 2459, 1, 0, 0, 0, 525, 2461, 1, 0, 0, 0, 527, 2463, 1, 0, 0, 0, 529, 2465, 1, 0, 0, 0, 531, 2467, 1, 0, 0, 0, 533, 2469, 1, 0, 0, 0, 535, 2471, 1, 0, 0, 0, 537, 2473, 1, 0, 0, 0, 539, 2475, 1, 0, 0, 0, 541, 2477, 1, 0, 0, 0, 543, 2479, 1, 0, 0, 0, 545, 2481, 1, 0, 0, 0, 547, 2504, 1, 0, 0, 0, 549, 2506, 1, 0, 0, 0, 551, 2520, 1, 0, 0, 0, 553, 2532, 1, 0, 0, 0, 555, 2554, 1, 0, 0, 0, 557, 2580, 1, 0, 0, 0, 559, 2584, 1, 0, 0, 0, 561, 2594, 1, 0, 0, 0, 563, 2602, 1, 0, 0, 0, 565, 2613, 1, 0, 0, 0, 567, 2624, 1, 0, 0, 0, 569, 2647, 1, 0, 0, 0, 571, 2675, 1, 0, 0, 0, 573, 2693, 1, 0, 0, 0, 575, 2702, 1, 0, 0, 0, 577, 2704, 1, 0, 0, 0, 579, 2706, 1, 0, 0, 0, 581, 2723, 1, 0, 0, 0, 583, 2738, 1, 0, 0, 0, 585, 586, 7, 0, 0, 0, 586, 587, 7, 1, 0, 0, 587, 588, 7, 1, 0, 0, 588, 2, 1, 0, 0, 0, 589, 590, 7, 0, 0, 0, 590, 591, 7, 2, 0, 0, 591, 592, 7, 2, 0, 0, 592, 4, 1, 0, 0, 0, 593, 594, 7, 0, 0, 0, 594, 595, 7, 3, 0, 0, 595, 596, 7, 0, 0, 0, 596, 597, 7, 2, 0, 0, 597, 598, 7, 4, 0, 0, 598, 599, 7, 5, 0, 0, 599, 600, 7, 6, 0, 0, 600, 601, 7, 7, 0, 0, 601, 6, 1, 0, 0, 0, 602, 603, 7, 0, 0, 0, 603, 604, 7, 2, 0, 0, 604, 605, 7, 5, 0, 0, 605, 606, 7, 8, 0, 0, 606, 607, 7, 9, 0, 0, 607, 8, 1, 0, 0, 0, 608, 609, 7, 0, 0, 0, 609, 610, 7, 3, 0, 0, 610, 611, 7, 1, 0, 0, 611, 10, 1, 0, 0, 0, 612, 613, 7, 0, 0, 0, 613, 614, 7, 3, 0, 0, 614, 615, 7, 4, 0, 0, 615, 12, 1, 0, 0, 0, 616, 617, 7, 0, 0, 0, 617, 618, 7, 3, 0, 0, 618, 619, 7, 5, 0, 0, 619, 620, 7, 6, 0, 0, 620, 14, 1, 0, 0, 0, 621, 622, 7, 0, 0, 0, 622, 623, 7, 9, 0, 0, 623, 624, 7, 9, 0, 0, 624, 625, 7, 0, 0, 0, 625, 626, 7, 4, 0, 0, 626, 16, 1, 0, 0, 0, 627, 628, 7, 0, 0, 0, 628, 629, 7, 10, 0, 0, 629, 18, 1, 0, 0, 0, 630, 631, 7, 0, 0, 0, 631, 632, 7, 10, 0, 0, 632, 633, 7, 7, 0, 0, 633, 20, 1, 0, 0, 0, 634, 635, 7, 0, 0, 0, 635, 636, 7, 5, 0, 0, 636, 22, 1, 0, 0, 0, 637, 638, 7, 0, 0, 0, 638, 639, 7, 11, 0, 0, 639, 640, 7, 11, 0, 0, 640, 641, 7, 9, 0, 0, 641, 642, 7, 8, 0, 0, 642, 643, 7, 11, 0, 0, 643, 644, 7, 0, 0, 0, 644, 645, 7, 5, 0, 0, 645, 646, 7, 8, 0, 0, 646, 24, 1, 0, 0, 0, 647, 648, 7, 0, 0, 0, 648, 649, 7, 12, 0, 0, 649, 650, 7, 5, 0, 0, 650, 651, 7, 13, 0, 0, 651, 652, 7, 14, 0, 0, 652, 653, 7, 9, 0, 0, 653, 654, 7, 6, 0, 0, 654, 655, 7, 15, 0, 0, 655, 656, 7, 0, 0, 0, 656, 657, 7, 5, 0, 0, 657, 658, 7, 6, 0, 0, 658, 659, 7, 14, 0, 0, 659, 660, 7, 3, 0, 0, 660, 26, 1, 0, 0, 0, 661, 662, 7, 16, 0, 0, 662, 663, 7, 8, 0, 0, 663, 664, 7, 9, 0, 0, 664, 665, 7, 3, 0, 0, 665, 666, 7, 14, 0, 0, 666, 667, 7, 12, 0, 0, 667, 668, 7, 2, 0, 0, 668, 669, 7, 2, 0, 0, 669, 670, 7, 6, 0, 0, 670, 28, 1, 0, 0, 0, 671, 672, 7, 16, 0, 0, 672, 673, 7, 8, 0, 0, 673, 674, 7, 5, 0, 0, 674, 675, 7, 17, 0, 0, 675, 676, 7, 8, 0, 0, 676, 677, 7, 8, 0, 0, 677, 678, 7, 3, 0, 0, 678, 30, 1, 0, 0, 0, 679, 680, 7, 16, 0, 0, 680, 681, 7, 2, 0, 0, 681, 682, 7, 14, 0, 0, 682, 683, 7, 7, 0, 0, 683, 684, 7, 18, 0, 0, 684, 685, 5, 95, 0, 0, 685, 686, 7, 10, 0, 0, 686, 687, 7, 6, 0, 0, 687, 688, 7, 15, 0, 0, 688, 689, 7, 8, 0, 0, 689, 32, 1, 0, 0, 0, 690, 691, 7, 19, 0, 0, 691, 692, 7, 0, 0, 0, 692, 693, 7, 9, 0, 0, 693, 694, 7, 5, 0, 0, 694, 695, 7, 6, 0, 0, 695, 696, 7, 5, 0, 0, 696, 697, 7, 6, 0, 0, 697, 698, 7, 14, 0, 0, 698, 699, 7, 3, 0, 0, 699, 700, 7, 8, 0, 0, 700, 701, 7, 1, 0, 0, 701, 34, 1, 0, 0, 0, 702, 703, 7, 19, 0, 0, 703, 704, 7, 9, 0, 0, 704, 705, 7, 8, 0, 0, 705, 706, 7, 19, 0, 0, 706, 707, 7, 0, 0, 0, 707, 708, 7, 9, 0, 0, 708, 709, 7, 8, 0, 0, 709, 710, 5, 95, 0, 0, 710, 711, 7, 20, 0, 0, 711, 712, 7, 3, 0, 0, 712, 36, 1, 0, 0, 0, 713, 714, 7, 8, 0, 0, 714, 715, 7, 21, 0, 0, 715, 716, 7, 5, 0, 0, 716, 717, 7, 8, 0, 0, 717, 718, 7, 9, 0, 0, 718, 719, 7, 3, 0, 0, 719, 720, 7, 0, 0, 0, 720, 721, 7, 2, 0, 0, 721, 38, 1, 0, 0, 0, 722, 723, 7, 7, 0, 0, 723, 724, 7, 2, 0, 0, 724, 725, 7, 14, 0, 0, 725, 726, 7, 10, 0, 0, 726, 727, 7, 8, 0, 0, 727, 728, 7, 20, 0, 0, 728, 729, 7, 3, 0, 0, 729, 40, 1, 0, 0, 0, 730, 731, 7, 10, 0, 0, 731, 732, 7, 14, 0, 0, 732, 733, 7, 9, 0, 0, 733, 734, 7, 5, 0, 0, 734, 42, 1, 0, 0, 0, 735, 736, 7, 19, 0, 0, 736, 737, 7, 12, 0, 0, 737, 738, 7, 9, 0, 0, 738, 739, 7, 11, 0, 0, 739, 740, 7, 8, 0, 0, 740, 44, 1, 0, 0, 0, 741, 742, 7, 10, 0, 0, 742, 743, 7, 5, 0, 0, 743, 744, 7, 14, 0, 0, 744, 745, 7, 9, 0, 0, 745, 746, 7, 8, 0, 0, 746, 747, 7, 1, 0, 0, 747, 46, 1, 0, 0, 0, 748, 749, 7, 2, 0, 0, 749, 750, 7, 14, 0, 0, 750, 751, 7, 7, 0, 0, 751, 752, 7, 0, 0, 0, 752, 753, 7, 5, 0, 0, 753, 754, 7, 6, 0, 0, 754, 755, 7, 14, 0, 0, 755, 756, 7, 3, 0, 0, 756, 48, 1, 0, 0, 0, 757, 758, 7, 5, 0, 0, 758, 759, 7, 16, 0, 0, 759, 760, 7, 2, 0, 0, 760, 761, 7, 19, 0, 0, 761, 762, 7, 9, 0, 0, 762, 763, 7, 14, 0, 0, 763, 764, 7, 19, 0, 0, 764, 765, 7, 8, 0, 0, 765, 766, 7, 9, 0, 0, 766, 767, 7, 5, 0, 0, 767, 768, 7, 6, 0, 0, 768, 769, 7, 8, 0, 0, 769, 770, 7, 10, 0, 0, 770, 50, 1, 0, 0, 0, 771, 772, 7, 16, 0, 0, 772, 773, 7, 4, 0, 0, 773, 52, 1, 0, 0, 0, 774, 775, 7, 7, 0, 0, 775, 776, 7, 0, 0, 0, 776, 777, 7, 10, 0, 0, 777, 778, 7, 7, 0, 0, 778, 779, 7, 0, 0, 0, 779, 780, 7, 1, 0, 0, 780, 781, 7, 8, 0, 0, 781, 54, 1, 0, 0, 0, 782, 783, 7, 7, 0, 0, 783, 784, 7, 0, 0, 0, 784, 785, 7, 10, 0, 0, 785, 786, 7, 8, 0, 0, 786, 56, 1, 0, 0, 0, 787, 788, 7, 7, 0, 0, 788, 789, 7, 0, 0, 0, 789, 790, 7, 10, 0, 0, 790, 791, 7, 5, 0, 0, 791, 58, 1, 0, 0, 0, 792, 793, 7, 7, 0, 0, 793, 794, 7, 0, 0, 0, 794, 795, 7, 7, 0, 0, 795, 796, 7, 13, 0, 0, 796, 797, 7, 8, 0, 0, 797, 798, 7, 1, 0, 0, 798, 60, 1, 0, 0, 0, 799, 800, 7, 7, 0, 0, 800, 801, 7, 13, 0, 0, 801, 802, 7, 0, 0, 0, 802, 803, 7, 3, 0, 0, 803, 804, 7, 11, 0, 0, 804, 805, 7, 8, 0, 0, 805, 62, 1, 0, 0, 0, 806, 807, 7, 7, 0, 0, 807, 808, 7, 14, 0, 0, 808, 809, 7, 2, 0, 0, 809, 810, 7, 12, 0, 0, 810, 811, 7, 22, 0, 0, 811, 812, 7, 3, 0, 0, 812, 64, 1, 0, 0, 0, 813, 814, 7, 7, 0, 0, 814, 815, 7, 14, 0, 0, 815, 816, 7, 2, 0, 0, 816, 817, 7, 12, 0, 0, 817, 818, 7, 22, 0, 0, 818, 819, 7, 3, 0, 0, 819, 820, 7, 10, 0, 0, 820, 66, 1, 0, 0, 0, 821, 822, 7, 7, 0, 0, 822, 823, 7, 14, 0, 0, 823, 824, 7, 22, 0, 0, 824, 825, 7, 22, 0, 0, 825, 826, 7, 8, 0, 0, 826, 827, 7, 3, 0, 0, 827, 828, 7, 5, 0, 0, 828, 68, 1, 0, 0, 0, 829, 830, 7, 7, 0, 0, 830, 831, 7, 14, 0, 0, 831, 832, 7, 22, 0, 0, 832, 833, 7, 19, 0, 0, 833, 834, 7, 9, 0, 0, 834, 835, 7, 8, 0, 0, 835, 836, 7, 10, 0, 0, 836, 837, 7, 10, 0, 0, 837, 838, 7, 6, 0, 0, 838, 839, 7, 14, 0, 0, 839, 840, 7, 3, 0, 0, 840, 70, 1, 0, 0, 0, 841, 842, 7, 7, 0, 0, 842, 843, 7, 14, 0, 0, 843, 844, 7, 22, 0, 0, 844, 845, 7, 19, 0, 0, 845, 846, 7, 12, 0, 0, 846, 847, 7, 5, 0, 0, 847, 848, 7, 8, 0, 0, 848, 72, 1, 0, 0, 0, 849, 850, 7, 7, 0, 0, 850, 851, 7, 9, 0, 0, 851, 852, 7, 8, 0, 0, 852, 853, 7, 0, 0, 0, 853, 854, 7, 5, 0, 0, 854, 855, 7, 8, 0, 0, 855, 74, 1, 0, 0, 0, 856, 857, 7, 7, 0, 0, 857, 858, 7, 9, 0, 0, 858, 859, 7, 14, 0, 0, 859, 860, 7, 10, 0, 0, 860, 861, 7, 10, 0, 0, 861, 76, 1, 0, 0, 0, 862, 863, 7, 7, 0, 0, 863, 864, 7, 12, 0, 0, 864, 865, 7, 9, 0, 0, 865, 866, 7, 9, 0, 0, 866, 867, 7, 8, 0, 0, 867, 868, 7, 3, 0, 0, 868, 869, 7, 5, 0, 0, 869, 78, 1, 0, 0, 0, 870, 871, 7, 7, 0, 0, 871, 872, 7, 12, 0, 0, 872, 873, 7, 9, 0, 0, 873, 874, 7, 9, 0, 0, 874, 875, 7, 8, 0, 0, 875, 876, 7, 3, 0, 0, 876, 877, 7, 5, 0, 0, 877, 878, 5, 95, 0, 0, 878, 879, 7, 1, 0, 0, 879, 880, 7, 0, 0, 0, 880, 881, 7, 5, 0, 0, 881, 882, 7, 8, 0, 0, 882, 80, 1, 0, 0, 0, 883, 884, 7, 7, 0, 0, 884, 885, 7, 12, 0, 0, 885, 886, 7, 9, 0, 0, 886, 887, 7, 9, 0, 0, 887, 888, 7, 8, 0, 0, 888, 889, 7, 3, 0, 0, 889, 890, 7, 5, 0, 0, 890, 891, 5, 95, 0, 0, 891, 892, 7, 19, 0, 0, 892, 893, 7, 0, 0, 0, 893, 894, 7, 5, 0, 0, 894, 895, 7, 13, 0, 0, 895, 82, 1, 0, 0, 0, 896, 897, 7, 7, 0, 0, 897, 898, 7, 12, 0, 0, 898, 899, 7, 9, 0, 0, 899, 900, 7, 9, 0, 0, 900, 901, 7, 8, 0, 0, 901, 902, 7, 3, 0, 0, 902, 903, 7, 5, 0, 0, 903, 904, 5, 95, 0, 0, 904, 905, 7, 5, 0, 0, 905, 906, 7, 6, 0, 0, 906, 907, 7, 22, 0, 0, 907, 908, 7, 8, 0, 0, 908, 84, 1, 0, 0, 0, 909, 910, 7, 7, 0, 0, 910, 911, 7, 12, 0, 0, 911, 912, 7, 9, 0, 0, 912, 913, 7, 9, 0, 0, 913, 914, 7, 8, 0, 0, 914, 915, 7, 3, 0, 0, 915, 916, 7, 5, 0, 0, 916, 917, 5, 95, 0, 0, 917, 918, 7, 5, 0, 0, 918, 919, 7, 6, 0, 0, 919, 920, 7, 22, 0, 0, 920, 921, 7, 8, 0, 0, 921, 922, 7, 10, 0, 0, 922, 923, 7, 5, 0, 0, 923, 924, 7, 0, 0, 0, 924, 925, 7, 22, 0, 0, 925, 926, 7, 19, 0, 0, 926, 86, 1, 0, 0, 0, 927, 928, 7, 7, 0, 0, 928, 929, 7, 12, 0, 0, 929, 930, 7, 9, 0, 0, 930, 931, 7, 9, 0, 0, 931, 932, 7, 8, 0, 0, 932, 933, 7, 3, 0, 0, 933, 934, 7, 5, 0, 0, 934, 935, 5, 95, 0, 0, 935, 936, 7, 12, 0, 0, 936, 937, 7, 10, 0, 0, 937, 938, 7, 8, 0, 0, 938, 939, 7, 9, 0, 0, 939, 88, 1, 0, 0, 0, 940, 941, 7, 1, 0, 0, 941, 942, 7, 0, 0, 0, 942, 943, 7, 5, 0, 0, 943, 944, 7, 0, 0, 0, 944, 90, 1, 0, 0, 0, 945, 946, 7, 1, 0, 0, 946, 947, 7, 0, 0, 0, 947, 948, 7, 5, 0, 0, 948, 949, 7, 0, 0, 0, 949, 950, 7, 16, 0, 0, 950, 951, 7, 0, 0, 0, 951, 952, 7, 10, 0, 0, 952, 953, 7, 8, 0, 0, 953, 92, 1, 0, 0, 0, 954, 955, 7, 1, 0, 0, 955, 956, 7, 0, 0, 0, 956, 957, 7, 5, 0, 0, 957, 958, 7, 0, 0, 0, 958, 959, 7, 16, 0, 0, 959, 960, 7, 0, 0, 0, 960, 961, 7, 10, 0, 0, 961, 962, 7, 8, 0, 0, 962, 963, 7, 10, 0, 0, 963, 94, 1, 0, 0, 0, 964, 965, 7, 1, 0, 0, 965, 966, 7, 0, 0, 0, 966, 967, 7, 4, 0, 0, 967, 96, 1, 0, 0, 0, 968, 969, 7, 1, 0, 0, 969, 970, 7, 0, 0, 0, 970, 971, 7, 4, 0, 0, 971, 972, 7, 10, 0, 0, 972, 98, 1, 0, 0, 0, 973, 974, 7, 1, 0, 0, 974, 975, 7, 8, 0, 0, 975, 976, 7, 2, 0, 0, 976, 977, 7, 8, 0, 0, 977, 978, 7, 5, 0, 0, 978, 979, 7, 8, 0, 0, 979, 100, 1, 0, 0, 0, 980, 981, 7, 1, 0, 0, 981, 982, 7, 8, 0, 0, 982, 983, 7, 20, 0, 0, 983, 984, 7, 0, 0, 0, 984, 985, 7, 12, 0, 0, 985, 986, 7, 2, 0, 0, 986, 987, 7, 5, 0, 0, 987, 102, 1, 0, 0, 0, 988, 989, 7, 1, 0, 0, 989, 990, 7, 8, 0, 0, 990, 991, 7, 2, 0, 0, 991, 992, 7, 6, 0, 0, 992, 993, 7, 22, 0, 0, 993, 994, 7, 6, 0, 0, 994, 995, 7, 5, 0, 0, 995, 996, 7, 8, 0, 0, 996, 997, 7, 1, 0, 0, 997, 104, 1, 0, 0, 0, 998, 999, 7, 1, 0, 0, 999, 1000, 7, 6, 0, 0, 1000, 1001, 7, 10, 0, 0, 1001, 1002, 7, 0, 0, 0, 1002, 1003, 7, 16, 0, 0, 1003, 1004, 7, 2, 0, 0, 1004, 1005, 7, 8, 0, 0, 1005, 106, 1, 0, 0, 0, 1006, 1007, 7, 12, 0, 0, 1007, 1008, 7, 19, 0, 0, 1008, 1009, 7, 1, 0, 0, 1009, 1010, 7, 0, 0, 0, 1010, 1011, 7, 5, 0, 0, 1011, 1012, 7, 8, 0, 0, 1012, 108, 1, 0, 0, 0, 1013, 1014, 7, 1, 0, 0, 1014, 1015, 7, 8, 0, 0, 1015, 1016, 7, 10, 0, 0, 1016, 1017, 7, 7, 0, 0, 1017, 110, 1, 0, 0, 0, 1018, 1019, 7, 1, 0, 0, 1019, 1020, 7, 8, 0, 0, 1020, 1021, 7, 10, 0, 0, 1021, 1022, 7, 7, 0, 0, 1022, 1023, 7, 9, 0, 0, 1023, 1024, 7, 6, 0, 0, 1024, 1025, 7, 16, 0, 0, 1025, 1026, 7, 8, 0, 0, 1026, 112, 1, 0, 0, 0, 1027, 1028, 7, 1, 0, 0, 1028, 1029, 7, 6, 0, 0, 1029, 1030, 7, 10, 0, 0, 1030, 1031, 7, 5, 0, 0, 1031, 1032, 7, 6, 0, 0, 1032, 1033, 7, 3, 0, 0, 1033, 1034, 7, 7, 0, 0, 1034, 1035, 7, 5, 0, 0, 1035, 114, 1, 0, 0, 0, 1036, 1037, 7, 1, 0, 0, 1037, 1038, 7, 9, 0, 0, 1038, 1039, 7, 14, 0, 0, 1039, 1040, 7, 19, 0, 0, 1040, 116, 1, 0, 0, 0, 1041, 1042, 7, 8, 0, 0, 1042, 1043, 7, 2, 0, 0, 1043, 1044, 7, 10, 0, 0, 1044, 1045, 7, 8, 0, 0, 1045, 118, 1, 0, 0, 0, 1046, 1047, 7, 8, 0, 0, 1047, 1048, 7, 3, 0, 0, 1048, 1049, 7, 7, 0, 0, 1049, 1050, 7, 14, 0, 0, 1050, 1051, 7, 1, 0, 0, 1051, 1052, 7, 6, 0, 0, 1052, 1053, 7, 3, 0, 0, 1053, 1054, 7, 11, 0, 0, 1054, 120, 1, 0, 0, 0, 1055, 1056, 7, 8, 0, 0, 1056, 1057, 7, 3, 0, 0, 1057, 1058, 7, 1, 0, 0, 1058, 122, 1, 0, 0, 0, 1059, 1060, 7, 8, 0, 0, 1060, 1061, 7, 10, 0, 0, 1061, 1062, 7, 7, 0, 0, 1062, 1063, 7, 0, 0, 0, 1063, 1064, 7, 19, 0, 0, 1064, 1065, 7, 8, 0, 0, 1065, 124, 1, 0, 0, 0, 1066, 1067, 7, 8, 0, 0, 1067, 1068, 7, 10, 0, 0, 1068, 1069, 7, 7, 0, 0, 1069, 1070, 7, 0, 0, 0, 1070, 1071, 7, 19, 0, 0, 1071, 1072, 7, 8, 0, 0, 1072, 1073, 7, 1, 0, 0, 1073, 126, 1, 0, 0, 0, 1074, 1075, 7, 8, 0, 0, 1075, 1076, 7, 21, 0, 0, 1076, 1077, 7, 7, 0, 0, 1077, 1078, 7, 8, 0, 0, 1078, 1079, 7, 19, 0, 0, 1079, 1080, 7, 5, 0, 0, 1080, 128, 1, 0, 0, 0, 1081, 1082, 7, 8, 0, 0, 1082, 1083, 7, 21, 0, 0, 1083, 1084, 7, 7, 0, 0, 1084, 1085, 7, 2, 0, 0, 1085, 1086, 7, 12, 0, 0, 1086, 1087, 7, 1, 0, 0, 1087, 1088, 7, 6, 0, 0, 1088, 1089, 7, 3, 0, 0, 1089, 1090, 7, 11, 0, 0, 1090, 130, 1, 0, 0, 0, 1091, 1092, 7, 8, 0, 0, 1092, 1093, 7, 21, 0, 0, 1093, 1094, 7, 6, 0, 0, 1094, 1095, 7, 10, 0, 0, 1095, 1096, 7, 5, 0, 0, 1096, 1097, 7, 10, 0, 0, 1097, 132, 1, 0, 0, 0, 1098, 1099, 7, 8, 0, 0, 1099, 1100, 7, 21, 0, 0, 1100, 1101, 7, 19, 0, 0, 1101, 1102, 7, 2, 0, 0, 1102, 1103, 7, 0, 0, 0, 1103, 1104, 7, 6, 0, 0, 1104, 1105, 7, 3, 0, 0, 1105, 134, 1, 0, 0, 0, 1106, 1107, 7, 8, 0, 0, 1107, 1108, 7, 21, 0, 0, 1108, 1109, 7, 5, 0, 0, 1109, 1110, 7, 9, 0, 0, 1110, 1111, 7, 0, 0, 0, 1111, 1112, 7, 7, 0, 0, 1112, 1113, 7, 5, 0, 0, 1113, 136, 1, 0, 0, 0, 1114, 1115, 7, 8, 0, 0, 1115, 1116, 7, 21, 0, 0, 1116, 1117, 7, 5, 0, 0, 1117, 1118, 7, 8, 0, 0, 1118, 1119, 7, 3, 0, 0, 1119, 1120, 7, 1, 0, 0, 1120, 1121, 7, 8, 0, 0, 1121, 1122, 7, 1, 0, 0, 1122, 138, 1, 0, 0, 0, 1123, 1124, 7, 20, 0, 0, 1124, 1125, 7, 0, 0, 0, 1125, 1126, 7, 2, 0, 0, 1126, 1127, 7, 10, 0, 0, 1127, 1128, 7, 8, 0, 0, 1128, 140, 1, 0, 0, 0, 1129, 1130, 7, 20, 0, 0, 1130, 1131, 7, 6, 0, 0, 1131, 1132, 7, 8, 0, 0, 1132, 1133, 7, 2, 0, 0, 1133, 1134, 7, 1, 0, 0, 1134, 1135, 7, 10, 0, 0, 1135, 142, 1, 0, 0, 0, 1136, 1137, 7, 20, 0, 0, 1137, 1138, 7, 6, 0, 0, 1138, 1139, 7, 2, 0, 0, 1139, 1140, 7, 8, 0, 0, 1140, 1141, 7, 20, 0, 0, 1141, 1142, 7, 14, 0, 0, 1142, 1143, 7, 9, 0, 0, 1143, 1144, 7, 22, 0, 0, 1144, 1145, 7, 0, 0, 0, 1145, 1146, 7, 5, 0, 0, 1146, 144, 1, 0, 0, 0, 1147, 1148, 7, 20, 0, 0, 1148, 1149, 7, 6, 0, 0, 1149, 1150, 7, 2, 0, 0, 1150, 1151, 7, 8, 0, 0, 1151, 1152, 7, 10, 0, 0, 1152, 146, 1, 0, 0, 0, 1153, 1154, 7, 20, 0, 0, 1154, 1155, 7, 6, 0, 0, 1155, 1156, 7, 2, 0, 0, 1156, 1157, 7, 5, 0, 0, 1157, 1158, 7, 8, 0, 0, 1158, 1159, 7, 9, 0, 0, 1159, 148, 1, 0, 0, 0, 1160, 1161, 7, 20, 0, 0, 1161, 1162, 7, 6, 0, 0, 1162, 1163, 7, 9, 0, 0, 1163, 1164, 7, 10, 0, 0, 1164, 1165, 7, 5, 0, 0, 1165, 150, 1, 0, 0, 0, 1166, 1167, 7, 20, 0, 0, 1167, 1168, 7, 6, 0, 0, 1168, 1169, 7, 3, 0, 0, 1169, 1170, 7, 0, 0, 0, 1170, 1171, 7, 2, 0, 0, 1171, 1172, 7, 6, 0, 0, 1172, 1173, 7, 15, 0, 0, 1173, 1174, 7, 8, 0, 0, 1174, 1175, 5, 95, 0, 0, 1175, 1176, 7, 20, 0, 0, 1176, 1177, 7, 3, 0, 0, 1177, 152, 1, 0, 0, 0, 1178, 1179, 7, 20, 0, 0, 1179, 1180, 7, 14, 0, 0, 1180, 1181, 7, 2, 0, 0, 1181, 1182, 7, 2, 0, 0, 1182, 1183, 7, 14, 0, 0, 1183, 1184, 7, 17, 0, 0, 1184, 1185, 7, 6, 0, 0, 1185, 1186, 7, 3, 0, 0, 1186, 1187, 7, 11, 0, 0, 1187, 154, 1, 0, 0, 0, 1188, 1189, 7, 20, 0, 0, 1189, 1190, 7, 14, 0, 0, 1190, 1191, 7, 9, 0, 0, 1191, 156, 1, 0, 0, 0, 1192, 1193, 7, 20, 0, 0, 1193, 1194, 7, 14, 0, 0, 1194, 1195, 7, 9, 0, 0, 1195, 1196, 7, 22, 0, 0, 1196, 1197, 7, 0, 0, 0, 1197, 1198, 7, 5, 0, 0, 1198, 158, 1, 0, 0, 0, 1199, 1200, 7, 20, 0, 0, 1200, 1201, 7, 14, 0, 0, 1201, 1202, 7, 9, 0, 0, 1202, 1203, 7, 22, 0, 0, 1203, 1204, 7, 0, 0, 0, 1204, 1205, 7, 5, 0, 0, 1205, 1206, 7, 5, 0, 0, 1206, 1207, 7, 8, 0, 0, 1207, 1208, 7, 1, 0, 0, 1208, 160, 1, 0, 0, 0, 1209, 1210, 7, 20, 0, 0, 1210, 1211, 7, 14, 0, 0, 1211, 1212, 7, 9, 0, 0, 1212, 1213, 7, 8, 0, 0, 1213, 1214, 7, 6, 0, 0, 1214, 1215, 7, 11, 0, 0, 1215, 1216, 7, 3, 0, 0, 1216, 162, 1, 0, 0, 0, 1217, 1218, 7, 20, 0, 0, 1218, 1219, 7, 9, 0, 0, 1219, 1220, 7, 14, 0, 0, 1220, 1221, 7, 22, 0, 0, 1221, 164, 1, 0, 0, 0, 1222, 1223, 7, 20, 0, 0, 1223, 1224, 7, 12, 0, 0, 1224, 1225, 7, 2, 0, 0, 1225, 1226, 7, 2, 0, 0, 1226, 166, 1, 0, 0, 0, 1227, 1228, 7, 20, 0, 0, 1228, 1229, 7, 12, 0, 0, 1229, 1230, 7, 3, 0, 0, 1230, 1231, 7, 7, 0, 0, 1231, 1232, 7, 5, 0, 0, 1232, 1233, 7, 6, 0, 0, 1233, 1234, 7, 14, 0, 0, 1234, 1235, 7, 3, 0, 0, 1235, 168, 1, 0, 0, 0, 1236, 1237, 7, 20, 0, 0, 1237, 1238, 7, 12, 0, 0, 1238, 1239, 7, 3, 0, 0, 1239, 1240, 7, 7, 0, 0, 1240, 1241, 7, 5, 0, 0, 1241, 1242, 7, 6, 0, 0, 1242, 1243, 7, 14, 0, 0, 1243, 1244, 7, 3, 0, 0, 1244, 1245, 7, 10, 0, 0, 1245, 170, 1, 0, 0, 0, 1246, 1247, 7, 11, 0, 0, 1247, 1248, 7, 9, 0, 0, 1248, 1249, 7, 0, 0, 0, 1249, 1250, 7, 3, 0, 0, 1250, 1251, 7, 5, 0, 0, 1251, 172, 1, 0, 0, 0, 1252, 1253, 7, 11, 0, 0, 1253, 1254, 7, 9, 0, 0, 1254, 1255, 7, 14, 0, 0, 1255, 1256, 7, 12, 0, 0, 1256, 1257, 7, 19, 0, 0, 1257, 174, 1, 0, 0, 0, 1258, 1259, 7, 11, 0, 0, 1259, 1260, 7, 9, 0, 0, 1260, 1261, 7, 14, 0, 0, 1261, 1262, 7, 12, 0, 0, 1262, 1263, 7, 19, 0, 0, 1263, 1264, 7, 6, 0, 0, 1264, 1265, 7, 3, 0, 0, 1265, 1266, 7, 11, 0, 0, 1266, 176, 1, 0, 0, 0, 1267, 1268, 7, 13, 0, 0, 1268, 1269, 7, 0, 0, 0, 1269, 1270, 7, 10, 0, 0, 1270, 1271, 7, 13, 0, 0, 1271, 178, 1, 0, 0, 0, 1272, 1273, 7, 13, 0, 0, 1273, 1274, 7, 0, 0, 0, 1274, 1275, 7, 23, 0, 0, 1275, 1276, 7, 6, 0, 0, 1276, 1277, 7, 3, 0, 0, 1277, 1278, 7, 11, 0, 0, 1278, 180, 1, 0, 0, 0, 1279, 1280, 7, 13, 0, 0, 1280, 1281, 7, 14, 0, 0, 1281, 1282, 7, 12, 0, 0, 1282, 1283, 7, 9, 0, 0, 1283, 182, 1, 0, 0, 0, 1284, 1285, 7, 13, 0, 0, 1285, 1286, 7, 14, 0, 0, 1286, 1287, 7, 12, 0, 0, 1287, 1288, 7, 9, 0, 0, 1288, 1289, 7, 10, 0, 0, 1289, 184, 1, 0, 0, 0, 1290, 1291, 7, 6, 0, 0, 1291, 1292, 7, 20, 0, 0, 1292, 186, 1, 0, 0, 0, 1293, 1294, 7, 6, 0, 0, 1294, 1295, 7, 3, 0, 0, 1295, 188, 1, 0, 0, 0, 1296, 1297, 7, 6, 0, 0, 1297, 1298, 7, 3, 0, 0, 1298, 1299, 7, 7, 0, 0, 1299, 1300, 7, 2, 0, 0, 1300, 1301, 7, 12, 0, 0, 1301, 1302, 7, 1, 0, 0, 1302, 1303, 7, 6, 0, 0, 1303, 1304, 7, 3, 0, 0, 1304, 1305, 7, 11, 0, 0, 1305, 190, 1, 0, 0, 0, 1306, 1307, 7, 6, 0, 0, 1307, 1308, 7, 3, 0, 0, 1308, 1309, 7, 7, 0, 0, 1309, 1310, 7, 9, 0, 0, 1310, 1311, 7, 8, 0, 0, 1311, 1312, 7, 22, 0, 0, 1312, 1313, 7, 8, 0, 0, 1313, 1314, 7, 3, 0, 0, 1314, 1315, 7, 5, 0, 0, 1315, 1316, 7, 0, 0, 0, 1316, 1317, 7, 2, 0, 0, 1317, 192, 1, 0, 0, 0, 1318, 1319, 7, 6, 0, 0, 1319, 1320, 7, 3, 0, 0, 1320, 1321, 7, 3, 0, 0, 1321, 1322, 7, 8, 0, 0, 1322, 1323, 7, 9, 0, 0, 1323, 194, 1, 0, 0, 0, 1324, 1325, 7, 6, 0, 0, 1325, 1326, 7, 3, 0, 0, 1326, 1327, 7, 19, 0, 0, 1327, 1328, 7, 0, 0, 0, 1328, 1329, 7, 5, 0, 0, 1329, 1330, 7, 13, 0, 0, 1330, 196, 1, 0, 0, 0, 1331, 1332, 7, 6, 0, 0, 1332, 1333, 7, 3, 0, 0, 1333, 1334, 7, 10, 0, 0, 1334, 1335, 7, 8, 0, 0, 1335, 1336, 7, 9, 0, 0, 1336, 1337, 7, 5, 0, 0, 1337, 198, 1, 0, 0, 0, 1338, 1339, 7, 6, 0, 0, 1339, 1340, 7, 3, 0, 0, 1340, 1341, 7, 5, 0, 0, 1341, 1342, 7, 8, 0, 0, 1342, 1343, 7, 9, 0, 0, 1343, 1344, 7, 10, 0, 0, 1344, 1345, 7, 8, 0, 0, 1345, 1346, 7, 7, 0, 0, 1346, 1347, 7, 5, 0, 0, 1347, 200, 1, 0, 0, 0, 1348, 1349, 7, 6, 0, 0, 1349, 1350, 7, 3, 0, 0, 1350, 1351, 7, 5, 0, 0, 1351, 1352, 7, 8, 0, 0, 1352, 1353, 7, 9, 0, 0, 1353, 1354, 7, 23, 0, 0, 1354, 1355, 7, 0, 0, 0, 1355, 1356, 7, 2, 0, 0, 1356, 202, 1, 0, 0, 0, 1357, 1358, 7, 6, 0, 0, 1358, 1359, 7, 3, 0, 0, 1359, 1360, 7, 5, 0, 0, 1360, 1361, 7, 8, 0, 0, 1361, 1362, 7, 9, 0, 0, 1362, 1363, 7, 22, 0, 0, 1363, 1364, 7, 8, 0, 0, 1364, 1365, 7, 1, 0, 0, 1365, 1366, 7, 6, 0, 0, 1366, 1367, 7, 0, 0, 0, 1367, 1368, 7, 5, 0, 0, 1368, 1369, 7, 8, 0, 0, 1369, 204, 1, 0, 0, 0, 1370, 1371, 7, 6, 0, 0, 1371, 1372, 7, 3, 0, 0, 1372, 1373, 7, 5, 0, 0, 1373, 1374, 7, 14, 0, 0, 1374, 206, 1, 0, 0, 0, 1375, 1376, 7, 6, 0, 0, 1376, 1377, 7, 3, 0, 0, 1377, 1378, 7, 6, 0, 0, 1378, 1379, 7, 5, 0, 0, 1379, 1380, 5, 95, 0, 0, 1380, 1381, 7, 20, 0, 0, 1381, 1382, 7, 3, 0, 0, 1382, 208, 1, 0, 0, 0, 1383, 1384, 7, 6, 0, 0, 1384, 1385, 7, 9, 0, 0, 1385, 1386, 7, 8, 0, 0, 1386, 1387, 7, 11, 0, 0, 1387, 1388, 7, 8, 0, 0, 1388, 1389, 7, 21, 0, 0, 1389, 1390, 7, 19, 0, 0, 1390, 210, 1, 0, 0, 0, 1391, 1392, 7, 6, 0, 0, 1392, 1393, 7, 2, 0, 0, 1393, 1394, 7, 6, 0, 0, 1394, 1395, 7, 18, 0, 0, 1395, 1396, 7, 8, 0, 0, 1396, 212, 1, 0, 0, 0, 1397, 1398, 7, 6, 0, 0, 1398, 1399, 7, 3, 0, 0, 1399, 1400, 7, 23, 0, 0, 1400, 1401, 7, 0, 0, 0, 1401, 1402, 7, 2, 0, 0, 1402, 1403, 7, 6, 0, 0, 1403, 1404, 7, 1, 0, 0, 1404, 1405, 7, 0, 0, 0, 1405, 1406, 7, 5, 0, 0, 1406, 1407, 7, 8, 0, 0, 1407, 214, 1, 0, 0, 0, 1408, 1409, 7, 6, 0, 0, 1409, 1410, 7, 10, 0, 0, 1410, 216, 1, 0, 0, 0, 1411, 1412, 7, 24, 0, 0, 1412, 1413, 7, 14, 0, 0, 1413, 1414, 7, 6, 0, 0, 1414, 1415, 7, 3, 0, 0, 1415, 218, 1, 0, 0, 0, 1416, 1417, 7, 18, 0, 0, 1417, 1418, 7, 8, 0, 0, 1418, 1419, 7, 4, 0, 0, 1419, 220, 1, 0, 0, 0, 1420, 1421, 7, 18, 0, 0, 1421, 1422, 7, 12, 0, 0, 1422, 1423, 7, 1, 0, 0, 1423, 1424, 7, 12, 0, 0, 1424, 222, 1, 0, 0, 0, 1425, 1426, 7, 2, 0, 0, 1426, 1427, 7, 0, 0, 0, 1427, 1428, 7, 10, 0, 0, 1428, 1429, 7, 5, 0, 0, 1429, 224, 1, 0, 0, 0, 1430, 1431, 7, 2, 0, 0, 1431, 1432, 7, 0, 0, 0, 1432, 1433, 7, 5, 0, 0, 1433, 1434, 7, 8, 0, 0, 1434, 1435, 7, 9, 0, 0, 1435, 1436, 7, 0, 0, 0, 1436, 1437, 7, 2, 0, 0, 1437, 226, 1, 0, 0, 0, 1438, 1439, 7, 2, 0, 0, 1439, 1440, 7, 8, 0, 0, 1440, 1441, 7, 20, 0, 0, 1441, 1442, 7, 5, 0, 0, 1442, 228, 1, 0, 0, 0, 1443, 1444, 7, 2, 0, 0, 1444, 1445, 7, 6, 0, 0, 1445, 1446, 7, 18, 0, 0, 1446, 1447, 7, 8, 0, 0, 1447, 230, 1, 0, 0, 0, 1448, 1449, 7, 2, 0, 0, 1449, 1450, 7, 6, 0, 0, 1450, 1451, 7, 22, 0, 0, 1451, 1452, 7, 6, 0, 0, 1452, 1453, 7, 5, 0, 0, 1453, 232, 1, 0, 0, 0, 1454, 1455, 7, 2, 0, 0, 1455, 1456, 7, 6, 0, 0, 1456, 1457, 7, 3, 0, 0, 1457, 1458, 7, 8, 0, 0, 1458, 1459, 7, 10, 0, 0, 1459, 234, 1, 0, 0, 0, 1460, 1461, 7, 2, 0, 0, 1461, 1462, 7, 14, 0, 0, 1462, 1463, 7, 0, 0, 0, 1463, 1464, 7, 1, 0, 0, 1464, 236, 1, 0, 0, 0, 1465, 1466, 7, 2, 0, 0, 1466, 1467, 7, 14, 0, 0, 1467, 1468, 7, 7, 0, 0, 1468, 1469, 7, 0, 0, 0, 1469, 1470, 7, 2, 0, 0, 1470, 1471, 7, 5, 0, 0, 1471, 1472, 7, 6, 0, 0, 1472, 1473, 7, 22, 0, 0, 1473, 1474, 7, 8, 0, 0, 1474, 238, 1, 0, 0, 0, 1475, 1476, 7, 2, 0, 0, 1476, 1477, 7, 14, 0, 0, 1477, 1478, 7, 7, 0, 0, 1478, 1479, 7, 0, 0, 0, 1479, 1480, 7, 2, 0, 0, 1480, 1481, 7, 5, 0, 0, 1481, 1482, 7, 6, 0, 0, 1482, 1483, 7, 22, 0, 0, 1483, 1484, 7, 8, 0, 0, 1484, 1485, 7, 10, 0, 0, 1485, 1486, 7, 5, 0, 0, 1486, 1487, 7, 0, 0, 0, 1487, 1488, 7, 22, 0, 0, 1488, 1489, 7, 19, 0, 0, 1489, 240, 1, 0, 0, 0, 1490, 1491, 7, 22, 0, 0, 1491, 1492, 7, 8, 0, 0, 1492, 1493, 7, 5, 0, 0, 1493, 1494, 7, 0, 0, 0, 1494, 1495, 7, 1, 0, 0, 1495, 1496, 7, 0, 0, 0, 1496, 1497, 7, 5, 0, 0, 1497, 1498, 7, 0, 0, 0, 1498, 242, 1, 0, 0, 0, 1499, 1500, 7, 22, 0, 0, 1500, 1501, 7, 6, 0, 0, 1501, 1502, 7, 3, 0, 0, 1502, 1503, 7, 12, 0, 0, 1503, 1504, 7, 5, 0, 0, 1504, 1505, 7, 8, 0, 0, 1505, 244, 1, 0, 0, 0, 1506, 1507, 7, 22, 0, 0, 1507, 1508, 7, 6, 0, 0, 1508, 1509, 7, 3, 0, 0, 1509, 1510, 7, 12, 0, 0, 1510, 1511, 7, 5, 0, 0, 1511, 1512, 7, 8, 0, 0, 1512, 1513, 7, 10, 0, 0, 1513, 246, 1, 0, 0, 0, 1514, 1515, 7, 22, 0, 0, 1515, 1516, 7, 14, 0, 0, 1516, 1517, 7, 3, 0, 0, 1517, 1518, 7, 5, 0, 0, 1518, 1519, 7, 13, 0, 0, 1519, 248, 1, 0, 0, 0, 1520, 1521, 7, 22, 0, 0, 1521, 1522, 7, 14, 0, 0, 1522, 1523, 7, 3, 0, 0, 1523, 1524, 7, 5, 0, 0, 1524, 1525, 7, 13, 0, 0, 1525, 1526, 7, 10, 0, 0, 1526, 250, 1, 0, 0, 0, 1527, 1528, 7, 22, 0, 0, 1528, 1529, 7, 8, 0, 0, 1529, 1530, 7, 9, 0, 0, 1530, 1531, 7, 11, 0, 0, 1531, 1532, 7, 8, 0, 0, 1532, 1533, 5, 95, 0, 0, 1533, 1534, 7, 20, 0, 0, 1534, 1535, 7, 3, 0, 0, 1535, 252, 1, 0, 0, 0, 1536, 1537, 7, 3, 0, 0, 1537, 1538, 7, 20, 0, 0, 1538, 1539, 7, 7, 0, 0, 1539, 254, 1, 0, 0, 0, 1540, 1541, 7, 3, 0, 0, 1541, 1542, 7, 20, 0, 0, 1542, 1543, 7, 1, 0, 0, 1543, 256, 1, 0, 0, 0, 1544, 1545, 7, 3, 0, 0, 1545, 1546, 7, 20, 0, 0, 1546, 1547, 7, 18, 0, 0, 1547, 1548, 7, 7, 0, 0, 1548, 258, 1, 0, 0, 0, 1549, 1550, 7, 3, 0, 0, 1550, 1551, 7, 20, 0, 0, 1551, 1552, 7, 18, 0, 0, 1552, 1553, 7, 1, 0, 0, 1553, 260, 1, 0, 0, 0, 1554, 1555, 7, 3, 0, 0, 1555, 1556, 7, 14, 0, 0, 1556, 1557, 7, 9, 0, 0, 1557, 1558, 7, 22, 0, 0, 1558, 1559, 7, 0, 0, 0, 1559, 1560, 7, 2, 0, 0, 1560, 1561, 7, 6, 0, 0, 1561, 1562, 7, 15, 0, 0, 1562, 1563, 7, 8, 0, 0, 1563, 262, 1, 0, 0, 0, 1564, 1565, 7, 3, 0, 0, 1565, 1566, 7, 14, 0, 0, 1566, 1567, 7, 5, 0, 0, 1567, 264, 1, 0, 0, 0, 1568, 1569, 7, 3, 0, 0, 1569, 1570, 7, 12, 0, 0, 1570, 1571, 7, 2, 0, 0, 1571, 1572, 7, 2, 0, 0, 1572, 266, 1, 0, 0, 0, 1573, 1574, 7, 3, 0, 0, 1574, 1575, 7, 12, 0, 0, 1575, 1576, 7, 2, 0, 0, 1576, 1577, 7, 2, 0, 0, 1577, 1578, 7, 10, 0, 0, 1578, 268, 1, 0, 0, 0, 1579, 1580, 7, 14, 0, 0, 1580, 1581, 7, 20, 0, 0, 1581, 1582, 7, 20, 0, 0, 1582, 1583, 7, 10, 0, 0, 1583, 1584, 7, 8, 0, 0, 1584, 1585, 7, 5, 0, 0, 1585, 270, 1, 0, 0, 0, 1586, 1587, 7, 14, 0, 0, 1587, 1588, 7, 3, 0, 0, 1588, 272, 1, 0, 0, 0, 1589, 1590, 7, 14, 0, 0, 1590, 1591, 7, 19, 0, 0, 1591, 1592, 7, 5, 0, 0, 1592, 1593, 7, 6, 0, 0, 1593, 1594, 7, 14, 0, 0, 1594, 1595, 7, 3, 0, 0, 1595, 274, 1, 0, 0, 0, 1596, 1597, 7, 14, 0, 0, 1597, 1598, 7, 9, 0, 0, 1598, 276, 1, 0, 0, 0, 1599, 1600, 7, 14, 0, 0, 1600, 1601, 7, 9, 0, 0, 1601, 1602, 7, 1, 0, 0, 1602, 1603, 7, 8, 0, 0, 1603, 1604, 7, 9, 0, 0, 1604, 278, 1, 0, 0, 0, 1605, 1606, 7, 14, 0, 0, 1606, 1607, 7, 9, 0, 0, 1607, 1608, 7, 1, 0, 0, 1608, 1609, 7, 6, 0, 0, 1609, 1610, 7, 3, 0, 0, 1610, 1611, 7, 0, 0, 0, 1611, 1612, 7, 2, 0, 0, 1612, 1613, 7, 6, 0, 0, 1613, 1614, 7, 5, 0, 0, 1614, 1615, 7, 4, 0, 0, 1615, 280, 1, 0, 0, 0, 1616, 1617, 7, 14, 0, 0, 1617, 1618, 7, 12, 0, 0, 1618, 1619, 7, 5, 0, 0, 1619, 1620, 7, 8, 0, 0, 1620, 1621, 7, 9, 0, 0, 1621, 282, 1, 0, 0, 0, 1622, 1623, 7, 14, 0, 0, 1623, 1624, 7, 17, 0, 0, 1624, 1625, 7, 3, 0, 0, 1625, 1626, 7, 8, 0, 0, 1626, 1627, 7, 9, 0, 0, 1627, 284, 1, 0, 0, 0, 1628, 1629, 7, 14, 0, 0, 1629, 1630, 7, 23, 0, 0, 1630, 1631, 7, 8, 0, 0, 1631, 1632, 7, 9, 0, 0, 1632, 286, 1, 0, 0, 0, 1633, 1634, 7, 14, 0, 0, 1634, 1635, 7, 23, 0, 0, 1635, 1636, 7, 8, 0, 0, 1636, 1637, 7, 9, 0, 0, 1637, 1638, 7, 17, 0, 0, 1638, 1639, 7, 9, 0, 0, 1639, 1640, 7, 6, 0, 0, 1640, 1641, 7, 5, 0, 0, 1641, 1642, 7, 8, 0, 0, 1642, 288, 1, 0, 0, 0, 1643, 1644, 7, 19, 0, 0, 1644, 1645, 7, 0, 0, 0, 1645, 1646, 7, 9, 0, 0, 1646, 1647, 7, 5, 0, 0, 1647, 1648, 7, 6, 0, 0, 1648, 1649, 7, 5, 0, 0, 1649, 1650, 7, 6, 0, 0, 1650, 1651, 7, 14, 0, 0, 1651, 1652, 7, 3, 0, 0, 1652, 290, 1, 0, 0, 0, 1653, 1654, 7, 19, 0, 0, 1654, 1655, 7, 0, 0, 0, 1655, 1656, 7, 9, 0, 0, 1656, 1657, 7, 5, 0, 0, 1657, 1658, 7, 6, 0, 0, 1658, 1659, 7, 5, 0, 0, 1659, 1660, 7, 6, 0, 0, 1660, 1661, 7, 14, 0, 0, 1661, 1662, 7, 3, 0, 0, 1662, 1663, 7, 10, 0, 0, 1663, 292, 1, 0, 0, 0, 1664, 1665, 7, 19, 0, 0, 1665, 1666, 7, 0, 0, 0, 1666, 1667, 7, 9, 0, 0, 1667, 1668, 7, 25, 0, 0, 1668, 1669, 7, 12, 0, 0, 1669, 1670, 7, 8, 0, 0, 1670, 1671, 7, 5, 0, 0, 1671, 294, 1, 0, 0, 0, 1672, 1673, 7, 19, 0, 0, 1673, 1674, 7, 14, 0, 0, 1674, 1675, 7, 10, 0, 0, 1675, 1676, 7, 6, 0, 0, 1676, 1677, 7, 5, 0, 0, 1677, 1678, 7, 6, 0, 0, 1678, 1679, 7, 14, 0, 0, 1679, 1680, 7, 3, 0, 0, 1680, 296, 1, 0, 0, 0, 1681, 1682, 7, 19, 0, 0, 1682, 1683, 7, 9, 0, 0, 1683, 1684, 7, 8, 0, 0, 1684, 1685, 7, 7, 0, 0, 1685, 1686, 7, 8, 0, 0, 1686, 1687, 7, 1, 0, 0, 1687, 1688, 7, 6, 0, 0, 1688, 1689, 7, 3, 0, 0, 1689, 1690, 7, 11, 0, 0, 1690, 298, 1, 0, 0, 0, 1691, 1692, 7, 19, 0, 0, 1692, 1693, 7, 9, 0, 0, 1693, 1694, 7, 6, 0, 0, 1694, 1695, 7, 22, 0, 0, 1695, 1696, 7, 0, 0, 0, 1696, 1697, 7, 9, 0, 0, 1697, 1698, 7, 4, 0, 0, 1698, 300, 1, 0, 0, 0, 1699, 1700, 7, 9, 0, 0, 1700, 1701, 7, 8, 0, 0, 1701, 1702, 7, 19, 0, 0, 1702, 1703, 7, 2, 0, 0, 1703, 1704, 7, 6, 0, 0, 1704, 1705, 7, 7, 0, 0, 1705, 1706, 7, 0, 0, 0, 1706, 1707, 7, 5, 0, 0, 1707, 1708, 7, 6, 0, 0, 1708, 1709, 7, 14, 0, 0, 1709, 1710, 7, 3, 0, 0, 1710, 302, 1, 0, 0, 0, 1711, 1712, 7, 19, 0, 0, 1712, 1713, 7, 9, 0, 0, 1713, 1714, 7, 6, 0, 0, 1714, 1715, 7, 23, 0, 0, 1715, 1716, 7, 6, 0, 0, 1716, 1717, 7, 2, 0, 0, 1717, 1718, 7, 8, 0, 0, 1718, 1719, 7, 11, 0, 0, 1719, 1720, 7, 8, 0, 0, 1720, 1721, 7, 10, 0, 0, 1721, 304, 1, 0, 0, 0, 1722, 1723, 7, 19, 0, 0, 1723, 1724, 7, 9, 0, 0, 1724, 1725, 7, 14, 0, 0, 1725, 1726, 7, 19, 0, 0, 1726, 1727, 7, 8, 0, 0, 1727, 1728, 7, 9, 0, 0, 1728, 1729, 7, 5, 0, 0, 1729, 1730, 7, 6, 0, 0, 1730, 1731, 7, 8, 0, 0, 1731, 1732, 7, 10, 0, 0, 1732, 306, 1, 0, 0, 0, 1733, 1734, 7, 9, 0, 0, 1734, 1735, 7, 0, 0, 0, 1735, 1736, 7, 3, 0, 0, 1736, 1737, 7, 11, 0, 0, 1737, 1738, 7, 8, 0, 0, 1738, 308, 1, 0, 0, 0, 1739, 1740, 7, 9, 0, 0, 1740, 1741, 7, 8, 0, 0, 1741, 1742, 7, 7, 0, 0, 1742, 1743, 7, 14, 0, 0, 1743, 1744, 7, 23, 0, 0, 1744, 1745, 7, 8, 0, 0, 1745, 1746, 7, 9, 0, 0, 1746, 310, 1, 0, 0, 0, 1747, 1748, 7, 9, 0, 0, 1748, 1749, 7, 8, 0, 0, 1749, 1750, 7, 3, 0, 0, 1750, 1751, 7, 0, 0, 0, 1751, 1752, 7, 22, 0, 0, 1752, 1753, 7, 8, 0, 0, 1753, 312, 1, 0, 0, 0, 1754, 1755, 7, 9, 0, 0, 1755, 1756, 7, 8, 0, 0, 1756, 1757, 7, 19, 0, 0, 1757, 1758, 7, 8, 0, 0, 1758, 1759, 7, 0, 0, 0, 1759, 1760, 7, 5, 0, 0, 1760, 1761, 7, 0, 0, 0, 1761, 1762, 7, 16, 0, 0, 1762, 1763, 7, 2, 0, 0, 1763, 1764, 7, 8, 0, 0, 1764, 314, 1, 0, 0, 0, 1765, 1766, 7, 9, 0, 0, 1766, 1767, 7, 8, 0, 0, 1767, 1768, 7, 19, 0, 0, 1768, 1769, 7, 2, 0, 0, 1769, 1770, 7, 0, 0, 0, 1770, 1771, 7, 7, 0, 0, 1771, 1772, 7, 8, 0, 0, 1772, 316, 1, 0, 0, 0, 1773, 1774, 7, 9, 0, 0, 1774, 1775, 7, 8, 0, 0, 1775, 1776, 7, 10, 0, 0, 1776, 1777, 7, 5, 0, 0, 1777, 1778, 7, 9, 0, 0, 1778, 1779, 7, 6, 0, 0, 1779, 1780, 7, 7, 0, 0, 1780, 1781, 7, 5, 0, 0, 1781, 318, 1, 0, 0, 0, 1782, 1783, 7, 9, 0, 0, 1783, 1784, 7, 8, 0, 0, 1784, 1785, 7, 5, 0, 0, 1785, 1786, 7, 12, 0, 0, 1786, 1787, 7, 9, 0, 0, 1787, 1788, 7, 3, 0, 0, 1788, 1789, 7, 10, 0, 0, 1789, 320, 1, 0, 0, 0, 1790, 1791, 7, 9, 0, 0, 1791, 1792, 7, 8, 0, 0, 1792, 1793, 7, 23, 0, 0, 1793, 1794, 7, 14, 0, 0, 1794, 1795, 7, 18, 0, 0, 1795, 1796, 7, 8, 0, 0, 1796, 322, 1, 0, 0, 0, 1797, 1798, 7, 9, 0, 0, 1798, 1799, 7, 8, 0, 0, 1799, 1800, 7, 20, 0, 0, 1800, 1801, 7, 9, 0, 0, 1801, 1802, 7, 8, 0, 0, 1802, 1803, 7, 10, 0, 0, 1803, 1804, 7, 13, 0, 0, 1804, 324, 1, 0, 0, 0, 1805, 1806, 7, 9, 0, 0, 1806, 1807, 7, 8, 0, 0, 1807, 1808, 7, 11, 0, 0, 1808, 1809, 7, 8, 0, 0, 1809, 1810, 7, 21, 0, 0, 1810, 1811, 7, 19, 0, 0, 1811, 326, 1, 0, 0, 0, 1812, 1813, 7, 9, 0, 0, 1813, 1814, 7, 2, 0, 0, 1814, 1815, 7, 6, 0, 0, 1815, 1816, 7, 18, 0, 0, 1816, 1817, 7, 8, 0, 0, 1817, 328, 1, 0, 0, 0, 1818, 1819, 7, 9, 0, 0, 1819, 1820, 7, 6, 0, 0, 1820, 1821, 7, 11, 0, 0, 1821, 1822, 7, 13, 0, 0, 1822, 1823, 7, 5, 0, 0, 1823, 330, 1, 0, 0, 0, 1824, 1825, 7, 9, 0, 0, 1825, 1826, 7, 14, 0, 0, 1826, 1827, 7, 2, 0, 0, 1827, 1828, 7, 8, 0, 0, 1828, 332, 1, 0, 0, 0, 1829, 1830, 7, 9, 0, 0, 1830, 1831, 7, 14, 0, 0, 1831, 1832, 7, 2, 0, 0, 1832, 1833, 7, 8, 0, 0, 1833, 1834, 7, 10, 0, 0, 1834, 334, 1, 0, 0, 0, 1835, 1836, 7, 9, 0, 0, 1836, 1837, 7, 14, 0, 0, 1837, 1838, 7, 17, 0, 0, 1838, 336, 1, 0, 0, 0, 1839, 1840, 7, 9, 0, 0, 1840, 1841, 7, 14, 0, 0, 1841, 1842, 7, 17, 0, 0, 1842, 1843, 7, 10, 0, 0, 1843, 338, 1, 0, 0, 0, 1844, 1845, 7, 10, 0, 0, 1845, 1846, 7, 7, 0, 0, 1846, 1847, 7, 13, 0, 0, 1847, 1848, 7, 8, 0, 0, 1848, 1849, 7, 22, 0, 0, 1849, 1850, 7, 0, 0, 0, 1850, 340, 1, 0, 0, 0, 1851, 1852, 7, 10, 0, 0, 1852, 1853, 7, 7, 0, 0, 1853, 1854, 7, 13, 0, 0, 1854, 1855, 7, 8, 0, 0, 1855, 1856, 7, 22, 0, 0, 1856, 1857, 7, 0, 0, 0, 1857, 1858, 7, 10, 0, 0, 1858, 342, 1, 0, 0, 0, 1859, 1860, 7, 10, 0, 0, 1860, 1861, 7, 8, 0, 0, 1861, 1862, 7, 7, 0, 0, 1862, 1863, 7, 14, 0, 0, 1863, 1864, 7, 3, 0, 0, 1864, 1865, 7, 1, 0, 0, 1865, 344, 1, 0, 0, 0, 1866, 1867, 7, 10, 0, 0, 1867, 1868, 7, 8, 0, 0, 1868, 1869, 7, 7, 0, 0, 1869, 1870, 7, 14, 0, 0, 1870, 1871, 7, 3, 0, 0, 1871, 1872, 7, 1, 0, 0, 1872, 1873, 7, 10, 0, 0, 1873, 346, 1, 0, 0, 0, 1874, 1875, 7, 10, 0, 0, 1875, 1876, 7, 8, 0, 0, 1876, 1877, 7, 2, 0, 0, 1877, 1878, 7, 8, 0, 0, 1878, 1879, 7, 7, 0, 0, 1879, 1880, 7, 5, 0, 0, 1880, 348, 1, 0, 0, 0, 1881, 1882, 7, 10, 0, 0, 1882, 1883, 7, 8, 0, 0, 1883, 1884, 7, 9, 0, 0, 1884, 1885, 7, 1, 0, 0, 1885, 1886, 7, 8, 0, 0, 1886, 1887, 7, 19, 0, 0, 1887, 1888, 7, 9, 0, 0, 1888, 1889, 7, 14, 0, 0, 1889, 1890, 7, 19, 0, 0, 1890, 1891, 7, 8, 0, 0, 1891, 1892, 7, 9, 0, 0, 1892, 1893, 7, 5, 0, 0, 1893, 1894, 7, 6, 0, 0, 1894, 1895, 7, 8, 0, 0, 1895, 1896, 7, 10, 0, 0, 1896, 350, 1, 0, 0, 0, 1897, 1898, 7, 10, 0, 0, 1898, 1899, 7, 8, 0, 0, 1899, 1900, 7, 5, 0, 0, 1900, 352, 1, 0, 0, 0, 1901, 1902, 7, 10, 0, 0, 1902, 1903, 7, 8, 0, 0, 1903, 1904, 7, 22, 0, 0, 1904, 1905, 7, 6, 0, 0, 1905, 354, 1, 0, 0, 0, 1906, 1907, 7, 10, 0, 0, 1907, 1908, 7, 8, 0, 0, 1908, 1909, 7, 9, 0, 0, 1909, 1910, 7, 23, 0, 0, 1910, 1911, 7, 8, 0, 0, 1911, 1912, 7, 9, 0, 0, 1912, 356, 1, 0, 0, 0, 1913, 1914, 7, 10, 0, 0, 1914, 1915, 7, 13, 0, 0, 1915, 1916, 7, 14, 0, 0, 1916, 1917, 7, 17, 0, 0, 1917, 358, 1, 0, 0, 0, 1918, 1919, 7, 10, 0, 0, 1919, 1920, 7, 13, 0, 0, 1920, 1921, 7, 12, 0, 0, 1921, 1922, 7, 5, 0, 0, 1922, 1923, 7, 1, 0, 0, 1923, 1924, 7, 14, 0, 0, 1924, 1925, 7, 17, 0, 0, 1925, 1926, 7, 3, 0, 0, 1926, 360, 1, 0, 0, 0, 1927, 1928, 7, 10, 0, 0, 1928, 1929, 7, 14, 0, 0, 1929, 1930, 7, 22, 0, 0, 1930, 1931, 7, 8, 0, 0, 1931, 362, 1, 0, 0, 0, 1932, 1933, 7, 10, 0, 0, 1933, 1934, 7, 5, 0, 0, 1934, 1935, 7, 0, 0, 0, 1935, 1936, 7, 5, 0, 0, 1936, 1937, 7, 10, 0, 0, 1937, 364, 1, 0, 0, 0, 1938, 1939, 7, 10, 0, 0, 1939, 1940, 7, 5, 0, 0, 1940, 1941, 7, 9, 0, 0, 1941, 1942, 7, 0, 0, 0, 1942, 1943, 7, 6, 0, 0, 1943, 1944, 7, 11, 0, 0, 1944, 1945, 7, 13, 0, 0, 1945, 1946, 7, 5, 0, 0, 1946, 1947, 5, 95, 0, 0, 1947, 1948, 7, 24, 0, 0, 1948, 1949, 7, 14, 0, 0, 1949, 1950, 7, 6, 0, 0, 1950, 1951, 7, 3, 0, 0, 1951, 366, 1, 0, 0, 0, 1952, 1953, 7, 10, 0, 0, 1953, 1954, 7, 12, 0, 0, 1954, 1955, 7, 16, 0, 0, 1955, 1956, 7, 10, 0, 0, 1956, 1957, 7, 5, 0, 0, 1957, 1958, 7, 9, 0, 0, 1958, 1959, 7, 6, 0, 0, 1959, 1960, 7, 3, 0, 0, 1960, 1961, 7, 11, 0, 0, 1961, 368, 1, 0, 0, 0, 1962, 1963, 7, 10, 0, 0, 1963, 1964, 7, 4, 0, 0, 1964, 1965, 7, 10, 0, 0, 1965, 1966, 7, 5, 0, 0, 1966, 1967, 7, 8, 0, 0, 1967, 1968, 7, 22, 0, 0, 1968, 370, 1, 0, 0, 0, 1969, 1970, 7, 10, 0, 0, 1970, 1971, 7, 4, 0, 0, 1971, 1972, 7, 22, 0, 0, 1972, 1973, 7, 16, 0, 0, 1973, 1974, 7, 14, 0, 0, 1974, 1975, 7, 2, 0, 0, 1975, 372, 1, 0, 0, 0, 1976, 1977, 7, 10, 0, 0, 1977, 1978, 7, 8, 0, 0, 1978, 1979, 7, 9, 0, 0, 1979, 1980, 7, 6, 0, 0, 1980, 1981, 7, 0, 0, 0, 1981, 1982, 7, 2, 0, 0, 1982, 1983, 7, 6, 0, 0, 1983, 1984, 7, 15, 0, 0, 1984, 1985, 7, 8, 0, 0, 1985, 1986, 5, 95, 0, 0, 1986, 1987, 7, 20, 0, 0, 1987, 1988, 7, 3, 0, 0, 1988, 374, 1, 0, 0, 0, 1989, 1990, 7, 5, 0, 0, 1990, 1991, 7, 0, 0, 0, 1991, 1992, 7, 16, 0, 0, 1992, 1993, 7, 2, 0, 0, 1993, 1994, 7, 8, 0, 0, 1994, 376, 1, 0, 0, 0, 1995, 1996, 7, 5, 0, 0, 1996, 1997, 7, 0, 0, 0, 1997, 1998, 7, 16, 0, 0, 1998, 1999, 7, 2, 0, 0, 1999, 2000, 7, 8, 0, 0, 2000, 2001, 7, 10, 0, 0, 2001, 378, 1, 0, 0, 0, 2002, 2003, 7, 5, 0, 0, 2003, 2004, 7, 0, 0, 0, 2004, 2005, 7, 16, 0, 0, 2005, 2006, 7, 2, 0, 0, 2006, 2007, 7, 8, 0, 0, 2007, 2008, 7, 10, 0, 0, 2008, 2009, 7, 0, 0, 0, 2009, 2010, 7, 22, 0, 0, 2010, 2011, 7, 19, 0, 0, 2011, 2012, 7, 2, 0, 0, 2012, 2013, 7, 8, 0, 0, 2013, 380, 1, 0, 0, 0, 2014, 2015, 7, 5, 0, 0, 2015, 2016, 7, 8, 0, 0, 2016, 2017, 7, 9, 0, 0, 2017, 2018, 7, 22, 0, 0, 2018, 2019, 7, 6, 0, 0, 2019, 2020, 7, 3, 0, 0, 2020, 2021, 7, 0, 0, 0, 2021, 2022, 7, 5, 0, 0, 2022, 2023, 7, 8, 0, 0, 2023, 2024, 7, 1, 0, 0, 2024, 2025, 5, 32, 0, 0, 2025, 382, 1, 0, 0, 0, 2026, 2027, 7, 5, 0, 0, 2027, 2028, 7, 13, 0, 0, 2028, 2029, 7, 8, 0, 0, 2029, 2030, 7, 3, 0, 0, 2030, 384, 1, 0, 0, 0, 2031, 2032, 7, 5, 0, 0, 2032, 2033, 7, 14, 0, 0, 2033, 386, 1, 0, 0, 0, 2034, 2035, 7, 5, 0, 0, 2035, 2036, 7, 9, 0, 0, 2036, 2037, 7, 12, 0, 0, 2037, 2038, 7, 8, 0, 0, 2038, 388, 1, 0, 0, 0, 2039, 2040, 7, 5, 0, 0, 2040, 2041, 7, 9, 0, 0, 2041, 2042, 7, 4, 0, 0, 2042, 2043, 5, 95, 0, 0, 2043, 2044, 7, 7, 0, 0, 2044, 2045, 7, 0, 0, 0, 2045, 2046, 7, 10, 0, 0, 2046, 2047, 7, 5, 0, 0, 2047, 390, 1, 0, 0, 0, 2048, 2049, 7, 5, 0, 0, 2049, 2050, 7, 9, 0, 0, 2050, 2051, 7, 12, 0, 0, 2051, 2052, 7, 3, 0, 0, 2052, 2053, 7, 7, 0, 0, 2053, 2054, 7, 0, 0, 0, 2054, 2055, 7, 5, 0, 0, 2055, 2056, 7, 8, 0, 0, 2056, 392, 1, 0, 0, 0, 2057, 2058, 7, 12, 0, 0, 2058, 2059, 7, 3, 0, 0, 2059, 2060, 7, 7, 0, 0, 2060, 2061, 7, 0, 0, 0, 2061, 2062, 7, 7, 0, 0, 2062, 2063, 7, 13, 0, 0, 2063, 2064, 7, 8, 0, 0, 2064, 2065, 7, 1, 0, 0, 2065, 394, 1, 0, 0, 0, 2066, 2067, 7, 12, 0, 0, 2067, 2068, 7, 8, 0, 0, 2068, 2069, 7, 10, 0, 0, 2069, 2070, 7, 7, 0, 0, 2070, 2071, 7, 0, 0, 0, 2071, 2072, 7, 19, 0, 0, 2072, 2073, 7, 8, 0, 0, 2073, 396, 1, 0, 0, 0, 2074, 2075, 7, 12, 0, 0, 2075, 2076, 7, 3, 0, 0, 2076, 2077, 7, 16, 0, 0, 2077, 2078, 7, 14, 0, 0, 2078, 2079, 7, 12, 0, 0, 2079, 2080, 7, 3, 0, 0, 2080, 2081, 7, 1, 0, 0, 2081, 2082, 7, 8, 0, 0, 2082, 2083, 7, 1, 0, 0, 2083, 398, 1, 0, 0, 0, 2084, 2085, 7, 12, 0, 0, 2085, 2086, 7, 3, 0, 0, 2086, 2087, 7, 6, 0, 0, 2087, 2088, 7, 14, 0, 0, 2088, 2089, 7, 3, 0, 0, 2089, 400, 1, 0, 0, 0, 2090, 2091, 7, 12, 0, 0, 2091, 2092, 7, 3, 0, 0, 2092, 2093, 7, 3, 0, 0, 2093, 2094, 7, 8, 0, 0, 2094, 2095, 7, 10, 0, 0, 2095, 2096, 7, 5, 0, 0, 2096, 402, 1, 0, 0, 0, 2097, 2098, 7, 12, 0, 0, 2098, 2099, 7, 3, 0, 0, 2099, 2100, 7, 10, 0, 0, 2100, 2101, 7, 8, 0, 0, 2101, 2102, 7, 5, 0, 0, 2102, 404, 1, 0, 0, 0, 2103, 2104, 7, 12, 0, 0, 2104, 2105, 7, 10, 0, 0, 2105, 2106, 7, 8, 0, 0, 2106, 406, 1, 0, 0, 0, 2107, 2108, 7, 12, 0, 0, 2108, 2109, 7, 10, 0, 0, 2109, 2110, 7, 8, 0, 0, 2110, 2111, 7, 9, 0, 0, 2111, 408, 1, 0, 0, 0, 2112, 2113, 7, 12, 0, 0, 2113, 2114, 7, 10, 0, 0, 2114, 2115, 7, 6, 0, 0, 2115, 2116, 7, 3, 0, 0, 2116, 2117, 7, 11, 0, 0, 2117, 410, 1, 0, 0, 0, 2118, 2119, 7, 12, 0, 0, 2119, 2120, 7, 19, 0, 0, 2120, 2121, 7, 1, 0, 0, 2121, 2122, 7, 0, 0, 0, 2122, 2123, 7, 5, 0, 0, 2123, 2124, 7, 8, 0, 0, 2124, 2125, 5, 95, 0, 0, 2125, 2126, 7, 20, 0, 0, 2126, 2127, 7, 3, 0, 0, 2127, 412, 1, 0, 0, 0, 2128, 2129, 7, 12, 0, 0, 2129, 2130, 7, 19, 0, 0, 2130, 2131, 7, 10, 0, 0, 2131, 2132, 7, 8, 0, 0, 2132, 2133, 7, 9, 0, 0, 2133, 2134, 7, 5, 0, 0, 2134, 414, 1, 0, 0, 0, 2135, 2136, 7, 12, 0, 0, 2136, 2137, 7, 3, 0, 0, 2137, 2138, 7, 18, 0, 0, 2138, 2139, 7, 3, 0, 0, 2139, 2140, 7, 14, 0, 0, 2140, 2141, 7, 17, 0, 0, 2141, 2142, 7, 3, 0, 0, 2142, 416, 1, 0, 0, 0, 2143, 2144, 7, 12, 0, 0, 2144, 2145, 7, 9, 0, 0, 2145, 2146, 7, 6, 0, 0, 2146, 418, 1, 0, 0, 0, 2147, 2148, 7, 23, 0, 0, 2148, 2149, 7, 0, 0, 0, 2149, 2150, 7, 2, 0, 0, 2150, 2151, 7, 12, 0, 0, 2151, 2152, 7, 8, 0, 0, 2152, 420, 1, 0, 0, 0, 2153, 2154, 7, 23, 0, 0, 2154, 2155, 7, 0, 0, 0, 2155, 2156, 7, 2, 0, 0, 2156, 2157, 7, 12, 0, 0, 2157, 2158, 7, 8, 0, 0, 2158, 2159, 7, 10, 0, 0, 2159, 422, 1, 0, 0, 0, 2160, 2161, 7, 23, 0, 0, 2161, 2162, 7, 6, 0, 0, 2162, 2163, 7, 8, 0, 0, 2163, 2164, 7, 17, 0, 0, 2164, 424, 1, 0, 0, 0, 2165, 2166, 7, 23, 0, 0, 2166, 2167, 7, 6, 0, 0, 2167, 2168, 7, 8, 0, 0, 2168, 2169, 7, 17, 0, 0, 2169, 2170, 7, 10, 0, 0, 2170, 426, 1, 0, 0, 0, 2171, 2172, 7, 17, 0, 0, 2172, 2173, 7, 13, 0, 0, 2173, 2174, 7, 8, 0, 0, 2174, 2175, 7, 3, 0, 0, 2175, 428, 1, 0, 0, 0, 2176, 2177, 7, 17, 0, 0, 2177, 2178, 7, 13, 0, 0, 2178, 2179, 7, 8, 0, 0, 2179, 2180, 7, 9, 0, 0, 2180, 2181, 7, 8, 0, 0, 2181, 430, 1, 0, 0, 0, 2182, 2183, 7, 17, 0, 0, 2183, 2184, 7, 6, 0, 0, 2184, 2185, 7, 5, 0, 0, 2185, 2186, 7, 13, 0, 0, 2186, 432, 1, 0, 0, 0, 2187, 2188, 7, 4, 0, 0, 2188, 2189, 7, 8, 0, 0, 2189, 2190, 7, 0, 0, 0, 2190, 2191, 7, 9, 0, 0, 2191, 434, 1, 0, 0, 0, 2192, 2193, 7, 4, 0, 0, 2193, 2194, 7, 8, 0, 0, 2194, 2195, 7, 0, 0, 0, 2195, 2196, 7, 9, 0, 0, 2196, 2197, 7, 10, 0, 0, 2197, 436, 1, 0, 0, 0, 2198, 2199, 7, 5, 0, 0, 2199, 2200, 7, 8, 0, 0, 2200, 2201, 7, 21, 0, 0, 2201, 2202, 7, 5, 0, 0, 2202, 2203, 7, 20, 0, 0, 2203, 2204, 7, 6, 0, 0, 2204, 2205, 7, 2, 0, 0, 2205, 2206, 7, 8, 0, 0, 2206, 438, 1, 0, 0, 0, 2207, 2208, 7, 14, 0, 0, 2208, 2209, 7, 9, 0, 0, 2209, 2210, 7, 7, 0, 0, 2210, 440, 1, 0, 0, 0, 2211, 2212, 7, 0, 0, 0, 2212, 2213, 7, 23, 0, 0, 2213, 2214, 7, 9, 0, 0, 2214, 2215, 7, 14, 0, 0, 2215, 442, 1, 0, 0, 0, 2216, 2217, 7, 10, 0, 0, 2217, 2218, 7, 8, 0, 0, 2218, 2219, 7, 25, 0, 0, 2219, 2220, 7, 12, 0, 0, 2220, 2221, 7, 8, 0, 0, 2221, 2222, 7, 3, 0, 0, 2222, 2223, 7, 7, 0, 0, 2223, 2224, 7, 8, 0, 0, 2224, 2225, 7, 20, 0, 0, 2225, 2226, 7, 6, 0, 0, 2226, 2227, 7, 2, 0, 0, 2227, 2228, 7, 8, 0, 0, 2228, 444, 1, 0, 0, 0, 2229, 2230, 7, 9, 0, 0, 2230, 2231, 7, 7, 0, 0, 2231, 2232, 7, 20, 0, 0, 2232, 2233, 7, 6, 0, 0, 2233, 2234, 7, 2, 0, 0, 2234, 2235, 7, 8, 0, 0, 2235, 446, 1, 0, 0, 0, 2236, 2237, 7, 9, 0, 0, 2237, 2238, 7, 8, 0, 0, 2238, 2239, 7, 20, 0, 0, 2239, 2240, 7, 8, 0, 0, 2240, 2241, 7, 9, 0, 0, 2241, 2242, 7, 8, 0, 0, 2242, 2243, 7, 3, 0, 0, 2243, 2244, 7, 7, 0, 0, 2244, 2245, 7, 8, 0, 0, 2245, 2246, 7, 10, 0, 0, 2246, 448, 1, 0, 0, 0, 2247, 2248, 7, 3, 0, 0, 2248, 2249, 7, 14, 0, 0, 2249, 2250, 7, 23, 0, 0, 2250, 2251, 7, 0, 0, 0, 2251, 2252, 7, 2, 0, 0, 2252, 2253, 7, 6, 0, 0, 2253, 2254, 7, 1, 0, 0, 2254, 2255, 7, 0, 0, 0, 2255, 2256, 7, 5, 0, 0, 2256, 2257, 7, 8, 0, 0, 2257, 450, 1, 0, 0, 0, 2258, 2259, 7, 9, 0, 0, 2259, 2260, 7, 8, 0, 0, 2260, 2261, 7, 2, 0, 0, 2261, 2262, 7, 4, 0, 0, 2262, 452, 1, 0, 0, 0, 2263, 2264, 7, 16, 0, 0, 2264, 2265, 7, 6, 0, 0, 2265, 2266, 7, 3, 0, 0, 2266, 2267, 7, 0, 0, 0, 2267, 2268, 7, 9, 0, 0, 2268, 2269, 7, 4, 0, 0, 2269, 454, 1, 0, 0, 0, 2270, 2271, 7, 16, 0, 0, 2271, 2272, 7, 6, 0, 0, 2272, 2273, 7, 11, 0, 0, 2273, 2274, 7, 6, 0, 0, 2274, 2275, 7, 3, 0, 0, 2275, 2276, 7, 5, 0, 0, 2276, 456, 1, 0, 0, 0, 2277, 2278, 7, 16, 0, 0, 2278, 2279, 7, 14, 0, 0, 2279, 2280, 7, 14, 0, 0, 2280, 2281, 7, 2, 0, 0, 2281, 2282, 7, 8, 0, 0, 2282, 2283, 7, 0, 0, 0, 2283, 2284, 7, 3, 0, 0, 2284, 458, 1, 0, 0, 0, 2285, 2286, 7, 7, 0, 0, 2286, 2287, 7, 13, 0, 0, 2287, 2288, 7, 0, 0, 0, 2288, 2289, 7, 9, 0, 0, 2289, 460, 1, 0, 0, 0, 2290, 2291, 7, 1, 0, 0, 2291, 2292, 7, 0, 0, 0, 2292, 2293, 7, 5, 0, 0, 2293, 2294, 7, 8, 0, 0, 2294, 462, 1, 0, 0, 0, 2295, 2296, 7, 1, 0, 0, 2296, 2297, 7, 8, 0, 0, 2297, 2298, 7, 7, 0, 0, 2298, 2299, 7, 6, 0, 0, 2299, 2300, 7, 22, 0, 0, 2300, 2301, 7, 0, 0, 0, 2301, 2302, 7, 2, 0, 0, 2302, 464, 1, 0, 0, 0, 2303, 2304, 7, 1, 0, 0, 2304, 2305, 7, 14, 0, 0, 2305, 2306, 7, 12, 0, 0, 2306, 2307, 7, 16, 0, 0, 2307, 2308, 7, 2, 0, 0, 2308, 2309, 7, 8, 0, 0, 2309, 466, 1, 0, 0, 0, 2310, 2311, 7, 6, 0, 0, 2311, 2312, 7, 3, 0, 0, 2312, 2313, 7, 5, 0, 0, 2313, 468, 1, 0, 0, 0, 2314, 2315, 7, 22, 0, 0, 2315, 2316, 7, 0, 0, 0, 2316, 2317, 7, 19, 0, 0, 2317, 470, 1, 0, 0, 0, 2318, 2319, 7, 9, 0, 0, 2319, 2320, 7, 8, 0, 0, 2320, 2321, 7, 0, 0, 0, 2321, 2322, 7, 2, 0, 0, 2322, 472, 1, 0, 0, 0, 2323, 2324, 7, 10, 0, 0, 2324, 2325, 7, 22, 0, 0, 2325, 2326, 7, 0, 0, 0, 2326, 2327, 7, 2, 0, 0, 2327, 2328, 7, 2, 0, 0, 2328, 2329, 7, 6, 0, 0, 2329, 2330, 7, 3, 0, 0, 2330, 2331, 7, 5, 0, 0, 2331, 474, 1, 0, 0, 0, 2332, 2333, 7, 20, 0, 0, 2333, 2334, 7, 2, 0, 0, 2334, 2335, 7, 14, 0, 0, 2335, 2336, 7, 0, 0, 0, 2336, 2337, 7, 5, 0, 0, 2337, 476, 1, 0, 0, 0, 2338, 2339, 7, 10, 0, 0, 2339, 2340, 7, 5, 0, 0, 2340, 2341, 7, 9, 0, 0, 2341, 2342, 7, 6, 0, 0, 2342, 2343, 7, 3, 0, 0, 2343, 2344, 7, 11, 0, 0, 2344, 478, 1, 0, 0, 0, 2345, 2346, 7, 10, 0, 0, 2346, 2347, 7, 5, 0, 0, 2347, 2348, 7, 9, 0, 0, 2348, 2349, 7, 12, 0, 0, 2349, 2350, 7, 7, 0, 0, 2350, 2351, 7, 5, 0, 0, 2351, 480, 1, 0, 0, 0, 2352, 2353, 7, 5, 0, 0, 2353, 2354, 7, 6, 0, 0, 2354, 2355, 7, 22, 0, 0, 2355, 2356, 7, 8, 0, 0, 2356, 2357, 7, 10, 0, 0, 2357, 2358, 7, 5, 0, 0, 2358, 2359, 7, 0, 0, 0, 2359, 2360, 7, 22, 0, 0, 2360, 2361, 7, 19, 0, 0, 2361, 482, 1, 0, 0, 0, 2362, 2363, 7, 5, 0, 0, 2363, 2364, 7, 6, 0, 0, 2364, 2365, 7, 3, 0, 0, 2365, 2366, 7, 4, 0, 0, 2366, 2367, 7, 6, 0, 0, 2367, 2368, 7, 3, 0, 0, 2368, 2369, 7, 5, 0, 0, 2369, 484, 1, 0, 0, 0, 2370, 2371, 7, 23, 0, 0, 2371, 2372, 7, 0, 0, 0, 2372, 2373, 7, 9, 0, 0, 2373, 2374, 7, 7, 0, 0, 2374, 2375, 7, 13, 0, 0, 2375, 2376, 7, 0, 0, 0, 2376, 2377, 7, 9, 0, 0, 2377, 486, 1, 0, 0, 0, 2378, 2379, 7, 7, 0, 0, 2379, 2380, 7, 14, 0, 0, 2380, 2381, 7, 22, 0, 0, 2381, 2382, 7, 19, 0, 0, 2382, 2383, 7, 2, 0, 0, 2383, 2384, 7, 8, 0, 0, 2384, 2385, 7, 21, 0, 0, 2385, 488, 1, 0, 0, 0, 2386, 2387, 5, 39, 0, 0, 2387, 2388, 7, 3, 0, 0, 2388, 2389, 7, 12, 0, 0, 2389, 2390, 7, 22, 0, 0, 2390, 2391, 7, 1, 0, 0, 2391, 2392, 7, 23, 0, 0, 2392, 2393, 7, 10, 0, 0, 2393, 2394, 5, 39, 0, 0, 2394, 490, 1, 0, 0, 0, 2395, 2396, 5, 39, 0, 0, 2396, 2397, 7, 3, 0, 0, 2397, 2398, 7, 12, 0, 0, 2398, 2399, 7, 22, 0, 0, 2399, 2400, 7, 3, 0, 0, 2400, 2401, 7, 12, 0, 0, 2401, 2402, 7, 2, 0, 0, 2402, 2403, 7, 2, 0, 0, 2403, 2404, 7, 10, 0, 0, 2404, 2405, 5, 39, 0, 0, 2405, 492, 1, 0, 0, 0, 2406, 2407, 5, 39, 0, 0, 2407, 2408, 7, 0, 0, 0, 2408, 2409, 7, 23, 0, 0, 2409, 2410, 7, 11, 0, 0, 2410, 2411, 7, 10, 0, 0, 2411, 2412, 7, 6, 0, 0, 2412, 2413, 7, 15, 0, 0, 2413, 2414, 7, 8, 0, 0, 2414, 2415, 5, 39, 0, 0, 2415, 494, 1, 0, 0, 0, 2416, 2417, 5, 39, 0, 0, 2417, 2418, 7, 22, 0, 0, 2418, 2419, 7, 0, 0, 0, 2419, 2420, 7, 21, 0, 0, 2420, 2421, 7, 10, 0, 0, 2421, 2422, 7, 6, 0, 0, 2422, 2423, 7, 15, 0, 0, 2423, 2424, 7, 8, 0, 0, 2424, 2425, 5, 39, 0, 0, 2425, 496, 1, 0, 0, 0, 2426, 2427, 5, 61, 0, 0, 2427, 498, 1, 0, 0, 0, 2428, 2429, 5, 60, 0, 0, 2429, 2433, 5, 62, 0, 0, 2430, 2431, 5, 33, 0, 0, 2431, 2433, 5, 61, 0, 0, 2432, 2428, 1, 0, 0, 0, 2432, 2430, 1, 0, 0, 0, 2433, 500, 1, 0, 0, 0, 2434, 2435, 5, 60, 0, 0, 2435, 502, 1, 0, 0, 0, 2436, 2437, 5, 60, 0, 0, 2437, 2438, 5, 61, 0, 0, 2438, 504, 1, 0, 0, 0, 2439, 2440, 5, 62, 0, 0, 2440, 506, 1, 0, 0, 0, 2441, 2442, 5, 62, 0, 0, 2442, 2443, 5, 61, 0, 0, 2443, 508, 1, 0, 0, 0, 2444, 2445, 5, 43, 0, 0, 2445, 510, 1, 0, 0, 0, 2446, 2447, 5, 45, 0, 0, 2447, 512, 1, 0, 0, 0, 2448, 2449, 5, 42, 0, 0, 2449, 514, 1, 0, 0, 0, 2450, 2451, 5, 47, 0, 0, 2451, 516, 1, 0, 0, 0, 2452, 2453, 5, 37, 0, 0, 2453, 518, 1, 0, 0, 0, 2454, 2455, 5, 124, 0, 0, 2455, 2456, 5, 124, 0, 0, 2456, 520, 1, 0, 0, 0, 2457, 2458, 5, 46, 0, 0, 2458, 522, 1, 0, 0, 0, 2459, 2460, 5, 59, 0, 0, 2460, 524, 1, 0, 0, 0, 2461, 2462, 5, 44, 0, 0, 2462, 526, 1, 0, 0, 0, 2463, 2464, 5, 58, 0, 0, 2464, 528, 1, 0, 0, 0, 2465, 2466, 5, 40, 0, 0, 2466, 530, 1, 0, 0, 0, 2467, 2468, 5, 41, 0, 0, 2468, 532, 1, 0, 0, 0, 2469, 2470, 5, 91, 0, 0, 2470, 534, 1, 0, 0, 0, 2471, 2472, 5, 93, 0, 0, 2472, 536, 1, 0, 0, 0, 2473, 2474, 5, 123, 0, 0, 2474, 538, 1, 0, 0, 0, 2475, 2476, 5, 125, 0, 0, 2476, 540, 1, 0, 0, 0, 2477, 2478, 5, 124, 0, 0, 2478, 542, 1, 0, 0, 0, 2479, 2480, 5, 63, 0, 0, 2480, 544, 1, 0, 0, 0, 2481, 2482, 5, 45, 0, 0, 2482, 2483, 5, 62, 0, 0, 2483, 546, 1, 0, 0, 0, 2484, 2490, 5, 39, 0, 0, 2485, 2489, 8, 26, 0, 0, 2486, 2487, 5, 39, 0, 0, 2487, 2489, 5, 39, 0, 0, 2488, 2485, 1, 0, 0, 0, 2488, 2486, 1, 0, 0, 0, 2489, 2492, 1, 0, 0, 0, 2490, 2488, 1, 0, 0, 0, 2490, 2491, 1, 0, 0, 0, 2491, 2493, 1, 0, 0, 0, 2492, 2490, 1, 0, 0, 0, 2493, 2505, 5, 39, 0, 0, 2494, 2500, 5, 34, 0, 0, 2495, 2499, 8, 27, 0, 0, 2496, 2497, 5, 34, 0, 0, 2497, 2499, 5, 34, 0, 0, 2498, 2495, 1, 0, 0, 0, 2498, 2496, 1, 0, 0, 0, 2499, 2502, 1, 0, 0, 0, 2500, 2498, 1, 0, 0, 0, 2500, 2501, 1, 0, 0, 0, 2501, 2503, 1, 0, 0, 0, 2502, 2500, 1, 0, 0, 0, 2503, 2505, 5, 34, 0, 0, 2504, 2484, 1, 0, 0, 0, 2504, 2494, 1, 0, 0, 0, 2505, 548, 1, 0, 0, 0, 2506, 2507, 7, 12, 0, 0, 2507, 2508, 5, 38, 0, 0, 2508, 2509, 5, 39, 0, 0, 2509, 2515, 1, 0, 0, 0, 2510, 2514, 8, 26, 0, 0, 2511, 2512, 5, 39, 0, 0, 2512, 2514, 5, 39, 0, 0, 2513, 2510, 1, 0, 0, 0, 2513, 2511, 1, 0, 0, 0, 2514, 2517, 1, 0, 0, 0, 2515, 2513, 1, 0, 0, 0, 2515, 2516, 1, 0, 0, 0, 2516, 2518, 1, 0, 0, 0, 2517, 2515, 1, 0, 0, 0, 2518, 2519, 5, 39, 0, 0, 2519, 550, 1, 0, 0, 0, 2520, 2521, 7, 21, 0, 0, 2521, 2522, 5, 39, 0, 0, 2522, 2526, 1, 0, 0, 0, 2523, 2525, 8, 26, 0, 0, 2524, 2523, 1, 0, 0, 0, 2525, 2528, 1, 0, 0, 0, 2526, 2524, 1, 0, 0, 0, 2526, 2527, 1, 0, 0, 0, 2527, 2529, 1, 0, 0, 0, 2528, 2526, 1, 0, 0, 0, 2529, 2530, 5, 39, 0, 0, 2530, 552, 1, 0, 0, 0, 2531, 2533, 3, 575, 287, 0, 2532, 2531, 1, 0, 0, 0, 2533, 2534, 1, 0, 0, 0, 2534, 2532, 1, 0, 0, 0, 2534, 2535, 1, 0, 0, 0, 2535, 554, 1, 0, 0, 0, 2536, 2538, 3, 575, 287, 0, 2537, 2536, 1, 0, 0, 0, 2538, 2539, 1, 0, 0, 0, 2539, 2537, 1, 0, 0, 0, 2539, 2540, 1, 0, 0, 0, 2540, 2541, 1, 0, 0, 0, 2541, 2545, 5, 46, 0, 0, 2542, 2544, 3, 575, 287, 0, 2543, 2542, 1, 0, 0, 0, 2544, 2547, 1, 0, 0, 0, 2545, 2543, 1, 0, 0, 0, 2545, 2546, 1, 0, 0, 0, 2546, 2555, 1, 0, 0, 0, 2547, 2545, 1, 0, 0, 0, 2548, 2550, 5, 46, 0, 0, 2549, 2551, 3, 575, 287, 0, 2550, 2549, 1, 0, 0, 0, 2551, 2552, 1, 0, 0, 0, 2552, 2550, 1, 0, 0, 0, 2552, 2553, 1, 0, 0, 0, 2553, 2555, 1, 0, 0, 0, 2554, 2537, 1, 0, 0, 0, 2554, 2548, 1, 0, 0, 0, 2555, 556, 1, 0, 0, 0, 2556, 2558, 3, 575, 287, 0, 2557, 2556, 1, 0, 0, 0, 2558, 2559, 1, 0, 0, 0, 2559, 2557, 1, 0, 0, 0, 2559, 2560, 1, 0, 0, 0, 2560, 2568, 1, 0, 0, 0, 2561, 2565, 5, 46, 0, 0, 2562, 2564, 3, 575, 287, 0, 2563, 2562, 1, 0, 0, 0, 2564, 2567, 1, 0, 0, 0, 2565, 2563, 1, 0, 0, 0, 2565, 2566, 1, 0, 0, 0, 2566, 2569, 1, 0, 0, 0, 2567, 2565, 1, 0, 0, 0, 2568, 2561, 1, 0, 0, 0, 2568, 2569, 1, 0, 0, 0, 2569, 2570, 1, 0, 0, 0, 2570, 2571, 3, 573, 286, 0, 2571, 2581, 1, 0, 0, 0, 2572, 2574, 5, 46, 0, 0, 2573, 2575, 3, 575, 287, 0, 2574, 2573, 1, 0, 0, 0, 2575, 2576, 1, 0, 0, 0, 2576, 2574, 1, 0, 0, 0, 2576, 2577, 1, 0, 0, 0, 2577, 2578, 1, 0, 0, 0, 2578, 2579, 3, 573, 286, 0, 2579, 2581, 1, 0, 0, 0, 2580, 2557, 1, 0, 0, 0, 2580, 2572, 1, 0, 0, 0, 2581, 558, 1, 0, 0, 0, 2582, 2585, 3, 577, 288, 0, 2583, 2585, 5, 95, 0, 0, 2584, 2582, 1, 0, 0, 0, 2584, 2583, 1, 0, 0, 0, 2585, 2591, 1, 0, 0, 0, 2586, 2590, 3, 577, 288, 0, 2587, 2590, 3, 575, 287, 0, 2588, 2590, 7, 28, 0, 0, 2589, 2586, 1, 0, 0, 0, 2589, 2587, 1, 0, 0, 0, 2589, 2588, 1, 0, 0, 0, 2590, 2593, 1, 0, 0, 0, 2591, 2589, 1, 0, 0, 0, 2591, 2592, 1, 0, 0, 0, 2592, 560, 1, 0, 0, 0, 2593, 2591, 1, 0, 0, 0, 2594, 2598, 3, 575, 287, 0, 2595, 2599, 3, 577, 288, 0, 2596, 2599, 3, 575, 287, 0, 2597, 2599, 7, 28, 0, 0, 2598, 2595, 1, 0, 0, 0, 2598, 2596, 1, 0, 0, 0, 2598, 2597, 1, 0, 0, 0, 2599, 2600, 1, 0, 0, 0, 2600, 2598, 1, 0, 0, 0, 2600, 2601, 1, 0, 0, 0, 2601, 562, 1, 0, 0, 0, 2602, 2608, 5, 34, 0, 0, 2603, 2607, 8, 27, 0, 0, 2604, 2605, 5, 34, 0, 0, 2605, 2607, 5, 34, 0, 0, 2606, 2603, 1, 0, 0, 0, 2606, 2604, 1, 0, 0, 0, 2607, 2610, 1, 0, 0, 0, 2608, 2606, 1, 0, 0, 0, 2608, 2609, 1, 0, 0, 0, 2609, 2611, 1, 0, 0, 0, 2610, 2608, 1, 0, 0, 0, 2611, 2612, 5, 34, 0, 0, 2612, 564, 1, 0, 0, 0, 2613, 2619, 5, 96, 0, 0, 2614, 2618, 8, 29, 0, 0, 2615, 2616, 5, 96, 0, 0, 2616, 2618, 5, 96, 0, 0, 2617, 2614, 1, 0, 0, 0, 2617, 2615, 1, 0, 0, 0, 2618, 2621, 1, 0, 0, 0, 2619, 2617, 1, 0, 0, 0, 2619, 2620, 1, 0, 0, 0, 2620, 2622, 1, 0, 0, 0, 2621, 2619, 1, 0, 0, 0, 2622, 2623, 5, 96, 0, 0, 2623, 566, 1, 0, 0, 0, 2624, 2625, 7, 5, 0, 0, 2625, 2626, 7, 6, 0, 0, 2626, 2627, 7, 22, 0, 0, 2627, 2628, 7, 8, 0, 0, 2628, 2629, 1, 0, 0, 0, 2629, 2630, 3, 583, 291, 0, 2630, 2631, 7, 17, 0, 0, 2631, 2632, 7, 6, 0, 0, 2632, 2633, 7, 5, 0, 0, 2633, 2634, 7, 13, 0, 0, 2634, 2635, 1, 0, 0, 0, 2635, 2636, 3, 583, 291, 0, 2636, 2637, 7, 5, 0, 0, 2637, 2638, 7, 6, 0, 0, 2638, 2639, 7, 22, 0, 0, 2639, 2640, 7, 8, 0, 0, 2640, 2641, 1, 0, 0, 0, 2641, 2642, 3, 583, 291, 0, 2642, 2643, 7, 15, 0, 0, 2643, 2644, 7, 14, 0, 0, 2644, 2645, 7, 3, 0, 0, 2645, 2646, 7, 8, 0, 0, 2646, 568, 1, 0, 0, 0, 2647, 2648, 7, 5, 0, 0, 2648, 2649, 7, 6, 0, 0, 2649, 2650, 7, 22, 0, 0, 2650, 2651, 7, 8, 0, 0, 2651, 2652, 7, 10, 0, 0, 2652, 2653, 7, 5, 0, 0, 2653, 2654, 7, 0, 0, 0, 2654, 2655, 7, 22, 0, 0, 2655, 2656, 7, 19, 0, 0, 2656, 2657, 1, 0, 0, 0, 2657, 2658, 3, 583, 291, 0, 2658, 2659, 7, 17, 0, 0, 2659, 2660, 7, 6, 0, 0, 2660, 2661, 7, 5, 0, 0, 2661, 2662, 7, 13, 0, 0, 2662, 2663, 1, 0, 0, 0, 2663, 2664, 3, 583, 291, 0, 2664, 2665, 7, 5, 0, 0, 2665, 2666, 7, 6, 0, 0, 2666, 2667, 7, 22, 0, 0, 2667, 2668, 7, 8, 0, 0, 2668, 2669, 1, 0, 0, 0, 2669, 2670, 3, 583, 291, 0, 2670, 2671, 7, 15, 0, 0, 2671, 2672, 7, 14, 0, 0, 2672, 2673, 7, 3, 0, 0, 2673, 2674, 7, 8, 0, 0, 2674, 570, 1, 0, 0, 0, 2675, 2676, 7, 1, 0, 0, 2676, 2677, 7, 14, 0, 0, 2677, 2678, 7, 12, 0, 0, 2678, 2679, 7, 16, 0, 0, 2679, 2680, 7, 2, 0, 0, 2680, 2681, 7, 8, 0, 0, 2681, 2682, 1, 0, 0, 0, 2682, 2683, 3, 583, 291, 0, 2683, 2684, 7, 19, 0, 0, 2684, 2685, 7, 9, 0, 0, 2685, 2686, 7, 8, 0, 0, 2686, 2687, 7, 7, 0, 0, 2687, 2688, 7, 6, 0, 0, 2688, 2689, 7, 10, 0, 0, 2689, 2690, 7, 6, 0, 0, 2690, 2691, 7, 14, 0, 0, 2691, 2692, 7, 3, 0, 0, 2692, 572, 1, 0, 0, 0, 2693, 2695, 7, 8, 0, 0, 2694, 2696, 7, 30, 0, 0, 2695, 2694, 1, 0, 0, 0, 2695, 2696, 1, 0, 0, 0, 2696, 2698, 1, 0, 0, 0, 2697, 2699, 3, 575, 287, 0, 2698, 2697, 1, 0, 0, 0, 2699, 2700, 1, 0, 0, 0, 2700, 2698, 1, 0, 0, 0, 2700, 2701, 1, 0, 0, 0, 2701, 574, 1, 0, 0, 0, 2702, 2703, 7, 31, 0, 0, 2703, 576, 1, 0, 0, 0, 2704, 2705, 7, 32, 0, 0, 2705, 578, 1, 0, 0, 0, 2706, 2707, 5, 45, 0, 0, 2707, 2708, 5, 45, 0, 0, 2708, 2712, 1, 0, 0, 0, 2709, 2711, 8, 33, 0, 0, 2710, 2709, 1, 0, 0, 0, 2711, 2714, 1, 0, 0, 0, 2712, 2710, 1, 0, 0, 0, 2712, 2713, 1, 0, 0, 0, 2713, 2716, 1, 0, 0, 0, 2714, 2712, 1, 0, 0, 0, 2715, 2717, 5, 13, 0, 0, 2716, 2715, 1, 0, 0, 0, 2716, 2717, 1, 0, 0, 0, 2717, 2719, 1, 0, 0, 0, 2718, 2720, 5, 10, 0, 0, 2719, 2718, 1, 0, 0, 0, 2719, 2720, 1, 0, 0, 0, 2720, 2721, 1, 0, 0, 0, 2721, 2722, 6, 289, 0, 0, 2722, 580, 1, 0, 0, 0, 2723, 2724, 5, 47, 0, 0, 2724, 2725, 5, 42, 0, 0, 2725, 2729, 1, 0, 0, 0, 2726, 2728, 9, 0, 0, 0, 2727, 2726, 1, 0, 0, 0, 2728, 2731, 1, 0, 0, 0, 2729, 2730, 1, 0, 0, 0, 2729, 2727, 1, 0, 0, 0, 2730, 2732, 1, 0, 0, 0, 2731, 2729, 1, 0, 0, 0, 2732, 2733, 5, 42, 0, 0, 2733, 2734, 5, 47, 0, 0, 2734, 2735, 1, 0, 0, 0, 2735, 2736, 6, 290, 0, 0, 2736, 582, 1, 0, 0, 0, 2737, 2739, 7, 34, 0, 0, 2738, 2737, 1, 0, 0, 0, 2739, 2740, 1, 0, 0, 0, 2740, 2738, 1, 0, 0, 0, 2740, 2741, 1, 0, 0, 0, 2741, 2742, 1, 0, 0, 0, 2742, 2743, 6, 291, 0, 0, 2743, 584, 1, 0, 0, 0, 36, 0, 2432, 2488, 2490, 2498, 2500, 2504, 2513, 2515, 2526, 2534, 2539, 2545, 2552, 2554, 2559, 2565, 2568, 2576, 2580, 2584, 2589, 2591, 2598, 2600, 2606, 2608, 2617, 2619, 2695, 2700, 2712, 2716, 2719, 2729, 2740, 1, 0, 1, 0] \ No newline at end of file diff --git a/src/lib/impala/ImpalaSqlLexer.tokens b/src/lib/impala/ImpalaSqlLexer.tokens index 0185b60..b57242c 100644 --- a/src/lib/impala/ImpalaSqlLexer.tokens +++ b/src/lib/impala/ImpalaSqlLexer.tokens @@ -119,158 +119,174 @@ KW_LOAD=118 KW_LOCALTIME=119 KW_LOCALTIMESTAMP=120 KW_METADATA=121 -KW_MAP=122 -KW_MINUTE=123 -KW_MINUTES=124 -KW_MONTH=125 -KW_MONTHS=126 -KW_MERGE_FN=127 -KW_NFC=128 -KW_NFD=129 -KW_NFKC=130 -KW_NFKD=131 -KW_NORMALIZE=132 -KW_NOT=133 -KW_NULL=134 -KW_NULLS=135 -KW_OFFSET=136 -KW_ON=137 -KW_OPTION=138 -KW_OR=139 -KW_ORDER=140 -KW_ORDINALITY=141 -KW_OUTER=142 -KW_OWNER=143 -KW_OVER=144 -KW_OVERWRITE=145 -KW_PARTITION=146 -KW_PARTITIONS=147 -KW_PARQUET=148 -KW_POSITION=149 -KW_PRECEDING=150 -KW_PRIMARY=151 -KW_REPLICATION=152 -KW_PRIVILEGES=153 -KW_PROPERTIES=154 -KW_RANGE=155 -KW_RECOVER=156 -KW_RENAME=157 -KW_REPEATABLE=158 -KW_REPLACE=159 -KW_RESTRICT=160 -KW_RETURNS=161 -KW_REVOKE=162 -KW_REFRESH=163 -KW_REGEXP=164 -KW_RLIKE=165 -KW_RIGHT=166 -KW_ROLE=167 -KW_ROLES=168 -KW_ROW=169 -KW_ROWS=170 -KW_SCHEMA=171 -KW_SCHEMAS=172 -KW_SECOND=173 -KW_SECONDS=174 -KW_SELECT=175 -KW_SERDEPROPERTIES=176 -KW_SET=177 -KW_SEMI=178 -KW_SERVER=179 -KW_SHOW=180 -KW_SHUTDOWN=181 -KW_SOME=182 -KW_STATS=183 -KW_STRUCT=184 -KW_STRAIGHT_JOIN=185 -KW_SUBSTRING=186 -KW_SYSTEM=187 -KW_SYMBOL=188 -KW_SERIALIZE_FN=189 -KW_TABLE=190 -KW_TABLES=191 -KW_TABLESAMPLE=192 -KW_TERMINATED=193 -KW_THEN=194 -KW_TO=195 -KW_TRUE=196 -KW_TRY_CAST=197 -KW_TRUNCATE=198 -KW_UNCACHED=199 -KW_UESCAPE=200 -KW_UNBOUNDED=201 -KW_UNION=202 -KW_UNNEST=203 -KW_UNSET=204 -KW_USE=205 -KW_USER=206 -KW_USING=207 -KW_UPDATE_FN=208 -KW_UPSERT=209 -KW_UNKNOWN=210 -KW_URI=211 -KW_VALUE=212 -KW_VALUES=213 -KW_VIEW=214 -KW_VIEWS=215 -KW_WHEN=216 -KW_WHERE=217 -KW_WITH=218 -KW_YEAR=219 -KW_YEARS=220 -KW_TEXTFILE=221 -KW_ORC=222 -KW_AVRO=223 -KW_SEQUENCEFILE=224 -KW_RCFILE=225 -KW_REFERENCES=226 -KW_NOVALIDATE=227 -KW_RELY=228 -STATS_NUMDVS=229 -STATS_NUMNULLS=230 -STATS_AVGSIZE=231 -STATS_MAXSIZE=232 -EQ=233 -NEQ=234 -LT=235 -LTE=236 -GT=237 -GTE=238 -PLUS=239 -MINUS=240 -ASTERISK=241 -SLASH=242 -PERCENT=243 -CONCAT=244 -DOT=245 -SEMICOLON=246 -COMMA=247 -COLON=248 -LPAREN=249 -RPAREN=250 -LSQUARE=251 -RSQUARE=252 -LCURLY=253 -RCURLY=254 -BITWISEOR=255 -QUESTION=256 -RIGHT_ARROW=257 -STRING=258 -UNICODE_STRING=259 -BINARY_LITERAL=260 -INTEGER_VALUE=261 -DECIMAL_VALUE=262 -DOUBLE_VALUE=263 -IDENTIFIER=264 -DIGIT_IDENTIFIER=265 -QUOTED_IDENTIFIER=266 -BACKQUOTED_IDENTIFIER=267 -TIME_WITH_TIME_ZONE=268 -TIMESTAMP_WITH_TIME_ZONE=269 -DOUBLE_PRECISION=270 -SIMPLE_COMMENT=271 -BRACKETED_COMMENT=272 -WS=273 +KW_MINUTE=122 +KW_MINUTES=123 +KW_MONTH=124 +KW_MONTHS=125 +KW_MERGE_FN=126 +KW_NFC=127 +KW_NFD=128 +KW_NFKC=129 +KW_NFKD=130 +KW_NORMALIZE=131 +KW_NOT=132 +KW_NULL=133 +KW_NULLS=134 +KW_OFFSET=135 +KW_ON=136 +KW_OPTION=137 +KW_OR=138 +KW_ORDER=139 +KW_ORDINALITY=140 +KW_OUTER=141 +KW_OWNER=142 +KW_OVER=143 +KW_OVERWRITE=144 +KW_PARTITION=145 +KW_PARTITIONS=146 +KW_PARQUET=147 +KW_POSITION=148 +KW_PRECEDING=149 +KW_PRIMARY=150 +KW_REPLICATION=151 +KW_PRIVILEGES=152 +KW_PROPERTIES=153 +KW_RANGE=154 +KW_RECOVER=155 +KW_RENAME=156 +KW_REPEATABLE=157 +KW_REPLACE=158 +KW_RESTRICT=159 +KW_RETURNS=160 +KW_REVOKE=161 +KW_REFRESH=162 +KW_REGEXP=163 +KW_RLIKE=164 +KW_RIGHT=165 +KW_ROLE=166 +KW_ROLES=167 +KW_ROW=168 +KW_ROWS=169 +KW_SCHEMA=170 +KW_SCHEMAS=171 +KW_SECOND=172 +KW_SECONDS=173 +KW_SELECT=174 +KW_SERDEPROPERTIES=175 +KW_SET=176 +KW_SEMI=177 +KW_SERVER=178 +KW_SHOW=179 +KW_SHUTDOWN=180 +KW_SOME=181 +KW_STATS=182 +KW_STRAIGHT_JOIN=183 +KW_SUBSTRING=184 +KW_SYSTEM=185 +KW_SYMBOL=186 +KW_SERIALIZE_FN=187 +KW_TABLE=188 +KW_TABLES=189 +KW_TABLESAMPLE=190 +KW_TERMINATED=191 +KW_THEN=192 +KW_TO=193 +KW_TRUE=194 +KW_TRY_CAST=195 +KW_TRUNCATE=196 +KW_UNCACHED=197 +KW_UESCAPE=198 +KW_UNBOUNDED=199 +KW_UNION=200 +KW_UNNEST=201 +KW_UNSET=202 +KW_USE=203 +KW_USER=204 +KW_USING=205 +KW_UPDATE_FN=206 +KW_UPSERT=207 +KW_UNKNOWN=208 +KW_URI=209 +KW_VALUE=210 +KW_VALUES=211 +KW_VIEW=212 +KW_VIEWS=213 +KW_WHEN=214 +KW_WHERE=215 +KW_WITH=216 +KW_YEAR=217 +KW_YEARS=218 +KW_TEXTFILE=219 +KW_ORC=220 +KW_AVRO=221 +KW_SEQUENCEFILE=222 +KW_RCFILE=223 +KW_REFERENCES=224 +KW_NOVALIDATE=225 +KW_RELY=226 +KW_BINARY=227 +KW_BIGINT=228 +KW_BOOLEAN=229 +KW_CHAR=230 +KW_DATE=231 +KW_DECIMAL=232 +KW_DOUBLE=233 +KW_INT=234 +KW_MAP=235 +KW_REAL=236 +KW_SMALLINT=237 +KW_FLOAT=238 +KW_STRING=239 +KW_STRUCT=240 +KW_TIMESTAMP=241 +KW_TINYINT=242 +KW_VARCHAR=243 +KW_COMPLEX=244 +STATS_NUMDVS=245 +STATS_NUMNULLS=246 +STATS_AVGSIZE=247 +STATS_MAXSIZE=248 +EQ=249 +NEQ=250 +LT=251 +LTE=252 +GT=253 +GTE=254 +PLUS=255 +MINUS=256 +ASTERISK=257 +SLASH=258 +PERCENT=259 +CONCAT=260 +DOT=261 +SEMICOLON=262 +COMMA=263 +COLON=264 +LPAREN=265 +RPAREN=266 +LSQUARE=267 +RSQUARE=268 +LCURLY=269 +RCURLY=270 +BITWISEOR=271 +QUESTION=272 +RIGHT_ARROW=273 +STRING=274 +UNICODE_STRING=275 +BINARY_LITERAL=276 +INTEGER_VALUE=277 +DECIMAL_VALUE=278 +DOUBLE_VALUE=279 +IDENTIFIER=280 +DIGIT_IDENTIFIER=281 +QUOTED_IDENTIFIER=282 +BACKQUOTED_IDENTIFIER=283 +TIME_WITH_TIME_ZONE=284 +TIMESTAMP_WITH_TIME_ZONE=285 +DOUBLE_PRECISION=286 +SIMPLE_COMMENT=287 +BRACKETED_COMMENT=288 +WS=289 'ADD'=1 'ALL'=2 'ANALYTIC'=3 @@ -392,138 +408,154 @@ WS=273 'LOCALTIME'=119 'LOCALTIMESTAMP'=120 'METADATA'=121 -'MAP'=122 -'MINUTE'=123 -'MINUTES'=124 -'MONTH'=125 -'MONTHS'=126 -'MERGE_FN'=127 -'NFC'=128 -'NFD'=129 -'NFKC'=130 -'NFKD'=131 -'NORMALIZE'=132 -'NOT'=133 -'NULL'=134 -'NULLS'=135 -'OFFSET'=136 -'ON'=137 -'OPTION'=138 -'OR'=139 -'ORDER'=140 -'ORDINALITY'=141 -'OUTER'=142 -'OWNER'=143 -'OVER'=144 -'OVERWRITE'=145 -'PARTITION'=146 -'PARTITIONS'=147 -'PARQUET'=148 -'POSITION'=149 -'PRECEDING'=150 -'PRIMARY'=151 -'REPLICATION'=152 -'PRIVILEGES'=153 -'PROPERTIES'=154 -'RANGE'=155 -'RECOVER'=156 -'RENAME'=157 -'REPEATABLE'=158 -'REPLACE'=159 -'RESTRICT'=160 -'RETURNS'=161 -'REVOKE'=162 -'REFRESH'=163 -'REGEXP'=164 -'RLIKE'=165 -'RIGHT'=166 -'ROLE'=167 -'ROLES'=168 -'ROW'=169 -'ROWS'=170 -'SCHEMA'=171 -'SCHEMAS'=172 -'SECOND'=173 -'SECONDS'=174 -'SELECT'=175 -'SERDEPROPERTIES'=176 -'SET'=177 -'SEMI'=178 -'SERVER'=179 -'SHOW'=180 -'SHUTDOWN'=181 -'SOME'=182 -'STATS'=183 -'STRUCT'=184 -'STRAIGHT_JOIN'=185 -'SUBSTRING'=186 -'SYSTEM'=187 -'SYMBOL'=188 -'SERIALIZE_FN'=189 -'TABLE'=190 -'TABLES'=191 -'TABLESAMPLE'=192 -'TERMINATED '=193 -'THEN'=194 -'TO'=195 -'TRUE'=196 -'TRY_CAST'=197 -'TRUNCATE'=198 -'UNCACHED'=199 -'UESCAPE'=200 -'UNBOUNDED'=201 -'UNION'=202 -'UNNEST'=203 -'UNSET'=204 -'USE'=205 -'USER'=206 -'USING'=207 -'UPDATE_FN'=208 -'UPSERT'=209 -'UNKNOWN'=210 -'URI'=211 -'VALUE'=212 -'VALUES'=213 -'VIEW'=214 -'VIEWS'=215 -'WHEN'=216 -'WHERE'=217 -'WITH'=218 -'YEAR'=219 -'YEARS'=220 -'TEXTFILE'=221 -'ORC'=222 -'AVRO'=223 -'SEQUENCEFILE'=224 -'RCFILE'=225 -'REFERENCES'=226 -'NOVALIDATE'=227 -'RELY'=228 -'\'NUMDVS\''=229 -'\'NUMNULLS\''=230 -'\'AVGSIZE\''=231 -'\'MAXSIZE\''=232 -'='=233 -'<'=235 -'<='=236 -'>'=237 -'>='=238 -'+'=239 -'-'=240 -'*'=241 -'/'=242 -'%'=243 -'||'=244 -'.'=245 -';'=246 -','=247 -':'=248 -'('=249 -')'=250 -'['=251 -']'=252 -'{'=253 -'}'=254 -'|'=255 -'?'=256 -'->'=257 +'MINUTE'=122 +'MINUTES'=123 +'MONTH'=124 +'MONTHS'=125 +'MERGE_FN'=126 +'NFC'=127 +'NFD'=128 +'NFKC'=129 +'NFKD'=130 +'NORMALIZE'=131 +'NOT'=132 +'NULL'=133 +'NULLS'=134 +'OFFSET'=135 +'ON'=136 +'OPTION'=137 +'OR'=138 +'ORDER'=139 +'ORDINALITY'=140 +'OUTER'=141 +'OWNER'=142 +'OVER'=143 +'OVERWRITE'=144 +'PARTITION'=145 +'PARTITIONS'=146 +'PARQUET'=147 +'POSITION'=148 +'PRECEDING'=149 +'PRIMARY'=150 +'REPLICATION'=151 +'PRIVILEGES'=152 +'PROPERTIES'=153 +'RANGE'=154 +'RECOVER'=155 +'RENAME'=156 +'REPEATABLE'=157 +'REPLACE'=158 +'RESTRICT'=159 +'RETURNS'=160 +'REVOKE'=161 +'REFRESH'=162 +'REGEXP'=163 +'RLIKE'=164 +'RIGHT'=165 +'ROLE'=166 +'ROLES'=167 +'ROW'=168 +'ROWS'=169 +'SCHEMA'=170 +'SCHEMAS'=171 +'SECOND'=172 +'SECONDS'=173 +'SELECT'=174 +'SERDEPROPERTIES'=175 +'SET'=176 +'SEMI'=177 +'SERVER'=178 +'SHOW'=179 +'SHUTDOWN'=180 +'SOME'=181 +'STATS'=182 +'STRAIGHT_JOIN'=183 +'SUBSTRING'=184 +'SYSTEM'=185 +'SYMBOL'=186 +'SERIALIZE_FN'=187 +'TABLE'=188 +'TABLES'=189 +'TABLESAMPLE'=190 +'TERMINATED '=191 +'THEN'=192 +'TO'=193 +'TRUE'=194 +'TRY_CAST'=195 +'TRUNCATE'=196 +'UNCACHED'=197 +'UESCAPE'=198 +'UNBOUNDED'=199 +'UNION'=200 +'UNNEST'=201 +'UNSET'=202 +'USE'=203 +'USER'=204 +'USING'=205 +'UPDATE_FN'=206 +'UPSERT'=207 +'UNKNOWN'=208 +'URI'=209 +'VALUE'=210 +'VALUES'=211 +'VIEW'=212 +'VIEWS'=213 +'WHEN'=214 +'WHERE'=215 +'WITH'=216 +'YEAR'=217 +'YEARS'=218 +'TEXTFILE'=219 +'ORC'=220 +'AVRO'=221 +'SEQUENCEFILE'=222 +'RCFILE'=223 +'REFERENCES'=224 +'NOVALIDATE'=225 +'RELY'=226 +'BINARY'=227 +'BIGINT'=228 +'BOOLEAN'=229 +'CHAR'=230 +'DATE'=231 +'DECIMAL'=232 +'DOUBLE'=233 +'INT'=234 +'MAP'=235 +'REAL'=236 +'SMALLINT'=237 +'FLOAT'=238 +'STRING'=239 +'STRUCT'=240 +'TIMESTAMP'=241 +'TINYINT'=242 +'VARCHAR'=243 +'COMPLEX'=244 +'\'NUMDVS\''=245 +'\'NUMNULLS\''=246 +'\'AVGSIZE\''=247 +'\'MAXSIZE\''=248 +'='=249 +'<'=251 +'<='=252 +'>'=253 +'>='=254 +'+'=255 +'-'=256 +'*'=257 +'/'=258 +'%'=259 +'||'=260 +'.'=261 +';'=262 +','=263 +':'=264 +'('=265 +')'=266 +'['=267 +']'=268 +'{'=269 +'}'=270 +'|'=271 +'?'=272 +'->'=273 diff --git a/src/lib/impala/ImpalaSqlLexer.ts b/src/lib/impala/ImpalaSqlLexer.ts index 7ec8909..596694f 100644 --- a/src/lib/impala/ImpalaSqlLexer.ts +++ b/src/lib/impala/ImpalaSqlLexer.ts @@ -128,158 +128,174 @@ export class ImpalaSqlLexer extends antlr.Lexer { public static readonly KW_LOCALTIME = 119; public static readonly KW_LOCALTIMESTAMP = 120; public static readonly KW_METADATA = 121; - public static readonly KW_MAP = 122; - public static readonly KW_MINUTE = 123; - public static readonly KW_MINUTES = 124; - public static readonly KW_MONTH = 125; - public static readonly KW_MONTHS = 126; - public static readonly KW_MERGE_FN = 127; - public static readonly KW_NFC = 128; - public static readonly KW_NFD = 129; - public static readonly KW_NFKC = 130; - public static readonly KW_NFKD = 131; - public static readonly KW_NORMALIZE = 132; - public static readonly KW_NOT = 133; - public static readonly KW_NULL = 134; - public static readonly KW_NULLS = 135; - public static readonly KW_OFFSET = 136; - public static readonly KW_ON = 137; - public static readonly KW_OPTION = 138; - public static readonly KW_OR = 139; - public static readonly KW_ORDER = 140; - public static readonly KW_ORDINALITY = 141; - public static readonly KW_OUTER = 142; - public static readonly KW_OWNER = 143; - public static readonly KW_OVER = 144; - public static readonly KW_OVERWRITE = 145; - public static readonly KW_PARTITION = 146; - public static readonly KW_PARTITIONS = 147; - public static readonly KW_PARQUET = 148; - public static readonly KW_POSITION = 149; - public static readonly KW_PRECEDING = 150; - public static readonly KW_PRIMARY = 151; - public static readonly KW_REPLICATION = 152; - public static readonly KW_PRIVILEGES = 153; - public static readonly KW_PROPERTIES = 154; - public static readonly KW_RANGE = 155; - public static readonly KW_RECOVER = 156; - public static readonly KW_RENAME = 157; - public static readonly KW_REPEATABLE = 158; - public static readonly KW_REPLACE = 159; - public static readonly KW_RESTRICT = 160; - public static readonly KW_RETURNS = 161; - public static readonly KW_REVOKE = 162; - public static readonly KW_REFRESH = 163; - public static readonly KW_REGEXP = 164; - public static readonly KW_RLIKE = 165; - public static readonly KW_RIGHT = 166; - public static readonly KW_ROLE = 167; - public static readonly KW_ROLES = 168; - public static readonly KW_ROW = 169; - public static readonly KW_ROWS = 170; - public static readonly KW_SCHEMA = 171; - public static readonly KW_SCHEMAS = 172; - public static readonly KW_SECOND = 173; - public static readonly KW_SECONDS = 174; - public static readonly KW_SELECT = 175; - public static readonly KW_SERDEPROPERTIES = 176; - public static readonly KW_SET = 177; - public static readonly KW_SEMI = 178; - public static readonly KW_SERVER = 179; - public static readonly KW_SHOW = 180; - public static readonly KW_SHUTDOWN = 181; - public static readonly KW_SOME = 182; - public static readonly KW_STATS = 183; - public static readonly KW_STRUCT = 184; - public static readonly KW_STRAIGHT_JOIN = 185; - public static readonly KW_SUBSTRING = 186; - public static readonly KW_SYSTEM = 187; - public static readonly KW_SYMBOL = 188; - public static readonly KW_SERIALIZE_FN = 189; - public static readonly KW_TABLE = 190; - public static readonly KW_TABLES = 191; - public static readonly KW_TABLESAMPLE = 192; - public static readonly KW_TERMINATED = 193; - public static readonly KW_THEN = 194; - public static readonly KW_TO = 195; - public static readonly KW_TRUE = 196; - public static readonly KW_TRY_CAST = 197; - public static readonly KW_TRUNCATE = 198; - public static readonly KW_UNCACHED = 199; - public static readonly KW_UESCAPE = 200; - public static readonly KW_UNBOUNDED = 201; - public static readonly KW_UNION = 202; - public static readonly KW_UNNEST = 203; - public static readonly KW_UNSET = 204; - public static readonly KW_USE = 205; - public static readonly KW_USER = 206; - public static readonly KW_USING = 207; - public static readonly KW_UPDATE_FN = 208; - public static readonly KW_UPSERT = 209; - public static readonly KW_UNKNOWN = 210; - public static readonly KW_URI = 211; - public static readonly KW_VALUE = 212; - public static readonly KW_VALUES = 213; - public static readonly KW_VIEW = 214; - public static readonly KW_VIEWS = 215; - public static readonly KW_WHEN = 216; - public static readonly KW_WHERE = 217; - public static readonly KW_WITH = 218; - public static readonly KW_YEAR = 219; - public static readonly KW_YEARS = 220; - public static readonly KW_TEXTFILE = 221; - public static readonly KW_ORC = 222; - public static readonly KW_AVRO = 223; - public static readonly KW_SEQUENCEFILE = 224; - public static readonly KW_RCFILE = 225; - public static readonly KW_REFERENCES = 226; - public static readonly KW_NOVALIDATE = 227; - public static readonly KW_RELY = 228; - public static readonly STATS_NUMDVS = 229; - public static readonly STATS_NUMNULLS = 230; - public static readonly STATS_AVGSIZE = 231; - public static readonly STATS_MAXSIZE = 232; - public static readonly EQ = 233; - public static readonly NEQ = 234; - public static readonly LT = 235; - public static readonly LTE = 236; - public static readonly GT = 237; - public static readonly GTE = 238; - public static readonly PLUS = 239; - public static readonly MINUS = 240; - public static readonly ASTERISK = 241; - public static readonly SLASH = 242; - public static readonly PERCENT = 243; - public static readonly CONCAT = 244; - public static readonly DOT = 245; - public static readonly SEMICOLON = 246; - public static readonly COMMA = 247; - public static readonly COLON = 248; - public static readonly LPAREN = 249; - public static readonly RPAREN = 250; - public static readonly LSQUARE = 251; - public static readonly RSQUARE = 252; - public static readonly LCURLY = 253; - public static readonly RCURLY = 254; - public static readonly BITWISEOR = 255; - public static readonly QUESTION = 256; - public static readonly RIGHT_ARROW = 257; - public static readonly STRING = 258; - public static readonly UNICODE_STRING = 259; - public static readonly BINARY_LITERAL = 260; - public static readonly INTEGER_VALUE = 261; - public static readonly DECIMAL_VALUE = 262; - public static readonly DOUBLE_VALUE = 263; - public static readonly IDENTIFIER = 264; - public static readonly DIGIT_IDENTIFIER = 265; - public static readonly QUOTED_IDENTIFIER = 266; - public static readonly BACKQUOTED_IDENTIFIER = 267; - public static readonly TIME_WITH_TIME_ZONE = 268; - public static readonly TIMESTAMP_WITH_TIME_ZONE = 269; - public static readonly DOUBLE_PRECISION = 270; - public static readonly SIMPLE_COMMENT = 271; - public static readonly BRACKETED_COMMENT = 272; - public static readonly WS = 273; + public static readonly KW_MINUTE = 122; + public static readonly KW_MINUTES = 123; + public static readonly KW_MONTH = 124; + public static readonly KW_MONTHS = 125; + public static readonly KW_MERGE_FN = 126; + public static readonly KW_NFC = 127; + public static readonly KW_NFD = 128; + public static readonly KW_NFKC = 129; + public static readonly KW_NFKD = 130; + public static readonly KW_NORMALIZE = 131; + public static readonly KW_NOT = 132; + public static readonly KW_NULL = 133; + public static readonly KW_NULLS = 134; + public static readonly KW_OFFSET = 135; + public static readonly KW_ON = 136; + public static readonly KW_OPTION = 137; + public static readonly KW_OR = 138; + public static readonly KW_ORDER = 139; + public static readonly KW_ORDINALITY = 140; + public static readonly KW_OUTER = 141; + public static readonly KW_OWNER = 142; + public static readonly KW_OVER = 143; + public static readonly KW_OVERWRITE = 144; + public static readonly KW_PARTITION = 145; + public static readonly KW_PARTITIONS = 146; + public static readonly KW_PARQUET = 147; + public static readonly KW_POSITION = 148; + public static readonly KW_PRECEDING = 149; + public static readonly KW_PRIMARY = 150; + public static readonly KW_REPLICATION = 151; + public static readonly KW_PRIVILEGES = 152; + public static readonly KW_PROPERTIES = 153; + public static readonly KW_RANGE = 154; + public static readonly KW_RECOVER = 155; + public static readonly KW_RENAME = 156; + public static readonly KW_REPEATABLE = 157; + public static readonly KW_REPLACE = 158; + public static readonly KW_RESTRICT = 159; + public static readonly KW_RETURNS = 160; + public static readonly KW_REVOKE = 161; + public static readonly KW_REFRESH = 162; + public static readonly KW_REGEXP = 163; + public static readonly KW_RLIKE = 164; + public static readonly KW_RIGHT = 165; + public static readonly KW_ROLE = 166; + public static readonly KW_ROLES = 167; + public static readonly KW_ROW = 168; + public static readonly KW_ROWS = 169; + public static readonly KW_SCHEMA = 170; + public static readonly KW_SCHEMAS = 171; + public static readonly KW_SECOND = 172; + public static readonly KW_SECONDS = 173; + public static readonly KW_SELECT = 174; + public static readonly KW_SERDEPROPERTIES = 175; + public static readonly KW_SET = 176; + public static readonly KW_SEMI = 177; + public static readonly KW_SERVER = 178; + public static readonly KW_SHOW = 179; + public static readonly KW_SHUTDOWN = 180; + public static readonly KW_SOME = 181; + public static readonly KW_STATS = 182; + public static readonly KW_STRAIGHT_JOIN = 183; + public static readonly KW_SUBSTRING = 184; + public static readonly KW_SYSTEM = 185; + public static readonly KW_SYMBOL = 186; + public static readonly KW_SERIALIZE_FN = 187; + public static readonly KW_TABLE = 188; + public static readonly KW_TABLES = 189; + public static readonly KW_TABLESAMPLE = 190; + public static readonly KW_TERMINATED = 191; + public static readonly KW_THEN = 192; + public static readonly KW_TO = 193; + public static readonly KW_TRUE = 194; + public static readonly KW_TRY_CAST = 195; + public static readonly KW_TRUNCATE = 196; + public static readonly KW_UNCACHED = 197; + public static readonly KW_UESCAPE = 198; + public static readonly KW_UNBOUNDED = 199; + public static readonly KW_UNION = 200; + public static readonly KW_UNNEST = 201; + public static readonly KW_UNSET = 202; + public static readonly KW_USE = 203; + public static readonly KW_USER = 204; + public static readonly KW_USING = 205; + public static readonly KW_UPDATE_FN = 206; + public static readonly KW_UPSERT = 207; + public static readonly KW_UNKNOWN = 208; + public static readonly KW_URI = 209; + public static readonly KW_VALUE = 210; + public static readonly KW_VALUES = 211; + public static readonly KW_VIEW = 212; + public static readonly KW_VIEWS = 213; + public static readonly KW_WHEN = 214; + public static readonly KW_WHERE = 215; + public static readonly KW_WITH = 216; + public static readonly KW_YEAR = 217; + public static readonly KW_YEARS = 218; + public static readonly KW_TEXTFILE = 219; + public static readonly KW_ORC = 220; + public static readonly KW_AVRO = 221; + public static readonly KW_SEQUENCEFILE = 222; + public static readonly KW_RCFILE = 223; + public static readonly KW_REFERENCES = 224; + public static readonly KW_NOVALIDATE = 225; + public static readonly KW_RELY = 226; + public static readonly KW_BINARY = 227; + public static readonly KW_BIGINT = 228; + public static readonly KW_BOOLEAN = 229; + public static readonly KW_CHAR = 230; + public static readonly KW_DATE = 231; + public static readonly KW_DECIMAL = 232; + public static readonly KW_DOUBLE = 233; + public static readonly KW_INT = 234; + public static readonly KW_MAP = 235; + public static readonly KW_REAL = 236; + public static readonly KW_SMALLINT = 237; + public static readonly KW_FLOAT = 238; + public static readonly KW_STRING = 239; + public static readonly KW_STRUCT = 240; + public static readonly KW_TIMESTAMP = 241; + public static readonly KW_TINYINT = 242; + public static readonly KW_VARCHAR = 243; + public static readonly KW_COMPLEX = 244; + public static readonly STATS_NUMDVS = 245; + public static readonly STATS_NUMNULLS = 246; + public static readonly STATS_AVGSIZE = 247; + public static readonly STATS_MAXSIZE = 248; + public static readonly EQ = 249; + public static readonly NEQ = 250; + public static readonly LT = 251; + public static readonly LTE = 252; + public static readonly GT = 253; + public static readonly GTE = 254; + public static readonly PLUS = 255; + public static readonly MINUS = 256; + public static readonly ASTERISK = 257; + public static readonly SLASH = 258; + public static readonly PERCENT = 259; + public static readonly CONCAT = 260; + public static readonly DOT = 261; + public static readonly SEMICOLON = 262; + public static readonly COMMA = 263; + public static readonly COLON = 264; + public static readonly LPAREN = 265; + public static readonly RPAREN = 266; + public static readonly LSQUARE = 267; + public static readonly RSQUARE = 268; + public static readonly LCURLY = 269; + public static readonly RCURLY = 270; + public static readonly BITWISEOR = 271; + public static readonly QUESTION = 272; + public static readonly RIGHT_ARROW = 273; + public static readonly STRING = 274; + public static readonly UNICODE_STRING = 275; + public static readonly BINARY_LITERAL = 276; + public static readonly INTEGER_VALUE = 277; + public static readonly DECIMAL_VALUE = 278; + public static readonly DOUBLE_VALUE = 279; + public static readonly IDENTIFIER = 280; + public static readonly DIGIT_IDENTIFIER = 281; + public static readonly QUOTED_IDENTIFIER = 282; + public static readonly BACKQUOTED_IDENTIFIER = 283; + public static readonly TIME_WITH_TIME_ZONE = 284; + public static readonly TIMESTAMP_WITH_TIME_ZONE = 285; + public static readonly DOUBLE_PRECISION = 286; + public static readonly SIMPLE_COMMENT = 287; + public static readonly BRACKETED_COMMENT = 288; + public static readonly WS = 289; public static readonly channelNames = [ "DEFAULT_TOKEN_CHANNEL", "HIDDEN" @@ -307,9 +323,9 @@ export class ImpalaSqlLexer extends antlr.Lexer { "'INTERVAL'", "'INTERMEDIATE'", "'INTO'", "'INIT_FN'", "'IREGEXP'", "'ILIKE'", "'INVALIDATE'", "'IS'", "'JOIN'", "'KEY'", "'KUDU'", "'LAST'", "'LATERAL'", "'LEFT'", "'LIKE'", "'LIMIT'", "'LINES'", - "'LOAD'", "'LOCALTIME'", "'LOCALTIMESTAMP'", "'METADATA'", "'MAP'", - "'MINUTE'", "'MINUTES'", "'MONTH'", "'MONTHS'", "'MERGE_FN'", "'NFC'", - "'NFD'", "'NFKC'", "'NFKD'", "'NORMALIZE'", "'NOT'", "'NULL'", "'NULLS'", + "'LOAD'", "'LOCALTIME'", "'LOCALTIMESTAMP'", "'METADATA'", "'MINUTE'", + "'MINUTES'", "'MONTH'", "'MONTHS'", "'MERGE_FN'", "'NFC'", "'NFD'", + "'NFKC'", "'NFKD'", "'NORMALIZE'", "'NOT'", "'NULL'", "'NULLS'", "'OFFSET'", "'ON'", "'OPTION'", "'OR'", "'ORDER'", "'ORDINALITY'", "'OUTER'", "'OWNER'", "'OVER'", "'OVERWRITE'", "'PARTITION'", "'PARTITIONS'", "'PARQUET'", "'POSITION'", "'PRECEDING'", "'PRIMARY'", "'REPLICATION'", @@ -318,7 +334,7 @@ export class ImpalaSqlLexer extends antlr.Lexer { "'REFRESH'", "'REGEXP'", "'RLIKE'", "'RIGHT'", "'ROLE'", "'ROLES'", "'ROW'", "'ROWS'", "'SCHEMA'", "'SCHEMAS'", "'SECOND'", "'SECONDS'", "'SELECT'", "'SERDEPROPERTIES'", "'SET'", "'SEMI'", "'SERVER'", - "'SHOW'", "'SHUTDOWN'", "'SOME'", "'STATS'", "'STRUCT'", "'STRAIGHT_JOIN'", + "'SHOW'", "'SHUTDOWN'", "'SOME'", "'STATS'", "'STRAIGHT_JOIN'", "'SUBSTRING'", "'SYSTEM'", "'SYMBOL'", "'SERIALIZE_FN'", "'TABLE'", "'TABLES'", "'TABLESAMPLE'", "'TERMINATED '", "'THEN'", "'TO'", "'TRUE'", "'TRY_CAST'", "'TRUNCATE'", "'UNCACHED'", "'UESCAPE'", @@ -326,11 +342,14 @@ export class ImpalaSqlLexer extends antlr.Lexer { "'USING'", "'UPDATE_FN'", "'UPSERT'", "'UNKNOWN'", "'URI'", "'VALUE'", "'VALUES'", "'VIEW'", "'VIEWS'", "'WHEN'", "'WHERE'", "'WITH'", "'YEAR'", "'YEARS'", "'TEXTFILE'", "'ORC'", "'AVRO'", "'SEQUENCEFILE'", - "'RCFILE'", "'REFERENCES'", "'NOVALIDATE'", "'RELY'", "''NUMDVS''", - "''NUMNULLS''", "''AVGSIZE''", "''MAXSIZE''", "'='", null, "'<'", - "'<='", "'>'", "'>='", "'+'", "'-'", "'*'", "'/'", "'%'", "'||'", - "'.'", "';'", "','", "':'", "'('", "')'", "'['", "']'", "'{'", "'}'", - "'|'", "'?'", "'->'" + "'RCFILE'", "'REFERENCES'", "'NOVALIDATE'", "'RELY'", "'BINARY'", + "'BIGINT'", "'BOOLEAN'", "'CHAR'", "'DATE'", "'DECIMAL'", "'DOUBLE'", + "'INT'", "'MAP'", "'REAL'", "'SMALLINT'", "'FLOAT'", "'STRING'", + "'STRUCT'", "'TIMESTAMP'", "'TINYINT'", "'VARCHAR'", "'COMPLEX'", + "''NUMDVS''", "''NUMNULLS''", "''AVGSIZE''", "''MAXSIZE''", "'='", + null, "'<'", "'<='", "'>'", "'>='", "'+'", "'-'", "'*'", "'/'", + "'%'", "'||'", "'.'", "';'", "','", "':'", "'('", "')'", "'['", + "']'", "'{'", "'}'", "'|'", "'?'", "'->'" ]; public static readonly symbolicNames = [ @@ -357,7 +376,7 @@ export class ImpalaSqlLexer extends antlr.Lexer { "KW_INTERMEDIATE", "KW_INTO", "KW_INIT_FN", "KW_IREGEXP", "KW_ILIKE", "KW_INVALIDATE", "KW_IS", "KW_JOIN", "KW_KEY", "KW_KUDU", "KW_LAST", "KW_LATERAL", "KW_LEFT", "KW_LIKE", "KW_LIMIT", "KW_LINES", "KW_LOAD", - "KW_LOCALTIME", "KW_LOCALTIMESTAMP", "KW_METADATA", "KW_MAP", "KW_MINUTE", + "KW_LOCALTIME", "KW_LOCALTIMESTAMP", "KW_METADATA", "KW_MINUTE", "KW_MINUTES", "KW_MONTH", "KW_MONTHS", "KW_MERGE_FN", "KW_NFC", "KW_NFD", "KW_NFKC", "KW_NFKD", "KW_NORMALIZE", "KW_NOT", "KW_NULL", "KW_NULLS", "KW_OFFSET", "KW_ON", "KW_OPTION", "KW_OR", "KW_ORDER", @@ -369,16 +388,19 @@ export class ImpalaSqlLexer extends antlr.Lexer { "KW_RLIKE", "KW_RIGHT", "KW_ROLE", "KW_ROLES", "KW_ROW", "KW_ROWS", "KW_SCHEMA", "KW_SCHEMAS", "KW_SECOND", "KW_SECONDS", "KW_SELECT", "KW_SERDEPROPERTIES", "KW_SET", "KW_SEMI", "KW_SERVER", "KW_SHOW", - "KW_SHUTDOWN", "KW_SOME", "KW_STATS", "KW_STRUCT", "KW_STRAIGHT_JOIN", - "KW_SUBSTRING", "KW_SYSTEM", "KW_SYMBOL", "KW_SERIALIZE_FN", "KW_TABLE", - "KW_TABLES", "KW_TABLESAMPLE", "KW_TERMINATED", "KW_THEN", "KW_TO", - "KW_TRUE", "KW_TRY_CAST", "KW_TRUNCATE", "KW_UNCACHED", "KW_UESCAPE", - "KW_UNBOUNDED", "KW_UNION", "KW_UNNEST", "KW_UNSET", "KW_USE", "KW_USER", - "KW_USING", "KW_UPDATE_FN", "KW_UPSERT", "KW_UNKNOWN", "KW_URI", - "KW_VALUE", "KW_VALUES", "KW_VIEW", "KW_VIEWS", "KW_WHEN", "KW_WHERE", - "KW_WITH", "KW_YEAR", "KW_YEARS", "KW_TEXTFILE", "KW_ORC", "KW_AVRO", - "KW_SEQUENCEFILE", "KW_RCFILE", "KW_REFERENCES", "KW_NOVALIDATE", - "KW_RELY", "STATS_NUMDVS", "STATS_NUMNULLS", "STATS_AVGSIZE", "STATS_MAXSIZE", + "KW_SHUTDOWN", "KW_SOME", "KW_STATS", "KW_STRAIGHT_JOIN", "KW_SUBSTRING", + "KW_SYSTEM", "KW_SYMBOL", "KW_SERIALIZE_FN", "KW_TABLE", "KW_TABLES", + "KW_TABLESAMPLE", "KW_TERMINATED", "KW_THEN", "KW_TO", "KW_TRUE", + "KW_TRY_CAST", "KW_TRUNCATE", "KW_UNCACHED", "KW_UESCAPE", "KW_UNBOUNDED", + "KW_UNION", "KW_UNNEST", "KW_UNSET", "KW_USE", "KW_USER", "KW_USING", + "KW_UPDATE_FN", "KW_UPSERT", "KW_UNKNOWN", "KW_URI", "KW_VALUE", + "KW_VALUES", "KW_VIEW", "KW_VIEWS", "KW_WHEN", "KW_WHERE", "KW_WITH", + "KW_YEAR", "KW_YEARS", "KW_TEXTFILE", "KW_ORC", "KW_AVRO", "KW_SEQUENCEFILE", + "KW_RCFILE", "KW_REFERENCES", "KW_NOVALIDATE", "KW_RELY", "KW_BINARY", + "KW_BIGINT", "KW_BOOLEAN", "KW_CHAR", "KW_DATE", "KW_DECIMAL", "KW_DOUBLE", + "KW_INT", "KW_MAP", "KW_REAL", "KW_SMALLINT", "KW_FLOAT", "KW_STRING", + "KW_STRUCT", "KW_TIMESTAMP", "KW_TINYINT", "KW_VARCHAR", "KW_COMPLEX", + "STATS_NUMDVS", "STATS_NUMNULLS", "STATS_AVGSIZE", "STATS_MAXSIZE", "EQ", "NEQ", "LT", "LTE", "GT", "GTE", "PLUS", "MINUS", "ASTERISK", "SLASH", "PERCENT", "CONCAT", "DOT", "SEMICOLON", "COMMA", "COLON", "LPAREN", "RPAREN", "LSQUARE", "RSQUARE", "LCURLY", "RCURLY", "BITWISEOR", @@ -417,7 +439,7 @@ export class ImpalaSqlLexer extends antlr.Lexer { "KW_INTERMEDIATE", "KW_INTO", "KW_INIT_FN", "KW_IREGEXP", "KW_ILIKE", "KW_INVALIDATE", "KW_IS", "KW_JOIN", "KW_KEY", "KW_KUDU", "KW_LAST", "KW_LATERAL", "KW_LEFT", "KW_LIKE", "KW_LIMIT", "KW_LINES", "KW_LOAD", - "KW_LOCALTIME", "KW_LOCALTIMESTAMP", "KW_METADATA", "KW_MAP", "KW_MINUTE", + "KW_LOCALTIME", "KW_LOCALTIMESTAMP", "KW_METADATA", "KW_MINUTE", "KW_MINUTES", "KW_MONTH", "KW_MONTHS", "KW_MERGE_FN", "KW_NFC", "KW_NFD", "KW_NFKC", "KW_NFKD", "KW_NORMALIZE", "KW_NOT", "KW_NULL", "KW_NULLS", "KW_OFFSET", "KW_ON", "KW_OPTION", "KW_OR", "KW_ORDER", @@ -429,16 +451,19 @@ export class ImpalaSqlLexer extends antlr.Lexer { "KW_RLIKE", "KW_RIGHT", "KW_ROLE", "KW_ROLES", "KW_ROW", "KW_ROWS", "KW_SCHEMA", "KW_SCHEMAS", "KW_SECOND", "KW_SECONDS", "KW_SELECT", "KW_SERDEPROPERTIES", "KW_SET", "KW_SEMI", "KW_SERVER", "KW_SHOW", - "KW_SHUTDOWN", "KW_SOME", "KW_STATS", "KW_STRUCT", "KW_STRAIGHT_JOIN", - "KW_SUBSTRING", "KW_SYSTEM", "KW_SYMBOL", "KW_SERIALIZE_FN", "KW_TABLE", - "KW_TABLES", "KW_TABLESAMPLE", "KW_TERMINATED", "KW_THEN", "KW_TO", - "KW_TRUE", "KW_TRY_CAST", "KW_TRUNCATE", "KW_UNCACHED", "KW_UESCAPE", - "KW_UNBOUNDED", "KW_UNION", "KW_UNNEST", "KW_UNSET", "KW_USE", "KW_USER", - "KW_USING", "KW_UPDATE_FN", "KW_UPSERT", "KW_UNKNOWN", "KW_URI", - "KW_VALUE", "KW_VALUES", "KW_VIEW", "KW_VIEWS", "KW_WHEN", "KW_WHERE", - "KW_WITH", "KW_YEAR", "KW_YEARS", "KW_TEXTFILE", "KW_ORC", "KW_AVRO", - "KW_SEQUENCEFILE", "KW_RCFILE", "KW_REFERENCES", "KW_NOVALIDATE", - "KW_RELY", "STATS_NUMDVS", "STATS_NUMNULLS", "STATS_AVGSIZE", "STATS_MAXSIZE", + "KW_SHUTDOWN", "KW_SOME", "KW_STATS", "KW_STRAIGHT_JOIN", "KW_SUBSTRING", + "KW_SYSTEM", "KW_SYMBOL", "KW_SERIALIZE_FN", "KW_TABLE", "KW_TABLES", + "KW_TABLESAMPLE", "KW_TERMINATED", "KW_THEN", "KW_TO", "KW_TRUE", + "KW_TRY_CAST", "KW_TRUNCATE", "KW_UNCACHED", "KW_UESCAPE", "KW_UNBOUNDED", + "KW_UNION", "KW_UNNEST", "KW_UNSET", "KW_USE", "KW_USER", "KW_USING", + "KW_UPDATE_FN", "KW_UPSERT", "KW_UNKNOWN", "KW_URI", "KW_VALUE", + "KW_VALUES", "KW_VIEW", "KW_VIEWS", "KW_WHEN", "KW_WHERE", "KW_WITH", + "KW_YEAR", "KW_YEARS", "KW_TEXTFILE", "KW_ORC", "KW_AVRO", "KW_SEQUENCEFILE", + "KW_RCFILE", "KW_REFERENCES", "KW_NOVALIDATE", "KW_RELY", "KW_BINARY", + "KW_BIGINT", "KW_BOOLEAN", "KW_CHAR", "KW_DATE", "KW_DECIMAL", "KW_DOUBLE", + "KW_INT", "KW_MAP", "KW_REAL", "KW_SMALLINT", "KW_FLOAT", "KW_STRING", + "KW_STRUCT", "KW_TIMESTAMP", "KW_TINYINT", "KW_VARCHAR", "KW_COMPLEX", + "STATS_NUMDVS", "STATS_NUMNULLS", "STATS_AVGSIZE", "STATS_MAXSIZE", "EQ", "NEQ", "LT", "LTE", "GT", "GTE", "PLUS", "MINUS", "ASTERISK", "SLASH", "PERCENT", "CONCAT", "DOT", "SEMICOLON", "COMMA", "COLON", "LPAREN", "RPAREN", "LSQUARE", "RSQUARE", "LCURLY", "RCURLY", "BITWISEOR", @@ -469,7 +494,7 @@ export class ImpalaSqlLexer extends antlr.Lexer { public get modeNames(): string[] { return ImpalaSqlLexer.modeNames; } public static readonly _serializedATN: number[] = [ - 4,0,273,2600,6,-1,2,0,7,0,2,1,7,1,2,2,7,2,2,3,7,3,2,4,7,4,2,5,7, + 4,0,289,2744,6,-1,2,0,7,0,2,1,7,1,2,2,7,2,2,3,7,3,2,4,7,4,2,5,7, 5,2,6,7,6,2,7,7,7,2,8,7,8,2,9,7,9,2,10,7,10,2,11,7,11,2,12,7,12, 2,13,7,13,2,14,7,14,2,15,7,15,2,16,7,16,2,17,7,17,2,18,7,18,2,19, 7,19,2,20,7,20,2,21,7,21,2,22,7,22,2,23,7,23,2,24,7,24,2,25,7,25, @@ -516,922 +541,976 @@ export class ImpalaSqlLexer extends antlr.Lexer { 7,257,2,258,7,258,2,259,7,259,2,260,7,260,2,261,7,261,2,262,7,262, 2,263,7,263,2,264,7,264,2,265,7,265,2,266,7,266,2,267,7,267,2,268, 7,268,2,269,7,269,2,270,7,270,2,271,7,271,2,272,7,272,2,273,7,273, - 2,274,7,274,2,275,7,275,1,0,1,0,1,0,1,0,1,1,1,1,1,1,1,1,1,2,1,2, - 1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,3,1,3,1,3,1,3,1,3,1,3,1,4,1,4,1,4, - 1,4,1,5,1,5,1,5,1,5,1,6,1,6,1,6,1,6,1,6,1,7,1,7,1,7,1,7,1,7,1,7, - 1,8,1,8,1,8,1,9,1,9,1,9,1,9,1,10,1,10,1,10,1,11,1,11,1,11,1,11,1, - 11,1,11,1,11,1,11,1,11,1,11,1,12,1,12,1,12,1,12,1,12,1,12,1,12,1, - 12,1,12,1,12,1,12,1,12,1,12,1,12,1,13,1,13,1,13,1,13,1,13,1,13,1, - 13,1,13,1,13,1,13,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,15,1, - 15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,16,1,16,1,16,1, - 16,1,16,1,16,1,16,1,16,1,16,1,16,1,16,1,16,1,17,1,17,1,17,1,17,1, - 17,1,17,1,17,1,17,1,17,1,17,1,17,1,18,1,18,1,18,1,18,1,18,1,18,1, - 18,1,18,1,18,1,19,1,19,1,19,1,19,1,19,1,19,1,19,1,19,1,20,1,20,1, - 20,1,20,1,20,1,21,1,21,1,21,1,21,1,21,1,21,1,22,1,22,1,22,1,22,1, - 22,1,22,1,22,1,23,1,23,1,23,1,23,1,23,1,23,1,23,1,23,1,23,1,24,1, - 24,1,24,1,24,1,24,1,24,1,24,1,24,1,24,1,24,1,24,1,24,1,24,1,24,1, - 25,1,25,1,25,1,26,1,26,1,26,1,26,1,26,1,26,1,26,1,26,1,27,1,27,1, - 27,1,27,1,27,1,28,1,28,1,28,1,28,1,28,1,29,1,29,1,29,1,29,1,29,1, - 29,1,29,1,30,1,30,1,30,1,30,1,30,1,30,1,30,1,31,1,31,1,31,1,31,1, - 31,1,31,1,31,1,32,1,32,1,32,1,32,1,32,1,32,1,32,1,32,1,33,1,33,1, - 33,1,33,1,33,1,33,1,33,1,33,1,34,1,34,1,34,1,34,1,34,1,34,1,34,1, - 34,1,34,1,34,1,34,1,34,1,35,1,35,1,35,1,35,1,35,1,35,1,35,1,35,1, - 36,1,36,1,36,1,36,1,36,1,36,1,36,1,37,1,37,1,37,1,37,1,37,1,37,1, - 38,1,38,1,38,1,38,1,38,1,38,1,38,1,38,1,39,1,39,1,39,1,39,1,39,1, - 39,1,39,1,39,1,39,1,39,1,39,1,39,1,39,1,40,1,40,1,40,1,40,1,40,1, - 40,1,40,1,40,1,40,1,40,1,40,1,40,1,40,1,41,1,41,1,41,1,41,1,41,1, - 41,1,41,1,41,1,41,1,41,1,41,1,41,1,41,1,42,1,42,1,42,1,42,1,42,1, - 42,1,42,1,42,1,42,1,42,1,42,1,42,1,42,1,42,1,42,1,42,1,42,1,42,1, - 43,1,43,1,43,1,43,1,43,1,43,1,43,1,43,1,43,1,43,1,43,1,43,1,43,1, - 44,1,44,1,44,1,44,1,44,1,45,1,45,1,45,1,45,1,45,1,45,1,45,1,45,1, - 45,1,46,1,46,1,46,1,46,1,46,1,46,1,46,1,46,1,46,1,46,1,47,1,47,1, - 47,1,47,1,48,1,48,1,48,1,48,1,48,1,49,1,49,1,49,1,49,1,49,1,49,1, - 49,1,50,1,50,1,50,1,50,1,50,1,50,1,50,1,50,1,51,1,51,1,51,1,51,1, - 51,1,51,1,51,1,51,1,51,1,51,1,52,1,52,1,52,1,52,1,52,1,52,1,52,1, - 52,1,53,1,53,1,53,1,53,1,53,1,53,1,53,1,54,1,54,1,54,1,54,1,54,1, - 55,1,55,1,55,1,55,1,55,1,55,1,55,1,55,1,55,1,56,1,56,1,56,1,56,1, - 56,1,56,1,56,1,56,1,56,1,57,1,57,1,57,1,57,1,57,1,58,1,58,1,58,1, - 58,1,58,1,59,1,59,1,59,1,59,1,59,1,59,1,59,1,59,1,59,1,60,1,60,1, - 60,1,60,1,61,1,61,1,61,1,61,1,61,1,61,1,61,1,62,1,62,1,62,1,62,1, - 62,1,62,1,62,1,62,1,63,1,63,1,63,1,63,1,63,1,63,1,63,1,64,1,64,1, - 64,1,64,1,64,1,64,1,64,1,64,1,64,1,64,1,65,1,65,1,65,1,65,1,65,1, - 65,1,65,1,66,1,66,1,66,1,66,1,66,1,66,1,66,1,66,1,67,1,67,1,67,1, - 67,1,67,1,67,1,67,1,67,1,68,1,68,1,68,1,68,1,68,1,68,1,68,1,68,1, - 68,1,69,1,69,1,69,1,69,1,69,1,69,1,70,1,70,1,70,1,70,1,70,1,70,1, - 70,1,71,1,71,1,71,1,71,1,71,1,71,1,71,1,71,1,71,1,71,1,71,1,72,1, - 72,1,72,1,72,1,72,1,72,1,73,1,73,1,73,1,73,1,73,1,73,1,73,1,74,1, - 74,1,74,1,74,1,74,1,74,1,75,1,75,1,75,1,75,1,75,1,75,1,75,1,75,1, - 75,1,75,1,75,1,75,1,76,1,76,1,76,1,76,1,76,1,76,1,76,1,76,1,76,1, - 76,1,77,1,77,1,77,1,77,1,78,1,78,1,78,1,78,1,78,1,78,1,78,1,79,1, - 79,1,79,1,79,1,79,1,79,1,79,1,79,1,79,1,79,1,80,1,80,1,80,1,80,1, - 80,1,80,1,80,1,80,1,81,1,81,1,81,1,81,1,81,1,82,1,82,1,82,1,82,1, - 82,1,83,1,83,1,83,1,83,1,83,1,83,1,83,1,83,1,83,1,84,1,84,1,84,1, - 84,1,84,1,84,1,84,1,84,1,84,1,84,1,85,1,85,1,85,1,85,1,85,1,85,1, - 86,1,86,1,86,1,86,1,86,1,86,1,87,1,87,1,87,1,87,1,87,1,87,1,87,1, - 87,1,87,1,88,1,88,1,88,1,88,1,88,1,89,1,89,1,89,1,89,1,89,1,89,1, - 89,1,90,1,90,1,90,1,90,1,90,1,91,1,91,1,91,1,91,1,91,1,91,1,92,1, - 92,1,92,1,93,1,93,1,93,1,94,1,94,1,94,1,94,1,94,1,94,1,94,1,94,1, - 94,1,94,1,95,1,95,1,95,1,95,1,95,1,95,1,95,1,95,1,95,1,95,1,95,1, - 95,1,96,1,96,1,96,1,96,1,96,1,96,1,97,1,97,1,97,1,97,1,97,1,97,1, - 97,1,98,1,98,1,98,1,98,1,98,1,98,1,98,1,99,1,99,1,99,1,99,1,99,1, - 99,1,99,1,99,1,99,1,99,1,100,1,100,1,100,1,100,1,100,1,100,1,100, - 1,100,1,100,1,101,1,101,1,101,1,101,1,101,1,101,1,101,1,101,1,101, - 1,101,1,101,1,101,1,101,1,102,1,102,1,102,1,102,1,102,1,103,1,103, - 1,103,1,103,1,103,1,103,1,103,1,103,1,104,1,104,1,104,1,104,1,104, - 1,104,1,104,1,104,1,105,1,105,1,105,1,105,1,105,1,105,1,106,1,106, - 1,106,1,106,1,106,1,106,1,106,1,106,1,106,1,106,1,106,1,107,1,107, - 1,107,1,108,1,108,1,108,1,108,1,108,1,109,1,109,1,109,1,109,1,110, - 1,110,1,110,1,110,1,110,1,111,1,111,1,111,1,111,1,111,1,112,1,112, - 1,112,1,112,1,112,1,112,1,112,1,112,1,113,1,113,1,113,1,113,1,113, - 1,114,1,114,1,114,1,114,1,114,1,115,1,115,1,115,1,115,1,115,1,115, - 1,116,1,116,1,116,1,116,1,116,1,116,1,117,1,117,1,117,1,117,1,117, - 1,118,1,118,1,118,1,118,1,118,1,118,1,118,1,118,1,118,1,118,1,119, + 2,274,7,274,2,275,7,275,2,276,7,276,2,277,7,277,2,278,7,278,2,279, + 7,279,2,280,7,280,2,281,7,281,2,282,7,282,2,283,7,283,2,284,7,284, + 2,285,7,285,2,286,7,286,2,287,7,287,2,288,7,288,2,289,7,289,2,290, + 7,290,2,291,7,291,1,0,1,0,1,0,1,0,1,1,1,1,1,1,1,1,1,2,1,2,1,2,1, + 2,1,2,1,2,1,2,1,2,1,2,1,3,1,3,1,3,1,3,1,3,1,3,1,4,1,4,1,4,1,4,1, + 5,1,5,1,5,1,5,1,6,1,6,1,6,1,6,1,6,1,7,1,7,1,7,1,7,1,7,1,7,1,8,1, + 8,1,8,1,9,1,9,1,9,1,9,1,10,1,10,1,10,1,11,1,11,1,11,1,11,1,11,1, + 11,1,11,1,11,1,11,1,11,1,12,1,12,1,12,1,12,1,12,1,12,1,12,1,12,1, + 12,1,12,1,12,1,12,1,12,1,12,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1, + 13,1,13,1,13,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,15,1,15,1, + 15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,16,1,16,1,16,1,16,1, + 16,1,16,1,16,1,16,1,16,1,16,1,16,1,16,1,17,1,17,1,17,1,17,1,17,1, + 17,1,17,1,17,1,17,1,17,1,17,1,18,1,18,1,18,1,18,1,18,1,18,1,18,1, + 18,1,18,1,19,1,19,1,19,1,19,1,19,1,19,1,19,1,19,1,20,1,20,1,20,1, + 20,1,20,1,21,1,21,1,21,1,21,1,21,1,21,1,22,1,22,1,22,1,22,1,22,1, + 22,1,22,1,23,1,23,1,23,1,23,1,23,1,23,1,23,1,23,1,23,1,24,1,24,1, + 24,1,24,1,24,1,24,1,24,1,24,1,24,1,24,1,24,1,24,1,24,1,24,1,25,1, + 25,1,25,1,26,1,26,1,26,1,26,1,26,1,26,1,26,1,26,1,27,1,27,1,27,1, + 27,1,27,1,28,1,28,1,28,1,28,1,28,1,29,1,29,1,29,1,29,1,29,1,29,1, + 29,1,30,1,30,1,30,1,30,1,30,1,30,1,30,1,31,1,31,1,31,1,31,1,31,1, + 31,1,31,1,32,1,32,1,32,1,32,1,32,1,32,1,32,1,32,1,33,1,33,1,33,1, + 33,1,33,1,33,1,33,1,33,1,34,1,34,1,34,1,34,1,34,1,34,1,34,1,34,1, + 34,1,34,1,34,1,34,1,35,1,35,1,35,1,35,1,35,1,35,1,35,1,35,1,36,1, + 36,1,36,1,36,1,36,1,36,1,36,1,37,1,37,1,37,1,37,1,37,1,37,1,38,1, + 38,1,38,1,38,1,38,1,38,1,38,1,38,1,39,1,39,1,39,1,39,1,39,1,39,1, + 39,1,39,1,39,1,39,1,39,1,39,1,39,1,40,1,40,1,40,1,40,1,40,1,40,1, + 40,1,40,1,40,1,40,1,40,1,40,1,40,1,41,1,41,1,41,1,41,1,41,1,41,1, + 41,1,41,1,41,1,41,1,41,1,41,1,41,1,42,1,42,1,42,1,42,1,42,1,42,1, + 42,1,42,1,42,1,42,1,42,1,42,1,42,1,42,1,42,1,42,1,42,1,42,1,43,1, + 43,1,43,1,43,1,43,1,43,1,43,1,43,1,43,1,43,1,43,1,43,1,43,1,44,1, + 44,1,44,1,44,1,44,1,45,1,45,1,45,1,45,1,45,1,45,1,45,1,45,1,45,1, + 46,1,46,1,46,1,46,1,46,1,46,1,46,1,46,1,46,1,46,1,47,1,47,1,47,1, + 47,1,48,1,48,1,48,1,48,1,48,1,49,1,49,1,49,1,49,1,49,1,49,1,49,1, + 50,1,50,1,50,1,50,1,50,1,50,1,50,1,50,1,51,1,51,1,51,1,51,1,51,1, + 51,1,51,1,51,1,51,1,51,1,52,1,52,1,52,1,52,1,52,1,52,1,52,1,52,1, + 53,1,53,1,53,1,53,1,53,1,53,1,53,1,54,1,54,1,54,1,54,1,54,1,55,1, + 55,1,55,1,55,1,55,1,55,1,55,1,55,1,55,1,56,1,56,1,56,1,56,1,56,1, + 56,1,56,1,56,1,56,1,57,1,57,1,57,1,57,1,57,1,58,1,58,1,58,1,58,1, + 58,1,59,1,59,1,59,1,59,1,59,1,59,1,59,1,59,1,59,1,60,1,60,1,60,1, + 60,1,61,1,61,1,61,1,61,1,61,1,61,1,61,1,62,1,62,1,62,1,62,1,62,1, + 62,1,62,1,62,1,63,1,63,1,63,1,63,1,63,1,63,1,63,1,64,1,64,1,64,1, + 64,1,64,1,64,1,64,1,64,1,64,1,64,1,65,1,65,1,65,1,65,1,65,1,65,1, + 65,1,66,1,66,1,66,1,66,1,66,1,66,1,66,1,66,1,67,1,67,1,67,1,67,1, + 67,1,67,1,67,1,67,1,68,1,68,1,68,1,68,1,68,1,68,1,68,1,68,1,68,1, + 69,1,69,1,69,1,69,1,69,1,69,1,70,1,70,1,70,1,70,1,70,1,70,1,70,1, + 71,1,71,1,71,1,71,1,71,1,71,1,71,1,71,1,71,1,71,1,71,1,72,1,72,1, + 72,1,72,1,72,1,72,1,73,1,73,1,73,1,73,1,73,1,73,1,73,1,74,1,74,1, + 74,1,74,1,74,1,74,1,75,1,75,1,75,1,75,1,75,1,75,1,75,1,75,1,75,1, + 75,1,75,1,75,1,76,1,76,1,76,1,76,1,76,1,76,1,76,1,76,1,76,1,76,1, + 77,1,77,1,77,1,77,1,78,1,78,1,78,1,78,1,78,1,78,1,78,1,79,1,79,1, + 79,1,79,1,79,1,79,1,79,1,79,1,79,1,79,1,80,1,80,1,80,1,80,1,80,1, + 80,1,80,1,80,1,81,1,81,1,81,1,81,1,81,1,82,1,82,1,82,1,82,1,82,1, + 83,1,83,1,83,1,83,1,83,1,83,1,83,1,83,1,83,1,84,1,84,1,84,1,84,1, + 84,1,84,1,84,1,84,1,84,1,84,1,85,1,85,1,85,1,85,1,85,1,85,1,86,1, + 86,1,86,1,86,1,86,1,86,1,87,1,87,1,87,1,87,1,87,1,87,1,87,1,87,1, + 87,1,88,1,88,1,88,1,88,1,88,1,89,1,89,1,89,1,89,1,89,1,89,1,89,1, + 90,1,90,1,90,1,90,1,90,1,91,1,91,1,91,1,91,1,91,1,91,1,92,1,92,1, + 92,1,93,1,93,1,93,1,94,1,94,1,94,1,94,1,94,1,94,1,94,1,94,1,94,1, + 94,1,95,1,95,1,95,1,95,1,95,1,95,1,95,1,95,1,95,1,95,1,95,1,95,1, + 96,1,96,1,96,1,96,1,96,1,96,1,97,1,97,1,97,1,97,1,97,1,97,1,97,1, + 98,1,98,1,98,1,98,1,98,1,98,1,98,1,99,1,99,1,99,1,99,1,99,1,99,1, + 99,1,99,1,99,1,99,1,100,1,100,1,100,1,100,1,100,1,100,1,100,1,100, + 1,100,1,101,1,101,1,101,1,101,1,101,1,101,1,101,1,101,1,101,1,101, + 1,101,1,101,1,101,1,102,1,102,1,102,1,102,1,102,1,103,1,103,1,103, + 1,103,1,103,1,103,1,103,1,103,1,104,1,104,1,104,1,104,1,104,1,104, + 1,104,1,104,1,105,1,105,1,105,1,105,1,105,1,105,1,106,1,106,1,106, + 1,106,1,106,1,106,1,106,1,106,1,106,1,106,1,106,1,107,1,107,1,107, + 1,108,1,108,1,108,1,108,1,108,1,109,1,109,1,109,1,109,1,110,1,110, + 1,110,1,110,1,110,1,111,1,111,1,111,1,111,1,111,1,112,1,112,1,112, + 1,112,1,112,1,112,1,112,1,112,1,113,1,113,1,113,1,113,1,113,1,114, + 1,114,1,114,1,114,1,114,1,115,1,115,1,115,1,115,1,115,1,115,1,116, + 1,116,1,116,1,116,1,116,1,116,1,117,1,117,1,117,1,117,1,117,1,118, + 1,118,1,118,1,118,1,118,1,118,1,118,1,118,1,118,1,118,1,119,1,119, 1,119,1,119,1,119,1,119,1,119,1,119,1,119,1,119,1,119,1,119,1,119, - 1,119,1,119,1,119,1,120,1,120,1,120,1,120,1,120,1,120,1,120,1,120, - 1,120,1,121,1,121,1,121,1,121,1,122,1,122,1,122,1,122,1,122,1,122, - 1,122,1,123,1,123,1,123,1,123,1,123,1,123,1,123,1,123,1,124,1,124, - 1,124,1,124,1,124,1,124,1,125,1,125,1,125,1,125,1,125,1,125,1,125, - 1,126,1,126,1,126,1,126,1,126,1,126,1,126,1,126,1,126,1,127,1,127, - 1,127,1,127,1,128,1,128,1,128,1,128,1,129,1,129,1,129,1,129,1,129, - 1,130,1,130,1,130,1,130,1,130,1,131,1,131,1,131,1,131,1,131,1,131, - 1,131,1,131,1,131,1,131,1,132,1,132,1,132,1,132,1,133,1,133,1,133, - 1,133,1,133,1,134,1,134,1,134,1,134,1,134,1,134,1,135,1,135,1,135, - 1,135,1,135,1,135,1,135,1,136,1,136,1,136,1,137,1,137,1,137,1,137, - 1,137,1,137,1,137,1,138,1,138,1,138,1,139,1,139,1,139,1,139,1,139, - 1,139,1,140,1,140,1,140,1,140,1,140,1,140,1,140,1,140,1,140,1,140, - 1,140,1,141,1,141,1,141,1,141,1,141,1,141,1,142,1,142,1,142,1,142, - 1,142,1,142,1,143,1,143,1,143,1,143,1,143,1,144,1,144,1,144,1,144, - 1,144,1,144,1,144,1,144,1,144,1,144,1,145,1,145,1,145,1,145,1,145, - 1,145,1,145,1,145,1,145,1,145,1,146,1,146,1,146,1,146,1,146,1,146, - 1,146,1,146,1,146,1,146,1,146,1,147,1,147,1,147,1,147,1,147,1,147, - 1,147,1,147,1,148,1,148,1,148,1,148,1,148,1,148,1,148,1,148,1,148, - 1,149,1,149,1,149,1,149,1,149,1,149,1,149,1,149,1,149,1,149,1,150, - 1,150,1,150,1,150,1,150,1,150,1,150,1,150,1,151,1,151,1,151,1,151, - 1,151,1,151,1,151,1,151,1,151,1,151,1,151,1,151,1,152,1,152,1,152, - 1,152,1,152,1,152,1,152,1,152,1,152,1,152,1,152,1,153,1,153,1,153, - 1,153,1,153,1,153,1,153,1,153,1,153,1,153,1,153,1,154,1,154,1,154, - 1,154,1,154,1,154,1,155,1,155,1,155,1,155,1,155,1,155,1,155,1,155, - 1,156,1,156,1,156,1,156,1,156,1,156,1,156,1,157,1,157,1,157,1,157, - 1,157,1,157,1,157,1,157,1,157,1,157,1,157,1,158,1,158,1,158,1,158, - 1,158,1,158,1,158,1,158,1,159,1,159,1,159,1,159,1,159,1,159,1,159, - 1,159,1,159,1,160,1,160,1,160,1,160,1,160,1,160,1,160,1,160,1,161, - 1,161,1,161,1,161,1,161,1,161,1,161,1,162,1,162,1,162,1,162,1,162, - 1,162,1,162,1,162,1,163,1,163,1,163,1,163,1,163,1,163,1,163,1,164, - 1,164,1,164,1,164,1,164,1,164,1,165,1,165,1,165,1,165,1,165,1,165, - 1,166,1,166,1,166,1,166,1,166,1,167,1,167,1,167,1,167,1,167,1,167, - 1,168,1,168,1,168,1,168,1,169,1,169,1,169,1,169,1,169,1,170,1,170, - 1,170,1,170,1,170,1,170,1,170,1,171,1,171,1,171,1,171,1,171,1,171, - 1,171,1,171,1,172,1,172,1,172,1,172,1,172,1,172,1,172,1,173,1,173, - 1,173,1,173,1,173,1,173,1,173,1,173,1,174,1,174,1,174,1,174,1,174, - 1,174,1,174,1,175,1,175,1,175,1,175,1,175,1,175,1,175,1,175,1,175, - 1,175,1,175,1,175,1,175,1,175,1,175,1,175,1,176,1,176,1,176,1,176, - 1,177,1,177,1,177,1,177,1,177,1,178,1,178,1,178,1,178,1,178,1,178, - 1,178,1,179,1,179,1,179,1,179,1,179,1,180,1,180,1,180,1,180,1,180, - 1,180,1,180,1,180,1,180,1,181,1,181,1,181,1,181,1,181,1,182,1,182, - 1,182,1,182,1,182,1,182,1,183,1,183,1,183,1,183,1,183,1,183,1,183, - 1,184,1,184,1,184,1,184,1,184,1,184,1,184,1,184,1,184,1,184,1,184, - 1,184,1,184,1,184,1,185,1,185,1,185,1,185,1,185,1,185,1,185,1,185, - 1,185,1,185,1,186,1,186,1,186,1,186,1,186,1,186,1,186,1,187,1,187, - 1,187,1,187,1,187,1,187,1,187,1,188,1,188,1,188,1,188,1,188,1,188, - 1,188,1,188,1,188,1,188,1,188,1,188,1,188,1,189,1,189,1,189,1,189, - 1,189,1,189,1,190,1,190,1,190,1,190,1,190,1,190,1,190,1,191,1,191, - 1,191,1,191,1,191,1,191,1,191,1,191,1,191,1,191,1,191,1,191,1,192, - 1,192,1,192,1,192,1,192,1,192,1,192,1,192,1,192,1,192,1,192,1,192, - 1,193,1,193,1,193,1,193,1,193,1,194,1,194,1,194,1,195,1,195,1,195, - 1,195,1,195,1,196,1,196,1,196,1,196,1,196,1,196,1,196,1,196,1,196, - 1,197,1,197,1,197,1,197,1,197,1,197,1,197,1,197,1,197,1,198,1,198, - 1,198,1,198,1,198,1,198,1,198,1,198,1,198,1,199,1,199,1,199,1,199, - 1,199,1,199,1,199,1,199,1,200,1,200,1,200,1,200,1,200,1,200,1,200, - 1,200,1,200,1,200,1,201,1,201,1,201,1,201,1,201,1,201,1,202,1,202, - 1,202,1,202,1,202,1,202,1,202,1,203,1,203,1,203,1,203,1,203,1,203, - 1,204,1,204,1,204,1,204,1,205,1,205,1,205,1,205,1,205,1,206,1,206, - 1,206,1,206,1,206,1,206,1,207,1,207,1,207,1,207,1,207,1,207,1,207, - 1,207,1,207,1,207,1,208,1,208,1,208,1,208,1,208,1,208,1,208,1,209, - 1,209,1,209,1,209,1,209,1,209,1,209,1,209,1,210,1,210,1,210,1,210, - 1,211,1,211,1,211,1,211,1,211,1,211,1,212,1,212,1,212,1,212,1,212, - 1,212,1,212,1,213,1,213,1,213,1,213,1,213,1,214,1,214,1,214,1,214, - 1,214,1,214,1,215,1,215,1,215,1,215,1,215,1,216,1,216,1,216,1,216, - 1,216,1,216,1,217,1,217,1,217,1,217,1,217,1,218,1,218,1,218,1,218, - 1,218,1,219,1,219,1,219,1,219,1,219,1,219,1,220,1,220,1,220,1,220, - 1,220,1,220,1,220,1,220,1,220,1,221,1,221,1,221,1,221,1,222,1,222, - 1,222,1,222,1,222,1,223,1,223,1,223,1,223,1,223,1,223,1,223,1,223, - 1,223,1,223,1,223,1,223,1,223,1,224,1,224,1,224,1,224,1,224,1,224, - 1,224,1,225,1,225,1,225,1,225,1,225,1,225,1,225,1,225,1,225,1,225, - 1,225,1,226,1,226,1,226,1,226,1,226,1,226,1,226,1,226,1,226,1,226, - 1,226,1,227,1,227,1,227,1,227,1,227,1,228,1,228,1,228,1,228,1,228, - 1,228,1,228,1,228,1,228,1,229,1,229,1,229,1,229,1,229,1,229,1,229, - 1,229,1,229,1,229,1,229,1,230,1,230,1,230,1,230,1,230,1,230,1,230, - 1,230,1,230,1,230,1,231,1,231,1,231,1,231,1,231,1,231,1,231,1,231, - 1,231,1,231,1,232,1,232,1,233,1,233,1,233,1,233,3,233,2289,8,233, - 1,234,1,234,1,235,1,235,1,235,1,236,1,236,1,237,1,237,1,237,1,238, - 1,238,1,239,1,239,1,240,1,240,1,241,1,241,1,242,1,242,1,243,1,243, - 1,243,1,244,1,244,1,245,1,245,1,246,1,246,1,247,1,247,1,248,1,248, - 1,249,1,249,1,250,1,250,1,251,1,251,1,252,1,252,1,253,1,253,1,254, - 1,254,1,255,1,255,1,256,1,256,1,256,1,257,1,257,1,257,1,257,5,257, - 2345,8,257,10,257,12,257,2348,9,257,1,257,1,257,1,257,1,257,1,257, - 5,257,2355,8,257,10,257,12,257,2358,9,257,1,257,3,257,2361,8,257, - 1,258,1,258,1,258,1,258,1,258,1,258,1,258,5,258,2370,8,258,10,258, - 12,258,2373,9,258,1,258,1,258,1,259,1,259,1,259,1,259,5,259,2381, - 8,259,10,259,12,259,2384,9,259,1,259,1,259,1,260,4,260,2389,8,260, - 11,260,12,260,2390,1,261,4,261,2394,8,261,11,261,12,261,2395,1,261, - 1,261,5,261,2400,8,261,10,261,12,261,2403,9,261,1,261,1,261,4,261, - 2407,8,261,11,261,12,261,2408,3,261,2411,8,261,1,262,4,262,2414, - 8,262,11,262,12,262,2415,1,262,1,262,5,262,2420,8,262,10,262,12, - 262,2423,9,262,3,262,2425,8,262,1,262,1,262,1,262,1,262,4,262,2431, - 8,262,11,262,12,262,2432,1,262,1,262,3,262,2437,8,262,1,263,1,263, - 3,263,2441,8,263,1,263,1,263,1,263,5,263,2446,8,263,10,263,12,263, - 2449,9,263,1,264,1,264,1,264,1,264,4,264,2455,8,264,11,264,12,264, - 2456,1,265,1,265,1,265,1,265,5,265,2463,8,265,10,265,12,265,2466, - 9,265,1,265,1,265,1,266,1,266,1,266,1,266,5,266,2474,8,266,10,266, - 12,266,2477,9,266,1,266,1,266,1,267,1,267,1,267,1,267,1,267,1,267, - 1,267,1,267,1,267,1,267,1,267,1,267,1,267,1,267,1,267,1,267,1,267, - 1,267,1,267,1,267,1,267,1,267,1,267,1,268,1,268,1,268,1,268,1,268, - 1,268,1,268,1,268,1,268,1,268,1,268,1,268,1,268,1,268,1,268,1,268, - 1,268,1,268,1,268,1,268,1,268,1,268,1,268,1,268,1,268,1,268,1,268, - 1,268,1,269,1,269,1,269,1,269,1,269,1,269,1,269,1,269,1,269,1,269, - 1,269,1,269,1,269,1,269,1,269,1,269,1,269,1,269,1,270,1,270,3,270, - 2552,8,270,1,270,4,270,2555,8,270,11,270,12,270,2556,1,271,1,271, - 1,272,1,272,1,273,1,273,1,273,1,273,5,273,2567,8,273,10,273,12,273, - 2570,9,273,1,273,3,273,2573,8,273,1,273,3,273,2576,8,273,1,273,1, - 273,1,274,1,274,1,274,1,274,5,274,2584,8,274,10,274,12,274,2587, - 9,274,1,274,1,274,1,274,1,274,1,274,1,275,4,275,2595,8,275,11,275, - 12,275,2596,1,275,1,275,1,2585,0,276,1,1,3,2,5,3,7,4,9,5,11,6,13, - 7,15,8,17,9,19,10,21,11,23,12,25,13,27,14,29,15,31,16,33,17,35,18, - 37,19,39,20,41,21,43,22,45,23,47,24,49,25,51,26,53,27,55,28,57,29, - 59,30,61,31,63,32,65,33,67,34,69,35,71,36,73,37,75,38,77,39,79,40, - 81,41,83,42,85,43,87,44,89,45,91,46,93,47,95,48,97,49,99,50,101, - 51,103,52,105,53,107,54,109,55,111,56,113,57,115,58,117,59,119,60, - 121,61,123,62,125,63,127,64,129,65,131,66,133,67,135,68,137,69,139, - 70,141,71,143,72,145,73,147,74,149,75,151,76,153,77,155,78,157,79, - 159,80,161,81,163,82,165,83,167,84,169,85,171,86,173,87,175,88,177, - 89,179,90,181,91,183,92,185,93,187,94,189,95,191,96,193,97,195,98, - 197,99,199,100,201,101,203,102,205,103,207,104,209,105,211,106,213, - 107,215,108,217,109,219,110,221,111,223,112,225,113,227,114,229, - 115,231,116,233,117,235,118,237,119,239,120,241,121,243,122,245, - 123,247,124,249,125,251,126,253,127,255,128,257,129,259,130,261, - 131,263,132,265,133,267,134,269,135,271,136,273,137,275,138,277, - 139,279,140,281,141,283,142,285,143,287,144,289,145,291,146,293, - 147,295,148,297,149,299,150,301,151,303,152,305,153,307,154,309, - 155,311,156,313,157,315,158,317,159,319,160,321,161,323,162,325, - 163,327,164,329,165,331,166,333,167,335,168,337,169,339,170,341, - 171,343,172,345,173,347,174,349,175,351,176,353,177,355,178,357, - 179,359,180,361,181,363,182,365,183,367,184,369,185,371,186,373, - 187,375,188,377,189,379,190,381,191,383,192,385,193,387,194,389, - 195,391,196,393,197,395,198,397,199,399,200,401,201,403,202,405, - 203,407,204,409,205,411,206,413,207,415,208,417,209,419,210,421, - 211,423,212,425,213,427,214,429,215,431,216,433,217,435,218,437, - 219,439,220,441,221,443,222,445,223,447,224,449,225,451,226,453, - 227,455,228,457,229,459,230,461,231,463,232,465,233,467,234,469, - 235,471,236,473,237,475,238,477,239,479,240,481,241,483,242,485, - 243,487,244,489,245,491,246,493,247,495,248,497,249,499,250,501, - 251,503,252,505,253,507,254,509,255,511,256,513,257,515,258,517, - 259,519,260,521,261,523,262,525,263,527,264,529,265,531,266,533, - 267,535,268,537,269,539,270,541,0,543,0,545,0,547,271,549,272,551, - 273,1,0,35,2,0,65,65,97,97,2,0,68,68,100,100,2,0,76,76,108,108,2, - 0,78,78,110,110,2,0,89,89,121,121,2,0,84,84,116,116,2,0,73,73,105, - 105,2,0,67,67,99,99,2,0,69,69,101,101,2,0,82,82,114,114,2,0,83,83, - 115,115,2,0,71,71,103,103,2,0,85,85,117,117,2,0,72,72,104,104,2, - 0,79,79,111,111,2,0,90,90,122,122,2,0,66,66,98,98,2,0,87,87,119, - 119,2,0,75,75,107,107,2,0,80,80,112,112,2,0,70,70,102,102,2,0,88, - 88,120,120,2,0,77,77,109,109,2,0,86,86,118,118,2,0,74,74,106,106, - 2,0,81,81,113,113,1,0,39,39,1,0,34,34,3,0,58,58,64,64,95,95,1,0, - 96,96,2,0,43,43,45,45,1,0,48,57,2,0,65,90,97,122,2,0,10,10,13,13, - 3,0,9,10,13,13,32,32,2633,0,1,1,0,0,0,0,3,1,0,0,0,0,5,1,0,0,0,0, - 7,1,0,0,0,0,9,1,0,0,0,0,11,1,0,0,0,0,13,1,0,0,0,0,15,1,0,0,0,0,17, - 1,0,0,0,0,19,1,0,0,0,0,21,1,0,0,0,0,23,1,0,0,0,0,25,1,0,0,0,0,27, - 1,0,0,0,0,29,1,0,0,0,0,31,1,0,0,0,0,33,1,0,0,0,0,35,1,0,0,0,0,37, - 1,0,0,0,0,39,1,0,0,0,0,41,1,0,0,0,0,43,1,0,0,0,0,45,1,0,0,0,0,47, - 1,0,0,0,0,49,1,0,0,0,0,51,1,0,0,0,0,53,1,0,0,0,0,55,1,0,0,0,0,57, - 1,0,0,0,0,59,1,0,0,0,0,61,1,0,0,0,0,63,1,0,0,0,0,65,1,0,0,0,0,67, - 1,0,0,0,0,69,1,0,0,0,0,71,1,0,0,0,0,73,1,0,0,0,0,75,1,0,0,0,0,77, - 1,0,0,0,0,79,1,0,0,0,0,81,1,0,0,0,0,83,1,0,0,0,0,85,1,0,0,0,0,87, - 1,0,0,0,0,89,1,0,0,0,0,91,1,0,0,0,0,93,1,0,0,0,0,95,1,0,0,0,0,97, - 1,0,0,0,0,99,1,0,0,0,0,101,1,0,0,0,0,103,1,0,0,0,0,105,1,0,0,0,0, - 107,1,0,0,0,0,109,1,0,0,0,0,111,1,0,0,0,0,113,1,0,0,0,0,115,1,0, - 0,0,0,117,1,0,0,0,0,119,1,0,0,0,0,121,1,0,0,0,0,123,1,0,0,0,0,125, - 1,0,0,0,0,127,1,0,0,0,0,129,1,0,0,0,0,131,1,0,0,0,0,133,1,0,0,0, - 0,135,1,0,0,0,0,137,1,0,0,0,0,139,1,0,0,0,0,141,1,0,0,0,0,143,1, - 0,0,0,0,145,1,0,0,0,0,147,1,0,0,0,0,149,1,0,0,0,0,151,1,0,0,0,0, - 153,1,0,0,0,0,155,1,0,0,0,0,157,1,0,0,0,0,159,1,0,0,0,0,161,1,0, - 0,0,0,163,1,0,0,0,0,165,1,0,0,0,0,167,1,0,0,0,0,169,1,0,0,0,0,171, - 1,0,0,0,0,173,1,0,0,0,0,175,1,0,0,0,0,177,1,0,0,0,0,179,1,0,0,0, - 0,181,1,0,0,0,0,183,1,0,0,0,0,185,1,0,0,0,0,187,1,0,0,0,0,189,1, - 0,0,0,0,191,1,0,0,0,0,193,1,0,0,0,0,195,1,0,0,0,0,197,1,0,0,0,0, - 199,1,0,0,0,0,201,1,0,0,0,0,203,1,0,0,0,0,205,1,0,0,0,0,207,1,0, - 0,0,0,209,1,0,0,0,0,211,1,0,0,0,0,213,1,0,0,0,0,215,1,0,0,0,0,217, - 1,0,0,0,0,219,1,0,0,0,0,221,1,0,0,0,0,223,1,0,0,0,0,225,1,0,0,0, - 0,227,1,0,0,0,0,229,1,0,0,0,0,231,1,0,0,0,0,233,1,0,0,0,0,235,1, - 0,0,0,0,237,1,0,0,0,0,239,1,0,0,0,0,241,1,0,0,0,0,243,1,0,0,0,0, - 245,1,0,0,0,0,247,1,0,0,0,0,249,1,0,0,0,0,251,1,0,0,0,0,253,1,0, - 0,0,0,255,1,0,0,0,0,257,1,0,0,0,0,259,1,0,0,0,0,261,1,0,0,0,0,263, - 1,0,0,0,0,265,1,0,0,0,0,267,1,0,0,0,0,269,1,0,0,0,0,271,1,0,0,0, - 0,273,1,0,0,0,0,275,1,0,0,0,0,277,1,0,0,0,0,279,1,0,0,0,0,281,1, - 0,0,0,0,283,1,0,0,0,0,285,1,0,0,0,0,287,1,0,0,0,0,289,1,0,0,0,0, - 291,1,0,0,0,0,293,1,0,0,0,0,295,1,0,0,0,0,297,1,0,0,0,0,299,1,0, - 0,0,0,301,1,0,0,0,0,303,1,0,0,0,0,305,1,0,0,0,0,307,1,0,0,0,0,309, - 1,0,0,0,0,311,1,0,0,0,0,313,1,0,0,0,0,315,1,0,0,0,0,317,1,0,0,0, - 0,319,1,0,0,0,0,321,1,0,0,0,0,323,1,0,0,0,0,325,1,0,0,0,0,327,1, - 0,0,0,0,329,1,0,0,0,0,331,1,0,0,0,0,333,1,0,0,0,0,335,1,0,0,0,0, - 337,1,0,0,0,0,339,1,0,0,0,0,341,1,0,0,0,0,343,1,0,0,0,0,345,1,0, - 0,0,0,347,1,0,0,0,0,349,1,0,0,0,0,351,1,0,0,0,0,353,1,0,0,0,0,355, - 1,0,0,0,0,357,1,0,0,0,0,359,1,0,0,0,0,361,1,0,0,0,0,363,1,0,0,0, - 0,365,1,0,0,0,0,367,1,0,0,0,0,369,1,0,0,0,0,371,1,0,0,0,0,373,1, - 0,0,0,0,375,1,0,0,0,0,377,1,0,0,0,0,379,1,0,0,0,0,381,1,0,0,0,0, - 383,1,0,0,0,0,385,1,0,0,0,0,387,1,0,0,0,0,389,1,0,0,0,0,391,1,0, - 0,0,0,393,1,0,0,0,0,395,1,0,0,0,0,397,1,0,0,0,0,399,1,0,0,0,0,401, - 1,0,0,0,0,403,1,0,0,0,0,405,1,0,0,0,0,407,1,0,0,0,0,409,1,0,0,0, - 0,411,1,0,0,0,0,413,1,0,0,0,0,415,1,0,0,0,0,417,1,0,0,0,0,419,1, - 0,0,0,0,421,1,0,0,0,0,423,1,0,0,0,0,425,1,0,0,0,0,427,1,0,0,0,0, - 429,1,0,0,0,0,431,1,0,0,0,0,433,1,0,0,0,0,435,1,0,0,0,0,437,1,0, - 0,0,0,439,1,0,0,0,0,441,1,0,0,0,0,443,1,0,0,0,0,445,1,0,0,0,0,447, - 1,0,0,0,0,449,1,0,0,0,0,451,1,0,0,0,0,453,1,0,0,0,0,455,1,0,0,0, - 0,457,1,0,0,0,0,459,1,0,0,0,0,461,1,0,0,0,0,463,1,0,0,0,0,465,1, - 0,0,0,0,467,1,0,0,0,0,469,1,0,0,0,0,471,1,0,0,0,0,473,1,0,0,0,0, - 475,1,0,0,0,0,477,1,0,0,0,0,479,1,0,0,0,0,481,1,0,0,0,0,483,1,0, - 0,0,0,485,1,0,0,0,0,487,1,0,0,0,0,489,1,0,0,0,0,491,1,0,0,0,0,493, - 1,0,0,0,0,495,1,0,0,0,0,497,1,0,0,0,0,499,1,0,0,0,0,501,1,0,0,0, - 0,503,1,0,0,0,0,505,1,0,0,0,0,507,1,0,0,0,0,509,1,0,0,0,0,511,1, - 0,0,0,0,513,1,0,0,0,0,515,1,0,0,0,0,517,1,0,0,0,0,519,1,0,0,0,0, - 521,1,0,0,0,0,523,1,0,0,0,0,525,1,0,0,0,0,527,1,0,0,0,0,529,1,0, - 0,0,0,531,1,0,0,0,0,533,1,0,0,0,0,535,1,0,0,0,0,537,1,0,0,0,0,539, - 1,0,0,0,0,547,1,0,0,0,0,549,1,0,0,0,0,551,1,0,0,0,1,553,1,0,0,0, - 3,557,1,0,0,0,5,561,1,0,0,0,7,570,1,0,0,0,9,576,1,0,0,0,11,580,1, - 0,0,0,13,584,1,0,0,0,15,589,1,0,0,0,17,595,1,0,0,0,19,598,1,0,0, - 0,21,602,1,0,0,0,23,605,1,0,0,0,25,615,1,0,0,0,27,629,1,0,0,0,29, - 639,1,0,0,0,31,647,1,0,0,0,33,658,1,0,0,0,35,670,1,0,0,0,37,681, - 1,0,0,0,39,690,1,0,0,0,41,698,1,0,0,0,43,703,1,0,0,0,45,709,1,0, - 0,0,47,716,1,0,0,0,49,725,1,0,0,0,51,739,1,0,0,0,53,742,1,0,0,0, - 55,750,1,0,0,0,57,755,1,0,0,0,59,760,1,0,0,0,61,767,1,0,0,0,63,774, - 1,0,0,0,65,781,1,0,0,0,67,789,1,0,0,0,69,797,1,0,0,0,71,809,1,0, - 0,0,73,817,1,0,0,0,75,824,1,0,0,0,77,830,1,0,0,0,79,838,1,0,0,0, - 81,851,1,0,0,0,83,864,1,0,0,0,85,877,1,0,0,0,87,895,1,0,0,0,89,908, - 1,0,0,0,91,913,1,0,0,0,93,922,1,0,0,0,95,932,1,0,0,0,97,936,1,0, - 0,0,99,941,1,0,0,0,101,948,1,0,0,0,103,956,1,0,0,0,105,966,1,0,0, - 0,107,974,1,0,0,0,109,981,1,0,0,0,111,986,1,0,0,0,113,995,1,0,0, - 0,115,1004,1,0,0,0,117,1009,1,0,0,0,119,1014,1,0,0,0,121,1023,1, - 0,0,0,123,1027,1,0,0,0,125,1034,1,0,0,0,127,1042,1,0,0,0,129,1049, - 1,0,0,0,131,1059,1,0,0,0,133,1066,1,0,0,0,135,1074,1,0,0,0,137,1082, - 1,0,0,0,139,1091,1,0,0,0,141,1097,1,0,0,0,143,1104,1,0,0,0,145,1115, - 1,0,0,0,147,1121,1,0,0,0,149,1128,1,0,0,0,151,1134,1,0,0,0,153,1146, - 1,0,0,0,155,1156,1,0,0,0,157,1160,1,0,0,0,159,1167,1,0,0,0,161,1177, - 1,0,0,0,163,1185,1,0,0,0,165,1190,1,0,0,0,167,1195,1,0,0,0,169,1204, - 1,0,0,0,171,1214,1,0,0,0,173,1220,1,0,0,0,175,1226,1,0,0,0,177,1235, - 1,0,0,0,179,1240,1,0,0,0,181,1247,1,0,0,0,183,1252,1,0,0,0,185,1258, - 1,0,0,0,187,1261,1,0,0,0,189,1264,1,0,0,0,191,1274,1,0,0,0,193,1286, - 1,0,0,0,195,1292,1,0,0,0,197,1299,1,0,0,0,199,1306,1,0,0,0,201,1316, - 1,0,0,0,203,1325,1,0,0,0,205,1338,1,0,0,0,207,1343,1,0,0,0,209,1351, - 1,0,0,0,211,1359,1,0,0,0,213,1365,1,0,0,0,215,1376,1,0,0,0,217,1379, - 1,0,0,0,219,1384,1,0,0,0,221,1388,1,0,0,0,223,1393,1,0,0,0,225,1398, - 1,0,0,0,227,1406,1,0,0,0,229,1411,1,0,0,0,231,1416,1,0,0,0,233,1422, - 1,0,0,0,235,1428,1,0,0,0,237,1433,1,0,0,0,239,1443,1,0,0,0,241,1458, - 1,0,0,0,243,1467,1,0,0,0,245,1471,1,0,0,0,247,1478,1,0,0,0,249,1486, - 1,0,0,0,251,1492,1,0,0,0,253,1499,1,0,0,0,255,1508,1,0,0,0,257,1512, - 1,0,0,0,259,1516,1,0,0,0,261,1521,1,0,0,0,263,1526,1,0,0,0,265,1536, - 1,0,0,0,267,1540,1,0,0,0,269,1545,1,0,0,0,271,1551,1,0,0,0,273,1558, - 1,0,0,0,275,1561,1,0,0,0,277,1568,1,0,0,0,279,1571,1,0,0,0,281,1577, - 1,0,0,0,283,1588,1,0,0,0,285,1594,1,0,0,0,287,1600,1,0,0,0,289,1605, - 1,0,0,0,291,1615,1,0,0,0,293,1625,1,0,0,0,295,1636,1,0,0,0,297,1644, - 1,0,0,0,299,1653,1,0,0,0,301,1663,1,0,0,0,303,1671,1,0,0,0,305,1683, - 1,0,0,0,307,1694,1,0,0,0,309,1705,1,0,0,0,311,1711,1,0,0,0,313,1719, - 1,0,0,0,315,1726,1,0,0,0,317,1737,1,0,0,0,319,1745,1,0,0,0,321,1754, - 1,0,0,0,323,1762,1,0,0,0,325,1769,1,0,0,0,327,1777,1,0,0,0,329,1784, - 1,0,0,0,331,1790,1,0,0,0,333,1796,1,0,0,0,335,1801,1,0,0,0,337,1807, - 1,0,0,0,339,1811,1,0,0,0,341,1816,1,0,0,0,343,1823,1,0,0,0,345,1831, - 1,0,0,0,347,1838,1,0,0,0,349,1846,1,0,0,0,351,1853,1,0,0,0,353,1869, - 1,0,0,0,355,1873,1,0,0,0,357,1878,1,0,0,0,359,1885,1,0,0,0,361,1890, - 1,0,0,0,363,1899,1,0,0,0,365,1904,1,0,0,0,367,1910,1,0,0,0,369,1917, - 1,0,0,0,371,1931,1,0,0,0,373,1941,1,0,0,0,375,1948,1,0,0,0,377,1955, - 1,0,0,0,379,1968,1,0,0,0,381,1974,1,0,0,0,383,1981,1,0,0,0,385,1993, - 1,0,0,0,387,2005,1,0,0,0,389,2010,1,0,0,0,391,2013,1,0,0,0,393,2018, - 1,0,0,0,395,2027,1,0,0,0,397,2036,1,0,0,0,399,2045,1,0,0,0,401,2053, - 1,0,0,0,403,2063,1,0,0,0,405,2069,1,0,0,0,407,2076,1,0,0,0,409,2082, - 1,0,0,0,411,2086,1,0,0,0,413,2091,1,0,0,0,415,2097,1,0,0,0,417,2107, - 1,0,0,0,419,2114,1,0,0,0,421,2122,1,0,0,0,423,2126,1,0,0,0,425,2132, - 1,0,0,0,427,2139,1,0,0,0,429,2144,1,0,0,0,431,2150,1,0,0,0,433,2155, - 1,0,0,0,435,2161,1,0,0,0,437,2166,1,0,0,0,439,2171,1,0,0,0,441,2177, - 1,0,0,0,443,2186,1,0,0,0,445,2190,1,0,0,0,447,2195,1,0,0,0,449,2208, - 1,0,0,0,451,2215,1,0,0,0,453,2226,1,0,0,0,455,2237,1,0,0,0,457,2242, - 1,0,0,0,459,2251,1,0,0,0,461,2262,1,0,0,0,463,2272,1,0,0,0,465,2282, - 1,0,0,0,467,2288,1,0,0,0,469,2290,1,0,0,0,471,2292,1,0,0,0,473,2295, - 1,0,0,0,475,2297,1,0,0,0,477,2300,1,0,0,0,479,2302,1,0,0,0,481,2304, - 1,0,0,0,483,2306,1,0,0,0,485,2308,1,0,0,0,487,2310,1,0,0,0,489,2313, - 1,0,0,0,491,2315,1,0,0,0,493,2317,1,0,0,0,495,2319,1,0,0,0,497,2321, - 1,0,0,0,499,2323,1,0,0,0,501,2325,1,0,0,0,503,2327,1,0,0,0,505,2329, - 1,0,0,0,507,2331,1,0,0,0,509,2333,1,0,0,0,511,2335,1,0,0,0,513,2337, - 1,0,0,0,515,2360,1,0,0,0,517,2362,1,0,0,0,519,2376,1,0,0,0,521,2388, - 1,0,0,0,523,2410,1,0,0,0,525,2436,1,0,0,0,527,2440,1,0,0,0,529,2450, - 1,0,0,0,531,2458,1,0,0,0,533,2469,1,0,0,0,535,2480,1,0,0,0,537,2503, - 1,0,0,0,539,2531,1,0,0,0,541,2549,1,0,0,0,543,2558,1,0,0,0,545,2560, - 1,0,0,0,547,2562,1,0,0,0,549,2579,1,0,0,0,551,2594,1,0,0,0,553,554, - 7,0,0,0,554,555,7,1,0,0,555,556,7,1,0,0,556,2,1,0,0,0,557,558,7, - 0,0,0,558,559,7,2,0,0,559,560,7,2,0,0,560,4,1,0,0,0,561,562,7,0, - 0,0,562,563,7,3,0,0,563,564,7,0,0,0,564,565,7,2,0,0,565,566,7,4, - 0,0,566,567,7,5,0,0,567,568,7,6,0,0,568,569,7,7,0,0,569,6,1,0,0, - 0,570,571,7,0,0,0,571,572,7,2,0,0,572,573,7,5,0,0,573,574,7,8,0, - 0,574,575,7,9,0,0,575,8,1,0,0,0,576,577,7,0,0,0,577,578,7,3,0,0, - 578,579,7,1,0,0,579,10,1,0,0,0,580,581,7,0,0,0,581,582,7,3,0,0,582, - 583,7,4,0,0,583,12,1,0,0,0,584,585,7,0,0,0,585,586,7,3,0,0,586,587, - 7,5,0,0,587,588,7,6,0,0,588,14,1,0,0,0,589,590,7,0,0,0,590,591,7, - 9,0,0,591,592,7,9,0,0,592,593,7,0,0,0,593,594,7,4,0,0,594,16,1,0, - 0,0,595,596,7,0,0,0,596,597,7,10,0,0,597,18,1,0,0,0,598,599,7,0, - 0,0,599,600,7,10,0,0,600,601,7,7,0,0,601,20,1,0,0,0,602,603,7,0, - 0,0,603,604,7,5,0,0,604,22,1,0,0,0,605,606,7,0,0,0,606,607,7,11, - 0,0,607,608,7,11,0,0,608,609,7,9,0,0,609,610,7,8,0,0,610,611,7,11, - 0,0,611,612,7,0,0,0,612,613,7,5,0,0,613,614,7,8,0,0,614,24,1,0,0, - 0,615,616,7,0,0,0,616,617,7,12,0,0,617,618,7,5,0,0,618,619,7,13, - 0,0,619,620,7,14,0,0,620,621,7,9,0,0,621,622,7,6,0,0,622,623,7,15, - 0,0,623,624,7,0,0,0,624,625,7,5,0,0,625,626,7,6,0,0,626,627,7,14, - 0,0,627,628,7,3,0,0,628,26,1,0,0,0,629,630,7,16,0,0,630,631,7,8, - 0,0,631,632,7,9,0,0,632,633,7,3,0,0,633,634,7,14,0,0,634,635,7,12, - 0,0,635,636,7,2,0,0,636,637,7,2,0,0,637,638,7,6,0,0,638,28,1,0,0, - 0,639,640,7,16,0,0,640,641,7,8,0,0,641,642,7,5,0,0,642,643,7,17, - 0,0,643,644,7,8,0,0,644,645,7,8,0,0,645,646,7,3,0,0,646,30,1,0,0, - 0,647,648,7,16,0,0,648,649,7,2,0,0,649,650,7,14,0,0,650,651,7,7, - 0,0,651,652,7,18,0,0,652,653,5,95,0,0,653,654,7,10,0,0,654,655,7, - 6,0,0,655,656,7,15,0,0,656,657,7,8,0,0,657,32,1,0,0,0,658,659,7, - 19,0,0,659,660,7,0,0,0,660,661,7,9,0,0,661,662,7,5,0,0,662,663,7, - 6,0,0,663,664,7,5,0,0,664,665,7,6,0,0,665,666,7,14,0,0,666,667,7, - 3,0,0,667,668,7,8,0,0,668,669,7,1,0,0,669,34,1,0,0,0,670,671,7,19, - 0,0,671,672,7,9,0,0,672,673,7,8,0,0,673,674,7,19,0,0,674,675,7,0, - 0,0,675,676,7,9,0,0,676,677,7,8,0,0,677,678,5,95,0,0,678,679,7,20, - 0,0,679,680,7,3,0,0,680,36,1,0,0,0,681,682,7,8,0,0,682,683,7,21, - 0,0,683,684,7,5,0,0,684,685,7,8,0,0,685,686,7,9,0,0,686,687,7,3, - 0,0,687,688,7,0,0,0,688,689,7,2,0,0,689,38,1,0,0,0,690,691,7,7,0, - 0,691,692,7,2,0,0,692,693,7,14,0,0,693,694,7,10,0,0,694,695,7,8, - 0,0,695,696,7,20,0,0,696,697,7,3,0,0,697,40,1,0,0,0,698,699,7,10, - 0,0,699,700,7,14,0,0,700,701,7,9,0,0,701,702,7,5,0,0,702,42,1,0, - 0,0,703,704,7,19,0,0,704,705,7,12,0,0,705,706,7,9,0,0,706,707,7, - 11,0,0,707,708,7,8,0,0,708,44,1,0,0,0,709,710,7,10,0,0,710,711,7, - 5,0,0,711,712,7,14,0,0,712,713,7,9,0,0,713,714,7,8,0,0,714,715,7, - 1,0,0,715,46,1,0,0,0,716,717,7,2,0,0,717,718,7,14,0,0,718,719,7, - 7,0,0,719,720,7,0,0,0,720,721,7,5,0,0,721,722,7,6,0,0,722,723,7, - 14,0,0,723,724,7,3,0,0,724,48,1,0,0,0,725,726,7,5,0,0,726,727,7, - 16,0,0,727,728,7,2,0,0,728,729,7,19,0,0,729,730,7,9,0,0,730,731, - 7,14,0,0,731,732,7,19,0,0,732,733,7,8,0,0,733,734,7,9,0,0,734,735, - 7,5,0,0,735,736,7,6,0,0,736,737,7,8,0,0,737,738,7,10,0,0,738,50, - 1,0,0,0,739,740,7,16,0,0,740,741,7,4,0,0,741,52,1,0,0,0,742,743, - 7,7,0,0,743,744,7,0,0,0,744,745,7,10,0,0,745,746,7,7,0,0,746,747, - 7,0,0,0,747,748,7,1,0,0,748,749,7,8,0,0,749,54,1,0,0,0,750,751,7, - 7,0,0,751,752,7,0,0,0,752,753,7,10,0,0,753,754,7,8,0,0,754,56,1, - 0,0,0,755,756,7,7,0,0,756,757,7,0,0,0,757,758,7,10,0,0,758,759,7, - 5,0,0,759,58,1,0,0,0,760,761,7,7,0,0,761,762,7,0,0,0,762,763,7,7, - 0,0,763,764,7,13,0,0,764,765,7,8,0,0,765,766,7,1,0,0,766,60,1,0, - 0,0,767,768,7,7,0,0,768,769,7,13,0,0,769,770,7,0,0,0,770,771,7,3, - 0,0,771,772,7,11,0,0,772,773,7,8,0,0,773,62,1,0,0,0,774,775,7,7, - 0,0,775,776,7,14,0,0,776,777,7,2,0,0,777,778,7,12,0,0,778,779,7, - 22,0,0,779,780,7,3,0,0,780,64,1,0,0,0,781,782,7,7,0,0,782,783,7, - 14,0,0,783,784,7,2,0,0,784,785,7,12,0,0,785,786,7,22,0,0,786,787, - 7,3,0,0,787,788,7,10,0,0,788,66,1,0,0,0,789,790,7,7,0,0,790,791, - 7,14,0,0,791,792,7,22,0,0,792,793,7,22,0,0,793,794,7,8,0,0,794,795, - 7,3,0,0,795,796,7,5,0,0,796,68,1,0,0,0,797,798,7,7,0,0,798,799,7, - 14,0,0,799,800,7,22,0,0,800,801,7,19,0,0,801,802,7,9,0,0,802,803, - 7,8,0,0,803,804,7,10,0,0,804,805,7,10,0,0,805,806,7,6,0,0,806,807, - 7,14,0,0,807,808,7,3,0,0,808,70,1,0,0,0,809,810,7,7,0,0,810,811, - 7,14,0,0,811,812,7,22,0,0,812,813,7,19,0,0,813,814,7,12,0,0,814, - 815,7,5,0,0,815,816,7,8,0,0,816,72,1,0,0,0,817,818,7,7,0,0,818,819, - 7,9,0,0,819,820,7,8,0,0,820,821,7,0,0,0,821,822,7,5,0,0,822,823, - 7,8,0,0,823,74,1,0,0,0,824,825,7,7,0,0,825,826,7,9,0,0,826,827,7, - 14,0,0,827,828,7,10,0,0,828,829,7,10,0,0,829,76,1,0,0,0,830,831, - 7,7,0,0,831,832,7,12,0,0,832,833,7,9,0,0,833,834,7,9,0,0,834,835, - 7,8,0,0,835,836,7,3,0,0,836,837,7,5,0,0,837,78,1,0,0,0,838,839,7, - 7,0,0,839,840,7,12,0,0,840,841,7,9,0,0,841,842,7,9,0,0,842,843,7, - 8,0,0,843,844,7,3,0,0,844,845,7,5,0,0,845,846,5,95,0,0,846,847,7, - 1,0,0,847,848,7,0,0,0,848,849,7,5,0,0,849,850,7,8,0,0,850,80,1,0, - 0,0,851,852,7,7,0,0,852,853,7,12,0,0,853,854,7,9,0,0,854,855,7,9, - 0,0,855,856,7,8,0,0,856,857,7,3,0,0,857,858,7,5,0,0,858,859,5,95, - 0,0,859,860,7,19,0,0,860,861,7,0,0,0,861,862,7,5,0,0,862,863,7,13, - 0,0,863,82,1,0,0,0,864,865,7,7,0,0,865,866,7,12,0,0,866,867,7,9, - 0,0,867,868,7,9,0,0,868,869,7,8,0,0,869,870,7,3,0,0,870,871,7,5, - 0,0,871,872,5,95,0,0,872,873,7,5,0,0,873,874,7,6,0,0,874,875,7,22, - 0,0,875,876,7,8,0,0,876,84,1,0,0,0,877,878,7,7,0,0,878,879,7,12, - 0,0,879,880,7,9,0,0,880,881,7,9,0,0,881,882,7,8,0,0,882,883,7,3, - 0,0,883,884,7,5,0,0,884,885,5,95,0,0,885,886,7,5,0,0,886,887,7,6, - 0,0,887,888,7,22,0,0,888,889,7,8,0,0,889,890,7,10,0,0,890,891,7, - 5,0,0,891,892,7,0,0,0,892,893,7,22,0,0,893,894,7,19,0,0,894,86,1, - 0,0,0,895,896,7,7,0,0,896,897,7,12,0,0,897,898,7,9,0,0,898,899,7, - 9,0,0,899,900,7,8,0,0,900,901,7,3,0,0,901,902,7,5,0,0,902,903,5, - 95,0,0,903,904,7,12,0,0,904,905,7,10,0,0,905,906,7,8,0,0,906,907, - 7,9,0,0,907,88,1,0,0,0,908,909,7,1,0,0,909,910,7,0,0,0,910,911,7, - 5,0,0,911,912,7,0,0,0,912,90,1,0,0,0,913,914,7,1,0,0,914,915,7,0, - 0,0,915,916,7,5,0,0,916,917,7,0,0,0,917,918,7,16,0,0,918,919,7,0, - 0,0,919,920,7,10,0,0,920,921,7,8,0,0,921,92,1,0,0,0,922,923,7,1, - 0,0,923,924,7,0,0,0,924,925,7,5,0,0,925,926,7,0,0,0,926,927,7,16, - 0,0,927,928,7,0,0,0,928,929,7,10,0,0,929,930,7,8,0,0,930,931,7,10, - 0,0,931,94,1,0,0,0,932,933,7,1,0,0,933,934,7,0,0,0,934,935,7,4,0, - 0,935,96,1,0,0,0,936,937,7,1,0,0,937,938,7,0,0,0,938,939,7,4,0,0, - 939,940,7,10,0,0,940,98,1,0,0,0,941,942,7,1,0,0,942,943,7,8,0,0, - 943,944,7,2,0,0,944,945,7,8,0,0,945,946,7,5,0,0,946,947,7,8,0,0, - 947,100,1,0,0,0,948,949,7,1,0,0,949,950,7,8,0,0,950,951,7,20,0,0, - 951,952,7,0,0,0,952,953,7,12,0,0,953,954,7,2,0,0,954,955,7,5,0,0, - 955,102,1,0,0,0,956,957,7,1,0,0,957,958,7,8,0,0,958,959,7,2,0,0, - 959,960,7,6,0,0,960,961,7,22,0,0,961,962,7,6,0,0,962,963,7,5,0,0, - 963,964,7,8,0,0,964,965,7,1,0,0,965,104,1,0,0,0,966,967,7,1,0,0, - 967,968,7,6,0,0,968,969,7,10,0,0,969,970,7,0,0,0,970,971,7,16,0, - 0,971,972,7,2,0,0,972,973,7,8,0,0,973,106,1,0,0,0,974,975,7,12,0, - 0,975,976,7,19,0,0,976,977,7,1,0,0,977,978,7,0,0,0,978,979,7,5,0, - 0,979,980,7,8,0,0,980,108,1,0,0,0,981,982,7,1,0,0,982,983,7,8,0, - 0,983,984,7,10,0,0,984,985,7,7,0,0,985,110,1,0,0,0,986,987,7,1,0, - 0,987,988,7,8,0,0,988,989,7,10,0,0,989,990,7,7,0,0,990,991,7,9,0, - 0,991,992,7,6,0,0,992,993,7,16,0,0,993,994,7,8,0,0,994,112,1,0,0, - 0,995,996,7,1,0,0,996,997,7,6,0,0,997,998,7,10,0,0,998,999,7,5,0, - 0,999,1000,7,6,0,0,1000,1001,7,3,0,0,1001,1002,7,7,0,0,1002,1003, - 7,5,0,0,1003,114,1,0,0,0,1004,1005,7,1,0,0,1005,1006,7,9,0,0,1006, - 1007,7,14,0,0,1007,1008,7,19,0,0,1008,116,1,0,0,0,1009,1010,7,8, - 0,0,1010,1011,7,2,0,0,1011,1012,7,10,0,0,1012,1013,7,8,0,0,1013, - 118,1,0,0,0,1014,1015,7,8,0,0,1015,1016,7,3,0,0,1016,1017,7,7,0, - 0,1017,1018,7,14,0,0,1018,1019,7,1,0,0,1019,1020,7,6,0,0,1020,1021, - 7,3,0,0,1021,1022,7,11,0,0,1022,120,1,0,0,0,1023,1024,7,8,0,0,1024, - 1025,7,3,0,0,1025,1026,7,1,0,0,1026,122,1,0,0,0,1027,1028,7,8,0, - 0,1028,1029,7,10,0,0,1029,1030,7,7,0,0,1030,1031,7,0,0,0,1031,1032, - 7,19,0,0,1032,1033,7,8,0,0,1033,124,1,0,0,0,1034,1035,7,8,0,0,1035, - 1036,7,10,0,0,1036,1037,7,7,0,0,1037,1038,7,0,0,0,1038,1039,7,19, - 0,0,1039,1040,7,8,0,0,1040,1041,7,1,0,0,1041,126,1,0,0,0,1042,1043, - 7,8,0,0,1043,1044,7,21,0,0,1044,1045,7,7,0,0,1045,1046,7,8,0,0,1046, - 1047,7,19,0,0,1047,1048,7,5,0,0,1048,128,1,0,0,0,1049,1050,7,8,0, - 0,1050,1051,7,21,0,0,1051,1052,7,7,0,0,1052,1053,7,2,0,0,1053,1054, - 7,12,0,0,1054,1055,7,1,0,0,1055,1056,7,6,0,0,1056,1057,7,3,0,0,1057, - 1058,7,11,0,0,1058,130,1,0,0,0,1059,1060,7,8,0,0,1060,1061,7,21, - 0,0,1061,1062,7,6,0,0,1062,1063,7,10,0,0,1063,1064,7,5,0,0,1064, - 1065,7,10,0,0,1065,132,1,0,0,0,1066,1067,7,8,0,0,1067,1068,7,21, - 0,0,1068,1069,7,19,0,0,1069,1070,7,2,0,0,1070,1071,7,0,0,0,1071, - 1072,7,6,0,0,1072,1073,7,3,0,0,1073,134,1,0,0,0,1074,1075,7,8,0, - 0,1075,1076,7,21,0,0,1076,1077,7,5,0,0,1077,1078,7,9,0,0,1078,1079, - 7,0,0,0,1079,1080,7,7,0,0,1080,1081,7,5,0,0,1081,136,1,0,0,0,1082, - 1083,7,8,0,0,1083,1084,7,21,0,0,1084,1085,7,5,0,0,1085,1086,7,8, - 0,0,1086,1087,7,3,0,0,1087,1088,7,1,0,0,1088,1089,7,8,0,0,1089,1090, - 7,1,0,0,1090,138,1,0,0,0,1091,1092,7,20,0,0,1092,1093,7,0,0,0,1093, - 1094,7,2,0,0,1094,1095,7,10,0,0,1095,1096,7,8,0,0,1096,140,1,0,0, - 0,1097,1098,7,20,0,0,1098,1099,7,6,0,0,1099,1100,7,8,0,0,1100,1101, - 7,2,0,0,1101,1102,7,1,0,0,1102,1103,7,10,0,0,1103,142,1,0,0,0,1104, - 1105,7,20,0,0,1105,1106,7,6,0,0,1106,1107,7,2,0,0,1107,1108,7,8, - 0,0,1108,1109,7,20,0,0,1109,1110,7,14,0,0,1110,1111,7,9,0,0,1111, - 1112,7,22,0,0,1112,1113,7,0,0,0,1113,1114,7,5,0,0,1114,144,1,0,0, - 0,1115,1116,7,20,0,0,1116,1117,7,6,0,0,1117,1118,7,2,0,0,1118,1119, - 7,8,0,0,1119,1120,7,10,0,0,1120,146,1,0,0,0,1121,1122,7,20,0,0,1122, - 1123,7,6,0,0,1123,1124,7,2,0,0,1124,1125,7,5,0,0,1125,1126,7,8,0, - 0,1126,1127,7,9,0,0,1127,148,1,0,0,0,1128,1129,7,20,0,0,1129,1130, - 7,6,0,0,1130,1131,7,9,0,0,1131,1132,7,10,0,0,1132,1133,7,5,0,0,1133, - 150,1,0,0,0,1134,1135,7,20,0,0,1135,1136,7,6,0,0,1136,1137,7,3,0, - 0,1137,1138,7,0,0,0,1138,1139,7,2,0,0,1139,1140,7,6,0,0,1140,1141, - 7,15,0,0,1141,1142,7,8,0,0,1142,1143,5,95,0,0,1143,1144,7,20,0,0, - 1144,1145,7,3,0,0,1145,152,1,0,0,0,1146,1147,7,20,0,0,1147,1148, - 7,14,0,0,1148,1149,7,2,0,0,1149,1150,7,2,0,0,1150,1151,7,14,0,0, - 1151,1152,7,17,0,0,1152,1153,7,6,0,0,1153,1154,7,3,0,0,1154,1155, - 7,11,0,0,1155,154,1,0,0,0,1156,1157,7,20,0,0,1157,1158,7,14,0,0, - 1158,1159,7,9,0,0,1159,156,1,0,0,0,1160,1161,7,20,0,0,1161,1162, - 7,14,0,0,1162,1163,7,9,0,0,1163,1164,7,22,0,0,1164,1165,7,0,0,0, - 1165,1166,7,5,0,0,1166,158,1,0,0,0,1167,1168,7,20,0,0,1168,1169, - 7,14,0,0,1169,1170,7,9,0,0,1170,1171,7,22,0,0,1171,1172,7,0,0,0, - 1172,1173,7,5,0,0,1173,1174,7,5,0,0,1174,1175,7,8,0,0,1175,1176, - 7,1,0,0,1176,160,1,0,0,0,1177,1178,7,20,0,0,1178,1179,7,14,0,0,1179, - 1180,7,9,0,0,1180,1181,7,8,0,0,1181,1182,7,6,0,0,1182,1183,7,11, - 0,0,1183,1184,7,3,0,0,1184,162,1,0,0,0,1185,1186,7,20,0,0,1186,1187, - 7,9,0,0,1187,1188,7,14,0,0,1188,1189,7,22,0,0,1189,164,1,0,0,0,1190, - 1191,7,20,0,0,1191,1192,7,12,0,0,1192,1193,7,2,0,0,1193,1194,7,2, - 0,0,1194,166,1,0,0,0,1195,1196,7,20,0,0,1196,1197,7,12,0,0,1197, - 1198,7,3,0,0,1198,1199,7,7,0,0,1199,1200,7,5,0,0,1200,1201,7,6,0, - 0,1201,1202,7,14,0,0,1202,1203,7,3,0,0,1203,168,1,0,0,0,1204,1205, - 7,20,0,0,1205,1206,7,12,0,0,1206,1207,7,3,0,0,1207,1208,7,7,0,0, - 1208,1209,7,5,0,0,1209,1210,7,6,0,0,1210,1211,7,14,0,0,1211,1212, - 7,3,0,0,1212,1213,7,10,0,0,1213,170,1,0,0,0,1214,1215,7,11,0,0,1215, - 1216,7,9,0,0,1216,1217,7,0,0,0,1217,1218,7,3,0,0,1218,1219,7,5,0, - 0,1219,172,1,0,0,0,1220,1221,7,11,0,0,1221,1222,7,9,0,0,1222,1223, - 7,14,0,0,1223,1224,7,12,0,0,1224,1225,7,19,0,0,1225,174,1,0,0,0, - 1226,1227,7,11,0,0,1227,1228,7,9,0,0,1228,1229,7,14,0,0,1229,1230, - 7,12,0,0,1230,1231,7,19,0,0,1231,1232,7,6,0,0,1232,1233,7,3,0,0, - 1233,1234,7,11,0,0,1234,176,1,0,0,0,1235,1236,7,13,0,0,1236,1237, - 7,0,0,0,1237,1238,7,10,0,0,1238,1239,7,13,0,0,1239,178,1,0,0,0,1240, - 1241,7,13,0,0,1241,1242,7,0,0,0,1242,1243,7,23,0,0,1243,1244,7,6, - 0,0,1244,1245,7,3,0,0,1245,1246,7,11,0,0,1246,180,1,0,0,0,1247,1248, - 7,13,0,0,1248,1249,7,14,0,0,1249,1250,7,12,0,0,1250,1251,7,9,0,0, - 1251,182,1,0,0,0,1252,1253,7,13,0,0,1253,1254,7,14,0,0,1254,1255, - 7,12,0,0,1255,1256,7,9,0,0,1256,1257,7,10,0,0,1257,184,1,0,0,0,1258, - 1259,7,6,0,0,1259,1260,7,20,0,0,1260,186,1,0,0,0,1261,1262,7,6,0, - 0,1262,1263,7,3,0,0,1263,188,1,0,0,0,1264,1265,7,6,0,0,1265,1266, - 7,3,0,0,1266,1267,7,7,0,0,1267,1268,7,2,0,0,1268,1269,7,12,0,0,1269, - 1270,7,1,0,0,1270,1271,7,6,0,0,1271,1272,7,3,0,0,1272,1273,7,11, - 0,0,1273,190,1,0,0,0,1274,1275,7,6,0,0,1275,1276,7,3,0,0,1276,1277, - 7,7,0,0,1277,1278,7,9,0,0,1278,1279,7,8,0,0,1279,1280,7,22,0,0,1280, - 1281,7,8,0,0,1281,1282,7,3,0,0,1282,1283,7,5,0,0,1283,1284,7,0,0, - 0,1284,1285,7,2,0,0,1285,192,1,0,0,0,1286,1287,7,6,0,0,1287,1288, - 7,3,0,0,1288,1289,7,3,0,0,1289,1290,7,8,0,0,1290,1291,7,9,0,0,1291, - 194,1,0,0,0,1292,1293,7,6,0,0,1293,1294,7,3,0,0,1294,1295,7,19,0, - 0,1295,1296,7,0,0,0,1296,1297,7,5,0,0,1297,1298,7,13,0,0,1298,196, - 1,0,0,0,1299,1300,7,6,0,0,1300,1301,7,3,0,0,1301,1302,7,10,0,0,1302, - 1303,7,8,0,0,1303,1304,7,9,0,0,1304,1305,7,5,0,0,1305,198,1,0,0, - 0,1306,1307,7,6,0,0,1307,1308,7,3,0,0,1308,1309,7,5,0,0,1309,1310, - 7,8,0,0,1310,1311,7,9,0,0,1311,1312,7,10,0,0,1312,1313,7,8,0,0,1313, - 1314,7,7,0,0,1314,1315,7,5,0,0,1315,200,1,0,0,0,1316,1317,7,6,0, - 0,1317,1318,7,3,0,0,1318,1319,7,5,0,0,1319,1320,7,8,0,0,1320,1321, - 7,9,0,0,1321,1322,7,23,0,0,1322,1323,7,0,0,0,1323,1324,7,2,0,0,1324, - 202,1,0,0,0,1325,1326,7,6,0,0,1326,1327,7,3,0,0,1327,1328,7,5,0, - 0,1328,1329,7,8,0,0,1329,1330,7,9,0,0,1330,1331,7,22,0,0,1331,1332, - 7,8,0,0,1332,1333,7,1,0,0,1333,1334,7,6,0,0,1334,1335,7,0,0,0,1335, - 1336,7,5,0,0,1336,1337,7,8,0,0,1337,204,1,0,0,0,1338,1339,7,6,0, - 0,1339,1340,7,3,0,0,1340,1341,7,5,0,0,1341,1342,7,14,0,0,1342,206, - 1,0,0,0,1343,1344,7,6,0,0,1344,1345,7,3,0,0,1345,1346,7,6,0,0,1346, - 1347,7,5,0,0,1347,1348,5,95,0,0,1348,1349,7,20,0,0,1349,1350,7,3, - 0,0,1350,208,1,0,0,0,1351,1352,7,6,0,0,1352,1353,7,9,0,0,1353,1354, - 7,8,0,0,1354,1355,7,11,0,0,1355,1356,7,8,0,0,1356,1357,7,21,0,0, - 1357,1358,7,19,0,0,1358,210,1,0,0,0,1359,1360,7,6,0,0,1360,1361, - 7,2,0,0,1361,1362,7,6,0,0,1362,1363,7,18,0,0,1363,1364,7,8,0,0,1364, - 212,1,0,0,0,1365,1366,7,6,0,0,1366,1367,7,3,0,0,1367,1368,7,23,0, - 0,1368,1369,7,0,0,0,1369,1370,7,2,0,0,1370,1371,7,6,0,0,1371,1372, - 7,1,0,0,1372,1373,7,0,0,0,1373,1374,7,5,0,0,1374,1375,7,8,0,0,1375, - 214,1,0,0,0,1376,1377,7,6,0,0,1377,1378,7,10,0,0,1378,216,1,0,0, - 0,1379,1380,7,24,0,0,1380,1381,7,14,0,0,1381,1382,7,6,0,0,1382,1383, - 7,3,0,0,1383,218,1,0,0,0,1384,1385,7,18,0,0,1385,1386,7,8,0,0,1386, - 1387,7,4,0,0,1387,220,1,0,0,0,1388,1389,7,18,0,0,1389,1390,7,12, - 0,0,1390,1391,7,1,0,0,1391,1392,7,12,0,0,1392,222,1,0,0,0,1393,1394, - 7,2,0,0,1394,1395,7,0,0,0,1395,1396,7,10,0,0,1396,1397,7,5,0,0,1397, - 224,1,0,0,0,1398,1399,7,2,0,0,1399,1400,7,0,0,0,1400,1401,7,5,0, - 0,1401,1402,7,8,0,0,1402,1403,7,9,0,0,1403,1404,7,0,0,0,1404,1405, - 7,2,0,0,1405,226,1,0,0,0,1406,1407,7,2,0,0,1407,1408,7,8,0,0,1408, - 1409,7,20,0,0,1409,1410,7,5,0,0,1410,228,1,0,0,0,1411,1412,7,2,0, - 0,1412,1413,7,6,0,0,1413,1414,7,18,0,0,1414,1415,7,8,0,0,1415,230, - 1,0,0,0,1416,1417,7,2,0,0,1417,1418,7,6,0,0,1418,1419,7,22,0,0,1419, - 1420,7,6,0,0,1420,1421,7,5,0,0,1421,232,1,0,0,0,1422,1423,7,2,0, - 0,1423,1424,7,6,0,0,1424,1425,7,3,0,0,1425,1426,7,8,0,0,1426,1427, - 7,10,0,0,1427,234,1,0,0,0,1428,1429,7,2,0,0,1429,1430,7,14,0,0,1430, - 1431,7,0,0,0,1431,1432,7,1,0,0,1432,236,1,0,0,0,1433,1434,7,2,0, - 0,1434,1435,7,14,0,0,1435,1436,7,7,0,0,1436,1437,7,0,0,0,1437,1438, - 7,2,0,0,1438,1439,7,5,0,0,1439,1440,7,6,0,0,1440,1441,7,22,0,0,1441, - 1442,7,8,0,0,1442,238,1,0,0,0,1443,1444,7,2,0,0,1444,1445,7,14,0, - 0,1445,1446,7,7,0,0,1446,1447,7,0,0,0,1447,1448,7,2,0,0,1448,1449, - 7,5,0,0,1449,1450,7,6,0,0,1450,1451,7,22,0,0,1451,1452,7,8,0,0,1452, - 1453,7,10,0,0,1453,1454,7,5,0,0,1454,1455,7,0,0,0,1455,1456,7,22, - 0,0,1456,1457,7,19,0,0,1457,240,1,0,0,0,1458,1459,7,22,0,0,1459, - 1460,7,8,0,0,1460,1461,7,5,0,0,1461,1462,7,0,0,0,1462,1463,7,1,0, - 0,1463,1464,7,0,0,0,1464,1465,7,5,0,0,1465,1466,7,0,0,0,1466,242, - 1,0,0,0,1467,1468,7,22,0,0,1468,1469,7,0,0,0,1469,1470,7,19,0,0, - 1470,244,1,0,0,0,1471,1472,7,22,0,0,1472,1473,7,6,0,0,1473,1474, - 7,3,0,0,1474,1475,7,12,0,0,1475,1476,7,5,0,0,1476,1477,7,8,0,0,1477, - 246,1,0,0,0,1478,1479,7,22,0,0,1479,1480,7,6,0,0,1480,1481,7,3,0, - 0,1481,1482,7,12,0,0,1482,1483,7,5,0,0,1483,1484,7,8,0,0,1484,1485, - 7,10,0,0,1485,248,1,0,0,0,1486,1487,7,22,0,0,1487,1488,7,14,0,0, - 1488,1489,7,3,0,0,1489,1490,7,5,0,0,1490,1491,7,13,0,0,1491,250, - 1,0,0,0,1492,1493,7,22,0,0,1493,1494,7,14,0,0,1494,1495,7,3,0,0, - 1495,1496,7,5,0,0,1496,1497,7,13,0,0,1497,1498,7,10,0,0,1498,252, - 1,0,0,0,1499,1500,7,22,0,0,1500,1501,7,8,0,0,1501,1502,7,9,0,0,1502, - 1503,7,11,0,0,1503,1504,7,8,0,0,1504,1505,5,95,0,0,1505,1506,7,20, - 0,0,1506,1507,7,3,0,0,1507,254,1,0,0,0,1508,1509,7,3,0,0,1509,1510, - 7,20,0,0,1510,1511,7,7,0,0,1511,256,1,0,0,0,1512,1513,7,3,0,0,1513, - 1514,7,20,0,0,1514,1515,7,1,0,0,1515,258,1,0,0,0,1516,1517,7,3,0, - 0,1517,1518,7,20,0,0,1518,1519,7,18,0,0,1519,1520,7,7,0,0,1520,260, - 1,0,0,0,1521,1522,7,3,0,0,1522,1523,7,20,0,0,1523,1524,7,18,0,0, - 1524,1525,7,1,0,0,1525,262,1,0,0,0,1526,1527,7,3,0,0,1527,1528,7, - 14,0,0,1528,1529,7,9,0,0,1529,1530,7,22,0,0,1530,1531,7,0,0,0,1531, - 1532,7,2,0,0,1532,1533,7,6,0,0,1533,1534,7,15,0,0,1534,1535,7,8, - 0,0,1535,264,1,0,0,0,1536,1537,7,3,0,0,1537,1538,7,14,0,0,1538,1539, - 7,5,0,0,1539,266,1,0,0,0,1540,1541,7,3,0,0,1541,1542,7,12,0,0,1542, - 1543,7,2,0,0,1543,1544,7,2,0,0,1544,268,1,0,0,0,1545,1546,7,3,0, - 0,1546,1547,7,12,0,0,1547,1548,7,2,0,0,1548,1549,7,2,0,0,1549,1550, - 7,10,0,0,1550,270,1,0,0,0,1551,1552,7,14,0,0,1552,1553,7,20,0,0, - 1553,1554,7,20,0,0,1554,1555,7,10,0,0,1555,1556,7,8,0,0,1556,1557, - 7,5,0,0,1557,272,1,0,0,0,1558,1559,7,14,0,0,1559,1560,7,3,0,0,1560, - 274,1,0,0,0,1561,1562,7,14,0,0,1562,1563,7,19,0,0,1563,1564,7,5, - 0,0,1564,1565,7,6,0,0,1565,1566,7,14,0,0,1566,1567,7,3,0,0,1567, - 276,1,0,0,0,1568,1569,7,14,0,0,1569,1570,7,9,0,0,1570,278,1,0,0, - 0,1571,1572,7,14,0,0,1572,1573,7,9,0,0,1573,1574,7,1,0,0,1574,1575, - 7,8,0,0,1575,1576,7,9,0,0,1576,280,1,0,0,0,1577,1578,7,14,0,0,1578, - 1579,7,9,0,0,1579,1580,7,1,0,0,1580,1581,7,6,0,0,1581,1582,7,3,0, - 0,1582,1583,7,0,0,0,1583,1584,7,2,0,0,1584,1585,7,6,0,0,1585,1586, - 7,5,0,0,1586,1587,7,4,0,0,1587,282,1,0,0,0,1588,1589,7,14,0,0,1589, - 1590,7,12,0,0,1590,1591,7,5,0,0,1591,1592,7,8,0,0,1592,1593,7,9, - 0,0,1593,284,1,0,0,0,1594,1595,7,14,0,0,1595,1596,7,17,0,0,1596, - 1597,7,3,0,0,1597,1598,7,8,0,0,1598,1599,7,9,0,0,1599,286,1,0,0, - 0,1600,1601,7,14,0,0,1601,1602,7,23,0,0,1602,1603,7,8,0,0,1603,1604, - 7,9,0,0,1604,288,1,0,0,0,1605,1606,7,14,0,0,1606,1607,7,23,0,0,1607, - 1608,7,8,0,0,1608,1609,7,9,0,0,1609,1610,7,17,0,0,1610,1611,7,9, - 0,0,1611,1612,7,6,0,0,1612,1613,7,5,0,0,1613,1614,7,8,0,0,1614,290, - 1,0,0,0,1615,1616,7,19,0,0,1616,1617,7,0,0,0,1617,1618,7,9,0,0,1618, - 1619,7,5,0,0,1619,1620,7,6,0,0,1620,1621,7,5,0,0,1621,1622,7,6,0, - 0,1622,1623,7,14,0,0,1623,1624,7,3,0,0,1624,292,1,0,0,0,1625,1626, - 7,19,0,0,1626,1627,7,0,0,0,1627,1628,7,9,0,0,1628,1629,7,5,0,0,1629, - 1630,7,6,0,0,1630,1631,7,5,0,0,1631,1632,7,6,0,0,1632,1633,7,14, - 0,0,1633,1634,7,3,0,0,1634,1635,7,10,0,0,1635,294,1,0,0,0,1636,1637, - 7,19,0,0,1637,1638,7,0,0,0,1638,1639,7,9,0,0,1639,1640,7,25,0,0, - 1640,1641,7,12,0,0,1641,1642,7,8,0,0,1642,1643,7,5,0,0,1643,296, - 1,0,0,0,1644,1645,7,19,0,0,1645,1646,7,14,0,0,1646,1647,7,10,0,0, - 1647,1648,7,6,0,0,1648,1649,7,5,0,0,1649,1650,7,6,0,0,1650,1651, - 7,14,0,0,1651,1652,7,3,0,0,1652,298,1,0,0,0,1653,1654,7,19,0,0,1654, - 1655,7,9,0,0,1655,1656,7,8,0,0,1656,1657,7,7,0,0,1657,1658,7,8,0, - 0,1658,1659,7,1,0,0,1659,1660,7,6,0,0,1660,1661,7,3,0,0,1661,1662, - 7,11,0,0,1662,300,1,0,0,0,1663,1664,7,19,0,0,1664,1665,7,9,0,0,1665, - 1666,7,6,0,0,1666,1667,7,22,0,0,1667,1668,7,0,0,0,1668,1669,7,9, - 0,0,1669,1670,7,4,0,0,1670,302,1,0,0,0,1671,1672,7,9,0,0,1672,1673, - 7,8,0,0,1673,1674,7,19,0,0,1674,1675,7,2,0,0,1675,1676,7,6,0,0,1676, - 1677,7,7,0,0,1677,1678,7,0,0,0,1678,1679,7,5,0,0,1679,1680,7,6,0, - 0,1680,1681,7,14,0,0,1681,1682,7,3,0,0,1682,304,1,0,0,0,1683,1684, - 7,19,0,0,1684,1685,7,9,0,0,1685,1686,7,6,0,0,1686,1687,7,23,0,0, - 1687,1688,7,6,0,0,1688,1689,7,2,0,0,1689,1690,7,8,0,0,1690,1691, - 7,11,0,0,1691,1692,7,8,0,0,1692,1693,7,10,0,0,1693,306,1,0,0,0,1694, - 1695,7,19,0,0,1695,1696,7,9,0,0,1696,1697,7,14,0,0,1697,1698,7,19, - 0,0,1698,1699,7,8,0,0,1699,1700,7,9,0,0,1700,1701,7,5,0,0,1701,1702, - 7,6,0,0,1702,1703,7,8,0,0,1703,1704,7,10,0,0,1704,308,1,0,0,0,1705, - 1706,7,9,0,0,1706,1707,7,0,0,0,1707,1708,7,3,0,0,1708,1709,7,11, - 0,0,1709,1710,7,8,0,0,1710,310,1,0,0,0,1711,1712,7,9,0,0,1712,1713, - 7,8,0,0,1713,1714,7,7,0,0,1714,1715,7,14,0,0,1715,1716,7,23,0,0, - 1716,1717,7,8,0,0,1717,1718,7,9,0,0,1718,312,1,0,0,0,1719,1720,7, - 9,0,0,1720,1721,7,8,0,0,1721,1722,7,3,0,0,1722,1723,7,0,0,0,1723, - 1724,7,22,0,0,1724,1725,7,8,0,0,1725,314,1,0,0,0,1726,1727,7,9,0, - 0,1727,1728,7,8,0,0,1728,1729,7,19,0,0,1729,1730,7,8,0,0,1730,1731, - 7,0,0,0,1731,1732,7,5,0,0,1732,1733,7,0,0,0,1733,1734,7,16,0,0,1734, - 1735,7,2,0,0,1735,1736,7,8,0,0,1736,316,1,0,0,0,1737,1738,7,9,0, - 0,1738,1739,7,8,0,0,1739,1740,7,19,0,0,1740,1741,7,2,0,0,1741,1742, - 7,0,0,0,1742,1743,7,7,0,0,1743,1744,7,8,0,0,1744,318,1,0,0,0,1745, - 1746,7,9,0,0,1746,1747,7,8,0,0,1747,1748,7,10,0,0,1748,1749,7,5, - 0,0,1749,1750,7,9,0,0,1750,1751,7,6,0,0,1751,1752,7,7,0,0,1752,1753, - 7,5,0,0,1753,320,1,0,0,0,1754,1755,7,9,0,0,1755,1756,7,8,0,0,1756, - 1757,7,5,0,0,1757,1758,7,12,0,0,1758,1759,7,9,0,0,1759,1760,7,3, - 0,0,1760,1761,7,10,0,0,1761,322,1,0,0,0,1762,1763,7,9,0,0,1763,1764, - 7,8,0,0,1764,1765,7,23,0,0,1765,1766,7,14,0,0,1766,1767,7,18,0,0, - 1767,1768,7,8,0,0,1768,324,1,0,0,0,1769,1770,7,9,0,0,1770,1771,7, - 8,0,0,1771,1772,7,20,0,0,1772,1773,7,9,0,0,1773,1774,7,8,0,0,1774, - 1775,7,10,0,0,1775,1776,7,13,0,0,1776,326,1,0,0,0,1777,1778,7,9, - 0,0,1778,1779,7,8,0,0,1779,1780,7,11,0,0,1780,1781,7,8,0,0,1781, - 1782,7,21,0,0,1782,1783,7,19,0,0,1783,328,1,0,0,0,1784,1785,7,9, - 0,0,1785,1786,7,2,0,0,1786,1787,7,6,0,0,1787,1788,7,18,0,0,1788, - 1789,7,8,0,0,1789,330,1,0,0,0,1790,1791,7,9,0,0,1791,1792,7,6,0, - 0,1792,1793,7,11,0,0,1793,1794,7,13,0,0,1794,1795,7,5,0,0,1795,332, - 1,0,0,0,1796,1797,7,9,0,0,1797,1798,7,14,0,0,1798,1799,7,2,0,0,1799, - 1800,7,8,0,0,1800,334,1,0,0,0,1801,1802,7,9,0,0,1802,1803,7,14,0, - 0,1803,1804,7,2,0,0,1804,1805,7,8,0,0,1805,1806,7,10,0,0,1806,336, - 1,0,0,0,1807,1808,7,9,0,0,1808,1809,7,14,0,0,1809,1810,7,17,0,0, - 1810,338,1,0,0,0,1811,1812,7,9,0,0,1812,1813,7,14,0,0,1813,1814, - 7,17,0,0,1814,1815,7,10,0,0,1815,340,1,0,0,0,1816,1817,7,10,0,0, - 1817,1818,7,7,0,0,1818,1819,7,13,0,0,1819,1820,7,8,0,0,1820,1821, - 7,22,0,0,1821,1822,7,0,0,0,1822,342,1,0,0,0,1823,1824,7,10,0,0,1824, - 1825,7,7,0,0,1825,1826,7,13,0,0,1826,1827,7,8,0,0,1827,1828,7,22, - 0,0,1828,1829,7,0,0,0,1829,1830,7,10,0,0,1830,344,1,0,0,0,1831,1832, - 7,10,0,0,1832,1833,7,8,0,0,1833,1834,7,7,0,0,1834,1835,7,14,0,0, - 1835,1836,7,3,0,0,1836,1837,7,1,0,0,1837,346,1,0,0,0,1838,1839,7, - 10,0,0,1839,1840,7,8,0,0,1840,1841,7,7,0,0,1841,1842,7,14,0,0,1842, - 1843,7,3,0,0,1843,1844,7,1,0,0,1844,1845,7,10,0,0,1845,348,1,0,0, - 0,1846,1847,7,10,0,0,1847,1848,7,8,0,0,1848,1849,7,2,0,0,1849,1850, - 7,8,0,0,1850,1851,7,7,0,0,1851,1852,7,5,0,0,1852,350,1,0,0,0,1853, - 1854,7,10,0,0,1854,1855,7,8,0,0,1855,1856,7,9,0,0,1856,1857,7,1, - 0,0,1857,1858,7,8,0,0,1858,1859,7,19,0,0,1859,1860,7,9,0,0,1860, - 1861,7,14,0,0,1861,1862,7,19,0,0,1862,1863,7,8,0,0,1863,1864,7,9, - 0,0,1864,1865,7,5,0,0,1865,1866,7,6,0,0,1866,1867,7,8,0,0,1867,1868, - 7,10,0,0,1868,352,1,0,0,0,1869,1870,7,10,0,0,1870,1871,7,8,0,0,1871, - 1872,7,5,0,0,1872,354,1,0,0,0,1873,1874,7,10,0,0,1874,1875,7,8,0, - 0,1875,1876,7,22,0,0,1876,1877,7,6,0,0,1877,356,1,0,0,0,1878,1879, - 7,10,0,0,1879,1880,7,8,0,0,1880,1881,7,9,0,0,1881,1882,7,23,0,0, - 1882,1883,7,8,0,0,1883,1884,7,9,0,0,1884,358,1,0,0,0,1885,1886,7, - 10,0,0,1886,1887,7,13,0,0,1887,1888,7,14,0,0,1888,1889,7,17,0,0, - 1889,360,1,0,0,0,1890,1891,7,10,0,0,1891,1892,7,13,0,0,1892,1893, - 7,12,0,0,1893,1894,7,5,0,0,1894,1895,7,1,0,0,1895,1896,7,14,0,0, - 1896,1897,7,17,0,0,1897,1898,7,3,0,0,1898,362,1,0,0,0,1899,1900, - 7,10,0,0,1900,1901,7,14,0,0,1901,1902,7,22,0,0,1902,1903,7,8,0,0, - 1903,364,1,0,0,0,1904,1905,7,10,0,0,1905,1906,7,5,0,0,1906,1907, - 7,0,0,0,1907,1908,7,5,0,0,1908,1909,7,10,0,0,1909,366,1,0,0,0,1910, - 1911,7,10,0,0,1911,1912,7,5,0,0,1912,1913,7,9,0,0,1913,1914,7,12, - 0,0,1914,1915,7,7,0,0,1915,1916,7,5,0,0,1916,368,1,0,0,0,1917,1918, - 7,10,0,0,1918,1919,7,5,0,0,1919,1920,7,9,0,0,1920,1921,7,0,0,0,1921, - 1922,7,6,0,0,1922,1923,7,11,0,0,1923,1924,7,13,0,0,1924,1925,7,5, - 0,0,1925,1926,5,95,0,0,1926,1927,7,24,0,0,1927,1928,7,14,0,0,1928, - 1929,7,6,0,0,1929,1930,7,3,0,0,1930,370,1,0,0,0,1931,1932,7,10,0, - 0,1932,1933,7,12,0,0,1933,1934,7,16,0,0,1934,1935,7,10,0,0,1935, - 1936,7,5,0,0,1936,1937,7,9,0,0,1937,1938,7,6,0,0,1938,1939,7,3,0, - 0,1939,1940,7,11,0,0,1940,372,1,0,0,0,1941,1942,7,10,0,0,1942,1943, - 7,4,0,0,1943,1944,7,10,0,0,1944,1945,7,5,0,0,1945,1946,7,8,0,0,1946, - 1947,7,22,0,0,1947,374,1,0,0,0,1948,1949,7,10,0,0,1949,1950,7,4, - 0,0,1950,1951,7,22,0,0,1951,1952,7,16,0,0,1952,1953,7,14,0,0,1953, - 1954,7,2,0,0,1954,376,1,0,0,0,1955,1956,7,10,0,0,1956,1957,7,8,0, - 0,1957,1958,7,9,0,0,1958,1959,7,6,0,0,1959,1960,7,0,0,0,1960,1961, - 7,2,0,0,1961,1962,7,6,0,0,1962,1963,7,15,0,0,1963,1964,7,8,0,0,1964, - 1965,5,95,0,0,1965,1966,7,20,0,0,1966,1967,7,3,0,0,1967,378,1,0, - 0,0,1968,1969,7,5,0,0,1969,1970,7,0,0,0,1970,1971,7,16,0,0,1971, - 1972,7,2,0,0,1972,1973,7,8,0,0,1973,380,1,0,0,0,1974,1975,7,5,0, - 0,1975,1976,7,0,0,0,1976,1977,7,16,0,0,1977,1978,7,2,0,0,1978,1979, - 7,8,0,0,1979,1980,7,10,0,0,1980,382,1,0,0,0,1981,1982,7,5,0,0,1982, - 1983,7,0,0,0,1983,1984,7,16,0,0,1984,1985,7,2,0,0,1985,1986,7,8, - 0,0,1986,1987,7,10,0,0,1987,1988,7,0,0,0,1988,1989,7,22,0,0,1989, - 1990,7,19,0,0,1990,1991,7,2,0,0,1991,1992,7,8,0,0,1992,384,1,0,0, - 0,1993,1994,7,5,0,0,1994,1995,7,8,0,0,1995,1996,7,9,0,0,1996,1997, - 7,22,0,0,1997,1998,7,6,0,0,1998,1999,7,3,0,0,1999,2000,7,0,0,0,2000, - 2001,7,5,0,0,2001,2002,7,8,0,0,2002,2003,7,1,0,0,2003,2004,5,32, - 0,0,2004,386,1,0,0,0,2005,2006,7,5,0,0,2006,2007,7,13,0,0,2007,2008, - 7,8,0,0,2008,2009,7,3,0,0,2009,388,1,0,0,0,2010,2011,7,5,0,0,2011, - 2012,7,14,0,0,2012,390,1,0,0,0,2013,2014,7,5,0,0,2014,2015,7,9,0, - 0,2015,2016,7,12,0,0,2016,2017,7,8,0,0,2017,392,1,0,0,0,2018,2019, - 7,5,0,0,2019,2020,7,9,0,0,2020,2021,7,4,0,0,2021,2022,5,95,0,0,2022, - 2023,7,7,0,0,2023,2024,7,0,0,0,2024,2025,7,10,0,0,2025,2026,7,5, - 0,0,2026,394,1,0,0,0,2027,2028,7,5,0,0,2028,2029,7,9,0,0,2029,2030, - 7,12,0,0,2030,2031,7,3,0,0,2031,2032,7,7,0,0,2032,2033,7,0,0,0,2033, - 2034,7,5,0,0,2034,2035,7,8,0,0,2035,396,1,0,0,0,2036,2037,7,12,0, - 0,2037,2038,7,3,0,0,2038,2039,7,7,0,0,2039,2040,7,0,0,0,2040,2041, - 7,7,0,0,2041,2042,7,13,0,0,2042,2043,7,8,0,0,2043,2044,7,1,0,0,2044, - 398,1,0,0,0,2045,2046,7,12,0,0,2046,2047,7,8,0,0,2047,2048,7,10, - 0,0,2048,2049,7,7,0,0,2049,2050,7,0,0,0,2050,2051,7,19,0,0,2051, - 2052,7,8,0,0,2052,400,1,0,0,0,2053,2054,7,12,0,0,2054,2055,7,3,0, - 0,2055,2056,7,16,0,0,2056,2057,7,14,0,0,2057,2058,7,12,0,0,2058, - 2059,7,3,0,0,2059,2060,7,1,0,0,2060,2061,7,8,0,0,2061,2062,7,1,0, - 0,2062,402,1,0,0,0,2063,2064,7,12,0,0,2064,2065,7,3,0,0,2065,2066, - 7,6,0,0,2066,2067,7,14,0,0,2067,2068,7,3,0,0,2068,404,1,0,0,0,2069, - 2070,7,12,0,0,2070,2071,7,3,0,0,2071,2072,7,3,0,0,2072,2073,7,8, - 0,0,2073,2074,7,10,0,0,2074,2075,7,5,0,0,2075,406,1,0,0,0,2076,2077, - 7,12,0,0,2077,2078,7,3,0,0,2078,2079,7,10,0,0,2079,2080,7,8,0,0, - 2080,2081,7,5,0,0,2081,408,1,0,0,0,2082,2083,7,12,0,0,2083,2084, - 7,10,0,0,2084,2085,7,8,0,0,2085,410,1,0,0,0,2086,2087,7,12,0,0,2087, - 2088,7,10,0,0,2088,2089,7,8,0,0,2089,2090,7,9,0,0,2090,412,1,0,0, - 0,2091,2092,7,12,0,0,2092,2093,7,10,0,0,2093,2094,7,6,0,0,2094,2095, - 7,3,0,0,2095,2096,7,11,0,0,2096,414,1,0,0,0,2097,2098,7,12,0,0,2098, - 2099,7,19,0,0,2099,2100,7,1,0,0,2100,2101,7,0,0,0,2101,2102,7,5, - 0,0,2102,2103,7,8,0,0,2103,2104,5,95,0,0,2104,2105,7,20,0,0,2105, - 2106,7,3,0,0,2106,416,1,0,0,0,2107,2108,7,12,0,0,2108,2109,7,19, - 0,0,2109,2110,7,10,0,0,2110,2111,7,8,0,0,2111,2112,7,9,0,0,2112, - 2113,7,5,0,0,2113,418,1,0,0,0,2114,2115,7,12,0,0,2115,2116,7,3,0, - 0,2116,2117,7,18,0,0,2117,2118,7,3,0,0,2118,2119,7,14,0,0,2119,2120, - 7,17,0,0,2120,2121,7,3,0,0,2121,420,1,0,0,0,2122,2123,7,12,0,0,2123, - 2124,7,9,0,0,2124,2125,7,6,0,0,2125,422,1,0,0,0,2126,2127,7,23,0, - 0,2127,2128,7,0,0,0,2128,2129,7,2,0,0,2129,2130,7,12,0,0,2130,2131, - 7,8,0,0,2131,424,1,0,0,0,2132,2133,7,23,0,0,2133,2134,7,0,0,0,2134, - 2135,7,2,0,0,2135,2136,7,12,0,0,2136,2137,7,8,0,0,2137,2138,7,10, - 0,0,2138,426,1,0,0,0,2139,2140,7,23,0,0,2140,2141,7,6,0,0,2141,2142, - 7,8,0,0,2142,2143,7,17,0,0,2143,428,1,0,0,0,2144,2145,7,23,0,0,2145, - 2146,7,6,0,0,2146,2147,7,8,0,0,2147,2148,7,17,0,0,2148,2149,7,10, - 0,0,2149,430,1,0,0,0,2150,2151,7,17,0,0,2151,2152,7,13,0,0,2152, - 2153,7,8,0,0,2153,2154,7,3,0,0,2154,432,1,0,0,0,2155,2156,7,17,0, - 0,2156,2157,7,13,0,0,2157,2158,7,8,0,0,2158,2159,7,9,0,0,2159,2160, - 7,8,0,0,2160,434,1,0,0,0,2161,2162,7,17,0,0,2162,2163,7,6,0,0,2163, - 2164,7,5,0,0,2164,2165,7,13,0,0,2165,436,1,0,0,0,2166,2167,7,4,0, - 0,2167,2168,7,8,0,0,2168,2169,7,0,0,0,2169,2170,7,9,0,0,2170,438, - 1,0,0,0,2171,2172,7,4,0,0,2172,2173,7,8,0,0,2173,2174,7,0,0,0,2174, - 2175,7,9,0,0,2175,2176,7,10,0,0,2176,440,1,0,0,0,2177,2178,7,5,0, - 0,2178,2179,7,8,0,0,2179,2180,7,21,0,0,2180,2181,7,5,0,0,2181,2182, - 7,20,0,0,2182,2183,7,6,0,0,2183,2184,7,2,0,0,2184,2185,7,8,0,0,2185, - 442,1,0,0,0,2186,2187,7,14,0,0,2187,2188,7,9,0,0,2188,2189,7,7,0, - 0,2189,444,1,0,0,0,2190,2191,7,0,0,0,2191,2192,7,23,0,0,2192,2193, - 7,9,0,0,2193,2194,7,14,0,0,2194,446,1,0,0,0,2195,2196,7,10,0,0,2196, - 2197,7,8,0,0,2197,2198,7,25,0,0,2198,2199,7,12,0,0,2199,2200,7,8, - 0,0,2200,2201,7,3,0,0,2201,2202,7,7,0,0,2202,2203,7,8,0,0,2203,2204, - 7,20,0,0,2204,2205,7,6,0,0,2205,2206,7,2,0,0,2206,2207,7,8,0,0,2207, - 448,1,0,0,0,2208,2209,7,9,0,0,2209,2210,7,7,0,0,2210,2211,7,20,0, - 0,2211,2212,7,6,0,0,2212,2213,7,2,0,0,2213,2214,7,8,0,0,2214,450, - 1,0,0,0,2215,2216,7,9,0,0,2216,2217,7,8,0,0,2217,2218,7,20,0,0,2218, - 2219,7,8,0,0,2219,2220,7,9,0,0,2220,2221,7,8,0,0,2221,2222,7,3,0, - 0,2222,2223,7,7,0,0,2223,2224,7,8,0,0,2224,2225,7,10,0,0,2225,452, - 1,0,0,0,2226,2227,7,3,0,0,2227,2228,7,14,0,0,2228,2229,7,23,0,0, - 2229,2230,7,0,0,0,2230,2231,7,2,0,0,2231,2232,7,6,0,0,2232,2233, - 7,1,0,0,2233,2234,7,0,0,0,2234,2235,7,5,0,0,2235,2236,7,8,0,0,2236, - 454,1,0,0,0,2237,2238,7,9,0,0,2238,2239,7,8,0,0,2239,2240,7,2,0, - 0,2240,2241,7,4,0,0,2241,456,1,0,0,0,2242,2243,5,39,0,0,2243,2244, - 7,3,0,0,2244,2245,7,12,0,0,2245,2246,7,22,0,0,2246,2247,7,1,0,0, - 2247,2248,7,23,0,0,2248,2249,7,10,0,0,2249,2250,5,39,0,0,2250,458, - 1,0,0,0,2251,2252,5,39,0,0,2252,2253,7,3,0,0,2253,2254,7,12,0,0, - 2254,2255,7,22,0,0,2255,2256,7,3,0,0,2256,2257,7,12,0,0,2257,2258, - 7,2,0,0,2258,2259,7,2,0,0,2259,2260,7,10,0,0,2260,2261,5,39,0,0, - 2261,460,1,0,0,0,2262,2263,5,39,0,0,2263,2264,7,0,0,0,2264,2265, - 7,23,0,0,2265,2266,7,11,0,0,2266,2267,7,10,0,0,2267,2268,7,6,0,0, - 2268,2269,7,15,0,0,2269,2270,7,8,0,0,2270,2271,5,39,0,0,2271,462, - 1,0,0,0,2272,2273,5,39,0,0,2273,2274,7,22,0,0,2274,2275,7,0,0,0, - 2275,2276,7,21,0,0,2276,2277,7,10,0,0,2277,2278,7,6,0,0,2278,2279, - 7,15,0,0,2279,2280,7,8,0,0,2280,2281,5,39,0,0,2281,464,1,0,0,0,2282, - 2283,5,61,0,0,2283,466,1,0,0,0,2284,2285,5,60,0,0,2285,2289,5,62, - 0,0,2286,2287,5,33,0,0,2287,2289,5,61,0,0,2288,2284,1,0,0,0,2288, - 2286,1,0,0,0,2289,468,1,0,0,0,2290,2291,5,60,0,0,2291,470,1,0,0, - 0,2292,2293,5,60,0,0,2293,2294,5,61,0,0,2294,472,1,0,0,0,2295,2296, - 5,62,0,0,2296,474,1,0,0,0,2297,2298,5,62,0,0,2298,2299,5,61,0,0, - 2299,476,1,0,0,0,2300,2301,5,43,0,0,2301,478,1,0,0,0,2302,2303,5, - 45,0,0,2303,480,1,0,0,0,2304,2305,5,42,0,0,2305,482,1,0,0,0,2306, - 2307,5,47,0,0,2307,484,1,0,0,0,2308,2309,5,37,0,0,2309,486,1,0,0, - 0,2310,2311,5,124,0,0,2311,2312,5,124,0,0,2312,488,1,0,0,0,2313, - 2314,5,46,0,0,2314,490,1,0,0,0,2315,2316,5,59,0,0,2316,492,1,0,0, - 0,2317,2318,5,44,0,0,2318,494,1,0,0,0,2319,2320,5,58,0,0,2320,496, - 1,0,0,0,2321,2322,5,40,0,0,2322,498,1,0,0,0,2323,2324,5,41,0,0,2324, - 500,1,0,0,0,2325,2326,5,91,0,0,2326,502,1,0,0,0,2327,2328,5,93,0, - 0,2328,504,1,0,0,0,2329,2330,5,123,0,0,2330,506,1,0,0,0,2331,2332, - 5,125,0,0,2332,508,1,0,0,0,2333,2334,5,124,0,0,2334,510,1,0,0,0, - 2335,2336,5,63,0,0,2336,512,1,0,0,0,2337,2338,5,45,0,0,2338,2339, - 5,62,0,0,2339,514,1,0,0,0,2340,2346,5,39,0,0,2341,2345,8,26,0,0, - 2342,2343,5,39,0,0,2343,2345,5,39,0,0,2344,2341,1,0,0,0,2344,2342, - 1,0,0,0,2345,2348,1,0,0,0,2346,2344,1,0,0,0,2346,2347,1,0,0,0,2347, - 2349,1,0,0,0,2348,2346,1,0,0,0,2349,2361,5,39,0,0,2350,2356,5,34, - 0,0,2351,2355,8,27,0,0,2352,2353,5,34,0,0,2353,2355,5,34,0,0,2354, - 2351,1,0,0,0,2354,2352,1,0,0,0,2355,2358,1,0,0,0,2356,2354,1,0,0, - 0,2356,2357,1,0,0,0,2357,2359,1,0,0,0,2358,2356,1,0,0,0,2359,2361, - 5,34,0,0,2360,2340,1,0,0,0,2360,2350,1,0,0,0,2361,516,1,0,0,0,2362, - 2363,7,12,0,0,2363,2364,5,38,0,0,2364,2365,5,39,0,0,2365,2371,1, - 0,0,0,2366,2370,8,26,0,0,2367,2368,5,39,0,0,2368,2370,5,39,0,0,2369, - 2366,1,0,0,0,2369,2367,1,0,0,0,2370,2373,1,0,0,0,2371,2369,1,0,0, - 0,2371,2372,1,0,0,0,2372,2374,1,0,0,0,2373,2371,1,0,0,0,2374,2375, - 5,39,0,0,2375,518,1,0,0,0,2376,2377,7,21,0,0,2377,2378,5,39,0,0, - 2378,2382,1,0,0,0,2379,2381,8,26,0,0,2380,2379,1,0,0,0,2381,2384, - 1,0,0,0,2382,2380,1,0,0,0,2382,2383,1,0,0,0,2383,2385,1,0,0,0,2384, - 2382,1,0,0,0,2385,2386,5,39,0,0,2386,520,1,0,0,0,2387,2389,3,543, - 271,0,2388,2387,1,0,0,0,2389,2390,1,0,0,0,2390,2388,1,0,0,0,2390, - 2391,1,0,0,0,2391,522,1,0,0,0,2392,2394,3,543,271,0,2393,2392,1, - 0,0,0,2394,2395,1,0,0,0,2395,2393,1,0,0,0,2395,2396,1,0,0,0,2396, - 2397,1,0,0,0,2397,2401,5,46,0,0,2398,2400,3,543,271,0,2399,2398, - 1,0,0,0,2400,2403,1,0,0,0,2401,2399,1,0,0,0,2401,2402,1,0,0,0,2402, - 2411,1,0,0,0,2403,2401,1,0,0,0,2404,2406,5,46,0,0,2405,2407,3,543, - 271,0,2406,2405,1,0,0,0,2407,2408,1,0,0,0,2408,2406,1,0,0,0,2408, - 2409,1,0,0,0,2409,2411,1,0,0,0,2410,2393,1,0,0,0,2410,2404,1,0,0, - 0,2411,524,1,0,0,0,2412,2414,3,543,271,0,2413,2412,1,0,0,0,2414, - 2415,1,0,0,0,2415,2413,1,0,0,0,2415,2416,1,0,0,0,2416,2424,1,0,0, - 0,2417,2421,5,46,0,0,2418,2420,3,543,271,0,2419,2418,1,0,0,0,2420, - 2423,1,0,0,0,2421,2419,1,0,0,0,2421,2422,1,0,0,0,2422,2425,1,0,0, - 0,2423,2421,1,0,0,0,2424,2417,1,0,0,0,2424,2425,1,0,0,0,2425,2426, - 1,0,0,0,2426,2427,3,541,270,0,2427,2437,1,0,0,0,2428,2430,5,46,0, - 0,2429,2431,3,543,271,0,2430,2429,1,0,0,0,2431,2432,1,0,0,0,2432, - 2430,1,0,0,0,2432,2433,1,0,0,0,2433,2434,1,0,0,0,2434,2435,3,541, - 270,0,2435,2437,1,0,0,0,2436,2413,1,0,0,0,2436,2428,1,0,0,0,2437, - 526,1,0,0,0,2438,2441,3,545,272,0,2439,2441,5,95,0,0,2440,2438,1, - 0,0,0,2440,2439,1,0,0,0,2441,2447,1,0,0,0,2442,2446,3,545,272,0, - 2443,2446,3,543,271,0,2444,2446,7,28,0,0,2445,2442,1,0,0,0,2445, - 2443,1,0,0,0,2445,2444,1,0,0,0,2446,2449,1,0,0,0,2447,2445,1,0,0, - 0,2447,2448,1,0,0,0,2448,528,1,0,0,0,2449,2447,1,0,0,0,2450,2454, - 3,543,271,0,2451,2455,3,545,272,0,2452,2455,3,543,271,0,2453,2455, - 7,28,0,0,2454,2451,1,0,0,0,2454,2452,1,0,0,0,2454,2453,1,0,0,0,2455, - 2456,1,0,0,0,2456,2454,1,0,0,0,2456,2457,1,0,0,0,2457,530,1,0,0, - 0,2458,2464,5,34,0,0,2459,2463,8,27,0,0,2460,2461,5,34,0,0,2461, - 2463,5,34,0,0,2462,2459,1,0,0,0,2462,2460,1,0,0,0,2463,2466,1,0, - 0,0,2464,2462,1,0,0,0,2464,2465,1,0,0,0,2465,2467,1,0,0,0,2466,2464, - 1,0,0,0,2467,2468,5,34,0,0,2468,532,1,0,0,0,2469,2475,5,96,0,0,2470, - 2474,8,29,0,0,2471,2472,5,96,0,0,2472,2474,5,96,0,0,2473,2470,1, - 0,0,0,2473,2471,1,0,0,0,2474,2477,1,0,0,0,2475,2473,1,0,0,0,2475, - 2476,1,0,0,0,2476,2478,1,0,0,0,2477,2475,1,0,0,0,2478,2479,5,96, - 0,0,2479,534,1,0,0,0,2480,2481,7,5,0,0,2481,2482,7,6,0,0,2482,2483, - 7,22,0,0,2483,2484,7,8,0,0,2484,2485,1,0,0,0,2485,2486,3,551,275, - 0,2486,2487,7,17,0,0,2487,2488,7,6,0,0,2488,2489,7,5,0,0,2489,2490, - 7,13,0,0,2490,2491,1,0,0,0,2491,2492,3,551,275,0,2492,2493,7,5,0, - 0,2493,2494,7,6,0,0,2494,2495,7,22,0,0,2495,2496,7,8,0,0,2496,2497, - 1,0,0,0,2497,2498,3,551,275,0,2498,2499,7,15,0,0,2499,2500,7,14, - 0,0,2500,2501,7,3,0,0,2501,2502,7,8,0,0,2502,536,1,0,0,0,2503,2504, - 7,5,0,0,2504,2505,7,6,0,0,2505,2506,7,22,0,0,2506,2507,7,8,0,0,2507, - 2508,7,10,0,0,2508,2509,7,5,0,0,2509,2510,7,0,0,0,2510,2511,7,22, - 0,0,2511,2512,7,19,0,0,2512,2513,1,0,0,0,2513,2514,3,551,275,0,2514, - 2515,7,17,0,0,2515,2516,7,6,0,0,2516,2517,7,5,0,0,2517,2518,7,13, - 0,0,2518,2519,1,0,0,0,2519,2520,3,551,275,0,2520,2521,7,5,0,0,2521, - 2522,7,6,0,0,2522,2523,7,22,0,0,2523,2524,7,8,0,0,2524,2525,1,0, - 0,0,2525,2526,3,551,275,0,2526,2527,7,15,0,0,2527,2528,7,14,0,0, - 2528,2529,7,3,0,0,2529,2530,7,8,0,0,2530,538,1,0,0,0,2531,2532,7, - 1,0,0,2532,2533,7,14,0,0,2533,2534,7,12,0,0,2534,2535,7,16,0,0,2535, - 2536,7,2,0,0,2536,2537,7,8,0,0,2537,2538,1,0,0,0,2538,2539,3,551, - 275,0,2539,2540,7,19,0,0,2540,2541,7,9,0,0,2541,2542,7,8,0,0,2542, - 2543,7,7,0,0,2543,2544,7,6,0,0,2544,2545,7,10,0,0,2545,2546,7,6, - 0,0,2546,2547,7,14,0,0,2547,2548,7,3,0,0,2548,540,1,0,0,0,2549,2551, - 7,8,0,0,2550,2552,7,30,0,0,2551,2550,1,0,0,0,2551,2552,1,0,0,0,2552, - 2554,1,0,0,0,2553,2555,3,543,271,0,2554,2553,1,0,0,0,2555,2556,1, - 0,0,0,2556,2554,1,0,0,0,2556,2557,1,0,0,0,2557,542,1,0,0,0,2558, - 2559,7,31,0,0,2559,544,1,0,0,0,2560,2561,7,32,0,0,2561,546,1,0,0, - 0,2562,2563,5,45,0,0,2563,2564,5,45,0,0,2564,2568,1,0,0,0,2565,2567, - 8,33,0,0,2566,2565,1,0,0,0,2567,2570,1,0,0,0,2568,2566,1,0,0,0,2568, - 2569,1,0,0,0,2569,2572,1,0,0,0,2570,2568,1,0,0,0,2571,2573,5,13, - 0,0,2572,2571,1,0,0,0,2572,2573,1,0,0,0,2573,2575,1,0,0,0,2574,2576, - 5,10,0,0,2575,2574,1,0,0,0,2575,2576,1,0,0,0,2576,2577,1,0,0,0,2577, - 2578,6,273,0,0,2578,548,1,0,0,0,2579,2580,5,47,0,0,2580,2581,5,42, - 0,0,2581,2585,1,0,0,0,2582,2584,9,0,0,0,2583,2582,1,0,0,0,2584,2587, - 1,0,0,0,2585,2586,1,0,0,0,2585,2583,1,0,0,0,2586,2588,1,0,0,0,2587, - 2585,1,0,0,0,2588,2589,5,42,0,0,2589,2590,5,47,0,0,2590,2591,1,0, - 0,0,2591,2592,6,274,0,0,2592,550,1,0,0,0,2593,2595,7,34,0,0,2594, - 2593,1,0,0,0,2595,2596,1,0,0,0,2596,2594,1,0,0,0,2596,2597,1,0,0, - 0,2597,2598,1,0,0,0,2598,2599,6,275,0,0,2599,552,1,0,0,0,36,0,2288, - 2344,2346,2354,2356,2360,2369,2371,2382,2390,2395,2401,2408,2410, - 2415,2421,2424,2432,2436,2440,2445,2447,2454,2456,2462,2464,2473, - 2475,2551,2556,2568,2572,2575,2585,2596,1,0,1,0 + 1,119,1,119,1,120,1,120,1,120,1,120,1,120,1,120,1,120,1,120,1,120, + 1,121,1,121,1,121,1,121,1,121,1,121,1,121,1,122,1,122,1,122,1,122, + 1,122,1,122,1,122,1,122,1,123,1,123,1,123,1,123,1,123,1,123,1,124, + 1,124,1,124,1,124,1,124,1,124,1,124,1,125,1,125,1,125,1,125,1,125, + 1,125,1,125,1,125,1,125,1,126,1,126,1,126,1,126,1,127,1,127,1,127, + 1,127,1,128,1,128,1,128,1,128,1,128,1,129,1,129,1,129,1,129,1,129, + 1,130,1,130,1,130,1,130,1,130,1,130,1,130,1,130,1,130,1,130,1,131, + 1,131,1,131,1,131,1,132,1,132,1,132,1,132,1,132,1,133,1,133,1,133, + 1,133,1,133,1,133,1,134,1,134,1,134,1,134,1,134,1,134,1,134,1,135, + 1,135,1,135,1,136,1,136,1,136,1,136,1,136,1,136,1,136,1,137,1,137, + 1,137,1,138,1,138,1,138,1,138,1,138,1,138,1,139,1,139,1,139,1,139, + 1,139,1,139,1,139,1,139,1,139,1,139,1,139,1,140,1,140,1,140,1,140, + 1,140,1,140,1,141,1,141,1,141,1,141,1,141,1,141,1,142,1,142,1,142, + 1,142,1,142,1,143,1,143,1,143,1,143,1,143,1,143,1,143,1,143,1,143, + 1,143,1,144,1,144,1,144,1,144,1,144,1,144,1,144,1,144,1,144,1,144, + 1,145,1,145,1,145,1,145,1,145,1,145,1,145,1,145,1,145,1,145,1,145, + 1,146,1,146,1,146,1,146,1,146,1,146,1,146,1,146,1,147,1,147,1,147, + 1,147,1,147,1,147,1,147,1,147,1,147,1,148,1,148,1,148,1,148,1,148, + 1,148,1,148,1,148,1,148,1,148,1,149,1,149,1,149,1,149,1,149,1,149, + 1,149,1,149,1,150,1,150,1,150,1,150,1,150,1,150,1,150,1,150,1,150, + 1,150,1,150,1,150,1,151,1,151,1,151,1,151,1,151,1,151,1,151,1,151, + 1,151,1,151,1,151,1,152,1,152,1,152,1,152,1,152,1,152,1,152,1,152, + 1,152,1,152,1,152,1,153,1,153,1,153,1,153,1,153,1,153,1,154,1,154, + 1,154,1,154,1,154,1,154,1,154,1,154,1,155,1,155,1,155,1,155,1,155, + 1,155,1,155,1,156,1,156,1,156,1,156,1,156,1,156,1,156,1,156,1,156, + 1,156,1,156,1,157,1,157,1,157,1,157,1,157,1,157,1,157,1,157,1,158, + 1,158,1,158,1,158,1,158,1,158,1,158,1,158,1,158,1,159,1,159,1,159, + 1,159,1,159,1,159,1,159,1,159,1,160,1,160,1,160,1,160,1,160,1,160, + 1,160,1,161,1,161,1,161,1,161,1,161,1,161,1,161,1,161,1,162,1,162, + 1,162,1,162,1,162,1,162,1,162,1,163,1,163,1,163,1,163,1,163,1,163, + 1,164,1,164,1,164,1,164,1,164,1,164,1,165,1,165,1,165,1,165,1,165, + 1,166,1,166,1,166,1,166,1,166,1,166,1,167,1,167,1,167,1,167,1,168, + 1,168,1,168,1,168,1,168,1,169,1,169,1,169,1,169,1,169,1,169,1,169, + 1,170,1,170,1,170,1,170,1,170,1,170,1,170,1,170,1,171,1,171,1,171, + 1,171,1,171,1,171,1,171,1,172,1,172,1,172,1,172,1,172,1,172,1,172, + 1,172,1,173,1,173,1,173,1,173,1,173,1,173,1,173,1,174,1,174,1,174, + 1,174,1,174,1,174,1,174,1,174,1,174,1,174,1,174,1,174,1,174,1,174, + 1,174,1,174,1,175,1,175,1,175,1,175,1,176,1,176,1,176,1,176,1,176, + 1,177,1,177,1,177,1,177,1,177,1,177,1,177,1,178,1,178,1,178,1,178, + 1,178,1,179,1,179,1,179,1,179,1,179,1,179,1,179,1,179,1,179,1,180, + 1,180,1,180,1,180,1,180,1,181,1,181,1,181,1,181,1,181,1,181,1,182, + 1,182,1,182,1,182,1,182,1,182,1,182,1,182,1,182,1,182,1,182,1,182, + 1,182,1,182,1,183,1,183,1,183,1,183,1,183,1,183,1,183,1,183,1,183, + 1,183,1,184,1,184,1,184,1,184,1,184,1,184,1,184,1,185,1,185,1,185, + 1,185,1,185,1,185,1,185,1,186,1,186,1,186,1,186,1,186,1,186,1,186, + 1,186,1,186,1,186,1,186,1,186,1,186,1,187,1,187,1,187,1,187,1,187, + 1,187,1,188,1,188,1,188,1,188,1,188,1,188,1,188,1,189,1,189,1,189, + 1,189,1,189,1,189,1,189,1,189,1,189,1,189,1,189,1,189,1,190,1,190, + 1,190,1,190,1,190,1,190,1,190,1,190,1,190,1,190,1,190,1,190,1,191, + 1,191,1,191,1,191,1,191,1,192,1,192,1,192,1,193,1,193,1,193,1,193, + 1,193,1,194,1,194,1,194,1,194,1,194,1,194,1,194,1,194,1,194,1,195, + 1,195,1,195,1,195,1,195,1,195,1,195,1,195,1,195,1,196,1,196,1,196, + 1,196,1,196,1,196,1,196,1,196,1,196,1,197,1,197,1,197,1,197,1,197, + 1,197,1,197,1,197,1,198,1,198,1,198,1,198,1,198,1,198,1,198,1,198, + 1,198,1,198,1,199,1,199,1,199,1,199,1,199,1,199,1,200,1,200,1,200, + 1,200,1,200,1,200,1,200,1,201,1,201,1,201,1,201,1,201,1,201,1,202, + 1,202,1,202,1,202,1,203,1,203,1,203,1,203,1,203,1,204,1,204,1,204, + 1,204,1,204,1,204,1,205,1,205,1,205,1,205,1,205,1,205,1,205,1,205, + 1,205,1,205,1,206,1,206,1,206,1,206,1,206,1,206,1,206,1,207,1,207, + 1,207,1,207,1,207,1,207,1,207,1,207,1,208,1,208,1,208,1,208,1,209, + 1,209,1,209,1,209,1,209,1,209,1,210,1,210,1,210,1,210,1,210,1,210, + 1,210,1,211,1,211,1,211,1,211,1,211,1,212,1,212,1,212,1,212,1,212, + 1,212,1,213,1,213,1,213,1,213,1,213,1,214,1,214,1,214,1,214,1,214, + 1,214,1,215,1,215,1,215,1,215,1,215,1,216,1,216,1,216,1,216,1,216, + 1,217,1,217,1,217,1,217,1,217,1,217,1,218,1,218,1,218,1,218,1,218, + 1,218,1,218,1,218,1,218,1,219,1,219,1,219,1,219,1,220,1,220,1,220, + 1,220,1,220,1,221,1,221,1,221,1,221,1,221,1,221,1,221,1,221,1,221, + 1,221,1,221,1,221,1,221,1,222,1,222,1,222,1,222,1,222,1,222,1,222, + 1,223,1,223,1,223,1,223,1,223,1,223,1,223,1,223,1,223,1,223,1,223, + 1,224,1,224,1,224,1,224,1,224,1,224,1,224,1,224,1,224,1,224,1,224, + 1,225,1,225,1,225,1,225,1,225,1,226,1,226,1,226,1,226,1,226,1,226, + 1,226,1,227,1,227,1,227,1,227,1,227,1,227,1,227,1,228,1,228,1,228, + 1,228,1,228,1,228,1,228,1,228,1,229,1,229,1,229,1,229,1,229,1,230, + 1,230,1,230,1,230,1,230,1,231,1,231,1,231,1,231,1,231,1,231,1,231, + 1,231,1,232,1,232,1,232,1,232,1,232,1,232,1,232,1,233,1,233,1,233, + 1,233,1,234,1,234,1,234,1,234,1,235,1,235,1,235,1,235,1,235,1,236, + 1,236,1,236,1,236,1,236,1,236,1,236,1,236,1,236,1,237,1,237,1,237, + 1,237,1,237,1,237,1,238,1,238,1,238,1,238,1,238,1,238,1,238,1,239, + 1,239,1,239,1,239,1,239,1,239,1,239,1,240,1,240,1,240,1,240,1,240, + 1,240,1,240,1,240,1,240,1,240,1,241,1,241,1,241,1,241,1,241,1,241, + 1,241,1,241,1,242,1,242,1,242,1,242,1,242,1,242,1,242,1,242,1,243, + 1,243,1,243,1,243,1,243,1,243,1,243,1,243,1,244,1,244,1,244,1,244, + 1,244,1,244,1,244,1,244,1,244,1,245,1,245,1,245,1,245,1,245,1,245, + 1,245,1,245,1,245,1,245,1,245,1,246,1,246,1,246,1,246,1,246,1,246, + 1,246,1,246,1,246,1,246,1,247,1,247,1,247,1,247,1,247,1,247,1,247, + 1,247,1,247,1,247,1,248,1,248,1,249,1,249,1,249,1,249,3,249,2433, + 8,249,1,250,1,250,1,251,1,251,1,251,1,252,1,252,1,253,1,253,1,253, + 1,254,1,254,1,255,1,255,1,256,1,256,1,257,1,257,1,258,1,258,1,259, + 1,259,1,259,1,260,1,260,1,261,1,261,1,262,1,262,1,263,1,263,1,264, + 1,264,1,265,1,265,1,266,1,266,1,267,1,267,1,268,1,268,1,269,1,269, + 1,270,1,270,1,271,1,271,1,272,1,272,1,272,1,273,1,273,1,273,1,273, + 5,273,2489,8,273,10,273,12,273,2492,9,273,1,273,1,273,1,273,1,273, + 1,273,5,273,2499,8,273,10,273,12,273,2502,9,273,1,273,3,273,2505, + 8,273,1,274,1,274,1,274,1,274,1,274,1,274,1,274,5,274,2514,8,274, + 10,274,12,274,2517,9,274,1,274,1,274,1,275,1,275,1,275,1,275,5,275, + 2525,8,275,10,275,12,275,2528,9,275,1,275,1,275,1,276,4,276,2533, + 8,276,11,276,12,276,2534,1,277,4,277,2538,8,277,11,277,12,277,2539, + 1,277,1,277,5,277,2544,8,277,10,277,12,277,2547,9,277,1,277,1,277, + 4,277,2551,8,277,11,277,12,277,2552,3,277,2555,8,277,1,278,4,278, + 2558,8,278,11,278,12,278,2559,1,278,1,278,5,278,2564,8,278,10,278, + 12,278,2567,9,278,3,278,2569,8,278,1,278,1,278,1,278,1,278,4,278, + 2575,8,278,11,278,12,278,2576,1,278,1,278,3,278,2581,8,278,1,279, + 1,279,3,279,2585,8,279,1,279,1,279,1,279,5,279,2590,8,279,10,279, + 12,279,2593,9,279,1,280,1,280,1,280,1,280,4,280,2599,8,280,11,280, + 12,280,2600,1,281,1,281,1,281,1,281,5,281,2607,8,281,10,281,12,281, + 2610,9,281,1,281,1,281,1,282,1,282,1,282,1,282,5,282,2618,8,282, + 10,282,12,282,2621,9,282,1,282,1,282,1,283,1,283,1,283,1,283,1,283, + 1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,283, + 1,283,1,283,1,283,1,283,1,283,1,283,1,283,1,284,1,284,1,284,1,284, + 1,284,1,284,1,284,1,284,1,284,1,284,1,284,1,284,1,284,1,284,1,284, + 1,284,1,284,1,284,1,284,1,284,1,284,1,284,1,284,1,284,1,284,1,284, + 1,284,1,284,1,285,1,285,1,285,1,285,1,285,1,285,1,285,1,285,1,285, + 1,285,1,285,1,285,1,285,1,285,1,285,1,285,1,285,1,285,1,286,1,286, + 3,286,2696,8,286,1,286,4,286,2699,8,286,11,286,12,286,2700,1,287, + 1,287,1,288,1,288,1,289,1,289,1,289,1,289,5,289,2711,8,289,10,289, + 12,289,2714,9,289,1,289,3,289,2717,8,289,1,289,3,289,2720,8,289, + 1,289,1,289,1,290,1,290,1,290,1,290,5,290,2728,8,290,10,290,12,290, + 2731,9,290,1,290,1,290,1,290,1,290,1,290,1,291,4,291,2739,8,291, + 11,291,12,291,2740,1,291,1,291,1,2729,0,292,1,1,3,2,5,3,7,4,9,5, + 11,6,13,7,15,8,17,9,19,10,21,11,23,12,25,13,27,14,29,15,31,16,33, + 17,35,18,37,19,39,20,41,21,43,22,45,23,47,24,49,25,51,26,53,27,55, + 28,57,29,59,30,61,31,63,32,65,33,67,34,69,35,71,36,73,37,75,38,77, + 39,79,40,81,41,83,42,85,43,87,44,89,45,91,46,93,47,95,48,97,49,99, + 50,101,51,103,52,105,53,107,54,109,55,111,56,113,57,115,58,117,59, + 119,60,121,61,123,62,125,63,127,64,129,65,131,66,133,67,135,68,137, + 69,139,70,141,71,143,72,145,73,147,74,149,75,151,76,153,77,155,78, + 157,79,159,80,161,81,163,82,165,83,167,84,169,85,171,86,173,87,175, + 88,177,89,179,90,181,91,183,92,185,93,187,94,189,95,191,96,193,97, + 195,98,197,99,199,100,201,101,203,102,205,103,207,104,209,105,211, + 106,213,107,215,108,217,109,219,110,221,111,223,112,225,113,227, + 114,229,115,231,116,233,117,235,118,237,119,239,120,241,121,243, + 122,245,123,247,124,249,125,251,126,253,127,255,128,257,129,259, + 130,261,131,263,132,265,133,267,134,269,135,271,136,273,137,275, + 138,277,139,279,140,281,141,283,142,285,143,287,144,289,145,291, + 146,293,147,295,148,297,149,299,150,301,151,303,152,305,153,307, + 154,309,155,311,156,313,157,315,158,317,159,319,160,321,161,323, + 162,325,163,327,164,329,165,331,166,333,167,335,168,337,169,339, + 170,341,171,343,172,345,173,347,174,349,175,351,176,353,177,355, + 178,357,179,359,180,361,181,363,182,365,183,367,184,369,185,371, + 186,373,187,375,188,377,189,379,190,381,191,383,192,385,193,387, + 194,389,195,391,196,393,197,395,198,397,199,399,200,401,201,403, + 202,405,203,407,204,409,205,411,206,413,207,415,208,417,209,419, + 210,421,211,423,212,425,213,427,214,429,215,431,216,433,217,435, + 218,437,219,439,220,441,221,443,222,445,223,447,224,449,225,451, + 226,453,227,455,228,457,229,459,230,461,231,463,232,465,233,467, + 234,469,235,471,236,473,237,475,238,477,239,479,240,481,241,483, + 242,485,243,487,244,489,245,491,246,493,247,495,248,497,249,499, + 250,501,251,503,252,505,253,507,254,509,255,511,256,513,257,515, + 258,517,259,519,260,521,261,523,262,525,263,527,264,529,265,531, + 266,533,267,535,268,537,269,539,270,541,271,543,272,545,273,547, + 274,549,275,551,276,553,277,555,278,557,279,559,280,561,281,563, + 282,565,283,567,284,569,285,571,286,573,0,575,0,577,0,579,287,581, + 288,583,289,1,0,35,2,0,65,65,97,97,2,0,68,68,100,100,2,0,76,76,108, + 108,2,0,78,78,110,110,2,0,89,89,121,121,2,0,84,84,116,116,2,0,73, + 73,105,105,2,0,67,67,99,99,2,0,69,69,101,101,2,0,82,82,114,114,2, + 0,83,83,115,115,2,0,71,71,103,103,2,0,85,85,117,117,2,0,72,72,104, + 104,2,0,79,79,111,111,2,0,90,90,122,122,2,0,66,66,98,98,2,0,87,87, + 119,119,2,0,75,75,107,107,2,0,80,80,112,112,2,0,70,70,102,102,2, + 0,88,88,120,120,2,0,77,77,109,109,2,0,86,86,118,118,2,0,74,74,106, + 106,2,0,81,81,113,113,1,0,39,39,1,0,34,34,3,0,58,58,64,64,95,95, + 1,0,96,96,2,0,43,43,45,45,1,0,48,57,2,0,65,90,97,122,2,0,10,10,13, + 13,3,0,9,10,13,13,32,32,2777,0,1,1,0,0,0,0,3,1,0,0,0,0,5,1,0,0,0, + 0,7,1,0,0,0,0,9,1,0,0,0,0,11,1,0,0,0,0,13,1,0,0,0,0,15,1,0,0,0,0, + 17,1,0,0,0,0,19,1,0,0,0,0,21,1,0,0,0,0,23,1,0,0,0,0,25,1,0,0,0,0, + 27,1,0,0,0,0,29,1,0,0,0,0,31,1,0,0,0,0,33,1,0,0,0,0,35,1,0,0,0,0, + 37,1,0,0,0,0,39,1,0,0,0,0,41,1,0,0,0,0,43,1,0,0,0,0,45,1,0,0,0,0, + 47,1,0,0,0,0,49,1,0,0,0,0,51,1,0,0,0,0,53,1,0,0,0,0,55,1,0,0,0,0, + 57,1,0,0,0,0,59,1,0,0,0,0,61,1,0,0,0,0,63,1,0,0,0,0,65,1,0,0,0,0, + 67,1,0,0,0,0,69,1,0,0,0,0,71,1,0,0,0,0,73,1,0,0,0,0,75,1,0,0,0,0, + 77,1,0,0,0,0,79,1,0,0,0,0,81,1,0,0,0,0,83,1,0,0,0,0,85,1,0,0,0,0, + 87,1,0,0,0,0,89,1,0,0,0,0,91,1,0,0,0,0,93,1,0,0,0,0,95,1,0,0,0,0, + 97,1,0,0,0,0,99,1,0,0,0,0,101,1,0,0,0,0,103,1,0,0,0,0,105,1,0,0, + 0,0,107,1,0,0,0,0,109,1,0,0,0,0,111,1,0,0,0,0,113,1,0,0,0,0,115, + 1,0,0,0,0,117,1,0,0,0,0,119,1,0,0,0,0,121,1,0,0,0,0,123,1,0,0,0, + 0,125,1,0,0,0,0,127,1,0,0,0,0,129,1,0,0,0,0,131,1,0,0,0,0,133,1, + 0,0,0,0,135,1,0,0,0,0,137,1,0,0,0,0,139,1,0,0,0,0,141,1,0,0,0,0, + 143,1,0,0,0,0,145,1,0,0,0,0,147,1,0,0,0,0,149,1,0,0,0,0,151,1,0, + 0,0,0,153,1,0,0,0,0,155,1,0,0,0,0,157,1,0,0,0,0,159,1,0,0,0,0,161, + 1,0,0,0,0,163,1,0,0,0,0,165,1,0,0,0,0,167,1,0,0,0,0,169,1,0,0,0, + 0,171,1,0,0,0,0,173,1,0,0,0,0,175,1,0,0,0,0,177,1,0,0,0,0,179,1, + 0,0,0,0,181,1,0,0,0,0,183,1,0,0,0,0,185,1,0,0,0,0,187,1,0,0,0,0, + 189,1,0,0,0,0,191,1,0,0,0,0,193,1,0,0,0,0,195,1,0,0,0,0,197,1,0, + 0,0,0,199,1,0,0,0,0,201,1,0,0,0,0,203,1,0,0,0,0,205,1,0,0,0,0,207, + 1,0,0,0,0,209,1,0,0,0,0,211,1,0,0,0,0,213,1,0,0,0,0,215,1,0,0,0, + 0,217,1,0,0,0,0,219,1,0,0,0,0,221,1,0,0,0,0,223,1,0,0,0,0,225,1, + 0,0,0,0,227,1,0,0,0,0,229,1,0,0,0,0,231,1,0,0,0,0,233,1,0,0,0,0, + 235,1,0,0,0,0,237,1,0,0,0,0,239,1,0,0,0,0,241,1,0,0,0,0,243,1,0, + 0,0,0,245,1,0,0,0,0,247,1,0,0,0,0,249,1,0,0,0,0,251,1,0,0,0,0,253, + 1,0,0,0,0,255,1,0,0,0,0,257,1,0,0,0,0,259,1,0,0,0,0,261,1,0,0,0, + 0,263,1,0,0,0,0,265,1,0,0,0,0,267,1,0,0,0,0,269,1,0,0,0,0,271,1, + 0,0,0,0,273,1,0,0,0,0,275,1,0,0,0,0,277,1,0,0,0,0,279,1,0,0,0,0, + 281,1,0,0,0,0,283,1,0,0,0,0,285,1,0,0,0,0,287,1,0,0,0,0,289,1,0, + 0,0,0,291,1,0,0,0,0,293,1,0,0,0,0,295,1,0,0,0,0,297,1,0,0,0,0,299, + 1,0,0,0,0,301,1,0,0,0,0,303,1,0,0,0,0,305,1,0,0,0,0,307,1,0,0,0, + 0,309,1,0,0,0,0,311,1,0,0,0,0,313,1,0,0,0,0,315,1,0,0,0,0,317,1, + 0,0,0,0,319,1,0,0,0,0,321,1,0,0,0,0,323,1,0,0,0,0,325,1,0,0,0,0, + 327,1,0,0,0,0,329,1,0,0,0,0,331,1,0,0,0,0,333,1,0,0,0,0,335,1,0, + 0,0,0,337,1,0,0,0,0,339,1,0,0,0,0,341,1,0,0,0,0,343,1,0,0,0,0,345, + 1,0,0,0,0,347,1,0,0,0,0,349,1,0,0,0,0,351,1,0,0,0,0,353,1,0,0,0, + 0,355,1,0,0,0,0,357,1,0,0,0,0,359,1,0,0,0,0,361,1,0,0,0,0,363,1, + 0,0,0,0,365,1,0,0,0,0,367,1,0,0,0,0,369,1,0,0,0,0,371,1,0,0,0,0, + 373,1,0,0,0,0,375,1,0,0,0,0,377,1,0,0,0,0,379,1,0,0,0,0,381,1,0, + 0,0,0,383,1,0,0,0,0,385,1,0,0,0,0,387,1,0,0,0,0,389,1,0,0,0,0,391, + 1,0,0,0,0,393,1,0,0,0,0,395,1,0,0,0,0,397,1,0,0,0,0,399,1,0,0,0, + 0,401,1,0,0,0,0,403,1,0,0,0,0,405,1,0,0,0,0,407,1,0,0,0,0,409,1, + 0,0,0,0,411,1,0,0,0,0,413,1,0,0,0,0,415,1,0,0,0,0,417,1,0,0,0,0, + 419,1,0,0,0,0,421,1,0,0,0,0,423,1,0,0,0,0,425,1,0,0,0,0,427,1,0, + 0,0,0,429,1,0,0,0,0,431,1,0,0,0,0,433,1,0,0,0,0,435,1,0,0,0,0,437, + 1,0,0,0,0,439,1,0,0,0,0,441,1,0,0,0,0,443,1,0,0,0,0,445,1,0,0,0, + 0,447,1,0,0,0,0,449,1,0,0,0,0,451,1,0,0,0,0,453,1,0,0,0,0,455,1, + 0,0,0,0,457,1,0,0,0,0,459,1,0,0,0,0,461,1,0,0,0,0,463,1,0,0,0,0, + 465,1,0,0,0,0,467,1,0,0,0,0,469,1,0,0,0,0,471,1,0,0,0,0,473,1,0, + 0,0,0,475,1,0,0,0,0,477,1,0,0,0,0,479,1,0,0,0,0,481,1,0,0,0,0,483, + 1,0,0,0,0,485,1,0,0,0,0,487,1,0,0,0,0,489,1,0,0,0,0,491,1,0,0,0, + 0,493,1,0,0,0,0,495,1,0,0,0,0,497,1,0,0,0,0,499,1,0,0,0,0,501,1, + 0,0,0,0,503,1,0,0,0,0,505,1,0,0,0,0,507,1,0,0,0,0,509,1,0,0,0,0, + 511,1,0,0,0,0,513,1,0,0,0,0,515,1,0,0,0,0,517,1,0,0,0,0,519,1,0, + 0,0,0,521,1,0,0,0,0,523,1,0,0,0,0,525,1,0,0,0,0,527,1,0,0,0,0,529, + 1,0,0,0,0,531,1,0,0,0,0,533,1,0,0,0,0,535,1,0,0,0,0,537,1,0,0,0, + 0,539,1,0,0,0,0,541,1,0,0,0,0,543,1,0,0,0,0,545,1,0,0,0,0,547,1, + 0,0,0,0,549,1,0,0,0,0,551,1,0,0,0,0,553,1,0,0,0,0,555,1,0,0,0,0, + 557,1,0,0,0,0,559,1,0,0,0,0,561,1,0,0,0,0,563,1,0,0,0,0,565,1,0, + 0,0,0,567,1,0,0,0,0,569,1,0,0,0,0,571,1,0,0,0,0,579,1,0,0,0,0,581, + 1,0,0,0,0,583,1,0,0,0,1,585,1,0,0,0,3,589,1,0,0,0,5,593,1,0,0,0, + 7,602,1,0,0,0,9,608,1,0,0,0,11,612,1,0,0,0,13,616,1,0,0,0,15,621, + 1,0,0,0,17,627,1,0,0,0,19,630,1,0,0,0,21,634,1,0,0,0,23,637,1,0, + 0,0,25,647,1,0,0,0,27,661,1,0,0,0,29,671,1,0,0,0,31,679,1,0,0,0, + 33,690,1,0,0,0,35,702,1,0,0,0,37,713,1,0,0,0,39,722,1,0,0,0,41,730, + 1,0,0,0,43,735,1,0,0,0,45,741,1,0,0,0,47,748,1,0,0,0,49,757,1,0, + 0,0,51,771,1,0,0,0,53,774,1,0,0,0,55,782,1,0,0,0,57,787,1,0,0,0, + 59,792,1,0,0,0,61,799,1,0,0,0,63,806,1,0,0,0,65,813,1,0,0,0,67,821, + 1,0,0,0,69,829,1,0,0,0,71,841,1,0,0,0,73,849,1,0,0,0,75,856,1,0, + 0,0,77,862,1,0,0,0,79,870,1,0,0,0,81,883,1,0,0,0,83,896,1,0,0,0, + 85,909,1,0,0,0,87,927,1,0,0,0,89,940,1,0,0,0,91,945,1,0,0,0,93,954, + 1,0,0,0,95,964,1,0,0,0,97,968,1,0,0,0,99,973,1,0,0,0,101,980,1,0, + 0,0,103,988,1,0,0,0,105,998,1,0,0,0,107,1006,1,0,0,0,109,1013,1, + 0,0,0,111,1018,1,0,0,0,113,1027,1,0,0,0,115,1036,1,0,0,0,117,1041, + 1,0,0,0,119,1046,1,0,0,0,121,1055,1,0,0,0,123,1059,1,0,0,0,125,1066, + 1,0,0,0,127,1074,1,0,0,0,129,1081,1,0,0,0,131,1091,1,0,0,0,133,1098, + 1,0,0,0,135,1106,1,0,0,0,137,1114,1,0,0,0,139,1123,1,0,0,0,141,1129, + 1,0,0,0,143,1136,1,0,0,0,145,1147,1,0,0,0,147,1153,1,0,0,0,149,1160, + 1,0,0,0,151,1166,1,0,0,0,153,1178,1,0,0,0,155,1188,1,0,0,0,157,1192, + 1,0,0,0,159,1199,1,0,0,0,161,1209,1,0,0,0,163,1217,1,0,0,0,165,1222, + 1,0,0,0,167,1227,1,0,0,0,169,1236,1,0,0,0,171,1246,1,0,0,0,173,1252, + 1,0,0,0,175,1258,1,0,0,0,177,1267,1,0,0,0,179,1272,1,0,0,0,181,1279, + 1,0,0,0,183,1284,1,0,0,0,185,1290,1,0,0,0,187,1293,1,0,0,0,189,1296, + 1,0,0,0,191,1306,1,0,0,0,193,1318,1,0,0,0,195,1324,1,0,0,0,197,1331, + 1,0,0,0,199,1338,1,0,0,0,201,1348,1,0,0,0,203,1357,1,0,0,0,205,1370, + 1,0,0,0,207,1375,1,0,0,0,209,1383,1,0,0,0,211,1391,1,0,0,0,213,1397, + 1,0,0,0,215,1408,1,0,0,0,217,1411,1,0,0,0,219,1416,1,0,0,0,221,1420, + 1,0,0,0,223,1425,1,0,0,0,225,1430,1,0,0,0,227,1438,1,0,0,0,229,1443, + 1,0,0,0,231,1448,1,0,0,0,233,1454,1,0,0,0,235,1460,1,0,0,0,237,1465, + 1,0,0,0,239,1475,1,0,0,0,241,1490,1,0,0,0,243,1499,1,0,0,0,245,1506, + 1,0,0,0,247,1514,1,0,0,0,249,1520,1,0,0,0,251,1527,1,0,0,0,253,1536, + 1,0,0,0,255,1540,1,0,0,0,257,1544,1,0,0,0,259,1549,1,0,0,0,261,1554, + 1,0,0,0,263,1564,1,0,0,0,265,1568,1,0,0,0,267,1573,1,0,0,0,269,1579, + 1,0,0,0,271,1586,1,0,0,0,273,1589,1,0,0,0,275,1596,1,0,0,0,277,1599, + 1,0,0,0,279,1605,1,0,0,0,281,1616,1,0,0,0,283,1622,1,0,0,0,285,1628, + 1,0,0,0,287,1633,1,0,0,0,289,1643,1,0,0,0,291,1653,1,0,0,0,293,1664, + 1,0,0,0,295,1672,1,0,0,0,297,1681,1,0,0,0,299,1691,1,0,0,0,301,1699, + 1,0,0,0,303,1711,1,0,0,0,305,1722,1,0,0,0,307,1733,1,0,0,0,309,1739, + 1,0,0,0,311,1747,1,0,0,0,313,1754,1,0,0,0,315,1765,1,0,0,0,317,1773, + 1,0,0,0,319,1782,1,0,0,0,321,1790,1,0,0,0,323,1797,1,0,0,0,325,1805, + 1,0,0,0,327,1812,1,0,0,0,329,1818,1,0,0,0,331,1824,1,0,0,0,333,1829, + 1,0,0,0,335,1835,1,0,0,0,337,1839,1,0,0,0,339,1844,1,0,0,0,341,1851, + 1,0,0,0,343,1859,1,0,0,0,345,1866,1,0,0,0,347,1874,1,0,0,0,349,1881, + 1,0,0,0,351,1897,1,0,0,0,353,1901,1,0,0,0,355,1906,1,0,0,0,357,1913, + 1,0,0,0,359,1918,1,0,0,0,361,1927,1,0,0,0,363,1932,1,0,0,0,365,1938, + 1,0,0,0,367,1952,1,0,0,0,369,1962,1,0,0,0,371,1969,1,0,0,0,373,1976, + 1,0,0,0,375,1989,1,0,0,0,377,1995,1,0,0,0,379,2002,1,0,0,0,381,2014, + 1,0,0,0,383,2026,1,0,0,0,385,2031,1,0,0,0,387,2034,1,0,0,0,389,2039, + 1,0,0,0,391,2048,1,0,0,0,393,2057,1,0,0,0,395,2066,1,0,0,0,397,2074, + 1,0,0,0,399,2084,1,0,0,0,401,2090,1,0,0,0,403,2097,1,0,0,0,405,2103, + 1,0,0,0,407,2107,1,0,0,0,409,2112,1,0,0,0,411,2118,1,0,0,0,413,2128, + 1,0,0,0,415,2135,1,0,0,0,417,2143,1,0,0,0,419,2147,1,0,0,0,421,2153, + 1,0,0,0,423,2160,1,0,0,0,425,2165,1,0,0,0,427,2171,1,0,0,0,429,2176, + 1,0,0,0,431,2182,1,0,0,0,433,2187,1,0,0,0,435,2192,1,0,0,0,437,2198, + 1,0,0,0,439,2207,1,0,0,0,441,2211,1,0,0,0,443,2216,1,0,0,0,445,2229, + 1,0,0,0,447,2236,1,0,0,0,449,2247,1,0,0,0,451,2258,1,0,0,0,453,2263, + 1,0,0,0,455,2270,1,0,0,0,457,2277,1,0,0,0,459,2285,1,0,0,0,461,2290, + 1,0,0,0,463,2295,1,0,0,0,465,2303,1,0,0,0,467,2310,1,0,0,0,469,2314, + 1,0,0,0,471,2318,1,0,0,0,473,2323,1,0,0,0,475,2332,1,0,0,0,477,2338, + 1,0,0,0,479,2345,1,0,0,0,481,2352,1,0,0,0,483,2362,1,0,0,0,485,2370, + 1,0,0,0,487,2378,1,0,0,0,489,2386,1,0,0,0,491,2395,1,0,0,0,493,2406, + 1,0,0,0,495,2416,1,0,0,0,497,2426,1,0,0,0,499,2432,1,0,0,0,501,2434, + 1,0,0,0,503,2436,1,0,0,0,505,2439,1,0,0,0,507,2441,1,0,0,0,509,2444, + 1,0,0,0,511,2446,1,0,0,0,513,2448,1,0,0,0,515,2450,1,0,0,0,517,2452, + 1,0,0,0,519,2454,1,0,0,0,521,2457,1,0,0,0,523,2459,1,0,0,0,525,2461, + 1,0,0,0,527,2463,1,0,0,0,529,2465,1,0,0,0,531,2467,1,0,0,0,533,2469, + 1,0,0,0,535,2471,1,0,0,0,537,2473,1,0,0,0,539,2475,1,0,0,0,541,2477, + 1,0,0,0,543,2479,1,0,0,0,545,2481,1,0,0,0,547,2504,1,0,0,0,549,2506, + 1,0,0,0,551,2520,1,0,0,0,553,2532,1,0,0,0,555,2554,1,0,0,0,557,2580, + 1,0,0,0,559,2584,1,0,0,0,561,2594,1,0,0,0,563,2602,1,0,0,0,565,2613, + 1,0,0,0,567,2624,1,0,0,0,569,2647,1,0,0,0,571,2675,1,0,0,0,573,2693, + 1,0,0,0,575,2702,1,0,0,0,577,2704,1,0,0,0,579,2706,1,0,0,0,581,2723, + 1,0,0,0,583,2738,1,0,0,0,585,586,7,0,0,0,586,587,7,1,0,0,587,588, + 7,1,0,0,588,2,1,0,0,0,589,590,7,0,0,0,590,591,7,2,0,0,591,592,7, + 2,0,0,592,4,1,0,0,0,593,594,7,0,0,0,594,595,7,3,0,0,595,596,7,0, + 0,0,596,597,7,2,0,0,597,598,7,4,0,0,598,599,7,5,0,0,599,600,7,6, + 0,0,600,601,7,7,0,0,601,6,1,0,0,0,602,603,7,0,0,0,603,604,7,2,0, + 0,604,605,7,5,0,0,605,606,7,8,0,0,606,607,7,9,0,0,607,8,1,0,0,0, + 608,609,7,0,0,0,609,610,7,3,0,0,610,611,7,1,0,0,611,10,1,0,0,0,612, + 613,7,0,0,0,613,614,7,3,0,0,614,615,7,4,0,0,615,12,1,0,0,0,616,617, + 7,0,0,0,617,618,7,3,0,0,618,619,7,5,0,0,619,620,7,6,0,0,620,14,1, + 0,0,0,621,622,7,0,0,0,622,623,7,9,0,0,623,624,7,9,0,0,624,625,7, + 0,0,0,625,626,7,4,0,0,626,16,1,0,0,0,627,628,7,0,0,0,628,629,7,10, + 0,0,629,18,1,0,0,0,630,631,7,0,0,0,631,632,7,10,0,0,632,633,7,7, + 0,0,633,20,1,0,0,0,634,635,7,0,0,0,635,636,7,5,0,0,636,22,1,0,0, + 0,637,638,7,0,0,0,638,639,7,11,0,0,639,640,7,11,0,0,640,641,7,9, + 0,0,641,642,7,8,0,0,642,643,7,11,0,0,643,644,7,0,0,0,644,645,7,5, + 0,0,645,646,7,8,0,0,646,24,1,0,0,0,647,648,7,0,0,0,648,649,7,12, + 0,0,649,650,7,5,0,0,650,651,7,13,0,0,651,652,7,14,0,0,652,653,7, + 9,0,0,653,654,7,6,0,0,654,655,7,15,0,0,655,656,7,0,0,0,656,657,7, + 5,0,0,657,658,7,6,0,0,658,659,7,14,0,0,659,660,7,3,0,0,660,26,1, + 0,0,0,661,662,7,16,0,0,662,663,7,8,0,0,663,664,7,9,0,0,664,665,7, + 3,0,0,665,666,7,14,0,0,666,667,7,12,0,0,667,668,7,2,0,0,668,669, + 7,2,0,0,669,670,7,6,0,0,670,28,1,0,0,0,671,672,7,16,0,0,672,673, + 7,8,0,0,673,674,7,5,0,0,674,675,7,17,0,0,675,676,7,8,0,0,676,677, + 7,8,0,0,677,678,7,3,0,0,678,30,1,0,0,0,679,680,7,16,0,0,680,681, + 7,2,0,0,681,682,7,14,0,0,682,683,7,7,0,0,683,684,7,18,0,0,684,685, + 5,95,0,0,685,686,7,10,0,0,686,687,7,6,0,0,687,688,7,15,0,0,688,689, + 7,8,0,0,689,32,1,0,0,0,690,691,7,19,0,0,691,692,7,0,0,0,692,693, + 7,9,0,0,693,694,7,5,0,0,694,695,7,6,0,0,695,696,7,5,0,0,696,697, + 7,6,0,0,697,698,7,14,0,0,698,699,7,3,0,0,699,700,7,8,0,0,700,701, + 7,1,0,0,701,34,1,0,0,0,702,703,7,19,0,0,703,704,7,9,0,0,704,705, + 7,8,0,0,705,706,7,19,0,0,706,707,7,0,0,0,707,708,7,9,0,0,708,709, + 7,8,0,0,709,710,5,95,0,0,710,711,7,20,0,0,711,712,7,3,0,0,712,36, + 1,0,0,0,713,714,7,8,0,0,714,715,7,21,0,0,715,716,7,5,0,0,716,717, + 7,8,0,0,717,718,7,9,0,0,718,719,7,3,0,0,719,720,7,0,0,0,720,721, + 7,2,0,0,721,38,1,0,0,0,722,723,7,7,0,0,723,724,7,2,0,0,724,725,7, + 14,0,0,725,726,7,10,0,0,726,727,7,8,0,0,727,728,7,20,0,0,728,729, + 7,3,0,0,729,40,1,0,0,0,730,731,7,10,0,0,731,732,7,14,0,0,732,733, + 7,9,0,0,733,734,7,5,0,0,734,42,1,0,0,0,735,736,7,19,0,0,736,737, + 7,12,0,0,737,738,7,9,0,0,738,739,7,11,0,0,739,740,7,8,0,0,740,44, + 1,0,0,0,741,742,7,10,0,0,742,743,7,5,0,0,743,744,7,14,0,0,744,745, + 7,9,0,0,745,746,7,8,0,0,746,747,7,1,0,0,747,46,1,0,0,0,748,749,7, + 2,0,0,749,750,7,14,0,0,750,751,7,7,0,0,751,752,7,0,0,0,752,753,7, + 5,0,0,753,754,7,6,0,0,754,755,7,14,0,0,755,756,7,3,0,0,756,48,1, + 0,0,0,757,758,7,5,0,0,758,759,7,16,0,0,759,760,7,2,0,0,760,761,7, + 19,0,0,761,762,7,9,0,0,762,763,7,14,0,0,763,764,7,19,0,0,764,765, + 7,8,0,0,765,766,7,9,0,0,766,767,7,5,0,0,767,768,7,6,0,0,768,769, + 7,8,0,0,769,770,7,10,0,0,770,50,1,0,0,0,771,772,7,16,0,0,772,773, + 7,4,0,0,773,52,1,0,0,0,774,775,7,7,0,0,775,776,7,0,0,0,776,777,7, + 10,0,0,777,778,7,7,0,0,778,779,7,0,0,0,779,780,7,1,0,0,780,781,7, + 8,0,0,781,54,1,0,0,0,782,783,7,7,0,0,783,784,7,0,0,0,784,785,7,10, + 0,0,785,786,7,8,0,0,786,56,1,0,0,0,787,788,7,7,0,0,788,789,7,0,0, + 0,789,790,7,10,0,0,790,791,7,5,0,0,791,58,1,0,0,0,792,793,7,7,0, + 0,793,794,7,0,0,0,794,795,7,7,0,0,795,796,7,13,0,0,796,797,7,8,0, + 0,797,798,7,1,0,0,798,60,1,0,0,0,799,800,7,7,0,0,800,801,7,13,0, + 0,801,802,7,0,0,0,802,803,7,3,0,0,803,804,7,11,0,0,804,805,7,8,0, + 0,805,62,1,0,0,0,806,807,7,7,0,0,807,808,7,14,0,0,808,809,7,2,0, + 0,809,810,7,12,0,0,810,811,7,22,0,0,811,812,7,3,0,0,812,64,1,0,0, + 0,813,814,7,7,0,0,814,815,7,14,0,0,815,816,7,2,0,0,816,817,7,12, + 0,0,817,818,7,22,0,0,818,819,7,3,0,0,819,820,7,10,0,0,820,66,1,0, + 0,0,821,822,7,7,0,0,822,823,7,14,0,0,823,824,7,22,0,0,824,825,7, + 22,0,0,825,826,7,8,0,0,826,827,7,3,0,0,827,828,7,5,0,0,828,68,1, + 0,0,0,829,830,7,7,0,0,830,831,7,14,0,0,831,832,7,22,0,0,832,833, + 7,19,0,0,833,834,7,9,0,0,834,835,7,8,0,0,835,836,7,10,0,0,836,837, + 7,10,0,0,837,838,7,6,0,0,838,839,7,14,0,0,839,840,7,3,0,0,840,70, + 1,0,0,0,841,842,7,7,0,0,842,843,7,14,0,0,843,844,7,22,0,0,844,845, + 7,19,0,0,845,846,7,12,0,0,846,847,7,5,0,0,847,848,7,8,0,0,848,72, + 1,0,0,0,849,850,7,7,0,0,850,851,7,9,0,0,851,852,7,8,0,0,852,853, + 7,0,0,0,853,854,7,5,0,0,854,855,7,8,0,0,855,74,1,0,0,0,856,857,7, + 7,0,0,857,858,7,9,0,0,858,859,7,14,0,0,859,860,7,10,0,0,860,861, + 7,10,0,0,861,76,1,0,0,0,862,863,7,7,0,0,863,864,7,12,0,0,864,865, + 7,9,0,0,865,866,7,9,0,0,866,867,7,8,0,0,867,868,7,3,0,0,868,869, + 7,5,0,0,869,78,1,0,0,0,870,871,7,7,0,0,871,872,7,12,0,0,872,873, + 7,9,0,0,873,874,7,9,0,0,874,875,7,8,0,0,875,876,7,3,0,0,876,877, + 7,5,0,0,877,878,5,95,0,0,878,879,7,1,0,0,879,880,7,0,0,0,880,881, + 7,5,0,0,881,882,7,8,0,0,882,80,1,0,0,0,883,884,7,7,0,0,884,885,7, + 12,0,0,885,886,7,9,0,0,886,887,7,9,0,0,887,888,7,8,0,0,888,889,7, + 3,0,0,889,890,7,5,0,0,890,891,5,95,0,0,891,892,7,19,0,0,892,893, + 7,0,0,0,893,894,7,5,0,0,894,895,7,13,0,0,895,82,1,0,0,0,896,897, + 7,7,0,0,897,898,7,12,0,0,898,899,7,9,0,0,899,900,7,9,0,0,900,901, + 7,8,0,0,901,902,7,3,0,0,902,903,7,5,0,0,903,904,5,95,0,0,904,905, + 7,5,0,0,905,906,7,6,0,0,906,907,7,22,0,0,907,908,7,8,0,0,908,84, + 1,0,0,0,909,910,7,7,0,0,910,911,7,12,0,0,911,912,7,9,0,0,912,913, + 7,9,0,0,913,914,7,8,0,0,914,915,7,3,0,0,915,916,7,5,0,0,916,917, + 5,95,0,0,917,918,7,5,0,0,918,919,7,6,0,0,919,920,7,22,0,0,920,921, + 7,8,0,0,921,922,7,10,0,0,922,923,7,5,0,0,923,924,7,0,0,0,924,925, + 7,22,0,0,925,926,7,19,0,0,926,86,1,0,0,0,927,928,7,7,0,0,928,929, + 7,12,0,0,929,930,7,9,0,0,930,931,7,9,0,0,931,932,7,8,0,0,932,933, + 7,3,0,0,933,934,7,5,0,0,934,935,5,95,0,0,935,936,7,12,0,0,936,937, + 7,10,0,0,937,938,7,8,0,0,938,939,7,9,0,0,939,88,1,0,0,0,940,941, + 7,1,0,0,941,942,7,0,0,0,942,943,7,5,0,0,943,944,7,0,0,0,944,90,1, + 0,0,0,945,946,7,1,0,0,946,947,7,0,0,0,947,948,7,5,0,0,948,949,7, + 0,0,0,949,950,7,16,0,0,950,951,7,0,0,0,951,952,7,10,0,0,952,953, + 7,8,0,0,953,92,1,0,0,0,954,955,7,1,0,0,955,956,7,0,0,0,956,957,7, + 5,0,0,957,958,7,0,0,0,958,959,7,16,0,0,959,960,7,0,0,0,960,961,7, + 10,0,0,961,962,7,8,0,0,962,963,7,10,0,0,963,94,1,0,0,0,964,965,7, + 1,0,0,965,966,7,0,0,0,966,967,7,4,0,0,967,96,1,0,0,0,968,969,7,1, + 0,0,969,970,7,0,0,0,970,971,7,4,0,0,971,972,7,10,0,0,972,98,1,0, + 0,0,973,974,7,1,0,0,974,975,7,8,0,0,975,976,7,2,0,0,976,977,7,8, + 0,0,977,978,7,5,0,0,978,979,7,8,0,0,979,100,1,0,0,0,980,981,7,1, + 0,0,981,982,7,8,0,0,982,983,7,20,0,0,983,984,7,0,0,0,984,985,7,12, + 0,0,985,986,7,2,0,0,986,987,7,5,0,0,987,102,1,0,0,0,988,989,7,1, + 0,0,989,990,7,8,0,0,990,991,7,2,0,0,991,992,7,6,0,0,992,993,7,22, + 0,0,993,994,7,6,0,0,994,995,7,5,0,0,995,996,7,8,0,0,996,997,7,1, + 0,0,997,104,1,0,0,0,998,999,7,1,0,0,999,1000,7,6,0,0,1000,1001,7, + 10,0,0,1001,1002,7,0,0,0,1002,1003,7,16,0,0,1003,1004,7,2,0,0,1004, + 1005,7,8,0,0,1005,106,1,0,0,0,1006,1007,7,12,0,0,1007,1008,7,19, + 0,0,1008,1009,7,1,0,0,1009,1010,7,0,0,0,1010,1011,7,5,0,0,1011,1012, + 7,8,0,0,1012,108,1,0,0,0,1013,1014,7,1,0,0,1014,1015,7,8,0,0,1015, + 1016,7,10,0,0,1016,1017,7,7,0,0,1017,110,1,0,0,0,1018,1019,7,1,0, + 0,1019,1020,7,8,0,0,1020,1021,7,10,0,0,1021,1022,7,7,0,0,1022,1023, + 7,9,0,0,1023,1024,7,6,0,0,1024,1025,7,16,0,0,1025,1026,7,8,0,0,1026, + 112,1,0,0,0,1027,1028,7,1,0,0,1028,1029,7,6,0,0,1029,1030,7,10,0, + 0,1030,1031,7,5,0,0,1031,1032,7,6,0,0,1032,1033,7,3,0,0,1033,1034, + 7,7,0,0,1034,1035,7,5,0,0,1035,114,1,0,0,0,1036,1037,7,1,0,0,1037, + 1038,7,9,0,0,1038,1039,7,14,0,0,1039,1040,7,19,0,0,1040,116,1,0, + 0,0,1041,1042,7,8,0,0,1042,1043,7,2,0,0,1043,1044,7,10,0,0,1044, + 1045,7,8,0,0,1045,118,1,0,0,0,1046,1047,7,8,0,0,1047,1048,7,3,0, + 0,1048,1049,7,7,0,0,1049,1050,7,14,0,0,1050,1051,7,1,0,0,1051,1052, + 7,6,0,0,1052,1053,7,3,0,0,1053,1054,7,11,0,0,1054,120,1,0,0,0,1055, + 1056,7,8,0,0,1056,1057,7,3,0,0,1057,1058,7,1,0,0,1058,122,1,0,0, + 0,1059,1060,7,8,0,0,1060,1061,7,10,0,0,1061,1062,7,7,0,0,1062,1063, + 7,0,0,0,1063,1064,7,19,0,0,1064,1065,7,8,0,0,1065,124,1,0,0,0,1066, + 1067,7,8,0,0,1067,1068,7,10,0,0,1068,1069,7,7,0,0,1069,1070,7,0, + 0,0,1070,1071,7,19,0,0,1071,1072,7,8,0,0,1072,1073,7,1,0,0,1073, + 126,1,0,0,0,1074,1075,7,8,0,0,1075,1076,7,21,0,0,1076,1077,7,7,0, + 0,1077,1078,7,8,0,0,1078,1079,7,19,0,0,1079,1080,7,5,0,0,1080,128, + 1,0,0,0,1081,1082,7,8,0,0,1082,1083,7,21,0,0,1083,1084,7,7,0,0,1084, + 1085,7,2,0,0,1085,1086,7,12,0,0,1086,1087,7,1,0,0,1087,1088,7,6, + 0,0,1088,1089,7,3,0,0,1089,1090,7,11,0,0,1090,130,1,0,0,0,1091,1092, + 7,8,0,0,1092,1093,7,21,0,0,1093,1094,7,6,0,0,1094,1095,7,10,0,0, + 1095,1096,7,5,0,0,1096,1097,7,10,0,0,1097,132,1,0,0,0,1098,1099, + 7,8,0,0,1099,1100,7,21,0,0,1100,1101,7,19,0,0,1101,1102,7,2,0,0, + 1102,1103,7,0,0,0,1103,1104,7,6,0,0,1104,1105,7,3,0,0,1105,134,1, + 0,0,0,1106,1107,7,8,0,0,1107,1108,7,21,0,0,1108,1109,7,5,0,0,1109, + 1110,7,9,0,0,1110,1111,7,0,0,0,1111,1112,7,7,0,0,1112,1113,7,5,0, + 0,1113,136,1,0,0,0,1114,1115,7,8,0,0,1115,1116,7,21,0,0,1116,1117, + 7,5,0,0,1117,1118,7,8,0,0,1118,1119,7,3,0,0,1119,1120,7,1,0,0,1120, + 1121,7,8,0,0,1121,1122,7,1,0,0,1122,138,1,0,0,0,1123,1124,7,20,0, + 0,1124,1125,7,0,0,0,1125,1126,7,2,0,0,1126,1127,7,10,0,0,1127,1128, + 7,8,0,0,1128,140,1,0,0,0,1129,1130,7,20,0,0,1130,1131,7,6,0,0,1131, + 1132,7,8,0,0,1132,1133,7,2,0,0,1133,1134,7,1,0,0,1134,1135,7,10, + 0,0,1135,142,1,0,0,0,1136,1137,7,20,0,0,1137,1138,7,6,0,0,1138,1139, + 7,2,0,0,1139,1140,7,8,0,0,1140,1141,7,20,0,0,1141,1142,7,14,0,0, + 1142,1143,7,9,0,0,1143,1144,7,22,0,0,1144,1145,7,0,0,0,1145,1146, + 7,5,0,0,1146,144,1,0,0,0,1147,1148,7,20,0,0,1148,1149,7,6,0,0,1149, + 1150,7,2,0,0,1150,1151,7,8,0,0,1151,1152,7,10,0,0,1152,146,1,0,0, + 0,1153,1154,7,20,0,0,1154,1155,7,6,0,0,1155,1156,7,2,0,0,1156,1157, + 7,5,0,0,1157,1158,7,8,0,0,1158,1159,7,9,0,0,1159,148,1,0,0,0,1160, + 1161,7,20,0,0,1161,1162,7,6,0,0,1162,1163,7,9,0,0,1163,1164,7,10, + 0,0,1164,1165,7,5,0,0,1165,150,1,0,0,0,1166,1167,7,20,0,0,1167,1168, + 7,6,0,0,1168,1169,7,3,0,0,1169,1170,7,0,0,0,1170,1171,7,2,0,0,1171, + 1172,7,6,0,0,1172,1173,7,15,0,0,1173,1174,7,8,0,0,1174,1175,5,95, + 0,0,1175,1176,7,20,0,0,1176,1177,7,3,0,0,1177,152,1,0,0,0,1178,1179, + 7,20,0,0,1179,1180,7,14,0,0,1180,1181,7,2,0,0,1181,1182,7,2,0,0, + 1182,1183,7,14,0,0,1183,1184,7,17,0,0,1184,1185,7,6,0,0,1185,1186, + 7,3,0,0,1186,1187,7,11,0,0,1187,154,1,0,0,0,1188,1189,7,20,0,0,1189, + 1190,7,14,0,0,1190,1191,7,9,0,0,1191,156,1,0,0,0,1192,1193,7,20, + 0,0,1193,1194,7,14,0,0,1194,1195,7,9,0,0,1195,1196,7,22,0,0,1196, + 1197,7,0,0,0,1197,1198,7,5,0,0,1198,158,1,0,0,0,1199,1200,7,20,0, + 0,1200,1201,7,14,0,0,1201,1202,7,9,0,0,1202,1203,7,22,0,0,1203,1204, + 7,0,0,0,1204,1205,7,5,0,0,1205,1206,7,5,0,0,1206,1207,7,8,0,0,1207, + 1208,7,1,0,0,1208,160,1,0,0,0,1209,1210,7,20,0,0,1210,1211,7,14, + 0,0,1211,1212,7,9,0,0,1212,1213,7,8,0,0,1213,1214,7,6,0,0,1214,1215, + 7,11,0,0,1215,1216,7,3,0,0,1216,162,1,0,0,0,1217,1218,7,20,0,0,1218, + 1219,7,9,0,0,1219,1220,7,14,0,0,1220,1221,7,22,0,0,1221,164,1,0, + 0,0,1222,1223,7,20,0,0,1223,1224,7,12,0,0,1224,1225,7,2,0,0,1225, + 1226,7,2,0,0,1226,166,1,0,0,0,1227,1228,7,20,0,0,1228,1229,7,12, + 0,0,1229,1230,7,3,0,0,1230,1231,7,7,0,0,1231,1232,7,5,0,0,1232,1233, + 7,6,0,0,1233,1234,7,14,0,0,1234,1235,7,3,0,0,1235,168,1,0,0,0,1236, + 1237,7,20,0,0,1237,1238,7,12,0,0,1238,1239,7,3,0,0,1239,1240,7,7, + 0,0,1240,1241,7,5,0,0,1241,1242,7,6,0,0,1242,1243,7,14,0,0,1243, + 1244,7,3,0,0,1244,1245,7,10,0,0,1245,170,1,0,0,0,1246,1247,7,11, + 0,0,1247,1248,7,9,0,0,1248,1249,7,0,0,0,1249,1250,7,3,0,0,1250,1251, + 7,5,0,0,1251,172,1,0,0,0,1252,1253,7,11,0,0,1253,1254,7,9,0,0,1254, + 1255,7,14,0,0,1255,1256,7,12,0,0,1256,1257,7,19,0,0,1257,174,1,0, + 0,0,1258,1259,7,11,0,0,1259,1260,7,9,0,0,1260,1261,7,14,0,0,1261, + 1262,7,12,0,0,1262,1263,7,19,0,0,1263,1264,7,6,0,0,1264,1265,7,3, + 0,0,1265,1266,7,11,0,0,1266,176,1,0,0,0,1267,1268,7,13,0,0,1268, + 1269,7,0,0,0,1269,1270,7,10,0,0,1270,1271,7,13,0,0,1271,178,1,0, + 0,0,1272,1273,7,13,0,0,1273,1274,7,0,0,0,1274,1275,7,23,0,0,1275, + 1276,7,6,0,0,1276,1277,7,3,0,0,1277,1278,7,11,0,0,1278,180,1,0,0, + 0,1279,1280,7,13,0,0,1280,1281,7,14,0,0,1281,1282,7,12,0,0,1282, + 1283,7,9,0,0,1283,182,1,0,0,0,1284,1285,7,13,0,0,1285,1286,7,14, + 0,0,1286,1287,7,12,0,0,1287,1288,7,9,0,0,1288,1289,7,10,0,0,1289, + 184,1,0,0,0,1290,1291,7,6,0,0,1291,1292,7,20,0,0,1292,186,1,0,0, + 0,1293,1294,7,6,0,0,1294,1295,7,3,0,0,1295,188,1,0,0,0,1296,1297, + 7,6,0,0,1297,1298,7,3,0,0,1298,1299,7,7,0,0,1299,1300,7,2,0,0,1300, + 1301,7,12,0,0,1301,1302,7,1,0,0,1302,1303,7,6,0,0,1303,1304,7,3, + 0,0,1304,1305,7,11,0,0,1305,190,1,0,0,0,1306,1307,7,6,0,0,1307,1308, + 7,3,0,0,1308,1309,7,7,0,0,1309,1310,7,9,0,0,1310,1311,7,8,0,0,1311, + 1312,7,22,0,0,1312,1313,7,8,0,0,1313,1314,7,3,0,0,1314,1315,7,5, + 0,0,1315,1316,7,0,0,0,1316,1317,7,2,0,0,1317,192,1,0,0,0,1318,1319, + 7,6,0,0,1319,1320,7,3,0,0,1320,1321,7,3,0,0,1321,1322,7,8,0,0,1322, + 1323,7,9,0,0,1323,194,1,0,0,0,1324,1325,7,6,0,0,1325,1326,7,3,0, + 0,1326,1327,7,19,0,0,1327,1328,7,0,0,0,1328,1329,7,5,0,0,1329,1330, + 7,13,0,0,1330,196,1,0,0,0,1331,1332,7,6,0,0,1332,1333,7,3,0,0,1333, + 1334,7,10,0,0,1334,1335,7,8,0,0,1335,1336,7,9,0,0,1336,1337,7,5, + 0,0,1337,198,1,0,0,0,1338,1339,7,6,0,0,1339,1340,7,3,0,0,1340,1341, + 7,5,0,0,1341,1342,7,8,0,0,1342,1343,7,9,0,0,1343,1344,7,10,0,0,1344, + 1345,7,8,0,0,1345,1346,7,7,0,0,1346,1347,7,5,0,0,1347,200,1,0,0, + 0,1348,1349,7,6,0,0,1349,1350,7,3,0,0,1350,1351,7,5,0,0,1351,1352, + 7,8,0,0,1352,1353,7,9,0,0,1353,1354,7,23,0,0,1354,1355,7,0,0,0,1355, + 1356,7,2,0,0,1356,202,1,0,0,0,1357,1358,7,6,0,0,1358,1359,7,3,0, + 0,1359,1360,7,5,0,0,1360,1361,7,8,0,0,1361,1362,7,9,0,0,1362,1363, + 7,22,0,0,1363,1364,7,8,0,0,1364,1365,7,1,0,0,1365,1366,7,6,0,0,1366, + 1367,7,0,0,0,1367,1368,7,5,0,0,1368,1369,7,8,0,0,1369,204,1,0,0, + 0,1370,1371,7,6,0,0,1371,1372,7,3,0,0,1372,1373,7,5,0,0,1373,1374, + 7,14,0,0,1374,206,1,0,0,0,1375,1376,7,6,0,0,1376,1377,7,3,0,0,1377, + 1378,7,6,0,0,1378,1379,7,5,0,0,1379,1380,5,95,0,0,1380,1381,7,20, + 0,0,1381,1382,7,3,0,0,1382,208,1,0,0,0,1383,1384,7,6,0,0,1384,1385, + 7,9,0,0,1385,1386,7,8,0,0,1386,1387,7,11,0,0,1387,1388,7,8,0,0,1388, + 1389,7,21,0,0,1389,1390,7,19,0,0,1390,210,1,0,0,0,1391,1392,7,6, + 0,0,1392,1393,7,2,0,0,1393,1394,7,6,0,0,1394,1395,7,18,0,0,1395, + 1396,7,8,0,0,1396,212,1,0,0,0,1397,1398,7,6,0,0,1398,1399,7,3,0, + 0,1399,1400,7,23,0,0,1400,1401,7,0,0,0,1401,1402,7,2,0,0,1402,1403, + 7,6,0,0,1403,1404,7,1,0,0,1404,1405,7,0,0,0,1405,1406,7,5,0,0,1406, + 1407,7,8,0,0,1407,214,1,0,0,0,1408,1409,7,6,0,0,1409,1410,7,10,0, + 0,1410,216,1,0,0,0,1411,1412,7,24,0,0,1412,1413,7,14,0,0,1413,1414, + 7,6,0,0,1414,1415,7,3,0,0,1415,218,1,0,0,0,1416,1417,7,18,0,0,1417, + 1418,7,8,0,0,1418,1419,7,4,0,0,1419,220,1,0,0,0,1420,1421,7,18,0, + 0,1421,1422,7,12,0,0,1422,1423,7,1,0,0,1423,1424,7,12,0,0,1424,222, + 1,0,0,0,1425,1426,7,2,0,0,1426,1427,7,0,0,0,1427,1428,7,10,0,0,1428, + 1429,7,5,0,0,1429,224,1,0,0,0,1430,1431,7,2,0,0,1431,1432,7,0,0, + 0,1432,1433,7,5,0,0,1433,1434,7,8,0,0,1434,1435,7,9,0,0,1435,1436, + 7,0,0,0,1436,1437,7,2,0,0,1437,226,1,0,0,0,1438,1439,7,2,0,0,1439, + 1440,7,8,0,0,1440,1441,7,20,0,0,1441,1442,7,5,0,0,1442,228,1,0,0, + 0,1443,1444,7,2,0,0,1444,1445,7,6,0,0,1445,1446,7,18,0,0,1446,1447, + 7,8,0,0,1447,230,1,0,0,0,1448,1449,7,2,0,0,1449,1450,7,6,0,0,1450, + 1451,7,22,0,0,1451,1452,7,6,0,0,1452,1453,7,5,0,0,1453,232,1,0,0, + 0,1454,1455,7,2,0,0,1455,1456,7,6,0,0,1456,1457,7,3,0,0,1457,1458, + 7,8,0,0,1458,1459,7,10,0,0,1459,234,1,0,0,0,1460,1461,7,2,0,0,1461, + 1462,7,14,0,0,1462,1463,7,0,0,0,1463,1464,7,1,0,0,1464,236,1,0,0, + 0,1465,1466,7,2,0,0,1466,1467,7,14,0,0,1467,1468,7,7,0,0,1468,1469, + 7,0,0,0,1469,1470,7,2,0,0,1470,1471,7,5,0,0,1471,1472,7,6,0,0,1472, + 1473,7,22,0,0,1473,1474,7,8,0,0,1474,238,1,0,0,0,1475,1476,7,2,0, + 0,1476,1477,7,14,0,0,1477,1478,7,7,0,0,1478,1479,7,0,0,0,1479,1480, + 7,2,0,0,1480,1481,7,5,0,0,1481,1482,7,6,0,0,1482,1483,7,22,0,0,1483, + 1484,7,8,0,0,1484,1485,7,10,0,0,1485,1486,7,5,0,0,1486,1487,7,0, + 0,0,1487,1488,7,22,0,0,1488,1489,7,19,0,0,1489,240,1,0,0,0,1490, + 1491,7,22,0,0,1491,1492,7,8,0,0,1492,1493,7,5,0,0,1493,1494,7,0, + 0,0,1494,1495,7,1,0,0,1495,1496,7,0,0,0,1496,1497,7,5,0,0,1497,1498, + 7,0,0,0,1498,242,1,0,0,0,1499,1500,7,22,0,0,1500,1501,7,6,0,0,1501, + 1502,7,3,0,0,1502,1503,7,12,0,0,1503,1504,7,5,0,0,1504,1505,7,8, + 0,0,1505,244,1,0,0,0,1506,1507,7,22,0,0,1507,1508,7,6,0,0,1508,1509, + 7,3,0,0,1509,1510,7,12,0,0,1510,1511,7,5,0,0,1511,1512,7,8,0,0,1512, + 1513,7,10,0,0,1513,246,1,0,0,0,1514,1515,7,22,0,0,1515,1516,7,14, + 0,0,1516,1517,7,3,0,0,1517,1518,7,5,0,0,1518,1519,7,13,0,0,1519, + 248,1,0,0,0,1520,1521,7,22,0,0,1521,1522,7,14,0,0,1522,1523,7,3, + 0,0,1523,1524,7,5,0,0,1524,1525,7,13,0,0,1525,1526,7,10,0,0,1526, + 250,1,0,0,0,1527,1528,7,22,0,0,1528,1529,7,8,0,0,1529,1530,7,9,0, + 0,1530,1531,7,11,0,0,1531,1532,7,8,0,0,1532,1533,5,95,0,0,1533,1534, + 7,20,0,0,1534,1535,7,3,0,0,1535,252,1,0,0,0,1536,1537,7,3,0,0,1537, + 1538,7,20,0,0,1538,1539,7,7,0,0,1539,254,1,0,0,0,1540,1541,7,3,0, + 0,1541,1542,7,20,0,0,1542,1543,7,1,0,0,1543,256,1,0,0,0,1544,1545, + 7,3,0,0,1545,1546,7,20,0,0,1546,1547,7,18,0,0,1547,1548,7,7,0,0, + 1548,258,1,0,0,0,1549,1550,7,3,0,0,1550,1551,7,20,0,0,1551,1552, + 7,18,0,0,1552,1553,7,1,0,0,1553,260,1,0,0,0,1554,1555,7,3,0,0,1555, + 1556,7,14,0,0,1556,1557,7,9,0,0,1557,1558,7,22,0,0,1558,1559,7,0, + 0,0,1559,1560,7,2,0,0,1560,1561,7,6,0,0,1561,1562,7,15,0,0,1562, + 1563,7,8,0,0,1563,262,1,0,0,0,1564,1565,7,3,0,0,1565,1566,7,14,0, + 0,1566,1567,7,5,0,0,1567,264,1,0,0,0,1568,1569,7,3,0,0,1569,1570, + 7,12,0,0,1570,1571,7,2,0,0,1571,1572,7,2,0,0,1572,266,1,0,0,0,1573, + 1574,7,3,0,0,1574,1575,7,12,0,0,1575,1576,7,2,0,0,1576,1577,7,2, + 0,0,1577,1578,7,10,0,0,1578,268,1,0,0,0,1579,1580,7,14,0,0,1580, + 1581,7,20,0,0,1581,1582,7,20,0,0,1582,1583,7,10,0,0,1583,1584,7, + 8,0,0,1584,1585,7,5,0,0,1585,270,1,0,0,0,1586,1587,7,14,0,0,1587, + 1588,7,3,0,0,1588,272,1,0,0,0,1589,1590,7,14,0,0,1590,1591,7,19, + 0,0,1591,1592,7,5,0,0,1592,1593,7,6,0,0,1593,1594,7,14,0,0,1594, + 1595,7,3,0,0,1595,274,1,0,0,0,1596,1597,7,14,0,0,1597,1598,7,9,0, + 0,1598,276,1,0,0,0,1599,1600,7,14,0,0,1600,1601,7,9,0,0,1601,1602, + 7,1,0,0,1602,1603,7,8,0,0,1603,1604,7,9,0,0,1604,278,1,0,0,0,1605, + 1606,7,14,0,0,1606,1607,7,9,0,0,1607,1608,7,1,0,0,1608,1609,7,6, + 0,0,1609,1610,7,3,0,0,1610,1611,7,0,0,0,1611,1612,7,2,0,0,1612,1613, + 7,6,0,0,1613,1614,7,5,0,0,1614,1615,7,4,0,0,1615,280,1,0,0,0,1616, + 1617,7,14,0,0,1617,1618,7,12,0,0,1618,1619,7,5,0,0,1619,1620,7,8, + 0,0,1620,1621,7,9,0,0,1621,282,1,0,0,0,1622,1623,7,14,0,0,1623,1624, + 7,17,0,0,1624,1625,7,3,0,0,1625,1626,7,8,0,0,1626,1627,7,9,0,0,1627, + 284,1,0,0,0,1628,1629,7,14,0,0,1629,1630,7,23,0,0,1630,1631,7,8, + 0,0,1631,1632,7,9,0,0,1632,286,1,0,0,0,1633,1634,7,14,0,0,1634,1635, + 7,23,0,0,1635,1636,7,8,0,0,1636,1637,7,9,0,0,1637,1638,7,17,0,0, + 1638,1639,7,9,0,0,1639,1640,7,6,0,0,1640,1641,7,5,0,0,1641,1642, + 7,8,0,0,1642,288,1,0,0,0,1643,1644,7,19,0,0,1644,1645,7,0,0,0,1645, + 1646,7,9,0,0,1646,1647,7,5,0,0,1647,1648,7,6,0,0,1648,1649,7,5,0, + 0,1649,1650,7,6,0,0,1650,1651,7,14,0,0,1651,1652,7,3,0,0,1652,290, + 1,0,0,0,1653,1654,7,19,0,0,1654,1655,7,0,0,0,1655,1656,7,9,0,0,1656, + 1657,7,5,0,0,1657,1658,7,6,0,0,1658,1659,7,5,0,0,1659,1660,7,6,0, + 0,1660,1661,7,14,0,0,1661,1662,7,3,0,0,1662,1663,7,10,0,0,1663,292, + 1,0,0,0,1664,1665,7,19,0,0,1665,1666,7,0,0,0,1666,1667,7,9,0,0,1667, + 1668,7,25,0,0,1668,1669,7,12,0,0,1669,1670,7,8,0,0,1670,1671,7,5, + 0,0,1671,294,1,0,0,0,1672,1673,7,19,0,0,1673,1674,7,14,0,0,1674, + 1675,7,10,0,0,1675,1676,7,6,0,0,1676,1677,7,5,0,0,1677,1678,7,6, + 0,0,1678,1679,7,14,0,0,1679,1680,7,3,0,0,1680,296,1,0,0,0,1681,1682, + 7,19,0,0,1682,1683,7,9,0,0,1683,1684,7,8,0,0,1684,1685,7,7,0,0,1685, + 1686,7,8,0,0,1686,1687,7,1,0,0,1687,1688,7,6,0,0,1688,1689,7,3,0, + 0,1689,1690,7,11,0,0,1690,298,1,0,0,0,1691,1692,7,19,0,0,1692,1693, + 7,9,0,0,1693,1694,7,6,0,0,1694,1695,7,22,0,0,1695,1696,7,0,0,0,1696, + 1697,7,9,0,0,1697,1698,7,4,0,0,1698,300,1,0,0,0,1699,1700,7,9,0, + 0,1700,1701,7,8,0,0,1701,1702,7,19,0,0,1702,1703,7,2,0,0,1703,1704, + 7,6,0,0,1704,1705,7,7,0,0,1705,1706,7,0,0,0,1706,1707,7,5,0,0,1707, + 1708,7,6,0,0,1708,1709,7,14,0,0,1709,1710,7,3,0,0,1710,302,1,0,0, + 0,1711,1712,7,19,0,0,1712,1713,7,9,0,0,1713,1714,7,6,0,0,1714,1715, + 7,23,0,0,1715,1716,7,6,0,0,1716,1717,7,2,0,0,1717,1718,7,8,0,0,1718, + 1719,7,11,0,0,1719,1720,7,8,0,0,1720,1721,7,10,0,0,1721,304,1,0, + 0,0,1722,1723,7,19,0,0,1723,1724,7,9,0,0,1724,1725,7,14,0,0,1725, + 1726,7,19,0,0,1726,1727,7,8,0,0,1727,1728,7,9,0,0,1728,1729,7,5, + 0,0,1729,1730,7,6,0,0,1730,1731,7,8,0,0,1731,1732,7,10,0,0,1732, + 306,1,0,0,0,1733,1734,7,9,0,0,1734,1735,7,0,0,0,1735,1736,7,3,0, + 0,1736,1737,7,11,0,0,1737,1738,7,8,0,0,1738,308,1,0,0,0,1739,1740, + 7,9,0,0,1740,1741,7,8,0,0,1741,1742,7,7,0,0,1742,1743,7,14,0,0,1743, + 1744,7,23,0,0,1744,1745,7,8,0,0,1745,1746,7,9,0,0,1746,310,1,0,0, + 0,1747,1748,7,9,0,0,1748,1749,7,8,0,0,1749,1750,7,3,0,0,1750,1751, + 7,0,0,0,1751,1752,7,22,0,0,1752,1753,7,8,0,0,1753,312,1,0,0,0,1754, + 1755,7,9,0,0,1755,1756,7,8,0,0,1756,1757,7,19,0,0,1757,1758,7,8, + 0,0,1758,1759,7,0,0,0,1759,1760,7,5,0,0,1760,1761,7,0,0,0,1761,1762, + 7,16,0,0,1762,1763,7,2,0,0,1763,1764,7,8,0,0,1764,314,1,0,0,0,1765, + 1766,7,9,0,0,1766,1767,7,8,0,0,1767,1768,7,19,0,0,1768,1769,7,2, + 0,0,1769,1770,7,0,0,0,1770,1771,7,7,0,0,1771,1772,7,8,0,0,1772,316, + 1,0,0,0,1773,1774,7,9,0,0,1774,1775,7,8,0,0,1775,1776,7,10,0,0,1776, + 1777,7,5,0,0,1777,1778,7,9,0,0,1778,1779,7,6,0,0,1779,1780,7,7,0, + 0,1780,1781,7,5,0,0,1781,318,1,0,0,0,1782,1783,7,9,0,0,1783,1784, + 7,8,0,0,1784,1785,7,5,0,0,1785,1786,7,12,0,0,1786,1787,7,9,0,0,1787, + 1788,7,3,0,0,1788,1789,7,10,0,0,1789,320,1,0,0,0,1790,1791,7,9,0, + 0,1791,1792,7,8,0,0,1792,1793,7,23,0,0,1793,1794,7,14,0,0,1794,1795, + 7,18,0,0,1795,1796,7,8,0,0,1796,322,1,0,0,0,1797,1798,7,9,0,0,1798, + 1799,7,8,0,0,1799,1800,7,20,0,0,1800,1801,7,9,0,0,1801,1802,7,8, + 0,0,1802,1803,7,10,0,0,1803,1804,7,13,0,0,1804,324,1,0,0,0,1805, + 1806,7,9,0,0,1806,1807,7,8,0,0,1807,1808,7,11,0,0,1808,1809,7,8, + 0,0,1809,1810,7,21,0,0,1810,1811,7,19,0,0,1811,326,1,0,0,0,1812, + 1813,7,9,0,0,1813,1814,7,2,0,0,1814,1815,7,6,0,0,1815,1816,7,18, + 0,0,1816,1817,7,8,0,0,1817,328,1,0,0,0,1818,1819,7,9,0,0,1819,1820, + 7,6,0,0,1820,1821,7,11,0,0,1821,1822,7,13,0,0,1822,1823,7,5,0,0, + 1823,330,1,0,0,0,1824,1825,7,9,0,0,1825,1826,7,14,0,0,1826,1827, + 7,2,0,0,1827,1828,7,8,0,0,1828,332,1,0,0,0,1829,1830,7,9,0,0,1830, + 1831,7,14,0,0,1831,1832,7,2,0,0,1832,1833,7,8,0,0,1833,1834,7,10, + 0,0,1834,334,1,0,0,0,1835,1836,7,9,0,0,1836,1837,7,14,0,0,1837,1838, + 7,17,0,0,1838,336,1,0,0,0,1839,1840,7,9,0,0,1840,1841,7,14,0,0,1841, + 1842,7,17,0,0,1842,1843,7,10,0,0,1843,338,1,0,0,0,1844,1845,7,10, + 0,0,1845,1846,7,7,0,0,1846,1847,7,13,0,0,1847,1848,7,8,0,0,1848, + 1849,7,22,0,0,1849,1850,7,0,0,0,1850,340,1,0,0,0,1851,1852,7,10, + 0,0,1852,1853,7,7,0,0,1853,1854,7,13,0,0,1854,1855,7,8,0,0,1855, + 1856,7,22,0,0,1856,1857,7,0,0,0,1857,1858,7,10,0,0,1858,342,1,0, + 0,0,1859,1860,7,10,0,0,1860,1861,7,8,0,0,1861,1862,7,7,0,0,1862, + 1863,7,14,0,0,1863,1864,7,3,0,0,1864,1865,7,1,0,0,1865,344,1,0,0, + 0,1866,1867,7,10,0,0,1867,1868,7,8,0,0,1868,1869,7,7,0,0,1869,1870, + 7,14,0,0,1870,1871,7,3,0,0,1871,1872,7,1,0,0,1872,1873,7,10,0,0, + 1873,346,1,0,0,0,1874,1875,7,10,0,0,1875,1876,7,8,0,0,1876,1877, + 7,2,0,0,1877,1878,7,8,0,0,1878,1879,7,7,0,0,1879,1880,7,5,0,0,1880, + 348,1,0,0,0,1881,1882,7,10,0,0,1882,1883,7,8,0,0,1883,1884,7,9,0, + 0,1884,1885,7,1,0,0,1885,1886,7,8,0,0,1886,1887,7,19,0,0,1887,1888, + 7,9,0,0,1888,1889,7,14,0,0,1889,1890,7,19,0,0,1890,1891,7,8,0,0, + 1891,1892,7,9,0,0,1892,1893,7,5,0,0,1893,1894,7,6,0,0,1894,1895, + 7,8,0,0,1895,1896,7,10,0,0,1896,350,1,0,0,0,1897,1898,7,10,0,0,1898, + 1899,7,8,0,0,1899,1900,7,5,0,0,1900,352,1,0,0,0,1901,1902,7,10,0, + 0,1902,1903,7,8,0,0,1903,1904,7,22,0,0,1904,1905,7,6,0,0,1905,354, + 1,0,0,0,1906,1907,7,10,0,0,1907,1908,7,8,0,0,1908,1909,7,9,0,0,1909, + 1910,7,23,0,0,1910,1911,7,8,0,0,1911,1912,7,9,0,0,1912,356,1,0,0, + 0,1913,1914,7,10,0,0,1914,1915,7,13,0,0,1915,1916,7,14,0,0,1916, + 1917,7,17,0,0,1917,358,1,0,0,0,1918,1919,7,10,0,0,1919,1920,7,13, + 0,0,1920,1921,7,12,0,0,1921,1922,7,5,0,0,1922,1923,7,1,0,0,1923, + 1924,7,14,0,0,1924,1925,7,17,0,0,1925,1926,7,3,0,0,1926,360,1,0, + 0,0,1927,1928,7,10,0,0,1928,1929,7,14,0,0,1929,1930,7,22,0,0,1930, + 1931,7,8,0,0,1931,362,1,0,0,0,1932,1933,7,10,0,0,1933,1934,7,5,0, + 0,1934,1935,7,0,0,0,1935,1936,7,5,0,0,1936,1937,7,10,0,0,1937,364, + 1,0,0,0,1938,1939,7,10,0,0,1939,1940,7,5,0,0,1940,1941,7,9,0,0,1941, + 1942,7,0,0,0,1942,1943,7,6,0,0,1943,1944,7,11,0,0,1944,1945,7,13, + 0,0,1945,1946,7,5,0,0,1946,1947,5,95,0,0,1947,1948,7,24,0,0,1948, + 1949,7,14,0,0,1949,1950,7,6,0,0,1950,1951,7,3,0,0,1951,366,1,0,0, + 0,1952,1953,7,10,0,0,1953,1954,7,12,0,0,1954,1955,7,16,0,0,1955, + 1956,7,10,0,0,1956,1957,7,5,0,0,1957,1958,7,9,0,0,1958,1959,7,6, + 0,0,1959,1960,7,3,0,0,1960,1961,7,11,0,0,1961,368,1,0,0,0,1962,1963, + 7,10,0,0,1963,1964,7,4,0,0,1964,1965,7,10,0,0,1965,1966,7,5,0,0, + 1966,1967,7,8,0,0,1967,1968,7,22,0,0,1968,370,1,0,0,0,1969,1970, + 7,10,0,0,1970,1971,7,4,0,0,1971,1972,7,22,0,0,1972,1973,7,16,0,0, + 1973,1974,7,14,0,0,1974,1975,7,2,0,0,1975,372,1,0,0,0,1976,1977, + 7,10,0,0,1977,1978,7,8,0,0,1978,1979,7,9,0,0,1979,1980,7,6,0,0,1980, + 1981,7,0,0,0,1981,1982,7,2,0,0,1982,1983,7,6,0,0,1983,1984,7,15, + 0,0,1984,1985,7,8,0,0,1985,1986,5,95,0,0,1986,1987,7,20,0,0,1987, + 1988,7,3,0,0,1988,374,1,0,0,0,1989,1990,7,5,0,0,1990,1991,7,0,0, + 0,1991,1992,7,16,0,0,1992,1993,7,2,0,0,1993,1994,7,8,0,0,1994,376, + 1,0,0,0,1995,1996,7,5,0,0,1996,1997,7,0,0,0,1997,1998,7,16,0,0,1998, + 1999,7,2,0,0,1999,2000,7,8,0,0,2000,2001,7,10,0,0,2001,378,1,0,0, + 0,2002,2003,7,5,0,0,2003,2004,7,0,0,0,2004,2005,7,16,0,0,2005,2006, + 7,2,0,0,2006,2007,7,8,0,0,2007,2008,7,10,0,0,2008,2009,7,0,0,0,2009, + 2010,7,22,0,0,2010,2011,7,19,0,0,2011,2012,7,2,0,0,2012,2013,7,8, + 0,0,2013,380,1,0,0,0,2014,2015,7,5,0,0,2015,2016,7,8,0,0,2016,2017, + 7,9,0,0,2017,2018,7,22,0,0,2018,2019,7,6,0,0,2019,2020,7,3,0,0,2020, + 2021,7,0,0,0,2021,2022,7,5,0,0,2022,2023,7,8,0,0,2023,2024,7,1,0, + 0,2024,2025,5,32,0,0,2025,382,1,0,0,0,2026,2027,7,5,0,0,2027,2028, + 7,13,0,0,2028,2029,7,8,0,0,2029,2030,7,3,0,0,2030,384,1,0,0,0,2031, + 2032,7,5,0,0,2032,2033,7,14,0,0,2033,386,1,0,0,0,2034,2035,7,5,0, + 0,2035,2036,7,9,0,0,2036,2037,7,12,0,0,2037,2038,7,8,0,0,2038,388, + 1,0,0,0,2039,2040,7,5,0,0,2040,2041,7,9,0,0,2041,2042,7,4,0,0,2042, + 2043,5,95,0,0,2043,2044,7,7,0,0,2044,2045,7,0,0,0,2045,2046,7,10, + 0,0,2046,2047,7,5,0,0,2047,390,1,0,0,0,2048,2049,7,5,0,0,2049,2050, + 7,9,0,0,2050,2051,7,12,0,0,2051,2052,7,3,0,0,2052,2053,7,7,0,0,2053, + 2054,7,0,0,0,2054,2055,7,5,0,0,2055,2056,7,8,0,0,2056,392,1,0,0, + 0,2057,2058,7,12,0,0,2058,2059,7,3,0,0,2059,2060,7,7,0,0,2060,2061, + 7,0,0,0,2061,2062,7,7,0,0,2062,2063,7,13,0,0,2063,2064,7,8,0,0,2064, + 2065,7,1,0,0,2065,394,1,0,0,0,2066,2067,7,12,0,0,2067,2068,7,8,0, + 0,2068,2069,7,10,0,0,2069,2070,7,7,0,0,2070,2071,7,0,0,0,2071,2072, + 7,19,0,0,2072,2073,7,8,0,0,2073,396,1,0,0,0,2074,2075,7,12,0,0,2075, + 2076,7,3,0,0,2076,2077,7,16,0,0,2077,2078,7,14,0,0,2078,2079,7,12, + 0,0,2079,2080,7,3,0,0,2080,2081,7,1,0,0,2081,2082,7,8,0,0,2082,2083, + 7,1,0,0,2083,398,1,0,0,0,2084,2085,7,12,0,0,2085,2086,7,3,0,0,2086, + 2087,7,6,0,0,2087,2088,7,14,0,0,2088,2089,7,3,0,0,2089,400,1,0,0, + 0,2090,2091,7,12,0,0,2091,2092,7,3,0,0,2092,2093,7,3,0,0,2093,2094, + 7,8,0,0,2094,2095,7,10,0,0,2095,2096,7,5,0,0,2096,402,1,0,0,0,2097, + 2098,7,12,0,0,2098,2099,7,3,0,0,2099,2100,7,10,0,0,2100,2101,7,8, + 0,0,2101,2102,7,5,0,0,2102,404,1,0,0,0,2103,2104,7,12,0,0,2104,2105, + 7,10,0,0,2105,2106,7,8,0,0,2106,406,1,0,0,0,2107,2108,7,12,0,0,2108, + 2109,7,10,0,0,2109,2110,7,8,0,0,2110,2111,7,9,0,0,2111,408,1,0,0, + 0,2112,2113,7,12,0,0,2113,2114,7,10,0,0,2114,2115,7,6,0,0,2115,2116, + 7,3,0,0,2116,2117,7,11,0,0,2117,410,1,0,0,0,2118,2119,7,12,0,0,2119, + 2120,7,19,0,0,2120,2121,7,1,0,0,2121,2122,7,0,0,0,2122,2123,7,5, + 0,0,2123,2124,7,8,0,0,2124,2125,5,95,0,0,2125,2126,7,20,0,0,2126, + 2127,7,3,0,0,2127,412,1,0,0,0,2128,2129,7,12,0,0,2129,2130,7,19, + 0,0,2130,2131,7,10,0,0,2131,2132,7,8,0,0,2132,2133,7,9,0,0,2133, + 2134,7,5,0,0,2134,414,1,0,0,0,2135,2136,7,12,0,0,2136,2137,7,3,0, + 0,2137,2138,7,18,0,0,2138,2139,7,3,0,0,2139,2140,7,14,0,0,2140,2141, + 7,17,0,0,2141,2142,7,3,0,0,2142,416,1,0,0,0,2143,2144,7,12,0,0,2144, + 2145,7,9,0,0,2145,2146,7,6,0,0,2146,418,1,0,0,0,2147,2148,7,23,0, + 0,2148,2149,7,0,0,0,2149,2150,7,2,0,0,2150,2151,7,12,0,0,2151,2152, + 7,8,0,0,2152,420,1,0,0,0,2153,2154,7,23,0,0,2154,2155,7,0,0,0,2155, + 2156,7,2,0,0,2156,2157,7,12,0,0,2157,2158,7,8,0,0,2158,2159,7,10, + 0,0,2159,422,1,0,0,0,2160,2161,7,23,0,0,2161,2162,7,6,0,0,2162,2163, + 7,8,0,0,2163,2164,7,17,0,0,2164,424,1,0,0,0,2165,2166,7,23,0,0,2166, + 2167,7,6,0,0,2167,2168,7,8,0,0,2168,2169,7,17,0,0,2169,2170,7,10, + 0,0,2170,426,1,0,0,0,2171,2172,7,17,0,0,2172,2173,7,13,0,0,2173, + 2174,7,8,0,0,2174,2175,7,3,0,0,2175,428,1,0,0,0,2176,2177,7,17,0, + 0,2177,2178,7,13,0,0,2178,2179,7,8,0,0,2179,2180,7,9,0,0,2180,2181, + 7,8,0,0,2181,430,1,0,0,0,2182,2183,7,17,0,0,2183,2184,7,6,0,0,2184, + 2185,7,5,0,0,2185,2186,7,13,0,0,2186,432,1,0,0,0,2187,2188,7,4,0, + 0,2188,2189,7,8,0,0,2189,2190,7,0,0,0,2190,2191,7,9,0,0,2191,434, + 1,0,0,0,2192,2193,7,4,0,0,2193,2194,7,8,0,0,2194,2195,7,0,0,0,2195, + 2196,7,9,0,0,2196,2197,7,10,0,0,2197,436,1,0,0,0,2198,2199,7,5,0, + 0,2199,2200,7,8,0,0,2200,2201,7,21,0,0,2201,2202,7,5,0,0,2202,2203, + 7,20,0,0,2203,2204,7,6,0,0,2204,2205,7,2,0,0,2205,2206,7,8,0,0,2206, + 438,1,0,0,0,2207,2208,7,14,0,0,2208,2209,7,9,0,0,2209,2210,7,7,0, + 0,2210,440,1,0,0,0,2211,2212,7,0,0,0,2212,2213,7,23,0,0,2213,2214, + 7,9,0,0,2214,2215,7,14,0,0,2215,442,1,0,0,0,2216,2217,7,10,0,0,2217, + 2218,7,8,0,0,2218,2219,7,25,0,0,2219,2220,7,12,0,0,2220,2221,7,8, + 0,0,2221,2222,7,3,0,0,2222,2223,7,7,0,0,2223,2224,7,8,0,0,2224,2225, + 7,20,0,0,2225,2226,7,6,0,0,2226,2227,7,2,0,0,2227,2228,7,8,0,0,2228, + 444,1,0,0,0,2229,2230,7,9,0,0,2230,2231,7,7,0,0,2231,2232,7,20,0, + 0,2232,2233,7,6,0,0,2233,2234,7,2,0,0,2234,2235,7,8,0,0,2235,446, + 1,0,0,0,2236,2237,7,9,0,0,2237,2238,7,8,0,0,2238,2239,7,20,0,0,2239, + 2240,7,8,0,0,2240,2241,7,9,0,0,2241,2242,7,8,0,0,2242,2243,7,3,0, + 0,2243,2244,7,7,0,0,2244,2245,7,8,0,0,2245,2246,7,10,0,0,2246,448, + 1,0,0,0,2247,2248,7,3,0,0,2248,2249,7,14,0,0,2249,2250,7,23,0,0, + 2250,2251,7,0,0,0,2251,2252,7,2,0,0,2252,2253,7,6,0,0,2253,2254, + 7,1,0,0,2254,2255,7,0,0,0,2255,2256,7,5,0,0,2256,2257,7,8,0,0,2257, + 450,1,0,0,0,2258,2259,7,9,0,0,2259,2260,7,8,0,0,2260,2261,7,2,0, + 0,2261,2262,7,4,0,0,2262,452,1,0,0,0,2263,2264,7,16,0,0,2264,2265, + 7,6,0,0,2265,2266,7,3,0,0,2266,2267,7,0,0,0,2267,2268,7,9,0,0,2268, + 2269,7,4,0,0,2269,454,1,0,0,0,2270,2271,7,16,0,0,2271,2272,7,6,0, + 0,2272,2273,7,11,0,0,2273,2274,7,6,0,0,2274,2275,7,3,0,0,2275,2276, + 7,5,0,0,2276,456,1,0,0,0,2277,2278,7,16,0,0,2278,2279,7,14,0,0,2279, + 2280,7,14,0,0,2280,2281,7,2,0,0,2281,2282,7,8,0,0,2282,2283,7,0, + 0,0,2283,2284,7,3,0,0,2284,458,1,0,0,0,2285,2286,7,7,0,0,2286,2287, + 7,13,0,0,2287,2288,7,0,0,0,2288,2289,7,9,0,0,2289,460,1,0,0,0,2290, + 2291,7,1,0,0,2291,2292,7,0,0,0,2292,2293,7,5,0,0,2293,2294,7,8,0, + 0,2294,462,1,0,0,0,2295,2296,7,1,0,0,2296,2297,7,8,0,0,2297,2298, + 7,7,0,0,2298,2299,7,6,0,0,2299,2300,7,22,0,0,2300,2301,7,0,0,0,2301, + 2302,7,2,0,0,2302,464,1,0,0,0,2303,2304,7,1,0,0,2304,2305,7,14,0, + 0,2305,2306,7,12,0,0,2306,2307,7,16,0,0,2307,2308,7,2,0,0,2308,2309, + 7,8,0,0,2309,466,1,0,0,0,2310,2311,7,6,0,0,2311,2312,7,3,0,0,2312, + 2313,7,5,0,0,2313,468,1,0,0,0,2314,2315,7,22,0,0,2315,2316,7,0,0, + 0,2316,2317,7,19,0,0,2317,470,1,0,0,0,2318,2319,7,9,0,0,2319,2320, + 7,8,0,0,2320,2321,7,0,0,0,2321,2322,7,2,0,0,2322,472,1,0,0,0,2323, + 2324,7,10,0,0,2324,2325,7,22,0,0,2325,2326,7,0,0,0,2326,2327,7,2, + 0,0,2327,2328,7,2,0,0,2328,2329,7,6,0,0,2329,2330,7,3,0,0,2330,2331, + 7,5,0,0,2331,474,1,0,0,0,2332,2333,7,20,0,0,2333,2334,7,2,0,0,2334, + 2335,7,14,0,0,2335,2336,7,0,0,0,2336,2337,7,5,0,0,2337,476,1,0,0, + 0,2338,2339,7,10,0,0,2339,2340,7,5,0,0,2340,2341,7,9,0,0,2341,2342, + 7,6,0,0,2342,2343,7,3,0,0,2343,2344,7,11,0,0,2344,478,1,0,0,0,2345, + 2346,7,10,0,0,2346,2347,7,5,0,0,2347,2348,7,9,0,0,2348,2349,7,12, + 0,0,2349,2350,7,7,0,0,2350,2351,7,5,0,0,2351,480,1,0,0,0,2352,2353, + 7,5,0,0,2353,2354,7,6,0,0,2354,2355,7,22,0,0,2355,2356,7,8,0,0,2356, + 2357,7,10,0,0,2357,2358,7,5,0,0,2358,2359,7,0,0,0,2359,2360,7,22, + 0,0,2360,2361,7,19,0,0,2361,482,1,0,0,0,2362,2363,7,5,0,0,2363,2364, + 7,6,0,0,2364,2365,7,3,0,0,2365,2366,7,4,0,0,2366,2367,7,6,0,0,2367, + 2368,7,3,0,0,2368,2369,7,5,0,0,2369,484,1,0,0,0,2370,2371,7,23,0, + 0,2371,2372,7,0,0,0,2372,2373,7,9,0,0,2373,2374,7,7,0,0,2374,2375, + 7,13,0,0,2375,2376,7,0,0,0,2376,2377,7,9,0,0,2377,486,1,0,0,0,2378, + 2379,7,7,0,0,2379,2380,7,14,0,0,2380,2381,7,22,0,0,2381,2382,7,19, + 0,0,2382,2383,7,2,0,0,2383,2384,7,8,0,0,2384,2385,7,21,0,0,2385, + 488,1,0,0,0,2386,2387,5,39,0,0,2387,2388,7,3,0,0,2388,2389,7,12, + 0,0,2389,2390,7,22,0,0,2390,2391,7,1,0,0,2391,2392,7,23,0,0,2392, + 2393,7,10,0,0,2393,2394,5,39,0,0,2394,490,1,0,0,0,2395,2396,5,39, + 0,0,2396,2397,7,3,0,0,2397,2398,7,12,0,0,2398,2399,7,22,0,0,2399, + 2400,7,3,0,0,2400,2401,7,12,0,0,2401,2402,7,2,0,0,2402,2403,7,2, + 0,0,2403,2404,7,10,0,0,2404,2405,5,39,0,0,2405,492,1,0,0,0,2406, + 2407,5,39,0,0,2407,2408,7,0,0,0,2408,2409,7,23,0,0,2409,2410,7,11, + 0,0,2410,2411,7,10,0,0,2411,2412,7,6,0,0,2412,2413,7,15,0,0,2413, + 2414,7,8,0,0,2414,2415,5,39,0,0,2415,494,1,0,0,0,2416,2417,5,39, + 0,0,2417,2418,7,22,0,0,2418,2419,7,0,0,0,2419,2420,7,21,0,0,2420, + 2421,7,10,0,0,2421,2422,7,6,0,0,2422,2423,7,15,0,0,2423,2424,7,8, + 0,0,2424,2425,5,39,0,0,2425,496,1,0,0,0,2426,2427,5,61,0,0,2427, + 498,1,0,0,0,2428,2429,5,60,0,0,2429,2433,5,62,0,0,2430,2431,5,33, + 0,0,2431,2433,5,61,0,0,2432,2428,1,0,0,0,2432,2430,1,0,0,0,2433, + 500,1,0,0,0,2434,2435,5,60,0,0,2435,502,1,0,0,0,2436,2437,5,60,0, + 0,2437,2438,5,61,0,0,2438,504,1,0,0,0,2439,2440,5,62,0,0,2440,506, + 1,0,0,0,2441,2442,5,62,0,0,2442,2443,5,61,0,0,2443,508,1,0,0,0,2444, + 2445,5,43,0,0,2445,510,1,0,0,0,2446,2447,5,45,0,0,2447,512,1,0,0, + 0,2448,2449,5,42,0,0,2449,514,1,0,0,0,2450,2451,5,47,0,0,2451,516, + 1,0,0,0,2452,2453,5,37,0,0,2453,518,1,0,0,0,2454,2455,5,124,0,0, + 2455,2456,5,124,0,0,2456,520,1,0,0,0,2457,2458,5,46,0,0,2458,522, + 1,0,0,0,2459,2460,5,59,0,0,2460,524,1,0,0,0,2461,2462,5,44,0,0,2462, + 526,1,0,0,0,2463,2464,5,58,0,0,2464,528,1,0,0,0,2465,2466,5,40,0, + 0,2466,530,1,0,0,0,2467,2468,5,41,0,0,2468,532,1,0,0,0,2469,2470, + 5,91,0,0,2470,534,1,0,0,0,2471,2472,5,93,0,0,2472,536,1,0,0,0,2473, + 2474,5,123,0,0,2474,538,1,0,0,0,2475,2476,5,125,0,0,2476,540,1,0, + 0,0,2477,2478,5,124,0,0,2478,542,1,0,0,0,2479,2480,5,63,0,0,2480, + 544,1,0,0,0,2481,2482,5,45,0,0,2482,2483,5,62,0,0,2483,546,1,0,0, + 0,2484,2490,5,39,0,0,2485,2489,8,26,0,0,2486,2487,5,39,0,0,2487, + 2489,5,39,0,0,2488,2485,1,0,0,0,2488,2486,1,0,0,0,2489,2492,1,0, + 0,0,2490,2488,1,0,0,0,2490,2491,1,0,0,0,2491,2493,1,0,0,0,2492,2490, + 1,0,0,0,2493,2505,5,39,0,0,2494,2500,5,34,0,0,2495,2499,8,27,0,0, + 2496,2497,5,34,0,0,2497,2499,5,34,0,0,2498,2495,1,0,0,0,2498,2496, + 1,0,0,0,2499,2502,1,0,0,0,2500,2498,1,0,0,0,2500,2501,1,0,0,0,2501, + 2503,1,0,0,0,2502,2500,1,0,0,0,2503,2505,5,34,0,0,2504,2484,1,0, + 0,0,2504,2494,1,0,0,0,2505,548,1,0,0,0,2506,2507,7,12,0,0,2507,2508, + 5,38,0,0,2508,2509,5,39,0,0,2509,2515,1,0,0,0,2510,2514,8,26,0,0, + 2511,2512,5,39,0,0,2512,2514,5,39,0,0,2513,2510,1,0,0,0,2513,2511, + 1,0,0,0,2514,2517,1,0,0,0,2515,2513,1,0,0,0,2515,2516,1,0,0,0,2516, + 2518,1,0,0,0,2517,2515,1,0,0,0,2518,2519,5,39,0,0,2519,550,1,0,0, + 0,2520,2521,7,21,0,0,2521,2522,5,39,0,0,2522,2526,1,0,0,0,2523,2525, + 8,26,0,0,2524,2523,1,0,0,0,2525,2528,1,0,0,0,2526,2524,1,0,0,0,2526, + 2527,1,0,0,0,2527,2529,1,0,0,0,2528,2526,1,0,0,0,2529,2530,5,39, + 0,0,2530,552,1,0,0,0,2531,2533,3,575,287,0,2532,2531,1,0,0,0,2533, + 2534,1,0,0,0,2534,2532,1,0,0,0,2534,2535,1,0,0,0,2535,554,1,0,0, + 0,2536,2538,3,575,287,0,2537,2536,1,0,0,0,2538,2539,1,0,0,0,2539, + 2537,1,0,0,0,2539,2540,1,0,0,0,2540,2541,1,0,0,0,2541,2545,5,46, + 0,0,2542,2544,3,575,287,0,2543,2542,1,0,0,0,2544,2547,1,0,0,0,2545, + 2543,1,0,0,0,2545,2546,1,0,0,0,2546,2555,1,0,0,0,2547,2545,1,0,0, + 0,2548,2550,5,46,0,0,2549,2551,3,575,287,0,2550,2549,1,0,0,0,2551, + 2552,1,0,0,0,2552,2550,1,0,0,0,2552,2553,1,0,0,0,2553,2555,1,0,0, + 0,2554,2537,1,0,0,0,2554,2548,1,0,0,0,2555,556,1,0,0,0,2556,2558, + 3,575,287,0,2557,2556,1,0,0,0,2558,2559,1,0,0,0,2559,2557,1,0,0, + 0,2559,2560,1,0,0,0,2560,2568,1,0,0,0,2561,2565,5,46,0,0,2562,2564, + 3,575,287,0,2563,2562,1,0,0,0,2564,2567,1,0,0,0,2565,2563,1,0,0, + 0,2565,2566,1,0,0,0,2566,2569,1,0,0,0,2567,2565,1,0,0,0,2568,2561, + 1,0,0,0,2568,2569,1,0,0,0,2569,2570,1,0,0,0,2570,2571,3,573,286, + 0,2571,2581,1,0,0,0,2572,2574,5,46,0,0,2573,2575,3,575,287,0,2574, + 2573,1,0,0,0,2575,2576,1,0,0,0,2576,2574,1,0,0,0,2576,2577,1,0,0, + 0,2577,2578,1,0,0,0,2578,2579,3,573,286,0,2579,2581,1,0,0,0,2580, + 2557,1,0,0,0,2580,2572,1,0,0,0,2581,558,1,0,0,0,2582,2585,3,577, + 288,0,2583,2585,5,95,0,0,2584,2582,1,0,0,0,2584,2583,1,0,0,0,2585, + 2591,1,0,0,0,2586,2590,3,577,288,0,2587,2590,3,575,287,0,2588,2590, + 7,28,0,0,2589,2586,1,0,0,0,2589,2587,1,0,0,0,2589,2588,1,0,0,0,2590, + 2593,1,0,0,0,2591,2589,1,0,0,0,2591,2592,1,0,0,0,2592,560,1,0,0, + 0,2593,2591,1,0,0,0,2594,2598,3,575,287,0,2595,2599,3,577,288,0, + 2596,2599,3,575,287,0,2597,2599,7,28,0,0,2598,2595,1,0,0,0,2598, + 2596,1,0,0,0,2598,2597,1,0,0,0,2599,2600,1,0,0,0,2600,2598,1,0,0, + 0,2600,2601,1,0,0,0,2601,562,1,0,0,0,2602,2608,5,34,0,0,2603,2607, + 8,27,0,0,2604,2605,5,34,0,0,2605,2607,5,34,0,0,2606,2603,1,0,0,0, + 2606,2604,1,0,0,0,2607,2610,1,0,0,0,2608,2606,1,0,0,0,2608,2609, + 1,0,0,0,2609,2611,1,0,0,0,2610,2608,1,0,0,0,2611,2612,5,34,0,0,2612, + 564,1,0,0,0,2613,2619,5,96,0,0,2614,2618,8,29,0,0,2615,2616,5,96, + 0,0,2616,2618,5,96,0,0,2617,2614,1,0,0,0,2617,2615,1,0,0,0,2618, + 2621,1,0,0,0,2619,2617,1,0,0,0,2619,2620,1,0,0,0,2620,2622,1,0,0, + 0,2621,2619,1,0,0,0,2622,2623,5,96,0,0,2623,566,1,0,0,0,2624,2625, + 7,5,0,0,2625,2626,7,6,0,0,2626,2627,7,22,0,0,2627,2628,7,8,0,0,2628, + 2629,1,0,0,0,2629,2630,3,583,291,0,2630,2631,7,17,0,0,2631,2632, + 7,6,0,0,2632,2633,7,5,0,0,2633,2634,7,13,0,0,2634,2635,1,0,0,0,2635, + 2636,3,583,291,0,2636,2637,7,5,0,0,2637,2638,7,6,0,0,2638,2639,7, + 22,0,0,2639,2640,7,8,0,0,2640,2641,1,0,0,0,2641,2642,3,583,291,0, + 2642,2643,7,15,0,0,2643,2644,7,14,0,0,2644,2645,7,3,0,0,2645,2646, + 7,8,0,0,2646,568,1,0,0,0,2647,2648,7,5,0,0,2648,2649,7,6,0,0,2649, + 2650,7,22,0,0,2650,2651,7,8,0,0,2651,2652,7,10,0,0,2652,2653,7,5, + 0,0,2653,2654,7,0,0,0,2654,2655,7,22,0,0,2655,2656,7,19,0,0,2656, + 2657,1,0,0,0,2657,2658,3,583,291,0,2658,2659,7,17,0,0,2659,2660, + 7,6,0,0,2660,2661,7,5,0,0,2661,2662,7,13,0,0,2662,2663,1,0,0,0,2663, + 2664,3,583,291,0,2664,2665,7,5,0,0,2665,2666,7,6,0,0,2666,2667,7, + 22,0,0,2667,2668,7,8,0,0,2668,2669,1,0,0,0,2669,2670,3,583,291,0, + 2670,2671,7,15,0,0,2671,2672,7,14,0,0,2672,2673,7,3,0,0,2673,2674, + 7,8,0,0,2674,570,1,0,0,0,2675,2676,7,1,0,0,2676,2677,7,14,0,0,2677, + 2678,7,12,0,0,2678,2679,7,16,0,0,2679,2680,7,2,0,0,2680,2681,7,8, + 0,0,2681,2682,1,0,0,0,2682,2683,3,583,291,0,2683,2684,7,19,0,0,2684, + 2685,7,9,0,0,2685,2686,7,8,0,0,2686,2687,7,7,0,0,2687,2688,7,6,0, + 0,2688,2689,7,10,0,0,2689,2690,7,6,0,0,2690,2691,7,14,0,0,2691,2692, + 7,3,0,0,2692,572,1,0,0,0,2693,2695,7,8,0,0,2694,2696,7,30,0,0,2695, + 2694,1,0,0,0,2695,2696,1,0,0,0,2696,2698,1,0,0,0,2697,2699,3,575, + 287,0,2698,2697,1,0,0,0,2699,2700,1,0,0,0,2700,2698,1,0,0,0,2700, + 2701,1,0,0,0,2701,574,1,0,0,0,2702,2703,7,31,0,0,2703,576,1,0,0, + 0,2704,2705,7,32,0,0,2705,578,1,0,0,0,2706,2707,5,45,0,0,2707,2708, + 5,45,0,0,2708,2712,1,0,0,0,2709,2711,8,33,0,0,2710,2709,1,0,0,0, + 2711,2714,1,0,0,0,2712,2710,1,0,0,0,2712,2713,1,0,0,0,2713,2716, + 1,0,0,0,2714,2712,1,0,0,0,2715,2717,5,13,0,0,2716,2715,1,0,0,0,2716, + 2717,1,0,0,0,2717,2719,1,0,0,0,2718,2720,5,10,0,0,2719,2718,1,0, + 0,0,2719,2720,1,0,0,0,2720,2721,1,0,0,0,2721,2722,6,289,0,0,2722, + 580,1,0,0,0,2723,2724,5,47,0,0,2724,2725,5,42,0,0,2725,2729,1,0, + 0,0,2726,2728,9,0,0,0,2727,2726,1,0,0,0,2728,2731,1,0,0,0,2729,2730, + 1,0,0,0,2729,2727,1,0,0,0,2730,2732,1,0,0,0,2731,2729,1,0,0,0,2732, + 2733,5,42,0,0,2733,2734,5,47,0,0,2734,2735,1,0,0,0,2735,2736,6,290, + 0,0,2736,582,1,0,0,0,2737,2739,7,34,0,0,2738,2737,1,0,0,0,2739,2740, + 1,0,0,0,2740,2738,1,0,0,0,2740,2741,1,0,0,0,2741,2742,1,0,0,0,2742, + 2743,6,291,0,0,2743,584,1,0,0,0,36,0,2432,2488,2490,2498,2500,2504, + 2513,2515,2526,2534,2539,2545,2552,2554,2559,2565,2568,2576,2580, + 2584,2589,2591,2598,2600,2606,2608,2617,2619,2695,2700,2712,2716, + 2719,2729,2740,1,0,1,0 ]; private static __ATN: antlr.ATN; diff --git a/src/lib/impala/ImpalaSqlParser.interp b/src/lib/impala/ImpalaSqlParser.interp index 20fbe20..da5ba8a 100644 --- a/src/lib/impala/ImpalaSqlParser.interp +++ b/src/lib/impala/ImpalaSqlParser.interp @@ -121,7 +121,6 @@ null 'LOCALTIME' 'LOCALTIMESTAMP' 'METADATA' -'MAP' 'MINUTE' 'MINUTES' 'MONTH' @@ -183,7 +182,6 @@ null 'SHUTDOWN' 'SOME' 'STATS' -'STRUCT' 'STRAIGHT_JOIN' 'SUBSTRING' 'SYSTEM' @@ -228,6 +226,24 @@ null 'REFERENCES' 'NOVALIDATE' 'RELY' +'BINARY' +'BIGINT' +'BOOLEAN' +'CHAR' +'DATE' +'DECIMAL' +'DOUBLE' +'INT' +'MAP' +'REAL' +'SMALLINT' +'FLOAT' +'STRING' +'STRUCT' +'TIMESTAMP' +'TINYINT' +'VARCHAR' +'COMPLEX' '\'NUMDVS\'' '\'NUMNULLS\'' '\'AVGSIZE\'' @@ -397,7 +413,6 @@ KW_LOAD KW_LOCALTIME KW_LOCALTIMESTAMP KW_METADATA -KW_MAP KW_MINUTE KW_MINUTES KW_MONTH @@ -459,7 +474,6 @@ KW_SHOW KW_SHUTDOWN KW_SOME KW_STATS -KW_STRUCT KW_STRAIGHT_JOIN KW_SUBSTRING KW_SYSTEM @@ -504,6 +518,24 @@ KW_RCFILE KW_REFERENCES KW_NOVALIDATE KW_RELY +KW_BINARY +KW_BIGINT +KW_BOOLEAN +KW_CHAR +KW_DATE +KW_DECIMAL +KW_DOUBLE +KW_INT +KW_MAP +KW_REAL +KW_SMALLINT +KW_FLOAT +KW_STRING +KW_STRUCT +KW_TIMESTAMP +KW_TINYINT +KW_VARCHAR +KW_COMPLEX STATS_NUMDVS STATS_NUMNULLS STATS_AVGSIZE @@ -716,6 +748,7 @@ interval intervalField normalForm type +dataType typeParameter baseType whenClause @@ -736,4 +769,4 @@ nonReserved atn: -[4, 1, 273, 2765, 2, 0, 7, 0, 2, 1, 7, 1, 2, 2, 7, 2, 2, 3, 7, 3, 2, 4, 7, 4, 2, 5, 7, 5, 2, 6, 7, 6, 2, 7, 7, 7, 2, 8, 7, 8, 2, 9, 7, 9, 2, 10, 7, 10, 2, 11, 7, 11, 2, 12, 7, 12, 2, 13, 7, 13, 2, 14, 7, 14, 2, 15, 7, 15, 2, 16, 7, 16, 2, 17, 7, 17, 2, 18, 7, 18, 2, 19, 7, 19, 2, 20, 7, 20, 2, 21, 7, 21, 2, 22, 7, 22, 2, 23, 7, 23, 2, 24, 7, 24, 2, 25, 7, 25, 2, 26, 7, 26, 2, 27, 7, 27, 2, 28, 7, 28, 2, 29, 7, 29, 2, 30, 7, 30, 2, 31, 7, 31, 2, 32, 7, 32, 2, 33, 7, 33, 2, 34, 7, 34, 2, 35, 7, 35, 2, 36, 7, 36, 2, 37, 7, 37, 2, 38, 7, 38, 2, 39, 7, 39, 2, 40, 7, 40, 2, 41, 7, 41, 2, 42, 7, 42, 2, 43, 7, 43, 2, 44, 7, 44, 2, 45, 7, 45, 2, 46, 7, 46, 2, 47, 7, 47, 2, 48, 7, 48, 2, 49, 7, 49, 2, 50, 7, 50, 2, 51, 7, 51, 2, 52, 7, 52, 2, 53, 7, 53, 2, 54, 7, 54, 2, 55, 7, 55, 2, 56, 7, 56, 2, 57, 7, 57, 2, 58, 7, 58, 2, 59, 7, 59, 2, 60, 7, 60, 2, 61, 7, 61, 2, 62, 7, 62, 2, 63, 7, 63, 2, 64, 7, 64, 2, 65, 7, 65, 2, 66, 7, 66, 2, 67, 7, 67, 2, 68, 7, 68, 2, 69, 7, 69, 2, 70, 7, 70, 2, 71, 7, 71, 2, 72, 7, 72, 2, 73, 7, 73, 2, 74, 7, 74, 2, 75, 7, 75, 2, 76, 7, 76, 2, 77, 7, 77, 2, 78, 7, 78, 2, 79, 7, 79, 2, 80, 7, 80, 2, 81, 7, 81, 2, 82, 7, 82, 2, 83, 7, 83, 2, 84, 7, 84, 2, 85, 7, 85, 2, 86, 7, 86, 2, 87, 7, 87, 2, 88, 7, 88, 2, 89, 7, 89, 2, 90, 7, 90, 2, 91, 7, 91, 2, 92, 7, 92, 2, 93, 7, 93, 2, 94, 7, 94, 2, 95, 7, 95, 2, 96, 7, 96, 2, 97, 7, 97, 2, 98, 7, 98, 2, 99, 7, 99, 2, 100, 7, 100, 2, 101, 7, 101, 2, 102, 7, 102, 2, 103, 7, 103, 2, 104, 7, 104, 2, 105, 7, 105, 2, 106, 7, 106, 2, 107, 7, 107, 2, 108, 7, 108, 2, 109, 7, 109, 2, 110, 7, 110, 2, 111, 7, 111, 2, 112, 7, 112, 2, 113, 7, 113, 2, 114, 7, 114, 2, 115, 7, 115, 2, 116, 7, 116, 2, 117, 7, 117, 2, 118, 7, 118, 2, 119, 7, 119, 2, 120, 7, 120, 2, 121, 7, 121, 2, 122, 7, 122, 2, 123, 7, 123, 2, 124, 7, 124, 2, 125, 7, 125, 2, 126, 7, 126, 2, 127, 7, 127, 2, 128, 7, 128, 2, 129, 7, 129, 2, 130, 7, 130, 2, 131, 7, 131, 2, 132, 7, 132, 2, 133, 7, 133, 2, 134, 7, 134, 2, 135, 7, 135, 2, 136, 7, 136, 2, 137, 7, 137, 2, 138, 7, 138, 2, 139, 7, 139, 2, 140, 7, 140, 2, 141, 7, 141, 2, 142, 7, 142, 2, 143, 7, 143, 2, 144, 7, 144, 2, 145, 7, 145, 2, 146, 7, 146, 2, 147, 7, 147, 2, 148, 7, 148, 2, 149, 7, 149, 2, 150, 7, 150, 2, 151, 7, 151, 2, 152, 7, 152, 2, 153, 7, 153, 2, 154, 7, 154, 2, 155, 7, 155, 2, 156, 7, 156, 2, 157, 7, 157, 2, 158, 7, 158, 2, 159, 7, 159, 2, 160, 7, 160, 2, 161, 7, 161, 2, 162, 7, 162, 2, 163, 7, 163, 2, 164, 7, 164, 2, 165, 7, 165, 2, 166, 7, 166, 2, 167, 7, 167, 2, 168, 7, 168, 2, 169, 7, 169, 2, 170, 7, 170, 2, 171, 7, 171, 2, 172, 7, 172, 2, 173, 7, 173, 2, 174, 7, 174, 2, 175, 7, 175, 2, 176, 7, 176, 2, 177, 7, 177, 2, 178, 7, 178, 2, 179, 7, 179, 2, 180, 7, 180, 2, 181, 7, 181, 1, 0, 5, 0, 366, 8, 0, 10, 0, 12, 0, 369, 9, 0, 1, 0, 1, 0, 1, 1, 1, 1, 3, 1, 375, 8, 1, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 399, 8, 2, 1, 3, 1, 3, 1, 3, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 3, 4, 412, 8, 4, 1, 5, 1, 5, 3, 5, 416, 8, 5, 1, 5, 1, 5, 3, 5, 420, 8, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 5, 5, 427, 8, 5, 10, 5, 12, 5, 430, 9, 5, 1, 5, 1, 5, 3, 5, 434, 8, 5, 1, 5, 1, 5, 3, 5, 438, 8, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 444, 8, 5, 3, 5, 446, 8, 5, 1, 5, 1, 5, 1, 5, 3, 5, 451, 8, 5, 1, 6, 1, 6, 3, 6, 455, 8, 6, 1, 6, 1, 6, 3, 6, 459, 8, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 466, 8, 6, 1, 6, 1, 6, 1, 6, 3, 6, 471, 8, 6, 1, 6, 1, 6, 1, 7, 1, 7, 3, 7, 477, 8, 7, 1, 7, 1, 7, 3, 7, 481, 8, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 5, 7, 488, 8, 7, 10, 7, 12, 7, 491, 9, 7, 1, 7, 1, 7, 1, 7, 1, 7, 3, 7, 497, 8, 7, 1, 7, 1, 7, 3, 7, 501, 8, 7, 1, 7, 1, 7, 1, 7, 3, 7, 506, 8, 7, 3, 7, 508, 8, 7, 1, 7, 1, 7, 1, 7, 3, 7, 513, 8, 7, 1, 7, 1, 7, 3, 7, 517, 8, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 3, 7, 524, 8, 7, 1, 7, 1, 7, 3, 7, 528, 8, 7, 1, 8, 1, 8, 1, 8, 3, 8, 533, 8, 8, 1, 8, 1, 8, 3, 8, 537, 8, 8, 1, 8, 1, 8, 3, 8, 541, 8, 8, 1, 8, 1, 8, 3, 8, 545, 8, 8, 1, 8, 1, 8, 1, 8, 1, 9, 1, 9, 1, 9, 3, 9, 553, 8, 9, 1, 9, 1, 9, 1, 9, 3, 9, 558, 8, 9, 1, 9, 1, 9, 3, 9, 562, 8, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 11, 1, 11, 3, 11, 570, 8, 11, 1, 11, 1, 11, 3, 11, 574, 8, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 5, 11, 581, 8, 11, 10, 11, 12, 11, 584, 9, 11, 3, 11, 586, 8, 11, 1, 11, 3, 11, 589, 8, 11, 1, 11, 1, 11, 1, 11, 1, 11, 3, 11, 595, 8, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 3, 11, 602, 8, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 3, 11, 613, 8, 11, 1, 11, 1, 11, 1, 11, 3, 11, 618, 8, 11, 1, 11, 1, 11, 1, 11, 3, 11, 623, 8, 11, 1, 11, 1, 11, 1, 11, 3, 11, 628, 8, 11, 1, 12, 1, 12, 1, 12, 3, 12, 633, 8, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 5, 12, 640, 8, 12, 10, 12, 12, 12, 643, 9, 12, 3, 12, 645, 8, 12, 1, 12, 3, 12, 648, 8, 12, 1, 12, 1, 12, 3, 12, 652, 8, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 3, 13, 678, 8, 13, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 3, 15, 704, 8, 15, 1, 15, 1, 15, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 3, 16, 713, 8, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 3, 16, 723, 8, 16, 1, 16, 3, 16, 726, 8, 16, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 3, 18, 740, 8, 18, 1, 18, 1, 18, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 3, 20, 758, 8, 20, 3, 20, 760, 8, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 5, 20, 767, 8, 20, 10, 20, 12, 20, 770, 9, 20, 1, 20, 1, 20, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 3, 21, 780, 8, 21, 1, 21, 1, 21, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 3, 22, 789, 8, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 3, 22, 796, 8, 22, 1, 22, 1, 22, 3, 22, 800, 8, 22, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 3, 23, 807, 8, 23, 1, 23, 1, 23, 1, 23, 1, 23, 3, 23, 813, 8, 23, 1, 23, 3, 23, 816, 8, 23, 1, 23, 1, 23, 1, 23, 3, 23, 821, 8, 23, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 3, 24, 828, 8, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 3, 24, 842, 8, 24, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 3, 26, 855, 8, 26, 1, 26, 1, 26, 1, 26, 3, 26, 860, 8, 26, 1, 26, 1, 26, 1, 26, 3, 26, 865, 8, 26, 1, 27, 1, 27, 1, 27, 1, 27, 3, 27, 871, 8, 27, 1, 27, 1, 27, 1, 27, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 32, 1, 32, 3, 32, 907, 8, 32, 1, 32, 3, 32, 910, 8, 32, 1, 32, 1, 32, 1, 33, 1, 33, 3, 33, 916, 8, 33, 1, 33, 3, 33, 919, 8, 33, 1, 33, 1, 33, 1, 34, 1, 34, 3, 34, 925, 8, 34, 1, 35, 1, 35, 1, 35, 1, 35, 3, 35, 931, 8, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 3, 35, 943, 8, 35, 3, 35, 945, 8, 35, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 953, 8, 36, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 961, 8, 37, 1, 38, 1, 38, 1, 38, 3, 38, 966, 8, 38, 1, 38, 1, 38, 3, 38, 970, 8, 38, 1, 39, 1, 39, 1, 39, 3, 39, 975, 8, 39, 1, 39, 1, 39, 1, 40, 1, 40, 1, 40, 3, 40, 982, 8, 40, 1, 40, 1, 40, 3, 40, 986, 8, 40, 1, 41, 1, 41, 3, 41, 990, 8, 41, 1, 41, 1, 41, 1, 41, 1, 41, 3, 41, 996, 8, 41, 1, 42, 1, 42, 3, 42, 1000, 8, 42, 1, 42, 1, 42, 3, 42, 1004, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 5, 42, 1011, 8, 42, 10, 42, 12, 42, 1014, 9, 42, 3, 42, 1016, 8, 42, 1, 42, 3, 42, 1019, 8, 42, 1, 43, 1, 43, 1, 43, 1, 43, 1, 44, 1, 44, 3, 44, 1027, 8, 44, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 3, 46, 1041, 8, 46, 1, 46, 1, 46, 1, 46, 1, 47, 1, 47, 3, 47, 1048, 8, 47, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1061, 8, 49, 1, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1067, 8, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1072, 8, 49, 1, 49, 3, 49, 1075, 8, 49, 1, 50, 3, 50, 1078, 8, 50, 1, 50, 1, 50, 1, 50, 3, 50, 1083, 8, 50, 1, 50, 1, 50, 3, 50, 1087, 8, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 5, 50, 1094, 8, 50, 10, 50, 12, 50, 1097, 9, 50, 1, 50, 1, 50, 3, 50, 1101, 8, 50, 1, 50, 1, 50, 1, 51, 1, 51, 3, 51, 1107, 8, 51, 1, 52, 1, 52, 3, 52, 1111, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 1116, 8, 52, 1, 53, 1, 53, 1, 53, 3, 53, 1121, 8, 53, 1, 53, 3, 53, 1124, 8, 53, 1, 53, 1, 53, 1, 53, 1, 53, 5, 53, 1130, 8, 53, 10, 53, 12, 53, 1133, 9, 53, 3, 53, 1135, 8, 53, 1, 53, 1, 53, 3, 53, 1139, 8, 53, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 5, 54, 1149, 8, 54, 10, 54, 12, 54, 1152, 9, 54, 3, 54, 1154, 8, 54, 1, 54, 1, 54, 3, 54, 1158, 8, 54, 1, 55, 1, 55, 1, 55, 3, 55, 1163, 8, 55, 1, 55, 1, 55, 3, 55, 1167, 8, 55, 1, 55, 1, 55, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 3, 56, 1183, 8, 56, 1, 57, 1, 57, 1, 57, 3, 57, 1188, 8, 57, 1, 57, 1, 57, 1, 57, 5, 57, 1193, 8, 57, 10, 57, 12, 57, 1196, 9, 57, 3, 57, 1198, 8, 57, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 1204, 8, 58, 1, 58, 3, 58, 1207, 8, 58, 1, 58, 1, 58, 1, 58, 5, 58, 1212, 8, 58, 10, 58, 12, 58, 1215, 9, 58, 3, 58, 1217, 8, 58, 1, 59, 1, 59, 3, 59, 1221, 8, 59, 1, 59, 1, 59, 1, 59, 3, 59, 1226, 8, 59, 1, 59, 3, 59, 1229, 8, 59, 1, 59, 1, 59, 1, 59, 5, 59, 1234, 8, 59, 10, 59, 12, 59, 1237, 9, 59, 3, 59, 1239, 8, 59, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 64, 1, 64, 3, 64, 1263, 8, 64, 1, 64, 1, 64, 1, 64, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 3, 65, 1277, 8, 65, 1, 65, 1, 65, 3, 65, 1281, 8, 65, 1, 66, 1, 66, 3, 66, 1285, 8, 66, 1, 66, 1, 66, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 3, 68, 1305, 8, 68, 3, 68, 1307, 8, 68, 3, 68, 1309, 8, 68, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 3, 69, 1318, 8, 69, 3, 69, 1320, 8, 69, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 3, 70, 1329, 8, 70, 3, 70, 1331, 8, 70, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 1340, 8, 71, 3, 71, 1342, 8, 71, 1, 72, 1, 72, 1, 72, 3, 72, 1347, 8, 72, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 1356, 8, 73, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 1365, 8, 74, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 3, 75, 1374, 8, 75, 1, 76, 1, 76, 1, 76, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 3, 77, 1385, 8, 77, 1, 78, 1, 78, 1, 78, 1, 78, 3, 78, 1391, 8, 78, 1, 78, 1, 78, 1, 78, 3, 78, 1396, 8, 78, 1, 78, 3, 78, 1399, 8, 78, 1, 78, 1, 78, 1, 79, 1, 79, 1, 79, 1, 79, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 3, 80, 1412, 8, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 3, 80, 1422, 8, 80, 1, 80, 1, 80, 3, 80, 1426, 8, 80, 1, 81, 1, 81, 1, 81, 3, 81, 1431, 8, 81, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 5, 82, 1440, 8, 82, 10, 82, 12, 82, 1443, 9, 82, 1, 82, 1, 82, 3, 82, 1447, 8, 82, 1, 83, 1, 83, 1, 83, 1, 84, 1, 84, 1, 84, 1, 84, 1, 85, 1, 85, 1, 85, 1, 86, 1, 86, 1, 86, 1, 86, 1, 87, 1, 87, 1, 88, 1, 88, 1, 89, 1, 89, 1, 90, 1, 90, 1, 91, 1, 91, 1, 92, 1, 92, 1, 93, 1, 93, 1, 93, 5, 93, 1478, 8, 93, 10, 93, 12, 93, 1481, 9, 93, 1, 94, 1, 94, 1, 94, 5, 94, 1486, 8, 94, 10, 94, 12, 94, 1489, 9, 94, 1, 95, 1, 95, 3, 95, 1493, 8, 95, 1, 96, 1, 96, 3, 96, 1497, 8, 96, 1, 97, 1, 97, 3, 97, 1501, 8, 97, 1, 98, 1, 98, 1, 98, 3, 98, 1506, 8, 98, 1, 98, 1, 98, 3, 98, 1510, 8, 98, 1, 98, 1, 98, 1, 98, 3, 98, 1515, 8, 98, 1, 98, 1, 98, 1, 98, 3, 98, 1520, 8, 98, 1, 98, 1, 98, 1, 98, 3, 98, 1525, 8, 98, 1, 98, 1, 98, 3, 98, 1529, 8, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 3, 98, 1538, 8, 98, 1, 98, 3, 98, 1541, 8, 98, 1, 98, 1, 98, 3, 98, 1545, 8, 98, 1, 99, 1, 99, 1, 99, 5, 99, 1550, 8, 99, 10, 99, 12, 99, 1553, 9, 99, 1, 100, 1, 100, 1, 100, 1, 100, 1, 101, 1, 101, 1, 101, 1, 101, 3, 101, 1563, 8, 101, 1, 101, 1, 101, 1, 101, 1, 101, 3, 101, 1569, 8, 101, 5, 101, 1571, 8, 101, 10, 101, 12, 101, 1574, 9, 101, 1, 101, 1, 101, 1, 102, 3, 102, 1579, 8, 102, 1, 102, 1, 102, 1, 103, 1, 103, 1, 103, 1, 103, 5, 103, 1587, 8, 103, 10, 103, 12, 103, 1590, 9, 103, 1, 104, 1, 104, 1, 104, 1, 104, 3, 104, 1596, 8, 104, 1, 104, 1, 104, 1, 104, 3, 104, 1601, 8, 104, 1, 104, 1, 104, 1, 104, 3, 104, 1606, 8, 104, 1, 104, 1, 104, 1, 104, 3, 104, 1611, 8, 104, 1, 104, 1, 104, 5, 104, 1615, 8, 104, 10, 104, 12, 104, 1618, 9, 104, 3, 104, 1620, 8, 104, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 3, 105, 1629, 8, 105, 1, 105, 3, 105, 1632, 8, 105, 1, 105, 3, 105, 1635, 8, 105, 1, 106, 1, 106, 1, 106, 1, 106, 3, 106, 1641, 8, 106, 1, 107, 1, 107, 1, 107, 1, 107, 3, 107, 1647, 8, 107, 1, 108, 1, 108, 1, 109, 1, 109, 1, 109, 1, 109, 5, 109, 1655, 8, 109, 10, 109, 12, 109, 1658, 9, 109, 3, 109, 1660, 8, 109, 1, 109, 1, 109, 3, 109, 1664, 8, 109, 1, 109, 1, 109, 3, 109, 1668, 8, 109, 1, 110, 3, 110, 1671, 8, 110, 1, 110, 1, 110, 5, 110, 1675, 8, 110, 10, 110, 12, 110, 1678, 9, 110, 3, 110, 1680, 8, 110, 1, 111, 1, 111, 1, 111, 1, 111, 3, 111, 1686, 8, 111, 1, 111, 1, 111, 5, 111, 1690, 8, 111, 10, 111, 12, 111, 1693, 9, 111, 3, 111, 1695, 8, 111, 1, 112, 3, 112, 1698, 8, 112, 1, 112, 1, 112, 3, 112, 1702, 8, 112, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 3, 113, 1712, 8, 113, 1, 114, 1, 114, 1, 115, 1, 115, 1, 116, 1, 116, 1, 116, 5, 116, 1721, 8, 116, 10, 116, 12, 116, 1724, 9, 116, 1, 116, 1, 116, 3, 116, 1728, 8, 116, 1, 116, 3, 116, 1731, 8, 116, 1, 117, 1, 117, 3, 117, 1735, 8, 117, 1, 117, 1, 117, 1, 117, 1, 118, 1, 118, 3, 118, 1742, 8, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 5, 118, 1750, 8, 118, 10, 118, 12, 118, 1753, 9, 118, 1, 118, 1, 118, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 3, 119, 1764, 8, 119, 1, 119, 1, 119, 1, 119, 1, 119, 3, 119, 1770, 8, 119, 3, 119, 1772, 8, 119, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 3, 120, 1781, 8, 120, 1, 120, 3, 120, 1784, 8, 120, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 3, 121, 1791, 8, 121, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 3, 122, 1801, 8, 122, 1, 123, 1, 123, 1, 123, 1, 123, 3, 123, 1807, 8, 123, 1, 124, 1, 124, 1, 124, 1, 124, 5, 124, 1813, 8, 124, 10, 124, 12, 124, 1816, 9, 124, 1, 124, 1, 124, 1, 125, 1, 125, 1, 125, 1, 125, 5, 125, 1824, 8, 125, 10, 125, 12, 125, 1827, 9, 125, 1, 125, 1, 125, 1, 126, 1, 126, 1, 126, 5, 126, 1834, 8, 126, 10, 126, 12, 126, 1837, 9, 126, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 3, 127, 1847, 8, 127, 3, 127, 1849, 8, 127, 1, 127, 1, 127, 1, 127, 1, 127, 3, 127, 1855, 8, 127, 1, 128, 1, 128, 1, 128, 3, 128, 1860, 8, 128, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 5, 129, 1868, 8, 129, 10, 129, 12, 129, 1871, 9, 129, 3, 129, 1873, 8, 129, 1, 129, 1, 129, 1, 129, 1, 129, 3, 129, 1879, 8, 129, 3, 129, 1881, 8, 129, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 3, 130, 1889, 8, 130, 1, 130, 1, 130, 1, 130, 1, 130, 3, 130, 1895, 8, 130, 1, 130, 5, 130, 1898, 8, 130, 10, 130, 12, 130, 1901, 9, 130, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 5, 131, 1910, 8, 131, 10, 131, 12, 131, 1913, 9, 131, 1, 131, 1, 131, 1, 131, 1, 131, 3, 131, 1919, 8, 131, 1, 132, 1, 132, 3, 132, 1923, 8, 132, 1, 132, 1, 132, 3, 132, 1927, 8, 132, 1, 133, 1, 133, 3, 133, 1931, 8, 133, 1, 133, 3, 133, 1934, 8, 133, 1, 133, 1, 133, 1, 133, 5, 133, 1939, 8, 133, 10, 133, 12, 133, 1942, 9, 133, 1, 133, 1, 133, 1, 133, 1, 133, 5, 133, 1948, 8, 133, 10, 133, 12, 133, 1951, 9, 133, 3, 133, 1953, 8, 133, 1, 133, 1, 133, 3, 133, 1957, 8, 133, 1, 133, 1, 133, 1, 133, 3, 133, 1962, 8, 133, 1, 133, 1, 133, 3, 133, 1966, 8, 133, 1, 134, 3, 134, 1969, 8, 134, 1, 134, 1, 134, 1, 134, 5, 134, 1974, 8, 134, 10, 134, 12, 134, 1977, 9, 134, 1, 135, 1, 135, 1, 136, 1, 136, 1, 136, 1, 136, 5, 136, 1985, 8, 136, 10, 136, 12, 136, 1988, 9, 136, 3, 136, 1990, 8, 136, 1, 136, 1, 136, 3, 136, 1994, 8, 136, 1, 137, 1, 137, 3, 137, 1998, 8, 137, 1, 137, 1, 137, 1, 137, 1, 138, 1, 138, 1, 139, 1, 139, 3, 139, 2007, 8, 139, 1, 139, 3, 139, 2010, 8, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 3, 139, 2017, 8, 139, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 3, 140, 2031, 8, 140, 5, 140, 2033, 8, 140, 10, 140, 12, 140, 2036, 9, 140, 1, 141, 3, 141, 2039, 8, 141, 1, 141, 1, 141, 3, 141, 2043, 8, 141, 1, 141, 1, 141, 3, 141, 2047, 8, 141, 1, 141, 1, 141, 3, 141, 2051, 8, 141, 1, 141, 1, 141, 3, 141, 2055, 8, 141, 1, 141, 1, 141, 3, 141, 2059, 8, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 3, 141, 2069, 8, 141, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 5, 142, 2078, 8, 142, 10, 142, 12, 142, 2081, 9, 142, 1, 142, 1, 142, 3, 142, 2085, 8, 142, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 3, 143, 2098, 8, 143, 3, 143, 2100, 8, 143, 1, 144, 1, 144, 1, 145, 1, 145, 3, 145, 2106, 8, 145, 1, 145, 1, 145, 3, 145, 2110, 8, 145, 3, 145, 2112, 8, 145, 1, 146, 1, 146, 1, 146, 1, 146, 5, 146, 2118, 8, 146, 10, 146, 12, 146, 2121, 9, 146, 1, 146, 1, 146, 1, 147, 1, 147, 3, 147, 2127, 8, 147, 1, 147, 1, 147, 1, 147, 3, 147, 2132, 8, 147, 1, 148, 1, 148, 1, 148, 1, 148, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 5, 149, 2143, 8, 149, 10, 149, 12, 149, 2146, 9, 149, 1, 149, 1, 149, 1, 149, 3, 149, 2151, 8, 149, 1, 150, 1, 150, 1, 150, 1, 150, 1, 151, 1, 151, 3, 151, 2159, 8, 151, 1, 152, 1, 152, 1, 153, 1, 153, 1, 153, 3, 153, 2166, 8, 153, 1, 153, 1, 153, 3, 153, 2170, 8, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 5, 153, 2178, 8, 153, 10, 153, 12, 153, 2181, 9, 153, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 3, 154, 2191, 8, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 3, 154, 2199, 8, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 5, 154, 2206, 8, 154, 10, 154, 12, 154, 2209, 9, 154, 1, 154, 1, 154, 1, 154, 3, 154, 2214, 8, 154, 1, 154, 1, 154, 1, 154, 3, 154, 2219, 8, 154, 1, 154, 1, 154, 1, 154, 1, 154, 3, 154, 2225, 8, 154, 1, 154, 1, 154, 1, 154, 1, 154, 3, 154, 2231, 8, 154, 1, 154, 1, 154, 1, 154, 3, 154, 2236, 8, 154, 1, 154, 1, 154, 1, 154, 3, 154, 2241, 8, 154, 1, 155, 1, 155, 1, 155, 1, 155, 3, 155, 2247, 8, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 5, 155, 2258, 8, 155, 10, 155, 12, 155, 2261, 9, 155, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 3, 156, 2287, 8, 156, 1, 156, 1, 156, 1, 156, 1, 156, 3, 156, 2293, 8, 156, 5, 156, 2295, 8, 156, 10, 156, 12, 156, 2298, 9, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 5, 156, 2307, 8, 156, 10, 156, 12, 156, 2310, 9, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 3, 156, 2319, 8, 156, 1, 156, 3, 156, 2322, 8, 156, 1, 156, 1, 156, 1, 156, 3, 156, 2327, 8, 156, 1, 156, 1, 156, 1, 156, 5, 156, 2332, 8, 156, 10, 156, 12, 156, 2335, 9, 156, 3, 156, 2337, 8, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 5, 156, 2344, 8, 156, 10, 156, 12, 156, 2347, 9, 156, 3, 156, 2349, 8, 156, 1, 156, 1, 156, 3, 156, 2353, 8, 156, 1, 156, 3, 156, 2356, 8, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 5, 156, 2366, 8, 156, 10, 156, 12, 156, 2369, 9, 156, 3, 156, 2371, 8, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 4, 156, 2388, 8, 156, 11, 156, 12, 156, 2389, 1, 156, 1, 156, 3, 156, 2394, 8, 156, 1, 156, 1, 156, 1, 156, 1, 156, 4, 156, 2400, 8, 156, 11, 156, 12, 156, 2401, 1, 156, 1, 156, 3, 156, 2406, 8, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 5, 156, 2429, 8, 156, 10, 156, 12, 156, 2432, 9, 156, 3, 156, 2434, 8, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 3, 156, 2443, 8, 156, 1, 156, 1, 156, 1, 156, 1, 156, 3, 156, 2449, 8, 156, 1, 156, 1, 156, 1, 156, 1, 156, 3, 156, 2455, 8, 156, 1, 156, 1, 156, 1, 156, 1, 156, 3, 156, 2461, 8, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 3, 156, 2472, 8, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 3, 156, 2481, 8, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 5, 156, 2501, 8, 156, 10, 156, 12, 156, 2504, 9, 156, 3, 156, 2506, 8, 156, 1, 156, 3, 156, 2509, 8, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 5, 156, 2519, 8, 156, 10, 156, 12, 156, 2522, 9, 156, 1, 157, 1, 157, 1, 157, 1, 157, 3, 157, 2528, 8, 157, 3, 157, 2530, 8, 157, 1, 158, 1, 158, 1, 159, 1, 159, 1, 160, 1, 160, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 3, 161, 2552, 8, 161, 1, 162, 1, 162, 1, 163, 1, 163, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 5, 164, 2581, 8, 164, 10, 164, 12, 164, 2584, 9, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 5, 164, 2593, 8, 164, 10, 164, 12, 164, 2596, 9, 164, 1, 164, 1, 164, 3, 164, 2600, 8, 164, 3, 164, 2602, 8, 164, 1, 164, 1, 164, 5, 164, 2606, 8, 164, 10, 164, 12, 164, 2609, 9, 164, 1, 165, 1, 165, 3, 165, 2613, 8, 165, 1, 166, 1, 166, 1, 166, 1, 166, 3, 166, 2619, 8, 166, 1, 167, 1, 167, 1, 167, 1, 167, 1, 167, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 5, 169, 2639, 8, 169, 10, 169, 12, 169, 2642, 9, 169, 3, 169, 2644, 8, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 5, 169, 2651, 8, 169, 10, 169, 12, 169, 2654, 9, 169, 3, 169, 2656, 8, 169, 1, 169, 3, 169, 2659, 8, 169, 1, 169, 1, 169, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 3, 170, 2679, 8, 170, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 3, 171, 2690, 8, 171, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 3, 172, 2697, 8, 172, 1, 173, 1, 173, 1, 173, 5, 173, 2702, 8, 173, 10, 173, 12, 173, 2705, 9, 173, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 1, 174, 3, 174, 2718, 8, 174, 3, 174, 2720, 8, 174, 1, 175, 1, 175, 1, 176, 1, 176, 1, 176, 5, 176, 2727, 8, 176, 10, 176, 12, 176, 2730, 9, 176, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 1, 177, 3, 177, 2738, 8, 177, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 3, 178, 2745, 8, 178, 1, 179, 3, 179, 2748, 8, 179, 1, 179, 1, 179, 3, 179, 2752, 8, 179, 1, 179, 1, 179, 3, 179, 2756, 8, 179, 1, 179, 3, 179, 2759, 8, 179, 1, 180, 1, 180, 1, 181, 1, 181, 1, 181, 10, 768, 1441, 1616, 1656, 1676, 1691, 1722, 1751, 1825, 2296, 6, 260, 280, 306, 310, 312, 328, 182, 0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 94, 96, 98, 100, 102, 104, 106, 108, 110, 112, 114, 116, 118, 120, 122, 124, 126, 128, 130, 132, 134, 136, 138, 140, 142, 144, 146, 148, 150, 152, 154, 156, 158, 160, 162, 164, 166, 168, 170, 172, 174, 176, 178, 180, 182, 184, 186, 188, 190, 192, 194, 196, 198, 200, 202, 204, 206, 208, 210, 212, 214, 216, 218, 220, 222, 224, 226, 228, 230, 232, 234, 236, 238, 240, 242, 244, 246, 248, 250, 252, 254, 256, 258, 260, 262, 264, 266, 268, 270, 272, 274, 276, 278, 280, 282, 284, 286, 288, 290, 292, 294, 296, 298, 300, 302, 304, 306, 308, 310, 312, 314, 316, 318, 320, 322, 324, 326, 328, 330, 332, 334, 336, 338, 340, 342, 344, 346, 348, 350, 352, 354, 356, 358, 360, 362, 0, 32, 2, 0, 46, 46, 171, 171, 2, 0, 167, 167, 206, 206, 2, 0, 177, 177, 204, 204, 2, 0, 69, 69, 80, 80, 2, 0, 27, 27, 160, 160, 2, 0, 103, 103, 145, 145, 2, 0, 47, 47, 172, 172, 2, 0, 3, 3, 12, 12, 3, 0, 87, 87, 167, 167, 206, 206, 2, 0, 179, 179, 211, 211, 1, 0, 229, 232, 2, 0, 148, 148, 221, 225, 2, 0, 65, 65, 95, 95, 2, 0, 64, 64, 202, 202, 2, 0, 10, 10, 55, 55, 2, 0, 75, 75, 112, 112, 2, 0, 2, 2, 57, 57, 2, 0, 14, 14, 187, 187, 3, 0, 106, 106, 115, 115, 165, 165, 2, 0, 105, 105, 164, 164, 4, 0, 70, 70, 134, 134, 196, 196, 210, 210, 1, 0, 239, 240, 1, 0, 241, 243, 1, 0, 233, 238, 3, 0, 2, 2, 6, 6, 182, 182, 2, 0, 70, 70, 196, 196, 5, 0, 48, 49, 91, 92, 123, 126, 173, 174, 219, 220, 1, 0, 128, 131, 2, 0, 77, 77, 150, 150, 4, 0, 46, 46, 179, 179, 190, 190, 211, 211, 16, 0, 28, 29, 40, 40, 43, 43, 48, 48, 68, 68, 91, 91, 114, 114, 123, 123, 125, 125, 159, 159, 166, 166, 173, 173, 186, 186, 198, 198, 206, 206, 219, 219, 22, 0, 14, 14, 43, 44, 48, 49, 65, 65, 68, 68, 91, 91, 95, 95, 110, 110, 119, 119, 123, 126, 128, 131, 138, 138, 141, 141, 153, 154, 173, 174, 181, 181, 186, 187, 197, 197, 206, 206, 215, 215, 219, 219, 222, 222, 3088, 0, 367, 1, 0, 0, 0, 2, 372, 1, 0, 0, 0, 4, 398, 1, 0, 0, 0, 6, 400, 1, 0, 0, 0, 8, 411, 1, 0, 0, 0, 10, 413, 1, 0, 0, 0, 12, 452, 1, 0, 0, 0, 14, 474, 1, 0, 0, 0, 16, 529, 1, 0, 0, 0, 18, 549, 1, 0, 0, 0, 20, 563, 1, 0, 0, 0, 22, 567, 1, 0, 0, 0, 24, 629, 1, 0, 0, 0, 26, 677, 1, 0, 0, 0, 28, 679, 1, 0, 0, 0, 30, 687, 1, 0, 0, 0, 32, 707, 1, 0, 0, 0, 34, 727, 1, 0, 0, 0, 36, 734, 1, 0, 0, 0, 38, 743, 1, 0, 0, 0, 40, 751, 1, 0, 0, 0, 42, 773, 1, 0, 0, 0, 44, 783, 1, 0, 0, 0, 46, 801, 1, 0, 0, 0, 48, 822, 1, 0, 0, 0, 50, 843, 1, 0, 0, 0, 52, 849, 1, 0, 0, 0, 54, 866, 1, 0, 0, 0, 56, 875, 1, 0, 0, 0, 58, 882, 1, 0, 0, 0, 60, 890, 1, 0, 0, 0, 62, 897, 1, 0, 0, 0, 64, 904, 1, 0, 0, 0, 66, 913, 1, 0, 0, 0, 68, 924, 1, 0, 0, 0, 70, 926, 1, 0, 0, 0, 72, 946, 1, 0, 0, 0, 74, 960, 1, 0, 0, 0, 76, 962, 1, 0, 0, 0, 78, 971, 1, 0, 0, 0, 80, 978, 1, 0, 0, 0, 82, 987, 1, 0, 0, 0, 84, 997, 1, 0, 0, 0, 86, 1020, 1, 0, 0, 0, 88, 1026, 1, 0, 0, 0, 90, 1028, 1, 0, 0, 0, 92, 1035, 1, 0, 0, 0, 94, 1047, 1, 0, 0, 0, 96, 1049, 1, 0, 0, 0, 98, 1056, 1, 0, 0, 0, 100, 1077, 1, 0, 0, 0, 102, 1106, 1, 0, 0, 0, 104, 1108, 1, 0, 0, 0, 106, 1117, 1, 0, 0, 0, 108, 1140, 1, 0, 0, 0, 110, 1159, 1, 0, 0, 0, 112, 1182, 1, 0, 0, 0, 114, 1184, 1, 0, 0, 0, 116, 1199, 1, 0, 0, 0, 118, 1218, 1, 0, 0, 0, 120, 1240, 1, 0, 0, 0, 122, 1245, 1, 0, 0, 0, 124, 1250, 1, 0, 0, 0, 126, 1255, 1, 0, 0, 0, 128, 1260, 1, 0, 0, 0, 130, 1267, 1, 0, 0, 0, 132, 1282, 1, 0, 0, 0, 134, 1288, 1, 0, 0, 0, 136, 1308, 1, 0, 0, 0, 138, 1310, 1, 0, 0, 0, 140, 1321, 1, 0, 0, 0, 142, 1332, 1, 0, 0, 0, 144, 1346, 1, 0, 0, 0, 146, 1348, 1, 0, 0, 0, 148, 1357, 1, 0, 0, 0, 150, 1366, 1, 0, 0, 0, 152, 1375, 1, 0, 0, 0, 154, 1378, 1, 0, 0, 0, 156, 1386, 1, 0, 0, 0, 158, 1402, 1, 0, 0, 0, 160, 1406, 1, 0, 0, 0, 162, 1430, 1, 0, 0, 0, 164, 1432, 1, 0, 0, 0, 166, 1448, 1, 0, 0, 0, 168, 1451, 1, 0, 0, 0, 170, 1455, 1, 0, 0, 0, 172, 1458, 1, 0, 0, 0, 174, 1462, 1, 0, 0, 0, 176, 1464, 1, 0, 0, 0, 178, 1466, 1, 0, 0, 0, 180, 1468, 1, 0, 0, 0, 182, 1470, 1, 0, 0, 0, 184, 1472, 1, 0, 0, 0, 186, 1474, 1, 0, 0, 0, 188, 1482, 1, 0, 0, 0, 190, 1492, 1, 0, 0, 0, 192, 1496, 1, 0, 0, 0, 194, 1500, 1, 0, 0, 0, 196, 1505, 1, 0, 0, 0, 198, 1546, 1, 0, 0, 0, 200, 1554, 1, 0, 0, 0, 202, 1558, 1, 0, 0, 0, 204, 1578, 1, 0, 0, 0, 206, 1582, 1, 0, 0, 0, 208, 1591, 1, 0, 0, 0, 210, 1621, 1, 0, 0, 0, 212, 1636, 1, 0, 0, 0, 214, 1642, 1, 0, 0, 0, 216, 1648, 1, 0, 0, 0, 218, 1650, 1, 0, 0, 0, 220, 1670, 1, 0, 0, 0, 222, 1681, 1, 0, 0, 0, 224, 1701, 1, 0, 0, 0, 226, 1711, 1, 0, 0, 0, 228, 1713, 1, 0, 0, 0, 230, 1715, 1, 0, 0, 0, 232, 1730, 1, 0, 0, 0, 234, 1732, 1, 0, 0, 0, 236, 1739, 1, 0, 0, 0, 238, 1771, 1, 0, 0, 0, 240, 1783, 1, 0, 0, 0, 242, 1790, 1, 0, 0, 0, 244, 1800, 1, 0, 0, 0, 246, 1802, 1, 0, 0, 0, 248, 1808, 1, 0, 0, 0, 250, 1819, 1, 0, 0, 0, 252, 1830, 1, 0, 0, 0, 254, 1838, 1, 0, 0, 0, 256, 1856, 1, 0, 0, 0, 258, 1861, 1, 0, 0, 0, 260, 1882, 1, 0, 0, 0, 262, 1918, 1, 0, 0, 0, 264, 1920, 1, 0, 0, 0, 266, 1928, 1, 0, 0, 0, 268, 1968, 1, 0, 0, 0, 270, 1978, 1, 0, 0, 0, 272, 1993, 1, 0, 0, 0, 274, 1995, 1, 0, 0, 0, 276, 2002, 1, 0, 0, 0, 278, 2016, 1, 0, 0, 0, 280, 2018, 1, 0, 0, 0, 282, 2068, 1, 0, 0, 0, 284, 2084, 1, 0, 0, 0, 286, 2086, 1, 0, 0, 0, 288, 2101, 1, 0, 0, 0, 290, 2103, 1, 0, 0, 0, 292, 2113, 1, 0, 0, 0, 294, 2131, 1, 0, 0, 0, 296, 2133, 1, 0, 0, 0, 298, 2137, 1, 0, 0, 0, 300, 2152, 1, 0, 0, 0, 302, 2158, 1, 0, 0, 0, 304, 2160, 1, 0, 0, 0, 306, 2169, 1, 0, 0, 0, 308, 2240, 1, 0, 0, 0, 310, 2246, 1, 0, 0, 0, 312, 2508, 1, 0, 0, 0, 314, 2529, 1, 0, 0, 0, 316, 2531, 1, 0, 0, 0, 318, 2533, 1, 0, 0, 0, 320, 2535, 1, 0, 0, 0, 322, 2551, 1, 0, 0, 0, 324, 2553, 1, 0, 0, 0, 326, 2555, 1, 0, 0, 0, 328, 2601, 1, 0, 0, 0, 330, 2612, 1, 0, 0, 0, 332, 2618, 1, 0, 0, 0, 334, 2620, 1, 0, 0, 0, 336, 2625, 1, 0, 0, 0, 338, 2631, 1, 0, 0, 0, 340, 2678, 1, 0, 0, 0, 342, 2689, 1, 0, 0, 0, 344, 2696, 1, 0, 0, 0, 346, 2698, 1, 0, 0, 0, 348, 2719, 1, 0, 0, 0, 350, 2721, 1, 0, 0, 0, 352, 2723, 1, 0, 0, 0, 354, 2737, 1, 0, 0, 0, 356, 2744, 1, 0, 0, 0, 358, 2758, 1, 0, 0, 0, 360, 2760, 1, 0, 0, 0, 362, 2762, 1, 0, 0, 0, 364, 366, 3, 2, 1, 0, 365, 364, 1, 0, 0, 0, 366, 369, 1, 0, 0, 0, 367, 365, 1, 0, 0, 0, 367, 368, 1, 0, 0, 0, 368, 370, 1, 0, 0, 0, 369, 367, 1, 0, 0, 0, 370, 371, 5, 0, 0, 1, 371, 1, 1, 0, 0, 0, 372, 374, 3, 4, 2, 0, 373, 375, 5, 246, 0, 0, 374, 373, 1, 0, 0, 0, 374, 375, 1, 0, 0, 0, 375, 3, 1, 0, 0, 0, 376, 399, 3, 204, 102, 0, 377, 399, 3, 6, 3, 0, 378, 399, 3, 8, 4, 0, 379, 399, 3, 26, 13, 0, 380, 399, 3, 64, 32, 0, 381, 399, 3, 66, 33, 0, 382, 399, 3, 68, 34, 0, 383, 399, 3, 74, 37, 0, 384, 399, 3, 88, 44, 0, 385, 399, 3, 94, 47, 0, 386, 399, 3, 100, 50, 0, 387, 399, 3, 102, 51, 0, 388, 399, 3, 108, 54, 0, 389, 399, 3, 110, 55, 0, 390, 399, 3, 112, 56, 0, 391, 399, 3, 144, 72, 0, 392, 399, 3, 152, 76, 0, 393, 399, 3, 154, 77, 0, 394, 399, 3, 156, 78, 0, 395, 399, 3, 158, 79, 0, 396, 399, 3, 160, 80, 0, 397, 399, 3, 162, 81, 0, 398, 376, 1, 0, 0, 0, 398, 377, 1, 0, 0, 0, 398, 378, 1, 0, 0, 0, 398, 379, 1, 0, 0, 0, 398, 380, 1, 0, 0, 0, 398, 381, 1, 0, 0, 0, 398, 382, 1, 0, 0, 0, 398, 383, 1, 0, 0, 0, 398, 384, 1, 0, 0, 0, 398, 385, 1, 0, 0, 0, 398, 386, 1, 0, 0, 0, 398, 387, 1, 0, 0, 0, 398, 388, 1, 0, 0, 0, 398, 389, 1, 0, 0, 0, 398, 390, 1, 0, 0, 0, 398, 391, 1, 0, 0, 0, 398, 392, 1, 0, 0, 0, 398, 393, 1, 0, 0, 0, 398, 394, 1, 0, 0, 0, 398, 395, 1, 0, 0, 0, 398, 396, 1, 0, 0, 0, 398, 397, 1, 0, 0, 0, 399, 5, 1, 0, 0, 0, 400, 401, 5, 205, 0, 0, 401, 402, 3, 184, 92, 0, 402, 7, 1, 0, 0, 0, 403, 412, 3, 18, 9, 0, 404, 412, 3, 20, 10, 0, 405, 412, 3, 22, 11, 0, 406, 412, 3, 24, 12, 0, 407, 412, 3, 16, 8, 0, 408, 412, 3, 14, 7, 0, 409, 412, 3, 12, 6, 0, 410, 412, 3, 10, 5, 0, 411, 403, 1, 0, 0, 0, 411, 404, 1, 0, 0, 0, 411, 405, 1, 0, 0, 0, 411, 406, 1, 0, 0, 0, 411, 407, 1, 0, 0, 0, 411, 408, 1, 0, 0, 0, 411, 409, 1, 0, 0, 0, 411, 410, 1, 0, 0, 0, 412, 9, 1, 0, 0, 0, 413, 415, 5, 37, 0, 0, 414, 416, 5, 19, 0, 0, 415, 414, 1, 0, 0, 0, 415, 416, 1, 0, 0, 0, 416, 417, 1, 0, 0, 0, 417, 419, 5, 190, 0, 0, 418, 420, 3, 172, 86, 0, 419, 418, 1, 0, 0, 0, 419, 420, 1, 0, 0, 0, 420, 421, 1, 0, 0, 0, 421, 437, 3, 174, 87, 0, 422, 423, 5, 249, 0, 0, 423, 428, 3, 214, 107, 0, 424, 425, 5, 247, 0, 0, 425, 427, 3, 214, 107, 0, 426, 424, 1, 0, 0, 0, 427, 430, 1, 0, 0, 0, 428, 426, 1, 0, 0, 0, 428, 429, 1, 0, 0, 0, 429, 433, 1, 0, 0, 0, 430, 428, 1, 0, 0, 0, 431, 432, 5, 247, 0, 0, 432, 434, 3, 208, 104, 0, 433, 431, 1, 0, 0, 0, 433, 434, 1, 0, 0, 0, 434, 435, 1, 0, 0, 0, 435, 436, 5, 250, 0, 0, 436, 438, 1, 0, 0, 0, 437, 422, 1, 0, 0, 0, 437, 438, 1, 0, 0, 0, 438, 445, 1, 0, 0, 0, 439, 440, 5, 17, 0, 0, 440, 443, 5, 26, 0, 0, 441, 444, 3, 292, 146, 0, 442, 444, 3, 250, 125, 0, 443, 441, 1, 0, 0, 0, 443, 442, 1, 0, 0, 0, 444, 446, 1, 0, 0, 0, 445, 439, 1, 0, 0, 0, 445, 446, 1, 0, 0, 0, 446, 447, 1, 0, 0, 0, 447, 450, 3, 196, 98, 0, 448, 449, 5, 9, 0, 0, 449, 451, 3, 204, 102, 0, 450, 448, 1, 0, 0, 0, 450, 451, 1, 0, 0, 0, 451, 11, 1, 0, 0, 0, 452, 454, 5, 37, 0, 0, 453, 455, 5, 19, 0, 0, 454, 453, 1, 0, 0, 0, 454, 455, 1, 0, 0, 0, 455, 456, 1, 0, 0, 0, 456, 458, 5, 190, 0, 0, 457, 459, 3, 172, 86, 0, 458, 457, 1, 0, 0, 0, 458, 459, 1, 0, 0, 0, 459, 460, 1, 0, 0, 0, 460, 461, 3, 174, 87, 0, 461, 465, 5, 115, 0, 0, 462, 466, 3, 186, 93, 0, 463, 464, 5, 148, 0, 0, 464, 466, 3, 314, 157, 0, 465, 462, 1, 0, 0, 0, 465, 463, 1, 0, 0, 0, 466, 470, 1, 0, 0, 0, 467, 468, 5, 17, 0, 0, 468, 469, 5, 26, 0, 0, 469, 471, 3, 250, 125, 0, 470, 467, 1, 0, 0, 0, 470, 471, 1, 0, 0, 0, 471, 472, 1, 0, 0, 0, 472, 473, 3, 196, 98, 0, 473, 13, 1, 0, 0, 0, 474, 476, 5, 37, 0, 0, 475, 477, 5, 19, 0, 0, 476, 475, 1, 0, 0, 0, 476, 477, 1, 0, 0, 0, 477, 478, 1, 0, 0, 0, 478, 480, 5, 190, 0, 0, 479, 481, 3, 172, 86, 0, 480, 479, 1, 0, 0, 0, 480, 481, 1, 0, 0, 0, 481, 482, 1, 0, 0, 0, 482, 500, 3, 174, 87, 0, 483, 484, 5, 249, 0, 0, 484, 489, 3, 216, 108, 0, 485, 486, 5, 247, 0, 0, 486, 488, 3, 216, 108, 0, 487, 485, 1, 0, 0, 0, 488, 491, 1, 0, 0, 0, 489, 487, 1, 0, 0, 0, 489, 490, 1, 0, 0, 0, 490, 496, 1, 0, 0, 0, 491, 489, 1, 0, 0, 0, 492, 493, 5, 247, 0, 0, 493, 494, 5, 151, 0, 0, 494, 495, 5, 110, 0, 0, 495, 497, 3, 292, 146, 0, 496, 492, 1, 0, 0, 0, 496, 497, 1, 0, 0, 0, 497, 498, 1, 0, 0, 0, 498, 499, 5, 250, 0, 0, 499, 501, 1, 0, 0, 0, 500, 483, 1, 0, 0, 0, 500, 501, 1, 0, 0, 0, 501, 507, 1, 0, 0, 0, 502, 503, 5, 151, 0, 0, 503, 505, 5, 110, 0, 0, 504, 506, 3, 292, 146, 0, 505, 504, 1, 0, 0, 0, 505, 506, 1, 0, 0, 0, 506, 508, 1, 0, 0, 0, 507, 502, 1, 0, 0, 0, 507, 508, 1, 0, 0, 0, 508, 512, 1, 0, 0, 0, 509, 510, 5, 146, 0, 0, 510, 511, 5, 26, 0, 0, 511, 513, 3, 232, 116, 0, 512, 509, 1, 0, 0, 0, 512, 513, 1, 0, 0, 0, 513, 516, 1, 0, 0, 0, 514, 515, 5, 34, 0, 0, 515, 517, 3, 314, 157, 0, 516, 514, 1, 0, 0, 0, 516, 517, 1, 0, 0, 0, 517, 518, 1, 0, 0, 0, 518, 519, 5, 23, 0, 0, 519, 520, 5, 9, 0, 0, 520, 523, 5, 111, 0, 0, 521, 522, 5, 25, 0, 0, 522, 524, 3, 248, 124, 0, 523, 521, 1, 0, 0, 0, 523, 524, 1, 0, 0, 0, 524, 527, 1, 0, 0, 0, 525, 526, 5, 9, 0, 0, 526, 528, 3, 204, 102, 0, 527, 525, 1, 0, 0, 0, 527, 528, 1, 0, 0, 0, 528, 15, 1, 0, 0, 0, 529, 530, 5, 37, 0, 0, 530, 532, 5, 214, 0, 0, 531, 533, 3, 172, 86, 0, 532, 531, 1, 0, 0, 0, 532, 533, 1, 0, 0, 0, 533, 534, 1, 0, 0, 0, 534, 536, 3, 178, 89, 0, 535, 537, 3, 202, 101, 0, 536, 535, 1, 0, 0, 0, 536, 537, 1, 0, 0, 0, 537, 540, 1, 0, 0, 0, 538, 539, 5, 34, 0, 0, 539, 541, 3, 314, 157, 0, 540, 538, 1, 0, 0, 0, 540, 541, 1, 0, 0, 0, 541, 544, 1, 0, 0, 0, 542, 543, 5, 25, 0, 0, 543, 545, 3, 248, 124, 0, 544, 542, 1, 0, 0, 0, 544, 545, 1, 0, 0, 0, 545, 546, 1, 0, 0, 0, 546, 547, 5, 9, 0, 0, 547, 548, 3, 204, 102, 0, 548, 17, 1, 0, 0, 0, 549, 550, 5, 37, 0, 0, 550, 552, 7, 0, 0, 0, 551, 553, 3, 172, 86, 0, 552, 551, 1, 0, 0, 0, 552, 553, 1, 0, 0, 0, 553, 554, 1, 0, 0, 0, 554, 557, 3, 176, 88, 0, 555, 556, 5, 34, 0, 0, 556, 558, 3, 314, 157, 0, 557, 555, 1, 0, 0, 0, 557, 558, 1, 0, 0, 0, 558, 561, 1, 0, 0, 0, 559, 560, 5, 24, 0, 0, 560, 562, 3, 314, 157, 0, 561, 559, 1, 0, 0, 0, 561, 562, 1, 0, 0, 0, 562, 19, 1, 0, 0, 0, 563, 564, 5, 37, 0, 0, 564, 565, 5, 167, 0, 0, 565, 566, 3, 356, 178, 0, 566, 21, 1, 0, 0, 0, 567, 569, 5, 37, 0, 0, 568, 570, 5, 12, 0, 0, 569, 568, 1, 0, 0, 0, 569, 570, 1, 0, 0, 0, 570, 571, 1, 0, 0, 0, 571, 573, 5, 84, 0, 0, 572, 574, 3, 172, 86, 0, 573, 572, 1, 0, 0, 0, 573, 574, 1, 0, 0, 0, 574, 575, 1, 0, 0, 0, 575, 588, 3, 180, 90, 0, 576, 585, 5, 249, 0, 0, 577, 582, 3, 328, 164, 0, 578, 579, 5, 247, 0, 0, 579, 581, 3, 328, 164, 0, 580, 578, 1, 0, 0, 0, 581, 584, 1, 0, 0, 0, 582, 580, 1, 0, 0, 0, 582, 583, 1, 0, 0, 0, 583, 586, 1, 0, 0, 0, 584, 582, 1, 0, 0, 0, 585, 577, 1, 0, 0, 0, 585, 586, 1, 0, 0, 0, 586, 587, 1, 0, 0, 0, 587, 589, 5, 250, 0, 0, 588, 576, 1, 0, 0, 0, 588, 589, 1, 0, 0, 0, 589, 590, 1, 0, 0, 0, 590, 591, 5, 161, 0, 0, 591, 594, 3, 328, 164, 0, 592, 593, 5, 102, 0, 0, 593, 595, 3, 328, 164, 0, 594, 592, 1, 0, 0, 0, 594, 595, 1, 0, 0, 0, 595, 596, 1, 0, 0, 0, 596, 597, 5, 24, 0, 0, 597, 601, 5, 258, 0, 0, 598, 599, 5, 104, 0, 0, 599, 600, 5, 233, 0, 0, 600, 602, 5, 258, 0, 0, 601, 598, 1, 0, 0, 0, 601, 602, 1, 0, 0, 0, 602, 603, 1, 0, 0, 0, 603, 604, 5, 208, 0, 0, 604, 605, 5, 233, 0, 0, 605, 606, 5, 258, 0, 0, 606, 607, 5, 127, 0, 0, 607, 608, 5, 233, 0, 0, 608, 612, 5, 258, 0, 0, 609, 610, 5, 18, 0, 0, 610, 611, 5, 233, 0, 0, 611, 613, 5, 258, 0, 0, 612, 609, 1, 0, 0, 0, 612, 613, 1, 0, 0, 0, 613, 617, 1, 0, 0, 0, 614, 615, 5, 20, 0, 0, 615, 616, 5, 233, 0, 0, 616, 618, 5, 258, 0, 0, 617, 614, 1, 0, 0, 0, 617, 618, 1, 0, 0, 0, 618, 622, 1, 0, 0, 0, 619, 620, 5, 189, 0, 0, 620, 621, 5, 233, 0, 0, 621, 623, 5, 258, 0, 0, 622, 619, 1, 0, 0, 0, 622, 623, 1, 0, 0, 0, 623, 627, 1, 0, 0, 0, 624, 625, 5, 76, 0, 0, 625, 626, 5, 233, 0, 0, 626, 628, 5, 258, 0, 0, 627, 624, 1, 0, 0, 0, 627, 628, 1, 0, 0, 0, 628, 23, 1, 0, 0, 0, 629, 630, 5, 37, 0, 0, 630, 632, 5, 84, 0, 0, 631, 633, 3, 172, 86, 0, 632, 631, 1, 0, 0, 0, 632, 633, 1, 0, 0, 0, 633, 634, 1, 0, 0, 0, 634, 647, 3, 180, 90, 0, 635, 644, 5, 249, 0, 0, 636, 641, 3, 328, 164, 0, 637, 638, 5, 247, 0, 0, 638, 640, 3, 328, 164, 0, 639, 637, 1, 0, 0, 0, 640, 643, 1, 0, 0, 0, 641, 639, 1, 0, 0, 0, 641, 642, 1, 0, 0, 0, 642, 645, 1, 0, 0, 0, 643, 641, 1, 0, 0, 0, 644, 636, 1, 0, 0, 0, 644, 645, 1, 0, 0, 0, 645, 646, 1, 0, 0, 0, 646, 648, 5, 250, 0, 0, 647, 635, 1, 0, 0, 0, 647, 648, 1, 0, 0, 0, 648, 651, 1, 0, 0, 0, 649, 650, 5, 161, 0, 0, 650, 652, 3, 328, 164, 0, 651, 649, 1, 0, 0, 0, 651, 652, 1, 0, 0, 0, 652, 653, 1, 0, 0, 0, 653, 654, 5, 24, 0, 0, 654, 655, 5, 258, 0, 0, 655, 656, 5, 188, 0, 0, 656, 657, 5, 233, 0, 0, 657, 658, 3, 314, 157, 0, 658, 25, 1, 0, 0, 0, 659, 678, 3, 28, 14, 0, 660, 678, 3, 62, 31, 0, 661, 678, 3, 60, 30, 0, 662, 678, 3, 58, 29, 0, 663, 678, 3, 54, 27, 0, 664, 678, 3, 56, 28, 0, 665, 678, 3, 52, 26, 0, 666, 678, 3, 48, 24, 0, 667, 678, 3, 50, 25, 0, 668, 678, 3, 46, 23, 0, 669, 678, 3, 44, 22, 0, 670, 678, 3, 42, 21, 0, 671, 678, 3, 40, 20, 0, 672, 678, 3, 34, 17, 0, 673, 678, 3, 30, 15, 0, 674, 678, 3, 32, 16, 0, 675, 678, 3, 36, 18, 0, 676, 678, 3, 38, 19, 0, 677, 659, 1, 0, 0, 0, 677, 660, 1, 0, 0, 0, 677, 661, 1, 0, 0, 0, 677, 662, 1, 0, 0, 0, 677, 663, 1, 0, 0, 0, 677, 664, 1, 0, 0, 0, 677, 665, 1, 0, 0, 0, 677, 666, 1, 0, 0, 0, 677, 667, 1, 0, 0, 0, 677, 668, 1, 0, 0, 0, 677, 669, 1, 0, 0, 0, 677, 670, 1, 0, 0, 0, 677, 671, 1, 0, 0, 0, 677, 672, 1, 0, 0, 0, 677, 673, 1, 0, 0, 0, 677, 674, 1, 0, 0, 0, 677, 675, 1, 0, 0, 0, 677, 676, 1, 0, 0, 0, 678, 27, 1, 0, 0, 0, 679, 680, 5, 4, 0, 0, 680, 681, 5, 46, 0, 0, 681, 682, 3, 184, 92, 0, 682, 683, 5, 177, 0, 0, 683, 684, 5, 143, 0, 0, 684, 685, 7, 1, 0, 0, 685, 686, 3, 356, 178, 0, 686, 29, 1, 0, 0, 0, 687, 688, 5, 4, 0, 0, 688, 689, 5, 190, 0, 0, 689, 690, 3, 186, 93, 0, 690, 691, 5, 177, 0, 0, 691, 692, 5, 32, 0, 0, 692, 693, 5, 183, 0, 0, 693, 694, 3, 192, 96, 0, 694, 695, 5, 249, 0, 0, 695, 696, 3, 228, 114, 0, 696, 697, 5, 233, 0, 0, 697, 703, 3, 314, 157, 0, 698, 699, 5, 247, 0, 0, 699, 700, 3, 228, 114, 0, 700, 701, 5, 233, 0, 0, 701, 702, 3, 314, 157, 0, 702, 704, 1, 0, 0, 0, 703, 698, 1, 0, 0, 0, 703, 704, 1, 0, 0, 0, 704, 705, 1, 0, 0, 0, 705, 706, 5, 250, 0, 0, 706, 31, 1, 0, 0, 0, 707, 708, 5, 4, 0, 0, 708, 709, 5, 190, 0, 0, 709, 712, 3, 186, 93, 0, 710, 711, 5, 146, 0, 0, 711, 713, 3, 304, 152, 0, 712, 710, 1, 0, 0, 0, 712, 713, 1, 0, 0, 0, 713, 714, 1, 0, 0, 0, 714, 725, 5, 177, 0, 0, 715, 716, 5, 30, 0, 0, 716, 717, 5, 94, 0, 0, 717, 722, 3, 314, 157, 0, 718, 719, 5, 218, 0, 0, 719, 720, 5, 152, 0, 0, 720, 721, 5, 233, 0, 0, 721, 723, 3, 358, 179, 0, 722, 718, 1, 0, 0, 0, 722, 723, 1, 0, 0, 0, 723, 726, 1, 0, 0, 0, 724, 726, 5, 199, 0, 0, 725, 715, 1, 0, 0, 0, 725, 724, 1, 0, 0, 0, 726, 33, 1, 0, 0, 0, 727, 728, 5, 4, 0, 0, 728, 729, 5, 190, 0, 0, 729, 730, 3, 186, 93, 0, 730, 731, 5, 31, 0, 0, 731, 732, 5, 32, 0, 0, 732, 733, 3, 220, 110, 0, 733, 35, 1, 0, 0, 0, 734, 735, 5, 4, 0, 0, 735, 736, 5, 190, 0, 0, 736, 737, 3, 186, 93, 0, 737, 739, 5, 58, 0, 0, 738, 740, 5, 32, 0, 0, 739, 738, 1, 0, 0, 0, 739, 740, 1, 0, 0, 0, 740, 741, 1, 0, 0, 0, 741, 742, 3, 192, 96, 0, 742, 37, 1, 0, 0, 0, 743, 744, 5, 4, 0, 0, 744, 745, 5, 190, 0, 0, 745, 746, 3, 186, 93, 0, 746, 747, 5, 177, 0, 0, 747, 748, 5, 143, 0, 0, 748, 749, 7, 1, 0, 0, 749, 750, 3, 356, 178, 0, 750, 39, 1, 0, 0, 0, 751, 752, 5, 4, 0, 0, 752, 753, 5, 190, 0, 0, 753, 759, 3, 186, 93, 0, 754, 760, 5, 159, 0, 0, 755, 757, 5, 1, 0, 0, 756, 758, 3, 172, 86, 0, 757, 756, 1, 0, 0, 0, 757, 758, 1, 0, 0, 0, 758, 760, 1, 0, 0, 0, 759, 754, 1, 0, 0, 0, 759, 755, 1, 0, 0, 0, 760, 761, 1, 0, 0, 0, 761, 762, 5, 33, 0, 0, 762, 763, 5, 249, 0, 0, 763, 768, 3, 220, 110, 0, 764, 765, 5, 247, 0, 0, 765, 767, 3, 220, 110, 0, 766, 764, 1, 0, 0, 0, 767, 770, 1, 0, 0, 0, 768, 769, 1, 0, 0, 0, 768, 766, 1, 0, 0, 0, 769, 771, 1, 0, 0, 0, 770, 768, 1, 0, 0, 0, 771, 772, 5, 250, 0, 0, 772, 41, 1, 0, 0, 0, 773, 774, 5, 4, 0, 0, 774, 775, 5, 190, 0, 0, 775, 776, 3, 186, 93, 0, 776, 777, 5, 1, 0, 0, 777, 779, 5, 32, 0, 0, 778, 780, 3, 172, 86, 0, 779, 778, 1, 0, 0, 0, 779, 780, 1, 0, 0, 0, 780, 781, 1, 0, 0, 0, 781, 782, 3, 222, 111, 0, 782, 43, 1, 0, 0, 0, 783, 784, 5, 4, 0, 0, 784, 785, 5, 190, 0, 0, 785, 786, 3, 186, 93, 0, 786, 788, 5, 4, 0, 0, 787, 789, 5, 32, 0, 0, 788, 787, 1, 0, 0, 0, 788, 789, 1, 0, 0, 0, 789, 790, 1, 0, 0, 0, 790, 799, 3, 192, 96, 0, 791, 795, 5, 177, 0, 0, 792, 796, 3, 226, 113, 0, 793, 794, 5, 34, 0, 0, 794, 796, 3, 314, 157, 0, 795, 792, 1, 0, 0, 0, 795, 793, 1, 0, 0, 0, 796, 800, 1, 0, 0, 0, 797, 798, 5, 58, 0, 0, 798, 800, 5, 51, 0, 0, 799, 791, 1, 0, 0, 0, 799, 797, 1, 0, 0, 0, 800, 45, 1, 0, 0, 0, 801, 802, 5, 4, 0, 0, 802, 803, 5, 190, 0, 0, 803, 804, 3, 186, 93, 0, 804, 806, 5, 1, 0, 0, 805, 807, 3, 172, 86, 0, 806, 805, 1, 0, 0, 0, 806, 807, 1, 0, 0, 0, 807, 820, 1, 0, 0, 0, 808, 809, 5, 146, 0, 0, 809, 812, 3, 304, 152, 0, 810, 811, 5, 24, 0, 0, 811, 813, 3, 314, 157, 0, 812, 810, 1, 0, 0, 0, 812, 813, 1, 0, 0, 0, 813, 815, 1, 0, 0, 0, 814, 816, 3, 240, 120, 0, 815, 814, 1, 0, 0, 0, 815, 816, 1, 0, 0, 0, 816, 821, 1, 0, 0, 0, 817, 818, 5, 155, 0, 0, 818, 819, 5, 146, 0, 0, 819, 821, 3, 238, 119, 0, 820, 808, 1, 0, 0, 0, 820, 817, 1, 0, 0, 0, 821, 47, 1, 0, 0, 0, 822, 823, 5, 4, 0, 0, 823, 824, 5, 190, 0, 0, 824, 827, 3, 186, 93, 0, 825, 826, 5, 146, 0, 0, 826, 828, 3, 304, 152, 0, 827, 825, 1, 0, 0, 0, 827, 828, 1, 0, 0, 0, 828, 829, 1, 0, 0, 0, 829, 841, 5, 177, 0, 0, 830, 831, 5, 72, 0, 0, 831, 842, 3, 230, 115, 0, 832, 833, 5, 169, 0, 0, 833, 834, 5, 79, 0, 0, 834, 842, 3, 254, 127, 0, 835, 836, 5, 24, 0, 0, 836, 842, 3, 314, 157, 0, 837, 838, 5, 25, 0, 0, 838, 842, 3, 248, 124, 0, 839, 840, 5, 176, 0, 0, 840, 842, 3, 248, 124, 0, 841, 830, 1, 0, 0, 0, 841, 832, 1, 0, 0, 0, 841, 835, 1, 0, 0, 0, 841, 837, 1, 0, 0, 0, 841, 839, 1, 0, 0, 0, 842, 49, 1, 0, 0, 0, 843, 844, 5, 4, 0, 0, 844, 845, 5, 190, 0, 0, 845, 846, 3, 186, 93, 0, 846, 847, 5, 156, 0, 0, 847, 848, 5, 147, 0, 0, 848, 51, 1, 0, 0, 0, 849, 850, 5, 4, 0, 0, 850, 851, 5, 190, 0, 0, 851, 852, 3, 186, 93, 0, 852, 854, 5, 58, 0, 0, 853, 855, 3, 170, 85, 0, 854, 853, 1, 0, 0, 0, 854, 855, 1, 0, 0, 0, 855, 864, 1, 0, 0, 0, 856, 857, 5, 146, 0, 0, 857, 859, 3, 304, 152, 0, 858, 860, 5, 22, 0, 0, 859, 858, 1, 0, 0, 0, 859, 860, 1, 0, 0, 0, 860, 865, 1, 0, 0, 0, 861, 862, 5, 155, 0, 0, 862, 863, 5, 146, 0, 0, 863, 865, 3, 238, 119, 0, 864, 856, 1, 0, 0, 0, 864, 861, 1, 0, 0, 0, 865, 53, 1, 0, 0, 0, 866, 867, 5, 4, 0, 0, 867, 868, 5, 214, 0, 0, 868, 870, 3, 188, 94, 0, 869, 871, 3, 202, 101, 0, 870, 869, 1, 0, 0, 0, 870, 871, 1, 0, 0, 0, 871, 872, 1, 0, 0, 0, 872, 873, 5, 9, 0, 0, 873, 874, 3, 204, 102, 0, 874, 55, 1, 0, 0, 0, 875, 876, 5, 4, 0, 0, 876, 877, 5, 214, 0, 0, 877, 878, 3, 188, 94, 0, 878, 879, 5, 157, 0, 0, 879, 880, 5, 195, 0, 0, 880, 881, 3, 188, 94, 0, 881, 57, 1, 0, 0, 0, 882, 883, 5, 4, 0, 0, 883, 884, 5, 214, 0, 0, 884, 885, 3, 188, 94, 0, 885, 886, 5, 177, 0, 0, 886, 887, 5, 143, 0, 0, 887, 888, 7, 1, 0, 0, 888, 889, 3, 352, 176, 0, 889, 59, 1, 0, 0, 0, 890, 891, 5, 4, 0, 0, 891, 892, 5, 190, 0, 0, 892, 893, 3, 186, 93, 0, 893, 894, 5, 157, 0, 0, 894, 895, 5, 195, 0, 0, 895, 896, 3, 186, 93, 0, 896, 61, 1, 0, 0, 0, 897, 898, 5, 4, 0, 0, 898, 899, 5, 214, 0, 0, 899, 900, 3, 188, 94, 0, 900, 901, 7, 2, 0, 0, 901, 902, 5, 25, 0, 0, 902, 903, 3, 248, 124, 0, 903, 63, 1, 0, 0, 0, 904, 906, 5, 198, 0, 0, 905, 907, 5, 190, 0, 0, 906, 905, 1, 0, 0, 0, 906, 907, 1, 0, 0, 0, 907, 909, 1, 0, 0, 0, 908, 910, 3, 170, 85, 0, 909, 908, 1, 0, 0, 0, 909, 910, 1, 0, 0, 0, 910, 911, 1, 0, 0, 0, 911, 912, 3, 186, 93, 0, 912, 65, 1, 0, 0, 0, 913, 915, 5, 56, 0, 0, 914, 916, 5, 46, 0, 0, 915, 914, 1, 0, 0, 0, 915, 916, 1, 0, 0, 0, 916, 918, 1, 0, 0, 0, 917, 919, 7, 3, 0, 0, 918, 917, 1, 0, 0, 0, 918, 919, 1, 0, 0, 0, 919, 920, 1, 0, 0, 0, 920, 921, 3, 352, 176, 0, 921, 67, 1, 0, 0, 0, 922, 925, 3, 70, 35, 0, 923, 925, 3, 72, 36, 0, 924, 922, 1, 0, 0, 0, 924, 923, 1, 0, 0, 0, 925, 69, 1, 0, 0, 0, 926, 927, 5, 36, 0, 0, 927, 928, 5, 183, 0, 0, 928, 930, 3, 186, 93, 0, 929, 931, 3, 292, 146, 0, 930, 929, 1, 0, 0, 0, 930, 931, 1, 0, 0, 0, 931, 944, 1, 0, 0, 0, 932, 933, 5, 192, 0, 0, 933, 934, 5, 187, 0, 0, 934, 935, 5, 249, 0, 0, 935, 936, 3, 358, 179, 0, 936, 942, 5, 250, 0, 0, 937, 938, 5, 158, 0, 0, 938, 939, 5, 249, 0, 0, 939, 940, 3, 358, 179, 0, 940, 941, 5, 250, 0, 0, 941, 943, 1, 0, 0, 0, 942, 937, 1, 0, 0, 0, 942, 943, 1, 0, 0, 0, 943, 945, 1, 0, 0, 0, 944, 932, 1, 0, 0, 0, 944, 945, 1, 0, 0, 0, 945, 71, 1, 0, 0, 0, 946, 947, 5, 36, 0, 0, 947, 948, 5, 96, 0, 0, 948, 949, 5, 183, 0, 0, 949, 952, 3, 186, 93, 0, 950, 951, 5, 146, 0, 0, 951, 953, 3, 304, 152, 0, 952, 950, 1, 0, 0, 0, 952, 953, 1, 0, 0, 0, 953, 73, 1, 0, 0, 0, 954, 961, 3, 86, 43, 0, 955, 961, 3, 84, 42, 0, 956, 961, 3, 82, 41, 0, 957, 961, 3, 78, 39, 0, 958, 961, 3, 80, 40, 0, 959, 961, 3, 76, 38, 0, 960, 954, 1, 0, 0, 0, 960, 955, 1, 0, 0, 0, 960, 956, 1, 0, 0, 0, 960, 957, 1, 0, 0, 0, 960, 958, 1, 0, 0, 0, 960, 959, 1, 0, 0, 0, 961, 75, 1, 0, 0, 0, 962, 963, 5, 58, 0, 0, 963, 965, 7, 0, 0, 0, 964, 966, 3, 170, 85, 0, 965, 964, 1, 0, 0, 0, 965, 966, 1, 0, 0, 0, 966, 967, 1, 0, 0, 0, 967, 969, 3, 184, 92, 0, 968, 970, 7, 4, 0, 0, 969, 968, 1, 0, 0, 0, 969, 970, 1, 0, 0, 0, 970, 77, 1, 0, 0, 0, 971, 972, 5, 58, 0, 0, 972, 974, 5, 214, 0, 0, 973, 975, 3, 170, 85, 0, 974, 973, 1, 0, 0, 0, 974, 975, 1, 0, 0, 0, 975, 976, 1, 0, 0, 0, 976, 977, 3, 188, 94, 0, 977, 79, 1, 0, 0, 0, 978, 979, 5, 58, 0, 0, 979, 981, 5, 190, 0, 0, 980, 982, 3, 170, 85, 0, 981, 980, 1, 0, 0, 0, 981, 982, 1, 0, 0, 0, 982, 983, 1, 0, 0, 0, 983, 985, 3, 186, 93, 0, 984, 986, 5, 22, 0, 0, 985, 984, 1, 0, 0, 0, 985, 986, 1, 0, 0, 0, 986, 81, 1, 0, 0, 0, 987, 989, 5, 58, 0, 0, 988, 990, 5, 96, 0, 0, 989, 988, 1, 0, 0, 0, 989, 990, 1, 0, 0, 0, 990, 991, 1, 0, 0, 0, 991, 992, 5, 183, 0, 0, 992, 995, 3, 186, 93, 0, 993, 994, 5, 146, 0, 0, 994, 996, 3, 304, 152, 0, 995, 993, 1, 0, 0, 0, 995, 996, 1, 0, 0, 0, 996, 83, 1, 0, 0, 0, 997, 999, 5, 58, 0, 0, 998, 1000, 5, 12, 0, 0, 999, 998, 1, 0, 0, 0, 999, 1000, 1, 0, 0, 0, 1000, 1001, 1, 0, 0, 0, 1001, 1003, 5, 84, 0, 0, 1002, 1004, 3, 170, 85, 0, 1003, 1002, 1, 0, 0, 0, 1003, 1004, 1, 0, 0, 0, 1004, 1005, 1, 0, 0, 0, 1005, 1018, 3, 190, 95, 0, 1006, 1015, 5, 249, 0, 0, 1007, 1012, 3, 328, 164, 0, 1008, 1009, 5, 247, 0, 0, 1009, 1011, 3, 328, 164, 0, 1010, 1008, 1, 0, 0, 0, 1011, 1014, 1, 0, 0, 0, 1012, 1010, 1, 0, 0, 0, 1012, 1013, 1, 0, 0, 0, 1013, 1016, 1, 0, 0, 0, 1014, 1012, 1, 0, 0, 0, 1015, 1007, 1, 0, 0, 0, 1015, 1016, 1, 0, 0, 0, 1016, 1017, 1, 0, 0, 0, 1017, 1019, 5, 250, 0, 0, 1018, 1006, 1, 0, 0, 0, 1018, 1019, 1, 0, 0, 0, 1019, 85, 1, 0, 0, 0, 1020, 1021, 5, 58, 0, 0, 1021, 1022, 5, 167, 0, 0, 1022, 1023, 3, 356, 178, 0, 1023, 87, 1, 0, 0, 0, 1024, 1027, 3, 90, 45, 0, 1025, 1027, 3, 92, 46, 0, 1026, 1024, 1, 0, 0, 0, 1026, 1025, 1, 0, 0, 0, 1027, 89, 1, 0, 0, 0, 1028, 1029, 5, 86, 0, 0, 1029, 1030, 5, 167, 0, 0, 1030, 1031, 3, 356, 178, 0, 1031, 1032, 5, 195, 0, 0, 1032, 1033, 5, 87, 0, 0, 1033, 1034, 3, 356, 178, 0, 1034, 91, 1, 0, 0, 0, 1035, 1036, 5, 86, 0, 0, 1036, 1037, 3, 348, 174, 0, 1037, 1038, 5, 137, 0, 0, 1038, 1040, 3, 350, 175, 0, 1039, 1041, 3, 352, 176, 0, 1040, 1039, 1, 0, 0, 0, 1040, 1041, 1, 0, 0, 0, 1041, 1042, 1, 0, 0, 0, 1042, 1043, 5, 195, 0, 0, 1043, 1044, 3, 354, 177, 0, 1044, 93, 1, 0, 0, 0, 1045, 1048, 3, 96, 48, 0, 1046, 1048, 3, 98, 49, 0, 1047, 1045, 1, 0, 0, 0, 1047, 1046, 1, 0, 0, 0, 1048, 95, 1, 0, 0, 0, 1049, 1050, 5, 162, 0, 0, 1050, 1051, 5, 167, 0, 0, 1051, 1052, 3, 356, 178, 0, 1052, 1053, 5, 82, 0, 0, 1053, 1054, 5, 87, 0, 0, 1054, 1055, 3, 356, 178, 0, 1055, 97, 1, 0, 0, 0, 1056, 1060, 5, 162, 0, 0, 1057, 1058, 5, 86, 0, 0, 1058, 1059, 5, 138, 0, 0, 1059, 1061, 5, 78, 0, 0, 1060, 1057, 1, 0, 0, 0, 1060, 1061, 1, 0, 0, 0, 1061, 1062, 1, 0, 0, 0, 1062, 1063, 3, 348, 174, 0, 1063, 1064, 5, 137, 0, 0, 1064, 1066, 3, 350, 175, 0, 1065, 1067, 3, 352, 176, 0, 1066, 1065, 1, 0, 0, 0, 1066, 1067, 1, 0, 0, 0, 1067, 1068, 1, 0, 0, 0, 1068, 1074, 5, 82, 0, 0, 1069, 1075, 3, 354, 177, 0, 1070, 1072, 5, 167, 0, 0, 1071, 1070, 1, 0, 0, 0, 1071, 1072, 1, 0, 0, 0, 1072, 1073, 1, 0, 0, 0, 1073, 1075, 3, 356, 178, 0, 1074, 1069, 1, 0, 0, 0, 1074, 1071, 1, 0, 0, 0, 1075, 99, 1, 0, 0, 0, 1076, 1078, 3, 206, 103, 0, 1077, 1076, 1, 0, 0, 0, 1077, 1078, 1, 0, 0, 0, 1078, 1079, 1, 0, 0, 0, 1079, 1080, 5, 99, 0, 0, 1080, 1082, 7, 5, 0, 0, 1081, 1083, 5, 190, 0, 0, 1082, 1081, 1, 0, 0, 0, 1082, 1083, 1, 0, 0, 0, 1083, 1084, 1, 0, 0, 0, 1084, 1086, 3, 186, 93, 0, 1085, 1087, 3, 292, 146, 0, 1086, 1085, 1, 0, 0, 0, 1086, 1087, 1, 0, 0, 0, 1087, 1100, 1, 0, 0, 0, 1088, 1089, 5, 146, 0, 0, 1089, 1090, 5, 249, 0, 0, 1090, 1095, 3, 304, 152, 0, 1091, 1092, 5, 247, 0, 0, 1092, 1094, 3, 304, 152, 0, 1093, 1091, 1, 0, 0, 0, 1094, 1097, 1, 0, 0, 0, 1095, 1093, 1, 0, 0, 0, 1095, 1096, 1, 0, 0, 0, 1096, 1098, 1, 0, 0, 0, 1097, 1095, 1, 0, 0, 0, 1098, 1099, 5, 250, 0, 0, 1099, 1101, 1, 0, 0, 0, 1100, 1088, 1, 0, 0, 0, 1100, 1101, 1, 0, 0, 0, 1101, 1102, 1, 0, 0, 0, 1102, 1103, 3, 204, 102, 0, 1103, 101, 1, 0, 0, 0, 1104, 1107, 3, 104, 52, 0, 1105, 1107, 3, 106, 53, 0, 1106, 1104, 1, 0, 0, 0, 1106, 1105, 1, 0, 0, 0, 1107, 103, 1, 0, 0, 0, 1108, 1110, 5, 50, 0, 0, 1109, 1111, 5, 82, 0, 0, 1110, 1109, 1, 0, 0, 0, 1110, 1111, 1, 0, 0, 0, 1111, 1112, 1, 0, 0, 0, 1112, 1115, 3, 186, 93, 0, 1113, 1114, 5, 217, 0, 0, 1114, 1116, 3, 306, 153, 0, 1115, 1113, 1, 0, 0, 0, 1115, 1116, 1, 0, 0, 0, 1116, 105, 1, 0, 0, 0, 1117, 1118, 5, 50, 0, 0, 1118, 1123, 3, 186, 93, 0, 1119, 1121, 5, 9, 0, 0, 1120, 1119, 1, 0, 0, 0, 1120, 1121, 1, 0, 0, 0, 1121, 1122, 1, 0, 0, 0, 1122, 1124, 3, 356, 178, 0, 1123, 1120, 1, 0, 0, 0, 1123, 1124, 1, 0, 0, 0, 1124, 1125, 1, 0, 0, 0, 1125, 1134, 5, 82, 0, 0, 1126, 1131, 3, 280, 140, 0, 1127, 1128, 5, 247, 0, 0, 1128, 1130, 3, 280, 140, 0, 1129, 1127, 1, 0, 0, 0, 1130, 1133, 1, 0, 0, 0, 1131, 1129, 1, 0, 0, 0, 1131, 1132, 1, 0, 0, 0, 1132, 1135, 1, 0, 0, 0, 1133, 1131, 1, 0, 0, 0, 1134, 1126, 1, 0, 0, 0, 1134, 1135, 1, 0, 0, 0, 1135, 1138, 1, 0, 0, 0, 1136, 1137, 5, 217, 0, 0, 1137, 1139, 3, 306, 153, 0, 1138, 1136, 1, 0, 0, 0, 1138, 1139, 1, 0, 0, 0, 1139, 107, 1, 0, 0, 0, 1140, 1141, 5, 54, 0, 0, 1141, 1142, 3, 186, 93, 0, 1142, 1143, 5, 177, 0, 0, 1143, 1153, 3, 198, 99, 0, 1144, 1145, 5, 82, 0, 0, 1145, 1150, 3, 280, 140, 0, 1146, 1147, 5, 247, 0, 0, 1147, 1149, 3, 280, 140, 0, 1148, 1146, 1, 0, 0, 0, 1149, 1152, 1, 0, 0, 0, 1150, 1148, 1, 0, 0, 0, 1150, 1151, 1, 0, 0, 0, 1151, 1154, 1, 0, 0, 0, 1152, 1150, 1, 0, 0, 0, 1153, 1144, 1, 0, 0, 0, 1153, 1154, 1, 0, 0, 0, 1154, 1157, 1, 0, 0, 0, 1155, 1156, 5, 217, 0, 0, 1156, 1158, 3, 306, 153, 0, 1157, 1155, 1, 0, 0, 0, 1157, 1158, 1, 0, 0, 0, 1158, 109, 1, 0, 0, 0, 1159, 1160, 5, 209, 0, 0, 1160, 1162, 5, 103, 0, 0, 1161, 1163, 5, 190, 0, 0, 1162, 1161, 1, 0, 0, 0, 1162, 1163, 1, 0, 0, 0, 1163, 1164, 1, 0, 0, 0, 1164, 1166, 3, 186, 93, 0, 1165, 1167, 3, 292, 146, 0, 1166, 1165, 1, 0, 0, 0, 1166, 1167, 1, 0, 0, 0, 1167, 1168, 1, 0, 0, 0, 1168, 1169, 3, 204, 102, 0, 1169, 111, 1, 0, 0, 0, 1170, 1183, 3, 132, 66, 0, 1171, 1183, 3, 134, 67, 0, 1172, 1183, 3, 136, 68, 0, 1173, 1183, 3, 130, 65, 0, 1174, 1183, 3, 128, 64, 0, 1175, 1183, 3, 126, 63, 0, 1176, 1183, 3, 124, 62, 0, 1177, 1183, 3, 122, 61, 0, 1178, 1183, 3, 120, 60, 0, 1179, 1183, 3, 118, 59, 0, 1180, 1183, 3, 116, 58, 0, 1181, 1183, 3, 114, 57, 0, 1182, 1170, 1, 0, 0, 0, 1182, 1171, 1, 0, 0, 0, 1182, 1172, 1, 0, 0, 0, 1182, 1173, 1, 0, 0, 0, 1182, 1174, 1, 0, 0, 0, 1182, 1175, 1, 0, 0, 0, 1182, 1176, 1, 0, 0, 0, 1182, 1177, 1, 0, 0, 0, 1182, 1178, 1, 0, 0, 0, 1182, 1179, 1, 0, 0, 0, 1182, 1180, 1, 0, 0, 0, 1182, 1181, 1, 0, 0, 0, 1183, 113, 1, 0, 0, 0, 1184, 1185, 5, 180, 0, 0, 1185, 1197, 7, 6, 0, 0, 1186, 1188, 5, 115, 0, 0, 1187, 1186, 1, 0, 0, 0, 1187, 1188, 1, 0, 0, 0, 1188, 1189, 1, 0, 0, 0, 1189, 1194, 3, 314, 157, 0, 1190, 1191, 5, 255, 0, 0, 1191, 1193, 3, 314, 157, 0, 1192, 1190, 1, 0, 0, 0, 1193, 1196, 1, 0, 0, 0, 1194, 1192, 1, 0, 0, 0, 1194, 1195, 1, 0, 0, 0, 1195, 1198, 1, 0, 0, 0, 1196, 1194, 1, 0, 0, 0, 1197, 1187, 1, 0, 0, 0, 1197, 1198, 1, 0, 0, 0, 1198, 115, 1, 0, 0, 0, 1199, 1200, 5, 180, 0, 0, 1200, 1203, 5, 191, 0, 0, 1201, 1202, 5, 94, 0, 0, 1202, 1204, 3, 186, 93, 0, 1203, 1201, 1, 0, 0, 0, 1203, 1204, 1, 0, 0, 0, 1204, 1216, 1, 0, 0, 0, 1205, 1207, 5, 115, 0, 0, 1206, 1205, 1, 0, 0, 0, 1206, 1207, 1, 0, 0, 0, 1207, 1208, 1, 0, 0, 0, 1208, 1213, 3, 314, 157, 0, 1209, 1210, 5, 255, 0, 0, 1210, 1212, 3, 314, 157, 0, 1211, 1209, 1, 0, 0, 0, 1212, 1215, 1, 0, 0, 0, 1213, 1211, 1, 0, 0, 0, 1213, 1214, 1, 0, 0, 0, 1214, 1217, 1, 0, 0, 0, 1215, 1213, 1, 0, 0, 0, 1216, 1206, 1, 0, 0, 0, 1216, 1217, 1, 0, 0, 0, 1217, 117, 1, 0, 0, 0, 1218, 1220, 5, 180, 0, 0, 1219, 1221, 7, 7, 0, 0, 1220, 1219, 1, 0, 0, 0, 1220, 1221, 1, 0, 0, 0, 1221, 1222, 1, 0, 0, 0, 1222, 1225, 5, 85, 0, 0, 1223, 1224, 5, 94, 0, 0, 1224, 1226, 3, 184, 92, 0, 1225, 1223, 1, 0, 0, 0, 1225, 1226, 1, 0, 0, 0, 1226, 1238, 1, 0, 0, 0, 1227, 1229, 5, 115, 0, 0, 1228, 1227, 1, 0, 0, 0, 1228, 1229, 1, 0, 0, 0, 1229, 1230, 1, 0, 0, 0, 1230, 1235, 3, 314, 157, 0, 1231, 1232, 5, 255, 0, 0, 1232, 1234, 3, 314, 157, 0, 1233, 1231, 1, 0, 0, 0, 1234, 1237, 1, 0, 0, 0, 1235, 1233, 1, 0, 0, 0, 1235, 1236, 1, 0, 0, 0, 1236, 1239, 1, 0, 0, 0, 1237, 1235, 1, 0, 0, 0, 1238, 1228, 1, 0, 0, 0, 1238, 1239, 1, 0, 0, 0, 1239, 119, 1, 0, 0, 0, 1240, 1241, 5, 180, 0, 0, 1241, 1242, 5, 37, 0, 0, 1242, 1243, 5, 190, 0, 0, 1243, 1244, 3, 186, 93, 0, 1244, 121, 1, 0, 0, 0, 1245, 1246, 5, 180, 0, 0, 1246, 1247, 5, 37, 0, 0, 1247, 1248, 5, 214, 0, 0, 1248, 1249, 3, 188, 94, 0, 1249, 123, 1, 0, 0, 0, 1250, 1251, 5, 180, 0, 0, 1251, 1252, 5, 190, 0, 0, 1252, 1253, 5, 183, 0, 0, 1253, 1254, 3, 186, 93, 0, 1254, 125, 1, 0, 0, 0, 1255, 1256, 5, 180, 0, 0, 1256, 1257, 5, 32, 0, 0, 1257, 1258, 5, 183, 0, 0, 1258, 1259, 3, 186, 93, 0, 1259, 127, 1, 0, 0, 0, 1260, 1262, 5, 180, 0, 0, 1261, 1263, 5, 155, 0, 0, 1262, 1261, 1, 0, 0, 0, 1262, 1263, 1, 0, 0, 0, 1263, 1264, 1, 0, 0, 0, 1264, 1265, 5, 147, 0, 0, 1265, 1266, 3, 186, 93, 0, 1266, 129, 1, 0, 0, 0, 1267, 1268, 5, 180, 0, 0, 1268, 1269, 5, 73, 0, 0, 1269, 1270, 5, 94, 0, 0, 1270, 1280, 3, 186, 93, 0, 1271, 1272, 5, 146, 0, 0, 1272, 1273, 5, 249, 0, 0, 1273, 1276, 3, 304, 152, 0, 1274, 1275, 5, 247, 0, 0, 1275, 1277, 3, 304, 152, 0, 1276, 1274, 1, 0, 0, 0, 1276, 1277, 1, 0, 0, 0, 1277, 1278, 1, 0, 0, 0, 1278, 1279, 5, 250, 0, 0, 1279, 1281, 1, 0, 0, 0, 1280, 1271, 1, 0, 0, 0, 1280, 1281, 1, 0, 0, 0, 1281, 131, 1, 0, 0, 0, 1282, 1284, 5, 180, 0, 0, 1283, 1285, 5, 39, 0, 0, 1284, 1283, 1, 0, 0, 0, 1284, 1285, 1, 0, 0, 0, 1285, 1286, 1, 0, 0, 0, 1286, 1287, 5, 168, 0, 0, 1287, 133, 1, 0, 0, 0, 1288, 1289, 5, 180, 0, 0, 1289, 1290, 5, 167, 0, 0, 1290, 1291, 5, 86, 0, 0, 1291, 1292, 5, 87, 0, 0, 1292, 1293, 3, 356, 178, 0, 1293, 135, 1, 0, 0, 0, 1294, 1309, 3, 138, 69, 0, 1295, 1309, 3, 140, 70, 0, 1296, 1309, 3, 142, 71, 0, 1297, 1298, 5, 180, 0, 0, 1298, 1299, 5, 86, 0, 0, 1299, 1300, 7, 8, 0, 0, 1300, 1306, 3, 356, 178, 0, 1301, 1302, 5, 137, 0, 0, 1302, 1304, 7, 9, 0, 0, 1303, 1305, 3, 352, 176, 0, 1304, 1303, 1, 0, 0, 0, 1304, 1305, 1, 0, 0, 0, 1305, 1307, 1, 0, 0, 0, 1306, 1301, 1, 0, 0, 0, 1306, 1307, 1, 0, 0, 0, 1307, 1309, 1, 0, 0, 0, 1308, 1294, 1, 0, 0, 0, 1308, 1295, 1, 0, 0, 0, 1308, 1296, 1, 0, 0, 0, 1308, 1297, 1, 0, 0, 0, 1309, 137, 1, 0, 0, 0, 1310, 1311, 5, 180, 0, 0, 1311, 1312, 5, 86, 0, 0, 1312, 1313, 7, 8, 0, 0, 1313, 1319, 3, 356, 178, 0, 1314, 1315, 5, 137, 0, 0, 1315, 1317, 5, 46, 0, 0, 1316, 1318, 3, 184, 92, 0, 1317, 1316, 1, 0, 0, 0, 1317, 1318, 1, 0, 0, 0, 1318, 1320, 1, 0, 0, 0, 1319, 1314, 1, 0, 0, 0, 1319, 1320, 1, 0, 0, 0, 1320, 139, 1, 0, 0, 0, 1321, 1322, 5, 180, 0, 0, 1322, 1323, 5, 86, 0, 0, 1323, 1324, 7, 8, 0, 0, 1324, 1330, 3, 356, 178, 0, 1325, 1326, 5, 137, 0, 0, 1326, 1328, 5, 190, 0, 0, 1327, 1329, 3, 186, 93, 0, 1328, 1327, 1, 0, 0, 0, 1328, 1329, 1, 0, 0, 0, 1329, 1331, 1, 0, 0, 0, 1330, 1325, 1, 0, 0, 0, 1330, 1331, 1, 0, 0, 0, 1331, 141, 1, 0, 0, 0, 1332, 1333, 5, 180, 0, 0, 1333, 1334, 5, 86, 0, 0, 1334, 1335, 7, 8, 0, 0, 1335, 1341, 3, 356, 178, 0, 1336, 1337, 5, 137, 0, 0, 1337, 1339, 5, 32, 0, 0, 1338, 1340, 3, 192, 96, 0, 1339, 1338, 1, 0, 0, 0, 1339, 1340, 1, 0, 0, 0, 1340, 1342, 1, 0, 0, 0, 1341, 1336, 1, 0, 0, 0, 1341, 1342, 1, 0, 0, 0, 1342, 143, 1, 0, 0, 0, 1343, 1347, 3, 146, 73, 0, 1344, 1347, 3, 148, 74, 0, 1345, 1347, 3, 150, 75, 0, 1346, 1343, 1, 0, 0, 0, 1346, 1344, 1, 0, 0, 0, 1346, 1345, 1, 0, 0, 0, 1347, 145, 1, 0, 0, 0, 1348, 1349, 5, 34, 0, 0, 1349, 1350, 5, 137, 0, 0, 1350, 1351, 5, 46, 0, 0, 1351, 1352, 3, 184, 92, 0, 1352, 1355, 5, 108, 0, 0, 1353, 1356, 3, 314, 157, 0, 1354, 1356, 5, 134, 0, 0, 1355, 1353, 1, 0, 0, 0, 1355, 1354, 1, 0, 0, 0, 1356, 147, 1, 0, 0, 0, 1357, 1358, 5, 34, 0, 0, 1358, 1359, 5, 137, 0, 0, 1359, 1360, 5, 190, 0, 0, 1360, 1361, 3, 186, 93, 0, 1361, 1364, 5, 108, 0, 0, 1362, 1365, 3, 314, 157, 0, 1363, 1365, 5, 134, 0, 0, 1364, 1362, 1, 0, 0, 0, 1364, 1363, 1, 0, 0, 0, 1365, 149, 1, 0, 0, 0, 1366, 1367, 5, 34, 0, 0, 1367, 1368, 5, 137, 0, 0, 1368, 1369, 5, 32, 0, 0, 1369, 1370, 3, 192, 96, 0, 1370, 1373, 5, 108, 0, 0, 1371, 1374, 3, 314, 157, 0, 1372, 1374, 5, 134, 0, 0, 1373, 1371, 1, 0, 0, 0, 1373, 1372, 1, 0, 0, 0, 1374, 151, 1, 0, 0, 0, 1375, 1376, 5, 67, 0, 0, 1376, 1377, 3, 4, 2, 0, 1377, 153, 1, 0, 0, 0, 1378, 1384, 5, 177, 0, 0, 1379, 1385, 5, 2, 0, 0, 1380, 1381, 3, 356, 178, 0, 1381, 1382, 5, 233, 0, 0, 1382, 1383, 3, 304, 152, 0, 1383, 1385, 1, 0, 0, 0, 1384, 1379, 1, 0, 0, 0, 1384, 1380, 1, 0, 0, 0, 1384, 1385, 1, 0, 0, 0, 1385, 155, 1, 0, 0, 0, 1386, 1387, 5, 248, 0, 0, 1387, 1388, 5, 181, 0, 0, 1388, 1398, 5, 249, 0, 0, 1389, 1391, 3, 314, 157, 0, 1390, 1389, 1, 0, 0, 0, 1390, 1391, 1, 0, 0, 0, 1391, 1399, 1, 0, 0, 0, 1392, 1395, 3, 314, 157, 0, 1393, 1394, 5, 247, 0, 0, 1394, 1396, 3, 304, 152, 0, 1395, 1393, 1, 0, 0, 0, 1395, 1396, 1, 0, 0, 0, 1396, 1399, 1, 0, 0, 0, 1397, 1399, 3, 304, 152, 0, 1398, 1390, 1, 0, 0, 0, 1398, 1392, 1, 0, 0, 0, 1398, 1397, 1, 0, 0, 0, 1399, 1400, 1, 0, 0, 0, 1400, 1401, 5, 250, 0, 0, 1401, 157, 1, 0, 0, 0, 1402, 1403, 5, 107, 0, 0, 1403, 1404, 5, 121, 0, 0, 1404, 1405, 3, 186, 93, 0, 1405, 159, 1, 0, 0, 0, 1406, 1407, 5, 118, 0, 0, 1407, 1408, 5, 45, 0, 0, 1408, 1409, 5, 98, 0, 0, 1409, 1411, 5, 258, 0, 0, 1410, 1412, 5, 145, 0, 0, 1411, 1410, 1, 0, 0, 0, 1411, 1412, 1, 0, 0, 0, 1412, 1413, 1, 0, 0, 0, 1413, 1414, 5, 103, 0, 0, 1414, 1415, 5, 190, 0, 0, 1415, 1425, 3, 186, 93, 0, 1416, 1417, 5, 146, 0, 0, 1417, 1418, 5, 249, 0, 0, 1418, 1421, 3, 304, 152, 0, 1419, 1420, 5, 247, 0, 0, 1420, 1422, 3, 304, 152, 0, 1421, 1419, 1, 0, 0, 0, 1421, 1422, 1, 0, 0, 0, 1422, 1423, 1, 0, 0, 0, 1423, 1424, 5, 250, 0, 0, 1424, 1426, 1, 0, 0, 0, 1425, 1416, 1, 0, 0, 0, 1425, 1426, 1, 0, 0, 0, 1426, 161, 1, 0, 0, 0, 1427, 1431, 3, 164, 82, 0, 1428, 1431, 3, 166, 83, 0, 1429, 1431, 3, 168, 84, 0, 1430, 1427, 1, 0, 0, 0, 1430, 1428, 1, 0, 0, 0, 1430, 1429, 1, 0, 0, 0, 1431, 163, 1, 0, 0, 0, 1432, 1433, 5, 163, 0, 0, 1433, 1446, 3, 186, 93, 0, 1434, 1435, 5, 146, 0, 0, 1435, 1436, 5, 249, 0, 0, 1436, 1441, 3, 304, 152, 0, 1437, 1438, 5, 247, 0, 0, 1438, 1440, 3, 304, 152, 0, 1439, 1437, 1, 0, 0, 0, 1440, 1443, 1, 0, 0, 0, 1441, 1442, 1, 0, 0, 0, 1441, 1439, 1, 0, 0, 0, 1442, 1444, 1, 0, 0, 0, 1443, 1441, 1, 0, 0, 0, 1444, 1445, 5, 250, 0, 0, 1445, 1447, 1, 0, 0, 0, 1446, 1434, 1, 0, 0, 0, 1446, 1447, 1, 0, 0, 0, 1447, 165, 1, 0, 0, 0, 1448, 1449, 5, 163, 0, 0, 1449, 1450, 5, 13, 0, 0, 1450, 167, 1, 0, 0, 0, 1451, 1452, 5, 163, 0, 0, 1452, 1453, 5, 85, 0, 0, 1453, 1454, 3, 190, 95, 0, 1454, 169, 1, 0, 0, 0, 1455, 1456, 5, 93, 0, 0, 1456, 1457, 5, 66, 0, 0, 1457, 171, 1, 0, 0, 0, 1458, 1459, 5, 93, 0, 0, 1459, 1460, 5, 133, 0, 0, 1460, 1461, 5, 66, 0, 0, 1461, 173, 1, 0, 0, 0, 1462, 1463, 3, 352, 176, 0, 1463, 175, 1, 0, 0, 0, 1464, 1465, 3, 352, 176, 0, 1465, 177, 1, 0, 0, 0, 1466, 1467, 3, 352, 176, 0, 1467, 179, 1, 0, 0, 0, 1468, 1469, 3, 352, 176, 0, 1469, 181, 1, 0, 0, 0, 1470, 1471, 3, 352, 176, 0, 1471, 183, 1, 0, 0, 0, 1472, 1473, 3, 352, 176, 0, 1473, 185, 1, 0, 0, 0, 1474, 1479, 3, 356, 178, 0, 1475, 1476, 5, 245, 0, 0, 1476, 1478, 3, 356, 178, 0, 1477, 1475, 1, 0, 0, 0, 1478, 1481, 1, 0, 0, 0, 1479, 1477, 1, 0, 0, 0, 1479, 1480, 1, 0, 0, 0, 1480, 187, 1, 0, 0, 0, 1481, 1479, 1, 0, 0, 0, 1482, 1487, 3, 356, 178, 0, 1483, 1484, 5, 245, 0, 0, 1484, 1486, 3, 356, 178, 0, 1485, 1483, 1, 0, 0, 0, 1486, 1489, 1, 0, 0, 0, 1487, 1485, 1, 0, 0, 0, 1487, 1488, 1, 0, 0, 0, 1488, 189, 1, 0, 0, 0, 1489, 1487, 1, 0, 0, 0, 1490, 1493, 3, 360, 180, 0, 1491, 1493, 3, 352, 176, 0, 1492, 1490, 1, 0, 0, 0, 1492, 1491, 1, 0, 0, 0, 1493, 191, 1, 0, 0, 0, 1494, 1497, 3, 352, 176, 0, 1495, 1497, 4, 96, 0, 0, 1496, 1494, 1, 0, 0, 0, 1496, 1495, 1, 0, 0, 0, 1497, 193, 1, 0, 0, 0, 1498, 1501, 3, 186, 93, 0, 1499, 1501, 3, 188, 94, 0, 1500, 1498, 1, 0, 0, 0, 1500, 1499, 1, 0, 0, 0, 1501, 195, 1, 0, 0, 0, 1502, 1503, 5, 21, 0, 0, 1503, 1504, 5, 26, 0, 0, 1504, 1506, 3, 292, 146, 0, 1505, 1502, 1, 0, 0, 0, 1505, 1506, 1, 0, 0, 0, 1506, 1509, 1, 0, 0, 0, 1507, 1508, 5, 34, 0, 0, 1508, 1510, 3, 314, 157, 0, 1509, 1507, 1, 0, 0, 0, 1509, 1510, 1, 0, 0, 0, 1510, 1514, 1, 0, 0, 0, 1511, 1512, 5, 169, 0, 0, 1512, 1513, 5, 79, 0, 0, 1513, 1515, 3, 254, 127, 0, 1514, 1511, 1, 0, 0, 0, 1514, 1515, 1, 0, 0, 0, 1515, 1519, 1, 0, 0, 0, 1516, 1517, 5, 218, 0, 0, 1517, 1518, 5, 176, 0, 0, 1518, 1520, 3, 248, 124, 0, 1519, 1516, 1, 0, 0, 0, 1519, 1520, 1, 0, 0, 0, 1520, 1524, 1, 0, 0, 0, 1521, 1522, 5, 23, 0, 0, 1522, 1523, 5, 9, 0, 0, 1523, 1525, 3, 230, 115, 0, 1524, 1521, 1, 0, 0, 0, 1524, 1525, 1, 0, 0, 0, 1525, 1528, 1, 0, 0, 0, 1526, 1527, 5, 24, 0, 0, 1527, 1529, 3, 314, 157, 0, 1528, 1526, 1, 0, 0, 0, 1528, 1529, 1, 0, 0, 0, 1529, 1540, 1, 0, 0, 0, 1530, 1531, 5, 30, 0, 0, 1531, 1532, 5, 94, 0, 0, 1532, 1537, 3, 352, 176, 0, 1533, 1534, 5, 218, 0, 0, 1534, 1535, 5, 152, 0, 0, 1535, 1536, 5, 233, 0, 0, 1536, 1538, 5, 261, 0, 0, 1537, 1533, 1, 0, 0, 0, 1537, 1538, 1, 0, 0, 0, 1538, 1541, 1, 0, 0, 0, 1539, 1541, 5, 199, 0, 0, 1540, 1530, 1, 0, 0, 0, 1540, 1539, 1, 0, 0, 0, 1540, 1541, 1, 0, 0, 0, 1541, 1544, 1, 0, 0, 0, 1542, 1543, 5, 25, 0, 0, 1543, 1545, 3, 248, 124, 0, 1544, 1542, 1, 0, 0, 0, 1544, 1545, 1, 0, 0, 0, 1545, 197, 1, 0, 0, 0, 1546, 1551, 3, 200, 100, 0, 1547, 1548, 5, 247, 0, 0, 1548, 1550, 3, 200, 100, 0, 1549, 1547, 1, 0, 0, 0, 1550, 1553, 1, 0, 0, 0, 1551, 1549, 1, 0, 0, 0, 1551, 1552, 1, 0, 0, 0, 1552, 199, 1, 0, 0, 0, 1553, 1551, 1, 0, 0, 0, 1554, 1555, 3, 352, 176, 0, 1555, 1556, 5, 233, 0, 0, 1556, 1557, 3, 304, 152, 0, 1557, 201, 1, 0, 0, 0, 1558, 1559, 5, 249, 0, 0, 1559, 1562, 3, 182, 91, 0, 1560, 1561, 5, 34, 0, 0, 1561, 1563, 3, 314, 157, 0, 1562, 1560, 1, 0, 0, 0, 1562, 1563, 1, 0, 0, 0, 1563, 1572, 1, 0, 0, 0, 1564, 1565, 5, 247, 0, 0, 1565, 1568, 3, 182, 91, 0, 1566, 1567, 5, 34, 0, 0, 1567, 1569, 3, 314, 157, 0, 1568, 1566, 1, 0, 0, 0, 1568, 1569, 1, 0, 0, 0, 1569, 1571, 1, 0, 0, 0, 1570, 1564, 1, 0, 0, 0, 1571, 1574, 1, 0, 0, 0, 1572, 1570, 1, 0, 0, 0, 1572, 1573, 1, 0, 0, 0, 1573, 1575, 1, 0, 0, 0, 1574, 1572, 1, 0, 0, 0, 1575, 1576, 5, 250, 0, 0, 1576, 203, 1, 0, 0, 0, 1577, 1579, 3, 206, 103, 0, 1578, 1577, 1, 0, 0, 0, 1578, 1579, 1, 0, 0, 0, 1579, 1580, 1, 0, 0, 0, 1580, 1581, 3, 258, 129, 0, 1581, 205, 1, 0, 0, 0, 1582, 1583, 5, 218, 0, 0, 1583, 1588, 3, 274, 137, 0, 1584, 1585, 5, 247, 0, 0, 1585, 1587, 3, 274, 137, 0, 1586, 1584, 1, 0, 0, 0, 1587, 1590, 1, 0, 0, 0, 1588, 1586, 1, 0, 0, 0, 1588, 1589, 1, 0, 0, 0, 1589, 207, 1, 0, 0, 0, 1590, 1588, 1, 0, 0, 0, 1591, 1592, 5, 151, 0, 0, 1592, 1593, 5, 110, 0, 0, 1593, 1595, 3, 292, 146, 0, 1594, 1596, 5, 53, 0, 0, 1595, 1594, 1, 0, 0, 0, 1595, 1596, 1, 0, 0, 0, 1596, 1600, 1, 0, 0, 0, 1597, 1601, 5, 227, 0, 0, 1598, 1599, 5, 247, 0, 0, 1599, 1601, 5, 227, 0, 0, 1600, 1597, 1, 0, 0, 0, 1600, 1598, 1, 0, 0, 0, 1600, 1601, 1, 0, 0, 0, 1601, 1605, 1, 0, 0, 0, 1602, 1606, 5, 228, 0, 0, 1603, 1604, 5, 247, 0, 0, 1604, 1606, 5, 228, 0, 0, 1605, 1602, 1, 0, 0, 0, 1605, 1603, 1, 0, 0, 0, 1605, 1606, 1, 0, 0, 0, 1606, 1619, 1, 0, 0, 0, 1607, 1608, 5, 247, 0, 0, 1608, 1611, 3, 210, 105, 0, 1609, 1611, 3, 210, 105, 0, 1610, 1607, 1, 0, 0, 0, 1610, 1609, 1, 0, 0, 0, 1611, 1616, 1, 0, 0, 0, 1612, 1613, 5, 247, 0, 0, 1613, 1615, 3, 210, 105, 0, 1614, 1612, 1, 0, 0, 0, 1615, 1618, 1, 0, 0, 0, 1616, 1617, 1, 0, 0, 0, 1616, 1614, 1, 0, 0, 0, 1617, 1620, 1, 0, 0, 0, 1618, 1616, 1, 0, 0, 0, 1619, 1610, 1, 0, 0, 0, 1619, 1620, 1, 0, 0, 0, 1620, 209, 1, 0, 0, 0, 1621, 1622, 5, 81, 0, 0, 1622, 1623, 5, 110, 0, 0, 1623, 1624, 3, 292, 146, 0, 1624, 1625, 5, 226, 0, 0, 1625, 1626, 3, 186, 93, 0, 1626, 1628, 3, 292, 146, 0, 1627, 1629, 5, 53, 0, 0, 1628, 1627, 1, 0, 0, 0, 1628, 1629, 1, 0, 0, 0, 1629, 1631, 1, 0, 0, 0, 1630, 1632, 5, 227, 0, 0, 1631, 1630, 1, 0, 0, 0, 1631, 1632, 1, 0, 0, 0, 1632, 1634, 1, 0, 0, 0, 1633, 1635, 5, 228, 0, 0, 1634, 1633, 1, 0, 0, 0, 1634, 1635, 1, 0, 0, 0, 1635, 211, 1, 0, 0, 0, 1636, 1637, 3, 192, 96, 0, 1637, 1640, 3, 328, 164, 0, 1638, 1639, 5, 34, 0, 0, 1639, 1641, 3, 314, 157, 0, 1640, 1638, 1, 0, 0, 0, 1640, 1641, 1, 0, 0, 0, 1641, 213, 1, 0, 0, 0, 1642, 1643, 3, 182, 91, 0, 1643, 1646, 3, 328, 164, 0, 1644, 1645, 5, 34, 0, 0, 1645, 1647, 3, 314, 157, 0, 1646, 1644, 1, 0, 0, 0, 1646, 1647, 1, 0, 0, 0, 1647, 215, 1, 0, 0, 0, 1648, 1649, 3, 218, 109, 0, 1649, 217, 1, 0, 0, 0, 1650, 1651, 3, 182, 91, 0, 1651, 1659, 3, 328, 164, 0, 1652, 1656, 3, 224, 112, 0, 1653, 1655, 3, 224, 112, 0, 1654, 1653, 1, 0, 0, 0, 1655, 1658, 1, 0, 0, 0, 1656, 1657, 1, 0, 0, 0, 1656, 1654, 1, 0, 0, 0, 1657, 1660, 1, 0, 0, 0, 1658, 1656, 1, 0, 0, 0, 1659, 1652, 1, 0, 0, 0, 1659, 1660, 1, 0, 0, 0, 1660, 1663, 1, 0, 0, 0, 1661, 1662, 5, 34, 0, 0, 1662, 1664, 3, 314, 157, 0, 1663, 1661, 1, 0, 0, 0, 1663, 1664, 1, 0, 0, 0, 1664, 1667, 1, 0, 0, 0, 1665, 1666, 5, 151, 0, 0, 1666, 1668, 5, 110, 0, 0, 1667, 1665, 1, 0, 0, 0, 1667, 1668, 1, 0, 0, 0, 1668, 219, 1, 0, 0, 0, 1669, 1671, 3, 212, 106, 0, 1670, 1669, 1, 0, 0, 0, 1670, 1671, 1, 0, 0, 0, 1671, 1679, 1, 0, 0, 0, 1672, 1676, 3, 224, 112, 0, 1673, 1675, 3, 224, 112, 0, 1674, 1673, 1, 0, 0, 0, 1675, 1678, 1, 0, 0, 0, 1676, 1677, 1, 0, 0, 0, 1676, 1674, 1, 0, 0, 0, 1677, 1680, 1, 0, 0, 0, 1678, 1676, 1, 0, 0, 0, 1679, 1672, 1, 0, 0, 0, 1679, 1680, 1, 0, 0, 0, 1680, 221, 1, 0, 0, 0, 1681, 1682, 3, 182, 91, 0, 1682, 1685, 3, 328, 164, 0, 1683, 1684, 5, 34, 0, 0, 1684, 1686, 3, 314, 157, 0, 1685, 1683, 1, 0, 0, 0, 1685, 1686, 1, 0, 0, 0, 1686, 1694, 1, 0, 0, 0, 1687, 1691, 3, 224, 112, 0, 1688, 1690, 3, 224, 112, 0, 1689, 1688, 1, 0, 0, 0, 1690, 1693, 1, 0, 0, 0, 1691, 1692, 1, 0, 0, 0, 1691, 1689, 1, 0, 0, 0, 1692, 1695, 1, 0, 0, 0, 1693, 1691, 1, 0, 0, 0, 1694, 1687, 1, 0, 0, 0, 1694, 1695, 1, 0, 0, 0, 1695, 223, 1, 0, 0, 0, 1696, 1698, 5, 133, 0, 0, 1697, 1696, 1, 0, 0, 0, 1697, 1698, 1, 0, 0, 0, 1698, 1699, 1, 0, 0, 0, 1699, 1702, 5, 134, 0, 0, 1700, 1702, 3, 226, 113, 0, 1701, 1697, 1, 0, 0, 0, 1701, 1700, 1, 0, 0, 0, 1702, 225, 1, 0, 0, 0, 1703, 1704, 5, 60, 0, 0, 1704, 1712, 3, 304, 152, 0, 1705, 1706, 5, 35, 0, 0, 1706, 1712, 3, 304, 152, 0, 1707, 1708, 5, 51, 0, 0, 1708, 1712, 3, 304, 152, 0, 1709, 1710, 5, 16, 0, 0, 1710, 1712, 3, 358, 179, 0, 1711, 1703, 1, 0, 0, 0, 1711, 1705, 1, 0, 0, 0, 1711, 1707, 1, 0, 0, 0, 1711, 1709, 1, 0, 0, 0, 1712, 227, 1, 0, 0, 0, 1713, 1714, 7, 10, 0, 0, 1714, 229, 1, 0, 0, 0, 1715, 1716, 7, 11, 0, 0, 1716, 231, 1, 0, 0, 0, 1717, 1722, 3, 234, 117, 0, 1718, 1719, 5, 247, 0, 0, 1719, 1721, 3, 234, 117, 0, 1720, 1718, 1, 0, 0, 0, 1721, 1724, 1, 0, 0, 0, 1722, 1723, 1, 0, 0, 0, 1722, 1720, 1, 0, 0, 0, 1723, 1727, 1, 0, 0, 0, 1724, 1722, 1, 0, 0, 0, 1725, 1726, 5, 247, 0, 0, 1726, 1728, 3, 236, 118, 0, 1727, 1725, 1, 0, 0, 0, 1727, 1728, 1, 0, 0, 0, 1728, 1731, 1, 0, 0, 0, 1729, 1731, 3, 236, 118, 0, 1730, 1717, 1, 0, 0, 0, 1730, 1729, 1, 0, 0, 0, 1731, 233, 1, 0, 0, 0, 1732, 1734, 5, 89, 0, 0, 1733, 1735, 3, 292, 146, 0, 1734, 1733, 1, 0, 0, 0, 1734, 1735, 1, 0, 0, 0, 1735, 1736, 1, 0, 0, 0, 1736, 1737, 5, 147, 0, 0, 1737, 1738, 3, 358, 179, 0, 1738, 235, 1, 0, 0, 0, 1739, 1741, 5, 155, 0, 0, 1740, 1742, 3, 292, 146, 0, 1741, 1740, 1, 0, 0, 0, 1741, 1742, 1, 0, 0, 0, 1742, 1743, 1, 0, 0, 0, 1743, 1744, 5, 249, 0, 0, 1744, 1745, 5, 146, 0, 0, 1745, 1751, 3, 238, 119, 0, 1746, 1747, 5, 247, 0, 0, 1747, 1748, 5, 146, 0, 0, 1748, 1750, 3, 238, 119, 0, 1749, 1746, 1, 0, 0, 0, 1750, 1753, 1, 0, 0, 0, 1751, 1752, 1, 0, 0, 0, 1751, 1749, 1, 0, 0, 0, 1752, 1754, 1, 0, 0, 0, 1753, 1751, 1, 0, 0, 0, 1754, 1755, 5, 250, 0, 0, 1755, 237, 1, 0, 0, 0, 1756, 1757, 5, 212, 0, 0, 1757, 1758, 3, 244, 122, 0, 1758, 1759, 3, 304, 152, 0, 1759, 1772, 1, 0, 0, 0, 1760, 1761, 3, 304, 152, 0, 1761, 1762, 3, 242, 121, 0, 1762, 1764, 1, 0, 0, 0, 1763, 1760, 1, 0, 0, 0, 1763, 1764, 1, 0, 0, 0, 1764, 1765, 1, 0, 0, 0, 1765, 1769, 5, 213, 0, 0, 1766, 1767, 3, 242, 121, 0, 1767, 1768, 3, 304, 152, 0, 1768, 1770, 1, 0, 0, 0, 1769, 1766, 1, 0, 0, 0, 1769, 1770, 1, 0, 0, 0, 1770, 1772, 1, 0, 0, 0, 1771, 1756, 1, 0, 0, 0, 1771, 1763, 1, 0, 0, 0, 1772, 239, 1, 0, 0, 0, 1773, 1774, 5, 30, 0, 0, 1774, 1775, 5, 94, 0, 0, 1775, 1780, 3, 356, 178, 0, 1776, 1777, 5, 218, 0, 0, 1777, 1778, 5, 152, 0, 0, 1778, 1779, 5, 233, 0, 0, 1779, 1781, 3, 358, 179, 0, 1780, 1776, 1, 0, 0, 0, 1780, 1781, 1, 0, 0, 0, 1781, 1784, 1, 0, 0, 0, 1782, 1784, 5, 199, 0, 0, 1783, 1773, 1, 0, 0, 0, 1783, 1782, 1, 0, 0, 0, 1784, 241, 1, 0, 0, 0, 1785, 1791, 1, 0, 0, 0, 1786, 1791, 5, 235, 0, 0, 1787, 1791, 5, 236, 0, 0, 1788, 1791, 5, 237, 0, 0, 1789, 1791, 5, 238, 0, 0, 1790, 1785, 1, 0, 0, 0, 1790, 1786, 1, 0, 0, 0, 1790, 1787, 1, 0, 0, 0, 1790, 1788, 1, 0, 0, 0, 1790, 1789, 1, 0, 0, 0, 1791, 243, 1, 0, 0, 0, 1792, 1801, 5, 233, 0, 0, 1793, 1801, 5, 234, 0, 0, 1794, 1801, 5, 115, 0, 0, 1795, 1801, 5, 165, 0, 0, 1796, 1801, 5, 164, 0, 0, 1797, 1801, 5, 15, 0, 0, 1798, 1801, 5, 94, 0, 0, 1799, 1801, 3, 242, 121, 0, 1800, 1792, 1, 0, 0, 0, 1800, 1793, 1, 0, 0, 0, 1800, 1794, 1, 0, 0, 0, 1800, 1795, 1, 0, 0, 0, 1800, 1796, 1, 0, 0, 0, 1800, 1797, 1, 0, 0, 0, 1800, 1798, 1, 0, 0, 0, 1800, 1799, 1, 0, 0, 0, 1801, 245, 1, 0, 0, 0, 1802, 1803, 5, 115, 0, 0, 1803, 1806, 3, 352, 176, 0, 1804, 1805, 7, 12, 0, 0, 1805, 1807, 5, 154, 0, 0, 1806, 1804, 1, 0, 0, 0, 1806, 1807, 1, 0, 0, 0, 1807, 247, 1, 0, 0, 0, 1808, 1809, 5, 249, 0, 0, 1809, 1814, 3, 256, 128, 0, 1810, 1811, 5, 247, 0, 0, 1811, 1813, 3, 256, 128, 0, 1812, 1810, 1, 0, 0, 0, 1813, 1816, 1, 0, 0, 0, 1814, 1812, 1, 0, 0, 0, 1814, 1815, 1, 0, 0, 0, 1815, 1817, 1, 0, 0, 0, 1816, 1814, 1, 0, 0, 0, 1817, 1818, 5, 250, 0, 0, 1818, 249, 1, 0, 0, 0, 1819, 1820, 5, 249, 0, 0, 1820, 1825, 3, 212, 106, 0, 1821, 1822, 5, 247, 0, 0, 1822, 1824, 3, 212, 106, 0, 1823, 1821, 1, 0, 0, 0, 1824, 1827, 1, 0, 0, 0, 1825, 1826, 1, 0, 0, 0, 1825, 1823, 1, 0, 0, 0, 1826, 1828, 1, 0, 0, 0, 1827, 1825, 1, 0, 0, 0, 1828, 1829, 5, 250, 0, 0, 1829, 251, 1, 0, 0, 0, 1830, 1835, 3, 304, 152, 0, 1831, 1832, 5, 247, 0, 0, 1832, 1834, 3, 304, 152, 0, 1833, 1831, 1, 0, 0, 0, 1834, 1837, 1, 0, 0, 0, 1835, 1833, 1, 0, 0, 0, 1835, 1836, 1, 0, 0, 0, 1836, 253, 1, 0, 0, 0, 1837, 1835, 1, 0, 0, 0, 1838, 1848, 5, 52, 0, 0, 1839, 1840, 5, 71, 0, 0, 1840, 1841, 5, 193, 0, 0, 1841, 1842, 5, 26, 0, 0, 1842, 1846, 3, 314, 157, 0, 1843, 1844, 5, 63, 0, 0, 1844, 1845, 5, 26, 0, 0, 1845, 1847, 3, 314, 157, 0, 1846, 1843, 1, 0, 0, 0, 1846, 1847, 1, 0, 0, 0, 1847, 1849, 1, 0, 0, 0, 1848, 1839, 1, 0, 0, 0, 1848, 1849, 1, 0, 0, 0, 1849, 1854, 1, 0, 0, 0, 1850, 1851, 5, 117, 0, 0, 1851, 1852, 5, 193, 0, 0, 1852, 1853, 5, 26, 0, 0, 1853, 1855, 3, 314, 157, 0, 1854, 1850, 1, 0, 0, 0, 1854, 1855, 1, 0, 0, 0, 1855, 255, 1, 0, 0, 0, 1856, 1859, 3, 356, 178, 0, 1857, 1858, 5, 233, 0, 0, 1858, 1860, 3, 304, 152, 0, 1859, 1857, 1, 0, 0, 0, 1859, 1860, 1, 0, 0, 0, 1860, 257, 1, 0, 0, 0, 1861, 1872, 3, 260, 130, 0, 1862, 1863, 5, 140, 0, 0, 1863, 1864, 5, 26, 0, 0, 1864, 1869, 3, 264, 132, 0, 1865, 1866, 5, 247, 0, 0, 1866, 1868, 3, 264, 132, 0, 1867, 1865, 1, 0, 0, 0, 1868, 1871, 1, 0, 0, 0, 1869, 1867, 1, 0, 0, 0, 1869, 1870, 1, 0, 0, 0, 1870, 1873, 1, 0, 0, 0, 1871, 1869, 1, 0, 0, 0, 1872, 1862, 1, 0, 0, 0, 1872, 1873, 1, 0, 0, 0, 1873, 1880, 1, 0, 0, 0, 1874, 1875, 5, 116, 0, 0, 1875, 1878, 3, 304, 152, 0, 1876, 1877, 5, 136, 0, 0, 1877, 1879, 5, 261, 0, 0, 1878, 1876, 1, 0, 0, 0, 1878, 1879, 1, 0, 0, 0, 1879, 1881, 1, 0, 0, 0, 1880, 1874, 1, 0, 0, 0, 1880, 1881, 1, 0, 0, 0, 1881, 259, 1, 0, 0, 0, 1882, 1883, 6, 130, -1, 0, 1883, 1884, 3, 262, 131, 0, 1884, 1899, 1, 0, 0, 0, 1885, 1886, 10, 2, 0, 0, 1886, 1888, 5, 100, 0, 0, 1887, 1889, 3, 276, 138, 0, 1888, 1887, 1, 0, 0, 0, 1888, 1889, 1, 0, 0, 0, 1889, 1890, 1, 0, 0, 0, 1890, 1898, 3, 260, 130, 3, 1891, 1892, 10, 1, 0, 0, 1892, 1894, 7, 13, 0, 0, 1893, 1895, 3, 276, 138, 0, 1894, 1893, 1, 0, 0, 0, 1894, 1895, 1, 0, 0, 0, 1895, 1896, 1, 0, 0, 0, 1896, 1898, 3, 260, 130, 2, 1897, 1885, 1, 0, 0, 0, 1897, 1891, 1, 0, 0, 0, 1898, 1901, 1, 0, 0, 0, 1899, 1897, 1, 0, 0, 0, 1899, 1900, 1, 0, 0, 0, 1900, 261, 1, 0, 0, 0, 1901, 1899, 1, 0, 0, 0, 1902, 1919, 3, 266, 133, 0, 1903, 1904, 5, 190, 0, 0, 1904, 1919, 3, 186, 93, 0, 1905, 1906, 5, 213, 0, 0, 1906, 1911, 3, 304, 152, 0, 1907, 1908, 5, 247, 0, 0, 1908, 1910, 3, 304, 152, 0, 1909, 1907, 1, 0, 0, 0, 1910, 1913, 1, 0, 0, 0, 1911, 1909, 1, 0, 0, 0, 1911, 1912, 1, 0, 0, 0, 1912, 1919, 1, 0, 0, 0, 1913, 1911, 1, 0, 0, 0, 1914, 1915, 5, 249, 0, 0, 1915, 1916, 3, 258, 129, 0, 1916, 1917, 5, 250, 0, 0, 1917, 1919, 1, 0, 0, 0, 1918, 1902, 1, 0, 0, 0, 1918, 1903, 1, 0, 0, 0, 1918, 1905, 1, 0, 0, 0, 1918, 1914, 1, 0, 0, 0, 1919, 263, 1, 0, 0, 0, 1920, 1922, 3, 302, 151, 0, 1921, 1923, 7, 14, 0, 0, 1922, 1921, 1, 0, 0, 0, 1922, 1923, 1, 0, 0, 0, 1923, 1926, 1, 0, 0, 0, 1924, 1925, 5, 135, 0, 0, 1925, 1927, 7, 15, 0, 0, 1926, 1924, 1, 0, 0, 0, 1926, 1927, 1, 0, 0, 0, 1927, 265, 1, 0, 0, 0, 1928, 1930, 5, 175, 0, 0, 1929, 1931, 3, 276, 138, 0, 1930, 1929, 1, 0, 0, 0, 1930, 1931, 1, 0, 0, 0, 1931, 1933, 1, 0, 0, 0, 1932, 1934, 5, 185, 0, 0, 1933, 1932, 1, 0, 0, 0, 1933, 1934, 1, 0, 0, 0, 1934, 1935, 1, 0, 0, 0, 1935, 1940, 3, 278, 139, 0, 1936, 1937, 5, 247, 0, 0, 1937, 1939, 3, 278, 139, 0, 1938, 1936, 1, 0, 0, 0, 1939, 1942, 1, 0, 0, 0, 1940, 1938, 1, 0, 0, 0, 1940, 1941, 1, 0, 0, 0, 1941, 1952, 1, 0, 0, 0, 1942, 1940, 1, 0, 0, 0, 1943, 1944, 5, 82, 0, 0, 1944, 1949, 3, 280, 140, 0, 1945, 1946, 5, 247, 0, 0, 1946, 1948, 3, 280, 140, 0, 1947, 1945, 1, 0, 0, 0, 1948, 1951, 1, 0, 0, 0, 1949, 1947, 1, 0, 0, 0, 1949, 1950, 1, 0, 0, 0, 1950, 1953, 1, 0, 0, 0, 1951, 1949, 1, 0, 0, 0, 1952, 1943, 1, 0, 0, 0, 1952, 1953, 1, 0, 0, 0, 1953, 1956, 1, 0, 0, 0, 1954, 1955, 5, 217, 0, 0, 1955, 1957, 3, 306, 153, 0, 1956, 1954, 1, 0, 0, 0, 1956, 1957, 1, 0, 0, 0, 1957, 1961, 1, 0, 0, 0, 1958, 1959, 5, 87, 0, 0, 1959, 1960, 5, 26, 0, 0, 1960, 1962, 3, 268, 134, 0, 1961, 1958, 1, 0, 0, 0, 1961, 1962, 1, 0, 0, 0, 1962, 1965, 1, 0, 0, 0, 1963, 1964, 5, 90, 0, 0, 1964, 1966, 3, 306, 153, 0, 1965, 1963, 1, 0, 0, 0, 1965, 1966, 1, 0, 0, 0, 1966, 267, 1, 0, 0, 0, 1967, 1969, 3, 276, 138, 0, 1968, 1967, 1, 0, 0, 0, 1968, 1969, 1, 0, 0, 0, 1969, 1970, 1, 0, 0, 0, 1970, 1975, 3, 270, 135, 0, 1971, 1972, 5, 247, 0, 0, 1972, 1974, 3, 270, 135, 0, 1973, 1971, 1, 0, 0, 0, 1974, 1977, 1, 0, 0, 0, 1975, 1973, 1, 0, 0, 0, 1975, 1976, 1, 0, 0, 0, 1976, 269, 1, 0, 0, 0, 1977, 1975, 1, 0, 0, 0, 1978, 1979, 3, 272, 136, 0, 1979, 271, 1, 0, 0, 0, 1980, 1989, 5, 249, 0, 0, 1981, 1986, 3, 302, 151, 0, 1982, 1983, 5, 247, 0, 0, 1983, 1985, 3, 302, 151, 0, 1984, 1982, 1, 0, 0, 0, 1985, 1988, 1, 0, 0, 0, 1986, 1984, 1, 0, 0, 0, 1986, 1987, 1, 0, 0, 0, 1987, 1990, 1, 0, 0, 0, 1988, 1986, 1, 0, 0, 0, 1989, 1981, 1, 0, 0, 0, 1989, 1990, 1, 0, 0, 0, 1990, 1991, 1, 0, 0, 0, 1991, 1994, 5, 250, 0, 0, 1992, 1994, 3, 302, 151, 0, 1993, 1980, 1, 0, 0, 0, 1993, 1992, 1, 0, 0, 0, 1994, 273, 1, 0, 0, 0, 1995, 1997, 3, 356, 178, 0, 1996, 1998, 3, 292, 146, 0, 1997, 1996, 1, 0, 0, 0, 1997, 1998, 1, 0, 0, 0, 1998, 1999, 1, 0, 0, 0, 1999, 2000, 5, 9, 0, 0, 2000, 2001, 3, 296, 148, 0, 2001, 275, 1, 0, 0, 0, 2002, 2003, 7, 16, 0, 0, 2003, 277, 1, 0, 0, 0, 2004, 2009, 3, 302, 151, 0, 2005, 2007, 5, 9, 0, 0, 2006, 2005, 1, 0, 0, 0, 2006, 2007, 1, 0, 0, 0, 2007, 2008, 1, 0, 0, 0, 2008, 2010, 3, 356, 178, 0, 2009, 2006, 1, 0, 0, 0, 2009, 2010, 1, 0, 0, 0, 2010, 2017, 1, 0, 0, 0, 2011, 2012, 3, 352, 176, 0, 2012, 2013, 5, 245, 0, 0, 2013, 2014, 5, 241, 0, 0, 2014, 2017, 1, 0, 0, 0, 2015, 2017, 5, 241, 0, 0, 2016, 2004, 1, 0, 0, 0, 2016, 2011, 1, 0, 0, 0, 2016, 2015, 1, 0, 0, 0, 2017, 279, 1, 0, 0, 0, 2018, 2019, 6, 140, -1, 0, 2019, 2020, 3, 286, 143, 0, 2020, 2034, 1, 0, 0, 0, 2021, 2030, 10, 2, 0, 0, 2022, 2023, 5, 38, 0, 0, 2023, 2024, 5, 109, 0, 0, 2024, 2031, 3, 286, 143, 0, 2025, 2026, 3, 282, 141, 0, 2026, 2027, 5, 109, 0, 0, 2027, 2028, 3, 280, 140, 0, 2028, 2029, 3, 284, 142, 0, 2029, 2031, 1, 0, 0, 0, 2030, 2022, 1, 0, 0, 0, 2030, 2025, 1, 0, 0, 0, 2031, 2033, 1, 0, 0, 0, 2032, 2021, 1, 0, 0, 0, 2033, 2036, 1, 0, 0, 0, 2034, 2032, 1, 0, 0, 0, 2034, 2035, 1, 0, 0, 0, 2035, 281, 1, 0, 0, 0, 2036, 2034, 1, 0, 0, 0, 2037, 2039, 5, 97, 0, 0, 2038, 2037, 1, 0, 0, 0, 2038, 2039, 1, 0, 0, 0, 2039, 2069, 1, 0, 0, 0, 2040, 2042, 5, 114, 0, 0, 2041, 2043, 5, 97, 0, 0, 2042, 2041, 1, 0, 0, 0, 2042, 2043, 1, 0, 0, 0, 2043, 2069, 1, 0, 0, 0, 2044, 2046, 5, 166, 0, 0, 2045, 2047, 5, 97, 0, 0, 2046, 2045, 1, 0, 0, 0, 2046, 2047, 1, 0, 0, 0, 2047, 2069, 1, 0, 0, 0, 2048, 2050, 5, 114, 0, 0, 2049, 2051, 5, 142, 0, 0, 2050, 2049, 1, 0, 0, 0, 2050, 2051, 1, 0, 0, 0, 2051, 2069, 1, 0, 0, 0, 2052, 2054, 5, 166, 0, 0, 2053, 2055, 5, 142, 0, 0, 2054, 2053, 1, 0, 0, 0, 2054, 2055, 1, 0, 0, 0, 2055, 2069, 1, 0, 0, 0, 2056, 2058, 5, 83, 0, 0, 2057, 2059, 5, 142, 0, 0, 2058, 2057, 1, 0, 0, 0, 2058, 2059, 1, 0, 0, 0, 2059, 2069, 1, 0, 0, 0, 2060, 2061, 5, 114, 0, 0, 2061, 2069, 5, 178, 0, 0, 2062, 2063, 5, 166, 0, 0, 2063, 2069, 5, 178, 0, 0, 2064, 2065, 5, 114, 0, 0, 2065, 2069, 5, 7, 0, 0, 2066, 2067, 5, 166, 0, 0, 2067, 2069, 5, 7, 0, 0, 2068, 2038, 1, 0, 0, 0, 2068, 2040, 1, 0, 0, 0, 2068, 2044, 1, 0, 0, 0, 2068, 2048, 1, 0, 0, 0, 2068, 2052, 1, 0, 0, 0, 2068, 2056, 1, 0, 0, 0, 2068, 2060, 1, 0, 0, 0, 2068, 2062, 1, 0, 0, 0, 2068, 2064, 1, 0, 0, 0, 2068, 2066, 1, 0, 0, 0, 2069, 283, 1, 0, 0, 0, 2070, 2071, 5, 137, 0, 0, 2071, 2085, 3, 306, 153, 0, 2072, 2073, 5, 207, 0, 0, 2073, 2074, 5, 249, 0, 0, 2074, 2079, 3, 356, 178, 0, 2075, 2076, 5, 247, 0, 0, 2076, 2078, 3, 356, 178, 0, 2077, 2075, 1, 0, 0, 0, 2078, 2081, 1, 0, 0, 0, 2079, 2077, 1, 0, 0, 0, 2079, 2080, 1, 0, 0, 0, 2080, 2082, 1, 0, 0, 0, 2081, 2079, 1, 0, 0, 0, 2082, 2083, 5, 250, 0, 0, 2083, 2085, 1, 0, 0, 0, 2084, 2070, 1, 0, 0, 0, 2084, 2072, 1, 0, 0, 0, 2085, 285, 1, 0, 0, 0, 2086, 2099, 3, 290, 145, 0, 2087, 2088, 5, 192, 0, 0, 2088, 2089, 3, 288, 144, 0, 2089, 2090, 5, 249, 0, 0, 2090, 2091, 3, 304, 152, 0, 2091, 2097, 5, 250, 0, 0, 2092, 2093, 5, 158, 0, 0, 2093, 2094, 5, 249, 0, 0, 2094, 2095, 3, 304, 152, 0, 2095, 2096, 5, 250, 0, 0, 2096, 2098, 1, 0, 0, 0, 2097, 2092, 1, 0, 0, 0, 2097, 2098, 1, 0, 0, 0, 2098, 2100, 1, 0, 0, 0, 2099, 2087, 1, 0, 0, 0, 2099, 2100, 1, 0, 0, 0, 2100, 287, 1, 0, 0, 0, 2101, 2102, 7, 17, 0, 0, 2102, 289, 1, 0, 0, 0, 2103, 2111, 3, 294, 147, 0, 2104, 2106, 5, 9, 0, 0, 2105, 2104, 1, 0, 0, 0, 2105, 2106, 1, 0, 0, 0, 2106, 2107, 1, 0, 0, 0, 2107, 2109, 3, 356, 178, 0, 2108, 2110, 3, 292, 146, 0, 2109, 2108, 1, 0, 0, 0, 2109, 2110, 1, 0, 0, 0, 2110, 2112, 1, 0, 0, 0, 2111, 2105, 1, 0, 0, 0, 2111, 2112, 1, 0, 0, 0, 2112, 291, 1, 0, 0, 0, 2113, 2114, 5, 249, 0, 0, 2114, 2119, 3, 192, 96, 0, 2115, 2116, 5, 247, 0, 0, 2116, 2118, 3, 192, 96, 0, 2117, 2115, 1, 0, 0, 0, 2118, 2121, 1, 0, 0, 0, 2119, 2117, 1, 0, 0, 0, 2119, 2120, 1, 0, 0, 0, 2120, 2122, 1, 0, 0, 0, 2121, 2119, 1, 0, 0, 0, 2122, 2123, 5, 250, 0, 0, 2123, 293, 1, 0, 0, 0, 2124, 2132, 3, 194, 97, 0, 2125, 2127, 5, 113, 0, 0, 2126, 2125, 1, 0, 0, 0, 2126, 2127, 1, 0, 0, 0, 2127, 2128, 1, 0, 0, 0, 2128, 2132, 3, 296, 148, 0, 2129, 2132, 3, 298, 149, 0, 2130, 2132, 3, 300, 150, 0, 2131, 2124, 1, 0, 0, 0, 2131, 2126, 1, 0, 0, 0, 2131, 2129, 1, 0, 0, 0, 2131, 2130, 1, 0, 0, 0, 2132, 295, 1, 0, 0, 0, 2133, 2134, 5, 249, 0, 0, 2134, 2135, 3, 204, 102, 0, 2135, 2136, 5, 250, 0, 0, 2136, 297, 1, 0, 0, 0, 2137, 2138, 5, 203, 0, 0, 2138, 2139, 5, 249, 0, 0, 2139, 2144, 3, 304, 152, 0, 2140, 2141, 5, 247, 0, 0, 2141, 2143, 3, 304, 152, 0, 2142, 2140, 1, 0, 0, 0, 2143, 2146, 1, 0, 0, 0, 2144, 2142, 1, 0, 0, 0, 2144, 2145, 1, 0, 0, 0, 2145, 2147, 1, 0, 0, 0, 2146, 2144, 1, 0, 0, 0, 2147, 2150, 5, 250, 0, 0, 2148, 2149, 5, 218, 0, 0, 2149, 2151, 5, 141, 0, 0, 2150, 2148, 1, 0, 0, 0, 2150, 2151, 1, 0, 0, 0, 2151, 299, 1, 0, 0, 0, 2152, 2153, 5, 249, 0, 0, 2153, 2154, 3, 280, 140, 0, 2154, 2155, 5, 250, 0, 0, 2155, 301, 1, 0, 0, 0, 2156, 2159, 3, 192, 96, 0, 2157, 2159, 3, 304, 152, 0, 2158, 2156, 1, 0, 0, 0, 2158, 2157, 1, 0, 0, 0, 2159, 303, 1, 0, 0, 0, 2160, 2161, 3, 306, 153, 0, 2161, 305, 1, 0, 0, 0, 2162, 2163, 6, 153, -1, 0, 2163, 2165, 3, 310, 155, 0, 2164, 2166, 3, 308, 154, 0, 2165, 2164, 1, 0, 0, 0, 2165, 2166, 1, 0, 0, 0, 2166, 2170, 1, 0, 0, 0, 2167, 2168, 5, 133, 0, 0, 2168, 2170, 3, 306, 153, 3, 2169, 2162, 1, 0, 0, 0, 2169, 2167, 1, 0, 0, 0, 2170, 2179, 1, 0, 0, 0, 2171, 2172, 10, 2, 0, 0, 2172, 2173, 5, 5, 0, 0, 2173, 2178, 3, 306, 153, 3, 2174, 2175, 10, 1, 0, 0, 2175, 2176, 5, 139, 0, 0, 2176, 2178, 3, 306, 153, 2, 2177, 2171, 1, 0, 0, 0, 2177, 2174, 1, 0, 0, 0, 2178, 2181, 1, 0, 0, 0, 2179, 2177, 1, 0, 0, 0, 2179, 2180, 1, 0, 0, 0, 2180, 307, 1, 0, 0, 0, 2181, 2179, 1, 0, 0, 0, 2182, 2183, 3, 316, 158, 0, 2183, 2184, 3, 310, 155, 0, 2184, 2241, 1, 0, 0, 0, 2185, 2186, 3, 316, 158, 0, 2186, 2187, 3, 318, 159, 0, 2187, 2188, 3, 296, 148, 0, 2188, 2241, 1, 0, 0, 0, 2189, 2191, 5, 133, 0, 0, 2190, 2189, 1, 0, 0, 0, 2190, 2191, 1, 0, 0, 0, 2191, 2192, 1, 0, 0, 0, 2192, 2193, 5, 15, 0, 0, 2193, 2194, 3, 310, 155, 0, 2194, 2195, 5, 5, 0, 0, 2195, 2196, 3, 310, 155, 0, 2196, 2241, 1, 0, 0, 0, 2197, 2199, 5, 133, 0, 0, 2198, 2197, 1, 0, 0, 0, 2198, 2199, 1, 0, 0, 0, 2199, 2200, 1, 0, 0, 0, 2200, 2201, 5, 94, 0, 0, 2201, 2202, 5, 249, 0, 0, 2202, 2207, 3, 304, 152, 0, 2203, 2204, 5, 247, 0, 0, 2204, 2206, 3, 304, 152, 0, 2205, 2203, 1, 0, 0, 0, 2206, 2209, 1, 0, 0, 0, 2207, 2205, 1, 0, 0, 0, 2207, 2208, 1, 0, 0, 0, 2208, 2210, 1, 0, 0, 0, 2209, 2207, 1, 0, 0, 0, 2210, 2211, 5, 250, 0, 0, 2211, 2241, 1, 0, 0, 0, 2212, 2214, 5, 133, 0, 0, 2213, 2212, 1, 0, 0, 0, 2213, 2214, 1, 0, 0, 0, 2214, 2215, 1, 0, 0, 0, 2215, 2216, 5, 94, 0, 0, 2216, 2241, 3, 296, 148, 0, 2217, 2219, 5, 133, 0, 0, 2218, 2217, 1, 0, 0, 0, 2218, 2219, 1, 0, 0, 0, 2219, 2220, 1, 0, 0, 0, 2220, 2221, 7, 18, 0, 0, 2221, 2224, 3, 310, 155, 0, 2222, 2223, 5, 62, 0, 0, 2223, 2225, 3, 310, 155, 0, 2224, 2222, 1, 0, 0, 0, 2224, 2225, 1, 0, 0, 0, 2225, 2241, 1, 0, 0, 0, 2226, 2227, 7, 19, 0, 0, 2227, 2241, 3, 310, 155, 0, 2228, 2230, 5, 108, 0, 0, 2229, 2231, 5, 133, 0, 0, 2230, 2229, 1, 0, 0, 0, 2230, 2231, 1, 0, 0, 0, 2231, 2232, 1, 0, 0, 0, 2232, 2241, 7, 20, 0, 0, 2233, 2235, 5, 108, 0, 0, 2234, 2236, 5, 133, 0, 0, 2235, 2234, 1, 0, 0, 0, 2235, 2236, 1, 0, 0, 0, 2236, 2237, 1, 0, 0, 0, 2237, 2238, 5, 57, 0, 0, 2238, 2239, 5, 82, 0, 0, 2239, 2241, 3, 310, 155, 0, 2240, 2182, 1, 0, 0, 0, 2240, 2185, 1, 0, 0, 0, 2240, 2190, 1, 0, 0, 0, 2240, 2198, 1, 0, 0, 0, 2240, 2213, 1, 0, 0, 0, 2240, 2218, 1, 0, 0, 0, 2240, 2226, 1, 0, 0, 0, 2240, 2228, 1, 0, 0, 0, 2240, 2233, 1, 0, 0, 0, 2241, 309, 1, 0, 0, 0, 2242, 2243, 6, 155, -1, 0, 2243, 2247, 3, 312, 156, 0, 2244, 2245, 7, 21, 0, 0, 2245, 2247, 3, 310, 155, 4, 2246, 2242, 1, 0, 0, 0, 2246, 2244, 1, 0, 0, 0, 2247, 2259, 1, 0, 0, 0, 2248, 2249, 10, 3, 0, 0, 2249, 2250, 7, 22, 0, 0, 2250, 2258, 3, 310, 155, 4, 2251, 2252, 10, 2, 0, 0, 2252, 2253, 7, 21, 0, 0, 2253, 2258, 3, 310, 155, 3, 2254, 2255, 10, 1, 0, 0, 2255, 2256, 5, 244, 0, 0, 2256, 2258, 3, 310, 155, 2, 2257, 2248, 1, 0, 0, 0, 2257, 2251, 1, 0, 0, 0, 2257, 2254, 1, 0, 0, 0, 2258, 2261, 1, 0, 0, 0, 2259, 2257, 1, 0, 0, 0, 2259, 2260, 1, 0, 0, 0, 2260, 311, 1, 0, 0, 0, 2261, 2259, 1, 0, 0, 0, 2262, 2263, 6, 156, -1, 0, 2263, 2509, 5, 134, 0, 0, 2264, 2509, 3, 322, 161, 0, 2265, 2266, 3, 356, 178, 0, 2266, 2267, 3, 314, 157, 0, 2267, 2509, 1, 0, 0, 0, 2268, 2269, 5, 270, 0, 0, 2269, 2509, 3, 314, 157, 0, 2270, 2509, 3, 358, 179, 0, 2271, 2509, 3, 320, 160, 0, 2272, 2509, 3, 314, 157, 0, 2273, 2509, 5, 260, 0, 0, 2274, 2509, 5, 256, 0, 0, 2275, 2276, 5, 149, 0, 0, 2276, 2277, 5, 249, 0, 0, 2277, 2278, 3, 310, 155, 0, 2278, 2279, 5, 94, 0, 0, 2279, 2280, 3, 310, 155, 0, 2280, 2281, 5, 250, 0, 0, 2281, 2509, 1, 0, 0, 0, 2282, 2283, 5, 249, 0, 0, 2283, 2286, 3, 304, 152, 0, 2284, 2285, 5, 9, 0, 0, 2285, 2287, 3, 328, 164, 0, 2286, 2284, 1, 0, 0, 0, 2286, 2287, 1, 0, 0, 0, 2287, 2296, 1, 0, 0, 0, 2288, 2289, 5, 247, 0, 0, 2289, 2292, 3, 304, 152, 0, 2290, 2291, 5, 9, 0, 0, 2291, 2293, 3, 328, 164, 0, 2292, 2290, 1, 0, 0, 0, 2292, 2293, 1, 0, 0, 0, 2293, 2295, 1, 0, 0, 0, 2294, 2288, 1, 0, 0, 0, 2295, 2298, 1, 0, 0, 0, 2296, 2297, 1, 0, 0, 0, 2296, 2294, 1, 0, 0, 0, 2297, 2299, 1, 0, 0, 0, 2298, 2296, 1, 0, 0, 0, 2299, 2300, 5, 250, 0, 0, 2300, 2509, 1, 0, 0, 0, 2301, 2302, 5, 169, 0, 0, 2302, 2303, 5, 249, 0, 0, 2303, 2308, 3, 304, 152, 0, 2304, 2305, 5, 247, 0, 0, 2305, 2307, 3, 304, 152, 0, 2306, 2304, 1, 0, 0, 0, 2307, 2310, 1, 0, 0, 0, 2308, 2306, 1, 0, 0, 0, 2308, 2309, 1, 0, 0, 0, 2309, 2311, 1, 0, 0, 0, 2310, 2308, 1, 0, 0, 0, 2311, 2312, 5, 250, 0, 0, 2312, 2509, 1, 0, 0, 0, 2313, 2314, 3, 190, 95, 0, 2314, 2315, 5, 249, 0, 0, 2315, 2316, 5, 241, 0, 0, 2316, 2318, 5, 250, 0, 0, 2317, 2319, 3, 336, 168, 0, 2318, 2317, 1, 0, 0, 0, 2318, 2319, 1, 0, 0, 0, 2319, 2321, 1, 0, 0, 0, 2320, 2322, 3, 338, 169, 0, 2321, 2320, 1, 0, 0, 0, 2321, 2322, 1, 0, 0, 0, 2322, 2509, 1, 0, 0, 0, 2323, 2324, 3, 190, 95, 0, 2324, 2336, 5, 249, 0, 0, 2325, 2327, 3, 276, 138, 0, 2326, 2325, 1, 0, 0, 0, 2326, 2327, 1, 0, 0, 0, 2327, 2328, 1, 0, 0, 0, 2328, 2333, 3, 304, 152, 0, 2329, 2330, 5, 247, 0, 0, 2330, 2332, 3, 304, 152, 0, 2331, 2329, 1, 0, 0, 0, 2332, 2335, 1, 0, 0, 0, 2333, 2331, 1, 0, 0, 0, 2333, 2334, 1, 0, 0, 0, 2334, 2337, 1, 0, 0, 0, 2335, 2333, 1, 0, 0, 0, 2336, 2326, 1, 0, 0, 0, 2336, 2337, 1, 0, 0, 0, 2337, 2348, 1, 0, 0, 0, 2338, 2339, 5, 140, 0, 0, 2339, 2340, 5, 26, 0, 0, 2340, 2345, 3, 264, 132, 0, 2341, 2342, 5, 247, 0, 0, 2342, 2344, 3, 264, 132, 0, 2343, 2341, 1, 0, 0, 0, 2344, 2347, 1, 0, 0, 0, 2345, 2343, 1, 0, 0, 0, 2345, 2346, 1, 0, 0, 0, 2346, 2349, 1, 0, 0, 0, 2347, 2345, 1, 0, 0, 0, 2348, 2338, 1, 0, 0, 0, 2348, 2349, 1, 0, 0, 0, 2349, 2350, 1, 0, 0, 0, 2350, 2352, 5, 250, 0, 0, 2351, 2353, 3, 336, 168, 0, 2352, 2351, 1, 0, 0, 0, 2352, 2353, 1, 0, 0, 0, 2353, 2355, 1, 0, 0, 0, 2354, 2356, 3, 338, 169, 0, 2355, 2354, 1, 0, 0, 0, 2355, 2356, 1, 0, 0, 0, 2356, 2509, 1, 0, 0, 0, 2357, 2358, 3, 356, 178, 0, 2358, 2359, 5, 257, 0, 0, 2359, 2360, 3, 304, 152, 0, 2360, 2509, 1, 0, 0, 0, 2361, 2370, 5, 249, 0, 0, 2362, 2367, 3, 356, 178, 0, 2363, 2364, 5, 247, 0, 0, 2364, 2366, 3, 356, 178, 0, 2365, 2363, 1, 0, 0, 0, 2366, 2369, 1, 0, 0, 0, 2367, 2365, 1, 0, 0, 0, 2367, 2368, 1, 0, 0, 0, 2368, 2371, 1, 0, 0, 0, 2369, 2367, 1, 0, 0, 0, 2370, 2362, 1, 0, 0, 0, 2370, 2371, 1, 0, 0, 0, 2371, 2372, 1, 0, 0, 0, 2372, 2373, 5, 250, 0, 0, 2373, 2374, 5, 257, 0, 0, 2374, 2509, 3, 304, 152, 0, 2375, 2376, 5, 249, 0, 0, 2376, 2377, 3, 204, 102, 0, 2377, 2378, 5, 250, 0, 0, 2378, 2509, 1, 0, 0, 0, 2379, 2380, 5, 66, 0, 0, 2380, 2381, 5, 249, 0, 0, 2381, 2382, 3, 204, 102, 0, 2382, 2383, 5, 250, 0, 0, 2383, 2509, 1, 0, 0, 0, 2384, 2385, 5, 28, 0, 0, 2385, 2387, 3, 310, 155, 0, 2386, 2388, 3, 334, 167, 0, 2387, 2386, 1, 0, 0, 0, 2388, 2389, 1, 0, 0, 0, 2389, 2387, 1, 0, 0, 0, 2389, 2390, 1, 0, 0, 0, 2390, 2393, 1, 0, 0, 0, 2391, 2392, 5, 59, 0, 0, 2392, 2394, 3, 304, 152, 0, 2393, 2391, 1, 0, 0, 0, 2393, 2394, 1, 0, 0, 0, 2394, 2395, 1, 0, 0, 0, 2395, 2396, 5, 61, 0, 0, 2396, 2509, 1, 0, 0, 0, 2397, 2399, 5, 28, 0, 0, 2398, 2400, 3, 334, 167, 0, 2399, 2398, 1, 0, 0, 0, 2400, 2401, 1, 0, 0, 0, 2401, 2399, 1, 0, 0, 0, 2401, 2402, 1, 0, 0, 0, 2402, 2405, 1, 0, 0, 0, 2403, 2404, 5, 59, 0, 0, 2404, 2406, 3, 304, 152, 0, 2405, 2403, 1, 0, 0, 0, 2405, 2406, 1, 0, 0, 0, 2406, 2407, 1, 0, 0, 0, 2407, 2408, 5, 61, 0, 0, 2408, 2509, 1, 0, 0, 0, 2409, 2410, 5, 29, 0, 0, 2410, 2411, 5, 249, 0, 0, 2411, 2412, 3, 304, 152, 0, 2412, 2413, 5, 9, 0, 0, 2413, 2414, 3, 328, 164, 0, 2414, 2415, 5, 250, 0, 0, 2415, 2509, 1, 0, 0, 0, 2416, 2417, 5, 197, 0, 0, 2417, 2418, 5, 249, 0, 0, 2418, 2419, 3, 304, 152, 0, 2419, 2420, 5, 9, 0, 0, 2420, 2421, 3, 328, 164, 0, 2421, 2422, 5, 250, 0, 0, 2422, 2509, 1, 0, 0, 0, 2423, 2424, 5, 8, 0, 0, 2424, 2433, 5, 251, 0, 0, 2425, 2430, 3, 304, 152, 0, 2426, 2427, 5, 247, 0, 0, 2427, 2429, 3, 304, 152, 0, 2428, 2426, 1, 0, 0, 0, 2429, 2432, 1, 0, 0, 0, 2430, 2428, 1, 0, 0, 0, 2430, 2431, 1, 0, 0, 0, 2431, 2434, 1, 0, 0, 0, 2432, 2430, 1, 0, 0, 0, 2433, 2425, 1, 0, 0, 0, 2433, 2434, 1, 0, 0, 0, 2434, 2435, 1, 0, 0, 0, 2435, 2509, 5, 252, 0, 0, 2436, 2509, 3, 356, 178, 0, 2437, 2509, 5, 40, 0, 0, 2438, 2442, 5, 42, 0, 0, 2439, 2440, 5, 249, 0, 0, 2440, 2441, 5, 261, 0, 0, 2441, 2443, 5, 250, 0, 0, 2442, 2439, 1, 0, 0, 0, 2442, 2443, 1, 0, 0, 0, 2443, 2509, 1, 0, 0, 0, 2444, 2448, 5, 43, 0, 0, 2445, 2446, 5, 249, 0, 0, 2446, 2447, 5, 261, 0, 0, 2447, 2449, 5, 250, 0, 0, 2448, 2445, 1, 0, 0, 0, 2448, 2449, 1, 0, 0, 0, 2449, 2509, 1, 0, 0, 0, 2450, 2454, 5, 119, 0, 0, 2451, 2452, 5, 249, 0, 0, 2452, 2453, 5, 261, 0, 0, 2453, 2455, 5, 250, 0, 0, 2454, 2451, 1, 0, 0, 0, 2454, 2455, 1, 0, 0, 0, 2455, 2509, 1, 0, 0, 0, 2456, 2460, 5, 120, 0, 0, 2457, 2458, 5, 249, 0, 0, 2458, 2459, 5, 261, 0, 0, 2459, 2461, 5, 250, 0, 0, 2460, 2457, 1, 0, 0, 0, 2460, 2461, 1, 0, 0, 0, 2461, 2509, 1, 0, 0, 0, 2462, 2509, 5, 44, 0, 0, 2463, 2509, 5, 41, 0, 0, 2464, 2465, 5, 186, 0, 0, 2465, 2466, 5, 249, 0, 0, 2466, 2467, 3, 310, 155, 0, 2467, 2468, 5, 82, 0, 0, 2468, 2471, 3, 310, 155, 0, 2469, 2470, 5, 78, 0, 0, 2470, 2472, 3, 310, 155, 0, 2471, 2469, 1, 0, 0, 0, 2471, 2472, 1, 0, 0, 0, 2472, 2473, 1, 0, 0, 0, 2473, 2474, 5, 250, 0, 0, 2474, 2509, 1, 0, 0, 0, 2475, 2476, 5, 132, 0, 0, 2476, 2477, 5, 249, 0, 0, 2477, 2480, 3, 310, 155, 0, 2478, 2479, 5, 247, 0, 0, 2479, 2481, 3, 326, 163, 0, 2480, 2478, 1, 0, 0, 0, 2480, 2481, 1, 0, 0, 0, 2481, 2482, 1, 0, 0, 0, 2482, 2483, 5, 250, 0, 0, 2483, 2509, 1, 0, 0, 0, 2484, 2485, 5, 68, 0, 0, 2485, 2486, 5, 249, 0, 0, 2486, 2487, 3, 356, 178, 0, 2487, 2488, 5, 82, 0, 0, 2488, 2489, 3, 310, 155, 0, 2489, 2490, 5, 250, 0, 0, 2490, 2509, 1, 0, 0, 0, 2491, 2492, 5, 249, 0, 0, 2492, 2493, 3, 304, 152, 0, 2493, 2494, 5, 250, 0, 0, 2494, 2509, 1, 0, 0, 0, 2495, 2496, 5, 88, 0, 0, 2496, 2505, 5, 249, 0, 0, 2497, 2502, 3, 352, 176, 0, 2498, 2499, 5, 247, 0, 0, 2499, 2501, 3, 352, 176, 0, 2500, 2498, 1, 0, 0, 0, 2501, 2504, 1, 0, 0, 0, 2502, 2500, 1, 0, 0, 0, 2502, 2503, 1, 0, 0, 0, 2503, 2506, 1, 0, 0, 0, 2504, 2502, 1, 0, 0, 0, 2505, 2497, 1, 0, 0, 0, 2505, 2506, 1, 0, 0, 0, 2506, 2507, 1, 0, 0, 0, 2507, 2509, 5, 250, 0, 0, 2508, 2262, 1, 0, 0, 0, 2508, 2264, 1, 0, 0, 0, 2508, 2265, 1, 0, 0, 0, 2508, 2268, 1, 0, 0, 0, 2508, 2270, 1, 0, 0, 0, 2508, 2271, 1, 0, 0, 0, 2508, 2272, 1, 0, 0, 0, 2508, 2273, 1, 0, 0, 0, 2508, 2274, 1, 0, 0, 0, 2508, 2275, 1, 0, 0, 0, 2508, 2282, 1, 0, 0, 0, 2508, 2301, 1, 0, 0, 0, 2508, 2313, 1, 0, 0, 0, 2508, 2323, 1, 0, 0, 0, 2508, 2357, 1, 0, 0, 0, 2508, 2361, 1, 0, 0, 0, 2508, 2375, 1, 0, 0, 0, 2508, 2379, 1, 0, 0, 0, 2508, 2384, 1, 0, 0, 0, 2508, 2397, 1, 0, 0, 0, 2508, 2409, 1, 0, 0, 0, 2508, 2416, 1, 0, 0, 0, 2508, 2423, 1, 0, 0, 0, 2508, 2436, 1, 0, 0, 0, 2508, 2437, 1, 0, 0, 0, 2508, 2438, 1, 0, 0, 0, 2508, 2444, 1, 0, 0, 0, 2508, 2450, 1, 0, 0, 0, 2508, 2456, 1, 0, 0, 0, 2508, 2462, 1, 0, 0, 0, 2508, 2463, 1, 0, 0, 0, 2508, 2464, 1, 0, 0, 0, 2508, 2475, 1, 0, 0, 0, 2508, 2484, 1, 0, 0, 0, 2508, 2491, 1, 0, 0, 0, 2508, 2495, 1, 0, 0, 0, 2509, 2520, 1, 0, 0, 0, 2510, 2511, 10, 15, 0, 0, 2511, 2512, 5, 251, 0, 0, 2512, 2513, 3, 310, 155, 0, 2513, 2514, 5, 252, 0, 0, 2514, 2519, 1, 0, 0, 0, 2515, 2516, 10, 13, 0, 0, 2516, 2517, 5, 245, 0, 0, 2517, 2519, 3, 356, 178, 0, 2518, 2510, 1, 0, 0, 0, 2518, 2515, 1, 0, 0, 0, 2519, 2522, 1, 0, 0, 0, 2520, 2518, 1, 0, 0, 0, 2520, 2521, 1, 0, 0, 0, 2521, 313, 1, 0, 0, 0, 2522, 2520, 1, 0, 0, 0, 2523, 2530, 5, 258, 0, 0, 2524, 2527, 5, 259, 0, 0, 2525, 2526, 5, 200, 0, 0, 2526, 2528, 5, 258, 0, 0, 2527, 2525, 1, 0, 0, 0, 2527, 2528, 1, 0, 0, 0, 2528, 2530, 1, 0, 0, 0, 2529, 2523, 1, 0, 0, 0, 2529, 2524, 1, 0, 0, 0, 2530, 315, 1, 0, 0, 0, 2531, 2532, 7, 23, 0, 0, 2532, 317, 1, 0, 0, 0, 2533, 2534, 7, 24, 0, 0, 2534, 319, 1, 0, 0, 0, 2535, 2536, 7, 25, 0, 0, 2536, 321, 1, 0, 0, 0, 2537, 2538, 5, 261, 0, 0, 2538, 2552, 3, 324, 162, 0, 2539, 2540, 5, 249, 0, 0, 2540, 2541, 5, 261, 0, 0, 2541, 2542, 5, 250, 0, 0, 2542, 2552, 3, 324, 162, 0, 2543, 2544, 5, 101, 0, 0, 2544, 2545, 5, 261, 0, 0, 2545, 2552, 3, 324, 162, 0, 2546, 2547, 5, 101, 0, 0, 2547, 2548, 5, 249, 0, 0, 2548, 2549, 5, 261, 0, 0, 2549, 2550, 5, 250, 0, 0, 2550, 2552, 3, 324, 162, 0, 2551, 2537, 1, 0, 0, 0, 2551, 2539, 1, 0, 0, 0, 2551, 2543, 1, 0, 0, 0, 2551, 2546, 1, 0, 0, 0, 2552, 323, 1, 0, 0, 0, 2553, 2554, 7, 26, 0, 0, 2554, 325, 1, 0, 0, 0, 2555, 2556, 7, 27, 0, 0, 2556, 327, 1, 0, 0, 0, 2557, 2558, 6, 164, -1, 0, 2558, 2559, 5, 8, 0, 0, 2559, 2560, 5, 235, 0, 0, 2560, 2561, 3, 328, 164, 0, 2561, 2562, 5, 237, 0, 0, 2562, 2602, 1, 0, 0, 0, 2563, 2564, 5, 122, 0, 0, 2564, 2565, 5, 235, 0, 0, 2565, 2566, 3, 328, 164, 0, 2566, 2567, 5, 247, 0, 0, 2567, 2568, 3, 328, 164, 0, 2568, 2569, 5, 237, 0, 0, 2569, 2602, 1, 0, 0, 0, 2570, 2571, 5, 184, 0, 0, 2571, 2572, 5, 235, 0, 0, 2572, 2573, 3, 356, 178, 0, 2573, 2574, 5, 248, 0, 0, 2574, 2582, 3, 328, 164, 0, 2575, 2576, 5, 247, 0, 0, 2576, 2577, 3, 356, 178, 0, 2577, 2578, 5, 248, 0, 0, 2578, 2579, 3, 328, 164, 0, 2579, 2581, 1, 0, 0, 0, 2580, 2575, 1, 0, 0, 0, 2581, 2584, 1, 0, 0, 0, 2582, 2580, 1, 0, 0, 0, 2582, 2583, 1, 0, 0, 0, 2583, 2585, 1, 0, 0, 0, 2584, 2582, 1, 0, 0, 0, 2585, 2586, 5, 237, 0, 0, 2586, 2602, 1, 0, 0, 0, 2587, 2599, 3, 332, 166, 0, 2588, 2589, 5, 249, 0, 0, 2589, 2594, 3, 330, 165, 0, 2590, 2591, 5, 247, 0, 0, 2591, 2593, 3, 330, 165, 0, 2592, 2590, 1, 0, 0, 0, 2593, 2596, 1, 0, 0, 0, 2594, 2592, 1, 0, 0, 0, 2594, 2595, 1, 0, 0, 0, 2595, 2597, 1, 0, 0, 0, 2596, 2594, 1, 0, 0, 0, 2597, 2598, 5, 250, 0, 0, 2598, 2600, 1, 0, 0, 0, 2599, 2588, 1, 0, 0, 0, 2599, 2600, 1, 0, 0, 0, 2600, 2602, 1, 0, 0, 0, 2601, 2557, 1, 0, 0, 0, 2601, 2563, 1, 0, 0, 0, 2601, 2570, 1, 0, 0, 0, 2601, 2587, 1, 0, 0, 0, 2602, 2607, 1, 0, 0, 0, 2603, 2604, 10, 5, 0, 0, 2604, 2606, 5, 8, 0, 0, 2605, 2603, 1, 0, 0, 0, 2606, 2609, 1, 0, 0, 0, 2607, 2605, 1, 0, 0, 0, 2607, 2608, 1, 0, 0, 0, 2608, 329, 1, 0, 0, 0, 2609, 2607, 1, 0, 0, 0, 2610, 2613, 5, 261, 0, 0, 2611, 2613, 3, 328, 164, 0, 2612, 2610, 1, 0, 0, 0, 2612, 2611, 1, 0, 0, 0, 2613, 331, 1, 0, 0, 0, 2614, 2619, 5, 268, 0, 0, 2615, 2619, 5, 269, 0, 0, 2616, 2619, 5, 270, 0, 0, 2617, 2619, 3, 356, 178, 0, 2618, 2614, 1, 0, 0, 0, 2618, 2615, 1, 0, 0, 0, 2618, 2616, 1, 0, 0, 0, 2618, 2617, 1, 0, 0, 0, 2619, 333, 1, 0, 0, 0, 2620, 2621, 5, 216, 0, 0, 2621, 2622, 3, 304, 152, 0, 2622, 2623, 5, 194, 0, 0, 2623, 2624, 3, 304, 152, 0, 2624, 335, 1, 0, 0, 0, 2625, 2626, 5, 74, 0, 0, 2626, 2627, 5, 249, 0, 0, 2627, 2628, 5, 217, 0, 0, 2628, 2629, 3, 306, 153, 0, 2629, 2630, 5, 250, 0, 0, 2630, 337, 1, 0, 0, 0, 2631, 2632, 5, 144, 0, 0, 2632, 2643, 5, 249, 0, 0, 2633, 2634, 5, 146, 0, 0, 2634, 2635, 5, 26, 0, 0, 2635, 2640, 3, 304, 152, 0, 2636, 2637, 5, 247, 0, 0, 2637, 2639, 3, 304, 152, 0, 2638, 2636, 1, 0, 0, 0, 2639, 2642, 1, 0, 0, 0, 2640, 2638, 1, 0, 0, 0, 2640, 2641, 1, 0, 0, 0, 2641, 2644, 1, 0, 0, 0, 2642, 2640, 1, 0, 0, 0, 2643, 2633, 1, 0, 0, 0, 2643, 2644, 1, 0, 0, 0, 2644, 2655, 1, 0, 0, 0, 2645, 2646, 5, 140, 0, 0, 2646, 2647, 5, 26, 0, 0, 2647, 2652, 3, 264, 132, 0, 2648, 2649, 5, 247, 0, 0, 2649, 2651, 3, 264, 132, 0, 2650, 2648, 1, 0, 0, 0, 2651, 2654, 1, 0, 0, 0, 2652, 2650, 1, 0, 0, 0, 2652, 2653, 1, 0, 0, 0, 2653, 2656, 1, 0, 0, 0, 2654, 2652, 1, 0, 0, 0, 2655, 2645, 1, 0, 0, 0, 2655, 2656, 1, 0, 0, 0, 2656, 2658, 1, 0, 0, 0, 2657, 2659, 3, 340, 170, 0, 2658, 2657, 1, 0, 0, 0, 2658, 2659, 1, 0, 0, 0, 2659, 2660, 1, 0, 0, 0, 2660, 2661, 5, 250, 0, 0, 2661, 339, 1, 0, 0, 0, 2662, 2663, 5, 155, 0, 0, 2663, 2679, 3, 342, 171, 0, 2664, 2665, 5, 170, 0, 0, 2665, 2679, 3, 342, 171, 0, 2666, 2667, 5, 155, 0, 0, 2667, 2668, 5, 15, 0, 0, 2668, 2669, 3, 342, 171, 0, 2669, 2670, 5, 5, 0, 0, 2670, 2671, 3, 342, 171, 0, 2671, 2679, 1, 0, 0, 0, 2672, 2673, 5, 170, 0, 0, 2673, 2674, 5, 15, 0, 0, 2674, 2675, 3, 342, 171, 0, 2675, 2676, 5, 5, 0, 0, 2676, 2677, 3, 342, 171, 0, 2677, 2679, 1, 0, 0, 0, 2678, 2662, 1, 0, 0, 0, 2678, 2664, 1, 0, 0, 0, 2678, 2666, 1, 0, 0, 0, 2678, 2672, 1, 0, 0, 0, 2679, 341, 1, 0, 0, 0, 2680, 2681, 5, 201, 0, 0, 2681, 2690, 5, 150, 0, 0, 2682, 2683, 5, 201, 0, 0, 2683, 2690, 5, 77, 0, 0, 2684, 2685, 5, 39, 0, 0, 2685, 2690, 5, 169, 0, 0, 2686, 2687, 3, 304, 152, 0, 2687, 2688, 7, 28, 0, 0, 2688, 2690, 1, 0, 0, 0, 2689, 2680, 1, 0, 0, 0, 2689, 2682, 1, 0, 0, 0, 2689, 2684, 1, 0, 0, 0, 2689, 2686, 1, 0, 0, 0, 2690, 343, 1, 0, 0, 0, 2691, 2692, 3, 356, 178, 0, 2692, 2693, 5, 245, 0, 0, 2693, 2694, 3, 356, 178, 0, 2694, 2697, 1, 0, 0, 0, 2695, 2697, 3, 356, 178, 0, 2696, 2691, 1, 0, 0, 0, 2696, 2695, 1, 0, 0, 0, 2697, 345, 1, 0, 0, 0, 2698, 2703, 3, 344, 172, 0, 2699, 2700, 5, 247, 0, 0, 2700, 2702, 3, 344, 172, 0, 2701, 2699, 1, 0, 0, 0, 2702, 2705, 1, 0, 0, 0, 2703, 2701, 1, 0, 0, 0, 2703, 2704, 1, 0, 0, 0, 2704, 347, 1, 0, 0, 0, 2705, 2703, 1, 0, 0, 0, 2706, 2720, 5, 2, 0, 0, 2707, 2720, 5, 4, 0, 0, 2708, 2720, 5, 58, 0, 0, 2709, 2720, 5, 37, 0, 0, 2710, 2720, 5, 99, 0, 0, 2711, 2720, 5, 163, 0, 0, 2712, 2717, 5, 175, 0, 0, 2713, 2714, 5, 249, 0, 0, 2714, 2715, 3, 356, 178, 0, 2715, 2716, 5, 250, 0, 0, 2716, 2718, 1, 0, 0, 0, 2717, 2713, 1, 0, 0, 0, 2717, 2718, 1, 0, 0, 0, 2718, 2720, 1, 0, 0, 0, 2719, 2706, 1, 0, 0, 0, 2719, 2707, 1, 0, 0, 0, 2719, 2708, 1, 0, 0, 0, 2719, 2709, 1, 0, 0, 0, 2719, 2710, 1, 0, 0, 0, 2719, 2711, 1, 0, 0, 0, 2719, 2712, 1, 0, 0, 0, 2720, 349, 1, 0, 0, 0, 2721, 2722, 7, 29, 0, 0, 2722, 351, 1, 0, 0, 0, 2723, 2728, 3, 356, 178, 0, 2724, 2725, 5, 245, 0, 0, 2725, 2727, 3, 356, 178, 0, 2726, 2724, 1, 0, 0, 0, 2727, 2730, 1, 0, 0, 0, 2728, 2726, 1, 0, 0, 0, 2728, 2729, 1, 0, 0, 0, 2729, 353, 1, 0, 0, 0, 2730, 2728, 1, 0, 0, 0, 2731, 2732, 5, 167, 0, 0, 2732, 2738, 3, 356, 178, 0, 2733, 2734, 5, 206, 0, 0, 2734, 2738, 3, 356, 178, 0, 2735, 2736, 5, 87, 0, 0, 2736, 2738, 3, 356, 178, 0, 2737, 2731, 1, 0, 0, 0, 2737, 2733, 1, 0, 0, 0, 2737, 2735, 1, 0, 0, 0, 2738, 355, 1, 0, 0, 0, 2739, 2745, 5, 264, 0, 0, 2740, 2745, 5, 258, 0, 0, 2741, 2745, 3, 362, 181, 0, 2742, 2745, 5, 267, 0, 0, 2743, 2745, 5, 265, 0, 0, 2744, 2739, 1, 0, 0, 0, 2744, 2740, 1, 0, 0, 0, 2744, 2741, 1, 0, 0, 0, 2744, 2742, 1, 0, 0, 0, 2744, 2743, 1, 0, 0, 0, 2745, 357, 1, 0, 0, 0, 2746, 2748, 5, 240, 0, 0, 2747, 2746, 1, 0, 0, 0, 2747, 2748, 1, 0, 0, 0, 2748, 2749, 1, 0, 0, 0, 2749, 2759, 5, 262, 0, 0, 2750, 2752, 5, 240, 0, 0, 2751, 2750, 1, 0, 0, 0, 2751, 2752, 1, 0, 0, 0, 2752, 2753, 1, 0, 0, 0, 2753, 2759, 5, 263, 0, 0, 2754, 2756, 5, 240, 0, 0, 2755, 2754, 1, 0, 0, 0, 2755, 2756, 1, 0, 0, 0, 2756, 2757, 1, 0, 0, 0, 2757, 2759, 5, 261, 0, 0, 2758, 2747, 1, 0, 0, 0, 2758, 2751, 1, 0, 0, 0, 2758, 2755, 1, 0, 0, 0, 2759, 359, 1, 0, 0, 0, 2760, 2761, 7, 30, 0, 0, 2761, 361, 1, 0, 0, 0, 2762, 2763, 7, 31, 0, 0, 2763, 363, 1, 0, 0, 0, 352, 367, 374, 398, 411, 415, 419, 428, 433, 437, 443, 445, 450, 454, 458, 465, 470, 476, 480, 489, 496, 500, 505, 507, 512, 516, 523, 527, 532, 536, 540, 544, 552, 557, 561, 569, 573, 582, 585, 588, 594, 601, 612, 617, 622, 627, 632, 641, 644, 647, 651, 677, 703, 712, 722, 725, 739, 757, 759, 768, 779, 788, 795, 799, 806, 812, 815, 820, 827, 841, 854, 859, 864, 870, 906, 909, 915, 918, 924, 930, 942, 944, 952, 960, 965, 969, 974, 981, 985, 989, 995, 999, 1003, 1012, 1015, 1018, 1026, 1040, 1047, 1060, 1066, 1071, 1074, 1077, 1082, 1086, 1095, 1100, 1106, 1110, 1115, 1120, 1123, 1131, 1134, 1138, 1150, 1153, 1157, 1162, 1166, 1182, 1187, 1194, 1197, 1203, 1206, 1213, 1216, 1220, 1225, 1228, 1235, 1238, 1262, 1276, 1280, 1284, 1304, 1306, 1308, 1317, 1319, 1328, 1330, 1339, 1341, 1346, 1355, 1364, 1373, 1384, 1390, 1395, 1398, 1411, 1421, 1425, 1430, 1441, 1446, 1479, 1487, 1492, 1496, 1500, 1505, 1509, 1514, 1519, 1524, 1528, 1537, 1540, 1544, 1551, 1562, 1568, 1572, 1578, 1588, 1595, 1600, 1605, 1610, 1616, 1619, 1628, 1631, 1634, 1640, 1646, 1656, 1659, 1663, 1667, 1670, 1676, 1679, 1685, 1691, 1694, 1697, 1701, 1711, 1722, 1727, 1730, 1734, 1741, 1751, 1763, 1769, 1771, 1780, 1783, 1790, 1800, 1806, 1814, 1825, 1835, 1846, 1848, 1854, 1859, 1869, 1872, 1878, 1880, 1888, 1894, 1897, 1899, 1911, 1918, 1922, 1926, 1930, 1933, 1940, 1949, 1952, 1956, 1961, 1965, 1968, 1975, 1986, 1989, 1993, 1997, 2006, 2009, 2016, 2030, 2034, 2038, 2042, 2046, 2050, 2054, 2058, 2068, 2079, 2084, 2097, 2099, 2105, 2109, 2111, 2119, 2126, 2131, 2144, 2150, 2158, 2165, 2169, 2177, 2179, 2190, 2198, 2207, 2213, 2218, 2224, 2230, 2235, 2240, 2246, 2257, 2259, 2286, 2292, 2296, 2308, 2318, 2321, 2326, 2333, 2336, 2345, 2348, 2352, 2355, 2367, 2370, 2389, 2393, 2401, 2405, 2430, 2433, 2442, 2448, 2454, 2460, 2471, 2480, 2502, 2505, 2508, 2518, 2520, 2527, 2529, 2551, 2582, 2594, 2599, 2601, 2607, 2612, 2618, 2640, 2643, 2652, 2655, 2658, 2678, 2689, 2696, 2703, 2717, 2719, 2728, 2737, 2744, 2747, 2751, 2755, 2758] \ No newline at end of file +[4, 1, 289, 2773, 2, 0, 7, 0, 2, 1, 7, 1, 2, 2, 7, 2, 2, 3, 7, 3, 2, 4, 7, 4, 2, 5, 7, 5, 2, 6, 7, 6, 2, 7, 7, 7, 2, 8, 7, 8, 2, 9, 7, 9, 2, 10, 7, 10, 2, 11, 7, 11, 2, 12, 7, 12, 2, 13, 7, 13, 2, 14, 7, 14, 2, 15, 7, 15, 2, 16, 7, 16, 2, 17, 7, 17, 2, 18, 7, 18, 2, 19, 7, 19, 2, 20, 7, 20, 2, 21, 7, 21, 2, 22, 7, 22, 2, 23, 7, 23, 2, 24, 7, 24, 2, 25, 7, 25, 2, 26, 7, 26, 2, 27, 7, 27, 2, 28, 7, 28, 2, 29, 7, 29, 2, 30, 7, 30, 2, 31, 7, 31, 2, 32, 7, 32, 2, 33, 7, 33, 2, 34, 7, 34, 2, 35, 7, 35, 2, 36, 7, 36, 2, 37, 7, 37, 2, 38, 7, 38, 2, 39, 7, 39, 2, 40, 7, 40, 2, 41, 7, 41, 2, 42, 7, 42, 2, 43, 7, 43, 2, 44, 7, 44, 2, 45, 7, 45, 2, 46, 7, 46, 2, 47, 7, 47, 2, 48, 7, 48, 2, 49, 7, 49, 2, 50, 7, 50, 2, 51, 7, 51, 2, 52, 7, 52, 2, 53, 7, 53, 2, 54, 7, 54, 2, 55, 7, 55, 2, 56, 7, 56, 2, 57, 7, 57, 2, 58, 7, 58, 2, 59, 7, 59, 2, 60, 7, 60, 2, 61, 7, 61, 2, 62, 7, 62, 2, 63, 7, 63, 2, 64, 7, 64, 2, 65, 7, 65, 2, 66, 7, 66, 2, 67, 7, 67, 2, 68, 7, 68, 2, 69, 7, 69, 2, 70, 7, 70, 2, 71, 7, 71, 2, 72, 7, 72, 2, 73, 7, 73, 2, 74, 7, 74, 2, 75, 7, 75, 2, 76, 7, 76, 2, 77, 7, 77, 2, 78, 7, 78, 2, 79, 7, 79, 2, 80, 7, 80, 2, 81, 7, 81, 2, 82, 7, 82, 2, 83, 7, 83, 2, 84, 7, 84, 2, 85, 7, 85, 2, 86, 7, 86, 2, 87, 7, 87, 2, 88, 7, 88, 2, 89, 7, 89, 2, 90, 7, 90, 2, 91, 7, 91, 2, 92, 7, 92, 2, 93, 7, 93, 2, 94, 7, 94, 2, 95, 7, 95, 2, 96, 7, 96, 2, 97, 7, 97, 2, 98, 7, 98, 2, 99, 7, 99, 2, 100, 7, 100, 2, 101, 7, 101, 2, 102, 7, 102, 2, 103, 7, 103, 2, 104, 7, 104, 2, 105, 7, 105, 2, 106, 7, 106, 2, 107, 7, 107, 2, 108, 7, 108, 2, 109, 7, 109, 2, 110, 7, 110, 2, 111, 7, 111, 2, 112, 7, 112, 2, 113, 7, 113, 2, 114, 7, 114, 2, 115, 7, 115, 2, 116, 7, 116, 2, 117, 7, 117, 2, 118, 7, 118, 2, 119, 7, 119, 2, 120, 7, 120, 2, 121, 7, 121, 2, 122, 7, 122, 2, 123, 7, 123, 2, 124, 7, 124, 2, 125, 7, 125, 2, 126, 7, 126, 2, 127, 7, 127, 2, 128, 7, 128, 2, 129, 7, 129, 2, 130, 7, 130, 2, 131, 7, 131, 2, 132, 7, 132, 2, 133, 7, 133, 2, 134, 7, 134, 2, 135, 7, 135, 2, 136, 7, 136, 2, 137, 7, 137, 2, 138, 7, 138, 2, 139, 7, 139, 2, 140, 7, 140, 2, 141, 7, 141, 2, 142, 7, 142, 2, 143, 7, 143, 2, 144, 7, 144, 2, 145, 7, 145, 2, 146, 7, 146, 2, 147, 7, 147, 2, 148, 7, 148, 2, 149, 7, 149, 2, 150, 7, 150, 2, 151, 7, 151, 2, 152, 7, 152, 2, 153, 7, 153, 2, 154, 7, 154, 2, 155, 7, 155, 2, 156, 7, 156, 2, 157, 7, 157, 2, 158, 7, 158, 2, 159, 7, 159, 2, 160, 7, 160, 2, 161, 7, 161, 2, 162, 7, 162, 2, 163, 7, 163, 2, 164, 7, 164, 2, 165, 7, 165, 2, 166, 7, 166, 2, 167, 7, 167, 2, 168, 7, 168, 2, 169, 7, 169, 2, 170, 7, 170, 2, 171, 7, 171, 2, 172, 7, 172, 2, 173, 7, 173, 2, 174, 7, 174, 2, 175, 7, 175, 2, 176, 7, 176, 2, 177, 7, 177, 2, 178, 7, 178, 2, 179, 7, 179, 2, 180, 7, 180, 2, 181, 7, 181, 2, 182, 7, 182, 1, 0, 5, 0, 368, 8, 0, 10, 0, 12, 0, 371, 9, 0, 1, 0, 1, 0, 1, 1, 1, 1, 3, 1, 377, 8, 1, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 2, 401, 8, 2, 1, 3, 1, 3, 1, 3, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 1, 4, 3, 4, 414, 8, 4, 1, 5, 1, 5, 3, 5, 418, 8, 5, 1, 5, 1, 5, 3, 5, 422, 8, 5, 1, 5, 1, 5, 1, 5, 1, 5, 1, 5, 5, 5, 429, 8, 5, 10, 5, 12, 5, 432, 9, 5, 1, 5, 1, 5, 3, 5, 436, 8, 5, 1, 5, 1, 5, 3, 5, 440, 8, 5, 1, 5, 1, 5, 1, 5, 1, 5, 3, 5, 446, 8, 5, 3, 5, 448, 8, 5, 1, 5, 1, 5, 1, 5, 3, 5, 453, 8, 5, 1, 6, 1, 6, 3, 6, 457, 8, 6, 1, 6, 1, 6, 3, 6, 461, 8, 6, 1, 6, 1, 6, 1, 6, 1, 6, 1, 6, 3, 6, 468, 8, 6, 1, 6, 1, 6, 1, 6, 3, 6, 473, 8, 6, 1, 6, 1, 6, 1, 7, 1, 7, 3, 7, 479, 8, 7, 1, 7, 1, 7, 3, 7, 483, 8, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 5, 7, 490, 8, 7, 10, 7, 12, 7, 493, 9, 7, 1, 7, 1, 7, 1, 7, 1, 7, 3, 7, 499, 8, 7, 1, 7, 1, 7, 3, 7, 503, 8, 7, 1, 7, 1, 7, 1, 7, 3, 7, 508, 8, 7, 3, 7, 510, 8, 7, 1, 7, 1, 7, 1, 7, 3, 7, 515, 8, 7, 1, 7, 1, 7, 3, 7, 519, 8, 7, 1, 7, 1, 7, 1, 7, 1, 7, 1, 7, 3, 7, 526, 8, 7, 1, 7, 1, 7, 3, 7, 530, 8, 7, 1, 8, 1, 8, 1, 8, 3, 8, 535, 8, 8, 1, 8, 1, 8, 3, 8, 539, 8, 8, 1, 8, 1, 8, 3, 8, 543, 8, 8, 1, 8, 1, 8, 3, 8, 547, 8, 8, 1, 8, 1, 8, 1, 8, 1, 9, 1, 9, 1, 9, 3, 9, 555, 8, 9, 1, 9, 1, 9, 1, 9, 3, 9, 560, 8, 9, 1, 9, 1, 9, 3, 9, 564, 8, 9, 1, 10, 1, 10, 1, 10, 1, 10, 1, 11, 1, 11, 3, 11, 572, 8, 11, 1, 11, 1, 11, 3, 11, 576, 8, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 5, 11, 583, 8, 11, 10, 11, 12, 11, 586, 9, 11, 3, 11, 588, 8, 11, 1, 11, 3, 11, 591, 8, 11, 1, 11, 1, 11, 1, 11, 1, 11, 3, 11, 597, 8, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 3, 11, 604, 8, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 1, 11, 3, 11, 615, 8, 11, 1, 11, 1, 11, 1, 11, 3, 11, 620, 8, 11, 1, 11, 1, 11, 1, 11, 3, 11, 625, 8, 11, 1, 11, 1, 11, 1, 11, 3, 11, 630, 8, 11, 1, 12, 1, 12, 1, 12, 3, 12, 635, 8, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 5, 12, 642, 8, 12, 10, 12, 12, 12, 645, 9, 12, 3, 12, 647, 8, 12, 1, 12, 3, 12, 650, 8, 12, 1, 12, 1, 12, 3, 12, 654, 8, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 12, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 1, 13, 3, 13, 680, 8, 13, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 14, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 1, 15, 3, 15, 706, 8, 15, 1, 15, 1, 15, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 3, 16, 715, 8, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 1, 16, 3, 16, 725, 8, 16, 1, 16, 3, 16, 728, 8, 16, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 17, 1, 18, 1, 18, 1, 18, 1, 18, 1, 18, 3, 18, 742, 8, 18, 1, 18, 1, 18, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 19, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 3, 20, 760, 8, 20, 3, 20, 762, 8, 20, 1, 20, 1, 20, 1, 20, 1, 20, 1, 20, 5, 20, 769, 8, 20, 10, 20, 12, 20, 772, 9, 20, 1, 20, 1, 20, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 1, 21, 3, 21, 782, 8, 21, 1, 21, 1, 21, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 3, 22, 791, 8, 22, 1, 22, 1, 22, 1, 22, 1, 22, 1, 22, 3, 22, 798, 8, 22, 1, 22, 1, 22, 3, 22, 802, 8, 22, 1, 23, 1, 23, 1, 23, 1, 23, 1, 23, 3, 23, 809, 8, 23, 1, 23, 1, 23, 1, 23, 1, 23, 3, 23, 815, 8, 23, 1, 23, 3, 23, 818, 8, 23, 1, 23, 1, 23, 1, 23, 3, 23, 823, 8, 23, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 3, 24, 830, 8, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 1, 24, 3, 24, 844, 8, 24, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 25, 1, 26, 1, 26, 1, 26, 1, 26, 1, 26, 3, 26, 857, 8, 26, 1, 26, 1, 26, 1, 26, 3, 26, 862, 8, 26, 1, 26, 1, 26, 1, 26, 3, 26, 867, 8, 26, 1, 27, 1, 27, 1, 27, 1, 27, 3, 27, 873, 8, 27, 1, 27, 1, 27, 1, 27, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 28, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 29, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 30, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 31, 1, 32, 1, 32, 3, 32, 909, 8, 32, 1, 32, 3, 32, 912, 8, 32, 1, 32, 1, 32, 1, 33, 1, 33, 3, 33, 918, 8, 33, 1, 33, 3, 33, 921, 8, 33, 1, 33, 1, 33, 1, 34, 1, 34, 3, 34, 927, 8, 34, 1, 35, 1, 35, 1, 35, 1, 35, 3, 35, 933, 8, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 1, 35, 3, 35, 945, 8, 35, 3, 35, 947, 8, 35, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 1, 36, 3, 36, 958, 8, 36, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 1, 37, 3, 37, 966, 8, 37, 1, 38, 1, 38, 1, 38, 3, 38, 971, 8, 38, 1, 38, 1, 38, 3, 38, 975, 8, 38, 1, 39, 1, 39, 1, 39, 3, 39, 980, 8, 39, 1, 39, 1, 39, 1, 40, 1, 40, 1, 40, 3, 40, 987, 8, 40, 1, 40, 1, 40, 3, 40, 991, 8, 40, 1, 41, 1, 41, 3, 41, 995, 8, 41, 1, 41, 1, 41, 1, 41, 1, 41, 3, 41, 1001, 8, 41, 1, 42, 1, 42, 3, 42, 1005, 8, 42, 1, 42, 1, 42, 3, 42, 1009, 8, 42, 1, 42, 1, 42, 1, 42, 1, 42, 1, 42, 5, 42, 1016, 8, 42, 10, 42, 12, 42, 1019, 9, 42, 3, 42, 1021, 8, 42, 1, 42, 3, 42, 1024, 8, 42, 1, 43, 1, 43, 1, 43, 1, 43, 1, 44, 1, 44, 3, 44, 1032, 8, 44, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 45, 1, 46, 1, 46, 1, 46, 1, 46, 1, 46, 3, 46, 1046, 8, 46, 1, 46, 1, 46, 1, 46, 1, 47, 1, 47, 3, 47, 1053, 8, 47, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 48, 1, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1066, 8, 49, 1, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1072, 8, 49, 1, 49, 1, 49, 1, 49, 3, 49, 1077, 8, 49, 1, 49, 3, 49, 1080, 8, 49, 1, 50, 3, 50, 1083, 8, 50, 1, 50, 1, 50, 1, 50, 3, 50, 1088, 8, 50, 1, 50, 1, 50, 3, 50, 1092, 8, 50, 1, 50, 1, 50, 1, 50, 1, 50, 1, 50, 5, 50, 1099, 8, 50, 10, 50, 12, 50, 1102, 9, 50, 1, 50, 1, 50, 3, 50, 1106, 8, 50, 1, 50, 1, 50, 1, 51, 1, 51, 3, 51, 1112, 8, 51, 1, 52, 1, 52, 3, 52, 1116, 8, 52, 1, 52, 1, 52, 1, 52, 3, 52, 1121, 8, 52, 1, 53, 1, 53, 1, 53, 3, 53, 1126, 8, 53, 1, 53, 3, 53, 1129, 8, 53, 1, 53, 1, 53, 1, 53, 1, 53, 5, 53, 1135, 8, 53, 10, 53, 12, 53, 1138, 9, 53, 3, 53, 1140, 8, 53, 1, 53, 1, 53, 3, 53, 1144, 8, 53, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 1, 54, 5, 54, 1154, 8, 54, 10, 54, 12, 54, 1157, 9, 54, 3, 54, 1159, 8, 54, 1, 54, 1, 54, 3, 54, 1163, 8, 54, 1, 55, 1, 55, 1, 55, 3, 55, 1168, 8, 55, 1, 55, 1, 55, 3, 55, 1172, 8, 55, 1, 55, 1, 55, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 1, 56, 3, 56, 1188, 8, 56, 1, 57, 1, 57, 1, 57, 3, 57, 1193, 8, 57, 1, 57, 1, 57, 1, 57, 5, 57, 1198, 8, 57, 10, 57, 12, 57, 1201, 9, 57, 3, 57, 1203, 8, 57, 1, 58, 1, 58, 1, 58, 1, 58, 3, 58, 1209, 8, 58, 1, 58, 3, 58, 1212, 8, 58, 1, 58, 1, 58, 1, 58, 5, 58, 1217, 8, 58, 10, 58, 12, 58, 1220, 9, 58, 3, 58, 1222, 8, 58, 1, 59, 1, 59, 3, 59, 1226, 8, 59, 1, 59, 1, 59, 1, 59, 3, 59, 1231, 8, 59, 1, 59, 3, 59, 1234, 8, 59, 1, 59, 1, 59, 1, 59, 5, 59, 1239, 8, 59, 10, 59, 12, 59, 1242, 9, 59, 3, 59, 1244, 8, 59, 1, 60, 1, 60, 1, 60, 1, 60, 1, 60, 1, 61, 1, 61, 1, 61, 1, 61, 1, 61, 1, 62, 1, 62, 1, 62, 1, 62, 1, 62, 1, 63, 1, 63, 1, 63, 1, 63, 1, 63, 1, 64, 1, 64, 3, 64, 1268, 8, 64, 1, 64, 1, 64, 1, 64, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 1, 65, 3, 65, 1282, 8, 65, 1, 65, 1, 65, 3, 65, 1286, 8, 65, 1, 66, 1, 66, 3, 66, 1290, 8, 66, 1, 66, 1, 66, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 67, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 1, 68, 3, 68, 1310, 8, 68, 3, 68, 1312, 8, 68, 3, 68, 1314, 8, 68, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 1, 69, 3, 69, 1323, 8, 69, 3, 69, 1325, 8, 69, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 1, 70, 3, 70, 1334, 8, 70, 3, 70, 1336, 8, 70, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 1, 71, 3, 71, 1345, 8, 71, 3, 71, 1347, 8, 71, 1, 72, 1, 72, 1, 72, 3, 72, 1352, 8, 72, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 1, 73, 3, 73, 1361, 8, 73, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 1, 74, 3, 74, 1370, 8, 74, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 1, 75, 3, 75, 1379, 8, 75, 1, 76, 1, 76, 1, 76, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 1, 77, 3, 77, 1390, 8, 77, 1, 78, 1, 78, 1, 78, 1, 78, 3, 78, 1396, 8, 78, 1, 78, 1, 78, 1, 78, 3, 78, 1401, 8, 78, 1, 78, 3, 78, 1404, 8, 78, 1, 78, 1, 78, 1, 79, 1, 79, 1, 79, 1, 79, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 3, 80, 1417, 8, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 1, 80, 3, 80, 1427, 8, 80, 1, 80, 1, 80, 3, 80, 1431, 8, 80, 1, 81, 1, 81, 1, 81, 3, 81, 1436, 8, 81, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 1, 82, 5, 82, 1445, 8, 82, 10, 82, 12, 82, 1448, 9, 82, 1, 82, 1, 82, 3, 82, 1452, 8, 82, 1, 83, 1, 83, 1, 83, 1, 84, 1, 84, 1, 84, 1, 84, 1, 85, 1, 85, 1, 85, 1, 86, 1, 86, 1, 86, 1, 86, 1, 87, 1, 87, 1, 88, 1, 88, 1, 89, 1, 89, 1, 90, 1, 90, 1, 91, 1, 91, 1, 92, 1, 92, 1, 93, 1, 93, 1, 93, 5, 93, 1483, 8, 93, 10, 93, 12, 93, 1486, 9, 93, 1, 94, 1, 94, 1, 94, 5, 94, 1491, 8, 94, 10, 94, 12, 94, 1494, 9, 94, 1, 95, 1, 95, 3, 95, 1498, 8, 95, 1, 96, 1, 96, 3, 96, 1502, 8, 96, 1, 97, 1, 97, 3, 97, 1506, 8, 97, 1, 98, 1, 98, 1, 98, 3, 98, 1511, 8, 98, 1, 98, 1, 98, 3, 98, 1515, 8, 98, 1, 98, 1, 98, 1, 98, 3, 98, 1520, 8, 98, 1, 98, 1, 98, 1, 98, 3, 98, 1525, 8, 98, 1, 98, 1, 98, 1, 98, 3, 98, 1530, 8, 98, 1, 98, 1, 98, 3, 98, 1534, 8, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 1, 98, 3, 98, 1543, 8, 98, 1, 98, 3, 98, 1546, 8, 98, 1, 98, 1, 98, 3, 98, 1550, 8, 98, 1, 99, 1, 99, 1, 99, 5, 99, 1555, 8, 99, 10, 99, 12, 99, 1558, 9, 99, 1, 100, 1, 100, 1, 100, 1, 100, 1, 101, 1, 101, 1, 101, 1, 101, 3, 101, 1568, 8, 101, 1, 101, 1, 101, 1, 101, 1, 101, 3, 101, 1574, 8, 101, 5, 101, 1576, 8, 101, 10, 101, 12, 101, 1579, 9, 101, 1, 101, 1, 101, 1, 102, 3, 102, 1584, 8, 102, 1, 102, 1, 102, 1, 103, 1, 103, 1, 103, 1, 103, 5, 103, 1592, 8, 103, 10, 103, 12, 103, 1595, 9, 103, 1, 104, 1, 104, 1, 104, 1, 104, 3, 104, 1601, 8, 104, 1, 104, 1, 104, 1, 104, 3, 104, 1606, 8, 104, 1, 104, 1, 104, 1, 104, 3, 104, 1611, 8, 104, 1, 104, 1, 104, 1, 104, 3, 104, 1616, 8, 104, 1, 104, 1, 104, 5, 104, 1620, 8, 104, 10, 104, 12, 104, 1623, 9, 104, 3, 104, 1625, 8, 104, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 1, 105, 3, 105, 1634, 8, 105, 1, 105, 3, 105, 1637, 8, 105, 1, 105, 3, 105, 1640, 8, 105, 1, 106, 1, 106, 1, 106, 1, 106, 3, 106, 1646, 8, 106, 1, 107, 1, 107, 1, 107, 1, 107, 3, 107, 1652, 8, 107, 1, 108, 1, 108, 1, 109, 1, 109, 1, 109, 1, 109, 5, 109, 1660, 8, 109, 10, 109, 12, 109, 1663, 9, 109, 3, 109, 1665, 8, 109, 1, 109, 1, 109, 3, 109, 1669, 8, 109, 1, 109, 1, 109, 3, 109, 1673, 8, 109, 1, 110, 3, 110, 1676, 8, 110, 1, 110, 1, 110, 5, 110, 1680, 8, 110, 10, 110, 12, 110, 1683, 9, 110, 3, 110, 1685, 8, 110, 1, 111, 1, 111, 1, 111, 1, 111, 3, 111, 1691, 8, 111, 1, 111, 1, 111, 5, 111, 1695, 8, 111, 10, 111, 12, 111, 1698, 9, 111, 3, 111, 1700, 8, 111, 1, 112, 3, 112, 1703, 8, 112, 1, 112, 1, 112, 3, 112, 1707, 8, 112, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 1, 113, 3, 113, 1717, 8, 113, 1, 114, 1, 114, 1, 115, 1, 115, 1, 116, 1, 116, 1, 116, 5, 116, 1726, 8, 116, 10, 116, 12, 116, 1729, 9, 116, 1, 116, 1, 116, 3, 116, 1733, 8, 116, 1, 116, 3, 116, 1736, 8, 116, 1, 117, 1, 117, 3, 117, 1740, 8, 117, 1, 117, 1, 117, 1, 117, 1, 118, 1, 118, 3, 118, 1747, 8, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 1, 118, 5, 118, 1755, 8, 118, 10, 118, 12, 118, 1758, 9, 118, 1, 118, 1, 118, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 1, 119, 3, 119, 1769, 8, 119, 1, 119, 1, 119, 1, 119, 1, 119, 3, 119, 1775, 8, 119, 3, 119, 1777, 8, 119, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 1, 120, 3, 120, 1786, 8, 120, 1, 120, 3, 120, 1789, 8, 120, 1, 121, 1, 121, 1, 121, 1, 121, 1, 121, 3, 121, 1796, 8, 121, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 1, 122, 3, 122, 1806, 8, 122, 1, 123, 1, 123, 1, 123, 1, 123, 3, 123, 1812, 8, 123, 1, 124, 1, 124, 1, 124, 1, 124, 5, 124, 1818, 8, 124, 10, 124, 12, 124, 1821, 9, 124, 1, 124, 1, 124, 1, 125, 1, 125, 1, 125, 1, 125, 5, 125, 1829, 8, 125, 10, 125, 12, 125, 1832, 9, 125, 1, 125, 1, 125, 1, 126, 1, 126, 1, 126, 5, 126, 1839, 8, 126, 10, 126, 12, 126, 1842, 9, 126, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 1, 127, 3, 127, 1852, 8, 127, 3, 127, 1854, 8, 127, 1, 127, 1, 127, 1, 127, 1, 127, 3, 127, 1860, 8, 127, 1, 128, 1, 128, 1, 128, 3, 128, 1865, 8, 128, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 1, 129, 5, 129, 1873, 8, 129, 10, 129, 12, 129, 1876, 9, 129, 3, 129, 1878, 8, 129, 1, 129, 1, 129, 1, 129, 1, 129, 3, 129, 1884, 8, 129, 3, 129, 1886, 8, 129, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 1, 130, 3, 130, 1894, 8, 130, 1, 130, 1, 130, 1, 130, 1, 130, 3, 130, 1900, 8, 130, 1, 130, 5, 130, 1903, 8, 130, 10, 130, 12, 130, 1906, 9, 130, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 1, 131, 5, 131, 1915, 8, 131, 10, 131, 12, 131, 1918, 9, 131, 1, 131, 1, 131, 1, 131, 1, 131, 3, 131, 1924, 8, 131, 1, 132, 1, 132, 3, 132, 1928, 8, 132, 1, 132, 1, 132, 3, 132, 1932, 8, 132, 1, 133, 1, 133, 3, 133, 1936, 8, 133, 1, 133, 3, 133, 1939, 8, 133, 1, 133, 1, 133, 1, 133, 5, 133, 1944, 8, 133, 10, 133, 12, 133, 1947, 9, 133, 1, 133, 1, 133, 1, 133, 1, 133, 5, 133, 1953, 8, 133, 10, 133, 12, 133, 1956, 9, 133, 3, 133, 1958, 8, 133, 1, 133, 1, 133, 3, 133, 1962, 8, 133, 1, 133, 1, 133, 1, 133, 3, 133, 1967, 8, 133, 1, 133, 1, 133, 3, 133, 1971, 8, 133, 1, 134, 3, 134, 1974, 8, 134, 1, 134, 1, 134, 1, 134, 5, 134, 1979, 8, 134, 10, 134, 12, 134, 1982, 9, 134, 1, 135, 1, 135, 1, 136, 1, 136, 1, 136, 1, 136, 5, 136, 1990, 8, 136, 10, 136, 12, 136, 1993, 9, 136, 3, 136, 1995, 8, 136, 1, 136, 1, 136, 3, 136, 1999, 8, 136, 1, 137, 1, 137, 3, 137, 2003, 8, 137, 1, 137, 1, 137, 1, 137, 1, 138, 1, 138, 1, 139, 1, 139, 3, 139, 2012, 8, 139, 1, 139, 3, 139, 2015, 8, 139, 1, 139, 1, 139, 1, 139, 1, 139, 1, 139, 3, 139, 2022, 8, 139, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 1, 140, 3, 140, 2036, 8, 140, 5, 140, 2038, 8, 140, 10, 140, 12, 140, 2041, 9, 140, 1, 141, 3, 141, 2044, 8, 141, 1, 141, 1, 141, 3, 141, 2048, 8, 141, 1, 141, 1, 141, 3, 141, 2052, 8, 141, 1, 141, 1, 141, 3, 141, 2056, 8, 141, 1, 141, 1, 141, 3, 141, 2060, 8, 141, 1, 141, 1, 141, 3, 141, 2064, 8, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 1, 141, 3, 141, 2074, 8, 141, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 1, 142, 5, 142, 2083, 8, 142, 10, 142, 12, 142, 2086, 9, 142, 1, 142, 1, 142, 3, 142, 2090, 8, 142, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 1, 143, 3, 143, 2103, 8, 143, 3, 143, 2105, 8, 143, 1, 144, 1, 144, 1, 145, 1, 145, 3, 145, 2111, 8, 145, 1, 145, 1, 145, 3, 145, 2115, 8, 145, 3, 145, 2117, 8, 145, 1, 146, 1, 146, 1, 146, 1, 146, 5, 146, 2123, 8, 146, 10, 146, 12, 146, 2126, 9, 146, 1, 146, 1, 146, 1, 147, 1, 147, 3, 147, 2132, 8, 147, 1, 147, 1, 147, 1, 147, 3, 147, 2137, 8, 147, 1, 148, 1, 148, 1, 148, 1, 148, 1, 149, 1, 149, 1, 149, 1, 149, 1, 149, 5, 149, 2148, 8, 149, 10, 149, 12, 149, 2151, 9, 149, 1, 149, 1, 149, 1, 149, 3, 149, 2156, 8, 149, 1, 150, 1, 150, 1, 150, 1, 150, 1, 151, 1, 151, 3, 151, 2164, 8, 151, 1, 152, 1, 152, 1, 153, 1, 153, 1, 153, 3, 153, 2171, 8, 153, 1, 153, 1, 153, 3, 153, 2175, 8, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 1, 153, 5, 153, 2183, 8, 153, 10, 153, 12, 153, 2186, 9, 153, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 3, 154, 2196, 8, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 3, 154, 2204, 8, 154, 1, 154, 1, 154, 1, 154, 1, 154, 1, 154, 5, 154, 2211, 8, 154, 10, 154, 12, 154, 2214, 9, 154, 1, 154, 1, 154, 1, 154, 3, 154, 2219, 8, 154, 1, 154, 1, 154, 1, 154, 3, 154, 2224, 8, 154, 1, 154, 1, 154, 1, 154, 1, 154, 3, 154, 2230, 8, 154, 1, 154, 1, 154, 1, 154, 1, 154, 3, 154, 2236, 8, 154, 1, 154, 1, 154, 1, 154, 3, 154, 2241, 8, 154, 1, 154, 1, 154, 1, 154, 3, 154, 2246, 8, 154, 1, 155, 1, 155, 1, 155, 1, 155, 3, 155, 2252, 8, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 1, 155, 5, 155, 2263, 8, 155, 10, 155, 12, 155, 2266, 9, 155, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 3, 156, 2292, 8, 156, 1, 156, 1, 156, 1, 156, 1, 156, 3, 156, 2298, 8, 156, 5, 156, 2300, 8, 156, 10, 156, 12, 156, 2303, 9, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 5, 156, 2312, 8, 156, 10, 156, 12, 156, 2315, 9, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 3, 156, 2324, 8, 156, 1, 156, 3, 156, 2327, 8, 156, 1, 156, 1, 156, 1, 156, 3, 156, 2332, 8, 156, 1, 156, 1, 156, 1, 156, 5, 156, 2337, 8, 156, 10, 156, 12, 156, 2340, 9, 156, 3, 156, 2342, 8, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 5, 156, 2349, 8, 156, 10, 156, 12, 156, 2352, 9, 156, 3, 156, 2354, 8, 156, 1, 156, 1, 156, 3, 156, 2358, 8, 156, 1, 156, 3, 156, 2361, 8, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 5, 156, 2371, 8, 156, 10, 156, 12, 156, 2374, 9, 156, 3, 156, 2376, 8, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 4, 156, 2393, 8, 156, 11, 156, 12, 156, 2394, 1, 156, 1, 156, 3, 156, 2399, 8, 156, 1, 156, 1, 156, 1, 156, 1, 156, 4, 156, 2405, 8, 156, 11, 156, 12, 156, 2406, 1, 156, 1, 156, 3, 156, 2411, 8, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 5, 156, 2434, 8, 156, 10, 156, 12, 156, 2437, 9, 156, 3, 156, 2439, 8, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 3, 156, 2448, 8, 156, 1, 156, 1, 156, 1, 156, 1, 156, 3, 156, 2454, 8, 156, 1, 156, 1, 156, 1, 156, 1, 156, 3, 156, 2460, 8, 156, 1, 156, 1, 156, 1, 156, 1, 156, 3, 156, 2466, 8, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 3, 156, 2477, 8, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 3, 156, 2486, 8, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 5, 156, 2506, 8, 156, 10, 156, 12, 156, 2509, 9, 156, 3, 156, 2511, 8, 156, 1, 156, 3, 156, 2514, 8, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 1, 156, 5, 156, 2524, 8, 156, 10, 156, 12, 156, 2527, 9, 156, 1, 157, 1, 157, 1, 157, 1, 157, 3, 157, 2533, 8, 157, 3, 157, 2535, 8, 157, 1, 158, 1, 158, 1, 159, 1, 159, 1, 160, 1, 160, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 1, 161, 3, 161, 2557, 8, 161, 1, 162, 1, 162, 1, 163, 1, 163, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 1, 164, 5, 164, 2584, 8, 164, 10, 164, 12, 164, 2587, 9, 164, 1, 164, 1, 164, 1, 164, 1, 164, 3, 164, 2593, 8, 164, 1, 164, 1, 164, 1, 164, 1, 164, 5, 164, 2599, 8, 164, 10, 164, 12, 164, 2602, 9, 164, 1, 164, 1, 164, 3, 164, 2606, 8, 164, 3, 164, 2608, 8, 164, 1, 164, 1, 164, 5, 164, 2612, 8, 164, 10, 164, 12, 164, 2615, 9, 164, 1, 165, 1, 165, 1, 166, 1, 166, 3, 166, 2621, 8, 166, 1, 167, 1, 167, 1, 167, 1, 167, 3, 167, 2627, 8, 167, 1, 168, 1, 168, 1, 168, 1, 168, 1, 168, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 169, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 5, 170, 2647, 8, 170, 10, 170, 12, 170, 2650, 9, 170, 3, 170, 2652, 8, 170, 1, 170, 1, 170, 1, 170, 1, 170, 1, 170, 5, 170, 2659, 8, 170, 10, 170, 12, 170, 2662, 9, 170, 3, 170, 2664, 8, 170, 1, 170, 3, 170, 2667, 8, 170, 1, 170, 1, 170, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 1, 171, 3, 171, 2687, 8, 171, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 1, 172, 3, 172, 2698, 8, 172, 1, 173, 1, 173, 1, 173, 1, 173, 1, 173, 3, 173, 2705, 8, 173, 1, 174, 1, 174, 1, 174, 5, 174, 2710, 8, 174, 10, 174, 12, 174, 2713, 9, 174, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 1, 175, 3, 175, 2726, 8, 175, 3, 175, 2728, 8, 175, 1, 176, 1, 176, 1, 177, 1, 177, 1, 177, 5, 177, 2735, 8, 177, 10, 177, 12, 177, 2738, 9, 177, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 1, 178, 3, 178, 2746, 8, 178, 1, 179, 1, 179, 1, 179, 1, 179, 1, 179, 3, 179, 2753, 8, 179, 1, 180, 3, 180, 2756, 8, 180, 1, 180, 1, 180, 3, 180, 2760, 8, 180, 1, 180, 1, 180, 3, 180, 2764, 8, 180, 1, 180, 3, 180, 2767, 8, 180, 1, 181, 1, 181, 1, 182, 1, 182, 1, 182, 10, 770, 1446, 1621, 1661, 1681, 1696, 1727, 1756, 1830, 2301, 6, 260, 280, 306, 310, 312, 328, 183, 0, 2, 4, 6, 8, 10, 12, 14, 16, 18, 20, 22, 24, 26, 28, 30, 32, 34, 36, 38, 40, 42, 44, 46, 48, 50, 52, 54, 56, 58, 60, 62, 64, 66, 68, 70, 72, 74, 76, 78, 80, 82, 84, 86, 88, 90, 92, 94, 96, 98, 100, 102, 104, 106, 108, 110, 112, 114, 116, 118, 120, 122, 124, 126, 128, 130, 132, 134, 136, 138, 140, 142, 144, 146, 148, 150, 152, 154, 156, 158, 160, 162, 164, 166, 168, 170, 172, 174, 176, 178, 180, 182, 184, 186, 188, 190, 192, 194, 196, 198, 200, 202, 204, 206, 208, 210, 212, 214, 216, 218, 220, 222, 224, 226, 228, 230, 232, 234, 236, 238, 240, 242, 244, 246, 248, 250, 252, 254, 256, 258, 260, 262, 264, 266, 268, 270, 272, 274, 276, 278, 280, 282, 284, 286, 288, 290, 292, 294, 296, 298, 300, 302, 304, 306, 308, 310, 312, 314, 316, 318, 320, 322, 324, 326, 328, 330, 332, 334, 336, 338, 340, 342, 344, 346, 348, 350, 352, 354, 356, 358, 360, 362, 364, 0, 33, 2, 0, 46, 46, 170, 170, 2, 0, 166, 166, 204, 204, 2, 0, 176, 176, 202, 202, 2, 0, 69, 69, 80, 80, 2, 0, 27, 27, 159, 159, 2, 0, 103, 103, 144, 144, 2, 0, 47, 47, 171, 171, 2, 0, 3, 3, 12, 12, 3, 0, 87, 87, 166, 166, 204, 204, 2, 0, 178, 178, 209, 209, 1, 0, 245, 248, 2, 0, 147, 147, 219, 223, 2, 0, 65, 65, 95, 95, 2, 0, 64, 64, 200, 200, 2, 0, 10, 10, 55, 55, 2, 0, 75, 75, 112, 112, 2, 0, 2, 2, 57, 57, 2, 0, 14, 14, 185, 185, 3, 0, 106, 106, 115, 115, 164, 164, 2, 0, 105, 105, 163, 163, 4, 0, 70, 70, 133, 133, 194, 194, 208, 208, 1, 0, 255, 256, 1, 0, 257, 259, 1, 0, 249, 254, 3, 0, 2, 2, 6, 6, 181, 181, 2, 0, 70, 70, 194, 194, 5, 0, 48, 49, 91, 92, 122, 125, 172, 173, 217, 218, 1, 0, 127, 130, 2, 0, 8, 8, 227, 244, 2, 0, 77, 77, 149, 149, 4, 0, 46, 46, 178, 178, 188, 188, 209, 209, 16, 0, 28, 29, 40, 40, 43, 43, 48, 48, 68, 68, 91, 91, 114, 114, 122, 122, 124, 124, 158, 158, 165, 165, 172, 172, 184, 184, 196, 196, 204, 204, 217, 217, 23, 0, 14, 14, 43, 44, 48, 49, 65, 65, 68, 68, 91, 91, 95, 95, 110, 110, 119, 119, 122, 125, 127, 130, 137, 137, 140, 140, 152, 153, 172, 173, 180, 180, 184, 185, 195, 195, 204, 204, 213, 213, 217, 217, 220, 220, 231, 231, 3096, 0, 369, 1, 0, 0, 0, 2, 374, 1, 0, 0, 0, 4, 400, 1, 0, 0, 0, 6, 402, 1, 0, 0, 0, 8, 413, 1, 0, 0, 0, 10, 415, 1, 0, 0, 0, 12, 454, 1, 0, 0, 0, 14, 476, 1, 0, 0, 0, 16, 531, 1, 0, 0, 0, 18, 551, 1, 0, 0, 0, 20, 565, 1, 0, 0, 0, 22, 569, 1, 0, 0, 0, 24, 631, 1, 0, 0, 0, 26, 679, 1, 0, 0, 0, 28, 681, 1, 0, 0, 0, 30, 689, 1, 0, 0, 0, 32, 709, 1, 0, 0, 0, 34, 729, 1, 0, 0, 0, 36, 736, 1, 0, 0, 0, 38, 745, 1, 0, 0, 0, 40, 753, 1, 0, 0, 0, 42, 775, 1, 0, 0, 0, 44, 785, 1, 0, 0, 0, 46, 803, 1, 0, 0, 0, 48, 824, 1, 0, 0, 0, 50, 845, 1, 0, 0, 0, 52, 851, 1, 0, 0, 0, 54, 868, 1, 0, 0, 0, 56, 877, 1, 0, 0, 0, 58, 884, 1, 0, 0, 0, 60, 892, 1, 0, 0, 0, 62, 899, 1, 0, 0, 0, 64, 906, 1, 0, 0, 0, 66, 915, 1, 0, 0, 0, 68, 926, 1, 0, 0, 0, 70, 928, 1, 0, 0, 0, 72, 948, 1, 0, 0, 0, 74, 965, 1, 0, 0, 0, 76, 967, 1, 0, 0, 0, 78, 976, 1, 0, 0, 0, 80, 983, 1, 0, 0, 0, 82, 992, 1, 0, 0, 0, 84, 1002, 1, 0, 0, 0, 86, 1025, 1, 0, 0, 0, 88, 1031, 1, 0, 0, 0, 90, 1033, 1, 0, 0, 0, 92, 1040, 1, 0, 0, 0, 94, 1052, 1, 0, 0, 0, 96, 1054, 1, 0, 0, 0, 98, 1061, 1, 0, 0, 0, 100, 1082, 1, 0, 0, 0, 102, 1111, 1, 0, 0, 0, 104, 1113, 1, 0, 0, 0, 106, 1122, 1, 0, 0, 0, 108, 1145, 1, 0, 0, 0, 110, 1164, 1, 0, 0, 0, 112, 1187, 1, 0, 0, 0, 114, 1189, 1, 0, 0, 0, 116, 1204, 1, 0, 0, 0, 118, 1223, 1, 0, 0, 0, 120, 1245, 1, 0, 0, 0, 122, 1250, 1, 0, 0, 0, 124, 1255, 1, 0, 0, 0, 126, 1260, 1, 0, 0, 0, 128, 1265, 1, 0, 0, 0, 130, 1272, 1, 0, 0, 0, 132, 1287, 1, 0, 0, 0, 134, 1293, 1, 0, 0, 0, 136, 1313, 1, 0, 0, 0, 138, 1315, 1, 0, 0, 0, 140, 1326, 1, 0, 0, 0, 142, 1337, 1, 0, 0, 0, 144, 1351, 1, 0, 0, 0, 146, 1353, 1, 0, 0, 0, 148, 1362, 1, 0, 0, 0, 150, 1371, 1, 0, 0, 0, 152, 1380, 1, 0, 0, 0, 154, 1383, 1, 0, 0, 0, 156, 1391, 1, 0, 0, 0, 158, 1407, 1, 0, 0, 0, 160, 1411, 1, 0, 0, 0, 162, 1435, 1, 0, 0, 0, 164, 1437, 1, 0, 0, 0, 166, 1453, 1, 0, 0, 0, 168, 1456, 1, 0, 0, 0, 170, 1460, 1, 0, 0, 0, 172, 1463, 1, 0, 0, 0, 174, 1467, 1, 0, 0, 0, 176, 1469, 1, 0, 0, 0, 178, 1471, 1, 0, 0, 0, 180, 1473, 1, 0, 0, 0, 182, 1475, 1, 0, 0, 0, 184, 1477, 1, 0, 0, 0, 186, 1479, 1, 0, 0, 0, 188, 1487, 1, 0, 0, 0, 190, 1497, 1, 0, 0, 0, 192, 1501, 1, 0, 0, 0, 194, 1505, 1, 0, 0, 0, 196, 1510, 1, 0, 0, 0, 198, 1551, 1, 0, 0, 0, 200, 1559, 1, 0, 0, 0, 202, 1563, 1, 0, 0, 0, 204, 1583, 1, 0, 0, 0, 206, 1587, 1, 0, 0, 0, 208, 1596, 1, 0, 0, 0, 210, 1626, 1, 0, 0, 0, 212, 1641, 1, 0, 0, 0, 214, 1647, 1, 0, 0, 0, 216, 1653, 1, 0, 0, 0, 218, 1655, 1, 0, 0, 0, 220, 1675, 1, 0, 0, 0, 222, 1686, 1, 0, 0, 0, 224, 1706, 1, 0, 0, 0, 226, 1716, 1, 0, 0, 0, 228, 1718, 1, 0, 0, 0, 230, 1720, 1, 0, 0, 0, 232, 1735, 1, 0, 0, 0, 234, 1737, 1, 0, 0, 0, 236, 1744, 1, 0, 0, 0, 238, 1776, 1, 0, 0, 0, 240, 1788, 1, 0, 0, 0, 242, 1795, 1, 0, 0, 0, 244, 1805, 1, 0, 0, 0, 246, 1807, 1, 0, 0, 0, 248, 1813, 1, 0, 0, 0, 250, 1824, 1, 0, 0, 0, 252, 1835, 1, 0, 0, 0, 254, 1843, 1, 0, 0, 0, 256, 1861, 1, 0, 0, 0, 258, 1866, 1, 0, 0, 0, 260, 1887, 1, 0, 0, 0, 262, 1923, 1, 0, 0, 0, 264, 1925, 1, 0, 0, 0, 266, 1933, 1, 0, 0, 0, 268, 1973, 1, 0, 0, 0, 270, 1983, 1, 0, 0, 0, 272, 1998, 1, 0, 0, 0, 274, 2000, 1, 0, 0, 0, 276, 2007, 1, 0, 0, 0, 278, 2021, 1, 0, 0, 0, 280, 2023, 1, 0, 0, 0, 282, 2073, 1, 0, 0, 0, 284, 2089, 1, 0, 0, 0, 286, 2091, 1, 0, 0, 0, 288, 2106, 1, 0, 0, 0, 290, 2108, 1, 0, 0, 0, 292, 2118, 1, 0, 0, 0, 294, 2136, 1, 0, 0, 0, 296, 2138, 1, 0, 0, 0, 298, 2142, 1, 0, 0, 0, 300, 2157, 1, 0, 0, 0, 302, 2163, 1, 0, 0, 0, 304, 2165, 1, 0, 0, 0, 306, 2174, 1, 0, 0, 0, 308, 2245, 1, 0, 0, 0, 310, 2251, 1, 0, 0, 0, 312, 2513, 1, 0, 0, 0, 314, 2534, 1, 0, 0, 0, 316, 2536, 1, 0, 0, 0, 318, 2538, 1, 0, 0, 0, 320, 2540, 1, 0, 0, 0, 322, 2556, 1, 0, 0, 0, 324, 2558, 1, 0, 0, 0, 326, 2560, 1, 0, 0, 0, 328, 2607, 1, 0, 0, 0, 330, 2616, 1, 0, 0, 0, 332, 2620, 1, 0, 0, 0, 334, 2626, 1, 0, 0, 0, 336, 2628, 1, 0, 0, 0, 338, 2633, 1, 0, 0, 0, 340, 2639, 1, 0, 0, 0, 342, 2686, 1, 0, 0, 0, 344, 2697, 1, 0, 0, 0, 346, 2704, 1, 0, 0, 0, 348, 2706, 1, 0, 0, 0, 350, 2727, 1, 0, 0, 0, 352, 2729, 1, 0, 0, 0, 354, 2731, 1, 0, 0, 0, 356, 2745, 1, 0, 0, 0, 358, 2752, 1, 0, 0, 0, 360, 2766, 1, 0, 0, 0, 362, 2768, 1, 0, 0, 0, 364, 2770, 1, 0, 0, 0, 366, 368, 3, 2, 1, 0, 367, 366, 1, 0, 0, 0, 368, 371, 1, 0, 0, 0, 369, 367, 1, 0, 0, 0, 369, 370, 1, 0, 0, 0, 370, 372, 1, 0, 0, 0, 371, 369, 1, 0, 0, 0, 372, 373, 5, 0, 0, 1, 373, 1, 1, 0, 0, 0, 374, 376, 3, 4, 2, 0, 375, 377, 5, 262, 0, 0, 376, 375, 1, 0, 0, 0, 376, 377, 1, 0, 0, 0, 377, 3, 1, 0, 0, 0, 378, 401, 3, 204, 102, 0, 379, 401, 3, 6, 3, 0, 380, 401, 3, 8, 4, 0, 381, 401, 3, 26, 13, 0, 382, 401, 3, 64, 32, 0, 383, 401, 3, 66, 33, 0, 384, 401, 3, 68, 34, 0, 385, 401, 3, 74, 37, 0, 386, 401, 3, 88, 44, 0, 387, 401, 3, 94, 47, 0, 388, 401, 3, 100, 50, 0, 389, 401, 3, 102, 51, 0, 390, 401, 3, 108, 54, 0, 391, 401, 3, 110, 55, 0, 392, 401, 3, 112, 56, 0, 393, 401, 3, 144, 72, 0, 394, 401, 3, 152, 76, 0, 395, 401, 3, 154, 77, 0, 396, 401, 3, 156, 78, 0, 397, 401, 3, 158, 79, 0, 398, 401, 3, 160, 80, 0, 399, 401, 3, 162, 81, 0, 400, 378, 1, 0, 0, 0, 400, 379, 1, 0, 0, 0, 400, 380, 1, 0, 0, 0, 400, 381, 1, 0, 0, 0, 400, 382, 1, 0, 0, 0, 400, 383, 1, 0, 0, 0, 400, 384, 1, 0, 0, 0, 400, 385, 1, 0, 0, 0, 400, 386, 1, 0, 0, 0, 400, 387, 1, 0, 0, 0, 400, 388, 1, 0, 0, 0, 400, 389, 1, 0, 0, 0, 400, 390, 1, 0, 0, 0, 400, 391, 1, 0, 0, 0, 400, 392, 1, 0, 0, 0, 400, 393, 1, 0, 0, 0, 400, 394, 1, 0, 0, 0, 400, 395, 1, 0, 0, 0, 400, 396, 1, 0, 0, 0, 400, 397, 1, 0, 0, 0, 400, 398, 1, 0, 0, 0, 400, 399, 1, 0, 0, 0, 401, 5, 1, 0, 0, 0, 402, 403, 5, 203, 0, 0, 403, 404, 3, 184, 92, 0, 404, 7, 1, 0, 0, 0, 405, 414, 3, 18, 9, 0, 406, 414, 3, 20, 10, 0, 407, 414, 3, 22, 11, 0, 408, 414, 3, 24, 12, 0, 409, 414, 3, 16, 8, 0, 410, 414, 3, 14, 7, 0, 411, 414, 3, 12, 6, 0, 412, 414, 3, 10, 5, 0, 413, 405, 1, 0, 0, 0, 413, 406, 1, 0, 0, 0, 413, 407, 1, 0, 0, 0, 413, 408, 1, 0, 0, 0, 413, 409, 1, 0, 0, 0, 413, 410, 1, 0, 0, 0, 413, 411, 1, 0, 0, 0, 413, 412, 1, 0, 0, 0, 414, 9, 1, 0, 0, 0, 415, 417, 5, 37, 0, 0, 416, 418, 5, 19, 0, 0, 417, 416, 1, 0, 0, 0, 417, 418, 1, 0, 0, 0, 418, 419, 1, 0, 0, 0, 419, 421, 5, 188, 0, 0, 420, 422, 3, 172, 86, 0, 421, 420, 1, 0, 0, 0, 421, 422, 1, 0, 0, 0, 422, 423, 1, 0, 0, 0, 423, 439, 3, 174, 87, 0, 424, 425, 5, 265, 0, 0, 425, 430, 3, 214, 107, 0, 426, 427, 5, 263, 0, 0, 427, 429, 3, 214, 107, 0, 428, 426, 1, 0, 0, 0, 429, 432, 1, 0, 0, 0, 430, 428, 1, 0, 0, 0, 430, 431, 1, 0, 0, 0, 431, 435, 1, 0, 0, 0, 432, 430, 1, 0, 0, 0, 433, 434, 5, 263, 0, 0, 434, 436, 3, 208, 104, 0, 435, 433, 1, 0, 0, 0, 435, 436, 1, 0, 0, 0, 436, 437, 1, 0, 0, 0, 437, 438, 5, 266, 0, 0, 438, 440, 1, 0, 0, 0, 439, 424, 1, 0, 0, 0, 439, 440, 1, 0, 0, 0, 440, 447, 1, 0, 0, 0, 441, 442, 5, 17, 0, 0, 442, 445, 5, 26, 0, 0, 443, 446, 3, 292, 146, 0, 444, 446, 3, 250, 125, 0, 445, 443, 1, 0, 0, 0, 445, 444, 1, 0, 0, 0, 446, 448, 1, 0, 0, 0, 447, 441, 1, 0, 0, 0, 447, 448, 1, 0, 0, 0, 448, 449, 1, 0, 0, 0, 449, 452, 3, 196, 98, 0, 450, 451, 5, 9, 0, 0, 451, 453, 3, 204, 102, 0, 452, 450, 1, 0, 0, 0, 452, 453, 1, 0, 0, 0, 453, 11, 1, 0, 0, 0, 454, 456, 5, 37, 0, 0, 455, 457, 5, 19, 0, 0, 456, 455, 1, 0, 0, 0, 456, 457, 1, 0, 0, 0, 457, 458, 1, 0, 0, 0, 458, 460, 5, 188, 0, 0, 459, 461, 3, 172, 86, 0, 460, 459, 1, 0, 0, 0, 460, 461, 1, 0, 0, 0, 461, 462, 1, 0, 0, 0, 462, 463, 3, 174, 87, 0, 463, 467, 5, 115, 0, 0, 464, 468, 3, 186, 93, 0, 465, 466, 5, 147, 0, 0, 466, 468, 3, 314, 157, 0, 467, 464, 1, 0, 0, 0, 467, 465, 1, 0, 0, 0, 468, 472, 1, 0, 0, 0, 469, 470, 5, 17, 0, 0, 470, 471, 5, 26, 0, 0, 471, 473, 3, 250, 125, 0, 472, 469, 1, 0, 0, 0, 472, 473, 1, 0, 0, 0, 473, 474, 1, 0, 0, 0, 474, 475, 3, 196, 98, 0, 475, 13, 1, 0, 0, 0, 476, 478, 5, 37, 0, 0, 477, 479, 5, 19, 0, 0, 478, 477, 1, 0, 0, 0, 478, 479, 1, 0, 0, 0, 479, 480, 1, 0, 0, 0, 480, 482, 5, 188, 0, 0, 481, 483, 3, 172, 86, 0, 482, 481, 1, 0, 0, 0, 482, 483, 1, 0, 0, 0, 483, 484, 1, 0, 0, 0, 484, 502, 3, 174, 87, 0, 485, 486, 5, 265, 0, 0, 486, 491, 3, 216, 108, 0, 487, 488, 5, 263, 0, 0, 488, 490, 3, 216, 108, 0, 489, 487, 1, 0, 0, 0, 490, 493, 1, 0, 0, 0, 491, 489, 1, 0, 0, 0, 491, 492, 1, 0, 0, 0, 492, 498, 1, 0, 0, 0, 493, 491, 1, 0, 0, 0, 494, 495, 5, 263, 0, 0, 495, 496, 5, 150, 0, 0, 496, 497, 5, 110, 0, 0, 497, 499, 3, 292, 146, 0, 498, 494, 1, 0, 0, 0, 498, 499, 1, 0, 0, 0, 499, 500, 1, 0, 0, 0, 500, 501, 5, 266, 0, 0, 501, 503, 1, 0, 0, 0, 502, 485, 1, 0, 0, 0, 502, 503, 1, 0, 0, 0, 503, 509, 1, 0, 0, 0, 504, 505, 5, 150, 0, 0, 505, 507, 5, 110, 0, 0, 506, 508, 3, 292, 146, 0, 507, 506, 1, 0, 0, 0, 507, 508, 1, 0, 0, 0, 508, 510, 1, 0, 0, 0, 509, 504, 1, 0, 0, 0, 509, 510, 1, 0, 0, 0, 510, 514, 1, 0, 0, 0, 511, 512, 5, 145, 0, 0, 512, 513, 5, 26, 0, 0, 513, 515, 3, 232, 116, 0, 514, 511, 1, 0, 0, 0, 514, 515, 1, 0, 0, 0, 515, 518, 1, 0, 0, 0, 516, 517, 5, 34, 0, 0, 517, 519, 3, 314, 157, 0, 518, 516, 1, 0, 0, 0, 518, 519, 1, 0, 0, 0, 519, 520, 1, 0, 0, 0, 520, 521, 5, 23, 0, 0, 521, 522, 5, 9, 0, 0, 522, 525, 5, 111, 0, 0, 523, 524, 5, 25, 0, 0, 524, 526, 3, 248, 124, 0, 525, 523, 1, 0, 0, 0, 525, 526, 1, 0, 0, 0, 526, 529, 1, 0, 0, 0, 527, 528, 5, 9, 0, 0, 528, 530, 3, 204, 102, 0, 529, 527, 1, 0, 0, 0, 529, 530, 1, 0, 0, 0, 530, 15, 1, 0, 0, 0, 531, 532, 5, 37, 0, 0, 532, 534, 5, 212, 0, 0, 533, 535, 3, 172, 86, 0, 534, 533, 1, 0, 0, 0, 534, 535, 1, 0, 0, 0, 535, 536, 1, 0, 0, 0, 536, 538, 3, 178, 89, 0, 537, 539, 3, 202, 101, 0, 538, 537, 1, 0, 0, 0, 538, 539, 1, 0, 0, 0, 539, 542, 1, 0, 0, 0, 540, 541, 5, 34, 0, 0, 541, 543, 3, 314, 157, 0, 542, 540, 1, 0, 0, 0, 542, 543, 1, 0, 0, 0, 543, 546, 1, 0, 0, 0, 544, 545, 5, 25, 0, 0, 545, 547, 3, 248, 124, 0, 546, 544, 1, 0, 0, 0, 546, 547, 1, 0, 0, 0, 547, 548, 1, 0, 0, 0, 548, 549, 5, 9, 0, 0, 549, 550, 3, 204, 102, 0, 550, 17, 1, 0, 0, 0, 551, 552, 5, 37, 0, 0, 552, 554, 7, 0, 0, 0, 553, 555, 3, 172, 86, 0, 554, 553, 1, 0, 0, 0, 554, 555, 1, 0, 0, 0, 555, 556, 1, 0, 0, 0, 556, 559, 3, 176, 88, 0, 557, 558, 5, 34, 0, 0, 558, 560, 3, 314, 157, 0, 559, 557, 1, 0, 0, 0, 559, 560, 1, 0, 0, 0, 560, 563, 1, 0, 0, 0, 561, 562, 5, 24, 0, 0, 562, 564, 3, 314, 157, 0, 563, 561, 1, 0, 0, 0, 563, 564, 1, 0, 0, 0, 564, 19, 1, 0, 0, 0, 565, 566, 5, 37, 0, 0, 566, 567, 5, 166, 0, 0, 567, 568, 3, 358, 179, 0, 568, 21, 1, 0, 0, 0, 569, 571, 5, 37, 0, 0, 570, 572, 5, 12, 0, 0, 571, 570, 1, 0, 0, 0, 571, 572, 1, 0, 0, 0, 572, 573, 1, 0, 0, 0, 573, 575, 5, 84, 0, 0, 574, 576, 3, 172, 86, 0, 575, 574, 1, 0, 0, 0, 575, 576, 1, 0, 0, 0, 576, 577, 1, 0, 0, 0, 577, 590, 3, 180, 90, 0, 578, 587, 5, 265, 0, 0, 579, 584, 3, 328, 164, 0, 580, 581, 5, 263, 0, 0, 581, 583, 3, 328, 164, 0, 582, 580, 1, 0, 0, 0, 583, 586, 1, 0, 0, 0, 584, 582, 1, 0, 0, 0, 584, 585, 1, 0, 0, 0, 585, 588, 1, 0, 0, 0, 586, 584, 1, 0, 0, 0, 587, 579, 1, 0, 0, 0, 587, 588, 1, 0, 0, 0, 588, 589, 1, 0, 0, 0, 589, 591, 5, 266, 0, 0, 590, 578, 1, 0, 0, 0, 590, 591, 1, 0, 0, 0, 591, 592, 1, 0, 0, 0, 592, 593, 5, 160, 0, 0, 593, 596, 3, 328, 164, 0, 594, 595, 5, 102, 0, 0, 595, 597, 3, 328, 164, 0, 596, 594, 1, 0, 0, 0, 596, 597, 1, 0, 0, 0, 597, 598, 1, 0, 0, 0, 598, 599, 5, 24, 0, 0, 599, 603, 5, 274, 0, 0, 600, 601, 5, 104, 0, 0, 601, 602, 5, 249, 0, 0, 602, 604, 5, 274, 0, 0, 603, 600, 1, 0, 0, 0, 603, 604, 1, 0, 0, 0, 604, 605, 1, 0, 0, 0, 605, 606, 5, 206, 0, 0, 606, 607, 5, 249, 0, 0, 607, 608, 5, 274, 0, 0, 608, 609, 5, 126, 0, 0, 609, 610, 5, 249, 0, 0, 610, 614, 5, 274, 0, 0, 611, 612, 5, 18, 0, 0, 612, 613, 5, 249, 0, 0, 613, 615, 5, 274, 0, 0, 614, 611, 1, 0, 0, 0, 614, 615, 1, 0, 0, 0, 615, 619, 1, 0, 0, 0, 616, 617, 5, 20, 0, 0, 617, 618, 5, 249, 0, 0, 618, 620, 5, 274, 0, 0, 619, 616, 1, 0, 0, 0, 619, 620, 1, 0, 0, 0, 620, 624, 1, 0, 0, 0, 621, 622, 5, 187, 0, 0, 622, 623, 5, 249, 0, 0, 623, 625, 5, 274, 0, 0, 624, 621, 1, 0, 0, 0, 624, 625, 1, 0, 0, 0, 625, 629, 1, 0, 0, 0, 626, 627, 5, 76, 0, 0, 627, 628, 5, 249, 0, 0, 628, 630, 5, 274, 0, 0, 629, 626, 1, 0, 0, 0, 629, 630, 1, 0, 0, 0, 630, 23, 1, 0, 0, 0, 631, 632, 5, 37, 0, 0, 632, 634, 5, 84, 0, 0, 633, 635, 3, 172, 86, 0, 634, 633, 1, 0, 0, 0, 634, 635, 1, 0, 0, 0, 635, 636, 1, 0, 0, 0, 636, 649, 3, 180, 90, 0, 637, 646, 5, 265, 0, 0, 638, 643, 3, 328, 164, 0, 639, 640, 5, 263, 0, 0, 640, 642, 3, 328, 164, 0, 641, 639, 1, 0, 0, 0, 642, 645, 1, 0, 0, 0, 643, 641, 1, 0, 0, 0, 643, 644, 1, 0, 0, 0, 644, 647, 1, 0, 0, 0, 645, 643, 1, 0, 0, 0, 646, 638, 1, 0, 0, 0, 646, 647, 1, 0, 0, 0, 647, 648, 1, 0, 0, 0, 648, 650, 5, 266, 0, 0, 649, 637, 1, 0, 0, 0, 649, 650, 1, 0, 0, 0, 650, 653, 1, 0, 0, 0, 651, 652, 5, 160, 0, 0, 652, 654, 3, 328, 164, 0, 653, 651, 1, 0, 0, 0, 653, 654, 1, 0, 0, 0, 654, 655, 1, 0, 0, 0, 655, 656, 5, 24, 0, 0, 656, 657, 5, 274, 0, 0, 657, 658, 5, 186, 0, 0, 658, 659, 5, 249, 0, 0, 659, 660, 3, 314, 157, 0, 660, 25, 1, 0, 0, 0, 661, 680, 3, 28, 14, 0, 662, 680, 3, 62, 31, 0, 663, 680, 3, 60, 30, 0, 664, 680, 3, 58, 29, 0, 665, 680, 3, 54, 27, 0, 666, 680, 3, 56, 28, 0, 667, 680, 3, 52, 26, 0, 668, 680, 3, 48, 24, 0, 669, 680, 3, 50, 25, 0, 670, 680, 3, 46, 23, 0, 671, 680, 3, 44, 22, 0, 672, 680, 3, 42, 21, 0, 673, 680, 3, 40, 20, 0, 674, 680, 3, 34, 17, 0, 675, 680, 3, 30, 15, 0, 676, 680, 3, 32, 16, 0, 677, 680, 3, 36, 18, 0, 678, 680, 3, 38, 19, 0, 679, 661, 1, 0, 0, 0, 679, 662, 1, 0, 0, 0, 679, 663, 1, 0, 0, 0, 679, 664, 1, 0, 0, 0, 679, 665, 1, 0, 0, 0, 679, 666, 1, 0, 0, 0, 679, 667, 1, 0, 0, 0, 679, 668, 1, 0, 0, 0, 679, 669, 1, 0, 0, 0, 679, 670, 1, 0, 0, 0, 679, 671, 1, 0, 0, 0, 679, 672, 1, 0, 0, 0, 679, 673, 1, 0, 0, 0, 679, 674, 1, 0, 0, 0, 679, 675, 1, 0, 0, 0, 679, 676, 1, 0, 0, 0, 679, 677, 1, 0, 0, 0, 679, 678, 1, 0, 0, 0, 680, 27, 1, 0, 0, 0, 681, 682, 5, 4, 0, 0, 682, 683, 5, 46, 0, 0, 683, 684, 3, 184, 92, 0, 684, 685, 5, 176, 0, 0, 685, 686, 5, 142, 0, 0, 686, 687, 7, 1, 0, 0, 687, 688, 3, 358, 179, 0, 688, 29, 1, 0, 0, 0, 689, 690, 5, 4, 0, 0, 690, 691, 5, 188, 0, 0, 691, 692, 3, 186, 93, 0, 692, 693, 5, 176, 0, 0, 693, 694, 5, 32, 0, 0, 694, 695, 5, 182, 0, 0, 695, 696, 3, 192, 96, 0, 696, 697, 5, 265, 0, 0, 697, 698, 3, 228, 114, 0, 698, 699, 5, 249, 0, 0, 699, 705, 3, 314, 157, 0, 700, 701, 5, 263, 0, 0, 701, 702, 3, 228, 114, 0, 702, 703, 5, 249, 0, 0, 703, 704, 3, 314, 157, 0, 704, 706, 1, 0, 0, 0, 705, 700, 1, 0, 0, 0, 705, 706, 1, 0, 0, 0, 706, 707, 1, 0, 0, 0, 707, 708, 5, 266, 0, 0, 708, 31, 1, 0, 0, 0, 709, 710, 5, 4, 0, 0, 710, 711, 5, 188, 0, 0, 711, 714, 3, 186, 93, 0, 712, 713, 5, 145, 0, 0, 713, 715, 3, 304, 152, 0, 714, 712, 1, 0, 0, 0, 714, 715, 1, 0, 0, 0, 715, 716, 1, 0, 0, 0, 716, 727, 5, 176, 0, 0, 717, 718, 5, 30, 0, 0, 718, 719, 5, 94, 0, 0, 719, 724, 3, 314, 157, 0, 720, 721, 5, 216, 0, 0, 721, 722, 5, 151, 0, 0, 722, 723, 5, 249, 0, 0, 723, 725, 3, 360, 180, 0, 724, 720, 1, 0, 0, 0, 724, 725, 1, 0, 0, 0, 725, 728, 1, 0, 0, 0, 726, 728, 5, 197, 0, 0, 727, 717, 1, 0, 0, 0, 727, 726, 1, 0, 0, 0, 728, 33, 1, 0, 0, 0, 729, 730, 5, 4, 0, 0, 730, 731, 5, 188, 0, 0, 731, 732, 3, 186, 93, 0, 732, 733, 5, 31, 0, 0, 733, 734, 5, 32, 0, 0, 734, 735, 3, 220, 110, 0, 735, 35, 1, 0, 0, 0, 736, 737, 5, 4, 0, 0, 737, 738, 5, 188, 0, 0, 738, 739, 3, 186, 93, 0, 739, 741, 5, 58, 0, 0, 740, 742, 5, 32, 0, 0, 741, 740, 1, 0, 0, 0, 741, 742, 1, 0, 0, 0, 742, 743, 1, 0, 0, 0, 743, 744, 3, 192, 96, 0, 744, 37, 1, 0, 0, 0, 745, 746, 5, 4, 0, 0, 746, 747, 5, 188, 0, 0, 747, 748, 3, 186, 93, 0, 748, 749, 5, 176, 0, 0, 749, 750, 5, 142, 0, 0, 750, 751, 7, 1, 0, 0, 751, 752, 3, 358, 179, 0, 752, 39, 1, 0, 0, 0, 753, 754, 5, 4, 0, 0, 754, 755, 5, 188, 0, 0, 755, 761, 3, 186, 93, 0, 756, 762, 5, 158, 0, 0, 757, 759, 5, 1, 0, 0, 758, 760, 3, 172, 86, 0, 759, 758, 1, 0, 0, 0, 759, 760, 1, 0, 0, 0, 760, 762, 1, 0, 0, 0, 761, 756, 1, 0, 0, 0, 761, 757, 1, 0, 0, 0, 762, 763, 1, 0, 0, 0, 763, 764, 5, 33, 0, 0, 764, 765, 5, 265, 0, 0, 765, 770, 3, 220, 110, 0, 766, 767, 5, 263, 0, 0, 767, 769, 3, 220, 110, 0, 768, 766, 1, 0, 0, 0, 769, 772, 1, 0, 0, 0, 770, 771, 1, 0, 0, 0, 770, 768, 1, 0, 0, 0, 771, 773, 1, 0, 0, 0, 772, 770, 1, 0, 0, 0, 773, 774, 5, 266, 0, 0, 774, 41, 1, 0, 0, 0, 775, 776, 5, 4, 0, 0, 776, 777, 5, 188, 0, 0, 777, 778, 3, 186, 93, 0, 778, 779, 5, 1, 0, 0, 779, 781, 5, 32, 0, 0, 780, 782, 3, 172, 86, 0, 781, 780, 1, 0, 0, 0, 781, 782, 1, 0, 0, 0, 782, 783, 1, 0, 0, 0, 783, 784, 3, 222, 111, 0, 784, 43, 1, 0, 0, 0, 785, 786, 5, 4, 0, 0, 786, 787, 5, 188, 0, 0, 787, 788, 3, 186, 93, 0, 788, 790, 5, 4, 0, 0, 789, 791, 5, 32, 0, 0, 790, 789, 1, 0, 0, 0, 790, 791, 1, 0, 0, 0, 791, 792, 1, 0, 0, 0, 792, 801, 3, 192, 96, 0, 793, 797, 5, 176, 0, 0, 794, 798, 3, 226, 113, 0, 795, 796, 5, 34, 0, 0, 796, 798, 3, 314, 157, 0, 797, 794, 1, 0, 0, 0, 797, 795, 1, 0, 0, 0, 798, 802, 1, 0, 0, 0, 799, 800, 5, 58, 0, 0, 800, 802, 5, 51, 0, 0, 801, 793, 1, 0, 0, 0, 801, 799, 1, 0, 0, 0, 802, 45, 1, 0, 0, 0, 803, 804, 5, 4, 0, 0, 804, 805, 5, 188, 0, 0, 805, 806, 3, 186, 93, 0, 806, 808, 5, 1, 0, 0, 807, 809, 3, 172, 86, 0, 808, 807, 1, 0, 0, 0, 808, 809, 1, 0, 0, 0, 809, 822, 1, 0, 0, 0, 810, 811, 5, 145, 0, 0, 811, 814, 3, 304, 152, 0, 812, 813, 5, 24, 0, 0, 813, 815, 3, 314, 157, 0, 814, 812, 1, 0, 0, 0, 814, 815, 1, 0, 0, 0, 815, 817, 1, 0, 0, 0, 816, 818, 3, 240, 120, 0, 817, 816, 1, 0, 0, 0, 817, 818, 1, 0, 0, 0, 818, 823, 1, 0, 0, 0, 819, 820, 5, 154, 0, 0, 820, 821, 5, 145, 0, 0, 821, 823, 3, 238, 119, 0, 822, 810, 1, 0, 0, 0, 822, 819, 1, 0, 0, 0, 823, 47, 1, 0, 0, 0, 824, 825, 5, 4, 0, 0, 825, 826, 5, 188, 0, 0, 826, 829, 3, 186, 93, 0, 827, 828, 5, 145, 0, 0, 828, 830, 3, 304, 152, 0, 829, 827, 1, 0, 0, 0, 829, 830, 1, 0, 0, 0, 830, 831, 1, 0, 0, 0, 831, 843, 5, 176, 0, 0, 832, 833, 5, 72, 0, 0, 833, 844, 3, 230, 115, 0, 834, 835, 5, 168, 0, 0, 835, 836, 5, 79, 0, 0, 836, 844, 3, 254, 127, 0, 837, 838, 5, 24, 0, 0, 838, 844, 3, 314, 157, 0, 839, 840, 5, 25, 0, 0, 840, 844, 3, 248, 124, 0, 841, 842, 5, 175, 0, 0, 842, 844, 3, 248, 124, 0, 843, 832, 1, 0, 0, 0, 843, 834, 1, 0, 0, 0, 843, 837, 1, 0, 0, 0, 843, 839, 1, 0, 0, 0, 843, 841, 1, 0, 0, 0, 844, 49, 1, 0, 0, 0, 845, 846, 5, 4, 0, 0, 846, 847, 5, 188, 0, 0, 847, 848, 3, 186, 93, 0, 848, 849, 5, 155, 0, 0, 849, 850, 5, 146, 0, 0, 850, 51, 1, 0, 0, 0, 851, 852, 5, 4, 0, 0, 852, 853, 5, 188, 0, 0, 853, 854, 3, 186, 93, 0, 854, 856, 5, 58, 0, 0, 855, 857, 3, 170, 85, 0, 856, 855, 1, 0, 0, 0, 856, 857, 1, 0, 0, 0, 857, 866, 1, 0, 0, 0, 858, 859, 5, 145, 0, 0, 859, 861, 3, 304, 152, 0, 860, 862, 5, 22, 0, 0, 861, 860, 1, 0, 0, 0, 861, 862, 1, 0, 0, 0, 862, 867, 1, 0, 0, 0, 863, 864, 5, 154, 0, 0, 864, 865, 5, 145, 0, 0, 865, 867, 3, 238, 119, 0, 866, 858, 1, 0, 0, 0, 866, 863, 1, 0, 0, 0, 867, 53, 1, 0, 0, 0, 868, 869, 5, 4, 0, 0, 869, 870, 5, 212, 0, 0, 870, 872, 3, 188, 94, 0, 871, 873, 3, 202, 101, 0, 872, 871, 1, 0, 0, 0, 872, 873, 1, 0, 0, 0, 873, 874, 1, 0, 0, 0, 874, 875, 5, 9, 0, 0, 875, 876, 3, 204, 102, 0, 876, 55, 1, 0, 0, 0, 877, 878, 5, 4, 0, 0, 878, 879, 5, 212, 0, 0, 879, 880, 3, 188, 94, 0, 880, 881, 5, 156, 0, 0, 881, 882, 5, 193, 0, 0, 882, 883, 3, 188, 94, 0, 883, 57, 1, 0, 0, 0, 884, 885, 5, 4, 0, 0, 885, 886, 5, 212, 0, 0, 886, 887, 3, 188, 94, 0, 887, 888, 5, 176, 0, 0, 888, 889, 5, 142, 0, 0, 889, 890, 7, 1, 0, 0, 890, 891, 3, 354, 177, 0, 891, 59, 1, 0, 0, 0, 892, 893, 5, 4, 0, 0, 893, 894, 5, 188, 0, 0, 894, 895, 3, 186, 93, 0, 895, 896, 5, 156, 0, 0, 896, 897, 5, 193, 0, 0, 897, 898, 3, 186, 93, 0, 898, 61, 1, 0, 0, 0, 899, 900, 5, 4, 0, 0, 900, 901, 5, 212, 0, 0, 901, 902, 3, 188, 94, 0, 902, 903, 7, 2, 0, 0, 903, 904, 5, 25, 0, 0, 904, 905, 3, 248, 124, 0, 905, 63, 1, 0, 0, 0, 906, 908, 5, 196, 0, 0, 907, 909, 5, 188, 0, 0, 908, 907, 1, 0, 0, 0, 908, 909, 1, 0, 0, 0, 909, 911, 1, 0, 0, 0, 910, 912, 3, 170, 85, 0, 911, 910, 1, 0, 0, 0, 911, 912, 1, 0, 0, 0, 912, 913, 1, 0, 0, 0, 913, 914, 3, 186, 93, 0, 914, 65, 1, 0, 0, 0, 915, 917, 5, 56, 0, 0, 916, 918, 5, 46, 0, 0, 917, 916, 1, 0, 0, 0, 917, 918, 1, 0, 0, 0, 918, 920, 1, 0, 0, 0, 919, 921, 7, 3, 0, 0, 920, 919, 1, 0, 0, 0, 920, 921, 1, 0, 0, 0, 921, 922, 1, 0, 0, 0, 922, 923, 3, 354, 177, 0, 923, 67, 1, 0, 0, 0, 924, 927, 3, 70, 35, 0, 925, 927, 3, 72, 36, 0, 926, 924, 1, 0, 0, 0, 926, 925, 1, 0, 0, 0, 927, 69, 1, 0, 0, 0, 928, 929, 5, 36, 0, 0, 929, 930, 5, 182, 0, 0, 930, 932, 3, 186, 93, 0, 931, 933, 3, 292, 146, 0, 932, 931, 1, 0, 0, 0, 932, 933, 1, 0, 0, 0, 933, 946, 1, 0, 0, 0, 934, 935, 5, 190, 0, 0, 935, 936, 5, 185, 0, 0, 936, 937, 5, 265, 0, 0, 937, 938, 3, 360, 180, 0, 938, 944, 5, 266, 0, 0, 939, 940, 5, 157, 0, 0, 940, 941, 5, 265, 0, 0, 941, 942, 3, 360, 180, 0, 942, 943, 5, 266, 0, 0, 943, 945, 1, 0, 0, 0, 944, 939, 1, 0, 0, 0, 944, 945, 1, 0, 0, 0, 945, 947, 1, 0, 0, 0, 946, 934, 1, 0, 0, 0, 946, 947, 1, 0, 0, 0, 947, 71, 1, 0, 0, 0, 948, 949, 5, 36, 0, 0, 949, 950, 5, 96, 0, 0, 950, 951, 5, 182, 0, 0, 951, 957, 3, 186, 93, 0, 952, 953, 5, 145, 0, 0, 953, 954, 5, 265, 0, 0, 954, 955, 3, 304, 152, 0, 955, 956, 5, 266, 0, 0, 956, 958, 1, 0, 0, 0, 957, 952, 1, 0, 0, 0, 957, 958, 1, 0, 0, 0, 958, 73, 1, 0, 0, 0, 959, 966, 3, 86, 43, 0, 960, 966, 3, 84, 42, 0, 961, 966, 3, 82, 41, 0, 962, 966, 3, 78, 39, 0, 963, 966, 3, 80, 40, 0, 964, 966, 3, 76, 38, 0, 965, 959, 1, 0, 0, 0, 965, 960, 1, 0, 0, 0, 965, 961, 1, 0, 0, 0, 965, 962, 1, 0, 0, 0, 965, 963, 1, 0, 0, 0, 965, 964, 1, 0, 0, 0, 966, 75, 1, 0, 0, 0, 967, 968, 5, 58, 0, 0, 968, 970, 7, 0, 0, 0, 969, 971, 3, 170, 85, 0, 970, 969, 1, 0, 0, 0, 970, 971, 1, 0, 0, 0, 971, 972, 1, 0, 0, 0, 972, 974, 3, 184, 92, 0, 973, 975, 7, 4, 0, 0, 974, 973, 1, 0, 0, 0, 974, 975, 1, 0, 0, 0, 975, 77, 1, 0, 0, 0, 976, 977, 5, 58, 0, 0, 977, 979, 5, 212, 0, 0, 978, 980, 3, 170, 85, 0, 979, 978, 1, 0, 0, 0, 979, 980, 1, 0, 0, 0, 980, 981, 1, 0, 0, 0, 981, 982, 3, 188, 94, 0, 982, 79, 1, 0, 0, 0, 983, 984, 5, 58, 0, 0, 984, 986, 5, 188, 0, 0, 985, 987, 3, 170, 85, 0, 986, 985, 1, 0, 0, 0, 986, 987, 1, 0, 0, 0, 987, 988, 1, 0, 0, 0, 988, 990, 3, 186, 93, 0, 989, 991, 5, 22, 0, 0, 990, 989, 1, 0, 0, 0, 990, 991, 1, 0, 0, 0, 991, 81, 1, 0, 0, 0, 992, 994, 5, 58, 0, 0, 993, 995, 5, 96, 0, 0, 994, 993, 1, 0, 0, 0, 994, 995, 1, 0, 0, 0, 995, 996, 1, 0, 0, 0, 996, 997, 5, 182, 0, 0, 997, 1000, 3, 186, 93, 0, 998, 999, 5, 145, 0, 0, 999, 1001, 3, 304, 152, 0, 1000, 998, 1, 0, 0, 0, 1000, 1001, 1, 0, 0, 0, 1001, 83, 1, 0, 0, 0, 1002, 1004, 5, 58, 0, 0, 1003, 1005, 5, 12, 0, 0, 1004, 1003, 1, 0, 0, 0, 1004, 1005, 1, 0, 0, 0, 1005, 1006, 1, 0, 0, 0, 1006, 1008, 5, 84, 0, 0, 1007, 1009, 3, 170, 85, 0, 1008, 1007, 1, 0, 0, 0, 1008, 1009, 1, 0, 0, 0, 1009, 1010, 1, 0, 0, 0, 1010, 1023, 3, 190, 95, 0, 1011, 1020, 5, 265, 0, 0, 1012, 1017, 3, 328, 164, 0, 1013, 1014, 5, 263, 0, 0, 1014, 1016, 3, 328, 164, 0, 1015, 1013, 1, 0, 0, 0, 1016, 1019, 1, 0, 0, 0, 1017, 1015, 1, 0, 0, 0, 1017, 1018, 1, 0, 0, 0, 1018, 1021, 1, 0, 0, 0, 1019, 1017, 1, 0, 0, 0, 1020, 1012, 1, 0, 0, 0, 1020, 1021, 1, 0, 0, 0, 1021, 1022, 1, 0, 0, 0, 1022, 1024, 5, 266, 0, 0, 1023, 1011, 1, 0, 0, 0, 1023, 1024, 1, 0, 0, 0, 1024, 85, 1, 0, 0, 0, 1025, 1026, 5, 58, 0, 0, 1026, 1027, 5, 166, 0, 0, 1027, 1028, 3, 358, 179, 0, 1028, 87, 1, 0, 0, 0, 1029, 1032, 3, 90, 45, 0, 1030, 1032, 3, 92, 46, 0, 1031, 1029, 1, 0, 0, 0, 1031, 1030, 1, 0, 0, 0, 1032, 89, 1, 0, 0, 0, 1033, 1034, 5, 86, 0, 0, 1034, 1035, 5, 166, 0, 0, 1035, 1036, 3, 358, 179, 0, 1036, 1037, 5, 193, 0, 0, 1037, 1038, 5, 87, 0, 0, 1038, 1039, 3, 358, 179, 0, 1039, 91, 1, 0, 0, 0, 1040, 1041, 5, 86, 0, 0, 1041, 1042, 3, 350, 175, 0, 1042, 1043, 5, 136, 0, 0, 1043, 1045, 3, 352, 176, 0, 1044, 1046, 3, 354, 177, 0, 1045, 1044, 1, 0, 0, 0, 1045, 1046, 1, 0, 0, 0, 1046, 1047, 1, 0, 0, 0, 1047, 1048, 5, 193, 0, 0, 1048, 1049, 3, 356, 178, 0, 1049, 93, 1, 0, 0, 0, 1050, 1053, 3, 96, 48, 0, 1051, 1053, 3, 98, 49, 0, 1052, 1050, 1, 0, 0, 0, 1052, 1051, 1, 0, 0, 0, 1053, 95, 1, 0, 0, 0, 1054, 1055, 5, 161, 0, 0, 1055, 1056, 5, 166, 0, 0, 1056, 1057, 3, 358, 179, 0, 1057, 1058, 5, 82, 0, 0, 1058, 1059, 5, 87, 0, 0, 1059, 1060, 3, 358, 179, 0, 1060, 97, 1, 0, 0, 0, 1061, 1065, 5, 161, 0, 0, 1062, 1063, 5, 86, 0, 0, 1063, 1064, 5, 137, 0, 0, 1064, 1066, 5, 78, 0, 0, 1065, 1062, 1, 0, 0, 0, 1065, 1066, 1, 0, 0, 0, 1066, 1067, 1, 0, 0, 0, 1067, 1068, 3, 350, 175, 0, 1068, 1069, 5, 136, 0, 0, 1069, 1071, 3, 352, 176, 0, 1070, 1072, 3, 354, 177, 0, 1071, 1070, 1, 0, 0, 0, 1071, 1072, 1, 0, 0, 0, 1072, 1073, 1, 0, 0, 0, 1073, 1079, 5, 82, 0, 0, 1074, 1080, 3, 356, 178, 0, 1075, 1077, 5, 166, 0, 0, 1076, 1075, 1, 0, 0, 0, 1076, 1077, 1, 0, 0, 0, 1077, 1078, 1, 0, 0, 0, 1078, 1080, 3, 358, 179, 0, 1079, 1074, 1, 0, 0, 0, 1079, 1076, 1, 0, 0, 0, 1080, 99, 1, 0, 0, 0, 1081, 1083, 3, 206, 103, 0, 1082, 1081, 1, 0, 0, 0, 1082, 1083, 1, 0, 0, 0, 1083, 1084, 1, 0, 0, 0, 1084, 1085, 5, 99, 0, 0, 1085, 1087, 7, 5, 0, 0, 1086, 1088, 5, 188, 0, 0, 1087, 1086, 1, 0, 0, 0, 1087, 1088, 1, 0, 0, 0, 1088, 1089, 1, 0, 0, 0, 1089, 1091, 3, 186, 93, 0, 1090, 1092, 3, 292, 146, 0, 1091, 1090, 1, 0, 0, 0, 1091, 1092, 1, 0, 0, 0, 1092, 1105, 1, 0, 0, 0, 1093, 1094, 5, 145, 0, 0, 1094, 1095, 5, 265, 0, 0, 1095, 1100, 3, 304, 152, 0, 1096, 1097, 5, 263, 0, 0, 1097, 1099, 3, 304, 152, 0, 1098, 1096, 1, 0, 0, 0, 1099, 1102, 1, 0, 0, 0, 1100, 1098, 1, 0, 0, 0, 1100, 1101, 1, 0, 0, 0, 1101, 1103, 1, 0, 0, 0, 1102, 1100, 1, 0, 0, 0, 1103, 1104, 5, 266, 0, 0, 1104, 1106, 1, 0, 0, 0, 1105, 1093, 1, 0, 0, 0, 1105, 1106, 1, 0, 0, 0, 1106, 1107, 1, 0, 0, 0, 1107, 1108, 3, 204, 102, 0, 1108, 101, 1, 0, 0, 0, 1109, 1112, 3, 104, 52, 0, 1110, 1112, 3, 106, 53, 0, 1111, 1109, 1, 0, 0, 0, 1111, 1110, 1, 0, 0, 0, 1112, 103, 1, 0, 0, 0, 1113, 1115, 5, 50, 0, 0, 1114, 1116, 5, 82, 0, 0, 1115, 1114, 1, 0, 0, 0, 1115, 1116, 1, 0, 0, 0, 1116, 1117, 1, 0, 0, 0, 1117, 1120, 3, 186, 93, 0, 1118, 1119, 5, 215, 0, 0, 1119, 1121, 3, 306, 153, 0, 1120, 1118, 1, 0, 0, 0, 1120, 1121, 1, 0, 0, 0, 1121, 105, 1, 0, 0, 0, 1122, 1123, 5, 50, 0, 0, 1123, 1128, 3, 186, 93, 0, 1124, 1126, 5, 9, 0, 0, 1125, 1124, 1, 0, 0, 0, 1125, 1126, 1, 0, 0, 0, 1126, 1127, 1, 0, 0, 0, 1127, 1129, 3, 358, 179, 0, 1128, 1125, 1, 0, 0, 0, 1128, 1129, 1, 0, 0, 0, 1129, 1130, 1, 0, 0, 0, 1130, 1139, 5, 82, 0, 0, 1131, 1136, 3, 280, 140, 0, 1132, 1133, 5, 263, 0, 0, 1133, 1135, 3, 280, 140, 0, 1134, 1132, 1, 0, 0, 0, 1135, 1138, 1, 0, 0, 0, 1136, 1134, 1, 0, 0, 0, 1136, 1137, 1, 0, 0, 0, 1137, 1140, 1, 0, 0, 0, 1138, 1136, 1, 0, 0, 0, 1139, 1131, 1, 0, 0, 0, 1139, 1140, 1, 0, 0, 0, 1140, 1143, 1, 0, 0, 0, 1141, 1142, 5, 215, 0, 0, 1142, 1144, 3, 306, 153, 0, 1143, 1141, 1, 0, 0, 0, 1143, 1144, 1, 0, 0, 0, 1144, 107, 1, 0, 0, 0, 1145, 1146, 5, 54, 0, 0, 1146, 1147, 3, 186, 93, 0, 1147, 1148, 5, 176, 0, 0, 1148, 1158, 3, 198, 99, 0, 1149, 1150, 5, 82, 0, 0, 1150, 1155, 3, 280, 140, 0, 1151, 1152, 5, 263, 0, 0, 1152, 1154, 3, 280, 140, 0, 1153, 1151, 1, 0, 0, 0, 1154, 1157, 1, 0, 0, 0, 1155, 1153, 1, 0, 0, 0, 1155, 1156, 1, 0, 0, 0, 1156, 1159, 1, 0, 0, 0, 1157, 1155, 1, 0, 0, 0, 1158, 1149, 1, 0, 0, 0, 1158, 1159, 1, 0, 0, 0, 1159, 1162, 1, 0, 0, 0, 1160, 1161, 5, 215, 0, 0, 1161, 1163, 3, 306, 153, 0, 1162, 1160, 1, 0, 0, 0, 1162, 1163, 1, 0, 0, 0, 1163, 109, 1, 0, 0, 0, 1164, 1165, 5, 207, 0, 0, 1165, 1167, 5, 103, 0, 0, 1166, 1168, 5, 188, 0, 0, 1167, 1166, 1, 0, 0, 0, 1167, 1168, 1, 0, 0, 0, 1168, 1169, 1, 0, 0, 0, 1169, 1171, 3, 186, 93, 0, 1170, 1172, 3, 292, 146, 0, 1171, 1170, 1, 0, 0, 0, 1171, 1172, 1, 0, 0, 0, 1172, 1173, 1, 0, 0, 0, 1173, 1174, 3, 204, 102, 0, 1174, 111, 1, 0, 0, 0, 1175, 1188, 3, 132, 66, 0, 1176, 1188, 3, 134, 67, 0, 1177, 1188, 3, 136, 68, 0, 1178, 1188, 3, 130, 65, 0, 1179, 1188, 3, 128, 64, 0, 1180, 1188, 3, 126, 63, 0, 1181, 1188, 3, 124, 62, 0, 1182, 1188, 3, 122, 61, 0, 1183, 1188, 3, 120, 60, 0, 1184, 1188, 3, 118, 59, 0, 1185, 1188, 3, 116, 58, 0, 1186, 1188, 3, 114, 57, 0, 1187, 1175, 1, 0, 0, 0, 1187, 1176, 1, 0, 0, 0, 1187, 1177, 1, 0, 0, 0, 1187, 1178, 1, 0, 0, 0, 1187, 1179, 1, 0, 0, 0, 1187, 1180, 1, 0, 0, 0, 1187, 1181, 1, 0, 0, 0, 1187, 1182, 1, 0, 0, 0, 1187, 1183, 1, 0, 0, 0, 1187, 1184, 1, 0, 0, 0, 1187, 1185, 1, 0, 0, 0, 1187, 1186, 1, 0, 0, 0, 1188, 113, 1, 0, 0, 0, 1189, 1190, 5, 179, 0, 0, 1190, 1202, 7, 6, 0, 0, 1191, 1193, 5, 115, 0, 0, 1192, 1191, 1, 0, 0, 0, 1192, 1193, 1, 0, 0, 0, 1193, 1194, 1, 0, 0, 0, 1194, 1199, 3, 314, 157, 0, 1195, 1196, 5, 271, 0, 0, 1196, 1198, 3, 314, 157, 0, 1197, 1195, 1, 0, 0, 0, 1198, 1201, 1, 0, 0, 0, 1199, 1197, 1, 0, 0, 0, 1199, 1200, 1, 0, 0, 0, 1200, 1203, 1, 0, 0, 0, 1201, 1199, 1, 0, 0, 0, 1202, 1192, 1, 0, 0, 0, 1202, 1203, 1, 0, 0, 0, 1203, 115, 1, 0, 0, 0, 1204, 1205, 5, 179, 0, 0, 1205, 1208, 5, 189, 0, 0, 1206, 1207, 5, 94, 0, 0, 1207, 1209, 3, 186, 93, 0, 1208, 1206, 1, 0, 0, 0, 1208, 1209, 1, 0, 0, 0, 1209, 1221, 1, 0, 0, 0, 1210, 1212, 5, 115, 0, 0, 1211, 1210, 1, 0, 0, 0, 1211, 1212, 1, 0, 0, 0, 1212, 1213, 1, 0, 0, 0, 1213, 1218, 3, 314, 157, 0, 1214, 1215, 5, 271, 0, 0, 1215, 1217, 3, 314, 157, 0, 1216, 1214, 1, 0, 0, 0, 1217, 1220, 1, 0, 0, 0, 1218, 1216, 1, 0, 0, 0, 1218, 1219, 1, 0, 0, 0, 1219, 1222, 1, 0, 0, 0, 1220, 1218, 1, 0, 0, 0, 1221, 1211, 1, 0, 0, 0, 1221, 1222, 1, 0, 0, 0, 1222, 117, 1, 0, 0, 0, 1223, 1225, 5, 179, 0, 0, 1224, 1226, 7, 7, 0, 0, 1225, 1224, 1, 0, 0, 0, 1225, 1226, 1, 0, 0, 0, 1226, 1227, 1, 0, 0, 0, 1227, 1230, 5, 85, 0, 0, 1228, 1229, 5, 94, 0, 0, 1229, 1231, 3, 184, 92, 0, 1230, 1228, 1, 0, 0, 0, 1230, 1231, 1, 0, 0, 0, 1231, 1243, 1, 0, 0, 0, 1232, 1234, 5, 115, 0, 0, 1233, 1232, 1, 0, 0, 0, 1233, 1234, 1, 0, 0, 0, 1234, 1235, 1, 0, 0, 0, 1235, 1240, 3, 314, 157, 0, 1236, 1237, 5, 271, 0, 0, 1237, 1239, 3, 314, 157, 0, 1238, 1236, 1, 0, 0, 0, 1239, 1242, 1, 0, 0, 0, 1240, 1238, 1, 0, 0, 0, 1240, 1241, 1, 0, 0, 0, 1241, 1244, 1, 0, 0, 0, 1242, 1240, 1, 0, 0, 0, 1243, 1233, 1, 0, 0, 0, 1243, 1244, 1, 0, 0, 0, 1244, 119, 1, 0, 0, 0, 1245, 1246, 5, 179, 0, 0, 1246, 1247, 5, 37, 0, 0, 1247, 1248, 5, 188, 0, 0, 1248, 1249, 3, 186, 93, 0, 1249, 121, 1, 0, 0, 0, 1250, 1251, 5, 179, 0, 0, 1251, 1252, 5, 37, 0, 0, 1252, 1253, 5, 212, 0, 0, 1253, 1254, 3, 188, 94, 0, 1254, 123, 1, 0, 0, 0, 1255, 1256, 5, 179, 0, 0, 1256, 1257, 5, 188, 0, 0, 1257, 1258, 5, 182, 0, 0, 1258, 1259, 3, 186, 93, 0, 1259, 125, 1, 0, 0, 0, 1260, 1261, 5, 179, 0, 0, 1261, 1262, 5, 32, 0, 0, 1262, 1263, 5, 182, 0, 0, 1263, 1264, 3, 186, 93, 0, 1264, 127, 1, 0, 0, 0, 1265, 1267, 5, 179, 0, 0, 1266, 1268, 5, 154, 0, 0, 1267, 1266, 1, 0, 0, 0, 1267, 1268, 1, 0, 0, 0, 1268, 1269, 1, 0, 0, 0, 1269, 1270, 5, 146, 0, 0, 1270, 1271, 3, 186, 93, 0, 1271, 129, 1, 0, 0, 0, 1272, 1273, 5, 179, 0, 0, 1273, 1274, 5, 73, 0, 0, 1274, 1275, 5, 94, 0, 0, 1275, 1285, 3, 186, 93, 0, 1276, 1277, 5, 145, 0, 0, 1277, 1278, 5, 265, 0, 0, 1278, 1281, 3, 304, 152, 0, 1279, 1280, 5, 263, 0, 0, 1280, 1282, 3, 304, 152, 0, 1281, 1279, 1, 0, 0, 0, 1281, 1282, 1, 0, 0, 0, 1282, 1283, 1, 0, 0, 0, 1283, 1284, 5, 266, 0, 0, 1284, 1286, 1, 0, 0, 0, 1285, 1276, 1, 0, 0, 0, 1285, 1286, 1, 0, 0, 0, 1286, 131, 1, 0, 0, 0, 1287, 1289, 5, 179, 0, 0, 1288, 1290, 5, 39, 0, 0, 1289, 1288, 1, 0, 0, 0, 1289, 1290, 1, 0, 0, 0, 1290, 1291, 1, 0, 0, 0, 1291, 1292, 5, 167, 0, 0, 1292, 133, 1, 0, 0, 0, 1293, 1294, 5, 179, 0, 0, 1294, 1295, 5, 166, 0, 0, 1295, 1296, 5, 86, 0, 0, 1296, 1297, 5, 87, 0, 0, 1297, 1298, 3, 358, 179, 0, 1298, 135, 1, 0, 0, 0, 1299, 1314, 3, 138, 69, 0, 1300, 1314, 3, 140, 70, 0, 1301, 1314, 3, 142, 71, 0, 1302, 1303, 5, 179, 0, 0, 1303, 1304, 5, 86, 0, 0, 1304, 1305, 7, 8, 0, 0, 1305, 1311, 3, 358, 179, 0, 1306, 1307, 5, 136, 0, 0, 1307, 1309, 7, 9, 0, 0, 1308, 1310, 3, 354, 177, 0, 1309, 1308, 1, 0, 0, 0, 1309, 1310, 1, 0, 0, 0, 1310, 1312, 1, 0, 0, 0, 1311, 1306, 1, 0, 0, 0, 1311, 1312, 1, 0, 0, 0, 1312, 1314, 1, 0, 0, 0, 1313, 1299, 1, 0, 0, 0, 1313, 1300, 1, 0, 0, 0, 1313, 1301, 1, 0, 0, 0, 1313, 1302, 1, 0, 0, 0, 1314, 137, 1, 0, 0, 0, 1315, 1316, 5, 179, 0, 0, 1316, 1317, 5, 86, 0, 0, 1317, 1318, 7, 8, 0, 0, 1318, 1324, 3, 358, 179, 0, 1319, 1320, 5, 136, 0, 0, 1320, 1322, 5, 46, 0, 0, 1321, 1323, 3, 184, 92, 0, 1322, 1321, 1, 0, 0, 0, 1322, 1323, 1, 0, 0, 0, 1323, 1325, 1, 0, 0, 0, 1324, 1319, 1, 0, 0, 0, 1324, 1325, 1, 0, 0, 0, 1325, 139, 1, 0, 0, 0, 1326, 1327, 5, 179, 0, 0, 1327, 1328, 5, 86, 0, 0, 1328, 1329, 7, 8, 0, 0, 1329, 1335, 3, 358, 179, 0, 1330, 1331, 5, 136, 0, 0, 1331, 1333, 5, 188, 0, 0, 1332, 1334, 3, 186, 93, 0, 1333, 1332, 1, 0, 0, 0, 1333, 1334, 1, 0, 0, 0, 1334, 1336, 1, 0, 0, 0, 1335, 1330, 1, 0, 0, 0, 1335, 1336, 1, 0, 0, 0, 1336, 141, 1, 0, 0, 0, 1337, 1338, 5, 179, 0, 0, 1338, 1339, 5, 86, 0, 0, 1339, 1340, 7, 8, 0, 0, 1340, 1346, 3, 358, 179, 0, 1341, 1342, 5, 136, 0, 0, 1342, 1344, 5, 32, 0, 0, 1343, 1345, 3, 192, 96, 0, 1344, 1343, 1, 0, 0, 0, 1344, 1345, 1, 0, 0, 0, 1345, 1347, 1, 0, 0, 0, 1346, 1341, 1, 0, 0, 0, 1346, 1347, 1, 0, 0, 0, 1347, 143, 1, 0, 0, 0, 1348, 1352, 3, 146, 73, 0, 1349, 1352, 3, 148, 74, 0, 1350, 1352, 3, 150, 75, 0, 1351, 1348, 1, 0, 0, 0, 1351, 1349, 1, 0, 0, 0, 1351, 1350, 1, 0, 0, 0, 1352, 145, 1, 0, 0, 0, 1353, 1354, 5, 34, 0, 0, 1354, 1355, 5, 136, 0, 0, 1355, 1356, 5, 46, 0, 0, 1356, 1357, 3, 184, 92, 0, 1357, 1360, 5, 108, 0, 0, 1358, 1361, 3, 314, 157, 0, 1359, 1361, 5, 133, 0, 0, 1360, 1358, 1, 0, 0, 0, 1360, 1359, 1, 0, 0, 0, 1361, 147, 1, 0, 0, 0, 1362, 1363, 5, 34, 0, 0, 1363, 1364, 5, 136, 0, 0, 1364, 1365, 5, 188, 0, 0, 1365, 1366, 3, 186, 93, 0, 1366, 1369, 5, 108, 0, 0, 1367, 1370, 3, 314, 157, 0, 1368, 1370, 5, 133, 0, 0, 1369, 1367, 1, 0, 0, 0, 1369, 1368, 1, 0, 0, 0, 1370, 149, 1, 0, 0, 0, 1371, 1372, 5, 34, 0, 0, 1372, 1373, 5, 136, 0, 0, 1373, 1374, 5, 32, 0, 0, 1374, 1375, 3, 192, 96, 0, 1375, 1378, 5, 108, 0, 0, 1376, 1379, 3, 314, 157, 0, 1377, 1379, 5, 133, 0, 0, 1378, 1376, 1, 0, 0, 0, 1378, 1377, 1, 0, 0, 0, 1379, 151, 1, 0, 0, 0, 1380, 1381, 5, 67, 0, 0, 1381, 1382, 3, 4, 2, 0, 1382, 153, 1, 0, 0, 0, 1383, 1389, 5, 176, 0, 0, 1384, 1390, 5, 2, 0, 0, 1385, 1386, 3, 358, 179, 0, 1386, 1387, 5, 249, 0, 0, 1387, 1388, 3, 304, 152, 0, 1388, 1390, 1, 0, 0, 0, 1389, 1384, 1, 0, 0, 0, 1389, 1385, 1, 0, 0, 0, 1389, 1390, 1, 0, 0, 0, 1390, 155, 1, 0, 0, 0, 1391, 1392, 5, 264, 0, 0, 1392, 1393, 5, 180, 0, 0, 1393, 1403, 5, 265, 0, 0, 1394, 1396, 3, 314, 157, 0, 1395, 1394, 1, 0, 0, 0, 1395, 1396, 1, 0, 0, 0, 1396, 1404, 1, 0, 0, 0, 1397, 1400, 3, 314, 157, 0, 1398, 1399, 5, 263, 0, 0, 1399, 1401, 3, 304, 152, 0, 1400, 1398, 1, 0, 0, 0, 1400, 1401, 1, 0, 0, 0, 1401, 1404, 1, 0, 0, 0, 1402, 1404, 3, 304, 152, 0, 1403, 1395, 1, 0, 0, 0, 1403, 1397, 1, 0, 0, 0, 1403, 1402, 1, 0, 0, 0, 1404, 1405, 1, 0, 0, 0, 1405, 1406, 5, 266, 0, 0, 1406, 157, 1, 0, 0, 0, 1407, 1408, 5, 107, 0, 0, 1408, 1409, 5, 121, 0, 0, 1409, 1410, 3, 186, 93, 0, 1410, 159, 1, 0, 0, 0, 1411, 1412, 5, 118, 0, 0, 1412, 1413, 5, 45, 0, 0, 1413, 1414, 5, 98, 0, 0, 1414, 1416, 5, 274, 0, 0, 1415, 1417, 5, 144, 0, 0, 1416, 1415, 1, 0, 0, 0, 1416, 1417, 1, 0, 0, 0, 1417, 1418, 1, 0, 0, 0, 1418, 1419, 5, 103, 0, 0, 1419, 1420, 5, 188, 0, 0, 1420, 1430, 3, 186, 93, 0, 1421, 1422, 5, 145, 0, 0, 1422, 1423, 5, 265, 0, 0, 1423, 1426, 3, 304, 152, 0, 1424, 1425, 5, 263, 0, 0, 1425, 1427, 3, 304, 152, 0, 1426, 1424, 1, 0, 0, 0, 1426, 1427, 1, 0, 0, 0, 1427, 1428, 1, 0, 0, 0, 1428, 1429, 5, 266, 0, 0, 1429, 1431, 1, 0, 0, 0, 1430, 1421, 1, 0, 0, 0, 1430, 1431, 1, 0, 0, 0, 1431, 161, 1, 0, 0, 0, 1432, 1436, 3, 164, 82, 0, 1433, 1436, 3, 166, 83, 0, 1434, 1436, 3, 168, 84, 0, 1435, 1432, 1, 0, 0, 0, 1435, 1433, 1, 0, 0, 0, 1435, 1434, 1, 0, 0, 0, 1436, 163, 1, 0, 0, 0, 1437, 1438, 5, 162, 0, 0, 1438, 1451, 3, 186, 93, 0, 1439, 1440, 5, 145, 0, 0, 1440, 1441, 5, 265, 0, 0, 1441, 1446, 3, 304, 152, 0, 1442, 1443, 5, 263, 0, 0, 1443, 1445, 3, 304, 152, 0, 1444, 1442, 1, 0, 0, 0, 1445, 1448, 1, 0, 0, 0, 1446, 1447, 1, 0, 0, 0, 1446, 1444, 1, 0, 0, 0, 1447, 1449, 1, 0, 0, 0, 1448, 1446, 1, 0, 0, 0, 1449, 1450, 5, 266, 0, 0, 1450, 1452, 1, 0, 0, 0, 1451, 1439, 1, 0, 0, 0, 1451, 1452, 1, 0, 0, 0, 1452, 165, 1, 0, 0, 0, 1453, 1454, 5, 162, 0, 0, 1454, 1455, 5, 13, 0, 0, 1455, 167, 1, 0, 0, 0, 1456, 1457, 5, 162, 0, 0, 1457, 1458, 5, 85, 0, 0, 1458, 1459, 3, 190, 95, 0, 1459, 169, 1, 0, 0, 0, 1460, 1461, 5, 93, 0, 0, 1461, 1462, 5, 66, 0, 0, 1462, 171, 1, 0, 0, 0, 1463, 1464, 5, 93, 0, 0, 1464, 1465, 5, 132, 0, 0, 1465, 1466, 5, 66, 0, 0, 1466, 173, 1, 0, 0, 0, 1467, 1468, 3, 354, 177, 0, 1468, 175, 1, 0, 0, 0, 1469, 1470, 3, 354, 177, 0, 1470, 177, 1, 0, 0, 0, 1471, 1472, 3, 354, 177, 0, 1472, 179, 1, 0, 0, 0, 1473, 1474, 3, 354, 177, 0, 1474, 181, 1, 0, 0, 0, 1475, 1476, 3, 354, 177, 0, 1476, 183, 1, 0, 0, 0, 1477, 1478, 3, 354, 177, 0, 1478, 185, 1, 0, 0, 0, 1479, 1484, 3, 358, 179, 0, 1480, 1481, 5, 261, 0, 0, 1481, 1483, 3, 358, 179, 0, 1482, 1480, 1, 0, 0, 0, 1483, 1486, 1, 0, 0, 0, 1484, 1482, 1, 0, 0, 0, 1484, 1485, 1, 0, 0, 0, 1485, 187, 1, 0, 0, 0, 1486, 1484, 1, 0, 0, 0, 1487, 1492, 3, 358, 179, 0, 1488, 1489, 5, 261, 0, 0, 1489, 1491, 3, 358, 179, 0, 1490, 1488, 1, 0, 0, 0, 1491, 1494, 1, 0, 0, 0, 1492, 1490, 1, 0, 0, 0, 1492, 1493, 1, 0, 0, 0, 1493, 189, 1, 0, 0, 0, 1494, 1492, 1, 0, 0, 0, 1495, 1498, 3, 362, 181, 0, 1496, 1498, 3, 354, 177, 0, 1497, 1495, 1, 0, 0, 0, 1497, 1496, 1, 0, 0, 0, 1498, 191, 1, 0, 0, 0, 1499, 1502, 3, 354, 177, 0, 1500, 1502, 4, 96, 0, 0, 1501, 1499, 1, 0, 0, 0, 1501, 1500, 1, 0, 0, 0, 1502, 193, 1, 0, 0, 0, 1503, 1506, 3, 186, 93, 0, 1504, 1506, 3, 188, 94, 0, 1505, 1503, 1, 0, 0, 0, 1505, 1504, 1, 0, 0, 0, 1506, 195, 1, 0, 0, 0, 1507, 1508, 5, 21, 0, 0, 1508, 1509, 5, 26, 0, 0, 1509, 1511, 3, 292, 146, 0, 1510, 1507, 1, 0, 0, 0, 1510, 1511, 1, 0, 0, 0, 1511, 1514, 1, 0, 0, 0, 1512, 1513, 5, 34, 0, 0, 1513, 1515, 3, 314, 157, 0, 1514, 1512, 1, 0, 0, 0, 1514, 1515, 1, 0, 0, 0, 1515, 1519, 1, 0, 0, 0, 1516, 1517, 5, 168, 0, 0, 1517, 1518, 5, 79, 0, 0, 1518, 1520, 3, 254, 127, 0, 1519, 1516, 1, 0, 0, 0, 1519, 1520, 1, 0, 0, 0, 1520, 1524, 1, 0, 0, 0, 1521, 1522, 5, 216, 0, 0, 1522, 1523, 5, 175, 0, 0, 1523, 1525, 3, 248, 124, 0, 1524, 1521, 1, 0, 0, 0, 1524, 1525, 1, 0, 0, 0, 1525, 1529, 1, 0, 0, 0, 1526, 1527, 5, 23, 0, 0, 1527, 1528, 5, 9, 0, 0, 1528, 1530, 3, 230, 115, 0, 1529, 1526, 1, 0, 0, 0, 1529, 1530, 1, 0, 0, 0, 1530, 1533, 1, 0, 0, 0, 1531, 1532, 5, 24, 0, 0, 1532, 1534, 3, 314, 157, 0, 1533, 1531, 1, 0, 0, 0, 1533, 1534, 1, 0, 0, 0, 1534, 1545, 1, 0, 0, 0, 1535, 1536, 5, 30, 0, 0, 1536, 1537, 5, 94, 0, 0, 1537, 1542, 3, 354, 177, 0, 1538, 1539, 5, 216, 0, 0, 1539, 1540, 5, 151, 0, 0, 1540, 1541, 5, 249, 0, 0, 1541, 1543, 5, 277, 0, 0, 1542, 1538, 1, 0, 0, 0, 1542, 1543, 1, 0, 0, 0, 1543, 1546, 1, 0, 0, 0, 1544, 1546, 5, 197, 0, 0, 1545, 1535, 1, 0, 0, 0, 1545, 1544, 1, 0, 0, 0, 1545, 1546, 1, 0, 0, 0, 1546, 1549, 1, 0, 0, 0, 1547, 1548, 5, 25, 0, 0, 1548, 1550, 3, 248, 124, 0, 1549, 1547, 1, 0, 0, 0, 1549, 1550, 1, 0, 0, 0, 1550, 197, 1, 0, 0, 0, 1551, 1556, 3, 200, 100, 0, 1552, 1553, 5, 263, 0, 0, 1553, 1555, 3, 200, 100, 0, 1554, 1552, 1, 0, 0, 0, 1555, 1558, 1, 0, 0, 0, 1556, 1554, 1, 0, 0, 0, 1556, 1557, 1, 0, 0, 0, 1557, 199, 1, 0, 0, 0, 1558, 1556, 1, 0, 0, 0, 1559, 1560, 3, 354, 177, 0, 1560, 1561, 5, 249, 0, 0, 1561, 1562, 3, 304, 152, 0, 1562, 201, 1, 0, 0, 0, 1563, 1564, 5, 265, 0, 0, 1564, 1567, 3, 182, 91, 0, 1565, 1566, 5, 34, 0, 0, 1566, 1568, 3, 314, 157, 0, 1567, 1565, 1, 0, 0, 0, 1567, 1568, 1, 0, 0, 0, 1568, 1577, 1, 0, 0, 0, 1569, 1570, 5, 263, 0, 0, 1570, 1573, 3, 182, 91, 0, 1571, 1572, 5, 34, 0, 0, 1572, 1574, 3, 314, 157, 0, 1573, 1571, 1, 0, 0, 0, 1573, 1574, 1, 0, 0, 0, 1574, 1576, 1, 0, 0, 0, 1575, 1569, 1, 0, 0, 0, 1576, 1579, 1, 0, 0, 0, 1577, 1575, 1, 0, 0, 0, 1577, 1578, 1, 0, 0, 0, 1578, 1580, 1, 0, 0, 0, 1579, 1577, 1, 0, 0, 0, 1580, 1581, 5, 266, 0, 0, 1581, 203, 1, 0, 0, 0, 1582, 1584, 3, 206, 103, 0, 1583, 1582, 1, 0, 0, 0, 1583, 1584, 1, 0, 0, 0, 1584, 1585, 1, 0, 0, 0, 1585, 1586, 3, 258, 129, 0, 1586, 205, 1, 0, 0, 0, 1587, 1588, 5, 216, 0, 0, 1588, 1593, 3, 274, 137, 0, 1589, 1590, 5, 263, 0, 0, 1590, 1592, 3, 274, 137, 0, 1591, 1589, 1, 0, 0, 0, 1592, 1595, 1, 0, 0, 0, 1593, 1591, 1, 0, 0, 0, 1593, 1594, 1, 0, 0, 0, 1594, 207, 1, 0, 0, 0, 1595, 1593, 1, 0, 0, 0, 1596, 1597, 5, 150, 0, 0, 1597, 1598, 5, 110, 0, 0, 1598, 1600, 3, 292, 146, 0, 1599, 1601, 5, 53, 0, 0, 1600, 1599, 1, 0, 0, 0, 1600, 1601, 1, 0, 0, 0, 1601, 1605, 1, 0, 0, 0, 1602, 1606, 5, 225, 0, 0, 1603, 1604, 5, 263, 0, 0, 1604, 1606, 5, 225, 0, 0, 1605, 1602, 1, 0, 0, 0, 1605, 1603, 1, 0, 0, 0, 1605, 1606, 1, 0, 0, 0, 1606, 1610, 1, 0, 0, 0, 1607, 1611, 5, 226, 0, 0, 1608, 1609, 5, 263, 0, 0, 1609, 1611, 5, 226, 0, 0, 1610, 1607, 1, 0, 0, 0, 1610, 1608, 1, 0, 0, 0, 1610, 1611, 1, 0, 0, 0, 1611, 1624, 1, 0, 0, 0, 1612, 1613, 5, 263, 0, 0, 1613, 1616, 3, 210, 105, 0, 1614, 1616, 3, 210, 105, 0, 1615, 1612, 1, 0, 0, 0, 1615, 1614, 1, 0, 0, 0, 1616, 1621, 1, 0, 0, 0, 1617, 1618, 5, 263, 0, 0, 1618, 1620, 3, 210, 105, 0, 1619, 1617, 1, 0, 0, 0, 1620, 1623, 1, 0, 0, 0, 1621, 1622, 1, 0, 0, 0, 1621, 1619, 1, 0, 0, 0, 1622, 1625, 1, 0, 0, 0, 1623, 1621, 1, 0, 0, 0, 1624, 1615, 1, 0, 0, 0, 1624, 1625, 1, 0, 0, 0, 1625, 209, 1, 0, 0, 0, 1626, 1627, 5, 81, 0, 0, 1627, 1628, 5, 110, 0, 0, 1628, 1629, 3, 292, 146, 0, 1629, 1630, 5, 224, 0, 0, 1630, 1631, 3, 186, 93, 0, 1631, 1633, 3, 292, 146, 0, 1632, 1634, 5, 53, 0, 0, 1633, 1632, 1, 0, 0, 0, 1633, 1634, 1, 0, 0, 0, 1634, 1636, 1, 0, 0, 0, 1635, 1637, 5, 225, 0, 0, 1636, 1635, 1, 0, 0, 0, 1636, 1637, 1, 0, 0, 0, 1637, 1639, 1, 0, 0, 0, 1638, 1640, 5, 226, 0, 0, 1639, 1638, 1, 0, 0, 0, 1639, 1640, 1, 0, 0, 0, 1640, 211, 1, 0, 0, 0, 1641, 1642, 3, 192, 96, 0, 1642, 1645, 3, 328, 164, 0, 1643, 1644, 5, 34, 0, 0, 1644, 1646, 3, 314, 157, 0, 1645, 1643, 1, 0, 0, 0, 1645, 1646, 1, 0, 0, 0, 1646, 213, 1, 0, 0, 0, 1647, 1648, 3, 182, 91, 0, 1648, 1651, 3, 328, 164, 0, 1649, 1650, 5, 34, 0, 0, 1650, 1652, 3, 314, 157, 0, 1651, 1649, 1, 0, 0, 0, 1651, 1652, 1, 0, 0, 0, 1652, 215, 1, 0, 0, 0, 1653, 1654, 3, 218, 109, 0, 1654, 217, 1, 0, 0, 0, 1655, 1656, 3, 182, 91, 0, 1656, 1664, 3, 328, 164, 0, 1657, 1661, 3, 224, 112, 0, 1658, 1660, 3, 224, 112, 0, 1659, 1658, 1, 0, 0, 0, 1660, 1663, 1, 0, 0, 0, 1661, 1662, 1, 0, 0, 0, 1661, 1659, 1, 0, 0, 0, 1662, 1665, 1, 0, 0, 0, 1663, 1661, 1, 0, 0, 0, 1664, 1657, 1, 0, 0, 0, 1664, 1665, 1, 0, 0, 0, 1665, 1668, 1, 0, 0, 0, 1666, 1667, 5, 34, 0, 0, 1667, 1669, 3, 314, 157, 0, 1668, 1666, 1, 0, 0, 0, 1668, 1669, 1, 0, 0, 0, 1669, 1672, 1, 0, 0, 0, 1670, 1671, 5, 150, 0, 0, 1671, 1673, 5, 110, 0, 0, 1672, 1670, 1, 0, 0, 0, 1672, 1673, 1, 0, 0, 0, 1673, 219, 1, 0, 0, 0, 1674, 1676, 3, 212, 106, 0, 1675, 1674, 1, 0, 0, 0, 1675, 1676, 1, 0, 0, 0, 1676, 1684, 1, 0, 0, 0, 1677, 1681, 3, 224, 112, 0, 1678, 1680, 3, 224, 112, 0, 1679, 1678, 1, 0, 0, 0, 1680, 1683, 1, 0, 0, 0, 1681, 1682, 1, 0, 0, 0, 1681, 1679, 1, 0, 0, 0, 1682, 1685, 1, 0, 0, 0, 1683, 1681, 1, 0, 0, 0, 1684, 1677, 1, 0, 0, 0, 1684, 1685, 1, 0, 0, 0, 1685, 221, 1, 0, 0, 0, 1686, 1687, 3, 182, 91, 0, 1687, 1690, 3, 328, 164, 0, 1688, 1689, 5, 34, 0, 0, 1689, 1691, 3, 314, 157, 0, 1690, 1688, 1, 0, 0, 0, 1690, 1691, 1, 0, 0, 0, 1691, 1699, 1, 0, 0, 0, 1692, 1696, 3, 224, 112, 0, 1693, 1695, 3, 224, 112, 0, 1694, 1693, 1, 0, 0, 0, 1695, 1698, 1, 0, 0, 0, 1696, 1697, 1, 0, 0, 0, 1696, 1694, 1, 0, 0, 0, 1697, 1700, 1, 0, 0, 0, 1698, 1696, 1, 0, 0, 0, 1699, 1692, 1, 0, 0, 0, 1699, 1700, 1, 0, 0, 0, 1700, 223, 1, 0, 0, 0, 1701, 1703, 5, 132, 0, 0, 1702, 1701, 1, 0, 0, 0, 1702, 1703, 1, 0, 0, 0, 1703, 1704, 1, 0, 0, 0, 1704, 1707, 5, 133, 0, 0, 1705, 1707, 3, 226, 113, 0, 1706, 1702, 1, 0, 0, 0, 1706, 1705, 1, 0, 0, 0, 1707, 225, 1, 0, 0, 0, 1708, 1709, 5, 60, 0, 0, 1709, 1717, 3, 304, 152, 0, 1710, 1711, 5, 35, 0, 0, 1711, 1717, 3, 304, 152, 0, 1712, 1713, 5, 51, 0, 0, 1713, 1717, 3, 304, 152, 0, 1714, 1715, 5, 16, 0, 0, 1715, 1717, 3, 360, 180, 0, 1716, 1708, 1, 0, 0, 0, 1716, 1710, 1, 0, 0, 0, 1716, 1712, 1, 0, 0, 0, 1716, 1714, 1, 0, 0, 0, 1717, 227, 1, 0, 0, 0, 1718, 1719, 7, 10, 0, 0, 1719, 229, 1, 0, 0, 0, 1720, 1721, 7, 11, 0, 0, 1721, 231, 1, 0, 0, 0, 1722, 1727, 3, 234, 117, 0, 1723, 1724, 5, 263, 0, 0, 1724, 1726, 3, 234, 117, 0, 1725, 1723, 1, 0, 0, 0, 1726, 1729, 1, 0, 0, 0, 1727, 1728, 1, 0, 0, 0, 1727, 1725, 1, 0, 0, 0, 1728, 1732, 1, 0, 0, 0, 1729, 1727, 1, 0, 0, 0, 1730, 1731, 5, 263, 0, 0, 1731, 1733, 3, 236, 118, 0, 1732, 1730, 1, 0, 0, 0, 1732, 1733, 1, 0, 0, 0, 1733, 1736, 1, 0, 0, 0, 1734, 1736, 3, 236, 118, 0, 1735, 1722, 1, 0, 0, 0, 1735, 1734, 1, 0, 0, 0, 1736, 233, 1, 0, 0, 0, 1737, 1739, 5, 89, 0, 0, 1738, 1740, 3, 292, 146, 0, 1739, 1738, 1, 0, 0, 0, 1739, 1740, 1, 0, 0, 0, 1740, 1741, 1, 0, 0, 0, 1741, 1742, 5, 146, 0, 0, 1742, 1743, 3, 360, 180, 0, 1743, 235, 1, 0, 0, 0, 1744, 1746, 5, 154, 0, 0, 1745, 1747, 3, 292, 146, 0, 1746, 1745, 1, 0, 0, 0, 1746, 1747, 1, 0, 0, 0, 1747, 1748, 1, 0, 0, 0, 1748, 1749, 5, 265, 0, 0, 1749, 1750, 5, 145, 0, 0, 1750, 1756, 3, 238, 119, 0, 1751, 1752, 5, 263, 0, 0, 1752, 1753, 5, 145, 0, 0, 1753, 1755, 3, 238, 119, 0, 1754, 1751, 1, 0, 0, 0, 1755, 1758, 1, 0, 0, 0, 1756, 1757, 1, 0, 0, 0, 1756, 1754, 1, 0, 0, 0, 1757, 1759, 1, 0, 0, 0, 1758, 1756, 1, 0, 0, 0, 1759, 1760, 5, 266, 0, 0, 1760, 237, 1, 0, 0, 0, 1761, 1762, 5, 210, 0, 0, 1762, 1763, 3, 244, 122, 0, 1763, 1764, 3, 304, 152, 0, 1764, 1777, 1, 0, 0, 0, 1765, 1766, 3, 304, 152, 0, 1766, 1767, 3, 242, 121, 0, 1767, 1769, 1, 0, 0, 0, 1768, 1765, 1, 0, 0, 0, 1768, 1769, 1, 0, 0, 0, 1769, 1770, 1, 0, 0, 0, 1770, 1774, 5, 211, 0, 0, 1771, 1772, 3, 242, 121, 0, 1772, 1773, 3, 304, 152, 0, 1773, 1775, 1, 0, 0, 0, 1774, 1771, 1, 0, 0, 0, 1774, 1775, 1, 0, 0, 0, 1775, 1777, 1, 0, 0, 0, 1776, 1761, 1, 0, 0, 0, 1776, 1768, 1, 0, 0, 0, 1777, 239, 1, 0, 0, 0, 1778, 1779, 5, 30, 0, 0, 1779, 1780, 5, 94, 0, 0, 1780, 1785, 3, 358, 179, 0, 1781, 1782, 5, 216, 0, 0, 1782, 1783, 5, 151, 0, 0, 1783, 1784, 5, 249, 0, 0, 1784, 1786, 3, 360, 180, 0, 1785, 1781, 1, 0, 0, 0, 1785, 1786, 1, 0, 0, 0, 1786, 1789, 1, 0, 0, 0, 1787, 1789, 5, 197, 0, 0, 1788, 1778, 1, 0, 0, 0, 1788, 1787, 1, 0, 0, 0, 1789, 241, 1, 0, 0, 0, 1790, 1796, 1, 0, 0, 0, 1791, 1796, 5, 251, 0, 0, 1792, 1796, 5, 252, 0, 0, 1793, 1796, 5, 253, 0, 0, 1794, 1796, 5, 254, 0, 0, 1795, 1790, 1, 0, 0, 0, 1795, 1791, 1, 0, 0, 0, 1795, 1792, 1, 0, 0, 0, 1795, 1793, 1, 0, 0, 0, 1795, 1794, 1, 0, 0, 0, 1796, 243, 1, 0, 0, 0, 1797, 1806, 5, 249, 0, 0, 1798, 1806, 5, 250, 0, 0, 1799, 1806, 5, 115, 0, 0, 1800, 1806, 5, 164, 0, 0, 1801, 1806, 5, 163, 0, 0, 1802, 1806, 5, 15, 0, 0, 1803, 1806, 5, 94, 0, 0, 1804, 1806, 3, 242, 121, 0, 1805, 1797, 1, 0, 0, 0, 1805, 1798, 1, 0, 0, 0, 1805, 1799, 1, 0, 0, 0, 1805, 1800, 1, 0, 0, 0, 1805, 1801, 1, 0, 0, 0, 1805, 1802, 1, 0, 0, 0, 1805, 1803, 1, 0, 0, 0, 1805, 1804, 1, 0, 0, 0, 1806, 245, 1, 0, 0, 0, 1807, 1808, 5, 115, 0, 0, 1808, 1811, 3, 354, 177, 0, 1809, 1810, 7, 12, 0, 0, 1810, 1812, 5, 153, 0, 0, 1811, 1809, 1, 0, 0, 0, 1811, 1812, 1, 0, 0, 0, 1812, 247, 1, 0, 0, 0, 1813, 1814, 5, 265, 0, 0, 1814, 1819, 3, 256, 128, 0, 1815, 1816, 5, 263, 0, 0, 1816, 1818, 3, 256, 128, 0, 1817, 1815, 1, 0, 0, 0, 1818, 1821, 1, 0, 0, 0, 1819, 1817, 1, 0, 0, 0, 1819, 1820, 1, 0, 0, 0, 1820, 1822, 1, 0, 0, 0, 1821, 1819, 1, 0, 0, 0, 1822, 1823, 5, 266, 0, 0, 1823, 249, 1, 0, 0, 0, 1824, 1825, 5, 265, 0, 0, 1825, 1830, 3, 212, 106, 0, 1826, 1827, 5, 263, 0, 0, 1827, 1829, 3, 212, 106, 0, 1828, 1826, 1, 0, 0, 0, 1829, 1832, 1, 0, 0, 0, 1830, 1831, 1, 0, 0, 0, 1830, 1828, 1, 0, 0, 0, 1831, 1833, 1, 0, 0, 0, 1832, 1830, 1, 0, 0, 0, 1833, 1834, 5, 266, 0, 0, 1834, 251, 1, 0, 0, 0, 1835, 1840, 3, 304, 152, 0, 1836, 1837, 5, 263, 0, 0, 1837, 1839, 3, 304, 152, 0, 1838, 1836, 1, 0, 0, 0, 1839, 1842, 1, 0, 0, 0, 1840, 1838, 1, 0, 0, 0, 1840, 1841, 1, 0, 0, 0, 1841, 253, 1, 0, 0, 0, 1842, 1840, 1, 0, 0, 0, 1843, 1853, 5, 52, 0, 0, 1844, 1845, 5, 71, 0, 0, 1845, 1846, 5, 191, 0, 0, 1846, 1847, 5, 26, 0, 0, 1847, 1851, 3, 314, 157, 0, 1848, 1849, 5, 63, 0, 0, 1849, 1850, 5, 26, 0, 0, 1850, 1852, 3, 314, 157, 0, 1851, 1848, 1, 0, 0, 0, 1851, 1852, 1, 0, 0, 0, 1852, 1854, 1, 0, 0, 0, 1853, 1844, 1, 0, 0, 0, 1853, 1854, 1, 0, 0, 0, 1854, 1859, 1, 0, 0, 0, 1855, 1856, 5, 117, 0, 0, 1856, 1857, 5, 191, 0, 0, 1857, 1858, 5, 26, 0, 0, 1858, 1860, 3, 314, 157, 0, 1859, 1855, 1, 0, 0, 0, 1859, 1860, 1, 0, 0, 0, 1860, 255, 1, 0, 0, 0, 1861, 1864, 3, 358, 179, 0, 1862, 1863, 5, 249, 0, 0, 1863, 1865, 3, 304, 152, 0, 1864, 1862, 1, 0, 0, 0, 1864, 1865, 1, 0, 0, 0, 1865, 257, 1, 0, 0, 0, 1866, 1877, 3, 260, 130, 0, 1867, 1868, 5, 139, 0, 0, 1868, 1869, 5, 26, 0, 0, 1869, 1874, 3, 264, 132, 0, 1870, 1871, 5, 263, 0, 0, 1871, 1873, 3, 264, 132, 0, 1872, 1870, 1, 0, 0, 0, 1873, 1876, 1, 0, 0, 0, 1874, 1872, 1, 0, 0, 0, 1874, 1875, 1, 0, 0, 0, 1875, 1878, 1, 0, 0, 0, 1876, 1874, 1, 0, 0, 0, 1877, 1867, 1, 0, 0, 0, 1877, 1878, 1, 0, 0, 0, 1878, 1885, 1, 0, 0, 0, 1879, 1880, 5, 116, 0, 0, 1880, 1883, 3, 304, 152, 0, 1881, 1882, 5, 135, 0, 0, 1882, 1884, 5, 277, 0, 0, 1883, 1881, 1, 0, 0, 0, 1883, 1884, 1, 0, 0, 0, 1884, 1886, 1, 0, 0, 0, 1885, 1879, 1, 0, 0, 0, 1885, 1886, 1, 0, 0, 0, 1886, 259, 1, 0, 0, 0, 1887, 1888, 6, 130, -1, 0, 1888, 1889, 3, 262, 131, 0, 1889, 1904, 1, 0, 0, 0, 1890, 1891, 10, 2, 0, 0, 1891, 1893, 5, 100, 0, 0, 1892, 1894, 3, 276, 138, 0, 1893, 1892, 1, 0, 0, 0, 1893, 1894, 1, 0, 0, 0, 1894, 1895, 1, 0, 0, 0, 1895, 1903, 3, 260, 130, 3, 1896, 1897, 10, 1, 0, 0, 1897, 1899, 7, 13, 0, 0, 1898, 1900, 3, 276, 138, 0, 1899, 1898, 1, 0, 0, 0, 1899, 1900, 1, 0, 0, 0, 1900, 1901, 1, 0, 0, 0, 1901, 1903, 3, 260, 130, 2, 1902, 1890, 1, 0, 0, 0, 1902, 1896, 1, 0, 0, 0, 1903, 1906, 1, 0, 0, 0, 1904, 1902, 1, 0, 0, 0, 1904, 1905, 1, 0, 0, 0, 1905, 261, 1, 0, 0, 0, 1906, 1904, 1, 0, 0, 0, 1907, 1924, 3, 266, 133, 0, 1908, 1909, 5, 188, 0, 0, 1909, 1924, 3, 186, 93, 0, 1910, 1911, 5, 211, 0, 0, 1911, 1916, 3, 304, 152, 0, 1912, 1913, 5, 263, 0, 0, 1913, 1915, 3, 304, 152, 0, 1914, 1912, 1, 0, 0, 0, 1915, 1918, 1, 0, 0, 0, 1916, 1914, 1, 0, 0, 0, 1916, 1917, 1, 0, 0, 0, 1917, 1924, 1, 0, 0, 0, 1918, 1916, 1, 0, 0, 0, 1919, 1920, 5, 265, 0, 0, 1920, 1921, 3, 258, 129, 0, 1921, 1922, 5, 266, 0, 0, 1922, 1924, 1, 0, 0, 0, 1923, 1907, 1, 0, 0, 0, 1923, 1908, 1, 0, 0, 0, 1923, 1910, 1, 0, 0, 0, 1923, 1919, 1, 0, 0, 0, 1924, 263, 1, 0, 0, 0, 1925, 1927, 3, 302, 151, 0, 1926, 1928, 7, 14, 0, 0, 1927, 1926, 1, 0, 0, 0, 1927, 1928, 1, 0, 0, 0, 1928, 1931, 1, 0, 0, 0, 1929, 1930, 5, 134, 0, 0, 1930, 1932, 7, 15, 0, 0, 1931, 1929, 1, 0, 0, 0, 1931, 1932, 1, 0, 0, 0, 1932, 265, 1, 0, 0, 0, 1933, 1935, 5, 174, 0, 0, 1934, 1936, 3, 276, 138, 0, 1935, 1934, 1, 0, 0, 0, 1935, 1936, 1, 0, 0, 0, 1936, 1938, 1, 0, 0, 0, 1937, 1939, 5, 183, 0, 0, 1938, 1937, 1, 0, 0, 0, 1938, 1939, 1, 0, 0, 0, 1939, 1940, 1, 0, 0, 0, 1940, 1945, 3, 278, 139, 0, 1941, 1942, 5, 263, 0, 0, 1942, 1944, 3, 278, 139, 0, 1943, 1941, 1, 0, 0, 0, 1944, 1947, 1, 0, 0, 0, 1945, 1943, 1, 0, 0, 0, 1945, 1946, 1, 0, 0, 0, 1946, 1957, 1, 0, 0, 0, 1947, 1945, 1, 0, 0, 0, 1948, 1949, 5, 82, 0, 0, 1949, 1954, 3, 280, 140, 0, 1950, 1951, 5, 263, 0, 0, 1951, 1953, 3, 280, 140, 0, 1952, 1950, 1, 0, 0, 0, 1953, 1956, 1, 0, 0, 0, 1954, 1952, 1, 0, 0, 0, 1954, 1955, 1, 0, 0, 0, 1955, 1958, 1, 0, 0, 0, 1956, 1954, 1, 0, 0, 0, 1957, 1948, 1, 0, 0, 0, 1957, 1958, 1, 0, 0, 0, 1958, 1961, 1, 0, 0, 0, 1959, 1960, 5, 215, 0, 0, 1960, 1962, 3, 306, 153, 0, 1961, 1959, 1, 0, 0, 0, 1961, 1962, 1, 0, 0, 0, 1962, 1966, 1, 0, 0, 0, 1963, 1964, 5, 87, 0, 0, 1964, 1965, 5, 26, 0, 0, 1965, 1967, 3, 268, 134, 0, 1966, 1963, 1, 0, 0, 0, 1966, 1967, 1, 0, 0, 0, 1967, 1970, 1, 0, 0, 0, 1968, 1969, 5, 90, 0, 0, 1969, 1971, 3, 306, 153, 0, 1970, 1968, 1, 0, 0, 0, 1970, 1971, 1, 0, 0, 0, 1971, 267, 1, 0, 0, 0, 1972, 1974, 3, 276, 138, 0, 1973, 1972, 1, 0, 0, 0, 1973, 1974, 1, 0, 0, 0, 1974, 1975, 1, 0, 0, 0, 1975, 1980, 3, 270, 135, 0, 1976, 1977, 5, 263, 0, 0, 1977, 1979, 3, 270, 135, 0, 1978, 1976, 1, 0, 0, 0, 1979, 1982, 1, 0, 0, 0, 1980, 1978, 1, 0, 0, 0, 1980, 1981, 1, 0, 0, 0, 1981, 269, 1, 0, 0, 0, 1982, 1980, 1, 0, 0, 0, 1983, 1984, 3, 272, 136, 0, 1984, 271, 1, 0, 0, 0, 1985, 1994, 5, 265, 0, 0, 1986, 1991, 3, 302, 151, 0, 1987, 1988, 5, 263, 0, 0, 1988, 1990, 3, 302, 151, 0, 1989, 1987, 1, 0, 0, 0, 1990, 1993, 1, 0, 0, 0, 1991, 1989, 1, 0, 0, 0, 1991, 1992, 1, 0, 0, 0, 1992, 1995, 1, 0, 0, 0, 1993, 1991, 1, 0, 0, 0, 1994, 1986, 1, 0, 0, 0, 1994, 1995, 1, 0, 0, 0, 1995, 1996, 1, 0, 0, 0, 1996, 1999, 5, 266, 0, 0, 1997, 1999, 3, 302, 151, 0, 1998, 1985, 1, 0, 0, 0, 1998, 1997, 1, 0, 0, 0, 1999, 273, 1, 0, 0, 0, 2000, 2002, 3, 358, 179, 0, 2001, 2003, 3, 292, 146, 0, 2002, 2001, 1, 0, 0, 0, 2002, 2003, 1, 0, 0, 0, 2003, 2004, 1, 0, 0, 0, 2004, 2005, 5, 9, 0, 0, 2005, 2006, 3, 296, 148, 0, 2006, 275, 1, 0, 0, 0, 2007, 2008, 7, 16, 0, 0, 2008, 277, 1, 0, 0, 0, 2009, 2014, 3, 302, 151, 0, 2010, 2012, 5, 9, 0, 0, 2011, 2010, 1, 0, 0, 0, 2011, 2012, 1, 0, 0, 0, 2012, 2013, 1, 0, 0, 0, 2013, 2015, 3, 358, 179, 0, 2014, 2011, 1, 0, 0, 0, 2014, 2015, 1, 0, 0, 0, 2015, 2022, 1, 0, 0, 0, 2016, 2017, 3, 354, 177, 0, 2017, 2018, 5, 261, 0, 0, 2018, 2019, 5, 257, 0, 0, 2019, 2022, 1, 0, 0, 0, 2020, 2022, 5, 257, 0, 0, 2021, 2009, 1, 0, 0, 0, 2021, 2016, 1, 0, 0, 0, 2021, 2020, 1, 0, 0, 0, 2022, 279, 1, 0, 0, 0, 2023, 2024, 6, 140, -1, 0, 2024, 2025, 3, 286, 143, 0, 2025, 2039, 1, 0, 0, 0, 2026, 2035, 10, 2, 0, 0, 2027, 2028, 5, 38, 0, 0, 2028, 2029, 5, 109, 0, 0, 2029, 2036, 3, 286, 143, 0, 2030, 2031, 3, 282, 141, 0, 2031, 2032, 5, 109, 0, 0, 2032, 2033, 3, 280, 140, 0, 2033, 2034, 3, 284, 142, 0, 2034, 2036, 1, 0, 0, 0, 2035, 2027, 1, 0, 0, 0, 2035, 2030, 1, 0, 0, 0, 2036, 2038, 1, 0, 0, 0, 2037, 2026, 1, 0, 0, 0, 2038, 2041, 1, 0, 0, 0, 2039, 2037, 1, 0, 0, 0, 2039, 2040, 1, 0, 0, 0, 2040, 281, 1, 0, 0, 0, 2041, 2039, 1, 0, 0, 0, 2042, 2044, 5, 97, 0, 0, 2043, 2042, 1, 0, 0, 0, 2043, 2044, 1, 0, 0, 0, 2044, 2074, 1, 0, 0, 0, 2045, 2047, 5, 114, 0, 0, 2046, 2048, 5, 97, 0, 0, 2047, 2046, 1, 0, 0, 0, 2047, 2048, 1, 0, 0, 0, 2048, 2074, 1, 0, 0, 0, 2049, 2051, 5, 165, 0, 0, 2050, 2052, 5, 97, 0, 0, 2051, 2050, 1, 0, 0, 0, 2051, 2052, 1, 0, 0, 0, 2052, 2074, 1, 0, 0, 0, 2053, 2055, 5, 114, 0, 0, 2054, 2056, 5, 141, 0, 0, 2055, 2054, 1, 0, 0, 0, 2055, 2056, 1, 0, 0, 0, 2056, 2074, 1, 0, 0, 0, 2057, 2059, 5, 165, 0, 0, 2058, 2060, 5, 141, 0, 0, 2059, 2058, 1, 0, 0, 0, 2059, 2060, 1, 0, 0, 0, 2060, 2074, 1, 0, 0, 0, 2061, 2063, 5, 83, 0, 0, 2062, 2064, 5, 141, 0, 0, 2063, 2062, 1, 0, 0, 0, 2063, 2064, 1, 0, 0, 0, 2064, 2074, 1, 0, 0, 0, 2065, 2066, 5, 114, 0, 0, 2066, 2074, 5, 177, 0, 0, 2067, 2068, 5, 165, 0, 0, 2068, 2074, 5, 177, 0, 0, 2069, 2070, 5, 114, 0, 0, 2070, 2074, 5, 7, 0, 0, 2071, 2072, 5, 165, 0, 0, 2072, 2074, 5, 7, 0, 0, 2073, 2043, 1, 0, 0, 0, 2073, 2045, 1, 0, 0, 0, 2073, 2049, 1, 0, 0, 0, 2073, 2053, 1, 0, 0, 0, 2073, 2057, 1, 0, 0, 0, 2073, 2061, 1, 0, 0, 0, 2073, 2065, 1, 0, 0, 0, 2073, 2067, 1, 0, 0, 0, 2073, 2069, 1, 0, 0, 0, 2073, 2071, 1, 0, 0, 0, 2074, 283, 1, 0, 0, 0, 2075, 2076, 5, 136, 0, 0, 2076, 2090, 3, 306, 153, 0, 2077, 2078, 5, 205, 0, 0, 2078, 2079, 5, 265, 0, 0, 2079, 2084, 3, 358, 179, 0, 2080, 2081, 5, 263, 0, 0, 2081, 2083, 3, 358, 179, 0, 2082, 2080, 1, 0, 0, 0, 2083, 2086, 1, 0, 0, 0, 2084, 2082, 1, 0, 0, 0, 2084, 2085, 1, 0, 0, 0, 2085, 2087, 1, 0, 0, 0, 2086, 2084, 1, 0, 0, 0, 2087, 2088, 5, 266, 0, 0, 2088, 2090, 1, 0, 0, 0, 2089, 2075, 1, 0, 0, 0, 2089, 2077, 1, 0, 0, 0, 2090, 285, 1, 0, 0, 0, 2091, 2104, 3, 290, 145, 0, 2092, 2093, 5, 190, 0, 0, 2093, 2094, 3, 288, 144, 0, 2094, 2095, 5, 265, 0, 0, 2095, 2096, 3, 304, 152, 0, 2096, 2102, 5, 266, 0, 0, 2097, 2098, 5, 157, 0, 0, 2098, 2099, 5, 265, 0, 0, 2099, 2100, 3, 304, 152, 0, 2100, 2101, 5, 266, 0, 0, 2101, 2103, 1, 0, 0, 0, 2102, 2097, 1, 0, 0, 0, 2102, 2103, 1, 0, 0, 0, 2103, 2105, 1, 0, 0, 0, 2104, 2092, 1, 0, 0, 0, 2104, 2105, 1, 0, 0, 0, 2105, 287, 1, 0, 0, 0, 2106, 2107, 7, 17, 0, 0, 2107, 289, 1, 0, 0, 0, 2108, 2116, 3, 294, 147, 0, 2109, 2111, 5, 9, 0, 0, 2110, 2109, 1, 0, 0, 0, 2110, 2111, 1, 0, 0, 0, 2111, 2112, 1, 0, 0, 0, 2112, 2114, 3, 358, 179, 0, 2113, 2115, 3, 292, 146, 0, 2114, 2113, 1, 0, 0, 0, 2114, 2115, 1, 0, 0, 0, 2115, 2117, 1, 0, 0, 0, 2116, 2110, 1, 0, 0, 0, 2116, 2117, 1, 0, 0, 0, 2117, 291, 1, 0, 0, 0, 2118, 2119, 5, 265, 0, 0, 2119, 2124, 3, 192, 96, 0, 2120, 2121, 5, 263, 0, 0, 2121, 2123, 3, 192, 96, 0, 2122, 2120, 1, 0, 0, 0, 2123, 2126, 1, 0, 0, 0, 2124, 2122, 1, 0, 0, 0, 2124, 2125, 1, 0, 0, 0, 2125, 2127, 1, 0, 0, 0, 2126, 2124, 1, 0, 0, 0, 2127, 2128, 5, 266, 0, 0, 2128, 293, 1, 0, 0, 0, 2129, 2137, 3, 194, 97, 0, 2130, 2132, 5, 113, 0, 0, 2131, 2130, 1, 0, 0, 0, 2131, 2132, 1, 0, 0, 0, 2132, 2133, 1, 0, 0, 0, 2133, 2137, 3, 296, 148, 0, 2134, 2137, 3, 298, 149, 0, 2135, 2137, 3, 300, 150, 0, 2136, 2129, 1, 0, 0, 0, 2136, 2131, 1, 0, 0, 0, 2136, 2134, 1, 0, 0, 0, 2136, 2135, 1, 0, 0, 0, 2137, 295, 1, 0, 0, 0, 2138, 2139, 5, 265, 0, 0, 2139, 2140, 3, 204, 102, 0, 2140, 2141, 5, 266, 0, 0, 2141, 297, 1, 0, 0, 0, 2142, 2143, 5, 201, 0, 0, 2143, 2144, 5, 265, 0, 0, 2144, 2149, 3, 304, 152, 0, 2145, 2146, 5, 263, 0, 0, 2146, 2148, 3, 304, 152, 0, 2147, 2145, 1, 0, 0, 0, 2148, 2151, 1, 0, 0, 0, 2149, 2147, 1, 0, 0, 0, 2149, 2150, 1, 0, 0, 0, 2150, 2152, 1, 0, 0, 0, 2151, 2149, 1, 0, 0, 0, 2152, 2155, 5, 266, 0, 0, 2153, 2154, 5, 216, 0, 0, 2154, 2156, 5, 140, 0, 0, 2155, 2153, 1, 0, 0, 0, 2155, 2156, 1, 0, 0, 0, 2156, 299, 1, 0, 0, 0, 2157, 2158, 5, 265, 0, 0, 2158, 2159, 3, 280, 140, 0, 2159, 2160, 5, 266, 0, 0, 2160, 301, 1, 0, 0, 0, 2161, 2164, 3, 192, 96, 0, 2162, 2164, 3, 304, 152, 0, 2163, 2161, 1, 0, 0, 0, 2163, 2162, 1, 0, 0, 0, 2164, 303, 1, 0, 0, 0, 2165, 2166, 3, 306, 153, 0, 2166, 305, 1, 0, 0, 0, 2167, 2168, 6, 153, -1, 0, 2168, 2170, 3, 310, 155, 0, 2169, 2171, 3, 308, 154, 0, 2170, 2169, 1, 0, 0, 0, 2170, 2171, 1, 0, 0, 0, 2171, 2175, 1, 0, 0, 0, 2172, 2173, 5, 132, 0, 0, 2173, 2175, 3, 306, 153, 3, 2174, 2167, 1, 0, 0, 0, 2174, 2172, 1, 0, 0, 0, 2175, 2184, 1, 0, 0, 0, 2176, 2177, 10, 2, 0, 0, 2177, 2178, 5, 5, 0, 0, 2178, 2183, 3, 306, 153, 3, 2179, 2180, 10, 1, 0, 0, 2180, 2181, 5, 138, 0, 0, 2181, 2183, 3, 306, 153, 2, 2182, 2176, 1, 0, 0, 0, 2182, 2179, 1, 0, 0, 0, 2183, 2186, 1, 0, 0, 0, 2184, 2182, 1, 0, 0, 0, 2184, 2185, 1, 0, 0, 0, 2185, 307, 1, 0, 0, 0, 2186, 2184, 1, 0, 0, 0, 2187, 2188, 3, 316, 158, 0, 2188, 2189, 3, 310, 155, 0, 2189, 2246, 1, 0, 0, 0, 2190, 2191, 3, 316, 158, 0, 2191, 2192, 3, 318, 159, 0, 2192, 2193, 3, 296, 148, 0, 2193, 2246, 1, 0, 0, 0, 2194, 2196, 5, 132, 0, 0, 2195, 2194, 1, 0, 0, 0, 2195, 2196, 1, 0, 0, 0, 2196, 2197, 1, 0, 0, 0, 2197, 2198, 5, 15, 0, 0, 2198, 2199, 3, 310, 155, 0, 2199, 2200, 5, 5, 0, 0, 2200, 2201, 3, 310, 155, 0, 2201, 2246, 1, 0, 0, 0, 2202, 2204, 5, 132, 0, 0, 2203, 2202, 1, 0, 0, 0, 2203, 2204, 1, 0, 0, 0, 2204, 2205, 1, 0, 0, 0, 2205, 2206, 5, 94, 0, 0, 2206, 2207, 5, 265, 0, 0, 2207, 2212, 3, 304, 152, 0, 2208, 2209, 5, 263, 0, 0, 2209, 2211, 3, 304, 152, 0, 2210, 2208, 1, 0, 0, 0, 2211, 2214, 1, 0, 0, 0, 2212, 2210, 1, 0, 0, 0, 2212, 2213, 1, 0, 0, 0, 2213, 2215, 1, 0, 0, 0, 2214, 2212, 1, 0, 0, 0, 2215, 2216, 5, 266, 0, 0, 2216, 2246, 1, 0, 0, 0, 2217, 2219, 5, 132, 0, 0, 2218, 2217, 1, 0, 0, 0, 2218, 2219, 1, 0, 0, 0, 2219, 2220, 1, 0, 0, 0, 2220, 2221, 5, 94, 0, 0, 2221, 2246, 3, 296, 148, 0, 2222, 2224, 5, 132, 0, 0, 2223, 2222, 1, 0, 0, 0, 2223, 2224, 1, 0, 0, 0, 2224, 2225, 1, 0, 0, 0, 2225, 2226, 7, 18, 0, 0, 2226, 2229, 3, 310, 155, 0, 2227, 2228, 5, 62, 0, 0, 2228, 2230, 3, 310, 155, 0, 2229, 2227, 1, 0, 0, 0, 2229, 2230, 1, 0, 0, 0, 2230, 2246, 1, 0, 0, 0, 2231, 2232, 7, 19, 0, 0, 2232, 2246, 3, 310, 155, 0, 2233, 2235, 5, 108, 0, 0, 2234, 2236, 5, 132, 0, 0, 2235, 2234, 1, 0, 0, 0, 2235, 2236, 1, 0, 0, 0, 2236, 2237, 1, 0, 0, 0, 2237, 2246, 7, 20, 0, 0, 2238, 2240, 5, 108, 0, 0, 2239, 2241, 5, 132, 0, 0, 2240, 2239, 1, 0, 0, 0, 2240, 2241, 1, 0, 0, 0, 2241, 2242, 1, 0, 0, 0, 2242, 2243, 5, 57, 0, 0, 2243, 2244, 5, 82, 0, 0, 2244, 2246, 3, 310, 155, 0, 2245, 2187, 1, 0, 0, 0, 2245, 2190, 1, 0, 0, 0, 2245, 2195, 1, 0, 0, 0, 2245, 2203, 1, 0, 0, 0, 2245, 2218, 1, 0, 0, 0, 2245, 2223, 1, 0, 0, 0, 2245, 2231, 1, 0, 0, 0, 2245, 2233, 1, 0, 0, 0, 2245, 2238, 1, 0, 0, 0, 2246, 309, 1, 0, 0, 0, 2247, 2248, 6, 155, -1, 0, 2248, 2252, 3, 312, 156, 0, 2249, 2250, 7, 21, 0, 0, 2250, 2252, 3, 310, 155, 4, 2251, 2247, 1, 0, 0, 0, 2251, 2249, 1, 0, 0, 0, 2252, 2264, 1, 0, 0, 0, 2253, 2254, 10, 3, 0, 0, 2254, 2255, 7, 22, 0, 0, 2255, 2263, 3, 310, 155, 4, 2256, 2257, 10, 2, 0, 0, 2257, 2258, 7, 21, 0, 0, 2258, 2263, 3, 310, 155, 3, 2259, 2260, 10, 1, 0, 0, 2260, 2261, 5, 260, 0, 0, 2261, 2263, 3, 310, 155, 2, 2262, 2253, 1, 0, 0, 0, 2262, 2256, 1, 0, 0, 0, 2262, 2259, 1, 0, 0, 0, 2263, 2266, 1, 0, 0, 0, 2264, 2262, 1, 0, 0, 0, 2264, 2265, 1, 0, 0, 0, 2265, 311, 1, 0, 0, 0, 2266, 2264, 1, 0, 0, 0, 2267, 2268, 6, 156, -1, 0, 2268, 2514, 5, 133, 0, 0, 2269, 2514, 3, 322, 161, 0, 2270, 2271, 3, 358, 179, 0, 2271, 2272, 3, 314, 157, 0, 2272, 2514, 1, 0, 0, 0, 2273, 2274, 5, 286, 0, 0, 2274, 2514, 3, 314, 157, 0, 2275, 2514, 3, 360, 180, 0, 2276, 2514, 3, 320, 160, 0, 2277, 2514, 3, 314, 157, 0, 2278, 2514, 5, 276, 0, 0, 2279, 2514, 5, 272, 0, 0, 2280, 2281, 5, 148, 0, 0, 2281, 2282, 5, 265, 0, 0, 2282, 2283, 3, 310, 155, 0, 2283, 2284, 5, 94, 0, 0, 2284, 2285, 3, 310, 155, 0, 2285, 2286, 5, 266, 0, 0, 2286, 2514, 1, 0, 0, 0, 2287, 2288, 5, 265, 0, 0, 2288, 2291, 3, 304, 152, 0, 2289, 2290, 5, 9, 0, 0, 2290, 2292, 3, 328, 164, 0, 2291, 2289, 1, 0, 0, 0, 2291, 2292, 1, 0, 0, 0, 2292, 2301, 1, 0, 0, 0, 2293, 2294, 5, 263, 0, 0, 2294, 2297, 3, 304, 152, 0, 2295, 2296, 5, 9, 0, 0, 2296, 2298, 3, 328, 164, 0, 2297, 2295, 1, 0, 0, 0, 2297, 2298, 1, 0, 0, 0, 2298, 2300, 1, 0, 0, 0, 2299, 2293, 1, 0, 0, 0, 2300, 2303, 1, 0, 0, 0, 2301, 2302, 1, 0, 0, 0, 2301, 2299, 1, 0, 0, 0, 2302, 2304, 1, 0, 0, 0, 2303, 2301, 1, 0, 0, 0, 2304, 2305, 5, 266, 0, 0, 2305, 2514, 1, 0, 0, 0, 2306, 2307, 5, 168, 0, 0, 2307, 2308, 5, 265, 0, 0, 2308, 2313, 3, 304, 152, 0, 2309, 2310, 5, 263, 0, 0, 2310, 2312, 3, 304, 152, 0, 2311, 2309, 1, 0, 0, 0, 2312, 2315, 1, 0, 0, 0, 2313, 2311, 1, 0, 0, 0, 2313, 2314, 1, 0, 0, 0, 2314, 2316, 1, 0, 0, 0, 2315, 2313, 1, 0, 0, 0, 2316, 2317, 5, 266, 0, 0, 2317, 2514, 1, 0, 0, 0, 2318, 2319, 3, 190, 95, 0, 2319, 2320, 5, 265, 0, 0, 2320, 2321, 5, 257, 0, 0, 2321, 2323, 5, 266, 0, 0, 2322, 2324, 3, 338, 169, 0, 2323, 2322, 1, 0, 0, 0, 2323, 2324, 1, 0, 0, 0, 2324, 2326, 1, 0, 0, 0, 2325, 2327, 3, 340, 170, 0, 2326, 2325, 1, 0, 0, 0, 2326, 2327, 1, 0, 0, 0, 2327, 2514, 1, 0, 0, 0, 2328, 2329, 3, 190, 95, 0, 2329, 2341, 5, 265, 0, 0, 2330, 2332, 3, 276, 138, 0, 2331, 2330, 1, 0, 0, 0, 2331, 2332, 1, 0, 0, 0, 2332, 2333, 1, 0, 0, 0, 2333, 2338, 3, 304, 152, 0, 2334, 2335, 5, 263, 0, 0, 2335, 2337, 3, 304, 152, 0, 2336, 2334, 1, 0, 0, 0, 2337, 2340, 1, 0, 0, 0, 2338, 2336, 1, 0, 0, 0, 2338, 2339, 1, 0, 0, 0, 2339, 2342, 1, 0, 0, 0, 2340, 2338, 1, 0, 0, 0, 2341, 2331, 1, 0, 0, 0, 2341, 2342, 1, 0, 0, 0, 2342, 2353, 1, 0, 0, 0, 2343, 2344, 5, 139, 0, 0, 2344, 2345, 5, 26, 0, 0, 2345, 2350, 3, 264, 132, 0, 2346, 2347, 5, 263, 0, 0, 2347, 2349, 3, 264, 132, 0, 2348, 2346, 1, 0, 0, 0, 2349, 2352, 1, 0, 0, 0, 2350, 2348, 1, 0, 0, 0, 2350, 2351, 1, 0, 0, 0, 2351, 2354, 1, 0, 0, 0, 2352, 2350, 1, 0, 0, 0, 2353, 2343, 1, 0, 0, 0, 2353, 2354, 1, 0, 0, 0, 2354, 2355, 1, 0, 0, 0, 2355, 2357, 5, 266, 0, 0, 2356, 2358, 3, 338, 169, 0, 2357, 2356, 1, 0, 0, 0, 2357, 2358, 1, 0, 0, 0, 2358, 2360, 1, 0, 0, 0, 2359, 2361, 3, 340, 170, 0, 2360, 2359, 1, 0, 0, 0, 2360, 2361, 1, 0, 0, 0, 2361, 2514, 1, 0, 0, 0, 2362, 2363, 3, 358, 179, 0, 2363, 2364, 5, 273, 0, 0, 2364, 2365, 3, 304, 152, 0, 2365, 2514, 1, 0, 0, 0, 2366, 2375, 5, 265, 0, 0, 2367, 2372, 3, 358, 179, 0, 2368, 2369, 5, 263, 0, 0, 2369, 2371, 3, 358, 179, 0, 2370, 2368, 1, 0, 0, 0, 2371, 2374, 1, 0, 0, 0, 2372, 2370, 1, 0, 0, 0, 2372, 2373, 1, 0, 0, 0, 2373, 2376, 1, 0, 0, 0, 2374, 2372, 1, 0, 0, 0, 2375, 2367, 1, 0, 0, 0, 2375, 2376, 1, 0, 0, 0, 2376, 2377, 1, 0, 0, 0, 2377, 2378, 5, 266, 0, 0, 2378, 2379, 5, 273, 0, 0, 2379, 2514, 3, 304, 152, 0, 2380, 2381, 5, 265, 0, 0, 2381, 2382, 3, 204, 102, 0, 2382, 2383, 5, 266, 0, 0, 2383, 2514, 1, 0, 0, 0, 2384, 2385, 5, 66, 0, 0, 2385, 2386, 5, 265, 0, 0, 2386, 2387, 3, 204, 102, 0, 2387, 2388, 5, 266, 0, 0, 2388, 2514, 1, 0, 0, 0, 2389, 2390, 5, 28, 0, 0, 2390, 2392, 3, 310, 155, 0, 2391, 2393, 3, 336, 168, 0, 2392, 2391, 1, 0, 0, 0, 2393, 2394, 1, 0, 0, 0, 2394, 2392, 1, 0, 0, 0, 2394, 2395, 1, 0, 0, 0, 2395, 2398, 1, 0, 0, 0, 2396, 2397, 5, 59, 0, 0, 2397, 2399, 3, 304, 152, 0, 2398, 2396, 1, 0, 0, 0, 2398, 2399, 1, 0, 0, 0, 2399, 2400, 1, 0, 0, 0, 2400, 2401, 5, 61, 0, 0, 2401, 2514, 1, 0, 0, 0, 2402, 2404, 5, 28, 0, 0, 2403, 2405, 3, 336, 168, 0, 2404, 2403, 1, 0, 0, 0, 2405, 2406, 1, 0, 0, 0, 2406, 2404, 1, 0, 0, 0, 2406, 2407, 1, 0, 0, 0, 2407, 2410, 1, 0, 0, 0, 2408, 2409, 5, 59, 0, 0, 2409, 2411, 3, 304, 152, 0, 2410, 2408, 1, 0, 0, 0, 2410, 2411, 1, 0, 0, 0, 2411, 2412, 1, 0, 0, 0, 2412, 2413, 5, 61, 0, 0, 2413, 2514, 1, 0, 0, 0, 2414, 2415, 5, 29, 0, 0, 2415, 2416, 5, 265, 0, 0, 2416, 2417, 3, 304, 152, 0, 2417, 2418, 5, 9, 0, 0, 2418, 2419, 3, 328, 164, 0, 2419, 2420, 5, 266, 0, 0, 2420, 2514, 1, 0, 0, 0, 2421, 2422, 5, 195, 0, 0, 2422, 2423, 5, 265, 0, 0, 2423, 2424, 3, 304, 152, 0, 2424, 2425, 5, 9, 0, 0, 2425, 2426, 3, 328, 164, 0, 2426, 2427, 5, 266, 0, 0, 2427, 2514, 1, 0, 0, 0, 2428, 2429, 5, 8, 0, 0, 2429, 2438, 5, 267, 0, 0, 2430, 2435, 3, 304, 152, 0, 2431, 2432, 5, 263, 0, 0, 2432, 2434, 3, 304, 152, 0, 2433, 2431, 1, 0, 0, 0, 2434, 2437, 1, 0, 0, 0, 2435, 2433, 1, 0, 0, 0, 2435, 2436, 1, 0, 0, 0, 2436, 2439, 1, 0, 0, 0, 2437, 2435, 1, 0, 0, 0, 2438, 2430, 1, 0, 0, 0, 2438, 2439, 1, 0, 0, 0, 2439, 2440, 1, 0, 0, 0, 2440, 2514, 5, 268, 0, 0, 2441, 2514, 3, 358, 179, 0, 2442, 2514, 5, 40, 0, 0, 2443, 2447, 5, 42, 0, 0, 2444, 2445, 5, 265, 0, 0, 2445, 2446, 5, 277, 0, 0, 2446, 2448, 5, 266, 0, 0, 2447, 2444, 1, 0, 0, 0, 2447, 2448, 1, 0, 0, 0, 2448, 2514, 1, 0, 0, 0, 2449, 2453, 5, 43, 0, 0, 2450, 2451, 5, 265, 0, 0, 2451, 2452, 5, 277, 0, 0, 2452, 2454, 5, 266, 0, 0, 2453, 2450, 1, 0, 0, 0, 2453, 2454, 1, 0, 0, 0, 2454, 2514, 1, 0, 0, 0, 2455, 2459, 5, 119, 0, 0, 2456, 2457, 5, 265, 0, 0, 2457, 2458, 5, 277, 0, 0, 2458, 2460, 5, 266, 0, 0, 2459, 2456, 1, 0, 0, 0, 2459, 2460, 1, 0, 0, 0, 2460, 2514, 1, 0, 0, 0, 2461, 2465, 5, 120, 0, 0, 2462, 2463, 5, 265, 0, 0, 2463, 2464, 5, 277, 0, 0, 2464, 2466, 5, 266, 0, 0, 2465, 2462, 1, 0, 0, 0, 2465, 2466, 1, 0, 0, 0, 2466, 2514, 1, 0, 0, 0, 2467, 2514, 5, 44, 0, 0, 2468, 2514, 5, 41, 0, 0, 2469, 2470, 5, 184, 0, 0, 2470, 2471, 5, 265, 0, 0, 2471, 2472, 3, 310, 155, 0, 2472, 2473, 5, 82, 0, 0, 2473, 2476, 3, 310, 155, 0, 2474, 2475, 5, 78, 0, 0, 2475, 2477, 3, 310, 155, 0, 2476, 2474, 1, 0, 0, 0, 2476, 2477, 1, 0, 0, 0, 2477, 2478, 1, 0, 0, 0, 2478, 2479, 5, 266, 0, 0, 2479, 2514, 1, 0, 0, 0, 2480, 2481, 5, 131, 0, 0, 2481, 2482, 5, 265, 0, 0, 2482, 2485, 3, 310, 155, 0, 2483, 2484, 5, 263, 0, 0, 2484, 2486, 3, 326, 163, 0, 2485, 2483, 1, 0, 0, 0, 2485, 2486, 1, 0, 0, 0, 2486, 2487, 1, 0, 0, 0, 2487, 2488, 5, 266, 0, 0, 2488, 2514, 1, 0, 0, 0, 2489, 2490, 5, 68, 0, 0, 2490, 2491, 5, 265, 0, 0, 2491, 2492, 3, 358, 179, 0, 2492, 2493, 5, 82, 0, 0, 2493, 2494, 3, 310, 155, 0, 2494, 2495, 5, 266, 0, 0, 2495, 2514, 1, 0, 0, 0, 2496, 2497, 5, 265, 0, 0, 2497, 2498, 3, 304, 152, 0, 2498, 2499, 5, 266, 0, 0, 2499, 2514, 1, 0, 0, 0, 2500, 2501, 5, 88, 0, 0, 2501, 2510, 5, 265, 0, 0, 2502, 2507, 3, 354, 177, 0, 2503, 2504, 5, 263, 0, 0, 2504, 2506, 3, 354, 177, 0, 2505, 2503, 1, 0, 0, 0, 2506, 2509, 1, 0, 0, 0, 2507, 2505, 1, 0, 0, 0, 2507, 2508, 1, 0, 0, 0, 2508, 2511, 1, 0, 0, 0, 2509, 2507, 1, 0, 0, 0, 2510, 2502, 1, 0, 0, 0, 2510, 2511, 1, 0, 0, 0, 2511, 2512, 1, 0, 0, 0, 2512, 2514, 5, 266, 0, 0, 2513, 2267, 1, 0, 0, 0, 2513, 2269, 1, 0, 0, 0, 2513, 2270, 1, 0, 0, 0, 2513, 2273, 1, 0, 0, 0, 2513, 2275, 1, 0, 0, 0, 2513, 2276, 1, 0, 0, 0, 2513, 2277, 1, 0, 0, 0, 2513, 2278, 1, 0, 0, 0, 2513, 2279, 1, 0, 0, 0, 2513, 2280, 1, 0, 0, 0, 2513, 2287, 1, 0, 0, 0, 2513, 2306, 1, 0, 0, 0, 2513, 2318, 1, 0, 0, 0, 2513, 2328, 1, 0, 0, 0, 2513, 2362, 1, 0, 0, 0, 2513, 2366, 1, 0, 0, 0, 2513, 2380, 1, 0, 0, 0, 2513, 2384, 1, 0, 0, 0, 2513, 2389, 1, 0, 0, 0, 2513, 2402, 1, 0, 0, 0, 2513, 2414, 1, 0, 0, 0, 2513, 2421, 1, 0, 0, 0, 2513, 2428, 1, 0, 0, 0, 2513, 2441, 1, 0, 0, 0, 2513, 2442, 1, 0, 0, 0, 2513, 2443, 1, 0, 0, 0, 2513, 2449, 1, 0, 0, 0, 2513, 2455, 1, 0, 0, 0, 2513, 2461, 1, 0, 0, 0, 2513, 2467, 1, 0, 0, 0, 2513, 2468, 1, 0, 0, 0, 2513, 2469, 1, 0, 0, 0, 2513, 2480, 1, 0, 0, 0, 2513, 2489, 1, 0, 0, 0, 2513, 2496, 1, 0, 0, 0, 2513, 2500, 1, 0, 0, 0, 2514, 2525, 1, 0, 0, 0, 2515, 2516, 10, 15, 0, 0, 2516, 2517, 5, 267, 0, 0, 2517, 2518, 3, 310, 155, 0, 2518, 2519, 5, 268, 0, 0, 2519, 2524, 1, 0, 0, 0, 2520, 2521, 10, 13, 0, 0, 2521, 2522, 5, 261, 0, 0, 2522, 2524, 3, 358, 179, 0, 2523, 2515, 1, 0, 0, 0, 2523, 2520, 1, 0, 0, 0, 2524, 2527, 1, 0, 0, 0, 2525, 2523, 1, 0, 0, 0, 2525, 2526, 1, 0, 0, 0, 2526, 313, 1, 0, 0, 0, 2527, 2525, 1, 0, 0, 0, 2528, 2535, 5, 274, 0, 0, 2529, 2532, 5, 275, 0, 0, 2530, 2531, 5, 198, 0, 0, 2531, 2533, 5, 274, 0, 0, 2532, 2530, 1, 0, 0, 0, 2532, 2533, 1, 0, 0, 0, 2533, 2535, 1, 0, 0, 0, 2534, 2528, 1, 0, 0, 0, 2534, 2529, 1, 0, 0, 0, 2535, 315, 1, 0, 0, 0, 2536, 2537, 7, 23, 0, 0, 2537, 317, 1, 0, 0, 0, 2538, 2539, 7, 24, 0, 0, 2539, 319, 1, 0, 0, 0, 2540, 2541, 7, 25, 0, 0, 2541, 321, 1, 0, 0, 0, 2542, 2543, 5, 277, 0, 0, 2543, 2557, 3, 324, 162, 0, 2544, 2545, 5, 265, 0, 0, 2545, 2546, 5, 277, 0, 0, 2546, 2547, 5, 266, 0, 0, 2547, 2557, 3, 324, 162, 0, 2548, 2549, 5, 101, 0, 0, 2549, 2550, 5, 277, 0, 0, 2550, 2557, 3, 324, 162, 0, 2551, 2552, 5, 101, 0, 0, 2552, 2553, 5, 265, 0, 0, 2553, 2554, 5, 277, 0, 0, 2554, 2555, 5, 266, 0, 0, 2555, 2557, 3, 324, 162, 0, 2556, 2542, 1, 0, 0, 0, 2556, 2544, 1, 0, 0, 0, 2556, 2548, 1, 0, 0, 0, 2556, 2551, 1, 0, 0, 0, 2557, 323, 1, 0, 0, 0, 2558, 2559, 7, 26, 0, 0, 2559, 325, 1, 0, 0, 0, 2560, 2561, 7, 27, 0, 0, 2561, 327, 1, 0, 0, 0, 2562, 2563, 6, 164, -1, 0, 2563, 2564, 5, 8, 0, 0, 2564, 2565, 5, 251, 0, 0, 2565, 2566, 3, 328, 164, 0, 2566, 2567, 5, 253, 0, 0, 2567, 2608, 1, 0, 0, 0, 2568, 2569, 5, 235, 0, 0, 2569, 2570, 5, 251, 0, 0, 2570, 2571, 3, 328, 164, 0, 2571, 2572, 5, 263, 0, 0, 2572, 2573, 3, 328, 164, 0, 2573, 2574, 5, 253, 0, 0, 2574, 2608, 1, 0, 0, 0, 2575, 2576, 5, 240, 0, 0, 2576, 2577, 5, 251, 0, 0, 2577, 2578, 3, 358, 179, 0, 2578, 2585, 3, 328, 164, 0, 2579, 2580, 5, 263, 0, 0, 2580, 2581, 3, 358, 179, 0, 2581, 2582, 3, 328, 164, 0, 2582, 2584, 1, 0, 0, 0, 2583, 2579, 1, 0, 0, 0, 2584, 2587, 1, 0, 0, 0, 2585, 2583, 1, 0, 0, 0, 2585, 2586, 1, 0, 0, 0, 2586, 2588, 1, 0, 0, 0, 2587, 2585, 1, 0, 0, 0, 2588, 2589, 5, 253, 0, 0, 2589, 2608, 1, 0, 0, 0, 2590, 2593, 3, 334, 167, 0, 2591, 2593, 3, 330, 165, 0, 2592, 2590, 1, 0, 0, 0, 2592, 2591, 1, 0, 0, 0, 2593, 2605, 1, 0, 0, 0, 2594, 2595, 5, 265, 0, 0, 2595, 2600, 3, 332, 166, 0, 2596, 2597, 5, 263, 0, 0, 2597, 2599, 3, 332, 166, 0, 2598, 2596, 1, 0, 0, 0, 2599, 2602, 1, 0, 0, 0, 2600, 2598, 1, 0, 0, 0, 2600, 2601, 1, 0, 0, 0, 2601, 2603, 1, 0, 0, 0, 2602, 2600, 1, 0, 0, 0, 2603, 2604, 5, 266, 0, 0, 2604, 2606, 1, 0, 0, 0, 2605, 2594, 1, 0, 0, 0, 2605, 2606, 1, 0, 0, 0, 2606, 2608, 1, 0, 0, 0, 2607, 2562, 1, 0, 0, 0, 2607, 2568, 1, 0, 0, 0, 2607, 2575, 1, 0, 0, 0, 2607, 2592, 1, 0, 0, 0, 2608, 2613, 1, 0, 0, 0, 2609, 2610, 10, 5, 0, 0, 2610, 2612, 5, 8, 0, 0, 2611, 2609, 1, 0, 0, 0, 2612, 2615, 1, 0, 0, 0, 2613, 2611, 1, 0, 0, 0, 2613, 2614, 1, 0, 0, 0, 2614, 329, 1, 0, 0, 0, 2615, 2613, 1, 0, 0, 0, 2616, 2617, 7, 28, 0, 0, 2617, 331, 1, 0, 0, 0, 2618, 2621, 5, 277, 0, 0, 2619, 2621, 3, 328, 164, 0, 2620, 2618, 1, 0, 0, 0, 2620, 2619, 1, 0, 0, 0, 2621, 333, 1, 0, 0, 0, 2622, 2627, 5, 284, 0, 0, 2623, 2627, 5, 285, 0, 0, 2624, 2627, 5, 286, 0, 0, 2625, 2627, 3, 358, 179, 0, 2626, 2622, 1, 0, 0, 0, 2626, 2623, 1, 0, 0, 0, 2626, 2624, 1, 0, 0, 0, 2626, 2625, 1, 0, 0, 0, 2627, 335, 1, 0, 0, 0, 2628, 2629, 5, 214, 0, 0, 2629, 2630, 3, 304, 152, 0, 2630, 2631, 5, 192, 0, 0, 2631, 2632, 3, 304, 152, 0, 2632, 337, 1, 0, 0, 0, 2633, 2634, 5, 74, 0, 0, 2634, 2635, 5, 265, 0, 0, 2635, 2636, 5, 215, 0, 0, 2636, 2637, 3, 306, 153, 0, 2637, 2638, 5, 266, 0, 0, 2638, 339, 1, 0, 0, 0, 2639, 2640, 5, 143, 0, 0, 2640, 2651, 5, 265, 0, 0, 2641, 2642, 5, 145, 0, 0, 2642, 2643, 5, 26, 0, 0, 2643, 2648, 3, 304, 152, 0, 2644, 2645, 5, 263, 0, 0, 2645, 2647, 3, 304, 152, 0, 2646, 2644, 1, 0, 0, 0, 2647, 2650, 1, 0, 0, 0, 2648, 2646, 1, 0, 0, 0, 2648, 2649, 1, 0, 0, 0, 2649, 2652, 1, 0, 0, 0, 2650, 2648, 1, 0, 0, 0, 2651, 2641, 1, 0, 0, 0, 2651, 2652, 1, 0, 0, 0, 2652, 2663, 1, 0, 0, 0, 2653, 2654, 5, 139, 0, 0, 2654, 2655, 5, 26, 0, 0, 2655, 2660, 3, 264, 132, 0, 2656, 2657, 5, 263, 0, 0, 2657, 2659, 3, 264, 132, 0, 2658, 2656, 1, 0, 0, 0, 2659, 2662, 1, 0, 0, 0, 2660, 2658, 1, 0, 0, 0, 2660, 2661, 1, 0, 0, 0, 2661, 2664, 1, 0, 0, 0, 2662, 2660, 1, 0, 0, 0, 2663, 2653, 1, 0, 0, 0, 2663, 2664, 1, 0, 0, 0, 2664, 2666, 1, 0, 0, 0, 2665, 2667, 3, 342, 171, 0, 2666, 2665, 1, 0, 0, 0, 2666, 2667, 1, 0, 0, 0, 2667, 2668, 1, 0, 0, 0, 2668, 2669, 5, 266, 0, 0, 2669, 341, 1, 0, 0, 0, 2670, 2671, 5, 154, 0, 0, 2671, 2687, 3, 344, 172, 0, 2672, 2673, 5, 169, 0, 0, 2673, 2687, 3, 344, 172, 0, 2674, 2675, 5, 154, 0, 0, 2675, 2676, 5, 15, 0, 0, 2676, 2677, 3, 344, 172, 0, 2677, 2678, 5, 5, 0, 0, 2678, 2679, 3, 344, 172, 0, 2679, 2687, 1, 0, 0, 0, 2680, 2681, 5, 169, 0, 0, 2681, 2682, 5, 15, 0, 0, 2682, 2683, 3, 344, 172, 0, 2683, 2684, 5, 5, 0, 0, 2684, 2685, 3, 344, 172, 0, 2685, 2687, 1, 0, 0, 0, 2686, 2670, 1, 0, 0, 0, 2686, 2672, 1, 0, 0, 0, 2686, 2674, 1, 0, 0, 0, 2686, 2680, 1, 0, 0, 0, 2687, 343, 1, 0, 0, 0, 2688, 2689, 5, 199, 0, 0, 2689, 2698, 5, 149, 0, 0, 2690, 2691, 5, 199, 0, 0, 2691, 2698, 5, 77, 0, 0, 2692, 2693, 5, 39, 0, 0, 2693, 2698, 5, 168, 0, 0, 2694, 2695, 3, 304, 152, 0, 2695, 2696, 7, 29, 0, 0, 2696, 2698, 1, 0, 0, 0, 2697, 2688, 1, 0, 0, 0, 2697, 2690, 1, 0, 0, 0, 2697, 2692, 1, 0, 0, 0, 2697, 2694, 1, 0, 0, 0, 2698, 345, 1, 0, 0, 0, 2699, 2700, 3, 358, 179, 0, 2700, 2701, 5, 261, 0, 0, 2701, 2702, 3, 358, 179, 0, 2702, 2705, 1, 0, 0, 0, 2703, 2705, 3, 358, 179, 0, 2704, 2699, 1, 0, 0, 0, 2704, 2703, 1, 0, 0, 0, 2705, 347, 1, 0, 0, 0, 2706, 2711, 3, 346, 173, 0, 2707, 2708, 5, 263, 0, 0, 2708, 2710, 3, 346, 173, 0, 2709, 2707, 1, 0, 0, 0, 2710, 2713, 1, 0, 0, 0, 2711, 2709, 1, 0, 0, 0, 2711, 2712, 1, 0, 0, 0, 2712, 349, 1, 0, 0, 0, 2713, 2711, 1, 0, 0, 0, 2714, 2728, 5, 2, 0, 0, 2715, 2728, 5, 4, 0, 0, 2716, 2728, 5, 58, 0, 0, 2717, 2728, 5, 37, 0, 0, 2718, 2728, 5, 99, 0, 0, 2719, 2728, 5, 162, 0, 0, 2720, 2725, 5, 174, 0, 0, 2721, 2722, 5, 265, 0, 0, 2722, 2723, 3, 358, 179, 0, 2723, 2724, 5, 266, 0, 0, 2724, 2726, 1, 0, 0, 0, 2725, 2721, 1, 0, 0, 0, 2725, 2726, 1, 0, 0, 0, 2726, 2728, 1, 0, 0, 0, 2727, 2714, 1, 0, 0, 0, 2727, 2715, 1, 0, 0, 0, 2727, 2716, 1, 0, 0, 0, 2727, 2717, 1, 0, 0, 0, 2727, 2718, 1, 0, 0, 0, 2727, 2719, 1, 0, 0, 0, 2727, 2720, 1, 0, 0, 0, 2728, 351, 1, 0, 0, 0, 2729, 2730, 7, 30, 0, 0, 2730, 353, 1, 0, 0, 0, 2731, 2736, 3, 358, 179, 0, 2732, 2733, 5, 261, 0, 0, 2733, 2735, 3, 358, 179, 0, 2734, 2732, 1, 0, 0, 0, 2735, 2738, 1, 0, 0, 0, 2736, 2734, 1, 0, 0, 0, 2736, 2737, 1, 0, 0, 0, 2737, 355, 1, 0, 0, 0, 2738, 2736, 1, 0, 0, 0, 2739, 2740, 5, 166, 0, 0, 2740, 2746, 3, 358, 179, 0, 2741, 2742, 5, 204, 0, 0, 2742, 2746, 3, 358, 179, 0, 2743, 2744, 5, 87, 0, 0, 2744, 2746, 3, 358, 179, 0, 2745, 2739, 1, 0, 0, 0, 2745, 2741, 1, 0, 0, 0, 2745, 2743, 1, 0, 0, 0, 2746, 357, 1, 0, 0, 0, 2747, 2753, 5, 280, 0, 0, 2748, 2753, 5, 274, 0, 0, 2749, 2753, 3, 364, 182, 0, 2750, 2753, 5, 283, 0, 0, 2751, 2753, 5, 281, 0, 0, 2752, 2747, 1, 0, 0, 0, 2752, 2748, 1, 0, 0, 0, 2752, 2749, 1, 0, 0, 0, 2752, 2750, 1, 0, 0, 0, 2752, 2751, 1, 0, 0, 0, 2753, 359, 1, 0, 0, 0, 2754, 2756, 5, 256, 0, 0, 2755, 2754, 1, 0, 0, 0, 2755, 2756, 1, 0, 0, 0, 2756, 2757, 1, 0, 0, 0, 2757, 2767, 5, 278, 0, 0, 2758, 2760, 5, 256, 0, 0, 2759, 2758, 1, 0, 0, 0, 2759, 2760, 1, 0, 0, 0, 2760, 2761, 1, 0, 0, 0, 2761, 2767, 5, 279, 0, 0, 2762, 2764, 5, 256, 0, 0, 2763, 2762, 1, 0, 0, 0, 2763, 2764, 1, 0, 0, 0, 2764, 2765, 1, 0, 0, 0, 2765, 2767, 5, 277, 0, 0, 2766, 2755, 1, 0, 0, 0, 2766, 2759, 1, 0, 0, 0, 2766, 2763, 1, 0, 0, 0, 2767, 361, 1, 0, 0, 0, 2768, 2769, 7, 31, 0, 0, 2769, 363, 1, 0, 0, 0, 2770, 2771, 7, 32, 0, 0, 2771, 365, 1, 0, 0, 0, 353, 369, 376, 400, 413, 417, 421, 430, 435, 439, 445, 447, 452, 456, 460, 467, 472, 478, 482, 491, 498, 502, 507, 509, 514, 518, 525, 529, 534, 538, 542, 546, 554, 559, 563, 571, 575, 584, 587, 590, 596, 603, 614, 619, 624, 629, 634, 643, 646, 649, 653, 679, 705, 714, 724, 727, 741, 759, 761, 770, 781, 790, 797, 801, 808, 814, 817, 822, 829, 843, 856, 861, 866, 872, 908, 911, 917, 920, 926, 932, 944, 946, 957, 965, 970, 974, 979, 986, 990, 994, 1000, 1004, 1008, 1017, 1020, 1023, 1031, 1045, 1052, 1065, 1071, 1076, 1079, 1082, 1087, 1091, 1100, 1105, 1111, 1115, 1120, 1125, 1128, 1136, 1139, 1143, 1155, 1158, 1162, 1167, 1171, 1187, 1192, 1199, 1202, 1208, 1211, 1218, 1221, 1225, 1230, 1233, 1240, 1243, 1267, 1281, 1285, 1289, 1309, 1311, 1313, 1322, 1324, 1333, 1335, 1344, 1346, 1351, 1360, 1369, 1378, 1389, 1395, 1400, 1403, 1416, 1426, 1430, 1435, 1446, 1451, 1484, 1492, 1497, 1501, 1505, 1510, 1514, 1519, 1524, 1529, 1533, 1542, 1545, 1549, 1556, 1567, 1573, 1577, 1583, 1593, 1600, 1605, 1610, 1615, 1621, 1624, 1633, 1636, 1639, 1645, 1651, 1661, 1664, 1668, 1672, 1675, 1681, 1684, 1690, 1696, 1699, 1702, 1706, 1716, 1727, 1732, 1735, 1739, 1746, 1756, 1768, 1774, 1776, 1785, 1788, 1795, 1805, 1811, 1819, 1830, 1840, 1851, 1853, 1859, 1864, 1874, 1877, 1883, 1885, 1893, 1899, 1902, 1904, 1916, 1923, 1927, 1931, 1935, 1938, 1945, 1954, 1957, 1961, 1966, 1970, 1973, 1980, 1991, 1994, 1998, 2002, 2011, 2014, 2021, 2035, 2039, 2043, 2047, 2051, 2055, 2059, 2063, 2073, 2084, 2089, 2102, 2104, 2110, 2114, 2116, 2124, 2131, 2136, 2149, 2155, 2163, 2170, 2174, 2182, 2184, 2195, 2203, 2212, 2218, 2223, 2229, 2235, 2240, 2245, 2251, 2262, 2264, 2291, 2297, 2301, 2313, 2323, 2326, 2331, 2338, 2341, 2350, 2353, 2357, 2360, 2372, 2375, 2394, 2398, 2406, 2410, 2435, 2438, 2447, 2453, 2459, 2465, 2476, 2485, 2507, 2510, 2513, 2523, 2525, 2532, 2534, 2556, 2585, 2592, 2600, 2605, 2607, 2613, 2620, 2626, 2648, 2651, 2660, 2663, 2666, 2686, 2697, 2704, 2711, 2725, 2727, 2736, 2745, 2752, 2755, 2759, 2763, 2766] \ No newline at end of file diff --git a/src/lib/impala/ImpalaSqlParser.tokens b/src/lib/impala/ImpalaSqlParser.tokens index 0185b60..b57242c 100644 --- a/src/lib/impala/ImpalaSqlParser.tokens +++ b/src/lib/impala/ImpalaSqlParser.tokens @@ -119,158 +119,174 @@ KW_LOAD=118 KW_LOCALTIME=119 KW_LOCALTIMESTAMP=120 KW_METADATA=121 -KW_MAP=122 -KW_MINUTE=123 -KW_MINUTES=124 -KW_MONTH=125 -KW_MONTHS=126 -KW_MERGE_FN=127 -KW_NFC=128 -KW_NFD=129 -KW_NFKC=130 -KW_NFKD=131 -KW_NORMALIZE=132 -KW_NOT=133 -KW_NULL=134 -KW_NULLS=135 -KW_OFFSET=136 -KW_ON=137 -KW_OPTION=138 -KW_OR=139 -KW_ORDER=140 -KW_ORDINALITY=141 -KW_OUTER=142 -KW_OWNER=143 -KW_OVER=144 -KW_OVERWRITE=145 -KW_PARTITION=146 -KW_PARTITIONS=147 -KW_PARQUET=148 -KW_POSITION=149 -KW_PRECEDING=150 -KW_PRIMARY=151 -KW_REPLICATION=152 -KW_PRIVILEGES=153 -KW_PROPERTIES=154 -KW_RANGE=155 -KW_RECOVER=156 -KW_RENAME=157 -KW_REPEATABLE=158 -KW_REPLACE=159 -KW_RESTRICT=160 -KW_RETURNS=161 -KW_REVOKE=162 -KW_REFRESH=163 -KW_REGEXP=164 -KW_RLIKE=165 -KW_RIGHT=166 -KW_ROLE=167 -KW_ROLES=168 -KW_ROW=169 -KW_ROWS=170 -KW_SCHEMA=171 -KW_SCHEMAS=172 -KW_SECOND=173 -KW_SECONDS=174 -KW_SELECT=175 -KW_SERDEPROPERTIES=176 -KW_SET=177 -KW_SEMI=178 -KW_SERVER=179 -KW_SHOW=180 -KW_SHUTDOWN=181 -KW_SOME=182 -KW_STATS=183 -KW_STRUCT=184 -KW_STRAIGHT_JOIN=185 -KW_SUBSTRING=186 -KW_SYSTEM=187 -KW_SYMBOL=188 -KW_SERIALIZE_FN=189 -KW_TABLE=190 -KW_TABLES=191 -KW_TABLESAMPLE=192 -KW_TERMINATED=193 -KW_THEN=194 -KW_TO=195 -KW_TRUE=196 -KW_TRY_CAST=197 -KW_TRUNCATE=198 -KW_UNCACHED=199 -KW_UESCAPE=200 -KW_UNBOUNDED=201 -KW_UNION=202 -KW_UNNEST=203 -KW_UNSET=204 -KW_USE=205 -KW_USER=206 -KW_USING=207 -KW_UPDATE_FN=208 -KW_UPSERT=209 -KW_UNKNOWN=210 -KW_URI=211 -KW_VALUE=212 -KW_VALUES=213 -KW_VIEW=214 -KW_VIEWS=215 -KW_WHEN=216 -KW_WHERE=217 -KW_WITH=218 -KW_YEAR=219 -KW_YEARS=220 -KW_TEXTFILE=221 -KW_ORC=222 -KW_AVRO=223 -KW_SEQUENCEFILE=224 -KW_RCFILE=225 -KW_REFERENCES=226 -KW_NOVALIDATE=227 -KW_RELY=228 -STATS_NUMDVS=229 -STATS_NUMNULLS=230 -STATS_AVGSIZE=231 -STATS_MAXSIZE=232 -EQ=233 -NEQ=234 -LT=235 -LTE=236 -GT=237 -GTE=238 -PLUS=239 -MINUS=240 -ASTERISK=241 -SLASH=242 -PERCENT=243 -CONCAT=244 -DOT=245 -SEMICOLON=246 -COMMA=247 -COLON=248 -LPAREN=249 -RPAREN=250 -LSQUARE=251 -RSQUARE=252 -LCURLY=253 -RCURLY=254 -BITWISEOR=255 -QUESTION=256 -RIGHT_ARROW=257 -STRING=258 -UNICODE_STRING=259 -BINARY_LITERAL=260 -INTEGER_VALUE=261 -DECIMAL_VALUE=262 -DOUBLE_VALUE=263 -IDENTIFIER=264 -DIGIT_IDENTIFIER=265 -QUOTED_IDENTIFIER=266 -BACKQUOTED_IDENTIFIER=267 -TIME_WITH_TIME_ZONE=268 -TIMESTAMP_WITH_TIME_ZONE=269 -DOUBLE_PRECISION=270 -SIMPLE_COMMENT=271 -BRACKETED_COMMENT=272 -WS=273 +KW_MINUTE=122 +KW_MINUTES=123 +KW_MONTH=124 +KW_MONTHS=125 +KW_MERGE_FN=126 +KW_NFC=127 +KW_NFD=128 +KW_NFKC=129 +KW_NFKD=130 +KW_NORMALIZE=131 +KW_NOT=132 +KW_NULL=133 +KW_NULLS=134 +KW_OFFSET=135 +KW_ON=136 +KW_OPTION=137 +KW_OR=138 +KW_ORDER=139 +KW_ORDINALITY=140 +KW_OUTER=141 +KW_OWNER=142 +KW_OVER=143 +KW_OVERWRITE=144 +KW_PARTITION=145 +KW_PARTITIONS=146 +KW_PARQUET=147 +KW_POSITION=148 +KW_PRECEDING=149 +KW_PRIMARY=150 +KW_REPLICATION=151 +KW_PRIVILEGES=152 +KW_PROPERTIES=153 +KW_RANGE=154 +KW_RECOVER=155 +KW_RENAME=156 +KW_REPEATABLE=157 +KW_REPLACE=158 +KW_RESTRICT=159 +KW_RETURNS=160 +KW_REVOKE=161 +KW_REFRESH=162 +KW_REGEXP=163 +KW_RLIKE=164 +KW_RIGHT=165 +KW_ROLE=166 +KW_ROLES=167 +KW_ROW=168 +KW_ROWS=169 +KW_SCHEMA=170 +KW_SCHEMAS=171 +KW_SECOND=172 +KW_SECONDS=173 +KW_SELECT=174 +KW_SERDEPROPERTIES=175 +KW_SET=176 +KW_SEMI=177 +KW_SERVER=178 +KW_SHOW=179 +KW_SHUTDOWN=180 +KW_SOME=181 +KW_STATS=182 +KW_STRAIGHT_JOIN=183 +KW_SUBSTRING=184 +KW_SYSTEM=185 +KW_SYMBOL=186 +KW_SERIALIZE_FN=187 +KW_TABLE=188 +KW_TABLES=189 +KW_TABLESAMPLE=190 +KW_TERMINATED=191 +KW_THEN=192 +KW_TO=193 +KW_TRUE=194 +KW_TRY_CAST=195 +KW_TRUNCATE=196 +KW_UNCACHED=197 +KW_UESCAPE=198 +KW_UNBOUNDED=199 +KW_UNION=200 +KW_UNNEST=201 +KW_UNSET=202 +KW_USE=203 +KW_USER=204 +KW_USING=205 +KW_UPDATE_FN=206 +KW_UPSERT=207 +KW_UNKNOWN=208 +KW_URI=209 +KW_VALUE=210 +KW_VALUES=211 +KW_VIEW=212 +KW_VIEWS=213 +KW_WHEN=214 +KW_WHERE=215 +KW_WITH=216 +KW_YEAR=217 +KW_YEARS=218 +KW_TEXTFILE=219 +KW_ORC=220 +KW_AVRO=221 +KW_SEQUENCEFILE=222 +KW_RCFILE=223 +KW_REFERENCES=224 +KW_NOVALIDATE=225 +KW_RELY=226 +KW_BINARY=227 +KW_BIGINT=228 +KW_BOOLEAN=229 +KW_CHAR=230 +KW_DATE=231 +KW_DECIMAL=232 +KW_DOUBLE=233 +KW_INT=234 +KW_MAP=235 +KW_REAL=236 +KW_SMALLINT=237 +KW_FLOAT=238 +KW_STRING=239 +KW_STRUCT=240 +KW_TIMESTAMP=241 +KW_TINYINT=242 +KW_VARCHAR=243 +KW_COMPLEX=244 +STATS_NUMDVS=245 +STATS_NUMNULLS=246 +STATS_AVGSIZE=247 +STATS_MAXSIZE=248 +EQ=249 +NEQ=250 +LT=251 +LTE=252 +GT=253 +GTE=254 +PLUS=255 +MINUS=256 +ASTERISK=257 +SLASH=258 +PERCENT=259 +CONCAT=260 +DOT=261 +SEMICOLON=262 +COMMA=263 +COLON=264 +LPAREN=265 +RPAREN=266 +LSQUARE=267 +RSQUARE=268 +LCURLY=269 +RCURLY=270 +BITWISEOR=271 +QUESTION=272 +RIGHT_ARROW=273 +STRING=274 +UNICODE_STRING=275 +BINARY_LITERAL=276 +INTEGER_VALUE=277 +DECIMAL_VALUE=278 +DOUBLE_VALUE=279 +IDENTIFIER=280 +DIGIT_IDENTIFIER=281 +QUOTED_IDENTIFIER=282 +BACKQUOTED_IDENTIFIER=283 +TIME_WITH_TIME_ZONE=284 +TIMESTAMP_WITH_TIME_ZONE=285 +DOUBLE_PRECISION=286 +SIMPLE_COMMENT=287 +BRACKETED_COMMENT=288 +WS=289 'ADD'=1 'ALL'=2 'ANALYTIC'=3 @@ -392,138 +408,154 @@ WS=273 'LOCALTIME'=119 'LOCALTIMESTAMP'=120 'METADATA'=121 -'MAP'=122 -'MINUTE'=123 -'MINUTES'=124 -'MONTH'=125 -'MONTHS'=126 -'MERGE_FN'=127 -'NFC'=128 -'NFD'=129 -'NFKC'=130 -'NFKD'=131 -'NORMALIZE'=132 -'NOT'=133 -'NULL'=134 -'NULLS'=135 -'OFFSET'=136 -'ON'=137 -'OPTION'=138 -'OR'=139 -'ORDER'=140 -'ORDINALITY'=141 -'OUTER'=142 -'OWNER'=143 -'OVER'=144 -'OVERWRITE'=145 -'PARTITION'=146 -'PARTITIONS'=147 -'PARQUET'=148 -'POSITION'=149 -'PRECEDING'=150 -'PRIMARY'=151 -'REPLICATION'=152 -'PRIVILEGES'=153 -'PROPERTIES'=154 -'RANGE'=155 -'RECOVER'=156 -'RENAME'=157 -'REPEATABLE'=158 -'REPLACE'=159 -'RESTRICT'=160 -'RETURNS'=161 -'REVOKE'=162 -'REFRESH'=163 -'REGEXP'=164 -'RLIKE'=165 -'RIGHT'=166 -'ROLE'=167 -'ROLES'=168 -'ROW'=169 -'ROWS'=170 -'SCHEMA'=171 -'SCHEMAS'=172 -'SECOND'=173 -'SECONDS'=174 -'SELECT'=175 -'SERDEPROPERTIES'=176 -'SET'=177 -'SEMI'=178 -'SERVER'=179 -'SHOW'=180 -'SHUTDOWN'=181 -'SOME'=182 -'STATS'=183 -'STRUCT'=184 -'STRAIGHT_JOIN'=185 -'SUBSTRING'=186 -'SYSTEM'=187 -'SYMBOL'=188 -'SERIALIZE_FN'=189 -'TABLE'=190 -'TABLES'=191 -'TABLESAMPLE'=192 -'TERMINATED '=193 -'THEN'=194 -'TO'=195 -'TRUE'=196 -'TRY_CAST'=197 -'TRUNCATE'=198 -'UNCACHED'=199 -'UESCAPE'=200 -'UNBOUNDED'=201 -'UNION'=202 -'UNNEST'=203 -'UNSET'=204 -'USE'=205 -'USER'=206 -'USING'=207 -'UPDATE_FN'=208 -'UPSERT'=209 -'UNKNOWN'=210 -'URI'=211 -'VALUE'=212 -'VALUES'=213 -'VIEW'=214 -'VIEWS'=215 -'WHEN'=216 -'WHERE'=217 -'WITH'=218 -'YEAR'=219 -'YEARS'=220 -'TEXTFILE'=221 -'ORC'=222 -'AVRO'=223 -'SEQUENCEFILE'=224 -'RCFILE'=225 -'REFERENCES'=226 -'NOVALIDATE'=227 -'RELY'=228 -'\'NUMDVS\''=229 -'\'NUMNULLS\''=230 -'\'AVGSIZE\''=231 -'\'MAXSIZE\''=232 -'='=233 -'<'=235 -'<='=236 -'>'=237 -'>='=238 -'+'=239 -'-'=240 -'*'=241 -'/'=242 -'%'=243 -'||'=244 -'.'=245 -';'=246 -','=247 -':'=248 -'('=249 -')'=250 -'['=251 -']'=252 -'{'=253 -'}'=254 -'|'=255 -'?'=256 -'->'=257 +'MINUTE'=122 +'MINUTES'=123 +'MONTH'=124 +'MONTHS'=125 +'MERGE_FN'=126 +'NFC'=127 +'NFD'=128 +'NFKC'=129 +'NFKD'=130 +'NORMALIZE'=131 +'NOT'=132 +'NULL'=133 +'NULLS'=134 +'OFFSET'=135 +'ON'=136 +'OPTION'=137 +'OR'=138 +'ORDER'=139 +'ORDINALITY'=140 +'OUTER'=141 +'OWNER'=142 +'OVER'=143 +'OVERWRITE'=144 +'PARTITION'=145 +'PARTITIONS'=146 +'PARQUET'=147 +'POSITION'=148 +'PRECEDING'=149 +'PRIMARY'=150 +'REPLICATION'=151 +'PRIVILEGES'=152 +'PROPERTIES'=153 +'RANGE'=154 +'RECOVER'=155 +'RENAME'=156 +'REPEATABLE'=157 +'REPLACE'=158 +'RESTRICT'=159 +'RETURNS'=160 +'REVOKE'=161 +'REFRESH'=162 +'REGEXP'=163 +'RLIKE'=164 +'RIGHT'=165 +'ROLE'=166 +'ROLES'=167 +'ROW'=168 +'ROWS'=169 +'SCHEMA'=170 +'SCHEMAS'=171 +'SECOND'=172 +'SECONDS'=173 +'SELECT'=174 +'SERDEPROPERTIES'=175 +'SET'=176 +'SEMI'=177 +'SERVER'=178 +'SHOW'=179 +'SHUTDOWN'=180 +'SOME'=181 +'STATS'=182 +'STRAIGHT_JOIN'=183 +'SUBSTRING'=184 +'SYSTEM'=185 +'SYMBOL'=186 +'SERIALIZE_FN'=187 +'TABLE'=188 +'TABLES'=189 +'TABLESAMPLE'=190 +'TERMINATED '=191 +'THEN'=192 +'TO'=193 +'TRUE'=194 +'TRY_CAST'=195 +'TRUNCATE'=196 +'UNCACHED'=197 +'UESCAPE'=198 +'UNBOUNDED'=199 +'UNION'=200 +'UNNEST'=201 +'UNSET'=202 +'USE'=203 +'USER'=204 +'USING'=205 +'UPDATE_FN'=206 +'UPSERT'=207 +'UNKNOWN'=208 +'URI'=209 +'VALUE'=210 +'VALUES'=211 +'VIEW'=212 +'VIEWS'=213 +'WHEN'=214 +'WHERE'=215 +'WITH'=216 +'YEAR'=217 +'YEARS'=218 +'TEXTFILE'=219 +'ORC'=220 +'AVRO'=221 +'SEQUENCEFILE'=222 +'RCFILE'=223 +'REFERENCES'=224 +'NOVALIDATE'=225 +'RELY'=226 +'BINARY'=227 +'BIGINT'=228 +'BOOLEAN'=229 +'CHAR'=230 +'DATE'=231 +'DECIMAL'=232 +'DOUBLE'=233 +'INT'=234 +'MAP'=235 +'REAL'=236 +'SMALLINT'=237 +'FLOAT'=238 +'STRING'=239 +'STRUCT'=240 +'TIMESTAMP'=241 +'TINYINT'=242 +'VARCHAR'=243 +'COMPLEX'=244 +'\'NUMDVS\''=245 +'\'NUMNULLS\''=246 +'\'AVGSIZE\''=247 +'\'MAXSIZE\''=248 +'='=249 +'<'=251 +'<='=252 +'>'=253 +'>='=254 +'+'=255 +'-'=256 +'*'=257 +'/'=258 +'%'=259 +'||'=260 +'.'=261 +';'=262 +','=263 +':'=264 +'('=265 +')'=266 +'['=267 +']'=268 +'{'=269 +'}'=270 +'|'=271 +'?'=272 +'->'=273 diff --git a/src/lib/impala/ImpalaSqlParser.ts b/src/lib/impala/ImpalaSqlParser.ts index c91d0c2..76ae347 100644 --- a/src/lib/impala/ImpalaSqlParser.ts +++ b/src/lib/impala/ImpalaSqlParser.ts @@ -138,158 +138,174 @@ export class ImpalaSqlParser extends SQLParserBase { public static readonly KW_LOCALTIME = 119; public static readonly KW_LOCALTIMESTAMP = 120; public static readonly KW_METADATA = 121; - public static readonly KW_MAP = 122; - public static readonly KW_MINUTE = 123; - public static readonly KW_MINUTES = 124; - public static readonly KW_MONTH = 125; - public static readonly KW_MONTHS = 126; - public static readonly KW_MERGE_FN = 127; - public static readonly KW_NFC = 128; - public static readonly KW_NFD = 129; - public static readonly KW_NFKC = 130; - public static readonly KW_NFKD = 131; - public static readonly KW_NORMALIZE = 132; - public static readonly KW_NOT = 133; - public static readonly KW_NULL = 134; - public static readonly KW_NULLS = 135; - public static readonly KW_OFFSET = 136; - public static readonly KW_ON = 137; - public static readonly KW_OPTION = 138; - public static readonly KW_OR = 139; - public static readonly KW_ORDER = 140; - public static readonly KW_ORDINALITY = 141; - public static readonly KW_OUTER = 142; - public static readonly KW_OWNER = 143; - public static readonly KW_OVER = 144; - public static readonly KW_OVERWRITE = 145; - public static readonly KW_PARTITION = 146; - public static readonly KW_PARTITIONS = 147; - public static readonly KW_PARQUET = 148; - public static readonly KW_POSITION = 149; - public static readonly KW_PRECEDING = 150; - public static readonly KW_PRIMARY = 151; - public static readonly KW_REPLICATION = 152; - public static readonly KW_PRIVILEGES = 153; - public static readonly KW_PROPERTIES = 154; - public static readonly KW_RANGE = 155; - public static readonly KW_RECOVER = 156; - public static readonly KW_RENAME = 157; - public static readonly KW_REPEATABLE = 158; - public static readonly KW_REPLACE = 159; - public static readonly KW_RESTRICT = 160; - public static readonly KW_RETURNS = 161; - public static readonly KW_REVOKE = 162; - public static readonly KW_REFRESH = 163; - public static readonly KW_REGEXP = 164; - public static readonly KW_RLIKE = 165; - public static readonly KW_RIGHT = 166; - public static readonly KW_ROLE = 167; - public static readonly KW_ROLES = 168; - public static readonly KW_ROW = 169; - public static readonly KW_ROWS = 170; - public static readonly KW_SCHEMA = 171; - public static readonly KW_SCHEMAS = 172; - public static readonly KW_SECOND = 173; - public static readonly KW_SECONDS = 174; - public static readonly KW_SELECT = 175; - public static readonly KW_SERDEPROPERTIES = 176; - public static readonly KW_SET = 177; - public static readonly KW_SEMI = 178; - public static readonly KW_SERVER = 179; - public static readonly KW_SHOW = 180; - public static readonly KW_SHUTDOWN = 181; - public static readonly KW_SOME = 182; - public static readonly KW_STATS = 183; - public static readonly KW_STRUCT = 184; - public static readonly KW_STRAIGHT_JOIN = 185; - public static readonly KW_SUBSTRING = 186; - public static readonly KW_SYSTEM = 187; - public static readonly KW_SYMBOL = 188; - public static readonly KW_SERIALIZE_FN = 189; - public static readonly KW_TABLE = 190; - public static readonly KW_TABLES = 191; - public static readonly KW_TABLESAMPLE = 192; - public static readonly KW_TERMINATED = 193; - public static readonly KW_THEN = 194; - public static readonly KW_TO = 195; - public static readonly KW_TRUE = 196; - public static readonly KW_TRY_CAST = 197; - public static readonly KW_TRUNCATE = 198; - public static readonly KW_UNCACHED = 199; - public static readonly KW_UESCAPE = 200; - public static readonly KW_UNBOUNDED = 201; - public static readonly KW_UNION = 202; - public static readonly KW_UNNEST = 203; - public static readonly KW_UNSET = 204; - public static readonly KW_USE = 205; - public static readonly KW_USER = 206; - public static readonly KW_USING = 207; - public static readonly KW_UPDATE_FN = 208; - public static readonly KW_UPSERT = 209; - public static readonly KW_UNKNOWN = 210; - public static readonly KW_URI = 211; - public static readonly KW_VALUE = 212; - public static readonly KW_VALUES = 213; - public static readonly KW_VIEW = 214; - public static readonly KW_VIEWS = 215; - public static readonly KW_WHEN = 216; - public static readonly KW_WHERE = 217; - public static readonly KW_WITH = 218; - public static readonly KW_YEAR = 219; - public static readonly KW_YEARS = 220; - public static readonly KW_TEXTFILE = 221; - public static readonly KW_ORC = 222; - public static readonly KW_AVRO = 223; - public static readonly KW_SEQUENCEFILE = 224; - public static readonly KW_RCFILE = 225; - public static readonly KW_REFERENCES = 226; - public static readonly KW_NOVALIDATE = 227; - public static readonly KW_RELY = 228; - public static readonly STATS_NUMDVS = 229; - public static readonly STATS_NUMNULLS = 230; - public static readonly STATS_AVGSIZE = 231; - public static readonly STATS_MAXSIZE = 232; - public static readonly EQ = 233; - public static readonly NEQ = 234; - public static readonly LT = 235; - public static readonly LTE = 236; - public static readonly GT = 237; - public static readonly GTE = 238; - public static readonly PLUS = 239; - public static readonly MINUS = 240; - public static readonly ASTERISK = 241; - public static readonly SLASH = 242; - public static readonly PERCENT = 243; - public static readonly CONCAT = 244; - public static readonly DOT = 245; - public static readonly SEMICOLON = 246; - public static readonly COMMA = 247; - public static readonly COLON = 248; - public static readonly LPAREN = 249; - public static readonly RPAREN = 250; - public static readonly LSQUARE = 251; - public static readonly RSQUARE = 252; - public static readonly LCURLY = 253; - public static readonly RCURLY = 254; - public static readonly BITWISEOR = 255; - public static readonly QUESTION = 256; - public static readonly RIGHT_ARROW = 257; - public static readonly STRING = 258; - public static readonly UNICODE_STRING = 259; - public static readonly BINARY_LITERAL = 260; - public static readonly INTEGER_VALUE = 261; - public static readonly DECIMAL_VALUE = 262; - public static readonly DOUBLE_VALUE = 263; - public static readonly IDENTIFIER = 264; - public static readonly DIGIT_IDENTIFIER = 265; - public static readonly QUOTED_IDENTIFIER = 266; - public static readonly BACKQUOTED_IDENTIFIER = 267; - public static readonly TIME_WITH_TIME_ZONE = 268; - public static readonly TIMESTAMP_WITH_TIME_ZONE = 269; - public static readonly DOUBLE_PRECISION = 270; - public static readonly SIMPLE_COMMENT = 271; - public static readonly BRACKETED_COMMENT = 272; - public static readonly WS = 273; + public static readonly KW_MINUTE = 122; + public static readonly KW_MINUTES = 123; + public static readonly KW_MONTH = 124; + public static readonly KW_MONTHS = 125; + public static readonly KW_MERGE_FN = 126; + public static readonly KW_NFC = 127; + public static readonly KW_NFD = 128; + public static readonly KW_NFKC = 129; + public static readonly KW_NFKD = 130; + public static readonly KW_NORMALIZE = 131; + public static readonly KW_NOT = 132; + public static readonly KW_NULL = 133; + public static readonly KW_NULLS = 134; + public static readonly KW_OFFSET = 135; + public static readonly KW_ON = 136; + public static readonly KW_OPTION = 137; + public static readonly KW_OR = 138; + public static readonly KW_ORDER = 139; + public static readonly KW_ORDINALITY = 140; + public static readonly KW_OUTER = 141; + public static readonly KW_OWNER = 142; + public static readonly KW_OVER = 143; + public static readonly KW_OVERWRITE = 144; + public static readonly KW_PARTITION = 145; + public static readonly KW_PARTITIONS = 146; + public static readonly KW_PARQUET = 147; + public static readonly KW_POSITION = 148; + public static readonly KW_PRECEDING = 149; + public static readonly KW_PRIMARY = 150; + public static readonly KW_REPLICATION = 151; + public static readonly KW_PRIVILEGES = 152; + public static readonly KW_PROPERTIES = 153; + public static readonly KW_RANGE = 154; + public static readonly KW_RECOVER = 155; + public static readonly KW_RENAME = 156; + public static readonly KW_REPEATABLE = 157; + public static readonly KW_REPLACE = 158; + public static readonly KW_RESTRICT = 159; + public static readonly KW_RETURNS = 160; + public static readonly KW_REVOKE = 161; + public static readonly KW_REFRESH = 162; + public static readonly KW_REGEXP = 163; + public static readonly KW_RLIKE = 164; + public static readonly KW_RIGHT = 165; + public static readonly KW_ROLE = 166; + public static readonly KW_ROLES = 167; + public static readonly KW_ROW = 168; + public static readonly KW_ROWS = 169; + public static readonly KW_SCHEMA = 170; + public static readonly KW_SCHEMAS = 171; + public static readonly KW_SECOND = 172; + public static readonly KW_SECONDS = 173; + public static readonly KW_SELECT = 174; + public static readonly KW_SERDEPROPERTIES = 175; + public static readonly KW_SET = 176; + public static readonly KW_SEMI = 177; + public static readonly KW_SERVER = 178; + public static readonly KW_SHOW = 179; + public static readonly KW_SHUTDOWN = 180; + public static readonly KW_SOME = 181; + public static readonly KW_STATS = 182; + public static readonly KW_STRAIGHT_JOIN = 183; + public static readonly KW_SUBSTRING = 184; + public static readonly KW_SYSTEM = 185; + public static readonly KW_SYMBOL = 186; + public static readonly KW_SERIALIZE_FN = 187; + public static readonly KW_TABLE = 188; + public static readonly KW_TABLES = 189; + public static readonly KW_TABLESAMPLE = 190; + public static readonly KW_TERMINATED = 191; + public static readonly KW_THEN = 192; + public static readonly KW_TO = 193; + public static readonly KW_TRUE = 194; + public static readonly KW_TRY_CAST = 195; + public static readonly KW_TRUNCATE = 196; + public static readonly KW_UNCACHED = 197; + public static readonly KW_UESCAPE = 198; + public static readonly KW_UNBOUNDED = 199; + public static readonly KW_UNION = 200; + public static readonly KW_UNNEST = 201; + public static readonly KW_UNSET = 202; + public static readonly KW_USE = 203; + public static readonly KW_USER = 204; + public static readonly KW_USING = 205; + public static readonly KW_UPDATE_FN = 206; + public static readonly KW_UPSERT = 207; + public static readonly KW_UNKNOWN = 208; + public static readonly KW_URI = 209; + public static readonly KW_VALUE = 210; + public static readonly KW_VALUES = 211; + public static readonly KW_VIEW = 212; + public static readonly KW_VIEWS = 213; + public static readonly KW_WHEN = 214; + public static readonly KW_WHERE = 215; + public static readonly KW_WITH = 216; + public static readonly KW_YEAR = 217; + public static readonly KW_YEARS = 218; + public static readonly KW_TEXTFILE = 219; + public static readonly KW_ORC = 220; + public static readonly KW_AVRO = 221; + public static readonly KW_SEQUENCEFILE = 222; + public static readonly KW_RCFILE = 223; + public static readonly KW_REFERENCES = 224; + public static readonly KW_NOVALIDATE = 225; + public static readonly KW_RELY = 226; + public static readonly KW_BINARY = 227; + public static readonly KW_BIGINT = 228; + public static readonly KW_BOOLEAN = 229; + public static readonly KW_CHAR = 230; + public static readonly KW_DATE = 231; + public static readonly KW_DECIMAL = 232; + public static readonly KW_DOUBLE = 233; + public static readonly KW_INT = 234; + public static readonly KW_MAP = 235; + public static readonly KW_REAL = 236; + public static readonly KW_SMALLINT = 237; + public static readonly KW_FLOAT = 238; + public static readonly KW_STRING = 239; + public static readonly KW_STRUCT = 240; + public static readonly KW_TIMESTAMP = 241; + public static readonly KW_TINYINT = 242; + public static readonly KW_VARCHAR = 243; + public static readonly KW_COMPLEX = 244; + public static readonly STATS_NUMDVS = 245; + public static readonly STATS_NUMNULLS = 246; + public static readonly STATS_AVGSIZE = 247; + public static readonly STATS_MAXSIZE = 248; + public static readonly EQ = 249; + public static readonly NEQ = 250; + public static readonly LT = 251; + public static readonly LTE = 252; + public static readonly GT = 253; + public static readonly GTE = 254; + public static readonly PLUS = 255; + public static readonly MINUS = 256; + public static readonly ASTERISK = 257; + public static readonly SLASH = 258; + public static readonly PERCENT = 259; + public static readonly CONCAT = 260; + public static readonly DOT = 261; + public static readonly SEMICOLON = 262; + public static readonly COMMA = 263; + public static readonly COLON = 264; + public static readonly LPAREN = 265; + public static readonly RPAREN = 266; + public static readonly LSQUARE = 267; + public static readonly RSQUARE = 268; + public static readonly LCURLY = 269; + public static readonly RCURLY = 270; + public static readonly BITWISEOR = 271; + public static readonly QUESTION = 272; + public static readonly RIGHT_ARROW = 273; + public static readonly STRING = 274; + public static readonly UNICODE_STRING = 275; + public static readonly BINARY_LITERAL = 276; + public static readonly INTEGER_VALUE = 277; + public static readonly DECIMAL_VALUE = 278; + public static readonly DOUBLE_VALUE = 279; + public static readonly IDENTIFIER = 280; + public static readonly DIGIT_IDENTIFIER = 281; + public static readonly QUOTED_IDENTIFIER = 282; + public static readonly BACKQUOTED_IDENTIFIER = 283; + public static readonly TIME_WITH_TIME_ZONE = 284; + public static readonly TIMESTAMP_WITH_TIME_ZONE = 285; + public static readonly DOUBLE_PRECISION = 286; + public static readonly SIMPLE_COMMENT = 287; + public static readonly BRACKETED_COMMENT = 288; + public static readonly WS = 289; public static readonly RULE_program = 0; public static readonly RULE_singleStatement = 1; public static readonly RULE_sqlStatement = 2; @@ -455,23 +471,24 @@ export class ImpalaSqlParser extends SQLParserBase { public static readonly RULE_intervalField = 162; public static readonly RULE_normalForm = 163; public static readonly RULE_type = 164; - public static readonly RULE_typeParameter = 165; - public static readonly RULE_baseType = 166; - public static readonly RULE_whenClause = 167; - public static readonly RULE_filter = 168; - public static readonly RULE_over = 169; - public static readonly RULE_windowFrame = 170; - public static readonly RULE_frameBound = 171; - public static readonly RULE_pathElement = 172; - public static readonly RULE_pathSpecification = 173; - public static readonly RULE_privilege = 174; - public static readonly RULE_objectType = 175; - public static readonly RULE_qualifiedName = 176; - public static readonly RULE_principal = 177; - public static readonly RULE_identifier = 178; - public static readonly RULE_number = 179; - public static readonly RULE_reservedKeywordsUsedAsFuncName = 180; - public static readonly RULE_nonReserved = 181; + public static readonly RULE_dataType = 165; + public static readonly RULE_typeParameter = 166; + public static readonly RULE_baseType = 167; + public static readonly RULE_whenClause = 168; + public static readonly RULE_filter = 169; + public static readonly RULE_over = 170; + public static readonly RULE_windowFrame = 171; + public static readonly RULE_frameBound = 172; + public static readonly RULE_pathElement = 173; + public static readonly RULE_pathSpecification = 174; + public static readonly RULE_privilege = 175; + public static readonly RULE_objectType = 176; + public static readonly RULE_qualifiedName = 177; + public static readonly RULE_principal = 178; + public static readonly RULE_identifier = 179; + public static readonly RULE_number = 180; + public static readonly RULE_reservedKeywordsUsedAsFuncName = 181; + public static readonly RULE_nonReserved = 182; public static readonly literalNames = [ null, "'ADD'", "'ALL'", "'ANALYTIC'", "'ALTER'", "'AND'", "'ANY'", @@ -495,9 +512,9 @@ export class ImpalaSqlParser extends SQLParserBase { "'INTERVAL'", "'INTERMEDIATE'", "'INTO'", "'INIT_FN'", "'IREGEXP'", "'ILIKE'", "'INVALIDATE'", "'IS'", "'JOIN'", "'KEY'", "'KUDU'", "'LAST'", "'LATERAL'", "'LEFT'", "'LIKE'", "'LIMIT'", "'LINES'", - "'LOAD'", "'LOCALTIME'", "'LOCALTIMESTAMP'", "'METADATA'", "'MAP'", - "'MINUTE'", "'MINUTES'", "'MONTH'", "'MONTHS'", "'MERGE_FN'", "'NFC'", - "'NFD'", "'NFKC'", "'NFKD'", "'NORMALIZE'", "'NOT'", "'NULL'", "'NULLS'", + "'LOAD'", "'LOCALTIME'", "'LOCALTIMESTAMP'", "'METADATA'", "'MINUTE'", + "'MINUTES'", "'MONTH'", "'MONTHS'", "'MERGE_FN'", "'NFC'", "'NFD'", + "'NFKC'", "'NFKD'", "'NORMALIZE'", "'NOT'", "'NULL'", "'NULLS'", "'OFFSET'", "'ON'", "'OPTION'", "'OR'", "'ORDER'", "'ORDINALITY'", "'OUTER'", "'OWNER'", "'OVER'", "'OVERWRITE'", "'PARTITION'", "'PARTITIONS'", "'PARQUET'", "'POSITION'", "'PRECEDING'", "'PRIMARY'", "'REPLICATION'", @@ -506,7 +523,7 @@ export class ImpalaSqlParser extends SQLParserBase { "'REFRESH'", "'REGEXP'", "'RLIKE'", "'RIGHT'", "'ROLE'", "'ROLES'", "'ROW'", "'ROWS'", "'SCHEMA'", "'SCHEMAS'", "'SECOND'", "'SECONDS'", "'SELECT'", "'SERDEPROPERTIES'", "'SET'", "'SEMI'", "'SERVER'", - "'SHOW'", "'SHUTDOWN'", "'SOME'", "'STATS'", "'STRUCT'", "'STRAIGHT_JOIN'", + "'SHOW'", "'SHUTDOWN'", "'SOME'", "'STATS'", "'STRAIGHT_JOIN'", "'SUBSTRING'", "'SYSTEM'", "'SYMBOL'", "'SERIALIZE_FN'", "'TABLE'", "'TABLES'", "'TABLESAMPLE'", "'TERMINATED '", "'THEN'", "'TO'", "'TRUE'", "'TRY_CAST'", "'TRUNCATE'", "'UNCACHED'", "'UESCAPE'", @@ -514,11 +531,14 @@ export class ImpalaSqlParser extends SQLParserBase { "'USING'", "'UPDATE_FN'", "'UPSERT'", "'UNKNOWN'", "'URI'", "'VALUE'", "'VALUES'", "'VIEW'", "'VIEWS'", "'WHEN'", "'WHERE'", "'WITH'", "'YEAR'", "'YEARS'", "'TEXTFILE'", "'ORC'", "'AVRO'", "'SEQUENCEFILE'", - "'RCFILE'", "'REFERENCES'", "'NOVALIDATE'", "'RELY'", "''NUMDVS''", - "''NUMNULLS''", "''AVGSIZE''", "''MAXSIZE''", "'='", null, "'<'", - "'<='", "'>'", "'>='", "'+'", "'-'", "'*'", "'/'", "'%'", "'||'", - "'.'", "';'", "','", "':'", "'('", "')'", "'['", "']'", "'{'", "'}'", - "'|'", "'?'", "'->'" + "'RCFILE'", "'REFERENCES'", "'NOVALIDATE'", "'RELY'", "'BINARY'", + "'BIGINT'", "'BOOLEAN'", "'CHAR'", "'DATE'", "'DECIMAL'", "'DOUBLE'", + "'INT'", "'MAP'", "'REAL'", "'SMALLINT'", "'FLOAT'", "'STRING'", + "'STRUCT'", "'TIMESTAMP'", "'TINYINT'", "'VARCHAR'", "'COMPLEX'", + "''NUMDVS''", "''NUMNULLS''", "''AVGSIZE''", "''MAXSIZE''", "'='", + null, "'<'", "'<='", "'>'", "'>='", "'+'", "'-'", "'*'", "'/'", + "'%'", "'||'", "'.'", "';'", "','", "':'", "'('", "')'", "'['", + "']'", "'{'", "'}'", "'|'", "'?'", "'->'" ]; public static readonly symbolicNames = [ @@ -545,7 +565,7 @@ export class ImpalaSqlParser extends SQLParserBase { "KW_INTERMEDIATE", "KW_INTO", "KW_INIT_FN", "KW_IREGEXP", "KW_ILIKE", "KW_INVALIDATE", "KW_IS", "KW_JOIN", "KW_KEY", "KW_KUDU", "KW_LAST", "KW_LATERAL", "KW_LEFT", "KW_LIKE", "KW_LIMIT", "KW_LINES", "KW_LOAD", - "KW_LOCALTIME", "KW_LOCALTIMESTAMP", "KW_METADATA", "KW_MAP", "KW_MINUTE", + "KW_LOCALTIME", "KW_LOCALTIMESTAMP", "KW_METADATA", "KW_MINUTE", "KW_MINUTES", "KW_MONTH", "KW_MONTHS", "KW_MERGE_FN", "KW_NFC", "KW_NFD", "KW_NFKC", "KW_NFKD", "KW_NORMALIZE", "KW_NOT", "KW_NULL", "KW_NULLS", "KW_OFFSET", "KW_ON", "KW_OPTION", "KW_OR", "KW_ORDER", @@ -557,16 +577,19 @@ export class ImpalaSqlParser extends SQLParserBase { "KW_RLIKE", "KW_RIGHT", "KW_ROLE", "KW_ROLES", "KW_ROW", "KW_ROWS", "KW_SCHEMA", "KW_SCHEMAS", "KW_SECOND", "KW_SECONDS", "KW_SELECT", "KW_SERDEPROPERTIES", "KW_SET", "KW_SEMI", "KW_SERVER", "KW_SHOW", - "KW_SHUTDOWN", "KW_SOME", "KW_STATS", "KW_STRUCT", "KW_STRAIGHT_JOIN", - "KW_SUBSTRING", "KW_SYSTEM", "KW_SYMBOL", "KW_SERIALIZE_FN", "KW_TABLE", - "KW_TABLES", "KW_TABLESAMPLE", "KW_TERMINATED", "KW_THEN", "KW_TO", - "KW_TRUE", "KW_TRY_CAST", "KW_TRUNCATE", "KW_UNCACHED", "KW_UESCAPE", - "KW_UNBOUNDED", "KW_UNION", "KW_UNNEST", "KW_UNSET", "KW_USE", "KW_USER", - "KW_USING", "KW_UPDATE_FN", "KW_UPSERT", "KW_UNKNOWN", "KW_URI", - "KW_VALUE", "KW_VALUES", "KW_VIEW", "KW_VIEWS", "KW_WHEN", "KW_WHERE", - "KW_WITH", "KW_YEAR", "KW_YEARS", "KW_TEXTFILE", "KW_ORC", "KW_AVRO", - "KW_SEQUENCEFILE", "KW_RCFILE", "KW_REFERENCES", "KW_NOVALIDATE", - "KW_RELY", "STATS_NUMDVS", "STATS_NUMNULLS", "STATS_AVGSIZE", "STATS_MAXSIZE", + "KW_SHUTDOWN", "KW_SOME", "KW_STATS", "KW_STRAIGHT_JOIN", "KW_SUBSTRING", + "KW_SYSTEM", "KW_SYMBOL", "KW_SERIALIZE_FN", "KW_TABLE", "KW_TABLES", + "KW_TABLESAMPLE", "KW_TERMINATED", "KW_THEN", "KW_TO", "KW_TRUE", + "KW_TRY_CAST", "KW_TRUNCATE", "KW_UNCACHED", "KW_UESCAPE", "KW_UNBOUNDED", + "KW_UNION", "KW_UNNEST", "KW_UNSET", "KW_USE", "KW_USER", "KW_USING", + "KW_UPDATE_FN", "KW_UPSERT", "KW_UNKNOWN", "KW_URI", "KW_VALUE", + "KW_VALUES", "KW_VIEW", "KW_VIEWS", "KW_WHEN", "KW_WHERE", "KW_WITH", + "KW_YEAR", "KW_YEARS", "KW_TEXTFILE", "KW_ORC", "KW_AVRO", "KW_SEQUENCEFILE", + "KW_RCFILE", "KW_REFERENCES", "KW_NOVALIDATE", "KW_RELY", "KW_BINARY", + "KW_BIGINT", "KW_BOOLEAN", "KW_CHAR", "KW_DATE", "KW_DECIMAL", "KW_DOUBLE", + "KW_INT", "KW_MAP", "KW_REAL", "KW_SMALLINT", "KW_FLOAT", "KW_STRING", + "KW_STRUCT", "KW_TIMESTAMP", "KW_TINYINT", "KW_VARCHAR", "KW_COMPLEX", + "STATS_NUMDVS", "STATS_NUMNULLS", "STATS_AVGSIZE", "STATS_MAXSIZE", "EQ", "NEQ", "LT", "LTE", "GT", "GTE", "PLUS", "MINUS", "ASTERISK", "SLASH", "PERCENT", "CONCAT", "DOT", "SEMICOLON", "COMMA", "COLON", "LPAREN", "RPAREN", "LSQUARE", "RSQUARE", "LCURLY", "RCURLY", "BITWISEOR", @@ -616,9 +639,9 @@ export class ImpalaSqlParser extends SQLParserBase { "parenthesizedRelation", "columnItem", "expression", "booleanExpression", "predicate", "valueExpression", "primaryExpression", "stringLiteral", "comparisonOperator", "comparisonQuantifier", "booleanValue", "interval", - "intervalField", "normalForm", "type", "typeParameter", "baseType", - "whenClause", "filter", "over", "windowFrame", "frameBound", "pathElement", - "pathSpecification", "privilege", "objectType", "qualifiedName", + "intervalField", "normalForm", "type", "dataType", "typeParameter", + "baseType", "whenClause", "filter", "over", "windowFrame", "frameBound", + "pathElement", "pathSpecification", "privilege", "objectType", "qualifiedName", "principal", "identifier", "number", "reservedKeywordsUsedAsFuncName", "nonReserved", ]; @@ -644,21 +667,21 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 367; + this.state = 369; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 4 || ((((_la - 34)) & ~0x1F) === 0 && ((1 << (_la - 34)) & 22085645) !== 0) || _la === 67 || _la === 86 || ((((_la - 99)) & ~0x1F) === 0 && ((1 << (_la - 99)) & 524545) !== 0) || ((((_la - 162)) & ~0x1F) === 0 && ((1 << (_la - 162)) & 268738563) !== 0) || ((((_la - 198)) & ~0x1F) === 0 && ((1 << (_la - 198)) & 1083521) !== 0) || _la === 248 || _la === 249) { + while (_la === 4 || ((((_la - 34)) & ~0x1F) === 0 && ((1 << (_la - 34)) & 22085645) !== 0) || _la === 67 || _la === 86 || ((((_la - 99)) & ~0x1F) === 0 && ((1 << (_la - 99)) & 524545) !== 0) || ((((_la - 161)) & ~0x1F) === 0 && ((1 << (_la - 161)) & 134520835) !== 0) || ((((_la - 196)) & ~0x1F) === 0 && ((1 << (_la - 196)) & 1083521) !== 0) || _la === 264 || _la === 265) { { { - this.state = 364; + this.state = 366; this.singleStatement(); } } - this.state = 369; + this.state = 371; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 370; + this.state = 372; this.match(ImpalaSqlParser.EOF); } } @@ -683,14 +706,14 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 372; - this.sqlStatement(); this.state = 374; + this.sqlStatement(); + this.state = 376; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 246) { + if (_la === 262) { { - this.state = 373; + this.state = 375; this.match(ImpalaSqlParser.SEMICOLON); } } @@ -715,160 +738,160 @@ export class ImpalaSqlParser extends SQLParserBase { let localContext = new SqlStatementContext(this.context, this.state); this.enterRule(localContext, 4, ImpalaSqlParser.RULE_sqlStatement); try { - this.state = 398; + this.state = 400; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 2, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 376; + this.state = 378; this.queryStatement(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 377; + this.state = 379; this.useStatement(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 378; + this.state = 380; this.createStatement(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 379; + this.state = 381; this.alterStatement(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 380; + this.state = 382; this.truncateTableStatement(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 381; + this.state = 383; this.describeStatement(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 382; + this.state = 384; this.computeStatement(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 383; + this.state = 385; this.dropStatement(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 384; + this.state = 386; this.grantStatement(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 385; + this.state = 387; this.revokeStatement(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 386; + this.state = 388; this.insertStatement(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 387; + this.state = 389; this.deleteStatement(); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 388; + this.state = 390; this.updateStatement(); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 389; + this.state = 391; this.upsertStatement(); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 390; + this.state = 392; this.showStatement(); } break; case 16: this.enterOuterAlt(localContext, 16); { - this.state = 391; + this.state = 393; this.addCommentStatement(); } break; case 17: this.enterOuterAlt(localContext, 17); { - this.state = 392; + this.state = 394; this.explainStatement(); } break; case 18: this.enterOuterAlt(localContext, 18); { - this.state = 393; + this.state = 395; this.setStatement(); } break; case 19: this.enterOuterAlt(localContext, 19); { - this.state = 394; + this.state = 396; this.shutdownStatement(); } break; case 20: this.enterOuterAlt(localContext, 20); { - this.state = 395; + this.state = 397; this.invalidateMetaStatement(); } break; case 21: this.enterOuterAlt(localContext, 21); { - this.state = 396; + this.state = 398; this.loadDataStatement(); } break; case 22: this.enterOuterAlt(localContext, 22); { - this.state = 397; + this.state = 399; this.refreshStatement(); } break; @@ -894,9 +917,9 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 400; + this.state = 402; this.match(ImpalaSqlParser.KW_USE); - this.state = 401; + this.state = 403; this.databaseNamePath(); } } @@ -918,62 +941,62 @@ export class ImpalaSqlParser extends SQLParserBase { let localContext = new CreateStatementContext(this.context, this.state); this.enterRule(localContext, 8, ImpalaSqlParser.RULE_createStatement); try { - this.state = 411; + this.state = 413; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 3, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 403; + this.state = 405; this.createSchema(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 404; + this.state = 406; this.createRole(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 405; + this.state = 407; this.createAggregateFunction(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 406; + this.state = 408; this.createFunction(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 407; + this.state = 409; this.createView(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 408; + this.state = 410; this.createKuduTableAsSelect(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 409; + this.state = 411; this.createTableLike(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 410; + this.state = 412; this.createTableSelect(); } break; @@ -1001,97 +1024,97 @@ export class ImpalaSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 413; - this.match(ImpalaSqlParser.KW_CREATE); this.state = 415; + this.match(ImpalaSqlParser.KW_CREATE); + this.state = 417; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 19) { { - this.state = 414; + this.state = 416; this.match(ImpalaSqlParser.KW_EXTERNAL); } } - this.state = 417; - this.match(ImpalaSqlParser.KW_TABLE); this.state = 419; + this.match(ImpalaSqlParser.KW_TABLE); + this.state = 421; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 93) { { - this.state = 418; + this.state = 420; this.ifNotExists(); } } - this.state = 421; + this.state = 423; this.tableNameCreate(); - this.state = 437; + this.state = 439; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 8, this.context) ) { case 1: { - this.state = 422; + this.state = 424; this.match(ImpalaSqlParser.LPAREN); - this.state = 423; + this.state = 425; this.columnDefinition(); - this.state = 428; + this.state = 430; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 6, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 424; + this.state = 426; this.match(ImpalaSqlParser.COMMA); - this.state = 425; + this.state = 427; this.columnDefinition(); } } } - this.state = 430; + this.state = 432; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 6, this.context); } - this.state = 433; + this.state = 435; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 247) { + if (_la === 263) { { - this.state = 431; + this.state = 433; this.match(ImpalaSqlParser.COMMA); - this.state = 432; + this.state = 434; this.constraintSpecification(); } } - this.state = 435; + this.state = 437; this.match(ImpalaSqlParser.RPAREN); } break; } - this.state = 445; + this.state = 447; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 439; + this.state = 441; this.match(ImpalaSqlParser.KW_PARTITIONED); - this.state = 440; + this.state = 442; this.match(ImpalaSqlParser.KW_BY); - this.state = 443; + this.state = 445; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 9, this.context) ) { case 1: { - this.state = 441; + this.state = 443; this.columnAliases(); } break; case 2: { - this.state = 442; + this.state = 444; this.partitionedBy(); } break; @@ -1099,16 +1122,16 @@ export class ImpalaSqlParser extends SQLParserBase { } } - this.state = 447; + this.state = 449; this.createCommonItem(); - this.state = 450; + this.state = 452; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 9) { { - this.state = 448; + this.state = 450; this.match(ImpalaSqlParser.KW_AS); - this.state = 449; + this.state = 451; this.queryStatement(); } } @@ -1136,35 +1159,35 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 452; - this.match(ImpalaSqlParser.KW_CREATE); this.state = 454; + this.match(ImpalaSqlParser.KW_CREATE); + this.state = 456; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 19) { { - this.state = 453; + this.state = 455; this.match(ImpalaSqlParser.KW_EXTERNAL); } } - this.state = 456; - this.match(ImpalaSqlParser.KW_TABLE); this.state = 458; + this.match(ImpalaSqlParser.KW_TABLE); + this.state = 460; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 93) { { - this.state = 457; + this.state = 459; this.ifNotExists(); } } - this.state = 460; + this.state = 462; this.tableNameCreate(); - this.state = 461; + this.state = 463; this.match(ImpalaSqlParser.KW_LIKE); - this.state = 465; + this.state = 467; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_BERNOULLI: @@ -1200,41 +1223,42 @@ export class ImpalaSqlParser extends SQLParserBase { case ImpalaSqlParser.KW_VIEWS: case ImpalaSqlParser.KW_YEAR: case ImpalaSqlParser.KW_ORC: + case ImpalaSqlParser.KW_DATE: case ImpalaSqlParser.STRING: case ImpalaSqlParser.IDENTIFIER: case ImpalaSqlParser.DIGIT_IDENTIFIER: case ImpalaSqlParser.BACKQUOTED_IDENTIFIER: { - this.state = 462; + this.state = 464; this.tableNamePath(); } break; case ImpalaSqlParser.KW_PARQUET: { - this.state = 463; + this.state = 465; this.match(ImpalaSqlParser.KW_PARQUET); - this.state = 464; + this.state = 466; localContext._parquet = this.stringLiteral(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 470; + this.state = 472; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 17) { { - this.state = 467; - this.match(ImpalaSqlParser.KW_PARTITIONED); - this.state = 468; - this.match(ImpalaSqlParser.KW_BY); this.state = 469; + this.match(ImpalaSqlParser.KW_PARTITIONED); + this.state = 470; + this.match(ImpalaSqlParser.KW_BY); + this.state = 471; this.partitionedBy(); } } - this.state = 472; + this.state = 474; this.createCommonItem(); } } @@ -1260,95 +1284,95 @@ export class ImpalaSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 474; - this.match(ImpalaSqlParser.KW_CREATE); this.state = 476; + this.match(ImpalaSqlParser.KW_CREATE); + this.state = 478; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 19) { { - this.state = 475; + this.state = 477; this.match(ImpalaSqlParser.KW_EXTERNAL); } } - this.state = 478; - this.match(ImpalaSqlParser.KW_TABLE); this.state = 480; + this.match(ImpalaSqlParser.KW_TABLE); + this.state = 482; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 93) { { - this.state = 479; + this.state = 481; this.ifNotExists(); } } - this.state = 482; + this.state = 484; this.tableNameCreate(); - this.state = 500; + this.state = 502; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 249) { + if (_la === 265) { { - this.state = 483; + this.state = 485; this.match(ImpalaSqlParser.LPAREN); - this.state = 484; + this.state = 486; this.kuduTableElement(); - this.state = 489; + this.state = 491; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 18, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 485; + this.state = 487; this.match(ImpalaSqlParser.COMMA); - this.state = 486; + this.state = 488; this.kuduTableElement(); } } } - this.state = 491; + this.state = 493; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 18, this.context); } - this.state = 496; + this.state = 498; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 247) { + if (_la === 263) { { - this.state = 492; - this.match(ImpalaSqlParser.COMMA); - this.state = 493; - this.match(ImpalaSqlParser.KW_PRIMARY); this.state = 494; - this.match(ImpalaSqlParser.KW_KEY); + this.match(ImpalaSqlParser.COMMA); this.state = 495; + this.match(ImpalaSqlParser.KW_PRIMARY); + this.state = 496; + this.match(ImpalaSqlParser.KW_KEY); + this.state = 497; this.columnAliases(); } } - this.state = 498; + this.state = 500; this.match(ImpalaSqlParser.RPAREN); } } - this.state = 507; + this.state = 509; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 151) { + if (_la === 150) { { - this.state = 502; + this.state = 504; this.match(ImpalaSqlParser.KW_PRIMARY); - this.state = 503; - this.match(ImpalaSqlParser.KW_KEY); this.state = 505; + this.match(ImpalaSqlParser.KW_KEY); + this.state = 507; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 249) { + if (_la === 265) { { - this.state = 504; + this.state = 506; this.columnAliases(); } } @@ -1356,58 +1380,58 @@ export class ImpalaSqlParser extends SQLParserBase { } } - this.state = 512; + this.state = 514; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 146) { + if (_la === 145) { { - this.state = 509; - this.match(ImpalaSqlParser.KW_PARTITION); - this.state = 510; - this.match(ImpalaSqlParser.KW_BY); this.state = 511; + this.match(ImpalaSqlParser.KW_PARTITION); + this.state = 512; + this.match(ImpalaSqlParser.KW_BY); + this.state = 513; this.kuduPartitionClause(); } } - this.state = 516; + this.state = 518; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 34) { { - this.state = 514; + this.state = 516; this.match(ImpalaSqlParser.KW_COMMENT); - this.state = 515; + this.state = 517; this.stringLiteral(); } } - this.state = 518; - this.match(ImpalaSqlParser.KW_STORED); - this.state = 519; - this.match(ImpalaSqlParser.KW_AS); this.state = 520; + this.match(ImpalaSqlParser.KW_STORED); + this.state = 521; + this.match(ImpalaSqlParser.KW_AS); + this.state = 522; this.match(ImpalaSqlParser.KW_KUDU); - this.state = 523; + this.state = 525; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 25) { { - this.state = 521; + this.state = 523; this.match(ImpalaSqlParser.KW_TBLPROPERTIES); - this.state = 522; + this.state = 524; localContext._tblProp = this.properties(); } } - this.state = 527; + this.state = 529; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 9) { { - this.state = 525; + this.state = 527; this.match(ImpalaSqlParser.KW_AS); - this.state = 526; + this.state = 528; this.queryStatement(); } } @@ -1435,59 +1459,59 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 529; + this.state = 531; this.match(ImpalaSqlParser.KW_CREATE); - this.state = 530; - this.match(ImpalaSqlParser.KW_VIEW); this.state = 532; + this.match(ImpalaSqlParser.KW_VIEW); + this.state = 534; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 93) { { - this.state = 531; + this.state = 533; this.ifNotExists(); } } - this.state = 534; - this.viewNameCreate(); this.state = 536; + this.viewNameCreate(); + this.state = 538; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 249) { + if (_la === 265) { { - this.state = 535; + this.state = 537; this.viewColumns(); } } - this.state = 540; + this.state = 542; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 34) { { - this.state = 538; + this.state = 540; this.match(ImpalaSqlParser.KW_COMMENT); - this.state = 539; + this.state = 541; this.stringLiteral(); } } - this.state = 544; + this.state = 546; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 25) { { - this.state = 542; + this.state = 544; this.match(ImpalaSqlParser.KW_TBLPROPERTIES); - this.state = 543; + this.state = 545; localContext._tblProp = this.properties(); } } - this.state = 546; + this.state = 548; this.match(ImpalaSqlParser.KW_AS); - this.state = 547; + this.state = 549; this.queryStatement(); } } @@ -1512,49 +1536,49 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 549; + this.state = 551; this.match(ImpalaSqlParser.KW_CREATE); - this.state = 550; + this.state = 552; _la = this.tokenStream.LA(1); - if(!(_la === 46 || _la === 171)) { + if(!(_la === 46 || _la === 170)) { this.errorHandler.recoverInline(this); } else { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 552; + this.state = 554; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 93) { { - this.state = 551; + this.state = 553; this.ifNotExists(); } } - this.state = 554; + this.state = 556; this.databaseNameCreate(); - this.state = 557; + this.state = 559; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 32, this.context) ) { case 1: { - this.state = 555; + this.state = 557; this.match(ImpalaSqlParser.KW_COMMENT); - this.state = 556; + this.state = 558; localContext._comment = this.stringLiteral(); } break; } - this.state = 561; + this.state = 563; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 24) { { - this.state = 559; + this.state = 561; this.match(ImpalaSqlParser.KW_LOCATION); - this.state = 560; + this.state = 562; localContext._location = this.stringLiteral(); } } @@ -1581,11 +1605,11 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 563; - this.match(ImpalaSqlParser.KW_CREATE); - this.state = 564; - this.match(ImpalaSqlParser.KW_ROLE); this.state = 565; + this.match(ImpalaSqlParser.KW_CREATE); + this.state = 566; + this.match(ImpalaSqlParser.KW_ROLE); + this.state = 567; localContext._name = this.identifier(); } } @@ -1610,168 +1634,168 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 567; - this.match(ImpalaSqlParser.KW_CREATE); this.state = 569; + this.match(ImpalaSqlParser.KW_CREATE); + this.state = 571; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 12) { { - this.state = 568; + this.state = 570; this.match(ImpalaSqlParser.KW_AGGREGATE); } } - this.state = 571; - this.match(ImpalaSqlParser.KW_FUNCTION); this.state = 573; + this.match(ImpalaSqlParser.KW_FUNCTION); + this.state = 575; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 93) { { - this.state = 572; + this.state = 574; this.ifNotExists(); } } - this.state = 575; + this.state = 577; this.functionNameCreate(); - this.state = 588; + this.state = 590; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 249) { + if (_la === 265) { { - this.state = 576; + this.state = 578; this.match(ImpalaSqlParser.LPAREN); - this.state = 585; + this.state = 587; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 8 || _la === 14 || ((((_la - 43)) & ~0x1F) === 0 && ((1 << (_la - 43)) & 37748835) !== 0) || ((((_la - 91)) & ~0x1F) === 0 && ((1 << (_la - 91)) & 2416443409) !== 0) || ((((_la - 123)) & ~0x1F) === 0 && ((1 << (_la - 123)) & 3221520879) !== 0) || ((((_la - 173)) & ~0x1F) === 0 && ((1 << (_la - 173)) & 16804099) !== 0) || ((((_la - 206)) & ~0x1F) === 0 && ((1 << (_la - 206)) & 74241) !== 0) || ((((_la - 258)) & ~0x1F) === 0 && ((1 << (_la - 258)) & 7873) !== 0)) { + if (_la === 8 || _la === 14 || ((((_la - 43)) & ~0x1F) === 0 && ((1 << (_la - 43)) & 37748835) !== 0) || ((((_la - 91)) & ~0x1F) === 0 && ((1 << (_la - 91)) & 2416443409) !== 0) || ((((_la - 123)) & ~0x1F) === 0 && ((1 << (_la - 123)) & 1610760439) !== 0) || ((((_la - 172)) & ~0x1F) === 0 && ((1 << (_la - 172)) & 8401155) !== 0) || ((((_la - 204)) & ~0x1F) === 0 && ((1 << (_la - 204)) & 4286652929) !== 0) || ((((_la - 236)) & ~0x1F) === 0 && ((1 << (_la - 236)) & 511) !== 0) || ((((_la - 274)) & ~0x1F) === 0 && ((1 << (_la - 274)) & 7873) !== 0)) { { - this.state = 577; + this.state = 579; this.type_(0); - this.state = 582; + this.state = 584; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 247) { + while (_la === 263) { { { - this.state = 578; + this.state = 580; this.match(ImpalaSqlParser.COMMA); - this.state = 579; + this.state = 581; this.type_(0); } } - this.state = 584; + this.state = 586; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 587; + this.state = 589; this.match(ImpalaSqlParser.RPAREN); } } - this.state = 590; + this.state = 592; this.match(ImpalaSqlParser.KW_RETURNS); - this.state = 591; + this.state = 593; this.type_(0); - this.state = 594; + this.state = 596; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 102) { { - this.state = 592; + this.state = 594; this.match(ImpalaSqlParser.KW_INTERMEDIATE); - this.state = 593; + this.state = 595; this.type_(0); } } - this.state = 596; + this.state = 598; this.match(ImpalaSqlParser.KW_LOCATION); - this.state = 597; + this.state = 599; this.match(ImpalaSqlParser.STRING); - this.state = 601; + this.state = 603; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 104) { { - this.state = 598; - this.match(ImpalaSqlParser.KW_INIT_FN); - this.state = 599; - this.match(ImpalaSqlParser.EQ); this.state = 600; + this.match(ImpalaSqlParser.KW_INIT_FN); + this.state = 601; + this.match(ImpalaSqlParser.EQ); + this.state = 602; this.match(ImpalaSqlParser.STRING); } } - this.state = 603; - this.match(ImpalaSqlParser.KW_UPDATE_FN); - this.state = 604; - this.match(ImpalaSqlParser.EQ); this.state = 605; - this.match(ImpalaSqlParser.STRING); + this.match(ImpalaSqlParser.KW_UPDATE_FN); this.state = 606; - this.match(ImpalaSqlParser.KW_MERGE_FN); - this.state = 607; this.match(ImpalaSqlParser.EQ); - this.state = 608; + this.state = 607; this.match(ImpalaSqlParser.STRING); - this.state = 612; + this.state = 608; + this.match(ImpalaSqlParser.KW_MERGE_FN); + this.state = 609; + this.match(ImpalaSqlParser.EQ); + this.state = 610; + this.match(ImpalaSqlParser.STRING); + this.state = 614; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 18) { { - this.state = 609; - this.match(ImpalaSqlParser.KW_PREPARE_FN); - this.state = 610; - this.match(ImpalaSqlParser.EQ); this.state = 611; + this.match(ImpalaSqlParser.KW_PREPARE_FN); + this.state = 612; + this.match(ImpalaSqlParser.EQ); + this.state = 613; this.match(ImpalaSqlParser.STRING); } } - this.state = 617; + this.state = 619; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 20) { { - this.state = 614; - this.match(ImpalaSqlParser.KW_CLOSEFN); - this.state = 615; - this.match(ImpalaSqlParser.EQ); this.state = 616; + this.match(ImpalaSqlParser.KW_CLOSEFN); + this.state = 617; + this.match(ImpalaSqlParser.EQ); + this.state = 618; this.match(ImpalaSqlParser.STRING); } } - this.state = 622; + this.state = 624; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 189) { + if (_la === 187) { { - this.state = 619; - this.match(ImpalaSqlParser.KW_SERIALIZE_FN); - this.state = 620; - this.match(ImpalaSqlParser.EQ); this.state = 621; + this.match(ImpalaSqlParser.KW_SERIALIZE_FN); + this.state = 622; + this.match(ImpalaSqlParser.EQ); + this.state = 623; this.match(ImpalaSqlParser.STRING); } } - this.state = 627; + this.state = 629; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 76) { { - this.state = 624; - this.match(ImpalaSqlParser.KW_FINALIZE_FN); - this.state = 625; - this.match(ImpalaSqlParser.EQ); this.state = 626; + this.match(ImpalaSqlParser.KW_FINALIZE_FN); + this.state = 627; + this.match(ImpalaSqlParser.EQ); + this.state = 628; this.match(ImpalaSqlParser.STRING); } } @@ -1799,81 +1823,81 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 629; + this.state = 631; this.match(ImpalaSqlParser.KW_CREATE); - this.state = 630; - this.match(ImpalaSqlParser.KW_FUNCTION); this.state = 632; + this.match(ImpalaSqlParser.KW_FUNCTION); + this.state = 634; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 93) { { - this.state = 631; + this.state = 633; this.ifNotExists(); } } - this.state = 634; + this.state = 636; this.functionNameCreate(); - this.state = 647; + this.state = 649; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 249) { + if (_la === 265) { { - this.state = 635; + this.state = 637; this.match(ImpalaSqlParser.LPAREN); - this.state = 644; + this.state = 646; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 8 || _la === 14 || ((((_la - 43)) & ~0x1F) === 0 && ((1 << (_la - 43)) & 37748835) !== 0) || ((((_la - 91)) & ~0x1F) === 0 && ((1 << (_la - 91)) & 2416443409) !== 0) || ((((_la - 123)) & ~0x1F) === 0 && ((1 << (_la - 123)) & 3221520879) !== 0) || ((((_la - 173)) & ~0x1F) === 0 && ((1 << (_la - 173)) & 16804099) !== 0) || ((((_la - 206)) & ~0x1F) === 0 && ((1 << (_la - 206)) & 74241) !== 0) || ((((_la - 258)) & ~0x1F) === 0 && ((1 << (_la - 258)) & 7873) !== 0)) { + if (_la === 8 || _la === 14 || ((((_la - 43)) & ~0x1F) === 0 && ((1 << (_la - 43)) & 37748835) !== 0) || ((((_la - 91)) & ~0x1F) === 0 && ((1 << (_la - 91)) & 2416443409) !== 0) || ((((_la - 123)) & ~0x1F) === 0 && ((1 << (_la - 123)) & 1610760439) !== 0) || ((((_la - 172)) & ~0x1F) === 0 && ((1 << (_la - 172)) & 8401155) !== 0) || ((((_la - 204)) & ~0x1F) === 0 && ((1 << (_la - 204)) & 4286652929) !== 0) || ((((_la - 236)) & ~0x1F) === 0 && ((1 << (_la - 236)) & 511) !== 0) || ((((_la - 274)) & ~0x1F) === 0 && ((1 << (_la - 274)) & 7873) !== 0)) { { - this.state = 636; + this.state = 638; this.type_(0); - this.state = 641; + this.state = 643; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 247) { + while (_la === 263) { { { - this.state = 637; + this.state = 639; this.match(ImpalaSqlParser.COMMA); - this.state = 638; + this.state = 640; this.type_(0); } } - this.state = 643; + this.state = 645; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 646; + this.state = 648; this.match(ImpalaSqlParser.RPAREN); } } - this.state = 651; + this.state = 653; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 161) { + if (_la === 160) { { - this.state = 649; + this.state = 651; this.match(ImpalaSqlParser.KW_RETURNS); - this.state = 650; + this.state = 652; this.type_(0); } } - this.state = 653; - this.match(ImpalaSqlParser.KW_LOCATION); - this.state = 654; - this.match(ImpalaSqlParser.STRING); this.state = 655; - this.match(ImpalaSqlParser.KW_SYMBOL); + this.match(ImpalaSqlParser.KW_LOCATION); this.state = 656; - this.match(ImpalaSqlParser.EQ); + this.match(ImpalaSqlParser.STRING); this.state = 657; + this.match(ImpalaSqlParser.KW_SYMBOL); + this.state = 658; + this.match(ImpalaSqlParser.EQ); + this.state = 659; localContext._symbol_ = this.stringLiteral(); } } @@ -1895,132 +1919,132 @@ export class ImpalaSqlParser extends SQLParserBase { let localContext = new AlterStatementContext(this.context, this.state); this.enterRule(localContext, 26, ImpalaSqlParser.RULE_alterStatement); try { - this.state = 677; + this.state = 679; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 50, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 659; + this.state = 661; this.alterDatabase(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 660; + this.state = 662; this.alterUnSetOrSetViewTblproperties(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 661; + this.state = 663; this.renameTable(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 662; + this.state = 664; this.alterViewOwner(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 663; + this.state = 665; this.alterView(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 664; + this.state = 666; this.renameView(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 665; + this.state = 667; this.dropPartitionByRangeOrValue(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 666; + this.state = 668; this.alterFormat(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 667; + this.state = 669; this.recoverPartitions(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 668; + this.state = 670; this.addPartitionByRangeOrValue(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 669; + this.state = 671; this.alterTableNonKuduOrKuduOnly(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 670; + this.state = 672; this.addSingleColumn(); } break; case 13: this.enterOuterAlt(localContext, 13); { - this.state = 671; + this.state = 673; this.replaceOrAddColumns(); } break; case 14: this.enterOuterAlt(localContext, 14); { - this.state = 672; + this.state = 674; this.changeColumnDefine(); } break; case 15: this.enterOuterAlt(localContext, 15); { - this.state = 673; + this.state = 675; this.alterStatsKey(); } break; case 16: this.enterOuterAlt(localContext, 16); { - this.state = 674; + this.state = 676; this.alterPartitionCache(); } break; case 17: this.enterOuterAlt(localContext, 17); { - this.state = 675; + this.state = 677; this.alterDropSingleColumn(); } break; case 18: this.enterOuterAlt(localContext, 18); { - this.state = 676; + this.state = 678; this.alterTableOwner(); } break; @@ -2047,26 +2071,26 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 679; - this.match(ImpalaSqlParser.KW_ALTER); - this.state = 680; - this.match(ImpalaSqlParser.KW_DATABASE); this.state = 681; - this.databaseNamePath(); + this.match(ImpalaSqlParser.KW_ALTER); this.state = 682; - this.match(ImpalaSqlParser.KW_SET); + this.match(ImpalaSqlParser.KW_DATABASE); this.state = 683; - this.match(ImpalaSqlParser.KW_OWNER); + this.databaseNamePath(); this.state = 684; + this.match(ImpalaSqlParser.KW_SET); + this.state = 685; + this.match(ImpalaSqlParser.KW_OWNER); + this.state = 686; _la = this.tokenStream.LA(1); - if(!(_la === 167 || _la === 206)) { + if(!(_la === 166 || _la === 204)) { this.errorHandler.recoverInline(this); } else { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 685; + this.state = 687; this.identifier(); } } @@ -2091,45 +2115,45 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 687; - this.match(ImpalaSqlParser.KW_ALTER); - this.state = 688; - this.match(ImpalaSqlParser.KW_TABLE); this.state = 689; - this.tableNamePath(); + this.match(ImpalaSqlParser.KW_ALTER); this.state = 690; - this.match(ImpalaSqlParser.KW_SET); + this.match(ImpalaSqlParser.KW_TABLE); this.state = 691; - this.match(ImpalaSqlParser.KW_COLUMN); + this.tableNamePath(); this.state = 692; - this.match(ImpalaSqlParser.KW_STATS); + this.match(ImpalaSqlParser.KW_SET); this.state = 693; - this.columnNamePath(); + this.match(ImpalaSqlParser.KW_COLUMN); this.state = 694; - this.match(ImpalaSqlParser.LPAREN); + this.match(ImpalaSqlParser.KW_STATS); this.state = 695; - this.statsKey(); + this.columnNamePath(); this.state = 696; - this.match(ImpalaSqlParser.EQ); + this.match(ImpalaSqlParser.LPAREN); this.state = 697; + this.statsKey(); + this.state = 698; + this.match(ImpalaSqlParser.EQ); + this.state = 699; this.stringLiteral(); - this.state = 703; + this.state = 705; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 247) { + if (_la === 263) { { - this.state = 698; - this.match(ImpalaSqlParser.COMMA); - this.state = 699; - this.statsKey(); this.state = 700; - this.match(ImpalaSqlParser.EQ); + this.match(ImpalaSqlParser.COMMA); this.state = 701; + this.statsKey(); + this.state = 702; + this.match(ImpalaSqlParser.EQ); + this.state = 703; this.stringLiteral(); } } - this.state = 705; + this.state = 707; this.match(ImpalaSqlParser.RPAREN); } } @@ -2154,50 +2178,50 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 707; - this.match(ImpalaSqlParser.KW_ALTER); - this.state = 708; - this.match(ImpalaSqlParser.KW_TABLE); this.state = 709; + this.match(ImpalaSqlParser.KW_ALTER); + this.state = 710; + this.match(ImpalaSqlParser.KW_TABLE); + this.state = 711; this.tableNamePath(); - this.state = 712; + this.state = 714; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 146) { + if (_la === 145) { { - this.state = 710; + this.state = 712; this.match(ImpalaSqlParser.KW_PARTITION); - this.state = 711; + this.state = 713; this.expression(); } } - this.state = 714; + this.state = 716; this.match(ImpalaSqlParser.KW_SET); - this.state = 725; + this.state = 727; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_CACHED: { { - this.state = 715; - this.match(ImpalaSqlParser.KW_CACHED); - this.state = 716; - this.match(ImpalaSqlParser.KW_IN); this.state = 717; + this.match(ImpalaSqlParser.KW_CACHED); + this.state = 718; + this.match(ImpalaSqlParser.KW_IN); + this.state = 719; this.stringLiteral(); - this.state = 722; + this.state = 724; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 53, this.context) ) { case 1: { - this.state = 718; - this.match(ImpalaSqlParser.KW_WITH); - this.state = 719; - this.match(ImpalaSqlParser.KW_REPLICATION); this.state = 720; - this.match(ImpalaSqlParser.EQ); + this.match(ImpalaSqlParser.KW_WITH); this.state = 721; + this.match(ImpalaSqlParser.KW_REPLICATION); + this.state = 722; + this.match(ImpalaSqlParser.EQ); + this.state = 723; this.number_(); } break; @@ -2207,7 +2231,7 @@ export class ImpalaSqlParser extends SQLParserBase { break; case ImpalaSqlParser.KW_UNCACHED: { - this.state = 724; + this.state = 726; this.match(ImpalaSqlParser.KW_UNCACHED); } break; @@ -2236,17 +2260,17 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 727; - this.match(ImpalaSqlParser.KW_ALTER); - this.state = 728; - this.match(ImpalaSqlParser.KW_TABLE); this.state = 729; - this.tableNamePath(); + this.match(ImpalaSqlParser.KW_ALTER); this.state = 730; - this.match(ImpalaSqlParser.KW_CHANGE); + this.match(ImpalaSqlParser.KW_TABLE); this.state = 731; - this.match(ImpalaSqlParser.KW_COLUMN); + this.tableNamePath(); this.state = 732; + this.match(ImpalaSqlParser.KW_CHANGE); + this.state = 733; + this.match(ImpalaSqlParser.KW_COLUMN); + this.state = 734; this.columnSpecWithKudu(); } } @@ -2270,25 +2294,25 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 734; - this.match(ImpalaSqlParser.KW_ALTER); - this.state = 735; - this.match(ImpalaSqlParser.KW_TABLE); this.state = 736; - this.tableNamePath(); + this.match(ImpalaSqlParser.KW_ALTER); this.state = 737; - this.match(ImpalaSqlParser.KW_DROP); + this.match(ImpalaSqlParser.KW_TABLE); + this.state = 738; + this.tableNamePath(); this.state = 739; + this.match(ImpalaSqlParser.KW_DROP); + this.state = 741; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 55, this.context) ) { case 1: { - this.state = 738; + this.state = 740; this.match(ImpalaSqlParser.KW_COLUMN); } break; } - this.state = 741; + this.state = 743; this.columnNamePath(); } } @@ -2313,26 +2337,26 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 743; - this.match(ImpalaSqlParser.KW_ALTER); - this.state = 744; - this.match(ImpalaSqlParser.KW_TABLE); this.state = 745; - this.tableNamePath(); + this.match(ImpalaSqlParser.KW_ALTER); this.state = 746; - this.match(ImpalaSqlParser.KW_SET); + this.match(ImpalaSqlParser.KW_TABLE); this.state = 747; - this.match(ImpalaSqlParser.KW_OWNER); + this.tableNamePath(); this.state = 748; + this.match(ImpalaSqlParser.KW_SET); + this.state = 749; + this.match(ImpalaSqlParser.KW_OWNER); + this.state = 750; _la = this.tokenStream.LA(1); - if(!(_la === 167 || _la === 206)) { + if(!(_la === 166 || _la === 204)) { this.errorHandler.recoverInline(this); } else { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 749; + this.state = 751; this.identifier(); } } @@ -2358,31 +2382,31 @@ export class ImpalaSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 751; - this.match(ImpalaSqlParser.KW_ALTER); - this.state = 752; - this.match(ImpalaSqlParser.KW_TABLE); this.state = 753; + this.match(ImpalaSqlParser.KW_ALTER); + this.state = 754; + this.match(ImpalaSqlParser.KW_TABLE); + this.state = 755; this.tableNamePath(); - this.state = 759; + this.state = 761; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_REPLACE: { - this.state = 754; + this.state = 756; this.match(ImpalaSqlParser.KW_REPLACE); } break; case ImpalaSqlParser.KW_ADD: { - this.state = 755; - this.match(ImpalaSqlParser.KW_ADD); this.state = 757; + this.match(ImpalaSqlParser.KW_ADD); + this.state = 759; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 93) { { - this.state = 756; + this.state = 758; this.ifNotExists(); } } @@ -2392,31 +2416,31 @@ export class ImpalaSqlParser extends SQLParserBase { default: throw new antlr.NoViableAltException(this); } - this.state = 761; - this.match(ImpalaSqlParser.KW_COLUMNS); - this.state = 762; - this.match(ImpalaSqlParser.LPAREN); this.state = 763; + this.match(ImpalaSqlParser.KW_COLUMNS); + this.state = 764; + this.match(ImpalaSqlParser.LPAREN); + this.state = 765; this.columnSpecWithKudu(); - this.state = 768; + this.state = 770; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 58, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 764; + this.state = 766; this.match(ImpalaSqlParser.COMMA); - this.state = 765; + this.state = 767; this.columnSpecWithKudu(); } } } - this.state = 770; + this.state = 772; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 58, this.context); } - this.state = 771; + this.state = 773; this.match(ImpalaSqlParser.RPAREN); } } @@ -2441,27 +2465,27 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 773; - this.match(ImpalaSqlParser.KW_ALTER); - this.state = 774; - this.match(ImpalaSqlParser.KW_TABLE); this.state = 775; - this.tableNamePath(); + this.match(ImpalaSqlParser.KW_ALTER); this.state = 776; - this.match(ImpalaSqlParser.KW_ADD); + this.match(ImpalaSqlParser.KW_TABLE); this.state = 777; - this.match(ImpalaSqlParser.KW_COLUMN); + this.tableNamePath(); + this.state = 778; + this.match(ImpalaSqlParser.KW_ADD); this.state = 779; + this.match(ImpalaSqlParser.KW_COLUMN); + this.state = 781; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 93) { { - this.state = 778; + this.state = 780; this.ifNotExists(); } } - this.state = 781; + this.state = 783; this.createColumnSpecWithKudu(); } } @@ -2485,34 +2509,34 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 783; - this.match(ImpalaSqlParser.KW_ALTER); - this.state = 784; - this.match(ImpalaSqlParser.KW_TABLE); this.state = 785; - this.tableNamePath(); - this.state = 786; this.match(ImpalaSqlParser.KW_ALTER); + this.state = 786; + this.match(ImpalaSqlParser.KW_TABLE); + this.state = 787; + this.tableNamePath(); this.state = 788; + this.match(ImpalaSqlParser.KW_ALTER); + this.state = 790; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 60, this.context) ) { case 1: { - this.state = 787; + this.state = 789; this.match(ImpalaSqlParser.KW_COLUMN); } break; } - this.state = 790; + this.state = 792; this.columnNamePath(); - this.state = 799; + this.state = 801; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_SET: { - this.state = 791; + this.state = 793; this.match(ImpalaSqlParser.KW_SET); - this.state = 795; + this.state = 797; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_BLOCK_SIZE: @@ -2520,15 +2544,15 @@ export class ImpalaSqlParser extends SQLParserBase { case ImpalaSqlParser.KW_DEFAULT: case ImpalaSqlParser.KW_ENCODING: { - this.state = 792; + this.state = 794; this.kuduStorageAttr(); } break; case ImpalaSqlParser.KW_COMMENT: { - this.state = 793; + this.state = 795; this.match(ImpalaSqlParser.KW_COMMENT); - this.state = 794; + this.state = 796; this.stringLiteral(); } break; @@ -2539,9 +2563,9 @@ export class ImpalaSqlParser extends SQLParserBase { break; case ImpalaSqlParser.KW_DROP: { - this.state = 797; + this.state = 799; this.match(ImpalaSqlParser.KW_DROP); - this.state = 798; + this.state = 800; this.match(ImpalaSqlParser.KW_DEFAULT); } break; @@ -2571,51 +2595,51 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 801; - this.match(ImpalaSqlParser.KW_ALTER); - this.state = 802; - this.match(ImpalaSqlParser.KW_TABLE); this.state = 803; - this.tableNamePath(); + this.match(ImpalaSqlParser.KW_ALTER); this.state = 804; - this.match(ImpalaSqlParser.KW_ADD); + this.match(ImpalaSqlParser.KW_TABLE); + this.state = 805; + this.tableNamePath(); this.state = 806; + this.match(ImpalaSqlParser.KW_ADD); + this.state = 808; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 93) { { - this.state = 805; + this.state = 807; this.ifNotExists(); } } - this.state = 820; + this.state = 822; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_PARTITION: { - this.state = 808; + this.state = 810; this.match(ImpalaSqlParser.KW_PARTITION); - this.state = 809; + this.state = 811; this.expression(); - this.state = 812; + this.state = 814; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 24) { { - this.state = 810; + this.state = 812; this.match(ImpalaSqlParser.KW_LOCATION); - this.state = 811; + this.state = 813; this.stringLiteral(); } } - this.state = 815; + this.state = 817; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 30 || _la === 199) { + if (_la === 30 || _la === 197) { { - this.state = 814; + this.state = 816; this.cacheSpec(); } } @@ -2624,11 +2648,11 @@ export class ImpalaSqlParser extends SQLParserBase { break; case ImpalaSqlParser.KW_RANGE: { - this.state = 817; - this.match(ImpalaSqlParser.KW_RANGE); - this.state = 818; - this.match(ImpalaSqlParser.KW_PARTITION); this.state = 819; + this.match(ImpalaSqlParser.KW_RANGE); + this.state = 820; + this.match(ImpalaSqlParser.KW_PARTITION); + this.state = 821; this.kuduPartitionSpec(); } break; @@ -2658,35 +2682,35 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 822; - this.match(ImpalaSqlParser.KW_ALTER); - this.state = 823; - this.match(ImpalaSqlParser.KW_TABLE); this.state = 824; + this.match(ImpalaSqlParser.KW_ALTER); + this.state = 825; + this.match(ImpalaSqlParser.KW_TABLE); + this.state = 826; this.tableNamePath(); - this.state = 827; + this.state = 829; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 146) { + if (_la === 145) { { - this.state = 825; + this.state = 827; this.match(ImpalaSqlParser.KW_PARTITION); - this.state = 826; + this.state = 828; this.expression(); } } - this.state = 829; + this.state = 831; this.match(ImpalaSqlParser.KW_SET); - this.state = 841; + this.state = 843; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_FILEFORMAT: { { - this.state = 830; + this.state = 832; this.match(ImpalaSqlParser.KW_FILEFORMAT); - this.state = 831; + this.state = 833; this.fileFormat(); } } @@ -2694,11 +2718,11 @@ export class ImpalaSqlParser extends SQLParserBase { case ImpalaSqlParser.KW_ROW: { { - this.state = 832; - this.match(ImpalaSqlParser.KW_ROW); - this.state = 833; - this.match(ImpalaSqlParser.KW_FORMAT); this.state = 834; + this.match(ImpalaSqlParser.KW_ROW); + this.state = 835; + this.match(ImpalaSqlParser.KW_FORMAT); + this.state = 836; this.rowFormat(); } } @@ -2706,9 +2730,9 @@ export class ImpalaSqlParser extends SQLParserBase { case ImpalaSqlParser.KW_LOCATION: { { - this.state = 835; + this.state = 837; this.match(ImpalaSqlParser.KW_LOCATION); - this.state = 836; + this.state = 838; this.stringLiteral(); } } @@ -2716,9 +2740,9 @@ export class ImpalaSqlParser extends SQLParserBase { case ImpalaSqlParser.KW_TBLPROPERTIES: { { - this.state = 837; + this.state = 839; this.match(ImpalaSqlParser.KW_TBLPROPERTIES); - this.state = 838; + this.state = 840; localContext._tblProp = this.properties(); } } @@ -2726,9 +2750,9 @@ export class ImpalaSqlParser extends SQLParserBase { case ImpalaSqlParser.KW_SERDEPROPERTIES: { { - this.state = 839; + this.state = 841; this.match(ImpalaSqlParser.KW_SERDEPROPERTIES); - this.state = 840; + this.state = 842; localContext._tblProp = this.properties(); } } @@ -2758,15 +2782,15 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 843; - this.match(ImpalaSqlParser.KW_ALTER); - this.state = 844; - this.match(ImpalaSqlParser.KW_TABLE); this.state = 845; - this.tableNamePath(); + this.match(ImpalaSqlParser.KW_ALTER); this.state = 846; - this.match(ImpalaSqlParser.KW_RECOVER); + this.match(ImpalaSqlParser.KW_TABLE); this.state = 847; + this.tableNamePath(); + this.state = 848; + this.match(ImpalaSqlParser.KW_RECOVER); + this.state = 849; this.match(ImpalaSqlParser.KW_PARTITIONS); } } @@ -2791,39 +2815,39 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 849; - this.match(ImpalaSqlParser.KW_ALTER); - this.state = 850; - this.match(ImpalaSqlParser.KW_TABLE); this.state = 851; - this.tableNamePath(); + this.match(ImpalaSqlParser.KW_ALTER); this.state = 852; - this.match(ImpalaSqlParser.KW_DROP); + this.match(ImpalaSqlParser.KW_TABLE); + this.state = 853; + this.tableNamePath(); this.state = 854; + this.match(ImpalaSqlParser.KW_DROP); + this.state = 856; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 93) { { - this.state = 853; + this.state = 855; this.ifExists(); } } - this.state = 864; + this.state = 866; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_PARTITION: { - this.state = 856; + this.state = 858; this.match(ImpalaSqlParser.KW_PARTITION); - this.state = 857; - this.expression(); this.state = 859; + this.expression(); + this.state = 861; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 22) { { - this.state = 858; + this.state = 860; this.match(ImpalaSqlParser.KW_PURGE); } } @@ -2832,11 +2856,11 @@ export class ImpalaSqlParser extends SQLParserBase { break; case ImpalaSqlParser.KW_RANGE: { - this.state = 861; - this.match(ImpalaSqlParser.KW_RANGE); - this.state = 862; - this.match(ImpalaSqlParser.KW_PARTITION); this.state = 863; + this.match(ImpalaSqlParser.KW_RANGE); + this.state = 864; + this.match(ImpalaSqlParser.KW_PARTITION); + this.state = 865; this.kuduPartitionSpec(); } break; @@ -2866,25 +2890,25 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 866; - this.match(ImpalaSqlParser.KW_ALTER); - this.state = 867; - this.match(ImpalaSqlParser.KW_VIEW); this.state = 868; - this.viewNamePath(); + this.match(ImpalaSqlParser.KW_ALTER); + this.state = 869; + this.match(ImpalaSqlParser.KW_VIEW); this.state = 870; + this.viewNamePath(); + this.state = 872; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 249) { + if (_la === 265) { { - this.state = 869; + this.state = 871; this.viewColumns(); } } - this.state = 872; + this.state = 874; this.match(ImpalaSqlParser.KW_AS); - this.state = 873; + this.state = 875; this.queryStatement(); } } @@ -2908,17 +2932,17 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 875; - this.match(ImpalaSqlParser.KW_ALTER); - this.state = 876; - this.match(ImpalaSqlParser.KW_VIEW); this.state = 877; - this.viewNamePath(); + this.match(ImpalaSqlParser.KW_ALTER); this.state = 878; - this.match(ImpalaSqlParser.KW_RENAME); + this.match(ImpalaSqlParser.KW_VIEW); this.state = 879; - this.match(ImpalaSqlParser.KW_TO); + this.viewNamePath(); this.state = 880; + this.match(ImpalaSqlParser.KW_RENAME); + this.state = 881; + this.match(ImpalaSqlParser.KW_TO); + this.state = 882; this.viewNamePath(); } } @@ -2943,26 +2967,26 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 882; - this.match(ImpalaSqlParser.KW_ALTER); - this.state = 883; - this.match(ImpalaSqlParser.KW_VIEW); this.state = 884; - this.viewNamePath(); + this.match(ImpalaSqlParser.KW_ALTER); this.state = 885; - this.match(ImpalaSqlParser.KW_SET); + this.match(ImpalaSqlParser.KW_VIEW); this.state = 886; - this.match(ImpalaSqlParser.KW_OWNER); + this.viewNamePath(); this.state = 887; + this.match(ImpalaSqlParser.KW_SET); + this.state = 888; + this.match(ImpalaSqlParser.KW_OWNER); + this.state = 889; _la = this.tokenStream.LA(1); - if(!(_la === 167 || _la === 206)) { + if(!(_la === 166 || _la === 204)) { this.errorHandler.recoverInline(this); } else { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 888; + this.state = 890; this.qualifiedName(); } } @@ -2986,17 +3010,17 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 890; - this.match(ImpalaSqlParser.KW_ALTER); - this.state = 891; - this.match(ImpalaSqlParser.KW_TABLE); this.state = 892; - this.tableNamePath(); + this.match(ImpalaSqlParser.KW_ALTER); this.state = 893; - this.match(ImpalaSqlParser.KW_RENAME); + this.match(ImpalaSqlParser.KW_TABLE); this.state = 894; - this.match(ImpalaSqlParser.KW_TO); + this.tableNamePath(); this.state = 895; + this.match(ImpalaSqlParser.KW_RENAME); + this.state = 896; + this.match(ImpalaSqlParser.KW_TO); + this.state = 897; this.tableNamePath(); } } @@ -3021,24 +3045,24 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 897; - this.match(ImpalaSqlParser.KW_ALTER); - this.state = 898; - this.match(ImpalaSqlParser.KW_VIEW); this.state = 899; - this.viewNamePath(); + this.match(ImpalaSqlParser.KW_ALTER); this.state = 900; + this.match(ImpalaSqlParser.KW_VIEW); + this.state = 901; + this.viewNamePath(); + this.state = 902; _la = this.tokenStream.LA(1); - if(!(_la === 177 || _la === 204)) { + if(!(_la === 176 || _la === 202)) { this.errorHandler.recoverInline(this); } else { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 901; + this.state = 903; this.match(ImpalaSqlParser.KW_TBLPROPERTIES); - this.state = 902; + this.state = 904; localContext._tblProp = this.properties(); } } @@ -3063,29 +3087,29 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 904; - this.match(ImpalaSqlParser.KW_TRUNCATE); this.state = 906; + this.match(ImpalaSqlParser.KW_TRUNCATE); + this.state = 908; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 190) { + if (_la === 188) { { - this.state = 905; + this.state = 907; this.match(ImpalaSqlParser.KW_TABLE); } } - this.state = 909; + this.state = 911; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 93) { { - this.state = 908; + this.state = 910; this.ifExists(); } } - this.state = 911; + this.state = 913; this.tableNamePath(); } } @@ -3110,24 +3134,24 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 913; - this.match(ImpalaSqlParser.KW_DESCRIBE); this.state = 915; + this.match(ImpalaSqlParser.KW_DESCRIBE); + this.state = 917; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 46) { { - this.state = 914; + this.state = 916; this.match(ImpalaSqlParser.KW_DATABASE); } } - this.state = 918; + this.state = 920; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 69 || _la === 80) { { - this.state = 917; + this.state = 919; _la = this.tokenStream.LA(1); if(!(_la === 69 || _la === 80)) { this.errorHandler.recoverInline(this); @@ -3139,7 +3163,7 @@ export class ImpalaSqlParser extends SQLParserBase { } } - this.state = 920; + this.state = 922; this.qualifiedName(); } } @@ -3161,20 +3185,20 @@ export class ImpalaSqlParser extends SQLParserBase { let localContext = new ComputeStatementContext(this.context, this.state); this.enterRule(localContext, 68, ImpalaSqlParser.RULE_computeStatement); try { - this.state = 924; + this.state = 926; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 77, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 922; + this.state = 924; this.computeStats(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 923; + this.state = 925; this.computeIncrementalStats(); } break; @@ -3201,49 +3225,49 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 926; - this.match(ImpalaSqlParser.KW_COMPUTE); - this.state = 927; - this.match(ImpalaSqlParser.KW_STATS); this.state = 928; - this.tableNamePath(); + this.match(ImpalaSqlParser.KW_COMPUTE); + this.state = 929; + this.match(ImpalaSqlParser.KW_STATS); this.state = 930; + this.tableNamePath(); + this.state = 932; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 78, this.context) ) { case 1: { - this.state = 929; + this.state = 931; this.columnAliases(); } break; } - this.state = 944; + this.state = 946; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 192) { + if (_la === 190) { { - this.state = 932; - this.match(ImpalaSqlParser.KW_TABLESAMPLE); - this.state = 933; - this.match(ImpalaSqlParser.KW_SYSTEM); this.state = 934; - this.match(ImpalaSqlParser.LPAREN); + this.match(ImpalaSqlParser.KW_TABLESAMPLE); this.state = 935; - this.number_(); + this.match(ImpalaSqlParser.KW_SYSTEM); this.state = 936; + this.match(ImpalaSqlParser.LPAREN); + this.state = 937; + this.number_(); + this.state = 938; this.match(ImpalaSqlParser.RPAREN); - this.state = 942; + this.state = 944; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 158) { + if (_la === 157) { { - this.state = 937; - this.match(ImpalaSqlParser.KW_REPEATABLE); - this.state = 938; - this.match(ImpalaSqlParser.LPAREN); this.state = 939; - this.number_(); + this.match(ImpalaSqlParser.KW_REPEATABLE); this.state = 940; + this.match(ImpalaSqlParser.LPAREN); + this.state = 941; + this.number_(); + this.state = 942; this.match(ImpalaSqlParser.RPAREN); } } @@ -3274,23 +3298,27 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 946; - this.match(ImpalaSqlParser.KW_COMPUTE); - this.state = 947; - this.match(ImpalaSqlParser.KW_INCREMENTAL); this.state = 948; - this.match(ImpalaSqlParser.KW_STATS); + this.match(ImpalaSqlParser.KW_COMPUTE); this.state = 949; + this.match(ImpalaSqlParser.KW_INCREMENTAL); + this.state = 950; + this.match(ImpalaSqlParser.KW_STATS); + this.state = 951; this.tableNamePath(); - this.state = 952; + this.state = 957; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 146) { + if (_la === 145) { { - this.state = 950; + this.state = 952; this.match(ImpalaSqlParser.KW_PARTITION); - this.state = 951; + this.state = 953; + this.match(ImpalaSqlParser.LPAREN); + this.state = 954; this.expression(); + this.state = 955; + this.match(ImpalaSqlParser.RPAREN); } } @@ -3314,48 +3342,48 @@ export class ImpalaSqlParser extends SQLParserBase { let localContext = new DropStatementContext(this.context, this.state); this.enterRule(localContext, 74, ImpalaSqlParser.RULE_dropStatement); try { - this.state = 960; + this.state = 965; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 82, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 954; + this.state = 959; this.dropRole(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 955; + this.state = 960; this.dropFunction(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 956; + this.state = 961; this.dropIncrementalStats(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 957; + this.state = 962; this.dropView(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 958; + this.state = 963; this.dropTable(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 959; + this.state = 964; this.dropSchema(); } break; @@ -3382,37 +3410,37 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 962; + this.state = 967; this.match(ImpalaSqlParser.KW_DROP); - this.state = 963; + this.state = 968; _la = this.tokenStream.LA(1); - if(!(_la === 46 || _la === 171)) { + if(!(_la === 46 || _la === 170)) { this.errorHandler.recoverInline(this); } else { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 965; + this.state = 970; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 93) { { - this.state = 964; + this.state = 969; this.ifExists(); } } - this.state = 967; + this.state = 972; this.databaseNamePath(); - this.state = 969; + this.state = 974; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 27 || _la === 160) { + if (_la === 27 || _la === 159) { { - this.state = 968; + this.state = 973; _la = this.tokenStream.LA(1); - if(!(_la === 27 || _la === 160)) { + if(!(_la === 27 || _la === 159)) { this.errorHandler.recoverInline(this); } else { @@ -3445,21 +3473,21 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 971; + this.state = 976; this.match(ImpalaSqlParser.KW_DROP); - this.state = 972; + this.state = 977; this.match(ImpalaSqlParser.KW_VIEW); - this.state = 974; + this.state = 979; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 93) { { - this.state = 973; + this.state = 978; this.ifExists(); } } - this.state = 976; + this.state = 981; this.viewNamePath(); } } @@ -3484,28 +3512,28 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 978; + this.state = 983; this.match(ImpalaSqlParser.KW_DROP); - this.state = 979; + this.state = 984; this.match(ImpalaSqlParser.KW_TABLE); - this.state = 981; + this.state = 986; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 93) { { - this.state = 980; + this.state = 985; this.ifExists(); } } - this.state = 983; + this.state = 988; this.tableNamePath(); - this.state = 985; + this.state = 990; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 22) { { - this.state = 984; + this.state = 989; this.match(ImpalaSqlParser.KW_PURGE); } } @@ -3533,30 +3561,30 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 987; + this.state = 992; this.match(ImpalaSqlParser.KW_DROP); - this.state = 989; + this.state = 994; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 96) { { - this.state = 988; + this.state = 993; this.match(ImpalaSqlParser.KW_INCREMENTAL); } } - this.state = 991; + this.state = 996; this.match(ImpalaSqlParser.KW_STATS); - this.state = 992; + this.state = 997; this.tableNamePath(); - this.state = 995; + this.state = 1000; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 146) { + if (_la === 145) { { - this.state = 993; + this.state = 998; this.match(ImpalaSqlParser.KW_PARTITION); - this.state = 994; + this.state = 999; this.expression(); } } @@ -3584,66 +3612,66 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 997; + this.state = 1002; this.match(ImpalaSqlParser.KW_DROP); - this.state = 999; + this.state = 1004; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 12) { { - this.state = 998; + this.state = 1003; this.match(ImpalaSqlParser.KW_AGGREGATE); } } - this.state = 1001; + this.state = 1006; this.match(ImpalaSqlParser.KW_FUNCTION); - this.state = 1003; + this.state = 1008; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 93) { { - this.state = 1002; + this.state = 1007; this.ifExists(); } } - this.state = 1005; + this.state = 1010; this.functionNamePath(); - this.state = 1018; + this.state = 1023; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 94, this.context) ) { case 1: { - this.state = 1006; + this.state = 1011; this.match(ImpalaSqlParser.LPAREN); - this.state = 1015; + this.state = 1020; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 8 || _la === 14 || ((((_la - 43)) & ~0x1F) === 0 && ((1 << (_la - 43)) & 37748835) !== 0) || ((((_la - 91)) & ~0x1F) === 0 && ((1 << (_la - 91)) & 2416443409) !== 0) || ((((_la - 123)) & ~0x1F) === 0 && ((1 << (_la - 123)) & 3221520879) !== 0) || ((((_la - 173)) & ~0x1F) === 0 && ((1 << (_la - 173)) & 16804099) !== 0) || ((((_la - 206)) & ~0x1F) === 0 && ((1 << (_la - 206)) & 74241) !== 0) || ((((_la - 258)) & ~0x1F) === 0 && ((1 << (_la - 258)) & 7873) !== 0)) { + if (_la === 8 || _la === 14 || ((((_la - 43)) & ~0x1F) === 0 && ((1 << (_la - 43)) & 37748835) !== 0) || ((((_la - 91)) & ~0x1F) === 0 && ((1 << (_la - 91)) & 2416443409) !== 0) || ((((_la - 123)) & ~0x1F) === 0 && ((1 << (_la - 123)) & 1610760439) !== 0) || ((((_la - 172)) & ~0x1F) === 0 && ((1 << (_la - 172)) & 8401155) !== 0) || ((((_la - 204)) & ~0x1F) === 0 && ((1 << (_la - 204)) & 4286652929) !== 0) || ((((_la - 236)) & ~0x1F) === 0 && ((1 << (_la - 236)) & 511) !== 0) || ((((_la - 274)) & ~0x1F) === 0 && ((1 << (_la - 274)) & 7873) !== 0)) { { - this.state = 1007; - this.type_(0); this.state = 1012; + this.type_(0); + this.state = 1017; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 247) { + while (_la === 263) { { { - this.state = 1008; + this.state = 1013; this.match(ImpalaSqlParser.COMMA); - this.state = 1009; + this.state = 1014; this.type_(0); } } - this.state = 1014; + this.state = 1019; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 1017; + this.state = 1022; this.match(ImpalaSqlParser.RPAREN); } break; @@ -3670,11 +3698,11 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1020; + this.state = 1025; this.match(ImpalaSqlParser.KW_DROP); - this.state = 1021; + this.state = 1026; this.match(ImpalaSqlParser.KW_ROLE); - this.state = 1022; + this.state = 1027; localContext._name = this.identifier(); } } @@ -3696,20 +3724,20 @@ export class ImpalaSqlParser extends SQLParserBase { let localContext = new GrantStatementContext(this.context, this.state); this.enterRule(localContext, 88, ImpalaSqlParser.RULE_grantStatement); try { - this.state = 1026; + this.state = 1031; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 95, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1024; + this.state = 1029; this.grantRole(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1025; + this.state = 1030; this.grant(); } break; @@ -3735,17 +3763,17 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1028; - this.match(ImpalaSqlParser.KW_GRANT); - this.state = 1029; - this.match(ImpalaSqlParser.KW_ROLE); - this.state = 1030; - this.identifier(); - this.state = 1031; - this.match(ImpalaSqlParser.KW_TO); - this.state = 1032; - this.match(ImpalaSqlParser.KW_GROUP); this.state = 1033; + this.match(ImpalaSqlParser.KW_GRANT); + this.state = 1034; + this.match(ImpalaSqlParser.KW_ROLE); + this.state = 1035; + this.identifier(); + this.state = 1036; + this.match(ImpalaSqlParser.KW_TO); + this.state = 1037; + this.match(ImpalaSqlParser.KW_GROUP); + this.state = 1038; this.identifier(); } } @@ -3770,27 +3798,27 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1035; - this.match(ImpalaSqlParser.KW_GRANT); - this.state = 1036; - this.privilege(); - this.state = 1037; - this.match(ImpalaSqlParser.KW_ON); - this.state = 1038; - this.objectType(); this.state = 1040; + this.match(ImpalaSqlParser.KW_GRANT); + this.state = 1041; + this.privilege(); + this.state = 1042; + this.match(ImpalaSqlParser.KW_ON); + this.state = 1043; + this.objectType(); + this.state = 1045; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 14 || ((((_la - 43)) & ~0x1F) === 0 && ((1 << (_la - 43)) & 37748835) !== 0) || ((((_la - 91)) & ~0x1F) === 0 && ((1 << (_la - 91)) & 268959761) !== 0) || ((((_la - 123)) & ~0x1F) === 0 && ((1 << (_la - 123)) & 3221520879) !== 0) || ((((_la - 173)) & ~0x1F) === 0 && ((1 << (_la - 173)) & 16802051) !== 0) || ((((_la - 206)) & ~0x1F) === 0 && ((1 << (_la - 206)) & 74241) !== 0) || ((((_la - 258)) & ~0x1F) === 0 && ((1 << (_la - 258)) & 705) !== 0)) { + if (_la === 14 || ((((_la - 43)) & ~0x1F) === 0 && ((1 << (_la - 43)) & 37748835) !== 0) || ((((_la - 91)) & ~0x1F) === 0 && ((1 << (_la - 91)) & 2416443409) !== 0) || ((((_la - 123)) & ~0x1F) === 0 && ((1 << (_la - 123)) & 1610760439) !== 0) || ((((_la - 172)) & ~0x1F) === 0 && ((1 << (_la - 172)) & 8401155) !== 0) || ((((_la - 204)) & ~0x1F) === 0 && ((1 << (_la - 204)) & 134291969) !== 0) || ((((_la - 274)) & ~0x1F) === 0 && ((1 << (_la - 274)) & 705) !== 0)) { { - this.state = 1039; + this.state = 1044; this.qualifiedName(); } } - this.state = 1042; + this.state = 1047; this.match(ImpalaSqlParser.KW_TO); - this.state = 1043; + this.state = 1048; localContext._grantee = this.principal(); } } @@ -3812,20 +3840,20 @@ export class ImpalaSqlParser extends SQLParserBase { let localContext = new RevokeStatementContext(this.context, this.state); this.enterRule(localContext, 94, ImpalaSqlParser.RULE_revokeStatement); try { - this.state = 1047; + this.state = 1052; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 97, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1045; + this.state = 1050; this.revokeRole(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1046; + this.state = 1051; this.revoke(); } break; @@ -3851,17 +3879,17 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1049; - this.match(ImpalaSqlParser.KW_REVOKE); - this.state = 1050; - this.match(ImpalaSqlParser.KW_ROLE); - this.state = 1051; - this.identifier(); - this.state = 1052; - this.match(ImpalaSqlParser.KW_FROM); - this.state = 1053; - this.match(ImpalaSqlParser.KW_GROUP); this.state = 1054; + this.match(ImpalaSqlParser.KW_REVOKE); + this.state = 1055; + this.match(ImpalaSqlParser.KW_ROLE); + this.state = 1056; + this.identifier(); + this.state = 1057; + this.match(ImpalaSqlParser.KW_FROM); + this.state = 1058; + this.match(ImpalaSqlParser.KW_GROUP); + this.state = 1059; this.identifier(); } } @@ -3886,62 +3914,62 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1056; + this.state = 1061; this.match(ImpalaSqlParser.KW_REVOKE); - this.state = 1060; + this.state = 1065; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 86) { { - this.state = 1057; + this.state = 1062; this.match(ImpalaSqlParser.KW_GRANT); - this.state = 1058; + this.state = 1063; this.match(ImpalaSqlParser.KW_OPTION); - this.state = 1059; + this.state = 1064; this.match(ImpalaSqlParser.KW_FOR); } } - this.state = 1062; + this.state = 1067; this.privilege(); - this.state = 1063; + this.state = 1068; this.match(ImpalaSqlParser.KW_ON); - this.state = 1064; + this.state = 1069; this.objectType(); - this.state = 1066; + this.state = 1071; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 14 || ((((_la - 43)) & ~0x1F) === 0 && ((1 << (_la - 43)) & 37748835) !== 0) || ((((_la - 91)) & ~0x1F) === 0 && ((1 << (_la - 91)) & 268959761) !== 0) || ((((_la - 123)) & ~0x1F) === 0 && ((1 << (_la - 123)) & 3221520879) !== 0) || ((((_la - 173)) & ~0x1F) === 0 && ((1 << (_la - 173)) & 16802051) !== 0) || ((((_la - 206)) & ~0x1F) === 0 && ((1 << (_la - 206)) & 74241) !== 0) || ((((_la - 258)) & ~0x1F) === 0 && ((1 << (_la - 258)) & 705) !== 0)) { + if (_la === 14 || ((((_la - 43)) & ~0x1F) === 0 && ((1 << (_la - 43)) & 37748835) !== 0) || ((((_la - 91)) & ~0x1F) === 0 && ((1 << (_la - 91)) & 2416443409) !== 0) || ((((_la - 123)) & ~0x1F) === 0 && ((1 << (_la - 123)) & 1610760439) !== 0) || ((((_la - 172)) & ~0x1F) === 0 && ((1 << (_la - 172)) & 8401155) !== 0) || ((((_la - 204)) & ~0x1F) === 0 && ((1 << (_la - 204)) & 134291969) !== 0) || ((((_la - 274)) & ~0x1F) === 0 && ((1 << (_la - 274)) & 705) !== 0)) { { - this.state = 1065; + this.state = 1070; this.qualifiedName(); } } - this.state = 1068; + this.state = 1073; this.match(ImpalaSqlParser.KW_FROM); - this.state = 1074; + this.state = 1079; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 101, this.context) ) { case 1: { - this.state = 1069; + this.state = 1074; localContext._grantee = this.principal(); } break; case 2: { - this.state = 1071; + this.state = 1076; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 167) { + if (_la === 166) { { - this.state = 1070; + this.state = 1075; this.match(ImpalaSqlParser.KW_ROLE); } } - this.state = 1073; + this.state = 1078; this.identifier(); } break; @@ -3969,82 +3997,82 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1077; + this.state = 1082; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 218) { + if (_la === 216) { { - this.state = 1076; + this.state = 1081; this.with_(); } } - this.state = 1079; + this.state = 1084; this.match(ImpalaSqlParser.KW_INSERT); - this.state = 1080; + this.state = 1085; _la = this.tokenStream.LA(1); - if(!(_la === 103 || _la === 145)) { + if(!(_la === 103 || _la === 144)) { this.errorHandler.recoverInline(this); } else { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1082; + this.state = 1087; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 190) { + if (_la === 188) { { - this.state = 1081; + this.state = 1086; this.match(ImpalaSqlParser.KW_TABLE); } } - this.state = 1084; + this.state = 1089; this.tableNamePath(); - this.state = 1086; + this.state = 1091; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 104, this.context) ) { case 1: { - this.state = 1085; + this.state = 1090; this.columnAliases(); } break; } - this.state = 1100; + this.state = 1105; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 146) { + if (_la === 145) { { - this.state = 1088; + this.state = 1093; this.match(ImpalaSqlParser.KW_PARTITION); - this.state = 1089; + this.state = 1094; this.match(ImpalaSqlParser.LPAREN); - this.state = 1090; - this.expression(); this.state = 1095; + this.expression(); + this.state = 1100; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 247) { + while (_la === 263) { { { - this.state = 1091; + this.state = 1096; this.match(ImpalaSqlParser.COMMA); - this.state = 1092; + this.state = 1097; this.expression(); } } - this.state = 1097; + this.state = 1102; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1098; + this.state = 1103; this.match(ImpalaSqlParser.RPAREN); } } - this.state = 1102; + this.state = 1107; this.queryStatement(); } } @@ -4066,20 +4094,20 @@ export class ImpalaSqlParser extends SQLParserBase { let localContext = new DeleteStatementContext(this.context, this.state); this.enterRule(localContext, 102, ImpalaSqlParser.RULE_deleteStatement); try { - this.state = 1106; + this.state = 1111; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 107, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1104; + this.state = 1109; this.delete_(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1105; + this.state = 1110; this.deleteTableRef(); } break; @@ -4106,28 +4134,28 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1108; + this.state = 1113; this.match(ImpalaSqlParser.KW_DELETE); - this.state = 1110; + this.state = 1115; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 82) { { - this.state = 1109; + this.state = 1114; this.match(ImpalaSqlParser.KW_FROM); } } - this.state = 1112; + this.state = 1117; this.tableNamePath(); - this.state = 1115; + this.state = 1120; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 217) { + if (_la === 215) { { - this.state = 1113; + this.state = 1118; this.match(ImpalaSqlParser.KW_WHERE); - this.state = 1114; + this.state = 1119; this.booleanExpression(0); } } @@ -4155,66 +4183,66 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1117; + this.state = 1122; this.match(ImpalaSqlParser.KW_DELETE); - this.state = 1118; - this.tableNamePath(); this.state = 1123; + this.tableNamePath(); + this.state = 1128; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 9 || _la === 14 || ((((_la - 43)) & ~0x1F) === 0 && ((1 << (_la - 43)) & 37748835) !== 0) || ((((_la - 91)) & ~0x1F) === 0 && ((1 << (_la - 91)) & 268959761) !== 0) || ((((_la - 123)) & ~0x1F) === 0 && ((1 << (_la - 123)) & 3221520879) !== 0) || ((((_la - 173)) & ~0x1F) === 0 && ((1 << (_la - 173)) & 16802051) !== 0) || ((((_la - 206)) & ~0x1F) === 0 && ((1 << (_la - 206)) & 74241) !== 0) || ((((_la - 258)) & ~0x1F) === 0 && ((1 << (_la - 258)) & 705) !== 0)) { + if (_la === 9 || _la === 14 || ((((_la - 43)) & ~0x1F) === 0 && ((1 << (_la - 43)) & 37748835) !== 0) || ((((_la - 91)) & ~0x1F) === 0 && ((1 << (_la - 91)) & 2416443409) !== 0) || ((((_la - 123)) & ~0x1F) === 0 && ((1 << (_la - 123)) & 1610760439) !== 0) || ((((_la - 172)) & ~0x1F) === 0 && ((1 << (_la - 172)) & 8401155) !== 0) || ((((_la - 204)) & ~0x1F) === 0 && ((1 << (_la - 204)) & 134291969) !== 0) || ((((_la - 274)) & ~0x1F) === 0 && ((1 << (_la - 274)) & 705) !== 0)) { { - this.state = 1120; + this.state = 1125; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 9) { { - this.state = 1119; + this.state = 1124; this.match(ImpalaSqlParser.KW_AS); } } - this.state = 1122; + this.state = 1127; this.identifier(); } } - this.state = 1125; + this.state = 1130; this.match(ImpalaSqlParser.KW_FROM); - this.state = 1134; + this.state = 1139; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 113, this.context) ) { case 1: { - this.state = 1126; - this.relation(0); this.state = 1131; + this.relation(0); + this.state = 1136; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 247) { + while (_la === 263) { { { - this.state = 1127; + this.state = 1132; this.match(ImpalaSqlParser.COMMA); - this.state = 1128; + this.state = 1133; this.relation(0); } } - this.state = 1133; + this.state = 1138; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } break; } - this.state = 1138; + this.state = 1143; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 217) { + if (_la === 215) { { - this.state = 1136; + this.state = 1141; this.match(ImpalaSqlParser.KW_WHERE); - this.state = 1137; + this.state = 1142; this.booleanExpression(0); } } @@ -4242,50 +4270,50 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1140; + this.state = 1145; this.match(ImpalaSqlParser.KW_UPDATE); - this.state = 1141; + this.state = 1146; this.tableNamePath(); - this.state = 1142; + this.state = 1147; this.match(ImpalaSqlParser.KW_SET); - this.state = 1143; + this.state = 1148; this.assignmentList(); - this.state = 1153; + this.state = 1158; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 82) { { - this.state = 1144; + this.state = 1149; this.match(ImpalaSqlParser.KW_FROM); - this.state = 1145; - this.relation(0); this.state = 1150; + this.relation(0); + this.state = 1155; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 247) { + while (_la === 263) { { { - this.state = 1146; + this.state = 1151; this.match(ImpalaSqlParser.COMMA); - this.state = 1147; + this.state = 1152; this.relation(0); } } - this.state = 1152; + this.state = 1157; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 1157; + this.state = 1162; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 217) { + if (_la === 215) { { - this.state = 1155; + this.state = 1160; this.match(ImpalaSqlParser.KW_WHERE); - this.state = 1156; + this.state = 1161; this.booleanExpression(0); } } @@ -4313,33 +4341,33 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1159; + this.state = 1164; this.match(ImpalaSqlParser.KW_UPSERT); - this.state = 1160; + this.state = 1165; this.match(ImpalaSqlParser.KW_INTO); - this.state = 1162; + this.state = 1167; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 190) { + if (_la === 188) { { - this.state = 1161; + this.state = 1166; this.match(ImpalaSqlParser.KW_TABLE); } } - this.state = 1164; + this.state = 1169; this.tableNamePath(); - this.state = 1166; + this.state = 1171; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 119, this.context) ) { case 1: { - this.state = 1165; + this.state = 1170; this.columnAliases(); } break; } - this.state = 1168; + this.state = 1173; this.queryStatement(); } } @@ -4361,90 +4389,90 @@ export class ImpalaSqlParser extends SQLParserBase { let localContext = new ShowStatementContext(this.context, this.state); this.enterRule(localContext, 112, ImpalaSqlParser.RULE_showStatement); try { - this.state = 1182; + this.state = 1187; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 120, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1170; + this.state = 1175; this.showRoles(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1171; + this.state = 1176; this.showRoleGrant(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1172; + this.state = 1177; this.showGrants(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1173; + this.state = 1178; this.showFiles(); } break; case 5: this.enterOuterAlt(localContext, 5); { - this.state = 1174; + this.state = 1179; this.showPartitions(); } break; case 6: this.enterOuterAlt(localContext, 6); { - this.state = 1175; + this.state = 1180; this.showColumnStats(); } break; case 7: this.enterOuterAlt(localContext, 7); { - this.state = 1176; + this.state = 1181; this.showTableStats(); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 1177; + this.state = 1182; this.showCreateView(); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 1178; + this.state = 1183; this.showCreateTable(); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 1179; + this.state = 1184; this.showFunctions(); } break; case 11: this.enterOuterAlt(localContext, 11); { - this.state = 1180; + this.state = 1185; this.showTables(); } break; case 12: this.enterOuterAlt(localContext, 12); { - this.state = 1181; + this.state = 1186; this.showSchemas(); } break; @@ -4471,47 +4499,47 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1184; + this.state = 1189; this.match(ImpalaSqlParser.KW_SHOW); - this.state = 1185; + this.state = 1190; _la = this.tokenStream.LA(1); - if(!(_la === 47 || _la === 172)) { + if(!(_la === 47 || _la === 171)) { this.errorHandler.recoverInline(this); } else { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1197; + this.state = 1202; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 115 || _la === 258 || _la === 259) { + if (_la === 115 || _la === 274 || _la === 275) { { - this.state = 1187; + this.state = 1192; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 115) { { - this.state = 1186; + this.state = 1191; this.match(ImpalaSqlParser.KW_LIKE); } } - this.state = 1189; - localContext._pattern = this.stringLiteral(); this.state = 1194; + localContext._pattern = this.stringLiteral(); + this.state = 1199; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 255) { + while (_la === 271) { { { - this.state = 1190; + this.state = 1195; this.match(ImpalaSqlParser.BITWISEOR); - this.state = 1191; + this.state = 1196; this.stringLiteral(); } } - this.state = 1196; + this.state = 1201; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -4541,52 +4569,52 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1199; + this.state = 1204; this.match(ImpalaSqlParser.KW_SHOW); - this.state = 1200; + this.state = 1205; this.match(ImpalaSqlParser.KW_TABLES); - this.state = 1203; + this.state = 1208; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 94) { { - this.state = 1201; + this.state = 1206; this.match(ImpalaSqlParser.KW_IN); - this.state = 1202; + this.state = 1207; this.tableNamePath(); } } - this.state = 1216; + this.state = 1221; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 115 || _la === 258 || _la === 259) { + if (_la === 115 || _la === 274 || _la === 275) { { - this.state = 1206; + this.state = 1211; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 115) { { - this.state = 1205; + this.state = 1210; this.match(ImpalaSqlParser.KW_LIKE); } } - this.state = 1208; - localContext._pattern = this.stringLiteral(); this.state = 1213; + localContext._pattern = this.stringLiteral(); + this.state = 1218; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 255) { + while (_la === 271) { { { - this.state = 1209; + this.state = 1214; this.match(ImpalaSqlParser.BITWISEOR); - this.state = 1210; + this.state = 1215; this.stringLiteral(); } } - this.state = 1215; + this.state = 1220; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -4616,14 +4644,14 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1218; + this.state = 1223; this.match(ImpalaSqlParser.KW_SHOW); - this.state = 1220; + this.state = 1225; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 3 || _la === 12) { { - this.state = 1219; + this.state = 1224; _la = this.tokenStream.LA(1); if(!(_la === 3 || _la === 12)) { this.errorHandler.recoverInline(this); @@ -4635,50 +4663,50 @@ export class ImpalaSqlParser extends SQLParserBase { } } - this.state = 1222; + this.state = 1227; this.match(ImpalaSqlParser.KW_FUNCTIONS); - this.state = 1225; + this.state = 1230; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 94) { { - this.state = 1223; + this.state = 1228; this.match(ImpalaSqlParser.KW_IN); - this.state = 1224; + this.state = 1229; this.databaseNamePath(); } } - this.state = 1238; + this.state = 1243; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 115 || _la === 258 || _la === 259) { + if (_la === 115 || _la === 274 || _la === 275) { { - this.state = 1228; + this.state = 1233; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 115) { { - this.state = 1227; + this.state = 1232; this.match(ImpalaSqlParser.KW_LIKE); } } - this.state = 1230; - localContext._pattern = this.stringLiteral(); this.state = 1235; + localContext._pattern = this.stringLiteral(); + this.state = 1240; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 255) { + while (_la === 271) { { { - this.state = 1231; + this.state = 1236; this.match(ImpalaSqlParser.BITWISEOR); - this.state = 1232; + this.state = 1237; this.stringLiteral(); } } - this.state = 1237; + this.state = 1242; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -4707,13 +4735,13 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1240; + this.state = 1245; this.match(ImpalaSqlParser.KW_SHOW); - this.state = 1241; + this.state = 1246; this.match(ImpalaSqlParser.KW_CREATE); - this.state = 1242; + this.state = 1247; this.match(ImpalaSqlParser.KW_TABLE); - this.state = 1243; + this.state = 1248; this.tableNamePath(); } } @@ -4737,13 +4765,13 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1245; + this.state = 1250; this.match(ImpalaSqlParser.KW_SHOW); - this.state = 1246; + this.state = 1251; this.match(ImpalaSqlParser.KW_CREATE); - this.state = 1247; + this.state = 1252; this.match(ImpalaSqlParser.KW_VIEW); - this.state = 1248; + this.state = 1253; this.viewNamePath(); } } @@ -4767,13 +4795,13 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1250; + this.state = 1255; this.match(ImpalaSqlParser.KW_SHOW); - this.state = 1251; + this.state = 1256; this.match(ImpalaSqlParser.KW_TABLE); - this.state = 1252; + this.state = 1257; this.match(ImpalaSqlParser.KW_STATS); - this.state = 1253; + this.state = 1258; this.tableNamePath(); } } @@ -4797,13 +4825,13 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1255; + this.state = 1260; this.match(ImpalaSqlParser.KW_SHOW); - this.state = 1256; + this.state = 1261; this.match(ImpalaSqlParser.KW_COLUMN); - this.state = 1257; + this.state = 1262; this.match(ImpalaSqlParser.KW_STATS); - this.state = 1258; + this.state = 1263; this.tableNamePath(); } } @@ -4828,21 +4856,21 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1260; + this.state = 1265; this.match(ImpalaSqlParser.KW_SHOW); - this.state = 1262; + this.state = 1267; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 155) { + if (_la === 154) { { - this.state = 1261; + this.state = 1266; this.match(ImpalaSqlParser.KW_RANGE); } } - this.state = 1264; + this.state = 1269; this.match(ImpalaSqlParser.KW_PARTITIONS); - this.state = 1265; + this.state = 1270; this.tableNamePath(); } } @@ -4867,38 +4895,38 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1267; + this.state = 1272; this.match(ImpalaSqlParser.KW_SHOW); - this.state = 1268; + this.state = 1273; this.match(ImpalaSqlParser.KW_FILES); - this.state = 1269; + this.state = 1274; this.match(ImpalaSqlParser.KW_IN); - this.state = 1270; + this.state = 1275; this.tableNamePath(); - this.state = 1280; + this.state = 1285; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 146) { + if (_la === 145) { { - this.state = 1271; - this.match(ImpalaSqlParser.KW_PARTITION); - this.state = 1272; - this.match(ImpalaSqlParser.LPAREN); - this.state = 1273; - this.expression(); this.state = 1276; + this.match(ImpalaSqlParser.KW_PARTITION); + this.state = 1277; + this.match(ImpalaSqlParser.LPAREN); + this.state = 1278; + this.expression(); + this.state = 1281; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 247) { + if (_la === 263) { { - this.state = 1274; + this.state = 1279; this.match(ImpalaSqlParser.COMMA); - this.state = 1275; + this.state = 1280; this.expression(); } } - this.state = 1278; + this.state = 1283; this.match(ImpalaSqlParser.RPAREN); } } @@ -4926,19 +4954,19 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1282; + this.state = 1287; this.match(ImpalaSqlParser.KW_SHOW); - this.state = 1284; + this.state = 1289; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 39) { { - this.state = 1283; + this.state = 1288; this.match(ImpalaSqlParser.KW_CURRENT); } } - this.state = 1286; + this.state = 1291; this.match(ImpalaSqlParser.KW_ROLES); } } @@ -4962,15 +4990,15 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1288; + this.state = 1293; this.match(ImpalaSqlParser.KW_SHOW); - this.state = 1289; + this.state = 1294; this.match(ImpalaSqlParser.KW_ROLE); - this.state = 1290; + this.state = 1295; this.match(ImpalaSqlParser.KW_GRANT); - this.state = 1291; + this.state = 1296; this.match(ImpalaSqlParser.KW_GROUP); - this.state = 1292; + this.state = 1297; this.identifier(); } } @@ -4993,70 +5021,70 @@ export class ImpalaSqlParser extends SQLParserBase { this.enterRule(localContext, 136, ImpalaSqlParser.RULE_showGrants); let _la: number; try { - this.state = 1308; + this.state = 1313; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 139, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1294; + this.state = 1299; this.showDatabaseGrant(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1295; + this.state = 1300; this.showTableGrant(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1296; + this.state = 1301; this.showColumnGrant(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 1297; + this.state = 1302; this.match(ImpalaSqlParser.KW_SHOW); - this.state = 1298; + this.state = 1303; this.match(ImpalaSqlParser.KW_GRANT); - this.state = 1299; + this.state = 1304; _la = this.tokenStream.LA(1); - if(!(_la === 87 || _la === 167 || _la === 206)) { + if(!(_la === 87 || _la === 166 || _la === 204)) { this.errorHandler.recoverInline(this); } else { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1300; + this.state = 1305; this.identifier(); - this.state = 1306; + this.state = 1311; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 137) { + if (_la === 136) { { - this.state = 1301; + this.state = 1306; this.match(ImpalaSqlParser.KW_ON); - this.state = 1302; + this.state = 1307; _la = this.tokenStream.LA(1); - if(!(_la === 179 || _la === 211)) { + if(!(_la === 178 || _la === 209)) { this.errorHandler.recoverInline(this); } else { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1304; + this.state = 1309; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 14 || ((((_la - 43)) & ~0x1F) === 0 && ((1 << (_la - 43)) & 37748835) !== 0) || ((((_la - 91)) & ~0x1F) === 0 && ((1 << (_la - 91)) & 268959761) !== 0) || ((((_la - 123)) & ~0x1F) === 0 && ((1 << (_la - 123)) & 3221520879) !== 0) || ((((_la - 173)) & ~0x1F) === 0 && ((1 << (_la - 173)) & 16802051) !== 0) || ((((_la - 206)) & ~0x1F) === 0 && ((1 << (_la - 206)) & 74241) !== 0) || ((((_la - 258)) & ~0x1F) === 0 && ((1 << (_la - 258)) & 705) !== 0)) { + if (_la === 14 || ((((_la - 43)) & ~0x1F) === 0 && ((1 << (_la - 43)) & 37748835) !== 0) || ((((_la - 91)) & ~0x1F) === 0 && ((1 << (_la - 91)) & 2416443409) !== 0) || ((((_la - 123)) & ~0x1F) === 0 && ((1 << (_la - 123)) & 1610760439) !== 0) || ((((_la - 172)) & ~0x1F) === 0 && ((1 << (_la - 172)) & 8401155) !== 0) || ((((_la - 204)) & ~0x1F) === 0 && ((1 << (_la - 204)) & 134291969) !== 0) || ((((_la - 274)) & ~0x1F) === 0 && ((1 << (_la - 274)) & 705) !== 0)) { { - this.state = 1303; + this.state = 1308; this.qualifiedName(); } } @@ -5089,36 +5117,36 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1310; + this.state = 1315; this.match(ImpalaSqlParser.KW_SHOW); - this.state = 1311; + this.state = 1316; this.match(ImpalaSqlParser.KW_GRANT); - this.state = 1312; + this.state = 1317; _la = this.tokenStream.LA(1); - if(!(_la === 87 || _la === 167 || _la === 206)) { + if(!(_la === 87 || _la === 166 || _la === 204)) { this.errorHandler.recoverInline(this); } else { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1313; + this.state = 1318; this.identifier(); - this.state = 1319; + this.state = 1324; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 137) { + if (_la === 136) { { - this.state = 1314; + this.state = 1319; this.match(ImpalaSqlParser.KW_ON); - this.state = 1315; + this.state = 1320; this.match(ImpalaSqlParser.KW_DATABASE); - this.state = 1317; + this.state = 1322; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 14 || ((((_la - 43)) & ~0x1F) === 0 && ((1 << (_la - 43)) & 37748835) !== 0) || ((((_la - 91)) & ~0x1F) === 0 && ((1 << (_la - 91)) & 268959761) !== 0) || ((((_la - 123)) & ~0x1F) === 0 && ((1 << (_la - 123)) & 3221520879) !== 0) || ((((_la - 173)) & ~0x1F) === 0 && ((1 << (_la - 173)) & 16802051) !== 0) || ((((_la - 206)) & ~0x1F) === 0 && ((1 << (_la - 206)) & 74241) !== 0) || ((((_la - 258)) & ~0x1F) === 0 && ((1 << (_la - 258)) & 705) !== 0)) { + if (_la === 14 || ((((_la - 43)) & ~0x1F) === 0 && ((1 << (_la - 43)) & 37748835) !== 0) || ((((_la - 91)) & ~0x1F) === 0 && ((1 << (_la - 91)) & 2416443409) !== 0) || ((((_la - 123)) & ~0x1F) === 0 && ((1 << (_la - 123)) & 1610760439) !== 0) || ((((_la - 172)) & ~0x1F) === 0 && ((1 << (_la - 172)) & 8401155) !== 0) || ((((_la - 204)) & ~0x1F) === 0 && ((1 << (_la - 204)) & 134291969) !== 0) || ((((_la - 274)) & ~0x1F) === 0 && ((1 << (_la - 274)) & 705) !== 0)) { { - this.state = 1316; + this.state = 1321; this.databaseNamePath(); } } @@ -5149,36 +5177,36 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1321; + this.state = 1326; this.match(ImpalaSqlParser.KW_SHOW); - this.state = 1322; + this.state = 1327; this.match(ImpalaSqlParser.KW_GRANT); - this.state = 1323; + this.state = 1328; _la = this.tokenStream.LA(1); - if(!(_la === 87 || _la === 167 || _la === 206)) { + if(!(_la === 87 || _la === 166 || _la === 204)) { this.errorHandler.recoverInline(this); } else { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1324; + this.state = 1329; this.identifier(); - this.state = 1330; + this.state = 1335; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 137) { + if (_la === 136) { { - this.state = 1325; + this.state = 1330; this.match(ImpalaSqlParser.KW_ON); - this.state = 1326; + this.state = 1331; this.match(ImpalaSqlParser.KW_TABLE); - this.state = 1328; + this.state = 1333; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 14 || ((((_la - 43)) & ~0x1F) === 0 && ((1 << (_la - 43)) & 37748835) !== 0) || ((((_la - 91)) & ~0x1F) === 0 && ((1 << (_la - 91)) & 268959761) !== 0) || ((((_la - 123)) & ~0x1F) === 0 && ((1 << (_la - 123)) & 3221520879) !== 0) || ((((_la - 173)) & ~0x1F) === 0 && ((1 << (_la - 173)) & 16802051) !== 0) || ((((_la - 206)) & ~0x1F) === 0 && ((1 << (_la - 206)) & 74241) !== 0) || ((((_la - 258)) & ~0x1F) === 0 && ((1 << (_la - 258)) & 705) !== 0)) { + if (_la === 14 || ((((_la - 43)) & ~0x1F) === 0 && ((1 << (_la - 43)) & 37748835) !== 0) || ((((_la - 91)) & ~0x1F) === 0 && ((1 << (_la - 91)) & 2416443409) !== 0) || ((((_la - 123)) & ~0x1F) === 0 && ((1 << (_la - 123)) & 1610760439) !== 0) || ((((_la - 172)) & ~0x1F) === 0 && ((1 << (_la - 172)) & 8401155) !== 0) || ((((_la - 204)) & ~0x1F) === 0 && ((1 << (_la - 204)) & 134291969) !== 0) || ((((_la - 274)) & ~0x1F) === 0 && ((1 << (_la - 274)) & 705) !== 0)) { { - this.state = 1327; + this.state = 1332; this.tableNamePath(); } } @@ -5209,36 +5237,36 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1332; + this.state = 1337; this.match(ImpalaSqlParser.KW_SHOW); - this.state = 1333; + this.state = 1338; this.match(ImpalaSqlParser.KW_GRANT); - this.state = 1334; + this.state = 1339; _la = this.tokenStream.LA(1); - if(!(_la === 87 || _la === 167 || _la === 206)) { + if(!(_la === 87 || _la === 166 || _la === 204)) { this.errorHandler.recoverInline(this); } else { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1335; + this.state = 1340; this.identifier(); - this.state = 1341; + this.state = 1346; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 137) { + if (_la === 136) { { - this.state = 1336; + this.state = 1341; this.match(ImpalaSqlParser.KW_ON); - this.state = 1337; + this.state = 1342; this.match(ImpalaSqlParser.KW_COLUMN); - this.state = 1339; + this.state = 1344; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 144, this.context) ) { case 1: { - this.state = 1338; + this.state = 1343; this.columnNamePath(); } break; @@ -5266,27 +5294,27 @@ export class ImpalaSqlParser extends SQLParserBase { let localContext = new AddCommentStatementContext(this.context, this.state); this.enterRule(localContext, 144, ImpalaSqlParser.RULE_addCommentStatement); try { - this.state = 1346; + this.state = 1351; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 146, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1343; + this.state = 1348; this.addDatabaseComments(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1344; + this.state = 1349; this.addTableComments(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1345; + this.state = 1350; this.addColumnComments(); } break; @@ -5312,29 +5340,29 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1348; + this.state = 1353; this.match(ImpalaSqlParser.KW_COMMENT); - this.state = 1349; + this.state = 1354; this.match(ImpalaSqlParser.KW_ON); - this.state = 1350; - this.match(ImpalaSqlParser.KW_DATABASE); - this.state = 1351; - this.databaseNamePath(); - this.state = 1352; - this.match(ImpalaSqlParser.KW_IS); this.state = 1355; + this.match(ImpalaSqlParser.KW_DATABASE); + this.state = 1356; + this.databaseNamePath(); + this.state = 1357; + this.match(ImpalaSqlParser.KW_IS); + this.state = 1360; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.STRING: case ImpalaSqlParser.UNICODE_STRING: { - this.state = 1353; + this.state = 1358; this.stringLiteral(); } break; case ImpalaSqlParser.KW_NULL: { - this.state = 1354; + this.state = 1359; this.match(ImpalaSqlParser.KW_NULL); } break; @@ -5363,29 +5391,29 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1357; + this.state = 1362; this.match(ImpalaSqlParser.KW_COMMENT); - this.state = 1358; + this.state = 1363; this.match(ImpalaSqlParser.KW_ON); - this.state = 1359; - this.match(ImpalaSqlParser.KW_TABLE); - this.state = 1360; - this.tableNamePath(); - this.state = 1361; - this.match(ImpalaSqlParser.KW_IS); this.state = 1364; + this.match(ImpalaSqlParser.KW_TABLE); + this.state = 1365; + this.tableNamePath(); + this.state = 1366; + this.match(ImpalaSqlParser.KW_IS); + this.state = 1369; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.STRING: case ImpalaSqlParser.UNICODE_STRING: { - this.state = 1362; + this.state = 1367; this.stringLiteral(); } break; case ImpalaSqlParser.KW_NULL: { - this.state = 1363; + this.state = 1368; this.match(ImpalaSqlParser.KW_NULL); } break; @@ -5414,29 +5442,29 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1366; + this.state = 1371; this.match(ImpalaSqlParser.KW_COMMENT); - this.state = 1367; + this.state = 1372; this.match(ImpalaSqlParser.KW_ON); - this.state = 1368; - this.match(ImpalaSqlParser.KW_COLUMN); - this.state = 1369; - this.columnNamePath(); - this.state = 1370; - this.match(ImpalaSqlParser.KW_IS); this.state = 1373; + this.match(ImpalaSqlParser.KW_COLUMN); + this.state = 1374; + this.columnNamePath(); + this.state = 1375; + this.match(ImpalaSqlParser.KW_IS); + this.state = 1378; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.STRING: case ImpalaSqlParser.UNICODE_STRING: { - this.state = 1371; + this.state = 1376; this.stringLiteral(); } break; case ImpalaSqlParser.KW_NULL: { - this.state = 1372; + this.state = 1377; this.match(ImpalaSqlParser.KW_NULL); } break; @@ -5465,9 +5493,9 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1375; + this.state = 1380; this.match(ImpalaSqlParser.KW_EXPLAIN); - this.state = 1376; + this.state = 1381; this.sqlStatement(); } } @@ -5491,14 +5519,14 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1378; + this.state = 1383; this.match(ImpalaSqlParser.KW_SET); - this.state = 1384; + this.state = 1389; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_ALL: { - this.state = 1379; + this.state = 1384; this.match(ImpalaSqlParser.KW_ALL); } break; @@ -5535,16 +5563,17 @@ export class ImpalaSqlParser extends SQLParserBase { case ImpalaSqlParser.KW_VIEWS: case ImpalaSqlParser.KW_YEAR: case ImpalaSqlParser.KW_ORC: + case ImpalaSqlParser.KW_DATE: case ImpalaSqlParser.STRING: case ImpalaSqlParser.IDENTIFIER: case ImpalaSqlParser.DIGIT_IDENTIFIER: case ImpalaSqlParser.BACKQUOTED_IDENTIFIER: { - this.state = 1380; + this.state = 1385; this.identifier(); - this.state = 1381; + this.state = 1386; this.match(ImpalaSqlParser.EQ); - this.state = 1382; + this.state = 1387; this.expression(); } break; @@ -5603,23 +5632,23 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1386; + this.state = 1391; this.match(ImpalaSqlParser.COLON); - this.state = 1387; + this.state = 1392; this.match(ImpalaSqlParser.KW_SHUTDOWN); - this.state = 1388; + this.state = 1393; this.match(ImpalaSqlParser.LPAREN); - this.state = 1398; + this.state = 1403; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 153, this.context) ) { case 1: { - this.state = 1390; + this.state = 1395; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 258 || _la === 259) { + if (_la === 274 || _la === 275) { { - this.state = 1389; + this.state = 1394; this.stringLiteral(); } } @@ -5628,16 +5657,16 @@ export class ImpalaSqlParser extends SQLParserBase { break; case 2: { - this.state = 1392; + this.state = 1397; this.stringLiteral(); - this.state = 1395; + this.state = 1400; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 247) { + if (_la === 263) { { - this.state = 1393; + this.state = 1398; this.match(ImpalaSqlParser.COMMA); - this.state = 1394; + this.state = 1399; this.expression(); } } @@ -5646,12 +5675,12 @@ export class ImpalaSqlParser extends SQLParserBase { break; case 3: { - this.state = 1397; + this.state = 1402; this.expression(); } break; } - this.state = 1400; + this.state = 1405; this.match(ImpalaSqlParser.RPAREN); } } @@ -5675,11 +5704,11 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1402; + this.state = 1407; this.match(ImpalaSqlParser.KW_INVALIDATE); - this.state = 1403; + this.state = 1408; this.match(ImpalaSqlParser.KW_METADATA); - this.state = 1404; + this.state = 1409; this.tableNamePath(); } } @@ -5704,54 +5733,54 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1406; - this.match(ImpalaSqlParser.KW_LOAD); - this.state = 1407; - this.match(ImpalaSqlParser.KW_DATA); - this.state = 1408; - this.match(ImpalaSqlParser.KW_INPATH); - this.state = 1409; - this.match(ImpalaSqlParser.STRING); this.state = 1411; + this.match(ImpalaSqlParser.KW_LOAD); + this.state = 1412; + this.match(ImpalaSqlParser.KW_DATA); + this.state = 1413; + this.match(ImpalaSqlParser.KW_INPATH); + this.state = 1414; + this.match(ImpalaSqlParser.STRING); + this.state = 1416; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 145) { + if (_la === 144) { { - this.state = 1410; + this.state = 1415; this.match(ImpalaSqlParser.KW_OVERWRITE); } } - this.state = 1413; + this.state = 1418; this.match(ImpalaSqlParser.KW_INTO); - this.state = 1414; + this.state = 1419; this.match(ImpalaSqlParser.KW_TABLE); - this.state = 1415; + this.state = 1420; this.tableNamePath(); - this.state = 1425; + this.state = 1430; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 146) { + if (_la === 145) { { - this.state = 1416; - this.match(ImpalaSqlParser.KW_PARTITION); - this.state = 1417; - this.match(ImpalaSqlParser.LPAREN); - this.state = 1418; - this.expression(); this.state = 1421; + this.match(ImpalaSqlParser.KW_PARTITION); + this.state = 1422; + this.match(ImpalaSqlParser.LPAREN); + this.state = 1423; + this.expression(); + this.state = 1426; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 247) { + if (_la === 263) { { - this.state = 1419; + this.state = 1424; this.match(ImpalaSqlParser.COMMA); - this.state = 1420; + this.state = 1425; this.expression(); } } - this.state = 1423; + this.state = 1428; this.match(ImpalaSqlParser.RPAREN); } } @@ -5776,27 +5805,27 @@ export class ImpalaSqlParser extends SQLParserBase { let localContext = new RefreshStatementContext(this.context, this.state); this.enterRule(localContext, 162, ImpalaSqlParser.RULE_refreshStatement); try { - this.state = 1430; + this.state = 1435; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 157, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1427; + this.state = 1432; this.refreshMeta(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1428; + this.state = 1433; this.refreshAuth(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 1429; + this.state = 1434; this.refreshFunction(); } break; @@ -5824,40 +5853,40 @@ export class ImpalaSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1432; + this.state = 1437; this.match(ImpalaSqlParser.KW_REFRESH); - this.state = 1433; + this.state = 1438; this.tableNamePath(); - this.state = 1446; + this.state = 1451; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 146) { + if (_la === 145) { { - this.state = 1434; + this.state = 1439; this.match(ImpalaSqlParser.KW_PARTITION); - this.state = 1435; + this.state = 1440; this.match(ImpalaSqlParser.LPAREN); - this.state = 1436; - this.expression(); this.state = 1441; + this.expression(); + this.state = 1446; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 158, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 1437; + this.state = 1442; this.match(ImpalaSqlParser.COMMA); - this.state = 1438; + this.state = 1443; this.expression(); } } } - this.state = 1443; + this.state = 1448; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 158, this.context); } - this.state = 1444; + this.state = 1449; this.match(ImpalaSqlParser.RPAREN); } } @@ -5884,9 +5913,9 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1448; + this.state = 1453; this.match(ImpalaSqlParser.KW_REFRESH); - this.state = 1449; + this.state = 1454; this.match(ImpalaSqlParser.KW_AUTHORIZATION); } } @@ -5910,11 +5939,11 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1451; + this.state = 1456; this.match(ImpalaSqlParser.KW_REFRESH); - this.state = 1452; + this.state = 1457; this.match(ImpalaSqlParser.KW_FUNCTIONS); - this.state = 1453; + this.state = 1458; this.functionNamePath(); } } @@ -5938,9 +5967,9 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1455; + this.state = 1460; this.match(ImpalaSqlParser.KW_IF); - this.state = 1456; + this.state = 1461; this.match(ImpalaSqlParser.KW_EXISTS); } } @@ -5964,11 +5993,11 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1458; + this.state = 1463; this.match(ImpalaSqlParser.KW_IF); - this.state = 1459; + this.state = 1464; this.match(ImpalaSqlParser.KW_NOT); - this.state = 1460; + this.state = 1465; this.match(ImpalaSqlParser.KW_EXISTS); } } @@ -5992,7 +6021,7 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1462; + this.state = 1467; this.qualifiedName(); } } @@ -6016,7 +6045,7 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1464; + this.state = 1469; this.qualifiedName(); } } @@ -6040,7 +6069,7 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1466; + this.state = 1471; this.qualifiedName(); } } @@ -6064,7 +6093,7 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1468; + this.state = 1473; this.qualifiedName(); } } @@ -6088,7 +6117,7 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1470; + this.state = 1475; this.qualifiedName(); } } @@ -6112,7 +6141,7 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1472; + this.state = 1477; this.qualifiedName(); } } @@ -6137,23 +6166,23 @@ export class ImpalaSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1474; - this.identifier(); this.state = 1479; + this.identifier(); + this.state = 1484; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 160, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1475; + this.state = 1480; this.match(ImpalaSqlParser.DOT); - this.state = 1476; + this.state = 1481; this.identifier(); } } } - this.state = 1481; + this.state = 1486; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 160, this.context); } @@ -6180,23 +6209,23 @@ export class ImpalaSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1482; - this.identifier(); this.state = 1487; + this.identifier(); + this.state = 1492; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 161, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1483; + this.state = 1488; this.match(ImpalaSqlParser.DOT); - this.state = 1484; + this.state = 1489; this.identifier(); } } } - this.state = 1489; + this.state = 1494; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 161, this.context); } @@ -6220,20 +6249,20 @@ export class ImpalaSqlParser extends SQLParserBase { let localContext = new FunctionNamePathContext(this.context, this.state); this.enterRule(localContext, 190, ImpalaSqlParser.RULE_functionNamePath); try { - this.state = 1492; + this.state = 1497; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 162, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1490; + this.state = 1495; this.reservedKeywordsUsedAsFuncName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1491; + this.state = 1496; this.qualifiedName(); } break; @@ -6257,20 +6286,20 @@ export class ImpalaSqlParser extends SQLParserBase { let localContext = new ColumnNamePathContext(this.context, this.state); this.enterRule(localContext, 192, ImpalaSqlParser.RULE_columnNamePath); try { - this.state = 1496; + this.state = 1501; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 163, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1494; + this.state = 1499; this.qualifiedName(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1495; + this.state = 1500; if (!(this.shouldMatchEmpty())) { throw this.createFailedPredicateException("this.shouldMatchEmpty()"); } @@ -6296,20 +6325,20 @@ export class ImpalaSqlParser extends SQLParserBase { let localContext = new TableOrViewPathContext(this.context, this.state); this.enterRule(localContext, 194, ImpalaSqlParser.RULE_tableOrViewPath); try { - this.state = 1500; + this.state = 1505; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 164, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1498; + this.state = 1503; this.tableNamePath(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1499; + this.state = 1504; this.viewNamePath(); } break; @@ -6336,109 +6365,109 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1505; + this.state = 1510; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 21) { { - this.state = 1502; + this.state = 1507; this.match(ImpalaSqlParser.KW_SORT); - this.state = 1503; + this.state = 1508; this.match(ImpalaSqlParser.KW_BY); - this.state = 1504; + this.state = 1509; this.columnAliases(); } } - this.state = 1509; + this.state = 1514; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 166, this.context) ) { case 1: { - this.state = 1507; + this.state = 1512; this.match(ImpalaSqlParser.KW_COMMENT); - this.state = 1508; + this.state = 1513; localContext._comment = this.stringLiteral(); } break; } - this.state = 1514; + this.state = 1519; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 169) { + if (_la === 168) { { - this.state = 1511; + this.state = 1516; this.match(ImpalaSqlParser.KW_ROW); - this.state = 1512; + this.state = 1517; this.match(ImpalaSqlParser.KW_FORMAT); - this.state = 1513; + this.state = 1518; this.rowFormat(); } } - this.state = 1519; + this.state = 1524; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 168, this.context) ) { case 1: { - this.state = 1516; + this.state = 1521; this.match(ImpalaSqlParser.KW_WITH); - this.state = 1517; + this.state = 1522; this.match(ImpalaSqlParser.KW_SERDEPROPERTIES); - this.state = 1518; + this.state = 1523; localContext._serdProp = this.properties(); } break; } - this.state = 1524; + this.state = 1529; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 23) { { - this.state = 1521; + this.state = 1526; this.match(ImpalaSqlParser.KW_STORED); - this.state = 1522; + this.state = 1527; this.match(ImpalaSqlParser.KW_AS); - this.state = 1523; + this.state = 1528; this.fileFormat(); } } - this.state = 1528; + this.state = 1533; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 24) { { - this.state = 1526; + this.state = 1531; this.match(ImpalaSqlParser.KW_LOCATION); - this.state = 1527; + this.state = 1532; localContext._location = this.stringLiteral(); } } - this.state = 1540; + this.state = 1545; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_CACHED: { - this.state = 1530; + this.state = 1535; this.match(ImpalaSqlParser.KW_CACHED); - this.state = 1531; + this.state = 1536; this.match(ImpalaSqlParser.KW_IN); - this.state = 1532; - localContext._cacheName = this.qualifiedName(); this.state = 1537; + localContext._cacheName = this.qualifiedName(); + this.state = 1542; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 171, this.context) ) { case 1: { - this.state = 1533; + this.state = 1538; this.match(ImpalaSqlParser.KW_WITH); - this.state = 1534; + this.state = 1539; this.match(ImpalaSqlParser.KW_REPLICATION); - this.state = 1535; + this.state = 1540; this.match(ImpalaSqlParser.EQ); - this.state = 1536; + this.state = 1541; this.match(ImpalaSqlParser.INTEGER_VALUE); } break; @@ -6447,7 +6476,7 @@ export class ImpalaSqlParser extends SQLParserBase { break; case ImpalaSqlParser.KW_UNCACHED: { - this.state = 1539; + this.state = 1544; this.match(ImpalaSqlParser.KW_UNCACHED); } break; @@ -6485,14 +6514,14 @@ export class ImpalaSqlParser extends SQLParserBase { default: break; } - this.state = 1544; + this.state = 1549; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 25) { { - this.state = 1542; + this.state = 1547; this.match(ImpalaSqlParser.KW_TBLPROPERTIES); - this.state = 1543; + this.state = 1548; localContext._tblProp = this.properties(); } } @@ -6520,21 +6549,21 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1546; - this.assignmentItem(); this.state = 1551; + this.assignmentItem(); + this.state = 1556; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 247) { + while (_la === 263) { { { - this.state = 1547; + this.state = 1552; this.match(ImpalaSqlParser.COMMA); - this.state = 1548; + this.state = 1553; this.assignmentItem(); } } - this.state = 1553; + this.state = 1558; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -6560,11 +6589,11 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1554; + this.state = 1559; this.qualifiedName(); - this.state = 1555; + this.state = 1560; this.match(ImpalaSqlParser.EQ); - this.state = 1556; + this.state = 1561; this.expression(); } } @@ -6589,51 +6618,51 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1558; + this.state = 1563; this.match(ImpalaSqlParser.LPAREN); - this.state = 1559; + this.state = 1564; this.columnNamePathCreate(); - this.state = 1562; + this.state = 1567; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 34) { { - this.state = 1560; + this.state = 1565; this.match(ImpalaSqlParser.KW_COMMENT); - this.state = 1561; + this.state = 1566; this.stringLiteral(); } } - this.state = 1572; + this.state = 1577; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 247) { + while (_la === 263) { { { - this.state = 1564; + this.state = 1569; this.match(ImpalaSqlParser.COMMA); - this.state = 1565; + this.state = 1570; this.columnNamePathCreate(); - this.state = 1568; + this.state = 1573; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 34) { { - this.state = 1566; + this.state = 1571; this.match(ImpalaSqlParser.KW_COMMENT); - this.state = 1567; + this.state = 1572; this.stringLiteral(); } } } } - this.state = 1574; + this.state = 1579; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1575; + this.state = 1580; this.match(ImpalaSqlParser.RPAREN); } } @@ -6658,17 +6687,17 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1578; + this.state = 1583; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 218) { + if (_la === 216) { { - this.state = 1577; + this.state = 1582; this.with_(); } } - this.state = 1580; + this.state = 1585; this.queryNoWith(); } } @@ -6693,23 +6722,23 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1582; + this.state = 1587; this.match(ImpalaSqlParser.KW_WITH); - this.state = 1583; - this.namedQuery(); this.state = 1588; + this.namedQuery(); + this.state = 1593; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 247) { + while (_la === 263) { { { - this.state = 1584; + this.state = 1589; this.match(ImpalaSqlParser.COMMA); - this.state = 1585; + this.state = 1590; this.namedQuery(); } } - this.state = 1590; + this.state = 1595; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -6737,47 +6766,29 @@ export class ImpalaSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1591; + this.state = 1596; this.match(ImpalaSqlParser.KW_PRIMARY); - this.state = 1592; + this.state = 1597; this.match(ImpalaSqlParser.KW_KEY); - this.state = 1593; + this.state = 1598; this.columnAliases(); - this.state = 1595; + this.state = 1600; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 53) { { - this.state = 1594; + this.state = 1599; this.match(ImpalaSqlParser.KW_DISABLE); } } - this.state = 1600; + this.state = 1605; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 181, this.context) ) { - case 1: - { - this.state = 1597; - this.match(ImpalaSqlParser.KW_NOVALIDATE); - } - break; - case 2: - { - this.state = 1598; - this.match(ImpalaSqlParser.COMMA); - this.state = 1599; - this.match(ImpalaSqlParser.KW_NOVALIDATE); - } - break; - } - this.state = 1605; - this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 182, this.context) ) { case 1: { this.state = 1602; - this.match(ImpalaSqlParser.KW_RELY); + this.match(ImpalaSqlParser.KW_NOVALIDATE); } break; case 2: @@ -6785,50 +6796,68 @@ export class ImpalaSqlParser extends SQLParserBase { this.state = 1603; this.match(ImpalaSqlParser.COMMA); this.state = 1604; + this.match(ImpalaSqlParser.KW_NOVALIDATE); + } + break; + } + this.state = 1610; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 182, this.context) ) { + case 1: + { + this.state = 1607; + this.match(ImpalaSqlParser.KW_RELY); + } + break; + case 2: + { + this.state = 1608; + this.match(ImpalaSqlParser.COMMA); + this.state = 1609; this.match(ImpalaSqlParser.KW_RELY); } break; } - this.state = 1619; + this.state = 1624; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 81 || _la === 247) { + if (_la === 81 || _la === 263) { { - this.state = 1610; + this.state = 1615; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.COMMA: { - this.state = 1607; + this.state = 1612; this.match(ImpalaSqlParser.COMMA); - this.state = 1608; + this.state = 1613; this.foreignKeySpecification(); } break; case ImpalaSqlParser.KW_FOREIGN: { - this.state = 1609; + this.state = 1614; this.foreignKeySpecification(); } break; default: throw new antlr.NoViableAltException(this); } - this.state = 1616; + this.state = 1621; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 184, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 1612; + this.state = 1617; this.match(ImpalaSqlParser.COMMA); - this.state = 1613; + this.state = 1618; this.foreignKeySpecification(); } } } - this.state = 1618; + this.state = 1623; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 184, this.context); } @@ -6858,44 +6887,44 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1621; - this.match(ImpalaSqlParser.KW_FOREIGN); - this.state = 1622; - this.match(ImpalaSqlParser.KW_KEY); - this.state = 1623; - this.columnAliases(); - this.state = 1624; - this.match(ImpalaSqlParser.KW_REFERENCES); - this.state = 1625; - this.tableNamePath(); this.state = 1626; - this.columnAliases(); + this.match(ImpalaSqlParser.KW_FOREIGN); + this.state = 1627; + this.match(ImpalaSqlParser.KW_KEY); this.state = 1628; + this.columnAliases(); + this.state = 1629; + this.match(ImpalaSqlParser.KW_REFERENCES); + this.state = 1630; + this.tableNamePath(); + this.state = 1631; + this.columnAliases(); + this.state = 1633; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 53) { { - this.state = 1627; + this.state = 1632; this.match(ImpalaSqlParser.KW_DISABLE); } } - this.state = 1631; + this.state = 1636; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 227) { + if (_la === 225) { { - this.state = 1630; + this.state = 1635; this.match(ImpalaSqlParser.KW_NOVALIDATE); } } - this.state = 1634; + this.state = 1639; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 228) { + if (_la === 226) { { - this.state = 1633; + this.state = 1638; this.match(ImpalaSqlParser.KW_RELY); } } @@ -6922,18 +6951,18 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1636; + this.state = 1641; this.columnNamePath(); - this.state = 1637; + this.state = 1642; this.type_(0); - this.state = 1640; + this.state = 1645; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 189, this.context) ) { case 1: { - this.state = 1638; + this.state = 1643; this.match(ImpalaSqlParser.KW_COMMENT); - this.state = 1639; + this.state = 1644; this.stringLiteral(); } break; @@ -6961,18 +6990,18 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1642; + this.state = 1647; this.columnNamePathCreate(); - this.state = 1643; + this.state = 1648; this.type_(0); - this.state = 1646; + this.state = 1651; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 34) { { - this.state = 1644; + this.state = 1649; this.match(ImpalaSqlParser.KW_COMMENT); - this.state = 1645; + this.state = 1650; this.stringLiteral(); } } @@ -6999,7 +7028,7 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1648; + this.state = 1653; this.kuduColumnDefinition(); } } @@ -7025,56 +7054,56 @@ export class ImpalaSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1650; + this.state = 1655; this.columnNamePathCreate(); - this.state = 1651; + this.state = 1656; this.type_(0); - this.state = 1659; + this.state = 1664; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 16 || ((((_la - 35)) & ~0x1F) === 0 && ((1 << (_la - 35)) & 33619969) !== 0) || _la === 133 || _la === 134) { + if (_la === 16 || ((((_la - 35)) & ~0x1F) === 0 && ((1 << (_la - 35)) & 33619969) !== 0) || _la === 132 || _la === 133) { { - this.state = 1652; + this.state = 1657; this.kuduAttributes(); - this.state = 1656; + this.state = 1661; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 191, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 1653; + this.state = 1658; this.kuduAttributes(); } } } - this.state = 1658; + this.state = 1663; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 191, this.context); } } } - this.state = 1663; + this.state = 1668; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 34) { { - this.state = 1661; + this.state = 1666; this.match(ImpalaSqlParser.KW_COMMENT); - this.state = 1662; + this.state = 1667; this.stringLiteral(); } } - this.state = 1667; + this.state = 1672; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 151) { + if (_la === 150) { { - this.state = 1665; + this.state = 1670; this.match(ImpalaSqlParser.KW_PRIMARY); - this.state = 1666; + this.state = 1671; this.match(ImpalaSqlParser.KW_KEY); } } @@ -7103,36 +7132,36 @@ export class ImpalaSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1670; + this.state = 1675; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 195, this.context) ) { case 1: { - this.state = 1669; + this.state = 1674; this.columnSpec(); } break; } - this.state = 1679; + this.state = 1684; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 16 || ((((_la - 35)) & ~0x1F) === 0 && ((1 << (_la - 35)) & 33619969) !== 0) || _la === 133 || _la === 134) { + if (_la === 16 || ((((_la - 35)) & ~0x1F) === 0 && ((1 << (_la - 35)) & 33619969) !== 0) || _la === 132 || _la === 133) { { - this.state = 1672; + this.state = 1677; this.kuduAttributes(); - this.state = 1676; + this.state = 1681; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 196, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 1673; + this.state = 1678; this.kuduAttributes(); } } } - this.state = 1678; + this.state = 1683; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 196, this.context); } @@ -7163,42 +7192,42 @@ export class ImpalaSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1681; + this.state = 1686; this.columnNamePathCreate(); - this.state = 1682; + this.state = 1687; this.type_(0); - this.state = 1685; + this.state = 1690; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 198, this.context) ) { case 1: { - this.state = 1683; + this.state = 1688; this.match(ImpalaSqlParser.KW_COMMENT); - this.state = 1684; + this.state = 1689; this.stringLiteral(); } break; } - this.state = 1694; + this.state = 1699; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 16 || ((((_la - 35)) & ~0x1F) === 0 && ((1 << (_la - 35)) & 33619969) !== 0) || _la === 133 || _la === 134) { + if (_la === 16 || ((((_la - 35)) & ~0x1F) === 0 && ((1 << (_la - 35)) & 33619969) !== 0) || _la === 132 || _la === 133) { { - this.state = 1687; + this.state = 1692; this.kuduAttributes(); - this.state = 1691; + this.state = 1696; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 199, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 1688; + this.state = 1693; this.kuduAttributes(); } } } - this.state = 1693; + this.state = 1698; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 199, this.context); } @@ -7228,23 +7257,23 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1701; + this.state = 1706; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_NOT: case ImpalaSqlParser.KW_NULL: { - this.state = 1697; + this.state = 1702; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 133) { + if (_la === 132) { { - this.state = 1696; + this.state = 1701; this.match(ImpalaSqlParser.KW_NOT); } } - this.state = 1699; + this.state = 1704; this.match(ImpalaSqlParser.KW_NULL); } break; @@ -7253,7 +7282,7 @@ export class ImpalaSqlParser extends SQLParserBase { case ImpalaSqlParser.KW_DEFAULT: case ImpalaSqlParser.KW_ENCODING: { - this.state = 1700; + this.state = 1705; this.kuduStorageAttr(); } break; @@ -7280,42 +7309,42 @@ export class ImpalaSqlParser extends SQLParserBase { let localContext = new KuduStorageAttrContext(this.context, this.state); this.enterRule(localContext, 226, ImpalaSqlParser.RULE_kuduStorageAttr); try { - this.state = 1711; + this.state = 1716; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_ENCODING: this.enterOuterAlt(localContext, 1); { - this.state = 1703; + this.state = 1708; this.match(ImpalaSqlParser.KW_ENCODING); - this.state = 1704; + this.state = 1709; this.expression(); } break; case ImpalaSqlParser.KW_COMPRESSION: this.enterOuterAlt(localContext, 2); { - this.state = 1705; + this.state = 1710; this.match(ImpalaSqlParser.KW_COMPRESSION); - this.state = 1706; + this.state = 1711; this.expression(); } break; case ImpalaSqlParser.KW_DEFAULT: this.enterOuterAlt(localContext, 3); { - this.state = 1707; + this.state = 1712; this.match(ImpalaSqlParser.KW_DEFAULT); - this.state = 1708; + this.state = 1713; this.expression(); } break; case ImpalaSqlParser.KW_BLOCK_SIZE: this.enterOuterAlt(localContext, 4); { - this.state = 1709; + this.state = 1714; this.match(ImpalaSqlParser.KW_BLOCK_SIZE); - this.state = 1710; + this.state = 1715; this.number_(); } break; @@ -7344,9 +7373,9 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1713; + this.state = 1718; _la = this.tokenStream.LA(1); - if(!(((((_la - 229)) & ~0x1F) === 0 && ((1 << (_la - 229)) & 15) !== 0))) { + if(!(((((_la - 245)) & ~0x1F) === 0 && ((1 << (_la - 245)) & 15) !== 0))) { this.errorHandler.recoverInline(this); } else { @@ -7376,9 +7405,9 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1715; + this.state = 1720; _la = this.tokenStream.LA(1); - if(!(_la === 148 || ((((_la - 221)) & ~0x1F) === 0 && ((1 << (_la - 221)) & 31) !== 0))) { + if(!(_la === 147 || ((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 31) !== 0))) { this.errorHandler.recoverInline(this); } else { @@ -7407,41 +7436,41 @@ export class ImpalaSqlParser extends SQLParserBase { let _la: number; try { let alternative: number; - this.state = 1730; + this.state = 1735; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_HASH: this.enterOuterAlt(localContext, 1); { { - this.state = 1717; - this.hashClause(); this.state = 1722; + this.hashClause(); + this.state = 1727; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 204, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 1718; + this.state = 1723; this.match(ImpalaSqlParser.COMMA); - this.state = 1719; + this.state = 1724; this.hashClause(); } } } - this.state = 1724; + this.state = 1729; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 204, this.context); } - this.state = 1727; + this.state = 1732; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 247) { + if (_la === 263) { { - this.state = 1725; + this.state = 1730; this.match(ImpalaSqlParser.COMMA); - this.state = 1726; + this.state = 1731; this.rangeClause(); } } @@ -7452,7 +7481,7 @@ export class ImpalaSqlParser extends SQLParserBase { case ImpalaSqlParser.KW_RANGE: this.enterOuterAlt(localContext, 2); { - this.state = 1729; + this.state = 1734; this.rangeClause(); } break; @@ -7481,21 +7510,21 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1732; + this.state = 1737; this.match(ImpalaSqlParser.KW_HASH); - this.state = 1734; + this.state = 1739; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 249) { + if (_la === 265) { { - this.state = 1733; + this.state = 1738; this.columnAliases(); } } - this.state = 1736; + this.state = 1741; this.match(ImpalaSqlParser.KW_PARTITIONS); - this.state = 1737; + this.state = 1742; this.number_(); } } @@ -7520,47 +7549,47 @@ export class ImpalaSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1739; + this.state = 1744; this.match(ImpalaSqlParser.KW_RANGE); - this.state = 1741; + this.state = 1746; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 208, this.context) ) { case 1: { - this.state = 1740; + this.state = 1745; this.columnAliases(); } break; } - this.state = 1743; + this.state = 1748; this.match(ImpalaSqlParser.LPAREN); { - this.state = 1744; + this.state = 1749; this.match(ImpalaSqlParser.KW_PARTITION); - this.state = 1745; + this.state = 1750; this.kuduPartitionSpec(); - this.state = 1751; + this.state = 1756; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 209, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 1746; + this.state = 1751; this.match(ImpalaSqlParser.COMMA); - this.state = 1747; + this.state = 1752; this.match(ImpalaSqlParser.KW_PARTITION); - this.state = 1748; + this.state = 1753; this.kuduPartitionSpec(); } } } - this.state = 1753; + this.state = 1758; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 209, this.context); } } - this.state = 1754; + this.state = 1759; this.match(ImpalaSqlParser.RPAREN); } } @@ -7583,17 +7612,17 @@ export class ImpalaSqlParser extends SQLParserBase { this.enterRule(localContext, 238, ImpalaSqlParser.RULE_kuduPartitionSpec); let _la: number; try { - this.state = 1771; + this.state = 1776; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_VALUE: this.enterOuterAlt(localContext, 1); { - this.state = 1756; + this.state = 1761; this.match(ImpalaSqlParser.KW_VALUE); - this.state = 1757; + this.state = 1762; this.partitionCol(); - this.state = 1758; + this.state = 1763; this.expression(); } break; @@ -7652,6 +7681,7 @@ export class ImpalaSqlParser extends SQLParserBase { case ImpalaSqlParser.KW_VIEWS: case ImpalaSqlParser.KW_YEAR: case ImpalaSqlParser.KW_ORC: + case ImpalaSqlParser.KW_DATE: case ImpalaSqlParser.PLUS: case ImpalaSqlParser.MINUS: case ImpalaSqlParser.LPAREN: @@ -7668,28 +7698,28 @@ export class ImpalaSqlParser extends SQLParserBase { case ImpalaSqlParser.DOUBLE_PRECISION: this.enterOuterAlt(localContext, 2); { - this.state = 1763; + this.state = 1768; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 805323008) !== 0) || ((((_la - 40)) & ~0x1F) === 0 && ((1 << (_la - 40)) & 1442841375) !== 0) || ((((_la - 88)) & ~0x1F) === 0 && ((1 << (_la - 88)) & 2218795145) !== 0) || ((((_la - 120)) & ~0x1F) === 0 && ((1 << (_la - 120)) & 539262841) !== 0) || ((((_la - 153)) & ~0x1F) === 0 && ((1 << (_la - 153)) & 271654979) !== 0) || ((((_la - 186)) & ~0x1F) === 0 && ((1 << (_la - 186)) & 537926659) !== 0) || ((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 1076887561) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 19453) !== 0)) { + if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 805323008) !== 0) || ((((_la - 40)) & ~0x1F) === 0 && ((1 << (_la - 40)) & 1442841375) !== 0) || ((((_la - 88)) & ~0x1F) === 0 && ((1 << (_la - 88)) & 2218795145) !== 0) || ((((_la - 120)) & ~0x1F) === 0 && ((1 << (_la - 120)) & 269631421) !== 0) || ((((_la - 152)) & ~0x1F) === 0 && ((1 << (_la - 152)) & 271654979) !== 0) || ((((_la - 184)) & ~0x1F) === 0 && ((1 << (_la - 184)) & 537926659) !== 0) || ((((_la - 217)) & ~0x1F) === 0 && ((1 << (_la - 217)) & 16393) !== 0) || ((((_la - 255)) & ~0x1F) === 0 && ((1 << (_la - 255)) & 2549744643) !== 0)) { { - this.state = 1760; + this.state = 1765; this.expression(); - this.state = 1761; + this.state = 1766; this.rangeOperator(); } } - this.state = 1765; + this.state = 1770; this.match(ImpalaSqlParser.KW_VALUES); - this.state = 1769; + this.state = 1774; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 211, this.context) ) { case 1: { - this.state = 1766; + this.state = 1771; this.rangeOperator(); - this.state = 1767; + this.state = 1772; this.expression(); } break; @@ -7718,30 +7748,30 @@ export class ImpalaSqlParser extends SQLParserBase { let localContext = new CacheSpecContext(this.context, this.state); this.enterRule(localContext, 240, ImpalaSqlParser.RULE_cacheSpec); try { - this.state = 1783; + this.state = 1788; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_CACHED: this.enterOuterAlt(localContext, 1); { - this.state = 1773; + this.state = 1778; this.match(ImpalaSqlParser.KW_CACHED); - this.state = 1774; + this.state = 1779; this.match(ImpalaSqlParser.KW_IN); - this.state = 1775; - this.identifier(); this.state = 1780; + this.identifier(); + this.state = 1785; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 213, this.context) ) { case 1: { - this.state = 1776; + this.state = 1781; this.match(ImpalaSqlParser.KW_WITH); - this.state = 1777; + this.state = 1782; this.match(ImpalaSqlParser.KW_REPLICATION); - this.state = 1778; + this.state = 1783; this.match(ImpalaSqlParser.EQ); - this.state = 1779; + this.state = 1784; this.number_(); } break; @@ -7751,7 +7781,7 @@ export class ImpalaSqlParser extends SQLParserBase { case ImpalaSqlParser.KW_UNCACHED: this.enterOuterAlt(localContext, 2); { - this.state = 1782; + this.state = 1787; this.match(ImpalaSqlParser.KW_UNCACHED); } break; @@ -7777,7 +7807,7 @@ export class ImpalaSqlParser extends SQLParserBase { let localContext = new RangeOperatorContext(this.context, this.state); this.enterRule(localContext, 242, ImpalaSqlParser.RULE_rangeOperator); try { - this.state = 1790; + this.state = 1795; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_ARRAY: @@ -7835,6 +7865,7 @@ export class ImpalaSqlParser extends SQLParserBase { case ImpalaSqlParser.KW_VIEWS: case ImpalaSqlParser.KW_YEAR: case ImpalaSqlParser.KW_ORC: + case ImpalaSqlParser.KW_DATE: case ImpalaSqlParser.PLUS: case ImpalaSqlParser.MINUS: case ImpalaSqlParser.LPAREN: @@ -7857,28 +7888,28 @@ export class ImpalaSqlParser extends SQLParserBase { case ImpalaSqlParser.LT: this.enterOuterAlt(localContext, 2); { - this.state = 1786; + this.state = 1791; this.match(ImpalaSqlParser.LT); } break; case ImpalaSqlParser.LTE: this.enterOuterAlt(localContext, 3); { - this.state = 1787; + this.state = 1792; this.match(ImpalaSqlParser.LTE); } break; case ImpalaSqlParser.GT: this.enterOuterAlt(localContext, 4); { - this.state = 1788; + this.state = 1793; this.match(ImpalaSqlParser.GT); } break; case ImpalaSqlParser.GTE: this.enterOuterAlt(localContext, 5); { - this.state = 1789; + this.state = 1794; this.match(ImpalaSqlParser.GTE); } break; @@ -7904,55 +7935,55 @@ export class ImpalaSqlParser extends SQLParserBase { let localContext = new PartitionColContext(this.context, this.state); this.enterRule(localContext, 244, ImpalaSqlParser.RULE_partitionCol); try { - this.state = 1800; + this.state = 1805; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.EQ: this.enterOuterAlt(localContext, 1); { - this.state = 1792; + this.state = 1797; this.match(ImpalaSqlParser.EQ); } break; case ImpalaSqlParser.NEQ: this.enterOuterAlt(localContext, 2); { - this.state = 1793; + this.state = 1798; this.match(ImpalaSqlParser.NEQ); } break; case ImpalaSqlParser.KW_LIKE: this.enterOuterAlt(localContext, 3); { - this.state = 1794; + this.state = 1799; this.match(ImpalaSqlParser.KW_LIKE); } break; case ImpalaSqlParser.KW_RLIKE: this.enterOuterAlt(localContext, 4); { - this.state = 1795; + this.state = 1800; this.match(ImpalaSqlParser.KW_RLIKE); } break; case ImpalaSqlParser.KW_REGEXP: this.enterOuterAlt(localContext, 5); { - this.state = 1796; + this.state = 1801; this.match(ImpalaSqlParser.KW_REGEXP); } break; case ImpalaSqlParser.KW_BETWEEN: this.enterOuterAlt(localContext, 6); { - this.state = 1797; + this.state = 1802; this.match(ImpalaSqlParser.KW_BETWEEN); } break; case ImpalaSqlParser.KW_IN: this.enterOuterAlt(localContext, 7); { - this.state = 1798; + this.state = 1803; this.match(ImpalaSqlParser.KW_IN); } break; @@ -8010,6 +8041,7 @@ export class ImpalaSqlParser extends SQLParserBase { case ImpalaSqlParser.KW_VIEWS: case ImpalaSqlParser.KW_YEAR: case ImpalaSqlParser.KW_ORC: + case ImpalaSqlParser.KW_DATE: case ImpalaSqlParser.LT: case ImpalaSqlParser.LTE: case ImpalaSqlParser.GT: @@ -8030,7 +8062,7 @@ export class ImpalaSqlParser extends SQLParserBase { case ImpalaSqlParser.DOUBLE_PRECISION: this.enterOuterAlt(localContext, 8); { - this.state = 1799; + this.state = 1804; this.rangeOperator(); } break; @@ -8059,16 +8091,16 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1802; + this.state = 1807; this.match(ImpalaSqlParser.KW_LIKE); - this.state = 1803; + this.state = 1808; this.qualifiedName(); - this.state = 1806; + this.state = 1811; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 65 || _la === 95) { { - this.state = 1804; + this.state = 1809; localContext._optionType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 65 || _la === 95)) { @@ -8078,7 +8110,7 @@ export class ImpalaSqlParser extends SQLParserBase { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1805; + this.state = 1810; this.match(ImpalaSqlParser.KW_PROPERTIES); } } @@ -8106,27 +8138,27 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1808; + this.state = 1813; this.match(ImpalaSqlParser.LPAREN); - this.state = 1809; - this.property(); this.state = 1814; + this.property(); + this.state = 1819; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 247) { + while (_la === 263) { { { - this.state = 1810; + this.state = 1815; this.match(ImpalaSqlParser.COMMA); - this.state = 1811; + this.state = 1816; this.property(); } } - this.state = 1816; + this.state = 1821; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 1817; + this.state = 1822; this.match(ImpalaSqlParser.RPAREN); } } @@ -8151,29 +8183,29 @@ export class ImpalaSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1819; + this.state = 1824; this.match(ImpalaSqlParser.LPAREN); - this.state = 1820; - this.columnSpec(); this.state = 1825; + this.columnSpec(); + this.state = 1830; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 219, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 1821; + this.state = 1826; this.match(ImpalaSqlParser.COMMA); - this.state = 1822; + this.state = 1827; this.columnSpec(); } } } - this.state = 1827; + this.state = 1832; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 219, this.context); } - this.state = 1828; + this.state = 1833; this.match(ImpalaSqlParser.RPAREN); } } @@ -8198,21 +8230,21 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1830; - this.expression(); this.state = 1835; + this.expression(); + this.state = 1840; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 247) { + while (_la === 263) { { { - this.state = 1831; + this.state = 1836; this.match(ImpalaSqlParser.COMMA); - this.state = 1832; + this.state = 1837; this.expression(); } } - this.state = 1837; + this.state = 1842; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -8239,31 +8271,31 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1838; + this.state = 1843; this.match(ImpalaSqlParser.KW_DELIMITED); - this.state = 1848; + this.state = 1853; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 71) { { - this.state = 1839; + this.state = 1844; this.match(ImpalaSqlParser.KW_FIELDS); - this.state = 1840; + this.state = 1845; this.match(ImpalaSqlParser.KW_TERMINATED); - this.state = 1841; - this.match(ImpalaSqlParser.KW_BY); - this.state = 1842; - this.stringLiteral(); this.state = 1846; + this.match(ImpalaSqlParser.KW_BY); + this.state = 1847; + this.stringLiteral(); + this.state = 1851; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 63) { { - this.state = 1843; + this.state = 1848; this.match(ImpalaSqlParser.KW_ESCAPED); - this.state = 1844; + this.state = 1849; this.match(ImpalaSqlParser.KW_BY); - this.state = 1845; + this.state = 1850; this.stringLiteral(); } } @@ -8271,18 +8303,18 @@ export class ImpalaSqlParser extends SQLParserBase { } } - this.state = 1854; + this.state = 1859; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 117) { { - this.state = 1850; + this.state = 1855; this.match(ImpalaSqlParser.KW_LINES); - this.state = 1851; + this.state = 1856; this.match(ImpalaSqlParser.KW_TERMINATED); - this.state = 1852; + this.state = 1857; this.match(ImpalaSqlParser.KW_BY); - this.state = 1853; + this.state = 1858; this.stringLiteral(); } } @@ -8310,16 +8342,16 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1856; + this.state = 1861; this.identifier(); - this.state = 1859; + this.state = 1864; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 233) { + if (_la === 249) { { - this.state = 1857; + this.state = 1862; this.match(ImpalaSqlParser.EQ); - this.state = 1858; + this.state = 1863; this.expression(); } } @@ -8347,55 +8379,55 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1861; + this.state = 1866; this.queryTerm(0); - this.state = 1872; + this.state = 1877; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 140) { + if (_la === 139) { { - this.state = 1862; + this.state = 1867; this.match(ImpalaSqlParser.KW_ORDER); - this.state = 1863; + this.state = 1868; this.match(ImpalaSqlParser.KW_BY); - this.state = 1864; - this.sortItem(); this.state = 1869; + this.sortItem(); + this.state = 1874; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 247) { + while (_la === 263) { { { - this.state = 1865; + this.state = 1870; this.match(ImpalaSqlParser.COMMA); - this.state = 1866; + this.state = 1871; this.sortItem(); } } - this.state = 1871; + this.state = 1876; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 1880; + this.state = 1885; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 116) { { - this.state = 1874; + this.state = 1879; this.match(ImpalaSqlParser.KW_LIMIT); - this.state = 1875; + this.state = 1880; localContext._rows = this.expression(); - this.state = 1878; + this.state = 1883; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 136) { + if (_la === 135) { { - this.state = 1876; + this.state = 1881; this.match(ImpalaSqlParser.KW_OFFSET); - this.state = 1877; + this.state = 1882; localContext._offset = this.match(ImpalaSqlParser.INTEGER_VALUE); } } @@ -8443,11 +8475,11 @@ export class ImpalaSqlParser extends SQLParserBase { this.context = localContext; previousContext = localContext; - this.state = 1883; + this.state = 1888; this.queryPrimary(); } this.context!.stop = this.tokenStream.LT(-1); - this.state = 1899; + this.state = 1904; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 232, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { @@ -8457,7 +8489,7 @@ export class ImpalaSqlParser extends SQLParserBase { } previousContext = localContext; { - this.state = 1897; + this.state = 1902; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 231, this.context) ) { case 1: @@ -8465,23 +8497,23 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new SetOperationContext(new QueryTermContext(parentContext, parentState)); (localContext as SetOperationContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, ImpalaSqlParser.RULE_queryTerm); - this.state = 1885; + this.state = 1890; if (!(this.precpred(this.context, 2))) { throw this.createFailedPredicateException("this.precpred(this.context, 2)"); } - this.state = 1886; + this.state = 1891; (localContext as SetOperationContext)._operator = this.match(ImpalaSqlParser.KW_INTERSECT); - this.state = 1888; + this.state = 1893; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2 || _la === 57) { { - this.state = 1887; + this.state = 1892; this.setQuantifier(); } } - this.state = 1890; + this.state = 1895; (localContext as SetOperationContext)._right = this.queryTerm(3); } break; @@ -8490,38 +8522,38 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new SetOperationContext(new QueryTermContext(parentContext, parentState)); (localContext as SetOperationContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, ImpalaSqlParser.RULE_queryTerm); - this.state = 1891; + this.state = 1896; if (!(this.precpred(this.context, 1))) { throw this.createFailedPredicateException("this.precpred(this.context, 1)"); } - this.state = 1892; + this.state = 1897; (localContext as SetOperationContext)._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); - if(!(_la === 64 || _la === 202)) { + if(!(_la === 64 || _la === 200)) { (localContext as SetOperationContext)._operator = this.errorHandler.recoverInline(this); } else { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 1894; + this.state = 1899; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2 || _la === 57) { { - this.state = 1893; + this.state = 1898; this.setQuantifier(); } } - this.state = 1896; + this.state = 1901; (localContext as SetOperationContext)._right = this.queryTerm(2); } break; } } } - this.state = 1901; + this.state = 1906; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 232, this.context); } @@ -8546,14 +8578,14 @@ export class ImpalaSqlParser extends SQLParserBase { this.enterRule(localContext, 262, ImpalaSqlParser.RULE_queryPrimary); try { let alternative: number; - this.state = 1918; + this.state = 1923; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_SELECT: localContext = new QueryPrimaryDefaultContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 1902; + this.state = 1907; this.querySpecification(); } break; @@ -8561,9 +8593,9 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new TableContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 1903; + this.state = 1908; this.match(ImpalaSqlParser.KW_TABLE); - this.state = 1904; + this.state = 1909; this.tableNamePath(); } break; @@ -8571,25 +8603,25 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new InlineTableContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 1905; + this.state = 1910; this.match(ImpalaSqlParser.KW_VALUES); - this.state = 1906; - this.expression(); this.state = 1911; + this.expression(); + this.state = 1916; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 233, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1907; + this.state = 1912; this.match(ImpalaSqlParser.COMMA); - this.state = 1908; + this.state = 1913; this.expression(); } } } - this.state = 1913; + this.state = 1918; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 233, this.context); } @@ -8599,11 +8631,11 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new SubqueryContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 1914; + this.state = 1919; this.match(ImpalaSqlParser.LPAREN); - this.state = 1915; + this.state = 1920; this.queryNoWith(); - this.state = 1916; + this.state = 1921; this.match(ImpalaSqlParser.RPAREN); } break; @@ -8632,14 +8664,14 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1920; + this.state = 1925; this.columnItem(); - this.state = 1922; + this.state = 1927; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 10 || _la === 55) { { - this.state = 1921; + this.state = 1926; localContext._ordering = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 10 || _la === 55)) { @@ -8652,14 +8684,14 @@ export class ImpalaSqlParser extends SQLParserBase { } } - this.state = 1926; + this.state = 1931; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 135) { + if (_la === 134) { { - this.state = 1924; + this.state = 1929; this.match(ImpalaSqlParser.KW_NULLS); - this.state = 1925; + this.state = 1930; localContext._nullOrdering = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); if(!(_la === 75 || _la === 112)) { @@ -8695,112 +8727,112 @@ export class ImpalaSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1928; + this.state = 1933; this.match(ImpalaSqlParser.KW_SELECT); - this.state = 1930; + this.state = 1935; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 237, this.context) ) { case 1: { - this.state = 1929; + this.state = 1934; this.setQuantifier(); } break; } - this.state = 1933; + this.state = 1938; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 238, this.context) ) { case 1: { - this.state = 1932; + this.state = 1937; this.match(ImpalaSqlParser.KW_STRAIGHT_JOIN); } break; } - this.state = 1935; - this.selectItem(); this.state = 1940; + this.selectItem(); + this.state = 1945; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 239, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1936; + this.state = 1941; this.match(ImpalaSqlParser.COMMA); - this.state = 1937; + this.state = 1942; this.selectItem(); } } } - this.state = 1942; + this.state = 1947; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 239, this.context); } - this.state = 1952; + this.state = 1957; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 241, this.context) ) { case 1: { - this.state = 1943; + this.state = 1948; this.match(ImpalaSqlParser.KW_FROM); - this.state = 1944; - this.relation(0); this.state = 1949; + this.relation(0); + this.state = 1954; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 240, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1945; + this.state = 1950; this.match(ImpalaSqlParser.COMMA); - this.state = 1946; + this.state = 1951; this.relation(0); } } } - this.state = 1951; + this.state = 1956; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 240, this.context); } } break; } - this.state = 1956; + this.state = 1961; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 242, this.context) ) { case 1: { - this.state = 1954; + this.state = 1959; this.match(ImpalaSqlParser.KW_WHERE); - this.state = 1955; + this.state = 1960; localContext._where = this.booleanExpression(0); } break; } - this.state = 1961; + this.state = 1966; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 243, this.context) ) { case 1: { - this.state = 1958; + this.state = 1963; this.match(ImpalaSqlParser.KW_GROUP); - this.state = 1959; + this.state = 1964; this.match(ImpalaSqlParser.KW_BY); - this.state = 1960; + this.state = 1965; this.groupBy(); } break; } - this.state = 1965; + this.state = 1970; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 244, this.context) ) { case 1: { - this.state = 1963; + this.state = 1968; this.match(ImpalaSqlParser.KW_HAVING); - this.state = 1964; + this.state = 1969; localContext._having = this.booleanExpression(0); } break; @@ -8828,33 +8860,33 @@ export class ImpalaSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 1968; + this.state = 1973; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 245, this.context) ) { case 1: { - this.state = 1967; + this.state = 1972; this.setQuantifier(); } break; } - this.state = 1970; - this.groupingElement(); this.state = 1975; + this.groupingElement(); + this.state = 1980; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 246, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 1971; + this.state = 1976; this.match(ImpalaSqlParser.COMMA); - this.state = 1972; + this.state = 1977; this.groupingElement(); } } } - this.state = 1977; + this.state = 1982; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 246, this.context); } @@ -8881,7 +8913,7 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new SingleGroupingSetContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 1978; + this.state = 1983; this.groupingSet(); } } @@ -8904,48 +8936,48 @@ export class ImpalaSqlParser extends SQLParserBase { this.enterRule(localContext, 272, ImpalaSqlParser.RULE_groupingSet); let _la: number; try { - this.state = 1993; + this.state = 1998; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 249, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 1980; + this.state = 1985; this.match(ImpalaSqlParser.LPAREN); - this.state = 1989; + this.state = 1994; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 248, this.context) ) { case 1: { - this.state = 1981; - this.columnItem(); this.state = 1986; + this.columnItem(); + this.state = 1991; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 247) { + while (_la === 263) { { { - this.state = 1982; + this.state = 1987; this.match(ImpalaSqlParser.COMMA); - this.state = 1983; + this.state = 1988; this.columnItem(); } } - this.state = 1988; + this.state = 1993; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } break; } - this.state = 1991; + this.state = 1996; this.match(ImpalaSqlParser.RPAREN); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 1992; + this.state = 1997; this.columnItem(); } break; @@ -8972,21 +9004,21 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 1995; + this.state = 2000; localContext._name = this.identifier(); - this.state = 1997; + this.state = 2002; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 249) { + if (_la === 265) { { - this.state = 1996; + this.state = 2001; this.columnAliases(); } } - this.state = 1999; + this.state = 2004; this.match(ImpalaSqlParser.KW_AS); - this.state = 2000; + this.state = 2005; this.subQueryRelation(); } } @@ -9011,7 +9043,7 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2002; + this.state = 2007; _la = this.tokenStream.LA(1); if(!(_la === 2 || _la === 57)) { this.errorHandler.recoverInline(this); @@ -9041,31 +9073,31 @@ export class ImpalaSqlParser extends SQLParserBase { this.enterRule(localContext, 278, ImpalaSqlParser.RULE_selectItem); let _la: number; try { - this.state = 2016; + this.state = 2021; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 253, this.context) ) { case 1: localContext = new SelectSingleContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2004; - this.columnItem(); this.state = 2009; + this.columnItem(); + this.state = 2014; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 252, this.context) ) { case 1: { - this.state = 2006; + this.state = 2011; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 9) { { - this.state = 2005; + this.state = 2010; this.match(ImpalaSqlParser.KW_AS); } } - this.state = 2008; + this.state = 2013; this.identifier(); } break; @@ -9076,11 +9108,11 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new SelectAllContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2011; + this.state = 2016; this.qualifiedName(); - this.state = 2012; + this.state = 2017; this.match(ImpalaSqlParser.DOT); - this.state = 2013; + this.state = 2018; this.match(ImpalaSqlParser.ASTERISK); } break; @@ -9088,7 +9120,7 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new SelectAllContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 2015; + this.state = 2020; this.match(ImpalaSqlParser.ASTERISK); } break; @@ -9131,11 +9163,11 @@ export class ImpalaSqlParser extends SQLParserBase { this.context = localContext; previousContext = localContext; - this.state = 2019; + this.state = 2024; this.sampledRelation(); } this.context!.stop = this.tokenStream.LT(-1); - this.state = 2034; + this.state = 2039; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 255, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { @@ -9149,20 +9181,20 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new JoinRelationContext(new RelationContext(parentContext, parentState)); (localContext as JoinRelationContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, ImpalaSqlParser.RULE_relation); - this.state = 2021; + this.state = 2026; if (!(this.precpred(this.context, 2))) { throw this.createFailedPredicateException("this.precpred(this.context, 2)"); } - this.state = 2030; + this.state = 2035; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_CROSS: { - this.state = 2022; + this.state = 2027; this.match(ImpalaSqlParser.KW_CROSS); - this.state = 2023; + this.state = 2028; this.match(ImpalaSqlParser.KW_JOIN); - this.state = 2024; + this.state = 2029; (localContext as JoinRelationContext)._right = this.sampledRelation(); } break; @@ -9172,13 +9204,13 @@ export class ImpalaSqlParser extends SQLParserBase { case ImpalaSqlParser.KW_LEFT: case ImpalaSqlParser.KW_RIGHT: { - this.state = 2025; + this.state = 2030; this.joinType(); - this.state = 2026; + this.state = 2031; this.match(ImpalaSqlParser.KW_JOIN); - this.state = 2027; + this.state = 2032; (localContext as JoinRelationContext)._rightRelation = this.relation(0); - this.state = 2028; + this.state = 2033; this.joinCriteria(); } break; @@ -9188,7 +9220,7 @@ export class ImpalaSqlParser extends SQLParserBase { } } } - this.state = 2036; + this.state = 2041; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 255, this.context); } @@ -9213,18 +9245,18 @@ export class ImpalaSqlParser extends SQLParserBase { this.enterRule(localContext, 282, ImpalaSqlParser.RULE_joinType); let _la: number; try { - this.state = 2068; + this.state = 2073; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 262, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2038; + this.state = 2043; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 97) { { - this.state = 2037; + this.state = 2042; this.match(ImpalaSqlParser.KW_INNER); } } @@ -9234,14 +9266,14 @@ export class ImpalaSqlParser extends SQLParserBase { case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2040; + this.state = 2045; this.match(ImpalaSqlParser.KW_LEFT); - this.state = 2042; + this.state = 2047; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 97) { { - this.state = 2041; + this.state = 2046; this.match(ImpalaSqlParser.KW_INNER); } } @@ -9251,14 +9283,14 @@ export class ImpalaSqlParser extends SQLParserBase { case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2044; + this.state = 2049; this.match(ImpalaSqlParser.KW_RIGHT); - this.state = 2046; + this.state = 2051; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 97) { { - this.state = 2045; + this.state = 2050; this.match(ImpalaSqlParser.KW_INNER); } } @@ -9268,14 +9300,14 @@ export class ImpalaSqlParser extends SQLParserBase { case 4: this.enterOuterAlt(localContext, 4); { - this.state = 2048; + this.state = 2053; this.match(ImpalaSqlParser.KW_LEFT); - this.state = 2050; + this.state = 2055; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 142) { + if (_la === 141) { { - this.state = 2049; + this.state = 2054; this.match(ImpalaSqlParser.KW_OUTER); } } @@ -9285,14 +9317,14 @@ export class ImpalaSqlParser extends SQLParserBase { case 5: this.enterOuterAlt(localContext, 5); { - this.state = 2052; + this.state = 2057; this.match(ImpalaSqlParser.KW_RIGHT); - this.state = 2054; + this.state = 2059; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 142) { + if (_la === 141) { { - this.state = 2053; + this.state = 2058; this.match(ImpalaSqlParser.KW_OUTER); } } @@ -9302,14 +9334,14 @@ export class ImpalaSqlParser extends SQLParserBase { case 6: this.enterOuterAlt(localContext, 6); { - this.state = 2056; + this.state = 2061; this.match(ImpalaSqlParser.KW_FULL); - this.state = 2058; + this.state = 2063; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 142) { + if (_la === 141) { { - this.state = 2057; + this.state = 2062; this.match(ImpalaSqlParser.KW_OUTER); } } @@ -9319,36 +9351,36 @@ export class ImpalaSqlParser extends SQLParserBase { case 7: this.enterOuterAlt(localContext, 7); { - this.state = 2060; + this.state = 2065; this.match(ImpalaSqlParser.KW_LEFT); - this.state = 2061; + this.state = 2066; this.match(ImpalaSqlParser.KW_SEMI); } break; case 8: this.enterOuterAlt(localContext, 8); { - this.state = 2062; + this.state = 2067; this.match(ImpalaSqlParser.KW_RIGHT); - this.state = 2063; + this.state = 2068; this.match(ImpalaSqlParser.KW_SEMI); } break; case 9: this.enterOuterAlt(localContext, 9); { - this.state = 2064; + this.state = 2069; this.match(ImpalaSqlParser.KW_LEFT); - this.state = 2065; + this.state = 2070; this.match(ImpalaSqlParser.KW_ANTI); } break; case 10: this.enterOuterAlt(localContext, 10); { - this.state = 2066; + this.state = 2071; this.match(ImpalaSqlParser.KW_RIGHT); - this.state = 2067; + this.state = 2072; this.match(ImpalaSqlParser.KW_ANTI); } break; @@ -9373,44 +9405,44 @@ export class ImpalaSqlParser extends SQLParserBase { this.enterRule(localContext, 284, ImpalaSqlParser.RULE_joinCriteria); let _la: number; try { - this.state = 2084; + this.state = 2089; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_ON: this.enterOuterAlt(localContext, 1); { - this.state = 2070; + this.state = 2075; this.match(ImpalaSqlParser.KW_ON); - this.state = 2071; + this.state = 2076; this.booleanExpression(0); } break; case ImpalaSqlParser.KW_USING: this.enterOuterAlt(localContext, 2); { - this.state = 2072; + this.state = 2077; this.match(ImpalaSqlParser.KW_USING); - this.state = 2073; + this.state = 2078; this.match(ImpalaSqlParser.LPAREN); - this.state = 2074; - this.identifier(); this.state = 2079; + this.identifier(); + this.state = 2084; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 247) { + while (_la === 263) { { { - this.state = 2075; + this.state = 2080; this.match(ImpalaSqlParser.COMMA); - this.state = 2076; + this.state = 2081; this.identifier(); } } - this.state = 2081; + this.state = 2086; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2082; + this.state = 2087; this.match(ImpalaSqlParser.RPAREN); } break; @@ -9438,35 +9470,35 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2086; + this.state = 2091; this.aliasedRelation(); - this.state = 2099; + this.state = 2104; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 266, this.context) ) { case 1: { - this.state = 2087; + this.state = 2092; this.match(ImpalaSqlParser.KW_TABLESAMPLE); - this.state = 2088; + this.state = 2093; this.sampleType(); - this.state = 2089; + this.state = 2094; this.match(ImpalaSqlParser.LPAREN); - this.state = 2090; + this.state = 2095; localContext._percentage = this.expression(); - this.state = 2091; + this.state = 2096; this.match(ImpalaSqlParser.RPAREN); - this.state = 2097; + this.state = 2102; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 265, this.context) ) { case 1: { - this.state = 2092; + this.state = 2097; this.match(ImpalaSqlParser.KW_REPEATABLE); - this.state = 2093; + this.state = 2098; this.match(ImpalaSqlParser.LPAREN); - this.state = 2094; + this.state = 2099; localContext._seed = this.expression(); - this.state = 2095; + this.state = 2100; this.match(ImpalaSqlParser.RPAREN); } break; @@ -9497,9 +9529,9 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2101; + this.state = 2106; _la = this.tokenStream.LA(1); - if(!(_la === 14 || _la === 187)) { + if(!(_la === 14 || _la === 185)) { this.errorHandler.recoverInline(this); } else { @@ -9529,31 +9561,31 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2103; + this.state = 2108; this.relationPrimary(); - this.state = 2111; + this.state = 2116; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 269, this.context) ) { case 1: { - this.state = 2105; + this.state = 2110; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 9) { { - this.state = 2104; + this.state = 2109; this.match(ImpalaSqlParser.KW_AS); } } - this.state = 2107; + this.state = 2112; this.identifier(); - this.state = 2109; + this.state = 2114; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 268, this.context) ) { case 1: { - this.state = 2108; + this.state = 2113; this.columnAliases(); } break; @@ -9584,27 +9616,27 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2113; + this.state = 2118; this.match(ImpalaSqlParser.LPAREN); - this.state = 2114; - this.columnNamePath(); this.state = 2119; + this.columnNamePath(); + this.state = 2124; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 247) { + while (_la === 263) { { { - this.state = 2115; + this.state = 2120; this.match(ImpalaSqlParser.COMMA); - this.state = 2116; + this.state = 2121; this.columnNamePath(); } } - this.state = 2121; + this.state = 2126; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2122; + this.state = 2127; this.match(ImpalaSqlParser.RPAREN); } } @@ -9627,44 +9659,44 @@ export class ImpalaSqlParser extends SQLParserBase { this.enterRule(localContext, 294, ImpalaSqlParser.RULE_relationPrimary); let _la: number; try { - this.state = 2131; + this.state = 2136; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 272, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2124; + this.state = 2129; this.tableOrViewPath(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2126; + this.state = 2131; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 113) { { - this.state = 2125; + this.state = 2130; this.match(ImpalaSqlParser.KW_LATERAL); } } - this.state = 2128; + this.state = 2133; this.subQueryRelation(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2129; + this.state = 2134; this.unnest(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 2130; + this.state = 2135; this.parenthesizedRelation(); } break; @@ -9690,11 +9722,11 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2133; + this.state = 2138; this.match(ImpalaSqlParser.LPAREN); - this.state = 2134; + this.state = 2139; this.queryStatement(); - this.state = 2135; + this.state = 2140; this.match(ImpalaSqlParser.RPAREN); } } @@ -9719,38 +9751,38 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2137; + this.state = 2142; this.match(ImpalaSqlParser.KW_UNNEST); - this.state = 2138; + this.state = 2143; this.match(ImpalaSqlParser.LPAREN); - this.state = 2139; - this.expression(); this.state = 2144; + this.expression(); + this.state = 2149; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 247) { + while (_la === 263) { { { - this.state = 2140; + this.state = 2145; this.match(ImpalaSqlParser.COMMA); - this.state = 2141; + this.state = 2146; this.expression(); } } - this.state = 2146; + this.state = 2151; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2147; + this.state = 2152; this.match(ImpalaSqlParser.RPAREN); - this.state = 2150; + this.state = 2155; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 274, this.context) ) { case 1: { - this.state = 2148; + this.state = 2153; this.match(ImpalaSqlParser.KW_WITH); - this.state = 2149; + this.state = 2154; this.match(ImpalaSqlParser.KW_ORDINALITY); } break; @@ -9777,11 +9809,11 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2152; + this.state = 2157; this.match(ImpalaSqlParser.LPAREN); - this.state = 2153; + this.state = 2158; this.relation(0); - this.state = 2154; + this.state = 2159; this.match(ImpalaSqlParser.RPAREN); } } @@ -9803,20 +9835,20 @@ export class ImpalaSqlParser extends SQLParserBase { let localContext = new ColumnItemContext(this.context, this.state); this.enterRule(localContext, 302, ImpalaSqlParser.RULE_columnItem); try { - this.state = 2158; + this.state = 2163; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 275, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2156; + this.state = 2161; this.columnNamePath(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2157; + this.state = 2162; this.expression(); } break; @@ -9842,7 +9874,7 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2160; + this.state = 2165; this.booleanExpression(0); } } @@ -9878,7 +9910,7 @@ export class ImpalaSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2169; + this.state = 2174; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_ARRAY: @@ -9934,6 +9966,7 @@ export class ImpalaSqlParser extends SQLParserBase { case ImpalaSqlParser.KW_VIEWS: case ImpalaSqlParser.KW_YEAR: case ImpalaSqlParser.KW_ORC: + case ImpalaSqlParser.KW_DATE: case ImpalaSqlParser.PLUS: case ImpalaSqlParser.MINUS: case ImpalaSqlParser.LPAREN: @@ -9953,14 +9986,14 @@ export class ImpalaSqlParser extends SQLParserBase { this.context = localContext; previousContext = localContext; - this.state = 2163; + this.state = 2168; (localContext as PredicatedContext)._valueExpression = this.valueExpression(0); - this.state = 2165; + this.state = 2170; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 276, this.context) ) { case 1: { - this.state = 2164; + this.state = 2169; this.predicate((localContext as PredicatedContext)._valueExpression); } break; @@ -9972,9 +10005,9 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new LogicalNotContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2167; + this.state = 2172; this.match(ImpalaSqlParser.KW_NOT); - this.state = 2168; + this.state = 2173; this.booleanExpression(3); } break; @@ -9982,7 +10015,7 @@ export class ImpalaSqlParser extends SQLParserBase { throw new antlr.NoViableAltException(this); } this.context!.stop = this.tokenStream.LT(-1); - this.state = 2179; + this.state = 2184; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 279, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { @@ -9992,7 +10025,7 @@ export class ImpalaSqlParser extends SQLParserBase { } previousContext = localContext; { - this.state = 2177; + this.state = 2182; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 278, this.context) ) { case 1: @@ -10000,13 +10033,13 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new LogicalBinaryContext(new BooleanExpressionContext(parentContext, parentState)); (localContext as LogicalBinaryContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, ImpalaSqlParser.RULE_booleanExpression); - this.state = 2171; + this.state = 2176; if (!(this.precpred(this.context, 2))) { throw this.createFailedPredicateException("this.precpred(this.context, 2)"); } - this.state = 2172; + this.state = 2177; (localContext as LogicalBinaryContext)._operator = this.match(ImpalaSqlParser.KW_AND); - this.state = 2173; + this.state = 2178; (localContext as LogicalBinaryContext)._right = this.booleanExpression(3); } break; @@ -10015,20 +10048,20 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new LogicalBinaryContext(new BooleanExpressionContext(parentContext, parentState)); (localContext as LogicalBinaryContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, ImpalaSqlParser.RULE_booleanExpression); - this.state = 2174; + this.state = 2179; if (!(this.precpred(this.context, 1))) { throw this.createFailedPredicateException("this.precpred(this.context, 1)"); } - this.state = 2175; + this.state = 2180; (localContext as LogicalBinaryContext)._operator = this.match(ImpalaSqlParser.KW_OR); - this.state = 2176; + this.state = 2181; (localContext as LogicalBinaryContext)._right = this.booleanExpression(2); } break; } } } - this.state = 2181; + this.state = 2186; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 279, this.context); } @@ -10053,16 +10086,16 @@ export class ImpalaSqlParser extends SQLParserBase { this.enterRule(localContext, 308, ImpalaSqlParser.RULE_predicate); let _la: number; try { - this.state = 2240; + this.state = 2245; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 288, this.context) ) { case 1: localContext = new ComparisonContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2182; + this.state = 2187; this.comparisonOperator(); - this.state = 2183; + this.state = 2188; (localContext as ComparisonContext)._right = this.valueExpression(0); } break; @@ -10070,11 +10103,11 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new QuantifiedComparisonContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2185; + this.state = 2190; this.comparisonOperator(); - this.state = 2186; + this.state = 2191; this.comparisonQuantifier(); - this.state = 2187; + this.state = 2192; this.subQueryRelation(); } break; @@ -10082,23 +10115,23 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new BetweenContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 2190; + this.state = 2195; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 133) { + if (_la === 132) { { - this.state = 2189; + this.state = 2194; this.match(ImpalaSqlParser.KW_NOT); } } - this.state = 2192; + this.state = 2197; this.match(ImpalaSqlParser.KW_BETWEEN); - this.state = 2193; + this.state = 2198; (localContext as BetweenContext)._lower = this.valueExpression(0); - this.state = 2194; + this.state = 2199; this.match(ImpalaSqlParser.KW_AND); - this.state = 2195; + this.state = 2200; (localContext as BetweenContext)._upper = this.valueExpression(0); } break; @@ -10106,39 +10139,39 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new InListContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 2198; + this.state = 2203; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 133) { + if (_la === 132) { { - this.state = 2197; + this.state = 2202; this.match(ImpalaSqlParser.KW_NOT); } } - this.state = 2200; + this.state = 2205; this.match(ImpalaSqlParser.KW_IN); - this.state = 2201; + this.state = 2206; this.match(ImpalaSqlParser.LPAREN); - this.state = 2202; - this.expression(); this.state = 2207; + this.expression(); + this.state = 2212; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 247) { + while (_la === 263) { { { - this.state = 2203; + this.state = 2208; this.match(ImpalaSqlParser.COMMA); - this.state = 2204; + this.state = 2209; this.expression(); } } - this.state = 2209; + this.state = 2214; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2210; + this.state = 2215; this.match(ImpalaSqlParser.RPAREN); } break; @@ -10146,30 +10179,10 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new InSubqueryContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 2213; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 133) { - { - this.state = 2212; - this.match(ImpalaSqlParser.KW_NOT); - } - } - - this.state = 2215; - this.match(ImpalaSqlParser.KW_IN); - this.state = 2216; - this.subQueryRelation(); - } - break; - case 6: - localContext = new LikeContext(localContext); - this.enterOuterAlt(localContext, 6); - { this.state = 2218; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 133) { + if (_la === 132) { { this.state = 2217; this.match(ImpalaSqlParser.KW_NOT); @@ -10177,24 +10190,44 @@ export class ImpalaSqlParser extends SQLParserBase { } this.state = 2220; + this.match(ImpalaSqlParser.KW_IN); + this.state = 2221; + this.subQueryRelation(); + } + break; + case 6: + localContext = new LikeContext(localContext); + this.enterOuterAlt(localContext, 6); + { + this.state = 2223; + this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if(!(_la === 106 || _la === 115 || _la === 165)) { + if (_la === 132) { + { + this.state = 2222; + this.match(ImpalaSqlParser.KW_NOT); + } + } + + this.state = 2225; + _la = this.tokenStream.LA(1); + if(!(_la === 106 || _la === 115 || _la === 164)) { this.errorHandler.recoverInline(this); } else { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2221; + this.state = 2226; (localContext as LikeContext)._pattern = this.valueExpression(0); - this.state = 2224; + this.state = 2229; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 285, this.context) ) { case 1: { - this.state = 2222; + this.state = 2227; this.match(ImpalaSqlParser.KW_ESCAPE); - this.state = 2223; + this.state = 2228; (localContext as LikeContext)._escape = this.valueExpression(0); } break; @@ -10205,16 +10238,16 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new REGEXPContext(localContext); this.enterOuterAlt(localContext, 7); { - this.state = 2226; + this.state = 2231; _la = this.tokenStream.LA(1); - if(!(_la === 105 || _la === 164)) { + if(!(_la === 105 || _la === 163)) { this.errorHandler.recoverInline(this); } else { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2227; + this.state = 2232; (localContext as REGEXPContext)._pattern = this.valueExpression(0); } break; @@ -10222,21 +10255,21 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new NullOrUnKnownOrBooleanPredicateContext(localContext); this.enterOuterAlt(localContext, 8); { - this.state = 2228; + this.state = 2233; this.match(ImpalaSqlParser.KW_IS); - this.state = 2230; + this.state = 2235; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 133) { + if (_la === 132) { { - this.state = 2229; + this.state = 2234; this.match(ImpalaSqlParser.KW_NOT); } } - this.state = 2232; + this.state = 2237; _la = this.tokenStream.LA(1); - if(!(_la === 70 || _la === 134 || _la === 196 || _la === 210)) { + if(!(_la === 70 || _la === 133 || _la === 194 || _la === 208)) { this.errorHandler.recoverInline(this); } else { @@ -10249,23 +10282,23 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new DistinctFromContext(localContext); this.enterOuterAlt(localContext, 9); { - this.state = 2233; + this.state = 2238; this.match(ImpalaSqlParser.KW_IS); - this.state = 2235; + this.state = 2240; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 133) { + if (_la === 132) { { - this.state = 2234; + this.state = 2239; this.match(ImpalaSqlParser.KW_NOT); } } - this.state = 2237; + this.state = 2242; this.match(ImpalaSqlParser.KW_DISTINCT); - this.state = 2238; + this.state = 2243; this.match(ImpalaSqlParser.KW_FROM); - this.state = 2239; + this.state = 2244; (localContext as DistinctFromContext)._right = this.valueExpression(0); } break; @@ -10304,7 +10337,7 @@ export class ImpalaSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2246; + this.state = 2251; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 289, this.context) ) { case 1: @@ -10313,7 +10346,7 @@ export class ImpalaSqlParser extends SQLParserBase { this.context = localContext; previousContext = localContext; - this.state = 2243; + this.state = 2248; this.primaryExpression(0); } break; @@ -10322,23 +10355,23 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new ArithmeticUnaryContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2244; + this.state = 2249; (localContext as ArithmeticUnaryContext)._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); - if(!(_la === 239 || _la === 240)) { + if(!(_la === 255 || _la === 256)) { (localContext as ArithmeticUnaryContext)._operator = this.errorHandler.recoverInline(this); } else { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2245; + this.state = 2250; this.valueExpression(4); } break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 2259; + this.state = 2264; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 291, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { @@ -10348,7 +10381,7 @@ export class ImpalaSqlParser extends SQLParserBase { } previousContext = localContext; { - this.state = 2257; + this.state = 2262; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 290, this.context) ) { case 1: @@ -10356,21 +10389,21 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new ArithmeticBinaryContext(new ValueExpressionContext(parentContext, parentState)); (localContext as ArithmeticBinaryContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, ImpalaSqlParser.RULE_valueExpression); - this.state = 2248; + this.state = 2253; if (!(this.precpred(this.context, 3))) { throw this.createFailedPredicateException("this.precpred(this.context, 3)"); } - this.state = 2249; + this.state = 2254; (localContext as ArithmeticBinaryContext)._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); - if(!(((((_la - 241)) & ~0x1F) === 0 && ((1 << (_la - 241)) & 7) !== 0))) { + if(!(((((_la - 257)) & ~0x1F) === 0 && ((1 << (_la - 257)) & 7) !== 0))) { (localContext as ArithmeticBinaryContext)._operator = this.errorHandler.recoverInline(this); } else { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2250; + this.state = 2255; (localContext as ArithmeticBinaryContext)._right = this.valueExpression(4); } break; @@ -10379,21 +10412,21 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new ArithmeticBinaryContext(new ValueExpressionContext(parentContext, parentState)); (localContext as ArithmeticBinaryContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, ImpalaSqlParser.RULE_valueExpression); - this.state = 2251; + this.state = 2256; if (!(this.precpred(this.context, 2))) { throw this.createFailedPredicateException("this.precpred(this.context, 2)"); } - this.state = 2252; + this.state = 2257; (localContext as ArithmeticBinaryContext)._operator = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); - if(!(_la === 239 || _la === 240)) { + if(!(_la === 255 || _la === 256)) { (localContext as ArithmeticBinaryContext)._operator = this.errorHandler.recoverInline(this); } else { this.errorHandler.reportMatch(this); this.consume(); } - this.state = 2253; + this.state = 2258; (localContext as ArithmeticBinaryContext)._right = this.valueExpression(3); } break; @@ -10402,20 +10435,20 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new ConcatenationContext(new ValueExpressionContext(parentContext, parentState)); (localContext as ConcatenationContext)._left = previousContext; this.pushNewRecursionContext(localContext, _startState, ImpalaSqlParser.RULE_valueExpression); - this.state = 2254; + this.state = 2259; if (!(this.precpred(this.context, 1))) { throw this.createFailedPredicateException("this.precpred(this.context, 1)"); } - this.state = 2255; + this.state = 2260; this.match(ImpalaSqlParser.CONCAT); - this.state = 2256; + this.state = 2261; (localContext as ConcatenationContext)._right = this.valueExpression(2); } break; } } } - this.state = 2261; + this.state = 2266; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 291, this.context); } @@ -10454,7 +10487,7 @@ export class ImpalaSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2508; + this.state = 2513; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 321, this.context) ) { case 1: @@ -10463,7 +10496,7 @@ export class ImpalaSqlParser extends SQLParserBase { this.context = localContext; previousContext = localContext; - this.state = 2263; + this.state = 2268; this.match(ImpalaSqlParser.KW_NULL); } break; @@ -10472,7 +10505,7 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new IntervalLiteralContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2264; + this.state = 2269; this.interval(); } break; @@ -10481,9 +10514,9 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new TypeConstructorContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2265; + this.state = 2270; this.identifier(); - this.state = 2266; + this.state = 2271; this.stringLiteral(); } break; @@ -10492,9 +10525,9 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new TypeConstructorContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2268; + this.state = 2273; this.match(ImpalaSqlParser.DOUBLE_PRECISION); - this.state = 2269; + this.state = 2274; this.stringLiteral(); } break; @@ -10503,7 +10536,7 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new NumericLiteralContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2270; + this.state = 2275; this.number_(); } break; @@ -10512,7 +10545,7 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new BooleanLiteralContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2271; + this.state = 2276; this.booleanValue(); } break; @@ -10521,7 +10554,7 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new StringLiteralValuesContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2272; + this.state = 2277; this.stringLiteral(); } break; @@ -10530,7 +10563,7 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new BinaryLiteralContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2273; + this.state = 2278; this.match(ImpalaSqlParser.BINARY_LITERAL); } break; @@ -10539,7 +10572,7 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new ParameterContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2274; + this.state = 2279; this.match(ImpalaSqlParser.QUESTION); } break; @@ -10548,17 +10581,17 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new PositionContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2275; - this.match(ImpalaSqlParser.KW_POSITION); - this.state = 2276; - this.match(ImpalaSqlParser.LPAREN); - this.state = 2277; - this.valueExpression(0); - this.state = 2278; - this.match(ImpalaSqlParser.KW_IN); - this.state = 2279; - this.valueExpression(0); this.state = 2280; + this.match(ImpalaSqlParser.KW_POSITION); + this.state = 2281; + this.match(ImpalaSqlParser.LPAREN); + this.state = 2282; + this.valueExpression(0); + this.state = 2283; + this.match(ImpalaSqlParser.KW_IN); + this.state = 2284; + this.valueExpression(0); + this.state = 2285; this.match(ImpalaSqlParser.RPAREN); } break; @@ -10567,41 +10600,41 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new RowConstructorContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2282; + this.state = 2287; this.match(ImpalaSqlParser.LPAREN); - this.state = 2283; + this.state = 2288; this.expression(); - this.state = 2286; + this.state = 2291; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 9) { { - this.state = 2284; + this.state = 2289; this.match(ImpalaSqlParser.KW_AS); - this.state = 2285; + this.state = 2290; this.type_(0); } } - this.state = 2296; + this.state = 2301; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 294, this.context); while (alternative !== 1 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1 + 1) { { { - this.state = 2288; + this.state = 2293; this.match(ImpalaSqlParser.COMMA); - this.state = 2289; + this.state = 2294; this.expression(); - this.state = 2292; + this.state = 2297; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 9) { { - this.state = 2290; + this.state = 2295; this.match(ImpalaSqlParser.KW_AS); - this.state = 2291; + this.state = 2296; this.type_(0); } } @@ -10609,11 +10642,11 @@ export class ImpalaSqlParser extends SQLParserBase { } } } - this.state = 2298; + this.state = 2303; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 294, this.context); } - this.state = 2299; + this.state = 2304; this.match(ImpalaSqlParser.RPAREN); } break; @@ -10622,29 +10655,29 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new RowConstructorContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2301; + this.state = 2306; this.match(ImpalaSqlParser.KW_ROW); - this.state = 2302; + this.state = 2307; this.match(ImpalaSqlParser.LPAREN); - this.state = 2303; - this.expression(); this.state = 2308; + this.expression(); + this.state = 2313; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 247) { + while (_la === 263) { { { - this.state = 2304; + this.state = 2309; this.match(ImpalaSqlParser.COMMA); - this.state = 2305; + this.state = 2310; this.expression(); } } - this.state = 2310; + this.state = 2315; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2311; + this.state = 2316; this.match(ImpalaSqlParser.RPAREN); } break; @@ -10653,30 +10686,30 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new FunctionCallContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2313; - this.functionNamePath(); - this.state = 2314; - this.match(ImpalaSqlParser.LPAREN); - this.state = 2315; - this.match(ImpalaSqlParser.ASTERISK); - this.state = 2316; - this.match(ImpalaSqlParser.RPAREN); this.state = 2318; + this.functionNamePath(); + this.state = 2319; + this.match(ImpalaSqlParser.LPAREN); + this.state = 2320; + this.match(ImpalaSqlParser.ASTERISK); + this.state = 2321; + this.match(ImpalaSqlParser.RPAREN); + this.state = 2323; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 296, this.context) ) { case 1: { - this.state = 2317; + this.state = 2322; this.filter(); } break; } - this.state = 2321; + this.state = 2326; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 297, this.context) ) { case 1: { - this.state = 2320; + this.state = 2325; this.over(); } break; @@ -10688,94 +10721,94 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new FunctionCallContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2323; + this.state = 2328; this.functionNamePath(); - this.state = 2324; + this.state = 2329; this.match(ImpalaSqlParser.LPAREN); - this.state = 2336; + this.state = 2341; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 805323012) !== 0) || ((((_la - 40)) & ~0x1F) === 0 && ((1 << (_la - 40)) & 1442972447) !== 0) || ((((_la - 88)) & ~0x1F) === 0 && ((1 << (_la - 88)) & 2218795145) !== 0) || ((((_la - 120)) & ~0x1F) === 0 && ((1 << (_la - 120)) & 539262841) !== 0) || ((((_la - 153)) & ~0x1F) === 0 && ((1 << (_la - 153)) & 271654979) !== 0) || ((((_la - 186)) & ~0x1F) === 0 && ((1 << (_la - 186)) & 537926659) !== 0) || ((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 1076887561) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 19453) !== 0)) { + if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 805323012) !== 0) || ((((_la - 40)) & ~0x1F) === 0 && ((1 << (_la - 40)) & 1442972447) !== 0) || ((((_la - 88)) & ~0x1F) === 0 && ((1 << (_la - 88)) & 2218795145) !== 0) || ((((_la - 120)) & ~0x1F) === 0 && ((1 << (_la - 120)) & 269631421) !== 0) || ((((_la - 152)) & ~0x1F) === 0 && ((1 << (_la - 152)) & 271654979) !== 0) || ((((_la - 184)) & ~0x1F) === 0 && ((1 << (_la - 184)) & 537926659) !== 0) || ((((_la - 217)) & ~0x1F) === 0 && ((1 << (_la - 217)) & 16393) !== 0) || ((((_la - 255)) & ~0x1F) === 0 && ((1 << (_la - 255)) & 2549744643) !== 0)) { { - this.state = 2326; + this.state = 2331; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 2 || _la === 57) { { - this.state = 2325; + this.state = 2330; this.setQuantifier(); } } - this.state = 2328; - this.expression(); this.state = 2333; + this.expression(); + this.state = 2338; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 247) { + while (_la === 263) { { { - this.state = 2329; + this.state = 2334; this.match(ImpalaSqlParser.COMMA); - this.state = 2330; + this.state = 2335; this.expression(); } } - this.state = 2335; + this.state = 2340; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 2348; + this.state = 2353; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 140) { + if (_la === 139) { { - this.state = 2338; + this.state = 2343; this.match(ImpalaSqlParser.KW_ORDER); - this.state = 2339; + this.state = 2344; this.match(ImpalaSqlParser.KW_BY); - this.state = 2340; - this.sortItem(); this.state = 2345; + this.sortItem(); + this.state = 2350; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 247) { + while (_la === 263) { { { - this.state = 2341; + this.state = 2346; this.match(ImpalaSqlParser.COMMA); - this.state = 2342; + this.state = 2347; this.sortItem(); } } - this.state = 2347; + this.state = 2352; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 2350; + this.state = 2355; this.match(ImpalaSqlParser.RPAREN); - this.state = 2352; + this.state = 2357; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 303, this.context) ) { case 1: { - this.state = 2351; + this.state = 2356; this.filter(); } break; } - this.state = 2355; + this.state = 2360; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 304, this.context) ) { case 1: { - this.state = 2354; + this.state = 2359; this.over(); } break; @@ -10787,11 +10820,11 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new LambdaContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2357; + this.state = 2362; this.identifier(); - this.state = 2358; + this.state = 2363; this.match(ImpalaSqlParser.RIGHT_ARROW); - this.state = 2359; + this.state = 2364; this.expression(); } break; @@ -10800,39 +10833,39 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new LambdaContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2361; + this.state = 2366; this.match(ImpalaSqlParser.LPAREN); - this.state = 2370; + this.state = 2375; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 14 || ((((_la - 43)) & ~0x1F) === 0 && ((1 << (_la - 43)) & 37748835) !== 0) || ((((_la - 91)) & ~0x1F) === 0 && ((1 << (_la - 91)) & 268959761) !== 0) || ((((_la - 123)) & ~0x1F) === 0 && ((1 << (_la - 123)) & 3221520879) !== 0) || ((((_la - 173)) & ~0x1F) === 0 && ((1 << (_la - 173)) & 16802051) !== 0) || ((((_la - 206)) & ~0x1F) === 0 && ((1 << (_la - 206)) & 74241) !== 0) || ((((_la - 258)) & ~0x1F) === 0 && ((1 << (_la - 258)) & 705) !== 0)) { + if (_la === 14 || ((((_la - 43)) & ~0x1F) === 0 && ((1 << (_la - 43)) & 37748835) !== 0) || ((((_la - 91)) & ~0x1F) === 0 && ((1 << (_la - 91)) & 2416443409) !== 0) || ((((_la - 123)) & ~0x1F) === 0 && ((1 << (_la - 123)) & 1610760439) !== 0) || ((((_la - 172)) & ~0x1F) === 0 && ((1 << (_la - 172)) & 8401155) !== 0) || ((((_la - 204)) & ~0x1F) === 0 && ((1 << (_la - 204)) & 134291969) !== 0) || ((((_la - 274)) & ~0x1F) === 0 && ((1 << (_la - 274)) & 705) !== 0)) { { - this.state = 2362; - this.identifier(); this.state = 2367; + this.identifier(); + this.state = 2372; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 247) { + while (_la === 263) { { { - this.state = 2363; + this.state = 2368; this.match(ImpalaSqlParser.COMMA); - this.state = 2364; + this.state = 2369; this.identifier(); } } - this.state = 2369; + this.state = 2374; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 2372; + this.state = 2377; this.match(ImpalaSqlParser.RPAREN); - this.state = 2373; + this.state = 2378; this.match(ImpalaSqlParser.RIGHT_ARROW); - this.state = 2374; + this.state = 2379; this.expression(); } break; @@ -10841,21 +10874,6 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new SubqueryExpressionContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2375; - this.match(ImpalaSqlParser.LPAREN); - this.state = 2376; - this.queryStatement(); - this.state = 2377; - this.match(ImpalaSqlParser.RPAREN); - } - break; - case 18: - { - localContext = new ExistsContext(localContext); - this.context = localContext; - previousContext = localContext; - this.state = 2379; - this.match(ImpalaSqlParser.KW_EXISTS); this.state = 2380; this.match(ImpalaSqlParser.LPAREN); this.state = 2381; @@ -10864,42 +10882,57 @@ export class ImpalaSqlParser extends SQLParserBase { this.match(ImpalaSqlParser.RPAREN); } break; + case 18: + { + localContext = new ExistsContext(localContext); + this.context = localContext; + previousContext = localContext; + this.state = 2384; + this.match(ImpalaSqlParser.KW_EXISTS); + this.state = 2385; + this.match(ImpalaSqlParser.LPAREN); + this.state = 2386; + this.queryStatement(); + this.state = 2387; + this.match(ImpalaSqlParser.RPAREN); + } + break; case 19: { localContext = new SimpleCaseContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2384; + this.state = 2389; this.match(ImpalaSqlParser.KW_CASE); - this.state = 2385; + this.state = 2390; this.valueExpression(0); - this.state = 2387; + this.state = 2392; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 2386; + this.state = 2391; this.whenClause(); } } - this.state = 2389; + this.state = 2394; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - } while (_la === 216); - this.state = 2393; + } while (_la === 214); + this.state = 2398; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 59) { { - this.state = 2391; + this.state = 2396; this.match(ImpalaSqlParser.KW_ELSE); - this.state = 2392; + this.state = 2397; (localContext as SimpleCaseContext)._elseExpression = this.expression(); } } - this.state = 2395; + this.state = 2400; this.match(ImpalaSqlParser.KW_END); } break; @@ -10908,35 +10941,35 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new SearchedCaseContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2397; + this.state = 2402; this.match(ImpalaSqlParser.KW_CASE); - this.state = 2399; + this.state = 2404; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); do { { { - this.state = 2398; + this.state = 2403; this.whenClause(); } } - this.state = 2401; + this.state = 2406; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - } while (_la === 216); - this.state = 2405; + } while (_la === 214); + this.state = 2410; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 59) { { - this.state = 2403; + this.state = 2408; this.match(ImpalaSqlParser.KW_ELSE); - this.state = 2404; + this.state = 2409; (localContext as SearchedCaseContext)._elseExpression = this.expression(); } } - this.state = 2407; + this.state = 2412; this.match(ImpalaSqlParser.KW_END); } break; @@ -10945,17 +10978,17 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new CastContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2409; - this.match(ImpalaSqlParser.KW_CAST); - this.state = 2410; - this.match(ImpalaSqlParser.LPAREN); - this.state = 2411; - this.expression(); - this.state = 2412; - this.match(ImpalaSqlParser.KW_AS); - this.state = 2413; - this.type_(0); this.state = 2414; + this.match(ImpalaSqlParser.KW_CAST); + this.state = 2415; + this.match(ImpalaSqlParser.LPAREN); + this.state = 2416; + this.expression(); + this.state = 2417; + this.match(ImpalaSqlParser.KW_AS); + this.state = 2418; + this.type_(0); + this.state = 2419; this.match(ImpalaSqlParser.RPAREN); } break; @@ -10964,17 +10997,17 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new CastContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2416; - this.match(ImpalaSqlParser.KW_TRY_CAST); - this.state = 2417; - this.match(ImpalaSqlParser.LPAREN); - this.state = 2418; - this.expression(); - this.state = 2419; - this.match(ImpalaSqlParser.KW_AS); - this.state = 2420; - this.type_(0); this.state = 2421; + this.match(ImpalaSqlParser.KW_TRY_CAST); + this.state = 2422; + this.match(ImpalaSqlParser.LPAREN); + this.state = 2423; + this.expression(); + this.state = 2424; + this.match(ImpalaSqlParser.KW_AS); + this.state = 2425; + this.type_(0); + this.state = 2426; this.match(ImpalaSqlParser.RPAREN); } break; @@ -10983,37 +11016,37 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new ArrayConstructorContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2423; + this.state = 2428; this.match(ImpalaSqlParser.KW_ARRAY); - this.state = 2424; + this.state = 2429; this.match(ImpalaSqlParser.LSQUARE); - this.state = 2433; + this.state = 2438; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 805323008) !== 0) || ((((_la - 40)) & ~0x1F) === 0 && ((1 << (_la - 40)) & 1442841375) !== 0) || ((((_la - 88)) & ~0x1F) === 0 && ((1 << (_la - 88)) & 2218795145) !== 0) || ((((_la - 120)) & ~0x1F) === 0 && ((1 << (_la - 120)) & 539262841) !== 0) || ((((_la - 153)) & ~0x1F) === 0 && ((1 << (_la - 153)) & 271654979) !== 0) || ((((_la - 186)) & ~0x1F) === 0 && ((1 << (_la - 186)) & 537926659) !== 0) || ((((_la - 219)) & ~0x1F) === 0 && ((1 << (_la - 219)) & 1076887561) !== 0) || ((((_la - 256)) & ~0x1F) === 0 && ((1 << (_la - 256)) & 19453) !== 0)) { + if ((((_la) & ~0x1F) === 0 && ((1 << _la) & 805323008) !== 0) || ((((_la - 40)) & ~0x1F) === 0 && ((1 << (_la - 40)) & 1442841375) !== 0) || ((((_la - 88)) & ~0x1F) === 0 && ((1 << (_la - 88)) & 2218795145) !== 0) || ((((_la - 120)) & ~0x1F) === 0 && ((1 << (_la - 120)) & 269631421) !== 0) || ((((_la - 152)) & ~0x1F) === 0 && ((1 << (_la - 152)) & 271654979) !== 0) || ((((_la - 184)) & ~0x1F) === 0 && ((1 << (_la - 184)) & 537926659) !== 0) || ((((_la - 217)) & ~0x1F) === 0 && ((1 << (_la - 217)) & 16393) !== 0) || ((((_la - 255)) & ~0x1F) === 0 && ((1 << (_la - 255)) & 2549744643) !== 0)) { { - this.state = 2425; - this.expression(); this.state = 2430; + this.expression(); + this.state = 2435; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 247) { + while (_la === 263) { { { - this.state = 2426; + this.state = 2431; this.match(ImpalaSqlParser.COMMA); - this.state = 2427; + this.state = 2432; this.expression(); } } - this.state = 2432; + this.state = 2437; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 2435; + this.state = 2440; this.match(ImpalaSqlParser.RSQUARE); } break; @@ -11022,7 +11055,7 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new ColumnReferenceContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2436; + this.state = 2441; this.identifier(); } break; @@ -11031,7 +11064,7 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new SpecialDateTimeFunctionContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2437; + this.state = 2442; (localContext as SpecialDateTimeFunctionContext)._name = this.match(ImpalaSqlParser.KW_CURRENT_DATE); } break; @@ -11040,18 +11073,18 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new SpecialDateTimeFunctionContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2438; + this.state = 2443; (localContext as SpecialDateTimeFunctionContext)._name = this.match(ImpalaSqlParser.KW_CURRENT_TIME); - this.state = 2442; + this.state = 2447; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 313, this.context) ) { case 1: { - this.state = 2439; + this.state = 2444; this.match(ImpalaSqlParser.LPAREN); - this.state = 2440; + this.state = 2445; (localContext as SpecialDateTimeFunctionContext)._precision = this.match(ImpalaSqlParser.INTEGER_VALUE); - this.state = 2441; + this.state = 2446; this.match(ImpalaSqlParser.RPAREN); } break; @@ -11063,18 +11096,18 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new SpecialDateTimeFunctionContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2444; + this.state = 2449; (localContext as SpecialDateTimeFunctionContext)._name = this.match(ImpalaSqlParser.KW_CURRENT_TIMESTAMP); - this.state = 2448; + this.state = 2453; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 314, this.context) ) { case 1: { - this.state = 2445; + this.state = 2450; this.match(ImpalaSqlParser.LPAREN); - this.state = 2446; + this.state = 2451; (localContext as SpecialDateTimeFunctionContext)._precision = this.match(ImpalaSqlParser.INTEGER_VALUE); - this.state = 2447; + this.state = 2452; this.match(ImpalaSqlParser.RPAREN); } break; @@ -11086,18 +11119,18 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new SpecialDateTimeFunctionContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2450; + this.state = 2455; (localContext as SpecialDateTimeFunctionContext)._name = this.match(ImpalaSqlParser.KW_LOCALTIME); - this.state = 2454; + this.state = 2459; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 315, this.context) ) { case 1: { - this.state = 2451; + this.state = 2456; this.match(ImpalaSqlParser.LPAREN); - this.state = 2452; + this.state = 2457; (localContext as SpecialDateTimeFunctionContext)._precision = this.match(ImpalaSqlParser.INTEGER_VALUE); - this.state = 2453; + this.state = 2458; this.match(ImpalaSqlParser.RPAREN); } break; @@ -11109,18 +11142,18 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new SpecialDateTimeFunctionContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2456; + this.state = 2461; (localContext as SpecialDateTimeFunctionContext)._name = this.match(ImpalaSqlParser.KW_LOCALTIMESTAMP); - this.state = 2460; + this.state = 2465; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 316, this.context) ) { case 1: { - this.state = 2457; + this.state = 2462; this.match(ImpalaSqlParser.LPAREN); - this.state = 2458; + this.state = 2463; (localContext as SpecialDateTimeFunctionContext)._precision = this.match(ImpalaSqlParser.INTEGER_VALUE); - this.state = 2459; + this.state = 2464; this.match(ImpalaSqlParser.RPAREN); } break; @@ -11132,7 +11165,7 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new CurrentUserContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2462; + this.state = 2467; (localContext as CurrentUserContext)._name = this.match(ImpalaSqlParser.KW_CURRENT_USER); } break; @@ -11141,7 +11174,7 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new CurrentPathContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2463; + this.state = 2468; (localContext as CurrentPathContext)._name = this.match(ImpalaSqlParser.KW_CURRENT_PATH); } break; @@ -11150,29 +11183,29 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new SubstringContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2464; + this.state = 2469; this.match(ImpalaSqlParser.KW_SUBSTRING); - this.state = 2465; + this.state = 2470; this.match(ImpalaSqlParser.LPAREN); - this.state = 2466; - this.valueExpression(0); - this.state = 2467; - this.match(ImpalaSqlParser.KW_FROM); - this.state = 2468; - this.valueExpression(0); this.state = 2471; + this.valueExpression(0); + this.state = 2472; + this.match(ImpalaSqlParser.KW_FROM); + this.state = 2473; + this.valueExpression(0); + this.state = 2476; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); if (_la === 78) { { - this.state = 2469; + this.state = 2474; this.match(ImpalaSqlParser.KW_FOR); - this.state = 2470; + this.state = 2475; this.valueExpression(0); } } - this.state = 2473; + this.state = 2478; this.match(ImpalaSqlParser.RPAREN); } break; @@ -11181,25 +11214,25 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new NormalizeContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2475; - this.match(ImpalaSqlParser.KW_NORMALIZE); - this.state = 2476; - this.match(ImpalaSqlParser.LPAREN); - this.state = 2477; - this.valueExpression(0); this.state = 2480; + this.match(ImpalaSqlParser.KW_NORMALIZE); + this.state = 2481; + this.match(ImpalaSqlParser.LPAREN); + this.state = 2482; + this.valueExpression(0); + this.state = 2485; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 247) { + if (_la === 263) { { - this.state = 2478; + this.state = 2483; this.match(ImpalaSqlParser.COMMA); - this.state = 2479; + this.state = 2484; this.normalForm(); } } - this.state = 2482; + this.state = 2487; this.match(ImpalaSqlParser.RPAREN); } break; @@ -11208,17 +11241,17 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new ExtractContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2484; - this.match(ImpalaSqlParser.KW_EXTRACT); - this.state = 2485; - this.match(ImpalaSqlParser.LPAREN); - this.state = 2486; - this.identifier(); - this.state = 2487; - this.match(ImpalaSqlParser.KW_FROM); - this.state = 2488; - this.valueExpression(0); this.state = 2489; + this.match(ImpalaSqlParser.KW_EXTRACT); + this.state = 2490; + this.match(ImpalaSqlParser.LPAREN); + this.state = 2491; + this.identifier(); + this.state = 2492; + this.match(ImpalaSqlParser.KW_FROM); + this.state = 2493; + this.valueExpression(0); + this.state = 2494; this.match(ImpalaSqlParser.RPAREN); } break; @@ -11227,11 +11260,11 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new ParenthesizedExpressionContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2491; + this.state = 2496; this.match(ImpalaSqlParser.LPAREN); - this.state = 2492; + this.state = 2497; this.expression(); - this.state = 2493; + this.state = 2498; this.match(ImpalaSqlParser.RPAREN); } break; @@ -11240,43 +11273,43 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new GroupingOperationContext(localContext); this.context = localContext; previousContext = localContext; - this.state = 2495; + this.state = 2500; this.match(ImpalaSqlParser.KW_GROUPING); - this.state = 2496; + this.state = 2501; this.match(ImpalaSqlParser.LPAREN); - this.state = 2505; + this.state = 2510; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 14 || ((((_la - 43)) & ~0x1F) === 0 && ((1 << (_la - 43)) & 37748835) !== 0) || ((((_la - 91)) & ~0x1F) === 0 && ((1 << (_la - 91)) & 268959761) !== 0) || ((((_la - 123)) & ~0x1F) === 0 && ((1 << (_la - 123)) & 3221520879) !== 0) || ((((_la - 173)) & ~0x1F) === 0 && ((1 << (_la - 173)) & 16802051) !== 0) || ((((_la - 206)) & ~0x1F) === 0 && ((1 << (_la - 206)) & 74241) !== 0) || ((((_la - 258)) & ~0x1F) === 0 && ((1 << (_la - 258)) & 705) !== 0)) { + if (_la === 14 || ((((_la - 43)) & ~0x1F) === 0 && ((1 << (_la - 43)) & 37748835) !== 0) || ((((_la - 91)) & ~0x1F) === 0 && ((1 << (_la - 91)) & 2416443409) !== 0) || ((((_la - 123)) & ~0x1F) === 0 && ((1 << (_la - 123)) & 1610760439) !== 0) || ((((_la - 172)) & ~0x1F) === 0 && ((1 << (_la - 172)) & 8401155) !== 0) || ((((_la - 204)) & ~0x1F) === 0 && ((1 << (_la - 204)) & 134291969) !== 0) || ((((_la - 274)) & ~0x1F) === 0 && ((1 << (_la - 274)) & 705) !== 0)) { { - this.state = 2497; - this.qualifiedName(); this.state = 2502; + this.qualifiedName(); + this.state = 2507; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 247) { + while (_la === 263) { { { - this.state = 2498; + this.state = 2503; this.match(ImpalaSqlParser.COMMA); - this.state = 2499; + this.state = 2504; this.qualifiedName(); } } - this.state = 2504; + this.state = 2509; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 2507; + this.state = 2512; this.match(ImpalaSqlParser.RPAREN); } break; } this.context!.stop = this.tokenStream.LT(-1); - this.state = 2520; + this.state = 2525; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 323, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { @@ -11286,7 +11319,7 @@ export class ImpalaSqlParser extends SQLParserBase { } previousContext = localContext; { - this.state = 2518; + this.state = 2523; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 322, this.context) ) { case 1: @@ -11294,15 +11327,15 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new SubscriptContext(new PrimaryExpressionContext(parentContext, parentState)); (localContext as SubscriptContext)._value = previousContext; this.pushNewRecursionContext(localContext, _startState, ImpalaSqlParser.RULE_primaryExpression); - this.state = 2510; + this.state = 2515; if (!(this.precpred(this.context, 15))) { throw this.createFailedPredicateException("this.precpred(this.context, 15)"); } - this.state = 2511; + this.state = 2516; this.match(ImpalaSqlParser.LSQUARE); - this.state = 2512; + this.state = 2517; (localContext as SubscriptContext)._index = this.valueExpression(0); - this.state = 2513; + this.state = 2518; this.match(ImpalaSqlParser.RSQUARE); } break; @@ -11311,20 +11344,20 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new DereferenceContext(new PrimaryExpressionContext(parentContext, parentState)); (localContext as DereferenceContext)._base = previousContext; this.pushNewRecursionContext(localContext, _startState, ImpalaSqlParser.RULE_primaryExpression); - this.state = 2515; + this.state = 2520; if (!(this.precpred(this.context, 13))) { throw this.createFailedPredicateException("this.precpred(this.context, 13)"); } - this.state = 2516; + this.state = 2521; this.match(ImpalaSqlParser.DOT); - this.state = 2517; + this.state = 2522; (localContext as DereferenceContext)._fieldName = this.identifier(); } break; } } } - this.state = 2522; + this.state = 2527; this.errorHandler.sync(this); alternative = this.interpreter.adaptivePredict(this.tokenStream, 323, this.context); } @@ -11348,14 +11381,14 @@ export class ImpalaSqlParser extends SQLParserBase { let localContext = new StringLiteralContext(this.context, this.state); this.enterRule(localContext, 314, ImpalaSqlParser.RULE_stringLiteral); try { - this.state = 2529; + this.state = 2534; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.STRING: localContext = new BasicStringLiteralContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2523; + this.state = 2528; this.match(ImpalaSqlParser.STRING); } break; @@ -11363,16 +11396,16 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new UnicodeStringLiteralContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2524; + this.state = 2529; this.match(ImpalaSqlParser.UNICODE_STRING); - this.state = 2527; + this.state = 2532; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 324, this.context) ) { case 1: { - this.state = 2525; + this.state = 2530; this.match(ImpalaSqlParser.KW_UESCAPE); - this.state = 2526; + this.state = 2531; this.match(ImpalaSqlParser.STRING); } break; @@ -11404,9 +11437,9 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2531; + this.state = 2536; _la = this.tokenStream.LA(1); - if(!(((((_la - 233)) & ~0x1F) === 0 && ((1 << (_la - 233)) & 63) !== 0))) { + if(!(((((_la - 249)) & ~0x1F) === 0 && ((1 << (_la - 249)) & 63) !== 0))) { this.errorHandler.recoverInline(this); } else { @@ -11436,9 +11469,9 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2533; + this.state = 2538; _la = this.tokenStream.LA(1); - if(!(_la === 2 || _la === 6 || _la === 182)) { + if(!(_la === 2 || _la === 6 || _la === 181)) { this.errorHandler.recoverInline(this); } else { @@ -11468,9 +11501,9 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2535; + this.state = 2540; _la = this.tokenStream.LA(1); - if(!(_la === 70 || _la === 196)) { + if(!(_la === 70 || _la === 194)) { this.errorHandler.recoverInline(this); } else { @@ -11497,54 +11530,54 @@ export class ImpalaSqlParser extends SQLParserBase { let localContext = new IntervalContext(this.context, this.state); this.enterRule(localContext, 322, ImpalaSqlParser.RULE_interval); try { - this.state = 2551; + this.state = 2556; this.errorHandler.sync(this); switch (this.interpreter.adaptivePredict(this.tokenStream, 326, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2537; + this.state = 2542; this.match(ImpalaSqlParser.INTEGER_VALUE); - this.state = 2538; + this.state = 2543; this.intervalField(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2539; + this.state = 2544; this.match(ImpalaSqlParser.LPAREN); - this.state = 2540; + this.state = 2545; this.match(ImpalaSqlParser.INTEGER_VALUE); - this.state = 2541; + this.state = 2546; this.match(ImpalaSqlParser.RPAREN); - this.state = 2542; + this.state = 2547; this.intervalField(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2543; + this.state = 2548; this.match(ImpalaSqlParser.KW_INTERVAL); - this.state = 2544; + this.state = 2549; this.match(ImpalaSqlParser.INTEGER_VALUE); - this.state = 2545; + this.state = 2550; this.intervalField(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 2546; + this.state = 2551; this.match(ImpalaSqlParser.KW_INTERVAL); - this.state = 2547; + this.state = 2552; this.match(ImpalaSqlParser.LPAREN); - this.state = 2548; + this.state = 2553; this.match(ImpalaSqlParser.INTEGER_VALUE); - this.state = 2549; + this.state = 2554; this.match(ImpalaSqlParser.RPAREN); - this.state = 2550; + this.state = 2555; this.intervalField(); } break; @@ -11571,9 +11604,9 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2553; + this.state = 2558; _la = this.tokenStream.LA(1); - if(!(_la === 48 || _la === 49 || _la === 91 || _la === 92 || ((((_la - 123)) & ~0x1F) === 0 && ((1 << (_la - 123)) & 15) !== 0) || _la === 173 || _la === 174 || _la === 219 || _la === 220)) { + if(!(_la === 48 || _la === 49 || ((((_la - 91)) & ~0x1F) === 0 && ((1 << (_la - 91)) & 2147483651) !== 0) || ((((_la - 123)) & ~0x1F) === 0 && ((1 << (_la - 123)) & 7) !== 0) || _la === 172 || _la === 173 || _la === 217 || _la === 218)) { this.errorHandler.recoverInline(this); } else { @@ -11603,9 +11636,9 @@ export class ImpalaSqlParser extends SQLParserBase { try { this.enterOuterAlt(localContext, 1); { - this.state = 2555; + this.state = 2560; _la = this.tokenStream.LA(1); - if(!(((((_la - 128)) & ~0x1F) === 0 && ((1 << (_la - 128)) & 15) !== 0))) { + if(!(((((_la - 127)) & ~0x1F) === 0 && ((1 << (_la - 127)) & 15) !== 0))) { this.errorHandler.recoverInline(this); } else { @@ -11647,155 +11680,124 @@ export class ImpalaSqlParser extends SQLParserBase { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2601; + this.state = 2607; this.errorHandler.sync(this); - switch (this.tokenStream.LA(1)) { - case ImpalaSqlParser.KW_ARRAY: - { - this.state = 2558; - this.match(ImpalaSqlParser.KW_ARRAY); - this.state = 2559; - this.match(ImpalaSqlParser.LT); - this.state = 2560; - this.type_(0); - this.state = 2561; - this.match(ImpalaSqlParser.GT); - } - break; - case ImpalaSqlParser.KW_MAP: + switch (this.interpreter.adaptivePredict(this.tokenStream, 331, this.context) ) { + case 1: { this.state = 2563; - this.match(ImpalaSqlParser.KW_MAP); + this.match(ImpalaSqlParser.KW_ARRAY); this.state = 2564; this.match(ImpalaSqlParser.LT); this.state = 2565; this.type_(0); this.state = 2566; - this.match(ImpalaSqlParser.COMMA); - this.state = 2567; - this.type_(0); - this.state = 2568; this.match(ImpalaSqlParser.GT); } break; - case ImpalaSqlParser.KW_STRUCT: + case 2: { - this.state = 2570; - this.match(ImpalaSqlParser.KW_STRUCT); - this.state = 2571; + this.state = 2568; + this.match(ImpalaSqlParser.KW_MAP); + this.state = 2569; this.match(ImpalaSqlParser.LT); - this.state = 2572; - this.identifier(); - this.state = 2573; - this.match(ImpalaSqlParser.COLON); - this.state = 2574; + this.state = 2570; this.type_(0); - this.state = 2582; + this.state = 2571; + this.match(ImpalaSqlParser.COMMA); + this.state = 2572; + this.type_(0); + this.state = 2573; + this.match(ImpalaSqlParser.GT); + } + break; + case 3: + { + this.state = 2575; + this.match(ImpalaSqlParser.KW_STRUCT); + this.state = 2576; + this.match(ImpalaSqlParser.LT); + this.state = 2577; + this.identifier(); + this.state = 2578; + this.type_(0); + this.state = 2585; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 247) { + while (_la === 263) { { { - this.state = 2575; + this.state = 2579; this.match(ImpalaSqlParser.COMMA); - this.state = 2576; + this.state = 2580; this.identifier(); - this.state = 2577; - this.match(ImpalaSqlParser.COLON); - this.state = 2578; + this.state = 2581; this.type_(0); } } - this.state = 2584; + this.state = 2587; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2585; + this.state = 2588; this.match(ImpalaSqlParser.GT); } break; - case ImpalaSqlParser.KW_BERNOULLI: - case ImpalaSqlParser.KW_CURRENT_TIMESTAMP: - case ImpalaSqlParser.KW_CURRENT_USER: - case ImpalaSqlParser.KW_DAY: - case ImpalaSqlParser.KW_DAYS: - case ImpalaSqlParser.KW_EXCLUDING: - case ImpalaSqlParser.KW_EXTRACT: - case ImpalaSqlParser.KW_HOUR: - case ImpalaSqlParser.KW_INCLUDING: - case ImpalaSqlParser.KW_KEY: - case ImpalaSqlParser.KW_LOCALTIME: - case ImpalaSqlParser.KW_MINUTE: - case ImpalaSqlParser.KW_MINUTES: - case ImpalaSqlParser.KW_MONTH: - case ImpalaSqlParser.KW_MONTHS: - case ImpalaSqlParser.KW_NFC: - case ImpalaSqlParser.KW_NFD: - case ImpalaSqlParser.KW_NFKC: - case ImpalaSqlParser.KW_NFKD: - case ImpalaSqlParser.KW_OPTION: - case ImpalaSqlParser.KW_ORDINALITY: - case ImpalaSqlParser.KW_PRIVILEGES: - case ImpalaSqlParser.KW_PROPERTIES: - case ImpalaSqlParser.KW_SECOND: - case ImpalaSqlParser.KW_SECONDS: - case ImpalaSqlParser.KW_SHUTDOWN: - case ImpalaSqlParser.KW_SUBSTRING: - case ImpalaSqlParser.KW_SYSTEM: - case ImpalaSqlParser.KW_TRY_CAST: - case ImpalaSqlParser.KW_USER: - case ImpalaSqlParser.KW_VIEWS: - case ImpalaSqlParser.KW_YEAR: - case ImpalaSqlParser.KW_ORC: - case ImpalaSqlParser.STRING: - case ImpalaSqlParser.IDENTIFIER: - case ImpalaSqlParser.DIGIT_IDENTIFIER: - case ImpalaSqlParser.BACKQUOTED_IDENTIFIER: - case ImpalaSqlParser.TIME_WITH_TIME_ZONE: - case ImpalaSqlParser.TIMESTAMP_WITH_TIME_ZONE: - case ImpalaSqlParser.DOUBLE_PRECISION: + case 4: { - this.state = 2587; - this.baseType(); - this.state = 2599; + this.state = 2592; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 329, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 328, this.context) ) { + case 1: + { + this.state = 2590; + this.baseType(); + } + break; + case 2: + { + this.state = 2591; + this.dataType(); + } + break; + } + this.state = 2605; + this.errorHandler.sync(this); + switch (this.interpreter.adaptivePredict(this.tokenStream, 330, this.context) ) { case 1: { - this.state = 2588; - this.match(ImpalaSqlParser.LPAREN); - this.state = 2589; - this.typeParameter(); this.state = 2594; + this.match(ImpalaSqlParser.LPAREN); + this.state = 2595; + this.typeParameter(); + this.state = 2600; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 247) { + while (_la === 263) { { { - this.state = 2590; + this.state = 2596; this.match(ImpalaSqlParser.COMMA); - this.state = 2591; + this.state = 2597; this.typeParameter(); } } - this.state = 2596; + this.state = 2602; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } - this.state = 2597; + this.state = 2603; this.match(ImpalaSqlParser.RPAREN); } break; } } break; - default: - throw new antlr.NoViableAltException(this); } this.context!.stop = this.tokenStream.LT(-1); - this.state = 2607; + this.state = 2613; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 331, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 332, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { if (this._parseListeners != null) { @@ -11806,18 +11808,18 @@ export class ImpalaSqlParser extends SQLParserBase { { localContext = new TypeContext(parentContext, parentState); this.pushNewRecursionContext(localContext, _startState, ImpalaSqlParser.RULE_type); - this.state = 2603; + this.state = 2609; if (!(this.precpred(this.context, 5))) { throw this.createFailedPredicateException("this.precpred(this.context, 5)"); } - this.state = 2604; + this.state = 2610; this.match(ImpalaSqlParser.KW_ARRAY); } } } - this.state = 2609; + this.state = 2615; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 331, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 332, this.context); } } } @@ -11835,17 +11837,49 @@ export class ImpalaSqlParser extends SQLParserBase { } return localContext; } + public dataType(): DataTypeContext { + let localContext = new DataTypeContext(this.context, this.state); + this.enterRule(localContext, 330, ImpalaSqlParser.RULE_dataType); + let _la: number; + try { + this.enterOuterAlt(localContext, 1); + { + this.state = 2616; + _la = this.tokenStream.LA(1); + if(!(_la === 8 || ((((_la - 227)) & ~0x1F) === 0 && ((1 << (_la - 227)) & 262143) !== 0))) { + this.errorHandler.recoverInline(this); + } + else { + this.errorHandler.reportMatch(this); + this.consume(); + } + } + } + catch (re) { + if (re instanceof antlr.RecognitionException) { + localContext.exception = re; + this.errorHandler.reportError(this, re); + this.errorHandler.recover(this, re); + } else { + throw re; + } + } + finally { + this.exitRule(); + } + return localContext; + } public typeParameter(): TypeParameterContext { let localContext = new TypeParameterContext(this.context, this.state); - this.enterRule(localContext, 330, ImpalaSqlParser.RULE_typeParameter); + this.enterRule(localContext, 332, ImpalaSqlParser.RULE_typeParameter); try { - this.state = 2612; + this.state = 2620; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.INTEGER_VALUE: this.enterOuterAlt(localContext, 1); { - this.state = 2610; + this.state = 2618; this.match(ImpalaSqlParser.INTEGER_VALUE); } break; @@ -11861,7 +11895,6 @@ export class ImpalaSqlParser extends SQLParserBase { case ImpalaSqlParser.KW_INCLUDING: case ImpalaSqlParser.KW_KEY: case ImpalaSqlParser.KW_LOCALTIME: - case ImpalaSqlParser.KW_MAP: case ImpalaSqlParser.KW_MINUTE: case ImpalaSqlParser.KW_MINUTES: case ImpalaSqlParser.KW_MONTH: @@ -11877,7 +11910,6 @@ export class ImpalaSqlParser extends SQLParserBase { case ImpalaSqlParser.KW_SECOND: case ImpalaSqlParser.KW_SECONDS: case ImpalaSqlParser.KW_SHUTDOWN: - case ImpalaSqlParser.KW_STRUCT: case ImpalaSqlParser.KW_SUBSTRING: case ImpalaSqlParser.KW_SYSTEM: case ImpalaSqlParser.KW_TRY_CAST: @@ -11885,6 +11917,24 @@ export class ImpalaSqlParser extends SQLParserBase { case ImpalaSqlParser.KW_VIEWS: case ImpalaSqlParser.KW_YEAR: case ImpalaSqlParser.KW_ORC: + case ImpalaSqlParser.KW_BINARY: + case ImpalaSqlParser.KW_BIGINT: + case ImpalaSqlParser.KW_BOOLEAN: + case ImpalaSqlParser.KW_CHAR: + case ImpalaSqlParser.KW_DATE: + case ImpalaSqlParser.KW_DECIMAL: + case ImpalaSqlParser.KW_DOUBLE: + case ImpalaSqlParser.KW_INT: + case ImpalaSqlParser.KW_MAP: + case ImpalaSqlParser.KW_REAL: + case ImpalaSqlParser.KW_SMALLINT: + case ImpalaSqlParser.KW_FLOAT: + case ImpalaSqlParser.KW_STRING: + case ImpalaSqlParser.KW_STRUCT: + case ImpalaSqlParser.KW_TIMESTAMP: + case ImpalaSqlParser.KW_TINYINT: + case ImpalaSqlParser.KW_VARCHAR: + case ImpalaSqlParser.KW_COMPLEX: case ImpalaSqlParser.STRING: case ImpalaSqlParser.IDENTIFIER: case ImpalaSqlParser.DIGIT_IDENTIFIER: @@ -11894,7 +11944,7 @@ export class ImpalaSqlParser extends SQLParserBase { case ImpalaSqlParser.DOUBLE_PRECISION: this.enterOuterAlt(localContext, 2); { - this.state = 2611; + this.state = 2619; this.type_(0); } break; @@ -11918,29 +11968,29 @@ export class ImpalaSqlParser extends SQLParserBase { } public baseType(): BaseTypeContext { let localContext = new BaseTypeContext(this.context, this.state); - this.enterRule(localContext, 332, ImpalaSqlParser.RULE_baseType); + this.enterRule(localContext, 334, ImpalaSqlParser.RULE_baseType); try { - this.state = 2618; + this.state = 2626; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.TIME_WITH_TIME_ZONE: this.enterOuterAlt(localContext, 1); { - this.state = 2614; + this.state = 2622; this.match(ImpalaSqlParser.TIME_WITH_TIME_ZONE); } break; case ImpalaSqlParser.TIMESTAMP_WITH_TIME_ZONE: this.enterOuterAlt(localContext, 2); { - this.state = 2615; + this.state = 2623; this.match(ImpalaSqlParser.TIMESTAMP_WITH_TIME_ZONE); } break; case ImpalaSqlParser.DOUBLE_PRECISION: this.enterOuterAlt(localContext, 3); { - this.state = 2616; + this.state = 2624; this.match(ImpalaSqlParser.DOUBLE_PRECISION); } break; @@ -11977,13 +12027,14 @@ export class ImpalaSqlParser extends SQLParserBase { case ImpalaSqlParser.KW_VIEWS: case ImpalaSqlParser.KW_YEAR: case ImpalaSqlParser.KW_ORC: + case ImpalaSqlParser.KW_DATE: case ImpalaSqlParser.STRING: case ImpalaSqlParser.IDENTIFIER: case ImpalaSqlParser.DIGIT_IDENTIFIER: case ImpalaSqlParser.BACKQUOTED_IDENTIFIER: this.enterOuterAlt(localContext, 4); { - this.state = 2617; + this.state = 2625; this.identifier(); } break; @@ -12007,17 +12058,17 @@ export class ImpalaSqlParser extends SQLParserBase { } public whenClause(): WhenClauseContext { let localContext = new WhenClauseContext(this.context, this.state); - this.enterRule(localContext, 334, ImpalaSqlParser.RULE_whenClause); + this.enterRule(localContext, 336, ImpalaSqlParser.RULE_whenClause); try { this.enterOuterAlt(localContext, 1); { - this.state = 2620; + this.state = 2628; this.match(ImpalaSqlParser.KW_WHEN); - this.state = 2621; + this.state = 2629; localContext._condition = this.expression(); - this.state = 2622; + this.state = 2630; this.match(ImpalaSqlParser.KW_THEN); - this.state = 2623; + this.state = 2631; localContext._result = this.expression(); } } @@ -12037,19 +12088,19 @@ export class ImpalaSqlParser extends SQLParserBase { } public filter(): FilterContext { let localContext = new FilterContext(this.context, this.state); - this.enterRule(localContext, 336, ImpalaSqlParser.RULE_filter); + this.enterRule(localContext, 338, ImpalaSqlParser.RULE_filter); try { this.enterOuterAlt(localContext, 1); { - this.state = 2625; + this.state = 2633; this.match(ImpalaSqlParser.KW_FILTER); - this.state = 2626; + this.state = 2634; this.match(ImpalaSqlParser.LPAREN); - this.state = 2627; + this.state = 2635; this.match(ImpalaSqlParser.KW_WHERE); - this.state = 2628; + this.state = 2636; this.booleanExpression(0); - this.state = 2629; + this.state = 2637; this.match(ImpalaSqlParser.RPAREN); } } @@ -12069,88 +12120,88 @@ export class ImpalaSqlParser extends SQLParserBase { } public over(): OverContext { let localContext = new OverContext(this.context, this.state); - this.enterRule(localContext, 338, ImpalaSqlParser.RULE_over); + this.enterRule(localContext, 340, ImpalaSqlParser.RULE_over); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2631; + this.state = 2639; this.match(ImpalaSqlParser.KW_OVER); - this.state = 2632; + this.state = 2640; this.match(ImpalaSqlParser.LPAREN); - this.state = 2643; + this.state = 2651; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 146) { + if (_la === 145) { { - this.state = 2633; + this.state = 2641; this.match(ImpalaSqlParser.KW_PARTITION); - this.state = 2634; + this.state = 2642; this.match(ImpalaSqlParser.KW_BY); - this.state = 2635; + this.state = 2643; localContext._expression = this.expression(); localContext._partition.push(localContext._expression); - this.state = 2640; + this.state = 2648; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 247) { + while (_la === 263) { { { - this.state = 2636; + this.state = 2644; this.match(ImpalaSqlParser.COMMA); - this.state = 2637; + this.state = 2645; localContext._expression = this.expression(); localContext._partition.push(localContext._expression); } } - this.state = 2642; + this.state = 2650; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 2655; + this.state = 2663; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 140) { + if (_la === 139) { { - this.state = 2645; + this.state = 2653; this.match(ImpalaSqlParser.KW_ORDER); - this.state = 2646; + this.state = 2654; this.match(ImpalaSqlParser.KW_BY); - this.state = 2647; + this.state = 2655; this.sortItem(); - this.state = 2652; + this.state = 2660; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 247) { + while (_la === 263) { { { - this.state = 2648; + this.state = 2656; this.match(ImpalaSqlParser.COMMA); - this.state = 2649; + this.state = 2657; this.sortItem(); } } - this.state = 2654; + this.state = 2662; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } } } - this.state = 2658; + this.state = 2666; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 155 || _la === 170) { + if (_la === 154 || _la === 169) { { - this.state = 2657; + this.state = 2665; this.windowFrame(); } } - this.state = 2660; + this.state = 2668; this.match(ImpalaSqlParser.RPAREN); } } @@ -12170,56 +12221,56 @@ export class ImpalaSqlParser extends SQLParserBase { } public windowFrame(): WindowFrameContext { let localContext = new WindowFrameContext(this.context, this.state); - this.enterRule(localContext, 340, ImpalaSqlParser.RULE_windowFrame); + this.enterRule(localContext, 342, ImpalaSqlParser.RULE_windowFrame); try { - this.state = 2678; + this.state = 2686; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 339, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 340, this.context) ) { case 1: this.enterOuterAlt(localContext, 1); { - this.state = 2662; + this.state = 2670; localContext._frameType = this.match(ImpalaSqlParser.KW_RANGE); - this.state = 2663; + this.state = 2671; localContext._start_ = this.frameBound(); } break; case 2: this.enterOuterAlt(localContext, 2); { - this.state = 2664; + this.state = 2672; localContext._frameType = this.match(ImpalaSqlParser.KW_ROWS); - this.state = 2665; + this.state = 2673; localContext._start_ = this.frameBound(); } break; case 3: this.enterOuterAlt(localContext, 3); { - this.state = 2666; + this.state = 2674; localContext._frameType = this.match(ImpalaSqlParser.KW_RANGE); - this.state = 2667; + this.state = 2675; this.match(ImpalaSqlParser.KW_BETWEEN); - this.state = 2668; + this.state = 2676; localContext._start_ = this.frameBound(); - this.state = 2669; + this.state = 2677; this.match(ImpalaSqlParser.KW_AND); - this.state = 2670; + this.state = 2678; localContext._end = this.frameBound(); } break; case 4: this.enterOuterAlt(localContext, 4); { - this.state = 2672; + this.state = 2680; localContext._frameType = this.match(ImpalaSqlParser.KW_ROWS); - this.state = 2673; + this.state = 2681; this.match(ImpalaSqlParser.KW_BETWEEN); - this.state = 2674; + this.state = 2682; localContext._start_ = this.frameBound(); - this.state = 2675; + this.state = 2683; this.match(ImpalaSqlParser.KW_AND); - this.state = 2676; + this.state = 2684; localContext._end = this.frameBound(); } break; @@ -12241,19 +12292,19 @@ export class ImpalaSqlParser extends SQLParserBase { } public frameBound(): FrameBoundContext { let localContext = new FrameBoundContext(this.context, this.state); - this.enterRule(localContext, 342, ImpalaSqlParser.RULE_frameBound); + this.enterRule(localContext, 344, ImpalaSqlParser.RULE_frameBound); let _la: number; try { - this.state = 2689; + this.state = 2697; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 340, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 341, this.context) ) { case 1: localContext = new UnboundedFrameContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2680; + this.state = 2688; this.match(ImpalaSqlParser.KW_UNBOUNDED); - this.state = 2681; + this.state = 2689; (localContext as UnboundedFrameContext)._boundType = this.match(ImpalaSqlParser.KW_PRECEDING); } break; @@ -12261,9 +12312,9 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new UnboundedFrameContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2682; + this.state = 2690; this.match(ImpalaSqlParser.KW_UNBOUNDED); - this.state = 2683; + this.state = 2691; (localContext as UnboundedFrameContext)._boundType = this.match(ImpalaSqlParser.KW_FOLLOWING); } break; @@ -12271,9 +12322,9 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new CurrentRowBoundContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 2684; + this.state = 2692; this.match(ImpalaSqlParser.KW_CURRENT); - this.state = 2685; + this.state = 2693; this.match(ImpalaSqlParser.KW_ROW); } break; @@ -12281,12 +12332,12 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new BoundedFrameContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 2686; + this.state = 2694; this.expression(); - this.state = 2687; + this.state = 2695; (localContext as BoundedFrameContext)._boundType = this.tokenStream.LT(1); _la = this.tokenStream.LA(1); - if(!(_la === 77 || _la === 150)) { + if(!(_la === 77 || _la === 149)) { (localContext as BoundedFrameContext)._boundType = this.errorHandler.recoverInline(this); } else { @@ -12313,20 +12364,20 @@ export class ImpalaSqlParser extends SQLParserBase { } public pathElement(): PathElementContext { let localContext = new PathElementContext(this.context, this.state); - this.enterRule(localContext, 344, ImpalaSqlParser.RULE_pathElement); + this.enterRule(localContext, 346, ImpalaSqlParser.RULE_pathElement); try { - this.state = 2696; + this.state = 2704; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 341, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 342, this.context) ) { case 1: localContext = new QualifiedArgumentContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2691; + this.state = 2699; this.identifier(); - this.state = 2692; + this.state = 2700; this.match(ImpalaSqlParser.DOT); - this.state = 2693; + this.state = 2701; this.identifier(); } break; @@ -12334,7 +12385,7 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new UnqualifiedArgumentContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2695; + this.state = 2703; this.identifier(); } break; @@ -12356,26 +12407,26 @@ export class ImpalaSqlParser extends SQLParserBase { } public pathSpecification(): PathSpecificationContext { let localContext = new PathSpecificationContext(this.context, this.state); - this.enterRule(localContext, 346, ImpalaSqlParser.RULE_pathSpecification); + this.enterRule(localContext, 348, ImpalaSqlParser.RULE_pathSpecification); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2698; + this.state = 2706; this.pathElement(); - this.state = 2703; + this.state = 2711; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - while (_la === 247) { + while (_la === 263) { { { - this.state = 2699; + this.state = 2707; this.match(ImpalaSqlParser.COMMA); - this.state = 2700; + this.state = 2708; this.pathElement(); } } - this.state = 2705; + this.state = 2713; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); } @@ -12397,69 +12448,69 @@ export class ImpalaSqlParser extends SQLParserBase { } public privilege(): PrivilegeContext { let localContext = new PrivilegeContext(this.context, this.state); - this.enterRule(localContext, 348, ImpalaSqlParser.RULE_privilege); + this.enterRule(localContext, 350, ImpalaSqlParser.RULE_privilege); let _la: number; try { - this.state = 2719; + this.state = 2727; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_ALL: this.enterOuterAlt(localContext, 1); { - this.state = 2706; + this.state = 2714; this.match(ImpalaSqlParser.KW_ALL); } break; case ImpalaSqlParser.KW_ALTER: this.enterOuterAlt(localContext, 2); { - this.state = 2707; + this.state = 2715; this.match(ImpalaSqlParser.KW_ALTER); } break; case ImpalaSqlParser.KW_DROP: this.enterOuterAlt(localContext, 3); { - this.state = 2708; + this.state = 2716; this.match(ImpalaSqlParser.KW_DROP); } break; case ImpalaSqlParser.KW_CREATE: this.enterOuterAlt(localContext, 4); { - this.state = 2709; + this.state = 2717; this.match(ImpalaSqlParser.KW_CREATE); } break; case ImpalaSqlParser.KW_INSERT: this.enterOuterAlt(localContext, 5); { - this.state = 2710; + this.state = 2718; this.match(ImpalaSqlParser.KW_INSERT); } break; case ImpalaSqlParser.KW_REFRESH: this.enterOuterAlt(localContext, 6); { - this.state = 2711; + this.state = 2719; this.match(ImpalaSqlParser.KW_REFRESH); } break; case ImpalaSqlParser.KW_SELECT: this.enterOuterAlt(localContext, 7); { - this.state = 2712; + this.state = 2720; this.match(ImpalaSqlParser.KW_SELECT); - this.state = 2717; + this.state = 2725; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 249) { + if (_la === 265) { { - this.state = 2713; + this.state = 2721; this.match(ImpalaSqlParser.LPAREN); - this.state = 2714; + this.state = 2722; localContext._columnName = this.identifier(); - this.state = 2715; + this.state = 2723; this.match(ImpalaSqlParser.RPAREN); } } @@ -12486,14 +12537,14 @@ export class ImpalaSqlParser extends SQLParserBase { } public objectType(): ObjectTypeContext { let localContext = new ObjectTypeContext(this.context, this.state); - this.enterRule(localContext, 350, ImpalaSqlParser.RULE_objectType); + this.enterRule(localContext, 352, ImpalaSqlParser.RULE_objectType); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2721; + this.state = 2729; _la = this.tokenStream.LA(1); - if(!(_la === 46 || _la === 179 || _la === 190 || _la === 211)) { + if(!(_la === 46 || ((((_la - 178)) & ~0x1F) === 0 && ((1 << (_la - 178)) & 2147484673) !== 0))) { this.errorHandler.recoverInline(this); } else { @@ -12518,30 +12569,30 @@ export class ImpalaSqlParser extends SQLParserBase { } public qualifiedName(): QualifiedNameContext { let localContext = new QualifiedNameContext(this.context, this.state); - this.enterRule(localContext, 352, ImpalaSqlParser.RULE_qualifiedName); + this.enterRule(localContext, 354, ImpalaSqlParser.RULE_qualifiedName); try { let alternative: number; this.enterOuterAlt(localContext, 1); { - this.state = 2723; + this.state = 2731; this.identifier(); - this.state = 2728; + this.state = 2736; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 345, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 346, this.context); while (alternative !== 2 && alternative !== antlr.ATN.INVALID_ALT_NUMBER) { if (alternative === 1) { { { - this.state = 2724; + this.state = 2732; this.match(ImpalaSqlParser.DOT); - this.state = 2725; + this.state = 2733; this.identifier(); } } } - this.state = 2730; + this.state = 2738; this.errorHandler.sync(this); - alternative = this.interpreter.adaptivePredict(this.tokenStream, 345, this.context); + alternative = this.interpreter.adaptivePredict(this.tokenStream, 346, this.context); } } } @@ -12561,18 +12612,18 @@ export class ImpalaSqlParser extends SQLParserBase { } public principal(): PrincipalContext { let localContext = new PrincipalContext(this.context, this.state); - this.enterRule(localContext, 354, ImpalaSqlParser.RULE_principal); + this.enterRule(localContext, 356, ImpalaSqlParser.RULE_principal); try { - this.state = 2737; + this.state = 2745; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.KW_ROLE: localContext = new RolePrincipalContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2731; + this.state = 2739; this.match(ImpalaSqlParser.KW_ROLE); - this.state = 2732; + this.state = 2740; this.identifier(); } break; @@ -12580,9 +12631,9 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new UserPrincipalContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2733; + this.state = 2741; this.match(ImpalaSqlParser.KW_USER); - this.state = 2734; + this.state = 2742; this.identifier(); } break; @@ -12590,9 +12641,9 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new GroupPrincipalContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 2735; + this.state = 2743; this.match(ImpalaSqlParser.KW_GROUP); - this.state = 2736; + this.state = 2744; this.identifier(); } break; @@ -12616,16 +12667,16 @@ export class ImpalaSqlParser extends SQLParserBase { } public identifier(): IdentifierContext { let localContext = new IdentifierContext(this.context, this.state); - this.enterRule(localContext, 356, ImpalaSqlParser.RULE_identifier); + this.enterRule(localContext, 358, ImpalaSqlParser.RULE_identifier); try { - this.state = 2744; + this.state = 2752; this.errorHandler.sync(this); switch (this.tokenStream.LA(1)) { case ImpalaSqlParser.IDENTIFIER: localContext = new UnquotedIdentifierContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2739; + this.state = 2747; this.match(ImpalaSqlParser.IDENTIFIER); } break; @@ -12633,7 +12684,7 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new QuotedIdentifierContext(localContext); this.enterOuterAlt(localContext, 2); { - this.state = 2740; + this.state = 2748; this.match(ImpalaSqlParser.STRING); } break; @@ -12670,10 +12721,11 @@ export class ImpalaSqlParser extends SQLParserBase { case ImpalaSqlParser.KW_VIEWS: case ImpalaSqlParser.KW_YEAR: case ImpalaSqlParser.KW_ORC: + case ImpalaSqlParser.KW_DATE: localContext = new UnquotedIdentifierContext(localContext); this.enterOuterAlt(localContext, 3); { - this.state = 2741; + this.state = 2749; this.nonReserved(); } break; @@ -12681,7 +12733,7 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new BackQuotedIdentifierContext(localContext); this.enterOuterAlt(localContext, 4); { - this.state = 2742; + this.state = 2750; this.match(ImpalaSqlParser.BACKQUOTED_IDENTIFIER); } break; @@ -12689,7 +12741,7 @@ export class ImpalaSqlParser extends SQLParserBase { localContext = new DigitIdentifierContext(localContext); this.enterOuterAlt(localContext, 5); { - this.state = 2743; + this.state = 2751; this.match(ImpalaSqlParser.DIGIT_IDENTIFIER); } break; @@ -12713,56 +12765,20 @@ export class ImpalaSqlParser extends SQLParserBase { } public number_(): NumberContext { let localContext = new NumberContext(this.context, this.state); - this.enterRule(localContext, 358, ImpalaSqlParser.RULE_number); + this.enterRule(localContext, 360, ImpalaSqlParser.RULE_number); let _la: number; try { - this.state = 2758; + this.state = 2766; this.errorHandler.sync(this); - switch (this.interpreter.adaptivePredict(this.tokenStream, 351, this.context) ) { + switch (this.interpreter.adaptivePredict(this.tokenStream, 352, this.context) ) { case 1: localContext = new DecimalLiteralContext(localContext); this.enterOuterAlt(localContext, 1); { - this.state = 2747; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 240) { - { - this.state = 2746; - this.match(ImpalaSqlParser.MINUS); - } - } - - this.state = 2749; - this.match(ImpalaSqlParser.DECIMAL_VALUE); - } - break; - case 2: - localContext = new DoubleLiteralContext(localContext); - this.enterOuterAlt(localContext, 2); - { - this.state = 2751; - this.errorHandler.sync(this); - _la = this.tokenStream.LA(1); - if (_la === 240) { - { - this.state = 2750; - this.match(ImpalaSqlParser.MINUS); - } - } - - this.state = 2753; - this.match(ImpalaSqlParser.DOUBLE_VALUE); - } - break; - case 3: - localContext = new IntegerLiteralContext(localContext); - this.enterOuterAlt(localContext, 3); - { this.state = 2755; this.errorHandler.sync(this); _la = this.tokenStream.LA(1); - if (_la === 240) { + if (_la === 256) { { this.state = 2754; this.match(ImpalaSqlParser.MINUS); @@ -12770,6 +12786,42 @@ export class ImpalaSqlParser extends SQLParserBase { } this.state = 2757; + this.match(ImpalaSqlParser.DECIMAL_VALUE); + } + break; + case 2: + localContext = new DoubleLiteralContext(localContext); + this.enterOuterAlt(localContext, 2); + { + this.state = 2759; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 256) { + { + this.state = 2758; + this.match(ImpalaSqlParser.MINUS); + } + } + + this.state = 2761; + this.match(ImpalaSqlParser.DOUBLE_VALUE); + } + break; + case 3: + localContext = new IntegerLiteralContext(localContext); + this.enterOuterAlt(localContext, 3); + { + this.state = 2763; + this.errorHandler.sync(this); + _la = this.tokenStream.LA(1); + if (_la === 256) { + { + this.state = 2762; + this.match(ImpalaSqlParser.MINUS); + } + } + + this.state = 2765; this.match(ImpalaSqlParser.INTEGER_VALUE); } break; @@ -12791,14 +12843,14 @@ export class ImpalaSqlParser extends SQLParserBase { } public reservedKeywordsUsedAsFuncName(): ReservedKeywordsUsedAsFuncNameContext { let localContext = new ReservedKeywordsUsedAsFuncNameContext(this.context, this.state); - this.enterRule(localContext, 360, ImpalaSqlParser.RULE_reservedKeywordsUsedAsFuncName); + this.enterRule(localContext, 362, ImpalaSqlParser.RULE_reservedKeywordsUsedAsFuncName); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2760; + this.state = 2768; _la = this.tokenStream.LA(1); - if(!(((((_la - 28)) & ~0x1F) === 0 && ((1 << (_la - 28)) & 1085443) !== 0) || _la === 68 || _la === 91 || ((((_la - 114)) & ~0x1F) === 0 && ((1 << (_la - 114)) & 2561) !== 0) || ((((_la - 159)) & ~0x1F) === 0 && ((1 << (_la - 159)) & 134234241) !== 0) || ((((_la - 198)) & ~0x1F) === 0 && ((1 << (_la - 198)) & 2097409) !== 0))) { + if(!(((((_la - 28)) & ~0x1F) === 0 && ((1 << (_la - 28)) & 1085443) !== 0) || _la === 68 || _la === 91 || ((((_la - 114)) & ~0x1F) === 0 && ((1 << (_la - 114)) & 1281) !== 0) || ((((_la - 158)) & ~0x1F) === 0 && ((1 << (_la - 158)) & 67125377) !== 0) || ((((_la - 196)) & ~0x1F) === 0 && ((1 << (_la - 196)) & 2097409) !== 0))) { this.errorHandler.recoverInline(this); } else { @@ -12823,14 +12875,14 @@ export class ImpalaSqlParser extends SQLParserBase { } public nonReserved(): NonReservedContext { let localContext = new NonReservedContext(this.context, this.state); - this.enterRule(localContext, 362, ImpalaSqlParser.RULE_nonReserved); + this.enterRule(localContext, 364, ImpalaSqlParser.RULE_nonReserved); let _la: number; try { this.enterOuterAlt(localContext, 1); { - this.state = 2762; + this.state = 2770; _la = this.tokenStream.LA(1); - if(!(_la === 14 || ((((_la - 43)) & ~0x1F) === 0 && ((1 << (_la - 43)) & 37748835) !== 0) || ((((_la - 91)) & ~0x1F) === 0 && ((1 << (_la - 91)) & 268959761) !== 0) || ((((_la - 123)) & ~0x1F) === 0 && ((1 << (_la - 123)) & 3221520879) !== 0) || ((((_la - 173)) & ~0x1F) === 0 && ((1 << (_la - 173)) & 16802051) !== 0) || ((((_la - 206)) & ~0x1F) === 0 && ((1 << (_la - 206)) & 74241) !== 0))) { + if(!(_la === 14 || ((((_la - 43)) & ~0x1F) === 0 && ((1 << (_la - 43)) & 37748835) !== 0) || ((((_la - 91)) & ~0x1F) === 0 && ((1 << (_la - 91)) & 2416443409) !== 0) || ((((_la - 123)) & ~0x1F) === 0 && ((1 << (_la - 123)) & 1610760439) !== 0) || ((((_la - 172)) & ~0x1F) === 0 && ((1 << (_la - 172)) & 8401155) !== 0) || ((((_la - 204)) & ~0x1F) === 0 && ((1 << (_la - 204)) & 134291969) !== 0))) { this.errorHandler.recoverInline(this); } else { @@ -12934,7 +12986,7 @@ export class ImpalaSqlParser extends SQLParserBase { } public static readonly _serializedATN: number[] = [ - 4,1,273,2765,2,0,7,0,2,1,7,1,2,2,7,2,2,3,7,3,2,4,7,4,2,5,7,5,2,6, + 4,1,289,2773,2,0,7,0,2,1,7,1,2,2,7,2,2,3,7,3,2,4,7,4,2,5,7,5,2,6, 7,6,2,7,7,7,2,8,7,8,2,9,7,9,2,10,7,10,2,11,7,11,2,12,7,12,2,13,7, 13,2,14,7,14,2,15,7,15,2,16,7,16,2,17,7,17,2,18,7,18,2,19,7,19,2, 20,7,20,2,21,7,21,2,22,7,22,2,23,7,23,2,24,7,24,2,25,7,25,2,26,7, @@ -12964,1160 +13016,1163 @@ export class ImpalaSqlParser extends SQLParserBase { 7,164,2,165,7,165,2,166,7,166,2,167,7,167,2,168,7,168,2,169,7,169, 2,170,7,170,2,171,7,171,2,172,7,172,2,173,7,173,2,174,7,174,2,175, 7,175,2,176,7,176,2,177,7,177,2,178,7,178,2,179,7,179,2,180,7,180, - 2,181,7,181,1,0,5,0,366,8,0,10,0,12,0,369,9,0,1,0,1,0,1,1,1,1,3, - 1,375,8,1,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1, - 2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,399,8,2,1,3,1,3,1,3,1,4,1, - 4,1,4,1,4,1,4,1,4,1,4,1,4,3,4,412,8,4,1,5,1,5,3,5,416,8,5,1,5,1, - 5,3,5,420,8,5,1,5,1,5,1,5,1,5,1,5,5,5,427,8,5,10,5,12,5,430,9,5, - 1,5,1,5,3,5,434,8,5,1,5,1,5,3,5,438,8,5,1,5,1,5,1,5,1,5,3,5,444, - 8,5,3,5,446,8,5,1,5,1,5,1,5,3,5,451,8,5,1,6,1,6,3,6,455,8,6,1,6, - 1,6,3,6,459,8,6,1,6,1,6,1,6,1,6,1,6,3,6,466,8,6,1,6,1,6,1,6,3,6, - 471,8,6,1,6,1,6,1,7,1,7,3,7,477,8,7,1,7,1,7,3,7,481,8,7,1,7,1,7, - 1,7,1,7,1,7,5,7,488,8,7,10,7,12,7,491,9,7,1,7,1,7,1,7,1,7,3,7,497, - 8,7,1,7,1,7,3,7,501,8,7,1,7,1,7,1,7,3,7,506,8,7,3,7,508,8,7,1,7, - 1,7,1,7,3,7,513,8,7,1,7,1,7,3,7,517,8,7,1,7,1,7,1,7,1,7,1,7,3,7, - 524,8,7,1,7,1,7,3,7,528,8,7,1,8,1,8,1,8,3,8,533,8,8,1,8,1,8,3,8, - 537,8,8,1,8,1,8,3,8,541,8,8,1,8,1,8,3,8,545,8,8,1,8,1,8,1,8,1,9, - 1,9,1,9,3,9,553,8,9,1,9,1,9,1,9,3,9,558,8,9,1,9,1,9,3,9,562,8,9, - 1,10,1,10,1,10,1,10,1,11,1,11,3,11,570,8,11,1,11,1,11,3,11,574,8, - 11,1,11,1,11,1,11,1,11,1,11,5,11,581,8,11,10,11,12,11,584,9,11,3, - 11,586,8,11,1,11,3,11,589,8,11,1,11,1,11,1,11,1,11,3,11,595,8,11, - 1,11,1,11,1,11,1,11,1,11,3,11,602,8,11,1,11,1,11,1,11,1,11,1,11, - 1,11,1,11,1,11,1,11,3,11,613,8,11,1,11,1,11,1,11,3,11,618,8,11,1, - 11,1,11,1,11,3,11,623,8,11,1,11,1,11,1,11,3,11,628,8,11,1,12,1,12, - 1,12,3,12,633,8,12,1,12,1,12,1,12,1,12,1,12,5,12,640,8,12,10,12, - 12,12,643,9,12,3,12,645,8,12,1,12,3,12,648,8,12,1,12,1,12,3,12,652, - 8,12,1,12,1,12,1,12,1,12,1,12,1,12,1,13,1,13,1,13,1,13,1,13,1,13, - 1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,3,13, - 678,8,13,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,15,1,15,1,15, + 2,181,7,181,2,182,7,182,1,0,5,0,368,8,0,10,0,12,0,371,9,0,1,0,1, + 0,1,1,1,1,3,1,377,8,1,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1, + 2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,1,2,3,2,401,8,2,1,3,1, + 3,1,3,1,4,1,4,1,4,1,4,1,4,1,4,1,4,1,4,3,4,414,8,4,1,5,1,5,3,5,418, + 8,5,1,5,1,5,3,5,422,8,5,1,5,1,5,1,5,1,5,1,5,5,5,429,8,5,10,5,12, + 5,432,9,5,1,5,1,5,3,5,436,8,5,1,5,1,5,3,5,440,8,5,1,5,1,5,1,5,1, + 5,3,5,446,8,5,3,5,448,8,5,1,5,1,5,1,5,3,5,453,8,5,1,6,1,6,3,6,457, + 8,6,1,6,1,6,3,6,461,8,6,1,6,1,6,1,6,1,6,1,6,3,6,468,8,6,1,6,1,6, + 1,6,3,6,473,8,6,1,6,1,6,1,7,1,7,3,7,479,8,7,1,7,1,7,3,7,483,8,7, + 1,7,1,7,1,7,1,7,1,7,5,7,490,8,7,10,7,12,7,493,9,7,1,7,1,7,1,7,1, + 7,3,7,499,8,7,1,7,1,7,3,7,503,8,7,1,7,1,7,1,7,3,7,508,8,7,3,7,510, + 8,7,1,7,1,7,1,7,3,7,515,8,7,1,7,1,7,3,7,519,8,7,1,7,1,7,1,7,1,7, + 1,7,3,7,526,8,7,1,7,1,7,3,7,530,8,7,1,8,1,8,1,8,3,8,535,8,8,1,8, + 1,8,3,8,539,8,8,1,8,1,8,3,8,543,8,8,1,8,1,8,3,8,547,8,8,1,8,1,8, + 1,8,1,9,1,9,1,9,3,9,555,8,9,1,9,1,9,1,9,3,9,560,8,9,1,9,1,9,3,9, + 564,8,9,1,10,1,10,1,10,1,10,1,11,1,11,3,11,572,8,11,1,11,1,11,3, + 11,576,8,11,1,11,1,11,1,11,1,11,1,11,5,11,583,8,11,10,11,12,11,586, + 9,11,3,11,588,8,11,1,11,3,11,591,8,11,1,11,1,11,1,11,1,11,3,11,597, + 8,11,1,11,1,11,1,11,1,11,1,11,3,11,604,8,11,1,11,1,11,1,11,1,11, + 1,11,1,11,1,11,1,11,1,11,3,11,615,8,11,1,11,1,11,1,11,3,11,620,8, + 11,1,11,1,11,1,11,3,11,625,8,11,1,11,1,11,1,11,3,11,630,8,11,1,12, + 1,12,1,12,3,12,635,8,12,1,12,1,12,1,12,1,12,1,12,5,12,642,8,12,10, + 12,12,12,645,9,12,3,12,647,8,12,1,12,3,12,650,8,12,1,12,1,12,3,12, + 654,8,12,1,12,1,12,1,12,1,12,1,12,1,12,1,13,1,13,1,13,1,13,1,13, + 1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13,1,13, + 3,13,680,8,13,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,14,1,15,1,15, 1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15,1,15, - 3,15,704,8,15,1,15,1,15,1,16,1,16,1,16,1,16,1,16,3,16,713,8,16,1, - 16,1,16,1,16,1,16,1,16,1,16,1,16,1,16,3,16,723,8,16,1,16,3,16,726, - 8,16,1,17,1,17,1,17,1,17,1,17,1,17,1,17,1,18,1,18,1,18,1,18,1,18, - 3,18,740,8,18,1,18,1,18,1,19,1,19,1,19,1,19,1,19,1,19,1,19,1,19, - 1,20,1,20,1,20,1,20,1,20,1,20,3,20,758,8,20,3,20,760,8,20,1,20,1, - 20,1,20,1,20,1,20,5,20,767,8,20,10,20,12,20,770,9,20,1,20,1,20,1, - 21,1,21,1,21,1,21,1,21,1,21,3,21,780,8,21,1,21,1,21,1,22,1,22,1, - 22,1,22,1,22,3,22,789,8,22,1,22,1,22,1,22,1,22,1,22,3,22,796,8,22, - 1,22,1,22,3,22,800,8,22,1,23,1,23,1,23,1,23,1,23,3,23,807,8,23,1, - 23,1,23,1,23,1,23,3,23,813,8,23,1,23,3,23,816,8,23,1,23,1,23,1,23, - 3,23,821,8,23,1,24,1,24,1,24,1,24,1,24,3,24,828,8,24,1,24,1,24,1, - 24,1,24,1,24,1,24,1,24,1,24,1,24,1,24,1,24,1,24,3,24,842,8,24,1, - 25,1,25,1,25,1,25,1,25,1,25,1,26,1,26,1,26,1,26,1,26,3,26,855,8, - 26,1,26,1,26,1,26,3,26,860,8,26,1,26,1,26,1,26,3,26,865,8,26,1,27, - 1,27,1,27,1,27,3,27,871,8,27,1,27,1,27,1,27,1,28,1,28,1,28,1,28, - 1,28,1,28,1,28,1,29,1,29,1,29,1,29,1,29,1,29,1,29,1,29,1,30,1,30, - 1,30,1,30,1,30,1,30,1,30,1,31,1,31,1,31,1,31,1,31,1,31,1,31,1,32, - 1,32,3,32,907,8,32,1,32,3,32,910,8,32,1,32,1,32,1,33,1,33,3,33,916, - 8,33,1,33,3,33,919,8,33,1,33,1,33,1,34,1,34,3,34,925,8,34,1,35,1, - 35,1,35,1,35,3,35,931,8,35,1,35,1,35,1,35,1,35,1,35,1,35,1,35,1, - 35,1,35,1,35,3,35,943,8,35,3,35,945,8,35,1,36,1,36,1,36,1,36,1,36, - 1,36,3,36,953,8,36,1,37,1,37,1,37,1,37,1,37,1,37,3,37,961,8,37,1, - 38,1,38,1,38,3,38,966,8,38,1,38,1,38,3,38,970,8,38,1,39,1,39,1,39, - 3,39,975,8,39,1,39,1,39,1,40,1,40,1,40,3,40,982,8,40,1,40,1,40,3, - 40,986,8,40,1,41,1,41,3,41,990,8,41,1,41,1,41,1,41,1,41,3,41,996, - 8,41,1,42,1,42,3,42,1000,8,42,1,42,1,42,3,42,1004,8,42,1,42,1,42, - 1,42,1,42,1,42,5,42,1011,8,42,10,42,12,42,1014,9,42,3,42,1016,8, - 42,1,42,3,42,1019,8,42,1,43,1,43,1,43,1,43,1,44,1,44,3,44,1027,8, - 44,1,45,1,45,1,45,1,45,1,45,1,45,1,45,1,46,1,46,1,46,1,46,1,46,3, - 46,1041,8,46,1,46,1,46,1,46,1,47,1,47,3,47,1048,8,47,1,48,1,48,1, - 48,1,48,1,48,1,48,1,48,1,49,1,49,1,49,1,49,3,49,1061,8,49,1,49,1, - 49,1,49,1,49,3,49,1067,8,49,1,49,1,49,1,49,3,49,1072,8,49,1,49,3, - 49,1075,8,49,1,50,3,50,1078,8,50,1,50,1,50,1,50,3,50,1083,8,50,1, - 50,1,50,3,50,1087,8,50,1,50,1,50,1,50,1,50,1,50,5,50,1094,8,50,10, - 50,12,50,1097,9,50,1,50,1,50,3,50,1101,8,50,1,50,1,50,1,51,1,51, - 3,51,1107,8,51,1,52,1,52,3,52,1111,8,52,1,52,1,52,1,52,3,52,1116, - 8,52,1,53,1,53,1,53,3,53,1121,8,53,1,53,3,53,1124,8,53,1,53,1,53, - 1,53,1,53,5,53,1130,8,53,10,53,12,53,1133,9,53,3,53,1135,8,53,1, - 53,1,53,3,53,1139,8,53,1,54,1,54,1,54,1,54,1,54,1,54,1,54,1,54,5, - 54,1149,8,54,10,54,12,54,1152,9,54,3,54,1154,8,54,1,54,1,54,3,54, - 1158,8,54,1,55,1,55,1,55,3,55,1163,8,55,1,55,1,55,3,55,1167,8,55, - 1,55,1,55,1,56,1,56,1,56,1,56,1,56,1,56,1,56,1,56,1,56,1,56,1,56, - 1,56,3,56,1183,8,56,1,57,1,57,1,57,3,57,1188,8,57,1,57,1,57,1,57, - 5,57,1193,8,57,10,57,12,57,1196,9,57,3,57,1198,8,57,1,58,1,58,1, - 58,1,58,3,58,1204,8,58,1,58,3,58,1207,8,58,1,58,1,58,1,58,5,58,1212, - 8,58,10,58,12,58,1215,9,58,3,58,1217,8,58,1,59,1,59,3,59,1221,8, - 59,1,59,1,59,1,59,3,59,1226,8,59,1,59,3,59,1229,8,59,1,59,1,59,1, - 59,5,59,1234,8,59,10,59,12,59,1237,9,59,3,59,1239,8,59,1,60,1,60, - 1,60,1,60,1,60,1,61,1,61,1,61,1,61,1,61,1,62,1,62,1,62,1,62,1,62, - 1,63,1,63,1,63,1,63,1,63,1,64,1,64,3,64,1263,8,64,1,64,1,64,1,64, - 1,65,1,65,1,65,1,65,1,65,1,65,1,65,1,65,1,65,3,65,1277,8,65,1,65, - 1,65,3,65,1281,8,65,1,66,1,66,3,66,1285,8,66,1,66,1,66,1,67,1,67, - 1,67,1,67,1,67,1,67,1,68,1,68,1,68,1,68,1,68,1,68,1,68,1,68,1,68, - 1,68,3,68,1305,8,68,3,68,1307,8,68,3,68,1309,8,68,1,69,1,69,1,69, - 1,69,1,69,1,69,1,69,3,69,1318,8,69,3,69,1320,8,69,1,70,1,70,1,70, - 1,70,1,70,1,70,1,70,3,70,1329,8,70,3,70,1331,8,70,1,71,1,71,1,71, - 1,71,1,71,1,71,1,71,3,71,1340,8,71,3,71,1342,8,71,1,72,1,72,1,72, - 3,72,1347,8,72,1,73,1,73,1,73,1,73,1,73,1,73,1,73,3,73,1356,8,73, - 1,74,1,74,1,74,1,74,1,74,1,74,1,74,3,74,1365,8,74,1,75,1,75,1,75, - 1,75,1,75,1,75,1,75,3,75,1374,8,75,1,76,1,76,1,76,1,77,1,77,1,77, - 1,77,1,77,1,77,3,77,1385,8,77,1,78,1,78,1,78,1,78,3,78,1391,8,78, - 1,78,1,78,1,78,3,78,1396,8,78,1,78,3,78,1399,8,78,1,78,1,78,1,79, - 1,79,1,79,1,79,1,80,1,80,1,80,1,80,1,80,3,80,1412,8,80,1,80,1,80, - 1,80,1,80,1,80,1,80,1,80,1,80,3,80,1422,8,80,1,80,1,80,3,80,1426, - 8,80,1,81,1,81,1,81,3,81,1431,8,81,1,82,1,82,1,82,1,82,1,82,1,82, - 1,82,5,82,1440,8,82,10,82,12,82,1443,9,82,1,82,1,82,3,82,1447,8, - 82,1,83,1,83,1,83,1,84,1,84,1,84,1,84,1,85,1,85,1,85,1,86,1,86,1, - 86,1,86,1,87,1,87,1,88,1,88,1,89,1,89,1,90,1,90,1,91,1,91,1,92,1, - 92,1,93,1,93,1,93,5,93,1478,8,93,10,93,12,93,1481,9,93,1,94,1,94, - 1,94,5,94,1486,8,94,10,94,12,94,1489,9,94,1,95,1,95,3,95,1493,8, - 95,1,96,1,96,3,96,1497,8,96,1,97,1,97,3,97,1501,8,97,1,98,1,98,1, - 98,3,98,1506,8,98,1,98,1,98,3,98,1510,8,98,1,98,1,98,1,98,3,98,1515, - 8,98,1,98,1,98,1,98,3,98,1520,8,98,1,98,1,98,1,98,3,98,1525,8,98, - 1,98,1,98,3,98,1529,8,98,1,98,1,98,1,98,1,98,1,98,1,98,1,98,3,98, - 1538,8,98,1,98,3,98,1541,8,98,1,98,1,98,3,98,1545,8,98,1,99,1,99, - 1,99,5,99,1550,8,99,10,99,12,99,1553,9,99,1,100,1,100,1,100,1,100, - 1,101,1,101,1,101,1,101,3,101,1563,8,101,1,101,1,101,1,101,1,101, - 3,101,1569,8,101,5,101,1571,8,101,10,101,12,101,1574,9,101,1,101, - 1,101,1,102,3,102,1579,8,102,1,102,1,102,1,103,1,103,1,103,1,103, - 5,103,1587,8,103,10,103,12,103,1590,9,103,1,104,1,104,1,104,1,104, - 3,104,1596,8,104,1,104,1,104,1,104,3,104,1601,8,104,1,104,1,104, - 1,104,3,104,1606,8,104,1,104,1,104,1,104,3,104,1611,8,104,1,104, - 1,104,5,104,1615,8,104,10,104,12,104,1618,9,104,3,104,1620,8,104, - 1,105,1,105,1,105,1,105,1,105,1,105,1,105,3,105,1629,8,105,1,105, - 3,105,1632,8,105,1,105,3,105,1635,8,105,1,106,1,106,1,106,1,106, - 3,106,1641,8,106,1,107,1,107,1,107,1,107,3,107,1647,8,107,1,108, - 1,108,1,109,1,109,1,109,1,109,5,109,1655,8,109,10,109,12,109,1658, - 9,109,3,109,1660,8,109,1,109,1,109,3,109,1664,8,109,1,109,1,109, - 3,109,1668,8,109,1,110,3,110,1671,8,110,1,110,1,110,5,110,1675,8, - 110,10,110,12,110,1678,9,110,3,110,1680,8,110,1,111,1,111,1,111, - 1,111,3,111,1686,8,111,1,111,1,111,5,111,1690,8,111,10,111,12,111, - 1693,9,111,3,111,1695,8,111,1,112,3,112,1698,8,112,1,112,1,112,3, - 112,1702,8,112,1,113,1,113,1,113,1,113,1,113,1,113,1,113,1,113,3, - 113,1712,8,113,1,114,1,114,1,115,1,115,1,116,1,116,1,116,5,116,1721, - 8,116,10,116,12,116,1724,9,116,1,116,1,116,3,116,1728,8,116,1,116, - 3,116,1731,8,116,1,117,1,117,3,117,1735,8,117,1,117,1,117,1,117, - 1,118,1,118,3,118,1742,8,118,1,118,1,118,1,118,1,118,1,118,1,118, - 5,118,1750,8,118,10,118,12,118,1753,9,118,1,118,1,118,1,119,1,119, - 1,119,1,119,1,119,1,119,1,119,3,119,1764,8,119,1,119,1,119,1,119, - 1,119,3,119,1770,8,119,3,119,1772,8,119,1,120,1,120,1,120,1,120, - 1,120,1,120,1,120,3,120,1781,8,120,1,120,3,120,1784,8,120,1,121, - 1,121,1,121,1,121,1,121,3,121,1791,8,121,1,122,1,122,1,122,1,122, - 1,122,1,122,1,122,1,122,3,122,1801,8,122,1,123,1,123,1,123,1,123, - 3,123,1807,8,123,1,124,1,124,1,124,1,124,5,124,1813,8,124,10,124, - 12,124,1816,9,124,1,124,1,124,1,125,1,125,1,125,1,125,5,125,1824, - 8,125,10,125,12,125,1827,9,125,1,125,1,125,1,126,1,126,1,126,5,126, - 1834,8,126,10,126,12,126,1837,9,126,1,127,1,127,1,127,1,127,1,127, - 1,127,1,127,1,127,3,127,1847,8,127,3,127,1849,8,127,1,127,1,127, - 1,127,1,127,3,127,1855,8,127,1,128,1,128,1,128,3,128,1860,8,128, - 1,129,1,129,1,129,1,129,1,129,1,129,5,129,1868,8,129,10,129,12,129, - 1871,9,129,3,129,1873,8,129,1,129,1,129,1,129,1,129,3,129,1879,8, - 129,3,129,1881,8,129,1,130,1,130,1,130,1,130,1,130,1,130,3,130,1889, - 8,130,1,130,1,130,1,130,1,130,3,130,1895,8,130,1,130,5,130,1898, - 8,130,10,130,12,130,1901,9,130,1,131,1,131,1,131,1,131,1,131,1,131, - 1,131,5,131,1910,8,131,10,131,12,131,1913,9,131,1,131,1,131,1,131, - 1,131,3,131,1919,8,131,1,132,1,132,3,132,1923,8,132,1,132,1,132, - 3,132,1927,8,132,1,133,1,133,3,133,1931,8,133,1,133,3,133,1934,8, - 133,1,133,1,133,1,133,5,133,1939,8,133,10,133,12,133,1942,9,133, - 1,133,1,133,1,133,1,133,5,133,1948,8,133,10,133,12,133,1951,9,133, - 3,133,1953,8,133,1,133,1,133,3,133,1957,8,133,1,133,1,133,1,133, - 3,133,1962,8,133,1,133,1,133,3,133,1966,8,133,1,134,3,134,1969,8, - 134,1,134,1,134,1,134,5,134,1974,8,134,10,134,12,134,1977,9,134, - 1,135,1,135,1,136,1,136,1,136,1,136,5,136,1985,8,136,10,136,12,136, - 1988,9,136,3,136,1990,8,136,1,136,1,136,3,136,1994,8,136,1,137,1, - 137,3,137,1998,8,137,1,137,1,137,1,137,1,138,1,138,1,139,1,139,3, - 139,2007,8,139,1,139,3,139,2010,8,139,1,139,1,139,1,139,1,139,1, - 139,3,139,2017,8,139,1,140,1,140,1,140,1,140,1,140,1,140,1,140,1, - 140,1,140,1,140,1,140,1,140,3,140,2031,8,140,5,140,2033,8,140,10, - 140,12,140,2036,9,140,1,141,3,141,2039,8,141,1,141,1,141,3,141,2043, - 8,141,1,141,1,141,3,141,2047,8,141,1,141,1,141,3,141,2051,8,141, - 1,141,1,141,3,141,2055,8,141,1,141,1,141,3,141,2059,8,141,1,141, - 1,141,1,141,1,141,1,141,1,141,1,141,1,141,3,141,2069,8,141,1,142, - 1,142,1,142,1,142,1,142,1,142,1,142,5,142,2078,8,142,10,142,12,142, - 2081,9,142,1,142,1,142,3,142,2085,8,142,1,143,1,143,1,143,1,143, - 1,143,1,143,1,143,1,143,1,143,1,143,1,143,3,143,2098,8,143,3,143, - 2100,8,143,1,144,1,144,1,145,1,145,3,145,2106,8,145,1,145,1,145, - 3,145,2110,8,145,3,145,2112,8,145,1,146,1,146,1,146,1,146,5,146, - 2118,8,146,10,146,12,146,2121,9,146,1,146,1,146,1,147,1,147,3,147, - 2127,8,147,1,147,1,147,1,147,3,147,2132,8,147,1,148,1,148,1,148, - 1,148,1,149,1,149,1,149,1,149,1,149,5,149,2143,8,149,10,149,12,149, - 2146,9,149,1,149,1,149,1,149,3,149,2151,8,149,1,150,1,150,1,150, - 1,150,1,151,1,151,3,151,2159,8,151,1,152,1,152,1,153,1,153,1,153, - 3,153,2166,8,153,1,153,1,153,3,153,2170,8,153,1,153,1,153,1,153, - 1,153,1,153,1,153,5,153,2178,8,153,10,153,12,153,2181,9,153,1,154, - 1,154,1,154,1,154,1,154,1,154,1,154,1,154,3,154,2191,8,154,1,154, - 1,154,1,154,1,154,1,154,1,154,3,154,2199,8,154,1,154,1,154,1,154, - 1,154,1,154,5,154,2206,8,154,10,154,12,154,2209,9,154,1,154,1,154, - 1,154,3,154,2214,8,154,1,154,1,154,1,154,3,154,2219,8,154,1,154, - 1,154,1,154,1,154,3,154,2225,8,154,1,154,1,154,1,154,1,154,3,154, - 2231,8,154,1,154,1,154,1,154,3,154,2236,8,154,1,154,1,154,1,154, - 3,154,2241,8,154,1,155,1,155,1,155,1,155,3,155,2247,8,155,1,155, - 1,155,1,155,1,155,1,155,1,155,1,155,1,155,1,155,5,155,2258,8,155, - 10,155,12,155,2261,9,155,1,156,1,156,1,156,1,156,1,156,1,156,1,156, + 1,15,3,15,706,8,15,1,15,1,15,1,16,1,16,1,16,1,16,1,16,3,16,715,8, + 16,1,16,1,16,1,16,1,16,1,16,1,16,1,16,1,16,3,16,725,8,16,1,16,3, + 16,728,8,16,1,17,1,17,1,17,1,17,1,17,1,17,1,17,1,18,1,18,1,18,1, + 18,1,18,3,18,742,8,18,1,18,1,18,1,19,1,19,1,19,1,19,1,19,1,19,1, + 19,1,19,1,20,1,20,1,20,1,20,1,20,1,20,3,20,760,8,20,3,20,762,8,20, + 1,20,1,20,1,20,1,20,1,20,5,20,769,8,20,10,20,12,20,772,9,20,1,20, + 1,20,1,21,1,21,1,21,1,21,1,21,1,21,3,21,782,8,21,1,21,1,21,1,22, + 1,22,1,22,1,22,1,22,3,22,791,8,22,1,22,1,22,1,22,1,22,1,22,3,22, + 798,8,22,1,22,1,22,3,22,802,8,22,1,23,1,23,1,23,1,23,1,23,3,23,809, + 8,23,1,23,1,23,1,23,1,23,3,23,815,8,23,1,23,3,23,818,8,23,1,23,1, + 23,1,23,3,23,823,8,23,1,24,1,24,1,24,1,24,1,24,3,24,830,8,24,1,24, + 1,24,1,24,1,24,1,24,1,24,1,24,1,24,1,24,1,24,1,24,1,24,3,24,844, + 8,24,1,25,1,25,1,25,1,25,1,25,1,25,1,26,1,26,1,26,1,26,1,26,3,26, + 857,8,26,1,26,1,26,1,26,3,26,862,8,26,1,26,1,26,1,26,3,26,867,8, + 26,1,27,1,27,1,27,1,27,3,27,873,8,27,1,27,1,27,1,27,1,28,1,28,1, + 28,1,28,1,28,1,28,1,28,1,29,1,29,1,29,1,29,1,29,1,29,1,29,1,29,1, + 30,1,30,1,30,1,30,1,30,1,30,1,30,1,31,1,31,1,31,1,31,1,31,1,31,1, + 31,1,32,1,32,3,32,909,8,32,1,32,3,32,912,8,32,1,32,1,32,1,33,1,33, + 3,33,918,8,33,1,33,3,33,921,8,33,1,33,1,33,1,34,1,34,3,34,927,8, + 34,1,35,1,35,1,35,1,35,3,35,933,8,35,1,35,1,35,1,35,1,35,1,35,1, + 35,1,35,1,35,1,35,1,35,3,35,945,8,35,3,35,947,8,35,1,36,1,36,1,36, + 1,36,1,36,1,36,1,36,1,36,1,36,3,36,958,8,36,1,37,1,37,1,37,1,37, + 1,37,1,37,3,37,966,8,37,1,38,1,38,1,38,3,38,971,8,38,1,38,1,38,3, + 38,975,8,38,1,39,1,39,1,39,3,39,980,8,39,1,39,1,39,1,40,1,40,1,40, + 3,40,987,8,40,1,40,1,40,3,40,991,8,40,1,41,1,41,3,41,995,8,41,1, + 41,1,41,1,41,1,41,3,41,1001,8,41,1,42,1,42,3,42,1005,8,42,1,42,1, + 42,3,42,1009,8,42,1,42,1,42,1,42,1,42,1,42,5,42,1016,8,42,10,42, + 12,42,1019,9,42,3,42,1021,8,42,1,42,3,42,1024,8,42,1,43,1,43,1,43, + 1,43,1,44,1,44,3,44,1032,8,44,1,45,1,45,1,45,1,45,1,45,1,45,1,45, + 1,46,1,46,1,46,1,46,1,46,3,46,1046,8,46,1,46,1,46,1,46,1,47,1,47, + 3,47,1053,8,47,1,48,1,48,1,48,1,48,1,48,1,48,1,48,1,49,1,49,1,49, + 1,49,3,49,1066,8,49,1,49,1,49,1,49,1,49,3,49,1072,8,49,1,49,1,49, + 1,49,3,49,1077,8,49,1,49,3,49,1080,8,49,1,50,3,50,1083,8,50,1,50, + 1,50,1,50,3,50,1088,8,50,1,50,1,50,3,50,1092,8,50,1,50,1,50,1,50, + 1,50,1,50,5,50,1099,8,50,10,50,12,50,1102,9,50,1,50,1,50,3,50,1106, + 8,50,1,50,1,50,1,51,1,51,3,51,1112,8,51,1,52,1,52,3,52,1116,8,52, + 1,52,1,52,1,52,3,52,1121,8,52,1,53,1,53,1,53,3,53,1126,8,53,1,53, + 3,53,1129,8,53,1,53,1,53,1,53,1,53,5,53,1135,8,53,10,53,12,53,1138, + 9,53,3,53,1140,8,53,1,53,1,53,3,53,1144,8,53,1,54,1,54,1,54,1,54, + 1,54,1,54,1,54,1,54,5,54,1154,8,54,10,54,12,54,1157,9,54,3,54,1159, + 8,54,1,54,1,54,3,54,1163,8,54,1,55,1,55,1,55,3,55,1168,8,55,1,55, + 1,55,3,55,1172,8,55,1,55,1,55,1,56,1,56,1,56,1,56,1,56,1,56,1,56, + 1,56,1,56,1,56,1,56,1,56,3,56,1188,8,56,1,57,1,57,1,57,3,57,1193, + 8,57,1,57,1,57,1,57,5,57,1198,8,57,10,57,12,57,1201,9,57,3,57,1203, + 8,57,1,58,1,58,1,58,1,58,3,58,1209,8,58,1,58,3,58,1212,8,58,1,58, + 1,58,1,58,5,58,1217,8,58,10,58,12,58,1220,9,58,3,58,1222,8,58,1, + 59,1,59,3,59,1226,8,59,1,59,1,59,1,59,3,59,1231,8,59,1,59,3,59,1234, + 8,59,1,59,1,59,1,59,5,59,1239,8,59,10,59,12,59,1242,9,59,3,59,1244, + 8,59,1,60,1,60,1,60,1,60,1,60,1,61,1,61,1,61,1,61,1,61,1,62,1,62, + 1,62,1,62,1,62,1,63,1,63,1,63,1,63,1,63,1,64,1,64,3,64,1268,8,64, + 1,64,1,64,1,64,1,65,1,65,1,65,1,65,1,65,1,65,1,65,1,65,1,65,3,65, + 1282,8,65,1,65,1,65,3,65,1286,8,65,1,66,1,66,3,66,1290,8,66,1,66, + 1,66,1,67,1,67,1,67,1,67,1,67,1,67,1,68,1,68,1,68,1,68,1,68,1,68, + 1,68,1,68,1,68,1,68,3,68,1310,8,68,3,68,1312,8,68,3,68,1314,8,68, + 1,69,1,69,1,69,1,69,1,69,1,69,1,69,3,69,1323,8,69,3,69,1325,8,69, + 1,70,1,70,1,70,1,70,1,70,1,70,1,70,3,70,1334,8,70,3,70,1336,8,70, + 1,71,1,71,1,71,1,71,1,71,1,71,1,71,3,71,1345,8,71,3,71,1347,8,71, + 1,72,1,72,1,72,3,72,1352,8,72,1,73,1,73,1,73,1,73,1,73,1,73,1,73, + 3,73,1361,8,73,1,74,1,74,1,74,1,74,1,74,1,74,1,74,3,74,1370,8,74, + 1,75,1,75,1,75,1,75,1,75,1,75,1,75,3,75,1379,8,75,1,76,1,76,1,76, + 1,77,1,77,1,77,1,77,1,77,1,77,3,77,1390,8,77,1,78,1,78,1,78,1,78, + 3,78,1396,8,78,1,78,1,78,1,78,3,78,1401,8,78,1,78,3,78,1404,8,78, + 1,78,1,78,1,79,1,79,1,79,1,79,1,80,1,80,1,80,1,80,1,80,3,80,1417, + 8,80,1,80,1,80,1,80,1,80,1,80,1,80,1,80,1,80,3,80,1427,8,80,1,80, + 1,80,3,80,1431,8,80,1,81,1,81,1,81,3,81,1436,8,81,1,82,1,82,1,82, + 1,82,1,82,1,82,1,82,5,82,1445,8,82,10,82,12,82,1448,9,82,1,82,1, + 82,3,82,1452,8,82,1,83,1,83,1,83,1,84,1,84,1,84,1,84,1,85,1,85,1, + 85,1,86,1,86,1,86,1,86,1,87,1,87,1,88,1,88,1,89,1,89,1,90,1,90,1, + 91,1,91,1,92,1,92,1,93,1,93,1,93,5,93,1483,8,93,10,93,12,93,1486, + 9,93,1,94,1,94,1,94,5,94,1491,8,94,10,94,12,94,1494,9,94,1,95,1, + 95,3,95,1498,8,95,1,96,1,96,3,96,1502,8,96,1,97,1,97,3,97,1506,8, + 97,1,98,1,98,1,98,3,98,1511,8,98,1,98,1,98,3,98,1515,8,98,1,98,1, + 98,1,98,3,98,1520,8,98,1,98,1,98,1,98,3,98,1525,8,98,1,98,1,98,1, + 98,3,98,1530,8,98,1,98,1,98,3,98,1534,8,98,1,98,1,98,1,98,1,98,1, + 98,1,98,1,98,3,98,1543,8,98,1,98,3,98,1546,8,98,1,98,1,98,3,98,1550, + 8,98,1,99,1,99,1,99,5,99,1555,8,99,10,99,12,99,1558,9,99,1,100,1, + 100,1,100,1,100,1,101,1,101,1,101,1,101,3,101,1568,8,101,1,101,1, + 101,1,101,1,101,3,101,1574,8,101,5,101,1576,8,101,10,101,12,101, + 1579,9,101,1,101,1,101,1,102,3,102,1584,8,102,1,102,1,102,1,103, + 1,103,1,103,1,103,5,103,1592,8,103,10,103,12,103,1595,9,103,1,104, + 1,104,1,104,1,104,3,104,1601,8,104,1,104,1,104,1,104,3,104,1606, + 8,104,1,104,1,104,1,104,3,104,1611,8,104,1,104,1,104,1,104,3,104, + 1616,8,104,1,104,1,104,5,104,1620,8,104,10,104,12,104,1623,9,104, + 3,104,1625,8,104,1,105,1,105,1,105,1,105,1,105,1,105,1,105,3,105, + 1634,8,105,1,105,3,105,1637,8,105,1,105,3,105,1640,8,105,1,106,1, + 106,1,106,1,106,3,106,1646,8,106,1,107,1,107,1,107,1,107,3,107,1652, + 8,107,1,108,1,108,1,109,1,109,1,109,1,109,5,109,1660,8,109,10,109, + 12,109,1663,9,109,3,109,1665,8,109,1,109,1,109,3,109,1669,8,109, + 1,109,1,109,3,109,1673,8,109,1,110,3,110,1676,8,110,1,110,1,110, + 5,110,1680,8,110,10,110,12,110,1683,9,110,3,110,1685,8,110,1,111, + 1,111,1,111,1,111,3,111,1691,8,111,1,111,1,111,5,111,1695,8,111, + 10,111,12,111,1698,9,111,3,111,1700,8,111,1,112,3,112,1703,8,112, + 1,112,1,112,3,112,1707,8,112,1,113,1,113,1,113,1,113,1,113,1,113, + 1,113,1,113,3,113,1717,8,113,1,114,1,114,1,115,1,115,1,116,1,116, + 1,116,5,116,1726,8,116,10,116,12,116,1729,9,116,1,116,1,116,3,116, + 1733,8,116,1,116,3,116,1736,8,116,1,117,1,117,3,117,1740,8,117,1, + 117,1,117,1,117,1,118,1,118,3,118,1747,8,118,1,118,1,118,1,118,1, + 118,1,118,1,118,5,118,1755,8,118,10,118,12,118,1758,9,118,1,118, + 1,118,1,119,1,119,1,119,1,119,1,119,1,119,1,119,3,119,1769,8,119, + 1,119,1,119,1,119,1,119,3,119,1775,8,119,3,119,1777,8,119,1,120, + 1,120,1,120,1,120,1,120,1,120,1,120,3,120,1786,8,120,1,120,3,120, + 1789,8,120,1,121,1,121,1,121,1,121,1,121,3,121,1796,8,121,1,122, + 1,122,1,122,1,122,1,122,1,122,1,122,1,122,3,122,1806,8,122,1,123, + 1,123,1,123,1,123,3,123,1812,8,123,1,124,1,124,1,124,1,124,5,124, + 1818,8,124,10,124,12,124,1821,9,124,1,124,1,124,1,125,1,125,1,125, + 1,125,5,125,1829,8,125,10,125,12,125,1832,9,125,1,125,1,125,1,126, + 1,126,1,126,5,126,1839,8,126,10,126,12,126,1842,9,126,1,127,1,127, + 1,127,1,127,1,127,1,127,1,127,1,127,3,127,1852,8,127,3,127,1854, + 8,127,1,127,1,127,1,127,1,127,3,127,1860,8,127,1,128,1,128,1,128, + 3,128,1865,8,128,1,129,1,129,1,129,1,129,1,129,1,129,5,129,1873, + 8,129,10,129,12,129,1876,9,129,3,129,1878,8,129,1,129,1,129,1,129, + 1,129,3,129,1884,8,129,3,129,1886,8,129,1,130,1,130,1,130,1,130, + 1,130,1,130,3,130,1894,8,130,1,130,1,130,1,130,1,130,3,130,1900, + 8,130,1,130,5,130,1903,8,130,10,130,12,130,1906,9,130,1,131,1,131, + 1,131,1,131,1,131,1,131,1,131,5,131,1915,8,131,10,131,12,131,1918, + 9,131,1,131,1,131,1,131,1,131,3,131,1924,8,131,1,132,1,132,3,132, + 1928,8,132,1,132,1,132,3,132,1932,8,132,1,133,1,133,3,133,1936,8, + 133,1,133,3,133,1939,8,133,1,133,1,133,1,133,5,133,1944,8,133,10, + 133,12,133,1947,9,133,1,133,1,133,1,133,1,133,5,133,1953,8,133,10, + 133,12,133,1956,9,133,3,133,1958,8,133,1,133,1,133,3,133,1962,8, + 133,1,133,1,133,1,133,3,133,1967,8,133,1,133,1,133,3,133,1971,8, + 133,1,134,3,134,1974,8,134,1,134,1,134,1,134,5,134,1979,8,134,10, + 134,12,134,1982,9,134,1,135,1,135,1,136,1,136,1,136,1,136,5,136, + 1990,8,136,10,136,12,136,1993,9,136,3,136,1995,8,136,1,136,1,136, + 3,136,1999,8,136,1,137,1,137,3,137,2003,8,137,1,137,1,137,1,137, + 1,138,1,138,1,139,1,139,3,139,2012,8,139,1,139,3,139,2015,8,139, + 1,139,1,139,1,139,1,139,1,139,3,139,2022,8,139,1,140,1,140,1,140, + 1,140,1,140,1,140,1,140,1,140,1,140,1,140,1,140,1,140,3,140,2036, + 8,140,5,140,2038,8,140,10,140,12,140,2041,9,140,1,141,3,141,2044, + 8,141,1,141,1,141,3,141,2048,8,141,1,141,1,141,3,141,2052,8,141, + 1,141,1,141,3,141,2056,8,141,1,141,1,141,3,141,2060,8,141,1,141, + 1,141,3,141,2064,8,141,1,141,1,141,1,141,1,141,1,141,1,141,1,141, + 1,141,3,141,2074,8,141,1,142,1,142,1,142,1,142,1,142,1,142,1,142, + 5,142,2083,8,142,10,142,12,142,2086,9,142,1,142,1,142,3,142,2090, + 8,142,1,143,1,143,1,143,1,143,1,143,1,143,1,143,1,143,1,143,1,143, + 1,143,3,143,2103,8,143,3,143,2105,8,143,1,144,1,144,1,145,1,145, + 3,145,2111,8,145,1,145,1,145,3,145,2115,8,145,3,145,2117,8,145,1, + 146,1,146,1,146,1,146,5,146,2123,8,146,10,146,12,146,2126,9,146, + 1,146,1,146,1,147,1,147,3,147,2132,8,147,1,147,1,147,1,147,3,147, + 2137,8,147,1,148,1,148,1,148,1,148,1,149,1,149,1,149,1,149,1,149, + 5,149,2148,8,149,10,149,12,149,2151,9,149,1,149,1,149,1,149,3,149, + 2156,8,149,1,150,1,150,1,150,1,150,1,151,1,151,3,151,2164,8,151, + 1,152,1,152,1,153,1,153,1,153,3,153,2171,8,153,1,153,1,153,3,153, + 2175,8,153,1,153,1,153,1,153,1,153,1,153,1,153,5,153,2183,8,153, + 10,153,12,153,2186,9,153,1,154,1,154,1,154,1,154,1,154,1,154,1,154, + 1,154,3,154,2196,8,154,1,154,1,154,1,154,1,154,1,154,1,154,3,154, + 2204,8,154,1,154,1,154,1,154,1,154,1,154,5,154,2211,8,154,10,154, + 12,154,2214,9,154,1,154,1,154,1,154,3,154,2219,8,154,1,154,1,154, + 1,154,3,154,2224,8,154,1,154,1,154,1,154,1,154,3,154,2230,8,154, + 1,154,1,154,1,154,1,154,3,154,2236,8,154,1,154,1,154,1,154,3,154, + 2241,8,154,1,154,1,154,1,154,3,154,2246,8,154,1,155,1,155,1,155, + 1,155,3,155,2252,8,155,1,155,1,155,1,155,1,155,1,155,1,155,1,155, + 1,155,1,155,5,155,2263,8,155,10,155,12,155,2266,9,155,1,156,1,156, 1,156,1,156,1,156,1,156,1,156,1,156,1,156,1,156,1,156,1,156,1,156, - 1,156,1,156,1,156,1,156,1,156,1,156,3,156,2287,8,156,1,156,1,156, - 1,156,1,156,3,156,2293,8,156,5,156,2295,8,156,10,156,12,156,2298, - 9,156,1,156,1,156,1,156,1,156,1,156,1,156,1,156,5,156,2307,8,156, - 10,156,12,156,2310,9,156,1,156,1,156,1,156,1,156,1,156,1,156,1,156, - 3,156,2319,8,156,1,156,3,156,2322,8,156,1,156,1,156,1,156,3,156, - 2327,8,156,1,156,1,156,1,156,5,156,2332,8,156,10,156,12,156,2335, - 9,156,3,156,2337,8,156,1,156,1,156,1,156,1,156,1,156,5,156,2344, - 8,156,10,156,12,156,2347,9,156,3,156,2349,8,156,1,156,1,156,3,156, - 2353,8,156,1,156,3,156,2356,8,156,1,156,1,156,1,156,1,156,1,156, - 1,156,1,156,1,156,5,156,2366,8,156,10,156,12,156,2369,9,156,3,156, - 2371,8,156,1,156,1,156,1,156,1,156,1,156,1,156,1,156,1,156,1,156, - 1,156,1,156,1,156,1,156,1,156,1,156,4,156,2388,8,156,11,156,12,156, - 2389,1,156,1,156,3,156,2394,8,156,1,156,1,156,1,156,1,156,4,156, - 2400,8,156,11,156,12,156,2401,1,156,1,156,3,156,2406,8,156,1,156, 1,156,1,156,1,156,1,156,1,156,1,156,1,156,1,156,1,156,1,156,1,156, - 1,156,1,156,1,156,1,156,1,156,1,156,1,156,1,156,1,156,5,156,2429, - 8,156,10,156,12,156,2432,9,156,3,156,2434,8,156,1,156,1,156,1,156, - 1,156,1,156,1,156,1,156,3,156,2443,8,156,1,156,1,156,1,156,1,156, - 3,156,2449,8,156,1,156,1,156,1,156,1,156,3,156,2455,8,156,1,156, - 1,156,1,156,1,156,3,156,2461,8,156,1,156,1,156,1,156,1,156,1,156, - 1,156,1,156,1,156,1,156,3,156,2472,8,156,1,156,1,156,1,156,1,156, - 1,156,1,156,1,156,3,156,2481,8,156,1,156,1,156,1,156,1,156,1,156, + 3,156,2292,8,156,1,156,1,156,1,156,1,156,3,156,2298,8,156,5,156, + 2300,8,156,10,156,12,156,2303,9,156,1,156,1,156,1,156,1,156,1,156, + 1,156,1,156,5,156,2312,8,156,10,156,12,156,2315,9,156,1,156,1,156, + 1,156,1,156,1,156,1,156,1,156,3,156,2324,8,156,1,156,3,156,2327, + 8,156,1,156,1,156,1,156,3,156,2332,8,156,1,156,1,156,1,156,5,156, + 2337,8,156,10,156,12,156,2340,9,156,3,156,2342,8,156,1,156,1,156, + 1,156,1,156,1,156,5,156,2349,8,156,10,156,12,156,2352,9,156,3,156, + 2354,8,156,1,156,1,156,3,156,2358,8,156,1,156,3,156,2361,8,156,1, + 156,1,156,1,156,1,156,1,156,1,156,1,156,1,156,5,156,2371,8,156,10, + 156,12,156,2374,9,156,3,156,2376,8,156,1,156,1,156,1,156,1,156,1, + 156,1,156,1,156,1,156,1,156,1,156,1,156,1,156,1,156,1,156,1,156, + 4,156,2393,8,156,11,156,12,156,2394,1,156,1,156,3,156,2399,8,156, + 1,156,1,156,1,156,1,156,4,156,2405,8,156,11,156,12,156,2406,1,156, + 1,156,3,156,2411,8,156,1,156,1,156,1,156,1,156,1,156,1,156,1,156, 1,156,1,156,1,156,1,156,1,156,1,156,1,156,1,156,1,156,1,156,1,156, - 1,156,1,156,5,156,2501,8,156,10,156,12,156,2504,9,156,3,156,2506, - 8,156,1,156,3,156,2509,8,156,1,156,1,156,1,156,1,156,1,156,1,156, - 1,156,1,156,5,156,2519,8,156,10,156,12,156,2522,9,156,1,157,1,157, - 1,157,1,157,3,157,2528,8,157,3,157,2530,8,157,1,158,1,158,1,159, - 1,159,1,160,1,160,1,161,1,161,1,161,1,161,1,161,1,161,1,161,1,161, - 1,161,1,161,1,161,1,161,1,161,1,161,3,161,2552,8,161,1,162,1,162, - 1,163,1,163,1,164,1,164,1,164,1,164,1,164,1,164,1,164,1,164,1,164, + 1,156,1,156,1,156,5,156,2434,8,156,10,156,12,156,2437,9,156,3,156, + 2439,8,156,1,156,1,156,1,156,1,156,1,156,1,156,1,156,3,156,2448, + 8,156,1,156,1,156,1,156,1,156,3,156,2454,8,156,1,156,1,156,1,156, + 1,156,3,156,2460,8,156,1,156,1,156,1,156,1,156,3,156,2466,8,156, + 1,156,1,156,1,156,1,156,1,156,1,156,1,156,1,156,1,156,3,156,2477, + 8,156,1,156,1,156,1,156,1,156,1,156,1,156,1,156,3,156,2486,8,156, + 1,156,1,156,1,156,1,156,1,156,1,156,1,156,1,156,1,156,1,156,1,156, + 1,156,1,156,1,156,1,156,1,156,1,156,1,156,5,156,2506,8,156,10,156, + 12,156,2509,9,156,3,156,2511,8,156,1,156,3,156,2514,8,156,1,156, + 1,156,1,156,1,156,1,156,1,156,1,156,1,156,5,156,2524,8,156,10,156, + 12,156,2527,9,156,1,157,1,157,1,157,1,157,3,157,2533,8,157,3,157, + 2535,8,157,1,158,1,158,1,159,1,159,1,160,1,160,1,161,1,161,1,161, + 1,161,1,161,1,161,1,161,1,161,1,161,1,161,1,161,1,161,1,161,1,161, + 3,161,2557,8,161,1,162,1,162,1,163,1,163,1,164,1,164,1,164,1,164, 1,164,1,164,1,164,1,164,1,164,1,164,1,164,1,164,1,164,1,164,1,164, - 1,164,1,164,1,164,5,164,2581,8,164,10,164,12,164,2584,9,164,1,164, - 1,164,1,164,1,164,1,164,1,164,1,164,5,164,2593,8,164,10,164,12,164, - 2596,9,164,1,164,1,164,3,164,2600,8,164,3,164,2602,8,164,1,164,1, - 164,5,164,2606,8,164,10,164,12,164,2609,9,164,1,165,1,165,3,165, - 2613,8,165,1,166,1,166,1,166,1,166,3,166,2619,8,166,1,167,1,167, - 1,167,1,167,1,167,1,168,1,168,1,168,1,168,1,168,1,168,1,169,1,169, - 1,169,1,169,1,169,1,169,1,169,5,169,2639,8,169,10,169,12,169,2642, - 9,169,3,169,2644,8,169,1,169,1,169,1,169,1,169,1,169,5,169,2651, - 8,169,10,169,12,169,2654,9,169,3,169,2656,8,169,1,169,3,169,2659, - 8,169,1,169,1,169,1,170,1,170,1,170,1,170,1,170,1,170,1,170,1,170, - 1,170,1,170,1,170,1,170,1,170,1,170,1,170,1,170,3,170,2679,8,170, - 1,171,1,171,1,171,1,171,1,171,1,171,1,171,1,171,1,171,3,171,2690, - 8,171,1,172,1,172,1,172,1,172,1,172,3,172,2697,8,172,1,173,1,173, - 1,173,5,173,2702,8,173,10,173,12,173,2705,9,173,1,174,1,174,1,174, - 1,174,1,174,1,174,1,174,1,174,1,174,1,174,1,174,3,174,2718,8,174, - 3,174,2720,8,174,1,175,1,175,1,176,1,176,1,176,5,176,2727,8,176, - 10,176,12,176,2730,9,176,1,177,1,177,1,177,1,177,1,177,1,177,3,177, - 2738,8,177,1,178,1,178,1,178,1,178,1,178,3,178,2745,8,178,1,179, - 3,179,2748,8,179,1,179,1,179,3,179,2752,8,179,1,179,1,179,3,179, - 2756,8,179,1,179,3,179,2759,8,179,1,180,1,180,1,181,1,181,1,181, - 10,768,1441,1616,1656,1676,1691,1722,1751,1825,2296,6,260,280,306, - 310,312,328,182,0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34, - 36,38,40,42,44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78, - 80,82,84,86,88,90,92,94,96,98,100,102,104,106,108,110,112,114,116, - 118,120,122,124,126,128,130,132,134,136,138,140,142,144,146,148, - 150,152,154,156,158,160,162,164,166,168,170,172,174,176,178,180, - 182,184,186,188,190,192,194,196,198,200,202,204,206,208,210,212, - 214,216,218,220,222,224,226,228,230,232,234,236,238,240,242,244, - 246,248,250,252,254,256,258,260,262,264,266,268,270,272,274,276, - 278,280,282,284,286,288,290,292,294,296,298,300,302,304,306,308, - 310,312,314,316,318,320,322,324,326,328,330,332,334,336,338,340, - 342,344,346,348,350,352,354,356,358,360,362,0,32,2,0,46,46,171,171, - 2,0,167,167,206,206,2,0,177,177,204,204,2,0,69,69,80,80,2,0,27,27, - 160,160,2,0,103,103,145,145,2,0,47,47,172,172,2,0,3,3,12,12,3,0, - 87,87,167,167,206,206,2,0,179,179,211,211,1,0,229,232,2,0,148,148, - 221,225,2,0,65,65,95,95,2,0,64,64,202,202,2,0,10,10,55,55,2,0,75, - 75,112,112,2,0,2,2,57,57,2,0,14,14,187,187,3,0,106,106,115,115,165, - 165,2,0,105,105,164,164,4,0,70,70,134,134,196,196,210,210,1,0,239, - 240,1,0,241,243,1,0,233,238,3,0,2,2,6,6,182,182,2,0,70,70,196,196, - 5,0,48,49,91,92,123,126,173,174,219,220,1,0,128,131,2,0,77,77,150, - 150,4,0,46,46,179,179,190,190,211,211,16,0,28,29,40,40,43,43,48, - 48,68,68,91,91,114,114,123,123,125,125,159,159,166,166,173,173,186, - 186,198,198,206,206,219,219,22,0,14,14,43,44,48,49,65,65,68,68,91, - 91,95,95,110,110,119,119,123,126,128,131,138,138,141,141,153,154, - 173,174,181,181,186,187,197,197,206,206,215,215,219,219,222,222, - 3088,0,367,1,0,0,0,2,372,1,0,0,0,4,398,1,0,0,0,6,400,1,0,0,0,8,411, - 1,0,0,0,10,413,1,0,0,0,12,452,1,0,0,0,14,474,1,0,0,0,16,529,1,0, - 0,0,18,549,1,0,0,0,20,563,1,0,0,0,22,567,1,0,0,0,24,629,1,0,0,0, - 26,677,1,0,0,0,28,679,1,0,0,0,30,687,1,0,0,0,32,707,1,0,0,0,34,727, - 1,0,0,0,36,734,1,0,0,0,38,743,1,0,0,0,40,751,1,0,0,0,42,773,1,0, - 0,0,44,783,1,0,0,0,46,801,1,0,0,0,48,822,1,0,0,0,50,843,1,0,0,0, - 52,849,1,0,0,0,54,866,1,0,0,0,56,875,1,0,0,0,58,882,1,0,0,0,60,890, - 1,0,0,0,62,897,1,0,0,0,64,904,1,0,0,0,66,913,1,0,0,0,68,924,1,0, - 0,0,70,926,1,0,0,0,72,946,1,0,0,0,74,960,1,0,0,0,76,962,1,0,0,0, - 78,971,1,0,0,0,80,978,1,0,0,0,82,987,1,0,0,0,84,997,1,0,0,0,86,1020, - 1,0,0,0,88,1026,1,0,0,0,90,1028,1,0,0,0,92,1035,1,0,0,0,94,1047, - 1,0,0,0,96,1049,1,0,0,0,98,1056,1,0,0,0,100,1077,1,0,0,0,102,1106, - 1,0,0,0,104,1108,1,0,0,0,106,1117,1,0,0,0,108,1140,1,0,0,0,110,1159, - 1,0,0,0,112,1182,1,0,0,0,114,1184,1,0,0,0,116,1199,1,0,0,0,118,1218, - 1,0,0,0,120,1240,1,0,0,0,122,1245,1,0,0,0,124,1250,1,0,0,0,126,1255, - 1,0,0,0,128,1260,1,0,0,0,130,1267,1,0,0,0,132,1282,1,0,0,0,134,1288, - 1,0,0,0,136,1308,1,0,0,0,138,1310,1,0,0,0,140,1321,1,0,0,0,142,1332, - 1,0,0,0,144,1346,1,0,0,0,146,1348,1,0,0,0,148,1357,1,0,0,0,150,1366, - 1,0,0,0,152,1375,1,0,0,0,154,1378,1,0,0,0,156,1386,1,0,0,0,158,1402, - 1,0,0,0,160,1406,1,0,0,0,162,1430,1,0,0,0,164,1432,1,0,0,0,166,1448, - 1,0,0,0,168,1451,1,0,0,0,170,1455,1,0,0,0,172,1458,1,0,0,0,174,1462, - 1,0,0,0,176,1464,1,0,0,0,178,1466,1,0,0,0,180,1468,1,0,0,0,182,1470, - 1,0,0,0,184,1472,1,0,0,0,186,1474,1,0,0,0,188,1482,1,0,0,0,190,1492, - 1,0,0,0,192,1496,1,0,0,0,194,1500,1,0,0,0,196,1505,1,0,0,0,198,1546, - 1,0,0,0,200,1554,1,0,0,0,202,1558,1,0,0,0,204,1578,1,0,0,0,206,1582, - 1,0,0,0,208,1591,1,0,0,0,210,1621,1,0,0,0,212,1636,1,0,0,0,214,1642, - 1,0,0,0,216,1648,1,0,0,0,218,1650,1,0,0,0,220,1670,1,0,0,0,222,1681, - 1,0,0,0,224,1701,1,0,0,0,226,1711,1,0,0,0,228,1713,1,0,0,0,230,1715, - 1,0,0,0,232,1730,1,0,0,0,234,1732,1,0,0,0,236,1739,1,0,0,0,238,1771, - 1,0,0,0,240,1783,1,0,0,0,242,1790,1,0,0,0,244,1800,1,0,0,0,246,1802, - 1,0,0,0,248,1808,1,0,0,0,250,1819,1,0,0,0,252,1830,1,0,0,0,254,1838, - 1,0,0,0,256,1856,1,0,0,0,258,1861,1,0,0,0,260,1882,1,0,0,0,262,1918, - 1,0,0,0,264,1920,1,0,0,0,266,1928,1,0,0,0,268,1968,1,0,0,0,270,1978, - 1,0,0,0,272,1993,1,0,0,0,274,1995,1,0,0,0,276,2002,1,0,0,0,278,2016, - 1,0,0,0,280,2018,1,0,0,0,282,2068,1,0,0,0,284,2084,1,0,0,0,286,2086, - 1,0,0,0,288,2101,1,0,0,0,290,2103,1,0,0,0,292,2113,1,0,0,0,294,2131, - 1,0,0,0,296,2133,1,0,0,0,298,2137,1,0,0,0,300,2152,1,0,0,0,302,2158, - 1,0,0,0,304,2160,1,0,0,0,306,2169,1,0,0,0,308,2240,1,0,0,0,310,2246, - 1,0,0,0,312,2508,1,0,0,0,314,2529,1,0,0,0,316,2531,1,0,0,0,318,2533, - 1,0,0,0,320,2535,1,0,0,0,322,2551,1,0,0,0,324,2553,1,0,0,0,326,2555, - 1,0,0,0,328,2601,1,0,0,0,330,2612,1,0,0,0,332,2618,1,0,0,0,334,2620, - 1,0,0,0,336,2625,1,0,0,0,338,2631,1,0,0,0,340,2678,1,0,0,0,342,2689, - 1,0,0,0,344,2696,1,0,0,0,346,2698,1,0,0,0,348,2719,1,0,0,0,350,2721, - 1,0,0,0,352,2723,1,0,0,0,354,2737,1,0,0,0,356,2744,1,0,0,0,358,2758, - 1,0,0,0,360,2760,1,0,0,0,362,2762,1,0,0,0,364,366,3,2,1,0,365,364, - 1,0,0,0,366,369,1,0,0,0,367,365,1,0,0,0,367,368,1,0,0,0,368,370, - 1,0,0,0,369,367,1,0,0,0,370,371,5,0,0,1,371,1,1,0,0,0,372,374,3, - 4,2,0,373,375,5,246,0,0,374,373,1,0,0,0,374,375,1,0,0,0,375,3,1, - 0,0,0,376,399,3,204,102,0,377,399,3,6,3,0,378,399,3,8,4,0,379,399, - 3,26,13,0,380,399,3,64,32,0,381,399,3,66,33,0,382,399,3,68,34,0, - 383,399,3,74,37,0,384,399,3,88,44,0,385,399,3,94,47,0,386,399,3, - 100,50,0,387,399,3,102,51,0,388,399,3,108,54,0,389,399,3,110,55, - 0,390,399,3,112,56,0,391,399,3,144,72,0,392,399,3,152,76,0,393,399, - 3,154,77,0,394,399,3,156,78,0,395,399,3,158,79,0,396,399,3,160,80, - 0,397,399,3,162,81,0,398,376,1,0,0,0,398,377,1,0,0,0,398,378,1,0, - 0,0,398,379,1,0,0,0,398,380,1,0,0,0,398,381,1,0,0,0,398,382,1,0, - 0,0,398,383,1,0,0,0,398,384,1,0,0,0,398,385,1,0,0,0,398,386,1,0, - 0,0,398,387,1,0,0,0,398,388,1,0,0,0,398,389,1,0,0,0,398,390,1,0, - 0,0,398,391,1,0,0,0,398,392,1,0,0,0,398,393,1,0,0,0,398,394,1,0, - 0,0,398,395,1,0,0,0,398,396,1,0,0,0,398,397,1,0,0,0,399,5,1,0,0, - 0,400,401,5,205,0,0,401,402,3,184,92,0,402,7,1,0,0,0,403,412,3,18, - 9,0,404,412,3,20,10,0,405,412,3,22,11,0,406,412,3,24,12,0,407,412, - 3,16,8,0,408,412,3,14,7,0,409,412,3,12,6,0,410,412,3,10,5,0,411, - 403,1,0,0,0,411,404,1,0,0,0,411,405,1,0,0,0,411,406,1,0,0,0,411, - 407,1,0,0,0,411,408,1,0,0,0,411,409,1,0,0,0,411,410,1,0,0,0,412, - 9,1,0,0,0,413,415,5,37,0,0,414,416,5,19,0,0,415,414,1,0,0,0,415, - 416,1,0,0,0,416,417,1,0,0,0,417,419,5,190,0,0,418,420,3,172,86,0, - 419,418,1,0,0,0,419,420,1,0,0,0,420,421,1,0,0,0,421,437,3,174,87, - 0,422,423,5,249,0,0,423,428,3,214,107,0,424,425,5,247,0,0,425,427, - 3,214,107,0,426,424,1,0,0,0,427,430,1,0,0,0,428,426,1,0,0,0,428, - 429,1,0,0,0,429,433,1,0,0,0,430,428,1,0,0,0,431,432,5,247,0,0,432, - 434,3,208,104,0,433,431,1,0,0,0,433,434,1,0,0,0,434,435,1,0,0,0, - 435,436,5,250,0,0,436,438,1,0,0,0,437,422,1,0,0,0,437,438,1,0,0, - 0,438,445,1,0,0,0,439,440,5,17,0,0,440,443,5,26,0,0,441,444,3,292, - 146,0,442,444,3,250,125,0,443,441,1,0,0,0,443,442,1,0,0,0,444,446, - 1,0,0,0,445,439,1,0,0,0,445,446,1,0,0,0,446,447,1,0,0,0,447,450, - 3,196,98,0,448,449,5,9,0,0,449,451,3,204,102,0,450,448,1,0,0,0,450, - 451,1,0,0,0,451,11,1,0,0,0,452,454,5,37,0,0,453,455,5,19,0,0,454, - 453,1,0,0,0,454,455,1,0,0,0,455,456,1,0,0,0,456,458,5,190,0,0,457, - 459,3,172,86,0,458,457,1,0,0,0,458,459,1,0,0,0,459,460,1,0,0,0,460, - 461,3,174,87,0,461,465,5,115,0,0,462,466,3,186,93,0,463,464,5,148, - 0,0,464,466,3,314,157,0,465,462,1,0,0,0,465,463,1,0,0,0,466,470, - 1,0,0,0,467,468,5,17,0,0,468,469,5,26,0,0,469,471,3,250,125,0,470, - 467,1,0,0,0,470,471,1,0,0,0,471,472,1,0,0,0,472,473,3,196,98,0,473, - 13,1,0,0,0,474,476,5,37,0,0,475,477,5,19,0,0,476,475,1,0,0,0,476, - 477,1,0,0,0,477,478,1,0,0,0,478,480,5,190,0,0,479,481,3,172,86,0, - 480,479,1,0,0,0,480,481,1,0,0,0,481,482,1,0,0,0,482,500,3,174,87, - 0,483,484,5,249,0,0,484,489,3,216,108,0,485,486,5,247,0,0,486,488, - 3,216,108,0,487,485,1,0,0,0,488,491,1,0,0,0,489,487,1,0,0,0,489, - 490,1,0,0,0,490,496,1,0,0,0,491,489,1,0,0,0,492,493,5,247,0,0,493, - 494,5,151,0,0,494,495,5,110,0,0,495,497,3,292,146,0,496,492,1,0, - 0,0,496,497,1,0,0,0,497,498,1,0,0,0,498,499,5,250,0,0,499,501,1, - 0,0,0,500,483,1,0,0,0,500,501,1,0,0,0,501,507,1,0,0,0,502,503,5, - 151,0,0,503,505,5,110,0,0,504,506,3,292,146,0,505,504,1,0,0,0,505, - 506,1,0,0,0,506,508,1,0,0,0,507,502,1,0,0,0,507,508,1,0,0,0,508, - 512,1,0,0,0,509,510,5,146,0,0,510,511,5,26,0,0,511,513,3,232,116, - 0,512,509,1,0,0,0,512,513,1,0,0,0,513,516,1,0,0,0,514,515,5,34,0, - 0,515,517,3,314,157,0,516,514,1,0,0,0,516,517,1,0,0,0,517,518,1, - 0,0,0,518,519,5,23,0,0,519,520,5,9,0,0,520,523,5,111,0,0,521,522, - 5,25,0,0,522,524,3,248,124,0,523,521,1,0,0,0,523,524,1,0,0,0,524, - 527,1,0,0,0,525,526,5,9,0,0,526,528,3,204,102,0,527,525,1,0,0,0, - 527,528,1,0,0,0,528,15,1,0,0,0,529,530,5,37,0,0,530,532,5,214,0, - 0,531,533,3,172,86,0,532,531,1,0,0,0,532,533,1,0,0,0,533,534,1,0, - 0,0,534,536,3,178,89,0,535,537,3,202,101,0,536,535,1,0,0,0,536,537, - 1,0,0,0,537,540,1,0,0,0,538,539,5,34,0,0,539,541,3,314,157,0,540, - 538,1,0,0,0,540,541,1,0,0,0,541,544,1,0,0,0,542,543,5,25,0,0,543, - 545,3,248,124,0,544,542,1,0,0,0,544,545,1,0,0,0,545,546,1,0,0,0, - 546,547,5,9,0,0,547,548,3,204,102,0,548,17,1,0,0,0,549,550,5,37, - 0,0,550,552,7,0,0,0,551,553,3,172,86,0,552,551,1,0,0,0,552,553,1, - 0,0,0,553,554,1,0,0,0,554,557,3,176,88,0,555,556,5,34,0,0,556,558, - 3,314,157,0,557,555,1,0,0,0,557,558,1,0,0,0,558,561,1,0,0,0,559, - 560,5,24,0,0,560,562,3,314,157,0,561,559,1,0,0,0,561,562,1,0,0,0, - 562,19,1,0,0,0,563,564,5,37,0,0,564,565,5,167,0,0,565,566,3,356, - 178,0,566,21,1,0,0,0,567,569,5,37,0,0,568,570,5,12,0,0,569,568,1, - 0,0,0,569,570,1,0,0,0,570,571,1,0,0,0,571,573,5,84,0,0,572,574,3, - 172,86,0,573,572,1,0,0,0,573,574,1,0,0,0,574,575,1,0,0,0,575,588, - 3,180,90,0,576,585,5,249,0,0,577,582,3,328,164,0,578,579,5,247,0, - 0,579,581,3,328,164,0,580,578,1,0,0,0,581,584,1,0,0,0,582,580,1, - 0,0,0,582,583,1,0,0,0,583,586,1,0,0,0,584,582,1,0,0,0,585,577,1, - 0,0,0,585,586,1,0,0,0,586,587,1,0,0,0,587,589,5,250,0,0,588,576, - 1,0,0,0,588,589,1,0,0,0,589,590,1,0,0,0,590,591,5,161,0,0,591,594, - 3,328,164,0,592,593,5,102,0,0,593,595,3,328,164,0,594,592,1,0,0, - 0,594,595,1,0,0,0,595,596,1,0,0,0,596,597,5,24,0,0,597,601,5,258, - 0,0,598,599,5,104,0,0,599,600,5,233,0,0,600,602,5,258,0,0,601,598, - 1,0,0,0,601,602,1,0,0,0,602,603,1,0,0,0,603,604,5,208,0,0,604,605, - 5,233,0,0,605,606,5,258,0,0,606,607,5,127,0,0,607,608,5,233,0,0, - 608,612,5,258,0,0,609,610,5,18,0,0,610,611,5,233,0,0,611,613,5,258, - 0,0,612,609,1,0,0,0,612,613,1,0,0,0,613,617,1,0,0,0,614,615,5,20, - 0,0,615,616,5,233,0,0,616,618,5,258,0,0,617,614,1,0,0,0,617,618, - 1,0,0,0,618,622,1,0,0,0,619,620,5,189,0,0,620,621,5,233,0,0,621, - 623,5,258,0,0,622,619,1,0,0,0,622,623,1,0,0,0,623,627,1,0,0,0,624, - 625,5,76,0,0,625,626,5,233,0,0,626,628,5,258,0,0,627,624,1,0,0,0, - 627,628,1,0,0,0,628,23,1,0,0,0,629,630,5,37,0,0,630,632,5,84,0,0, - 631,633,3,172,86,0,632,631,1,0,0,0,632,633,1,0,0,0,633,634,1,0,0, - 0,634,647,3,180,90,0,635,644,5,249,0,0,636,641,3,328,164,0,637,638, - 5,247,0,0,638,640,3,328,164,0,639,637,1,0,0,0,640,643,1,0,0,0,641, - 639,1,0,0,0,641,642,1,0,0,0,642,645,1,0,0,0,643,641,1,0,0,0,644, - 636,1,0,0,0,644,645,1,0,0,0,645,646,1,0,0,0,646,648,5,250,0,0,647, - 635,1,0,0,0,647,648,1,0,0,0,648,651,1,0,0,0,649,650,5,161,0,0,650, - 652,3,328,164,0,651,649,1,0,0,0,651,652,1,0,0,0,652,653,1,0,0,0, - 653,654,5,24,0,0,654,655,5,258,0,0,655,656,5,188,0,0,656,657,5,233, - 0,0,657,658,3,314,157,0,658,25,1,0,0,0,659,678,3,28,14,0,660,678, - 3,62,31,0,661,678,3,60,30,0,662,678,3,58,29,0,663,678,3,54,27,0, - 664,678,3,56,28,0,665,678,3,52,26,0,666,678,3,48,24,0,667,678,3, - 50,25,0,668,678,3,46,23,0,669,678,3,44,22,0,670,678,3,42,21,0,671, - 678,3,40,20,0,672,678,3,34,17,0,673,678,3,30,15,0,674,678,3,32,16, - 0,675,678,3,36,18,0,676,678,3,38,19,0,677,659,1,0,0,0,677,660,1, - 0,0,0,677,661,1,0,0,0,677,662,1,0,0,0,677,663,1,0,0,0,677,664,1, - 0,0,0,677,665,1,0,0,0,677,666,1,0,0,0,677,667,1,0,0,0,677,668,1, - 0,0,0,677,669,1,0,0,0,677,670,1,0,0,0,677,671,1,0,0,0,677,672,1, - 0,0,0,677,673,1,0,0,0,677,674,1,0,0,0,677,675,1,0,0,0,677,676,1, - 0,0,0,678,27,1,0,0,0,679,680,5,4,0,0,680,681,5,46,0,0,681,682,3, - 184,92,0,682,683,5,177,0,0,683,684,5,143,0,0,684,685,7,1,0,0,685, - 686,3,356,178,0,686,29,1,0,0,0,687,688,5,4,0,0,688,689,5,190,0,0, - 689,690,3,186,93,0,690,691,5,177,0,0,691,692,5,32,0,0,692,693,5, - 183,0,0,693,694,3,192,96,0,694,695,5,249,0,0,695,696,3,228,114,0, - 696,697,5,233,0,0,697,703,3,314,157,0,698,699,5,247,0,0,699,700, - 3,228,114,0,700,701,5,233,0,0,701,702,3,314,157,0,702,704,1,0,0, - 0,703,698,1,0,0,0,703,704,1,0,0,0,704,705,1,0,0,0,705,706,5,250, - 0,0,706,31,1,0,0,0,707,708,5,4,0,0,708,709,5,190,0,0,709,712,3,186, - 93,0,710,711,5,146,0,0,711,713,3,304,152,0,712,710,1,0,0,0,712,713, - 1,0,0,0,713,714,1,0,0,0,714,725,5,177,0,0,715,716,5,30,0,0,716,717, - 5,94,0,0,717,722,3,314,157,0,718,719,5,218,0,0,719,720,5,152,0,0, - 720,721,5,233,0,0,721,723,3,358,179,0,722,718,1,0,0,0,722,723,1, - 0,0,0,723,726,1,0,0,0,724,726,5,199,0,0,725,715,1,0,0,0,725,724, - 1,0,0,0,726,33,1,0,0,0,727,728,5,4,0,0,728,729,5,190,0,0,729,730, - 3,186,93,0,730,731,5,31,0,0,731,732,5,32,0,0,732,733,3,220,110,0, - 733,35,1,0,0,0,734,735,5,4,0,0,735,736,5,190,0,0,736,737,3,186,93, - 0,737,739,5,58,0,0,738,740,5,32,0,0,739,738,1,0,0,0,739,740,1,0, - 0,0,740,741,1,0,0,0,741,742,3,192,96,0,742,37,1,0,0,0,743,744,5, - 4,0,0,744,745,5,190,0,0,745,746,3,186,93,0,746,747,5,177,0,0,747, - 748,5,143,0,0,748,749,7,1,0,0,749,750,3,356,178,0,750,39,1,0,0,0, - 751,752,5,4,0,0,752,753,5,190,0,0,753,759,3,186,93,0,754,760,5,159, - 0,0,755,757,5,1,0,0,756,758,3,172,86,0,757,756,1,0,0,0,757,758,1, - 0,0,0,758,760,1,0,0,0,759,754,1,0,0,0,759,755,1,0,0,0,760,761,1, - 0,0,0,761,762,5,33,0,0,762,763,5,249,0,0,763,768,3,220,110,0,764, - 765,5,247,0,0,765,767,3,220,110,0,766,764,1,0,0,0,767,770,1,0,0, - 0,768,769,1,0,0,0,768,766,1,0,0,0,769,771,1,0,0,0,770,768,1,0,0, - 0,771,772,5,250,0,0,772,41,1,0,0,0,773,774,5,4,0,0,774,775,5,190, - 0,0,775,776,3,186,93,0,776,777,5,1,0,0,777,779,5,32,0,0,778,780, - 3,172,86,0,779,778,1,0,0,0,779,780,1,0,0,0,780,781,1,0,0,0,781,782, - 3,222,111,0,782,43,1,0,0,0,783,784,5,4,0,0,784,785,5,190,0,0,785, - 786,3,186,93,0,786,788,5,4,0,0,787,789,5,32,0,0,788,787,1,0,0,0, - 788,789,1,0,0,0,789,790,1,0,0,0,790,799,3,192,96,0,791,795,5,177, - 0,0,792,796,3,226,113,0,793,794,5,34,0,0,794,796,3,314,157,0,795, - 792,1,0,0,0,795,793,1,0,0,0,796,800,1,0,0,0,797,798,5,58,0,0,798, - 800,5,51,0,0,799,791,1,0,0,0,799,797,1,0,0,0,800,45,1,0,0,0,801, - 802,5,4,0,0,802,803,5,190,0,0,803,804,3,186,93,0,804,806,5,1,0,0, - 805,807,3,172,86,0,806,805,1,0,0,0,806,807,1,0,0,0,807,820,1,0,0, - 0,808,809,5,146,0,0,809,812,3,304,152,0,810,811,5,24,0,0,811,813, - 3,314,157,0,812,810,1,0,0,0,812,813,1,0,0,0,813,815,1,0,0,0,814, - 816,3,240,120,0,815,814,1,0,0,0,815,816,1,0,0,0,816,821,1,0,0,0, - 817,818,5,155,0,0,818,819,5,146,0,0,819,821,3,238,119,0,820,808, - 1,0,0,0,820,817,1,0,0,0,821,47,1,0,0,0,822,823,5,4,0,0,823,824,5, - 190,0,0,824,827,3,186,93,0,825,826,5,146,0,0,826,828,3,304,152,0, - 827,825,1,0,0,0,827,828,1,0,0,0,828,829,1,0,0,0,829,841,5,177,0, - 0,830,831,5,72,0,0,831,842,3,230,115,0,832,833,5,169,0,0,833,834, - 5,79,0,0,834,842,3,254,127,0,835,836,5,24,0,0,836,842,3,314,157, - 0,837,838,5,25,0,0,838,842,3,248,124,0,839,840,5,176,0,0,840,842, - 3,248,124,0,841,830,1,0,0,0,841,832,1,0,0,0,841,835,1,0,0,0,841, - 837,1,0,0,0,841,839,1,0,0,0,842,49,1,0,0,0,843,844,5,4,0,0,844,845, - 5,190,0,0,845,846,3,186,93,0,846,847,5,156,0,0,847,848,5,147,0,0, - 848,51,1,0,0,0,849,850,5,4,0,0,850,851,5,190,0,0,851,852,3,186,93, - 0,852,854,5,58,0,0,853,855,3,170,85,0,854,853,1,0,0,0,854,855,1, - 0,0,0,855,864,1,0,0,0,856,857,5,146,0,0,857,859,3,304,152,0,858, - 860,5,22,0,0,859,858,1,0,0,0,859,860,1,0,0,0,860,865,1,0,0,0,861, - 862,5,155,0,0,862,863,5,146,0,0,863,865,3,238,119,0,864,856,1,0, - 0,0,864,861,1,0,0,0,865,53,1,0,0,0,866,867,5,4,0,0,867,868,5,214, - 0,0,868,870,3,188,94,0,869,871,3,202,101,0,870,869,1,0,0,0,870,871, - 1,0,0,0,871,872,1,0,0,0,872,873,5,9,0,0,873,874,3,204,102,0,874, - 55,1,0,0,0,875,876,5,4,0,0,876,877,5,214,0,0,877,878,3,188,94,0, - 878,879,5,157,0,0,879,880,5,195,0,0,880,881,3,188,94,0,881,57,1, - 0,0,0,882,883,5,4,0,0,883,884,5,214,0,0,884,885,3,188,94,0,885,886, - 5,177,0,0,886,887,5,143,0,0,887,888,7,1,0,0,888,889,3,352,176,0, - 889,59,1,0,0,0,890,891,5,4,0,0,891,892,5,190,0,0,892,893,3,186,93, - 0,893,894,5,157,0,0,894,895,5,195,0,0,895,896,3,186,93,0,896,61, - 1,0,0,0,897,898,5,4,0,0,898,899,5,214,0,0,899,900,3,188,94,0,900, - 901,7,2,0,0,901,902,5,25,0,0,902,903,3,248,124,0,903,63,1,0,0,0, - 904,906,5,198,0,0,905,907,5,190,0,0,906,905,1,0,0,0,906,907,1,0, - 0,0,907,909,1,0,0,0,908,910,3,170,85,0,909,908,1,0,0,0,909,910,1, - 0,0,0,910,911,1,0,0,0,911,912,3,186,93,0,912,65,1,0,0,0,913,915, - 5,56,0,0,914,916,5,46,0,0,915,914,1,0,0,0,915,916,1,0,0,0,916,918, - 1,0,0,0,917,919,7,3,0,0,918,917,1,0,0,0,918,919,1,0,0,0,919,920, - 1,0,0,0,920,921,3,352,176,0,921,67,1,0,0,0,922,925,3,70,35,0,923, - 925,3,72,36,0,924,922,1,0,0,0,924,923,1,0,0,0,925,69,1,0,0,0,926, - 927,5,36,0,0,927,928,5,183,0,0,928,930,3,186,93,0,929,931,3,292, - 146,0,930,929,1,0,0,0,930,931,1,0,0,0,931,944,1,0,0,0,932,933,5, - 192,0,0,933,934,5,187,0,0,934,935,5,249,0,0,935,936,3,358,179,0, - 936,942,5,250,0,0,937,938,5,158,0,0,938,939,5,249,0,0,939,940,3, - 358,179,0,940,941,5,250,0,0,941,943,1,0,0,0,942,937,1,0,0,0,942, - 943,1,0,0,0,943,945,1,0,0,0,944,932,1,0,0,0,944,945,1,0,0,0,945, - 71,1,0,0,0,946,947,5,36,0,0,947,948,5,96,0,0,948,949,5,183,0,0,949, - 952,3,186,93,0,950,951,5,146,0,0,951,953,3,304,152,0,952,950,1,0, - 0,0,952,953,1,0,0,0,953,73,1,0,0,0,954,961,3,86,43,0,955,961,3,84, - 42,0,956,961,3,82,41,0,957,961,3,78,39,0,958,961,3,80,40,0,959,961, - 3,76,38,0,960,954,1,0,0,0,960,955,1,0,0,0,960,956,1,0,0,0,960,957, - 1,0,0,0,960,958,1,0,0,0,960,959,1,0,0,0,961,75,1,0,0,0,962,963,5, - 58,0,0,963,965,7,0,0,0,964,966,3,170,85,0,965,964,1,0,0,0,965,966, - 1,0,0,0,966,967,1,0,0,0,967,969,3,184,92,0,968,970,7,4,0,0,969,968, - 1,0,0,0,969,970,1,0,0,0,970,77,1,0,0,0,971,972,5,58,0,0,972,974, - 5,214,0,0,973,975,3,170,85,0,974,973,1,0,0,0,974,975,1,0,0,0,975, - 976,1,0,0,0,976,977,3,188,94,0,977,79,1,0,0,0,978,979,5,58,0,0,979, - 981,5,190,0,0,980,982,3,170,85,0,981,980,1,0,0,0,981,982,1,0,0,0, - 982,983,1,0,0,0,983,985,3,186,93,0,984,986,5,22,0,0,985,984,1,0, - 0,0,985,986,1,0,0,0,986,81,1,0,0,0,987,989,5,58,0,0,988,990,5,96, - 0,0,989,988,1,0,0,0,989,990,1,0,0,0,990,991,1,0,0,0,991,992,5,183, - 0,0,992,995,3,186,93,0,993,994,5,146,0,0,994,996,3,304,152,0,995, - 993,1,0,0,0,995,996,1,0,0,0,996,83,1,0,0,0,997,999,5,58,0,0,998, - 1000,5,12,0,0,999,998,1,0,0,0,999,1000,1,0,0,0,1000,1001,1,0,0,0, - 1001,1003,5,84,0,0,1002,1004,3,170,85,0,1003,1002,1,0,0,0,1003,1004, - 1,0,0,0,1004,1005,1,0,0,0,1005,1018,3,190,95,0,1006,1015,5,249,0, - 0,1007,1012,3,328,164,0,1008,1009,5,247,0,0,1009,1011,3,328,164, - 0,1010,1008,1,0,0,0,1011,1014,1,0,0,0,1012,1010,1,0,0,0,1012,1013, - 1,0,0,0,1013,1016,1,0,0,0,1014,1012,1,0,0,0,1015,1007,1,0,0,0,1015, - 1016,1,0,0,0,1016,1017,1,0,0,0,1017,1019,5,250,0,0,1018,1006,1,0, - 0,0,1018,1019,1,0,0,0,1019,85,1,0,0,0,1020,1021,5,58,0,0,1021,1022, - 5,167,0,0,1022,1023,3,356,178,0,1023,87,1,0,0,0,1024,1027,3,90,45, - 0,1025,1027,3,92,46,0,1026,1024,1,0,0,0,1026,1025,1,0,0,0,1027,89, - 1,0,0,0,1028,1029,5,86,0,0,1029,1030,5,167,0,0,1030,1031,3,356,178, - 0,1031,1032,5,195,0,0,1032,1033,5,87,0,0,1033,1034,3,356,178,0,1034, - 91,1,0,0,0,1035,1036,5,86,0,0,1036,1037,3,348,174,0,1037,1038,5, - 137,0,0,1038,1040,3,350,175,0,1039,1041,3,352,176,0,1040,1039,1, - 0,0,0,1040,1041,1,0,0,0,1041,1042,1,0,0,0,1042,1043,5,195,0,0,1043, - 1044,3,354,177,0,1044,93,1,0,0,0,1045,1048,3,96,48,0,1046,1048,3, - 98,49,0,1047,1045,1,0,0,0,1047,1046,1,0,0,0,1048,95,1,0,0,0,1049, - 1050,5,162,0,0,1050,1051,5,167,0,0,1051,1052,3,356,178,0,1052,1053, - 5,82,0,0,1053,1054,5,87,0,0,1054,1055,3,356,178,0,1055,97,1,0,0, - 0,1056,1060,5,162,0,0,1057,1058,5,86,0,0,1058,1059,5,138,0,0,1059, - 1061,5,78,0,0,1060,1057,1,0,0,0,1060,1061,1,0,0,0,1061,1062,1,0, - 0,0,1062,1063,3,348,174,0,1063,1064,5,137,0,0,1064,1066,3,350,175, - 0,1065,1067,3,352,176,0,1066,1065,1,0,0,0,1066,1067,1,0,0,0,1067, - 1068,1,0,0,0,1068,1074,5,82,0,0,1069,1075,3,354,177,0,1070,1072, - 5,167,0,0,1071,1070,1,0,0,0,1071,1072,1,0,0,0,1072,1073,1,0,0,0, - 1073,1075,3,356,178,0,1074,1069,1,0,0,0,1074,1071,1,0,0,0,1075,99, - 1,0,0,0,1076,1078,3,206,103,0,1077,1076,1,0,0,0,1077,1078,1,0,0, - 0,1078,1079,1,0,0,0,1079,1080,5,99,0,0,1080,1082,7,5,0,0,1081,1083, - 5,190,0,0,1082,1081,1,0,0,0,1082,1083,1,0,0,0,1083,1084,1,0,0,0, - 1084,1086,3,186,93,0,1085,1087,3,292,146,0,1086,1085,1,0,0,0,1086, - 1087,1,0,0,0,1087,1100,1,0,0,0,1088,1089,5,146,0,0,1089,1090,5,249, - 0,0,1090,1095,3,304,152,0,1091,1092,5,247,0,0,1092,1094,3,304,152, - 0,1093,1091,1,0,0,0,1094,1097,1,0,0,0,1095,1093,1,0,0,0,1095,1096, - 1,0,0,0,1096,1098,1,0,0,0,1097,1095,1,0,0,0,1098,1099,5,250,0,0, - 1099,1101,1,0,0,0,1100,1088,1,0,0,0,1100,1101,1,0,0,0,1101,1102, - 1,0,0,0,1102,1103,3,204,102,0,1103,101,1,0,0,0,1104,1107,3,104,52, - 0,1105,1107,3,106,53,0,1106,1104,1,0,0,0,1106,1105,1,0,0,0,1107, - 103,1,0,0,0,1108,1110,5,50,0,0,1109,1111,5,82,0,0,1110,1109,1,0, - 0,0,1110,1111,1,0,0,0,1111,1112,1,0,0,0,1112,1115,3,186,93,0,1113, - 1114,5,217,0,0,1114,1116,3,306,153,0,1115,1113,1,0,0,0,1115,1116, - 1,0,0,0,1116,105,1,0,0,0,1117,1118,5,50,0,0,1118,1123,3,186,93,0, - 1119,1121,5,9,0,0,1120,1119,1,0,0,0,1120,1121,1,0,0,0,1121,1122, - 1,0,0,0,1122,1124,3,356,178,0,1123,1120,1,0,0,0,1123,1124,1,0,0, - 0,1124,1125,1,0,0,0,1125,1134,5,82,0,0,1126,1131,3,280,140,0,1127, - 1128,5,247,0,0,1128,1130,3,280,140,0,1129,1127,1,0,0,0,1130,1133, - 1,0,0,0,1131,1129,1,0,0,0,1131,1132,1,0,0,0,1132,1135,1,0,0,0,1133, - 1131,1,0,0,0,1134,1126,1,0,0,0,1134,1135,1,0,0,0,1135,1138,1,0,0, - 0,1136,1137,5,217,0,0,1137,1139,3,306,153,0,1138,1136,1,0,0,0,1138, - 1139,1,0,0,0,1139,107,1,0,0,0,1140,1141,5,54,0,0,1141,1142,3,186, - 93,0,1142,1143,5,177,0,0,1143,1153,3,198,99,0,1144,1145,5,82,0,0, - 1145,1150,3,280,140,0,1146,1147,5,247,0,0,1147,1149,3,280,140,0, - 1148,1146,1,0,0,0,1149,1152,1,0,0,0,1150,1148,1,0,0,0,1150,1151, - 1,0,0,0,1151,1154,1,0,0,0,1152,1150,1,0,0,0,1153,1144,1,0,0,0,1153, - 1154,1,0,0,0,1154,1157,1,0,0,0,1155,1156,5,217,0,0,1156,1158,3,306, - 153,0,1157,1155,1,0,0,0,1157,1158,1,0,0,0,1158,109,1,0,0,0,1159, - 1160,5,209,0,0,1160,1162,5,103,0,0,1161,1163,5,190,0,0,1162,1161, - 1,0,0,0,1162,1163,1,0,0,0,1163,1164,1,0,0,0,1164,1166,3,186,93,0, - 1165,1167,3,292,146,0,1166,1165,1,0,0,0,1166,1167,1,0,0,0,1167,1168, - 1,0,0,0,1168,1169,3,204,102,0,1169,111,1,0,0,0,1170,1183,3,132,66, - 0,1171,1183,3,134,67,0,1172,1183,3,136,68,0,1173,1183,3,130,65,0, - 1174,1183,3,128,64,0,1175,1183,3,126,63,0,1176,1183,3,124,62,0,1177, - 1183,3,122,61,0,1178,1183,3,120,60,0,1179,1183,3,118,59,0,1180,1183, - 3,116,58,0,1181,1183,3,114,57,0,1182,1170,1,0,0,0,1182,1171,1,0, - 0,0,1182,1172,1,0,0,0,1182,1173,1,0,0,0,1182,1174,1,0,0,0,1182,1175, - 1,0,0,0,1182,1176,1,0,0,0,1182,1177,1,0,0,0,1182,1178,1,0,0,0,1182, - 1179,1,0,0,0,1182,1180,1,0,0,0,1182,1181,1,0,0,0,1183,113,1,0,0, - 0,1184,1185,5,180,0,0,1185,1197,7,6,0,0,1186,1188,5,115,0,0,1187, - 1186,1,0,0,0,1187,1188,1,0,0,0,1188,1189,1,0,0,0,1189,1194,3,314, - 157,0,1190,1191,5,255,0,0,1191,1193,3,314,157,0,1192,1190,1,0,0, - 0,1193,1196,1,0,0,0,1194,1192,1,0,0,0,1194,1195,1,0,0,0,1195,1198, - 1,0,0,0,1196,1194,1,0,0,0,1197,1187,1,0,0,0,1197,1198,1,0,0,0,1198, - 115,1,0,0,0,1199,1200,5,180,0,0,1200,1203,5,191,0,0,1201,1202,5, - 94,0,0,1202,1204,3,186,93,0,1203,1201,1,0,0,0,1203,1204,1,0,0,0, - 1204,1216,1,0,0,0,1205,1207,5,115,0,0,1206,1205,1,0,0,0,1206,1207, - 1,0,0,0,1207,1208,1,0,0,0,1208,1213,3,314,157,0,1209,1210,5,255, - 0,0,1210,1212,3,314,157,0,1211,1209,1,0,0,0,1212,1215,1,0,0,0,1213, - 1211,1,0,0,0,1213,1214,1,0,0,0,1214,1217,1,0,0,0,1215,1213,1,0,0, - 0,1216,1206,1,0,0,0,1216,1217,1,0,0,0,1217,117,1,0,0,0,1218,1220, - 5,180,0,0,1219,1221,7,7,0,0,1220,1219,1,0,0,0,1220,1221,1,0,0,0, - 1221,1222,1,0,0,0,1222,1225,5,85,0,0,1223,1224,5,94,0,0,1224,1226, - 3,184,92,0,1225,1223,1,0,0,0,1225,1226,1,0,0,0,1226,1238,1,0,0,0, - 1227,1229,5,115,0,0,1228,1227,1,0,0,0,1228,1229,1,0,0,0,1229,1230, - 1,0,0,0,1230,1235,3,314,157,0,1231,1232,5,255,0,0,1232,1234,3,314, - 157,0,1233,1231,1,0,0,0,1234,1237,1,0,0,0,1235,1233,1,0,0,0,1235, - 1236,1,0,0,0,1236,1239,1,0,0,0,1237,1235,1,0,0,0,1238,1228,1,0,0, - 0,1238,1239,1,0,0,0,1239,119,1,0,0,0,1240,1241,5,180,0,0,1241,1242, - 5,37,0,0,1242,1243,5,190,0,0,1243,1244,3,186,93,0,1244,121,1,0,0, - 0,1245,1246,5,180,0,0,1246,1247,5,37,0,0,1247,1248,5,214,0,0,1248, - 1249,3,188,94,0,1249,123,1,0,0,0,1250,1251,5,180,0,0,1251,1252,5, - 190,0,0,1252,1253,5,183,0,0,1253,1254,3,186,93,0,1254,125,1,0,0, - 0,1255,1256,5,180,0,0,1256,1257,5,32,0,0,1257,1258,5,183,0,0,1258, - 1259,3,186,93,0,1259,127,1,0,0,0,1260,1262,5,180,0,0,1261,1263,5, - 155,0,0,1262,1261,1,0,0,0,1262,1263,1,0,0,0,1263,1264,1,0,0,0,1264, - 1265,5,147,0,0,1265,1266,3,186,93,0,1266,129,1,0,0,0,1267,1268,5, - 180,0,0,1268,1269,5,73,0,0,1269,1270,5,94,0,0,1270,1280,3,186,93, - 0,1271,1272,5,146,0,0,1272,1273,5,249,0,0,1273,1276,3,304,152,0, - 1274,1275,5,247,0,0,1275,1277,3,304,152,0,1276,1274,1,0,0,0,1276, - 1277,1,0,0,0,1277,1278,1,0,0,0,1278,1279,5,250,0,0,1279,1281,1,0, - 0,0,1280,1271,1,0,0,0,1280,1281,1,0,0,0,1281,131,1,0,0,0,1282,1284, - 5,180,0,0,1283,1285,5,39,0,0,1284,1283,1,0,0,0,1284,1285,1,0,0,0, - 1285,1286,1,0,0,0,1286,1287,5,168,0,0,1287,133,1,0,0,0,1288,1289, - 5,180,0,0,1289,1290,5,167,0,0,1290,1291,5,86,0,0,1291,1292,5,87, - 0,0,1292,1293,3,356,178,0,1293,135,1,0,0,0,1294,1309,3,138,69,0, - 1295,1309,3,140,70,0,1296,1309,3,142,71,0,1297,1298,5,180,0,0,1298, - 1299,5,86,0,0,1299,1300,7,8,0,0,1300,1306,3,356,178,0,1301,1302, - 5,137,0,0,1302,1304,7,9,0,0,1303,1305,3,352,176,0,1304,1303,1,0, - 0,0,1304,1305,1,0,0,0,1305,1307,1,0,0,0,1306,1301,1,0,0,0,1306,1307, - 1,0,0,0,1307,1309,1,0,0,0,1308,1294,1,0,0,0,1308,1295,1,0,0,0,1308, - 1296,1,0,0,0,1308,1297,1,0,0,0,1309,137,1,0,0,0,1310,1311,5,180, - 0,0,1311,1312,5,86,0,0,1312,1313,7,8,0,0,1313,1319,3,356,178,0,1314, - 1315,5,137,0,0,1315,1317,5,46,0,0,1316,1318,3,184,92,0,1317,1316, - 1,0,0,0,1317,1318,1,0,0,0,1318,1320,1,0,0,0,1319,1314,1,0,0,0,1319, - 1320,1,0,0,0,1320,139,1,0,0,0,1321,1322,5,180,0,0,1322,1323,5,86, - 0,0,1323,1324,7,8,0,0,1324,1330,3,356,178,0,1325,1326,5,137,0,0, - 1326,1328,5,190,0,0,1327,1329,3,186,93,0,1328,1327,1,0,0,0,1328, - 1329,1,0,0,0,1329,1331,1,0,0,0,1330,1325,1,0,0,0,1330,1331,1,0,0, - 0,1331,141,1,0,0,0,1332,1333,5,180,0,0,1333,1334,5,86,0,0,1334,1335, - 7,8,0,0,1335,1341,3,356,178,0,1336,1337,5,137,0,0,1337,1339,5,32, - 0,0,1338,1340,3,192,96,0,1339,1338,1,0,0,0,1339,1340,1,0,0,0,1340, - 1342,1,0,0,0,1341,1336,1,0,0,0,1341,1342,1,0,0,0,1342,143,1,0,0, - 0,1343,1347,3,146,73,0,1344,1347,3,148,74,0,1345,1347,3,150,75,0, - 1346,1343,1,0,0,0,1346,1344,1,0,0,0,1346,1345,1,0,0,0,1347,145,1, - 0,0,0,1348,1349,5,34,0,0,1349,1350,5,137,0,0,1350,1351,5,46,0,0, - 1351,1352,3,184,92,0,1352,1355,5,108,0,0,1353,1356,3,314,157,0,1354, - 1356,5,134,0,0,1355,1353,1,0,0,0,1355,1354,1,0,0,0,1356,147,1,0, - 0,0,1357,1358,5,34,0,0,1358,1359,5,137,0,0,1359,1360,5,190,0,0,1360, - 1361,3,186,93,0,1361,1364,5,108,0,0,1362,1365,3,314,157,0,1363,1365, - 5,134,0,0,1364,1362,1,0,0,0,1364,1363,1,0,0,0,1365,149,1,0,0,0,1366, - 1367,5,34,0,0,1367,1368,5,137,0,0,1368,1369,5,32,0,0,1369,1370,3, - 192,96,0,1370,1373,5,108,0,0,1371,1374,3,314,157,0,1372,1374,5,134, - 0,0,1373,1371,1,0,0,0,1373,1372,1,0,0,0,1374,151,1,0,0,0,1375,1376, - 5,67,0,0,1376,1377,3,4,2,0,1377,153,1,0,0,0,1378,1384,5,177,0,0, - 1379,1385,5,2,0,0,1380,1381,3,356,178,0,1381,1382,5,233,0,0,1382, - 1383,3,304,152,0,1383,1385,1,0,0,0,1384,1379,1,0,0,0,1384,1380,1, - 0,0,0,1384,1385,1,0,0,0,1385,155,1,0,0,0,1386,1387,5,248,0,0,1387, - 1388,5,181,0,0,1388,1398,5,249,0,0,1389,1391,3,314,157,0,1390,1389, - 1,0,0,0,1390,1391,1,0,0,0,1391,1399,1,0,0,0,1392,1395,3,314,157, - 0,1393,1394,5,247,0,0,1394,1396,3,304,152,0,1395,1393,1,0,0,0,1395, - 1396,1,0,0,0,1396,1399,1,0,0,0,1397,1399,3,304,152,0,1398,1390,1, - 0,0,0,1398,1392,1,0,0,0,1398,1397,1,0,0,0,1399,1400,1,0,0,0,1400, - 1401,5,250,0,0,1401,157,1,0,0,0,1402,1403,5,107,0,0,1403,1404,5, - 121,0,0,1404,1405,3,186,93,0,1405,159,1,0,0,0,1406,1407,5,118,0, - 0,1407,1408,5,45,0,0,1408,1409,5,98,0,0,1409,1411,5,258,0,0,1410, - 1412,5,145,0,0,1411,1410,1,0,0,0,1411,1412,1,0,0,0,1412,1413,1,0, - 0,0,1413,1414,5,103,0,0,1414,1415,5,190,0,0,1415,1425,3,186,93,0, - 1416,1417,5,146,0,0,1417,1418,5,249,0,0,1418,1421,3,304,152,0,1419, - 1420,5,247,0,0,1420,1422,3,304,152,0,1421,1419,1,0,0,0,1421,1422, - 1,0,0,0,1422,1423,1,0,0,0,1423,1424,5,250,0,0,1424,1426,1,0,0,0, - 1425,1416,1,0,0,0,1425,1426,1,0,0,0,1426,161,1,0,0,0,1427,1431,3, - 164,82,0,1428,1431,3,166,83,0,1429,1431,3,168,84,0,1430,1427,1,0, - 0,0,1430,1428,1,0,0,0,1430,1429,1,0,0,0,1431,163,1,0,0,0,1432,1433, - 5,163,0,0,1433,1446,3,186,93,0,1434,1435,5,146,0,0,1435,1436,5,249, - 0,0,1436,1441,3,304,152,0,1437,1438,5,247,0,0,1438,1440,3,304,152, - 0,1439,1437,1,0,0,0,1440,1443,1,0,0,0,1441,1442,1,0,0,0,1441,1439, - 1,0,0,0,1442,1444,1,0,0,0,1443,1441,1,0,0,0,1444,1445,5,250,0,0, - 1445,1447,1,0,0,0,1446,1434,1,0,0,0,1446,1447,1,0,0,0,1447,165,1, - 0,0,0,1448,1449,5,163,0,0,1449,1450,5,13,0,0,1450,167,1,0,0,0,1451, - 1452,5,163,0,0,1452,1453,5,85,0,0,1453,1454,3,190,95,0,1454,169, - 1,0,0,0,1455,1456,5,93,0,0,1456,1457,5,66,0,0,1457,171,1,0,0,0,1458, - 1459,5,93,0,0,1459,1460,5,133,0,0,1460,1461,5,66,0,0,1461,173,1, - 0,0,0,1462,1463,3,352,176,0,1463,175,1,0,0,0,1464,1465,3,352,176, - 0,1465,177,1,0,0,0,1466,1467,3,352,176,0,1467,179,1,0,0,0,1468,1469, - 3,352,176,0,1469,181,1,0,0,0,1470,1471,3,352,176,0,1471,183,1,0, - 0,0,1472,1473,3,352,176,0,1473,185,1,0,0,0,1474,1479,3,356,178,0, - 1475,1476,5,245,0,0,1476,1478,3,356,178,0,1477,1475,1,0,0,0,1478, - 1481,1,0,0,0,1479,1477,1,0,0,0,1479,1480,1,0,0,0,1480,187,1,0,0, - 0,1481,1479,1,0,0,0,1482,1487,3,356,178,0,1483,1484,5,245,0,0,1484, - 1486,3,356,178,0,1485,1483,1,0,0,0,1486,1489,1,0,0,0,1487,1485,1, - 0,0,0,1487,1488,1,0,0,0,1488,189,1,0,0,0,1489,1487,1,0,0,0,1490, - 1493,3,360,180,0,1491,1493,3,352,176,0,1492,1490,1,0,0,0,1492,1491, - 1,0,0,0,1493,191,1,0,0,0,1494,1497,3,352,176,0,1495,1497,4,96,0, - 0,1496,1494,1,0,0,0,1496,1495,1,0,0,0,1497,193,1,0,0,0,1498,1501, - 3,186,93,0,1499,1501,3,188,94,0,1500,1498,1,0,0,0,1500,1499,1,0, - 0,0,1501,195,1,0,0,0,1502,1503,5,21,0,0,1503,1504,5,26,0,0,1504, - 1506,3,292,146,0,1505,1502,1,0,0,0,1505,1506,1,0,0,0,1506,1509,1, - 0,0,0,1507,1508,5,34,0,0,1508,1510,3,314,157,0,1509,1507,1,0,0,0, - 1509,1510,1,0,0,0,1510,1514,1,0,0,0,1511,1512,5,169,0,0,1512,1513, - 5,79,0,0,1513,1515,3,254,127,0,1514,1511,1,0,0,0,1514,1515,1,0,0, - 0,1515,1519,1,0,0,0,1516,1517,5,218,0,0,1517,1518,5,176,0,0,1518, - 1520,3,248,124,0,1519,1516,1,0,0,0,1519,1520,1,0,0,0,1520,1524,1, - 0,0,0,1521,1522,5,23,0,0,1522,1523,5,9,0,0,1523,1525,3,230,115,0, - 1524,1521,1,0,0,0,1524,1525,1,0,0,0,1525,1528,1,0,0,0,1526,1527, - 5,24,0,0,1527,1529,3,314,157,0,1528,1526,1,0,0,0,1528,1529,1,0,0, - 0,1529,1540,1,0,0,0,1530,1531,5,30,0,0,1531,1532,5,94,0,0,1532,1537, - 3,352,176,0,1533,1534,5,218,0,0,1534,1535,5,152,0,0,1535,1536,5, - 233,0,0,1536,1538,5,261,0,0,1537,1533,1,0,0,0,1537,1538,1,0,0,0, - 1538,1541,1,0,0,0,1539,1541,5,199,0,0,1540,1530,1,0,0,0,1540,1539, - 1,0,0,0,1540,1541,1,0,0,0,1541,1544,1,0,0,0,1542,1543,5,25,0,0,1543, - 1545,3,248,124,0,1544,1542,1,0,0,0,1544,1545,1,0,0,0,1545,197,1, - 0,0,0,1546,1551,3,200,100,0,1547,1548,5,247,0,0,1548,1550,3,200, - 100,0,1549,1547,1,0,0,0,1550,1553,1,0,0,0,1551,1549,1,0,0,0,1551, - 1552,1,0,0,0,1552,199,1,0,0,0,1553,1551,1,0,0,0,1554,1555,3,352, - 176,0,1555,1556,5,233,0,0,1556,1557,3,304,152,0,1557,201,1,0,0,0, - 1558,1559,5,249,0,0,1559,1562,3,182,91,0,1560,1561,5,34,0,0,1561, - 1563,3,314,157,0,1562,1560,1,0,0,0,1562,1563,1,0,0,0,1563,1572,1, - 0,0,0,1564,1565,5,247,0,0,1565,1568,3,182,91,0,1566,1567,5,34,0, - 0,1567,1569,3,314,157,0,1568,1566,1,0,0,0,1568,1569,1,0,0,0,1569, - 1571,1,0,0,0,1570,1564,1,0,0,0,1571,1574,1,0,0,0,1572,1570,1,0,0, - 0,1572,1573,1,0,0,0,1573,1575,1,0,0,0,1574,1572,1,0,0,0,1575,1576, - 5,250,0,0,1576,203,1,0,0,0,1577,1579,3,206,103,0,1578,1577,1,0,0, - 0,1578,1579,1,0,0,0,1579,1580,1,0,0,0,1580,1581,3,258,129,0,1581, - 205,1,0,0,0,1582,1583,5,218,0,0,1583,1588,3,274,137,0,1584,1585, - 5,247,0,0,1585,1587,3,274,137,0,1586,1584,1,0,0,0,1587,1590,1,0, - 0,0,1588,1586,1,0,0,0,1588,1589,1,0,0,0,1589,207,1,0,0,0,1590,1588, - 1,0,0,0,1591,1592,5,151,0,0,1592,1593,5,110,0,0,1593,1595,3,292, - 146,0,1594,1596,5,53,0,0,1595,1594,1,0,0,0,1595,1596,1,0,0,0,1596, - 1600,1,0,0,0,1597,1601,5,227,0,0,1598,1599,5,247,0,0,1599,1601,5, - 227,0,0,1600,1597,1,0,0,0,1600,1598,1,0,0,0,1600,1601,1,0,0,0,1601, - 1605,1,0,0,0,1602,1606,5,228,0,0,1603,1604,5,247,0,0,1604,1606,5, - 228,0,0,1605,1602,1,0,0,0,1605,1603,1,0,0,0,1605,1606,1,0,0,0,1606, - 1619,1,0,0,0,1607,1608,5,247,0,0,1608,1611,3,210,105,0,1609,1611, - 3,210,105,0,1610,1607,1,0,0,0,1610,1609,1,0,0,0,1611,1616,1,0,0, - 0,1612,1613,5,247,0,0,1613,1615,3,210,105,0,1614,1612,1,0,0,0,1615, - 1618,1,0,0,0,1616,1617,1,0,0,0,1616,1614,1,0,0,0,1617,1620,1,0,0, - 0,1618,1616,1,0,0,0,1619,1610,1,0,0,0,1619,1620,1,0,0,0,1620,209, - 1,0,0,0,1621,1622,5,81,0,0,1622,1623,5,110,0,0,1623,1624,3,292,146, - 0,1624,1625,5,226,0,0,1625,1626,3,186,93,0,1626,1628,3,292,146,0, - 1627,1629,5,53,0,0,1628,1627,1,0,0,0,1628,1629,1,0,0,0,1629,1631, - 1,0,0,0,1630,1632,5,227,0,0,1631,1630,1,0,0,0,1631,1632,1,0,0,0, - 1632,1634,1,0,0,0,1633,1635,5,228,0,0,1634,1633,1,0,0,0,1634,1635, - 1,0,0,0,1635,211,1,0,0,0,1636,1637,3,192,96,0,1637,1640,3,328,164, - 0,1638,1639,5,34,0,0,1639,1641,3,314,157,0,1640,1638,1,0,0,0,1640, - 1641,1,0,0,0,1641,213,1,0,0,0,1642,1643,3,182,91,0,1643,1646,3,328, - 164,0,1644,1645,5,34,0,0,1645,1647,3,314,157,0,1646,1644,1,0,0,0, - 1646,1647,1,0,0,0,1647,215,1,0,0,0,1648,1649,3,218,109,0,1649,217, - 1,0,0,0,1650,1651,3,182,91,0,1651,1659,3,328,164,0,1652,1656,3,224, - 112,0,1653,1655,3,224,112,0,1654,1653,1,0,0,0,1655,1658,1,0,0,0, - 1656,1657,1,0,0,0,1656,1654,1,0,0,0,1657,1660,1,0,0,0,1658,1656, - 1,0,0,0,1659,1652,1,0,0,0,1659,1660,1,0,0,0,1660,1663,1,0,0,0,1661, - 1662,5,34,0,0,1662,1664,3,314,157,0,1663,1661,1,0,0,0,1663,1664, - 1,0,0,0,1664,1667,1,0,0,0,1665,1666,5,151,0,0,1666,1668,5,110,0, - 0,1667,1665,1,0,0,0,1667,1668,1,0,0,0,1668,219,1,0,0,0,1669,1671, - 3,212,106,0,1670,1669,1,0,0,0,1670,1671,1,0,0,0,1671,1679,1,0,0, - 0,1672,1676,3,224,112,0,1673,1675,3,224,112,0,1674,1673,1,0,0,0, - 1675,1678,1,0,0,0,1676,1677,1,0,0,0,1676,1674,1,0,0,0,1677,1680, - 1,0,0,0,1678,1676,1,0,0,0,1679,1672,1,0,0,0,1679,1680,1,0,0,0,1680, - 221,1,0,0,0,1681,1682,3,182,91,0,1682,1685,3,328,164,0,1683,1684, - 5,34,0,0,1684,1686,3,314,157,0,1685,1683,1,0,0,0,1685,1686,1,0,0, - 0,1686,1694,1,0,0,0,1687,1691,3,224,112,0,1688,1690,3,224,112,0, - 1689,1688,1,0,0,0,1690,1693,1,0,0,0,1691,1692,1,0,0,0,1691,1689, - 1,0,0,0,1692,1695,1,0,0,0,1693,1691,1,0,0,0,1694,1687,1,0,0,0,1694, - 1695,1,0,0,0,1695,223,1,0,0,0,1696,1698,5,133,0,0,1697,1696,1,0, - 0,0,1697,1698,1,0,0,0,1698,1699,1,0,0,0,1699,1702,5,134,0,0,1700, - 1702,3,226,113,0,1701,1697,1,0,0,0,1701,1700,1,0,0,0,1702,225,1, - 0,0,0,1703,1704,5,60,0,0,1704,1712,3,304,152,0,1705,1706,5,35,0, - 0,1706,1712,3,304,152,0,1707,1708,5,51,0,0,1708,1712,3,304,152,0, - 1709,1710,5,16,0,0,1710,1712,3,358,179,0,1711,1703,1,0,0,0,1711, - 1705,1,0,0,0,1711,1707,1,0,0,0,1711,1709,1,0,0,0,1712,227,1,0,0, - 0,1713,1714,7,10,0,0,1714,229,1,0,0,0,1715,1716,7,11,0,0,1716,231, - 1,0,0,0,1717,1722,3,234,117,0,1718,1719,5,247,0,0,1719,1721,3,234, - 117,0,1720,1718,1,0,0,0,1721,1724,1,0,0,0,1722,1723,1,0,0,0,1722, - 1720,1,0,0,0,1723,1727,1,0,0,0,1724,1722,1,0,0,0,1725,1726,5,247, - 0,0,1726,1728,3,236,118,0,1727,1725,1,0,0,0,1727,1728,1,0,0,0,1728, - 1731,1,0,0,0,1729,1731,3,236,118,0,1730,1717,1,0,0,0,1730,1729,1, - 0,0,0,1731,233,1,0,0,0,1732,1734,5,89,0,0,1733,1735,3,292,146,0, - 1734,1733,1,0,0,0,1734,1735,1,0,0,0,1735,1736,1,0,0,0,1736,1737, - 5,147,0,0,1737,1738,3,358,179,0,1738,235,1,0,0,0,1739,1741,5,155, - 0,0,1740,1742,3,292,146,0,1741,1740,1,0,0,0,1741,1742,1,0,0,0,1742, - 1743,1,0,0,0,1743,1744,5,249,0,0,1744,1745,5,146,0,0,1745,1751,3, - 238,119,0,1746,1747,5,247,0,0,1747,1748,5,146,0,0,1748,1750,3,238, - 119,0,1749,1746,1,0,0,0,1750,1753,1,0,0,0,1751,1752,1,0,0,0,1751, - 1749,1,0,0,0,1752,1754,1,0,0,0,1753,1751,1,0,0,0,1754,1755,5,250, - 0,0,1755,237,1,0,0,0,1756,1757,5,212,0,0,1757,1758,3,244,122,0,1758, - 1759,3,304,152,0,1759,1772,1,0,0,0,1760,1761,3,304,152,0,1761,1762, - 3,242,121,0,1762,1764,1,0,0,0,1763,1760,1,0,0,0,1763,1764,1,0,0, - 0,1764,1765,1,0,0,0,1765,1769,5,213,0,0,1766,1767,3,242,121,0,1767, - 1768,3,304,152,0,1768,1770,1,0,0,0,1769,1766,1,0,0,0,1769,1770,1, - 0,0,0,1770,1772,1,0,0,0,1771,1756,1,0,0,0,1771,1763,1,0,0,0,1772, - 239,1,0,0,0,1773,1774,5,30,0,0,1774,1775,5,94,0,0,1775,1780,3,356, - 178,0,1776,1777,5,218,0,0,1777,1778,5,152,0,0,1778,1779,5,233,0, - 0,1779,1781,3,358,179,0,1780,1776,1,0,0,0,1780,1781,1,0,0,0,1781, - 1784,1,0,0,0,1782,1784,5,199,0,0,1783,1773,1,0,0,0,1783,1782,1,0, - 0,0,1784,241,1,0,0,0,1785,1791,1,0,0,0,1786,1791,5,235,0,0,1787, - 1791,5,236,0,0,1788,1791,5,237,0,0,1789,1791,5,238,0,0,1790,1785, - 1,0,0,0,1790,1786,1,0,0,0,1790,1787,1,0,0,0,1790,1788,1,0,0,0,1790, - 1789,1,0,0,0,1791,243,1,0,0,0,1792,1801,5,233,0,0,1793,1801,5,234, - 0,0,1794,1801,5,115,0,0,1795,1801,5,165,0,0,1796,1801,5,164,0,0, - 1797,1801,5,15,0,0,1798,1801,5,94,0,0,1799,1801,3,242,121,0,1800, - 1792,1,0,0,0,1800,1793,1,0,0,0,1800,1794,1,0,0,0,1800,1795,1,0,0, - 0,1800,1796,1,0,0,0,1800,1797,1,0,0,0,1800,1798,1,0,0,0,1800,1799, - 1,0,0,0,1801,245,1,0,0,0,1802,1803,5,115,0,0,1803,1806,3,352,176, - 0,1804,1805,7,12,0,0,1805,1807,5,154,0,0,1806,1804,1,0,0,0,1806, - 1807,1,0,0,0,1807,247,1,0,0,0,1808,1809,5,249,0,0,1809,1814,3,256, - 128,0,1810,1811,5,247,0,0,1811,1813,3,256,128,0,1812,1810,1,0,0, - 0,1813,1816,1,0,0,0,1814,1812,1,0,0,0,1814,1815,1,0,0,0,1815,1817, - 1,0,0,0,1816,1814,1,0,0,0,1817,1818,5,250,0,0,1818,249,1,0,0,0,1819, - 1820,5,249,0,0,1820,1825,3,212,106,0,1821,1822,5,247,0,0,1822,1824, - 3,212,106,0,1823,1821,1,0,0,0,1824,1827,1,0,0,0,1825,1826,1,0,0, - 0,1825,1823,1,0,0,0,1826,1828,1,0,0,0,1827,1825,1,0,0,0,1828,1829, - 5,250,0,0,1829,251,1,0,0,0,1830,1835,3,304,152,0,1831,1832,5,247, - 0,0,1832,1834,3,304,152,0,1833,1831,1,0,0,0,1834,1837,1,0,0,0,1835, - 1833,1,0,0,0,1835,1836,1,0,0,0,1836,253,1,0,0,0,1837,1835,1,0,0, - 0,1838,1848,5,52,0,0,1839,1840,5,71,0,0,1840,1841,5,193,0,0,1841, - 1842,5,26,0,0,1842,1846,3,314,157,0,1843,1844,5,63,0,0,1844,1845, - 5,26,0,0,1845,1847,3,314,157,0,1846,1843,1,0,0,0,1846,1847,1,0,0, - 0,1847,1849,1,0,0,0,1848,1839,1,0,0,0,1848,1849,1,0,0,0,1849,1854, - 1,0,0,0,1850,1851,5,117,0,0,1851,1852,5,193,0,0,1852,1853,5,26,0, - 0,1853,1855,3,314,157,0,1854,1850,1,0,0,0,1854,1855,1,0,0,0,1855, - 255,1,0,0,0,1856,1859,3,356,178,0,1857,1858,5,233,0,0,1858,1860, - 3,304,152,0,1859,1857,1,0,0,0,1859,1860,1,0,0,0,1860,257,1,0,0,0, - 1861,1872,3,260,130,0,1862,1863,5,140,0,0,1863,1864,5,26,0,0,1864, - 1869,3,264,132,0,1865,1866,5,247,0,0,1866,1868,3,264,132,0,1867, - 1865,1,0,0,0,1868,1871,1,0,0,0,1869,1867,1,0,0,0,1869,1870,1,0,0, - 0,1870,1873,1,0,0,0,1871,1869,1,0,0,0,1872,1862,1,0,0,0,1872,1873, - 1,0,0,0,1873,1880,1,0,0,0,1874,1875,5,116,0,0,1875,1878,3,304,152, - 0,1876,1877,5,136,0,0,1877,1879,5,261,0,0,1878,1876,1,0,0,0,1878, - 1879,1,0,0,0,1879,1881,1,0,0,0,1880,1874,1,0,0,0,1880,1881,1,0,0, - 0,1881,259,1,0,0,0,1882,1883,6,130,-1,0,1883,1884,3,262,131,0,1884, - 1899,1,0,0,0,1885,1886,10,2,0,0,1886,1888,5,100,0,0,1887,1889,3, - 276,138,0,1888,1887,1,0,0,0,1888,1889,1,0,0,0,1889,1890,1,0,0,0, - 1890,1898,3,260,130,3,1891,1892,10,1,0,0,1892,1894,7,13,0,0,1893, - 1895,3,276,138,0,1894,1893,1,0,0,0,1894,1895,1,0,0,0,1895,1896,1, - 0,0,0,1896,1898,3,260,130,2,1897,1885,1,0,0,0,1897,1891,1,0,0,0, - 1898,1901,1,0,0,0,1899,1897,1,0,0,0,1899,1900,1,0,0,0,1900,261,1, - 0,0,0,1901,1899,1,0,0,0,1902,1919,3,266,133,0,1903,1904,5,190,0, - 0,1904,1919,3,186,93,0,1905,1906,5,213,0,0,1906,1911,3,304,152,0, - 1907,1908,5,247,0,0,1908,1910,3,304,152,0,1909,1907,1,0,0,0,1910, - 1913,1,0,0,0,1911,1909,1,0,0,0,1911,1912,1,0,0,0,1912,1919,1,0,0, - 0,1913,1911,1,0,0,0,1914,1915,5,249,0,0,1915,1916,3,258,129,0,1916, - 1917,5,250,0,0,1917,1919,1,0,0,0,1918,1902,1,0,0,0,1918,1903,1,0, - 0,0,1918,1905,1,0,0,0,1918,1914,1,0,0,0,1919,263,1,0,0,0,1920,1922, - 3,302,151,0,1921,1923,7,14,0,0,1922,1921,1,0,0,0,1922,1923,1,0,0, - 0,1923,1926,1,0,0,0,1924,1925,5,135,0,0,1925,1927,7,15,0,0,1926, - 1924,1,0,0,0,1926,1927,1,0,0,0,1927,265,1,0,0,0,1928,1930,5,175, - 0,0,1929,1931,3,276,138,0,1930,1929,1,0,0,0,1930,1931,1,0,0,0,1931, - 1933,1,0,0,0,1932,1934,5,185,0,0,1933,1932,1,0,0,0,1933,1934,1,0, - 0,0,1934,1935,1,0,0,0,1935,1940,3,278,139,0,1936,1937,5,247,0,0, - 1937,1939,3,278,139,0,1938,1936,1,0,0,0,1939,1942,1,0,0,0,1940,1938, - 1,0,0,0,1940,1941,1,0,0,0,1941,1952,1,0,0,0,1942,1940,1,0,0,0,1943, - 1944,5,82,0,0,1944,1949,3,280,140,0,1945,1946,5,247,0,0,1946,1948, - 3,280,140,0,1947,1945,1,0,0,0,1948,1951,1,0,0,0,1949,1947,1,0,0, - 0,1949,1950,1,0,0,0,1950,1953,1,0,0,0,1951,1949,1,0,0,0,1952,1943, - 1,0,0,0,1952,1953,1,0,0,0,1953,1956,1,0,0,0,1954,1955,5,217,0,0, - 1955,1957,3,306,153,0,1956,1954,1,0,0,0,1956,1957,1,0,0,0,1957,1961, - 1,0,0,0,1958,1959,5,87,0,0,1959,1960,5,26,0,0,1960,1962,3,268,134, - 0,1961,1958,1,0,0,0,1961,1962,1,0,0,0,1962,1965,1,0,0,0,1963,1964, - 5,90,0,0,1964,1966,3,306,153,0,1965,1963,1,0,0,0,1965,1966,1,0,0, - 0,1966,267,1,0,0,0,1967,1969,3,276,138,0,1968,1967,1,0,0,0,1968, - 1969,1,0,0,0,1969,1970,1,0,0,0,1970,1975,3,270,135,0,1971,1972,5, - 247,0,0,1972,1974,3,270,135,0,1973,1971,1,0,0,0,1974,1977,1,0,0, - 0,1975,1973,1,0,0,0,1975,1976,1,0,0,0,1976,269,1,0,0,0,1977,1975, - 1,0,0,0,1978,1979,3,272,136,0,1979,271,1,0,0,0,1980,1989,5,249,0, - 0,1981,1986,3,302,151,0,1982,1983,5,247,0,0,1983,1985,3,302,151, - 0,1984,1982,1,0,0,0,1985,1988,1,0,0,0,1986,1984,1,0,0,0,1986,1987, - 1,0,0,0,1987,1990,1,0,0,0,1988,1986,1,0,0,0,1989,1981,1,0,0,0,1989, - 1990,1,0,0,0,1990,1991,1,0,0,0,1991,1994,5,250,0,0,1992,1994,3,302, - 151,0,1993,1980,1,0,0,0,1993,1992,1,0,0,0,1994,273,1,0,0,0,1995, - 1997,3,356,178,0,1996,1998,3,292,146,0,1997,1996,1,0,0,0,1997,1998, - 1,0,0,0,1998,1999,1,0,0,0,1999,2000,5,9,0,0,2000,2001,3,296,148, - 0,2001,275,1,0,0,0,2002,2003,7,16,0,0,2003,277,1,0,0,0,2004,2009, - 3,302,151,0,2005,2007,5,9,0,0,2006,2005,1,0,0,0,2006,2007,1,0,0, - 0,2007,2008,1,0,0,0,2008,2010,3,356,178,0,2009,2006,1,0,0,0,2009, - 2010,1,0,0,0,2010,2017,1,0,0,0,2011,2012,3,352,176,0,2012,2013,5, - 245,0,0,2013,2014,5,241,0,0,2014,2017,1,0,0,0,2015,2017,5,241,0, - 0,2016,2004,1,0,0,0,2016,2011,1,0,0,0,2016,2015,1,0,0,0,2017,279, - 1,0,0,0,2018,2019,6,140,-1,0,2019,2020,3,286,143,0,2020,2034,1,0, - 0,0,2021,2030,10,2,0,0,2022,2023,5,38,0,0,2023,2024,5,109,0,0,2024, - 2031,3,286,143,0,2025,2026,3,282,141,0,2026,2027,5,109,0,0,2027, - 2028,3,280,140,0,2028,2029,3,284,142,0,2029,2031,1,0,0,0,2030,2022, - 1,0,0,0,2030,2025,1,0,0,0,2031,2033,1,0,0,0,2032,2021,1,0,0,0,2033, - 2036,1,0,0,0,2034,2032,1,0,0,0,2034,2035,1,0,0,0,2035,281,1,0,0, - 0,2036,2034,1,0,0,0,2037,2039,5,97,0,0,2038,2037,1,0,0,0,2038,2039, - 1,0,0,0,2039,2069,1,0,0,0,2040,2042,5,114,0,0,2041,2043,5,97,0,0, - 2042,2041,1,0,0,0,2042,2043,1,0,0,0,2043,2069,1,0,0,0,2044,2046, - 5,166,0,0,2045,2047,5,97,0,0,2046,2045,1,0,0,0,2046,2047,1,0,0,0, - 2047,2069,1,0,0,0,2048,2050,5,114,0,0,2049,2051,5,142,0,0,2050,2049, - 1,0,0,0,2050,2051,1,0,0,0,2051,2069,1,0,0,0,2052,2054,5,166,0,0, - 2053,2055,5,142,0,0,2054,2053,1,0,0,0,2054,2055,1,0,0,0,2055,2069, - 1,0,0,0,2056,2058,5,83,0,0,2057,2059,5,142,0,0,2058,2057,1,0,0,0, - 2058,2059,1,0,0,0,2059,2069,1,0,0,0,2060,2061,5,114,0,0,2061,2069, - 5,178,0,0,2062,2063,5,166,0,0,2063,2069,5,178,0,0,2064,2065,5,114, - 0,0,2065,2069,5,7,0,0,2066,2067,5,166,0,0,2067,2069,5,7,0,0,2068, - 2038,1,0,0,0,2068,2040,1,0,0,0,2068,2044,1,0,0,0,2068,2048,1,0,0, - 0,2068,2052,1,0,0,0,2068,2056,1,0,0,0,2068,2060,1,0,0,0,2068,2062, - 1,0,0,0,2068,2064,1,0,0,0,2068,2066,1,0,0,0,2069,283,1,0,0,0,2070, - 2071,5,137,0,0,2071,2085,3,306,153,0,2072,2073,5,207,0,0,2073,2074, - 5,249,0,0,2074,2079,3,356,178,0,2075,2076,5,247,0,0,2076,2078,3, - 356,178,0,2077,2075,1,0,0,0,2078,2081,1,0,0,0,2079,2077,1,0,0,0, - 2079,2080,1,0,0,0,2080,2082,1,0,0,0,2081,2079,1,0,0,0,2082,2083, - 5,250,0,0,2083,2085,1,0,0,0,2084,2070,1,0,0,0,2084,2072,1,0,0,0, - 2085,285,1,0,0,0,2086,2099,3,290,145,0,2087,2088,5,192,0,0,2088, - 2089,3,288,144,0,2089,2090,5,249,0,0,2090,2091,3,304,152,0,2091, - 2097,5,250,0,0,2092,2093,5,158,0,0,2093,2094,5,249,0,0,2094,2095, - 3,304,152,0,2095,2096,5,250,0,0,2096,2098,1,0,0,0,2097,2092,1,0, - 0,0,2097,2098,1,0,0,0,2098,2100,1,0,0,0,2099,2087,1,0,0,0,2099,2100, - 1,0,0,0,2100,287,1,0,0,0,2101,2102,7,17,0,0,2102,289,1,0,0,0,2103, - 2111,3,294,147,0,2104,2106,5,9,0,0,2105,2104,1,0,0,0,2105,2106,1, - 0,0,0,2106,2107,1,0,0,0,2107,2109,3,356,178,0,2108,2110,3,292,146, - 0,2109,2108,1,0,0,0,2109,2110,1,0,0,0,2110,2112,1,0,0,0,2111,2105, - 1,0,0,0,2111,2112,1,0,0,0,2112,291,1,0,0,0,2113,2114,5,249,0,0,2114, - 2119,3,192,96,0,2115,2116,5,247,0,0,2116,2118,3,192,96,0,2117,2115, - 1,0,0,0,2118,2121,1,0,0,0,2119,2117,1,0,0,0,2119,2120,1,0,0,0,2120, - 2122,1,0,0,0,2121,2119,1,0,0,0,2122,2123,5,250,0,0,2123,293,1,0, - 0,0,2124,2132,3,194,97,0,2125,2127,5,113,0,0,2126,2125,1,0,0,0,2126, - 2127,1,0,0,0,2127,2128,1,0,0,0,2128,2132,3,296,148,0,2129,2132,3, - 298,149,0,2130,2132,3,300,150,0,2131,2124,1,0,0,0,2131,2126,1,0, - 0,0,2131,2129,1,0,0,0,2131,2130,1,0,0,0,2132,295,1,0,0,0,2133,2134, - 5,249,0,0,2134,2135,3,204,102,0,2135,2136,5,250,0,0,2136,297,1,0, - 0,0,2137,2138,5,203,0,0,2138,2139,5,249,0,0,2139,2144,3,304,152, - 0,2140,2141,5,247,0,0,2141,2143,3,304,152,0,2142,2140,1,0,0,0,2143, - 2146,1,0,0,0,2144,2142,1,0,0,0,2144,2145,1,0,0,0,2145,2147,1,0,0, - 0,2146,2144,1,0,0,0,2147,2150,5,250,0,0,2148,2149,5,218,0,0,2149, - 2151,5,141,0,0,2150,2148,1,0,0,0,2150,2151,1,0,0,0,2151,299,1,0, - 0,0,2152,2153,5,249,0,0,2153,2154,3,280,140,0,2154,2155,5,250,0, - 0,2155,301,1,0,0,0,2156,2159,3,192,96,0,2157,2159,3,304,152,0,2158, - 2156,1,0,0,0,2158,2157,1,0,0,0,2159,303,1,0,0,0,2160,2161,3,306, - 153,0,2161,305,1,0,0,0,2162,2163,6,153,-1,0,2163,2165,3,310,155, - 0,2164,2166,3,308,154,0,2165,2164,1,0,0,0,2165,2166,1,0,0,0,2166, - 2170,1,0,0,0,2167,2168,5,133,0,0,2168,2170,3,306,153,3,2169,2162, - 1,0,0,0,2169,2167,1,0,0,0,2170,2179,1,0,0,0,2171,2172,10,2,0,0,2172, - 2173,5,5,0,0,2173,2178,3,306,153,3,2174,2175,10,1,0,0,2175,2176, - 5,139,0,0,2176,2178,3,306,153,2,2177,2171,1,0,0,0,2177,2174,1,0, - 0,0,2178,2181,1,0,0,0,2179,2177,1,0,0,0,2179,2180,1,0,0,0,2180,307, - 1,0,0,0,2181,2179,1,0,0,0,2182,2183,3,316,158,0,2183,2184,3,310, - 155,0,2184,2241,1,0,0,0,2185,2186,3,316,158,0,2186,2187,3,318,159, - 0,2187,2188,3,296,148,0,2188,2241,1,0,0,0,2189,2191,5,133,0,0,2190, - 2189,1,0,0,0,2190,2191,1,0,0,0,2191,2192,1,0,0,0,2192,2193,5,15, - 0,0,2193,2194,3,310,155,0,2194,2195,5,5,0,0,2195,2196,3,310,155, - 0,2196,2241,1,0,0,0,2197,2199,5,133,0,0,2198,2197,1,0,0,0,2198,2199, - 1,0,0,0,2199,2200,1,0,0,0,2200,2201,5,94,0,0,2201,2202,5,249,0,0, - 2202,2207,3,304,152,0,2203,2204,5,247,0,0,2204,2206,3,304,152,0, - 2205,2203,1,0,0,0,2206,2209,1,0,0,0,2207,2205,1,0,0,0,2207,2208, - 1,0,0,0,2208,2210,1,0,0,0,2209,2207,1,0,0,0,2210,2211,5,250,0,0, - 2211,2241,1,0,0,0,2212,2214,5,133,0,0,2213,2212,1,0,0,0,2213,2214, - 1,0,0,0,2214,2215,1,0,0,0,2215,2216,5,94,0,0,2216,2241,3,296,148, - 0,2217,2219,5,133,0,0,2218,2217,1,0,0,0,2218,2219,1,0,0,0,2219,2220, - 1,0,0,0,2220,2221,7,18,0,0,2221,2224,3,310,155,0,2222,2223,5,62, - 0,0,2223,2225,3,310,155,0,2224,2222,1,0,0,0,2224,2225,1,0,0,0,2225, - 2241,1,0,0,0,2226,2227,7,19,0,0,2227,2241,3,310,155,0,2228,2230, - 5,108,0,0,2229,2231,5,133,0,0,2230,2229,1,0,0,0,2230,2231,1,0,0, - 0,2231,2232,1,0,0,0,2232,2241,7,20,0,0,2233,2235,5,108,0,0,2234, - 2236,5,133,0,0,2235,2234,1,0,0,0,2235,2236,1,0,0,0,2236,2237,1,0, - 0,0,2237,2238,5,57,0,0,2238,2239,5,82,0,0,2239,2241,3,310,155,0, - 2240,2182,1,0,0,0,2240,2185,1,0,0,0,2240,2190,1,0,0,0,2240,2198, - 1,0,0,0,2240,2213,1,0,0,0,2240,2218,1,0,0,0,2240,2226,1,0,0,0,2240, - 2228,1,0,0,0,2240,2233,1,0,0,0,2241,309,1,0,0,0,2242,2243,6,155, - -1,0,2243,2247,3,312,156,0,2244,2245,7,21,0,0,2245,2247,3,310,155, - 4,2246,2242,1,0,0,0,2246,2244,1,0,0,0,2247,2259,1,0,0,0,2248,2249, - 10,3,0,0,2249,2250,7,22,0,0,2250,2258,3,310,155,4,2251,2252,10,2, - 0,0,2252,2253,7,21,0,0,2253,2258,3,310,155,3,2254,2255,10,1,0,0, - 2255,2256,5,244,0,0,2256,2258,3,310,155,2,2257,2248,1,0,0,0,2257, - 2251,1,0,0,0,2257,2254,1,0,0,0,2258,2261,1,0,0,0,2259,2257,1,0,0, - 0,2259,2260,1,0,0,0,2260,311,1,0,0,0,2261,2259,1,0,0,0,2262,2263, - 6,156,-1,0,2263,2509,5,134,0,0,2264,2509,3,322,161,0,2265,2266,3, - 356,178,0,2266,2267,3,314,157,0,2267,2509,1,0,0,0,2268,2269,5,270, - 0,0,2269,2509,3,314,157,0,2270,2509,3,358,179,0,2271,2509,3,320, - 160,0,2272,2509,3,314,157,0,2273,2509,5,260,0,0,2274,2509,5,256, - 0,0,2275,2276,5,149,0,0,2276,2277,5,249,0,0,2277,2278,3,310,155, - 0,2278,2279,5,94,0,0,2279,2280,3,310,155,0,2280,2281,5,250,0,0,2281, - 2509,1,0,0,0,2282,2283,5,249,0,0,2283,2286,3,304,152,0,2284,2285, - 5,9,0,0,2285,2287,3,328,164,0,2286,2284,1,0,0,0,2286,2287,1,0,0, - 0,2287,2296,1,0,0,0,2288,2289,5,247,0,0,2289,2292,3,304,152,0,2290, - 2291,5,9,0,0,2291,2293,3,328,164,0,2292,2290,1,0,0,0,2292,2293,1, - 0,0,0,2293,2295,1,0,0,0,2294,2288,1,0,0,0,2295,2298,1,0,0,0,2296, - 2297,1,0,0,0,2296,2294,1,0,0,0,2297,2299,1,0,0,0,2298,2296,1,0,0, - 0,2299,2300,5,250,0,0,2300,2509,1,0,0,0,2301,2302,5,169,0,0,2302, - 2303,5,249,0,0,2303,2308,3,304,152,0,2304,2305,5,247,0,0,2305,2307, - 3,304,152,0,2306,2304,1,0,0,0,2307,2310,1,0,0,0,2308,2306,1,0,0, - 0,2308,2309,1,0,0,0,2309,2311,1,0,0,0,2310,2308,1,0,0,0,2311,2312, - 5,250,0,0,2312,2509,1,0,0,0,2313,2314,3,190,95,0,2314,2315,5,249, - 0,0,2315,2316,5,241,0,0,2316,2318,5,250,0,0,2317,2319,3,336,168, - 0,2318,2317,1,0,0,0,2318,2319,1,0,0,0,2319,2321,1,0,0,0,2320,2322, - 3,338,169,0,2321,2320,1,0,0,0,2321,2322,1,0,0,0,2322,2509,1,0,0, - 0,2323,2324,3,190,95,0,2324,2336,5,249,0,0,2325,2327,3,276,138,0, - 2326,2325,1,0,0,0,2326,2327,1,0,0,0,2327,2328,1,0,0,0,2328,2333, - 3,304,152,0,2329,2330,5,247,0,0,2330,2332,3,304,152,0,2331,2329, - 1,0,0,0,2332,2335,1,0,0,0,2333,2331,1,0,0,0,2333,2334,1,0,0,0,2334, - 2337,1,0,0,0,2335,2333,1,0,0,0,2336,2326,1,0,0,0,2336,2337,1,0,0, - 0,2337,2348,1,0,0,0,2338,2339,5,140,0,0,2339,2340,5,26,0,0,2340, - 2345,3,264,132,0,2341,2342,5,247,0,0,2342,2344,3,264,132,0,2343, - 2341,1,0,0,0,2344,2347,1,0,0,0,2345,2343,1,0,0,0,2345,2346,1,0,0, - 0,2346,2349,1,0,0,0,2347,2345,1,0,0,0,2348,2338,1,0,0,0,2348,2349, - 1,0,0,0,2349,2350,1,0,0,0,2350,2352,5,250,0,0,2351,2353,3,336,168, - 0,2352,2351,1,0,0,0,2352,2353,1,0,0,0,2353,2355,1,0,0,0,2354,2356, - 3,338,169,0,2355,2354,1,0,0,0,2355,2356,1,0,0,0,2356,2509,1,0,0, - 0,2357,2358,3,356,178,0,2358,2359,5,257,0,0,2359,2360,3,304,152, - 0,2360,2509,1,0,0,0,2361,2370,5,249,0,0,2362,2367,3,356,178,0,2363, - 2364,5,247,0,0,2364,2366,3,356,178,0,2365,2363,1,0,0,0,2366,2369, - 1,0,0,0,2367,2365,1,0,0,0,2367,2368,1,0,0,0,2368,2371,1,0,0,0,2369, - 2367,1,0,0,0,2370,2362,1,0,0,0,2370,2371,1,0,0,0,2371,2372,1,0,0, - 0,2372,2373,5,250,0,0,2373,2374,5,257,0,0,2374,2509,3,304,152,0, - 2375,2376,5,249,0,0,2376,2377,3,204,102,0,2377,2378,5,250,0,0,2378, - 2509,1,0,0,0,2379,2380,5,66,0,0,2380,2381,5,249,0,0,2381,2382,3, - 204,102,0,2382,2383,5,250,0,0,2383,2509,1,0,0,0,2384,2385,5,28,0, - 0,2385,2387,3,310,155,0,2386,2388,3,334,167,0,2387,2386,1,0,0,0, - 2388,2389,1,0,0,0,2389,2387,1,0,0,0,2389,2390,1,0,0,0,2390,2393, - 1,0,0,0,2391,2392,5,59,0,0,2392,2394,3,304,152,0,2393,2391,1,0,0, - 0,2393,2394,1,0,0,0,2394,2395,1,0,0,0,2395,2396,5,61,0,0,2396,2509, - 1,0,0,0,2397,2399,5,28,0,0,2398,2400,3,334,167,0,2399,2398,1,0,0, - 0,2400,2401,1,0,0,0,2401,2399,1,0,0,0,2401,2402,1,0,0,0,2402,2405, - 1,0,0,0,2403,2404,5,59,0,0,2404,2406,3,304,152,0,2405,2403,1,0,0, - 0,2405,2406,1,0,0,0,2406,2407,1,0,0,0,2407,2408,5,61,0,0,2408,2509, - 1,0,0,0,2409,2410,5,29,0,0,2410,2411,5,249,0,0,2411,2412,3,304,152, - 0,2412,2413,5,9,0,0,2413,2414,3,328,164,0,2414,2415,5,250,0,0,2415, - 2509,1,0,0,0,2416,2417,5,197,0,0,2417,2418,5,249,0,0,2418,2419,3, - 304,152,0,2419,2420,5,9,0,0,2420,2421,3,328,164,0,2421,2422,5,250, - 0,0,2422,2509,1,0,0,0,2423,2424,5,8,0,0,2424,2433,5,251,0,0,2425, - 2430,3,304,152,0,2426,2427,5,247,0,0,2427,2429,3,304,152,0,2428, - 2426,1,0,0,0,2429,2432,1,0,0,0,2430,2428,1,0,0,0,2430,2431,1,0,0, - 0,2431,2434,1,0,0,0,2432,2430,1,0,0,0,2433,2425,1,0,0,0,2433,2434, - 1,0,0,0,2434,2435,1,0,0,0,2435,2509,5,252,0,0,2436,2509,3,356,178, - 0,2437,2509,5,40,0,0,2438,2442,5,42,0,0,2439,2440,5,249,0,0,2440, - 2441,5,261,0,0,2441,2443,5,250,0,0,2442,2439,1,0,0,0,2442,2443,1, - 0,0,0,2443,2509,1,0,0,0,2444,2448,5,43,0,0,2445,2446,5,249,0,0,2446, - 2447,5,261,0,0,2447,2449,5,250,0,0,2448,2445,1,0,0,0,2448,2449,1, - 0,0,0,2449,2509,1,0,0,0,2450,2454,5,119,0,0,2451,2452,5,249,0,0, - 2452,2453,5,261,0,0,2453,2455,5,250,0,0,2454,2451,1,0,0,0,2454,2455, - 1,0,0,0,2455,2509,1,0,0,0,2456,2460,5,120,0,0,2457,2458,5,249,0, - 0,2458,2459,5,261,0,0,2459,2461,5,250,0,0,2460,2457,1,0,0,0,2460, - 2461,1,0,0,0,2461,2509,1,0,0,0,2462,2509,5,44,0,0,2463,2509,5,41, - 0,0,2464,2465,5,186,0,0,2465,2466,5,249,0,0,2466,2467,3,310,155, - 0,2467,2468,5,82,0,0,2468,2471,3,310,155,0,2469,2470,5,78,0,0,2470, - 2472,3,310,155,0,2471,2469,1,0,0,0,2471,2472,1,0,0,0,2472,2473,1, - 0,0,0,2473,2474,5,250,0,0,2474,2509,1,0,0,0,2475,2476,5,132,0,0, - 2476,2477,5,249,0,0,2477,2480,3,310,155,0,2478,2479,5,247,0,0,2479, - 2481,3,326,163,0,2480,2478,1,0,0,0,2480,2481,1,0,0,0,2481,2482,1, - 0,0,0,2482,2483,5,250,0,0,2483,2509,1,0,0,0,2484,2485,5,68,0,0,2485, - 2486,5,249,0,0,2486,2487,3,356,178,0,2487,2488,5,82,0,0,2488,2489, - 3,310,155,0,2489,2490,5,250,0,0,2490,2509,1,0,0,0,2491,2492,5,249, - 0,0,2492,2493,3,304,152,0,2493,2494,5,250,0,0,2494,2509,1,0,0,0, - 2495,2496,5,88,0,0,2496,2505,5,249,0,0,2497,2502,3,352,176,0,2498, - 2499,5,247,0,0,2499,2501,3,352,176,0,2500,2498,1,0,0,0,2501,2504, - 1,0,0,0,2502,2500,1,0,0,0,2502,2503,1,0,0,0,2503,2506,1,0,0,0,2504, - 2502,1,0,0,0,2505,2497,1,0,0,0,2505,2506,1,0,0,0,2506,2507,1,0,0, - 0,2507,2509,5,250,0,0,2508,2262,1,0,0,0,2508,2264,1,0,0,0,2508,2265, - 1,0,0,0,2508,2268,1,0,0,0,2508,2270,1,0,0,0,2508,2271,1,0,0,0,2508, - 2272,1,0,0,0,2508,2273,1,0,0,0,2508,2274,1,0,0,0,2508,2275,1,0,0, - 0,2508,2282,1,0,0,0,2508,2301,1,0,0,0,2508,2313,1,0,0,0,2508,2323, - 1,0,0,0,2508,2357,1,0,0,0,2508,2361,1,0,0,0,2508,2375,1,0,0,0,2508, - 2379,1,0,0,0,2508,2384,1,0,0,0,2508,2397,1,0,0,0,2508,2409,1,0,0, - 0,2508,2416,1,0,0,0,2508,2423,1,0,0,0,2508,2436,1,0,0,0,2508,2437, - 1,0,0,0,2508,2438,1,0,0,0,2508,2444,1,0,0,0,2508,2450,1,0,0,0,2508, - 2456,1,0,0,0,2508,2462,1,0,0,0,2508,2463,1,0,0,0,2508,2464,1,0,0, - 0,2508,2475,1,0,0,0,2508,2484,1,0,0,0,2508,2491,1,0,0,0,2508,2495, - 1,0,0,0,2509,2520,1,0,0,0,2510,2511,10,15,0,0,2511,2512,5,251,0, - 0,2512,2513,3,310,155,0,2513,2514,5,252,0,0,2514,2519,1,0,0,0,2515, - 2516,10,13,0,0,2516,2517,5,245,0,0,2517,2519,3,356,178,0,2518,2510, - 1,0,0,0,2518,2515,1,0,0,0,2519,2522,1,0,0,0,2520,2518,1,0,0,0,2520, - 2521,1,0,0,0,2521,313,1,0,0,0,2522,2520,1,0,0,0,2523,2530,5,258, - 0,0,2524,2527,5,259,0,0,2525,2526,5,200,0,0,2526,2528,5,258,0,0, - 2527,2525,1,0,0,0,2527,2528,1,0,0,0,2528,2530,1,0,0,0,2529,2523, - 1,0,0,0,2529,2524,1,0,0,0,2530,315,1,0,0,0,2531,2532,7,23,0,0,2532, - 317,1,0,0,0,2533,2534,7,24,0,0,2534,319,1,0,0,0,2535,2536,7,25,0, - 0,2536,321,1,0,0,0,2537,2538,5,261,0,0,2538,2552,3,324,162,0,2539, - 2540,5,249,0,0,2540,2541,5,261,0,0,2541,2542,5,250,0,0,2542,2552, - 3,324,162,0,2543,2544,5,101,0,0,2544,2545,5,261,0,0,2545,2552,3, - 324,162,0,2546,2547,5,101,0,0,2547,2548,5,249,0,0,2548,2549,5,261, - 0,0,2549,2550,5,250,0,0,2550,2552,3,324,162,0,2551,2537,1,0,0,0, - 2551,2539,1,0,0,0,2551,2543,1,0,0,0,2551,2546,1,0,0,0,2552,323,1, - 0,0,0,2553,2554,7,26,0,0,2554,325,1,0,0,0,2555,2556,7,27,0,0,2556, - 327,1,0,0,0,2557,2558,6,164,-1,0,2558,2559,5,8,0,0,2559,2560,5,235, - 0,0,2560,2561,3,328,164,0,2561,2562,5,237,0,0,2562,2602,1,0,0,0, - 2563,2564,5,122,0,0,2564,2565,5,235,0,0,2565,2566,3,328,164,0,2566, - 2567,5,247,0,0,2567,2568,3,328,164,0,2568,2569,5,237,0,0,2569,2602, - 1,0,0,0,2570,2571,5,184,0,0,2571,2572,5,235,0,0,2572,2573,3,356, - 178,0,2573,2574,5,248,0,0,2574,2582,3,328,164,0,2575,2576,5,247, - 0,0,2576,2577,3,356,178,0,2577,2578,5,248,0,0,2578,2579,3,328,164, - 0,2579,2581,1,0,0,0,2580,2575,1,0,0,0,2581,2584,1,0,0,0,2582,2580, - 1,0,0,0,2582,2583,1,0,0,0,2583,2585,1,0,0,0,2584,2582,1,0,0,0,2585, - 2586,5,237,0,0,2586,2602,1,0,0,0,2587,2599,3,332,166,0,2588,2589, - 5,249,0,0,2589,2594,3,330,165,0,2590,2591,5,247,0,0,2591,2593,3, - 330,165,0,2592,2590,1,0,0,0,2593,2596,1,0,0,0,2594,2592,1,0,0,0, - 2594,2595,1,0,0,0,2595,2597,1,0,0,0,2596,2594,1,0,0,0,2597,2598, - 5,250,0,0,2598,2600,1,0,0,0,2599,2588,1,0,0,0,2599,2600,1,0,0,0, - 2600,2602,1,0,0,0,2601,2557,1,0,0,0,2601,2563,1,0,0,0,2601,2570, - 1,0,0,0,2601,2587,1,0,0,0,2602,2607,1,0,0,0,2603,2604,10,5,0,0,2604, - 2606,5,8,0,0,2605,2603,1,0,0,0,2606,2609,1,0,0,0,2607,2605,1,0,0, - 0,2607,2608,1,0,0,0,2608,329,1,0,0,0,2609,2607,1,0,0,0,2610,2613, - 5,261,0,0,2611,2613,3,328,164,0,2612,2610,1,0,0,0,2612,2611,1,0, - 0,0,2613,331,1,0,0,0,2614,2619,5,268,0,0,2615,2619,5,269,0,0,2616, - 2619,5,270,0,0,2617,2619,3,356,178,0,2618,2614,1,0,0,0,2618,2615, - 1,0,0,0,2618,2616,1,0,0,0,2618,2617,1,0,0,0,2619,333,1,0,0,0,2620, - 2621,5,216,0,0,2621,2622,3,304,152,0,2622,2623,5,194,0,0,2623,2624, - 3,304,152,0,2624,335,1,0,0,0,2625,2626,5,74,0,0,2626,2627,5,249, - 0,0,2627,2628,5,217,0,0,2628,2629,3,306,153,0,2629,2630,5,250,0, - 0,2630,337,1,0,0,0,2631,2632,5,144,0,0,2632,2643,5,249,0,0,2633, - 2634,5,146,0,0,2634,2635,5,26,0,0,2635,2640,3,304,152,0,2636,2637, - 5,247,0,0,2637,2639,3,304,152,0,2638,2636,1,0,0,0,2639,2642,1,0, - 0,0,2640,2638,1,0,0,0,2640,2641,1,0,0,0,2641,2644,1,0,0,0,2642,2640, - 1,0,0,0,2643,2633,1,0,0,0,2643,2644,1,0,0,0,2644,2655,1,0,0,0,2645, - 2646,5,140,0,0,2646,2647,5,26,0,0,2647,2652,3,264,132,0,2648,2649, - 5,247,0,0,2649,2651,3,264,132,0,2650,2648,1,0,0,0,2651,2654,1,0, - 0,0,2652,2650,1,0,0,0,2652,2653,1,0,0,0,2653,2656,1,0,0,0,2654,2652, - 1,0,0,0,2655,2645,1,0,0,0,2655,2656,1,0,0,0,2656,2658,1,0,0,0,2657, - 2659,3,340,170,0,2658,2657,1,0,0,0,2658,2659,1,0,0,0,2659,2660,1, - 0,0,0,2660,2661,5,250,0,0,2661,339,1,0,0,0,2662,2663,5,155,0,0,2663, - 2679,3,342,171,0,2664,2665,5,170,0,0,2665,2679,3,342,171,0,2666, - 2667,5,155,0,0,2667,2668,5,15,0,0,2668,2669,3,342,171,0,2669,2670, - 5,5,0,0,2670,2671,3,342,171,0,2671,2679,1,0,0,0,2672,2673,5,170, - 0,0,2673,2674,5,15,0,0,2674,2675,3,342,171,0,2675,2676,5,5,0,0,2676, - 2677,3,342,171,0,2677,2679,1,0,0,0,2678,2662,1,0,0,0,2678,2664,1, - 0,0,0,2678,2666,1,0,0,0,2678,2672,1,0,0,0,2679,341,1,0,0,0,2680, - 2681,5,201,0,0,2681,2690,5,150,0,0,2682,2683,5,201,0,0,2683,2690, - 5,77,0,0,2684,2685,5,39,0,0,2685,2690,5,169,0,0,2686,2687,3,304, - 152,0,2687,2688,7,28,0,0,2688,2690,1,0,0,0,2689,2680,1,0,0,0,2689, - 2682,1,0,0,0,2689,2684,1,0,0,0,2689,2686,1,0,0,0,2690,343,1,0,0, - 0,2691,2692,3,356,178,0,2692,2693,5,245,0,0,2693,2694,3,356,178, - 0,2694,2697,1,0,0,0,2695,2697,3,356,178,0,2696,2691,1,0,0,0,2696, - 2695,1,0,0,0,2697,345,1,0,0,0,2698,2703,3,344,172,0,2699,2700,5, - 247,0,0,2700,2702,3,344,172,0,2701,2699,1,0,0,0,2702,2705,1,0,0, - 0,2703,2701,1,0,0,0,2703,2704,1,0,0,0,2704,347,1,0,0,0,2705,2703, - 1,0,0,0,2706,2720,5,2,0,0,2707,2720,5,4,0,0,2708,2720,5,58,0,0,2709, - 2720,5,37,0,0,2710,2720,5,99,0,0,2711,2720,5,163,0,0,2712,2717,5, - 175,0,0,2713,2714,5,249,0,0,2714,2715,3,356,178,0,2715,2716,5,250, - 0,0,2716,2718,1,0,0,0,2717,2713,1,0,0,0,2717,2718,1,0,0,0,2718,2720, - 1,0,0,0,2719,2706,1,0,0,0,2719,2707,1,0,0,0,2719,2708,1,0,0,0,2719, - 2709,1,0,0,0,2719,2710,1,0,0,0,2719,2711,1,0,0,0,2719,2712,1,0,0, - 0,2720,349,1,0,0,0,2721,2722,7,29,0,0,2722,351,1,0,0,0,2723,2728, - 3,356,178,0,2724,2725,5,245,0,0,2725,2727,3,356,178,0,2726,2724, - 1,0,0,0,2727,2730,1,0,0,0,2728,2726,1,0,0,0,2728,2729,1,0,0,0,2729, - 353,1,0,0,0,2730,2728,1,0,0,0,2731,2732,5,167,0,0,2732,2738,3,356, - 178,0,2733,2734,5,206,0,0,2734,2738,3,356,178,0,2735,2736,5,87,0, - 0,2736,2738,3,356,178,0,2737,2731,1,0,0,0,2737,2733,1,0,0,0,2737, - 2735,1,0,0,0,2738,355,1,0,0,0,2739,2745,5,264,0,0,2740,2745,5,258, - 0,0,2741,2745,3,362,181,0,2742,2745,5,267,0,0,2743,2745,5,265,0, - 0,2744,2739,1,0,0,0,2744,2740,1,0,0,0,2744,2741,1,0,0,0,2744,2742, - 1,0,0,0,2744,2743,1,0,0,0,2745,357,1,0,0,0,2746,2748,5,240,0,0,2747, - 2746,1,0,0,0,2747,2748,1,0,0,0,2748,2749,1,0,0,0,2749,2759,5,262, - 0,0,2750,2752,5,240,0,0,2751,2750,1,0,0,0,2751,2752,1,0,0,0,2752, - 2753,1,0,0,0,2753,2759,5,263,0,0,2754,2756,5,240,0,0,2755,2754,1, - 0,0,0,2755,2756,1,0,0,0,2756,2757,1,0,0,0,2757,2759,5,261,0,0,2758, - 2747,1,0,0,0,2758,2751,1,0,0,0,2758,2755,1,0,0,0,2759,359,1,0,0, - 0,2760,2761,7,30,0,0,2761,361,1,0,0,0,2762,2763,7,31,0,0,2763,363, - 1,0,0,0,352,367,374,398,411,415,419,428,433,437,443,445,450,454, - 458,465,470,476,480,489,496,500,505,507,512,516,523,527,532,536, - 540,544,552,557,561,569,573,582,585,588,594,601,612,617,622,627, - 632,641,644,647,651,677,703,712,722,725,739,757,759,768,779,788, - 795,799,806,812,815,820,827,841,854,859,864,870,906,909,915,918, - 924,930,942,944,952,960,965,969,974,981,985,989,995,999,1003,1012, - 1015,1018,1026,1040,1047,1060,1066,1071,1074,1077,1082,1086,1095, - 1100,1106,1110,1115,1120,1123,1131,1134,1138,1150,1153,1157,1162, - 1166,1182,1187,1194,1197,1203,1206,1213,1216,1220,1225,1228,1235, - 1238,1262,1276,1280,1284,1304,1306,1308,1317,1319,1328,1330,1339, - 1341,1346,1355,1364,1373,1384,1390,1395,1398,1411,1421,1425,1430, - 1441,1446,1479,1487,1492,1496,1500,1505,1509,1514,1519,1524,1528, - 1537,1540,1544,1551,1562,1568,1572,1578,1588,1595,1600,1605,1610, - 1616,1619,1628,1631,1634,1640,1646,1656,1659,1663,1667,1670,1676, - 1679,1685,1691,1694,1697,1701,1711,1722,1727,1730,1734,1741,1751, - 1763,1769,1771,1780,1783,1790,1800,1806,1814,1825,1835,1846,1848, - 1854,1859,1869,1872,1878,1880,1888,1894,1897,1899,1911,1918,1922, - 1926,1930,1933,1940,1949,1952,1956,1961,1965,1968,1975,1986,1989, - 1993,1997,2006,2009,2016,2030,2034,2038,2042,2046,2050,2054,2058, - 2068,2079,2084,2097,2099,2105,2109,2111,2119,2126,2131,2144,2150, - 2158,2165,2169,2177,2179,2190,2198,2207,2213,2218,2224,2230,2235, - 2240,2246,2257,2259,2286,2292,2296,2308,2318,2321,2326,2333,2336, - 2345,2348,2352,2355,2367,2370,2389,2393,2401,2405,2430,2433,2442, - 2448,2454,2460,2471,2480,2502,2505,2508,2518,2520,2527,2529,2551, - 2582,2594,2599,2601,2607,2612,2618,2640,2643,2652,2655,2658,2678, - 2689,2696,2703,2717,2719,2728,2737,2744,2747,2751,2755,2758 + 1,164,1,164,1,164,1,164,1,164,1,164,5,164,2584,8,164,10,164,12,164, + 2587,9,164,1,164,1,164,1,164,1,164,3,164,2593,8,164,1,164,1,164, + 1,164,1,164,5,164,2599,8,164,10,164,12,164,2602,9,164,1,164,1,164, + 3,164,2606,8,164,3,164,2608,8,164,1,164,1,164,5,164,2612,8,164,10, + 164,12,164,2615,9,164,1,165,1,165,1,166,1,166,3,166,2621,8,166,1, + 167,1,167,1,167,1,167,3,167,2627,8,167,1,168,1,168,1,168,1,168,1, + 168,1,169,1,169,1,169,1,169,1,169,1,169,1,170,1,170,1,170,1,170, + 1,170,1,170,1,170,5,170,2647,8,170,10,170,12,170,2650,9,170,3,170, + 2652,8,170,1,170,1,170,1,170,1,170,1,170,5,170,2659,8,170,10,170, + 12,170,2662,9,170,3,170,2664,8,170,1,170,3,170,2667,8,170,1,170, + 1,170,1,171,1,171,1,171,1,171,1,171,1,171,1,171,1,171,1,171,1,171, + 1,171,1,171,1,171,1,171,1,171,1,171,3,171,2687,8,171,1,172,1,172, + 1,172,1,172,1,172,1,172,1,172,1,172,1,172,3,172,2698,8,172,1,173, + 1,173,1,173,1,173,1,173,3,173,2705,8,173,1,174,1,174,1,174,5,174, + 2710,8,174,10,174,12,174,2713,9,174,1,175,1,175,1,175,1,175,1,175, + 1,175,1,175,1,175,1,175,1,175,1,175,3,175,2726,8,175,3,175,2728, + 8,175,1,176,1,176,1,177,1,177,1,177,5,177,2735,8,177,10,177,12,177, + 2738,9,177,1,178,1,178,1,178,1,178,1,178,1,178,3,178,2746,8,178, + 1,179,1,179,1,179,1,179,1,179,3,179,2753,8,179,1,180,3,180,2756, + 8,180,1,180,1,180,3,180,2760,8,180,1,180,1,180,3,180,2764,8,180, + 1,180,3,180,2767,8,180,1,181,1,181,1,182,1,182,1,182,10,770,1446, + 1621,1661,1681,1696,1727,1756,1830,2301,6,260,280,306,310,312,328, + 183,0,2,4,6,8,10,12,14,16,18,20,22,24,26,28,30,32,34,36,38,40,42, + 44,46,48,50,52,54,56,58,60,62,64,66,68,70,72,74,76,78,80,82,84,86, + 88,90,92,94,96,98,100,102,104,106,108,110,112,114,116,118,120,122, + 124,126,128,130,132,134,136,138,140,142,144,146,148,150,152,154, + 156,158,160,162,164,166,168,170,172,174,176,178,180,182,184,186, + 188,190,192,194,196,198,200,202,204,206,208,210,212,214,216,218, + 220,222,224,226,228,230,232,234,236,238,240,242,244,246,248,250, + 252,254,256,258,260,262,264,266,268,270,272,274,276,278,280,282, + 284,286,288,290,292,294,296,298,300,302,304,306,308,310,312,314, + 316,318,320,322,324,326,328,330,332,334,336,338,340,342,344,346, + 348,350,352,354,356,358,360,362,364,0,33,2,0,46,46,170,170,2,0,166, + 166,204,204,2,0,176,176,202,202,2,0,69,69,80,80,2,0,27,27,159,159, + 2,0,103,103,144,144,2,0,47,47,171,171,2,0,3,3,12,12,3,0,87,87,166, + 166,204,204,2,0,178,178,209,209,1,0,245,248,2,0,147,147,219,223, + 2,0,65,65,95,95,2,0,64,64,200,200,2,0,10,10,55,55,2,0,75,75,112, + 112,2,0,2,2,57,57,2,0,14,14,185,185,3,0,106,106,115,115,164,164, + 2,0,105,105,163,163,4,0,70,70,133,133,194,194,208,208,1,0,255,256, + 1,0,257,259,1,0,249,254,3,0,2,2,6,6,181,181,2,0,70,70,194,194,5, + 0,48,49,91,92,122,125,172,173,217,218,1,0,127,130,2,0,8,8,227,244, + 2,0,77,77,149,149,4,0,46,46,178,178,188,188,209,209,16,0,28,29,40, + 40,43,43,48,48,68,68,91,91,114,114,122,122,124,124,158,158,165,165, + 172,172,184,184,196,196,204,204,217,217,23,0,14,14,43,44,48,49,65, + 65,68,68,91,91,95,95,110,110,119,119,122,125,127,130,137,137,140, + 140,152,153,172,173,180,180,184,185,195,195,204,204,213,213,217, + 217,220,220,231,231,3096,0,369,1,0,0,0,2,374,1,0,0,0,4,400,1,0,0, + 0,6,402,1,0,0,0,8,413,1,0,0,0,10,415,1,0,0,0,12,454,1,0,0,0,14,476, + 1,0,0,0,16,531,1,0,0,0,18,551,1,0,0,0,20,565,1,0,0,0,22,569,1,0, + 0,0,24,631,1,0,0,0,26,679,1,0,0,0,28,681,1,0,0,0,30,689,1,0,0,0, + 32,709,1,0,0,0,34,729,1,0,0,0,36,736,1,0,0,0,38,745,1,0,0,0,40,753, + 1,0,0,0,42,775,1,0,0,0,44,785,1,0,0,0,46,803,1,0,0,0,48,824,1,0, + 0,0,50,845,1,0,0,0,52,851,1,0,0,0,54,868,1,0,0,0,56,877,1,0,0,0, + 58,884,1,0,0,0,60,892,1,0,0,0,62,899,1,0,0,0,64,906,1,0,0,0,66,915, + 1,0,0,0,68,926,1,0,0,0,70,928,1,0,0,0,72,948,1,0,0,0,74,965,1,0, + 0,0,76,967,1,0,0,0,78,976,1,0,0,0,80,983,1,0,0,0,82,992,1,0,0,0, + 84,1002,1,0,0,0,86,1025,1,0,0,0,88,1031,1,0,0,0,90,1033,1,0,0,0, + 92,1040,1,0,0,0,94,1052,1,0,0,0,96,1054,1,0,0,0,98,1061,1,0,0,0, + 100,1082,1,0,0,0,102,1111,1,0,0,0,104,1113,1,0,0,0,106,1122,1,0, + 0,0,108,1145,1,0,0,0,110,1164,1,0,0,0,112,1187,1,0,0,0,114,1189, + 1,0,0,0,116,1204,1,0,0,0,118,1223,1,0,0,0,120,1245,1,0,0,0,122,1250, + 1,0,0,0,124,1255,1,0,0,0,126,1260,1,0,0,0,128,1265,1,0,0,0,130,1272, + 1,0,0,0,132,1287,1,0,0,0,134,1293,1,0,0,0,136,1313,1,0,0,0,138,1315, + 1,0,0,0,140,1326,1,0,0,0,142,1337,1,0,0,0,144,1351,1,0,0,0,146,1353, + 1,0,0,0,148,1362,1,0,0,0,150,1371,1,0,0,0,152,1380,1,0,0,0,154,1383, + 1,0,0,0,156,1391,1,0,0,0,158,1407,1,0,0,0,160,1411,1,0,0,0,162,1435, + 1,0,0,0,164,1437,1,0,0,0,166,1453,1,0,0,0,168,1456,1,0,0,0,170,1460, + 1,0,0,0,172,1463,1,0,0,0,174,1467,1,0,0,0,176,1469,1,0,0,0,178,1471, + 1,0,0,0,180,1473,1,0,0,0,182,1475,1,0,0,0,184,1477,1,0,0,0,186,1479, + 1,0,0,0,188,1487,1,0,0,0,190,1497,1,0,0,0,192,1501,1,0,0,0,194,1505, + 1,0,0,0,196,1510,1,0,0,0,198,1551,1,0,0,0,200,1559,1,0,0,0,202,1563, + 1,0,0,0,204,1583,1,0,0,0,206,1587,1,0,0,0,208,1596,1,0,0,0,210,1626, + 1,0,0,0,212,1641,1,0,0,0,214,1647,1,0,0,0,216,1653,1,0,0,0,218,1655, + 1,0,0,0,220,1675,1,0,0,0,222,1686,1,0,0,0,224,1706,1,0,0,0,226,1716, + 1,0,0,0,228,1718,1,0,0,0,230,1720,1,0,0,0,232,1735,1,0,0,0,234,1737, + 1,0,0,0,236,1744,1,0,0,0,238,1776,1,0,0,0,240,1788,1,0,0,0,242,1795, + 1,0,0,0,244,1805,1,0,0,0,246,1807,1,0,0,0,248,1813,1,0,0,0,250,1824, + 1,0,0,0,252,1835,1,0,0,0,254,1843,1,0,0,0,256,1861,1,0,0,0,258,1866, + 1,0,0,0,260,1887,1,0,0,0,262,1923,1,0,0,0,264,1925,1,0,0,0,266,1933, + 1,0,0,0,268,1973,1,0,0,0,270,1983,1,0,0,0,272,1998,1,0,0,0,274,2000, + 1,0,0,0,276,2007,1,0,0,0,278,2021,1,0,0,0,280,2023,1,0,0,0,282,2073, + 1,0,0,0,284,2089,1,0,0,0,286,2091,1,0,0,0,288,2106,1,0,0,0,290,2108, + 1,0,0,0,292,2118,1,0,0,0,294,2136,1,0,0,0,296,2138,1,0,0,0,298,2142, + 1,0,0,0,300,2157,1,0,0,0,302,2163,1,0,0,0,304,2165,1,0,0,0,306,2174, + 1,0,0,0,308,2245,1,0,0,0,310,2251,1,0,0,0,312,2513,1,0,0,0,314,2534, + 1,0,0,0,316,2536,1,0,0,0,318,2538,1,0,0,0,320,2540,1,0,0,0,322,2556, + 1,0,0,0,324,2558,1,0,0,0,326,2560,1,0,0,0,328,2607,1,0,0,0,330,2616, + 1,0,0,0,332,2620,1,0,0,0,334,2626,1,0,0,0,336,2628,1,0,0,0,338,2633, + 1,0,0,0,340,2639,1,0,0,0,342,2686,1,0,0,0,344,2697,1,0,0,0,346,2704, + 1,0,0,0,348,2706,1,0,0,0,350,2727,1,0,0,0,352,2729,1,0,0,0,354,2731, + 1,0,0,0,356,2745,1,0,0,0,358,2752,1,0,0,0,360,2766,1,0,0,0,362,2768, + 1,0,0,0,364,2770,1,0,0,0,366,368,3,2,1,0,367,366,1,0,0,0,368,371, + 1,0,0,0,369,367,1,0,0,0,369,370,1,0,0,0,370,372,1,0,0,0,371,369, + 1,0,0,0,372,373,5,0,0,1,373,1,1,0,0,0,374,376,3,4,2,0,375,377,5, + 262,0,0,376,375,1,0,0,0,376,377,1,0,0,0,377,3,1,0,0,0,378,401,3, + 204,102,0,379,401,3,6,3,0,380,401,3,8,4,0,381,401,3,26,13,0,382, + 401,3,64,32,0,383,401,3,66,33,0,384,401,3,68,34,0,385,401,3,74,37, + 0,386,401,3,88,44,0,387,401,3,94,47,0,388,401,3,100,50,0,389,401, + 3,102,51,0,390,401,3,108,54,0,391,401,3,110,55,0,392,401,3,112,56, + 0,393,401,3,144,72,0,394,401,3,152,76,0,395,401,3,154,77,0,396,401, + 3,156,78,0,397,401,3,158,79,0,398,401,3,160,80,0,399,401,3,162,81, + 0,400,378,1,0,0,0,400,379,1,0,0,0,400,380,1,0,0,0,400,381,1,0,0, + 0,400,382,1,0,0,0,400,383,1,0,0,0,400,384,1,0,0,0,400,385,1,0,0, + 0,400,386,1,0,0,0,400,387,1,0,0,0,400,388,1,0,0,0,400,389,1,0,0, + 0,400,390,1,0,0,0,400,391,1,0,0,0,400,392,1,0,0,0,400,393,1,0,0, + 0,400,394,1,0,0,0,400,395,1,0,0,0,400,396,1,0,0,0,400,397,1,0,0, + 0,400,398,1,0,0,0,400,399,1,0,0,0,401,5,1,0,0,0,402,403,5,203,0, + 0,403,404,3,184,92,0,404,7,1,0,0,0,405,414,3,18,9,0,406,414,3,20, + 10,0,407,414,3,22,11,0,408,414,3,24,12,0,409,414,3,16,8,0,410,414, + 3,14,7,0,411,414,3,12,6,0,412,414,3,10,5,0,413,405,1,0,0,0,413,406, + 1,0,0,0,413,407,1,0,0,0,413,408,1,0,0,0,413,409,1,0,0,0,413,410, + 1,0,0,0,413,411,1,0,0,0,413,412,1,0,0,0,414,9,1,0,0,0,415,417,5, + 37,0,0,416,418,5,19,0,0,417,416,1,0,0,0,417,418,1,0,0,0,418,419, + 1,0,0,0,419,421,5,188,0,0,420,422,3,172,86,0,421,420,1,0,0,0,421, + 422,1,0,0,0,422,423,1,0,0,0,423,439,3,174,87,0,424,425,5,265,0,0, + 425,430,3,214,107,0,426,427,5,263,0,0,427,429,3,214,107,0,428,426, + 1,0,0,0,429,432,1,0,0,0,430,428,1,0,0,0,430,431,1,0,0,0,431,435, + 1,0,0,0,432,430,1,0,0,0,433,434,5,263,0,0,434,436,3,208,104,0,435, + 433,1,0,0,0,435,436,1,0,0,0,436,437,1,0,0,0,437,438,5,266,0,0,438, + 440,1,0,0,0,439,424,1,0,0,0,439,440,1,0,0,0,440,447,1,0,0,0,441, + 442,5,17,0,0,442,445,5,26,0,0,443,446,3,292,146,0,444,446,3,250, + 125,0,445,443,1,0,0,0,445,444,1,0,0,0,446,448,1,0,0,0,447,441,1, + 0,0,0,447,448,1,0,0,0,448,449,1,0,0,0,449,452,3,196,98,0,450,451, + 5,9,0,0,451,453,3,204,102,0,452,450,1,0,0,0,452,453,1,0,0,0,453, + 11,1,0,0,0,454,456,5,37,0,0,455,457,5,19,0,0,456,455,1,0,0,0,456, + 457,1,0,0,0,457,458,1,0,0,0,458,460,5,188,0,0,459,461,3,172,86,0, + 460,459,1,0,0,0,460,461,1,0,0,0,461,462,1,0,0,0,462,463,3,174,87, + 0,463,467,5,115,0,0,464,468,3,186,93,0,465,466,5,147,0,0,466,468, + 3,314,157,0,467,464,1,0,0,0,467,465,1,0,0,0,468,472,1,0,0,0,469, + 470,5,17,0,0,470,471,5,26,0,0,471,473,3,250,125,0,472,469,1,0,0, + 0,472,473,1,0,0,0,473,474,1,0,0,0,474,475,3,196,98,0,475,13,1,0, + 0,0,476,478,5,37,0,0,477,479,5,19,0,0,478,477,1,0,0,0,478,479,1, + 0,0,0,479,480,1,0,0,0,480,482,5,188,0,0,481,483,3,172,86,0,482,481, + 1,0,0,0,482,483,1,0,0,0,483,484,1,0,0,0,484,502,3,174,87,0,485,486, + 5,265,0,0,486,491,3,216,108,0,487,488,5,263,0,0,488,490,3,216,108, + 0,489,487,1,0,0,0,490,493,1,0,0,0,491,489,1,0,0,0,491,492,1,0,0, + 0,492,498,1,0,0,0,493,491,1,0,0,0,494,495,5,263,0,0,495,496,5,150, + 0,0,496,497,5,110,0,0,497,499,3,292,146,0,498,494,1,0,0,0,498,499, + 1,0,0,0,499,500,1,0,0,0,500,501,5,266,0,0,501,503,1,0,0,0,502,485, + 1,0,0,0,502,503,1,0,0,0,503,509,1,0,0,0,504,505,5,150,0,0,505,507, + 5,110,0,0,506,508,3,292,146,0,507,506,1,0,0,0,507,508,1,0,0,0,508, + 510,1,0,0,0,509,504,1,0,0,0,509,510,1,0,0,0,510,514,1,0,0,0,511, + 512,5,145,0,0,512,513,5,26,0,0,513,515,3,232,116,0,514,511,1,0,0, + 0,514,515,1,0,0,0,515,518,1,0,0,0,516,517,5,34,0,0,517,519,3,314, + 157,0,518,516,1,0,0,0,518,519,1,0,0,0,519,520,1,0,0,0,520,521,5, + 23,0,0,521,522,5,9,0,0,522,525,5,111,0,0,523,524,5,25,0,0,524,526, + 3,248,124,0,525,523,1,0,0,0,525,526,1,0,0,0,526,529,1,0,0,0,527, + 528,5,9,0,0,528,530,3,204,102,0,529,527,1,0,0,0,529,530,1,0,0,0, + 530,15,1,0,0,0,531,532,5,37,0,0,532,534,5,212,0,0,533,535,3,172, + 86,0,534,533,1,0,0,0,534,535,1,0,0,0,535,536,1,0,0,0,536,538,3,178, + 89,0,537,539,3,202,101,0,538,537,1,0,0,0,538,539,1,0,0,0,539,542, + 1,0,0,0,540,541,5,34,0,0,541,543,3,314,157,0,542,540,1,0,0,0,542, + 543,1,0,0,0,543,546,1,0,0,0,544,545,5,25,0,0,545,547,3,248,124,0, + 546,544,1,0,0,0,546,547,1,0,0,0,547,548,1,0,0,0,548,549,5,9,0,0, + 549,550,3,204,102,0,550,17,1,0,0,0,551,552,5,37,0,0,552,554,7,0, + 0,0,553,555,3,172,86,0,554,553,1,0,0,0,554,555,1,0,0,0,555,556,1, + 0,0,0,556,559,3,176,88,0,557,558,5,34,0,0,558,560,3,314,157,0,559, + 557,1,0,0,0,559,560,1,0,0,0,560,563,1,0,0,0,561,562,5,24,0,0,562, + 564,3,314,157,0,563,561,1,0,0,0,563,564,1,0,0,0,564,19,1,0,0,0,565, + 566,5,37,0,0,566,567,5,166,0,0,567,568,3,358,179,0,568,21,1,0,0, + 0,569,571,5,37,0,0,570,572,5,12,0,0,571,570,1,0,0,0,571,572,1,0, + 0,0,572,573,1,0,0,0,573,575,5,84,0,0,574,576,3,172,86,0,575,574, + 1,0,0,0,575,576,1,0,0,0,576,577,1,0,0,0,577,590,3,180,90,0,578,587, + 5,265,0,0,579,584,3,328,164,0,580,581,5,263,0,0,581,583,3,328,164, + 0,582,580,1,0,0,0,583,586,1,0,0,0,584,582,1,0,0,0,584,585,1,0,0, + 0,585,588,1,0,0,0,586,584,1,0,0,0,587,579,1,0,0,0,587,588,1,0,0, + 0,588,589,1,0,0,0,589,591,5,266,0,0,590,578,1,0,0,0,590,591,1,0, + 0,0,591,592,1,0,0,0,592,593,5,160,0,0,593,596,3,328,164,0,594,595, + 5,102,0,0,595,597,3,328,164,0,596,594,1,0,0,0,596,597,1,0,0,0,597, + 598,1,0,0,0,598,599,5,24,0,0,599,603,5,274,0,0,600,601,5,104,0,0, + 601,602,5,249,0,0,602,604,5,274,0,0,603,600,1,0,0,0,603,604,1,0, + 0,0,604,605,1,0,0,0,605,606,5,206,0,0,606,607,5,249,0,0,607,608, + 5,274,0,0,608,609,5,126,0,0,609,610,5,249,0,0,610,614,5,274,0,0, + 611,612,5,18,0,0,612,613,5,249,0,0,613,615,5,274,0,0,614,611,1,0, + 0,0,614,615,1,0,0,0,615,619,1,0,0,0,616,617,5,20,0,0,617,618,5,249, + 0,0,618,620,5,274,0,0,619,616,1,0,0,0,619,620,1,0,0,0,620,624,1, + 0,0,0,621,622,5,187,0,0,622,623,5,249,0,0,623,625,5,274,0,0,624, + 621,1,0,0,0,624,625,1,0,0,0,625,629,1,0,0,0,626,627,5,76,0,0,627, + 628,5,249,0,0,628,630,5,274,0,0,629,626,1,0,0,0,629,630,1,0,0,0, + 630,23,1,0,0,0,631,632,5,37,0,0,632,634,5,84,0,0,633,635,3,172,86, + 0,634,633,1,0,0,0,634,635,1,0,0,0,635,636,1,0,0,0,636,649,3,180, + 90,0,637,646,5,265,0,0,638,643,3,328,164,0,639,640,5,263,0,0,640, + 642,3,328,164,0,641,639,1,0,0,0,642,645,1,0,0,0,643,641,1,0,0,0, + 643,644,1,0,0,0,644,647,1,0,0,0,645,643,1,0,0,0,646,638,1,0,0,0, + 646,647,1,0,0,0,647,648,1,0,0,0,648,650,5,266,0,0,649,637,1,0,0, + 0,649,650,1,0,0,0,650,653,1,0,0,0,651,652,5,160,0,0,652,654,3,328, + 164,0,653,651,1,0,0,0,653,654,1,0,0,0,654,655,1,0,0,0,655,656,5, + 24,0,0,656,657,5,274,0,0,657,658,5,186,0,0,658,659,5,249,0,0,659, + 660,3,314,157,0,660,25,1,0,0,0,661,680,3,28,14,0,662,680,3,62,31, + 0,663,680,3,60,30,0,664,680,3,58,29,0,665,680,3,54,27,0,666,680, + 3,56,28,0,667,680,3,52,26,0,668,680,3,48,24,0,669,680,3,50,25,0, + 670,680,3,46,23,0,671,680,3,44,22,0,672,680,3,42,21,0,673,680,3, + 40,20,0,674,680,3,34,17,0,675,680,3,30,15,0,676,680,3,32,16,0,677, + 680,3,36,18,0,678,680,3,38,19,0,679,661,1,0,0,0,679,662,1,0,0,0, + 679,663,1,0,0,0,679,664,1,0,0,0,679,665,1,0,0,0,679,666,1,0,0,0, + 679,667,1,0,0,0,679,668,1,0,0,0,679,669,1,0,0,0,679,670,1,0,0,0, + 679,671,1,0,0,0,679,672,1,0,0,0,679,673,1,0,0,0,679,674,1,0,0,0, + 679,675,1,0,0,0,679,676,1,0,0,0,679,677,1,0,0,0,679,678,1,0,0,0, + 680,27,1,0,0,0,681,682,5,4,0,0,682,683,5,46,0,0,683,684,3,184,92, + 0,684,685,5,176,0,0,685,686,5,142,0,0,686,687,7,1,0,0,687,688,3, + 358,179,0,688,29,1,0,0,0,689,690,5,4,0,0,690,691,5,188,0,0,691,692, + 3,186,93,0,692,693,5,176,0,0,693,694,5,32,0,0,694,695,5,182,0,0, + 695,696,3,192,96,0,696,697,5,265,0,0,697,698,3,228,114,0,698,699, + 5,249,0,0,699,705,3,314,157,0,700,701,5,263,0,0,701,702,3,228,114, + 0,702,703,5,249,0,0,703,704,3,314,157,0,704,706,1,0,0,0,705,700, + 1,0,0,0,705,706,1,0,0,0,706,707,1,0,0,0,707,708,5,266,0,0,708,31, + 1,0,0,0,709,710,5,4,0,0,710,711,5,188,0,0,711,714,3,186,93,0,712, + 713,5,145,0,0,713,715,3,304,152,0,714,712,1,0,0,0,714,715,1,0,0, + 0,715,716,1,0,0,0,716,727,5,176,0,0,717,718,5,30,0,0,718,719,5,94, + 0,0,719,724,3,314,157,0,720,721,5,216,0,0,721,722,5,151,0,0,722, + 723,5,249,0,0,723,725,3,360,180,0,724,720,1,0,0,0,724,725,1,0,0, + 0,725,728,1,0,0,0,726,728,5,197,0,0,727,717,1,0,0,0,727,726,1,0, + 0,0,728,33,1,0,0,0,729,730,5,4,0,0,730,731,5,188,0,0,731,732,3,186, + 93,0,732,733,5,31,0,0,733,734,5,32,0,0,734,735,3,220,110,0,735,35, + 1,0,0,0,736,737,5,4,0,0,737,738,5,188,0,0,738,739,3,186,93,0,739, + 741,5,58,0,0,740,742,5,32,0,0,741,740,1,0,0,0,741,742,1,0,0,0,742, + 743,1,0,0,0,743,744,3,192,96,0,744,37,1,0,0,0,745,746,5,4,0,0,746, + 747,5,188,0,0,747,748,3,186,93,0,748,749,5,176,0,0,749,750,5,142, + 0,0,750,751,7,1,0,0,751,752,3,358,179,0,752,39,1,0,0,0,753,754,5, + 4,0,0,754,755,5,188,0,0,755,761,3,186,93,0,756,762,5,158,0,0,757, + 759,5,1,0,0,758,760,3,172,86,0,759,758,1,0,0,0,759,760,1,0,0,0,760, + 762,1,0,0,0,761,756,1,0,0,0,761,757,1,0,0,0,762,763,1,0,0,0,763, + 764,5,33,0,0,764,765,5,265,0,0,765,770,3,220,110,0,766,767,5,263, + 0,0,767,769,3,220,110,0,768,766,1,0,0,0,769,772,1,0,0,0,770,771, + 1,0,0,0,770,768,1,0,0,0,771,773,1,0,0,0,772,770,1,0,0,0,773,774, + 5,266,0,0,774,41,1,0,0,0,775,776,5,4,0,0,776,777,5,188,0,0,777,778, + 3,186,93,0,778,779,5,1,0,0,779,781,5,32,0,0,780,782,3,172,86,0,781, + 780,1,0,0,0,781,782,1,0,0,0,782,783,1,0,0,0,783,784,3,222,111,0, + 784,43,1,0,0,0,785,786,5,4,0,0,786,787,5,188,0,0,787,788,3,186,93, + 0,788,790,5,4,0,0,789,791,5,32,0,0,790,789,1,0,0,0,790,791,1,0,0, + 0,791,792,1,0,0,0,792,801,3,192,96,0,793,797,5,176,0,0,794,798,3, + 226,113,0,795,796,5,34,0,0,796,798,3,314,157,0,797,794,1,0,0,0,797, + 795,1,0,0,0,798,802,1,0,0,0,799,800,5,58,0,0,800,802,5,51,0,0,801, + 793,1,0,0,0,801,799,1,0,0,0,802,45,1,0,0,0,803,804,5,4,0,0,804,805, + 5,188,0,0,805,806,3,186,93,0,806,808,5,1,0,0,807,809,3,172,86,0, + 808,807,1,0,0,0,808,809,1,0,0,0,809,822,1,0,0,0,810,811,5,145,0, + 0,811,814,3,304,152,0,812,813,5,24,0,0,813,815,3,314,157,0,814,812, + 1,0,0,0,814,815,1,0,0,0,815,817,1,0,0,0,816,818,3,240,120,0,817, + 816,1,0,0,0,817,818,1,0,0,0,818,823,1,0,0,0,819,820,5,154,0,0,820, + 821,5,145,0,0,821,823,3,238,119,0,822,810,1,0,0,0,822,819,1,0,0, + 0,823,47,1,0,0,0,824,825,5,4,0,0,825,826,5,188,0,0,826,829,3,186, + 93,0,827,828,5,145,0,0,828,830,3,304,152,0,829,827,1,0,0,0,829,830, + 1,0,0,0,830,831,1,0,0,0,831,843,5,176,0,0,832,833,5,72,0,0,833,844, + 3,230,115,0,834,835,5,168,0,0,835,836,5,79,0,0,836,844,3,254,127, + 0,837,838,5,24,0,0,838,844,3,314,157,0,839,840,5,25,0,0,840,844, + 3,248,124,0,841,842,5,175,0,0,842,844,3,248,124,0,843,832,1,0,0, + 0,843,834,1,0,0,0,843,837,1,0,0,0,843,839,1,0,0,0,843,841,1,0,0, + 0,844,49,1,0,0,0,845,846,5,4,0,0,846,847,5,188,0,0,847,848,3,186, + 93,0,848,849,5,155,0,0,849,850,5,146,0,0,850,51,1,0,0,0,851,852, + 5,4,0,0,852,853,5,188,0,0,853,854,3,186,93,0,854,856,5,58,0,0,855, + 857,3,170,85,0,856,855,1,0,0,0,856,857,1,0,0,0,857,866,1,0,0,0,858, + 859,5,145,0,0,859,861,3,304,152,0,860,862,5,22,0,0,861,860,1,0,0, + 0,861,862,1,0,0,0,862,867,1,0,0,0,863,864,5,154,0,0,864,865,5,145, + 0,0,865,867,3,238,119,0,866,858,1,0,0,0,866,863,1,0,0,0,867,53,1, + 0,0,0,868,869,5,4,0,0,869,870,5,212,0,0,870,872,3,188,94,0,871,873, + 3,202,101,0,872,871,1,0,0,0,872,873,1,0,0,0,873,874,1,0,0,0,874, + 875,5,9,0,0,875,876,3,204,102,0,876,55,1,0,0,0,877,878,5,4,0,0,878, + 879,5,212,0,0,879,880,3,188,94,0,880,881,5,156,0,0,881,882,5,193, + 0,0,882,883,3,188,94,0,883,57,1,0,0,0,884,885,5,4,0,0,885,886,5, + 212,0,0,886,887,3,188,94,0,887,888,5,176,0,0,888,889,5,142,0,0,889, + 890,7,1,0,0,890,891,3,354,177,0,891,59,1,0,0,0,892,893,5,4,0,0,893, + 894,5,188,0,0,894,895,3,186,93,0,895,896,5,156,0,0,896,897,5,193, + 0,0,897,898,3,186,93,0,898,61,1,0,0,0,899,900,5,4,0,0,900,901,5, + 212,0,0,901,902,3,188,94,0,902,903,7,2,0,0,903,904,5,25,0,0,904, + 905,3,248,124,0,905,63,1,0,0,0,906,908,5,196,0,0,907,909,5,188,0, + 0,908,907,1,0,0,0,908,909,1,0,0,0,909,911,1,0,0,0,910,912,3,170, + 85,0,911,910,1,0,0,0,911,912,1,0,0,0,912,913,1,0,0,0,913,914,3,186, + 93,0,914,65,1,0,0,0,915,917,5,56,0,0,916,918,5,46,0,0,917,916,1, + 0,0,0,917,918,1,0,0,0,918,920,1,0,0,0,919,921,7,3,0,0,920,919,1, + 0,0,0,920,921,1,0,0,0,921,922,1,0,0,0,922,923,3,354,177,0,923,67, + 1,0,0,0,924,927,3,70,35,0,925,927,3,72,36,0,926,924,1,0,0,0,926, + 925,1,0,0,0,927,69,1,0,0,0,928,929,5,36,0,0,929,930,5,182,0,0,930, + 932,3,186,93,0,931,933,3,292,146,0,932,931,1,0,0,0,932,933,1,0,0, + 0,933,946,1,0,0,0,934,935,5,190,0,0,935,936,5,185,0,0,936,937,5, + 265,0,0,937,938,3,360,180,0,938,944,5,266,0,0,939,940,5,157,0,0, + 940,941,5,265,0,0,941,942,3,360,180,0,942,943,5,266,0,0,943,945, + 1,0,0,0,944,939,1,0,0,0,944,945,1,0,0,0,945,947,1,0,0,0,946,934, + 1,0,0,0,946,947,1,0,0,0,947,71,1,0,0,0,948,949,5,36,0,0,949,950, + 5,96,0,0,950,951,5,182,0,0,951,957,3,186,93,0,952,953,5,145,0,0, + 953,954,5,265,0,0,954,955,3,304,152,0,955,956,5,266,0,0,956,958, + 1,0,0,0,957,952,1,0,0,0,957,958,1,0,0,0,958,73,1,0,0,0,959,966,3, + 86,43,0,960,966,3,84,42,0,961,966,3,82,41,0,962,966,3,78,39,0,963, + 966,3,80,40,0,964,966,3,76,38,0,965,959,1,0,0,0,965,960,1,0,0,0, + 965,961,1,0,0,0,965,962,1,0,0,0,965,963,1,0,0,0,965,964,1,0,0,0, + 966,75,1,0,0,0,967,968,5,58,0,0,968,970,7,0,0,0,969,971,3,170,85, + 0,970,969,1,0,0,0,970,971,1,0,0,0,971,972,1,0,0,0,972,974,3,184, + 92,0,973,975,7,4,0,0,974,973,1,0,0,0,974,975,1,0,0,0,975,77,1,0, + 0,0,976,977,5,58,0,0,977,979,5,212,0,0,978,980,3,170,85,0,979,978, + 1,0,0,0,979,980,1,0,0,0,980,981,1,0,0,0,981,982,3,188,94,0,982,79, + 1,0,0,0,983,984,5,58,0,0,984,986,5,188,0,0,985,987,3,170,85,0,986, + 985,1,0,0,0,986,987,1,0,0,0,987,988,1,0,0,0,988,990,3,186,93,0,989, + 991,5,22,0,0,990,989,1,0,0,0,990,991,1,0,0,0,991,81,1,0,0,0,992, + 994,5,58,0,0,993,995,5,96,0,0,994,993,1,0,0,0,994,995,1,0,0,0,995, + 996,1,0,0,0,996,997,5,182,0,0,997,1000,3,186,93,0,998,999,5,145, + 0,0,999,1001,3,304,152,0,1000,998,1,0,0,0,1000,1001,1,0,0,0,1001, + 83,1,0,0,0,1002,1004,5,58,0,0,1003,1005,5,12,0,0,1004,1003,1,0,0, + 0,1004,1005,1,0,0,0,1005,1006,1,0,0,0,1006,1008,5,84,0,0,1007,1009, + 3,170,85,0,1008,1007,1,0,0,0,1008,1009,1,0,0,0,1009,1010,1,0,0,0, + 1010,1023,3,190,95,0,1011,1020,5,265,0,0,1012,1017,3,328,164,0,1013, + 1014,5,263,0,0,1014,1016,3,328,164,0,1015,1013,1,0,0,0,1016,1019, + 1,0,0,0,1017,1015,1,0,0,0,1017,1018,1,0,0,0,1018,1021,1,0,0,0,1019, + 1017,1,0,0,0,1020,1012,1,0,0,0,1020,1021,1,0,0,0,1021,1022,1,0,0, + 0,1022,1024,5,266,0,0,1023,1011,1,0,0,0,1023,1024,1,0,0,0,1024,85, + 1,0,0,0,1025,1026,5,58,0,0,1026,1027,5,166,0,0,1027,1028,3,358,179, + 0,1028,87,1,0,0,0,1029,1032,3,90,45,0,1030,1032,3,92,46,0,1031,1029, + 1,0,0,0,1031,1030,1,0,0,0,1032,89,1,0,0,0,1033,1034,5,86,0,0,1034, + 1035,5,166,0,0,1035,1036,3,358,179,0,1036,1037,5,193,0,0,1037,1038, + 5,87,0,0,1038,1039,3,358,179,0,1039,91,1,0,0,0,1040,1041,5,86,0, + 0,1041,1042,3,350,175,0,1042,1043,5,136,0,0,1043,1045,3,352,176, + 0,1044,1046,3,354,177,0,1045,1044,1,0,0,0,1045,1046,1,0,0,0,1046, + 1047,1,0,0,0,1047,1048,5,193,0,0,1048,1049,3,356,178,0,1049,93,1, + 0,0,0,1050,1053,3,96,48,0,1051,1053,3,98,49,0,1052,1050,1,0,0,0, + 1052,1051,1,0,0,0,1053,95,1,0,0,0,1054,1055,5,161,0,0,1055,1056, + 5,166,0,0,1056,1057,3,358,179,0,1057,1058,5,82,0,0,1058,1059,5,87, + 0,0,1059,1060,3,358,179,0,1060,97,1,0,0,0,1061,1065,5,161,0,0,1062, + 1063,5,86,0,0,1063,1064,5,137,0,0,1064,1066,5,78,0,0,1065,1062,1, + 0,0,0,1065,1066,1,0,0,0,1066,1067,1,0,0,0,1067,1068,3,350,175,0, + 1068,1069,5,136,0,0,1069,1071,3,352,176,0,1070,1072,3,354,177,0, + 1071,1070,1,0,0,0,1071,1072,1,0,0,0,1072,1073,1,0,0,0,1073,1079, + 5,82,0,0,1074,1080,3,356,178,0,1075,1077,5,166,0,0,1076,1075,1,0, + 0,0,1076,1077,1,0,0,0,1077,1078,1,0,0,0,1078,1080,3,358,179,0,1079, + 1074,1,0,0,0,1079,1076,1,0,0,0,1080,99,1,0,0,0,1081,1083,3,206,103, + 0,1082,1081,1,0,0,0,1082,1083,1,0,0,0,1083,1084,1,0,0,0,1084,1085, + 5,99,0,0,1085,1087,7,5,0,0,1086,1088,5,188,0,0,1087,1086,1,0,0,0, + 1087,1088,1,0,0,0,1088,1089,1,0,0,0,1089,1091,3,186,93,0,1090,1092, + 3,292,146,0,1091,1090,1,0,0,0,1091,1092,1,0,0,0,1092,1105,1,0,0, + 0,1093,1094,5,145,0,0,1094,1095,5,265,0,0,1095,1100,3,304,152,0, + 1096,1097,5,263,0,0,1097,1099,3,304,152,0,1098,1096,1,0,0,0,1099, + 1102,1,0,0,0,1100,1098,1,0,0,0,1100,1101,1,0,0,0,1101,1103,1,0,0, + 0,1102,1100,1,0,0,0,1103,1104,5,266,0,0,1104,1106,1,0,0,0,1105,1093, + 1,0,0,0,1105,1106,1,0,0,0,1106,1107,1,0,0,0,1107,1108,3,204,102, + 0,1108,101,1,0,0,0,1109,1112,3,104,52,0,1110,1112,3,106,53,0,1111, + 1109,1,0,0,0,1111,1110,1,0,0,0,1112,103,1,0,0,0,1113,1115,5,50,0, + 0,1114,1116,5,82,0,0,1115,1114,1,0,0,0,1115,1116,1,0,0,0,1116,1117, + 1,0,0,0,1117,1120,3,186,93,0,1118,1119,5,215,0,0,1119,1121,3,306, + 153,0,1120,1118,1,0,0,0,1120,1121,1,0,0,0,1121,105,1,0,0,0,1122, + 1123,5,50,0,0,1123,1128,3,186,93,0,1124,1126,5,9,0,0,1125,1124,1, + 0,0,0,1125,1126,1,0,0,0,1126,1127,1,0,0,0,1127,1129,3,358,179,0, + 1128,1125,1,0,0,0,1128,1129,1,0,0,0,1129,1130,1,0,0,0,1130,1139, + 5,82,0,0,1131,1136,3,280,140,0,1132,1133,5,263,0,0,1133,1135,3,280, + 140,0,1134,1132,1,0,0,0,1135,1138,1,0,0,0,1136,1134,1,0,0,0,1136, + 1137,1,0,0,0,1137,1140,1,0,0,0,1138,1136,1,0,0,0,1139,1131,1,0,0, + 0,1139,1140,1,0,0,0,1140,1143,1,0,0,0,1141,1142,5,215,0,0,1142,1144, + 3,306,153,0,1143,1141,1,0,0,0,1143,1144,1,0,0,0,1144,107,1,0,0,0, + 1145,1146,5,54,0,0,1146,1147,3,186,93,0,1147,1148,5,176,0,0,1148, + 1158,3,198,99,0,1149,1150,5,82,0,0,1150,1155,3,280,140,0,1151,1152, + 5,263,0,0,1152,1154,3,280,140,0,1153,1151,1,0,0,0,1154,1157,1,0, + 0,0,1155,1153,1,0,0,0,1155,1156,1,0,0,0,1156,1159,1,0,0,0,1157,1155, + 1,0,0,0,1158,1149,1,0,0,0,1158,1159,1,0,0,0,1159,1162,1,0,0,0,1160, + 1161,5,215,0,0,1161,1163,3,306,153,0,1162,1160,1,0,0,0,1162,1163, + 1,0,0,0,1163,109,1,0,0,0,1164,1165,5,207,0,0,1165,1167,5,103,0,0, + 1166,1168,5,188,0,0,1167,1166,1,0,0,0,1167,1168,1,0,0,0,1168,1169, + 1,0,0,0,1169,1171,3,186,93,0,1170,1172,3,292,146,0,1171,1170,1,0, + 0,0,1171,1172,1,0,0,0,1172,1173,1,0,0,0,1173,1174,3,204,102,0,1174, + 111,1,0,0,0,1175,1188,3,132,66,0,1176,1188,3,134,67,0,1177,1188, + 3,136,68,0,1178,1188,3,130,65,0,1179,1188,3,128,64,0,1180,1188,3, + 126,63,0,1181,1188,3,124,62,0,1182,1188,3,122,61,0,1183,1188,3,120, + 60,0,1184,1188,3,118,59,0,1185,1188,3,116,58,0,1186,1188,3,114,57, + 0,1187,1175,1,0,0,0,1187,1176,1,0,0,0,1187,1177,1,0,0,0,1187,1178, + 1,0,0,0,1187,1179,1,0,0,0,1187,1180,1,0,0,0,1187,1181,1,0,0,0,1187, + 1182,1,0,0,0,1187,1183,1,0,0,0,1187,1184,1,0,0,0,1187,1185,1,0,0, + 0,1187,1186,1,0,0,0,1188,113,1,0,0,0,1189,1190,5,179,0,0,1190,1202, + 7,6,0,0,1191,1193,5,115,0,0,1192,1191,1,0,0,0,1192,1193,1,0,0,0, + 1193,1194,1,0,0,0,1194,1199,3,314,157,0,1195,1196,5,271,0,0,1196, + 1198,3,314,157,0,1197,1195,1,0,0,0,1198,1201,1,0,0,0,1199,1197,1, + 0,0,0,1199,1200,1,0,0,0,1200,1203,1,0,0,0,1201,1199,1,0,0,0,1202, + 1192,1,0,0,0,1202,1203,1,0,0,0,1203,115,1,0,0,0,1204,1205,5,179, + 0,0,1205,1208,5,189,0,0,1206,1207,5,94,0,0,1207,1209,3,186,93,0, + 1208,1206,1,0,0,0,1208,1209,1,0,0,0,1209,1221,1,0,0,0,1210,1212, + 5,115,0,0,1211,1210,1,0,0,0,1211,1212,1,0,0,0,1212,1213,1,0,0,0, + 1213,1218,3,314,157,0,1214,1215,5,271,0,0,1215,1217,3,314,157,0, + 1216,1214,1,0,0,0,1217,1220,1,0,0,0,1218,1216,1,0,0,0,1218,1219, + 1,0,0,0,1219,1222,1,0,0,0,1220,1218,1,0,0,0,1221,1211,1,0,0,0,1221, + 1222,1,0,0,0,1222,117,1,0,0,0,1223,1225,5,179,0,0,1224,1226,7,7, + 0,0,1225,1224,1,0,0,0,1225,1226,1,0,0,0,1226,1227,1,0,0,0,1227,1230, + 5,85,0,0,1228,1229,5,94,0,0,1229,1231,3,184,92,0,1230,1228,1,0,0, + 0,1230,1231,1,0,0,0,1231,1243,1,0,0,0,1232,1234,5,115,0,0,1233,1232, + 1,0,0,0,1233,1234,1,0,0,0,1234,1235,1,0,0,0,1235,1240,3,314,157, + 0,1236,1237,5,271,0,0,1237,1239,3,314,157,0,1238,1236,1,0,0,0,1239, + 1242,1,0,0,0,1240,1238,1,0,0,0,1240,1241,1,0,0,0,1241,1244,1,0,0, + 0,1242,1240,1,0,0,0,1243,1233,1,0,0,0,1243,1244,1,0,0,0,1244,119, + 1,0,0,0,1245,1246,5,179,0,0,1246,1247,5,37,0,0,1247,1248,5,188,0, + 0,1248,1249,3,186,93,0,1249,121,1,0,0,0,1250,1251,5,179,0,0,1251, + 1252,5,37,0,0,1252,1253,5,212,0,0,1253,1254,3,188,94,0,1254,123, + 1,0,0,0,1255,1256,5,179,0,0,1256,1257,5,188,0,0,1257,1258,5,182, + 0,0,1258,1259,3,186,93,0,1259,125,1,0,0,0,1260,1261,5,179,0,0,1261, + 1262,5,32,0,0,1262,1263,5,182,0,0,1263,1264,3,186,93,0,1264,127, + 1,0,0,0,1265,1267,5,179,0,0,1266,1268,5,154,0,0,1267,1266,1,0,0, + 0,1267,1268,1,0,0,0,1268,1269,1,0,0,0,1269,1270,5,146,0,0,1270,1271, + 3,186,93,0,1271,129,1,0,0,0,1272,1273,5,179,0,0,1273,1274,5,73,0, + 0,1274,1275,5,94,0,0,1275,1285,3,186,93,0,1276,1277,5,145,0,0,1277, + 1278,5,265,0,0,1278,1281,3,304,152,0,1279,1280,5,263,0,0,1280,1282, + 3,304,152,0,1281,1279,1,0,0,0,1281,1282,1,0,0,0,1282,1283,1,0,0, + 0,1283,1284,5,266,0,0,1284,1286,1,0,0,0,1285,1276,1,0,0,0,1285,1286, + 1,0,0,0,1286,131,1,0,0,0,1287,1289,5,179,0,0,1288,1290,5,39,0,0, + 1289,1288,1,0,0,0,1289,1290,1,0,0,0,1290,1291,1,0,0,0,1291,1292, + 5,167,0,0,1292,133,1,0,0,0,1293,1294,5,179,0,0,1294,1295,5,166,0, + 0,1295,1296,5,86,0,0,1296,1297,5,87,0,0,1297,1298,3,358,179,0,1298, + 135,1,0,0,0,1299,1314,3,138,69,0,1300,1314,3,140,70,0,1301,1314, + 3,142,71,0,1302,1303,5,179,0,0,1303,1304,5,86,0,0,1304,1305,7,8, + 0,0,1305,1311,3,358,179,0,1306,1307,5,136,0,0,1307,1309,7,9,0,0, + 1308,1310,3,354,177,0,1309,1308,1,0,0,0,1309,1310,1,0,0,0,1310,1312, + 1,0,0,0,1311,1306,1,0,0,0,1311,1312,1,0,0,0,1312,1314,1,0,0,0,1313, + 1299,1,0,0,0,1313,1300,1,0,0,0,1313,1301,1,0,0,0,1313,1302,1,0,0, + 0,1314,137,1,0,0,0,1315,1316,5,179,0,0,1316,1317,5,86,0,0,1317,1318, + 7,8,0,0,1318,1324,3,358,179,0,1319,1320,5,136,0,0,1320,1322,5,46, + 0,0,1321,1323,3,184,92,0,1322,1321,1,0,0,0,1322,1323,1,0,0,0,1323, + 1325,1,0,0,0,1324,1319,1,0,0,0,1324,1325,1,0,0,0,1325,139,1,0,0, + 0,1326,1327,5,179,0,0,1327,1328,5,86,0,0,1328,1329,7,8,0,0,1329, + 1335,3,358,179,0,1330,1331,5,136,0,0,1331,1333,5,188,0,0,1332,1334, + 3,186,93,0,1333,1332,1,0,0,0,1333,1334,1,0,0,0,1334,1336,1,0,0,0, + 1335,1330,1,0,0,0,1335,1336,1,0,0,0,1336,141,1,0,0,0,1337,1338,5, + 179,0,0,1338,1339,5,86,0,0,1339,1340,7,8,0,0,1340,1346,3,358,179, + 0,1341,1342,5,136,0,0,1342,1344,5,32,0,0,1343,1345,3,192,96,0,1344, + 1343,1,0,0,0,1344,1345,1,0,0,0,1345,1347,1,0,0,0,1346,1341,1,0,0, + 0,1346,1347,1,0,0,0,1347,143,1,0,0,0,1348,1352,3,146,73,0,1349,1352, + 3,148,74,0,1350,1352,3,150,75,0,1351,1348,1,0,0,0,1351,1349,1,0, + 0,0,1351,1350,1,0,0,0,1352,145,1,0,0,0,1353,1354,5,34,0,0,1354,1355, + 5,136,0,0,1355,1356,5,46,0,0,1356,1357,3,184,92,0,1357,1360,5,108, + 0,0,1358,1361,3,314,157,0,1359,1361,5,133,0,0,1360,1358,1,0,0,0, + 1360,1359,1,0,0,0,1361,147,1,0,0,0,1362,1363,5,34,0,0,1363,1364, + 5,136,0,0,1364,1365,5,188,0,0,1365,1366,3,186,93,0,1366,1369,5,108, + 0,0,1367,1370,3,314,157,0,1368,1370,5,133,0,0,1369,1367,1,0,0,0, + 1369,1368,1,0,0,0,1370,149,1,0,0,0,1371,1372,5,34,0,0,1372,1373, + 5,136,0,0,1373,1374,5,32,0,0,1374,1375,3,192,96,0,1375,1378,5,108, + 0,0,1376,1379,3,314,157,0,1377,1379,5,133,0,0,1378,1376,1,0,0,0, + 1378,1377,1,0,0,0,1379,151,1,0,0,0,1380,1381,5,67,0,0,1381,1382, + 3,4,2,0,1382,153,1,0,0,0,1383,1389,5,176,0,0,1384,1390,5,2,0,0,1385, + 1386,3,358,179,0,1386,1387,5,249,0,0,1387,1388,3,304,152,0,1388, + 1390,1,0,0,0,1389,1384,1,0,0,0,1389,1385,1,0,0,0,1389,1390,1,0,0, + 0,1390,155,1,0,0,0,1391,1392,5,264,0,0,1392,1393,5,180,0,0,1393, + 1403,5,265,0,0,1394,1396,3,314,157,0,1395,1394,1,0,0,0,1395,1396, + 1,0,0,0,1396,1404,1,0,0,0,1397,1400,3,314,157,0,1398,1399,5,263, + 0,0,1399,1401,3,304,152,0,1400,1398,1,0,0,0,1400,1401,1,0,0,0,1401, + 1404,1,0,0,0,1402,1404,3,304,152,0,1403,1395,1,0,0,0,1403,1397,1, + 0,0,0,1403,1402,1,0,0,0,1404,1405,1,0,0,0,1405,1406,5,266,0,0,1406, + 157,1,0,0,0,1407,1408,5,107,0,0,1408,1409,5,121,0,0,1409,1410,3, + 186,93,0,1410,159,1,0,0,0,1411,1412,5,118,0,0,1412,1413,5,45,0,0, + 1413,1414,5,98,0,0,1414,1416,5,274,0,0,1415,1417,5,144,0,0,1416, + 1415,1,0,0,0,1416,1417,1,0,0,0,1417,1418,1,0,0,0,1418,1419,5,103, + 0,0,1419,1420,5,188,0,0,1420,1430,3,186,93,0,1421,1422,5,145,0,0, + 1422,1423,5,265,0,0,1423,1426,3,304,152,0,1424,1425,5,263,0,0,1425, + 1427,3,304,152,0,1426,1424,1,0,0,0,1426,1427,1,0,0,0,1427,1428,1, + 0,0,0,1428,1429,5,266,0,0,1429,1431,1,0,0,0,1430,1421,1,0,0,0,1430, + 1431,1,0,0,0,1431,161,1,0,0,0,1432,1436,3,164,82,0,1433,1436,3,166, + 83,0,1434,1436,3,168,84,0,1435,1432,1,0,0,0,1435,1433,1,0,0,0,1435, + 1434,1,0,0,0,1436,163,1,0,0,0,1437,1438,5,162,0,0,1438,1451,3,186, + 93,0,1439,1440,5,145,0,0,1440,1441,5,265,0,0,1441,1446,3,304,152, + 0,1442,1443,5,263,0,0,1443,1445,3,304,152,0,1444,1442,1,0,0,0,1445, + 1448,1,0,0,0,1446,1447,1,0,0,0,1446,1444,1,0,0,0,1447,1449,1,0,0, + 0,1448,1446,1,0,0,0,1449,1450,5,266,0,0,1450,1452,1,0,0,0,1451,1439, + 1,0,0,0,1451,1452,1,0,0,0,1452,165,1,0,0,0,1453,1454,5,162,0,0,1454, + 1455,5,13,0,0,1455,167,1,0,0,0,1456,1457,5,162,0,0,1457,1458,5,85, + 0,0,1458,1459,3,190,95,0,1459,169,1,0,0,0,1460,1461,5,93,0,0,1461, + 1462,5,66,0,0,1462,171,1,0,0,0,1463,1464,5,93,0,0,1464,1465,5,132, + 0,0,1465,1466,5,66,0,0,1466,173,1,0,0,0,1467,1468,3,354,177,0,1468, + 175,1,0,0,0,1469,1470,3,354,177,0,1470,177,1,0,0,0,1471,1472,3,354, + 177,0,1472,179,1,0,0,0,1473,1474,3,354,177,0,1474,181,1,0,0,0,1475, + 1476,3,354,177,0,1476,183,1,0,0,0,1477,1478,3,354,177,0,1478,185, + 1,0,0,0,1479,1484,3,358,179,0,1480,1481,5,261,0,0,1481,1483,3,358, + 179,0,1482,1480,1,0,0,0,1483,1486,1,0,0,0,1484,1482,1,0,0,0,1484, + 1485,1,0,0,0,1485,187,1,0,0,0,1486,1484,1,0,0,0,1487,1492,3,358, + 179,0,1488,1489,5,261,0,0,1489,1491,3,358,179,0,1490,1488,1,0,0, + 0,1491,1494,1,0,0,0,1492,1490,1,0,0,0,1492,1493,1,0,0,0,1493,189, + 1,0,0,0,1494,1492,1,0,0,0,1495,1498,3,362,181,0,1496,1498,3,354, + 177,0,1497,1495,1,0,0,0,1497,1496,1,0,0,0,1498,191,1,0,0,0,1499, + 1502,3,354,177,0,1500,1502,4,96,0,0,1501,1499,1,0,0,0,1501,1500, + 1,0,0,0,1502,193,1,0,0,0,1503,1506,3,186,93,0,1504,1506,3,188,94, + 0,1505,1503,1,0,0,0,1505,1504,1,0,0,0,1506,195,1,0,0,0,1507,1508, + 5,21,0,0,1508,1509,5,26,0,0,1509,1511,3,292,146,0,1510,1507,1,0, + 0,0,1510,1511,1,0,0,0,1511,1514,1,0,0,0,1512,1513,5,34,0,0,1513, + 1515,3,314,157,0,1514,1512,1,0,0,0,1514,1515,1,0,0,0,1515,1519,1, + 0,0,0,1516,1517,5,168,0,0,1517,1518,5,79,0,0,1518,1520,3,254,127, + 0,1519,1516,1,0,0,0,1519,1520,1,0,0,0,1520,1524,1,0,0,0,1521,1522, + 5,216,0,0,1522,1523,5,175,0,0,1523,1525,3,248,124,0,1524,1521,1, + 0,0,0,1524,1525,1,0,0,0,1525,1529,1,0,0,0,1526,1527,5,23,0,0,1527, + 1528,5,9,0,0,1528,1530,3,230,115,0,1529,1526,1,0,0,0,1529,1530,1, + 0,0,0,1530,1533,1,0,0,0,1531,1532,5,24,0,0,1532,1534,3,314,157,0, + 1533,1531,1,0,0,0,1533,1534,1,0,0,0,1534,1545,1,0,0,0,1535,1536, + 5,30,0,0,1536,1537,5,94,0,0,1537,1542,3,354,177,0,1538,1539,5,216, + 0,0,1539,1540,5,151,0,0,1540,1541,5,249,0,0,1541,1543,5,277,0,0, + 1542,1538,1,0,0,0,1542,1543,1,0,0,0,1543,1546,1,0,0,0,1544,1546, + 5,197,0,0,1545,1535,1,0,0,0,1545,1544,1,0,0,0,1545,1546,1,0,0,0, + 1546,1549,1,0,0,0,1547,1548,5,25,0,0,1548,1550,3,248,124,0,1549, + 1547,1,0,0,0,1549,1550,1,0,0,0,1550,197,1,0,0,0,1551,1556,3,200, + 100,0,1552,1553,5,263,0,0,1553,1555,3,200,100,0,1554,1552,1,0,0, + 0,1555,1558,1,0,0,0,1556,1554,1,0,0,0,1556,1557,1,0,0,0,1557,199, + 1,0,0,0,1558,1556,1,0,0,0,1559,1560,3,354,177,0,1560,1561,5,249, + 0,0,1561,1562,3,304,152,0,1562,201,1,0,0,0,1563,1564,5,265,0,0,1564, + 1567,3,182,91,0,1565,1566,5,34,0,0,1566,1568,3,314,157,0,1567,1565, + 1,0,0,0,1567,1568,1,0,0,0,1568,1577,1,0,0,0,1569,1570,5,263,0,0, + 1570,1573,3,182,91,0,1571,1572,5,34,0,0,1572,1574,3,314,157,0,1573, + 1571,1,0,0,0,1573,1574,1,0,0,0,1574,1576,1,0,0,0,1575,1569,1,0,0, + 0,1576,1579,1,0,0,0,1577,1575,1,0,0,0,1577,1578,1,0,0,0,1578,1580, + 1,0,0,0,1579,1577,1,0,0,0,1580,1581,5,266,0,0,1581,203,1,0,0,0,1582, + 1584,3,206,103,0,1583,1582,1,0,0,0,1583,1584,1,0,0,0,1584,1585,1, + 0,0,0,1585,1586,3,258,129,0,1586,205,1,0,0,0,1587,1588,5,216,0,0, + 1588,1593,3,274,137,0,1589,1590,5,263,0,0,1590,1592,3,274,137,0, + 1591,1589,1,0,0,0,1592,1595,1,0,0,0,1593,1591,1,0,0,0,1593,1594, + 1,0,0,0,1594,207,1,0,0,0,1595,1593,1,0,0,0,1596,1597,5,150,0,0,1597, + 1598,5,110,0,0,1598,1600,3,292,146,0,1599,1601,5,53,0,0,1600,1599, + 1,0,0,0,1600,1601,1,0,0,0,1601,1605,1,0,0,0,1602,1606,5,225,0,0, + 1603,1604,5,263,0,0,1604,1606,5,225,0,0,1605,1602,1,0,0,0,1605,1603, + 1,0,0,0,1605,1606,1,0,0,0,1606,1610,1,0,0,0,1607,1611,5,226,0,0, + 1608,1609,5,263,0,0,1609,1611,5,226,0,0,1610,1607,1,0,0,0,1610,1608, + 1,0,0,0,1610,1611,1,0,0,0,1611,1624,1,0,0,0,1612,1613,5,263,0,0, + 1613,1616,3,210,105,0,1614,1616,3,210,105,0,1615,1612,1,0,0,0,1615, + 1614,1,0,0,0,1616,1621,1,0,0,0,1617,1618,5,263,0,0,1618,1620,3,210, + 105,0,1619,1617,1,0,0,0,1620,1623,1,0,0,0,1621,1622,1,0,0,0,1621, + 1619,1,0,0,0,1622,1625,1,0,0,0,1623,1621,1,0,0,0,1624,1615,1,0,0, + 0,1624,1625,1,0,0,0,1625,209,1,0,0,0,1626,1627,5,81,0,0,1627,1628, + 5,110,0,0,1628,1629,3,292,146,0,1629,1630,5,224,0,0,1630,1631,3, + 186,93,0,1631,1633,3,292,146,0,1632,1634,5,53,0,0,1633,1632,1,0, + 0,0,1633,1634,1,0,0,0,1634,1636,1,0,0,0,1635,1637,5,225,0,0,1636, + 1635,1,0,0,0,1636,1637,1,0,0,0,1637,1639,1,0,0,0,1638,1640,5,226, + 0,0,1639,1638,1,0,0,0,1639,1640,1,0,0,0,1640,211,1,0,0,0,1641,1642, + 3,192,96,0,1642,1645,3,328,164,0,1643,1644,5,34,0,0,1644,1646,3, + 314,157,0,1645,1643,1,0,0,0,1645,1646,1,0,0,0,1646,213,1,0,0,0,1647, + 1648,3,182,91,0,1648,1651,3,328,164,0,1649,1650,5,34,0,0,1650,1652, + 3,314,157,0,1651,1649,1,0,0,0,1651,1652,1,0,0,0,1652,215,1,0,0,0, + 1653,1654,3,218,109,0,1654,217,1,0,0,0,1655,1656,3,182,91,0,1656, + 1664,3,328,164,0,1657,1661,3,224,112,0,1658,1660,3,224,112,0,1659, + 1658,1,0,0,0,1660,1663,1,0,0,0,1661,1662,1,0,0,0,1661,1659,1,0,0, + 0,1662,1665,1,0,0,0,1663,1661,1,0,0,0,1664,1657,1,0,0,0,1664,1665, + 1,0,0,0,1665,1668,1,0,0,0,1666,1667,5,34,0,0,1667,1669,3,314,157, + 0,1668,1666,1,0,0,0,1668,1669,1,0,0,0,1669,1672,1,0,0,0,1670,1671, + 5,150,0,0,1671,1673,5,110,0,0,1672,1670,1,0,0,0,1672,1673,1,0,0, + 0,1673,219,1,0,0,0,1674,1676,3,212,106,0,1675,1674,1,0,0,0,1675, + 1676,1,0,0,0,1676,1684,1,0,0,0,1677,1681,3,224,112,0,1678,1680,3, + 224,112,0,1679,1678,1,0,0,0,1680,1683,1,0,0,0,1681,1682,1,0,0,0, + 1681,1679,1,0,0,0,1682,1685,1,0,0,0,1683,1681,1,0,0,0,1684,1677, + 1,0,0,0,1684,1685,1,0,0,0,1685,221,1,0,0,0,1686,1687,3,182,91,0, + 1687,1690,3,328,164,0,1688,1689,5,34,0,0,1689,1691,3,314,157,0,1690, + 1688,1,0,0,0,1690,1691,1,0,0,0,1691,1699,1,0,0,0,1692,1696,3,224, + 112,0,1693,1695,3,224,112,0,1694,1693,1,0,0,0,1695,1698,1,0,0,0, + 1696,1697,1,0,0,0,1696,1694,1,0,0,0,1697,1700,1,0,0,0,1698,1696, + 1,0,0,0,1699,1692,1,0,0,0,1699,1700,1,0,0,0,1700,223,1,0,0,0,1701, + 1703,5,132,0,0,1702,1701,1,0,0,0,1702,1703,1,0,0,0,1703,1704,1,0, + 0,0,1704,1707,5,133,0,0,1705,1707,3,226,113,0,1706,1702,1,0,0,0, + 1706,1705,1,0,0,0,1707,225,1,0,0,0,1708,1709,5,60,0,0,1709,1717, + 3,304,152,0,1710,1711,5,35,0,0,1711,1717,3,304,152,0,1712,1713,5, + 51,0,0,1713,1717,3,304,152,0,1714,1715,5,16,0,0,1715,1717,3,360, + 180,0,1716,1708,1,0,0,0,1716,1710,1,0,0,0,1716,1712,1,0,0,0,1716, + 1714,1,0,0,0,1717,227,1,0,0,0,1718,1719,7,10,0,0,1719,229,1,0,0, + 0,1720,1721,7,11,0,0,1721,231,1,0,0,0,1722,1727,3,234,117,0,1723, + 1724,5,263,0,0,1724,1726,3,234,117,0,1725,1723,1,0,0,0,1726,1729, + 1,0,0,0,1727,1728,1,0,0,0,1727,1725,1,0,0,0,1728,1732,1,0,0,0,1729, + 1727,1,0,0,0,1730,1731,5,263,0,0,1731,1733,3,236,118,0,1732,1730, + 1,0,0,0,1732,1733,1,0,0,0,1733,1736,1,0,0,0,1734,1736,3,236,118, + 0,1735,1722,1,0,0,0,1735,1734,1,0,0,0,1736,233,1,0,0,0,1737,1739, + 5,89,0,0,1738,1740,3,292,146,0,1739,1738,1,0,0,0,1739,1740,1,0,0, + 0,1740,1741,1,0,0,0,1741,1742,5,146,0,0,1742,1743,3,360,180,0,1743, + 235,1,0,0,0,1744,1746,5,154,0,0,1745,1747,3,292,146,0,1746,1745, + 1,0,0,0,1746,1747,1,0,0,0,1747,1748,1,0,0,0,1748,1749,5,265,0,0, + 1749,1750,5,145,0,0,1750,1756,3,238,119,0,1751,1752,5,263,0,0,1752, + 1753,5,145,0,0,1753,1755,3,238,119,0,1754,1751,1,0,0,0,1755,1758, + 1,0,0,0,1756,1757,1,0,0,0,1756,1754,1,0,0,0,1757,1759,1,0,0,0,1758, + 1756,1,0,0,0,1759,1760,5,266,0,0,1760,237,1,0,0,0,1761,1762,5,210, + 0,0,1762,1763,3,244,122,0,1763,1764,3,304,152,0,1764,1777,1,0,0, + 0,1765,1766,3,304,152,0,1766,1767,3,242,121,0,1767,1769,1,0,0,0, + 1768,1765,1,0,0,0,1768,1769,1,0,0,0,1769,1770,1,0,0,0,1770,1774, + 5,211,0,0,1771,1772,3,242,121,0,1772,1773,3,304,152,0,1773,1775, + 1,0,0,0,1774,1771,1,0,0,0,1774,1775,1,0,0,0,1775,1777,1,0,0,0,1776, + 1761,1,0,0,0,1776,1768,1,0,0,0,1777,239,1,0,0,0,1778,1779,5,30,0, + 0,1779,1780,5,94,0,0,1780,1785,3,358,179,0,1781,1782,5,216,0,0,1782, + 1783,5,151,0,0,1783,1784,5,249,0,0,1784,1786,3,360,180,0,1785,1781, + 1,0,0,0,1785,1786,1,0,0,0,1786,1789,1,0,0,0,1787,1789,5,197,0,0, + 1788,1778,1,0,0,0,1788,1787,1,0,0,0,1789,241,1,0,0,0,1790,1796,1, + 0,0,0,1791,1796,5,251,0,0,1792,1796,5,252,0,0,1793,1796,5,253,0, + 0,1794,1796,5,254,0,0,1795,1790,1,0,0,0,1795,1791,1,0,0,0,1795,1792, + 1,0,0,0,1795,1793,1,0,0,0,1795,1794,1,0,0,0,1796,243,1,0,0,0,1797, + 1806,5,249,0,0,1798,1806,5,250,0,0,1799,1806,5,115,0,0,1800,1806, + 5,164,0,0,1801,1806,5,163,0,0,1802,1806,5,15,0,0,1803,1806,5,94, + 0,0,1804,1806,3,242,121,0,1805,1797,1,0,0,0,1805,1798,1,0,0,0,1805, + 1799,1,0,0,0,1805,1800,1,0,0,0,1805,1801,1,0,0,0,1805,1802,1,0,0, + 0,1805,1803,1,0,0,0,1805,1804,1,0,0,0,1806,245,1,0,0,0,1807,1808, + 5,115,0,0,1808,1811,3,354,177,0,1809,1810,7,12,0,0,1810,1812,5,153, + 0,0,1811,1809,1,0,0,0,1811,1812,1,0,0,0,1812,247,1,0,0,0,1813,1814, + 5,265,0,0,1814,1819,3,256,128,0,1815,1816,5,263,0,0,1816,1818,3, + 256,128,0,1817,1815,1,0,0,0,1818,1821,1,0,0,0,1819,1817,1,0,0,0, + 1819,1820,1,0,0,0,1820,1822,1,0,0,0,1821,1819,1,0,0,0,1822,1823, + 5,266,0,0,1823,249,1,0,0,0,1824,1825,5,265,0,0,1825,1830,3,212,106, + 0,1826,1827,5,263,0,0,1827,1829,3,212,106,0,1828,1826,1,0,0,0,1829, + 1832,1,0,0,0,1830,1831,1,0,0,0,1830,1828,1,0,0,0,1831,1833,1,0,0, + 0,1832,1830,1,0,0,0,1833,1834,5,266,0,0,1834,251,1,0,0,0,1835,1840, + 3,304,152,0,1836,1837,5,263,0,0,1837,1839,3,304,152,0,1838,1836, + 1,0,0,0,1839,1842,1,0,0,0,1840,1838,1,0,0,0,1840,1841,1,0,0,0,1841, + 253,1,0,0,0,1842,1840,1,0,0,0,1843,1853,5,52,0,0,1844,1845,5,71, + 0,0,1845,1846,5,191,0,0,1846,1847,5,26,0,0,1847,1851,3,314,157,0, + 1848,1849,5,63,0,0,1849,1850,5,26,0,0,1850,1852,3,314,157,0,1851, + 1848,1,0,0,0,1851,1852,1,0,0,0,1852,1854,1,0,0,0,1853,1844,1,0,0, + 0,1853,1854,1,0,0,0,1854,1859,1,0,0,0,1855,1856,5,117,0,0,1856,1857, + 5,191,0,0,1857,1858,5,26,0,0,1858,1860,3,314,157,0,1859,1855,1,0, + 0,0,1859,1860,1,0,0,0,1860,255,1,0,0,0,1861,1864,3,358,179,0,1862, + 1863,5,249,0,0,1863,1865,3,304,152,0,1864,1862,1,0,0,0,1864,1865, + 1,0,0,0,1865,257,1,0,0,0,1866,1877,3,260,130,0,1867,1868,5,139,0, + 0,1868,1869,5,26,0,0,1869,1874,3,264,132,0,1870,1871,5,263,0,0,1871, + 1873,3,264,132,0,1872,1870,1,0,0,0,1873,1876,1,0,0,0,1874,1872,1, + 0,0,0,1874,1875,1,0,0,0,1875,1878,1,0,0,0,1876,1874,1,0,0,0,1877, + 1867,1,0,0,0,1877,1878,1,0,0,0,1878,1885,1,0,0,0,1879,1880,5,116, + 0,0,1880,1883,3,304,152,0,1881,1882,5,135,0,0,1882,1884,5,277,0, + 0,1883,1881,1,0,0,0,1883,1884,1,0,0,0,1884,1886,1,0,0,0,1885,1879, + 1,0,0,0,1885,1886,1,0,0,0,1886,259,1,0,0,0,1887,1888,6,130,-1,0, + 1888,1889,3,262,131,0,1889,1904,1,0,0,0,1890,1891,10,2,0,0,1891, + 1893,5,100,0,0,1892,1894,3,276,138,0,1893,1892,1,0,0,0,1893,1894, + 1,0,0,0,1894,1895,1,0,0,0,1895,1903,3,260,130,3,1896,1897,10,1,0, + 0,1897,1899,7,13,0,0,1898,1900,3,276,138,0,1899,1898,1,0,0,0,1899, + 1900,1,0,0,0,1900,1901,1,0,0,0,1901,1903,3,260,130,2,1902,1890,1, + 0,0,0,1902,1896,1,0,0,0,1903,1906,1,0,0,0,1904,1902,1,0,0,0,1904, + 1905,1,0,0,0,1905,261,1,0,0,0,1906,1904,1,0,0,0,1907,1924,3,266, + 133,0,1908,1909,5,188,0,0,1909,1924,3,186,93,0,1910,1911,5,211,0, + 0,1911,1916,3,304,152,0,1912,1913,5,263,0,0,1913,1915,3,304,152, + 0,1914,1912,1,0,0,0,1915,1918,1,0,0,0,1916,1914,1,0,0,0,1916,1917, + 1,0,0,0,1917,1924,1,0,0,0,1918,1916,1,0,0,0,1919,1920,5,265,0,0, + 1920,1921,3,258,129,0,1921,1922,5,266,0,0,1922,1924,1,0,0,0,1923, + 1907,1,0,0,0,1923,1908,1,0,0,0,1923,1910,1,0,0,0,1923,1919,1,0,0, + 0,1924,263,1,0,0,0,1925,1927,3,302,151,0,1926,1928,7,14,0,0,1927, + 1926,1,0,0,0,1927,1928,1,0,0,0,1928,1931,1,0,0,0,1929,1930,5,134, + 0,0,1930,1932,7,15,0,0,1931,1929,1,0,0,0,1931,1932,1,0,0,0,1932, + 265,1,0,0,0,1933,1935,5,174,0,0,1934,1936,3,276,138,0,1935,1934, + 1,0,0,0,1935,1936,1,0,0,0,1936,1938,1,0,0,0,1937,1939,5,183,0,0, + 1938,1937,1,0,0,0,1938,1939,1,0,0,0,1939,1940,1,0,0,0,1940,1945, + 3,278,139,0,1941,1942,5,263,0,0,1942,1944,3,278,139,0,1943,1941, + 1,0,0,0,1944,1947,1,0,0,0,1945,1943,1,0,0,0,1945,1946,1,0,0,0,1946, + 1957,1,0,0,0,1947,1945,1,0,0,0,1948,1949,5,82,0,0,1949,1954,3,280, + 140,0,1950,1951,5,263,0,0,1951,1953,3,280,140,0,1952,1950,1,0,0, + 0,1953,1956,1,0,0,0,1954,1952,1,0,0,0,1954,1955,1,0,0,0,1955,1958, + 1,0,0,0,1956,1954,1,0,0,0,1957,1948,1,0,0,0,1957,1958,1,0,0,0,1958, + 1961,1,0,0,0,1959,1960,5,215,0,0,1960,1962,3,306,153,0,1961,1959, + 1,0,0,0,1961,1962,1,0,0,0,1962,1966,1,0,0,0,1963,1964,5,87,0,0,1964, + 1965,5,26,0,0,1965,1967,3,268,134,0,1966,1963,1,0,0,0,1966,1967, + 1,0,0,0,1967,1970,1,0,0,0,1968,1969,5,90,0,0,1969,1971,3,306,153, + 0,1970,1968,1,0,0,0,1970,1971,1,0,0,0,1971,267,1,0,0,0,1972,1974, + 3,276,138,0,1973,1972,1,0,0,0,1973,1974,1,0,0,0,1974,1975,1,0,0, + 0,1975,1980,3,270,135,0,1976,1977,5,263,0,0,1977,1979,3,270,135, + 0,1978,1976,1,0,0,0,1979,1982,1,0,0,0,1980,1978,1,0,0,0,1980,1981, + 1,0,0,0,1981,269,1,0,0,0,1982,1980,1,0,0,0,1983,1984,3,272,136,0, + 1984,271,1,0,0,0,1985,1994,5,265,0,0,1986,1991,3,302,151,0,1987, + 1988,5,263,0,0,1988,1990,3,302,151,0,1989,1987,1,0,0,0,1990,1993, + 1,0,0,0,1991,1989,1,0,0,0,1991,1992,1,0,0,0,1992,1995,1,0,0,0,1993, + 1991,1,0,0,0,1994,1986,1,0,0,0,1994,1995,1,0,0,0,1995,1996,1,0,0, + 0,1996,1999,5,266,0,0,1997,1999,3,302,151,0,1998,1985,1,0,0,0,1998, + 1997,1,0,0,0,1999,273,1,0,0,0,2000,2002,3,358,179,0,2001,2003,3, + 292,146,0,2002,2001,1,0,0,0,2002,2003,1,0,0,0,2003,2004,1,0,0,0, + 2004,2005,5,9,0,0,2005,2006,3,296,148,0,2006,275,1,0,0,0,2007,2008, + 7,16,0,0,2008,277,1,0,0,0,2009,2014,3,302,151,0,2010,2012,5,9,0, + 0,2011,2010,1,0,0,0,2011,2012,1,0,0,0,2012,2013,1,0,0,0,2013,2015, + 3,358,179,0,2014,2011,1,0,0,0,2014,2015,1,0,0,0,2015,2022,1,0,0, + 0,2016,2017,3,354,177,0,2017,2018,5,261,0,0,2018,2019,5,257,0,0, + 2019,2022,1,0,0,0,2020,2022,5,257,0,0,2021,2009,1,0,0,0,2021,2016, + 1,0,0,0,2021,2020,1,0,0,0,2022,279,1,0,0,0,2023,2024,6,140,-1,0, + 2024,2025,3,286,143,0,2025,2039,1,0,0,0,2026,2035,10,2,0,0,2027, + 2028,5,38,0,0,2028,2029,5,109,0,0,2029,2036,3,286,143,0,2030,2031, + 3,282,141,0,2031,2032,5,109,0,0,2032,2033,3,280,140,0,2033,2034, + 3,284,142,0,2034,2036,1,0,0,0,2035,2027,1,0,0,0,2035,2030,1,0,0, + 0,2036,2038,1,0,0,0,2037,2026,1,0,0,0,2038,2041,1,0,0,0,2039,2037, + 1,0,0,0,2039,2040,1,0,0,0,2040,281,1,0,0,0,2041,2039,1,0,0,0,2042, + 2044,5,97,0,0,2043,2042,1,0,0,0,2043,2044,1,0,0,0,2044,2074,1,0, + 0,0,2045,2047,5,114,0,0,2046,2048,5,97,0,0,2047,2046,1,0,0,0,2047, + 2048,1,0,0,0,2048,2074,1,0,0,0,2049,2051,5,165,0,0,2050,2052,5,97, + 0,0,2051,2050,1,0,0,0,2051,2052,1,0,0,0,2052,2074,1,0,0,0,2053,2055, + 5,114,0,0,2054,2056,5,141,0,0,2055,2054,1,0,0,0,2055,2056,1,0,0, + 0,2056,2074,1,0,0,0,2057,2059,5,165,0,0,2058,2060,5,141,0,0,2059, + 2058,1,0,0,0,2059,2060,1,0,0,0,2060,2074,1,0,0,0,2061,2063,5,83, + 0,0,2062,2064,5,141,0,0,2063,2062,1,0,0,0,2063,2064,1,0,0,0,2064, + 2074,1,0,0,0,2065,2066,5,114,0,0,2066,2074,5,177,0,0,2067,2068,5, + 165,0,0,2068,2074,5,177,0,0,2069,2070,5,114,0,0,2070,2074,5,7,0, + 0,2071,2072,5,165,0,0,2072,2074,5,7,0,0,2073,2043,1,0,0,0,2073,2045, + 1,0,0,0,2073,2049,1,0,0,0,2073,2053,1,0,0,0,2073,2057,1,0,0,0,2073, + 2061,1,0,0,0,2073,2065,1,0,0,0,2073,2067,1,0,0,0,2073,2069,1,0,0, + 0,2073,2071,1,0,0,0,2074,283,1,0,0,0,2075,2076,5,136,0,0,2076,2090, + 3,306,153,0,2077,2078,5,205,0,0,2078,2079,5,265,0,0,2079,2084,3, + 358,179,0,2080,2081,5,263,0,0,2081,2083,3,358,179,0,2082,2080,1, + 0,0,0,2083,2086,1,0,0,0,2084,2082,1,0,0,0,2084,2085,1,0,0,0,2085, + 2087,1,0,0,0,2086,2084,1,0,0,0,2087,2088,5,266,0,0,2088,2090,1,0, + 0,0,2089,2075,1,0,0,0,2089,2077,1,0,0,0,2090,285,1,0,0,0,2091,2104, + 3,290,145,0,2092,2093,5,190,0,0,2093,2094,3,288,144,0,2094,2095, + 5,265,0,0,2095,2096,3,304,152,0,2096,2102,5,266,0,0,2097,2098,5, + 157,0,0,2098,2099,5,265,0,0,2099,2100,3,304,152,0,2100,2101,5,266, + 0,0,2101,2103,1,0,0,0,2102,2097,1,0,0,0,2102,2103,1,0,0,0,2103,2105, + 1,0,0,0,2104,2092,1,0,0,0,2104,2105,1,0,0,0,2105,287,1,0,0,0,2106, + 2107,7,17,0,0,2107,289,1,0,0,0,2108,2116,3,294,147,0,2109,2111,5, + 9,0,0,2110,2109,1,0,0,0,2110,2111,1,0,0,0,2111,2112,1,0,0,0,2112, + 2114,3,358,179,0,2113,2115,3,292,146,0,2114,2113,1,0,0,0,2114,2115, + 1,0,0,0,2115,2117,1,0,0,0,2116,2110,1,0,0,0,2116,2117,1,0,0,0,2117, + 291,1,0,0,0,2118,2119,5,265,0,0,2119,2124,3,192,96,0,2120,2121,5, + 263,0,0,2121,2123,3,192,96,0,2122,2120,1,0,0,0,2123,2126,1,0,0,0, + 2124,2122,1,0,0,0,2124,2125,1,0,0,0,2125,2127,1,0,0,0,2126,2124, + 1,0,0,0,2127,2128,5,266,0,0,2128,293,1,0,0,0,2129,2137,3,194,97, + 0,2130,2132,5,113,0,0,2131,2130,1,0,0,0,2131,2132,1,0,0,0,2132,2133, + 1,0,0,0,2133,2137,3,296,148,0,2134,2137,3,298,149,0,2135,2137,3, + 300,150,0,2136,2129,1,0,0,0,2136,2131,1,0,0,0,2136,2134,1,0,0,0, + 2136,2135,1,0,0,0,2137,295,1,0,0,0,2138,2139,5,265,0,0,2139,2140, + 3,204,102,0,2140,2141,5,266,0,0,2141,297,1,0,0,0,2142,2143,5,201, + 0,0,2143,2144,5,265,0,0,2144,2149,3,304,152,0,2145,2146,5,263,0, + 0,2146,2148,3,304,152,0,2147,2145,1,0,0,0,2148,2151,1,0,0,0,2149, + 2147,1,0,0,0,2149,2150,1,0,0,0,2150,2152,1,0,0,0,2151,2149,1,0,0, + 0,2152,2155,5,266,0,0,2153,2154,5,216,0,0,2154,2156,5,140,0,0,2155, + 2153,1,0,0,0,2155,2156,1,0,0,0,2156,299,1,0,0,0,2157,2158,5,265, + 0,0,2158,2159,3,280,140,0,2159,2160,5,266,0,0,2160,301,1,0,0,0,2161, + 2164,3,192,96,0,2162,2164,3,304,152,0,2163,2161,1,0,0,0,2163,2162, + 1,0,0,0,2164,303,1,0,0,0,2165,2166,3,306,153,0,2166,305,1,0,0,0, + 2167,2168,6,153,-1,0,2168,2170,3,310,155,0,2169,2171,3,308,154,0, + 2170,2169,1,0,0,0,2170,2171,1,0,0,0,2171,2175,1,0,0,0,2172,2173, + 5,132,0,0,2173,2175,3,306,153,3,2174,2167,1,0,0,0,2174,2172,1,0, + 0,0,2175,2184,1,0,0,0,2176,2177,10,2,0,0,2177,2178,5,5,0,0,2178, + 2183,3,306,153,3,2179,2180,10,1,0,0,2180,2181,5,138,0,0,2181,2183, + 3,306,153,2,2182,2176,1,0,0,0,2182,2179,1,0,0,0,2183,2186,1,0,0, + 0,2184,2182,1,0,0,0,2184,2185,1,0,0,0,2185,307,1,0,0,0,2186,2184, + 1,0,0,0,2187,2188,3,316,158,0,2188,2189,3,310,155,0,2189,2246,1, + 0,0,0,2190,2191,3,316,158,0,2191,2192,3,318,159,0,2192,2193,3,296, + 148,0,2193,2246,1,0,0,0,2194,2196,5,132,0,0,2195,2194,1,0,0,0,2195, + 2196,1,0,0,0,2196,2197,1,0,0,0,2197,2198,5,15,0,0,2198,2199,3,310, + 155,0,2199,2200,5,5,0,0,2200,2201,3,310,155,0,2201,2246,1,0,0,0, + 2202,2204,5,132,0,0,2203,2202,1,0,0,0,2203,2204,1,0,0,0,2204,2205, + 1,0,0,0,2205,2206,5,94,0,0,2206,2207,5,265,0,0,2207,2212,3,304,152, + 0,2208,2209,5,263,0,0,2209,2211,3,304,152,0,2210,2208,1,0,0,0,2211, + 2214,1,0,0,0,2212,2210,1,0,0,0,2212,2213,1,0,0,0,2213,2215,1,0,0, + 0,2214,2212,1,0,0,0,2215,2216,5,266,0,0,2216,2246,1,0,0,0,2217,2219, + 5,132,0,0,2218,2217,1,0,0,0,2218,2219,1,0,0,0,2219,2220,1,0,0,0, + 2220,2221,5,94,0,0,2221,2246,3,296,148,0,2222,2224,5,132,0,0,2223, + 2222,1,0,0,0,2223,2224,1,0,0,0,2224,2225,1,0,0,0,2225,2226,7,18, + 0,0,2226,2229,3,310,155,0,2227,2228,5,62,0,0,2228,2230,3,310,155, + 0,2229,2227,1,0,0,0,2229,2230,1,0,0,0,2230,2246,1,0,0,0,2231,2232, + 7,19,0,0,2232,2246,3,310,155,0,2233,2235,5,108,0,0,2234,2236,5,132, + 0,0,2235,2234,1,0,0,0,2235,2236,1,0,0,0,2236,2237,1,0,0,0,2237,2246, + 7,20,0,0,2238,2240,5,108,0,0,2239,2241,5,132,0,0,2240,2239,1,0,0, + 0,2240,2241,1,0,0,0,2241,2242,1,0,0,0,2242,2243,5,57,0,0,2243,2244, + 5,82,0,0,2244,2246,3,310,155,0,2245,2187,1,0,0,0,2245,2190,1,0,0, + 0,2245,2195,1,0,0,0,2245,2203,1,0,0,0,2245,2218,1,0,0,0,2245,2223, + 1,0,0,0,2245,2231,1,0,0,0,2245,2233,1,0,0,0,2245,2238,1,0,0,0,2246, + 309,1,0,0,0,2247,2248,6,155,-1,0,2248,2252,3,312,156,0,2249,2250, + 7,21,0,0,2250,2252,3,310,155,4,2251,2247,1,0,0,0,2251,2249,1,0,0, + 0,2252,2264,1,0,0,0,2253,2254,10,3,0,0,2254,2255,7,22,0,0,2255,2263, + 3,310,155,4,2256,2257,10,2,0,0,2257,2258,7,21,0,0,2258,2263,3,310, + 155,3,2259,2260,10,1,0,0,2260,2261,5,260,0,0,2261,2263,3,310,155, + 2,2262,2253,1,0,0,0,2262,2256,1,0,0,0,2262,2259,1,0,0,0,2263,2266, + 1,0,0,0,2264,2262,1,0,0,0,2264,2265,1,0,0,0,2265,311,1,0,0,0,2266, + 2264,1,0,0,0,2267,2268,6,156,-1,0,2268,2514,5,133,0,0,2269,2514, + 3,322,161,0,2270,2271,3,358,179,0,2271,2272,3,314,157,0,2272,2514, + 1,0,0,0,2273,2274,5,286,0,0,2274,2514,3,314,157,0,2275,2514,3,360, + 180,0,2276,2514,3,320,160,0,2277,2514,3,314,157,0,2278,2514,5,276, + 0,0,2279,2514,5,272,0,0,2280,2281,5,148,0,0,2281,2282,5,265,0,0, + 2282,2283,3,310,155,0,2283,2284,5,94,0,0,2284,2285,3,310,155,0,2285, + 2286,5,266,0,0,2286,2514,1,0,0,0,2287,2288,5,265,0,0,2288,2291,3, + 304,152,0,2289,2290,5,9,0,0,2290,2292,3,328,164,0,2291,2289,1,0, + 0,0,2291,2292,1,0,0,0,2292,2301,1,0,0,0,2293,2294,5,263,0,0,2294, + 2297,3,304,152,0,2295,2296,5,9,0,0,2296,2298,3,328,164,0,2297,2295, + 1,0,0,0,2297,2298,1,0,0,0,2298,2300,1,0,0,0,2299,2293,1,0,0,0,2300, + 2303,1,0,0,0,2301,2302,1,0,0,0,2301,2299,1,0,0,0,2302,2304,1,0,0, + 0,2303,2301,1,0,0,0,2304,2305,5,266,0,0,2305,2514,1,0,0,0,2306,2307, + 5,168,0,0,2307,2308,5,265,0,0,2308,2313,3,304,152,0,2309,2310,5, + 263,0,0,2310,2312,3,304,152,0,2311,2309,1,0,0,0,2312,2315,1,0,0, + 0,2313,2311,1,0,0,0,2313,2314,1,0,0,0,2314,2316,1,0,0,0,2315,2313, + 1,0,0,0,2316,2317,5,266,0,0,2317,2514,1,0,0,0,2318,2319,3,190,95, + 0,2319,2320,5,265,0,0,2320,2321,5,257,0,0,2321,2323,5,266,0,0,2322, + 2324,3,338,169,0,2323,2322,1,0,0,0,2323,2324,1,0,0,0,2324,2326,1, + 0,0,0,2325,2327,3,340,170,0,2326,2325,1,0,0,0,2326,2327,1,0,0,0, + 2327,2514,1,0,0,0,2328,2329,3,190,95,0,2329,2341,5,265,0,0,2330, + 2332,3,276,138,0,2331,2330,1,0,0,0,2331,2332,1,0,0,0,2332,2333,1, + 0,0,0,2333,2338,3,304,152,0,2334,2335,5,263,0,0,2335,2337,3,304, + 152,0,2336,2334,1,0,0,0,2337,2340,1,0,0,0,2338,2336,1,0,0,0,2338, + 2339,1,0,0,0,2339,2342,1,0,0,0,2340,2338,1,0,0,0,2341,2331,1,0,0, + 0,2341,2342,1,0,0,0,2342,2353,1,0,0,0,2343,2344,5,139,0,0,2344,2345, + 5,26,0,0,2345,2350,3,264,132,0,2346,2347,5,263,0,0,2347,2349,3,264, + 132,0,2348,2346,1,0,0,0,2349,2352,1,0,0,0,2350,2348,1,0,0,0,2350, + 2351,1,0,0,0,2351,2354,1,0,0,0,2352,2350,1,0,0,0,2353,2343,1,0,0, + 0,2353,2354,1,0,0,0,2354,2355,1,0,0,0,2355,2357,5,266,0,0,2356,2358, + 3,338,169,0,2357,2356,1,0,0,0,2357,2358,1,0,0,0,2358,2360,1,0,0, + 0,2359,2361,3,340,170,0,2360,2359,1,0,0,0,2360,2361,1,0,0,0,2361, + 2514,1,0,0,0,2362,2363,3,358,179,0,2363,2364,5,273,0,0,2364,2365, + 3,304,152,0,2365,2514,1,0,0,0,2366,2375,5,265,0,0,2367,2372,3,358, + 179,0,2368,2369,5,263,0,0,2369,2371,3,358,179,0,2370,2368,1,0,0, + 0,2371,2374,1,0,0,0,2372,2370,1,0,0,0,2372,2373,1,0,0,0,2373,2376, + 1,0,0,0,2374,2372,1,0,0,0,2375,2367,1,0,0,0,2375,2376,1,0,0,0,2376, + 2377,1,0,0,0,2377,2378,5,266,0,0,2378,2379,5,273,0,0,2379,2514,3, + 304,152,0,2380,2381,5,265,0,0,2381,2382,3,204,102,0,2382,2383,5, + 266,0,0,2383,2514,1,0,0,0,2384,2385,5,66,0,0,2385,2386,5,265,0,0, + 2386,2387,3,204,102,0,2387,2388,5,266,0,0,2388,2514,1,0,0,0,2389, + 2390,5,28,0,0,2390,2392,3,310,155,0,2391,2393,3,336,168,0,2392,2391, + 1,0,0,0,2393,2394,1,0,0,0,2394,2392,1,0,0,0,2394,2395,1,0,0,0,2395, + 2398,1,0,0,0,2396,2397,5,59,0,0,2397,2399,3,304,152,0,2398,2396, + 1,0,0,0,2398,2399,1,0,0,0,2399,2400,1,0,0,0,2400,2401,5,61,0,0,2401, + 2514,1,0,0,0,2402,2404,5,28,0,0,2403,2405,3,336,168,0,2404,2403, + 1,0,0,0,2405,2406,1,0,0,0,2406,2404,1,0,0,0,2406,2407,1,0,0,0,2407, + 2410,1,0,0,0,2408,2409,5,59,0,0,2409,2411,3,304,152,0,2410,2408, + 1,0,0,0,2410,2411,1,0,0,0,2411,2412,1,0,0,0,2412,2413,5,61,0,0,2413, + 2514,1,0,0,0,2414,2415,5,29,0,0,2415,2416,5,265,0,0,2416,2417,3, + 304,152,0,2417,2418,5,9,0,0,2418,2419,3,328,164,0,2419,2420,5,266, + 0,0,2420,2514,1,0,0,0,2421,2422,5,195,0,0,2422,2423,5,265,0,0,2423, + 2424,3,304,152,0,2424,2425,5,9,0,0,2425,2426,3,328,164,0,2426,2427, + 5,266,0,0,2427,2514,1,0,0,0,2428,2429,5,8,0,0,2429,2438,5,267,0, + 0,2430,2435,3,304,152,0,2431,2432,5,263,0,0,2432,2434,3,304,152, + 0,2433,2431,1,0,0,0,2434,2437,1,0,0,0,2435,2433,1,0,0,0,2435,2436, + 1,0,0,0,2436,2439,1,0,0,0,2437,2435,1,0,0,0,2438,2430,1,0,0,0,2438, + 2439,1,0,0,0,2439,2440,1,0,0,0,2440,2514,5,268,0,0,2441,2514,3,358, + 179,0,2442,2514,5,40,0,0,2443,2447,5,42,0,0,2444,2445,5,265,0,0, + 2445,2446,5,277,0,0,2446,2448,5,266,0,0,2447,2444,1,0,0,0,2447,2448, + 1,0,0,0,2448,2514,1,0,0,0,2449,2453,5,43,0,0,2450,2451,5,265,0,0, + 2451,2452,5,277,0,0,2452,2454,5,266,0,0,2453,2450,1,0,0,0,2453,2454, + 1,0,0,0,2454,2514,1,0,0,0,2455,2459,5,119,0,0,2456,2457,5,265,0, + 0,2457,2458,5,277,0,0,2458,2460,5,266,0,0,2459,2456,1,0,0,0,2459, + 2460,1,0,0,0,2460,2514,1,0,0,0,2461,2465,5,120,0,0,2462,2463,5,265, + 0,0,2463,2464,5,277,0,0,2464,2466,5,266,0,0,2465,2462,1,0,0,0,2465, + 2466,1,0,0,0,2466,2514,1,0,0,0,2467,2514,5,44,0,0,2468,2514,5,41, + 0,0,2469,2470,5,184,0,0,2470,2471,5,265,0,0,2471,2472,3,310,155, + 0,2472,2473,5,82,0,0,2473,2476,3,310,155,0,2474,2475,5,78,0,0,2475, + 2477,3,310,155,0,2476,2474,1,0,0,0,2476,2477,1,0,0,0,2477,2478,1, + 0,0,0,2478,2479,5,266,0,0,2479,2514,1,0,0,0,2480,2481,5,131,0,0, + 2481,2482,5,265,0,0,2482,2485,3,310,155,0,2483,2484,5,263,0,0,2484, + 2486,3,326,163,0,2485,2483,1,0,0,0,2485,2486,1,0,0,0,2486,2487,1, + 0,0,0,2487,2488,5,266,0,0,2488,2514,1,0,0,0,2489,2490,5,68,0,0,2490, + 2491,5,265,0,0,2491,2492,3,358,179,0,2492,2493,5,82,0,0,2493,2494, + 3,310,155,0,2494,2495,5,266,0,0,2495,2514,1,0,0,0,2496,2497,5,265, + 0,0,2497,2498,3,304,152,0,2498,2499,5,266,0,0,2499,2514,1,0,0,0, + 2500,2501,5,88,0,0,2501,2510,5,265,0,0,2502,2507,3,354,177,0,2503, + 2504,5,263,0,0,2504,2506,3,354,177,0,2505,2503,1,0,0,0,2506,2509, + 1,0,0,0,2507,2505,1,0,0,0,2507,2508,1,0,0,0,2508,2511,1,0,0,0,2509, + 2507,1,0,0,0,2510,2502,1,0,0,0,2510,2511,1,0,0,0,2511,2512,1,0,0, + 0,2512,2514,5,266,0,0,2513,2267,1,0,0,0,2513,2269,1,0,0,0,2513,2270, + 1,0,0,0,2513,2273,1,0,0,0,2513,2275,1,0,0,0,2513,2276,1,0,0,0,2513, + 2277,1,0,0,0,2513,2278,1,0,0,0,2513,2279,1,0,0,0,2513,2280,1,0,0, + 0,2513,2287,1,0,0,0,2513,2306,1,0,0,0,2513,2318,1,0,0,0,2513,2328, + 1,0,0,0,2513,2362,1,0,0,0,2513,2366,1,0,0,0,2513,2380,1,0,0,0,2513, + 2384,1,0,0,0,2513,2389,1,0,0,0,2513,2402,1,0,0,0,2513,2414,1,0,0, + 0,2513,2421,1,0,0,0,2513,2428,1,0,0,0,2513,2441,1,0,0,0,2513,2442, + 1,0,0,0,2513,2443,1,0,0,0,2513,2449,1,0,0,0,2513,2455,1,0,0,0,2513, + 2461,1,0,0,0,2513,2467,1,0,0,0,2513,2468,1,0,0,0,2513,2469,1,0,0, + 0,2513,2480,1,0,0,0,2513,2489,1,0,0,0,2513,2496,1,0,0,0,2513,2500, + 1,0,0,0,2514,2525,1,0,0,0,2515,2516,10,15,0,0,2516,2517,5,267,0, + 0,2517,2518,3,310,155,0,2518,2519,5,268,0,0,2519,2524,1,0,0,0,2520, + 2521,10,13,0,0,2521,2522,5,261,0,0,2522,2524,3,358,179,0,2523,2515, + 1,0,0,0,2523,2520,1,0,0,0,2524,2527,1,0,0,0,2525,2523,1,0,0,0,2525, + 2526,1,0,0,0,2526,313,1,0,0,0,2527,2525,1,0,0,0,2528,2535,5,274, + 0,0,2529,2532,5,275,0,0,2530,2531,5,198,0,0,2531,2533,5,274,0,0, + 2532,2530,1,0,0,0,2532,2533,1,0,0,0,2533,2535,1,0,0,0,2534,2528, + 1,0,0,0,2534,2529,1,0,0,0,2535,315,1,0,0,0,2536,2537,7,23,0,0,2537, + 317,1,0,0,0,2538,2539,7,24,0,0,2539,319,1,0,0,0,2540,2541,7,25,0, + 0,2541,321,1,0,0,0,2542,2543,5,277,0,0,2543,2557,3,324,162,0,2544, + 2545,5,265,0,0,2545,2546,5,277,0,0,2546,2547,5,266,0,0,2547,2557, + 3,324,162,0,2548,2549,5,101,0,0,2549,2550,5,277,0,0,2550,2557,3, + 324,162,0,2551,2552,5,101,0,0,2552,2553,5,265,0,0,2553,2554,5,277, + 0,0,2554,2555,5,266,0,0,2555,2557,3,324,162,0,2556,2542,1,0,0,0, + 2556,2544,1,0,0,0,2556,2548,1,0,0,0,2556,2551,1,0,0,0,2557,323,1, + 0,0,0,2558,2559,7,26,0,0,2559,325,1,0,0,0,2560,2561,7,27,0,0,2561, + 327,1,0,0,0,2562,2563,6,164,-1,0,2563,2564,5,8,0,0,2564,2565,5,251, + 0,0,2565,2566,3,328,164,0,2566,2567,5,253,0,0,2567,2608,1,0,0,0, + 2568,2569,5,235,0,0,2569,2570,5,251,0,0,2570,2571,3,328,164,0,2571, + 2572,5,263,0,0,2572,2573,3,328,164,0,2573,2574,5,253,0,0,2574,2608, + 1,0,0,0,2575,2576,5,240,0,0,2576,2577,5,251,0,0,2577,2578,3,358, + 179,0,2578,2585,3,328,164,0,2579,2580,5,263,0,0,2580,2581,3,358, + 179,0,2581,2582,3,328,164,0,2582,2584,1,0,0,0,2583,2579,1,0,0,0, + 2584,2587,1,0,0,0,2585,2583,1,0,0,0,2585,2586,1,0,0,0,2586,2588, + 1,0,0,0,2587,2585,1,0,0,0,2588,2589,5,253,0,0,2589,2608,1,0,0,0, + 2590,2593,3,334,167,0,2591,2593,3,330,165,0,2592,2590,1,0,0,0,2592, + 2591,1,0,0,0,2593,2605,1,0,0,0,2594,2595,5,265,0,0,2595,2600,3,332, + 166,0,2596,2597,5,263,0,0,2597,2599,3,332,166,0,2598,2596,1,0,0, + 0,2599,2602,1,0,0,0,2600,2598,1,0,0,0,2600,2601,1,0,0,0,2601,2603, + 1,0,0,0,2602,2600,1,0,0,0,2603,2604,5,266,0,0,2604,2606,1,0,0,0, + 2605,2594,1,0,0,0,2605,2606,1,0,0,0,2606,2608,1,0,0,0,2607,2562, + 1,0,0,0,2607,2568,1,0,0,0,2607,2575,1,0,0,0,2607,2592,1,0,0,0,2608, + 2613,1,0,0,0,2609,2610,10,5,0,0,2610,2612,5,8,0,0,2611,2609,1,0, + 0,0,2612,2615,1,0,0,0,2613,2611,1,0,0,0,2613,2614,1,0,0,0,2614,329, + 1,0,0,0,2615,2613,1,0,0,0,2616,2617,7,28,0,0,2617,331,1,0,0,0,2618, + 2621,5,277,0,0,2619,2621,3,328,164,0,2620,2618,1,0,0,0,2620,2619, + 1,0,0,0,2621,333,1,0,0,0,2622,2627,5,284,0,0,2623,2627,5,285,0,0, + 2624,2627,5,286,0,0,2625,2627,3,358,179,0,2626,2622,1,0,0,0,2626, + 2623,1,0,0,0,2626,2624,1,0,0,0,2626,2625,1,0,0,0,2627,335,1,0,0, + 0,2628,2629,5,214,0,0,2629,2630,3,304,152,0,2630,2631,5,192,0,0, + 2631,2632,3,304,152,0,2632,337,1,0,0,0,2633,2634,5,74,0,0,2634,2635, + 5,265,0,0,2635,2636,5,215,0,0,2636,2637,3,306,153,0,2637,2638,5, + 266,0,0,2638,339,1,0,0,0,2639,2640,5,143,0,0,2640,2651,5,265,0,0, + 2641,2642,5,145,0,0,2642,2643,5,26,0,0,2643,2648,3,304,152,0,2644, + 2645,5,263,0,0,2645,2647,3,304,152,0,2646,2644,1,0,0,0,2647,2650, + 1,0,0,0,2648,2646,1,0,0,0,2648,2649,1,0,0,0,2649,2652,1,0,0,0,2650, + 2648,1,0,0,0,2651,2641,1,0,0,0,2651,2652,1,0,0,0,2652,2663,1,0,0, + 0,2653,2654,5,139,0,0,2654,2655,5,26,0,0,2655,2660,3,264,132,0,2656, + 2657,5,263,0,0,2657,2659,3,264,132,0,2658,2656,1,0,0,0,2659,2662, + 1,0,0,0,2660,2658,1,0,0,0,2660,2661,1,0,0,0,2661,2664,1,0,0,0,2662, + 2660,1,0,0,0,2663,2653,1,0,0,0,2663,2664,1,0,0,0,2664,2666,1,0,0, + 0,2665,2667,3,342,171,0,2666,2665,1,0,0,0,2666,2667,1,0,0,0,2667, + 2668,1,0,0,0,2668,2669,5,266,0,0,2669,341,1,0,0,0,2670,2671,5,154, + 0,0,2671,2687,3,344,172,0,2672,2673,5,169,0,0,2673,2687,3,344,172, + 0,2674,2675,5,154,0,0,2675,2676,5,15,0,0,2676,2677,3,344,172,0,2677, + 2678,5,5,0,0,2678,2679,3,344,172,0,2679,2687,1,0,0,0,2680,2681,5, + 169,0,0,2681,2682,5,15,0,0,2682,2683,3,344,172,0,2683,2684,5,5,0, + 0,2684,2685,3,344,172,0,2685,2687,1,0,0,0,2686,2670,1,0,0,0,2686, + 2672,1,0,0,0,2686,2674,1,0,0,0,2686,2680,1,0,0,0,2687,343,1,0,0, + 0,2688,2689,5,199,0,0,2689,2698,5,149,0,0,2690,2691,5,199,0,0,2691, + 2698,5,77,0,0,2692,2693,5,39,0,0,2693,2698,5,168,0,0,2694,2695,3, + 304,152,0,2695,2696,7,29,0,0,2696,2698,1,0,0,0,2697,2688,1,0,0,0, + 2697,2690,1,0,0,0,2697,2692,1,0,0,0,2697,2694,1,0,0,0,2698,345,1, + 0,0,0,2699,2700,3,358,179,0,2700,2701,5,261,0,0,2701,2702,3,358, + 179,0,2702,2705,1,0,0,0,2703,2705,3,358,179,0,2704,2699,1,0,0,0, + 2704,2703,1,0,0,0,2705,347,1,0,0,0,2706,2711,3,346,173,0,2707,2708, + 5,263,0,0,2708,2710,3,346,173,0,2709,2707,1,0,0,0,2710,2713,1,0, + 0,0,2711,2709,1,0,0,0,2711,2712,1,0,0,0,2712,349,1,0,0,0,2713,2711, + 1,0,0,0,2714,2728,5,2,0,0,2715,2728,5,4,0,0,2716,2728,5,58,0,0,2717, + 2728,5,37,0,0,2718,2728,5,99,0,0,2719,2728,5,162,0,0,2720,2725,5, + 174,0,0,2721,2722,5,265,0,0,2722,2723,3,358,179,0,2723,2724,5,266, + 0,0,2724,2726,1,0,0,0,2725,2721,1,0,0,0,2725,2726,1,0,0,0,2726,2728, + 1,0,0,0,2727,2714,1,0,0,0,2727,2715,1,0,0,0,2727,2716,1,0,0,0,2727, + 2717,1,0,0,0,2727,2718,1,0,0,0,2727,2719,1,0,0,0,2727,2720,1,0,0, + 0,2728,351,1,0,0,0,2729,2730,7,30,0,0,2730,353,1,0,0,0,2731,2736, + 3,358,179,0,2732,2733,5,261,0,0,2733,2735,3,358,179,0,2734,2732, + 1,0,0,0,2735,2738,1,0,0,0,2736,2734,1,0,0,0,2736,2737,1,0,0,0,2737, + 355,1,0,0,0,2738,2736,1,0,0,0,2739,2740,5,166,0,0,2740,2746,3,358, + 179,0,2741,2742,5,204,0,0,2742,2746,3,358,179,0,2743,2744,5,87,0, + 0,2744,2746,3,358,179,0,2745,2739,1,0,0,0,2745,2741,1,0,0,0,2745, + 2743,1,0,0,0,2746,357,1,0,0,0,2747,2753,5,280,0,0,2748,2753,5,274, + 0,0,2749,2753,3,364,182,0,2750,2753,5,283,0,0,2751,2753,5,281,0, + 0,2752,2747,1,0,0,0,2752,2748,1,0,0,0,2752,2749,1,0,0,0,2752,2750, + 1,0,0,0,2752,2751,1,0,0,0,2753,359,1,0,0,0,2754,2756,5,256,0,0,2755, + 2754,1,0,0,0,2755,2756,1,0,0,0,2756,2757,1,0,0,0,2757,2767,5,278, + 0,0,2758,2760,5,256,0,0,2759,2758,1,0,0,0,2759,2760,1,0,0,0,2760, + 2761,1,0,0,0,2761,2767,5,279,0,0,2762,2764,5,256,0,0,2763,2762,1, + 0,0,0,2763,2764,1,0,0,0,2764,2765,1,0,0,0,2765,2767,5,277,0,0,2766, + 2755,1,0,0,0,2766,2759,1,0,0,0,2766,2763,1,0,0,0,2767,361,1,0,0, + 0,2768,2769,7,31,0,0,2769,363,1,0,0,0,2770,2771,7,32,0,0,2771,365, + 1,0,0,0,353,369,376,400,413,417,421,430,435,439,445,447,452,456, + 460,467,472,478,482,491,498,502,507,509,514,518,525,529,534,538, + 542,546,554,559,563,571,575,584,587,590,596,603,614,619,624,629, + 634,643,646,649,653,679,705,714,724,727,741,759,761,770,781,790, + 797,801,808,814,817,822,829,843,856,861,866,872,908,911,917,920, + 926,932,944,946,957,965,970,974,979,986,990,994,1000,1004,1008,1017, + 1020,1023,1031,1045,1052,1065,1071,1076,1079,1082,1087,1091,1100, + 1105,1111,1115,1120,1125,1128,1136,1139,1143,1155,1158,1162,1167, + 1171,1187,1192,1199,1202,1208,1211,1218,1221,1225,1230,1233,1240, + 1243,1267,1281,1285,1289,1309,1311,1313,1322,1324,1333,1335,1344, + 1346,1351,1360,1369,1378,1389,1395,1400,1403,1416,1426,1430,1435, + 1446,1451,1484,1492,1497,1501,1505,1510,1514,1519,1524,1529,1533, + 1542,1545,1549,1556,1567,1573,1577,1583,1593,1600,1605,1610,1615, + 1621,1624,1633,1636,1639,1645,1651,1661,1664,1668,1672,1675,1681, + 1684,1690,1696,1699,1702,1706,1716,1727,1732,1735,1739,1746,1756, + 1768,1774,1776,1785,1788,1795,1805,1811,1819,1830,1840,1851,1853, + 1859,1864,1874,1877,1883,1885,1893,1899,1902,1904,1916,1923,1927, + 1931,1935,1938,1945,1954,1957,1961,1966,1970,1973,1980,1991,1994, + 1998,2002,2011,2014,2021,2035,2039,2043,2047,2051,2055,2059,2063, + 2073,2084,2089,2102,2104,2110,2114,2116,2124,2131,2136,2149,2155, + 2163,2170,2174,2182,2184,2195,2203,2212,2218,2223,2229,2235,2240, + 2245,2251,2262,2264,2291,2297,2301,2313,2323,2326,2331,2338,2341, + 2350,2353,2357,2360,2372,2375,2394,2398,2406,2410,2435,2438,2447, + 2453,2459,2465,2476,2485,2507,2510,2513,2523,2525,2532,2534,2556, + 2585,2592,2600,2605,2607,2613,2620,2626,2648,2651,2660,2663,2666, + 2686,2697,2704,2711,2725,2727,2736,2745,2752,2755,2759,2763,2766 ]; private static __ATN: antlr.ATN; @@ -16330,9 +16385,15 @@ export class ComputeIncrementalStatsContext extends antlr.ParserRuleContext { public KW_PARTITION(): antlr.TerminalNode | null { return this.getToken(ImpalaSqlParser.KW_PARTITION, 0); } + public LPAREN(): antlr.TerminalNode | null { + return this.getToken(ImpalaSqlParser.LPAREN, 0); + } public expression(): ExpressionContext | null { return this.getRuleContext(0, ExpressionContext); } + public RPAREN(): antlr.TerminalNode | null { + return this.getToken(ImpalaSqlParser.RPAREN, 0); + } public override get ruleIndex(): number { return ImpalaSqlParser.RULE_computeIncrementalStats; } @@ -24127,18 +24188,12 @@ export class TypeContext extends antlr.ParserRuleContext { return this.getRuleContext(i, IdentifierContext); } - public COLON(): antlr.TerminalNode[]; - public COLON(i: number): antlr.TerminalNode | null; - public COLON(i?: number): antlr.TerminalNode | null | antlr.TerminalNode[] { - if (i === undefined) { - return this.getTokens(ImpalaSqlParser.COLON); - } else { - return this.getToken(ImpalaSqlParser.COLON, i); - } - } public baseType(): BaseTypeContext | null { return this.getRuleContext(0, BaseTypeContext); } + public dataType(): DataTypeContext | null { + return this.getRuleContext(0, DataTypeContext); + } public LPAREN(): antlr.TerminalNode | null { return this.getToken(ImpalaSqlParser.LPAREN, 0); } @@ -24177,6 +24232,90 @@ export class TypeContext extends antlr.ParserRuleContext { } +export class DataTypeContext extends antlr.ParserRuleContext { + public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { + super(parent, invokingState); + } + public KW_ARRAY(): antlr.TerminalNode | null { + return this.getToken(ImpalaSqlParser.KW_ARRAY, 0); + } + public KW_BINARY(): antlr.TerminalNode | null { + return this.getToken(ImpalaSqlParser.KW_BINARY, 0); + } + public KW_BIGINT(): antlr.TerminalNode | null { + return this.getToken(ImpalaSqlParser.KW_BIGINT, 0); + } + public KW_BOOLEAN(): antlr.TerminalNode | null { + return this.getToken(ImpalaSqlParser.KW_BOOLEAN, 0); + } + public KW_CHAR(): antlr.TerminalNode | null { + return this.getToken(ImpalaSqlParser.KW_CHAR, 0); + } + public KW_DATE(): antlr.TerminalNode | null { + return this.getToken(ImpalaSqlParser.KW_DATE, 0); + } + public KW_DECIMAL(): antlr.TerminalNode | null { + return this.getToken(ImpalaSqlParser.KW_DECIMAL, 0); + } + public KW_DOUBLE(): antlr.TerminalNode | null { + return this.getToken(ImpalaSqlParser.KW_DOUBLE, 0); + } + public KW_FLOAT(): antlr.TerminalNode | null { + return this.getToken(ImpalaSqlParser.KW_FLOAT, 0); + } + public KW_INT(): antlr.TerminalNode | null { + return this.getToken(ImpalaSqlParser.KW_INT, 0); + } + public KW_MAP(): antlr.TerminalNode | null { + return this.getToken(ImpalaSqlParser.KW_MAP, 0); + } + public KW_REAL(): antlr.TerminalNode | null { + return this.getToken(ImpalaSqlParser.KW_REAL, 0); + } + public KW_SMALLINT(): antlr.TerminalNode | null { + return this.getToken(ImpalaSqlParser.KW_SMALLINT, 0); + } + public KW_STRING(): antlr.TerminalNode | null { + return this.getToken(ImpalaSqlParser.KW_STRING, 0); + } + public KW_STRUCT(): antlr.TerminalNode | null { + return this.getToken(ImpalaSqlParser.KW_STRUCT, 0); + } + public KW_TIMESTAMP(): antlr.TerminalNode | null { + return this.getToken(ImpalaSqlParser.KW_TIMESTAMP, 0); + } + public KW_TINYINT(): antlr.TerminalNode | null { + return this.getToken(ImpalaSqlParser.KW_TINYINT, 0); + } + public KW_VARCHAR(): antlr.TerminalNode | null { + return this.getToken(ImpalaSqlParser.KW_VARCHAR, 0); + } + public KW_COMPLEX(): antlr.TerminalNode | null { + return this.getToken(ImpalaSqlParser.KW_COMPLEX, 0); + } + public override get ruleIndex(): number { + return ImpalaSqlParser.RULE_dataType; + } + public override enterRule(listener: ImpalaSqlParserListener): void { + if(listener.enterDataType) { + listener.enterDataType(this); + } + } + public override exitRule(listener: ImpalaSqlParserListener): void { + if(listener.exitDataType) { + listener.exitDataType(this); + } + } + public override accept(visitor: ImpalaSqlParserVisitor): Result | null { + if (visitor.visitDataType) { + return visitor.visitDataType(this); + } else { + return visitor.visitChildren(this); + } + } +} + + export class TypeParameterContext extends antlr.ParserRuleContext { public constructor(parent: antlr.ParserRuleContext | null, invokingState: number) { super(parent, invokingState); @@ -25246,6 +25385,9 @@ export class NonReservedContext extends antlr.ParserRuleContext { public KW_DAY(): antlr.TerminalNode | null { return this.getToken(ImpalaSqlParser.KW_DAY, 0); } + public KW_DATE(): antlr.TerminalNode | null { + return this.getToken(ImpalaSqlParser.KW_DATE, 0); + } public KW_DAYS(): antlr.TerminalNode | null { return this.getToken(ImpalaSqlParser.KW_DAYS, 0); } diff --git a/src/lib/impala/ImpalaSqlParserListener.ts b/src/lib/impala/ImpalaSqlParserListener.ts index 247f5a8..1856fd2 100644 --- a/src/lib/impala/ImpalaSqlParserListener.ts +++ b/src/lib/impala/ImpalaSqlParserListener.ts @@ -221,6 +221,7 @@ import { IntervalContext } from "./ImpalaSqlParser.js"; import { IntervalFieldContext } from "./ImpalaSqlParser.js"; import { NormalFormContext } from "./ImpalaSqlParser.js"; import { TypeContext } from "./ImpalaSqlParser.js"; +import { DataTypeContext } from "./ImpalaSqlParser.js"; import { TypeParameterContext } from "./ImpalaSqlParser.js"; import { BaseTypeContext } from "./ImpalaSqlParser.js"; import { WhenClauseContext } from "./ImpalaSqlParser.js"; @@ -2501,6 +2502,16 @@ export class ImpalaSqlParserListener implements ParseTreeListener { * @param ctx the parse tree */ exitType?: (ctx: TypeContext) => void; + /** + * Enter a parse tree produced by `ImpalaSqlParser.dataType`. + * @param ctx the parse tree + */ + enterDataType?: (ctx: DataTypeContext) => void; + /** + * Exit a parse tree produced by `ImpalaSqlParser.dataType`. + * @param ctx the parse tree + */ + exitDataType?: (ctx: DataTypeContext) => void; /** * Enter a parse tree produced by `ImpalaSqlParser.typeParameter`. * @param ctx the parse tree diff --git a/src/lib/impala/ImpalaSqlParserVisitor.ts b/src/lib/impala/ImpalaSqlParserVisitor.ts index 60e4791..bf441a9 100644 --- a/src/lib/impala/ImpalaSqlParserVisitor.ts +++ b/src/lib/impala/ImpalaSqlParserVisitor.ts @@ -221,6 +221,7 @@ import { IntervalContext } from "./ImpalaSqlParser.js"; import { IntervalFieldContext } from "./ImpalaSqlParser.js"; import { NormalFormContext } from "./ImpalaSqlParser.js"; import { TypeContext } from "./ImpalaSqlParser.js"; +import { DataTypeContext } from "./ImpalaSqlParser.js"; import { TypeParameterContext } from "./ImpalaSqlParser.js"; import { BaseTypeContext } from "./ImpalaSqlParser.js"; import { WhenClauseContext } from "./ImpalaSqlParser.js"; @@ -1594,6 +1595,12 @@ export class ImpalaSqlParserVisitor extends AbstractParseTreeVisitor Result; + /** + * Visit a parse tree produced by `ImpalaSqlParser.dataType`. + * @param ctx the parse tree + * @return the visitor result + */ + visitDataType?: (ctx: DataTypeContext) => Result; /** * Visit a parse tree produced by `ImpalaSqlParser.typeParameter`. * @param ctx the parse tree diff --git a/test/parser/impala/suggestion/fixtures/tokenSuggestion.sql b/test/parser/impala/suggestion/fixtures/tokenSuggestion.sql index e27a227..1985556 100644 --- a/test/parser/impala/suggestion/fixtures/tokenSuggestion.sql +++ b/test/parser/impala/suggestion/fixtures/tokenSuggestion.sql @@ -7,3 +7,5 @@ DROP ; INSERT ; SHOW ; + +CREATE TABLE t1 (id ); diff --git a/test/parser/impala/suggestion/tokenSuggestion.test.ts b/test/parser/impala/suggestion/tokenSuggestion.test.ts index c8fd280..26d565c 100644 --- a/test/parser/impala/suggestion/tokenSuggestion.test.ts +++ b/test/parser/impala/suggestion/tokenSuggestion.test.ts @@ -109,4 +109,38 @@ describe('Impala SQL Token Suggestion', () => { 'CURRENT', ]); }); + + test('Create table with column dataType', () => { + const pos: CaretPosition = { + lineNumber: 11, + column: 21, + }; + const suggestion = impala.getSuggestionAtCaretPosition( + commentOtherLine(tokenSql, pos.lineNumber), + pos + )?.keywords; + const dataTypes = [ + 'INT', + 'BINARY', + 'BIGINT', + 'BOOLEAN', + 'CHAR', + 'DATE', + 'DECIMAL', + 'DOUBLE', + 'INT', + 'MAP', + 'REAL', + 'SMALLINT', + 'FLOAT', + 'STRING', + 'STRUCT', + 'TIMESTAMP', + 'TINYINT', + 'VARCHAR', + 'COMPLEX', + ]; + + expect(dataTypes.every((dataType) => suggestion.includes(dataType))).toBe(true); + }); }); diff --git a/test/parser/impala/syntax/fixtures/create_table.sql b/test/parser/impala/syntax/fixtures/create_table.sql index 734d8c0..8c87c1d 100644 --- a/test/parser/impala/syntax/fixtures/create_table.sql +++ b/test/parser/impala/syntax/fixtures/create_table.sql @@ -183,3 +183,32 @@ CREATE TABLE fk(id INT, col1 INT, col2 STRING, PRIMARY KEY(id), CREATE TABLE new_Table like old_table; CREATE TABLE new_Table like old_table partitioned by (year int) SORT BY (last_name, state); + +CREATE TABLE IF NOT EXISTS t1 (id INT); +CREATE TABLE IF NOT EXISTS t1 ( + id1 INT, + id2 BINARY, + id3 BIGINT, + id4 BOOLEAN, + id5 CHAR(4), + id6 DATE, + id7 DECIMAL(38, 0), + id8 DOUBLE, + id9 INT, + id10 MAP, + id11 REAL, + id12 SMALLINT, + id13 FLOAT, + id14 STRING, + id15 STRUCT, + id16 TIMESTAMP, + id17 TINYINT, + id18 VARCHAR(256), + id19 COMPLEX, + id19 ARRAY +); + +CREATE TABLE IF NOT EXISTS t1 ( + id INT, + person STRUCT +) PARTITIONED BY (student STRUCT);