From 04c4c4039770bf351f067f6193d7f6ab0720a524 Mon Sep 17 00:00:00 2001 From: Erindcl Date: Thu, 3 Dec 2020 16:25:43 +0800 Subject: [PATCH] feat(flink): update flink SQL grammar --- src/grammar/flinksql/FlinkSqlLexer.g4 | 16 +- src/grammar/flinksql/FlinkSqlParser.g4 | 43 +- src/lib/flinksql/FlinkSqlLexer.interp | 33 +- src/lib/flinksql/FlinkSqlLexer.js | 3813 +++++++-------- src/lib/flinksql/FlinkSqlLexer.tokens | 482 +- src/lib/flinksql/FlinkSqlParser.interp | 25 +- src/lib/flinksql/FlinkSqlParser.js | 5014 +++++++++++--------- src/lib/flinksql/FlinkSqlParser.tokens | 482 +- src/lib/flinksql/FlinkSqlParserListener.js | 54 + src/lib/flinksql/FlinkSqlParserVisitor.js | 36 + 10 files changed, 5454 insertions(+), 4544 deletions(-) diff --git a/src/grammar/flinksql/FlinkSqlLexer.g4 b/src/grammar/flinksql/FlinkSqlLexer.g4 index 1e851e9..c2effd1 100644 --- a/src/grammar/flinksql/FlinkSqlLexer.g4 +++ b/src/grammar/flinksql/FlinkSqlLexer.g4 @@ -198,6 +198,7 @@ COMPACT: 'COMPACT'; CONCATENATE: 'CONCATENATE'; CHANGE: 'CHANGE'; CASCADE: 'CASCADE'; +CONSTRAINT: 'CONSTRAINT'; RESTRICT: 'RESTRICT'; CLUSTERED: 'CLUSTERED'; SORTED: 'SORTED'; @@ -261,6 +262,10 @@ CATALOG: 'CATALOG'; LANGUAGE: 'LANGUAGE'; CATALOGS: 'CATALOGS'; VIEWS: 'VIEWS'; +PRIMARY: 'PRIMARY'; +KEY: 'KEY'; +PERIOD: 'PERIOD'; +SYSTEM_TIME: 'SYSTEM_TIME'; // DATA TYPE Keywords @@ -288,6 +293,8 @@ BOOLEAN: 'BOOLEAN'; RAW: 'RAW'; ROW: 'ROW'; NULL: 'NULL'; +DATETIME: 'DATETIME'; // 数栈自定义类型 + // Operators. Comparation @@ -328,7 +335,8 @@ PENCENT_SIGN: '%'; DOUBLE_VERTICAL_SIGN: '||'; DOUBLE_HYPNEN_SIGN: '--'; SLASH_SIGN: '/'; -DOT_ID: '.' ID_LITERAL; +DOT_ID: '.' ID_LITERAL_FRAG; +PLUS_DOT_ID: (':' | '.') PLUS_ID_LITERAL; STRING_LITERAL: DQUOTA_STRING | SQUOTA_STRING | BQUOTA_STRING; DIG_LITERAL: DEC_DIGIT+; REAL_LITERAL: (DEC_DIGIT+)? '.' DEC_DIGIT+ @@ -336,10 +344,12 @@ REAL_LITERAL: (DEC_DIGIT+)? '.' DEC_DIGIT+ | (DEC_DIGIT+)? '.' (DEC_DIGIT+ EXPONENT_NUM_PART) | DEC_DIGIT+ EXPONENT_NUM_PART; BIT_STRING: BIT_STRING_L; -ID: ID_LITERAL; +ID_LITERAL: ID_LITERAL_FRAG; +PLUS_ID_LITERAL: PLUS_ID_LITERAL_FRAG; fragment EXPONENT_NUM_PART: 'E' [-+]? DEC_DIGIT+; -fragment ID_LITERAL: [A-Z_0-9a-z]*?[A-Z_a-z]+?[A-Z_0-9a-z]*; +fragment ID_LITERAL_FRAG: [A-Z_0-9a-z]*?[A-Z_a-z]+?[A-Z_0-9a-z]*; +fragment PLUS_ID_LITERAL_FRAG: ('a'..'z' | '0'..'9' | '_' | '*' | '@' | '#' | '^' | '$' | '%' | '&')*?[A-Z_a-z]+?('a'..'z' | '0'..'9' | '_' | '*' | '@' | '#' | '^' | '$' | '%' | '&')*; fragment DEC_DIGIT: [0-9]; fragment DEC_LETTER: [A-Za-z]; fragment DQUOTA_STRING: '"' ( '\\'. | '""' | ~('"'| '\\') )* '"'; diff --git a/src/grammar/flinksql/FlinkSqlParser.g4 b/src/grammar/flinksql/FlinkSqlParser.g4 index d6b0ed2..941a987 100644 --- a/src/grammar/flinksql/FlinkSqlParser.g4 +++ b/src/grammar/flinksql/FlinkSqlParser.g4 @@ -53,7 +53,9 @@ createTable : CREATE TABLE uid LR_BRACKET columnOptionDefinition (COMMA columnOptionDefinition)* - watermarkDefinition? + (COMMA watermarkDefinition)? + (COMMA tableConstraint)? + (COMMA selfDefinitionClause)? RR_BRACKET commentSpec? partitionDefinition? @@ -62,11 +64,15 @@ createTable ; columnOptionDefinition - : columnName columnType lengthOneDimension? + : columnName columnType lengthOneDimension? columnAlias? ; columnName - : ID + : plusUid | expression + ; + +columnNameList + : columnName (',' columnName)* ; columnType @@ -74,7 +80,8 @@ columnType | DECIMAL | TINYINT | SMALLINT | INT | BIGINT | FLOAT | DOUBLE | DATE | TIME | TIMESTAMP | ARRAY | MAP | MULTISET | ROW - | BOOLEAN | RAW | NULL) + | BOOLEAN | RAW | NULL + | DATETIME) ; lengthOneDimension @@ -89,6 +96,14 @@ watermarkDefinition : WATERMARK FOR expression AS expression ; +tableConstraint + : (CONSTRAINT identifier)? PRIMARY KEY '(' columnNameList ')' + ; + +selfDefinitionClause // 数栈自定义语句 ‘PERIOD FOR SYSTEM_TIME’ + : PERIOD FOR SYSTEM_TIME + ; + partitionDefinition : PARTITIONED BY transformList ; @@ -126,7 +141,7 @@ createDatabase ; createView - : CREATE TEMPORARY? VIEW ifNotExists? uid (columnName (',' columnName)*)? commentSpec? AS queryStatement + : CREATE TEMPORARY? VIEW ifNotExists? uid columnNameList? commentSpec? AS queryStatement ; createFunction @@ -355,7 +370,7 @@ valueExpression primaryExpression : CASE whenClause+ (ELSE elseExpression=expression)? END #searchedCase | CASE value=expression whenClause+ (ELSE elseExpression=expression)? END #simpleCase - // | CAST '(' expression AS dataType ')' #cast + | CAST '(' expression AS columnType ')' #cast // | STRUCT '(' (argument+=namedExpression (',' argument+=namedExpression)*)? ')' #struct | FIRST '(' expression (IGNORE NULLS)? ')' #first | LAST '(' expression (IGNORE NULLS)? ')' #last @@ -393,7 +408,7 @@ dereferenceDefinition // base common qualifiedName - : identifier ('.' identifier)* + : identifier | dereferenceDefinition ; interval @@ -421,6 +436,10 @@ intervalValue | STRING_LITERAL ; +columnAlias + : AS? strictIdentifier identifierList? + ; + tableAlias : AS? strictIdentifier identifierList? ; @@ -452,7 +471,7 @@ strictIdentifier ; unquotedIdentifier - : DIG_LITERAL | ID + : DIG_LITERAL | ID_LITERAL ; quotedIdentifier @@ -468,7 +487,11 @@ uidList ; uid - : ID (DOT_ID)*? + : ID_LITERAL DOT_ID*? + ; + +plusUid // 匹配 xxx.$xx xx:xxxx 等字符 + : (ID_LITERAL | PLUS_ID_LITERAL) (DOT_ID | PLUS_DOT_ID)*? ; withOption @@ -490,7 +513,7 @@ tableProperty ; tablePropertyKey - : identifier ('.' identifier)* + : identifier | dereferenceDefinition | STRING_LITERAL ; diff --git a/src/lib/flinksql/FlinkSqlLexer.interp b/src/lib/flinksql/FlinkSqlLexer.interp index e0769b5..2ef937a 100644 --- a/src/lib/flinksql/FlinkSqlLexer.interp +++ b/src/lib/flinksql/FlinkSqlLexer.interp @@ -189,6 +189,7 @@ null 'CONCATENATE' 'CHANGE' 'CASCADE' +'CONSTRAINT' 'RESTRICT' 'CLUSTERED' 'SORTED' @@ -252,6 +253,10 @@ null 'LANGUAGE' 'CATALOGS' 'VIEWS' +'PRIMARY' +'KEY' +'PERIOD' +'SYSTEM_TIME' 'STRING' 'ARRAY' 'MAP' @@ -275,6 +280,7 @@ null 'RAW' 'ROW' 'NULL' +'DATETIME' '=' '>' '<' @@ -309,6 +315,8 @@ null null null null +null +null token symbolic names: null @@ -501,6 +509,7 @@ COMPACT CONCATENATE CHANGE CASCADE +CONSTRAINT RESTRICT CLUSTERED SORTED @@ -564,6 +573,10 @@ CATALOG LANGUAGE CATALOGS VIEWS +PRIMARY +KEY +PERIOD +SYSTEM_TIME STRING ARRAY MAP @@ -587,6 +600,7 @@ BOOLEAN RAW ROW NULL +DATETIME EQUAL_SYMBOL GREATER_SYMBOL LESS_SYMBOL @@ -616,11 +630,13 @@ DOUBLE_VERTICAL_SIGN DOUBLE_HYPNEN_SIGN SLASH_SIGN DOT_ID +PLUS_DOT_ID STRING_LITERAL DIG_LITERAL REAL_LITERAL BIT_STRING -ID +ID_LITERAL +PLUS_ID_LITERAL rule names: SPACE @@ -812,6 +828,7 @@ COMPACT CONCATENATE CHANGE CASCADE +CONSTRAINT RESTRICT CLUSTERED SORTED @@ -875,6 +892,10 @@ CATALOG LANGUAGE CATALOGS VIEWS +PRIMARY +KEY +PERIOD +SYSTEM_TIME STRING ARRAY MAP @@ -898,6 +919,7 @@ BOOLEAN RAW ROW NULL +DATETIME EQUAL_SYMBOL GREATER_SYMBOL LESS_SYMBOL @@ -927,13 +949,16 @@ DOUBLE_VERTICAL_SIGN DOUBLE_HYPNEN_SIGN SLASH_SIGN DOT_ID +PLUS_DOT_ID STRING_LITERAL DIG_LITERAL REAL_LITERAL BIT_STRING -ID -EXPONENT_NUM_PART ID_LITERAL +PLUS_ID_LITERAL +EXPONENT_NUM_PART +ID_LITERAL_FRAG +PLUS_ID_LITERAL_FRAG DEC_DIGIT DEC_LETTER DQUOTA_STRING @@ -949,4 +974,4 @@ mode names: DEFAULT_MODE atn: -[3, 24715, 42794, 33075, 47597, 16764, 15335, 30598, 22884, 2, 311, 2815, 8, 1, 4, 2, 9, 2, 4, 3, 9, 3, 4, 4, 9, 4, 4, 5, 9, 5, 4, 6, 9, 6, 4, 7, 9, 7, 4, 8, 9, 8, 4, 9, 9, 9, 4, 10, 9, 10, 4, 11, 9, 11, 4, 12, 9, 12, 4, 13, 9, 13, 4, 14, 9, 14, 4, 15, 9, 15, 4, 16, 9, 16, 4, 17, 9, 17, 4, 18, 9, 18, 4, 19, 9, 19, 4, 20, 9, 20, 4, 21, 9, 21, 4, 22, 9, 22, 4, 23, 9, 23, 4, 24, 9, 24, 4, 25, 9, 25, 4, 26, 9, 26, 4, 27, 9, 27, 4, 28, 9, 28, 4, 29, 9, 29, 4, 30, 9, 30, 4, 31, 9, 31, 4, 32, 9, 32, 4, 33, 9, 33, 4, 34, 9, 34, 4, 35, 9, 35, 4, 36, 9, 36, 4, 37, 9, 37, 4, 38, 9, 38, 4, 39, 9, 39, 4, 40, 9, 40, 4, 41, 9, 41, 4, 42, 9, 42, 4, 43, 9, 43, 4, 44, 9, 44, 4, 45, 9, 45, 4, 46, 9, 46, 4, 47, 9, 47, 4, 48, 9, 48, 4, 49, 9, 49, 4, 50, 9, 50, 4, 51, 9, 51, 4, 52, 9, 52, 4, 53, 9, 53, 4, 54, 9, 54, 4, 55, 9, 55, 4, 56, 9, 56, 4, 57, 9, 57, 4, 58, 9, 58, 4, 59, 9, 59, 4, 60, 9, 60, 4, 61, 9, 61, 4, 62, 9, 62, 4, 63, 9, 63, 4, 64, 9, 64, 4, 65, 9, 65, 4, 66, 9, 66, 4, 67, 9, 67, 4, 68, 9, 68, 4, 69, 9, 69, 4, 70, 9, 70, 4, 71, 9, 71, 4, 72, 9, 72, 4, 73, 9, 73, 4, 74, 9, 74, 4, 75, 9, 75, 4, 76, 9, 76, 4, 77, 9, 77, 4, 78, 9, 78, 4, 79, 9, 79, 4, 80, 9, 80, 4, 81, 9, 81, 4, 82, 9, 82, 4, 83, 9, 83, 4, 84, 9, 84, 4, 85, 9, 85, 4, 86, 9, 86, 4, 87, 9, 87, 4, 88, 9, 88, 4, 89, 9, 89, 4, 90, 9, 90, 4, 91, 9, 91, 4, 92, 9, 92, 4, 93, 9, 93, 4, 94, 9, 94, 4, 95, 9, 95, 4, 96, 9, 96, 4, 97, 9, 97, 4, 98, 9, 98, 4, 99, 9, 99, 4, 100, 9, 100, 4, 101, 9, 101, 4, 102, 9, 102, 4, 103, 9, 103, 4, 104, 9, 104, 4, 105, 9, 105, 4, 106, 9, 106, 4, 107, 9, 107, 4, 108, 9, 108, 4, 109, 9, 109, 4, 110, 9, 110, 4, 111, 9, 111, 4, 112, 9, 112, 4, 113, 9, 113, 4, 114, 9, 114, 4, 115, 9, 115, 4, 116, 9, 116, 4, 117, 9, 117, 4, 118, 9, 118, 4, 119, 9, 119, 4, 120, 9, 120, 4, 121, 9, 121, 4, 122, 9, 122, 4, 123, 9, 123, 4, 124, 9, 124, 4, 125, 9, 125, 4, 126, 9, 126, 4, 127, 9, 127, 4, 128, 9, 128, 4, 129, 9, 129, 4, 130, 9, 130, 4, 131, 9, 131, 4, 132, 9, 132, 4, 133, 9, 133, 4, 134, 9, 134, 4, 135, 9, 135, 4, 136, 9, 136, 4, 137, 9, 137, 4, 138, 9, 138, 4, 139, 9, 139, 4, 140, 9, 140, 4, 141, 9, 141, 4, 142, 9, 142, 4, 143, 9, 143, 4, 144, 9, 144, 4, 145, 9, 145, 4, 146, 9, 146, 4, 147, 9, 147, 4, 148, 9, 148, 4, 149, 9, 149, 4, 150, 9, 150, 4, 151, 9, 151, 4, 152, 9, 152, 4, 153, 9, 153, 4, 154, 9, 154, 4, 155, 9, 155, 4, 156, 9, 156, 4, 157, 9, 157, 4, 158, 9, 158, 4, 159, 9, 159, 4, 160, 9, 160, 4, 161, 9, 161, 4, 162, 9, 162, 4, 163, 9, 163, 4, 164, 9, 164, 4, 165, 9, 165, 4, 166, 9, 166, 4, 167, 9, 167, 4, 168, 9, 168, 4, 169, 9, 169, 4, 170, 9, 170, 4, 171, 9, 171, 4, 172, 9, 172, 4, 173, 9, 173, 4, 174, 9, 174, 4, 175, 9, 175, 4, 176, 9, 176, 4, 177, 9, 177, 4, 178, 9, 178, 4, 179, 9, 179, 4, 180, 9, 180, 4, 181, 9, 181, 4, 182, 9, 182, 4, 183, 9, 183, 4, 184, 9, 184, 4, 185, 9, 185, 4, 186, 9, 186, 4, 187, 9, 187, 4, 188, 9, 188, 4, 189, 9, 189, 4, 190, 9, 190, 4, 191, 9, 191, 4, 192, 9, 192, 4, 193, 9, 193, 4, 194, 9, 194, 4, 195, 9, 195, 4, 196, 9, 196, 4, 197, 9, 197, 4, 198, 9, 198, 4, 199, 9, 199, 4, 200, 9, 200, 4, 201, 9, 201, 4, 202, 9, 202, 4, 203, 9, 203, 4, 204, 9, 204, 4, 205, 9, 205, 4, 206, 9, 206, 4, 207, 9, 207, 4, 208, 9, 208, 4, 209, 9, 209, 4, 210, 9, 210, 4, 211, 9, 211, 4, 212, 9, 212, 4, 213, 9, 213, 4, 214, 9, 214, 4, 215, 9, 215, 4, 216, 9, 216, 4, 217, 9, 217, 4, 218, 9, 218, 4, 219, 9, 219, 4, 220, 9, 220, 4, 221, 9, 221, 4, 222, 9, 222, 4, 223, 9, 223, 4, 224, 9, 224, 4, 225, 9, 225, 4, 226, 9, 226, 4, 227, 9, 227, 4, 228, 9, 228, 4, 229, 9, 229, 4, 230, 9, 230, 4, 231, 9, 231, 4, 232, 9, 232, 4, 233, 9, 233, 4, 234, 9, 234, 4, 235, 9, 235, 4, 236, 9, 236, 4, 237, 9, 237, 4, 238, 9, 238, 4, 239, 9, 239, 4, 240, 9, 240, 4, 241, 9, 241, 4, 242, 9, 242, 4, 243, 9, 243, 4, 244, 9, 244, 4, 245, 9, 245, 4, 246, 9, 246, 4, 247, 9, 247, 4, 248, 9, 248, 4, 249, 9, 249, 4, 250, 9, 250, 4, 251, 9, 251, 4, 252, 9, 252, 4, 253, 9, 253, 4, 254, 9, 254, 4, 255, 9, 255, 4, 256, 9, 256, 4, 257, 9, 257, 4, 258, 9, 258, 4, 259, 9, 259, 4, 260, 9, 260, 4, 261, 9, 261, 4, 262, 9, 262, 4, 263, 9, 263, 4, 264, 9, 264, 4, 265, 9, 265, 4, 266, 9, 266, 4, 267, 9, 267, 4, 268, 9, 268, 4, 269, 9, 269, 4, 270, 9, 270, 4, 271, 9, 271, 4, 272, 9, 272, 4, 273, 9, 273, 4, 274, 9, 274, 4, 275, 9, 275, 4, 276, 9, 276, 4, 277, 9, 277, 4, 278, 9, 278, 4, 279, 9, 279, 4, 280, 9, 280, 4, 281, 9, 281, 4, 282, 9, 282, 4, 283, 9, 283, 4, 284, 9, 284, 4, 285, 9, 285, 4, 286, 9, 286, 4, 287, 9, 287, 4, 288, 9, 288, 4, 289, 9, 289, 4, 290, 9, 290, 4, 291, 9, 291, 4, 292, 9, 292, 4, 293, 9, 293, 4, 294, 9, 294, 4, 295, 9, 295, 4, 296, 9, 296, 4, 297, 9, 297, 4, 298, 9, 298, 4, 299, 9, 299, 4, 300, 9, 300, 4, 301, 9, 301, 4, 302, 9, 302, 4, 303, 9, 303, 4, 304, 9, 304, 4, 305, 9, 305, 4, 306, 9, 306, 4, 307, 9, 307, 4, 308, 9, 308, 4, 309, 9, 309, 4, 310, 9, 310, 4, 311, 9, 311, 4, 312, 9, 312, 4, 313, 9, 313, 4, 314, 9, 314, 4, 315, 9, 315, 4, 316, 9, 316, 4, 317, 9, 317, 4, 318, 9, 318, 3, 2, 6, 2, 639, 10, 2, 13, 2, 14, 2, 640, 3, 2, 3, 2, 3, 3, 3, 3, 3, 3, 3, 3, 7, 3, 649, 10, 3, 12, 3, 14, 3, 652, 11, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 4, 3, 4, 3, 4, 3, 4, 5, 4, 663, 10, 4, 3, 4, 7, 4, 666, 10, 4, 12, 4, 14, 4, 669, 11, 4, 3, 4, 5, 4, 672, 10, 4, 3, 4, 3, 4, 5, 4, 676, 10, 4, 3, 4, 3, 4, 3, 4, 3, 4, 5, 4, 682, 10, 4, 3, 4, 3, 4, 5, 4, 686, 10, 4, 5, 4, 688, 10, 4, 3, 4, 3, 4, 3, 5, 3, 5, 3, 5, 3, 5, 3, 5, 3, 5, 3, 5, 3, 6, 3, 6, 3, 6, 3, 6, 3, 6, 3, 7, 3, 7, 3, 7, 3, 7, 3, 8, 3, 8, 3, 8, 3, 9, 3, 9, 3, 9, 3, 9, 3, 10, 3, 10, 3, 10, 3, 10, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 12, 3, 12, 3, 12, 3, 12, 3, 12, 3, 12, 3, 13, 3, 13, 3, 13, 3, 13, 3, 13, 3, 13, 3, 14, 3, 14, 3, 14, 3, 15, 3, 15, 3, 15, 3, 15, 3, 15, 3, 15, 3, 15, 3, 15, 3, 15, 3, 16, 3, 16, 3, 16, 3, 16, 3, 16, 3, 17, 3, 17, 3, 17, 3, 17, 3, 17, 3, 18, 3, 18, 3, 18, 3, 18, 3, 18, 3, 18, 3, 18, 3, 19, 3, 19, 3, 19, 3, 19, 3, 19, 3, 19, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 21, 3, 21, 3, 21, 3, 21, 3, 21, 3, 21, 3, 22, 3, 22, 3, 22, 3, 23, 3, 23, 3, 23, 3, 24, 3, 24, 3, 24, 3, 24, 3, 25, 3, 25, 3, 25, 3, 26, 3, 26, 3, 26, 3, 26, 3, 27, 3, 27, 3, 27, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 32, 3, 32, 3, 32, 3, 33, 3, 33, 3, 33, 3, 33, 3, 33, 3, 34, 3, 34, 3, 34, 3, 34, 3, 34, 3, 34, 3, 35, 3, 35, 3, 35, 3, 35, 3, 35, 3, 35, 3, 36, 3, 36, 3, 36, 3, 36, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 38, 3, 38, 3, 38, 3, 38, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 44, 3, 44, 3, 44, 3, 44, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 49, 3, 49, 3, 49, 3, 49, 3, 49, 3, 50, 3, 50, 3, 50, 3, 50, 3, 50, 3, 51, 3, 51, 3, 51, 3, 51, 3, 51, 3, 51, 3, 52, 3, 52, 3, 52, 3, 52, 3, 52, 3, 53, 3, 53, 3, 53, 3, 53, 3, 53, 3, 53, 3, 53, 3, 53, 3, 54, 3, 54, 3, 54, 3, 55, 3, 55, 3, 55, 3, 55, 3, 55, 3, 55, 3, 56, 3, 56, 3, 56, 3, 56, 3, 56, 3, 56, 3, 56, 3, 56, 3, 57, 3, 57, 3, 57, 3, 57, 3, 57, 3, 57, 3, 57, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 64, 3, 64, 3, 64, 3, 64, 3, 64, 3, 64, 3, 64, 3, 64, 3, 64, 3, 64, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 66, 3, 66, 3, 66, 3, 66, 3, 66, 3, 66, 3, 67, 3, 67, 3, 67, 3, 67, 3, 67, 3, 67, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 75, 3, 75, 3, 75, 3, 75, 3, 75, 3, 75, 3, 75, 3, 75, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 77, 3, 77, 3, 77, 3, 77, 3, 77, 3, 77, 3, 77, 3, 78, 3, 78, 3, 78, 3, 78, 3, 78, 3, 79, 3, 79, 3, 79, 3, 79, 3, 79, 3, 79, 3, 79, 3, 79, 3, 79, 3, 80, 3, 80, 3, 80, 3, 80, 3, 80, 3, 80, 3, 80, 3, 80, 3, 81, 3, 81, 3, 81, 3, 81, 3, 81, 3, 81, 3, 81, 3, 82, 3, 82, 3, 82, 3, 82, 3, 82, 3, 82, 3, 82, 3, 82, 3, 83, 3, 83, 3, 83, 3, 83, 3, 83, 3, 83, 3, 83, 3, 83, 3, 84, 3, 84, 3, 84, 3, 84, 3, 84, 3, 85, 3, 85, 3, 85, 3, 85, 3, 85, 3, 86, 3, 86, 3, 86, 3, 86, 3, 86, 3, 87, 3, 87, 3, 87, 3, 87, 3, 87, 3, 87, 3, 87, 3, 88, 3, 88, 3, 88, 3, 88, 3, 88, 3, 88, 3, 88, 3, 88, 3, 89, 3, 89, 3, 89, 3, 89, 3, 89, 3, 89, 3, 89, 3, 90, 3, 90, 3, 90, 3, 90, 3, 91, 3, 91, 3, 91, 3, 91, 3, 91, 3, 91, 3, 91, 3, 91, 3, 91, 3, 91, 3, 91, 3, 92, 3, 92, 3, 92, 3, 92, 3, 92, 3, 92, 3, 92, 3, 92, 3, 92, 3, 92, 3, 93, 3, 93, 3, 93, 3, 93, 3, 93, 3, 94, 3, 94, 3, 94, 3, 94, 3, 94, 3, 94, 3, 95, 3, 95, 3, 95, 3, 95, 3, 95, 3, 95, 3, 95, 3, 96, 3, 96, 3, 96, 3, 96, 3, 96, 3, 96, 3, 96, 3, 96, 3, 96, 3, 97, 3, 97, 3, 97, 3, 97, 3, 97, 3, 97, 3, 97, 3, 97, 3, 97, 3, 97, 3, 98, 3, 98, 3, 98, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 3, 100, 3, 100, 3, 100, 3, 100, 3, 100, 3, 100, 3, 100, 3, 100, 3, 100, 3, 101, 3, 101, 3, 101, 3, 101, 3, 101, 3, 101, 3, 102, 3, 102, 3, 102, 3, 102, 3, 102, 3, 102, 3, 102, 3, 103, 3, 103, 3, 103, 3, 103, 3, 103, 3, 103, 3, 103, 3, 104, 3, 104, 3, 104, 3, 104, 3, 104, 3, 104, 3, 104, 3, 104, 3, 105, 3, 105, 3, 105, 3, 105, 3, 106, 3, 106, 3, 106, 3, 106, 3, 106, 3, 106, 3, 107, 3, 107, 3, 107, 3, 107, 3, 107, 3, 108, 3, 108, 3, 108, 3, 108, 3, 108, 3, 108, 3, 109, 3, 109, 3, 109, 3, 109, 3, 109, 3, 109, 3, 109, 3, 109, 3, 109, 3, 109, 3, 109, 3, 109, 3, 110, 3, 110, 3, 110, 3, 110, 3, 110, 3, 110, 3, 110, 3, 111, 3, 111, 3, 111, 3, 111, 3, 111, 3, 111, 3, 111, 3, 111, 3, 111, 3, 112, 3, 112, 3, 112, 3, 112, 3, 112, 3, 112, 3, 113, 3, 113, 3, 113, 3, 113, 3, 113, 3, 113, 3, 113, 3, 114, 3, 114, 3, 114, 3, 114, 3, 114, 3, 115, 3, 115, 3, 115, 3, 115, 3, 115, 3, 115, 3, 115, 3, 115, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 117, 3, 117, 3, 117, 3, 118, 3, 118, 3, 118, 3, 118, 3, 118, 3, 118, 3, 118, 3, 118, 3, 118, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 120, 3, 120, 3, 120, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 122, 3, 122, 3, 122, 3, 122, 3, 123, 3, 123, 3, 123, 3, 123, 3, 123, 3, 124, 3, 124, 3, 124, 3, 125, 3, 125, 3, 125, 3, 125, 3, 126, 3, 126, 3, 126, 3, 127, 3, 127, 3, 127, 3, 127, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 130, 3, 130, 3, 130, 3, 130, 3, 130, 3, 130, 3, 130, 3, 130, 3, 130, 3, 131, 3, 131, 3, 131, 3, 131, 3, 131, 3, 131, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 133, 3, 133, 3, 133, 3, 133, 3, 134, 3, 134, 3, 134, 3, 134, 3, 134, 3, 134, 3, 135, 3, 135, 3, 135, 3, 135, 3, 135, 3, 135, 3, 135, 3, 135, 3, 135, 3, 135, 3, 136, 3, 136, 3, 136, 3, 136, 3, 136, 3, 137, 3, 137, 3, 137, 3, 137, 3, 137, 3, 137, 3, 137, 3, 137, 3, 137, 3, 137, 3, 137, 3, 137, 3, 138, 3, 138, 3, 138, 3, 138, 3, 139, 3, 139, 3, 139, 3, 139, 3, 139, 3, 139, 3, 139, 3, 139, 3, 139, 3, 139, 3, 139, 3, 140, 3, 140, 3, 140, 3, 140, 3, 140, 3, 140, 3, 140, 3, 141, 3, 141, 3, 141, 3, 141, 3, 142, 3, 142, 3, 142, 3, 143, 3, 143, 3, 143, 3, 143, 3, 143, 3, 144, 3, 144, 3, 144, 3, 144, 3, 144, 3, 144, 3, 144, 3, 144, 3, 145, 3, 145, 3, 145, 3, 145, 3, 145, 3, 145, 3, 145, 3, 145, 3, 145, 3, 145, 3, 145, 3, 146, 3, 146, 3, 146, 3, 146, 3, 146, 3, 146, 3, 146, 3, 146, 3, 146, 3, 146, 3, 147, 3, 147, 3, 147, 3, 147, 3, 147, 3, 147, 3, 147, 3, 147, 3, 147, 3, 147, 3, 148, 3, 148, 3, 148, 3, 148, 3, 148, 3, 148, 3, 148, 3, 149, 3, 149, 3, 149, 3, 149, 3, 149, 3, 149, 3, 150, 3, 150, 3, 150, 3, 150, 3, 150, 3, 150, 3, 151, 3, 151, 3, 151, 3, 151, 3, 151, 3, 151, 3, 151, 3, 151, 3, 151, 3, 151, 3, 151, 3, 151, 3, 151, 3, 151, 3, 151, 3, 151, 3, 152, 3, 152, 3, 152, 3, 152, 3, 152, 3, 152, 3, 152, 3, 152, 3, 152, 3, 152, 3, 152, 3, 152, 3, 152, 3, 153, 3, 153, 3, 153, 3, 153, 3, 153, 3, 153, 3, 153, 3, 153, 3, 153, 3, 153, 3, 153, 3, 153, 3, 153, 3, 154, 3, 154, 3, 154, 3, 154, 3, 154, 3, 154, 3, 154, 3, 154, 3, 154, 3, 154, 3, 155, 3, 155, 3, 155, 3, 155, 3, 155, 3, 155, 3, 155, 3, 156, 3, 156, 3, 156, 3, 156, 3, 156, 3, 156, 3, 156, 3, 156, 3, 156, 3, 156, 3, 156, 3, 157, 3, 157, 3, 157, 3, 157, 3, 157, 3, 157, 3, 157, 3, 157, 3, 157, 3, 157, 3, 157, 3, 158, 3, 158, 3, 158, 3, 158, 3, 158, 3, 158, 3, 159, 3, 159, 3, 159, 3, 159, 3, 159, 3, 160, 3, 160, 3, 160, 3, 160, 3, 160, 3, 160, 3, 160, 3, 160, 3, 161, 3, 161, 3, 161, 3, 161, 3, 161, 3, 161, 3, 162, 3, 162, 3, 162, 3, 162, 3, 162, 3, 162, 3, 162, 3, 162, 3, 162, 3, 162, 3, 163, 3, 163, 3, 163, 3, 163, 3, 163, 3, 163, 3, 163, 3, 163, 3, 163, 3, 164, 3, 164, 3, 164, 3, 164, 3, 164, 3, 164, 3, 164, 3, 164, 3, 164, 3, 165, 3, 165, 3, 165, 3, 165, 3, 165, 3, 165, 3, 165, 3, 165, 3, 166, 3, 166, 3, 166, 3, 166, 3, 166, 3, 166, 3, 167, 3, 167, 3, 167, 3, 167, 3, 167, 3, 167, 3, 168, 3, 168, 3, 168, 3, 168, 3, 168, 3, 168, 3, 168, 3, 168, 3, 169, 3, 169, 3, 169, 3, 169, 3, 169, 3, 170, 3, 170, 3, 170, 3, 170, 3, 170, 3, 170, 3, 170, 3, 170, 3, 170, 3, 170, 3, 171, 3, 171, 3, 171, 3, 171, 3, 171, 3, 171, 3, 171, 3, 172, 3, 172, 3, 172, 3, 172, 3, 172, 3, 172, 3, 172, 3, 172, 3, 172, 3, 172, 3, 173, 3, 173, 3, 173, 3, 173, 3, 173, 3, 173, 3, 173, 3, 173, 3, 174, 3, 174, 3, 174, 3, 174, 3, 174, 3, 174, 3, 175, 3, 175, 3, 175, 3, 175, 3, 175, 3, 175, 3, 175, 3, 175, 3, 175, 3, 175, 3, 175, 3, 175, 3, 175, 3, 175, 3, 176, 3, 176, 3, 176, 3, 176, 3, 176, 3, 176, 3, 176, 3, 176, 3, 176, 3, 176, 3, 176, 3, 176, 3, 176, 3, 177, 3, 177, 3, 177, 3, 177, 3, 177, 3, 177, 3, 177, 3, 177, 3, 178, 3, 178, 3, 178, 3, 178, 3, 178, 3, 178, 3, 178, 3, 179, 3, 179, 3, 179, 3, 179, 3, 179, 3, 179, 3, 179, 3, 180, 3, 180, 3, 180, 3, 180, 3, 180, 3, 180, 3, 180, 3, 180, 3, 180, 3, 180, 3, 180, 3, 180, 3, 181, 3, 181, 3, 181, 3, 181, 3, 181, 3, 181, 3, 181, 3, 181, 3, 181, 3, 182, 3, 182, 3, 182, 3, 182, 3, 182, 3, 182, 3, 182, 3, 182, 3, 182, 3, 183, 3, 183, 3, 183, 3, 183, 3, 183, 3, 183, 3, 183, 3, 183, 3, 184, 3, 184, 3, 184, 3, 184, 3, 184, 3, 184, 3, 184, 3, 184, 3, 184, 3, 184, 3, 185, 3, 185, 3, 185, 3, 185, 3, 185, 3, 185, 3, 185, 3, 185, 3, 185, 3, 185, 3, 185, 3, 186, 3, 186, 3, 186, 3, 186, 3, 186, 3, 186, 3, 187, 3, 187, 3, 187, 3, 187, 3, 187, 3, 187, 3, 187, 3, 187, 3, 188, 3, 188, 3, 188, 3, 188, 3, 188, 3, 188, 3, 188, 3, 188, 3, 188, 3, 188, 3, 188, 3, 188, 3, 189, 3, 189, 3, 189, 3, 189, 3, 189, 3, 189, 3, 189, 3, 190, 3, 190, 3, 190, 3, 190, 3, 190, 3, 190, 3, 190, 3, 190, 3, 191, 3, 191, 3, 191, 3, 191, 3, 191, 3, 191, 3, 191, 3, 191, 3, 191, 3, 192, 3, 192, 3, 192, 3, 192, 3, 192, 3, 192, 3, 192, 3, 192, 3, 192, 3, 192, 3, 193, 3, 193, 3, 193, 3, 193, 3, 193, 3, 193, 3, 193, 3, 194, 3, 194, 3, 194, 3, 194, 3, 194, 3, 194, 3, 195, 3, 195, 3, 195, 3, 195, 3, 195, 3, 195, 3, 195, 3, 195, 3, 195, 3, 195, 3, 195, 3, 195, 3, 196, 3, 196, 3, 196, 3, 196, 3, 196, 3, 196, 3, 196, 3, 196, 3, 196, 3, 196, 3, 196, 3, 196, 3, 196, 3, 197, 3, 197, 3, 197, 3, 197, 3, 197, 3, 197, 3, 197, 3, 197, 3, 197, 3, 198, 3, 198, 3, 198, 3, 198, 3, 198, 3, 198, 3, 198, 3, 198, 3, 198, 3, 198, 3, 199, 3, 199, 3, 199, 3, 199, 3, 200, 3, 200, 3, 200, 3, 200, 3, 200, 3, 200, 3, 200, 3, 200, 3, 200, 3, 201, 3, 201, 3, 201, 3, 201, 3, 201, 3, 201, 3, 201, 3, 201, 3, 202, 3, 202, 3, 202, 3, 202, 3, 202, 3, 202, 3, 202, 3, 202, 3, 203, 3, 203, 3, 203, 3, 203, 3, 203, 3, 204, 3, 204, 3, 204, 3, 204, 3, 204, 3, 204, 3, 204, 3, 204, 3, 204, 3, 204, 3, 204, 3, 205, 3, 205, 3, 205, 3, 205, 3, 205, 3, 205, 3, 205, 3, 205, 3, 205, 3, 205, 3, 205, 3, 205, 3, 206, 3, 206, 3, 206, 3, 206, 3, 206, 3, 206, 3, 206, 3, 206, 3, 206, 3, 207, 3, 207, 3, 207, 3, 207, 3, 207, 3, 207, 3, 207, 3, 207, 3, 208, 3, 208, 3, 208, 3, 208, 3, 208, 3, 208, 3, 208, 3, 209, 3, 209, 3, 209, 3, 209, 3, 209, 3, 209, 3, 210, 3, 210, 3, 210, 3, 210, 3, 210, 3, 211, 3, 211, 3, 211, 3, 211, 3, 211, 3, 211, 3, 211, 3, 212, 3, 212, 3, 212, 3, 212, 3, 212, 3, 213, 3, 213, 3, 213, 3, 213, 3, 213, 3, 213, 3, 213, 3, 214, 3, 214, 3, 214, 3, 214, 3, 214, 3, 214, 3, 214, 3, 214, 3, 215, 3, 215, 3, 215, 3, 215, 3, 215, 3, 215, 3, 215, 3, 216, 3, 216, 3, 216, 3, 216, 3, 216, 3, 216, 3, 216, 3, 217, 3, 217, 3, 217, 3, 217, 3, 217, 3, 218, 3, 218, 3, 218, 3, 218, 3, 218, 3, 219, 3, 219, 3, 219, 3, 219, 3, 219, 3, 219, 3, 220, 3, 220, 3, 220, 3, 220, 3, 220, 3, 220, 3, 220, 3, 220, 3, 220, 3, 220, 3, 220, 3, 220, 3, 221, 3, 221, 3, 221, 3, 221, 3, 221, 3, 221, 3, 221, 3, 221, 3, 221, 3, 221, 3, 221, 3, 222, 3, 222, 3, 222, 3, 222, 3, 222, 3, 222, 3, 222, 3, 222, 3, 222, 3, 222, 3, 222, 3, 222, 3, 222, 3, 223, 3, 223, 3, 223, 3, 223, 3, 223, 3, 223, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 226, 3, 226, 3, 226, 3, 226, 3, 226, 3, 226, 3, 226, 3, 227, 3, 227, 3, 227, 3, 227, 3, 227, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 229, 3, 229, 3, 229, 3, 229, 3, 229, 3, 229, 3, 229, 3, 230, 3, 230, 3, 230, 3, 230, 3, 230, 3, 230, 3, 230, 3, 230, 3, 230, 3, 230, 3, 231, 3, 231, 3, 231, 3, 231, 3, 231, 3, 231, 3, 231, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 234, 3, 234, 3, 234, 3, 234, 3, 235, 3, 235, 3, 235, 3, 235, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 238, 3, 238, 3, 238, 3, 238, 3, 238, 3, 239, 3, 239, 3, 239, 3, 239, 3, 239, 3, 240, 3, 240, 3, 240, 3, 240, 3, 240, 3, 240, 3, 240, 3, 240, 3, 241, 3, 241, 3, 241, 3, 241, 3, 241, 3, 241, 3, 241, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 243, 3, 243, 3, 243, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 244, 3, 245, 3, 245, 3, 245, 3, 245, 3, 245, 3, 245, 3, 245, 3, 245, 3, 245, 3, 245, 3, 246, 3, 246, 3, 246, 3, 246, 3, 246, 3, 246, 3, 246, 3, 246, 3, 246, 3, 246, 3, 247, 3, 247, 3, 247, 3, 247, 3, 247, 3, 247, 3, 247, 3, 247, 3, 247, 3, 247, 3, 247, 3, 247, 3, 248, 3, 248, 3, 248, 3, 248, 3, 248, 3, 248, 3, 248, 3, 248, 3, 248, 3, 248, 3, 248, 3, 248, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 250, 3, 250, 3, 250, 3, 250, 3, 250, 3, 250, 3, 250, 3, 250, 3, 251, 3, 251, 3, 251, 3, 251, 3, 251, 3, 251, 3, 251, 3, 251, 3, 251, 3, 252, 3, 252, 3, 252, 3, 252, 3, 252, 3, 252, 3, 252, 3, 252, 3, 252, 3, 253, 3, 253, 3, 253, 3, 253, 3, 253, 3, 253, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 255, 3, 255, 3, 255, 3, 255, 3, 255, 3, 255, 3, 256, 3, 256, 3, 256, 3, 256, 3, 257, 3, 257, 3, 257, 3, 257, 3, 257, 3, 258, 3, 258, 3, 258, 3, 258, 3, 258, 3, 258, 3, 258, 3, 258, 3, 259, 3, 259, 3, 259, 3, 259, 3, 259, 3, 259, 3, 259, 3, 260, 3, 260, 3, 260, 3, 260, 3, 260, 3, 260, 3, 260, 3, 260, 3, 260, 3, 260, 3, 261, 3, 261, 3, 261, 3, 261, 3, 261, 3, 261, 3, 262, 3, 262, 3, 262, 3, 262, 3, 262, 3, 262, 3, 262, 3, 262, 3, 263, 3, 263, 3, 263, 3, 263, 3, 263, 3, 263, 3, 263, 3, 263, 3, 264, 3, 264, 3, 264, 3, 264, 3, 264, 3, 264, 3, 264, 3, 264, 3, 264, 3, 265, 3, 265, 3, 265, 3, 265, 3, 266, 3, 266, 3, 266, 3, 266, 3, 266, 3, 266, 3, 266, 3, 267, 3, 267, 3, 267, 3, 267, 3, 267, 3, 267, 3, 268, 3, 268, 3, 268, 3, 268, 3, 268, 3, 268, 3, 268, 3, 269, 3, 269, 3, 269, 3, 269, 3, 269, 3, 270, 3, 270, 3, 270, 3, 270, 3, 270, 3, 271, 3, 271, 3, 271, 3, 271, 3, 271, 3, 271, 3, 271, 3, 271, 3, 271, 3, 271, 3, 272, 3, 272, 3, 272, 3, 272, 3, 272, 3, 272, 3, 272, 3, 272, 3, 272, 3, 273, 3, 273, 3, 273, 3, 273, 3, 273, 3, 273, 3, 273, 3, 273, 3, 274, 3, 274, 3, 274, 3, 274, 3, 275, 3, 275, 3, 275, 3, 275, 3, 276, 3, 276, 3, 276, 3, 276, 3, 276, 3, 277, 3, 277, 3, 278, 3, 278, 3, 279, 3, 279, 3, 280, 3, 280, 3, 281, 3, 281, 3, 282, 3, 282, 3, 283, 3, 283, 3, 284, 3, 284, 3, 285, 3, 285, 3, 286, 3, 286, 3, 287, 3, 287, 3, 288, 3, 288, 3, 289, 3, 289, 3, 290, 3, 290, 3, 291, 3, 291, 3, 292, 3, 292, 3, 293, 3, 293, 3, 294, 3, 294, 3, 295, 3, 295, 3, 296, 3, 296, 3, 297, 3, 297, 3, 298, 3, 298, 3, 299, 3, 299, 3, 300, 3, 300, 3, 301, 3, 301, 3, 302, 3, 302, 3, 302, 3, 303, 3, 303, 3, 303, 3, 304, 3, 304, 3, 305, 3, 305, 3, 305, 3, 306, 3, 306, 3, 306, 5, 306, 2682, 10, 306, 3, 307, 6, 307, 2685, 10, 307, 13, 307, 14, 307, 2686, 3, 308, 6, 308, 2690, 10, 308, 13, 308, 14, 308, 2691, 5, 308, 2694, 10, 308, 3, 308, 3, 308, 6, 308, 2698, 10, 308, 13, 308, 14, 308, 2699, 3, 308, 6, 308, 2703, 10, 308, 13, 308, 14, 308, 2704, 3, 308, 3, 308, 3, 308, 3, 308, 6, 308, 2711, 10, 308, 13, 308, 14, 308, 2712, 5, 308, 2715, 10, 308, 3, 308, 3, 308, 6, 308, 2719, 10, 308, 13, 308, 14, 308, 2720, 3, 308, 3, 308, 3, 308, 6, 308, 2726, 10, 308, 13, 308, 14, 308, 2727, 3, 308, 3, 308, 5, 308, 2732, 10, 308, 3, 309, 3, 309, 3, 310, 3, 310, 3, 311, 3, 311, 5, 311, 2740, 10, 311, 3, 311, 6, 311, 2743, 10, 311, 13, 311, 14, 311, 2744, 3, 312, 7, 312, 2748, 10, 312, 12, 312, 14, 312, 2751, 11, 312, 3, 312, 6, 312, 2754, 10, 312, 13, 312, 14, 312, 2755, 3, 312, 7, 312, 2759, 10, 312, 12, 312, 14, 312, 2762, 11, 312, 3, 313, 3, 313, 3, 314, 3, 314, 3, 315, 3, 315, 3, 315, 3, 315, 3, 315, 3, 315, 7, 315, 2774, 10, 315, 12, 315, 14, 315, 2777, 11, 315, 3, 315, 3, 315, 3, 316, 3, 316, 3, 316, 3, 316, 3, 316, 3, 316, 7, 316, 2787, 10, 316, 12, 316, 14, 316, 2790, 11, 316, 3, 316, 3, 316, 3, 317, 3, 317, 3, 317, 6, 317, 2797, 10, 317, 13, 317, 14, 317, 2798, 3, 317, 3, 317, 3, 318, 3, 318, 3, 318, 3, 318, 3, 318, 3, 318, 7, 318, 2809, 10, 318, 12, 318, 14, 318, 2812, 11, 318, 3, 318, 3, 318, 5, 650, 2749, 2755, 2, 319, 3, 3, 5, 4, 7, 5, 9, 6, 11, 7, 13, 8, 15, 9, 17, 10, 19, 11, 21, 12, 23, 13, 25, 14, 27, 15, 29, 16, 31, 17, 33, 18, 35, 19, 37, 20, 39, 21, 41, 22, 43, 23, 45, 24, 47, 25, 49, 26, 51, 27, 53, 28, 55, 29, 57, 30, 59, 31, 61, 32, 63, 33, 65, 34, 67, 35, 69, 36, 71, 37, 73, 38, 75, 39, 77, 40, 79, 41, 81, 42, 83, 43, 85, 44, 87, 45, 89, 46, 91, 47, 93, 48, 95, 49, 97, 50, 99, 51, 101, 52, 103, 53, 105, 54, 107, 55, 109, 56, 111, 57, 113, 58, 115, 59, 117, 60, 119, 61, 121, 62, 123, 63, 125, 64, 127, 65, 129, 66, 131, 67, 133, 68, 135, 69, 137, 70, 139, 71, 141, 72, 143, 73, 145, 74, 147, 75, 149, 76, 151, 77, 153, 78, 155, 79, 157, 80, 159, 81, 161, 82, 163, 83, 165, 84, 167, 85, 169, 86, 171, 87, 173, 88, 175, 89, 177, 90, 179, 91, 181, 92, 183, 93, 185, 94, 187, 95, 189, 96, 191, 97, 193, 98, 195, 99, 197, 100, 199, 101, 201, 102, 203, 103, 205, 104, 207, 105, 209, 106, 211, 107, 213, 108, 215, 109, 217, 110, 219, 111, 221, 112, 223, 113, 225, 114, 227, 115, 229, 116, 231, 117, 233, 118, 235, 119, 237, 120, 239, 121, 241, 122, 243, 123, 245, 124, 247, 125, 249, 126, 251, 127, 253, 128, 255, 129, 257, 130, 259, 131, 261, 132, 263, 133, 265, 134, 267, 135, 269, 136, 271, 137, 273, 138, 275, 139, 277, 140, 279, 141, 281, 142, 283, 143, 285, 144, 287, 145, 289, 146, 291, 147, 293, 148, 295, 149, 297, 150, 299, 151, 301, 152, 303, 153, 305, 154, 307, 155, 309, 156, 311, 157, 313, 158, 315, 159, 317, 160, 319, 161, 321, 162, 323, 163, 325, 164, 327, 165, 329, 166, 331, 167, 333, 168, 335, 169, 337, 170, 339, 171, 341, 172, 343, 173, 345, 174, 347, 175, 349, 176, 351, 177, 353, 178, 355, 179, 357, 180, 359, 181, 361, 182, 363, 183, 365, 184, 367, 185, 369, 186, 371, 187, 373, 188, 375, 189, 377, 190, 379, 191, 381, 192, 383, 193, 385, 194, 387, 195, 389, 196, 391, 197, 393, 198, 395, 199, 397, 200, 399, 201, 401, 202, 403, 203, 405, 204, 407, 205, 409, 206, 411, 207, 413, 208, 415, 209, 417, 210, 419, 211, 421, 212, 423, 213, 425, 214, 427, 215, 429, 216, 431, 217, 433, 218, 435, 219, 437, 220, 439, 221, 441, 222, 443, 223, 445, 224, 447, 225, 449, 226, 451, 227, 453, 228, 455, 229, 457, 230, 459, 231, 461, 232, 463, 233, 465, 234, 467, 235, 469, 236, 471, 237, 473, 238, 475, 239, 477, 240, 479, 241, 481, 242, 483, 243, 485, 244, 487, 245, 489, 246, 491, 247, 493, 248, 495, 249, 497, 250, 499, 251, 501, 252, 503, 253, 505, 254, 507, 255, 509, 256, 511, 257, 513, 258, 515, 259, 517, 260, 519, 261, 521, 262, 523, 263, 525, 264, 527, 265, 529, 266, 531, 267, 533, 268, 535, 269, 537, 270, 539, 271, 541, 272, 543, 273, 545, 274, 547, 275, 549, 276, 551, 277, 553, 278, 555, 279, 557, 280, 559, 281, 561, 282, 563, 283, 565, 284, 567, 285, 569, 286, 571, 287, 573, 288, 575, 289, 577, 290, 579, 291, 581, 292, 583, 293, 585, 294, 587, 295, 589, 296, 591, 297, 593, 298, 595, 299, 597, 300, 599, 301, 601, 302, 603, 303, 605, 304, 607, 305, 609, 306, 611, 307, 613, 308, 615, 309, 617, 310, 619, 311, 621, 2, 623, 2, 625, 2, 627, 2, 629, 2, 631, 2, 633, 2, 635, 2, 3, 2, 13, 5, 2, 11, 12, 15, 15, 34, 34, 4, 2, 12, 12, 15, 15, 4, 2, 45, 45, 47, 47, 6, 2, 50, 59, 67, 92, 97, 97, 99, 124, 5, 2, 67, 92, 97, 97, 99, 124, 3, 2, 50, 59, 4, 2, 67, 92, 99, 124, 4, 2, 36, 36, 94, 94, 4, 2, 41, 41, 94, 94, 3, 2, 50, 51, 4, 2, 94, 94, 98, 98, 2, 2844, 2, 3, 3, 2, 2, 2, 2, 5, 3, 2, 2, 2, 2, 7, 3, 2, 2, 2, 2, 9, 3, 2, 2, 2, 2, 11, 3, 2, 2, 2, 2, 13, 3, 2, 2, 2, 2, 15, 3, 2, 2, 2, 2, 17, 3, 2, 2, 2, 2, 19, 3, 2, 2, 2, 2, 21, 3, 2, 2, 2, 2, 23, 3, 2, 2, 2, 2, 25, 3, 2, 2, 2, 2, 27, 3, 2, 2, 2, 2, 29, 3, 2, 2, 2, 2, 31, 3, 2, 2, 2, 2, 33, 3, 2, 2, 2, 2, 35, 3, 2, 2, 2, 2, 37, 3, 2, 2, 2, 2, 39, 3, 2, 2, 2, 2, 41, 3, 2, 2, 2, 2, 43, 3, 2, 2, 2, 2, 45, 3, 2, 2, 2, 2, 47, 3, 2, 2, 2, 2, 49, 3, 2, 2, 2, 2, 51, 3, 2, 2, 2, 2, 53, 3, 2, 2, 2, 2, 55, 3, 2, 2, 2, 2, 57, 3, 2, 2, 2, 2, 59, 3, 2, 2, 2, 2, 61, 3, 2, 2, 2, 2, 63, 3, 2, 2, 2, 2, 65, 3, 2, 2, 2, 2, 67, 3, 2, 2, 2, 2, 69, 3, 2, 2, 2, 2, 71, 3, 2, 2, 2, 2, 73, 3, 2, 2, 2, 2, 75, 3, 2, 2, 2, 2, 77, 3, 2, 2, 2, 2, 79, 3, 2, 2, 2, 2, 81, 3, 2, 2, 2, 2, 83, 3, 2, 2, 2, 2, 85, 3, 2, 2, 2, 2, 87, 3, 2, 2, 2, 2, 89, 3, 2, 2, 2, 2, 91, 3, 2, 2, 2, 2, 93, 3, 2, 2, 2, 2, 95, 3, 2, 2, 2, 2, 97, 3, 2, 2, 2, 2, 99, 3, 2, 2, 2, 2, 101, 3, 2, 2, 2, 2, 103, 3, 2, 2, 2, 2, 105, 3, 2, 2, 2, 2, 107, 3, 2, 2, 2, 2, 109, 3, 2, 2, 2, 2, 111, 3, 2, 2, 2, 2, 113, 3, 2, 2, 2, 2, 115, 3, 2, 2, 2, 2, 117, 3, 2, 2, 2, 2, 119, 3, 2, 2, 2, 2, 121, 3, 2, 2, 2, 2, 123, 3, 2, 2, 2, 2, 125, 3, 2, 2, 2, 2, 127, 3, 2, 2, 2, 2, 129, 3, 2, 2, 2, 2, 131, 3, 2, 2, 2, 2, 133, 3, 2, 2, 2, 2, 135, 3, 2, 2, 2, 2, 137, 3, 2, 2, 2, 2, 139, 3, 2, 2, 2, 2, 141, 3, 2, 2, 2, 2, 143, 3, 2, 2, 2, 2, 145, 3, 2, 2, 2, 2, 147, 3, 2, 2, 2, 2, 149, 3, 2, 2, 2, 2, 151, 3, 2, 2, 2, 2, 153, 3, 2, 2, 2, 2, 155, 3, 2, 2, 2, 2, 157, 3, 2, 2, 2, 2, 159, 3, 2, 2, 2, 2, 161, 3, 2, 2, 2, 2, 163, 3, 2, 2, 2, 2, 165, 3, 2, 2, 2, 2, 167, 3, 2, 2, 2, 2, 169, 3, 2, 2, 2, 2, 171, 3, 2, 2, 2, 2, 173, 3, 2, 2, 2, 2, 175, 3, 2, 2, 2, 2, 177, 3, 2, 2, 2, 2, 179, 3, 2, 2, 2, 2, 181, 3, 2, 2, 2, 2, 183, 3, 2, 2, 2, 2, 185, 3, 2, 2, 2, 2, 187, 3, 2, 2, 2, 2, 189, 3, 2, 2, 2, 2, 191, 3, 2, 2, 2, 2, 193, 3, 2, 2, 2, 2, 195, 3, 2, 2, 2, 2, 197, 3, 2, 2, 2, 2, 199, 3, 2, 2, 2, 2, 201, 3, 2, 2, 2, 2, 203, 3, 2, 2, 2, 2, 205, 3, 2, 2, 2, 2, 207, 3, 2, 2, 2, 2, 209, 3, 2, 2, 2, 2, 211, 3, 2, 2, 2, 2, 213, 3, 2, 2, 2, 2, 215, 3, 2, 2, 2, 2, 217, 3, 2, 2, 2, 2, 219, 3, 2, 2, 2, 2, 221, 3, 2, 2, 2, 2, 223, 3, 2, 2, 2, 2, 225, 3, 2, 2, 2, 2, 227, 3, 2, 2, 2, 2, 229, 3, 2, 2, 2, 2, 231, 3, 2, 2, 2, 2, 233, 3, 2, 2, 2, 2, 235, 3, 2, 2, 2, 2, 237, 3, 2, 2, 2, 2, 239, 3, 2, 2, 2, 2, 241, 3, 2, 2, 2, 2, 243, 3, 2, 2, 2, 2, 245, 3, 2, 2, 2, 2, 247, 3, 2, 2, 2, 2, 249, 3, 2, 2, 2, 2, 251, 3, 2, 2, 2, 2, 253, 3, 2, 2, 2, 2, 255, 3, 2, 2, 2, 2, 257, 3, 2, 2, 2, 2, 259, 3, 2, 2, 2, 2, 261, 3, 2, 2, 2, 2, 263, 3, 2, 2, 2, 2, 265, 3, 2, 2, 2, 2, 267, 3, 2, 2, 2, 2, 269, 3, 2, 2, 2, 2, 271, 3, 2, 2, 2, 2, 273, 3, 2, 2, 2, 2, 275, 3, 2, 2, 2, 2, 277, 3, 2, 2, 2, 2, 279, 3, 2, 2, 2, 2, 281, 3, 2, 2, 2, 2, 283, 3, 2, 2, 2, 2, 285, 3, 2, 2, 2, 2, 287, 3, 2, 2, 2, 2, 289, 3, 2, 2, 2, 2, 291, 3, 2, 2, 2, 2, 293, 3, 2, 2, 2, 2, 295, 3, 2, 2, 2, 2, 297, 3, 2, 2, 2, 2, 299, 3, 2, 2, 2, 2, 301, 3, 2, 2, 2, 2, 303, 3, 2, 2, 2, 2, 305, 3, 2, 2, 2, 2, 307, 3, 2, 2, 2, 2, 309, 3, 2, 2, 2, 2, 311, 3, 2, 2, 2, 2, 313, 3, 2, 2, 2, 2, 315, 3, 2, 2, 2, 2, 317, 3, 2, 2, 2, 2, 319, 3, 2, 2, 2, 2, 321, 3, 2, 2, 2, 2, 323, 3, 2, 2, 2, 2, 325, 3, 2, 2, 2, 2, 327, 3, 2, 2, 2, 2, 329, 3, 2, 2, 2, 2, 331, 3, 2, 2, 2, 2, 333, 3, 2, 2, 2, 2, 335, 3, 2, 2, 2, 2, 337, 3, 2, 2, 2, 2, 339, 3, 2, 2, 2, 2, 341, 3, 2, 2, 2, 2, 343, 3, 2, 2, 2, 2, 345, 3, 2, 2, 2, 2, 347, 3, 2, 2, 2, 2, 349, 3, 2, 2, 2, 2, 351, 3, 2, 2, 2, 2, 353, 3, 2, 2, 2, 2, 355, 3, 2, 2, 2, 2, 357, 3, 2, 2, 2, 2, 359, 3, 2, 2, 2, 2, 361, 3, 2, 2, 2, 2, 363, 3, 2, 2, 2, 2, 365, 3, 2, 2, 2, 2, 367, 3, 2, 2, 2, 2, 369, 3, 2, 2, 2, 2, 371, 3, 2, 2, 2, 2, 373, 3, 2, 2, 2, 2, 375, 3, 2, 2, 2, 2, 377, 3, 2, 2, 2, 2, 379, 3, 2, 2, 2, 2, 381, 3, 2, 2, 2, 2, 383, 3, 2, 2, 2, 2, 385, 3, 2, 2, 2, 2, 387, 3, 2, 2, 2, 2, 389, 3, 2, 2, 2, 2, 391, 3, 2, 2, 2, 2, 393, 3, 2, 2, 2, 2, 395, 3, 2, 2, 2, 2, 397, 3, 2, 2, 2, 2, 399, 3, 2, 2, 2, 2, 401, 3, 2, 2, 2, 2, 403, 3, 2, 2, 2, 2, 405, 3, 2, 2, 2, 2, 407, 3, 2, 2, 2, 2, 409, 3, 2, 2, 2, 2, 411, 3, 2, 2, 2, 2, 413, 3, 2, 2, 2, 2, 415, 3, 2, 2, 2, 2, 417, 3, 2, 2, 2, 2, 419, 3, 2, 2, 2, 2, 421, 3, 2, 2, 2, 2, 423, 3, 2, 2, 2, 2, 425, 3, 2, 2, 2, 2, 427, 3, 2, 2, 2, 2, 429, 3, 2, 2, 2, 2, 431, 3, 2, 2, 2, 2, 433, 3, 2, 2, 2, 2, 435, 3, 2, 2, 2, 2, 437, 3, 2, 2, 2, 2, 439, 3, 2, 2, 2, 2, 441, 3, 2, 2, 2, 2, 443, 3, 2, 2, 2, 2, 445, 3, 2, 2, 2, 2, 447, 3, 2, 2, 2, 2, 449, 3, 2, 2, 2, 2, 451, 3, 2, 2, 2, 2, 453, 3, 2, 2, 2, 2, 455, 3, 2, 2, 2, 2, 457, 3, 2, 2, 2, 2, 459, 3, 2, 2, 2, 2, 461, 3, 2, 2, 2, 2, 463, 3, 2, 2, 2, 2, 465, 3, 2, 2, 2, 2, 467, 3, 2, 2, 2, 2, 469, 3, 2, 2, 2, 2, 471, 3, 2, 2, 2, 2, 473, 3, 2, 2, 2, 2, 475, 3, 2, 2, 2, 2, 477, 3, 2, 2, 2, 2, 479, 3, 2, 2, 2, 2, 481, 3, 2, 2, 2, 2, 483, 3, 2, 2, 2, 2, 485, 3, 2, 2, 2, 2, 487, 3, 2, 2, 2, 2, 489, 3, 2, 2, 2, 2, 491, 3, 2, 2, 2, 2, 493, 3, 2, 2, 2, 2, 495, 3, 2, 2, 2, 2, 497, 3, 2, 2, 2, 2, 499, 3, 2, 2, 2, 2, 501, 3, 2, 2, 2, 2, 503, 3, 2, 2, 2, 2, 505, 3, 2, 2, 2, 2, 507, 3, 2, 2, 2, 2, 509, 3, 2, 2, 2, 2, 511, 3, 2, 2, 2, 2, 513, 3, 2, 2, 2, 2, 515, 3, 2, 2, 2, 2, 517, 3, 2, 2, 2, 2, 519, 3, 2, 2, 2, 2, 521, 3, 2, 2, 2, 2, 523, 3, 2, 2, 2, 2, 525, 3, 2, 2, 2, 2, 527, 3, 2, 2, 2, 2, 529, 3, 2, 2, 2, 2, 531, 3, 2, 2, 2, 2, 533, 3, 2, 2, 2, 2, 535, 3, 2, 2, 2, 2, 537, 3, 2, 2, 2, 2, 539, 3, 2, 2, 2, 2, 541, 3, 2, 2, 2, 2, 543, 3, 2, 2, 2, 2, 545, 3, 2, 2, 2, 2, 547, 3, 2, 2, 2, 2, 549, 3, 2, 2, 2, 2, 551, 3, 2, 2, 2, 2, 553, 3, 2, 2, 2, 2, 555, 3, 2, 2, 2, 2, 557, 3, 2, 2, 2, 2, 559, 3, 2, 2, 2, 2, 561, 3, 2, 2, 2, 2, 563, 3, 2, 2, 2, 2, 565, 3, 2, 2, 2, 2, 567, 3, 2, 2, 2, 2, 569, 3, 2, 2, 2, 2, 571, 3, 2, 2, 2, 2, 573, 3, 2, 2, 2, 2, 575, 3, 2, 2, 2, 2, 577, 3, 2, 2, 2, 2, 579, 3, 2, 2, 2, 2, 581, 3, 2, 2, 2, 2, 583, 3, 2, 2, 2, 2, 585, 3, 2, 2, 2, 2, 587, 3, 2, 2, 2, 2, 589, 3, 2, 2, 2, 2, 591, 3, 2, 2, 2, 2, 593, 3, 2, 2, 2, 2, 595, 3, 2, 2, 2, 2, 597, 3, 2, 2, 2, 2, 599, 3, 2, 2, 2, 2, 601, 3, 2, 2, 2, 2, 603, 3, 2, 2, 2, 2, 605, 3, 2, 2, 2, 2, 607, 3, 2, 2, 2, 2, 609, 3, 2, 2, 2, 2, 611, 3, 2, 2, 2, 2, 613, 3, 2, 2, 2, 2, 615, 3, 2, 2, 2, 2, 617, 3, 2, 2, 2, 2, 619, 3, 2, 2, 2, 3, 638, 3, 2, 2, 2, 5, 644, 3, 2, 2, 2, 7, 687, 3, 2, 2, 2, 9, 691, 3, 2, 2, 2, 11, 698, 3, 2, 2, 2, 13, 703, 3, 2, 2, 2, 15, 707, 3, 2, 2, 2, 17, 710, 3, 2, 2, 2, 19, 714, 3, 2, 2, 2, 21, 718, 3, 2, 2, 2, 23, 727, 3, 2, 2, 2, 25, 733, 3, 2, 2, 2, 27, 739, 3, 2, 2, 2, 29, 742, 3, 2, 2, 2, 31, 751, 3, 2, 2, 2, 33, 756, 3, 2, 2, 2, 35, 761, 3, 2, 2, 2, 37, 768, 3, 2, 2, 2, 39, 774, 3, 2, 2, 2, 41, 781, 3, 2, 2, 2, 43, 787, 3, 2, 2, 2, 45, 790, 3, 2, 2, 2, 47, 793, 3, 2, 2, 2, 49, 797, 3, 2, 2, 2, 51, 800, 3, 2, 2, 2, 53, 804, 3, 2, 2, 2, 55, 807, 3, 2, 2, 2, 57, 814, 3, 2, 2, 2, 59, 822, 3, 2, 2, 2, 61, 827, 3, 2, 2, 2, 63, 833, 3, 2, 2, 2, 65, 836, 3, 2, 2, 2, 67, 841, 3, 2, 2, 2, 69, 847, 3, 2, 2, 2, 71, 853, 3, 2, 2, 2, 73, 857, 3, 2, 2, 2, 75, 862, 3, 2, 2, 2, 77, 866, 3, 2, 2, 2, 79, 875, 3, 2, 2, 2, 81, 880, 3, 2, 2, 2, 83, 885, 3, 2, 2, 2, 85, 890, 3, 2, 2, 2, 87, 895, 3, 2, 2, 2, 89, 899, 3, 2, 2, 2, 91, 904, 3, 2, 2, 2, 93, 910, 3, 2, 2, 2, 95, 916, 3, 2, 2, 2, 97, 922, 3, 2, 2, 2, 99, 927, 3, 2, 2, 2, 101, 932, 3, 2, 2, 2, 103, 938, 3, 2, 2, 2, 105, 943, 3, 2, 2, 2, 107, 951, 3, 2, 2, 2, 109, 954, 3, 2, 2, 2, 111, 960, 3, 2, 2, 2, 113, 968, 3, 2, 2, 2, 115, 975, 3, 2, 2, 2, 117, 980, 3, 2, 2, 2, 119, 990, 3, 2, 2, 2, 121, 996, 3, 2, 2, 2, 123, 1001, 3, 2, 2, 2, 125, 1011, 3, 2, 2, 2, 127, 1021, 3, 2, 2, 2, 129, 1031, 3, 2, 2, 2, 131, 1039, 3, 2, 2, 2, 133, 1045, 3, 2, 2, 2, 135, 1051, 3, 2, 2, 2, 137, 1056, 3, 2, 2, 2, 139, 1061, 3, 2, 2, 2, 141, 1068, 3, 2, 2, 2, 143, 1075, 3, 2, 2, 2, 145, 1081, 3, 2, 2, 2, 147, 1091, 3, 2, 2, 2, 149, 1096, 3, 2, 2, 2, 151, 1104, 3, 2, 2, 2, 153, 1111, 3, 2, 2, 2, 155, 1118, 3, 2, 2, 2, 157, 1123, 3, 2, 2, 2, 159, 1132, 3, 2, 2, 2, 161, 1140, 3, 2, 2, 2, 163, 1147, 3, 2, 2, 2, 165, 1155, 3, 2, 2, 2, 167, 1163, 3, 2, 2, 2, 169, 1168, 3, 2, 2, 2, 171, 1173, 3, 2, 2, 2, 173, 1178, 3, 2, 2, 2, 175, 1185, 3, 2, 2, 2, 177, 1193, 3, 2, 2, 2, 179, 1200, 3, 2, 2, 2, 181, 1204, 3, 2, 2, 2, 183, 1215, 3, 2, 2, 2, 185, 1225, 3, 2, 2, 2, 187, 1230, 3, 2, 2, 2, 189, 1236, 3, 2, 2, 2, 191, 1243, 3, 2, 2, 2, 193, 1252, 3, 2, 2, 2, 195, 1262, 3, 2, 2, 2, 197, 1265, 3, 2, 2, 2, 199, 1277, 3, 2, 2, 2, 201, 1286, 3, 2, 2, 2, 203, 1292, 3, 2, 2, 2, 205, 1299, 3, 2, 2, 2, 207, 1306, 3, 2, 2, 2, 209, 1314, 3, 2, 2, 2, 211, 1318, 3, 2, 2, 2, 213, 1324, 3, 2, 2, 2, 215, 1329, 3, 2, 2, 2, 217, 1335, 3, 2, 2, 2, 219, 1347, 3, 2, 2, 2, 221, 1354, 3, 2, 2, 2, 223, 1363, 3, 2, 2, 2, 225, 1369, 3, 2, 2, 2, 227, 1376, 3, 2, 2, 2, 229, 1381, 3, 2, 2, 2, 231, 1389, 3, 2, 2, 2, 233, 1398, 3, 2, 2, 2, 235, 1401, 3, 2, 2, 2, 237, 1410, 3, 2, 2, 2, 239, 1418, 3, 2, 2, 2, 241, 1421, 3, 2, 2, 2, 243, 1426, 3, 2, 2, 2, 245, 1430, 3, 2, 2, 2, 247, 1435, 3, 2, 2, 2, 249, 1438, 3, 2, 2, 2, 251, 1442, 3, 2, 2, 2, 253, 1445, 3, 2, 2, 2, 255, 1449, 3, 2, 2, 2, 257, 1454, 3, 2, 2, 2, 259, 1460, 3, 2, 2, 2, 261, 1469, 3, 2, 2, 2, 263, 1475, 3, 2, 2, 2, 265, 1483, 3, 2, 2, 2, 267, 1487, 3, 2, 2, 2, 269, 1493, 3, 2, 2, 2, 271, 1503, 3, 2, 2, 2, 273, 1508, 3, 2, 2, 2, 275, 1520, 3, 2, 2, 2, 277, 1524, 3, 2, 2, 2, 279, 1535, 3, 2, 2, 2, 281, 1542, 3, 2, 2, 2, 283, 1546, 3, 2, 2, 2, 285, 1549, 3, 2, 2, 2, 287, 1554, 3, 2, 2, 2, 289, 1562, 3, 2, 2, 2, 291, 1573, 3, 2, 2, 2, 293, 1583, 3, 2, 2, 2, 295, 1593, 3, 2, 2, 2, 297, 1600, 3, 2, 2, 2, 299, 1606, 3, 2, 2, 2, 301, 1612, 3, 2, 2, 2, 303, 1628, 3, 2, 2, 2, 305, 1641, 3, 2, 2, 2, 307, 1654, 3, 2, 2, 2, 309, 1664, 3, 2, 2, 2, 311, 1671, 3, 2, 2, 2, 313, 1682, 3, 2, 2, 2, 315, 1693, 3, 2, 2, 2, 317, 1699, 3, 2, 2, 2, 319, 1704, 3, 2, 2, 2, 321, 1712, 3, 2, 2, 2, 323, 1718, 3, 2, 2, 2, 325, 1728, 3, 2, 2, 2, 327, 1737, 3, 2, 2, 2, 329, 1746, 3, 2, 2, 2, 331, 1754, 3, 2, 2, 2, 333, 1760, 3, 2, 2, 2, 335, 1766, 3, 2, 2, 2, 337, 1774, 3, 2, 2, 2, 339, 1779, 3, 2, 2, 2, 341, 1789, 3, 2, 2, 2, 343, 1796, 3, 2, 2, 2, 345, 1806, 3, 2, 2, 2, 347, 1814, 3, 2, 2, 2, 349, 1820, 3, 2, 2, 2, 351, 1834, 3, 2, 2, 2, 353, 1847, 3, 2, 2, 2, 355, 1855, 3, 2, 2, 2, 357, 1862, 3, 2, 2, 2, 359, 1869, 3, 2, 2, 2, 361, 1881, 3, 2, 2, 2, 363, 1890, 3, 2, 2, 2, 365, 1899, 3, 2, 2, 2, 367, 1907, 3, 2, 2, 2, 369, 1917, 3, 2, 2, 2, 371, 1928, 3, 2, 2, 2, 373, 1934, 3, 2, 2, 2, 375, 1942, 3, 2, 2, 2, 377, 1954, 3, 2, 2, 2, 379, 1961, 3, 2, 2, 2, 381, 1969, 3, 2, 2, 2, 383, 1978, 3, 2, 2, 2, 385, 1988, 3, 2, 2, 2, 387, 1995, 3, 2, 2, 2, 389, 2001, 3, 2, 2, 2, 391, 2013, 3, 2, 2, 2, 393, 2026, 3, 2, 2, 2, 395, 2035, 3, 2, 2, 2, 397, 2045, 3, 2, 2, 2, 399, 2049, 3, 2, 2, 2, 401, 2058, 3, 2, 2, 2, 403, 2066, 3, 2, 2, 2, 405, 2074, 3, 2, 2, 2, 407, 2079, 3, 2, 2, 2, 409, 2090, 3, 2, 2, 2, 411, 2102, 3, 2, 2, 2, 413, 2111, 3, 2, 2, 2, 415, 2119, 3, 2, 2, 2, 417, 2126, 3, 2, 2, 2, 419, 2132, 3, 2, 2, 2, 421, 2137, 3, 2, 2, 2, 423, 2144, 3, 2, 2, 2, 425, 2149, 3, 2, 2, 2, 427, 2156, 3, 2, 2, 2, 429, 2164, 3, 2, 2, 2, 431, 2171, 3, 2, 2, 2, 433, 2178, 3, 2, 2, 2, 435, 2183, 3, 2, 2, 2, 437, 2188, 3, 2, 2, 2, 439, 2194, 3, 2, 2, 2, 441, 2206, 3, 2, 2, 2, 443, 2217, 3, 2, 2, 2, 445, 2230, 3, 2, 2, 2, 447, 2236, 3, 2, 2, 2, 449, 2244, 3, 2, 2, 2, 451, 2250, 3, 2, 2, 2, 453, 2257, 3, 2, 2, 2, 455, 2262, 3, 2, 2, 2, 457, 2268, 3, 2, 2, 2, 459, 2275, 3, 2, 2, 2, 461, 2285, 3, 2, 2, 2, 463, 2292, 3, 2, 2, 2, 465, 2308, 3, 2, 2, 2, 467, 2317, 3, 2, 2, 2, 469, 2321, 3, 2, 2, 2, 471, 2325, 3, 2, 2, 2, 473, 2331, 3, 2, 2, 2, 475, 2337, 3, 2, 2, 2, 477, 2342, 3, 2, 2, 2, 479, 2347, 3, 2, 2, 2, 481, 2355, 3, 2, 2, 2, 483, 2362, 3, 2, 2, 2, 485, 2369, 3, 2, 2, 2, 487, 2372, 3, 2, 2, 2, 489, 2379, 3, 2, 2, 2, 491, 2389, 3, 2, 2, 2, 493, 2399, 3, 2, 2, 2, 495, 2411, 3, 2, 2, 2, 497, 2423, 3, 2, 2, 2, 499, 2433, 3, 2, 2, 2, 501, 2441, 3, 2, 2, 2, 503, 2450, 3, 2, 2, 2, 505, 2459, 3, 2, 2, 2, 507, 2465, 3, 2, 2, 2, 509, 2472, 3, 2, 2, 2, 511, 2478, 3, 2, 2, 2, 513, 2482, 3, 2, 2, 2, 515, 2487, 3, 2, 2, 2, 517, 2495, 3, 2, 2, 2, 519, 2502, 3, 2, 2, 2, 521, 2512, 3, 2, 2, 2, 523, 2518, 3, 2, 2, 2, 525, 2526, 3, 2, 2, 2, 527, 2534, 3, 2, 2, 2, 529, 2543, 3, 2, 2, 2, 531, 2547, 3, 2, 2, 2, 533, 2554, 3, 2, 2, 2, 535, 2560, 3, 2, 2, 2, 537, 2567, 3, 2, 2, 2, 539, 2572, 3, 2, 2, 2, 541, 2577, 3, 2, 2, 2, 543, 2587, 3, 2, 2, 2, 545, 2596, 3, 2, 2, 2, 547, 2604, 3, 2, 2, 2, 549, 2608, 3, 2, 2, 2, 551, 2612, 3, 2, 2, 2, 553, 2617, 3, 2, 2, 2, 555, 2619, 3, 2, 2, 2, 557, 2621, 3, 2, 2, 2, 559, 2623, 3, 2, 2, 2, 561, 2625, 3, 2, 2, 2, 563, 2627, 3, 2, 2, 2, 565, 2629, 3, 2, 2, 2, 567, 2631, 3, 2, 2, 2, 569, 2633, 3, 2, 2, 2, 571, 2635, 3, 2, 2, 2, 573, 2637, 3, 2, 2, 2, 575, 2639, 3, 2, 2, 2, 577, 2641, 3, 2, 2, 2, 579, 2643, 3, 2, 2, 2, 581, 2645, 3, 2, 2, 2, 583, 2647, 3, 2, 2, 2, 585, 2649, 3, 2, 2, 2, 587, 2651, 3, 2, 2, 2, 589, 2653, 3, 2, 2, 2, 591, 2655, 3, 2, 2, 2, 593, 2657, 3, 2, 2, 2, 595, 2659, 3, 2, 2, 2, 597, 2661, 3, 2, 2, 2, 599, 2663, 3, 2, 2, 2, 601, 2665, 3, 2, 2, 2, 603, 2667, 3, 2, 2, 2, 605, 2670, 3, 2, 2, 2, 607, 2673, 3, 2, 2, 2, 609, 2675, 3, 2, 2, 2, 611, 2681, 3, 2, 2, 2, 613, 2684, 3, 2, 2, 2, 615, 2731, 3, 2, 2, 2, 617, 2733, 3, 2, 2, 2, 619, 2735, 3, 2, 2, 2, 621, 2737, 3, 2, 2, 2, 623, 2749, 3, 2, 2, 2, 625, 2763, 3, 2, 2, 2, 627, 2765, 3, 2, 2, 2, 629, 2767, 3, 2, 2, 2, 631, 2780, 3, 2, 2, 2, 633, 2793, 3, 2, 2, 2, 635, 2802, 3, 2, 2, 2, 637, 639, 9, 2, 2, 2, 638, 637, 3, 2, 2, 2, 639, 640, 3, 2, 2, 2, 640, 638, 3, 2, 2, 2, 640, 641, 3, 2, 2, 2, 641, 642, 3, 2, 2, 2, 642, 643, 8, 2, 2, 2, 643, 4, 3, 2, 2, 2, 644, 645, 7, 49, 2, 2, 645, 646, 7, 44, 2, 2, 646, 650, 3, 2, 2, 2, 647, 649, 11, 2, 2, 2, 648, 647, 3, 2, 2, 2, 649, 652, 3, 2, 2, 2, 650, 651, 3, 2, 2, 2, 650, 648, 3, 2, 2, 2, 651, 653, 3, 2, 2, 2, 652, 650, 3, 2, 2, 2, 653, 654, 7, 44, 2, 2, 654, 655, 7, 49, 2, 2, 655, 656, 3, 2, 2, 2, 656, 657, 8, 3, 2, 2, 657, 6, 3, 2, 2, 2, 658, 659, 7, 47, 2, 2, 659, 660, 7, 47, 2, 2, 660, 663, 7, 34, 2, 2, 661, 663, 7, 37, 2, 2, 662, 658, 3, 2, 2, 2, 662, 661, 3, 2, 2, 2, 663, 667, 3, 2, 2, 2, 664, 666, 10, 3, 2, 2, 665, 664, 3, 2, 2, 2, 666, 669, 3, 2, 2, 2, 667, 665, 3, 2, 2, 2, 667, 668, 3, 2, 2, 2, 668, 675, 3, 2, 2, 2, 669, 667, 3, 2, 2, 2, 670, 672, 7, 15, 2, 2, 671, 670, 3, 2, 2, 2, 671, 672, 3, 2, 2, 2, 672, 673, 3, 2, 2, 2, 673, 676, 7, 12, 2, 2, 674, 676, 7, 2, 2, 3, 675, 671, 3, 2, 2, 2, 675, 674, 3, 2, 2, 2, 676, 688, 3, 2, 2, 2, 677, 678, 7, 47, 2, 2, 678, 679, 7, 47, 2, 2, 679, 685, 3, 2, 2, 2, 680, 682, 7, 15, 2, 2, 681, 680, 3, 2, 2, 2, 681, 682, 3, 2, 2, 2, 682, 683, 3, 2, 2, 2, 683, 686, 7, 12, 2, 2, 684, 686, 7, 2, 2, 3, 685, 681, 3, 2, 2, 2, 685, 684, 3, 2, 2, 2, 686, 688, 3, 2, 2, 2, 687, 662, 3, 2, 2, 2, 687, 677, 3, 2, 2, 2, 688, 689, 3, 2, 2, 2, 689, 690, 8, 4, 2, 2, 690, 8, 3, 2, 2, 2, 691, 692, 7, 85, 2, 2, 692, 693, 7, 71, 2, 2, 693, 694, 7, 78, 2, 2, 694, 695, 7, 71, 2, 2, 695, 696, 7, 69, 2, 2, 696, 697, 7, 86, 2, 2, 697, 10, 3, 2, 2, 2, 698, 699, 7, 72, 2, 2, 699, 700, 7, 84, 2, 2, 700, 701, 7, 81, 2, 2, 701, 702, 7, 79, 2, 2, 702, 12, 3, 2, 2, 2, 703, 704, 7, 67, 2, 2, 704, 705, 7, 70, 2, 2, 705, 706, 7, 70, 2, 2, 706, 14, 3, 2, 2, 2, 707, 708, 7, 67, 2, 2, 708, 709, 7, 85, 2, 2, 709, 16, 3, 2, 2, 2, 710, 711, 7, 67, 2, 2, 711, 712, 7, 78, 2, 2, 712, 713, 7, 78, 2, 2, 713, 18, 3, 2, 2, 2, 714, 715, 7, 67, 2, 2, 715, 716, 7, 80, 2, 2, 716, 717, 7, 91, 2, 2, 717, 20, 3, 2, 2, 2, 718, 719, 7, 70, 2, 2, 719, 720, 7, 75, 2, 2, 720, 721, 7, 85, 2, 2, 721, 722, 7, 86, 2, 2, 722, 723, 7, 75, 2, 2, 723, 724, 7, 80, 2, 2, 724, 725, 7, 69, 2, 2, 725, 726, 7, 86, 2, 2, 726, 22, 3, 2, 2, 2, 727, 728, 7, 89, 2, 2, 728, 729, 7, 74, 2, 2, 729, 730, 7, 71, 2, 2, 730, 731, 7, 84, 2, 2, 731, 732, 7, 71, 2, 2, 732, 24, 3, 2, 2, 2, 733, 734, 7, 73, 2, 2, 734, 735, 7, 84, 2, 2, 735, 736, 7, 81, 2, 2, 736, 737, 7, 87, 2, 2, 737, 738, 7, 82, 2, 2, 738, 26, 3, 2, 2, 2, 739, 740, 7, 68, 2, 2, 740, 741, 7, 91, 2, 2, 741, 28, 3, 2, 2, 2, 742, 743, 7, 73, 2, 2, 743, 744, 7, 84, 2, 2, 744, 745, 7, 81, 2, 2, 745, 746, 7, 87, 2, 2, 746, 747, 7, 82, 2, 2, 747, 748, 7, 75, 2, 2, 748, 749, 7, 80, 2, 2, 749, 750, 7, 73, 2, 2, 750, 30, 3, 2, 2, 2, 751, 752, 7, 85, 2, 2, 752, 753, 7, 71, 2, 2, 753, 754, 7, 86, 2, 2, 754, 755, 7, 85, 2, 2, 755, 32, 3, 2, 2, 2, 756, 757, 7, 69, 2, 2, 757, 758, 7, 87, 2, 2, 758, 759, 7, 68, 2, 2, 759, 760, 7, 71, 2, 2, 760, 34, 3, 2, 2, 2, 761, 762, 7, 84, 2, 2, 762, 763, 7, 81, 2, 2, 763, 764, 7, 78, 2, 2, 764, 765, 7, 78, 2, 2, 765, 766, 7, 87, 2, 2, 766, 767, 7, 82, 2, 2, 767, 36, 3, 2, 2, 2, 768, 769, 7, 81, 2, 2, 769, 770, 7, 84, 2, 2, 770, 771, 7, 70, 2, 2, 771, 772, 7, 71, 2, 2, 772, 773, 7, 84, 2, 2, 773, 38, 3, 2, 2, 2, 774, 775, 7, 74, 2, 2, 775, 776, 7, 67, 2, 2, 776, 777, 7, 88, 2, 2, 777, 778, 7, 75, 2, 2, 778, 779, 7, 80, 2, 2, 779, 780, 7, 73, 2, 2, 780, 40, 3, 2, 2, 2, 781, 782, 7, 78, 2, 2, 782, 783, 7, 75, 2, 2, 783, 784, 7, 79, 2, 2, 784, 785, 7, 75, 2, 2, 785, 786, 7, 86, 2, 2, 786, 42, 3, 2, 2, 2, 787, 788, 7, 67, 2, 2, 788, 789, 7, 86, 2, 2, 789, 44, 3, 2, 2, 2, 790, 791, 7, 81, 2, 2, 791, 792, 7, 84, 2, 2, 792, 46, 3, 2, 2, 2, 793, 794, 7, 67, 2, 2, 794, 795, 7, 80, 2, 2, 795, 796, 7, 70, 2, 2, 796, 48, 3, 2, 2, 2, 797, 798, 7, 75, 2, 2, 798, 799, 7, 80, 2, 2, 799, 50, 3, 2, 2, 2, 800, 801, 7, 80, 2, 2, 801, 802, 7, 81, 2, 2, 802, 803, 7, 86, 2, 2, 803, 52, 3, 2, 2, 2, 804, 805, 7, 80, 2, 2, 805, 806, 7, 81, 2, 2, 806, 54, 3, 2, 2, 2, 807, 808, 7, 71, 2, 2, 808, 809, 7, 90, 2, 2, 809, 810, 7, 75, 2, 2, 810, 811, 7, 85, 2, 2, 811, 812, 7, 86, 2, 2, 812, 813, 7, 85, 2, 2, 813, 56, 3, 2, 2, 2, 814, 815, 7, 68, 2, 2, 815, 816, 7, 71, 2, 2, 816, 817, 7, 86, 2, 2, 817, 818, 7, 89, 2, 2, 818, 819, 7, 71, 2, 2, 819, 820, 7, 71, 2, 2, 820, 821, 7, 80, 2, 2, 821, 58, 3, 2, 2, 2, 822, 823, 7, 78, 2, 2, 823, 824, 7, 75, 2, 2, 824, 825, 7, 77, 2, 2, 825, 826, 7, 71, 2, 2, 826, 60, 3, 2, 2, 2, 827, 828, 7, 84, 2, 2, 828, 829, 7, 78, 2, 2, 829, 830, 7, 75, 2, 2, 830, 831, 7, 77, 2, 2, 831, 832, 7, 71, 2, 2, 832, 62, 3, 2, 2, 2, 833, 834, 7, 75, 2, 2, 834, 835, 7, 85, 2, 2, 835, 64, 3, 2, 2, 2, 836, 837, 7, 86, 2, 2, 837, 838, 7, 84, 2, 2, 838, 839, 7, 87, 2, 2, 839, 840, 7, 71, 2, 2, 840, 66, 3, 2, 2, 2, 841, 842, 7, 72, 2, 2, 842, 843, 7, 67, 2, 2, 843, 844, 7, 78, 2, 2, 844, 845, 7, 85, 2, 2, 845, 846, 7, 71, 2, 2, 846, 68, 3, 2, 2, 2, 847, 848, 7, 80, 2, 2, 848, 849, 7, 87, 2, 2, 849, 850, 7, 78, 2, 2, 850, 851, 7, 78, 2, 2, 851, 852, 7, 85, 2, 2, 852, 70, 3, 2, 2, 2, 853, 854, 7, 67, 2, 2, 854, 855, 7, 85, 2, 2, 855, 856, 7, 69, 2, 2, 856, 72, 3, 2, 2, 2, 857, 858, 7, 70, 2, 2, 858, 859, 7, 71, 2, 2, 859, 860, 7, 85, 2, 2, 860, 861, 7, 69, 2, 2, 861, 74, 3, 2, 2, 2, 862, 863, 7, 72, 2, 2, 863, 864, 7, 81, 2, 2, 864, 865, 7, 84, 2, 2, 865, 76, 3, 2, 2, 2, 866, 867, 7, 75, 2, 2, 867, 868, 7, 80, 2, 2, 868, 869, 7, 86, 2, 2, 869, 870, 7, 71, 2, 2, 870, 871, 7, 84, 2, 2, 871, 872, 7, 88, 2, 2, 872, 873, 7, 67, 2, 2, 873, 874, 7, 78, 2, 2, 874, 78, 3, 2, 2, 2, 875, 876, 7, 69, 2, 2, 876, 877, 7, 67, 2, 2, 877, 878, 7, 85, 2, 2, 878, 879, 7, 71, 2, 2, 879, 80, 3, 2, 2, 2, 880, 881, 7, 89, 2, 2, 881, 882, 7, 74, 2, 2, 882, 883, 7, 71, 2, 2, 883, 884, 7, 80, 2, 2, 884, 82, 3, 2, 2, 2, 885, 886, 7, 86, 2, 2, 886, 887, 7, 74, 2, 2, 887, 888, 7, 71, 2, 2, 888, 889, 7, 80, 2, 2, 889, 84, 3, 2, 2, 2, 890, 891, 7, 71, 2, 2, 891, 892, 7, 78, 2, 2, 892, 893, 7, 85, 2, 2, 893, 894, 7, 71, 2, 2, 894, 86, 3, 2, 2, 2, 895, 896, 7, 71, 2, 2, 896, 897, 7, 80, 2, 2, 897, 898, 7, 70, 2, 2, 898, 88, 3, 2, 2, 2, 899, 900, 7, 76, 2, 2, 900, 901, 7, 81, 2, 2, 901, 902, 7, 75, 2, 2, 902, 903, 7, 80, 2, 2, 903, 90, 3, 2, 2, 2, 904, 905, 7, 69, 2, 2, 905, 906, 7, 84, 2, 2, 906, 907, 7, 81, 2, 2, 907, 908, 7, 85, 2, 2, 908, 909, 7, 85, 2, 2, 909, 92, 3, 2, 2, 2, 910, 911, 7, 81, 2, 2, 911, 912, 7, 87, 2, 2, 912, 913, 7, 86, 2, 2, 913, 914, 7, 71, 2, 2, 914, 915, 7, 84, 2, 2, 915, 94, 3, 2, 2, 2, 916, 917, 7, 75, 2, 2, 917, 918, 7, 80, 2, 2, 918, 919, 7, 80, 2, 2, 919, 920, 7, 71, 2, 2, 920, 921, 7, 84, 2, 2, 921, 96, 3, 2, 2, 2, 922, 923, 7, 78, 2, 2, 923, 924, 7, 71, 2, 2, 924, 925, 7, 72, 2, 2, 925, 926, 7, 86, 2, 2, 926, 98, 3, 2, 2, 2, 927, 928, 7, 85, 2, 2, 928, 929, 7, 71, 2, 2, 929, 930, 7, 79, 2, 2, 930, 931, 7, 75, 2, 2, 931, 100, 3, 2, 2, 2, 932, 933, 7, 84, 2, 2, 933, 934, 7, 75, 2, 2, 934, 935, 7, 73, 2, 2, 935, 936, 7, 74, 2, 2, 936, 937, 7, 86, 2, 2, 937, 102, 3, 2, 2, 2, 938, 939, 7, 72, 2, 2, 939, 940, 7, 87, 2, 2, 940, 941, 7, 78, 2, 2, 941, 942, 7, 78, 2, 2, 942, 104, 3, 2, 2, 2, 943, 944, 7, 80, 2, 2, 944, 945, 7, 67, 2, 2, 945, 946, 7, 86, 2, 2, 946, 947, 7, 87, 2, 2, 947, 948, 7, 84, 2, 2, 948, 949, 7, 67, 2, 2, 949, 950, 7, 78, 2, 2, 950, 106, 3, 2, 2, 2, 951, 952, 7, 81, 2, 2, 952, 953, 7, 80, 2, 2, 953, 108, 3, 2, 2, 2, 954, 955, 7, 82, 2, 2, 955, 956, 7, 75, 2, 2, 956, 957, 7, 88, 2, 2, 957, 958, 7, 81, 2, 2, 958, 959, 7, 86, 2, 2, 959, 110, 3, 2, 2, 2, 960, 961, 7, 78, 2, 2, 961, 962, 7, 67, 2, 2, 962, 963, 7, 86, 2, 2, 963, 964, 7, 71, 2, 2, 964, 965, 7, 84, 2, 2, 965, 966, 7, 67, 2, 2, 966, 967, 7, 78, 2, 2, 967, 112, 3, 2, 2, 2, 968, 969, 7, 89, 2, 2, 969, 970, 7, 75, 2, 2, 970, 971, 7, 80, 2, 2, 971, 972, 7, 70, 2, 2, 972, 973, 7, 81, 2, 2, 973, 974, 7, 89, 2, 2, 974, 114, 3, 2, 2, 2, 975, 976, 7, 81, 2, 2, 976, 977, 7, 88, 2, 2, 977, 978, 7, 71, 2, 2, 978, 979, 7, 84, 2, 2, 979, 116, 3, 2, 2, 2, 980, 981, 7, 82, 2, 2, 981, 982, 7, 67, 2, 2, 982, 983, 7, 84, 2, 2, 983, 984, 7, 86, 2, 2, 984, 985, 7, 75, 2, 2, 985, 986, 7, 86, 2, 2, 986, 987, 7, 75, 2, 2, 987, 988, 7, 81, 2, 2, 988, 989, 7, 80, 2, 2, 989, 118, 3, 2, 2, 2, 990, 991, 7, 84, 2, 2, 991, 992, 7, 67, 2, 2, 992, 993, 7, 80, 2, 2, 993, 994, 7, 73, 2, 2, 994, 995, 7, 71, 2, 2, 995, 120, 3, 2, 2, 2, 996, 997, 7, 84, 2, 2, 997, 998, 7, 81, 2, 2, 998, 999, 7, 89, 2, 2, 999, 1000, 7, 85, 2, 2, 1000, 122, 3, 2, 2, 2, 1001, 1002, 7, 87, 2, 2, 1002, 1003, 7, 80, 2, 2, 1003, 1004, 7, 68, 2, 2, 1004, 1005, 7, 81, 2, 2, 1005, 1006, 7, 87, 2, 2, 1006, 1007, 7, 80, 2, 2, 1007, 1008, 7, 70, 2, 2, 1008, 1009, 7, 71, 2, 2, 1009, 1010, 7, 70, 2, 2, 1010, 124, 3, 2, 2, 2, 1011, 1012, 7, 82, 2, 2, 1012, 1013, 7, 84, 2, 2, 1013, 1014, 7, 71, 2, 2, 1014, 1015, 7, 69, 2, 2, 1015, 1016, 7, 71, 2, 2, 1016, 1017, 7, 70, 2, 2, 1017, 1018, 7, 75, 2, 2, 1018, 1019, 7, 80, 2, 2, 1019, 1020, 7, 73, 2, 2, 1020, 126, 3, 2, 2, 2, 1021, 1022, 7, 72, 2, 2, 1022, 1023, 7, 81, 2, 2, 1023, 1024, 7, 78, 2, 2, 1024, 1025, 7, 78, 2, 2, 1025, 1026, 7, 81, 2, 2, 1026, 1027, 7, 89, 2, 2, 1027, 1028, 7, 75, 2, 2, 1028, 1029, 7, 80, 2, 2, 1029, 1030, 7, 73, 2, 2, 1030, 128, 3, 2, 2, 2, 1031, 1032, 7, 69, 2, 2, 1032, 1033, 7, 87, 2, 2, 1033, 1034, 7, 84, 2, 2, 1034, 1035, 7, 84, 2, 2, 1035, 1036, 7, 71, 2, 2, 1036, 1037, 7, 80, 2, 2, 1037, 1038, 7, 86, 2, 2, 1038, 130, 3, 2, 2, 2, 1039, 1040, 7, 72, 2, 2, 1040, 1041, 7, 75, 2, 2, 1041, 1042, 7, 84, 2, 2, 1042, 1043, 7, 85, 2, 2, 1043, 1044, 7, 86, 2, 2, 1044, 132, 3, 2, 2, 2, 1045, 1046, 7, 67, 2, 2, 1046, 1047, 7, 72, 2, 2, 1047, 1048, 7, 86, 2, 2, 1048, 1049, 7, 71, 2, 2, 1049, 1050, 7, 84, 2, 2, 1050, 134, 3, 2, 2, 2, 1051, 1052, 7, 78, 2, 2, 1052, 1053, 7, 67, 2, 2, 1053, 1054, 7, 85, 2, 2, 1054, 1055, 7, 86, 2, 2, 1055, 136, 3, 2, 2, 2, 1056, 1057, 7, 89, 2, 2, 1057, 1058, 7, 75, 2, 2, 1058, 1059, 7, 86, 2, 2, 1059, 1060, 7, 74, 2, 2, 1060, 138, 3, 2, 2, 2, 1061, 1062, 7, 88, 2, 2, 1062, 1063, 7, 67, 2, 2, 1063, 1064, 7, 78, 2, 2, 1064, 1065, 7, 87, 2, 2, 1065, 1066, 7, 71, 2, 2, 1066, 1067, 7, 85, 2, 2, 1067, 140, 3, 2, 2, 2, 1068, 1069, 7, 69, 2, 2, 1069, 1070, 7, 84, 2, 2, 1070, 1071, 7, 71, 2, 2, 1071, 1072, 7, 67, 2, 2, 1072, 1073, 7, 86, 2, 2, 1073, 1074, 7, 71, 2, 2, 1074, 142, 3, 2, 2, 2, 1075, 1076, 7, 86, 2, 2, 1076, 1077, 7, 67, 2, 2, 1077, 1078, 7, 68, 2, 2, 1078, 1079, 7, 78, 2, 2, 1079, 1080, 7, 71, 2, 2, 1080, 144, 3, 2, 2, 2, 1081, 1082, 7, 70, 2, 2, 1082, 1083, 7, 75, 2, 2, 1083, 1084, 7, 84, 2, 2, 1084, 1085, 7, 71, 2, 2, 1085, 1086, 7, 69, 2, 2, 1086, 1087, 7, 86, 2, 2, 1087, 1088, 7, 81, 2, 2, 1088, 1089, 7, 84, 2, 2, 1089, 1090, 7, 91, 2, 2, 1090, 146, 3, 2, 2, 2, 1091, 1092, 7, 88, 2, 2, 1092, 1093, 7, 75, 2, 2, 1093, 1094, 7, 71, 2, 2, 1094, 1095, 7, 89, 2, 2, 1095, 148, 3, 2, 2, 2, 1096, 1097, 7, 84, 2, 2, 1097, 1098, 7, 71, 2, 2, 1098, 1099, 7, 82, 2, 2, 1099, 1100, 7, 78, 2, 2, 1100, 1101, 7, 67, 2, 2, 1101, 1102, 7, 69, 2, 2, 1102, 1103, 7, 71, 2, 2, 1103, 150, 3, 2, 2, 2, 1104, 1105, 7, 75, 2, 2, 1105, 1106, 7, 80, 2, 2, 1106, 1107, 7, 85, 2, 2, 1107, 1108, 7, 71, 2, 2, 1108, 1109, 7, 84, 2, 2, 1109, 1110, 7, 86, 2, 2, 1110, 152, 3, 2, 2, 2, 1111, 1112, 7, 70, 2, 2, 1112, 1113, 7, 71, 2, 2, 1113, 1114, 7, 78, 2, 2, 1114, 1115, 7, 71, 2, 2, 1115, 1116, 7, 86, 2, 2, 1116, 1117, 7, 71, 2, 2, 1117, 154, 3, 2, 2, 2, 1118, 1119, 7, 75, 2, 2, 1119, 1120, 7, 80, 2, 2, 1120, 1121, 7, 86, 2, 2, 1121, 1122, 7, 81, 2, 2, 1122, 156, 3, 2, 2, 2, 1123, 1124, 7, 70, 2, 2, 1124, 1125, 7, 71, 2, 2, 1125, 1126, 7, 85, 2, 2, 1126, 1127, 7, 69, 2, 2, 1127, 1128, 7, 84, 2, 2, 1128, 1129, 7, 75, 2, 2, 1129, 1130, 7, 68, 2, 2, 1130, 1131, 7, 71, 2, 2, 1131, 158, 3, 2, 2, 2, 1132, 1133, 7, 71, 2, 2, 1133, 1134, 7, 90, 2, 2, 1134, 1135, 7, 82, 2, 2, 1135, 1136, 7, 78, 2, 2, 1136, 1137, 7, 67, 2, 2, 1137, 1138, 7, 75, 2, 2, 1138, 1139, 7, 80, 2, 2, 1139, 160, 3, 2, 2, 2, 1140, 1141, 7, 72, 2, 2, 1141, 1142, 7, 81, 2, 2, 1142, 1143, 7, 84, 2, 2, 1143, 1144, 7, 79, 2, 2, 1144, 1145, 7, 67, 2, 2, 1145, 1146, 7, 86, 2, 2, 1146, 162, 3, 2, 2, 2, 1147, 1148, 7, 78, 2, 2, 1148, 1149, 7, 81, 2, 2, 1149, 1150, 7, 73, 2, 2, 1150, 1151, 7, 75, 2, 2, 1151, 1152, 7, 69, 2, 2, 1152, 1153, 7, 67, 2, 2, 1153, 1154, 7, 78, 2, 2, 1154, 164, 3, 2, 2, 2, 1155, 1156, 7, 69, 2, 2, 1156, 1157, 7, 81, 2, 2, 1157, 1158, 7, 70, 2, 2, 1158, 1159, 7, 71, 2, 2, 1159, 1160, 7, 73, 2, 2, 1160, 1161, 7, 71, 2, 2, 1161, 1162, 7, 80, 2, 2, 1162, 166, 3, 2, 2, 2, 1163, 1164, 7, 69, 2, 2, 1164, 1165, 7, 81, 2, 2, 1165, 1166, 7, 85, 2, 2, 1166, 1167, 7, 86, 2, 2, 1167, 168, 3, 2, 2, 2, 1168, 1169, 7, 69, 2, 2, 1169, 1170, 7, 67, 2, 2, 1170, 1171, 7, 85, 2, 2, 1171, 1172, 7, 86, 2, 2, 1172, 170, 3, 2, 2, 2, 1173, 1174, 7, 85, 2, 2, 1174, 1175, 7, 74, 2, 2, 1175, 1176, 7, 81, 2, 2, 1176, 1177, 7, 89, 2, 2, 1177, 172, 3, 2, 2, 2, 1178, 1179, 7, 86, 2, 2, 1179, 1180, 7, 67, 2, 2, 1180, 1181, 7, 68, 2, 2, 1181, 1182, 7, 78, 2, 2, 1182, 1183, 7, 71, 2, 2, 1183, 1184, 7, 85, 2, 2, 1184, 174, 3, 2, 2, 2, 1185, 1186, 7, 69, 2, 2, 1186, 1187, 7, 81, 2, 2, 1187, 1188, 7, 78, 2, 2, 1188, 1189, 7, 87, 2, 2, 1189, 1190, 7, 79, 2, 2, 1190, 1191, 7, 80, 2, 2, 1191, 1192, 7, 85, 2, 2, 1192, 176, 3, 2, 2, 2, 1193, 1194, 7, 69, 2, 2, 1194, 1195, 7, 81, 2, 2, 1195, 1196, 7, 78, 2, 2, 1196, 1197, 7, 87, 2, 2, 1197, 1198, 7, 79, 2, 2, 1198, 1199, 7, 80, 2, 2, 1199, 178, 3, 2, 2, 2, 1200, 1201, 7, 87, 2, 2, 1201, 1202, 7, 85, 2, 2, 1202, 1203, 7, 71, 2, 2, 1203, 180, 3, 2, 2, 2, 1204, 1205, 7, 82, 2, 2, 1205, 1206, 7, 67, 2, 2, 1206, 1207, 7, 84, 2, 2, 1207, 1208, 7, 86, 2, 2, 1208, 1209, 7, 75, 2, 2, 1209, 1210, 7, 86, 2, 2, 1210, 1211, 7, 75, 2, 2, 1211, 1212, 7, 81, 2, 2, 1212, 1213, 7, 80, 2, 2, 1213, 1214, 7, 85, 2, 2, 1214, 182, 3, 2, 2, 2, 1215, 1216, 7, 72, 2, 2, 1216, 1217, 7, 87, 2, 2, 1217, 1218, 7, 80, 2, 2, 1218, 1219, 7, 69, 2, 2, 1219, 1220, 7, 86, 2, 2, 1220, 1221, 7, 75, 2, 2, 1221, 1222, 7, 81, 2, 2, 1222, 1223, 7, 80, 2, 2, 1223, 1224, 7, 85, 2, 2, 1224, 184, 3, 2, 2, 2, 1225, 1226, 7, 70, 2, 2, 1226, 1227, 7, 84, 2, 2, 1227, 1228, 7, 81, 2, 2, 1228, 1229, 7, 82, 2, 2, 1229, 186, 3, 2, 2, 2, 1230, 1231, 7, 87, 2, 2, 1231, 1232, 7, 80, 2, 2, 1232, 1233, 7, 75, 2, 2, 1233, 1234, 7, 81, 2, 2, 1234, 1235, 7, 80, 2, 2, 1235, 188, 3, 2, 2, 2, 1236, 1237, 7, 71, 2, 2, 1237, 1238, 7, 90, 2, 2, 1238, 1239, 7, 69, 2, 2, 1239, 1240, 7, 71, 2, 2, 1240, 1241, 7, 82, 2, 2, 1241, 1242, 7, 86, 2, 2, 1242, 190, 3, 2, 2, 2, 1243, 1244, 7, 85, 2, 2, 1244, 1245, 7, 71, 2, 2, 1245, 1246, 7, 86, 2, 2, 1246, 1247, 7, 79, 2, 2, 1247, 1248, 7, 75, 2, 2, 1248, 1249, 7, 80, 2, 2, 1249, 1250, 7, 87, 2, 2, 1250, 1251, 7, 85, 2, 2, 1251, 192, 3, 2, 2, 2, 1252, 1253, 7, 75, 2, 2, 1253, 1254, 7, 80, 2, 2, 1254, 1255, 7, 86, 2, 2, 1255, 1256, 7, 71, 2, 2, 1256, 1257, 7, 84, 2, 2, 1257, 1258, 7, 85, 2, 2, 1258, 1259, 7, 71, 2, 2, 1259, 1260, 7, 69, 2, 2, 1260, 1261, 7, 86, 2, 2, 1261, 194, 3, 2, 2, 2, 1262, 1263, 7, 86, 2, 2, 1263, 1264, 7, 81, 2, 2, 1264, 196, 3, 2, 2, 2, 1265, 1266, 7, 86, 2, 2, 1266, 1267, 7, 67, 2, 2, 1267, 1268, 7, 68, 2, 2, 1268, 1269, 7, 78, 2, 2, 1269, 1270, 7, 71, 2, 2, 1270, 1271, 7, 85, 2, 2, 1271, 1272, 7, 67, 2, 2, 1272, 1273, 7, 79, 2, 2, 1273, 1274, 7, 82, 2, 2, 1274, 1275, 7, 78, 2, 2, 1275, 1276, 7, 71, 2, 2, 1276, 198, 3, 2, 2, 2, 1277, 1278, 7, 85, 2, 2, 1278, 1279, 7, 86, 2, 2, 1279, 1280, 7, 84, 2, 2, 1280, 1281, 7, 67, 2, 2, 1281, 1282, 7, 86, 2, 2, 1282, 1283, 7, 75, 2, 2, 1283, 1284, 7, 72, 2, 2, 1284, 1285, 7, 91, 2, 2, 1285, 200, 3, 2, 2, 2, 1286, 1287, 7, 67, 2, 2, 1287, 1288, 7, 78, 2, 2, 1288, 1289, 7, 86, 2, 2, 1289, 1290, 7, 71, 2, 2, 1290, 1291, 7, 84, 2, 2, 1291, 202, 3, 2, 2, 2, 1292, 1293, 7, 84, 2, 2, 1293, 1294, 7, 71, 2, 2, 1294, 1295, 7, 80, 2, 2, 1295, 1296, 7, 67, 2, 2, 1296, 1297, 7, 79, 2, 2, 1297, 1298, 7, 71, 2, 2, 1298, 204, 3, 2, 2, 2, 1299, 1300, 7, 85, 2, 2, 1300, 1301, 7, 86, 2, 2, 1301, 1302, 7, 84, 2, 2, 1302, 1303, 7, 87, 2, 2, 1303, 1304, 7, 69, 2, 2, 1304, 1305, 7, 86, 2, 2, 1305, 206, 3, 2, 2, 2, 1306, 1307, 7, 69, 2, 2, 1307, 1308, 7, 81, 2, 2, 1308, 1309, 7, 79, 2, 2, 1309, 1310, 7, 79, 2, 2, 1310, 1311, 7, 71, 2, 2, 1311, 1312, 7, 80, 2, 2, 1312, 1313, 7, 86, 2, 2, 1313, 208, 3, 2, 2, 2, 1314, 1315, 7, 85, 2, 2, 1315, 1316, 7, 71, 2, 2, 1316, 1317, 7, 86, 2, 2, 1317, 210, 3, 2, 2, 2, 1318, 1319, 7, 84, 2, 2, 1319, 1320, 7, 71, 2, 2, 1320, 1321, 7, 85, 2, 2, 1321, 1322, 7, 71, 2, 2, 1322, 1323, 7, 86, 2, 2, 1323, 212, 3, 2, 2, 2, 1324, 1325, 7, 70, 2, 2, 1325, 1326, 7, 67, 2, 2, 1326, 1327, 7, 86, 2, 2, 1327, 1328, 7, 67, 2, 2, 1328, 214, 3, 2, 2, 2, 1329, 1330, 7, 85, 2, 2, 1330, 1331, 7, 86, 2, 2, 1331, 1332, 7, 67, 2, 2, 1332, 1333, 7, 84, 2, 2, 1333, 1334, 7, 86, 2, 2, 1334, 216, 3, 2, 2, 2, 1335, 1336, 7, 86, 2, 2, 1336, 1337, 7, 84, 2, 2, 1337, 1338, 7, 67, 2, 2, 1338, 1339, 7, 80, 2, 2, 1339, 1340, 7, 85, 2, 2, 1340, 1341, 7, 67, 2, 2, 1341, 1342, 7, 69, 2, 2, 1342, 1343, 7, 86, 2, 2, 1343, 1344, 7, 75, 2, 2, 1344, 1345, 7, 81, 2, 2, 1345, 1346, 7, 80, 2, 2, 1346, 218, 3, 2, 2, 2, 1347, 1348, 7, 69, 2, 2, 1348, 1349, 7, 81, 2, 2, 1349, 1350, 7, 79, 2, 2, 1350, 1351, 7, 79, 2, 2, 1351, 1352, 7, 75, 2, 2, 1352, 1353, 7, 86, 2, 2, 1353, 220, 3, 2, 2, 2, 1354, 1355, 7, 84, 2, 2, 1355, 1356, 7, 81, 2, 2, 1356, 1357, 7, 78, 2, 2, 1357, 1358, 7, 78, 2, 2, 1358, 1359, 7, 68, 2, 2, 1359, 1360, 7, 67, 2, 2, 1360, 1361, 7, 69, 2, 2, 1361, 1362, 7, 77, 2, 2, 1362, 222, 3, 2, 2, 2, 1363, 1364, 7, 79, 2, 2, 1364, 1365, 7, 67, 2, 2, 1365, 1366, 7, 69, 2, 2, 1366, 1367, 7, 84, 2, 2, 1367, 1368, 7, 81, 2, 2, 1368, 224, 3, 2, 2, 2, 1369, 1370, 7, 75, 2, 2, 1370, 1371, 7, 73, 2, 2, 1371, 1372, 7, 80, 2, 2, 1372, 1373, 7, 81, 2, 2, 1373, 1374, 7, 84, 2, 2, 1374, 1375, 7, 71, 2, 2, 1375, 226, 3, 2, 2, 2, 1376, 1377, 7, 68, 2, 2, 1377, 1378, 7, 81, 2, 2, 1378, 1379, 7, 86, 2, 2, 1379, 1380, 7, 74, 2, 2, 1380, 228, 3, 2, 2, 2, 1381, 1382, 7, 78, 2, 2, 1382, 1383, 7, 71, 2, 2, 1383, 1384, 7, 67, 2, 2, 1384, 1385, 7, 70, 2, 2, 1385, 1386, 7, 75, 2, 2, 1386, 1387, 7, 80, 2, 2, 1387, 1388, 7, 73, 2, 2, 1388, 230, 3, 2, 2, 2, 1389, 1390, 7, 86, 2, 2, 1390, 1391, 7, 84, 2, 2, 1391, 1392, 7, 67, 2, 2, 1392, 1393, 7, 75, 2, 2, 1393, 1394, 7, 78, 2, 2, 1394, 1395, 7, 75, 2, 2, 1395, 1396, 7, 80, 2, 2, 1396, 1397, 7, 73, 2, 2, 1397, 232, 3, 2, 2, 2, 1398, 1399, 7, 75, 2, 2, 1399, 1400, 7, 72, 2, 2, 1400, 234, 3, 2, 2, 2, 1401, 1402, 7, 82, 2, 2, 1402, 1403, 7, 81, 2, 2, 1403, 1404, 7, 85, 2, 2, 1404, 1405, 7, 75, 2, 2, 1405, 1406, 7, 86, 2, 2, 1406, 1407, 7, 75, 2, 2, 1407, 1408, 7, 81, 2, 2, 1408, 1409, 7, 80, 2, 2, 1409, 236, 3, 2, 2, 2, 1410, 1411, 7, 71, 2, 2, 1411, 1412, 7, 90, 2, 2, 1412, 1413, 7, 86, 2, 2, 1413, 1414, 7, 84, 2, 2, 1414, 1415, 7, 67, 2, 2, 1415, 1416, 7, 69, 2, 2, 1416, 1417, 7, 86, 2, 2, 1417, 238, 3, 2, 2, 2, 1418, 1419, 7, 71, 2, 2, 1419, 1420, 7, 83, 2, 2, 1420, 240, 3, 2, 2, 2, 1421, 1422, 7, 80, 2, 2, 1422, 1423, 7, 85, 2, 2, 1423, 1424, 7, 71, 2, 2, 1424, 1425, 7, 83, 2, 2, 1425, 242, 3, 2, 2, 2, 1426, 1427, 7, 80, 2, 2, 1427, 1428, 7, 71, 2, 2, 1428, 1429, 7, 83, 2, 2, 1429, 244, 3, 2, 2, 2, 1430, 1431, 7, 80, 2, 2, 1431, 1432, 7, 71, 2, 2, 1432, 1433, 7, 83, 2, 2, 1433, 1434, 7, 76, 2, 2, 1434, 246, 3, 2, 2, 2, 1435, 1436, 7, 78, 2, 2, 1436, 1437, 7, 86, 2, 2, 1437, 248, 3, 2, 2, 2, 1438, 1439, 7, 78, 2, 2, 1439, 1440, 7, 86, 2, 2, 1440, 1441, 7, 71, 2, 2, 1441, 250, 3, 2, 2, 2, 1442, 1443, 7, 73, 2, 2, 1443, 1444, 7, 86, 2, 2, 1444, 252, 3, 2, 2, 2, 1445, 1446, 7, 73, 2, 2, 1446, 1447, 7, 86, 2, 2, 1447, 1448, 7, 71, 2, 2, 1448, 254, 3, 2, 2, 2, 1449, 1450, 7, 82, 2, 2, 1450, 1451, 7, 78, 2, 2, 1451, 1452, 7, 87, 2, 2, 1452, 1453, 7, 85, 2, 2, 1453, 256, 3, 2, 2, 2, 1454, 1455, 7, 79, 2, 2, 1455, 1456, 7, 75, 2, 2, 1456, 1457, 7, 80, 2, 2, 1457, 1458, 7, 87, 2, 2, 1458, 1459, 7, 85, 2, 2, 1459, 258, 3, 2, 2, 2, 1460, 1461, 7, 67, 2, 2, 1461, 1462, 7, 85, 2, 2, 1462, 1463, 7, 86, 2, 2, 1463, 1464, 7, 71, 2, 2, 1464, 1465, 7, 84, 2, 2, 1465, 1466, 7, 75, 2, 2, 1466, 1467, 7, 85, 2, 2, 1467, 1468, 7, 77, 2, 2, 1468, 260, 3, 2, 2, 2, 1469, 1470, 7, 85, 2, 2, 1470, 1471, 7, 78, 2, 2, 1471, 1472, 7, 67, 2, 2, 1472, 1473, 7, 85, 2, 2, 1473, 1474, 7, 74, 2, 2, 1474, 262, 3, 2, 2, 2, 1475, 1476, 7, 82, 2, 2, 1476, 1477, 7, 71, 2, 2, 1477, 1478, 7, 84, 2, 2, 1478, 1479, 7, 69, 2, 2, 1479, 1480, 7, 71, 2, 2, 1480, 1481, 7, 80, 2, 2, 1481, 1482, 7, 86, 2, 2, 1482, 264, 3, 2, 2, 2, 1483, 1484, 7, 70, 2, 2, 1484, 1485, 7, 75, 2, 2, 1485, 1486, 7, 88, 2, 2, 1486, 266, 3, 2, 2, 2, 1487, 1488, 7, 86, 2, 2, 1488, 1489, 7, 75, 2, 2, 1489, 1490, 7, 78, 2, 2, 1490, 1491, 7, 70, 2, 2, 1491, 1492, 7, 71, 2, 2, 1492, 268, 3, 2, 2, 2, 1493, 1494, 7, 67, 2, 2, 1494, 1495, 7, 79, 2, 2, 1495, 1496, 7, 82, 2, 2, 1496, 1497, 7, 71, 2, 2, 1497, 1498, 7, 84, 2, 2, 1498, 1499, 7, 85, 2, 2, 1499, 1500, 7, 67, 2, 2, 1500, 1501, 7, 80, 2, 2, 1501, 1502, 7, 70, 2, 2, 1502, 270, 3, 2, 2, 2, 1503, 1504, 7, 82, 2, 2, 1504, 1505, 7, 75, 2, 2, 1505, 1506, 7, 82, 2, 2, 1506, 1507, 7, 71, 2, 2, 1507, 272, 3, 2, 2, 2, 1508, 1509, 7, 69, 2, 2, 1509, 1510, 7, 81, 2, 2, 1510, 1511, 7, 80, 2, 2, 1511, 1512, 7, 69, 2, 2, 1512, 1513, 7, 67, 2, 2, 1513, 1514, 7, 86, 2, 2, 1514, 1515, 7, 97, 2, 2, 1515, 1516, 7, 82, 2, 2, 1516, 1517, 7, 75, 2, 2, 1517, 1518, 7, 82, 2, 2, 1518, 1519, 7, 71, 2, 2, 1519, 274, 3, 2, 2, 2, 1520, 1521, 7, 74, 2, 2, 1521, 1522, 7, 67, 2, 2, 1522, 1523, 7, 86, 2, 2, 1523, 276, 3, 2, 2, 2, 1524, 1525, 7, 82, 2, 2, 1525, 1526, 7, 71, 2, 2, 1526, 1527, 7, 84, 2, 2, 1527, 1528, 7, 69, 2, 2, 1528, 1529, 7, 71, 2, 2, 1529, 1530, 7, 80, 2, 2, 1530, 1531, 7, 86, 2, 2, 1531, 1532, 7, 78, 2, 2, 1532, 1533, 7, 75, 2, 2, 1533, 1534, 7, 86, 2, 2, 1534, 278, 3, 2, 2, 2, 1535, 1536, 7, 68, 2, 2, 1536, 1537, 7, 87, 2, 2, 1537, 1538, 7, 69, 2, 2, 1538, 1539, 7, 77, 2, 2, 1539, 1540, 7, 71, 2, 2, 1540, 1541, 7, 86, 2, 2, 1541, 280, 3, 2, 2, 2, 1542, 1543, 7, 81, 2, 2, 1543, 1544, 7, 87, 2, 2, 1544, 1545, 7, 86, 2, 2, 1545, 282, 3, 2, 2, 2, 1546, 1547, 7, 81, 2, 2, 1547, 1548, 7, 72, 2, 2, 1548, 284, 3, 2, 2, 2, 1549, 1550, 7, 85, 2, 2, 1550, 1551, 7, 81, 2, 2, 1551, 1552, 7, 84, 2, 2, 1552, 1553, 7, 86, 2, 2, 1553, 286, 3, 2, 2, 2, 1554, 1555, 7, 69, 2, 2, 1555, 1556, 7, 78, 2, 2, 1556, 1557, 7, 87, 2, 2, 1557, 1558, 7, 85, 2, 2, 1558, 1559, 7, 86, 2, 2, 1559, 1560, 7, 71, 2, 2, 1560, 1561, 7, 84, 2, 2, 1561, 288, 3, 2, 2, 2, 1562, 1563, 7, 70, 2, 2, 1563, 1564, 7, 75, 2, 2, 1564, 1565, 7, 85, 2, 2, 1565, 1566, 7, 86, 2, 2, 1566, 1567, 7, 84, 2, 2, 1567, 1568, 7, 75, 2, 2, 1568, 1569, 7, 68, 2, 2, 1569, 1570, 7, 87, 2, 2, 1570, 1571, 7, 86, 2, 2, 1571, 1572, 7, 71, 2, 2, 1572, 290, 3, 2, 2, 2, 1573, 1574, 7, 81, 2, 2, 1574, 1575, 7, 88, 2, 2, 1575, 1576, 7, 71, 2, 2, 1576, 1577, 7, 84, 2, 2, 1577, 1578, 7, 89, 2, 2, 1578, 1579, 7, 84, 2, 2, 1579, 1580, 7, 75, 2, 2, 1580, 1581, 7, 86, 2, 2, 1581, 1582, 7, 71, 2, 2, 1582, 292, 3, 2, 2, 2, 1583, 1584, 7, 86, 2, 2, 1584, 1585, 7, 84, 2, 2, 1585, 1586, 7, 67, 2, 2, 1586, 1587, 7, 80, 2, 2, 1587, 1588, 7, 85, 2, 2, 1588, 1589, 7, 72, 2, 2, 1589, 1590, 7, 81, 2, 2, 1590, 1591, 7, 84, 2, 2, 1591, 1592, 7, 79, 2, 2, 1592, 294, 3, 2, 2, 2, 1593, 1594, 7, 84, 2, 2, 1594, 1595, 7, 71, 2, 2, 1595, 1596, 7, 70, 2, 2, 1596, 1597, 7, 87, 2, 2, 1597, 1598, 7, 69, 2, 2, 1598, 1599, 7, 71, 2, 2, 1599, 296, 3, 2, 2, 2, 1600, 1601, 7, 87, 2, 2, 1601, 1602, 7, 85, 2, 2, 1602, 1603, 7, 75, 2, 2, 1603, 1604, 7, 80, 2, 2, 1604, 1605, 7, 73, 2, 2, 1605, 298, 3, 2, 2, 2, 1606, 1607, 7, 85, 2, 2, 1607, 1608, 7, 71, 2, 2, 1608, 1609, 7, 84, 2, 2, 1609, 1610, 7, 70, 2, 2, 1610, 1611, 7, 71, 2, 2, 1611, 300, 3, 2, 2, 2, 1612, 1613, 7, 85, 2, 2, 1613, 1614, 7, 71, 2, 2, 1614, 1615, 7, 84, 2, 2, 1615, 1616, 7, 70, 2, 2, 1616, 1617, 7, 71, 2, 2, 1617, 1618, 7, 82, 2, 2, 1618, 1619, 7, 84, 2, 2, 1619, 1620, 7, 81, 2, 2, 1620, 1621, 7, 82, 2, 2, 1621, 1622, 7, 71, 2, 2, 1622, 1623, 7, 84, 2, 2, 1623, 1624, 7, 86, 2, 2, 1624, 1625, 7, 75, 2, 2, 1625, 1626, 7, 71, 2, 2, 1626, 1627, 7, 85, 2, 2, 1627, 302, 3, 2, 2, 2, 1628, 1629, 7, 84, 2, 2, 1629, 1630, 7, 71, 2, 2, 1630, 1631, 7, 69, 2, 2, 1631, 1632, 7, 81, 2, 2, 1632, 1633, 7, 84, 2, 2, 1633, 1634, 7, 70, 2, 2, 1634, 1635, 7, 84, 2, 2, 1635, 1636, 7, 71, 2, 2, 1636, 1637, 7, 67, 2, 2, 1637, 1638, 7, 70, 2, 2, 1638, 1639, 7, 71, 2, 2, 1639, 1640, 7, 84, 2, 2, 1640, 304, 3, 2, 2, 2, 1641, 1642, 7, 84, 2, 2, 1642, 1643, 7, 71, 2, 2, 1643, 1644, 7, 69, 2, 2, 1644, 1645, 7, 81, 2, 2, 1645, 1646, 7, 84, 2, 2, 1646, 1647, 7, 70, 2, 2, 1647, 1648, 7, 89, 2, 2, 1648, 1649, 7, 84, 2, 2, 1649, 1650, 7, 75, 2, 2, 1650, 1651, 7, 86, 2, 2, 1651, 1652, 7, 71, 2, 2, 1652, 1653, 7, 84, 2, 2, 1653, 306, 3, 2, 2, 2, 1654, 1655, 7, 70, 2, 2, 1655, 1656, 7, 71, 2, 2, 1656, 1657, 7, 78, 2, 2, 1657, 1658, 7, 75, 2, 2, 1658, 1659, 7, 79, 2, 2, 1659, 1660, 7, 75, 2, 2, 1660, 1661, 7, 86, 2, 2, 1661, 1662, 7, 71, 2, 2, 1662, 1663, 7, 70, 2, 2, 1663, 308, 3, 2, 2, 2, 1664, 1665, 7, 72, 2, 2, 1665, 1666, 7, 75, 2, 2, 1666, 1667, 7, 71, 2, 2, 1667, 1668, 7, 78, 2, 2, 1668, 1669, 7, 70, 2, 2, 1669, 1670, 7, 85, 2, 2, 1670, 310, 3, 2, 2, 2, 1671, 1672, 7, 86, 2, 2, 1672, 1673, 7, 71, 2, 2, 1673, 1674, 7, 84, 2, 2, 1674, 1675, 7, 79, 2, 2, 1675, 1676, 7, 75, 2, 2, 1676, 1677, 7, 80, 2, 2, 1677, 1678, 7, 67, 2, 2, 1678, 1679, 7, 86, 2, 2, 1679, 1680, 7, 71, 2, 2, 1680, 1681, 7, 70, 2, 2, 1681, 312, 3, 2, 2, 2, 1682, 1683, 7, 69, 2, 2, 1683, 1684, 7, 81, 2, 2, 1684, 1685, 7, 78, 2, 2, 1685, 1686, 7, 78, 2, 2, 1686, 1687, 7, 71, 2, 2, 1687, 1688, 7, 69, 2, 2, 1688, 1689, 7, 86, 2, 2, 1689, 1690, 7, 75, 2, 2, 1690, 1691, 7, 81, 2, 2, 1691, 1692, 7, 80, 2, 2, 1692, 314, 3, 2, 2, 2, 1693, 1694, 7, 75, 2, 2, 1694, 1695, 7, 86, 2, 2, 1695, 1696, 7, 71, 2, 2, 1696, 1697, 7, 79, 2, 2, 1697, 1698, 7, 85, 2, 2, 1698, 316, 3, 2, 2, 2, 1699, 1700, 7, 77, 2, 2, 1700, 1701, 7, 71, 2, 2, 1701, 1702, 7, 91, 2, 2, 1702, 1703, 7, 85, 2, 2, 1703, 318, 3, 2, 2, 2, 1704, 1705, 7, 71, 2, 2, 1705, 1706, 7, 85, 2, 2, 1706, 1707, 7, 69, 2, 2, 1707, 1708, 7, 67, 2, 2, 1708, 1709, 7, 82, 2, 2, 1709, 1710, 7, 71, 2, 2, 1710, 1711, 7, 70, 2, 2, 1711, 320, 3, 2, 2, 2, 1712, 1713, 7, 78, 2, 2, 1713, 1714, 7, 75, 2, 2, 1714, 1715, 7, 80, 2, 2, 1715, 1716, 7, 71, 2, 2, 1716, 1717, 7, 85, 2, 2, 1717, 322, 3, 2, 2, 2, 1718, 1719, 7, 85, 2, 2, 1719, 1720, 7, 71, 2, 2, 1720, 1721, 7, 82, 2, 2, 1721, 1722, 7, 67, 2, 2, 1722, 1723, 7, 84, 2, 2, 1723, 1724, 7, 67, 2, 2, 1724, 1725, 7, 86, 2, 2, 1725, 1726, 7, 71, 2, 2, 1726, 1727, 7, 70, 2, 2, 1727, 324, 3, 2, 2, 2, 1728, 1729, 7, 72, 2, 2, 1729, 1730, 7, 87, 2, 2, 1730, 1731, 7, 80, 2, 2, 1731, 1732, 7, 69, 2, 2, 1732, 1733, 7, 86, 2, 2, 1733, 1734, 7, 75, 2, 2, 1734, 1735, 7, 81, 2, 2, 1735, 1736, 7, 80, 2, 2, 1736, 326, 3, 2, 2, 2, 1737, 1738, 7, 71, 2, 2, 1738, 1739, 7, 90, 2, 2, 1739, 1740, 7, 86, 2, 2, 1740, 1741, 7, 71, 2, 2, 1741, 1742, 7, 80, 2, 2, 1742, 1743, 7, 70, 2, 2, 1743, 1744, 7, 71, 2, 2, 1744, 1745, 7, 70, 2, 2, 1745, 328, 3, 2, 2, 2, 1746, 1747, 7, 84, 2, 2, 1747, 1748, 7, 71, 2, 2, 1748, 1749, 7, 72, 2, 2, 1749, 1750, 7, 84, 2, 2, 1750, 1751, 7, 71, 2, 2, 1751, 1752, 7, 85, 2, 2, 1752, 1753, 7, 74, 2, 2, 1753, 330, 3, 2, 2, 2, 1754, 1755, 7, 69, 2, 2, 1755, 1756, 7, 78, 2, 2, 1756, 1757, 7, 71, 2, 2, 1757, 1758, 7, 67, 2, 2, 1758, 1759, 7, 84, 2, 2, 1759, 332, 3, 2, 2, 2, 1760, 1761, 7, 69, 2, 2, 1761, 1762, 7, 67, 2, 2, 1762, 1763, 7, 69, 2, 2, 1763, 1764, 7, 74, 2, 2, 1764, 1765, 7, 71, 2, 2, 1765, 334, 3, 2, 2, 2, 1766, 1767, 7, 87, 2, 2, 1767, 1768, 7, 80, 2, 2, 1768, 1769, 7, 69, 2, 2, 1769, 1770, 7, 67, 2, 2, 1770, 1771, 7, 69, 2, 2, 1771, 1772, 7, 74, 2, 2, 1772, 1773, 7, 71, 2, 2, 1773, 336, 3, 2, 2, 2, 1774, 1775, 7, 78, 2, 2, 1775, 1776, 7, 67, 2, 2, 1776, 1777, 7, 92, 2, 2, 1777, 1778, 7, 91, 2, 2, 1778, 338, 3, 2, 2, 2, 1779, 1780, 7, 72, 2, 2, 1780, 1781, 7, 81, 2, 2, 1781, 1782, 7, 84, 2, 2, 1782, 1783, 7, 79, 2, 2, 1783, 1784, 7, 67, 2, 2, 1784, 1785, 7, 86, 2, 2, 1785, 1786, 7, 86, 2, 2, 1786, 1787, 7, 71, 2, 2, 1787, 1788, 7, 70, 2, 2, 1788, 340, 3, 2, 2, 2, 1789, 1790, 7, 73, 2, 2, 1790, 1791, 7, 78, 2, 2, 1791, 1792, 7, 81, 2, 2, 1792, 1793, 7, 68, 2, 2, 1793, 1794, 7, 67, 2, 2, 1794, 1795, 7, 78, 2, 2, 1795, 342, 3, 2, 2, 2, 1796, 1797, 7, 86, 2, 2, 1797, 1798, 7, 71, 2, 2, 1798, 1799, 7, 79, 2, 2, 1799, 1800, 7, 82, 2, 2, 1800, 1801, 7, 81, 2, 2, 1801, 1802, 7, 84, 2, 2, 1802, 1803, 7, 67, 2, 2, 1803, 1804, 7, 84, 2, 2, 1804, 1805, 7, 91, 2, 2, 1805, 344, 3, 2, 2, 2, 1806, 1807, 7, 81, 2, 2, 1807, 1808, 7, 82, 2, 2, 1808, 1809, 7, 86, 2, 2, 1809, 1810, 7, 75, 2, 2, 1810, 1811, 7, 81, 2, 2, 1811, 1812, 7, 80, 2, 2, 1812, 1813, 7, 85, 2, 2, 1813, 346, 3, 2, 2, 2, 1814, 1815, 7, 87, 2, 2, 1815, 1816, 7, 80, 2, 2, 1816, 1817, 7, 85, 2, 2, 1817, 1818, 7, 71, 2, 2, 1818, 1819, 7, 86, 2, 2, 1819, 348, 3, 2, 2, 2, 1820, 1821, 7, 86, 2, 2, 1821, 1822, 7, 68, 2, 2, 1822, 1823, 7, 78, 2, 2, 1823, 1824, 7, 82, 2, 2, 1824, 1825, 7, 84, 2, 2, 1825, 1826, 7, 81, 2, 2, 1826, 1827, 7, 82, 2, 2, 1827, 1828, 7, 71, 2, 2, 1828, 1829, 7, 84, 2, 2, 1829, 1830, 7, 86, 2, 2, 1830, 1831, 7, 75, 2, 2, 1831, 1832, 7, 71, 2, 2, 1832, 1833, 7, 85, 2, 2, 1833, 350, 3, 2, 2, 2, 1834, 1835, 7, 70, 2, 2, 1835, 1836, 7, 68, 2, 2, 1836, 1837, 7, 82, 2, 2, 1837, 1838, 7, 84, 2, 2, 1838, 1839, 7, 81, 2, 2, 1839, 1840, 7, 82, 2, 2, 1840, 1841, 7, 71, 2, 2, 1841, 1842, 7, 84, 2, 2, 1842, 1843, 7, 86, 2, 2, 1843, 1844, 7, 75, 2, 2, 1844, 1845, 7, 71, 2, 2, 1845, 1846, 7, 85, 2, 2, 1846, 352, 3, 2, 2, 2, 1847, 1848, 7, 68, 2, 2, 1848, 1849, 7, 87, 2, 2, 1849, 1850, 7, 69, 2, 2, 1850, 1851, 7, 77, 2, 2, 1851, 1852, 7, 71, 2, 2, 1852, 1853, 7, 86, 2, 2, 1853, 1854, 7, 85, 2, 2, 1854, 354, 3, 2, 2, 2, 1855, 1856, 7, 85, 2, 2, 1856, 1857, 7, 77, 2, 2, 1857, 1858, 7, 71, 2, 2, 1858, 1859, 7, 89, 2, 2, 1859, 1860, 7, 71, 2, 2, 1860, 1861, 7, 70, 2, 2, 1861, 356, 3, 2, 2, 2, 1862, 1863, 7, 85, 2, 2, 1863, 1864, 7, 86, 2, 2, 1864, 1865, 7, 81, 2, 2, 1865, 1866, 7, 84, 2, 2, 1866, 1867, 7, 71, 2, 2, 1867, 1868, 7, 70, 2, 2, 1868, 358, 3, 2, 2, 2, 1869, 1870, 7, 70, 2, 2, 1870, 1871, 7, 75, 2, 2, 1871, 1872, 7, 84, 2, 2, 1872, 1873, 7, 71, 2, 2, 1873, 1874, 7, 69, 2, 2, 1874, 1875, 7, 86, 2, 2, 1875, 1876, 7, 81, 2, 2, 1876, 1877, 7, 84, 2, 2, 1877, 1878, 7, 75, 2, 2, 1878, 1879, 7, 71, 2, 2, 1879, 1880, 7, 85, 2, 2, 1880, 360, 3, 2, 2, 2, 1881, 1882, 7, 78, 2, 2, 1882, 1883, 7, 81, 2, 2, 1883, 1884, 7, 69, 2, 2, 1884, 1885, 7, 67, 2, 2, 1885, 1886, 7, 86, 2, 2, 1886, 1887, 7, 75, 2, 2, 1887, 1888, 7, 81, 2, 2, 1888, 1889, 7, 80, 2, 2, 1889, 362, 3, 2, 2, 2, 1890, 1891, 7, 71, 2, 2, 1891, 1892, 7, 90, 2, 2, 1892, 1893, 7, 69, 2, 2, 1893, 1894, 7, 74, 2, 2, 1894, 1895, 7, 67, 2, 2, 1895, 1896, 7, 80, 2, 2, 1896, 1897, 7, 73, 2, 2, 1897, 1898, 7, 71, 2, 2, 1898, 364, 3, 2, 2, 2, 1899, 1900, 7, 67, 2, 2, 1900, 1901, 7, 84, 2, 2, 1901, 1902, 7, 69, 2, 2, 1902, 1903, 7, 74, 2, 2, 1903, 1904, 7, 75, 2, 2, 1904, 1905, 7, 88, 2, 2, 1905, 1906, 7, 71, 2, 2, 1906, 366, 3, 2, 2, 2, 1907, 1908, 7, 87, 2, 2, 1908, 1909, 7, 80, 2, 2, 1909, 1910, 7, 67, 2, 2, 1910, 1911, 7, 84, 2, 2, 1911, 1912, 7, 69, 2, 2, 1912, 1913, 7, 74, 2, 2, 1913, 1914, 7, 75, 2, 2, 1914, 1915, 7, 88, 2, 2, 1915, 1916, 7, 71, 2, 2, 1916, 368, 3, 2, 2, 2, 1917, 1918, 7, 72, 2, 2, 1918, 1919, 7, 75, 2, 2, 1919, 1920, 7, 78, 2, 2, 1920, 1921, 7, 71, 2, 2, 1921, 1922, 7, 72, 2, 2, 1922, 1923, 7, 81, 2, 2, 1923, 1924, 7, 84, 2, 2, 1924, 1925, 7, 79, 2, 2, 1925, 1926, 7, 67, 2, 2, 1926, 1927, 7, 86, 2, 2, 1927, 370, 3, 2, 2, 2, 1928, 1929, 7, 86, 2, 2, 1929, 1930, 7, 81, 2, 2, 1930, 1931, 7, 87, 2, 2, 1931, 1932, 7, 69, 2, 2, 1932, 1933, 7, 74, 2, 2, 1933, 372, 3, 2, 2, 2, 1934, 1935, 7, 69, 2, 2, 1935, 1936, 7, 81, 2, 2, 1936, 1937, 7, 79, 2, 2, 1937, 1938, 7, 82, 2, 2, 1938, 1939, 7, 67, 2, 2, 1939, 1940, 7, 69, 2, 2, 1940, 1941, 7, 86, 2, 2, 1941, 374, 3, 2, 2, 2, 1942, 1943, 7, 69, 2, 2, 1943, 1944, 7, 81, 2, 2, 1944, 1945, 7, 80, 2, 2, 1945, 1946, 7, 69, 2, 2, 1946, 1947, 7, 67, 2, 2, 1947, 1948, 7, 86, 2, 2, 1948, 1949, 7, 71, 2, 2, 1949, 1950, 7, 80, 2, 2, 1950, 1951, 7, 67, 2, 2, 1951, 1952, 7, 86, 2, 2, 1952, 1953, 7, 71, 2, 2, 1953, 376, 3, 2, 2, 2, 1954, 1955, 7, 69, 2, 2, 1955, 1956, 7, 74, 2, 2, 1956, 1957, 7, 67, 2, 2, 1957, 1958, 7, 80, 2, 2, 1958, 1959, 7, 73, 2, 2, 1959, 1960, 7, 71, 2, 2, 1960, 378, 3, 2, 2, 2, 1961, 1962, 7, 69, 2, 2, 1962, 1963, 7, 67, 2, 2, 1963, 1964, 7, 85, 2, 2, 1964, 1965, 7, 69, 2, 2, 1965, 1966, 7, 67, 2, 2, 1966, 1967, 7, 70, 2, 2, 1967, 1968, 7, 71, 2, 2, 1968, 380, 3, 2, 2, 2, 1969, 1970, 7, 84, 2, 2, 1970, 1971, 7, 71, 2, 2, 1971, 1972, 7, 85, 2, 2, 1972, 1973, 7, 86, 2, 2, 1973, 1974, 7, 84, 2, 2, 1974, 1975, 7, 75, 2, 2, 1975, 1976, 7, 69, 2, 2, 1976, 1977, 7, 86, 2, 2, 1977, 382, 3, 2, 2, 2, 1978, 1979, 7, 69, 2, 2, 1979, 1980, 7, 78, 2, 2, 1980, 1981, 7, 87, 2, 2, 1981, 1982, 7, 85, 2, 2, 1982, 1983, 7, 86, 2, 2, 1983, 1984, 7, 71, 2, 2, 1984, 1985, 7, 84, 2, 2, 1985, 1986, 7, 71, 2, 2, 1986, 1987, 7, 70, 2, 2, 1987, 384, 3, 2, 2, 2, 1988, 1989, 7, 85, 2, 2, 1989, 1990, 7, 81, 2, 2, 1990, 1991, 7, 84, 2, 2, 1991, 1992, 7, 86, 2, 2, 1992, 1993, 7, 71, 2, 2, 1993, 1994, 7, 70, 2, 2, 1994, 386, 3, 2, 2, 2, 1995, 1996, 7, 82, 2, 2, 1996, 1997, 7, 87, 2, 2, 1997, 1998, 7, 84, 2, 2, 1998, 1999, 7, 73, 2, 2, 1999, 2000, 7, 71, 2, 2, 2000, 388, 3, 2, 2, 2, 2001, 2002, 7, 75, 2, 2, 2002, 2003, 7, 80, 2, 2, 2003, 2004, 7, 82, 2, 2, 2004, 2005, 7, 87, 2, 2, 2005, 2006, 7, 86, 2, 2, 2006, 2007, 7, 72, 2, 2, 2007, 2008, 7, 81, 2, 2, 2008, 2009, 7, 84, 2, 2, 2009, 2010, 7, 79, 2, 2, 2010, 2011, 7, 67, 2, 2, 2011, 2012, 7, 86, 2, 2, 2012, 390, 3, 2, 2, 2, 2013, 2014, 7, 81, 2, 2, 2014, 2015, 7, 87, 2, 2, 2015, 2016, 7, 86, 2, 2, 2016, 2017, 7, 82, 2, 2, 2017, 2018, 7, 87, 2, 2, 2018, 2019, 7, 86, 2, 2, 2019, 2020, 7, 72, 2, 2, 2020, 2021, 7, 81, 2, 2, 2021, 2022, 7, 84, 2, 2, 2022, 2023, 7, 79, 2, 2, 2023, 2024, 7, 67, 2, 2, 2024, 2025, 7, 86, 2, 2, 2025, 392, 3, 2, 2, 2, 2026, 2027, 7, 70, 2, 2, 2027, 2028, 7, 67, 2, 2, 2028, 2029, 7, 86, 2, 2, 2029, 2030, 7, 67, 2, 2, 2030, 2031, 7, 68, 2, 2, 2031, 2032, 7, 67, 2, 2, 2032, 2033, 7, 85, 2, 2, 2033, 2034, 7, 71, 2, 2, 2034, 394, 3, 2, 2, 2, 2035, 2036, 7, 70, 2, 2, 2036, 2037, 7, 67, 2, 2, 2037, 2038, 7, 86, 2, 2, 2038, 2039, 7, 67, 2, 2, 2039, 2040, 7, 68, 2, 2, 2040, 2041, 7, 67, 2, 2, 2041, 2042, 7, 85, 2, 2, 2042, 2043, 7, 71, 2, 2, 2043, 2044, 7, 85, 2, 2, 2044, 396, 3, 2, 2, 2, 2045, 2046, 7, 70, 2, 2, 2046, 2047, 7, 72, 2, 2, 2047, 2048, 7, 85, 2, 2, 2048, 398, 3, 2, 2, 2, 2049, 2050, 7, 86, 2, 2, 2050, 2051, 7, 84, 2, 2, 2051, 2052, 7, 87, 2, 2, 2052, 2053, 7, 80, 2, 2, 2053, 2054, 7, 69, 2, 2, 2054, 2055, 7, 67, 2, 2, 2055, 2056, 7, 86, 2, 2, 2056, 2057, 7, 71, 2, 2, 2057, 400, 3, 2, 2, 2, 2058, 2059, 7, 67, 2, 2, 2059, 2060, 7, 80, 2, 2, 2060, 2061, 7, 67, 2, 2, 2061, 2062, 7, 78, 2, 2, 2062, 2063, 7, 91, 2, 2, 2063, 2064, 7, 92, 2, 2, 2064, 2065, 7, 71, 2, 2, 2065, 402, 3, 2, 2, 2, 2066, 2067, 7, 69, 2, 2, 2067, 2068, 7, 81, 2, 2, 2068, 2069, 7, 79, 2, 2, 2069, 2070, 7, 82, 2, 2, 2070, 2071, 7, 87, 2, 2, 2071, 2072, 7, 86, 2, 2, 2072, 2073, 7, 71, 2, 2, 2073, 404, 3, 2, 2, 2, 2074, 2075, 7, 78, 2, 2, 2075, 2076, 7, 75, 2, 2, 2076, 2077, 7, 85, 2, 2, 2077, 2078, 7, 86, 2, 2, 2078, 406, 3, 2, 2, 2, 2079, 2080, 7, 85, 2, 2, 2080, 2081, 7, 86, 2, 2, 2081, 2082, 7, 67, 2, 2, 2082, 2083, 7, 86, 2, 2, 2083, 2084, 7, 75, 2, 2, 2084, 2085, 7, 85, 2, 2, 2085, 2086, 7, 86, 2, 2, 2086, 2087, 7, 75, 2, 2, 2087, 2088, 7, 69, 2, 2, 2088, 2089, 7, 85, 2, 2, 2089, 408, 3, 2, 2, 2, 2090, 2091, 7, 82, 2, 2, 2091, 2092, 7, 67, 2, 2, 2092, 2093, 7, 84, 2, 2, 2093, 2094, 7, 86, 2, 2, 2094, 2095, 7, 75, 2, 2, 2095, 2096, 7, 86, 2, 2, 2096, 2097, 7, 75, 2, 2, 2097, 2098, 7, 81, 2, 2, 2098, 2099, 7, 80, 2, 2, 2099, 2100, 7, 71, 2, 2, 2100, 2101, 7, 70, 2, 2, 2101, 410, 3, 2, 2, 2, 2102, 2103, 7, 71, 2, 2, 2103, 2104, 7, 90, 2, 2, 2104, 2105, 7, 86, 2, 2, 2105, 2106, 7, 71, 2, 2, 2106, 2107, 7, 84, 2, 2, 2107, 2108, 7, 80, 2, 2, 2108, 2109, 7, 67, 2, 2, 2109, 2110, 7, 78, 2, 2, 2110, 412, 3, 2, 2, 2, 2111, 2112, 7, 70, 2, 2, 2112, 2113, 7, 71, 2, 2, 2113, 2114, 7, 72, 2, 2, 2114, 2115, 7, 75, 2, 2, 2115, 2116, 7, 80, 2, 2, 2116, 2117, 7, 71, 2, 2, 2117, 2118, 7, 70, 2, 2, 2118, 414, 3, 2, 2, 2, 2119, 2120, 7, 84, 2, 2, 2120, 2121, 7, 71, 2, 2, 2121, 2122, 7, 88, 2, 2, 2122, 2123, 7, 81, 2, 2, 2123, 2124, 7, 77, 2, 2, 2124, 2125, 7, 71, 2, 2, 2125, 416, 3, 2, 2, 2, 2126, 2127, 7, 73, 2, 2, 2127, 2128, 7, 84, 2, 2, 2128, 2129, 7, 67, 2, 2, 2129, 2130, 7, 80, 2, 2, 2130, 2131, 7, 86, 2, 2, 2131, 418, 3, 2, 2, 2, 2132, 2133, 7, 78, 2, 2, 2133, 2134, 7, 81, 2, 2, 2134, 2135, 7, 69, 2, 2, 2135, 2136, 7, 77, 2, 2, 2136, 420, 3, 2, 2, 2, 2137, 2138, 7, 87, 2, 2, 2138, 2139, 7, 80, 2, 2, 2139, 2140, 7, 78, 2, 2, 2140, 2141, 7, 81, 2, 2, 2141, 2142, 7, 69, 2, 2, 2142, 2143, 7, 77, 2, 2, 2143, 422, 3, 2, 2, 2, 2144, 2145, 7, 79, 2, 2, 2145, 2146, 7, 85, 2, 2, 2146, 2147, 7, 69, 2, 2, 2147, 2148, 7, 77, 2, 2, 2148, 424, 3, 2, 2, 2, 2149, 2150, 7, 84, 2, 2, 2150, 2151, 7, 71, 2, 2, 2151, 2152, 7, 82, 2, 2, 2152, 2153, 7, 67, 2, 2, 2153, 2154, 7, 75, 2, 2, 2154, 2155, 7, 84, 2, 2, 2155, 426, 3, 2, 2, 2, 2156, 2157, 7, 84, 2, 2, 2157, 2158, 7, 71, 2, 2, 2158, 2159, 7, 69, 2, 2, 2159, 2160, 7, 81, 2, 2, 2160, 2161, 7, 88, 2, 2, 2161, 2162, 7, 71, 2, 2, 2162, 2163, 7, 84, 2, 2, 2163, 428, 3, 2, 2, 2, 2164, 2165, 7, 71, 2, 2, 2165, 2166, 7, 90, 2, 2, 2166, 2167, 7, 82, 2, 2, 2167, 2168, 7, 81, 2, 2, 2168, 2169, 7, 84, 2, 2, 2169, 2170, 7, 86, 2, 2, 2170, 430, 3, 2, 2, 2, 2171, 2172, 7, 75, 2, 2, 2172, 2173, 7, 79, 2, 2, 2173, 2174, 7, 82, 2, 2, 2174, 2175, 7, 81, 2, 2, 2175, 2176, 7, 84, 2, 2, 2176, 2177, 7, 86, 2, 2, 2177, 432, 3, 2, 2, 2, 2178, 2179, 7, 78, 2, 2, 2179, 2180, 7, 81, 2, 2, 2180, 2181, 7, 67, 2, 2, 2181, 2182, 7, 70, 2, 2, 2182, 434, 3, 2, 2, 2, 2183, 2184, 7, 84, 2, 2, 2184, 2185, 7, 81, 2, 2, 2185, 2186, 7, 78, 2, 2, 2186, 2187, 7, 71, 2, 2, 2187, 436, 3, 2, 2, 2, 2188, 2189, 7, 84, 2, 2, 2189, 2190, 7, 81, 2, 2, 2190, 2191, 7, 78, 2, 2, 2191, 2192, 7, 71, 2, 2, 2192, 2193, 7, 85, 2, 2, 2193, 438, 3, 2, 2, 2, 2194, 2195, 7, 69, 2, 2, 2195, 2196, 7, 81, 2, 2, 2196, 2197, 7, 79, 2, 2, 2197, 2198, 7, 82, 2, 2, 2198, 2199, 7, 67, 2, 2, 2199, 2200, 7, 69, 2, 2, 2200, 2201, 7, 86, 2, 2, 2201, 2202, 7, 75, 2, 2, 2202, 2203, 7, 81, 2, 2, 2203, 2204, 7, 80, 2, 2, 2204, 2205, 7, 85, 2, 2, 2205, 440, 3, 2, 2, 2, 2206, 2207, 7, 82, 2, 2, 2207, 2208, 7, 84, 2, 2, 2208, 2209, 7, 75, 2, 2, 2209, 2210, 7, 80, 2, 2, 2210, 2211, 7, 69, 2, 2, 2211, 2212, 7, 75, 2, 2, 2212, 2213, 7, 82, 2, 2, 2213, 2214, 7, 67, 2, 2, 2214, 2215, 7, 78, 2, 2, 2215, 2216, 7, 85, 2, 2, 2216, 442, 3, 2, 2, 2, 2217, 2218, 7, 86, 2, 2, 2218, 2219, 7, 84, 2, 2, 2219, 2220, 7, 67, 2, 2, 2220, 2221, 7, 80, 2, 2, 2221, 2222, 7, 85, 2, 2, 2222, 2223, 7, 67, 2, 2, 2223, 2224, 7, 69, 2, 2, 2224, 2225, 7, 86, 2, 2, 2225, 2226, 7, 75, 2, 2, 2226, 2227, 7, 81, 2, 2, 2227, 2228, 7, 80, 2, 2, 2228, 2229, 7, 85, 2, 2, 2229, 444, 3, 2, 2, 2, 2230, 2231, 7, 75, 2, 2, 2231, 2232, 7, 80, 2, 2, 2232, 2233, 7, 70, 2, 2, 2233, 2234, 7, 71, 2, 2, 2234, 2235, 7, 90, 2, 2, 2235, 446, 3, 2, 2, 2, 2236, 2237, 7, 75, 2, 2, 2237, 2238, 7, 80, 2, 2, 2238, 2239, 7, 70, 2, 2, 2239, 2240, 7, 71, 2, 2, 2240, 2241, 7, 90, 2, 2, 2241, 2242, 7, 71, 2, 2, 2242, 2243, 7, 85, 2, 2, 2243, 448, 3, 2, 2, 2, 2244, 2245, 7, 78, 2, 2, 2245, 2246, 7, 81, 2, 2, 2246, 2247, 7, 69, 2, 2, 2247, 2248, 7, 77, 2, 2, 2248, 2249, 7, 85, 2, 2, 2249, 450, 3, 2, 2, 2, 2250, 2251, 7, 81, 2, 2, 2251, 2252, 7, 82, 2, 2, 2252, 2253, 7, 86, 2, 2, 2253, 2254, 7, 75, 2, 2, 2254, 2255, 7, 81, 2, 2, 2255, 2256, 7, 80, 2, 2, 2256, 452, 3, 2, 2, 2, 2257, 2258, 7, 67, 2, 2, 2258, 2259, 7, 80, 2, 2, 2259, 2260, 7, 86, 2, 2, 2260, 2261, 7, 75, 2, 2, 2261, 454, 3, 2, 2, 2, 2262, 2263, 7, 78, 2, 2, 2263, 2264, 7, 81, 2, 2, 2264, 2265, 7, 69, 2, 2, 2265, 2266, 7, 67, 2, 2, 2266, 2267, 7, 78, 2, 2, 2267, 456, 3, 2, 2, 2, 2268, 2269, 7, 75, 2, 2, 2269, 2270, 7, 80, 2, 2, 2270, 2271, 7, 82, 2, 2, 2271, 2272, 7, 67, 2, 2, 2272, 2273, 7, 86, 2, 2, 2273, 2274, 7, 74, 2, 2, 2274, 458, 3, 2, 2, 2, 2275, 2276, 7, 89, 2, 2, 2276, 2277, 7, 67, 2, 2, 2277, 2278, 7, 86, 2, 2, 2278, 2279, 7, 71, 2, 2, 2279, 2280, 7, 84, 2, 2, 2280, 2281, 7, 79, 2, 2, 2281, 2282, 7, 67, 2, 2, 2282, 2283, 7, 84, 2, 2, 2283, 2284, 7, 77, 2, 2, 2284, 460, 3, 2, 2, 2, 2285, 2286, 7, 87, 2, 2, 2286, 2287, 7, 80, 2, 2, 2287, 2288, 7, 80, 2, 2, 2288, 2289, 7, 71, 2, 2, 2289, 2290, 7, 85, 2, 2, 2290, 2291, 7, 86, 2, 2, 2291, 462, 3, 2, 2, 2, 2292, 2293, 7, 79, 2, 2, 2293, 2294, 7, 67, 2, 2, 2294, 2295, 7, 86, 2, 2, 2295, 2296, 7, 69, 2, 2, 2296, 2297, 7, 74, 2, 2, 2297, 2298, 7, 97, 2, 2, 2298, 2299, 7, 84, 2, 2, 2299, 2300, 7, 71, 2, 2, 2300, 2301, 7, 69, 2, 2, 2301, 2302, 7, 81, 2, 2, 2302, 2303, 7, 73, 2, 2, 2303, 2304, 7, 80, 2, 2, 2304, 2305, 7, 75, 2, 2, 2305, 2306, 7, 92, 2, 2, 2306, 2307, 7, 71, 2, 2, 2307, 464, 3, 2, 2, 2, 2308, 2309, 7, 79, 2, 2, 2309, 2310, 7, 71, 2, 2, 2310, 2311, 7, 67, 2, 2, 2311, 2312, 7, 85, 2, 2, 2312, 2313, 7, 87, 2, 2, 2313, 2314, 7, 84, 2, 2, 2314, 2315, 7, 71, 2, 2, 2315, 2316, 7, 85, 2, 2, 2316, 466, 3, 2, 2, 2, 2317, 2318, 7, 81, 2, 2, 2318, 2319, 7, 80, 2, 2, 2319, 2320, 7, 71, 2, 2, 2320, 468, 3, 2, 2, 2, 2321, 2322, 7, 82, 2, 2, 2322, 2323, 7, 71, 2, 2, 2323, 2324, 7, 84, 2, 2, 2324, 470, 3, 2, 2, 2, 2325, 2326, 7, 79, 2, 2, 2326, 2327, 7, 67, 2, 2, 2327, 2328, 7, 86, 2, 2, 2328, 2329, 7, 69, 2, 2, 2329, 2330, 7, 74, 2, 2, 2330, 472, 3, 2, 2, 2, 2331, 2332, 7, 85, 2, 2, 2332, 2333, 7, 77, 2, 2, 2333, 2334, 7, 75, 2, 2, 2334, 2335, 7, 82, 2, 2, 2335, 2336, 7, 51, 2, 2, 2336, 474, 3, 2, 2, 2, 2337, 2338, 7, 80, 2, 2, 2338, 2339, 7, 71, 2, 2, 2339, 2340, 7, 90, 2, 2, 2340, 2341, 7, 86, 2, 2, 2341, 476, 3, 2, 2, 2, 2342, 2343, 7, 82, 2, 2, 2343, 2344, 7, 67, 2, 2, 2344, 2345, 7, 85, 2, 2, 2345, 2346, 7, 86, 2, 2, 2346, 478, 3, 2, 2, 2, 2347, 2348, 7, 82, 2, 2, 2348, 2349, 7, 67, 2, 2, 2349, 2350, 7, 86, 2, 2, 2350, 2351, 7, 86, 2, 2, 2351, 2352, 7, 71, 2, 2, 2352, 2353, 7, 84, 2, 2, 2353, 2354, 7, 80, 2, 2, 2354, 480, 3, 2, 2, 2, 2355, 2356, 7, 89, 2, 2, 2356, 2357, 7, 75, 2, 2, 2357, 2358, 7, 86, 2, 2, 2358, 2359, 7, 74, 2, 2, 2359, 2360, 7, 75, 2, 2, 2360, 2361, 7, 80, 2, 2, 2361, 482, 3, 2, 2, 2, 2362, 2363, 7, 70, 2, 2, 2363, 2364, 7, 71, 2, 2, 2364, 2365, 7, 72, 2, 2, 2365, 2366, 7, 75, 2, 2, 2366, 2367, 7, 80, 2, 2, 2367, 2368, 7, 71, 2, 2, 2368, 484, 3, 2, 2, 2, 2369, 2370, 7, 89, 2, 2, 2370, 2371, 7, 85, 2, 2, 2371, 486, 3, 2, 2, 2, 2372, 2373, 7, 85, 2, 2, 2373, 2374, 7, 91, 2, 2, 2374, 2375, 7, 85, 2, 2, 2375, 2376, 7, 86, 2, 2, 2376, 2377, 7, 71, 2, 2, 2377, 2378, 7, 79, 2, 2, 2378, 488, 3, 2, 2, 2, 2379, 2380, 7, 75, 2, 2, 2380, 2381, 7, 80, 2, 2, 2381, 2382, 7, 69, 2, 2, 2382, 2383, 7, 78, 2, 2, 2383, 2384, 7, 87, 2, 2, 2384, 2385, 7, 70, 2, 2, 2385, 2386, 7, 75, 2, 2, 2386, 2387, 7, 80, 2, 2, 2387, 2388, 7, 73, 2, 2, 2388, 490, 3, 2, 2, 2, 2389, 2390, 7, 71, 2, 2, 2390, 2391, 7, 90, 2, 2, 2391, 2392, 7, 69, 2, 2, 2392, 2393, 7, 78, 2, 2, 2393, 2394, 7, 87, 2, 2, 2394, 2395, 7, 70, 2, 2, 2395, 2396, 7, 75, 2, 2, 2396, 2397, 7, 80, 2, 2, 2397, 2398, 7, 73, 2, 2, 2398, 492, 3, 2, 2, 2, 2399, 2400, 7, 69, 2, 2, 2400, 2401, 7, 81, 2, 2, 2401, 2402, 7, 80, 2, 2, 2402, 2403, 7, 85, 2, 2, 2403, 2404, 7, 86, 2, 2, 2404, 2405, 7, 84, 2, 2, 2405, 2406, 7, 67, 2, 2, 2406, 2407, 7, 75, 2, 2, 2407, 2408, 7, 80, 2, 2, 2408, 2409, 7, 86, 2, 2, 2409, 2410, 7, 85, 2, 2, 2410, 494, 3, 2, 2, 2, 2411, 2412, 7, 81, 2, 2, 2412, 2413, 7, 88, 2, 2, 2413, 2414, 7, 71, 2, 2, 2414, 2415, 7, 84, 2, 2, 2415, 2416, 7, 89, 2, 2, 2416, 2417, 7, 84, 2, 2, 2417, 2418, 7, 75, 2, 2, 2418, 2419, 7, 86, 2, 2, 2419, 2420, 7, 75, 2, 2, 2420, 2421, 7, 80, 2, 2, 2421, 2422, 7, 73, 2, 2, 2422, 496, 3, 2, 2, 2, 2423, 2424, 7, 73, 2, 2, 2424, 2425, 7, 71, 2, 2, 2425, 2426, 7, 80, 2, 2, 2426, 2427, 7, 71, 2, 2, 2427, 2428, 7, 84, 2, 2, 2428, 2429, 7, 67, 2, 2, 2429, 2430, 7, 86, 2, 2, 2430, 2431, 7, 71, 2, 2, 2431, 2432, 7, 70, 2, 2, 2432, 498, 3, 2, 2, 2, 2433, 2434, 7, 69, 2, 2, 2434, 2435, 7, 67, 2, 2, 2435, 2436, 7, 86, 2, 2, 2436, 2437, 7, 67, 2, 2, 2437, 2438, 7, 78, 2, 2, 2438, 2439, 7, 81, 2, 2, 2439, 2440, 7, 73, 2, 2, 2440, 500, 3, 2, 2, 2, 2441, 2442, 7, 78, 2, 2, 2442, 2443, 7, 67, 2, 2, 2443, 2444, 7, 80, 2, 2, 2444, 2445, 7, 73, 2, 2, 2445, 2446, 7, 87, 2, 2, 2446, 2447, 7, 67, 2, 2, 2447, 2448, 7, 73, 2, 2, 2448, 2449, 7, 71, 2, 2, 2449, 502, 3, 2, 2, 2, 2450, 2451, 7, 69, 2, 2, 2451, 2452, 7, 67, 2, 2, 2452, 2453, 7, 86, 2, 2, 2453, 2454, 7, 67, 2, 2, 2454, 2455, 7, 78, 2, 2, 2455, 2456, 7, 81, 2, 2, 2456, 2457, 7, 73, 2, 2, 2457, 2458, 7, 85, 2, 2, 2458, 504, 3, 2, 2, 2, 2459, 2460, 7, 88, 2, 2, 2460, 2461, 7, 75, 2, 2, 2461, 2462, 7, 71, 2, 2, 2462, 2463, 7, 89, 2, 2, 2463, 2464, 7, 85, 2, 2, 2464, 506, 3, 2, 2, 2, 2465, 2466, 7, 85, 2, 2, 2466, 2467, 7, 86, 2, 2, 2467, 2468, 7, 84, 2, 2, 2468, 2469, 7, 75, 2, 2, 2469, 2470, 7, 80, 2, 2, 2470, 2471, 7, 73, 2, 2, 2471, 508, 3, 2, 2, 2, 2472, 2473, 7, 67, 2, 2, 2473, 2474, 7, 84, 2, 2, 2474, 2475, 7, 84, 2, 2, 2475, 2476, 7, 67, 2, 2, 2476, 2477, 7, 91, 2, 2, 2477, 510, 3, 2, 2, 2, 2478, 2479, 7, 79, 2, 2, 2479, 2480, 7, 67, 2, 2, 2480, 2481, 7, 82, 2, 2, 2481, 512, 3, 2, 2, 2, 2482, 2483, 7, 69, 2, 2, 2483, 2484, 7, 74, 2, 2, 2484, 2485, 7, 67, 2, 2, 2485, 2486, 7, 84, 2, 2, 2486, 514, 3, 2, 2, 2, 2487, 2488, 7, 88, 2, 2, 2488, 2489, 7, 67, 2, 2, 2489, 2490, 7, 84, 2, 2, 2490, 2491, 7, 69, 2, 2, 2491, 2492, 7, 74, 2, 2, 2492, 2493, 7, 67, 2, 2, 2493, 2494, 7, 84, 2, 2, 2494, 516, 3, 2, 2, 2, 2495, 2496, 7, 68, 2, 2, 2496, 2497, 7, 75, 2, 2, 2497, 2498, 7, 80, 2, 2, 2498, 2499, 7, 67, 2, 2, 2499, 2500, 7, 84, 2, 2, 2500, 2501, 7, 91, 2, 2, 2501, 518, 3, 2, 2, 2, 2502, 2503, 7, 88, 2, 2, 2503, 2504, 7, 67, 2, 2, 2504, 2505, 7, 84, 2, 2, 2505, 2506, 7, 68, 2, 2, 2506, 2507, 7, 75, 2, 2, 2507, 2508, 7, 80, 2, 2, 2508, 2509, 7, 67, 2, 2, 2509, 2510, 7, 84, 2, 2, 2510, 2511, 7, 91, 2, 2, 2511, 520, 3, 2, 2, 2, 2512, 2513, 7, 68, 2, 2, 2513, 2514, 7, 91, 2, 2, 2514, 2515, 7, 86, 2, 2, 2515, 2516, 7, 71, 2, 2, 2516, 2517, 7, 85, 2, 2, 2517, 522, 3, 2, 2, 2, 2518, 2519, 7, 70, 2, 2, 2519, 2520, 7, 71, 2, 2, 2520, 2521, 7, 69, 2, 2, 2521, 2522, 7, 75, 2, 2, 2522, 2523, 7, 79, 2, 2, 2523, 2524, 7, 67, 2, 2, 2524, 2525, 7, 78, 2, 2, 2525, 524, 3, 2, 2, 2, 2526, 2527, 7, 86, 2, 2, 2527, 2528, 7, 75, 2, 2, 2528, 2529, 7, 80, 2, 2, 2529, 2530, 7, 91, 2, 2, 2530, 2531, 7, 75, 2, 2, 2531, 2532, 7, 80, 2, 2, 2532, 2533, 7, 86, 2, 2, 2533, 526, 3, 2, 2, 2, 2534, 2535, 7, 85, 2, 2, 2535, 2536, 7, 79, 2, 2, 2536, 2537, 7, 67, 2, 2, 2537, 2538, 7, 78, 2, 2, 2538, 2539, 7, 78, 2, 2, 2539, 2540, 7, 75, 2, 2, 2540, 2541, 7, 80, 2, 2, 2541, 2542, 7, 86, 2, 2, 2542, 528, 3, 2, 2, 2, 2543, 2544, 7, 75, 2, 2, 2544, 2545, 7, 80, 2, 2, 2545, 2546, 7, 86, 2, 2, 2546, 530, 3, 2, 2, 2, 2547, 2548, 7, 68, 2, 2, 2548, 2549, 7, 75, 2, 2, 2549, 2550, 7, 73, 2, 2, 2550, 2551, 7, 75, 2, 2, 2551, 2552, 7, 80, 2, 2, 2552, 2553, 7, 86, 2, 2, 2553, 532, 3, 2, 2, 2, 2554, 2555, 7, 72, 2, 2, 2555, 2556, 7, 78, 2, 2, 2556, 2557, 7, 81, 2, 2, 2557, 2558, 7, 67, 2, 2, 2558, 2559, 7, 86, 2, 2, 2559, 534, 3, 2, 2, 2, 2560, 2561, 7, 70, 2, 2, 2561, 2562, 7, 81, 2, 2, 2562, 2563, 7, 87, 2, 2, 2563, 2564, 7, 68, 2, 2, 2564, 2565, 7, 78, 2, 2, 2565, 2566, 7, 71, 2, 2, 2566, 536, 3, 2, 2, 2, 2567, 2568, 7, 70, 2, 2, 2568, 2569, 7, 67, 2, 2, 2569, 2570, 7, 86, 2, 2, 2570, 2571, 7, 71, 2, 2, 2571, 538, 3, 2, 2, 2, 2572, 2573, 7, 86, 2, 2, 2573, 2574, 7, 75, 2, 2, 2574, 2575, 7, 79, 2, 2, 2575, 2576, 7, 71, 2, 2, 2576, 540, 3, 2, 2, 2, 2577, 2578, 7, 86, 2, 2, 2578, 2579, 7, 75, 2, 2, 2579, 2580, 7, 79, 2, 2, 2580, 2581, 7, 71, 2, 2, 2581, 2582, 7, 85, 2, 2, 2582, 2583, 7, 86, 2, 2, 2583, 2584, 7, 67, 2, 2, 2584, 2585, 7, 79, 2, 2, 2585, 2586, 7, 82, 2, 2, 2586, 542, 3, 2, 2, 2, 2587, 2588, 7, 79, 2, 2, 2588, 2589, 7, 87, 2, 2, 2589, 2590, 7, 78, 2, 2, 2590, 2591, 7, 86, 2, 2, 2591, 2592, 7, 75, 2, 2, 2592, 2593, 7, 85, 2, 2, 2593, 2594, 7, 71, 2, 2, 2594, 2595, 7, 86, 2, 2, 2595, 544, 3, 2, 2, 2, 2596, 2597, 7, 68, 2, 2, 2597, 2598, 7, 81, 2, 2, 2598, 2599, 7, 81, 2, 2, 2599, 2600, 7, 78, 2, 2, 2600, 2601, 7, 71, 2, 2, 2601, 2602, 7, 67, 2, 2, 2602, 2603, 7, 80, 2, 2, 2603, 546, 3, 2, 2, 2, 2604, 2605, 7, 84, 2, 2, 2605, 2606, 7, 67, 2, 2, 2606, 2607, 7, 89, 2, 2, 2607, 548, 3, 2, 2, 2, 2608, 2609, 7, 84, 2, 2, 2609, 2610, 7, 81, 2, 2, 2610, 2611, 7, 89, 2, 2, 2611, 550, 3, 2, 2, 2, 2612, 2613, 7, 80, 2, 2, 2613, 2614, 7, 87, 2, 2, 2614, 2615, 7, 78, 2, 2, 2615, 2616, 7, 78, 2, 2, 2616, 552, 3, 2, 2, 2, 2617, 2618, 7, 63, 2, 2, 2618, 554, 3, 2, 2, 2, 2619, 2620, 7, 64, 2, 2, 2620, 556, 3, 2, 2, 2, 2621, 2622, 7, 62, 2, 2, 2622, 558, 3, 2, 2, 2, 2623, 2624, 7, 35, 2, 2, 2624, 560, 3, 2, 2, 2, 2625, 2626, 7, 128, 2, 2, 2626, 562, 3, 2, 2, 2, 2627, 2628, 7, 126, 2, 2, 2628, 564, 3, 2, 2, 2, 2629, 2630, 7, 40, 2, 2, 2630, 566, 3, 2, 2, 2, 2631, 2632, 7, 96, 2, 2, 2632, 568, 3, 2, 2, 2, 2633, 2634, 7, 48, 2, 2, 2634, 570, 3, 2, 2, 2, 2635, 2636, 7, 93, 2, 2, 2636, 572, 3, 2, 2, 2, 2637, 2638, 7, 95, 2, 2, 2638, 574, 3, 2, 2, 2, 2639, 2640, 7, 42, 2, 2, 2640, 576, 3, 2, 2, 2, 2641, 2642, 7, 43, 2, 2, 2642, 578, 3, 2, 2, 2, 2643, 2644, 7, 46, 2, 2, 2644, 580, 3, 2, 2, 2, 2645, 2646, 7, 61, 2, 2, 2646, 582, 3, 2, 2, 2, 2647, 2648, 7, 66, 2, 2, 2648, 584, 3, 2, 2, 2, 2649, 2650, 7, 41, 2, 2, 2650, 586, 3, 2, 2, 2, 2651, 2652, 7, 36, 2, 2, 2652, 588, 3, 2, 2, 2, 2653, 2654, 7, 98, 2, 2, 2654, 590, 3, 2, 2, 2, 2655, 2656, 7, 60, 2, 2, 2656, 592, 3, 2, 2, 2, 2657, 2658, 7, 44, 2, 2, 2658, 594, 3, 2, 2, 2, 2659, 2660, 7, 97, 2, 2, 2660, 596, 3, 2, 2, 2, 2661, 2662, 7, 47, 2, 2, 2662, 598, 3, 2, 2, 2, 2663, 2664, 7, 45, 2, 2, 2664, 600, 3, 2, 2, 2, 2665, 2666, 7, 39, 2, 2, 2666, 602, 3, 2, 2, 2, 2667, 2668, 7, 126, 2, 2, 2668, 2669, 7, 126, 2, 2, 2669, 604, 3, 2, 2, 2, 2670, 2671, 7, 47, 2, 2, 2671, 2672, 7, 47, 2, 2, 2672, 606, 3, 2, 2, 2, 2673, 2674, 7, 49, 2, 2, 2674, 608, 3, 2, 2, 2, 2675, 2676, 7, 48, 2, 2, 2676, 2677, 5, 623, 312, 2, 2677, 610, 3, 2, 2, 2, 2678, 2682, 5, 629, 315, 2, 2679, 2682, 5, 631, 316, 2, 2680, 2682, 5, 635, 318, 2, 2681, 2678, 3, 2, 2, 2, 2681, 2679, 3, 2, 2, 2, 2681, 2680, 3, 2, 2, 2, 2682, 612, 3, 2, 2, 2, 2683, 2685, 5, 625, 313, 2, 2684, 2683, 3, 2, 2, 2, 2685, 2686, 3, 2, 2, 2, 2686, 2684, 3, 2, 2, 2, 2686, 2687, 3, 2, 2, 2, 2687, 614, 3, 2, 2, 2, 2688, 2690, 5, 625, 313, 2, 2689, 2688, 3, 2, 2, 2, 2690, 2691, 3, 2, 2, 2, 2691, 2689, 3, 2, 2, 2, 2691, 2692, 3, 2, 2, 2, 2692, 2694, 3, 2, 2, 2, 2693, 2689, 3, 2, 2, 2, 2693, 2694, 3, 2, 2, 2, 2694, 2695, 3, 2, 2, 2, 2695, 2697, 7, 48, 2, 2, 2696, 2698, 5, 625, 313, 2, 2697, 2696, 3, 2, 2, 2, 2698, 2699, 3, 2, 2, 2, 2699, 2697, 3, 2, 2, 2, 2699, 2700, 3, 2, 2, 2, 2700, 2732, 3, 2, 2, 2, 2701, 2703, 5, 625, 313, 2, 2702, 2701, 3, 2, 2, 2, 2703, 2704, 3, 2, 2, 2, 2704, 2702, 3, 2, 2, 2, 2704, 2705, 3, 2, 2, 2, 2705, 2706, 3, 2, 2, 2, 2706, 2707, 7, 48, 2, 2, 2707, 2708, 5, 621, 311, 2, 2708, 2732, 3, 2, 2, 2, 2709, 2711, 5, 625, 313, 2, 2710, 2709, 3, 2, 2, 2, 2711, 2712, 3, 2, 2, 2, 2712, 2710, 3, 2, 2, 2, 2712, 2713, 3, 2, 2, 2, 2713, 2715, 3, 2, 2, 2, 2714, 2710, 3, 2, 2, 2, 2714, 2715, 3, 2, 2, 2, 2715, 2716, 3, 2, 2, 2, 2716, 2718, 7, 48, 2, 2, 2717, 2719, 5, 625, 313, 2, 2718, 2717, 3, 2, 2, 2, 2719, 2720, 3, 2, 2, 2, 2720, 2718, 3, 2, 2, 2, 2720, 2721, 3, 2, 2, 2, 2721, 2722, 3, 2, 2, 2, 2722, 2723, 5, 621, 311, 2, 2723, 2732, 3, 2, 2, 2, 2724, 2726, 5, 625, 313, 2, 2725, 2724, 3, 2, 2, 2, 2726, 2727, 3, 2, 2, 2, 2727, 2725, 3, 2, 2, 2, 2727, 2728, 3, 2, 2, 2, 2728, 2729, 3, 2, 2, 2, 2729, 2730, 5, 621, 311, 2, 2730, 2732, 3, 2, 2, 2, 2731, 2693, 3, 2, 2, 2, 2731, 2702, 3, 2, 2, 2, 2731, 2714, 3, 2, 2, 2, 2731, 2725, 3, 2, 2, 2, 2732, 616, 3, 2, 2, 2, 2733, 2734, 5, 633, 317, 2, 2734, 618, 3, 2, 2, 2, 2735, 2736, 5, 623, 312, 2, 2736, 620, 3, 2, 2, 2, 2737, 2739, 7, 71, 2, 2, 2738, 2740, 9, 4, 2, 2, 2739, 2738, 3, 2, 2, 2, 2739, 2740, 3, 2, 2, 2, 2740, 2742, 3, 2, 2, 2, 2741, 2743, 5, 625, 313, 2, 2742, 2741, 3, 2, 2, 2, 2743, 2744, 3, 2, 2, 2, 2744, 2742, 3, 2, 2, 2, 2744, 2745, 3, 2, 2, 2, 2745, 622, 3, 2, 2, 2, 2746, 2748, 9, 5, 2, 2, 2747, 2746, 3, 2, 2, 2, 2748, 2751, 3, 2, 2, 2, 2749, 2750, 3, 2, 2, 2, 2749, 2747, 3, 2, 2, 2, 2750, 2753, 3, 2, 2, 2, 2751, 2749, 3, 2, 2, 2, 2752, 2754, 9, 6, 2, 2, 2753, 2752, 3, 2, 2, 2, 2754, 2755, 3, 2, 2, 2, 2755, 2756, 3, 2, 2, 2, 2755, 2753, 3, 2, 2, 2, 2756, 2760, 3, 2, 2, 2, 2757, 2759, 9, 5, 2, 2, 2758, 2757, 3, 2, 2, 2, 2759, 2762, 3, 2, 2, 2, 2760, 2758, 3, 2, 2, 2, 2760, 2761, 3, 2, 2, 2, 2761, 624, 3, 2, 2, 2, 2762, 2760, 3, 2, 2, 2, 2763, 2764, 9, 7, 2, 2, 2764, 626, 3, 2, 2, 2, 2765, 2766, 9, 8, 2, 2, 2766, 628, 3, 2, 2, 2, 2767, 2775, 7, 36, 2, 2, 2768, 2769, 7, 94, 2, 2, 2769, 2774, 11, 2, 2, 2, 2770, 2771, 7, 36, 2, 2, 2771, 2774, 7, 36, 2, 2, 2772, 2774, 10, 9, 2, 2, 2773, 2768, 3, 2, 2, 2, 2773, 2770, 3, 2, 2, 2, 2773, 2772, 3, 2, 2, 2, 2774, 2777, 3, 2, 2, 2, 2775, 2773, 3, 2, 2, 2, 2775, 2776, 3, 2, 2, 2, 2776, 2778, 3, 2, 2, 2, 2777, 2775, 3, 2, 2, 2, 2778, 2779, 7, 36, 2, 2, 2779, 630, 3, 2, 2, 2, 2780, 2788, 7, 41, 2, 2, 2781, 2782, 7, 94, 2, 2, 2782, 2787, 11, 2, 2, 2, 2783, 2784, 7, 41, 2, 2, 2784, 2787, 7, 41, 2, 2, 2785, 2787, 10, 10, 2, 2, 2786, 2781, 3, 2, 2, 2, 2786, 2783, 3, 2, 2, 2, 2786, 2785, 3, 2, 2, 2, 2787, 2790, 3, 2, 2, 2, 2788, 2786, 3, 2, 2, 2, 2788, 2789, 3, 2, 2, 2, 2789, 2791, 3, 2, 2, 2, 2790, 2788, 3, 2, 2, 2, 2791, 2792, 7, 41, 2, 2, 2792, 632, 3, 2, 2, 2, 2793, 2794, 7, 68, 2, 2, 2794, 2796, 7, 41, 2, 2, 2795, 2797, 9, 11, 2, 2, 2796, 2795, 3, 2, 2, 2, 2797, 2798, 3, 2, 2, 2, 2798, 2796, 3, 2, 2, 2, 2798, 2799, 3, 2, 2, 2, 2799, 2800, 3, 2, 2, 2, 2800, 2801, 7, 41, 2, 2, 2801, 634, 3, 2, 2, 2, 2802, 2810, 7, 98, 2, 2, 2803, 2804, 7, 94, 2, 2, 2804, 2809, 11, 2, 2, 2, 2805, 2806, 7, 98, 2, 2, 2806, 2809, 7, 98, 2, 2, 2807, 2809, 10, 12, 2, 2, 2808, 2803, 3, 2, 2, 2, 2808, 2805, 3, 2, 2, 2, 2808, 2807, 3, 2, 2, 2, 2809, 2812, 3, 2, 2, 2, 2810, 2808, 3, 2, 2, 2, 2810, 2811, 3, 2, 2, 2, 2811, 2813, 3, 2, 2, 2, 2812, 2810, 3, 2, 2, 2, 2813, 2814, 7, 98, 2, 2, 2814, 636, 3, 2, 2, 2, 35, 2, 640, 650, 662, 667, 671, 675, 681, 685, 687, 2681, 2686, 2691, 2693, 2699, 2704, 2712, 2714, 2720, 2727, 2731, 2739, 2744, 2749, 2755, 2760, 2773, 2775, 2786, 2788, 2798, 2808, 2810, 3, 2, 3, 2] \ No newline at end of file +[3, 24715, 42794, 33075, 47597, 16764, 15335, 30598, 22884, 2, 319, 2906, 8, 1, 4, 2, 9, 2, 4, 3, 9, 3, 4, 4, 9, 4, 4, 5, 9, 5, 4, 6, 9, 6, 4, 7, 9, 7, 4, 8, 9, 8, 4, 9, 9, 9, 4, 10, 9, 10, 4, 11, 9, 11, 4, 12, 9, 12, 4, 13, 9, 13, 4, 14, 9, 14, 4, 15, 9, 15, 4, 16, 9, 16, 4, 17, 9, 17, 4, 18, 9, 18, 4, 19, 9, 19, 4, 20, 9, 20, 4, 21, 9, 21, 4, 22, 9, 22, 4, 23, 9, 23, 4, 24, 9, 24, 4, 25, 9, 25, 4, 26, 9, 26, 4, 27, 9, 27, 4, 28, 9, 28, 4, 29, 9, 29, 4, 30, 9, 30, 4, 31, 9, 31, 4, 32, 9, 32, 4, 33, 9, 33, 4, 34, 9, 34, 4, 35, 9, 35, 4, 36, 9, 36, 4, 37, 9, 37, 4, 38, 9, 38, 4, 39, 9, 39, 4, 40, 9, 40, 4, 41, 9, 41, 4, 42, 9, 42, 4, 43, 9, 43, 4, 44, 9, 44, 4, 45, 9, 45, 4, 46, 9, 46, 4, 47, 9, 47, 4, 48, 9, 48, 4, 49, 9, 49, 4, 50, 9, 50, 4, 51, 9, 51, 4, 52, 9, 52, 4, 53, 9, 53, 4, 54, 9, 54, 4, 55, 9, 55, 4, 56, 9, 56, 4, 57, 9, 57, 4, 58, 9, 58, 4, 59, 9, 59, 4, 60, 9, 60, 4, 61, 9, 61, 4, 62, 9, 62, 4, 63, 9, 63, 4, 64, 9, 64, 4, 65, 9, 65, 4, 66, 9, 66, 4, 67, 9, 67, 4, 68, 9, 68, 4, 69, 9, 69, 4, 70, 9, 70, 4, 71, 9, 71, 4, 72, 9, 72, 4, 73, 9, 73, 4, 74, 9, 74, 4, 75, 9, 75, 4, 76, 9, 76, 4, 77, 9, 77, 4, 78, 9, 78, 4, 79, 9, 79, 4, 80, 9, 80, 4, 81, 9, 81, 4, 82, 9, 82, 4, 83, 9, 83, 4, 84, 9, 84, 4, 85, 9, 85, 4, 86, 9, 86, 4, 87, 9, 87, 4, 88, 9, 88, 4, 89, 9, 89, 4, 90, 9, 90, 4, 91, 9, 91, 4, 92, 9, 92, 4, 93, 9, 93, 4, 94, 9, 94, 4, 95, 9, 95, 4, 96, 9, 96, 4, 97, 9, 97, 4, 98, 9, 98, 4, 99, 9, 99, 4, 100, 9, 100, 4, 101, 9, 101, 4, 102, 9, 102, 4, 103, 9, 103, 4, 104, 9, 104, 4, 105, 9, 105, 4, 106, 9, 106, 4, 107, 9, 107, 4, 108, 9, 108, 4, 109, 9, 109, 4, 110, 9, 110, 4, 111, 9, 111, 4, 112, 9, 112, 4, 113, 9, 113, 4, 114, 9, 114, 4, 115, 9, 115, 4, 116, 9, 116, 4, 117, 9, 117, 4, 118, 9, 118, 4, 119, 9, 119, 4, 120, 9, 120, 4, 121, 9, 121, 4, 122, 9, 122, 4, 123, 9, 123, 4, 124, 9, 124, 4, 125, 9, 125, 4, 126, 9, 126, 4, 127, 9, 127, 4, 128, 9, 128, 4, 129, 9, 129, 4, 130, 9, 130, 4, 131, 9, 131, 4, 132, 9, 132, 4, 133, 9, 133, 4, 134, 9, 134, 4, 135, 9, 135, 4, 136, 9, 136, 4, 137, 9, 137, 4, 138, 9, 138, 4, 139, 9, 139, 4, 140, 9, 140, 4, 141, 9, 141, 4, 142, 9, 142, 4, 143, 9, 143, 4, 144, 9, 144, 4, 145, 9, 145, 4, 146, 9, 146, 4, 147, 9, 147, 4, 148, 9, 148, 4, 149, 9, 149, 4, 150, 9, 150, 4, 151, 9, 151, 4, 152, 9, 152, 4, 153, 9, 153, 4, 154, 9, 154, 4, 155, 9, 155, 4, 156, 9, 156, 4, 157, 9, 157, 4, 158, 9, 158, 4, 159, 9, 159, 4, 160, 9, 160, 4, 161, 9, 161, 4, 162, 9, 162, 4, 163, 9, 163, 4, 164, 9, 164, 4, 165, 9, 165, 4, 166, 9, 166, 4, 167, 9, 167, 4, 168, 9, 168, 4, 169, 9, 169, 4, 170, 9, 170, 4, 171, 9, 171, 4, 172, 9, 172, 4, 173, 9, 173, 4, 174, 9, 174, 4, 175, 9, 175, 4, 176, 9, 176, 4, 177, 9, 177, 4, 178, 9, 178, 4, 179, 9, 179, 4, 180, 9, 180, 4, 181, 9, 181, 4, 182, 9, 182, 4, 183, 9, 183, 4, 184, 9, 184, 4, 185, 9, 185, 4, 186, 9, 186, 4, 187, 9, 187, 4, 188, 9, 188, 4, 189, 9, 189, 4, 190, 9, 190, 4, 191, 9, 191, 4, 192, 9, 192, 4, 193, 9, 193, 4, 194, 9, 194, 4, 195, 9, 195, 4, 196, 9, 196, 4, 197, 9, 197, 4, 198, 9, 198, 4, 199, 9, 199, 4, 200, 9, 200, 4, 201, 9, 201, 4, 202, 9, 202, 4, 203, 9, 203, 4, 204, 9, 204, 4, 205, 9, 205, 4, 206, 9, 206, 4, 207, 9, 207, 4, 208, 9, 208, 4, 209, 9, 209, 4, 210, 9, 210, 4, 211, 9, 211, 4, 212, 9, 212, 4, 213, 9, 213, 4, 214, 9, 214, 4, 215, 9, 215, 4, 216, 9, 216, 4, 217, 9, 217, 4, 218, 9, 218, 4, 219, 9, 219, 4, 220, 9, 220, 4, 221, 9, 221, 4, 222, 9, 222, 4, 223, 9, 223, 4, 224, 9, 224, 4, 225, 9, 225, 4, 226, 9, 226, 4, 227, 9, 227, 4, 228, 9, 228, 4, 229, 9, 229, 4, 230, 9, 230, 4, 231, 9, 231, 4, 232, 9, 232, 4, 233, 9, 233, 4, 234, 9, 234, 4, 235, 9, 235, 4, 236, 9, 236, 4, 237, 9, 237, 4, 238, 9, 238, 4, 239, 9, 239, 4, 240, 9, 240, 4, 241, 9, 241, 4, 242, 9, 242, 4, 243, 9, 243, 4, 244, 9, 244, 4, 245, 9, 245, 4, 246, 9, 246, 4, 247, 9, 247, 4, 248, 9, 248, 4, 249, 9, 249, 4, 250, 9, 250, 4, 251, 9, 251, 4, 252, 9, 252, 4, 253, 9, 253, 4, 254, 9, 254, 4, 255, 9, 255, 4, 256, 9, 256, 4, 257, 9, 257, 4, 258, 9, 258, 4, 259, 9, 259, 4, 260, 9, 260, 4, 261, 9, 261, 4, 262, 9, 262, 4, 263, 9, 263, 4, 264, 9, 264, 4, 265, 9, 265, 4, 266, 9, 266, 4, 267, 9, 267, 4, 268, 9, 268, 4, 269, 9, 269, 4, 270, 9, 270, 4, 271, 9, 271, 4, 272, 9, 272, 4, 273, 9, 273, 4, 274, 9, 274, 4, 275, 9, 275, 4, 276, 9, 276, 4, 277, 9, 277, 4, 278, 9, 278, 4, 279, 9, 279, 4, 280, 9, 280, 4, 281, 9, 281, 4, 282, 9, 282, 4, 283, 9, 283, 4, 284, 9, 284, 4, 285, 9, 285, 4, 286, 9, 286, 4, 287, 9, 287, 4, 288, 9, 288, 4, 289, 9, 289, 4, 290, 9, 290, 4, 291, 9, 291, 4, 292, 9, 292, 4, 293, 9, 293, 4, 294, 9, 294, 4, 295, 9, 295, 4, 296, 9, 296, 4, 297, 9, 297, 4, 298, 9, 298, 4, 299, 9, 299, 4, 300, 9, 300, 4, 301, 9, 301, 4, 302, 9, 302, 4, 303, 9, 303, 4, 304, 9, 304, 4, 305, 9, 305, 4, 306, 9, 306, 4, 307, 9, 307, 4, 308, 9, 308, 4, 309, 9, 309, 4, 310, 9, 310, 4, 311, 9, 311, 4, 312, 9, 312, 4, 313, 9, 313, 4, 314, 9, 314, 4, 315, 9, 315, 4, 316, 9, 316, 4, 317, 9, 317, 4, 318, 9, 318, 4, 319, 9, 319, 4, 320, 9, 320, 4, 321, 9, 321, 4, 322, 9, 322, 4, 323, 9, 323, 4, 324, 9, 324, 4, 325, 9, 325, 4, 326, 9, 326, 4, 327, 9, 327, 3, 2, 6, 2, 657, 10, 2, 13, 2, 14, 2, 658, 3, 2, 3, 2, 3, 3, 3, 3, 3, 3, 3, 3, 7, 3, 667, 10, 3, 12, 3, 14, 3, 670, 11, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 4, 3, 4, 3, 4, 3, 4, 5, 4, 681, 10, 4, 3, 4, 7, 4, 684, 10, 4, 12, 4, 14, 4, 687, 11, 4, 3, 4, 5, 4, 690, 10, 4, 3, 4, 3, 4, 5, 4, 694, 10, 4, 3, 4, 3, 4, 3, 4, 3, 4, 5, 4, 700, 10, 4, 3, 4, 3, 4, 5, 4, 704, 10, 4, 5, 4, 706, 10, 4, 3, 4, 3, 4, 3, 5, 3, 5, 3, 5, 3, 5, 3, 5, 3, 5, 3, 5, 3, 6, 3, 6, 3, 6, 3, 6, 3, 6, 3, 7, 3, 7, 3, 7, 3, 7, 3, 8, 3, 8, 3, 8, 3, 9, 3, 9, 3, 9, 3, 9, 3, 10, 3, 10, 3, 10, 3, 10, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 12, 3, 12, 3, 12, 3, 12, 3, 12, 3, 12, 3, 13, 3, 13, 3, 13, 3, 13, 3, 13, 3, 13, 3, 14, 3, 14, 3, 14, 3, 15, 3, 15, 3, 15, 3, 15, 3, 15, 3, 15, 3, 15, 3, 15, 3, 15, 3, 16, 3, 16, 3, 16, 3, 16, 3, 16, 3, 17, 3, 17, 3, 17, 3, 17, 3, 17, 3, 18, 3, 18, 3, 18, 3, 18, 3, 18, 3, 18, 3, 18, 3, 19, 3, 19, 3, 19, 3, 19, 3, 19, 3, 19, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 21, 3, 21, 3, 21, 3, 21, 3, 21, 3, 21, 3, 22, 3, 22, 3, 22, 3, 23, 3, 23, 3, 23, 3, 24, 3, 24, 3, 24, 3, 24, 3, 25, 3, 25, 3, 25, 3, 26, 3, 26, 3, 26, 3, 26, 3, 27, 3, 27, 3, 27, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 32, 3, 32, 3, 32, 3, 33, 3, 33, 3, 33, 3, 33, 3, 33, 3, 34, 3, 34, 3, 34, 3, 34, 3, 34, 3, 34, 3, 35, 3, 35, 3, 35, 3, 35, 3, 35, 3, 35, 3, 36, 3, 36, 3, 36, 3, 36, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 38, 3, 38, 3, 38, 3, 38, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 44, 3, 44, 3, 44, 3, 44, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 49, 3, 49, 3, 49, 3, 49, 3, 49, 3, 50, 3, 50, 3, 50, 3, 50, 3, 50, 3, 51, 3, 51, 3, 51, 3, 51, 3, 51, 3, 51, 3, 52, 3, 52, 3, 52, 3, 52, 3, 52, 3, 53, 3, 53, 3, 53, 3, 53, 3, 53, 3, 53, 3, 53, 3, 53, 3, 54, 3, 54, 3, 54, 3, 55, 3, 55, 3, 55, 3, 55, 3, 55, 3, 55, 3, 56, 3, 56, 3, 56, 3, 56, 3, 56, 3, 56, 3, 56, 3, 56, 3, 57, 3, 57, 3, 57, 3, 57, 3, 57, 3, 57, 3, 57, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 64, 3, 64, 3, 64, 3, 64, 3, 64, 3, 64, 3, 64, 3, 64, 3, 64, 3, 64, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 66, 3, 66, 3, 66, 3, 66, 3, 66, 3, 66, 3, 67, 3, 67, 3, 67, 3, 67, 3, 67, 3, 67, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 75, 3, 75, 3, 75, 3, 75, 3, 75, 3, 75, 3, 75, 3, 75, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 77, 3, 77, 3, 77, 3, 77, 3, 77, 3, 77, 3, 77, 3, 78, 3, 78, 3, 78, 3, 78, 3, 78, 3, 79, 3, 79, 3, 79, 3, 79, 3, 79, 3, 79, 3, 79, 3, 79, 3, 79, 3, 80, 3, 80, 3, 80, 3, 80, 3, 80, 3, 80, 3, 80, 3, 80, 3, 81, 3, 81, 3, 81, 3, 81, 3, 81, 3, 81, 3, 81, 3, 82, 3, 82, 3, 82, 3, 82, 3, 82, 3, 82, 3, 82, 3, 82, 3, 83, 3, 83, 3, 83, 3, 83, 3, 83, 3, 83, 3, 83, 3, 83, 3, 84, 3, 84, 3, 84, 3, 84, 3, 84, 3, 85, 3, 85, 3, 85, 3, 85, 3, 85, 3, 86, 3, 86, 3, 86, 3, 86, 3, 86, 3, 87, 3, 87, 3, 87, 3, 87, 3, 87, 3, 87, 3, 87, 3, 88, 3, 88, 3, 88, 3, 88, 3, 88, 3, 88, 3, 88, 3, 88, 3, 89, 3, 89, 3, 89, 3, 89, 3, 89, 3, 89, 3, 89, 3, 90, 3, 90, 3, 90, 3, 90, 3, 91, 3, 91, 3, 91, 3, 91, 3, 91, 3, 91, 3, 91, 3, 91, 3, 91, 3, 91, 3, 91, 3, 92, 3, 92, 3, 92, 3, 92, 3, 92, 3, 92, 3, 92, 3, 92, 3, 92, 3, 92, 3, 93, 3, 93, 3, 93, 3, 93, 3, 93, 3, 94, 3, 94, 3, 94, 3, 94, 3, 94, 3, 94, 3, 95, 3, 95, 3, 95, 3, 95, 3, 95, 3, 95, 3, 95, 3, 96, 3, 96, 3, 96, 3, 96, 3, 96, 3, 96, 3, 96, 3, 96, 3, 96, 3, 97, 3, 97, 3, 97, 3, 97, 3, 97, 3, 97, 3, 97, 3, 97, 3, 97, 3, 97, 3, 98, 3, 98, 3, 98, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 3, 100, 3, 100, 3, 100, 3, 100, 3, 100, 3, 100, 3, 100, 3, 100, 3, 100, 3, 101, 3, 101, 3, 101, 3, 101, 3, 101, 3, 101, 3, 102, 3, 102, 3, 102, 3, 102, 3, 102, 3, 102, 3, 102, 3, 103, 3, 103, 3, 103, 3, 103, 3, 103, 3, 103, 3, 103, 3, 104, 3, 104, 3, 104, 3, 104, 3, 104, 3, 104, 3, 104, 3, 104, 3, 105, 3, 105, 3, 105, 3, 105, 3, 106, 3, 106, 3, 106, 3, 106, 3, 106, 3, 106, 3, 107, 3, 107, 3, 107, 3, 107, 3, 107, 3, 108, 3, 108, 3, 108, 3, 108, 3, 108, 3, 108, 3, 109, 3, 109, 3, 109, 3, 109, 3, 109, 3, 109, 3, 109, 3, 109, 3, 109, 3, 109, 3, 109, 3, 109, 3, 110, 3, 110, 3, 110, 3, 110, 3, 110, 3, 110, 3, 110, 3, 111, 3, 111, 3, 111, 3, 111, 3, 111, 3, 111, 3, 111, 3, 111, 3, 111, 3, 112, 3, 112, 3, 112, 3, 112, 3, 112, 3, 112, 3, 113, 3, 113, 3, 113, 3, 113, 3, 113, 3, 113, 3, 113, 3, 114, 3, 114, 3, 114, 3, 114, 3, 114, 3, 115, 3, 115, 3, 115, 3, 115, 3, 115, 3, 115, 3, 115, 3, 115, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 117, 3, 117, 3, 117, 3, 118, 3, 118, 3, 118, 3, 118, 3, 118, 3, 118, 3, 118, 3, 118, 3, 118, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 120, 3, 120, 3, 120, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 122, 3, 122, 3, 122, 3, 122, 3, 123, 3, 123, 3, 123, 3, 123, 3, 123, 3, 124, 3, 124, 3, 124, 3, 125, 3, 125, 3, 125, 3, 125, 3, 126, 3, 126, 3, 126, 3, 127, 3, 127, 3, 127, 3, 127, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 130, 3, 130, 3, 130, 3, 130, 3, 130, 3, 130, 3, 130, 3, 130, 3, 130, 3, 131, 3, 131, 3, 131, 3, 131, 3, 131, 3, 131, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 133, 3, 133, 3, 133, 3, 133, 3, 134, 3, 134, 3, 134, 3, 134, 3, 134, 3, 134, 3, 135, 3, 135, 3, 135, 3, 135, 3, 135, 3, 135, 3, 135, 3, 135, 3, 135, 3, 135, 3, 136, 3, 136, 3, 136, 3, 136, 3, 136, 3, 137, 3, 137, 3, 137, 3, 137, 3, 137, 3, 137, 3, 137, 3, 137, 3, 137, 3, 137, 3, 137, 3, 137, 3, 138, 3, 138, 3, 138, 3, 138, 3, 139, 3, 139, 3, 139, 3, 139, 3, 139, 3, 139, 3, 139, 3, 139, 3, 139, 3, 139, 3, 139, 3, 140, 3, 140, 3, 140, 3, 140, 3, 140, 3, 140, 3, 140, 3, 141, 3, 141, 3, 141, 3, 141, 3, 142, 3, 142, 3, 142, 3, 143, 3, 143, 3, 143, 3, 143, 3, 143, 3, 144, 3, 144, 3, 144, 3, 144, 3, 144, 3, 144, 3, 144, 3, 144, 3, 145, 3, 145, 3, 145, 3, 145, 3, 145, 3, 145, 3, 145, 3, 145, 3, 145, 3, 145, 3, 145, 3, 146, 3, 146, 3, 146, 3, 146, 3, 146, 3, 146, 3, 146, 3, 146, 3, 146, 3, 146, 3, 147, 3, 147, 3, 147, 3, 147, 3, 147, 3, 147, 3, 147, 3, 147, 3, 147, 3, 147, 3, 148, 3, 148, 3, 148, 3, 148, 3, 148, 3, 148, 3, 148, 3, 149, 3, 149, 3, 149, 3, 149, 3, 149, 3, 149, 3, 150, 3, 150, 3, 150, 3, 150, 3, 150, 3, 150, 3, 151, 3, 151, 3, 151, 3, 151, 3, 151, 3, 151, 3, 151, 3, 151, 3, 151, 3, 151, 3, 151, 3, 151, 3, 151, 3, 151, 3, 151, 3, 151, 3, 152, 3, 152, 3, 152, 3, 152, 3, 152, 3, 152, 3, 152, 3, 152, 3, 152, 3, 152, 3, 152, 3, 152, 3, 152, 3, 153, 3, 153, 3, 153, 3, 153, 3, 153, 3, 153, 3, 153, 3, 153, 3, 153, 3, 153, 3, 153, 3, 153, 3, 153, 3, 154, 3, 154, 3, 154, 3, 154, 3, 154, 3, 154, 3, 154, 3, 154, 3, 154, 3, 154, 3, 155, 3, 155, 3, 155, 3, 155, 3, 155, 3, 155, 3, 155, 3, 156, 3, 156, 3, 156, 3, 156, 3, 156, 3, 156, 3, 156, 3, 156, 3, 156, 3, 156, 3, 156, 3, 157, 3, 157, 3, 157, 3, 157, 3, 157, 3, 157, 3, 157, 3, 157, 3, 157, 3, 157, 3, 157, 3, 158, 3, 158, 3, 158, 3, 158, 3, 158, 3, 158, 3, 159, 3, 159, 3, 159, 3, 159, 3, 159, 3, 160, 3, 160, 3, 160, 3, 160, 3, 160, 3, 160, 3, 160, 3, 160, 3, 161, 3, 161, 3, 161, 3, 161, 3, 161, 3, 161, 3, 162, 3, 162, 3, 162, 3, 162, 3, 162, 3, 162, 3, 162, 3, 162, 3, 162, 3, 162, 3, 163, 3, 163, 3, 163, 3, 163, 3, 163, 3, 163, 3, 163, 3, 163, 3, 163, 3, 164, 3, 164, 3, 164, 3, 164, 3, 164, 3, 164, 3, 164, 3, 164, 3, 164, 3, 165, 3, 165, 3, 165, 3, 165, 3, 165, 3, 165, 3, 165, 3, 165, 3, 166, 3, 166, 3, 166, 3, 166, 3, 166, 3, 166, 3, 167, 3, 167, 3, 167, 3, 167, 3, 167, 3, 167, 3, 168, 3, 168, 3, 168, 3, 168, 3, 168, 3, 168, 3, 168, 3, 168, 3, 169, 3, 169, 3, 169, 3, 169, 3, 169, 3, 170, 3, 170, 3, 170, 3, 170, 3, 170, 3, 170, 3, 170, 3, 170, 3, 170, 3, 170, 3, 171, 3, 171, 3, 171, 3, 171, 3, 171, 3, 171, 3, 171, 3, 172, 3, 172, 3, 172, 3, 172, 3, 172, 3, 172, 3, 172, 3, 172, 3, 172, 3, 172, 3, 173, 3, 173, 3, 173, 3, 173, 3, 173, 3, 173, 3, 173, 3, 173, 3, 174, 3, 174, 3, 174, 3, 174, 3, 174, 3, 174, 3, 175, 3, 175, 3, 175, 3, 175, 3, 175, 3, 175, 3, 175, 3, 175, 3, 175, 3, 175, 3, 175, 3, 175, 3, 175, 3, 175, 3, 176, 3, 176, 3, 176, 3, 176, 3, 176, 3, 176, 3, 176, 3, 176, 3, 176, 3, 176, 3, 176, 3, 176, 3, 176, 3, 177, 3, 177, 3, 177, 3, 177, 3, 177, 3, 177, 3, 177, 3, 177, 3, 178, 3, 178, 3, 178, 3, 178, 3, 178, 3, 178, 3, 178, 3, 179, 3, 179, 3, 179, 3, 179, 3, 179, 3, 179, 3, 179, 3, 180, 3, 180, 3, 180, 3, 180, 3, 180, 3, 180, 3, 180, 3, 180, 3, 180, 3, 180, 3, 180, 3, 180, 3, 181, 3, 181, 3, 181, 3, 181, 3, 181, 3, 181, 3, 181, 3, 181, 3, 181, 3, 182, 3, 182, 3, 182, 3, 182, 3, 182, 3, 182, 3, 182, 3, 182, 3, 182, 3, 183, 3, 183, 3, 183, 3, 183, 3, 183, 3, 183, 3, 183, 3, 183, 3, 184, 3, 184, 3, 184, 3, 184, 3, 184, 3, 184, 3, 184, 3, 184, 3, 184, 3, 184, 3, 185, 3, 185, 3, 185, 3, 185, 3, 185, 3, 185, 3, 185, 3, 185, 3, 185, 3, 185, 3, 185, 3, 186, 3, 186, 3, 186, 3, 186, 3, 186, 3, 186, 3, 187, 3, 187, 3, 187, 3, 187, 3, 187, 3, 187, 3, 187, 3, 187, 3, 188, 3, 188, 3, 188, 3, 188, 3, 188, 3, 188, 3, 188, 3, 188, 3, 188, 3, 188, 3, 188, 3, 188, 3, 189, 3, 189, 3, 189, 3, 189, 3, 189, 3, 189, 3, 189, 3, 190, 3, 190, 3, 190, 3, 190, 3, 190, 3, 190, 3, 190, 3, 190, 3, 191, 3, 191, 3, 191, 3, 191, 3, 191, 3, 191, 3, 191, 3, 191, 3, 191, 3, 191, 3, 191, 3, 192, 3, 192, 3, 192, 3, 192, 3, 192, 3, 192, 3, 192, 3, 192, 3, 192, 3, 193, 3, 193, 3, 193, 3, 193, 3, 193, 3, 193, 3, 193, 3, 193, 3, 193, 3, 193, 3, 194, 3, 194, 3, 194, 3, 194, 3, 194, 3, 194, 3, 194, 3, 195, 3, 195, 3, 195, 3, 195, 3, 195, 3, 195, 3, 196, 3, 196, 3, 196, 3, 196, 3, 196, 3, 196, 3, 196, 3, 196, 3, 196, 3, 196, 3, 196, 3, 196, 3, 197, 3, 197, 3, 197, 3, 197, 3, 197, 3, 197, 3, 197, 3, 197, 3, 197, 3, 197, 3, 197, 3, 197, 3, 197, 3, 198, 3, 198, 3, 198, 3, 198, 3, 198, 3, 198, 3, 198, 3, 198, 3, 198, 3, 199, 3, 199, 3, 199, 3, 199, 3, 199, 3, 199, 3, 199, 3, 199, 3, 199, 3, 199, 3, 200, 3, 200, 3, 200, 3, 200, 3, 201, 3, 201, 3, 201, 3, 201, 3, 201, 3, 201, 3, 201, 3, 201, 3, 201, 3, 202, 3, 202, 3, 202, 3, 202, 3, 202, 3, 202, 3, 202, 3, 202, 3, 203, 3, 203, 3, 203, 3, 203, 3, 203, 3, 203, 3, 203, 3, 203, 3, 204, 3, 204, 3, 204, 3, 204, 3, 204, 3, 205, 3, 205, 3, 205, 3, 205, 3, 205, 3, 205, 3, 205, 3, 205, 3, 205, 3, 205, 3, 205, 3, 206, 3, 206, 3, 206, 3, 206, 3, 206, 3, 206, 3, 206, 3, 206, 3, 206, 3, 206, 3, 206, 3, 206, 3, 207, 3, 207, 3, 207, 3, 207, 3, 207, 3, 207, 3, 207, 3, 207, 3, 207, 3, 208, 3, 208, 3, 208, 3, 208, 3, 208, 3, 208, 3, 208, 3, 208, 3, 209, 3, 209, 3, 209, 3, 209, 3, 209, 3, 209, 3, 209, 3, 210, 3, 210, 3, 210, 3, 210, 3, 210, 3, 210, 3, 211, 3, 211, 3, 211, 3, 211, 3, 211, 3, 212, 3, 212, 3, 212, 3, 212, 3, 212, 3, 212, 3, 212, 3, 213, 3, 213, 3, 213, 3, 213, 3, 213, 3, 214, 3, 214, 3, 214, 3, 214, 3, 214, 3, 214, 3, 214, 3, 215, 3, 215, 3, 215, 3, 215, 3, 215, 3, 215, 3, 215, 3, 215, 3, 216, 3, 216, 3, 216, 3, 216, 3, 216, 3, 216, 3, 216, 3, 217, 3, 217, 3, 217, 3, 217, 3, 217, 3, 217, 3, 217, 3, 218, 3, 218, 3, 218, 3, 218, 3, 218, 3, 219, 3, 219, 3, 219, 3, 219, 3, 219, 3, 220, 3, 220, 3, 220, 3, 220, 3, 220, 3, 220, 3, 221, 3, 221, 3, 221, 3, 221, 3, 221, 3, 221, 3, 221, 3, 221, 3, 221, 3, 221, 3, 221, 3, 221, 3, 222, 3, 222, 3, 222, 3, 222, 3, 222, 3, 222, 3, 222, 3, 222, 3, 222, 3, 222, 3, 222, 3, 223, 3, 223, 3, 223, 3, 223, 3, 223, 3, 223, 3, 223, 3, 223, 3, 223, 3, 223, 3, 223, 3, 223, 3, 223, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 226, 3, 226, 3, 226, 3, 226, 3, 226, 3, 226, 3, 227, 3, 227, 3, 227, 3, 227, 3, 227, 3, 227, 3, 227, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 229, 3, 229, 3, 229, 3, 229, 3, 229, 3, 229, 3, 230, 3, 230, 3, 230, 3, 230, 3, 230, 3, 230, 3, 230, 3, 231, 3, 231, 3, 231, 3, 231, 3, 231, 3, 231, 3, 231, 3, 231, 3, 231, 3, 231, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 234, 3, 234, 3, 234, 3, 234, 3, 234, 3, 234, 3, 234, 3, 234, 3, 234, 3, 235, 3, 235, 3, 235, 3, 235, 3, 236, 3, 236, 3, 236, 3, 236, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 238, 3, 238, 3, 238, 3, 238, 3, 238, 3, 238, 3, 239, 3, 239, 3, 239, 3, 239, 3, 239, 3, 240, 3, 240, 3, 240, 3, 240, 3, 240, 3, 241, 3, 241, 3, 241, 3, 241, 3, 241, 3, 241, 3, 241, 3, 241, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 243, 3, 243, 3, 243, 3, 243, 3, 243, 3, 243, 3, 243, 3, 244, 3, 244, 3, 244, 3, 245, 3, 245, 3, 245, 3, 245, 3, 245, 3, 245, 3, 245, 3, 246, 3, 246, 3, 246, 3, 246, 3, 246, 3, 246, 3, 246, 3, 246, 3, 246, 3, 246, 3, 247, 3, 247, 3, 247, 3, 247, 3, 247, 3, 247, 3, 247, 3, 247, 3, 247, 3, 247, 3, 248, 3, 248, 3, 248, 3, 248, 3, 248, 3, 248, 3, 248, 3, 248, 3, 248, 3, 248, 3, 248, 3, 248, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 249, 3, 250, 3, 250, 3, 250, 3, 250, 3, 250, 3, 250, 3, 250, 3, 250, 3, 250, 3, 250, 3, 251, 3, 251, 3, 251, 3, 251, 3, 251, 3, 251, 3, 251, 3, 251, 3, 252, 3, 252, 3, 252, 3, 252, 3, 252, 3, 252, 3, 252, 3, 252, 3, 252, 3, 253, 3, 253, 3, 253, 3, 253, 3, 253, 3, 253, 3, 253, 3, 253, 3, 253, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 255, 3, 255, 3, 255, 3, 255, 3, 255, 3, 255, 3, 255, 3, 255, 3, 256, 3, 256, 3, 256, 3, 256, 3, 257, 3, 257, 3, 257, 3, 257, 3, 257, 3, 257, 3, 257, 3, 258, 3, 258, 3, 258, 3, 258, 3, 258, 3, 258, 3, 258, 3, 258, 3, 258, 3, 258, 3, 258, 3, 258, 3, 259, 3, 259, 3, 259, 3, 259, 3, 259, 3, 259, 3, 259, 3, 260, 3, 260, 3, 260, 3, 260, 3, 260, 3, 260, 3, 261, 3, 261, 3, 261, 3, 261, 3, 262, 3, 262, 3, 262, 3, 262, 3, 262, 3, 263, 3, 263, 3, 263, 3, 263, 3, 263, 3, 263, 3, 263, 3, 263, 3, 264, 3, 264, 3, 264, 3, 264, 3, 264, 3, 264, 3, 264, 3, 265, 3, 265, 3, 265, 3, 265, 3, 265, 3, 265, 3, 265, 3, 265, 3, 265, 3, 265, 3, 266, 3, 266, 3, 266, 3, 266, 3, 266, 3, 266, 3, 267, 3, 267, 3, 267, 3, 267, 3, 267, 3, 267, 3, 267, 3, 267, 3, 268, 3, 268, 3, 268, 3, 268, 3, 268, 3, 268, 3, 268, 3, 268, 3, 269, 3, 269, 3, 269, 3, 269, 3, 269, 3, 269, 3, 269, 3, 269, 3, 269, 3, 270, 3, 270, 3, 270, 3, 270, 3, 271, 3, 271, 3, 271, 3, 271, 3, 271, 3, 271, 3, 271, 3, 272, 3, 272, 3, 272, 3, 272, 3, 272, 3, 272, 3, 273, 3, 273, 3, 273, 3, 273, 3, 273, 3, 273, 3, 273, 3, 274, 3, 274, 3, 274, 3, 274, 3, 274, 3, 275, 3, 275, 3, 275, 3, 275, 3, 275, 3, 276, 3, 276, 3, 276, 3, 276, 3, 276, 3, 276, 3, 276, 3, 276, 3, 276, 3, 276, 3, 277, 3, 277, 3, 277, 3, 277, 3, 277, 3, 277, 3, 277, 3, 277, 3, 277, 3, 278, 3, 278, 3, 278, 3, 278, 3, 278, 3, 278, 3, 278, 3, 278, 3, 279, 3, 279, 3, 279, 3, 279, 3, 280, 3, 280, 3, 280, 3, 280, 3, 281, 3, 281, 3, 281, 3, 281, 3, 281, 3, 282, 3, 282, 3, 282, 3, 282, 3, 282, 3, 282, 3, 282, 3, 282, 3, 282, 3, 283, 3, 283, 3, 284, 3, 284, 3, 285, 3, 285, 3, 286, 3, 286, 3, 287, 3, 287, 3, 288, 3, 288, 3, 289, 3, 289, 3, 290, 3, 290, 3, 291, 3, 291, 3, 292, 3, 292, 3, 293, 3, 293, 3, 294, 3, 294, 3, 295, 3, 295, 3, 296, 3, 296, 3, 297, 3, 297, 3, 298, 3, 298, 3, 299, 3, 299, 3, 300, 3, 300, 3, 301, 3, 301, 3, 302, 3, 302, 3, 303, 3, 303, 3, 304, 3, 304, 3, 305, 3, 305, 3, 306, 3, 306, 3, 307, 3, 307, 3, 308, 3, 308, 3, 308, 3, 309, 3, 309, 3, 309, 3, 310, 3, 310, 3, 311, 3, 311, 3, 311, 3, 312, 3, 312, 3, 312, 3, 313, 3, 313, 3, 313, 5, 313, 2754, 10, 313, 3, 314, 6, 314, 2757, 10, 314, 13, 314, 14, 314, 2758, 3, 315, 6, 315, 2762, 10, 315, 13, 315, 14, 315, 2763, 5, 315, 2766, 10, 315, 3, 315, 3, 315, 6, 315, 2770, 10, 315, 13, 315, 14, 315, 2771, 3, 315, 6, 315, 2775, 10, 315, 13, 315, 14, 315, 2776, 3, 315, 3, 315, 3, 315, 3, 315, 6, 315, 2783, 10, 315, 13, 315, 14, 315, 2784, 5, 315, 2787, 10, 315, 3, 315, 3, 315, 6, 315, 2791, 10, 315, 13, 315, 14, 315, 2792, 3, 315, 3, 315, 3, 315, 6, 315, 2798, 10, 315, 13, 315, 14, 315, 2799, 3, 315, 3, 315, 5, 315, 2804, 10, 315, 3, 316, 3, 316, 3, 317, 3, 317, 3, 318, 3, 318, 3, 319, 3, 319, 5, 319, 2814, 10, 319, 3, 319, 6, 319, 2817, 10, 319, 13, 319, 14, 319, 2818, 3, 320, 7, 320, 2822, 10, 320, 12, 320, 14, 320, 2825, 11, 320, 3, 320, 6, 320, 2828, 10, 320, 13, 320, 14, 320, 2829, 3, 320, 7, 320, 2833, 10, 320, 12, 320, 14, 320, 2836, 11, 320, 3, 321, 7, 321, 2839, 10, 321, 12, 321, 14, 321, 2842, 11, 321, 3, 321, 6, 321, 2845, 10, 321, 13, 321, 14, 321, 2846, 3, 321, 7, 321, 2850, 10, 321, 12, 321, 14, 321, 2853, 11, 321, 3, 322, 3, 322, 3, 323, 3, 323, 3, 324, 3, 324, 3, 324, 3, 324, 3, 324, 3, 324, 7, 324, 2865, 10, 324, 12, 324, 14, 324, 2868, 11, 324, 3, 324, 3, 324, 3, 325, 3, 325, 3, 325, 3, 325, 3, 325, 3, 325, 7, 325, 2878, 10, 325, 12, 325, 14, 325, 2881, 11, 325, 3, 325, 3, 325, 3, 326, 3, 326, 3, 326, 6, 326, 2888, 10, 326, 13, 326, 14, 326, 2889, 3, 326, 3, 326, 3, 327, 3, 327, 3, 327, 3, 327, 3, 327, 3, 327, 7, 327, 2900, 10, 327, 12, 327, 14, 327, 2903, 11, 327, 3, 327, 3, 327, 7, 668, 2823, 2829, 2840, 2846, 2, 328, 3, 3, 5, 4, 7, 5, 9, 6, 11, 7, 13, 8, 15, 9, 17, 10, 19, 11, 21, 12, 23, 13, 25, 14, 27, 15, 29, 16, 31, 17, 33, 18, 35, 19, 37, 20, 39, 21, 41, 22, 43, 23, 45, 24, 47, 25, 49, 26, 51, 27, 53, 28, 55, 29, 57, 30, 59, 31, 61, 32, 63, 33, 65, 34, 67, 35, 69, 36, 71, 37, 73, 38, 75, 39, 77, 40, 79, 41, 81, 42, 83, 43, 85, 44, 87, 45, 89, 46, 91, 47, 93, 48, 95, 49, 97, 50, 99, 51, 101, 52, 103, 53, 105, 54, 107, 55, 109, 56, 111, 57, 113, 58, 115, 59, 117, 60, 119, 61, 121, 62, 123, 63, 125, 64, 127, 65, 129, 66, 131, 67, 133, 68, 135, 69, 137, 70, 139, 71, 141, 72, 143, 73, 145, 74, 147, 75, 149, 76, 151, 77, 153, 78, 155, 79, 157, 80, 159, 81, 161, 82, 163, 83, 165, 84, 167, 85, 169, 86, 171, 87, 173, 88, 175, 89, 177, 90, 179, 91, 181, 92, 183, 93, 185, 94, 187, 95, 189, 96, 191, 97, 193, 98, 195, 99, 197, 100, 199, 101, 201, 102, 203, 103, 205, 104, 207, 105, 209, 106, 211, 107, 213, 108, 215, 109, 217, 110, 219, 111, 221, 112, 223, 113, 225, 114, 227, 115, 229, 116, 231, 117, 233, 118, 235, 119, 237, 120, 239, 121, 241, 122, 243, 123, 245, 124, 247, 125, 249, 126, 251, 127, 253, 128, 255, 129, 257, 130, 259, 131, 261, 132, 263, 133, 265, 134, 267, 135, 269, 136, 271, 137, 273, 138, 275, 139, 277, 140, 279, 141, 281, 142, 283, 143, 285, 144, 287, 145, 289, 146, 291, 147, 293, 148, 295, 149, 297, 150, 299, 151, 301, 152, 303, 153, 305, 154, 307, 155, 309, 156, 311, 157, 313, 158, 315, 159, 317, 160, 319, 161, 321, 162, 323, 163, 325, 164, 327, 165, 329, 166, 331, 167, 333, 168, 335, 169, 337, 170, 339, 171, 341, 172, 343, 173, 345, 174, 347, 175, 349, 176, 351, 177, 353, 178, 355, 179, 357, 180, 359, 181, 361, 182, 363, 183, 365, 184, 367, 185, 369, 186, 371, 187, 373, 188, 375, 189, 377, 190, 379, 191, 381, 192, 383, 193, 385, 194, 387, 195, 389, 196, 391, 197, 393, 198, 395, 199, 397, 200, 399, 201, 401, 202, 403, 203, 405, 204, 407, 205, 409, 206, 411, 207, 413, 208, 415, 209, 417, 210, 419, 211, 421, 212, 423, 213, 425, 214, 427, 215, 429, 216, 431, 217, 433, 218, 435, 219, 437, 220, 439, 221, 441, 222, 443, 223, 445, 224, 447, 225, 449, 226, 451, 227, 453, 228, 455, 229, 457, 230, 459, 231, 461, 232, 463, 233, 465, 234, 467, 235, 469, 236, 471, 237, 473, 238, 475, 239, 477, 240, 479, 241, 481, 242, 483, 243, 485, 244, 487, 245, 489, 246, 491, 247, 493, 248, 495, 249, 497, 250, 499, 251, 501, 252, 503, 253, 505, 254, 507, 255, 509, 256, 511, 257, 513, 258, 515, 259, 517, 260, 519, 261, 521, 262, 523, 263, 525, 264, 527, 265, 529, 266, 531, 267, 533, 268, 535, 269, 537, 270, 539, 271, 541, 272, 543, 273, 545, 274, 547, 275, 549, 276, 551, 277, 553, 278, 555, 279, 557, 280, 559, 281, 561, 282, 563, 283, 565, 284, 567, 285, 569, 286, 571, 287, 573, 288, 575, 289, 577, 290, 579, 291, 581, 292, 583, 293, 585, 294, 587, 295, 589, 296, 591, 297, 593, 298, 595, 299, 597, 300, 599, 301, 601, 302, 603, 303, 605, 304, 607, 305, 609, 306, 611, 307, 613, 308, 615, 309, 617, 310, 619, 311, 621, 312, 623, 313, 625, 314, 627, 315, 629, 316, 631, 317, 633, 318, 635, 319, 637, 2, 639, 2, 641, 2, 643, 2, 645, 2, 647, 2, 649, 2, 651, 2, 653, 2, 3, 2, 15, 5, 2, 11, 12, 15, 15, 34, 34, 4, 2, 12, 12, 15, 15, 4, 2, 48, 48, 60, 60, 4, 2, 45, 45, 47, 47, 6, 2, 50, 59, 67, 92, 97, 97, 99, 124, 5, 2, 67, 92, 97, 97, 99, 124, 8, 2, 37, 40, 44, 44, 50, 59, 66, 66, 96, 97, 99, 124, 3, 2, 50, 59, 4, 2, 67, 92, 99, 124, 4, 2, 36, 36, 94, 94, 4, 2, 41, 41, 94, 94, 3, 2, 50, 51, 4, 2, 94, 94, 98, 98, 2, 2937, 2, 3, 3, 2, 2, 2, 2, 5, 3, 2, 2, 2, 2, 7, 3, 2, 2, 2, 2, 9, 3, 2, 2, 2, 2, 11, 3, 2, 2, 2, 2, 13, 3, 2, 2, 2, 2, 15, 3, 2, 2, 2, 2, 17, 3, 2, 2, 2, 2, 19, 3, 2, 2, 2, 2, 21, 3, 2, 2, 2, 2, 23, 3, 2, 2, 2, 2, 25, 3, 2, 2, 2, 2, 27, 3, 2, 2, 2, 2, 29, 3, 2, 2, 2, 2, 31, 3, 2, 2, 2, 2, 33, 3, 2, 2, 2, 2, 35, 3, 2, 2, 2, 2, 37, 3, 2, 2, 2, 2, 39, 3, 2, 2, 2, 2, 41, 3, 2, 2, 2, 2, 43, 3, 2, 2, 2, 2, 45, 3, 2, 2, 2, 2, 47, 3, 2, 2, 2, 2, 49, 3, 2, 2, 2, 2, 51, 3, 2, 2, 2, 2, 53, 3, 2, 2, 2, 2, 55, 3, 2, 2, 2, 2, 57, 3, 2, 2, 2, 2, 59, 3, 2, 2, 2, 2, 61, 3, 2, 2, 2, 2, 63, 3, 2, 2, 2, 2, 65, 3, 2, 2, 2, 2, 67, 3, 2, 2, 2, 2, 69, 3, 2, 2, 2, 2, 71, 3, 2, 2, 2, 2, 73, 3, 2, 2, 2, 2, 75, 3, 2, 2, 2, 2, 77, 3, 2, 2, 2, 2, 79, 3, 2, 2, 2, 2, 81, 3, 2, 2, 2, 2, 83, 3, 2, 2, 2, 2, 85, 3, 2, 2, 2, 2, 87, 3, 2, 2, 2, 2, 89, 3, 2, 2, 2, 2, 91, 3, 2, 2, 2, 2, 93, 3, 2, 2, 2, 2, 95, 3, 2, 2, 2, 2, 97, 3, 2, 2, 2, 2, 99, 3, 2, 2, 2, 2, 101, 3, 2, 2, 2, 2, 103, 3, 2, 2, 2, 2, 105, 3, 2, 2, 2, 2, 107, 3, 2, 2, 2, 2, 109, 3, 2, 2, 2, 2, 111, 3, 2, 2, 2, 2, 113, 3, 2, 2, 2, 2, 115, 3, 2, 2, 2, 2, 117, 3, 2, 2, 2, 2, 119, 3, 2, 2, 2, 2, 121, 3, 2, 2, 2, 2, 123, 3, 2, 2, 2, 2, 125, 3, 2, 2, 2, 2, 127, 3, 2, 2, 2, 2, 129, 3, 2, 2, 2, 2, 131, 3, 2, 2, 2, 2, 133, 3, 2, 2, 2, 2, 135, 3, 2, 2, 2, 2, 137, 3, 2, 2, 2, 2, 139, 3, 2, 2, 2, 2, 141, 3, 2, 2, 2, 2, 143, 3, 2, 2, 2, 2, 145, 3, 2, 2, 2, 2, 147, 3, 2, 2, 2, 2, 149, 3, 2, 2, 2, 2, 151, 3, 2, 2, 2, 2, 153, 3, 2, 2, 2, 2, 155, 3, 2, 2, 2, 2, 157, 3, 2, 2, 2, 2, 159, 3, 2, 2, 2, 2, 161, 3, 2, 2, 2, 2, 163, 3, 2, 2, 2, 2, 165, 3, 2, 2, 2, 2, 167, 3, 2, 2, 2, 2, 169, 3, 2, 2, 2, 2, 171, 3, 2, 2, 2, 2, 173, 3, 2, 2, 2, 2, 175, 3, 2, 2, 2, 2, 177, 3, 2, 2, 2, 2, 179, 3, 2, 2, 2, 2, 181, 3, 2, 2, 2, 2, 183, 3, 2, 2, 2, 2, 185, 3, 2, 2, 2, 2, 187, 3, 2, 2, 2, 2, 189, 3, 2, 2, 2, 2, 191, 3, 2, 2, 2, 2, 193, 3, 2, 2, 2, 2, 195, 3, 2, 2, 2, 2, 197, 3, 2, 2, 2, 2, 199, 3, 2, 2, 2, 2, 201, 3, 2, 2, 2, 2, 203, 3, 2, 2, 2, 2, 205, 3, 2, 2, 2, 2, 207, 3, 2, 2, 2, 2, 209, 3, 2, 2, 2, 2, 211, 3, 2, 2, 2, 2, 213, 3, 2, 2, 2, 2, 215, 3, 2, 2, 2, 2, 217, 3, 2, 2, 2, 2, 219, 3, 2, 2, 2, 2, 221, 3, 2, 2, 2, 2, 223, 3, 2, 2, 2, 2, 225, 3, 2, 2, 2, 2, 227, 3, 2, 2, 2, 2, 229, 3, 2, 2, 2, 2, 231, 3, 2, 2, 2, 2, 233, 3, 2, 2, 2, 2, 235, 3, 2, 2, 2, 2, 237, 3, 2, 2, 2, 2, 239, 3, 2, 2, 2, 2, 241, 3, 2, 2, 2, 2, 243, 3, 2, 2, 2, 2, 245, 3, 2, 2, 2, 2, 247, 3, 2, 2, 2, 2, 249, 3, 2, 2, 2, 2, 251, 3, 2, 2, 2, 2, 253, 3, 2, 2, 2, 2, 255, 3, 2, 2, 2, 2, 257, 3, 2, 2, 2, 2, 259, 3, 2, 2, 2, 2, 261, 3, 2, 2, 2, 2, 263, 3, 2, 2, 2, 2, 265, 3, 2, 2, 2, 2, 267, 3, 2, 2, 2, 2, 269, 3, 2, 2, 2, 2, 271, 3, 2, 2, 2, 2, 273, 3, 2, 2, 2, 2, 275, 3, 2, 2, 2, 2, 277, 3, 2, 2, 2, 2, 279, 3, 2, 2, 2, 2, 281, 3, 2, 2, 2, 2, 283, 3, 2, 2, 2, 2, 285, 3, 2, 2, 2, 2, 287, 3, 2, 2, 2, 2, 289, 3, 2, 2, 2, 2, 291, 3, 2, 2, 2, 2, 293, 3, 2, 2, 2, 2, 295, 3, 2, 2, 2, 2, 297, 3, 2, 2, 2, 2, 299, 3, 2, 2, 2, 2, 301, 3, 2, 2, 2, 2, 303, 3, 2, 2, 2, 2, 305, 3, 2, 2, 2, 2, 307, 3, 2, 2, 2, 2, 309, 3, 2, 2, 2, 2, 311, 3, 2, 2, 2, 2, 313, 3, 2, 2, 2, 2, 315, 3, 2, 2, 2, 2, 317, 3, 2, 2, 2, 2, 319, 3, 2, 2, 2, 2, 321, 3, 2, 2, 2, 2, 323, 3, 2, 2, 2, 2, 325, 3, 2, 2, 2, 2, 327, 3, 2, 2, 2, 2, 329, 3, 2, 2, 2, 2, 331, 3, 2, 2, 2, 2, 333, 3, 2, 2, 2, 2, 335, 3, 2, 2, 2, 2, 337, 3, 2, 2, 2, 2, 339, 3, 2, 2, 2, 2, 341, 3, 2, 2, 2, 2, 343, 3, 2, 2, 2, 2, 345, 3, 2, 2, 2, 2, 347, 3, 2, 2, 2, 2, 349, 3, 2, 2, 2, 2, 351, 3, 2, 2, 2, 2, 353, 3, 2, 2, 2, 2, 355, 3, 2, 2, 2, 2, 357, 3, 2, 2, 2, 2, 359, 3, 2, 2, 2, 2, 361, 3, 2, 2, 2, 2, 363, 3, 2, 2, 2, 2, 365, 3, 2, 2, 2, 2, 367, 3, 2, 2, 2, 2, 369, 3, 2, 2, 2, 2, 371, 3, 2, 2, 2, 2, 373, 3, 2, 2, 2, 2, 375, 3, 2, 2, 2, 2, 377, 3, 2, 2, 2, 2, 379, 3, 2, 2, 2, 2, 381, 3, 2, 2, 2, 2, 383, 3, 2, 2, 2, 2, 385, 3, 2, 2, 2, 2, 387, 3, 2, 2, 2, 2, 389, 3, 2, 2, 2, 2, 391, 3, 2, 2, 2, 2, 393, 3, 2, 2, 2, 2, 395, 3, 2, 2, 2, 2, 397, 3, 2, 2, 2, 2, 399, 3, 2, 2, 2, 2, 401, 3, 2, 2, 2, 2, 403, 3, 2, 2, 2, 2, 405, 3, 2, 2, 2, 2, 407, 3, 2, 2, 2, 2, 409, 3, 2, 2, 2, 2, 411, 3, 2, 2, 2, 2, 413, 3, 2, 2, 2, 2, 415, 3, 2, 2, 2, 2, 417, 3, 2, 2, 2, 2, 419, 3, 2, 2, 2, 2, 421, 3, 2, 2, 2, 2, 423, 3, 2, 2, 2, 2, 425, 3, 2, 2, 2, 2, 427, 3, 2, 2, 2, 2, 429, 3, 2, 2, 2, 2, 431, 3, 2, 2, 2, 2, 433, 3, 2, 2, 2, 2, 435, 3, 2, 2, 2, 2, 437, 3, 2, 2, 2, 2, 439, 3, 2, 2, 2, 2, 441, 3, 2, 2, 2, 2, 443, 3, 2, 2, 2, 2, 445, 3, 2, 2, 2, 2, 447, 3, 2, 2, 2, 2, 449, 3, 2, 2, 2, 2, 451, 3, 2, 2, 2, 2, 453, 3, 2, 2, 2, 2, 455, 3, 2, 2, 2, 2, 457, 3, 2, 2, 2, 2, 459, 3, 2, 2, 2, 2, 461, 3, 2, 2, 2, 2, 463, 3, 2, 2, 2, 2, 465, 3, 2, 2, 2, 2, 467, 3, 2, 2, 2, 2, 469, 3, 2, 2, 2, 2, 471, 3, 2, 2, 2, 2, 473, 3, 2, 2, 2, 2, 475, 3, 2, 2, 2, 2, 477, 3, 2, 2, 2, 2, 479, 3, 2, 2, 2, 2, 481, 3, 2, 2, 2, 2, 483, 3, 2, 2, 2, 2, 485, 3, 2, 2, 2, 2, 487, 3, 2, 2, 2, 2, 489, 3, 2, 2, 2, 2, 491, 3, 2, 2, 2, 2, 493, 3, 2, 2, 2, 2, 495, 3, 2, 2, 2, 2, 497, 3, 2, 2, 2, 2, 499, 3, 2, 2, 2, 2, 501, 3, 2, 2, 2, 2, 503, 3, 2, 2, 2, 2, 505, 3, 2, 2, 2, 2, 507, 3, 2, 2, 2, 2, 509, 3, 2, 2, 2, 2, 511, 3, 2, 2, 2, 2, 513, 3, 2, 2, 2, 2, 515, 3, 2, 2, 2, 2, 517, 3, 2, 2, 2, 2, 519, 3, 2, 2, 2, 2, 521, 3, 2, 2, 2, 2, 523, 3, 2, 2, 2, 2, 525, 3, 2, 2, 2, 2, 527, 3, 2, 2, 2, 2, 529, 3, 2, 2, 2, 2, 531, 3, 2, 2, 2, 2, 533, 3, 2, 2, 2, 2, 535, 3, 2, 2, 2, 2, 537, 3, 2, 2, 2, 2, 539, 3, 2, 2, 2, 2, 541, 3, 2, 2, 2, 2, 543, 3, 2, 2, 2, 2, 545, 3, 2, 2, 2, 2, 547, 3, 2, 2, 2, 2, 549, 3, 2, 2, 2, 2, 551, 3, 2, 2, 2, 2, 553, 3, 2, 2, 2, 2, 555, 3, 2, 2, 2, 2, 557, 3, 2, 2, 2, 2, 559, 3, 2, 2, 2, 2, 561, 3, 2, 2, 2, 2, 563, 3, 2, 2, 2, 2, 565, 3, 2, 2, 2, 2, 567, 3, 2, 2, 2, 2, 569, 3, 2, 2, 2, 2, 571, 3, 2, 2, 2, 2, 573, 3, 2, 2, 2, 2, 575, 3, 2, 2, 2, 2, 577, 3, 2, 2, 2, 2, 579, 3, 2, 2, 2, 2, 581, 3, 2, 2, 2, 2, 583, 3, 2, 2, 2, 2, 585, 3, 2, 2, 2, 2, 587, 3, 2, 2, 2, 2, 589, 3, 2, 2, 2, 2, 591, 3, 2, 2, 2, 2, 593, 3, 2, 2, 2, 2, 595, 3, 2, 2, 2, 2, 597, 3, 2, 2, 2, 2, 599, 3, 2, 2, 2, 2, 601, 3, 2, 2, 2, 2, 603, 3, 2, 2, 2, 2, 605, 3, 2, 2, 2, 2, 607, 3, 2, 2, 2, 2, 609, 3, 2, 2, 2, 2, 611, 3, 2, 2, 2, 2, 613, 3, 2, 2, 2, 2, 615, 3, 2, 2, 2, 2, 617, 3, 2, 2, 2, 2, 619, 3, 2, 2, 2, 2, 621, 3, 2, 2, 2, 2, 623, 3, 2, 2, 2, 2, 625, 3, 2, 2, 2, 2, 627, 3, 2, 2, 2, 2, 629, 3, 2, 2, 2, 2, 631, 3, 2, 2, 2, 2, 633, 3, 2, 2, 2, 2, 635, 3, 2, 2, 2, 3, 656, 3, 2, 2, 2, 5, 662, 3, 2, 2, 2, 7, 705, 3, 2, 2, 2, 9, 709, 3, 2, 2, 2, 11, 716, 3, 2, 2, 2, 13, 721, 3, 2, 2, 2, 15, 725, 3, 2, 2, 2, 17, 728, 3, 2, 2, 2, 19, 732, 3, 2, 2, 2, 21, 736, 3, 2, 2, 2, 23, 745, 3, 2, 2, 2, 25, 751, 3, 2, 2, 2, 27, 757, 3, 2, 2, 2, 29, 760, 3, 2, 2, 2, 31, 769, 3, 2, 2, 2, 33, 774, 3, 2, 2, 2, 35, 779, 3, 2, 2, 2, 37, 786, 3, 2, 2, 2, 39, 792, 3, 2, 2, 2, 41, 799, 3, 2, 2, 2, 43, 805, 3, 2, 2, 2, 45, 808, 3, 2, 2, 2, 47, 811, 3, 2, 2, 2, 49, 815, 3, 2, 2, 2, 51, 818, 3, 2, 2, 2, 53, 822, 3, 2, 2, 2, 55, 825, 3, 2, 2, 2, 57, 832, 3, 2, 2, 2, 59, 840, 3, 2, 2, 2, 61, 845, 3, 2, 2, 2, 63, 851, 3, 2, 2, 2, 65, 854, 3, 2, 2, 2, 67, 859, 3, 2, 2, 2, 69, 865, 3, 2, 2, 2, 71, 871, 3, 2, 2, 2, 73, 875, 3, 2, 2, 2, 75, 880, 3, 2, 2, 2, 77, 884, 3, 2, 2, 2, 79, 893, 3, 2, 2, 2, 81, 898, 3, 2, 2, 2, 83, 903, 3, 2, 2, 2, 85, 908, 3, 2, 2, 2, 87, 913, 3, 2, 2, 2, 89, 917, 3, 2, 2, 2, 91, 922, 3, 2, 2, 2, 93, 928, 3, 2, 2, 2, 95, 934, 3, 2, 2, 2, 97, 940, 3, 2, 2, 2, 99, 945, 3, 2, 2, 2, 101, 950, 3, 2, 2, 2, 103, 956, 3, 2, 2, 2, 105, 961, 3, 2, 2, 2, 107, 969, 3, 2, 2, 2, 109, 972, 3, 2, 2, 2, 111, 978, 3, 2, 2, 2, 113, 986, 3, 2, 2, 2, 115, 993, 3, 2, 2, 2, 117, 998, 3, 2, 2, 2, 119, 1008, 3, 2, 2, 2, 121, 1014, 3, 2, 2, 2, 123, 1019, 3, 2, 2, 2, 125, 1029, 3, 2, 2, 2, 127, 1039, 3, 2, 2, 2, 129, 1049, 3, 2, 2, 2, 131, 1057, 3, 2, 2, 2, 133, 1063, 3, 2, 2, 2, 135, 1069, 3, 2, 2, 2, 137, 1074, 3, 2, 2, 2, 139, 1079, 3, 2, 2, 2, 141, 1086, 3, 2, 2, 2, 143, 1093, 3, 2, 2, 2, 145, 1099, 3, 2, 2, 2, 147, 1109, 3, 2, 2, 2, 149, 1114, 3, 2, 2, 2, 151, 1122, 3, 2, 2, 2, 153, 1129, 3, 2, 2, 2, 155, 1136, 3, 2, 2, 2, 157, 1141, 3, 2, 2, 2, 159, 1150, 3, 2, 2, 2, 161, 1158, 3, 2, 2, 2, 163, 1165, 3, 2, 2, 2, 165, 1173, 3, 2, 2, 2, 167, 1181, 3, 2, 2, 2, 169, 1186, 3, 2, 2, 2, 171, 1191, 3, 2, 2, 2, 173, 1196, 3, 2, 2, 2, 175, 1203, 3, 2, 2, 2, 177, 1211, 3, 2, 2, 2, 179, 1218, 3, 2, 2, 2, 181, 1222, 3, 2, 2, 2, 183, 1233, 3, 2, 2, 2, 185, 1243, 3, 2, 2, 2, 187, 1248, 3, 2, 2, 2, 189, 1254, 3, 2, 2, 2, 191, 1261, 3, 2, 2, 2, 193, 1270, 3, 2, 2, 2, 195, 1280, 3, 2, 2, 2, 197, 1283, 3, 2, 2, 2, 199, 1295, 3, 2, 2, 2, 201, 1304, 3, 2, 2, 2, 203, 1310, 3, 2, 2, 2, 205, 1317, 3, 2, 2, 2, 207, 1324, 3, 2, 2, 2, 209, 1332, 3, 2, 2, 2, 211, 1336, 3, 2, 2, 2, 213, 1342, 3, 2, 2, 2, 215, 1347, 3, 2, 2, 2, 217, 1353, 3, 2, 2, 2, 219, 1365, 3, 2, 2, 2, 221, 1372, 3, 2, 2, 2, 223, 1381, 3, 2, 2, 2, 225, 1387, 3, 2, 2, 2, 227, 1394, 3, 2, 2, 2, 229, 1399, 3, 2, 2, 2, 231, 1407, 3, 2, 2, 2, 233, 1416, 3, 2, 2, 2, 235, 1419, 3, 2, 2, 2, 237, 1428, 3, 2, 2, 2, 239, 1436, 3, 2, 2, 2, 241, 1439, 3, 2, 2, 2, 243, 1444, 3, 2, 2, 2, 245, 1448, 3, 2, 2, 2, 247, 1453, 3, 2, 2, 2, 249, 1456, 3, 2, 2, 2, 251, 1460, 3, 2, 2, 2, 253, 1463, 3, 2, 2, 2, 255, 1467, 3, 2, 2, 2, 257, 1472, 3, 2, 2, 2, 259, 1478, 3, 2, 2, 2, 261, 1487, 3, 2, 2, 2, 263, 1493, 3, 2, 2, 2, 265, 1501, 3, 2, 2, 2, 267, 1505, 3, 2, 2, 2, 269, 1511, 3, 2, 2, 2, 271, 1521, 3, 2, 2, 2, 273, 1526, 3, 2, 2, 2, 275, 1538, 3, 2, 2, 2, 277, 1542, 3, 2, 2, 2, 279, 1553, 3, 2, 2, 2, 281, 1560, 3, 2, 2, 2, 283, 1564, 3, 2, 2, 2, 285, 1567, 3, 2, 2, 2, 287, 1572, 3, 2, 2, 2, 289, 1580, 3, 2, 2, 2, 291, 1591, 3, 2, 2, 2, 293, 1601, 3, 2, 2, 2, 295, 1611, 3, 2, 2, 2, 297, 1618, 3, 2, 2, 2, 299, 1624, 3, 2, 2, 2, 301, 1630, 3, 2, 2, 2, 303, 1646, 3, 2, 2, 2, 305, 1659, 3, 2, 2, 2, 307, 1672, 3, 2, 2, 2, 309, 1682, 3, 2, 2, 2, 311, 1689, 3, 2, 2, 2, 313, 1700, 3, 2, 2, 2, 315, 1711, 3, 2, 2, 2, 317, 1717, 3, 2, 2, 2, 319, 1722, 3, 2, 2, 2, 321, 1730, 3, 2, 2, 2, 323, 1736, 3, 2, 2, 2, 325, 1746, 3, 2, 2, 2, 327, 1755, 3, 2, 2, 2, 329, 1764, 3, 2, 2, 2, 331, 1772, 3, 2, 2, 2, 333, 1778, 3, 2, 2, 2, 335, 1784, 3, 2, 2, 2, 337, 1792, 3, 2, 2, 2, 339, 1797, 3, 2, 2, 2, 341, 1807, 3, 2, 2, 2, 343, 1814, 3, 2, 2, 2, 345, 1824, 3, 2, 2, 2, 347, 1832, 3, 2, 2, 2, 349, 1838, 3, 2, 2, 2, 351, 1852, 3, 2, 2, 2, 353, 1865, 3, 2, 2, 2, 355, 1873, 3, 2, 2, 2, 357, 1880, 3, 2, 2, 2, 359, 1887, 3, 2, 2, 2, 361, 1899, 3, 2, 2, 2, 363, 1908, 3, 2, 2, 2, 365, 1917, 3, 2, 2, 2, 367, 1925, 3, 2, 2, 2, 369, 1935, 3, 2, 2, 2, 371, 1946, 3, 2, 2, 2, 373, 1952, 3, 2, 2, 2, 375, 1960, 3, 2, 2, 2, 377, 1972, 3, 2, 2, 2, 379, 1979, 3, 2, 2, 2, 381, 1987, 3, 2, 2, 2, 383, 1998, 3, 2, 2, 2, 385, 2007, 3, 2, 2, 2, 387, 2017, 3, 2, 2, 2, 389, 2024, 3, 2, 2, 2, 391, 2030, 3, 2, 2, 2, 393, 2042, 3, 2, 2, 2, 395, 2055, 3, 2, 2, 2, 397, 2064, 3, 2, 2, 2, 399, 2074, 3, 2, 2, 2, 401, 2078, 3, 2, 2, 2, 403, 2087, 3, 2, 2, 2, 405, 2095, 3, 2, 2, 2, 407, 2103, 3, 2, 2, 2, 409, 2108, 3, 2, 2, 2, 411, 2119, 3, 2, 2, 2, 413, 2131, 3, 2, 2, 2, 415, 2140, 3, 2, 2, 2, 417, 2148, 3, 2, 2, 2, 419, 2155, 3, 2, 2, 2, 421, 2161, 3, 2, 2, 2, 423, 2166, 3, 2, 2, 2, 425, 2173, 3, 2, 2, 2, 427, 2178, 3, 2, 2, 2, 429, 2185, 3, 2, 2, 2, 431, 2193, 3, 2, 2, 2, 433, 2200, 3, 2, 2, 2, 435, 2207, 3, 2, 2, 2, 437, 2212, 3, 2, 2, 2, 439, 2217, 3, 2, 2, 2, 441, 2223, 3, 2, 2, 2, 443, 2235, 3, 2, 2, 2, 445, 2246, 3, 2, 2, 2, 447, 2259, 3, 2, 2, 2, 449, 2265, 3, 2, 2, 2, 451, 2273, 3, 2, 2, 2, 453, 2279, 3, 2, 2, 2, 455, 2286, 3, 2, 2, 2, 457, 2291, 3, 2, 2, 2, 459, 2297, 3, 2, 2, 2, 461, 2304, 3, 2, 2, 2, 463, 2314, 3, 2, 2, 2, 465, 2321, 3, 2, 2, 2, 467, 2337, 3, 2, 2, 2, 469, 2346, 3, 2, 2, 2, 471, 2350, 3, 2, 2, 2, 473, 2354, 3, 2, 2, 2, 475, 2360, 3, 2, 2, 2, 477, 2366, 3, 2, 2, 2, 479, 2371, 3, 2, 2, 2, 481, 2376, 3, 2, 2, 2, 483, 2384, 3, 2, 2, 2, 485, 2391, 3, 2, 2, 2, 487, 2398, 3, 2, 2, 2, 489, 2401, 3, 2, 2, 2, 491, 2408, 3, 2, 2, 2, 493, 2418, 3, 2, 2, 2, 495, 2428, 3, 2, 2, 2, 497, 2440, 3, 2, 2, 2, 499, 2452, 3, 2, 2, 2, 501, 2462, 3, 2, 2, 2, 503, 2470, 3, 2, 2, 2, 505, 2479, 3, 2, 2, 2, 507, 2488, 3, 2, 2, 2, 509, 2494, 3, 2, 2, 2, 511, 2502, 3, 2, 2, 2, 513, 2506, 3, 2, 2, 2, 515, 2513, 3, 2, 2, 2, 517, 2525, 3, 2, 2, 2, 519, 2532, 3, 2, 2, 2, 521, 2538, 3, 2, 2, 2, 523, 2542, 3, 2, 2, 2, 525, 2547, 3, 2, 2, 2, 527, 2555, 3, 2, 2, 2, 529, 2562, 3, 2, 2, 2, 531, 2572, 3, 2, 2, 2, 533, 2578, 3, 2, 2, 2, 535, 2586, 3, 2, 2, 2, 537, 2594, 3, 2, 2, 2, 539, 2603, 3, 2, 2, 2, 541, 2607, 3, 2, 2, 2, 543, 2614, 3, 2, 2, 2, 545, 2620, 3, 2, 2, 2, 547, 2627, 3, 2, 2, 2, 549, 2632, 3, 2, 2, 2, 551, 2637, 3, 2, 2, 2, 553, 2647, 3, 2, 2, 2, 555, 2656, 3, 2, 2, 2, 557, 2664, 3, 2, 2, 2, 559, 2668, 3, 2, 2, 2, 561, 2672, 3, 2, 2, 2, 563, 2677, 3, 2, 2, 2, 565, 2686, 3, 2, 2, 2, 567, 2688, 3, 2, 2, 2, 569, 2690, 3, 2, 2, 2, 571, 2692, 3, 2, 2, 2, 573, 2694, 3, 2, 2, 2, 575, 2696, 3, 2, 2, 2, 577, 2698, 3, 2, 2, 2, 579, 2700, 3, 2, 2, 2, 581, 2702, 3, 2, 2, 2, 583, 2704, 3, 2, 2, 2, 585, 2706, 3, 2, 2, 2, 587, 2708, 3, 2, 2, 2, 589, 2710, 3, 2, 2, 2, 591, 2712, 3, 2, 2, 2, 593, 2714, 3, 2, 2, 2, 595, 2716, 3, 2, 2, 2, 597, 2718, 3, 2, 2, 2, 599, 2720, 3, 2, 2, 2, 601, 2722, 3, 2, 2, 2, 603, 2724, 3, 2, 2, 2, 605, 2726, 3, 2, 2, 2, 607, 2728, 3, 2, 2, 2, 609, 2730, 3, 2, 2, 2, 611, 2732, 3, 2, 2, 2, 613, 2734, 3, 2, 2, 2, 615, 2736, 3, 2, 2, 2, 617, 2739, 3, 2, 2, 2, 619, 2742, 3, 2, 2, 2, 621, 2744, 3, 2, 2, 2, 623, 2747, 3, 2, 2, 2, 625, 2753, 3, 2, 2, 2, 627, 2756, 3, 2, 2, 2, 629, 2803, 3, 2, 2, 2, 631, 2805, 3, 2, 2, 2, 633, 2807, 3, 2, 2, 2, 635, 2809, 3, 2, 2, 2, 637, 2811, 3, 2, 2, 2, 639, 2823, 3, 2, 2, 2, 641, 2840, 3, 2, 2, 2, 643, 2854, 3, 2, 2, 2, 645, 2856, 3, 2, 2, 2, 647, 2858, 3, 2, 2, 2, 649, 2871, 3, 2, 2, 2, 651, 2884, 3, 2, 2, 2, 653, 2893, 3, 2, 2, 2, 655, 657, 9, 2, 2, 2, 656, 655, 3, 2, 2, 2, 657, 658, 3, 2, 2, 2, 658, 656, 3, 2, 2, 2, 658, 659, 3, 2, 2, 2, 659, 660, 3, 2, 2, 2, 660, 661, 8, 2, 2, 2, 661, 4, 3, 2, 2, 2, 662, 663, 7, 49, 2, 2, 663, 664, 7, 44, 2, 2, 664, 668, 3, 2, 2, 2, 665, 667, 11, 2, 2, 2, 666, 665, 3, 2, 2, 2, 667, 670, 3, 2, 2, 2, 668, 669, 3, 2, 2, 2, 668, 666, 3, 2, 2, 2, 669, 671, 3, 2, 2, 2, 670, 668, 3, 2, 2, 2, 671, 672, 7, 44, 2, 2, 672, 673, 7, 49, 2, 2, 673, 674, 3, 2, 2, 2, 674, 675, 8, 3, 2, 2, 675, 6, 3, 2, 2, 2, 676, 677, 7, 47, 2, 2, 677, 678, 7, 47, 2, 2, 678, 681, 7, 34, 2, 2, 679, 681, 7, 37, 2, 2, 680, 676, 3, 2, 2, 2, 680, 679, 3, 2, 2, 2, 681, 685, 3, 2, 2, 2, 682, 684, 10, 3, 2, 2, 683, 682, 3, 2, 2, 2, 684, 687, 3, 2, 2, 2, 685, 683, 3, 2, 2, 2, 685, 686, 3, 2, 2, 2, 686, 693, 3, 2, 2, 2, 687, 685, 3, 2, 2, 2, 688, 690, 7, 15, 2, 2, 689, 688, 3, 2, 2, 2, 689, 690, 3, 2, 2, 2, 690, 691, 3, 2, 2, 2, 691, 694, 7, 12, 2, 2, 692, 694, 7, 2, 2, 3, 693, 689, 3, 2, 2, 2, 693, 692, 3, 2, 2, 2, 694, 706, 3, 2, 2, 2, 695, 696, 7, 47, 2, 2, 696, 697, 7, 47, 2, 2, 697, 703, 3, 2, 2, 2, 698, 700, 7, 15, 2, 2, 699, 698, 3, 2, 2, 2, 699, 700, 3, 2, 2, 2, 700, 701, 3, 2, 2, 2, 701, 704, 7, 12, 2, 2, 702, 704, 7, 2, 2, 3, 703, 699, 3, 2, 2, 2, 703, 702, 3, 2, 2, 2, 704, 706, 3, 2, 2, 2, 705, 680, 3, 2, 2, 2, 705, 695, 3, 2, 2, 2, 706, 707, 3, 2, 2, 2, 707, 708, 8, 4, 2, 2, 708, 8, 3, 2, 2, 2, 709, 710, 7, 85, 2, 2, 710, 711, 7, 71, 2, 2, 711, 712, 7, 78, 2, 2, 712, 713, 7, 71, 2, 2, 713, 714, 7, 69, 2, 2, 714, 715, 7, 86, 2, 2, 715, 10, 3, 2, 2, 2, 716, 717, 7, 72, 2, 2, 717, 718, 7, 84, 2, 2, 718, 719, 7, 81, 2, 2, 719, 720, 7, 79, 2, 2, 720, 12, 3, 2, 2, 2, 721, 722, 7, 67, 2, 2, 722, 723, 7, 70, 2, 2, 723, 724, 7, 70, 2, 2, 724, 14, 3, 2, 2, 2, 725, 726, 7, 67, 2, 2, 726, 727, 7, 85, 2, 2, 727, 16, 3, 2, 2, 2, 728, 729, 7, 67, 2, 2, 729, 730, 7, 78, 2, 2, 730, 731, 7, 78, 2, 2, 731, 18, 3, 2, 2, 2, 732, 733, 7, 67, 2, 2, 733, 734, 7, 80, 2, 2, 734, 735, 7, 91, 2, 2, 735, 20, 3, 2, 2, 2, 736, 737, 7, 70, 2, 2, 737, 738, 7, 75, 2, 2, 738, 739, 7, 85, 2, 2, 739, 740, 7, 86, 2, 2, 740, 741, 7, 75, 2, 2, 741, 742, 7, 80, 2, 2, 742, 743, 7, 69, 2, 2, 743, 744, 7, 86, 2, 2, 744, 22, 3, 2, 2, 2, 745, 746, 7, 89, 2, 2, 746, 747, 7, 74, 2, 2, 747, 748, 7, 71, 2, 2, 748, 749, 7, 84, 2, 2, 749, 750, 7, 71, 2, 2, 750, 24, 3, 2, 2, 2, 751, 752, 7, 73, 2, 2, 752, 753, 7, 84, 2, 2, 753, 754, 7, 81, 2, 2, 754, 755, 7, 87, 2, 2, 755, 756, 7, 82, 2, 2, 756, 26, 3, 2, 2, 2, 757, 758, 7, 68, 2, 2, 758, 759, 7, 91, 2, 2, 759, 28, 3, 2, 2, 2, 760, 761, 7, 73, 2, 2, 761, 762, 7, 84, 2, 2, 762, 763, 7, 81, 2, 2, 763, 764, 7, 87, 2, 2, 764, 765, 7, 82, 2, 2, 765, 766, 7, 75, 2, 2, 766, 767, 7, 80, 2, 2, 767, 768, 7, 73, 2, 2, 768, 30, 3, 2, 2, 2, 769, 770, 7, 85, 2, 2, 770, 771, 7, 71, 2, 2, 771, 772, 7, 86, 2, 2, 772, 773, 7, 85, 2, 2, 773, 32, 3, 2, 2, 2, 774, 775, 7, 69, 2, 2, 775, 776, 7, 87, 2, 2, 776, 777, 7, 68, 2, 2, 777, 778, 7, 71, 2, 2, 778, 34, 3, 2, 2, 2, 779, 780, 7, 84, 2, 2, 780, 781, 7, 81, 2, 2, 781, 782, 7, 78, 2, 2, 782, 783, 7, 78, 2, 2, 783, 784, 7, 87, 2, 2, 784, 785, 7, 82, 2, 2, 785, 36, 3, 2, 2, 2, 786, 787, 7, 81, 2, 2, 787, 788, 7, 84, 2, 2, 788, 789, 7, 70, 2, 2, 789, 790, 7, 71, 2, 2, 790, 791, 7, 84, 2, 2, 791, 38, 3, 2, 2, 2, 792, 793, 7, 74, 2, 2, 793, 794, 7, 67, 2, 2, 794, 795, 7, 88, 2, 2, 795, 796, 7, 75, 2, 2, 796, 797, 7, 80, 2, 2, 797, 798, 7, 73, 2, 2, 798, 40, 3, 2, 2, 2, 799, 800, 7, 78, 2, 2, 800, 801, 7, 75, 2, 2, 801, 802, 7, 79, 2, 2, 802, 803, 7, 75, 2, 2, 803, 804, 7, 86, 2, 2, 804, 42, 3, 2, 2, 2, 805, 806, 7, 67, 2, 2, 806, 807, 7, 86, 2, 2, 807, 44, 3, 2, 2, 2, 808, 809, 7, 81, 2, 2, 809, 810, 7, 84, 2, 2, 810, 46, 3, 2, 2, 2, 811, 812, 7, 67, 2, 2, 812, 813, 7, 80, 2, 2, 813, 814, 7, 70, 2, 2, 814, 48, 3, 2, 2, 2, 815, 816, 7, 75, 2, 2, 816, 817, 7, 80, 2, 2, 817, 50, 3, 2, 2, 2, 818, 819, 7, 80, 2, 2, 819, 820, 7, 81, 2, 2, 820, 821, 7, 86, 2, 2, 821, 52, 3, 2, 2, 2, 822, 823, 7, 80, 2, 2, 823, 824, 7, 81, 2, 2, 824, 54, 3, 2, 2, 2, 825, 826, 7, 71, 2, 2, 826, 827, 7, 90, 2, 2, 827, 828, 7, 75, 2, 2, 828, 829, 7, 85, 2, 2, 829, 830, 7, 86, 2, 2, 830, 831, 7, 85, 2, 2, 831, 56, 3, 2, 2, 2, 832, 833, 7, 68, 2, 2, 833, 834, 7, 71, 2, 2, 834, 835, 7, 86, 2, 2, 835, 836, 7, 89, 2, 2, 836, 837, 7, 71, 2, 2, 837, 838, 7, 71, 2, 2, 838, 839, 7, 80, 2, 2, 839, 58, 3, 2, 2, 2, 840, 841, 7, 78, 2, 2, 841, 842, 7, 75, 2, 2, 842, 843, 7, 77, 2, 2, 843, 844, 7, 71, 2, 2, 844, 60, 3, 2, 2, 2, 845, 846, 7, 84, 2, 2, 846, 847, 7, 78, 2, 2, 847, 848, 7, 75, 2, 2, 848, 849, 7, 77, 2, 2, 849, 850, 7, 71, 2, 2, 850, 62, 3, 2, 2, 2, 851, 852, 7, 75, 2, 2, 852, 853, 7, 85, 2, 2, 853, 64, 3, 2, 2, 2, 854, 855, 7, 86, 2, 2, 855, 856, 7, 84, 2, 2, 856, 857, 7, 87, 2, 2, 857, 858, 7, 71, 2, 2, 858, 66, 3, 2, 2, 2, 859, 860, 7, 72, 2, 2, 860, 861, 7, 67, 2, 2, 861, 862, 7, 78, 2, 2, 862, 863, 7, 85, 2, 2, 863, 864, 7, 71, 2, 2, 864, 68, 3, 2, 2, 2, 865, 866, 7, 80, 2, 2, 866, 867, 7, 87, 2, 2, 867, 868, 7, 78, 2, 2, 868, 869, 7, 78, 2, 2, 869, 870, 7, 85, 2, 2, 870, 70, 3, 2, 2, 2, 871, 872, 7, 67, 2, 2, 872, 873, 7, 85, 2, 2, 873, 874, 7, 69, 2, 2, 874, 72, 3, 2, 2, 2, 875, 876, 7, 70, 2, 2, 876, 877, 7, 71, 2, 2, 877, 878, 7, 85, 2, 2, 878, 879, 7, 69, 2, 2, 879, 74, 3, 2, 2, 2, 880, 881, 7, 72, 2, 2, 881, 882, 7, 81, 2, 2, 882, 883, 7, 84, 2, 2, 883, 76, 3, 2, 2, 2, 884, 885, 7, 75, 2, 2, 885, 886, 7, 80, 2, 2, 886, 887, 7, 86, 2, 2, 887, 888, 7, 71, 2, 2, 888, 889, 7, 84, 2, 2, 889, 890, 7, 88, 2, 2, 890, 891, 7, 67, 2, 2, 891, 892, 7, 78, 2, 2, 892, 78, 3, 2, 2, 2, 893, 894, 7, 69, 2, 2, 894, 895, 7, 67, 2, 2, 895, 896, 7, 85, 2, 2, 896, 897, 7, 71, 2, 2, 897, 80, 3, 2, 2, 2, 898, 899, 7, 89, 2, 2, 899, 900, 7, 74, 2, 2, 900, 901, 7, 71, 2, 2, 901, 902, 7, 80, 2, 2, 902, 82, 3, 2, 2, 2, 903, 904, 7, 86, 2, 2, 904, 905, 7, 74, 2, 2, 905, 906, 7, 71, 2, 2, 906, 907, 7, 80, 2, 2, 907, 84, 3, 2, 2, 2, 908, 909, 7, 71, 2, 2, 909, 910, 7, 78, 2, 2, 910, 911, 7, 85, 2, 2, 911, 912, 7, 71, 2, 2, 912, 86, 3, 2, 2, 2, 913, 914, 7, 71, 2, 2, 914, 915, 7, 80, 2, 2, 915, 916, 7, 70, 2, 2, 916, 88, 3, 2, 2, 2, 917, 918, 7, 76, 2, 2, 918, 919, 7, 81, 2, 2, 919, 920, 7, 75, 2, 2, 920, 921, 7, 80, 2, 2, 921, 90, 3, 2, 2, 2, 922, 923, 7, 69, 2, 2, 923, 924, 7, 84, 2, 2, 924, 925, 7, 81, 2, 2, 925, 926, 7, 85, 2, 2, 926, 927, 7, 85, 2, 2, 927, 92, 3, 2, 2, 2, 928, 929, 7, 81, 2, 2, 929, 930, 7, 87, 2, 2, 930, 931, 7, 86, 2, 2, 931, 932, 7, 71, 2, 2, 932, 933, 7, 84, 2, 2, 933, 94, 3, 2, 2, 2, 934, 935, 7, 75, 2, 2, 935, 936, 7, 80, 2, 2, 936, 937, 7, 80, 2, 2, 937, 938, 7, 71, 2, 2, 938, 939, 7, 84, 2, 2, 939, 96, 3, 2, 2, 2, 940, 941, 7, 78, 2, 2, 941, 942, 7, 71, 2, 2, 942, 943, 7, 72, 2, 2, 943, 944, 7, 86, 2, 2, 944, 98, 3, 2, 2, 2, 945, 946, 7, 85, 2, 2, 946, 947, 7, 71, 2, 2, 947, 948, 7, 79, 2, 2, 948, 949, 7, 75, 2, 2, 949, 100, 3, 2, 2, 2, 950, 951, 7, 84, 2, 2, 951, 952, 7, 75, 2, 2, 952, 953, 7, 73, 2, 2, 953, 954, 7, 74, 2, 2, 954, 955, 7, 86, 2, 2, 955, 102, 3, 2, 2, 2, 956, 957, 7, 72, 2, 2, 957, 958, 7, 87, 2, 2, 958, 959, 7, 78, 2, 2, 959, 960, 7, 78, 2, 2, 960, 104, 3, 2, 2, 2, 961, 962, 7, 80, 2, 2, 962, 963, 7, 67, 2, 2, 963, 964, 7, 86, 2, 2, 964, 965, 7, 87, 2, 2, 965, 966, 7, 84, 2, 2, 966, 967, 7, 67, 2, 2, 967, 968, 7, 78, 2, 2, 968, 106, 3, 2, 2, 2, 969, 970, 7, 81, 2, 2, 970, 971, 7, 80, 2, 2, 971, 108, 3, 2, 2, 2, 972, 973, 7, 82, 2, 2, 973, 974, 7, 75, 2, 2, 974, 975, 7, 88, 2, 2, 975, 976, 7, 81, 2, 2, 976, 977, 7, 86, 2, 2, 977, 110, 3, 2, 2, 2, 978, 979, 7, 78, 2, 2, 979, 980, 7, 67, 2, 2, 980, 981, 7, 86, 2, 2, 981, 982, 7, 71, 2, 2, 982, 983, 7, 84, 2, 2, 983, 984, 7, 67, 2, 2, 984, 985, 7, 78, 2, 2, 985, 112, 3, 2, 2, 2, 986, 987, 7, 89, 2, 2, 987, 988, 7, 75, 2, 2, 988, 989, 7, 80, 2, 2, 989, 990, 7, 70, 2, 2, 990, 991, 7, 81, 2, 2, 991, 992, 7, 89, 2, 2, 992, 114, 3, 2, 2, 2, 993, 994, 7, 81, 2, 2, 994, 995, 7, 88, 2, 2, 995, 996, 7, 71, 2, 2, 996, 997, 7, 84, 2, 2, 997, 116, 3, 2, 2, 2, 998, 999, 7, 82, 2, 2, 999, 1000, 7, 67, 2, 2, 1000, 1001, 7, 84, 2, 2, 1001, 1002, 7, 86, 2, 2, 1002, 1003, 7, 75, 2, 2, 1003, 1004, 7, 86, 2, 2, 1004, 1005, 7, 75, 2, 2, 1005, 1006, 7, 81, 2, 2, 1006, 1007, 7, 80, 2, 2, 1007, 118, 3, 2, 2, 2, 1008, 1009, 7, 84, 2, 2, 1009, 1010, 7, 67, 2, 2, 1010, 1011, 7, 80, 2, 2, 1011, 1012, 7, 73, 2, 2, 1012, 1013, 7, 71, 2, 2, 1013, 120, 3, 2, 2, 2, 1014, 1015, 7, 84, 2, 2, 1015, 1016, 7, 81, 2, 2, 1016, 1017, 7, 89, 2, 2, 1017, 1018, 7, 85, 2, 2, 1018, 122, 3, 2, 2, 2, 1019, 1020, 7, 87, 2, 2, 1020, 1021, 7, 80, 2, 2, 1021, 1022, 7, 68, 2, 2, 1022, 1023, 7, 81, 2, 2, 1023, 1024, 7, 87, 2, 2, 1024, 1025, 7, 80, 2, 2, 1025, 1026, 7, 70, 2, 2, 1026, 1027, 7, 71, 2, 2, 1027, 1028, 7, 70, 2, 2, 1028, 124, 3, 2, 2, 2, 1029, 1030, 7, 82, 2, 2, 1030, 1031, 7, 84, 2, 2, 1031, 1032, 7, 71, 2, 2, 1032, 1033, 7, 69, 2, 2, 1033, 1034, 7, 71, 2, 2, 1034, 1035, 7, 70, 2, 2, 1035, 1036, 7, 75, 2, 2, 1036, 1037, 7, 80, 2, 2, 1037, 1038, 7, 73, 2, 2, 1038, 126, 3, 2, 2, 2, 1039, 1040, 7, 72, 2, 2, 1040, 1041, 7, 81, 2, 2, 1041, 1042, 7, 78, 2, 2, 1042, 1043, 7, 78, 2, 2, 1043, 1044, 7, 81, 2, 2, 1044, 1045, 7, 89, 2, 2, 1045, 1046, 7, 75, 2, 2, 1046, 1047, 7, 80, 2, 2, 1047, 1048, 7, 73, 2, 2, 1048, 128, 3, 2, 2, 2, 1049, 1050, 7, 69, 2, 2, 1050, 1051, 7, 87, 2, 2, 1051, 1052, 7, 84, 2, 2, 1052, 1053, 7, 84, 2, 2, 1053, 1054, 7, 71, 2, 2, 1054, 1055, 7, 80, 2, 2, 1055, 1056, 7, 86, 2, 2, 1056, 130, 3, 2, 2, 2, 1057, 1058, 7, 72, 2, 2, 1058, 1059, 7, 75, 2, 2, 1059, 1060, 7, 84, 2, 2, 1060, 1061, 7, 85, 2, 2, 1061, 1062, 7, 86, 2, 2, 1062, 132, 3, 2, 2, 2, 1063, 1064, 7, 67, 2, 2, 1064, 1065, 7, 72, 2, 2, 1065, 1066, 7, 86, 2, 2, 1066, 1067, 7, 71, 2, 2, 1067, 1068, 7, 84, 2, 2, 1068, 134, 3, 2, 2, 2, 1069, 1070, 7, 78, 2, 2, 1070, 1071, 7, 67, 2, 2, 1071, 1072, 7, 85, 2, 2, 1072, 1073, 7, 86, 2, 2, 1073, 136, 3, 2, 2, 2, 1074, 1075, 7, 89, 2, 2, 1075, 1076, 7, 75, 2, 2, 1076, 1077, 7, 86, 2, 2, 1077, 1078, 7, 74, 2, 2, 1078, 138, 3, 2, 2, 2, 1079, 1080, 7, 88, 2, 2, 1080, 1081, 7, 67, 2, 2, 1081, 1082, 7, 78, 2, 2, 1082, 1083, 7, 87, 2, 2, 1083, 1084, 7, 71, 2, 2, 1084, 1085, 7, 85, 2, 2, 1085, 140, 3, 2, 2, 2, 1086, 1087, 7, 69, 2, 2, 1087, 1088, 7, 84, 2, 2, 1088, 1089, 7, 71, 2, 2, 1089, 1090, 7, 67, 2, 2, 1090, 1091, 7, 86, 2, 2, 1091, 1092, 7, 71, 2, 2, 1092, 142, 3, 2, 2, 2, 1093, 1094, 7, 86, 2, 2, 1094, 1095, 7, 67, 2, 2, 1095, 1096, 7, 68, 2, 2, 1096, 1097, 7, 78, 2, 2, 1097, 1098, 7, 71, 2, 2, 1098, 144, 3, 2, 2, 2, 1099, 1100, 7, 70, 2, 2, 1100, 1101, 7, 75, 2, 2, 1101, 1102, 7, 84, 2, 2, 1102, 1103, 7, 71, 2, 2, 1103, 1104, 7, 69, 2, 2, 1104, 1105, 7, 86, 2, 2, 1105, 1106, 7, 81, 2, 2, 1106, 1107, 7, 84, 2, 2, 1107, 1108, 7, 91, 2, 2, 1108, 146, 3, 2, 2, 2, 1109, 1110, 7, 88, 2, 2, 1110, 1111, 7, 75, 2, 2, 1111, 1112, 7, 71, 2, 2, 1112, 1113, 7, 89, 2, 2, 1113, 148, 3, 2, 2, 2, 1114, 1115, 7, 84, 2, 2, 1115, 1116, 7, 71, 2, 2, 1116, 1117, 7, 82, 2, 2, 1117, 1118, 7, 78, 2, 2, 1118, 1119, 7, 67, 2, 2, 1119, 1120, 7, 69, 2, 2, 1120, 1121, 7, 71, 2, 2, 1121, 150, 3, 2, 2, 2, 1122, 1123, 7, 75, 2, 2, 1123, 1124, 7, 80, 2, 2, 1124, 1125, 7, 85, 2, 2, 1125, 1126, 7, 71, 2, 2, 1126, 1127, 7, 84, 2, 2, 1127, 1128, 7, 86, 2, 2, 1128, 152, 3, 2, 2, 2, 1129, 1130, 7, 70, 2, 2, 1130, 1131, 7, 71, 2, 2, 1131, 1132, 7, 78, 2, 2, 1132, 1133, 7, 71, 2, 2, 1133, 1134, 7, 86, 2, 2, 1134, 1135, 7, 71, 2, 2, 1135, 154, 3, 2, 2, 2, 1136, 1137, 7, 75, 2, 2, 1137, 1138, 7, 80, 2, 2, 1138, 1139, 7, 86, 2, 2, 1139, 1140, 7, 81, 2, 2, 1140, 156, 3, 2, 2, 2, 1141, 1142, 7, 70, 2, 2, 1142, 1143, 7, 71, 2, 2, 1143, 1144, 7, 85, 2, 2, 1144, 1145, 7, 69, 2, 2, 1145, 1146, 7, 84, 2, 2, 1146, 1147, 7, 75, 2, 2, 1147, 1148, 7, 68, 2, 2, 1148, 1149, 7, 71, 2, 2, 1149, 158, 3, 2, 2, 2, 1150, 1151, 7, 71, 2, 2, 1151, 1152, 7, 90, 2, 2, 1152, 1153, 7, 82, 2, 2, 1153, 1154, 7, 78, 2, 2, 1154, 1155, 7, 67, 2, 2, 1155, 1156, 7, 75, 2, 2, 1156, 1157, 7, 80, 2, 2, 1157, 160, 3, 2, 2, 2, 1158, 1159, 7, 72, 2, 2, 1159, 1160, 7, 81, 2, 2, 1160, 1161, 7, 84, 2, 2, 1161, 1162, 7, 79, 2, 2, 1162, 1163, 7, 67, 2, 2, 1163, 1164, 7, 86, 2, 2, 1164, 162, 3, 2, 2, 2, 1165, 1166, 7, 78, 2, 2, 1166, 1167, 7, 81, 2, 2, 1167, 1168, 7, 73, 2, 2, 1168, 1169, 7, 75, 2, 2, 1169, 1170, 7, 69, 2, 2, 1170, 1171, 7, 67, 2, 2, 1171, 1172, 7, 78, 2, 2, 1172, 164, 3, 2, 2, 2, 1173, 1174, 7, 69, 2, 2, 1174, 1175, 7, 81, 2, 2, 1175, 1176, 7, 70, 2, 2, 1176, 1177, 7, 71, 2, 2, 1177, 1178, 7, 73, 2, 2, 1178, 1179, 7, 71, 2, 2, 1179, 1180, 7, 80, 2, 2, 1180, 166, 3, 2, 2, 2, 1181, 1182, 7, 69, 2, 2, 1182, 1183, 7, 81, 2, 2, 1183, 1184, 7, 85, 2, 2, 1184, 1185, 7, 86, 2, 2, 1185, 168, 3, 2, 2, 2, 1186, 1187, 7, 69, 2, 2, 1187, 1188, 7, 67, 2, 2, 1188, 1189, 7, 85, 2, 2, 1189, 1190, 7, 86, 2, 2, 1190, 170, 3, 2, 2, 2, 1191, 1192, 7, 85, 2, 2, 1192, 1193, 7, 74, 2, 2, 1193, 1194, 7, 81, 2, 2, 1194, 1195, 7, 89, 2, 2, 1195, 172, 3, 2, 2, 2, 1196, 1197, 7, 86, 2, 2, 1197, 1198, 7, 67, 2, 2, 1198, 1199, 7, 68, 2, 2, 1199, 1200, 7, 78, 2, 2, 1200, 1201, 7, 71, 2, 2, 1201, 1202, 7, 85, 2, 2, 1202, 174, 3, 2, 2, 2, 1203, 1204, 7, 69, 2, 2, 1204, 1205, 7, 81, 2, 2, 1205, 1206, 7, 78, 2, 2, 1206, 1207, 7, 87, 2, 2, 1207, 1208, 7, 79, 2, 2, 1208, 1209, 7, 80, 2, 2, 1209, 1210, 7, 85, 2, 2, 1210, 176, 3, 2, 2, 2, 1211, 1212, 7, 69, 2, 2, 1212, 1213, 7, 81, 2, 2, 1213, 1214, 7, 78, 2, 2, 1214, 1215, 7, 87, 2, 2, 1215, 1216, 7, 79, 2, 2, 1216, 1217, 7, 80, 2, 2, 1217, 178, 3, 2, 2, 2, 1218, 1219, 7, 87, 2, 2, 1219, 1220, 7, 85, 2, 2, 1220, 1221, 7, 71, 2, 2, 1221, 180, 3, 2, 2, 2, 1222, 1223, 7, 82, 2, 2, 1223, 1224, 7, 67, 2, 2, 1224, 1225, 7, 84, 2, 2, 1225, 1226, 7, 86, 2, 2, 1226, 1227, 7, 75, 2, 2, 1227, 1228, 7, 86, 2, 2, 1228, 1229, 7, 75, 2, 2, 1229, 1230, 7, 81, 2, 2, 1230, 1231, 7, 80, 2, 2, 1231, 1232, 7, 85, 2, 2, 1232, 182, 3, 2, 2, 2, 1233, 1234, 7, 72, 2, 2, 1234, 1235, 7, 87, 2, 2, 1235, 1236, 7, 80, 2, 2, 1236, 1237, 7, 69, 2, 2, 1237, 1238, 7, 86, 2, 2, 1238, 1239, 7, 75, 2, 2, 1239, 1240, 7, 81, 2, 2, 1240, 1241, 7, 80, 2, 2, 1241, 1242, 7, 85, 2, 2, 1242, 184, 3, 2, 2, 2, 1243, 1244, 7, 70, 2, 2, 1244, 1245, 7, 84, 2, 2, 1245, 1246, 7, 81, 2, 2, 1246, 1247, 7, 82, 2, 2, 1247, 186, 3, 2, 2, 2, 1248, 1249, 7, 87, 2, 2, 1249, 1250, 7, 80, 2, 2, 1250, 1251, 7, 75, 2, 2, 1251, 1252, 7, 81, 2, 2, 1252, 1253, 7, 80, 2, 2, 1253, 188, 3, 2, 2, 2, 1254, 1255, 7, 71, 2, 2, 1255, 1256, 7, 90, 2, 2, 1256, 1257, 7, 69, 2, 2, 1257, 1258, 7, 71, 2, 2, 1258, 1259, 7, 82, 2, 2, 1259, 1260, 7, 86, 2, 2, 1260, 190, 3, 2, 2, 2, 1261, 1262, 7, 85, 2, 2, 1262, 1263, 7, 71, 2, 2, 1263, 1264, 7, 86, 2, 2, 1264, 1265, 7, 79, 2, 2, 1265, 1266, 7, 75, 2, 2, 1266, 1267, 7, 80, 2, 2, 1267, 1268, 7, 87, 2, 2, 1268, 1269, 7, 85, 2, 2, 1269, 192, 3, 2, 2, 2, 1270, 1271, 7, 75, 2, 2, 1271, 1272, 7, 80, 2, 2, 1272, 1273, 7, 86, 2, 2, 1273, 1274, 7, 71, 2, 2, 1274, 1275, 7, 84, 2, 2, 1275, 1276, 7, 85, 2, 2, 1276, 1277, 7, 71, 2, 2, 1277, 1278, 7, 69, 2, 2, 1278, 1279, 7, 86, 2, 2, 1279, 194, 3, 2, 2, 2, 1280, 1281, 7, 86, 2, 2, 1281, 1282, 7, 81, 2, 2, 1282, 196, 3, 2, 2, 2, 1283, 1284, 7, 86, 2, 2, 1284, 1285, 7, 67, 2, 2, 1285, 1286, 7, 68, 2, 2, 1286, 1287, 7, 78, 2, 2, 1287, 1288, 7, 71, 2, 2, 1288, 1289, 7, 85, 2, 2, 1289, 1290, 7, 67, 2, 2, 1290, 1291, 7, 79, 2, 2, 1291, 1292, 7, 82, 2, 2, 1292, 1293, 7, 78, 2, 2, 1293, 1294, 7, 71, 2, 2, 1294, 198, 3, 2, 2, 2, 1295, 1296, 7, 85, 2, 2, 1296, 1297, 7, 86, 2, 2, 1297, 1298, 7, 84, 2, 2, 1298, 1299, 7, 67, 2, 2, 1299, 1300, 7, 86, 2, 2, 1300, 1301, 7, 75, 2, 2, 1301, 1302, 7, 72, 2, 2, 1302, 1303, 7, 91, 2, 2, 1303, 200, 3, 2, 2, 2, 1304, 1305, 7, 67, 2, 2, 1305, 1306, 7, 78, 2, 2, 1306, 1307, 7, 86, 2, 2, 1307, 1308, 7, 71, 2, 2, 1308, 1309, 7, 84, 2, 2, 1309, 202, 3, 2, 2, 2, 1310, 1311, 7, 84, 2, 2, 1311, 1312, 7, 71, 2, 2, 1312, 1313, 7, 80, 2, 2, 1313, 1314, 7, 67, 2, 2, 1314, 1315, 7, 79, 2, 2, 1315, 1316, 7, 71, 2, 2, 1316, 204, 3, 2, 2, 2, 1317, 1318, 7, 85, 2, 2, 1318, 1319, 7, 86, 2, 2, 1319, 1320, 7, 84, 2, 2, 1320, 1321, 7, 87, 2, 2, 1321, 1322, 7, 69, 2, 2, 1322, 1323, 7, 86, 2, 2, 1323, 206, 3, 2, 2, 2, 1324, 1325, 7, 69, 2, 2, 1325, 1326, 7, 81, 2, 2, 1326, 1327, 7, 79, 2, 2, 1327, 1328, 7, 79, 2, 2, 1328, 1329, 7, 71, 2, 2, 1329, 1330, 7, 80, 2, 2, 1330, 1331, 7, 86, 2, 2, 1331, 208, 3, 2, 2, 2, 1332, 1333, 7, 85, 2, 2, 1333, 1334, 7, 71, 2, 2, 1334, 1335, 7, 86, 2, 2, 1335, 210, 3, 2, 2, 2, 1336, 1337, 7, 84, 2, 2, 1337, 1338, 7, 71, 2, 2, 1338, 1339, 7, 85, 2, 2, 1339, 1340, 7, 71, 2, 2, 1340, 1341, 7, 86, 2, 2, 1341, 212, 3, 2, 2, 2, 1342, 1343, 7, 70, 2, 2, 1343, 1344, 7, 67, 2, 2, 1344, 1345, 7, 86, 2, 2, 1345, 1346, 7, 67, 2, 2, 1346, 214, 3, 2, 2, 2, 1347, 1348, 7, 85, 2, 2, 1348, 1349, 7, 86, 2, 2, 1349, 1350, 7, 67, 2, 2, 1350, 1351, 7, 84, 2, 2, 1351, 1352, 7, 86, 2, 2, 1352, 216, 3, 2, 2, 2, 1353, 1354, 7, 86, 2, 2, 1354, 1355, 7, 84, 2, 2, 1355, 1356, 7, 67, 2, 2, 1356, 1357, 7, 80, 2, 2, 1357, 1358, 7, 85, 2, 2, 1358, 1359, 7, 67, 2, 2, 1359, 1360, 7, 69, 2, 2, 1360, 1361, 7, 86, 2, 2, 1361, 1362, 7, 75, 2, 2, 1362, 1363, 7, 81, 2, 2, 1363, 1364, 7, 80, 2, 2, 1364, 218, 3, 2, 2, 2, 1365, 1366, 7, 69, 2, 2, 1366, 1367, 7, 81, 2, 2, 1367, 1368, 7, 79, 2, 2, 1368, 1369, 7, 79, 2, 2, 1369, 1370, 7, 75, 2, 2, 1370, 1371, 7, 86, 2, 2, 1371, 220, 3, 2, 2, 2, 1372, 1373, 7, 84, 2, 2, 1373, 1374, 7, 81, 2, 2, 1374, 1375, 7, 78, 2, 2, 1375, 1376, 7, 78, 2, 2, 1376, 1377, 7, 68, 2, 2, 1377, 1378, 7, 67, 2, 2, 1378, 1379, 7, 69, 2, 2, 1379, 1380, 7, 77, 2, 2, 1380, 222, 3, 2, 2, 2, 1381, 1382, 7, 79, 2, 2, 1382, 1383, 7, 67, 2, 2, 1383, 1384, 7, 69, 2, 2, 1384, 1385, 7, 84, 2, 2, 1385, 1386, 7, 81, 2, 2, 1386, 224, 3, 2, 2, 2, 1387, 1388, 7, 75, 2, 2, 1388, 1389, 7, 73, 2, 2, 1389, 1390, 7, 80, 2, 2, 1390, 1391, 7, 81, 2, 2, 1391, 1392, 7, 84, 2, 2, 1392, 1393, 7, 71, 2, 2, 1393, 226, 3, 2, 2, 2, 1394, 1395, 7, 68, 2, 2, 1395, 1396, 7, 81, 2, 2, 1396, 1397, 7, 86, 2, 2, 1397, 1398, 7, 74, 2, 2, 1398, 228, 3, 2, 2, 2, 1399, 1400, 7, 78, 2, 2, 1400, 1401, 7, 71, 2, 2, 1401, 1402, 7, 67, 2, 2, 1402, 1403, 7, 70, 2, 2, 1403, 1404, 7, 75, 2, 2, 1404, 1405, 7, 80, 2, 2, 1405, 1406, 7, 73, 2, 2, 1406, 230, 3, 2, 2, 2, 1407, 1408, 7, 86, 2, 2, 1408, 1409, 7, 84, 2, 2, 1409, 1410, 7, 67, 2, 2, 1410, 1411, 7, 75, 2, 2, 1411, 1412, 7, 78, 2, 2, 1412, 1413, 7, 75, 2, 2, 1413, 1414, 7, 80, 2, 2, 1414, 1415, 7, 73, 2, 2, 1415, 232, 3, 2, 2, 2, 1416, 1417, 7, 75, 2, 2, 1417, 1418, 7, 72, 2, 2, 1418, 234, 3, 2, 2, 2, 1419, 1420, 7, 82, 2, 2, 1420, 1421, 7, 81, 2, 2, 1421, 1422, 7, 85, 2, 2, 1422, 1423, 7, 75, 2, 2, 1423, 1424, 7, 86, 2, 2, 1424, 1425, 7, 75, 2, 2, 1425, 1426, 7, 81, 2, 2, 1426, 1427, 7, 80, 2, 2, 1427, 236, 3, 2, 2, 2, 1428, 1429, 7, 71, 2, 2, 1429, 1430, 7, 90, 2, 2, 1430, 1431, 7, 86, 2, 2, 1431, 1432, 7, 84, 2, 2, 1432, 1433, 7, 67, 2, 2, 1433, 1434, 7, 69, 2, 2, 1434, 1435, 7, 86, 2, 2, 1435, 238, 3, 2, 2, 2, 1436, 1437, 7, 71, 2, 2, 1437, 1438, 7, 83, 2, 2, 1438, 240, 3, 2, 2, 2, 1439, 1440, 7, 80, 2, 2, 1440, 1441, 7, 85, 2, 2, 1441, 1442, 7, 71, 2, 2, 1442, 1443, 7, 83, 2, 2, 1443, 242, 3, 2, 2, 2, 1444, 1445, 7, 80, 2, 2, 1445, 1446, 7, 71, 2, 2, 1446, 1447, 7, 83, 2, 2, 1447, 244, 3, 2, 2, 2, 1448, 1449, 7, 80, 2, 2, 1449, 1450, 7, 71, 2, 2, 1450, 1451, 7, 83, 2, 2, 1451, 1452, 7, 76, 2, 2, 1452, 246, 3, 2, 2, 2, 1453, 1454, 7, 78, 2, 2, 1454, 1455, 7, 86, 2, 2, 1455, 248, 3, 2, 2, 2, 1456, 1457, 7, 78, 2, 2, 1457, 1458, 7, 86, 2, 2, 1458, 1459, 7, 71, 2, 2, 1459, 250, 3, 2, 2, 2, 1460, 1461, 7, 73, 2, 2, 1461, 1462, 7, 86, 2, 2, 1462, 252, 3, 2, 2, 2, 1463, 1464, 7, 73, 2, 2, 1464, 1465, 7, 86, 2, 2, 1465, 1466, 7, 71, 2, 2, 1466, 254, 3, 2, 2, 2, 1467, 1468, 7, 82, 2, 2, 1468, 1469, 7, 78, 2, 2, 1469, 1470, 7, 87, 2, 2, 1470, 1471, 7, 85, 2, 2, 1471, 256, 3, 2, 2, 2, 1472, 1473, 7, 79, 2, 2, 1473, 1474, 7, 75, 2, 2, 1474, 1475, 7, 80, 2, 2, 1475, 1476, 7, 87, 2, 2, 1476, 1477, 7, 85, 2, 2, 1477, 258, 3, 2, 2, 2, 1478, 1479, 7, 67, 2, 2, 1479, 1480, 7, 85, 2, 2, 1480, 1481, 7, 86, 2, 2, 1481, 1482, 7, 71, 2, 2, 1482, 1483, 7, 84, 2, 2, 1483, 1484, 7, 75, 2, 2, 1484, 1485, 7, 85, 2, 2, 1485, 1486, 7, 77, 2, 2, 1486, 260, 3, 2, 2, 2, 1487, 1488, 7, 85, 2, 2, 1488, 1489, 7, 78, 2, 2, 1489, 1490, 7, 67, 2, 2, 1490, 1491, 7, 85, 2, 2, 1491, 1492, 7, 74, 2, 2, 1492, 262, 3, 2, 2, 2, 1493, 1494, 7, 82, 2, 2, 1494, 1495, 7, 71, 2, 2, 1495, 1496, 7, 84, 2, 2, 1496, 1497, 7, 69, 2, 2, 1497, 1498, 7, 71, 2, 2, 1498, 1499, 7, 80, 2, 2, 1499, 1500, 7, 86, 2, 2, 1500, 264, 3, 2, 2, 2, 1501, 1502, 7, 70, 2, 2, 1502, 1503, 7, 75, 2, 2, 1503, 1504, 7, 88, 2, 2, 1504, 266, 3, 2, 2, 2, 1505, 1506, 7, 86, 2, 2, 1506, 1507, 7, 75, 2, 2, 1507, 1508, 7, 78, 2, 2, 1508, 1509, 7, 70, 2, 2, 1509, 1510, 7, 71, 2, 2, 1510, 268, 3, 2, 2, 2, 1511, 1512, 7, 67, 2, 2, 1512, 1513, 7, 79, 2, 2, 1513, 1514, 7, 82, 2, 2, 1514, 1515, 7, 71, 2, 2, 1515, 1516, 7, 84, 2, 2, 1516, 1517, 7, 85, 2, 2, 1517, 1518, 7, 67, 2, 2, 1518, 1519, 7, 80, 2, 2, 1519, 1520, 7, 70, 2, 2, 1520, 270, 3, 2, 2, 2, 1521, 1522, 7, 82, 2, 2, 1522, 1523, 7, 75, 2, 2, 1523, 1524, 7, 82, 2, 2, 1524, 1525, 7, 71, 2, 2, 1525, 272, 3, 2, 2, 2, 1526, 1527, 7, 69, 2, 2, 1527, 1528, 7, 81, 2, 2, 1528, 1529, 7, 80, 2, 2, 1529, 1530, 7, 69, 2, 2, 1530, 1531, 7, 67, 2, 2, 1531, 1532, 7, 86, 2, 2, 1532, 1533, 7, 97, 2, 2, 1533, 1534, 7, 82, 2, 2, 1534, 1535, 7, 75, 2, 2, 1535, 1536, 7, 82, 2, 2, 1536, 1537, 7, 71, 2, 2, 1537, 274, 3, 2, 2, 2, 1538, 1539, 7, 74, 2, 2, 1539, 1540, 7, 67, 2, 2, 1540, 1541, 7, 86, 2, 2, 1541, 276, 3, 2, 2, 2, 1542, 1543, 7, 82, 2, 2, 1543, 1544, 7, 71, 2, 2, 1544, 1545, 7, 84, 2, 2, 1545, 1546, 7, 69, 2, 2, 1546, 1547, 7, 71, 2, 2, 1547, 1548, 7, 80, 2, 2, 1548, 1549, 7, 86, 2, 2, 1549, 1550, 7, 78, 2, 2, 1550, 1551, 7, 75, 2, 2, 1551, 1552, 7, 86, 2, 2, 1552, 278, 3, 2, 2, 2, 1553, 1554, 7, 68, 2, 2, 1554, 1555, 7, 87, 2, 2, 1555, 1556, 7, 69, 2, 2, 1556, 1557, 7, 77, 2, 2, 1557, 1558, 7, 71, 2, 2, 1558, 1559, 7, 86, 2, 2, 1559, 280, 3, 2, 2, 2, 1560, 1561, 7, 81, 2, 2, 1561, 1562, 7, 87, 2, 2, 1562, 1563, 7, 86, 2, 2, 1563, 282, 3, 2, 2, 2, 1564, 1565, 7, 81, 2, 2, 1565, 1566, 7, 72, 2, 2, 1566, 284, 3, 2, 2, 2, 1567, 1568, 7, 85, 2, 2, 1568, 1569, 7, 81, 2, 2, 1569, 1570, 7, 84, 2, 2, 1570, 1571, 7, 86, 2, 2, 1571, 286, 3, 2, 2, 2, 1572, 1573, 7, 69, 2, 2, 1573, 1574, 7, 78, 2, 2, 1574, 1575, 7, 87, 2, 2, 1575, 1576, 7, 85, 2, 2, 1576, 1577, 7, 86, 2, 2, 1577, 1578, 7, 71, 2, 2, 1578, 1579, 7, 84, 2, 2, 1579, 288, 3, 2, 2, 2, 1580, 1581, 7, 70, 2, 2, 1581, 1582, 7, 75, 2, 2, 1582, 1583, 7, 85, 2, 2, 1583, 1584, 7, 86, 2, 2, 1584, 1585, 7, 84, 2, 2, 1585, 1586, 7, 75, 2, 2, 1586, 1587, 7, 68, 2, 2, 1587, 1588, 7, 87, 2, 2, 1588, 1589, 7, 86, 2, 2, 1589, 1590, 7, 71, 2, 2, 1590, 290, 3, 2, 2, 2, 1591, 1592, 7, 81, 2, 2, 1592, 1593, 7, 88, 2, 2, 1593, 1594, 7, 71, 2, 2, 1594, 1595, 7, 84, 2, 2, 1595, 1596, 7, 89, 2, 2, 1596, 1597, 7, 84, 2, 2, 1597, 1598, 7, 75, 2, 2, 1598, 1599, 7, 86, 2, 2, 1599, 1600, 7, 71, 2, 2, 1600, 292, 3, 2, 2, 2, 1601, 1602, 7, 86, 2, 2, 1602, 1603, 7, 84, 2, 2, 1603, 1604, 7, 67, 2, 2, 1604, 1605, 7, 80, 2, 2, 1605, 1606, 7, 85, 2, 2, 1606, 1607, 7, 72, 2, 2, 1607, 1608, 7, 81, 2, 2, 1608, 1609, 7, 84, 2, 2, 1609, 1610, 7, 79, 2, 2, 1610, 294, 3, 2, 2, 2, 1611, 1612, 7, 84, 2, 2, 1612, 1613, 7, 71, 2, 2, 1613, 1614, 7, 70, 2, 2, 1614, 1615, 7, 87, 2, 2, 1615, 1616, 7, 69, 2, 2, 1616, 1617, 7, 71, 2, 2, 1617, 296, 3, 2, 2, 2, 1618, 1619, 7, 87, 2, 2, 1619, 1620, 7, 85, 2, 2, 1620, 1621, 7, 75, 2, 2, 1621, 1622, 7, 80, 2, 2, 1622, 1623, 7, 73, 2, 2, 1623, 298, 3, 2, 2, 2, 1624, 1625, 7, 85, 2, 2, 1625, 1626, 7, 71, 2, 2, 1626, 1627, 7, 84, 2, 2, 1627, 1628, 7, 70, 2, 2, 1628, 1629, 7, 71, 2, 2, 1629, 300, 3, 2, 2, 2, 1630, 1631, 7, 85, 2, 2, 1631, 1632, 7, 71, 2, 2, 1632, 1633, 7, 84, 2, 2, 1633, 1634, 7, 70, 2, 2, 1634, 1635, 7, 71, 2, 2, 1635, 1636, 7, 82, 2, 2, 1636, 1637, 7, 84, 2, 2, 1637, 1638, 7, 81, 2, 2, 1638, 1639, 7, 82, 2, 2, 1639, 1640, 7, 71, 2, 2, 1640, 1641, 7, 84, 2, 2, 1641, 1642, 7, 86, 2, 2, 1642, 1643, 7, 75, 2, 2, 1643, 1644, 7, 71, 2, 2, 1644, 1645, 7, 85, 2, 2, 1645, 302, 3, 2, 2, 2, 1646, 1647, 7, 84, 2, 2, 1647, 1648, 7, 71, 2, 2, 1648, 1649, 7, 69, 2, 2, 1649, 1650, 7, 81, 2, 2, 1650, 1651, 7, 84, 2, 2, 1651, 1652, 7, 70, 2, 2, 1652, 1653, 7, 84, 2, 2, 1653, 1654, 7, 71, 2, 2, 1654, 1655, 7, 67, 2, 2, 1655, 1656, 7, 70, 2, 2, 1656, 1657, 7, 71, 2, 2, 1657, 1658, 7, 84, 2, 2, 1658, 304, 3, 2, 2, 2, 1659, 1660, 7, 84, 2, 2, 1660, 1661, 7, 71, 2, 2, 1661, 1662, 7, 69, 2, 2, 1662, 1663, 7, 81, 2, 2, 1663, 1664, 7, 84, 2, 2, 1664, 1665, 7, 70, 2, 2, 1665, 1666, 7, 89, 2, 2, 1666, 1667, 7, 84, 2, 2, 1667, 1668, 7, 75, 2, 2, 1668, 1669, 7, 86, 2, 2, 1669, 1670, 7, 71, 2, 2, 1670, 1671, 7, 84, 2, 2, 1671, 306, 3, 2, 2, 2, 1672, 1673, 7, 70, 2, 2, 1673, 1674, 7, 71, 2, 2, 1674, 1675, 7, 78, 2, 2, 1675, 1676, 7, 75, 2, 2, 1676, 1677, 7, 79, 2, 2, 1677, 1678, 7, 75, 2, 2, 1678, 1679, 7, 86, 2, 2, 1679, 1680, 7, 71, 2, 2, 1680, 1681, 7, 70, 2, 2, 1681, 308, 3, 2, 2, 2, 1682, 1683, 7, 72, 2, 2, 1683, 1684, 7, 75, 2, 2, 1684, 1685, 7, 71, 2, 2, 1685, 1686, 7, 78, 2, 2, 1686, 1687, 7, 70, 2, 2, 1687, 1688, 7, 85, 2, 2, 1688, 310, 3, 2, 2, 2, 1689, 1690, 7, 86, 2, 2, 1690, 1691, 7, 71, 2, 2, 1691, 1692, 7, 84, 2, 2, 1692, 1693, 7, 79, 2, 2, 1693, 1694, 7, 75, 2, 2, 1694, 1695, 7, 80, 2, 2, 1695, 1696, 7, 67, 2, 2, 1696, 1697, 7, 86, 2, 2, 1697, 1698, 7, 71, 2, 2, 1698, 1699, 7, 70, 2, 2, 1699, 312, 3, 2, 2, 2, 1700, 1701, 7, 69, 2, 2, 1701, 1702, 7, 81, 2, 2, 1702, 1703, 7, 78, 2, 2, 1703, 1704, 7, 78, 2, 2, 1704, 1705, 7, 71, 2, 2, 1705, 1706, 7, 69, 2, 2, 1706, 1707, 7, 86, 2, 2, 1707, 1708, 7, 75, 2, 2, 1708, 1709, 7, 81, 2, 2, 1709, 1710, 7, 80, 2, 2, 1710, 314, 3, 2, 2, 2, 1711, 1712, 7, 75, 2, 2, 1712, 1713, 7, 86, 2, 2, 1713, 1714, 7, 71, 2, 2, 1714, 1715, 7, 79, 2, 2, 1715, 1716, 7, 85, 2, 2, 1716, 316, 3, 2, 2, 2, 1717, 1718, 7, 77, 2, 2, 1718, 1719, 7, 71, 2, 2, 1719, 1720, 7, 91, 2, 2, 1720, 1721, 7, 85, 2, 2, 1721, 318, 3, 2, 2, 2, 1722, 1723, 7, 71, 2, 2, 1723, 1724, 7, 85, 2, 2, 1724, 1725, 7, 69, 2, 2, 1725, 1726, 7, 67, 2, 2, 1726, 1727, 7, 82, 2, 2, 1727, 1728, 7, 71, 2, 2, 1728, 1729, 7, 70, 2, 2, 1729, 320, 3, 2, 2, 2, 1730, 1731, 7, 78, 2, 2, 1731, 1732, 7, 75, 2, 2, 1732, 1733, 7, 80, 2, 2, 1733, 1734, 7, 71, 2, 2, 1734, 1735, 7, 85, 2, 2, 1735, 322, 3, 2, 2, 2, 1736, 1737, 7, 85, 2, 2, 1737, 1738, 7, 71, 2, 2, 1738, 1739, 7, 82, 2, 2, 1739, 1740, 7, 67, 2, 2, 1740, 1741, 7, 84, 2, 2, 1741, 1742, 7, 67, 2, 2, 1742, 1743, 7, 86, 2, 2, 1743, 1744, 7, 71, 2, 2, 1744, 1745, 7, 70, 2, 2, 1745, 324, 3, 2, 2, 2, 1746, 1747, 7, 72, 2, 2, 1747, 1748, 7, 87, 2, 2, 1748, 1749, 7, 80, 2, 2, 1749, 1750, 7, 69, 2, 2, 1750, 1751, 7, 86, 2, 2, 1751, 1752, 7, 75, 2, 2, 1752, 1753, 7, 81, 2, 2, 1753, 1754, 7, 80, 2, 2, 1754, 326, 3, 2, 2, 2, 1755, 1756, 7, 71, 2, 2, 1756, 1757, 7, 90, 2, 2, 1757, 1758, 7, 86, 2, 2, 1758, 1759, 7, 71, 2, 2, 1759, 1760, 7, 80, 2, 2, 1760, 1761, 7, 70, 2, 2, 1761, 1762, 7, 71, 2, 2, 1762, 1763, 7, 70, 2, 2, 1763, 328, 3, 2, 2, 2, 1764, 1765, 7, 84, 2, 2, 1765, 1766, 7, 71, 2, 2, 1766, 1767, 7, 72, 2, 2, 1767, 1768, 7, 84, 2, 2, 1768, 1769, 7, 71, 2, 2, 1769, 1770, 7, 85, 2, 2, 1770, 1771, 7, 74, 2, 2, 1771, 330, 3, 2, 2, 2, 1772, 1773, 7, 69, 2, 2, 1773, 1774, 7, 78, 2, 2, 1774, 1775, 7, 71, 2, 2, 1775, 1776, 7, 67, 2, 2, 1776, 1777, 7, 84, 2, 2, 1777, 332, 3, 2, 2, 2, 1778, 1779, 7, 69, 2, 2, 1779, 1780, 7, 67, 2, 2, 1780, 1781, 7, 69, 2, 2, 1781, 1782, 7, 74, 2, 2, 1782, 1783, 7, 71, 2, 2, 1783, 334, 3, 2, 2, 2, 1784, 1785, 7, 87, 2, 2, 1785, 1786, 7, 80, 2, 2, 1786, 1787, 7, 69, 2, 2, 1787, 1788, 7, 67, 2, 2, 1788, 1789, 7, 69, 2, 2, 1789, 1790, 7, 74, 2, 2, 1790, 1791, 7, 71, 2, 2, 1791, 336, 3, 2, 2, 2, 1792, 1793, 7, 78, 2, 2, 1793, 1794, 7, 67, 2, 2, 1794, 1795, 7, 92, 2, 2, 1795, 1796, 7, 91, 2, 2, 1796, 338, 3, 2, 2, 2, 1797, 1798, 7, 72, 2, 2, 1798, 1799, 7, 81, 2, 2, 1799, 1800, 7, 84, 2, 2, 1800, 1801, 7, 79, 2, 2, 1801, 1802, 7, 67, 2, 2, 1802, 1803, 7, 86, 2, 2, 1803, 1804, 7, 86, 2, 2, 1804, 1805, 7, 71, 2, 2, 1805, 1806, 7, 70, 2, 2, 1806, 340, 3, 2, 2, 2, 1807, 1808, 7, 73, 2, 2, 1808, 1809, 7, 78, 2, 2, 1809, 1810, 7, 81, 2, 2, 1810, 1811, 7, 68, 2, 2, 1811, 1812, 7, 67, 2, 2, 1812, 1813, 7, 78, 2, 2, 1813, 342, 3, 2, 2, 2, 1814, 1815, 7, 86, 2, 2, 1815, 1816, 7, 71, 2, 2, 1816, 1817, 7, 79, 2, 2, 1817, 1818, 7, 82, 2, 2, 1818, 1819, 7, 81, 2, 2, 1819, 1820, 7, 84, 2, 2, 1820, 1821, 7, 67, 2, 2, 1821, 1822, 7, 84, 2, 2, 1822, 1823, 7, 91, 2, 2, 1823, 344, 3, 2, 2, 2, 1824, 1825, 7, 81, 2, 2, 1825, 1826, 7, 82, 2, 2, 1826, 1827, 7, 86, 2, 2, 1827, 1828, 7, 75, 2, 2, 1828, 1829, 7, 81, 2, 2, 1829, 1830, 7, 80, 2, 2, 1830, 1831, 7, 85, 2, 2, 1831, 346, 3, 2, 2, 2, 1832, 1833, 7, 87, 2, 2, 1833, 1834, 7, 80, 2, 2, 1834, 1835, 7, 85, 2, 2, 1835, 1836, 7, 71, 2, 2, 1836, 1837, 7, 86, 2, 2, 1837, 348, 3, 2, 2, 2, 1838, 1839, 7, 86, 2, 2, 1839, 1840, 7, 68, 2, 2, 1840, 1841, 7, 78, 2, 2, 1841, 1842, 7, 82, 2, 2, 1842, 1843, 7, 84, 2, 2, 1843, 1844, 7, 81, 2, 2, 1844, 1845, 7, 82, 2, 2, 1845, 1846, 7, 71, 2, 2, 1846, 1847, 7, 84, 2, 2, 1847, 1848, 7, 86, 2, 2, 1848, 1849, 7, 75, 2, 2, 1849, 1850, 7, 71, 2, 2, 1850, 1851, 7, 85, 2, 2, 1851, 350, 3, 2, 2, 2, 1852, 1853, 7, 70, 2, 2, 1853, 1854, 7, 68, 2, 2, 1854, 1855, 7, 82, 2, 2, 1855, 1856, 7, 84, 2, 2, 1856, 1857, 7, 81, 2, 2, 1857, 1858, 7, 82, 2, 2, 1858, 1859, 7, 71, 2, 2, 1859, 1860, 7, 84, 2, 2, 1860, 1861, 7, 86, 2, 2, 1861, 1862, 7, 75, 2, 2, 1862, 1863, 7, 71, 2, 2, 1863, 1864, 7, 85, 2, 2, 1864, 352, 3, 2, 2, 2, 1865, 1866, 7, 68, 2, 2, 1866, 1867, 7, 87, 2, 2, 1867, 1868, 7, 69, 2, 2, 1868, 1869, 7, 77, 2, 2, 1869, 1870, 7, 71, 2, 2, 1870, 1871, 7, 86, 2, 2, 1871, 1872, 7, 85, 2, 2, 1872, 354, 3, 2, 2, 2, 1873, 1874, 7, 85, 2, 2, 1874, 1875, 7, 77, 2, 2, 1875, 1876, 7, 71, 2, 2, 1876, 1877, 7, 89, 2, 2, 1877, 1878, 7, 71, 2, 2, 1878, 1879, 7, 70, 2, 2, 1879, 356, 3, 2, 2, 2, 1880, 1881, 7, 85, 2, 2, 1881, 1882, 7, 86, 2, 2, 1882, 1883, 7, 81, 2, 2, 1883, 1884, 7, 84, 2, 2, 1884, 1885, 7, 71, 2, 2, 1885, 1886, 7, 70, 2, 2, 1886, 358, 3, 2, 2, 2, 1887, 1888, 7, 70, 2, 2, 1888, 1889, 7, 75, 2, 2, 1889, 1890, 7, 84, 2, 2, 1890, 1891, 7, 71, 2, 2, 1891, 1892, 7, 69, 2, 2, 1892, 1893, 7, 86, 2, 2, 1893, 1894, 7, 81, 2, 2, 1894, 1895, 7, 84, 2, 2, 1895, 1896, 7, 75, 2, 2, 1896, 1897, 7, 71, 2, 2, 1897, 1898, 7, 85, 2, 2, 1898, 360, 3, 2, 2, 2, 1899, 1900, 7, 78, 2, 2, 1900, 1901, 7, 81, 2, 2, 1901, 1902, 7, 69, 2, 2, 1902, 1903, 7, 67, 2, 2, 1903, 1904, 7, 86, 2, 2, 1904, 1905, 7, 75, 2, 2, 1905, 1906, 7, 81, 2, 2, 1906, 1907, 7, 80, 2, 2, 1907, 362, 3, 2, 2, 2, 1908, 1909, 7, 71, 2, 2, 1909, 1910, 7, 90, 2, 2, 1910, 1911, 7, 69, 2, 2, 1911, 1912, 7, 74, 2, 2, 1912, 1913, 7, 67, 2, 2, 1913, 1914, 7, 80, 2, 2, 1914, 1915, 7, 73, 2, 2, 1915, 1916, 7, 71, 2, 2, 1916, 364, 3, 2, 2, 2, 1917, 1918, 7, 67, 2, 2, 1918, 1919, 7, 84, 2, 2, 1919, 1920, 7, 69, 2, 2, 1920, 1921, 7, 74, 2, 2, 1921, 1922, 7, 75, 2, 2, 1922, 1923, 7, 88, 2, 2, 1923, 1924, 7, 71, 2, 2, 1924, 366, 3, 2, 2, 2, 1925, 1926, 7, 87, 2, 2, 1926, 1927, 7, 80, 2, 2, 1927, 1928, 7, 67, 2, 2, 1928, 1929, 7, 84, 2, 2, 1929, 1930, 7, 69, 2, 2, 1930, 1931, 7, 74, 2, 2, 1931, 1932, 7, 75, 2, 2, 1932, 1933, 7, 88, 2, 2, 1933, 1934, 7, 71, 2, 2, 1934, 368, 3, 2, 2, 2, 1935, 1936, 7, 72, 2, 2, 1936, 1937, 7, 75, 2, 2, 1937, 1938, 7, 78, 2, 2, 1938, 1939, 7, 71, 2, 2, 1939, 1940, 7, 72, 2, 2, 1940, 1941, 7, 81, 2, 2, 1941, 1942, 7, 84, 2, 2, 1942, 1943, 7, 79, 2, 2, 1943, 1944, 7, 67, 2, 2, 1944, 1945, 7, 86, 2, 2, 1945, 370, 3, 2, 2, 2, 1946, 1947, 7, 86, 2, 2, 1947, 1948, 7, 81, 2, 2, 1948, 1949, 7, 87, 2, 2, 1949, 1950, 7, 69, 2, 2, 1950, 1951, 7, 74, 2, 2, 1951, 372, 3, 2, 2, 2, 1952, 1953, 7, 69, 2, 2, 1953, 1954, 7, 81, 2, 2, 1954, 1955, 7, 79, 2, 2, 1955, 1956, 7, 82, 2, 2, 1956, 1957, 7, 67, 2, 2, 1957, 1958, 7, 69, 2, 2, 1958, 1959, 7, 86, 2, 2, 1959, 374, 3, 2, 2, 2, 1960, 1961, 7, 69, 2, 2, 1961, 1962, 7, 81, 2, 2, 1962, 1963, 7, 80, 2, 2, 1963, 1964, 7, 69, 2, 2, 1964, 1965, 7, 67, 2, 2, 1965, 1966, 7, 86, 2, 2, 1966, 1967, 7, 71, 2, 2, 1967, 1968, 7, 80, 2, 2, 1968, 1969, 7, 67, 2, 2, 1969, 1970, 7, 86, 2, 2, 1970, 1971, 7, 71, 2, 2, 1971, 376, 3, 2, 2, 2, 1972, 1973, 7, 69, 2, 2, 1973, 1974, 7, 74, 2, 2, 1974, 1975, 7, 67, 2, 2, 1975, 1976, 7, 80, 2, 2, 1976, 1977, 7, 73, 2, 2, 1977, 1978, 7, 71, 2, 2, 1978, 378, 3, 2, 2, 2, 1979, 1980, 7, 69, 2, 2, 1980, 1981, 7, 67, 2, 2, 1981, 1982, 7, 85, 2, 2, 1982, 1983, 7, 69, 2, 2, 1983, 1984, 7, 67, 2, 2, 1984, 1985, 7, 70, 2, 2, 1985, 1986, 7, 71, 2, 2, 1986, 380, 3, 2, 2, 2, 1987, 1988, 7, 69, 2, 2, 1988, 1989, 7, 81, 2, 2, 1989, 1990, 7, 80, 2, 2, 1990, 1991, 7, 85, 2, 2, 1991, 1992, 7, 86, 2, 2, 1992, 1993, 7, 84, 2, 2, 1993, 1994, 7, 67, 2, 2, 1994, 1995, 7, 75, 2, 2, 1995, 1996, 7, 80, 2, 2, 1996, 1997, 7, 86, 2, 2, 1997, 382, 3, 2, 2, 2, 1998, 1999, 7, 84, 2, 2, 1999, 2000, 7, 71, 2, 2, 2000, 2001, 7, 85, 2, 2, 2001, 2002, 7, 86, 2, 2, 2002, 2003, 7, 84, 2, 2, 2003, 2004, 7, 75, 2, 2, 2004, 2005, 7, 69, 2, 2, 2005, 2006, 7, 86, 2, 2, 2006, 384, 3, 2, 2, 2, 2007, 2008, 7, 69, 2, 2, 2008, 2009, 7, 78, 2, 2, 2009, 2010, 7, 87, 2, 2, 2010, 2011, 7, 85, 2, 2, 2011, 2012, 7, 86, 2, 2, 2012, 2013, 7, 71, 2, 2, 2013, 2014, 7, 84, 2, 2, 2014, 2015, 7, 71, 2, 2, 2015, 2016, 7, 70, 2, 2, 2016, 386, 3, 2, 2, 2, 2017, 2018, 7, 85, 2, 2, 2018, 2019, 7, 81, 2, 2, 2019, 2020, 7, 84, 2, 2, 2020, 2021, 7, 86, 2, 2, 2021, 2022, 7, 71, 2, 2, 2022, 2023, 7, 70, 2, 2, 2023, 388, 3, 2, 2, 2, 2024, 2025, 7, 82, 2, 2, 2025, 2026, 7, 87, 2, 2, 2026, 2027, 7, 84, 2, 2, 2027, 2028, 7, 73, 2, 2, 2028, 2029, 7, 71, 2, 2, 2029, 390, 3, 2, 2, 2, 2030, 2031, 7, 75, 2, 2, 2031, 2032, 7, 80, 2, 2, 2032, 2033, 7, 82, 2, 2, 2033, 2034, 7, 87, 2, 2, 2034, 2035, 7, 86, 2, 2, 2035, 2036, 7, 72, 2, 2, 2036, 2037, 7, 81, 2, 2, 2037, 2038, 7, 84, 2, 2, 2038, 2039, 7, 79, 2, 2, 2039, 2040, 7, 67, 2, 2, 2040, 2041, 7, 86, 2, 2, 2041, 392, 3, 2, 2, 2, 2042, 2043, 7, 81, 2, 2, 2043, 2044, 7, 87, 2, 2, 2044, 2045, 7, 86, 2, 2, 2045, 2046, 7, 82, 2, 2, 2046, 2047, 7, 87, 2, 2, 2047, 2048, 7, 86, 2, 2, 2048, 2049, 7, 72, 2, 2, 2049, 2050, 7, 81, 2, 2, 2050, 2051, 7, 84, 2, 2, 2051, 2052, 7, 79, 2, 2, 2052, 2053, 7, 67, 2, 2, 2053, 2054, 7, 86, 2, 2, 2054, 394, 3, 2, 2, 2, 2055, 2056, 7, 70, 2, 2, 2056, 2057, 7, 67, 2, 2, 2057, 2058, 7, 86, 2, 2, 2058, 2059, 7, 67, 2, 2, 2059, 2060, 7, 68, 2, 2, 2060, 2061, 7, 67, 2, 2, 2061, 2062, 7, 85, 2, 2, 2062, 2063, 7, 71, 2, 2, 2063, 396, 3, 2, 2, 2, 2064, 2065, 7, 70, 2, 2, 2065, 2066, 7, 67, 2, 2, 2066, 2067, 7, 86, 2, 2, 2067, 2068, 7, 67, 2, 2, 2068, 2069, 7, 68, 2, 2, 2069, 2070, 7, 67, 2, 2, 2070, 2071, 7, 85, 2, 2, 2071, 2072, 7, 71, 2, 2, 2072, 2073, 7, 85, 2, 2, 2073, 398, 3, 2, 2, 2, 2074, 2075, 7, 70, 2, 2, 2075, 2076, 7, 72, 2, 2, 2076, 2077, 7, 85, 2, 2, 2077, 400, 3, 2, 2, 2, 2078, 2079, 7, 86, 2, 2, 2079, 2080, 7, 84, 2, 2, 2080, 2081, 7, 87, 2, 2, 2081, 2082, 7, 80, 2, 2, 2082, 2083, 7, 69, 2, 2, 2083, 2084, 7, 67, 2, 2, 2084, 2085, 7, 86, 2, 2, 2085, 2086, 7, 71, 2, 2, 2086, 402, 3, 2, 2, 2, 2087, 2088, 7, 67, 2, 2, 2088, 2089, 7, 80, 2, 2, 2089, 2090, 7, 67, 2, 2, 2090, 2091, 7, 78, 2, 2, 2091, 2092, 7, 91, 2, 2, 2092, 2093, 7, 92, 2, 2, 2093, 2094, 7, 71, 2, 2, 2094, 404, 3, 2, 2, 2, 2095, 2096, 7, 69, 2, 2, 2096, 2097, 7, 81, 2, 2, 2097, 2098, 7, 79, 2, 2, 2098, 2099, 7, 82, 2, 2, 2099, 2100, 7, 87, 2, 2, 2100, 2101, 7, 86, 2, 2, 2101, 2102, 7, 71, 2, 2, 2102, 406, 3, 2, 2, 2, 2103, 2104, 7, 78, 2, 2, 2104, 2105, 7, 75, 2, 2, 2105, 2106, 7, 85, 2, 2, 2106, 2107, 7, 86, 2, 2, 2107, 408, 3, 2, 2, 2, 2108, 2109, 7, 85, 2, 2, 2109, 2110, 7, 86, 2, 2, 2110, 2111, 7, 67, 2, 2, 2111, 2112, 7, 86, 2, 2, 2112, 2113, 7, 75, 2, 2, 2113, 2114, 7, 85, 2, 2, 2114, 2115, 7, 86, 2, 2, 2115, 2116, 7, 75, 2, 2, 2116, 2117, 7, 69, 2, 2, 2117, 2118, 7, 85, 2, 2, 2118, 410, 3, 2, 2, 2, 2119, 2120, 7, 82, 2, 2, 2120, 2121, 7, 67, 2, 2, 2121, 2122, 7, 84, 2, 2, 2122, 2123, 7, 86, 2, 2, 2123, 2124, 7, 75, 2, 2, 2124, 2125, 7, 86, 2, 2, 2125, 2126, 7, 75, 2, 2, 2126, 2127, 7, 81, 2, 2, 2127, 2128, 7, 80, 2, 2, 2128, 2129, 7, 71, 2, 2, 2129, 2130, 7, 70, 2, 2, 2130, 412, 3, 2, 2, 2, 2131, 2132, 7, 71, 2, 2, 2132, 2133, 7, 90, 2, 2, 2133, 2134, 7, 86, 2, 2, 2134, 2135, 7, 71, 2, 2, 2135, 2136, 7, 84, 2, 2, 2136, 2137, 7, 80, 2, 2, 2137, 2138, 7, 67, 2, 2, 2138, 2139, 7, 78, 2, 2, 2139, 414, 3, 2, 2, 2, 2140, 2141, 7, 70, 2, 2, 2141, 2142, 7, 71, 2, 2, 2142, 2143, 7, 72, 2, 2, 2143, 2144, 7, 75, 2, 2, 2144, 2145, 7, 80, 2, 2, 2145, 2146, 7, 71, 2, 2, 2146, 2147, 7, 70, 2, 2, 2147, 416, 3, 2, 2, 2, 2148, 2149, 7, 84, 2, 2, 2149, 2150, 7, 71, 2, 2, 2150, 2151, 7, 88, 2, 2, 2151, 2152, 7, 81, 2, 2, 2152, 2153, 7, 77, 2, 2, 2153, 2154, 7, 71, 2, 2, 2154, 418, 3, 2, 2, 2, 2155, 2156, 7, 73, 2, 2, 2156, 2157, 7, 84, 2, 2, 2157, 2158, 7, 67, 2, 2, 2158, 2159, 7, 80, 2, 2, 2159, 2160, 7, 86, 2, 2, 2160, 420, 3, 2, 2, 2, 2161, 2162, 7, 78, 2, 2, 2162, 2163, 7, 81, 2, 2, 2163, 2164, 7, 69, 2, 2, 2164, 2165, 7, 77, 2, 2, 2165, 422, 3, 2, 2, 2, 2166, 2167, 7, 87, 2, 2, 2167, 2168, 7, 80, 2, 2, 2168, 2169, 7, 78, 2, 2, 2169, 2170, 7, 81, 2, 2, 2170, 2171, 7, 69, 2, 2, 2171, 2172, 7, 77, 2, 2, 2172, 424, 3, 2, 2, 2, 2173, 2174, 7, 79, 2, 2, 2174, 2175, 7, 85, 2, 2, 2175, 2176, 7, 69, 2, 2, 2176, 2177, 7, 77, 2, 2, 2177, 426, 3, 2, 2, 2, 2178, 2179, 7, 84, 2, 2, 2179, 2180, 7, 71, 2, 2, 2180, 2181, 7, 82, 2, 2, 2181, 2182, 7, 67, 2, 2, 2182, 2183, 7, 75, 2, 2, 2183, 2184, 7, 84, 2, 2, 2184, 428, 3, 2, 2, 2, 2185, 2186, 7, 84, 2, 2, 2186, 2187, 7, 71, 2, 2, 2187, 2188, 7, 69, 2, 2, 2188, 2189, 7, 81, 2, 2, 2189, 2190, 7, 88, 2, 2, 2190, 2191, 7, 71, 2, 2, 2191, 2192, 7, 84, 2, 2, 2192, 430, 3, 2, 2, 2, 2193, 2194, 7, 71, 2, 2, 2194, 2195, 7, 90, 2, 2, 2195, 2196, 7, 82, 2, 2, 2196, 2197, 7, 81, 2, 2, 2197, 2198, 7, 84, 2, 2, 2198, 2199, 7, 86, 2, 2, 2199, 432, 3, 2, 2, 2, 2200, 2201, 7, 75, 2, 2, 2201, 2202, 7, 79, 2, 2, 2202, 2203, 7, 82, 2, 2, 2203, 2204, 7, 81, 2, 2, 2204, 2205, 7, 84, 2, 2, 2205, 2206, 7, 86, 2, 2, 2206, 434, 3, 2, 2, 2, 2207, 2208, 7, 78, 2, 2, 2208, 2209, 7, 81, 2, 2, 2209, 2210, 7, 67, 2, 2, 2210, 2211, 7, 70, 2, 2, 2211, 436, 3, 2, 2, 2, 2212, 2213, 7, 84, 2, 2, 2213, 2214, 7, 81, 2, 2, 2214, 2215, 7, 78, 2, 2, 2215, 2216, 7, 71, 2, 2, 2216, 438, 3, 2, 2, 2, 2217, 2218, 7, 84, 2, 2, 2218, 2219, 7, 81, 2, 2, 2219, 2220, 7, 78, 2, 2, 2220, 2221, 7, 71, 2, 2, 2221, 2222, 7, 85, 2, 2, 2222, 440, 3, 2, 2, 2, 2223, 2224, 7, 69, 2, 2, 2224, 2225, 7, 81, 2, 2, 2225, 2226, 7, 79, 2, 2, 2226, 2227, 7, 82, 2, 2, 2227, 2228, 7, 67, 2, 2, 2228, 2229, 7, 69, 2, 2, 2229, 2230, 7, 86, 2, 2, 2230, 2231, 7, 75, 2, 2, 2231, 2232, 7, 81, 2, 2, 2232, 2233, 7, 80, 2, 2, 2233, 2234, 7, 85, 2, 2, 2234, 442, 3, 2, 2, 2, 2235, 2236, 7, 82, 2, 2, 2236, 2237, 7, 84, 2, 2, 2237, 2238, 7, 75, 2, 2, 2238, 2239, 7, 80, 2, 2, 2239, 2240, 7, 69, 2, 2, 2240, 2241, 7, 75, 2, 2, 2241, 2242, 7, 82, 2, 2, 2242, 2243, 7, 67, 2, 2, 2243, 2244, 7, 78, 2, 2, 2244, 2245, 7, 85, 2, 2, 2245, 444, 3, 2, 2, 2, 2246, 2247, 7, 86, 2, 2, 2247, 2248, 7, 84, 2, 2, 2248, 2249, 7, 67, 2, 2, 2249, 2250, 7, 80, 2, 2, 2250, 2251, 7, 85, 2, 2, 2251, 2252, 7, 67, 2, 2, 2252, 2253, 7, 69, 2, 2, 2253, 2254, 7, 86, 2, 2, 2254, 2255, 7, 75, 2, 2, 2255, 2256, 7, 81, 2, 2, 2256, 2257, 7, 80, 2, 2, 2257, 2258, 7, 85, 2, 2, 2258, 446, 3, 2, 2, 2, 2259, 2260, 7, 75, 2, 2, 2260, 2261, 7, 80, 2, 2, 2261, 2262, 7, 70, 2, 2, 2262, 2263, 7, 71, 2, 2, 2263, 2264, 7, 90, 2, 2, 2264, 448, 3, 2, 2, 2, 2265, 2266, 7, 75, 2, 2, 2266, 2267, 7, 80, 2, 2, 2267, 2268, 7, 70, 2, 2, 2268, 2269, 7, 71, 2, 2, 2269, 2270, 7, 90, 2, 2, 2270, 2271, 7, 71, 2, 2, 2271, 2272, 7, 85, 2, 2, 2272, 450, 3, 2, 2, 2, 2273, 2274, 7, 78, 2, 2, 2274, 2275, 7, 81, 2, 2, 2275, 2276, 7, 69, 2, 2, 2276, 2277, 7, 77, 2, 2, 2277, 2278, 7, 85, 2, 2, 2278, 452, 3, 2, 2, 2, 2279, 2280, 7, 81, 2, 2, 2280, 2281, 7, 82, 2, 2, 2281, 2282, 7, 86, 2, 2, 2282, 2283, 7, 75, 2, 2, 2283, 2284, 7, 81, 2, 2, 2284, 2285, 7, 80, 2, 2, 2285, 454, 3, 2, 2, 2, 2286, 2287, 7, 67, 2, 2, 2287, 2288, 7, 80, 2, 2, 2288, 2289, 7, 86, 2, 2, 2289, 2290, 7, 75, 2, 2, 2290, 456, 3, 2, 2, 2, 2291, 2292, 7, 78, 2, 2, 2292, 2293, 7, 81, 2, 2, 2293, 2294, 7, 69, 2, 2, 2294, 2295, 7, 67, 2, 2, 2295, 2296, 7, 78, 2, 2, 2296, 458, 3, 2, 2, 2, 2297, 2298, 7, 75, 2, 2, 2298, 2299, 7, 80, 2, 2, 2299, 2300, 7, 82, 2, 2, 2300, 2301, 7, 67, 2, 2, 2301, 2302, 7, 86, 2, 2, 2302, 2303, 7, 74, 2, 2, 2303, 460, 3, 2, 2, 2, 2304, 2305, 7, 89, 2, 2, 2305, 2306, 7, 67, 2, 2, 2306, 2307, 7, 86, 2, 2, 2307, 2308, 7, 71, 2, 2, 2308, 2309, 7, 84, 2, 2, 2309, 2310, 7, 79, 2, 2, 2310, 2311, 7, 67, 2, 2, 2311, 2312, 7, 84, 2, 2, 2312, 2313, 7, 77, 2, 2, 2313, 462, 3, 2, 2, 2, 2314, 2315, 7, 87, 2, 2, 2315, 2316, 7, 80, 2, 2, 2316, 2317, 7, 80, 2, 2, 2317, 2318, 7, 71, 2, 2, 2318, 2319, 7, 85, 2, 2, 2319, 2320, 7, 86, 2, 2, 2320, 464, 3, 2, 2, 2, 2321, 2322, 7, 79, 2, 2, 2322, 2323, 7, 67, 2, 2, 2323, 2324, 7, 86, 2, 2, 2324, 2325, 7, 69, 2, 2, 2325, 2326, 7, 74, 2, 2, 2326, 2327, 7, 97, 2, 2, 2327, 2328, 7, 84, 2, 2, 2328, 2329, 7, 71, 2, 2, 2329, 2330, 7, 69, 2, 2, 2330, 2331, 7, 81, 2, 2, 2331, 2332, 7, 73, 2, 2, 2332, 2333, 7, 80, 2, 2, 2333, 2334, 7, 75, 2, 2, 2334, 2335, 7, 92, 2, 2, 2335, 2336, 7, 71, 2, 2, 2336, 466, 3, 2, 2, 2, 2337, 2338, 7, 79, 2, 2, 2338, 2339, 7, 71, 2, 2, 2339, 2340, 7, 67, 2, 2, 2340, 2341, 7, 85, 2, 2, 2341, 2342, 7, 87, 2, 2, 2342, 2343, 7, 84, 2, 2, 2343, 2344, 7, 71, 2, 2, 2344, 2345, 7, 85, 2, 2, 2345, 468, 3, 2, 2, 2, 2346, 2347, 7, 81, 2, 2, 2347, 2348, 7, 80, 2, 2, 2348, 2349, 7, 71, 2, 2, 2349, 470, 3, 2, 2, 2, 2350, 2351, 7, 82, 2, 2, 2351, 2352, 7, 71, 2, 2, 2352, 2353, 7, 84, 2, 2, 2353, 472, 3, 2, 2, 2, 2354, 2355, 7, 79, 2, 2, 2355, 2356, 7, 67, 2, 2, 2356, 2357, 7, 86, 2, 2, 2357, 2358, 7, 69, 2, 2, 2358, 2359, 7, 74, 2, 2, 2359, 474, 3, 2, 2, 2, 2360, 2361, 7, 85, 2, 2, 2361, 2362, 7, 77, 2, 2, 2362, 2363, 7, 75, 2, 2, 2363, 2364, 7, 82, 2, 2, 2364, 2365, 7, 51, 2, 2, 2365, 476, 3, 2, 2, 2, 2366, 2367, 7, 80, 2, 2, 2367, 2368, 7, 71, 2, 2, 2368, 2369, 7, 90, 2, 2, 2369, 2370, 7, 86, 2, 2, 2370, 478, 3, 2, 2, 2, 2371, 2372, 7, 82, 2, 2, 2372, 2373, 7, 67, 2, 2, 2373, 2374, 7, 85, 2, 2, 2374, 2375, 7, 86, 2, 2, 2375, 480, 3, 2, 2, 2, 2376, 2377, 7, 82, 2, 2, 2377, 2378, 7, 67, 2, 2, 2378, 2379, 7, 86, 2, 2, 2379, 2380, 7, 86, 2, 2, 2380, 2381, 7, 71, 2, 2, 2381, 2382, 7, 84, 2, 2, 2382, 2383, 7, 80, 2, 2, 2383, 482, 3, 2, 2, 2, 2384, 2385, 7, 89, 2, 2, 2385, 2386, 7, 75, 2, 2, 2386, 2387, 7, 86, 2, 2, 2387, 2388, 7, 74, 2, 2, 2388, 2389, 7, 75, 2, 2, 2389, 2390, 7, 80, 2, 2, 2390, 484, 3, 2, 2, 2, 2391, 2392, 7, 70, 2, 2, 2392, 2393, 7, 71, 2, 2, 2393, 2394, 7, 72, 2, 2, 2394, 2395, 7, 75, 2, 2, 2395, 2396, 7, 80, 2, 2, 2396, 2397, 7, 71, 2, 2, 2397, 486, 3, 2, 2, 2, 2398, 2399, 7, 89, 2, 2, 2399, 2400, 7, 85, 2, 2, 2400, 488, 3, 2, 2, 2, 2401, 2402, 7, 85, 2, 2, 2402, 2403, 7, 91, 2, 2, 2403, 2404, 7, 85, 2, 2, 2404, 2405, 7, 86, 2, 2, 2405, 2406, 7, 71, 2, 2, 2406, 2407, 7, 79, 2, 2, 2407, 490, 3, 2, 2, 2, 2408, 2409, 7, 75, 2, 2, 2409, 2410, 7, 80, 2, 2, 2410, 2411, 7, 69, 2, 2, 2411, 2412, 7, 78, 2, 2, 2412, 2413, 7, 87, 2, 2, 2413, 2414, 7, 70, 2, 2, 2414, 2415, 7, 75, 2, 2, 2415, 2416, 7, 80, 2, 2, 2416, 2417, 7, 73, 2, 2, 2417, 492, 3, 2, 2, 2, 2418, 2419, 7, 71, 2, 2, 2419, 2420, 7, 90, 2, 2, 2420, 2421, 7, 69, 2, 2, 2421, 2422, 7, 78, 2, 2, 2422, 2423, 7, 87, 2, 2, 2423, 2424, 7, 70, 2, 2, 2424, 2425, 7, 75, 2, 2, 2425, 2426, 7, 80, 2, 2, 2426, 2427, 7, 73, 2, 2, 2427, 494, 3, 2, 2, 2, 2428, 2429, 7, 69, 2, 2, 2429, 2430, 7, 81, 2, 2, 2430, 2431, 7, 80, 2, 2, 2431, 2432, 7, 85, 2, 2, 2432, 2433, 7, 86, 2, 2, 2433, 2434, 7, 84, 2, 2, 2434, 2435, 7, 67, 2, 2, 2435, 2436, 7, 75, 2, 2, 2436, 2437, 7, 80, 2, 2, 2437, 2438, 7, 86, 2, 2, 2438, 2439, 7, 85, 2, 2, 2439, 496, 3, 2, 2, 2, 2440, 2441, 7, 81, 2, 2, 2441, 2442, 7, 88, 2, 2, 2442, 2443, 7, 71, 2, 2, 2443, 2444, 7, 84, 2, 2, 2444, 2445, 7, 89, 2, 2, 2445, 2446, 7, 84, 2, 2, 2446, 2447, 7, 75, 2, 2, 2447, 2448, 7, 86, 2, 2, 2448, 2449, 7, 75, 2, 2, 2449, 2450, 7, 80, 2, 2, 2450, 2451, 7, 73, 2, 2, 2451, 498, 3, 2, 2, 2, 2452, 2453, 7, 73, 2, 2, 2453, 2454, 7, 71, 2, 2, 2454, 2455, 7, 80, 2, 2, 2455, 2456, 7, 71, 2, 2, 2456, 2457, 7, 84, 2, 2, 2457, 2458, 7, 67, 2, 2, 2458, 2459, 7, 86, 2, 2, 2459, 2460, 7, 71, 2, 2, 2460, 2461, 7, 70, 2, 2, 2461, 500, 3, 2, 2, 2, 2462, 2463, 7, 69, 2, 2, 2463, 2464, 7, 67, 2, 2, 2464, 2465, 7, 86, 2, 2, 2465, 2466, 7, 67, 2, 2, 2466, 2467, 7, 78, 2, 2, 2467, 2468, 7, 81, 2, 2, 2468, 2469, 7, 73, 2, 2, 2469, 502, 3, 2, 2, 2, 2470, 2471, 7, 78, 2, 2, 2471, 2472, 7, 67, 2, 2, 2472, 2473, 7, 80, 2, 2, 2473, 2474, 7, 73, 2, 2, 2474, 2475, 7, 87, 2, 2, 2475, 2476, 7, 67, 2, 2, 2476, 2477, 7, 73, 2, 2, 2477, 2478, 7, 71, 2, 2, 2478, 504, 3, 2, 2, 2, 2479, 2480, 7, 69, 2, 2, 2480, 2481, 7, 67, 2, 2, 2481, 2482, 7, 86, 2, 2, 2482, 2483, 7, 67, 2, 2, 2483, 2484, 7, 78, 2, 2, 2484, 2485, 7, 81, 2, 2, 2485, 2486, 7, 73, 2, 2, 2486, 2487, 7, 85, 2, 2, 2487, 506, 3, 2, 2, 2, 2488, 2489, 7, 88, 2, 2, 2489, 2490, 7, 75, 2, 2, 2490, 2491, 7, 71, 2, 2, 2491, 2492, 7, 89, 2, 2, 2492, 2493, 7, 85, 2, 2, 2493, 508, 3, 2, 2, 2, 2494, 2495, 7, 82, 2, 2, 2495, 2496, 7, 84, 2, 2, 2496, 2497, 7, 75, 2, 2, 2497, 2498, 7, 79, 2, 2, 2498, 2499, 7, 67, 2, 2, 2499, 2500, 7, 84, 2, 2, 2500, 2501, 7, 91, 2, 2, 2501, 510, 3, 2, 2, 2, 2502, 2503, 7, 77, 2, 2, 2503, 2504, 7, 71, 2, 2, 2504, 2505, 7, 91, 2, 2, 2505, 512, 3, 2, 2, 2, 2506, 2507, 7, 82, 2, 2, 2507, 2508, 7, 71, 2, 2, 2508, 2509, 7, 84, 2, 2, 2509, 2510, 7, 75, 2, 2, 2510, 2511, 7, 81, 2, 2, 2511, 2512, 7, 70, 2, 2, 2512, 514, 3, 2, 2, 2, 2513, 2514, 7, 85, 2, 2, 2514, 2515, 7, 91, 2, 2, 2515, 2516, 7, 85, 2, 2, 2516, 2517, 7, 86, 2, 2, 2517, 2518, 7, 71, 2, 2, 2518, 2519, 7, 79, 2, 2, 2519, 2520, 7, 97, 2, 2, 2520, 2521, 7, 86, 2, 2, 2521, 2522, 7, 75, 2, 2, 2522, 2523, 7, 79, 2, 2, 2523, 2524, 7, 71, 2, 2, 2524, 516, 3, 2, 2, 2, 2525, 2526, 7, 85, 2, 2, 2526, 2527, 7, 86, 2, 2, 2527, 2528, 7, 84, 2, 2, 2528, 2529, 7, 75, 2, 2, 2529, 2530, 7, 80, 2, 2, 2530, 2531, 7, 73, 2, 2, 2531, 518, 3, 2, 2, 2, 2532, 2533, 7, 67, 2, 2, 2533, 2534, 7, 84, 2, 2, 2534, 2535, 7, 84, 2, 2, 2535, 2536, 7, 67, 2, 2, 2536, 2537, 7, 91, 2, 2, 2537, 520, 3, 2, 2, 2, 2538, 2539, 7, 79, 2, 2, 2539, 2540, 7, 67, 2, 2, 2540, 2541, 7, 82, 2, 2, 2541, 522, 3, 2, 2, 2, 2542, 2543, 7, 69, 2, 2, 2543, 2544, 7, 74, 2, 2, 2544, 2545, 7, 67, 2, 2, 2545, 2546, 7, 84, 2, 2, 2546, 524, 3, 2, 2, 2, 2547, 2548, 7, 88, 2, 2, 2548, 2549, 7, 67, 2, 2, 2549, 2550, 7, 84, 2, 2, 2550, 2551, 7, 69, 2, 2, 2551, 2552, 7, 74, 2, 2, 2552, 2553, 7, 67, 2, 2, 2553, 2554, 7, 84, 2, 2, 2554, 526, 3, 2, 2, 2, 2555, 2556, 7, 68, 2, 2, 2556, 2557, 7, 75, 2, 2, 2557, 2558, 7, 80, 2, 2, 2558, 2559, 7, 67, 2, 2, 2559, 2560, 7, 84, 2, 2, 2560, 2561, 7, 91, 2, 2, 2561, 528, 3, 2, 2, 2, 2562, 2563, 7, 88, 2, 2, 2563, 2564, 7, 67, 2, 2, 2564, 2565, 7, 84, 2, 2, 2565, 2566, 7, 68, 2, 2, 2566, 2567, 7, 75, 2, 2, 2567, 2568, 7, 80, 2, 2, 2568, 2569, 7, 67, 2, 2, 2569, 2570, 7, 84, 2, 2, 2570, 2571, 7, 91, 2, 2, 2571, 530, 3, 2, 2, 2, 2572, 2573, 7, 68, 2, 2, 2573, 2574, 7, 91, 2, 2, 2574, 2575, 7, 86, 2, 2, 2575, 2576, 7, 71, 2, 2, 2576, 2577, 7, 85, 2, 2, 2577, 532, 3, 2, 2, 2, 2578, 2579, 7, 70, 2, 2, 2579, 2580, 7, 71, 2, 2, 2580, 2581, 7, 69, 2, 2, 2581, 2582, 7, 75, 2, 2, 2582, 2583, 7, 79, 2, 2, 2583, 2584, 7, 67, 2, 2, 2584, 2585, 7, 78, 2, 2, 2585, 534, 3, 2, 2, 2, 2586, 2587, 7, 86, 2, 2, 2587, 2588, 7, 75, 2, 2, 2588, 2589, 7, 80, 2, 2, 2589, 2590, 7, 91, 2, 2, 2590, 2591, 7, 75, 2, 2, 2591, 2592, 7, 80, 2, 2, 2592, 2593, 7, 86, 2, 2, 2593, 536, 3, 2, 2, 2, 2594, 2595, 7, 85, 2, 2, 2595, 2596, 7, 79, 2, 2, 2596, 2597, 7, 67, 2, 2, 2597, 2598, 7, 78, 2, 2, 2598, 2599, 7, 78, 2, 2, 2599, 2600, 7, 75, 2, 2, 2600, 2601, 7, 80, 2, 2, 2601, 2602, 7, 86, 2, 2, 2602, 538, 3, 2, 2, 2, 2603, 2604, 7, 75, 2, 2, 2604, 2605, 7, 80, 2, 2, 2605, 2606, 7, 86, 2, 2, 2606, 540, 3, 2, 2, 2, 2607, 2608, 7, 68, 2, 2, 2608, 2609, 7, 75, 2, 2, 2609, 2610, 7, 73, 2, 2, 2610, 2611, 7, 75, 2, 2, 2611, 2612, 7, 80, 2, 2, 2612, 2613, 7, 86, 2, 2, 2613, 542, 3, 2, 2, 2, 2614, 2615, 7, 72, 2, 2, 2615, 2616, 7, 78, 2, 2, 2616, 2617, 7, 81, 2, 2, 2617, 2618, 7, 67, 2, 2, 2618, 2619, 7, 86, 2, 2, 2619, 544, 3, 2, 2, 2, 2620, 2621, 7, 70, 2, 2, 2621, 2622, 7, 81, 2, 2, 2622, 2623, 7, 87, 2, 2, 2623, 2624, 7, 68, 2, 2, 2624, 2625, 7, 78, 2, 2, 2625, 2626, 7, 71, 2, 2, 2626, 546, 3, 2, 2, 2, 2627, 2628, 7, 70, 2, 2, 2628, 2629, 7, 67, 2, 2, 2629, 2630, 7, 86, 2, 2, 2630, 2631, 7, 71, 2, 2, 2631, 548, 3, 2, 2, 2, 2632, 2633, 7, 86, 2, 2, 2633, 2634, 7, 75, 2, 2, 2634, 2635, 7, 79, 2, 2, 2635, 2636, 7, 71, 2, 2, 2636, 550, 3, 2, 2, 2, 2637, 2638, 7, 86, 2, 2, 2638, 2639, 7, 75, 2, 2, 2639, 2640, 7, 79, 2, 2, 2640, 2641, 7, 71, 2, 2, 2641, 2642, 7, 85, 2, 2, 2642, 2643, 7, 86, 2, 2, 2643, 2644, 7, 67, 2, 2, 2644, 2645, 7, 79, 2, 2, 2645, 2646, 7, 82, 2, 2, 2646, 552, 3, 2, 2, 2, 2647, 2648, 7, 79, 2, 2, 2648, 2649, 7, 87, 2, 2, 2649, 2650, 7, 78, 2, 2, 2650, 2651, 7, 86, 2, 2, 2651, 2652, 7, 75, 2, 2, 2652, 2653, 7, 85, 2, 2, 2653, 2654, 7, 71, 2, 2, 2654, 2655, 7, 86, 2, 2, 2655, 554, 3, 2, 2, 2, 2656, 2657, 7, 68, 2, 2, 2657, 2658, 7, 81, 2, 2, 2658, 2659, 7, 81, 2, 2, 2659, 2660, 7, 78, 2, 2, 2660, 2661, 7, 71, 2, 2, 2661, 2662, 7, 67, 2, 2, 2662, 2663, 7, 80, 2, 2, 2663, 556, 3, 2, 2, 2, 2664, 2665, 7, 84, 2, 2, 2665, 2666, 7, 67, 2, 2, 2666, 2667, 7, 89, 2, 2, 2667, 558, 3, 2, 2, 2, 2668, 2669, 7, 84, 2, 2, 2669, 2670, 7, 81, 2, 2, 2670, 2671, 7, 89, 2, 2, 2671, 560, 3, 2, 2, 2, 2672, 2673, 7, 80, 2, 2, 2673, 2674, 7, 87, 2, 2, 2674, 2675, 7, 78, 2, 2, 2675, 2676, 7, 78, 2, 2, 2676, 562, 3, 2, 2, 2, 2677, 2678, 7, 70, 2, 2, 2678, 2679, 7, 67, 2, 2, 2679, 2680, 7, 86, 2, 2, 2680, 2681, 7, 71, 2, 2, 2681, 2682, 7, 86, 2, 2, 2682, 2683, 7, 75, 2, 2, 2683, 2684, 7, 79, 2, 2, 2684, 2685, 7, 71, 2, 2, 2685, 564, 3, 2, 2, 2, 2686, 2687, 7, 63, 2, 2, 2687, 566, 3, 2, 2, 2, 2688, 2689, 7, 64, 2, 2, 2689, 568, 3, 2, 2, 2, 2690, 2691, 7, 62, 2, 2, 2691, 570, 3, 2, 2, 2, 2692, 2693, 7, 35, 2, 2, 2693, 572, 3, 2, 2, 2, 2694, 2695, 7, 128, 2, 2, 2695, 574, 3, 2, 2, 2, 2696, 2697, 7, 126, 2, 2, 2697, 576, 3, 2, 2, 2, 2698, 2699, 7, 40, 2, 2, 2699, 578, 3, 2, 2, 2, 2700, 2701, 7, 96, 2, 2, 2701, 580, 3, 2, 2, 2, 2702, 2703, 7, 48, 2, 2, 2703, 582, 3, 2, 2, 2, 2704, 2705, 7, 93, 2, 2, 2705, 584, 3, 2, 2, 2, 2706, 2707, 7, 95, 2, 2, 2707, 586, 3, 2, 2, 2, 2708, 2709, 7, 42, 2, 2, 2709, 588, 3, 2, 2, 2, 2710, 2711, 7, 43, 2, 2, 2711, 590, 3, 2, 2, 2, 2712, 2713, 7, 46, 2, 2, 2713, 592, 3, 2, 2, 2, 2714, 2715, 7, 61, 2, 2, 2715, 594, 3, 2, 2, 2, 2716, 2717, 7, 66, 2, 2, 2717, 596, 3, 2, 2, 2, 2718, 2719, 7, 41, 2, 2, 2719, 598, 3, 2, 2, 2, 2720, 2721, 7, 36, 2, 2, 2721, 600, 3, 2, 2, 2, 2722, 2723, 7, 98, 2, 2, 2723, 602, 3, 2, 2, 2, 2724, 2725, 7, 60, 2, 2, 2725, 604, 3, 2, 2, 2, 2726, 2727, 7, 44, 2, 2, 2727, 606, 3, 2, 2, 2, 2728, 2729, 7, 97, 2, 2, 2729, 608, 3, 2, 2, 2, 2730, 2731, 7, 47, 2, 2, 2731, 610, 3, 2, 2, 2, 2732, 2733, 7, 45, 2, 2, 2733, 612, 3, 2, 2, 2, 2734, 2735, 7, 39, 2, 2, 2735, 614, 3, 2, 2, 2, 2736, 2737, 7, 126, 2, 2, 2737, 2738, 7, 126, 2, 2, 2738, 616, 3, 2, 2, 2, 2739, 2740, 7, 47, 2, 2, 2740, 2741, 7, 47, 2, 2, 2741, 618, 3, 2, 2, 2, 2742, 2743, 7, 49, 2, 2, 2743, 620, 3, 2, 2, 2, 2744, 2745, 7, 48, 2, 2, 2745, 2746, 5, 639, 320, 2, 2746, 622, 3, 2, 2, 2, 2747, 2748, 9, 4, 2, 2, 2748, 2749, 5, 635, 318, 2, 2749, 624, 3, 2, 2, 2, 2750, 2754, 5, 647, 324, 2, 2751, 2754, 5, 649, 325, 2, 2752, 2754, 5, 653, 327, 2, 2753, 2750, 3, 2, 2, 2, 2753, 2751, 3, 2, 2, 2, 2753, 2752, 3, 2, 2, 2, 2754, 626, 3, 2, 2, 2, 2755, 2757, 5, 643, 322, 2, 2756, 2755, 3, 2, 2, 2, 2757, 2758, 3, 2, 2, 2, 2758, 2756, 3, 2, 2, 2, 2758, 2759, 3, 2, 2, 2, 2759, 628, 3, 2, 2, 2, 2760, 2762, 5, 643, 322, 2, 2761, 2760, 3, 2, 2, 2, 2762, 2763, 3, 2, 2, 2, 2763, 2761, 3, 2, 2, 2, 2763, 2764, 3, 2, 2, 2, 2764, 2766, 3, 2, 2, 2, 2765, 2761, 3, 2, 2, 2, 2765, 2766, 3, 2, 2, 2, 2766, 2767, 3, 2, 2, 2, 2767, 2769, 7, 48, 2, 2, 2768, 2770, 5, 643, 322, 2, 2769, 2768, 3, 2, 2, 2, 2770, 2771, 3, 2, 2, 2, 2771, 2769, 3, 2, 2, 2, 2771, 2772, 3, 2, 2, 2, 2772, 2804, 3, 2, 2, 2, 2773, 2775, 5, 643, 322, 2, 2774, 2773, 3, 2, 2, 2, 2775, 2776, 3, 2, 2, 2, 2776, 2774, 3, 2, 2, 2, 2776, 2777, 3, 2, 2, 2, 2777, 2778, 3, 2, 2, 2, 2778, 2779, 7, 48, 2, 2, 2779, 2780, 5, 637, 319, 2, 2780, 2804, 3, 2, 2, 2, 2781, 2783, 5, 643, 322, 2, 2782, 2781, 3, 2, 2, 2, 2783, 2784, 3, 2, 2, 2, 2784, 2782, 3, 2, 2, 2, 2784, 2785, 3, 2, 2, 2, 2785, 2787, 3, 2, 2, 2, 2786, 2782, 3, 2, 2, 2, 2786, 2787, 3, 2, 2, 2, 2787, 2788, 3, 2, 2, 2, 2788, 2790, 7, 48, 2, 2, 2789, 2791, 5, 643, 322, 2, 2790, 2789, 3, 2, 2, 2, 2791, 2792, 3, 2, 2, 2, 2792, 2790, 3, 2, 2, 2, 2792, 2793, 3, 2, 2, 2, 2793, 2794, 3, 2, 2, 2, 2794, 2795, 5, 637, 319, 2, 2795, 2804, 3, 2, 2, 2, 2796, 2798, 5, 643, 322, 2, 2797, 2796, 3, 2, 2, 2, 2798, 2799, 3, 2, 2, 2, 2799, 2797, 3, 2, 2, 2, 2799, 2800, 3, 2, 2, 2, 2800, 2801, 3, 2, 2, 2, 2801, 2802, 5, 637, 319, 2, 2802, 2804, 3, 2, 2, 2, 2803, 2765, 3, 2, 2, 2, 2803, 2774, 3, 2, 2, 2, 2803, 2786, 3, 2, 2, 2, 2803, 2797, 3, 2, 2, 2, 2804, 630, 3, 2, 2, 2, 2805, 2806, 5, 651, 326, 2, 2806, 632, 3, 2, 2, 2, 2807, 2808, 5, 639, 320, 2, 2808, 634, 3, 2, 2, 2, 2809, 2810, 5, 641, 321, 2, 2810, 636, 3, 2, 2, 2, 2811, 2813, 7, 71, 2, 2, 2812, 2814, 9, 5, 2, 2, 2813, 2812, 3, 2, 2, 2, 2813, 2814, 3, 2, 2, 2, 2814, 2816, 3, 2, 2, 2, 2815, 2817, 5, 643, 322, 2, 2816, 2815, 3, 2, 2, 2, 2817, 2818, 3, 2, 2, 2, 2818, 2816, 3, 2, 2, 2, 2818, 2819, 3, 2, 2, 2, 2819, 638, 3, 2, 2, 2, 2820, 2822, 9, 6, 2, 2, 2821, 2820, 3, 2, 2, 2, 2822, 2825, 3, 2, 2, 2, 2823, 2824, 3, 2, 2, 2, 2823, 2821, 3, 2, 2, 2, 2824, 2827, 3, 2, 2, 2, 2825, 2823, 3, 2, 2, 2, 2826, 2828, 9, 7, 2, 2, 2827, 2826, 3, 2, 2, 2, 2828, 2829, 3, 2, 2, 2, 2829, 2830, 3, 2, 2, 2, 2829, 2827, 3, 2, 2, 2, 2830, 2834, 3, 2, 2, 2, 2831, 2833, 9, 6, 2, 2, 2832, 2831, 3, 2, 2, 2, 2833, 2836, 3, 2, 2, 2, 2834, 2832, 3, 2, 2, 2, 2834, 2835, 3, 2, 2, 2, 2835, 640, 3, 2, 2, 2, 2836, 2834, 3, 2, 2, 2, 2837, 2839, 9, 8, 2, 2, 2838, 2837, 3, 2, 2, 2, 2839, 2842, 3, 2, 2, 2, 2840, 2841, 3, 2, 2, 2, 2840, 2838, 3, 2, 2, 2, 2841, 2844, 3, 2, 2, 2, 2842, 2840, 3, 2, 2, 2, 2843, 2845, 9, 7, 2, 2, 2844, 2843, 3, 2, 2, 2, 2845, 2846, 3, 2, 2, 2, 2846, 2847, 3, 2, 2, 2, 2846, 2844, 3, 2, 2, 2, 2847, 2851, 3, 2, 2, 2, 2848, 2850, 9, 8, 2, 2, 2849, 2848, 3, 2, 2, 2, 2850, 2853, 3, 2, 2, 2, 2851, 2849, 3, 2, 2, 2, 2851, 2852, 3, 2, 2, 2, 2852, 642, 3, 2, 2, 2, 2853, 2851, 3, 2, 2, 2, 2854, 2855, 9, 9, 2, 2, 2855, 644, 3, 2, 2, 2, 2856, 2857, 9, 10, 2, 2, 2857, 646, 3, 2, 2, 2, 2858, 2866, 7, 36, 2, 2, 2859, 2860, 7, 94, 2, 2, 2860, 2865, 11, 2, 2, 2, 2861, 2862, 7, 36, 2, 2, 2862, 2865, 7, 36, 2, 2, 2863, 2865, 10, 11, 2, 2, 2864, 2859, 3, 2, 2, 2, 2864, 2861, 3, 2, 2, 2, 2864, 2863, 3, 2, 2, 2, 2865, 2868, 3, 2, 2, 2, 2866, 2864, 3, 2, 2, 2, 2866, 2867, 3, 2, 2, 2, 2867, 2869, 3, 2, 2, 2, 2868, 2866, 3, 2, 2, 2, 2869, 2870, 7, 36, 2, 2, 2870, 648, 3, 2, 2, 2, 2871, 2879, 7, 41, 2, 2, 2872, 2873, 7, 94, 2, 2, 2873, 2878, 11, 2, 2, 2, 2874, 2875, 7, 41, 2, 2, 2875, 2878, 7, 41, 2, 2, 2876, 2878, 10, 12, 2, 2, 2877, 2872, 3, 2, 2, 2, 2877, 2874, 3, 2, 2, 2, 2877, 2876, 3, 2, 2, 2, 2878, 2881, 3, 2, 2, 2, 2879, 2877, 3, 2, 2, 2, 2879, 2880, 3, 2, 2, 2, 2880, 2882, 3, 2, 2, 2, 2881, 2879, 3, 2, 2, 2, 2882, 2883, 7, 41, 2, 2, 2883, 650, 3, 2, 2, 2, 2884, 2885, 7, 68, 2, 2, 2885, 2887, 7, 41, 2, 2, 2886, 2888, 9, 13, 2, 2, 2887, 2886, 3, 2, 2, 2, 2888, 2889, 3, 2, 2, 2, 2889, 2887, 3, 2, 2, 2, 2889, 2890, 3, 2, 2, 2, 2890, 2891, 3, 2, 2, 2, 2891, 2892, 7, 41, 2, 2, 2892, 652, 3, 2, 2, 2, 2893, 2901, 7, 98, 2, 2, 2894, 2895, 7, 94, 2, 2, 2895, 2900, 11, 2, 2, 2, 2896, 2897, 7, 98, 2, 2, 2897, 2900, 7, 98, 2, 2, 2898, 2900, 10, 14, 2, 2, 2899, 2894, 3, 2, 2, 2, 2899, 2896, 3, 2, 2, 2, 2899, 2898, 3, 2, 2, 2, 2900, 2903, 3, 2, 2, 2, 2901, 2899, 3, 2, 2, 2, 2901, 2902, 3, 2, 2, 2, 2902, 2904, 3, 2, 2, 2, 2903, 2901, 3, 2, 2, 2, 2904, 2905, 7, 98, 2, 2, 2905, 654, 3, 2, 2, 2, 38, 2, 658, 668, 680, 685, 689, 693, 699, 703, 705, 2753, 2758, 2763, 2765, 2771, 2776, 2784, 2786, 2792, 2799, 2803, 2813, 2818, 2823, 2829, 2834, 2840, 2846, 2851, 2864, 2866, 2877, 2879, 2889, 2899, 2901, 3, 2, 3, 2] \ No newline at end of file diff --git a/src/lib/flinksql/FlinkSqlLexer.js b/src/lib/flinksql/FlinkSqlLexer.js index e454e0b..3269b55 100644 --- a/src/lib/flinksql/FlinkSqlLexer.js +++ b/src/lib/flinksql/FlinkSqlLexer.js @@ -5,7 +5,7 @@ var antlr4 = require('antlr4/index'); var serializedATN = ["\u0003\u608b\ua72a\u8133\ub9ed\u417c\u3be7\u7786\u5964", - "\u0002\u0137\u0aff\b\u0001\u0004\u0002\t\u0002\u0004\u0003\t\u0003\u0004", + "\u0002\u013f\u0b5a\b\u0001\u0004\u0002\t\u0002\u0004\u0003\t\u0003\u0004", "\u0004\t\u0004\u0004\u0005\t\u0005\u0004\u0006\t\u0006\u0004\u0007\t", "\u0007\u0004\b\t\b\u0004\t\t\t\u0004\n\t\n\u0004\u000b\t\u000b\u0004", "\f\t\f\u0004\r\t\r\u0004\u000e\t\u000e\u0004\u000f\t\u000f\u0004\u0010", @@ -81,1730 +81,1791 @@ var serializedATN = ["\u0003\u608b\ua72a\u8133\ub9ed\u417c\u3be7\u7786\u5964", "\u0131\t\u0131\u0004\u0132\t\u0132\u0004\u0133\t\u0133\u0004\u0134\t", "\u0134\u0004\u0135\t\u0135\u0004\u0136\t\u0136\u0004\u0137\t\u0137\u0004", "\u0138\t\u0138\u0004\u0139\t\u0139\u0004\u013a\t\u013a\u0004\u013b\t", - "\u013b\u0004\u013c\t\u013c\u0004\u013d\t\u013d\u0004\u013e\t\u013e\u0003", - "\u0002\u0006\u0002\u027f\n\u0002\r\u0002\u000e\u0002\u0280\u0003\u0002", - "\u0003\u0002\u0003\u0003\u0003\u0003\u0003\u0003\u0003\u0003\u0007\u0003", - "\u0289\n\u0003\f\u0003\u000e\u0003\u028c\u000b\u0003\u0003\u0003\u0003", - "\u0003\u0003\u0003\u0003\u0003\u0003\u0003\u0003\u0004\u0003\u0004\u0003", - "\u0004\u0003\u0004\u0005\u0004\u0297\n\u0004\u0003\u0004\u0007\u0004", - "\u029a\n\u0004\f\u0004\u000e\u0004\u029d\u000b\u0004\u0003\u0004\u0005", - "\u0004\u02a0\n\u0004\u0003\u0004\u0003\u0004\u0005\u0004\u02a4\n\u0004", - "\u0003\u0004\u0003\u0004\u0003\u0004\u0003\u0004\u0005\u0004\u02aa\n", - "\u0004\u0003\u0004\u0003\u0004\u0005\u0004\u02ae\n\u0004\u0005\u0004", - "\u02b0\n\u0004\u0003\u0004\u0003\u0004\u0003\u0005\u0003\u0005\u0003", - "\u0005\u0003\u0005\u0003\u0005\u0003\u0005\u0003\u0005\u0003\u0006\u0003", - "\u0006\u0003\u0006\u0003\u0006\u0003\u0006\u0003\u0007\u0003\u0007\u0003", - "\u0007\u0003\u0007\u0003\b\u0003\b\u0003\b\u0003\t\u0003\t\u0003\t\u0003", - "\t\u0003\n\u0003\n\u0003\n\u0003\n\u0003\u000b\u0003\u000b\u0003\u000b", - "\u0003\u000b\u0003\u000b\u0003\u000b\u0003\u000b\u0003\u000b\u0003\u000b", - "\u0003\f\u0003\f\u0003\f\u0003\f\u0003\f\u0003\f\u0003\r\u0003\r\u0003", - "\r\u0003\r\u0003\r\u0003\r\u0003\u000e\u0003\u000e\u0003\u000e\u0003", + "\u013b\u0004\u013c\t\u013c\u0004\u013d\t\u013d\u0004\u013e\t\u013e\u0004", + "\u013f\t\u013f\u0004\u0140\t\u0140\u0004\u0141\t\u0141\u0004\u0142\t", + "\u0142\u0004\u0143\t\u0143\u0004\u0144\t\u0144\u0004\u0145\t\u0145\u0004", + "\u0146\t\u0146\u0004\u0147\t\u0147\u0003\u0002\u0006\u0002\u0291\n\u0002", + "\r\u0002\u000e\u0002\u0292\u0003\u0002\u0003\u0002\u0003\u0003\u0003", + "\u0003\u0003\u0003\u0003\u0003\u0007\u0003\u029b\n\u0003\f\u0003\u000e", + "\u0003\u029e\u000b\u0003\u0003\u0003\u0003\u0003\u0003\u0003\u0003\u0003", + "\u0003\u0003\u0003\u0004\u0003\u0004\u0003\u0004\u0003\u0004\u0005\u0004", + "\u02a9\n\u0004\u0003\u0004\u0007\u0004\u02ac\n\u0004\f\u0004\u000e\u0004", + "\u02af\u000b\u0004\u0003\u0004\u0005\u0004\u02b2\n\u0004\u0003\u0004", + "\u0003\u0004\u0005\u0004\u02b6\n\u0004\u0003\u0004\u0003\u0004\u0003", + "\u0004\u0003\u0004\u0005\u0004\u02bc\n\u0004\u0003\u0004\u0003\u0004", + "\u0005\u0004\u02c0\n\u0004\u0005\u0004\u02c2\n\u0004\u0003\u0004\u0003", + "\u0004\u0003\u0005\u0003\u0005\u0003\u0005\u0003\u0005\u0003\u0005\u0003", + "\u0005\u0003\u0005\u0003\u0006\u0003\u0006\u0003\u0006\u0003\u0006\u0003", + "\u0006\u0003\u0007\u0003\u0007\u0003\u0007\u0003\u0007\u0003\b\u0003", + "\b\u0003\b\u0003\t\u0003\t\u0003\t\u0003\t\u0003\n\u0003\n\u0003\n\u0003", + "\n\u0003\u000b\u0003\u000b\u0003\u000b\u0003\u000b\u0003\u000b\u0003", + "\u000b\u0003\u000b\u0003\u000b\u0003\u000b\u0003\f\u0003\f\u0003\f\u0003", + "\f\u0003\f\u0003\f\u0003\r\u0003\r\u0003\r\u0003\r\u0003\r\u0003\r\u0003", + "\u000e\u0003\u000e\u0003\u000e\u0003\u000f\u0003\u000f\u0003\u000f\u0003", "\u000f\u0003\u000f\u0003\u000f\u0003\u000f\u0003\u000f\u0003\u000f\u0003", - "\u000f\u0003\u000f\u0003\u000f\u0003\u0010\u0003\u0010\u0003\u0010\u0003", - "\u0010\u0003\u0010\u0003\u0011\u0003\u0011\u0003\u0011\u0003\u0011\u0003", - "\u0011\u0003\u0012\u0003\u0012\u0003\u0012\u0003\u0012\u0003\u0012\u0003", - "\u0012\u0003\u0012\u0003\u0013\u0003\u0013\u0003\u0013\u0003\u0013\u0003", - "\u0013\u0003\u0013\u0003\u0014\u0003\u0014\u0003\u0014\u0003\u0014\u0003", - "\u0014\u0003\u0014\u0003\u0014\u0003\u0015\u0003\u0015\u0003\u0015\u0003", - "\u0015\u0003\u0015\u0003\u0015\u0003\u0016\u0003\u0016\u0003\u0016\u0003", - "\u0017\u0003\u0017\u0003\u0017\u0003\u0018\u0003\u0018\u0003\u0018\u0003", - "\u0018\u0003\u0019\u0003\u0019\u0003\u0019\u0003\u001a\u0003\u001a\u0003", - "\u001a\u0003\u001a\u0003\u001b\u0003\u001b\u0003\u001b\u0003\u001c\u0003", - "\u001c\u0003\u001c\u0003\u001c\u0003\u001c\u0003\u001c\u0003\u001c\u0003", - "\u001d\u0003\u001d\u0003\u001d\u0003\u001d\u0003\u001d\u0003\u001d\u0003", - "\u001d\u0003\u001d\u0003\u001e\u0003\u001e\u0003\u001e\u0003\u001e\u0003", - "\u001e\u0003\u001f\u0003\u001f\u0003\u001f\u0003\u001f\u0003\u001f\u0003", - "\u001f\u0003 \u0003 \u0003 \u0003!\u0003!\u0003!\u0003!\u0003!\u0003", - "\"\u0003\"\u0003\"\u0003\"\u0003\"\u0003\"\u0003#\u0003#\u0003#\u0003", - "#\u0003#\u0003#\u0003$\u0003$\u0003$\u0003$\u0003%\u0003%\u0003%\u0003", - "%\u0003%\u0003&\u0003&\u0003&\u0003&\u0003\'\u0003\'\u0003\'\u0003\'", - "\u0003\'\u0003\'\u0003\'\u0003\'\u0003\'\u0003(\u0003(\u0003(\u0003", - "(\u0003(\u0003)\u0003)\u0003)\u0003)\u0003)\u0003*\u0003*\u0003*\u0003", - "*\u0003*\u0003+\u0003+\u0003+\u0003+\u0003+\u0003,\u0003,\u0003,\u0003", - ",\u0003-\u0003-\u0003-\u0003-\u0003-\u0003.\u0003.\u0003.\u0003.\u0003", - ".\u0003.\u0003/\u0003/\u0003/\u0003/\u0003/\u0003/\u00030\u00030\u0003", - "0\u00030\u00030\u00030\u00031\u00031\u00031\u00031\u00031\u00032\u0003", - "2\u00032\u00032\u00032\u00033\u00033\u00033\u00033\u00033\u00033\u0003", - "4\u00034\u00034\u00034\u00034\u00035\u00035\u00035\u00035\u00035\u0003", - "5\u00035\u00035\u00036\u00036\u00036\u00037\u00037\u00037\u00037\u0003", - "7\u00037\u00038\u00038\u00038\u00038\u00038\u00038\u00038\u00038\u0003", - "9\u00039\u00039\u00039\u00039\u00039\u00039\u0003:\u0003:\u0003:\u0003", - ":\u0003:\u0003;\u0003;\u0003;\u0003;\u0003;\u0003;\u0003;\u0003;\u0003", - ";\u0003;\u0003<\u0003<\u0003<\u0003<\u0003<\u0003<\u0003=\u0003=\u0003", - "=\u0003=\u0003=\u0003>\u0003>\u0003>\u0003>\u0003>\u0003>\u0003>\u0003", - ">\u0003>\u0003>\u0003?\u0003?\u0003?\u0003?\u0003?\u0003?\u0003?\u0003", - "?\u0003?\u0003?\u0003@\u0003@\u0003@\u0003@\u0003@\u0003@\u0003@\u0003", - "@\u0003@\u0003@\u0003A\u0003A\u0003A\u0003A\u0003A\u0003A\u0003A\u0003", - "A\u0003B\u0003B\u0003B\u0003B\u0003B\u0003B\u0003C\u0003C\u0003C\u0003", - "C\u0003C\u0003C\u0003D\u0003D\u0003D\u0003D\u0003D\u0003E\u0003E\u0003", - "E\u0003E\u0003E\u0003F\u0003F\u0003F\u0003F\u0003F\u0003F\u0003F\u0003", - "G\u0003G\u0003G\u0003G\u0003G\u0003G\u0003G\u0003H\u0003H\u0003H\u0003", - "H\u0003H\u0003H\u0003I\u0003I\u0003I\u0003I\u0003I\u0003I\u0003I\u0003", - "I\u0003I\u0003I\u0003J\u0003J\u0003J\u0003J\u0003J\u0003K\u0003K\u0003", - "K\u0003K\u0003K\u0003K\u0003K\u0003K\u0003L\u0003L\u0003L\u0003L\u0003", - "L\u0003L\u0003L\u0003M\u0003M\u0003M\u0003M\u0003M\u0003M\u0003M\u0003", - "N\u0003N\u0003N\u0003N\u0003N\u0003O\u0003O\u0003O\u0003O\u0003O\u0003", - "O\u0003O\u0003O\u0003O\u0003P\u0003P\u0003P\u0003P\u0003P\u0003P\u0003", - "P\u0003P\u0003Q\u0003Q\u0003Q\u0003Q\u0003Q\u0003Q\u0003Q\u0003R\u0003", - "R\u0003R\u0003R\u0003R\u0003R\u0003R\u0003R\u0003S\u0003S\u0003S\u0003", - "S\u0003S\u0003S\u0003S\u0003S\u0003T\u0003T\u0003T\u0003T\u0003T\u0003", - "U\u0003U\u0003U\u0003U\u0003U\u0003V\u0003V\u0003V\u0003V\u0003V\u0003", - "W\u0003W\u0003W\u0003W\u0003W\u0003W\u0003W\u0003X\u0003X\u0003X\u0003", - "X\u0003X\u0003X\u0003X\u0003X\u0003Y\u0003Y\u0003Y\u0003Y\u0003Y\u0003", - "Y\u0003Y\u0003Z\u0003Z\u0003Z\u0003Z\u0003[\u0003[\u0003[\u0003[\u0003", - "[\u0003[\u0003[\u0003[\u0003[\u0003[\u0003[\u0003\\\u0003\\\u0003\\", - "\u0003\\\u0003\\\u0003\\\u0003\\\u0003\\\u0003\\\u0003\\\u0003]\u0003", - "]\u0003]\u0003]\u0003]\u0003^\u0003^\u0003^\u0003^\u0003^\u0003^\u0003", - "_\u0003_\u0003_\u0003_\u0003_\u0003_\u0003_\u0003`\u0003`\u0003`\u0003", - "`\u0003`\u0003`\u0003`\u0003`\u0003`\u0003a\u0003a\u0003a\u0003a\u0003", - "a\u0003a\u0003a\u0003a\u0003a\u0003a\u0003b\u0003b\u0003b\u0003c\u0003", - "c\u0003c\u0003c\u0003c\u0003c\u0003c\u0003c\u0003c\u0003c\u0003c\u0003", - "c\u0003d\u0003d\u0003d\u0003d\u0003d\u0003d\u0003d\u0003d\u0003d\u0003", - "e\u0003e\u0003e\u0003e\u0003e\u0003e\u0003f\u0003f\u0003f\u0003f\u0003", - "f\u0003f\u0003f\u0003g\u0003g\u0003g\u0003g\u0003g\u0003g\u0003g\u0003", - "h\u0003h\u0003h\u0003h\u0003h\u0003h\u0003h\u0003h\u0003i\u0003i\u0003", - "i\u0003i\u0003j\u0003j\u0003j\u0003j\u0003j\u0003j\u0003k\u0003k\u0003", - "k\u0003k\u0003k\u0003l\u0003l\u0003l\u0003l\u0003l\u0003l\u0003m\u0003", - "m\u0003m\u0003m\u0003m\u0003m\u0003m\u0003m\u0003m\u0003m\u0003m\u0003", - "m\u0003n\u0003n\u0003n\u0003n\u0003n\u0003n\u0003n\u0003o\u0003o\u0003", - "o\u0003o\u0003o\u0003o\u0003o\u0003o\u0003o\u0003p\u0003p\u0003p\u0003", - "p\u0003p\u0003p\u0003q\u0003q\u0003q\u0003q\u0003q\u0003q\u0003q\u0003", - "r\u0003r\u0003r\u0003r\u0003r\u0003s\u0003s\u0003s\u0003s\u0003s\u0003", - "s\u0003s\u0003s\u0003t\u0003t\u0003t\u0003t\u0003t\u0003t\u0003t\u0003", - "t\u0003t\u0003u\u0003u\u0003u\u0003v\u0003v\u0003v\u0003v\u0003v\u0003", - "v\u0003v\u0003v\u0003v\u0003w\u0003w\u0003w\u0003w\u0003w\u0003w\u0003", - "w\u0003w\u0003x\u0003x\u0003x\u0003y\u0003y\u0003y\u0003y\u0003y\u0003", - "z\u0003z\u0003z\u0003z\u0003{\u0003{\u0003{\u0003{\u0003{\u0003|\u0003", - "|\u0003|\u0003}\u0003}\u0003}\u0003}\u0003~\u0003~\u0003~\u0003\u007f", - "\u0003\u007f\u0003\u007f\u0003\u007f\u0003\u0080\u0003\u0080\u0003\u0080", - "\u0003\u0080\u0003\u0080\u0003\u0081\u0003\u0081\u0003\u0081\u0003\u0081", - "\u0003\u0081\u0003\u0081\u0003\u0082\u0003\u0082\u0003\u0082\u0003\u0082", - "\u0003\u0082\u0003\u0082\u0003\u0082\u0003\u0082\u0003\u0082\u0003\u0083", - "\u0003\u0083\u0003\u0083\u0003\u0083\u0003\u0083\u0003\u0083\u0003\u0084", - "\u0003\u0084\u0003\u0084\u0003\u0084\u0003\u0084\u0003\u0084\u0003\u0084", - "\u0003\u0084\u0003\u0085\u0003\u0085\u0003\u0085\u0003\u0085\u0003\u0086", - "\u0003\u0086\u0003\u0086\u0003\u0086\u0003\u0086\u0003\u0086\u0003\u0087", - "\u0003\u0087\u0003\u0087\u0003\u0087\u0003\u0087\u0003\u0087\u0003\u0087", - "\u0003\u0087\u0003\u0087\u0003\u0087\u0003\u0088\u0003\u0088\u0003\u0088", - "\u0003\u0088\u0003\u0088\u0003\u0089\u0003\u0089\u0003\u0089\u0003\u0089", + "\u0010\u0003\u0010\u0003\u0010\u0003\u0010\u0003\u0010\u0003\u0011\u0003", + "\u0011\u0003\u0011\u0003\u0011\u0003\u0011\u0003\u0012\u0003\u0012\u0003", + "\u0012\u0003\u0012\u0003\u0012\u0003\u0012\u0003\u0012\u0003\u0013\u0003", + "\u0013\u0003\u0013\u0003\u0013\u0003\u0013\u0003\u0013\u0003\u0014\u0003", + "\u0014\u0003\u0014\u0003\u0014\u0003\u0014\u0003\u0014\u0003\u0014\u0003", + "\u0015\u0003\u0015\u0003\u0015\u0003\u0015\u0003\u0015\u0003\u0015\u0003", + "\u0016\u0003\u0016\u0003\u0016\u0003\u0017\u0003\u0017\u0003\u0017\u0003", + "\u0018\u0003\u0018\u0003\u0018\u0003\u0018\u0003\u0019\u0003\u0019\u0003", + "\u0019\u0003\u001a\u0003\u001a\u0003\u001a\u0003\u001a\u0003\u001b\u0003", + "\u001b\u0003\u001b\u0003\u001c\u0003\u001c\u0003\u001c\u0003\u001c\u0003", + "\u001c\u0003\u001c\u0003\u001c\u0003\u001d\u0003\u001d\u0003\u001d\u0003", + "\u001d\u0003\u001d\u0003\u001d\u0003\u001d\u0003\u001d\u0003\u001e\u0003", + "\u001e\u0003\u001e\u0003\u001e\u0003\u001e\u0003\u001f\u0003\u001f\u0003", + "\u001f\u0003\u001f\u0003\u001f\u0003\u001f\u0003 \u0003 \u0003 \u0003", + "!\u0003!\u0003!\u0003!\u0003!\u0003\"\u0003\"\u0003\"\u0003\"\u0003", + "\"\u0003\"\u0003#\u0003#\u0003#\u0003#\u0003#\u0003#\u0003$\u0003$\u0003", + "$\u0003$\u0003%\u0003%\u0003%\u0003%\u0003%\u0003&\u0003&\u0003&\u0003", + "&\u0003\'\u0003\'\u0003\'\u0003\'\u0003\'\u0003\'\u0003\'\u0003\'\u0003", + "\'\u0003(\u0003(\u0003(\u0003(\u0003(\u0003)\u0003)\u0003)\u0003)\u0003", + ")\u0003*\u0003*\u0003*\u0003*\u0003*\u0003+\u0003+\u0003+\u0003+\u0003", + "+\u0003,\u0003,\u0003,\u0003,\u0003-\u0003-\u0003-\u0003-\u0003-\u0003", + ".\u0003.\u0003.\u0003.\u0003.\u0003.\u0003/\u0003/\u0003/\u0003/\u0003", + "/\u0003/\u00030\u00030\u00030\u00030\u00030\u00030\u00031\u00031\u0003", + "1\u00031\u00031\u00032\u00032\u00032\u00032\u00032\u00033\u00033\u0003", + "3\u00033\u00033\u00033\u00034\u00034\u00034\u00034\u00034\u00035\u0003", + "5\u00035\u00035\u00035\u00035\u00035\u00035\u00036\u00036\u00036\u0003", + "7\u00037\u00037\u00037\u00037\u00037\u00038\u00038\u00038\u00038\u0003", + "8\u00038\u00038\u00038\u00039\u00039\u00039\u00039\u00039\u00039\u0003", + "9\u0003:\u0003:\u0003:\u0003:\u0003:\u0003;\u0003;\u0003;\u0003;\u0003", + ";\u0003;\u0003;\u0003;\u0003;\u0003;\u0003<\u0003<\u0003<\u0003<\u0003", + "<\u0003<\u0003=\u0003=\u0003=\u0003=\u0003=\u0003>\u0003>\u0003>\u0003", + ">\u0003>\u0003>\u0003>\u0003>\u0003>\u0003>\u0003?\u0003?\u0003?\u0003", + "?\u0003?\u0003?\u0003?\u0003?\u0003?\u0003?\u0003@\u0003@\u0003@\u0003", + "@\u0003@\u0003@\u0003@\u0003@\u0003@\u0003@\u0003A\u0003A\u0003A\u0003", + "A\u0003A\u0003A\u0003A\u0003A\u0003B\u0003B\u0003B\u0003B\u0003B\u0003", + "B\u0003C\u0003C\u0003C\u0003C\u0003C\u0003C\u0003D\u0003D\u0003D\u0003", + "D\u0003D\u0003E\u0003E\u0003E\u0003E\u0003E\u0003F\u0003F\u0003F\u0003", + "F\u0003F\u0003F\u0003F\u0003G\u0003G\u0003G\u0003G\u0003G\u0003G\u0003", + "G\u0003H\u0003H\u0003H\u0003H\u0003H\u0003H\u0003I\u0003I\u0003I\u0003", + "I\u0003I\u0003I\u0003I\u0003I\u0003I\u0003I\u0003J\u0003J\u0003J\u0003", + "J\u0003J\u0003K\u0003K\u0003K\u0003K\u0003K\u0003K\u0003K\u0003K\u0003", + "L\u0003L\u0003L\u0003L\u0003L\u0003L\u0003L\u0003M\u0003M\u0003M\u0003", + "M\u0003M\u0003M\u0003M\u0003N\u0003N\u0003N\u0003N\u0003N\u0003O\u0003", + "O\u0003O\u0003O\u0003O\u0003O\u0003O\u0003O\u0003O\u0003P\u0003P\u0003", + "P\u0003P\u0003P\u0003P\u0003P\u0003P\u0003Q\u0003Q\u0003Q\u0003Q\u0003", + "Q\u0003Q\u0003Q\u0003R\u0003R\u0003R\u0003R\u0003R\u0003R\u0003R\u0003", + "R\u0003S\u0003S\u0003S\u0003S\u0003S\u0003S\u0003S\u0003S\u0003T\u0003", + "T\u0003T\u0003T\u0003T\u0003U\u0003U\u0003U\u0003U\u0003U\u0003V\u0003", + "V\u0003V\u0003V\u0003V\u0003W\u0003W\u0003W\u0003W\u0003W\u0003W\u0003", + "W\u0003X\u0003X\u0003X\u0003X\u0003X\u0003X\u0003X\u0003X\u0003Y\u0003", + "Y\u0003Y\u0003Y\u0003Y\u0003Y\u0003Y\u0003Z\u0003Z\u0003Z\u0003Z\u0003", + "[\u0003[\u0003[\u0003[\u0003[\u0003[\u0003[\u0003[\u0003[\u0003[\u0003", + "[\u0003\\\u0003\\\u0003\\\u0003\\\u0003\\\u0003\\\u0003\\\u0003\\\u0003", + "\\\u0003\\\u0003]\u0003]\u0003]\u0003]\u0003]\u0003^\u0003^\u0003^\u0003", + "^\u0003^\u0003^\u0003_\u0003_\u0003_\u0003_\u0003_\u0003_\u0003_\u0003", + "`\u0003`\u0003`\u0003`\u0003`\u0003`\u0003`\u0003`\u0003`\u0003a\u0003", + "a\u0003a\u0003a\u0003a\u0003a\u0003a\u0003a\u0003a\u0003a\u0003b\u0003", + "b\u0003b\u0003c\u0003c\u0003c\u0003c\u0003c\u0003c\u0003c\u0003c\u0003", + "c\u0003c\u0003c\u0003c\u0003d\u0003d\u0003d\u0003d\u0003d\u0003d\u0003", + "d\u0003d\u0003d\u0003e\u0003e\u0003e\u0003e\u0003e\u0003e\u0003f\u0003", + "f\u0003f\u0003f\u0003f\u0003f\u0003f\u0003g\u0003g\u0003g\u0003g\u0003", + "g\u0003g\u0003g\u0003h\u0003h\u0003h\u0003h\u0003h\u0003h\u0003h\u0003", + "h\u0003i\u0003i\u0003i\u0003i\u0003j\u0003j\u0003j\u0003j\u0003j\u0003", + "j\u0003k\u0003k\u0003k\u0003k\u0003k\u0003l\u0003l\u0003l\u0003l\u0003", + "l\u0003l\u0003m\u0003m\u0003m\u0003m\u0003m\u0003m\u0003m\u0003m\u0003", + "m\u0003m\u0003m\u0003m\u0003n\u0003n\u0003n\u0003n\u0003n\u0003n\u0003", + "n\u0003o\u0003o\u0003o\u0003o\u0003o\u0003o\u0003o\u0003o\u0003o\u0003", + "p\u0003p\u0003p\u0003p\u0003p\u0003p\u0003q\u0003q\u0003q\u0003q\u0003", + "q\u0003q\u0003q\u0003r\u0003r\u0003r\u0003r\u0003r\u0003s\u0003s\u0003", + "s\u0003s\u0003s\u0003s\u0003s\u0003s\u0003t\u0003t\u0003t\u0003t\u0003", + "t\u0003t\u0003t\u0003t\u0003t\u0003u\u0003u\u0003u\u0003v\u0003v\u0003", + "v\u0003v\u0003v\u0003v\u0003v\u0003v\u0003v\u0003w\u0003w\u0003w\u0003", + "w\u0003w\u0003w\u0003w\u0003w\u0003x\u0003x\u0003x\u0003y\u0003y\u0003", + "y\u0003y\u0003y\u0003z\u0003z\u0003z\u0003z\u0003{\u0003{\u0003{\u0003", + "{\u0003{\u0003|\u0003|\u0003|\u0003}\u0003}\u0003}\u0003}\u0003~\u0003", + "~\u0003~\u0003\u007f\u0003\u007f\u0003\u007f\u0003\u007f\u0003\u0080", + "\u0003\u0080\u0003\u0080\u0003\u0080\u0003\u0080\u0003\u0081\u0003\u0081", + "\u0003\u0081\u0003\u0081\u0003\u0081\u0003\u0081\u0003\u0082\u0003\u0082", + "\u0003\u0082\u0003\u0082\u0003\u0082\u0003\u0082\u0003\u0082\u0003\u0082", + "\u0003\u0082\u0003\u0083\u0003\u0083\u0003\u0083\u0003\u0083\u0003\u0083", + "\u0003\u0083\u0003\u0084\u0003\u0084\u0003\u0084\u0003\u0084\u0003\u0084", + "\u0003\u0084\u0003\u0084\u0003\u0084\u0003\u0085\u0003\u0085\u0003\u0085", + "\u0003\u0085\u0003\u0086\u0003\u0086\u0003\u0086\u0003\u0086\u0003\u0086", + "\u0003\u0086\u0003\u0087\u0003\u0087\u0003\u0087\u0003\u0087\u0003\u0087", + "\u0003\u0087\u0003\u0087\u0003\u0087\u0003\u0087\u0003\u0087\u0003\u0088", + "\u0003\u0088\u0003\u0088\u0003\u0088\u0003\u0088\u0003\u0089\u0003\u0089", "\u0003\u0089\u0003\u0089\u0003\u0089\u0003\u0089\u0003\u0089\u0003\u0089", - "\u0003\u0089\u0003\u0089\u0003\u008a\u0003\u008a\u0003\u008a\u0003\u008a", + "\u0003\u0089\u0003\u0089\u0003\u0089\u0003\u0089\u0003\u008a\u0003\u008a", + "\u0003\u008a\u0003\u008a\u0003\u008b\u0003\u008b\u0003\u008b\u0003\u008b", "\u0003\u008b\u0003\u008b\u0003\u008b\u0003\u008b\u0003\u008b\u0003\u008b", - "\u0003\u008b\u0003\u008b\u0003\u008b\u0003\u008b\u0003\u008b\u0003\u008c", - "\u0003\u008c\u0003\u008c\u0003\u008c\u0003\u008c\u0003\u008c\u0003\u008c", - "\u0003\u008d\u0003\u008d\u0003\u008d\u0003\u008d\u0003\u008e\u0003\u008e", - "\u0003\u008e\u0003\u008f\u0003\u008f\u0003\u008f\u0003\u008f\u0003\u008f", - "\u0003\u0090\u0003\u0090\u0003\u0090\u0003\u0090\u0003\u0090\u0003\u0090", - "\u0003\u0090\u0003\u0090\u0003\u0091\u0003\u0091\u0003\u0091\u0003\u0091", + "\u0003\u008b\u0003\u008c\u0003\u008c\u0003\u008c\u0003\u008c\u0003\u008c", + "\u0003\u008c\u0003\u008c\u0003\u008d\u0003\u008d\u0003\u008d\u0003\u008d", + "\u0003\u008e\u0003\u008e\u0003\u008e\u0003\u008f\u0003\u008f\u0003\u008f", + "\u0003\u008f\u0003\u008f\u0003\u0090\u0003\u0090\u0003\u0090\u0003\u0090", + "\u0003\u0090\u0003\u0090\u0003\u0090\u0003\u0090\u0003\u0091\u0003\u0091", "\u0003\u0091\u0003\u0091\u0003\u0091\u0003\u0091\u0003\u0091\u0003\u0091", - "\u0003\u0091\u0003\u0092\u0003\u0092\u0003\u0092\u0003\u0092\u0003\u0092", - "\u0003\u0092\u0003\u0092\u0003\u0092\u0003\u0092\u0003\u0092\u0003\u0093", - "\u0003\u0093\u0003\u0093\u0003\u0093\u0003\u0093\u0003\u0093\u0003\u0093", - "\u0003\u0093\u0003\u0093\u0003\u0093\u0003\u0094\u0003\u0094\u0003\u0094", - "\u0003\u0094\u0003\u0094\u0003\u0094\u0003\u0094\u0003\u0095\u0003\u0095", - "\u0003\u0095\u0003\u0095\u0003\u0095\u0003\u0095\u0003\u0096\u0003\u0096", - "\u0003\u0096\u0003\u0096\u0003\u0096\u0003\u0096\u0003\u0097\u0003\u0097", + "\u0003\u0091\u0003\u0091\u0003\u0091\u0003\u0092\u0003\u0092\u0003\u0092", + "\u0003\u0092\u0003\u0092\u0003\u0092\u0003\u0092\u0003\u0092\u0003\u0092", + "\u0003\u0092\u0003\u0093\u0003\u0093\u0003\u0093\u0003\u0093\u0003\u0093", + "\u0003\u0093\u0003\u0093\u0003\u0093\u0003\u0093\u0003\u0093\u0003\u0094", + "\u0003\u0094\u0003\u0094\u0003\u0094\u0003\u0094\u0003\u0094\u0003\u0094", + "\u0003\u0095\u0003\u0095\u0003\u0095\u0003\u0095\u0003\u0095\u0003\u0095", + "\u0003\u0096\u0003\u0096\u0003\u0096\u0003\u0096\u0003\u0096\u0003\u0096", "\u0003\u0097\u0003\u0097\u0003\u0097\u0003\u0097\u0003\u0097\u0003\u0097", "\u0003\u0097\u0003\u0097\u0003\u0097\u0003\u0097\u0003\u0097\u0003\u0097", - "\u0003\u0097\u0003\u0097\u0003\u0098\u0003\u0098\u0003\u0098\u0003\u0098", + "\u0003\u0097\u0003\u0097\u0003\u0097\u0003\u0097\u0003\u0098\u0003\u0098", "\u0003\u0098\u0003\u0098\u0003\u0098\u0003\u0098\u0003\u0098\u0003\u0098", - "\u0003\u0098\u0003\u0098\u0003\u0098\u0003\u0099\u0003\u0099\u0003\u0099", + "\u0003\u0098\u0003\u0098\u0003\u0098\u0003\u0098\u0003\u0098\u0003\u0099", + "\u0003\u0099\u0003\u0099\u0003\u0099\u0003\u0099\u0003\u0099\u0003\u0099", "\u0003\u0099\u0003\u0099\u0003\u0099\u0003\u0099\u0003\u0099\u0003\u0099", - "\u0003\u0099\u0003\u0099\u0003\u0099\u0003\u0099\u0003\u009a\u0003\u009a", "\u0003\u009a\u0003\u009a\u0003\u009a\u0003\u009a\u0003\u009a\u0003\u009a", - "\u0003\u009a\u0003\u009a\u0003\u009b\u0003\u009b\u0003\u009b\u0003\u009b", - "\u0003\u009b\u0003\u009b\u0003\u009b\u0003\u009c\u0003\u009c\u0003\u009c", + "\u0003\u009a\u0003\u009a\u0003\u009a\u0003\u009a\u0003\u009b\u0003\u009b", + "\u0003\u009b\u0003\u009b\u0003\u009b\u0003\u009b\u0003\u009b\u0003\u009c", "\u0003\u009c\u0003\u009c\u0003\u009c\u0003\u009c\u0003\u009c\u0003\u009c", - "\u0003\u009c\u0003\u009c\u0003\u009d\u0003\u009d\u0003\u009d\u0003\u009d", + "\u0003\u009c\u0003\u009c\u0003\u009c\u0003\u009c\u0003\u009d\u0003\u009d", "\u0003\u009d\u0003\u009d\u0003\u009d\u0003\u009d\u0003\u009d\u0003\u009d", - "\u0003\u009d\u0003\u009e\u0003\u009e\u0003\u009e\u0003\u009e\u0003\u009e", - "\u0003\u009e\u0003\u009f\u0003\u009f\u0003\u009f\u0003\u009f\u0003\u009f", - "\u0003\u00a0\u0003\u00a0\u0003\u00a0\u0003\u00a0\u0003\u00a0\u0003\u00a0", - "\u0003\u00a0\u0003\u00a0\u0003\u00a1\u0003\u00a1\u0003\u00a1\u0003\u00a1", - "\u0003\u00a1\u0003\u00a1\u0003\u00a2\u0003\u00a2\u0003\u00a2\u0003\u00a2", + "\u0003\u009d\u0003\u009d\u0003\u009d\u0003\u009e\u0003\u009e\u0003\u009e", + "\u0003\u009e\u0003\u009e\u0003\u009e\u0003\u009f\u0003\u009f\u0003\u009f", + "\u0003\u009f\u0003\u009f\u0003\u00a0\u0003\u00a0\u0003\u00a0\u0003\u00a0", + "\u0003\u00a0\u0003\u00a0\u0003\u00a0\u0003\u00a0\u0003\u00a1\u0003\u00a1", + "\u0003\u00a1\u0003\u00a1\u0003\u00a1\u0003\u00a1\u0003\u00a2\u0003\u00a2", "\u0003\u00a2\u0003\u00a2\u0003\u00a2\u0003\u00a2\u0003\u00a2\u0003\u00a2", - "\u0003\u00a3\u0003\u00a3\u0003\u00a3\u0003\u00a3\u0003\u00a3\u0003\u00a3", - "\u0003\u00a3\u0003\u00a3\u0003\u00a3\u0003\u00a4\u0003\u00a4\u0003\u00a4", + "\u0003\u00a2\u0003\u00a2\u0003\u00a3\u0003\u00a3\u0003\u00a3\u0003\u00a3", + "\u0003\u00a3\u0003\u00a3\u0003\u00a3\u0003\u00a3\u0003\u00a3\u0003\u00a4", "\u0003\u00a4\u0003\u00a4\u0003\u00a4\u0003\u00a4\u0003\u00a4\u0003\u00a4", - "\u0003\u00a5\u0003\u00a5\u0003\u00a5\u0003\u00a5\u0003\u00a5\u0003\u00a5", - "\u0003\u00a5\u0003\u00a5\u0003\u00a6\u0003\u00a6\u0003\u00a6\u0003\u00a6", - "\u0003\u00a6\u0003\u00a6\u0003\u00a7\u0003\u00a7\u0003\u00a7\u0003\u00a7", - "\u0003\u00a7\u0003\u00a7\u0003\u00a8\u0003\u00a8\u0003\u00a8\u0003\u00a8", - "\u0003\u00a8\u0003\u00a8\u0003\u00a8\u0003\u00a8\u0003\u00a9\u0003\u00a9", - "\u0003\u00a9\u0003\u00a9\u0003\u00a9\u0003\u00aa\u0003\u00aa\u0003\u00aa", + "\u0003\u00a4\u0003\u00a4\u0003\u00a5\u0003\u00a5\u0003\u00a5\u0003\u00a5", + "\u0003\u00a5\u0003\u00a5\u0003\u00a5\u0003\u00a5\u0003\u00a6\u0003\u00a6", + "\u0003\u00a6\u0003\u00a6\u0003\u00a6\u0003\u00a6\u0003\u00a7\u0003\u00a7", + "\u0003\u00a7\u0003\u00a7\u0003\u00a7\u0003\u00a7\u0003\u00a8\u0003\u00a8", + "\u0003\u00a8\u0003\u00a8\u0003\u00a8\u0003\u00a8\u0003\u00a8\u0003\u00a8", + "\u0003\u00a9\u0003\u00a9\u0003\u00a9\u0003\u00a9\u0003\u00a9\u0003\u00aa", "\u0003\u00aa\u0003\u00aa\u0003\u00aa\u0003\u00aa\u0003\u00aa\u0003\u00aa", - "\u0003\u00aa\u0003\u00ab\u0003\u00ab\u0003\u00ab\u0003\u00ab\u0003\u00ab", - "\u0003\u00ab\u0003\u00ab\u0003\u00ac\u0003\u00ac\u0003\u00ac\u0003\u00ac", + "\u0003\u00aa\u0003\u00aa\u0003\u00aa\u0003\u00ab\u0003\u00ab\u0003\u00ab", + "\u0003\u00ab\u0003\u00ab\u0003\u00ab\u0003\u00ab\u0003\u00ac\u0003\u00ac", "\u0003\u00ac\u0003\u00ac\u0003\u00ac\u0003\u00ac\u0003\u00ac\u0003\u00ac", - "\u0003\u00ad\u0003\u00ad\u0003\u00ad\u0003\u00ad\u0003\u00ad\u0003\u00ad", - "\u0003\u00ad\u0003\u00ad\u0003\u00ae\u0003\u00ae\u0003\u00ae\u0003\u00ae", - "\u0003\u00ae\u0003\u00ae\u0003\u00af\u0003\u00af\u0003\u00af\u0003\u00af", + "\u0003\u00ac\u0003\u00ac\u0003\u00ad\u0003\u00ad\u0003\u00ad\u0003\u00ad", + "\u0003\u00ad\u0003\u00ad\u0003\u00ad\u0003\u00ad\u0003\u00ae\u0003\u00ae", + "\u0003\u00ae\u0003\u00ae\u0003\u00ae\u0003\u00ae\u0003\u00af\u0003\u00af", + "\u0003\u00af\u0003\u00af\u0003\u00af\u0003\u00af\u0003\u00af\u0003\u00af", "\u0003\u00af\u0003\u00af\u0003\u00af\u0003\u00af\u0003\u00af\u0003\u00af", - "\u0003\u00af\u0003\u00af\u0003\u00af\u0003\u00af\u0003\u00b0\u0003\u00b0", "\u0003\u00b0\u0003\u00b0\u0003\u00b0\u0003\u00b0\u0003\u00b0\u0003\u00b0", - "\u0003\u00b0\u0003\u00b0\u0003\u00b0\u0003\u00b0\u0003\u00b0\u0003\u00b1", - "\u0003\u00b1\u0003\u00b1\u0003\u00b1\u0003\u00b1\u0003\u00b1\u0003\u00b1", - "\u0003\u00b1\u0003\u00b2\u0003\u00b2\u0003\u00b2\u0003\u00b2\u0003\u00b2", - "\u0003\u00b2\u0003\u00b2\u0003\u00b3\u0003\u00b3\u0003\u00b3\u0003\u00b3", - "\u0003\u00b3\u0003\u00b3\u0003\u00b3\u0003\u00b4\u0003\u00b4\u0003\u00b4", + "\u0003\u00b0\u0003\u00b0\u0003\u00b0\u0003\u00b0\u0003\u00b0\u0003\u00b0", + "\u0003\u00b0\u0003\u00b1\u0003\u00b1\u0003\u00b1\u0003\u00b1\u0003\u00b1", + "\u0003\u00b1\u0003\u00b1\u0003\u00b1\u0003\u00b2\u0003\u00b2\u0003\u00b2", + "\u0003\u00b2\u0003\u00b2\u0003\u00b2\u0003\u00b2\u0003\u00b3\u0003\u00b3", + "\u0003\u00b3\u0003\u00b3\u0003\u00b3\u0003\u00b3\u0003\u00b3\u0003\u00b4", "\u0003\u00b4\u0003\u00b4\u0003\u00b4\u0003\u00b4\u0003\u00b4\u0003\u00b4", - "\u0003\u00b4\u0003\u00b4\u0003\u00b4\u0003\u00b5\u0003\u00b5\u0003\u00b5", + "\u0003\u00b4\u0003\u00b4\u0003\u00b4\u0003\u00b4\u0003\u00b4\u0003\u00b5", "\u0003\u00b5\u0003\u00b5\u0003\u00b5\u0003\u00b5\u0003\u00b5\u0003\u00b5", - "\u0003\u00b6\u0003\u00b6\u0003\u00b6\u0003\u00b6\u0003\u00b6\u0003\u00b6", - "\u0003\u00b6\u0003\u00b6\u0003\u00b6\u0003\u00b7\u0003\u00b7\u0003\u00b7", - "\u0003\u00b7\u0003\u00b7\u0003\u00b7\u0003\u00b7\u0003\u00b7\u0003\u00b8", - "\u0003\u00b8\u0003\u00b8\u0003\u00b8\u0003\u00b8\u0003\u00b8\u0003\u00b8", - "\u0003\u00b8\u0003\u00b8\u0003\u00b8\u0003\u00b9\u0003\u00b9\u0003\u00b9", + "\u0003\u00b5\u0003\u00b5\u0003\u00b6\u0003\u00b6\u0003\u00b6\u0003\u00b6", + "\u0003\u00b6\u0003\u00b6\u0003\u00b6\u0003\u00b6\u0003\u00b6\u0003\u00b7", + "\u0003\u00b7\u0003\u00b7\u0003\u00b7\u0003\u00b7\u0003\u00b7\u0003\u00b7", + "\u0003\u00b7\u0003\u00b8\u0003\u00b8\u0003\u00b8\u0003\u00b8\u0003\u00b8", + "\u0003\u00b8\u0003\u00b8\u0003\u00b8\u0003\u00b8\u0003\u00b8\u0003\u00b9", "\u0003\u00b9\u0003\u00b9\u0003\u00b9\u0003\u00b9\u0003\u00b9\u0003\u00b9", - "\u0003\u00b9\u0003\u00b9\u0003\u00ba\u0003\u00ba\u0003\u00ba\u0003\u00ba", - "\u0003\u00ba\u0003\u00ba\u0003\u00bb\u0003\u00bb\u0003\u00bb\u0003\u00bb", - "\u0003\u00bb\u0003\u00bb\u0003\u00bb\u0003\u00bb\u0003\u00bc\u0003\u00bc", + "\u0003\u00b9\u0003\u00b9\u0003\u00b9\u0003\u00b9\u0003\u00ba\u0003\u00ba", + "\u0003\u00ba\u0003\u00ba\u0003\u00ba\u0003\u00ba\u0003\u00bb\u0003\u00bb", + "\u0003\u00bb\u0003\u00bb\u0003\u00bb\u0003\u00bb\u0003\u00bb\u0003\u00bb", "\u0003\u00bc\u0003\u00bc\u0003\u00bc\u0003\u00bc\u0003\u00bc\u0003\u00bc", - "\u0003\u00bc\u0003\u00bc\u0003\u00bc\u0003\u00bc\u0003\u00bd\u0003\u00bd", - "\u0003\u00bd\u0003\u00bd\u0003\u00bd\u0003\u00bd\u0003\u00bd\u0003\u00be", - "\u0003\u00be\u0003\u00be\u0003\u00be\u0003\u00be\u0003\u00be\u0003\u00be", - "\u0003\u00be\u0003\u00bf\u0003\u00bf\u0003\u00bf\u0003\u00bf\u0003\u00bf", - "\u0003\u00bf\u0003\u00bf\u0003\u00bf\u0003\u00bf\u0003\u00c0\u0003\u00c0", - "\u0003\u00c0\u0003\u00c0\u0003\u00c0\u0003\u00c0\u0003\u00c0\u0003\u00c0", - "\u0003\u00c0\u0003\u00c0\u0003\u00c1\u0003\u00c1\u0003\u00c1\u0003\u00c1", + "\u0003\u00bc\u0003\u00bc\u0003\u00bc\u0003\u00bc\u0003\u00bc\u0003\u00bc", + "\u0003\u00bd\u0003\u00bd\u0003\u00bd\u0003\u00bd\u0003\u00bd\u0003\u00bd", + "\u0003\u00bd\u0003\u00be\u0003\u00be\u0003\u00be\u0003\u00be\u0003\u00be", + "\u0003\u00be\u0003\u00be\u0003\u00be\u0003\u00bf\u0003\u00bf\u0003\u00bf", + "\u0003\u00bf\u0003\u00bf\u0003\u00bf\u0003\u00bf\u0003\u00bf\u0003\u00bf", + "\u0003\u00bf\u0003\u00bf\u0003\u00c0\u0003\u00c0\u0003\u00c0\u0003\u00c0", + "\u0003\u00c0\u0003\u00c0\u0003\u00c0\u0003\u00c0\u0003\u00c0\u0003\u00c1", + "\u0003\u00c1\u0003\u00c1\u0003\u00c1\u0003\u00c1\u0003\u00c1\u0003\u00c1", "\u0003\u00c1\u0003\u00c1\u0003\u00c1\u0003\u00c2\u0003\u00c2\u0003\u00c2", - "\u0003\u00c2\u0003\u00c2\u0003\u00c2\u0003\u00c3\u0003\u00c3\u0003\u00c3", - "\u0003\u00c3\u0003\u00c3\u0003\u00c3\u0003\u00c3\u0003\u00c3\u0003\u00c3", - "\u0003\u00c3\u0003\u00c3\u0003\u00c3\u0003\u00c4\u0003\u00c4\u0003\u00c4", + "\u0003\u00c2\u0003\u00c2\u0003\u00c2\u0003\u00c2\u0003\u00c3\u0003\u00c3", + "\u0003\u00c3\u0003\u00c3\u0003\u00c3\u0003\u00c3\u0003\u00c4\u0003\u00c4", "\u0003\u00c4\u0003\u00c4\u0003\u00c4\u0003\u00c4\u0003\u00c4\u0003\u00c4", "\u0003\u00c4\u0003\u00c4\u0003\u00c4\u0003\u00c4\u0003\u00c5\u0003\u00c5", "\u0003\u00c5\u0003\u00c5\u0003\u00c5\u0003\u00c5\u0003\u00c5\u0003\u00c5", - "\u0003\u00c5\u0003\u00c6\u0003\u00c6\u0003\u00c6\u0003\u00c6\u0003\u00c6", - "\u0003\u00c6\u0003\u00c6\u0003\u00c6\u0003\u00c6\u0003\u00c6\u0003\u00c7", - "\u0003\u00c7\u0003\u00c7\u0003\u00c7\u0003\u00c8\u0003\u00c8\u0003\u00c8", - "\u0003\u00c8\u0003\u00c8\u0003\u00c8\u0003\u00c8\u0003\u00c8\u0003\u00c8", + "\u0003\u00c5\u0003\u00c5\u0003\u00c5\u0003\u00c5\u0003\u00c5\u0003\u00c6", + "\u0003\u00c6\u0003\u00c6\u0003\u00c6\u0003\u00c6\u0003\u00c6\u0003\u00c6", + "\u0003\u00c6\u0003\u00c6\u0003\u00c7\u0003\u00c7\u0003\u00c7\u0003\u00c7", + "\u0003\u00c7\u0003\u00c7\u0003\u00c7\u0003\u00c7\u0003\u00c7\u0003\u00c7", + "\u0003\u00c8\u0003\u00c8\u0003\u00c8\u0003\u00c8\u0003\u00c9\u0003\u00c9", "\u0003\u00c9\u0003\u00c9\u0003\u00c9\u0003\u00c9\u0003\u00c9\u0003\u00c9", - "\u0003\u00c9\u0003\u00c9\u0003\u00ca\u0003\u00ca\u0003\u00ca\u0003\u00ca", - "\u0003\u00ca\u0003\u00ca\u0003\u00ca\u0003\u00ca\u0003\u00cb\u0003\u00cb", - "\u0003\u00cb\u0003\u00cb\u0003\u00cb\u0003\u00cc\u0003\u00cc\u0003\u00cc", - "\u0003\u00cc\u0003\u00cc\u0003\u00cc\u0003\u00cc\u0003\u00cc\u0003\u00cc", - "\u0003\u00cc\u0003\u00cc\u0003\u00cd\u0003\u00cd\u0003\u00cd\u0003\u00cd", + "\u0003\u00c9\u0003\u00ca\u0003\u00ca\u0003\u00ca\u0003\u00ca\u0003\u00ca", + "\u0003\u00ca\u0003\u00ca\u0003\u00ca\u0003\u00cb\u0003\u00cb\u0003\u00cb", + "\u0003\u00cb\u0003\u00cb\u0003\u00cb\u0003\u00cb\u0003\u00cb\u0003\u00cc", + "\u0003\u00cc\u0003\u00cc\u0003\u00cc\u0003\u00cc\u0003\u00cd\u0003\u00cd", "\u0003\u00cd\u0003\u00cd\u0003\u00cd\u0003\u00cd\u0003\u00cd\u0003\u00cd", - "\u0003\u00cd\u0003\u00cd\u0003\u00ce\u0003\u00ce\u0003\u00ce\u0003\u00ce", - "\u0003\u00ce\u0003\u00ce\u0003\u00ce\u0003\u00ce\u0003\u00ce\u0003\u00cf", + "\u0003\u00cd\u0003\u00cd\u0003\u00cd\u0003\u00ce\u0003\u00ce\u0003\u00ce", + "\u0003\u00ce\u0003\u00ce\u0003\u00ce\u0003\u00ce\u0003\u00ce\u0003\u00ce", + "\u0003\u00ce\u0003\u00ce\u0003\u00ce\u0003\u00cf\u0003\u00cf\u0003\u00cf", "\u0003\u00cf\u0003\u00cf\u0003\u00cf\u0003\u00cf\u0003\u00cf\u0003\u00cf", - "\u0003\u00cf\u0003\u00d0\u0003\u00d0\u0003\u00d0\u0003\u00d0\u0003\u00d0", + "\u0003\u00d0\u0003\u00d0\u0003\u00d0\u0003\u00d0\u0003\u00d0\u0003\u00d0", "\u0003\u00d0\u0003\u00d0\u0003\u00d1\u0003\u00d1\u0003\u00d1\u0003\u00d1", - "\u0003\u00d1\u0003\u00d1\u0003\u00d2\u0003\u00d2\u0003\u00d2\u0003\u00d2", - "\u0003\u00d2\u0003\u00d3\u0003\u00d3\u0003\u00d3\u0003\u00d3\u0003\u00d3", + "\u0003\u00d1\u0003\u00d1\u0003\u00d1\u0003\u00d2\u0003\u00d2\u0003\u00d2", + "\u0003\u00d2\u0003\u00d2\u0003\u00d2\u0003\u00d3\u0003\u00d3\u0003\u00d3", "\u0003\u00d3\u0003\u00d3\u0003\u00d4\u0003\u00d4\u0003\u00d4\u0003\u00d4", - "\u0003\u00d4\u0003\u00d5\u0003\u00d5\u0003\u00d5\u0003\u00d5\u0003\u00d5", + "\u0003\u00d4\u0003\u00d4\u0003\u00d4\u0003\u00d5\u0003\u00d5\u0003\u00d5", "\u0003\u00d5\u0003\u00d5\u0003\u00d6\u0003\u00d6\u0003\u00d6\u0003\u00d6", - "\u0003\u00d6\u0003\u00d6\u0003\u00d6\u0003\u00d6\u0003\u00d7\u0003\u00d7", + "\u0003\u00d6\u0003\u00d6\u0003\u00d6\u0003\u00d7\u0003\u00d7\u0003\u00d7", "\u0003\u00d7\u0003\u00d7\u0003\u00d7\u0003\u00d7\u0003\u00d7\u0003\u00d8", "\u0003\u00d8\u0003\u00d8\u0003\u00d8\u0003\u00d8\u0003\u00d8\u0003\u00d8", - "\u0003\u00d9\u0003\u00d9\u0003\u00d9\u0003\u00d9\u0003\u00d9\u0003\u00da", - "\u0003\u00da\u0003\u00da\u0003\u00da\u0003\u00da\u0003\u00db\u0003\u00db", - "\u0003\u00db\u0003\u00db\u0003\u00db\u0003\u00db\u0003\u00dc\u0003\u00dc", - "\u0003\u00dc\u0003\u00dc\u0003\u00dc\u0003\u00dc\u0003\u00dc\u0003\u00dc", - "\u0003\u00dc\u0003\u00dc\u0003\u00dc\u0003\u00dc\u0003\u00dd\u0003\u00dd", + "\u0003\u00d9\u0003\u00d9\u0003\u00d9\u0003\u00d9\u0003\u00d9\u0003\u00d9", + "\u0003\u00d9\u0003\u00da\u0003\u00da\u0003\u00da\u0003\u00da\u0003\u00da", + "\u0003\u00db\u0003\u00db\u0003\u00db\u0003\u00db\u0003\u00db\u0003\u00dc", + "\u0003\u00dc\u0003\u00dc\u0003\u00dc\u0003\u00dc\u0003\u00dc\u0003\u00dd", "\u0003\u00dd\u0003\u00dd\u0003\u00dd\u0003\u00dd\u0003\u00dd\u0003\u00dd", - "\u0003\u00dd\u0003\u00dd\u0003\u00dd\u0003\u00de\u0003\u00de\u0003\u00de", + "\u0003\u00dd\u0003\u00dd\u0003\u00dd\u0003\u00dd\u0003\u00dd\u0003\u00de", "\u0003\u00de\u0003\u00de\u0003\u00de\u0003\u00de\u0003\u00de\u0003\u00de", "\u0003\u00de\u0003\u00de\u0003\u00de\u0003\u00de\u0003\u00df\u0003\u00df", - "\u0003\u00df\u0003\u00df\u0003\u00df\u0003\u00df\u0003\u00e0\u0003\u00e0", - "\u0003\u00e0\u0003\u00e0\u0003\u00e0\u0003\u00e0\u0003\u00e0\u0003\u00e0", + "\u0003\u00df\u0003\u00df\u0003\u00df\u0003\u00df\u0003\u00df\u0003\u00df", + "\u0003\u00df\u0003\u00df\u0003\u00df\u0003\u00df\u0003\u00df\u0003\u00e0", + "\u0003\u00e0\u0003\u00e0\u0003\u00e0\u0003\u00e0\u0003\u00e0\u0003\u00e1", "\u0003\u00e1\u0003\u00e1\u0003\u00e1\u0003\u00e1\u0003\u00e1\u0003\u00e1", - "\u0003\u00e2\u0003\u00e2\u0003\u00e2\u0003\u00e2\u0003\u00e2\u0003\u00e2", + "\u0003\u00e1\u0003\u00e2\u0003\u00e2\u0003\u00e2\u0003\u00e2\u0003\u00e2", "\u0003\u00e2\u0003\u00e3\u0003\u00e3\u0003\u00e3\u0003\u00e3\u0003\u00e3", - "\u0003\u00e4\u0003\u00e4\u0003\u00e4\u0003\u00e4\u0003\u00e4\u0003\u00e4", - "\u0003\u00e5\u0003\u00e5\u0003\u00e5\u0003\u00e5\u0003\u00e5\u0003\u00e5", + "\u0003\u00e3\u0003\u00e3\u0003\u00e4\u0003\u00e4\u0003\u00e4\u0003\u00e4", + "\u0003\u00e4\u0003\u00e5\u0003\u00e5\u0003\u00e5\u0003\u00e5\u0003\u00e5", "\u0003\u00e5\u0003\u00e6\u0003\u00e6\u0003\u00e6\u0003\u00e6\u0003\u00e6", - "\u0003\u00e6\u0003\u00e6\u0003\u00e6\u0003\u00e6\u0003\u00e6\u0003\u00e7", + "\u0003\u00e6\u0003\u00e6\u0003\u00e7\u0003\u00e7\u0003\u00e7\u0003\u00e7", "\u0003\u00e7\u0003\u00e7\u0003\u00e7\u0003\u00e7\u0003\u00e7\u0003\u00e7", "\u0003\u00e8\u0003\u00e8\u0003\u00e8\u0003\u00e8\u0003\u00e8\u0003\u00e8", - "\u0003\u00e8\u0003\u00e8\u0003\u00e8\u0003\u00e8\u0003\u00e8\u0003\u00e8", - "\u0003\u00e8\u0003\u00e8\u0003\u00e8\u0003\u00e8\u0003\u00e9\u0003\u00e9", + "\u0003\u00e8\u0003\u00e9\u0003\u00e9\u0003\u00e9\u0003\u00e9\u0003\u00e9", "\u0003\u00e9\u0003\u00e9\u0003\u00e9\u0003\u00e9\u0003\u00e9\u0003\u00e9", - "\u0003\u00e9\u0003\u00ea\u0003\u00ea\u0003\u00ea\u0003\u00ea\u0003\u00eb", - "\u0003\u00eb\u0003\u00eb\u0003\u00eb\u0003\u00ec\u0003\u00ec\u0003\u00ec", - "\u0003\u00ec\u0003\u00ec\u0003\u00ec\u0003\u00ed\u0003\u00ed\u0003\u00ed", - "\u0003\u00ed\u0003\u00ed\u0003\u00ed\u0003\u00ee\u0003\u00ee\u0003\u00ee", - "\u0003\u00ee\u0003\u00ee\u0003\u00ef\u0003\u00ef\u0003\u00ef\u0003\u00ef", - "\u0003\u00ef\u0003\u00f0\u0003\u00f0\u0003\u00f0\u0003\u00f0\u0003\u00f0", - "\u0003\u00f0\u0003\u00f0\u0003\u00f0\u0003\u00f1\u0003\u00f1\u0003\u00f1", + "\u0003\u00e9\u0003\u00e9\u0003\u00e9\u0003\u00e9\u0003\u00e9\u0003\u00ea", + "\u0003\u00ea\u0003\u00ea\u0003\u00ea\u0003\u00ea\u0003\u00ea\u0003\u00ea", + "\u0003\u00ea\u0003\u00ea\u0003\u00eb\u0003\u00eb\u0003\u00eb\u0003\u00eb", + "\u0003\u00ec\u0003\u00ec\u0003\u00ec\u0003\u00ec\u0003\u00ed\u0003\u00ed", + "\u0003\u00ed\u0003\u00ed\u0003\u00ed\u0003\u00ed\u0003\u00ee\u0003\u00ee", + "\u0003\u00ee\u0003\u00ee\u0003\u00ee\u0003\u00ee\u0003\u00ef\u0003\u00ef", + "\u0003\u00ef\u0003\u00ef\u0003\u00ef\u0003\u00f0\u0003\u00f0\u0003\u00f0", + "\u0003\u00f0\u0003\u00f0\u0003\u00f1\u0003\u00f1\u0003\u00f1\u0003\u00f1", "\u0003\u00f1\u0003\u00f1\u0003\u00f1\u0003\u00f1\u0003\u00f2\u0003\u00f2", "\u0003\u00f2\u0003\u00f2\u0003\u00f2\u0003\u00f2\u0003\u00f2\u0003\u00f3", - "\u0003\u00f3\u0003\u00f3\u0003\u00f4\u0003\u00f4\u0003\u00f4\u0003\u00f4", + "\u0003\u00f3\u0003\u00f3\u0003\u00f3\u0003\u00f3\u0003\u00f3\u0003\u00f3", "\u0003\u00f4\u0003\u00f4\u0003\u00f4\u0003\u00f5\u0003\u00f5\u0003\u00f5", - "\u0003\u00f5\u0003\u00f5\u0003\u00f5\u0003\u00f5\u0003\u00f5\u0003\u00f5", - "\u0003\u00f5\u0003\u00f6\u0003\u00f6\u0003\u00f6\u0003\u00f6\u0003\u00f6", - "\u0003\u00f6\u0003\u00f6\u0003\u00f6\u0003\u00f6\u0003\u00f6\u0003\u00f7", + "\u0003\u00f5\u0003\u00f5\u0003\u00f5\u0003\u00f5\u0003\u00f6\u0003\u00f6", + "\u0003\u00f6\u0003\u00f6\u0003\u00f6\u0003\u00f6\u0003\u00f6\u0003\u00f6", + "\u0003\u00f6\u0003\u00f6\u0003\u00f7\u0003\u00f7\u0003\u00f7\u0003\u00f7", "\u0003\u00f7\u0003\u00f7\u0003\u00f7\u0003\u00f7\u0003\u00f7\u0003\u00f7", - "\u0003\u00f7\u0003\u00f7\u0003\u00f7\u0003\u00f7\u0003\u00f7\u0003\u00f8", "\u0003\u00f8\u0003\u00f8\u0003\u00f8\u0003\u00f8\u0003\u00f8\u0003\u00f8", - "\u0003\u00f8\u0003\u00f8\u0003\u00f8\u0003\u00f8\u0003\u00f8\u0003\u00f9", + "\u0003\u00f8\u0003\u00f8\u0003\u00f8\u0003\u00f8\u0003\u00f8\u0003\u00f8", "\u0003\u00f9\u0003\u00f9\u0003\u00f9\u0003\u00f9\u0003\u00f9\u0003\u00f9", - "\u0003\u00f9\u0003\u00f9\u0003\u00f9\u0003\u00fa\u0003\u00fa\u0003\u00fa", - "\u0003\u00fa\u0003\u00fa\u0003\u00fa\u0003\u00fa\u0003\u00fa\u0003\u00fb", + "\u0003\u00f9\u0003\u00f9\u0003\u00f9\u0003\u00f9\u0003\u00f9\u0003\u00f9", + "\u0003\u00fa\u0003\u00fa\u0003\u00fa\u0003\u00fa\u0003\u00fa\u0003\u00fa", + "\u0003\u00fa\u0003\u00fa\u0003\u00fa\u0003\u00fa\u0003\u00fb\u0003\u00fb", "\u0003\u00fb\u0003\u00fb\u0003\u00fb\u0003\u00fb\u0003\u00fb\u0003\u00fb", - "\u0003\u00fb\u0003\u00fb\u0003\u00fc\u0003\u00fc\u0003\u00fc\u0003\u00fc", - "\u0003\u00fc\u0003\u00fc\u0003\u00fc\u0003\u00fc\u0003\u00fc\u0003\u00fd", - "\u0003\u00fd\u0003\u00fd\u0003\u00fd\u0003\u00fd\u0003\u00fd\u0003\u00fe", + "\u0003\u00fc\u0003\u00fc\u0003\u00fc\u0003\u00fc\u0003\u00fc\u0003\u00fc", + "\u0003\u00fc\u0003\u00fc\u0003\u00fc\u0003\u00fd\u0003\u00fd\u0003\u00fd", + "\u0003\u00fd\u0003\u00fd\u0003\u00fd\u0003\u00fd\u0003\u00fd\u0003\u00fd", "\u0003\u00fe\u0003\u00fe\u0003\u00fe\u0003\u00fe\u0003\u00fe\u0003\u00fe", "\u0003\u00ff\u0003\u00ff\u0003\u00ff\u0003\u00ff\u0003\u00ff\u0003\u00ff", - "\u0003\u0100\u0003\u0100\u0003\u0100\u0003\u0100\u0003\u0101\u0003\u0101", - "\u0003\u0101\u0003\u0101\u0003\u0101\u0003\u0102\u0003\u0102\u0003\u0102", - "\u0003\u0102\u0003\u0102\u0003\u0102\u0003\u0102\u0003\u0102\u0003\u0103", - "\u0003\u0103\u0003\u0103\u0003\u0103\u0003\u0103\u0003\u0103\u0003\u0103", - "\u0003\u0104\u0003\u0104\u0003\u0104\u0003\u0104\u0003\u0104\u0003\u0104", - "\u0003\u0104\u0003\u0104\u0003\u0104\u0003\u0104\u0003\u0105\u0003\u0105", - "\u0003\u0105\u0003\u0105\u0003\u0105\u0003\u0105\u0003\u0106\u0003\u0106", - "\u0003\u0106\u0003\u0106\u0003\u0106\u0003\u0106\u0003\u0106\u0003\u0106", + "\u0003\u00ff\u0003\u00ff\u0003\u0100\u0003\u0100\u0003\u0100\u0003\u0100", + "\u0003\u0101\u0003\u0101\u0003\u0101\u0003\u0101\u0003\u0101\u0003\u0101", + "\u0003\u0101\u0003\u0102\u0003\u0102\u0003\u0102\u0003\u0102\u0003\u0102", + "\u0003\u0102\u0003\u0102\u0003\u0102\u0003\u0102\u0003\u0102\u0003\u0102", + "\u0003\u0102\u0003\u0103\u0003\u0103\u0003\u0103\u0003\u0103\u0003\u0103", + "\u0003\u0103\u0003\u0103\u0003\u0104\u0003\u0104\u0003\u0104\u0003\u0104", + "\u0003\u0104\u0003\u0104\u0003\u0105\u0003\u0105\u0003\u0105\u0003\u0105", + "\u0003\u0106\u0003\u0106\u0003\u0106\u0003\u0106\u0003\u0106\u0003\u0107", "\u0003\u0107\u0003\u0107\u0003\u0107\u0003\u0107\u0003\u0107\u0003\u0107", - "\u0003\u0107\u0003\u0107\u0003\u0108\u0003\u0108\u0003\u0108\u0003\u0108", - "\u0003\u0108\u0003\u0108\u0003\u0108\u0003\u0108\u0003\u0108\u0003\u0109", - "\u0003\u0109\u0003\u0109\u0003\u0109\u0003\u010a\u0003\u010a\u0003\u010a", - "\u0003\u010a\u0003\u010a\u0003\u010a\u0003\u010a\u0003\u010b\u0003\u010b", - "\u0003\u010b\u0003\u010b\u0003\u010b\u0003\u010b\u0003\u010c\u0003\u010c", - "\u0003\u010c\u0003\u010c\u0003\u010c\u0003\u010c\u0003\u010c\u0003\u010d", - "\u0003\u010d\u0003\u010d\u0003\u010d\u0003\u010d\u0003\u010e\u0003\u010e", - "\u0003\u010e\u0003\u010e\u0003\u010e\u0003\u010f\u0003\u010f\u0003\u010f", + "\u0003\u0107\u0003\u0108\u0003\u0108\u0003\u0108\u0003\u0108\u0003\u0108", + "\u0003\u0108\u0003\u0108\u0003\u0109\u0003\u0109\u0003\u0109\u0003\u0109", + "\u0003\u0109\u0003\u0109\u0003\u0109\u0003\u0109\u0003\u0109\u0003\u0109", + "\u0003\u010a\u0003\u010a\u0003\u010a\u0003\u010a\u0003\u010a\u0003\u010a", + "\u0003\u010b\u0003\u010b\u0003\u010b\u0003\u010b\u0003\u010b\u0003\u010b", + "\u0003\u010b\u0003\u010b\u0003\u010c\u0003\u010c\u0003\u010c\u0003\u010c", + "\u0003\u010c\u0003\u010c\u0003\u010c\u0003\u010c\u0003\u010d\u0003\u010d", + "\u0003\u010d\u0003\u010d\u0003\u010d\u0003\u010d\u0003\u010d\u0003\u010d", + "\u0003\u010d\u0003\u010e\u0003\u010e\u0003\u010e\u0003\u010e\u0003\u010f", "\u0003\u010f\u0003\u010f\u0003\u010f\u0003\u010f\u0003\u010f\u0003\u010f", - "\u0003\u010f\u0003\u0110\u0003\u0110\u0003\u0110\u0003\u0110\u0003\u0110", - "\u0003\u0110\u0003\u0110\u0003\u0110\u0003\u0110\u0003\u0111\u0003\u0111", + "\u0003\u0110\u0003\u0110\u0003\u0110\u0003\u0110\u0003\u0110\u0003\u0110", "\u0003\u0111\u0003\u0111\u0003\u0111\u0003\u0111\u0003\u0111\u0003\u0111", - "\u0003\u0112\u0003\u0112\u0003\u0112\u0003\u0112\u0003\u0113\u0003\u0113", - "\u0003\u0113\u0003\u0113\u0003\u0114\u0003\u0114\u0003\u0114\u0003\u0114", - "\u0003\u0114\u0003\u0115\u0003\u0115\u0003\u0116\u0003\u0116\u0003\u0117", - "\u0003\u0117\u0003\u0118\u0003\u0118\u0003\u0119\u0003\u0119\u0003\u011a", - "\u0003\u011a\u0003\u011b\u0003\u011b\u0003\u011c\u0003\u011c\u0003\u011d", - "\u0003\u011d\u0003\u011e\u0003\u011e\u0003\u011f\u0003\u011f\u0003\u0120", - "\u0003\u0120\u0003\u0121\u0003\u0121\u0003\u0122\u0003\u0122\u0003\u0123", - "\u0003\u0123\u0003\u0124\u0003\u0124\u0003\u0125\u0003\u0125\u0003\u0126", - "\u0003\u0126\u0003\u0127\u0003\u0127\u0003\u0128\u0003\u0128\u0003\u0129", - "\u0003\u0129\u0003\u012a\u0003\u012a\u0003\u012b\u0003\u012b\u0003\u012c", - "\u0003\u012c\u0003\u012d\u0003\u012d\u0003\u012e\u0003\u012e\u0003\u012e", - "\u0003\u012f\u0003\u012f\u0003\u012f\u0003\u0130\u0003\u0130\u0003\u0131", - "\u0003\u0131\u0003\u0131\u0003\u0132\u0003\u0132\u0003\u0132\u0005\u0132", - "\u0a7a\n\u0132\u0003\u0133\u0006\u0133\u0a7d\n\u0133\r\u0133\u000e\u0133", - "\u0a7e\u0003\u0134\u0006\u0134\u0a82\n\u0134\r\u0134\u000e\u0134\u0a83", - "\u0005\u0134\u0a86\n\u0134\u0003\u0134\u0003\u0134\u0006\u0134\u0a8a", - "\n\u0134\r\u0134\u000e\u0134\u0a8b\u0003\u0134\u0006\u0134\u0a8f\n\u0134", - "\r\u0134\u000e\u0134\u0a90\u0003\u0134\u0003\u0134\u0003\u0134\u0003", - "\u0134\u0006\u0134\u0a97\n\u0134\r\u0134\u000e\u0134\u0a98\u0005\u0134", - "\u0a9b\n\u0134\u0003\u0134\u0003\u0134\u0006\u0134\u0a9f\n\u0134\r\u0134", - "\u000e\u0134\u0aa0\u0003\u0134\u0003\u0134\u0003\u0134\u0006\u0134\u0aa6", - "\n\u0134\r\u0134\u000e\u0134\u0aa7\u0003\u0134\u0003\u0134\u0005\u0134", - "\u0aac\n\u0134\u0003\u0135\u0003\u0135\u0003\u0136\u0003\u0136\u0003", - "\u0137\u0003\u0137\u0005\u0137\u0ab4\n\u0137\u0003\u0137\u0006\u0137", - "\u0ab7\n\u0137\r\u0137\u000e\u0137\u0ab8\u0003\u0138\u0007\u0138\u0abc", - "\n\u0138\f\u0138\u000e\u0138\u0abf\u000b\u0138\u0003\u0138\u0006\u0138", - "\u0ac2\n\u0138\r\u0138\u000e\u0138\u0ac3\u0003\u0138\u0007\u0138\u0ac7", - "\n\u0138\f\u0138\u000e\u0138\u0aca\u000b\u0138\u0003\u0139\u0003\u0139", - "\u0003\u013a\u0003\u013a\u0003\u013b\u0003\u013b\u0003\u013b\u0003\u013b", - "\u0003\u013b\u0003\u013b\u0007\u013b\u0ad6\n\u013b\f\u013b\u000e\u013b", - "\u0ad9\u000b\u013b\u0003\u013b\u0003\u013b\u0003\u013c\u0003\u013c\u0003", - "\u013c\u0003\u013c\u0003\u013c\u0003\u013c\u0007\u013c\u0ae3\n\u013c", - "\f\u013c\u000e\u013c\u0ae6\u000b\u013c\u0003\u013c\u0003\u013c\u0003", - "\u013d\u0003\u013d\u0003\u013d\u0006\u013d\u0aed\n\u013d\r\u013d\u000e", - "\u013d\u0aee\u0003\u013d\u0003\u013d\u0003\u013e\u0003\u013e\u0003\u013e", - "\u0003\u013e\u0003\u013e\u0003\u013e\u0007\u013e\u0af9\n\u013e\f\u013e", - "\u000e\u013e\u0afc\u000b\u013e\u0003\u013e\u0003\u013e\u0005\u028a\u0abd", - "\u0ac3\u0002\u013f\u0003\u0003\u0005\u0004\u0007\u0005\t\u0006\u000b", - "\u0007\r\b\u000f\t\u0011\n\u0013\u000b\u0015\f\u0017\r\u0019\u000e\u001b", - "\u000f\u001d\u0010\u001f\u0011!\u0012#\u0013%\u0014\'\u0015)\u0016+", - "\u0017-\u0018/\u00191\u001a3\u001b5\u001c7\u001d9\u001e;\u001f= ?!A", - "\"C#E$G%I&K\'M(O)Q*S+U,W-Y.[/]0_1a2c3e4g5i6k7m8o9q:s;u{?}@\u007f", - "A\u0081B\u0083C\u0085D\u0087E\u0089F\u008bG\u008dH\u008fI\u0091J\u0093", - "K\u0095L\u0097M\u0099N\u009bO\u009dP\u009fQ\u00a1R\u00a3S\u00a5T\u00a7", - "U\u00a9V\u00abW\u00adX\u00afY\u00b1Z\u00b3[\u00b5\\\u00b7]\u00b9^\u00bb", - "_\u00bd`\u00bfa\u00c1b\u00c3c\u00c5d\u00c7e\u00c9f\u00cbg\u00cdh\u00cf", - "i\u00d1j\u00d3k\u00d5l\u00d7m\u00d9n\u00dbo\u00ddp\u00dfq\u00e1r\u00e3", - "s\u00e5t\u00e7u\u00e9v\u00ebw\u00edx\u00efy\u00f1z\u00f3{\u00f5|\u00f7", - "}\u00f9~\u00fb\u007f\u00fd\u0080\u00ff\u0081\u0101\u0082\u0103\u0083", - "\u0105\u0084\u0107\u0085\u0109\u0086\u010b\u0087\u010d\u0088\u010f\u0089", - "\u0111\u008a\u0113\u008b\u0115\u008c\u0117\u008d\u0119\u008e\u011b\u008f", - "\u011d\u0090\u011f\u0091\u0121\u0092\u0123\u0093\u0125\u0094\u0127\u0095", - "\u0129\u0096\u012b\u0097\u012d\u0098\u012f\u0099\u0131\u009a\u0133\u009b", - "\u0135\u009c\u0137\u009d\u0139\u009e\u013b\u009f\u013d\u00a0\u013f\u00a1", - "\u0141\u00a2\u0143\u00a3\u0145\u00a4\u0147\u00a5\u0149\u00a6\u014b\u00a7", - "\u014d\u00a8\u014f\u00a9\u0151\u00aa\u0153\u00ab\u0155\u00ac\u0157\u00ad", - "\u0159\u00ae\u015b\u00af\u015d\u00b0\u015f\u00b1\u0161\u00b2\u0163\u00b3", - "\u0165\u00b4\u0167\u00b5\u0169\u00b6\u016b\u00b7\u016d\u00b8\u016f\u00b9", - "\u0171\u00ba\u0173\u00bb\u0175\u00bc\u0177\u00bd\u0179\u00be\u017b\u00bf", - "\u017d\u00c0\u017f\u00c1\u0181\u00c2\u0183\u00c3\u0185\u00c4\u0187\u00c5", - "\u0189\u00c6\u018b\u00c7\u018d\u00c8\u018f\u00c9\u0191\u00ca\u0193\u00cb", - "\u0195\u00cc\u0197\u00cd\u0199\u00ce\u019b\u00cf\u019d\u00d0\u019f\u00d1", - "\u01a1\u00d2\u01a3\u00d3\u01a5\u00d4\u01a7\u00d5\u01a9\u00d6\u01ab\u00d7", - "\u01ad\u00d8\u01af\u00d9\u01b1\u00da\u01b3\u00db\u01b5\u00dc\u01b7\u00dd", - "\u01b9\u00de\u01bb\u00df\u01bd\u00e0\u01bf\u00e1\u01c1\u00e2\u01c3\u00e3", - "\u01c5\u00e4\u01c7\u00e5\u01c9\u00e6\u01cb\u00e7\u01cd\u00e8\u01cf\u00e9", - "\u01d1\u00ea\u01d3\u00eb\u01d5\u00ec\u01d7\u00ed\u01d9\u00ee\u01db\u00ef", - "\u01dd\u00f0\u01df\u00f1\u01e1\u00f2\u01e3\u00f3\u01e5\u00f4\u01e7\u00f5", - "\u01e9\u00f6\u01eb\u00f7\u01ed\u00f8\u01ef\u00f9\u01f1\u00fa\u01f3\u00fb", - "\u01f5\u00fc\u01f7\u00fd\u01f9\u00fe\u01fb\u00ff\u01fd\u0100\u01ff\u0101", - "\u0201\u0102\u0203\u0103\u0205\u0104\u0207\u0105\u0209\u0106\u020b\u0107", - "\u020d\u0108\u020f\u0109\u0211\u010a\u0213\u010b\u0215\u010c\u0217\u010d", - "\u0219\u010e\u021b\u010f\u021d\u0110\u021f\u0111\u0221\u0112\u0223\u0113", - "\u0225\u0114\u0227\u0115\u0229\u0116\u022b\u0117\u022d\u0118\u022f\u0119", - "\u0231\u011a\u0233\u011b\u0235\u011c\u0237\u011d\u0239\u011e\u023b\u011f", - "\u023d\u0120\u023f\u0121\u0241\u0122\u0243\u0123\u0245\u0124\u0247\u0125", - "\u0249\u0126\u024b\u0127\u024d\u0128\u024f\u0129\u0251\u012a\u0253\u012b", - "\u0255\u012c\u0257\u012d\u0259\u012e\u025b\u012f\u025d\u0130\u025f\u0131", - "\u0261\u0132\u0263\u0133\u0265\u0134\u0267\u0135\u0269\u0136\u026b\u0137", - "\u026d\u0002\u026f\u0002\u0271\u0002\u0273\u0002\u0275\u0002\u0277\u0002", - "\u0279\u0002\u027b\u0002\u0003\u0002\r\u0005\u0002\u000b\f\u000f\u000f", - "\"\"\u0004\u0002\f\f\u000f\u000f\u0004\u0002--//\u0006\u00022;C\\aa", - "c|\u0005\u0002C\\aac|\u0003\u00022;\u0004\u0002C\\c|\u0004\u0002$$^", - "^\u0004\u0002))^^\u0003\u000223\u0004\u0002^^bb\u0002\u0b1c\u0002\u0003", - "\u0003\u0002\u0002\u0002\u0002\u0005\u0003\u0002\u0002\u0002\u0002\u0007", - "\u0003\u0002\u0002\u0002\u0002\t\u0003\u0002\u0002\u0002\u0002\u000b", - "\u0003\u0002\u0002\u0002\u0002\r\u0003\u0002\u0002\u0002\u0002\u000f", - "\u0003\u0002\u0002\u0002\u0002\u0011\u0003\u0002\u0002\u0002\u0002\u0013", - "\u0003\u0002\u0002\u0002\u0002\u0015\u0003\u0002\u0002\u0002\u0002\u0017", - "\u0003\u0002\u0002\u0002\u0002\u0019\u0003\u0002\u0002\u0002\u0002\u001b", - "\u0003\u0002\u0002\u0002\u0002\u001d\u0003\u0002\u0002\u0002\u0002\u001f", - "\u0003\u0002\u0002\u0002\u0002!\u0003\u0002\u0002\u0002\u0002#\u0003", - "\u0002\u0002\u0002\u0002%\u0003\u0002\u0002\u0002\u0002\'\u0003\u0002", - "\u0002\u0002\u0002)\u0003\u0002\u0002\u0002\u0002+\u0003\u0002\u0002", - "\u0002\u0002-\u0003\u0002\u0002\u0002\u0002/\u0003\u0002\u0002\u0002", - "\u00021\u0003\u0002\u0002\u0002\u00023\u0003\u0002\u0002\u0002\u0002", - "5\u0003\u0002\u0002\u0002\u00027\u0003\u0002\u0002\u0002\u00029\u0003", - "\u0002\u0002\u0002\u0002;\u0003\u0002\u0002\u0002\u0002=\u0003\u0002", - "\u0002\u0002\u0002?\u0003\u0002\u0002\u0002\u0002A\u0003\u0002\u0002", - "\u0002\u0002C\u0003\u0002\u0002\u0002\u0002E\u0003\u0002\u0002\u0002", - "\u0002G\u0003\u0002\u0002\u0002\u0002I\u0003\u0002\u0002\u0002\u0002", - "K\u0003\u0002\u0002\u0002\u0002M\u0003\u0002\u0002\u0002\u0002O\u0003", - "\u0002\u0002\u0002\u0002Q\u0003\u0002\u0002\u0002\u0002S\u0003\u0002", - "\u0002\u0002\u0002U\u0003\u0002\u0002\u0002\u0002W\u0003\u0002\u0002", - "\u0002\u0002Y\u0003\u0002\u0002\u0002\u0002[\u0003\u0002\u0002\u0002", - "\u0002]\u0003\u0002\u0002\u0002\u0002_\u0003\u0002\u0002\u0002\u0002", - "a\u0003\u0002\u0002\u0002\u0002c\u0003\u0002\u0002\u0002\u0002e\u0003", - "\u0002\u0002\u0002\u0002g\u0003\u0002\u0002\u0002\u0002i\u0003\u0002", - "\u0002\u0002\u0002k\u0003\u0002\u0002\u0002\u0002m\u0003\u0002\u0002", - "\u0002\u0002o\u0003\u0002\u0002\u0002\u0002q\u0003\u0002\u0002\u0002", - "\u0002s\u0003\u0002\u0002\u0002\u0002u\u0003\u0002\u0002\u0002\u0002", - "w\u0003\u0002\u0002\u0002\u0002y\u0003\u0002\u0002\u0002\u0002{\u0003", - "\u0002\u0002\u0002\u0002}\u0003\u0002\u0002\u0002\u0002\u007f\u0003", - "\u0002\u0002\u0002\u0002\u0081\u0003\u0002\u0002\u0002\u0002\u0083\u0003", - "\u0002\u0002\u0002\u0002\u0085\u0003\u0002\u0002\u0002\u0002\u0087\u0003", - "\u0002\u0002\u0002\u0002\u0089\u0003\u0002\u0002\u0002\u0002\u008b\u0003", - "\u0002\u0002\u0002\u0002\u008d\u0003\u0002\u0002\u0002\u0002\u008f\u0003", - "\u0002\u0002\u0002\u0002\u0091\u0003\u0002\u0002\u0002\u0002\u0093\u0003", - "\u0002\u0002\u0002\u0002\u0095\u0003\u0002\u0002\u0002\u0002\u0097\u0003", - "\u0002\u0002\u0002\u0002\u0099\u0003\u0002\u0002\u0002\u0002\u009b\u0003", - "\u0002\u0002\u0002\u0002\u009d\u0003\u0002\u0002\u0002\u0002\u009f\u0003", - "\u0002\u0002\u0002\u0002\u00a1\u0003\u0002\u0002\u0002\u0002\u00a3\u0003", - "\u0002\u0002\u0002\u0002\u00a5\u0003\u0002\u0002\u0002\u0002\u00a7\u0003", - "\u0002\u0002\u0002\u0002\u00a9\u0003\u0002\u0002\u0002\u0002\u00ab\u0003", - "\u0002\u0002\u0002\u0002\u00ad\u0003\u0002\u0002\u0002\u0002\u00af\u0003", - "\u0002\u0002\u0002\u0002\u00b1\u0003\u0002\u0002\u0002\u0002\u00b3\u0003", - "\u0002\u0002\u0002\u0002\u00b5\u0003\u0002\u0002\u0002\u0002\u00b7\u0003", - "\u0002\u0002\u0002\u0002\u00b9\u0003\u0002\u0002\u0002\u0002\u00bb\u0003", - "\u0002\u0002\u0002\u0002\u00bd\u0003\u0002\u0002\u0002\u0002\u00bf\u0003", - "\u0002\u0002\u0002\u0002\u00c1\u0003\u0002\u0002\u0002\u0002\u00c3\u0003", - "\u0002\u0002\u0002\u0002\u00c5\u0003\u0002\u0002\u0002\u0002\u00c7\u0003", - "\u0002\u0002\u0002\u0002\u00c9\u0003\u0002\u0002\u0002\u0002\u00cb\u0003", - "\u0002\u0002\u0002\u0002\u00cd\u0003\u0002\u0002\u0002\u0002\u00cf\u0003", - "\u0002\u0002\u0002\u0002\u00d1\u0003\u0002\u0002\u0002\u0002\u00d3\u0003", - "\u0002\u0002\u0002\u0002\u00d5\u0003\u0002\u0002\u0002\u0002\u00d7\u0003", - "\u0002\u0002\u0002\u0002\u00d9\u0003\u0002\u0002\u0002\u0002\u00db\u0003", - "\u0002\u0002\u0002\u0002\u00dd\u0003\u0002\u0002\u0002\u0002\u00df\u0003", - "\u0002\u0002\u0002\u0002\u00e1\u0003\u0002\u0002\u0002\u0002\u00e3\u0003", - "\u0002\u0002\u0002\u0002\u00e5\u0003\u0002\u0002\u0002\u0002\u00e7\u0003", - "\u0002\u0002\u0002\u0002\u00e9\u0003\u0002\u0002\u0002\u0002\u00eb\u0003", - "\u0002\u0002\u0002\u0002\u00ed\u0003\u0002\u0002\u0002\u0002\u00ef\u0003", - "\u0002\u0002\u0002\u0002\u00f1\u0003\u0002\u0002\u0002\u0002\u00f3\u0003", - "\u0002\u0002\u0002\u0002\u00f5\u0003\u0002\u0002\u0002\u0002\u00f7\u0003", - "\u0002\u0002\u0002\u0002\u00f9\u0003\u0002\u0002\u0002\u0002\u00fb\u0003", - "\u0002\u0002\u0002\u0002\u00fd\u0003\u0002\u0002\u0002\u0002\u00ff\u0003", - "\u0002\u0002\u0002\u0002\u0101\u0003\u0002\u0002\u0002\u0002\u0103\u0003", - "\u0002\u0002\u0002\u0002\u0105\u0003\u0002\u0002\u0002\u0002\u0107\u0003", - "\u0002\u0002\u0002\u0002\u0109\u0003\u0002\u0002\u0002\u0002\u010b\u0003", - "\u0002\u0002\u0002\u0002\u010d\u0003\u0002\u0002\u0002\u0002\u010f\u0003", - "\u0002\u0002\u0002\u0002\u0111\u0003\u0002\u0002\u0002\u0002\u0113\u0003", - "\u0002\u0002\u0002\u0002\u0115\u0003\u0002\u0002\u0002\u0002\u0117\u0003", - "\u0002\u0002\u0002\u0002\u0119\u0003\u0002\u0002\u0002\u0002\u011b\u0003", - "\u0002\u0002\u0002\u0002\u011d\u0003\u0002\u0002\u0002\u0002\u011f\u0003", - "\u0002\u0002\u0002\u0002\u0121\u0003\u0002\u0002\u0002\u0002\u0123\u0003", - "\u0002\u0002\u0002\u0002\u0125\u0003\u0002\u0002\u0002\u0002\u0127\u0003", - "\u0002\u0002\u0002\u0002\u0129\u0003\u0002\u0002\u0002\u0002\u012b\u0003", - "\u0002\u0002\u0002\u0002\u012d\u0003\u0002\u0002\u0002\u0002\u012f\u0003", - "\u0002\u0002\u0002\u0002\u0131\u0003\u0002\u0002\u0002\u0002\u0133\u0003", - "\u0002\u0002\u0002\u0002\u0135\u0003\u0002\u0002\u0002\u0002\u0137\u0003", - "\u0002\u0002\u0002\u0002\u0139\u0003\u0002\u0002\u0002\u0002\u013b\u0003", - "\u0002\u0002\u0002\u0002\u013d\u0003\u0002\u0002\u0002\u0002\u013f\u0003", - "\u0002\u0002\u0002\u0002\u0141\u0003\u0002\u0002\u0002\u0002\u0143\u0003", - "\u0002\u0002\u0002\u0002\u0145\u0003\u0002\u0002\u0002\u0002\u0147\u0003", - "\u0002\u0002\u0002\u0002\u0149\u0003\u0002\u0002\u0002\u0002\u014b\u0003", - "\u0002\u0002\u0002\u0002\u014d\u0003\u0002\u0002\u0002\u0002\u014f\u0003", - "\u0002\u0002\u0002\u0002\u0151\u0003\u0002\u0002\u0002\u0002\u0153\u0003", - "\u0002\u0002\u0002\u0002\u0155\u0003\u0002\u0002\u0002\u0002\u0157\u0003", - "\u0002\u0002\u0002\u0002\u0159\u0003\u0002\u0002\u0002\u0002\u015b\u0003", - "\u0002\u0002\u0002\u0002\u015d\u0003\u0002\u0002\u0002\u0002\u015f\u0003", - "\u0002\u0002\u0002\u0002\u0161\u0003\u0002\u0002\u0002\u0002\u0163\u0003", - "\u0002\u0002\u0002\u0002\u0165\u0003\u0002\u0002\u0002\u0002\u0167\u0003", - "\u0002\u0002\u0002\u0002\u0169\u0003\u0002\u0002\u0002\u0002\u016b\u0003", - "\u0002\u0002\u0002\u0002\u016d\u0003\u0002\u0002\u0002\u0002\u016f\u0003", - "\u0002\u0002\u0002\u0002\u0171\u0003\u0002\u0002\u0002\u0002\u0173\u0003", - "\u0002\u0002\u0002\u0002\u0175\u0003\u0002\u0002\u0002\u0002\u0177\u0003", - "\u0002\u0002\u0002\u0002\u0179\u0003\u0002\u0002\u0002\u0002\u017b\u0003", - "\u0002\u0002\u0002\u0002\u017d\u0003\u0002\u0002\u0002\u0002\u017f\u0003", - "\u0002\u0002\u0002\u0002\u0181\u0003\u0002\u0002\u0002\u0002\u0183\u0003", - "\u0002\u0002\u0002\u0002\u0185\u0003\u0002\u0002\u0002\u0002\u0187\u0003", - "\u0002\u0002\u0002\u0002\u0189\u0003\u0002\u0002\u0002\u0002\u018b\u0003", - "\u0002\u0002\u0002\u0002\u018d\u0003\u0002\u0002\u0002\u0002\u018f\u0003", - "\u0002\u0002\u0002\u0002\u0191\u0003\u0002\u0002\u0002\u0002\u0193\u0003", - "\u0002\u0002\u0002\u0002\u0195\u0003\u0002\u0002\u0002\u0002\u0197\u0003", - "\u0002\u0002\u0002\u0002\u0199\u0003\u0002\u0002\u0002\u0002\u019b\u0003", - "\u0002\u0002\u0002\u0002\u019d\u0003\u0002\u0002\u0002\u0002\u019f\u0003", - "\u0002\u0002\u0002\u0002\u01a1\u0003\u0002\u0002\u0002\u0002\u01a3\u0003", - "\u0002\u0002\u0002\u0002\u01a5\u0003\u0002\u0002\u0002\u0002\u01a7\u0003", - "\u0002\u0002\u0002\u0002\u01a9\u0003\u0002\u0002\u0002\u0002\u01ab\u0003", - "\u0002\u0002\u0002\u0002\u01ad\u0003\u0002\u0002\u0002\u0002\u01af\u0003", - "\u0002\u0002\u0002\u0002\u01b1\u0003\u0002\u0002\u0002\u0002\u01b3\u0003", - "\u0002\u0002\u0002\u0002\u01b5\u0003\u0002\u0002\u0002\u0002\u01b7\u0003", - "\u0002\u0002\u0002\u0002\u01b9\u0003\u0002\u0002\u0002\u0002\u01bb\u0003", - "\u0002\u0002\u0002\u0002\u01bd\u0003\u0002\u0002\u0002\u0002\u01bf\u0003", - "\u0002\u0002\u0002\u0002\u01c1\u0003\u0002\u0002\u0002\u0002\u01c3\u0003", - "\u0002\u0002\u0002\u0002\u01c5\u0003\u0002\u0002\u0002\u0002\u01c7\u0003", - "\u0002\u0002\u0002\u0002\u01c9\u0003\u0002\u0002\u0002\u0002\u01cb\u0003", - "\u0002\u0002\u0002\u0002\u01cd\u0003\u0002\u0002\u0002\u0002\u01cf\u0003", - "\u0002\u0002\u0002\u0002\u01d1\u0003\u0002\u0002\u0002\u0002\u01d3\u0003", - "\u0002\u0002\u0002\u0002\u01d5\u0003\u0002\u0002\u0002\u0002\u01d7\u0003", - "\u0002\u0002\u0002\u0002\u01d9\u0003\u0002\u0002\u0002\u0002\u01db\u0003", - "\u0002\u0002\u0002\u0002\u01dd\u0003\u0002\u0002\u0002\u0002\u01df\u0003", - "\u0002\u0002\u0002\u0002\u01e1\u0003\u0002\u0002\u0002\u0002\u01e3\u0003", - "\u0002\u0002\u0002\u0002\u01e5\u0003\u0002\u0002\u0002\u0002\u01e7\u0003", - "\u0002\u0002\u0002\u0002\u01e9\u0003\u0002\u0002\u0002\u0002\u01eb\u0003", - "\u0002\u0002\u0002\u0002\u01ed\u0003\u0002\u0002\u0002\u0002\u01ef\u0003", - "\u0002\u0002\u0002\u0002\u01f1\u0003\u0002\u0002\u0002\u0002\u01f3\u0003", - "\u0002\u0002\u0002\u0002\u01f5\u0003\u0002\u0002\u0002\u0002\u01f7\u0003", - "\u0002\u0002\u0002\u0002\u01f9\u0003\u0002\u0002\u0002\u0002\u01fb\u0003", - "\u0002\u0002\u0002\u0002\u01fd\u0003\u0002\u0002\u0002\u0002\u01ff\u0003", - "\u0002\u0002\u0002\u0002\u0201\u0003\u0002\u0002\u0002\u0002\u0203\u0003", - "\u0002\u0002\u0002\u0002\u0205\u0003\u0002\u0002\u0002\u0002\u0207\u0003", - "\u0002\u0002\u0002\u0002\u0209\u0003\u0002\u0002\u0002\u0002\u020b\u0003", - "\u0002\u0002\u0002\u0002\u020d\u0003\u0002\u0002\u0002\u0002\u020f\u0003", - "\u0002\u0002\u0002\u0002\u0211\u0003\u0002\u0002\u0002\u0002\u0213\u0003", - "\u0002\u0002\u0002\u0002\u0215\u0003\u0002\u0002\u0002\u0002\u0217\u0003", - "\u0002\u0002\u0002\u0002\u0219\u0003\u0002\u0002\u0002\u0002\u021b\u0003", - "\u0002\u0002\u0002\u0002\u021d\u0003\u0002\u0002\u0002\u0002\u021f\u0003", - "\u0002\u0002\u0002\u0002\u0221\u0003\u0002\u0002\u0002\u0002\u0223\u0003", - "\u0002\u0002\u0002\u0002\u0225\u0003\u0002\u0002\u0002\u0002\u0227\u0003", - "\u0002\u0002\u0002\u0002\u0229\u0003\u0002\u0002\u0002\u0002\u022b\u0003", - "\u0002\u0002\u0002\u0002\u022d\u0003\u0002\u0002\u0002\u0002\u022f\u0003", - "\u0002\u0002\u0002\u0002\u0231\u0003\u0002\u0002\u0002\u0002\u0233\u0003", - "\u0002\u0002\u0002\u0002\u0235\u0003\u0002\u0002\u0002\u0002\u0237\u0003", - "\u0002\u0002\u0002\u0002\u0239\u0003\u0002\u0002\u0002\u0002\u023b\u0003", - "\u0002\u0002\u0002\u0002\u023d\u0003\u0002\u0002\u0002\u0002\u023f\u0003", - "\u0002\u0002\u0002\u0002\u0241\u0003\u0002\u0002\u0002\u0002\u0243\u0003", - "\u0002\u0002\u0002\u0002\u0245\u0003\u0002\u0002\u0002\u0002\u0247\u0003", - "\u0002\u0002\u0002\u0002\u0249\u0003\u0002\u0002\u0002\u0002\u024b\u0003", - "\u0002\u0002\u0002\u0002\u024d\u0003\u0002\u0002\u0002\u0002\u024f\u0003", - "\u0002\u0002\u0002\u0002\u0251\u0003\u0002\u0002\u0002\u0002\u0253\u0003", - "\u0002\u0002\u0002\u0002\u0255\u0003\u0002\u0002\u0002\u0002\u0257\u0003", - "\u0002\u0002\u0002\u0002\u0259\u0003\u0002\u0002\u0002\u0002\u025b\u0003", - "\u0002\u0002\u0002\u0002\u025d\u0003\u0002\u0002\u0002\u0002\u025f\u0003", - "\u0002\u0002\u0002\u0002\u0261\u0003\u0002\u0002\u0002\u0002\u0263\u0003", - "\u0002\u0002\u0002\u0002\u0265\u0003\u0002\u0002\u0002\u0002\u0267\u0003", - "\u0002\u0002\u0002\u0002\u0269\u0003\u0002\u0002\u0002\u0002\u026b\u0003", - "\u0002\u0002\u0002\u0003\u027e\u0003\u0002\u0002\u0002\u0005\u0284\u0003", - "\u0002\u0002\u0002\u0007\u02af\u0003\u0002\u0002\u0002\t\u02b3\u0003", - "\u0002\u0002\u0002\u000b\u02ba\u0003\u0002\u0002\u0002\r\u02bf\u0003", - "\u0002\u0002\u0002\u000f\u02c3\u0003\u0002\u0002\u0002\u0011\u02c6\u0003", - "\u0002\u0002\u0002\u0013\u02ca\u0003\u0002\u0002\u0002\u0015\u02ce\u0003", - "\u0002\u0002\u0002\u0017\u02d7\u0003\u0002\u0002\u0002\u0019\u02dd\u0003", - "\u0002\u0002\u0002\u001b\u02e3\u0003\u0002\u0002\u0002\u001d\u02e6\u0003", - "\u0002\u0002\u0002\u001f\u02ef\u0003\u0002\u0002\u0002!\u02f4\u0003", - "\u0002\u0002\u0002#\u02f9\u0003\u0002\u0002\u0002%\u0300\u0003\u0002", - "\u0002\u0002\'\u0306\u0003\u0002\u0002\u0002)\u030d\u0003\u0002\u0002", - "\u0002+\u0313\u0003\u0002\u0002\u0002-\u0316\u0003\u0002\u0002\u0002", - "/\u0319\u0003\u0002\u0002\u00021\u031d\u0003\u0002\u0002\u00023\u0320", - "\u0003\u0002\u0002\u00025\u0324\u0003\u0002\u0002\u00027\u0327\u0003", - "\u0002\u0002\u00029\u032e\u0003\u0002\u0002\u0002;\u0336\u0003\u0002", - "\u0002\u0002=\u033b\u0003\u0002\u0002\u0002?\u0341\u0003\u0002\u0002", - "\u0002A\u0344\u0003\u0002\u0002\u0002C\u0349\u0003\u0002\u0002\u0002", - "E\u034f\u0003\u0002\u0002\u0002G\u0355\u0003\u0002\u0002\u0002I\u0359", - "\u0003\u0002\u0002\u0002K\u035e\u0003\u0002\u0002\u0002M\u0362\u0003", - "\u0002\u0002\u0002O\u036b\u0003\u0002\u0002\u0002Q\u0370\u0003\u0002", - "\u0002\u0002S\u0375\u0003\u0002\u0002\u0002U\u037a\u0003\u0002\u0002", - "\u0002W\u037f\u0003\u0002\u0002\u0002Y\u0383\u0003\u0002\u0002\u0002", - "[\u0388\u0003\u0002\u0002\u0002]\u038e\u0003\u0002\u0002\u0002_\u0394", - "\u0003\u0002\u0002\u0002a\u039a\u0003\u0002\u0002\u0002c\u039f\u0003", - "\u0002\u0002\u0002e\u03a4\u0003\u0002\u0002\u0002g\u03aa\u0003\u0002", - "\u0002\u0002i\u03af\u0003\u0002\u0002\u0002k\u03b7\u0003\u0002\u0002", - "\u0002m\u03ba\u0003\u0002\u0002\u0002o\u03c0\u0003\u0002\u0002\u0002", - "q\u03c8\u0003\u0002\u0002\u0002s\u03cf\u0003\u0002\u0002\u0002u\u03d4", - "\u0003\u0002\u0002\u0002w\u03de\u0003\u0002\u0002\u0002y\u03e4\u0003", - "\u0002\u0002\u0002{\u03e9\u0003\u0002\u0002\u0002}\u03f3\u0003\u0002", - "\u0002\u0002\u007f\u03fd\u0003\u0002\u0002\u0002\u0081\u0407\u0003\u0002", - "\u0002\u0002\u0083\u040f\u0003\u0002\u0002\u0002\u0085\u0415\u0003\u0002", - "\u0002\u0002\u0087\u041b\u0003\u0002\u0002\u0002\u0089\u0420\u0003\u0002", - "\u0002\u0002\u008b\u0425\u0003\u0002\u0002\u0002\u008d\u042c\u0003\u0002", - "\u0002\u0002\u008f\u0433\u0003\u0002\u0002\u0002\u0091\u0439\u0003\u0002", - "\u0002\u0002\u0093\u0443\u0003\u0002\u0002\u0002\u0095\u0448\u0003\u0002", - "\u0002\u0002\u0097\u0450\u0003\u0002\u0002\u0002\u0099\u0457\u0003\u0002", - "\u0002\u0002\u009b\u045e\u0003\u0002\u0002\u0002\u009d\u0463\u0003\u0002", - "\u0002\u0002\u009f\u046c\u0003\u0002\u0002\u0002\u00a1\u0474\u0003\u0002", - "\u0002\u0002\u00a3\u047b\u0003\u0002\u0002\u0002\u00a5\u0483\u0003\u0002", - "\u0002\u0002\u00a7\u048b\u0003\u0002\u0002\u0002\u00a9\u0490\u0003\u0002", - "\u0002\u0002\u00ab\u0495\u0003\u0002\u0002\u0002\u00ad\u049a\u0003\u0002", - "\u0002\u0002\u00af\u04a1\u0003\u0002\u0002\u0002\u00b1\u04a9\u0003\u0002", - "\u0002\u0002\u00b3\u04b0\u0003\u0002\u0002\u0002\u00b5\u04b4\u0003\u0002", - "\u0002\u0002\u00b7\u04bf\u0003\u0002\u0002\u0002\u00b9\u04c9\u0003\u0002", - "\u0002\u0002\u00bb\u04ce\u0003\u0002\u0002\u0002\u00bd\u04d4\u0003\u0002", - "\u0002\u0002\u00bf\u04db\u0003\u0002\u0002\u0002\u00c1\u04e4\u0003\u0002", - "\u0002\u0002\u00c3\u04ee\u0003\u0002\u0002\u0002\u00c5\u04f1\u0003\u0002", - "\u0002\u0002\u00c7\u04fd\u0003\u0002\u0002\u0002\u00c9\u0506\u0003\u0002", - "\u0002\u0002\u00cb\u050c\u0003\u0002\u0002\u0002\u00cd\u0513\u0003\u0002", - "\u0002\u0002\u00cf\u051a\u0003\u0002\u0002\u0002\u00d1\u0522\u0003\u0002", - "\u0002\u0002\u00d3\u0526\u0003\u0002\u0002\u0002\u00d5\u052c\u0003\u0002", - "\u0002\u0002\u00d7\u0531\u0003\u0002\u0002\u0002\u00d9\u0537\u0003\u0002", - "\u0002\u0002\u00db\u0543\u0003\u0002\u0002\u0002\u00dd\u054a\u0003\u0002", - "\u0002\u0002\u00df\u0553\u0003\u0002\u0002\u0002\u00e1\u0559\u0003\u0002", - "\u0002\u0002\u00e3\u0560\u0003\u0002\u0002\u0002\u00e5\u0565\u0003\u0002", - "\u0002\u0002\u00e7\u056d\u0003\u0002\u0002\u0002\u00e9\u0576\u0003\u0002", - "\u0002\u0002\u00eb\u0579\u0003\u0002\u0002\u0002\u00ed\u0582\u0003\u0002", - "\u0002\u0002\u00ef\u058a\u0003\u0002\u0002\u0002\u00f1\u058d\u0003\u0002", - "\u0002\u0002\u00f3\u0592\u0003\u0002\u0002\u0002\u00f5\u0596\u0003\u0002", - "\u0002\u0002\u00f7\u059b\u0003\u0002\u0002\u0002\u00f9\u059e\u0003\u0002", - "\u0002\u0002\u00fb\u05a2\u0003\u0002\u0002\u0002\u00fd\u05a5\u0003\u0002", - "\u0002\u0002\u00ff\u05a9\u0003\u0002\u0002\u0002\u0101\u05ae\u0003\u0002", - "\u0002\u0002\u0103\u05b4\u0003\u0002\u0002\u0002\u0105\u05bd\u0003\u0002", - "\u0002\u0002\u0107\u05c3\u0003\u0002\u0002\u0002\u0109\u05cb\u0003\u0002", - "\u0002\u0002\u010b\u05cf\u0003\u0002\u0002\u0002\u010d\u05d5\u0003\u0002", - "\u0002\u0002\u010f\u05df\u0003\u0002\u0002\u0002\u0111\u05e4\u0003\u0002", - "\u0002\u0002\u0113\u05f0\u0003\u0002\u0002\u0002\u0115\u05f4\u0003\u0002", - "\u0002\u0002\u0117\u05ff\u0003\u0002\u0002\u0002\u0119\u0606\u0003\u0002", - "\u0002\u0002\u011b\u060a\u0003\u0002\u0002\u0002\u011d\u060d\u0003\u0002", - "\u0002\u0002\u011f\u0612\u0003\u0002\u0002\u0002\u0121\u061a\u0003\u0002", - "\u0002\u0002\u0123\u0625\u0003\u0002\u0002\u0002\u0125\u062f\u0003\u0002", - "\u0002\u0002\u0127\u0639\u0003\u0002\u0002\u0002\u0129\u0640\u0003\u0002", - "\u0002\u0002\u012b\u0646\u0003\u0002\u0002\u0002\u012d\u064c\u0003\u0002", - "\u0002\u0002\u012f\u065c\u0003\u0002\u0002\u0002\u0131\u0669\u0003\u0002", - "\u0002\u0002\u0133\u0676\u0003\u0002\u0002\u0002\u0135\u0680\u0003\u0002", - "\u0002\u0002\u0137\u0687\u0003\u0002\u0002\u0002\u0139\u0692\u0003\u0002", - "\u0002\u0002\u013b\u069d\u0003\u0002\u0002\u0002\u013d\u06a3\u0003\u0002", - "\u0002\u0002\u013f\u06a8\u0003\u0002\u0002\u0002\u0141\u06b0\u0003\u0002", - "\u0002\u0002\u0143\u06b6\u0003\u0002\u0002\u0002\u0145\u06c0\u0003\u0002", - "\u0002\u0002\u0147\u06c9\u0003\u0002\u0002\u0002\u0149\u06d2\u0003\u0002", - "\u0002\u0002\u014b\u06da\u0003\u0002\u0002\u0002\u014d\u06e0\u0003\u0002", - "\u0002\u0002\u014f\u06e6\u0003\u0002\u0002\u0002\u0151\u06ee\u0003\u0002", - "\u0002\u0002\u0153\u06f3\u0003\u0002\u0002\u0002\u0155\u06fd\u0003\u0002", - "\u0002\u0002\u0157\u0704\u0003\u0002\u0002\u0002\u0159\u070e\u0003\u0002", - "\u0002\u0002\u015b\u0716\u0003\u0002\u0002\u0002\u015d\u071c\u0003\u0002", - "\u0002\u0002\u015f\u072a\u0003\u0002\u0002\u0002\u0161\u0737\u0003\u0002", - "\u0002\u0002\u0163\u073f\u0003\u0002\u0002\u0002\u0165\u0746\u0003\u0002", - "\u0002\u0002\u0167\u074d\u0003\u0002\u0002\u0002\u0169\u0759\u0003\u0002", - "\u0002\u0002\u016b\u0762\u0003\u0002\u0002\u0002\u016d\u076b\u0003\u0002", - "\u0002\u0002\u016f\u0773\u0003\u0002\u0002\u0002\u0171\u077d\u0003\u0002", - "\u0002\u0002\u0173\u0788\u0003\u0002\u0002\u0002\u0175\u078e\u0003\u0002", - "\u0002\u0002\u0177\u0796\u0003\u0002\u0002\u0002\u0179\u07a2\u0003\u0002", - "\u0002\u0002\u017b\u07a9\u0003\u0002\u0002\u0002\u017d\u07b1\u0003\u0002", - "\u0002\u0002\u017f\u07ba\u0003\u0002\u0002\u0002\u0181\u07c4\u0003\u0002", - "\u0002\u0002\u0183\u07cb\u0003\u0002\u0002\u0002\u0185\u07d1\u0003\u0002", - "\u0002\u0002\u0187\u07dd\u0003\u0002\u0002\u0002\u0189\u07ea\u0003\u0002", - "\u0002\u0002\u018b\u07f3\u0003\u0002\u0002\u0002\u018d\u07fd\u0003\u0002", - "\u0002\u0002\u018f\u0801\u0003\u0002\u0002\u0002\u0191\u080a\u0003\u0002", - "\u0002\u0002\u0193\u0812\u0003\u0002\u0002\u0002\u0195\u081a\u0003\u0002", - "\u0002\u0002\u0197\u081f\u0003\u0002\u0002\u0002\u0199\u082a\u0003\u0002", - "\u0002\u0002\u019b\u0836\u0003\u0002\u0002\u0002\u019d\u083f\u0003\u0002", - "\u0002\u0002\u019f\u0847\u0003\u0002\u0002\u0002\u01a1\u084e\u0003\u0002", - "\u0002\u0002\u01a3\u0854\u0003\u0002\u0002\u0002\u01a5\u0859\u0003\u0002", - "\u0002\u0002\u01a7\u0860\u0003\u0002\u0002\u0002\u01a9\u0865\u0003\u0002", - "\u0002\u0002\u01ab\u086c\u0003\u0002\u0002\u0002\u01ad\u0874\u0003\u0002", - "\u0002\u0002\u01af\u087b\u0003\u0002\u0002\u0002\u01b1\u0882\u0003\u0002", - "\u0002\u0002\u01b3\u0887\u0003\u0002\u0002\u0002\u01b5\u088c\u0003\u0002", - "\u0002\u0002\u01b7\u0892\u0003\u0002\u0002\u0002\u01b9\u089e\u0003\u0002", - "\u0002\u0002\u01bb\u08a9\u0003\u0002\u0002\u0002\u01bd\u08b6\u0003\u0002", - "\u0002\u0002\u01bf\u08bc\u0003\u0002\u0002\u0002\u01c1\u08c4\u0003\u0002", - "\u0002\u0002\u01c3\u08ca\u0003\u0002\u0002\u0002\u01c5\u08d1\u0003\u0002", - "\u0002\u0002\u01c7\u08d6\u0003\u0002\u0002\u0002\u01c9\u08dc\u0003\u0002", - "\u0002\u0002\u01cb\u08e3\u0003\u0002\u0002\u0002\u01cd\u08ed\u0003\u0002", - "\u0002\u0002\u01cf\u08f4\u0003\u0002\u0002\u0002\u01d1\u0904\u0003\u0002", - "\u0002\u0002\u01d3\u090d\u0003\u0002\u0002\u0002\u01d5\u0911\u0003\u0002", - "\u0002\u0002\u01d7\u0915\u0003\u0002\u0002\u0002\u01d9\u091b\u0003\u0002", - "\u0002\u0002\u01db\u0921\u0003\u0002\u0002\u0002\u01dd\u0926\u0003\u0002", - "\u0002\u0002\u01df\u092b\u0003\u0002\u0002\u0002\u01e1\u0933\u0003\u0002", - "\u0002\u0002\u01e3\u093a\u0003\u0002\u0002\u0002\u01e5\u0941\u0003\u0002", - "\u0002\u0002\u01e7\u0944\u0003\u0002\u0002\u0002\u01e9\u094b\u0003\u0002", - "\u0002\u0002\u01eb\u0955\u0003\u0002\u0002\u0002\u01ed\u095f\u0003\u0002", - "\u0002\u0002\u01ef\u096b\u0003\u0002\u0002\u0002\u01f1\u0977\u0003\u0002", - "\u0002\u0002\u01f3\u0981\u0003\u0002\u0002\u0002\u01f5\u0989\u0003\u0002", - "\u0002\u0002\u01f7\u0992\u0003\u0002\u0002\u0002\u01f9\u099b\u0003\u0002", - "\u0002\u0002\u01fb\u09a1\u0003\u0002\u0002\u0002\u01fd\u09a8\u0003\u0002", - "\u0002\u0002\u01ff\u09ae\u0003\u0002\u0002\u0002\u0201\u09b2\u0003\u0002", - "\u0002\u0002\u0203\u09b7\u0003\u0002\u0002\u0002\u0205\u09bf\u0003\u0002", - "\u0002\u0002\u0207\u09c6\u0003\u0002\u0002\u0002\u0209\u09d0\u0003\u0002", - "\u0002\u0002\u020b\u09d6\u0003\u0002\u0002\u0002\u020d\u09de\u0003\u0002", - "\u0002\u0002\u020f\u09e6\u0003\u0002\u0002\u0002\u0211\u09ef\u0003\u0002", - "\u0002\u0002\u0213\u09f3\u0003\u0002\u0002\u0002\u0215\u09fa\u0003\u0002", - "\u0002\u0002\u0217\u0a00\u0003\u0002\u0002\u0002\u0219\u0a07\u0003\u0002", - "\u0002\u0002\u021b\u0a0c\u0003\u0002\u0002\u0002\u021d\u0a11\u0003\u0002", - "\u0002\u0002\u021f\u0a1b\u0003\u0002\u0002\u0002\u0221\u0a24\u0003\u0002", - "\u0002\u0002\u0223\u0a2c\u0003\u0002\u0002\u0002\u0225\u0a30\u0003\u0002", - "\u0002\u0002\u0227\u0a34\u0003\u0002\u0002\u0002\u0229\u0a39\u0003\u0002", - "\u0002\u0002\u022b\u0a3b\u0003\u0002\u0002\u0002\u022d\u0a3d\u0003\u0002", - "\u0002\u0002\u022f\u0a3f\u0003\u0002\u0002\u0002\u0231\u0a41\u0003\u0002", - "\u0002\u0002\u0233\u0a43\u0003\u0002\u0002\u0002\u0235\u0a45\u0003\u0002", - "\u0002\u0002\u0237\u0a47\u0003\u0002\u0002\u0002\u0239\u0a49\u0003\u0002", - "\u0002\u0002\u023b\u0a4b\u0003\u0002\u0002\u0002\u023d\u0a4d\u0003\u0002", - "\u0002\u0002\u023f\u0a4f\u0003\u0002\u0002\u0002\u0241\u0a51\u0003\u0002", - "\u0002\u0002\u0243\u0a53\u0003\u0002\u0002\u0002\u0245\u0a55\u0003\u0002", - "\u0002\u0002\u0247\u0a57\u0003\u0002\u0002\u0002\u0249\u0a59\u0003\u0002", - "\u0002\u0002\u024b\u0a5b\u0003\u0002\u0002\u0002\u024d\u0a5d\u0003\u0002", - "\u0002\u0002\u024f\u0a5f\u0003\u0002\u0002\u0002\u0251\u0a61\u0003\u0002", - "\u0002\u0002\u0253\u0a63\u0003\u0002\u0002\u0002\u0255\u0a65\u0003\u0002", - "\u0002\u0002\u0257\u0a67\u0003\u0002\u0002\u0002\u0259\u0a69\u0003\u0002", - "\u0002\u0002\u025b\u0a6b\u0003\u0002\u0002\u0002\u025d\u0a6e\u0003\u0002", - "\u0002\u0002\u025f\u0a71\u0003\u0002\u0002\u0002\u0261\u0a73\u0003\u0002", - "\u0002\u0002\u0263\u0a79\u0003\u0002\u0002\u0002\u0265\u0a7c\u0003\u0002", - "\u0002\u0002\u0267\u0aab\u0003\u0002\u0002\u0002\u0269\u0aad\u0003\u0002", - "\u0002\u0002\u026b\u0aaf\u0003\u0002\u0002\u0002\u026d\u0ab1\u0003\u0002", - "\u0002\u0002\u026f\u0abd\u0003\u0002\u0002\u0002\u0271\u0acb\u0003\u0002", - "\u0002\u0002\u0273\u0acd\u0003\u0002\u0002\u0002\u0275\u0acf\u0003\u0002", - "\u0002\u0002\u0277\u0adc\u0003\u0002\u0002\u0002\u0279\u0ae9\u0003\u0002", - "\u0002\u0002\u027b\u0af2\u0003\u0002\u0002\u0002\u027d\u027f\t\u0002", - "\u0002\u0002\u027e\u027d\u0003\u0002\u0002\u0002\u027f\u0280\u0003\u0002", - "\u0002\u0002\u0280\u027e\u0003\u0002\u0002\u0002\u0280\u0281\u0003\u0002", - "\u0002\u0002\u0281\u0282\u0003\u0002\u0002\u0002\u0282\u0283\b\u0002", - "\u0002\u0002\u0283\u0004\u0003\u0002\u0002\u0002\u0284\u0285\u00071", - "\u0002\u0002\u0285\u0286\u0007,\u0002\u0002\u0286\u028a\u0003\u0002", - "\u0002\u0002\u0287\u0289\u000b\u0002\u0002\u0002\u0288\u0287\u0003\u0002", - "\u0002\u0002\u0289\u028c\u0003\u0002\u0002\u0002\u028a\u028b\u0003\u0002", - "\u0002\u0002\u028a\u0288\u0003\u0002\u0002\u0002\u028b\u028d\u0003\u0002", - "\u0002\u0002\u028c\u028a\u0003\u0002\u0002\u0002\u028d\u028e\u0007,", - "\u0002\u0002\u028e\u028f\u00071\u0002\u0002\u028f\u0290\u0003\u0002", - "\u0002\u0002\u0290\u0291\b\u0003\u0002\u0002\u0291\u0006\u0003\u0002", - "\u0002\u0002\u0292\u0293\u0007/\u0002\u0002\u0293\u0294\u0007/\u0002", - "\u0002\u0294\u0297\u0007\"\u0002\u0002\u0295\u0297\u0007%\u0002\u0002", - "\u0296\u0292\u0003\u0002\u0002\u0002\u0296\u0295\u0003\u0002\u0002\u0002", - "\u0297\u029b\u0003\u0002\u0002\u0002\u0298\u029a\n\u0003\u0002\u0002", - "\u0299\u0298\u0003\u0002\u0002\u0002\u029a\u029d\u0003\u0002\u0002\u0002", - "\u029b\u0299\u0003\u0002\u0002\u0002\u029b\u029c\u0003\u0002\u0002\u0002", - "\u029c\u02a3\u0003\u0002\u0002\u0002\u029d\u029b\u0003\u0002\u0002\u0002", - "\u029e\u02a0\u0007\u000f\u0002\u0002\u029f\u029e\u0003\u0002\u0002\u0002", - "\u029f\u02a0\u0003\u0002\u0002\u0002\u02a0\u02a1\u0003\u0002\u0002\u0002", - "\u02a1\u02a4\u0007\f\u0002\u0002\u02a2\u02a4\u0007\u0002\u0002\u0003", - "\u02a3\u029f\u0003\u0002\u0002\u0002\u02a3\u02a2\u0003\u0002\u0002\u0002", - "\u02a4\u02b0\u0003\u0002\u0002\u0002\u02a5\u02a6\u0007/\u0002\u0002", - "\u02a6\u02a7\u0007/\u0002\u0002\u02a7\u02ad\u0003\u0002\u0002\u0002", - "\u02a8\u02aa\u0007\u000f\u0002\u0002\u02a9\u02a8\u0003\u0002\u0002\u0002", - "\u02a9\u02aa\u0003\u0002\u0002\u0002\u02aa\u02ab\u0003\u0002\u0002\u0002", - "\u02ab\u02ae\u0007\f\u0002\u0002\u02ac\u02ae\u0007\u0002\u0002\u0003", - "\u02ad\u02a9\u0003\u0002\u0002\u0002\u02ad\u02ac\u0003\u0002\u0002\u0002", - "\u02ae\u02b0\u0003\u0002\u0002\u0002\u02af\u0296\u0003\u0002\u0002\u0002", - "\u02af\u02a5\u0003\u0002\u0002\u0002\u02b0\u02b1\u0003\u0002\u0002\u0002", - "\u02b1\u02b2\b\u0004\u0002\u0002\u02b2\b\u0003\u0002\u0002\u0002\u02b3", - "\u02b4\u0007U\u0002\u0002\u02b4\u02b5\u0007G\u0002\u0002\u02b5\u02b6", - "\u0007N\u0002\u0002\u02b6\u02b7\u0007G\u0002\u0002\u02b7\u02b8\u0007", - "E\u0002\u0002\u02b8\u02b9\u0007V\u0002\u0002\u02b9\n\u0003\u0002\u0002", - "\u0002\u02ba\u02bb\u0007H\u0002\u0002\u02bb\u02bc\u0007T\u0002\u0002", - "\u02bc\u02bd\u0007Q\u0002\u0002\u02bd\u02be\u0007O\u0002\u0002\u02be", - "\f\u0003\u0002\u0002\u0002\u02bf\u02c0\u0007C\u0002\u0002\u02c0\u02c1", - "\u0007F\u0002\u0002\u02c1\u02c2\u0007F\u0002\u0002\u02c2\u000e\u0003", - "\u0002\u0002\u0002\u02c3\u02c4\u0007C\u0002\u0002\u02c4\u02c5\u0007", - "U\u0002\u0002\u02c5\u0010\u0003\u0002\u0002\u0002\u02c6\u02c7\u0007", - "C\u0002\u0002\u02c7\u02c8\u0007N\u0002\u0002\u02c8\u02c9\u0007N\u0002", - "\u0002\u02c9\u0012\u0003\u0002\u0002\u0002\u02ca\u02cb\u0007C\u0002", - "\u0002\u02cb\u02cc\u0007P\u0002\u0002\u02cc\u02cd\u0007[\u0002\u0002", - "\u02cd\u0014\u0003\u0002\u0002\u0002\u02ce\u02cf\u0007F\u0002\u0002", - "\u02cf\u02d0\u0007K\u0002\u0002\u02d0\u02d1\u0007U\u0002\u0002\u02d1", - "\u02d2\u0007V\u0002\u0002\u02d2\u02d3\u0007K\u0002\u0002\u02d3\u02d4", - "\u0007P\u0002\u0002\u02d4\u02d5\u0007E\u0002\u0002\u02d5\u02d6\u0007", - "V\u0002\u0002\u02d6\u0016\u0003\u0002\u0002\u0002\u02d7\u02d8\u0007", - "Y\u0002\u0002\u02d8\u02d9\u0007J\u0002\u0002\u02d9\u02da\u0007G\u0002", - "\u0002\u02da\u02db\u0007T\u0002\u0002\u02db\u02dc\u0007G\u0002\u0002", - "\u02dc\u0018\u0003\u0002\u0002\u0002\u02dd\u02de\u0007I\u0002\u0002", - "\u02de\u02df\u0007T\u0002\u0002\u02df\u02e0\u0007Q\u0002\u0002\u02e0", - "\u02e1\u0007W\u0002\u0002\u02e1\u02e2\u0007R\u0002\u0002\u02e2\u001a", - "\u0003\u0002\u0002\u0002\u02e3\u02e4\u0007D\u0002\u0002\u02e4\u02e5", - "\u0007[\u0002\u0002\u02e5\u001c\u0003\u0002\u0002\u0002\u02e6\u02e7", - "\u0007I\u0002\u0002\u02e7\u02e8\u0007T\u0002\u0002\u02e8\u02e9\u0007", - "Q\u0002\u0002\u02e9\u02ea\u0007W\u0002\u0002\u02ea\u02eb\u0007R\u0002", - "\u0002\u02eb\u02ec\u0007K\u0002\u0002\u02ec\u02ed\u0007P\u0002\u0002", - "\u02ed\u02ee\u0007I\u0002\u0002\u02ee\u001e\u0003\u0002\u0002\u0002", - "\u02ef\u02f0\u0007U\u0002\u0002\u02f0\u02f1\u0007G\u0002\u0002\u02f1", - "\u02f2\u0007V\u0002\u0002\u02f2\u02f3\u0007U\u0002\u0002\u02f3 \u0003", - "\u0002\u0002\u0002\u02f4\u02f5\u0007E\u0002\u0002\u02f5\u02f6\u0007", - "W\u0002\u0002\u02f6\u02f7\u0007D\u0002\u0002\u02f7\u02f8\u0007G\u0002", - "\u0002\u02f8\"\u0003\u0002\u0002\u0002\u02f9\u02fa\u0007T\u0002\u0002", - "\u02fa\u02fb\u0007Q\u0002\u0002\u02fb\u02fc\u0007N\u0002\u0002\u02fc", - "\u02fd\u0007N\u0002\u0002\u02fd\u02fe\u0007W\u0002\u0002\u02fe\u02ff", - "\u0007R\u0002\u0002\u02ff$\u0003\u0002\u0002\u0002\u0300\u0301\u0007", - "Q\u0002\u0002\u0301\u0302\u0007T\u0002\u0002\u0302\u0303\u0007F\u0002", - "\u0002\u0303\u0304\u0007G\u0002\u0002\u0304\u0305\u0007T\u0002\u0002", - "\u0305&\u0003\u0002\u0002\u0002\u0306\u0307\u0007J\u0002\u0002\u0307", - "\u0308\u0007C\u0002\u0002\u0308\u0309\u0007X\u0002\u0002\u0309\u030a", - "\u0007K\u0002\u0002\u030a\u030b\u0007P\u0002\u0002\u030b\u030c\u0007", - "I\u0002\u0002\u030c(\u0003\u0002\u0002\u0002\u030d\u030e\u0007N\u0002", - "\u0002\u030e\u030f\u0007K\u0002\u0002\u030f\u0310\u0007O\u0002\u0002", - "\u0310\u0311\u0007K\u0002\u0002\u0311\u0312\u0007V\u0002\u0002\u0312", - "*\u0003\u0002\u0002\u0002\u0313\u0314\u0007C\u0002\u0002\u0314\u0315", - "\u0007V\u0002\u0002\u0315,\u0003\u0002\u0002\u0002\u0316\u0317\u0007", - "Q\u0002\u0002\u0317\u0318\u0007T\u0002\u0002\u0318.\u0003\u0002\u0002", - "\u0002\u0319\u031a\u0007C\u0002\u0002\u031a\u031b\u0007P\u0002\u0002", - "\u031b\u031c\u0007F\u0002\u0002\u031c0\u0003\u0002\u0002\u0002\u031d", - "\u031e\u0007K\u0002\u0002\u031e\u031f\u0007P\u0002\u0002\u031f2\u0003", - "\u0002\u0002\u0002\u0320\u0321\u0007P\u0002\u0002\u0321\u0322\u0007", - "Q\u0002\u0002\u0322\u0323\u0007V\u0002\u0002\u03234\u0003\u0002\u0002", - "\u0002\u0324\u0325\u0007P\u0002\u0002\u0325\u0326\u0007Q\u0002\u0002", - "\u03266\u0003\u0002\u0002\u0002\u0327\u0328\u0007G\u0002\u0002\u0328", - "\u0329\u0007Z\u0002\u0002\u0329\u032a\u0007K\u0002\u0002\u032a\u032b", - "\u0007U\u0002\u0002\u032b\u032c\u0007V\u0002\u0002\u032c\u032d\u0007", - "U\u0002\u0002\u032d8\u0003\u0002\u0002\u0002\u032e\u032f\u0007D\u0002", - "\u0002\u032f\u0330\u0007G\u0002\u0002\u0330\u0331\u0007V\u0002\u0002", - "\u0331\u0332\u0007Y\u0002\u0002\u0332\u0333\u0007G\u0002\u0002\u0333", - "\u0334\u0007G\u0002\u0002\u0334\u0335\u0007P\u0002\u0002\u0335:\u0003", - "\u0002\u0002\u0002\u0336\u0337\u0007N\u0002\u0002\u0337\u0338\u0007", - "K\u0002\u0002\u0338\u0339\u0007M\u0002\u0002\u0339\u033a\u0007G\u0002", - "\u0002\u033a<\u0003\u0002\u0002\u0002\u033b\u033c\u0007T\u0002\u0002", - "\u033c\u033d\u0007N\u0002\u0002\u033d\u033e\u0007K\u0002\u0002\u033e", - "\u033f\u0007M\u0002\u0002\u033f\u0340\u0007G\u0002\u0002\u0340>\u0003", - "\u0002\u0002\u0002\u0341\u0342\u0007K\u0002\u0002\u0342\u0343\u0007", - "U\u0002\u0002\u0343@\u0003\u0002\u0002\u0002\u0344\u0345\u0007V\u0002", - "\u0002\u0345\u0346\u0007T\u0002\u0002\u0346\u0347\u0007W\u0002\u0002", - "\u0347\u0348\u0007G\u0002\u0002\u0348B\u0003\u0002\u0002\u0002\u0349", - "\u034a\u0007H\u0002\u0002\u034a\u034b\u0007C\u0002\u0002\u034b\u034c", - "\u0007N\u0002\u0002\u034c\u034d\u0007U\u0002\u0002\u034d\u034e\u0007", - "G\u0002\u0002\u034eD\u0003\u0002\u0002\u0002\u034f\u0350\u0007P\u0002", - "\u0002\u0350\u0351\u0007W\u0002\u0002\u0351\u0352\u0007N\u0002\u0002", - "\u0352\u0353\u0007N\u0002\u0002\u0353\u0354\u0007U\u0002\u0002\u0354", - "F\u0003\u0002\u0002\u0002\u0355\u0356\u0007C\u0002\u0002\u0356\u0357", - "\u0007U\u0002\u0002\u0357\u0358\u0007E\u0002\u0002\u0358H\u0003\u0002", - "\u0002\u0002\u0359\u035a\u0007F\u0002\u0002\u035a\u035b\u0007G\u0002", - "\u0002\u035b\u035c\u0007U\u0002\u0002\u035c\u035d\u0007E\u0002\u0002", - "\u035dJ\u0003\u0002\u0002\u0002\u035e\u035f\u0007H\u0002\u0002\u035f", - "\u0360\u0007Q\u0002\u0002\u0360\u0361\u0007T\u0002\u0002\u0361L\u0003", - "\u0002\u0002\u0002\u0362\u0363\u0007K\u0002\u0002\u0363\u0364\u0007", - "P\u0002\u0002\u0364\u0365\u0007V\u0002\u0002\u0365\u0366\u0007G\u0002", - "\u0002\u0366\u0367\u0007T\u0002\u0002\u0367\u0368\u0007X\u0002\u0002", - "\u0368\u0369\u0007C\u0002\u0002\u0369\u036a\u0007N\u0002\u0002\u036a", - "N\u0003\u0002\u0002\u0002\u036b\u036c\u0007E\u0002\u0002\u036c\u036d", - "\u0007C\u0002\u0002\u036d\u036e\u0007U\u0002\u0002\u036e\u036f\u0007", - "G\u0002\u0002\u036fP\u0003\u0002\u0002\u0002\u0370\u0371\u0007Y\u0002", - "\u0002\u0371\u0372\u0007J\u0002\u0002\u0372\u0373\u0007G\u0002\u0002", - "\u0373\u0374\u0007P\u0002\u0002\u0374R\u0003\u0002\u0002\u0002\u0375", - "\u0376\u0007V\u0002\u0002\u0376\u0377\u0007J\u0002\u0002\u0377\u0378", - "\u0007G\u0002\u0002\u0378\u0379\u0007P\u0002\u0002\u0379T\u0003\u0002", - "\u0002\u0002\u037a\u037b\u0007G\u0002\u0002\u037b\u037c\u0007N\u0002", - "\u0002\u037c\u037d\u0007U\u0002\u0002\u037d\u037e\u0007G\u0002\u0002", - "\u037eV\u0003\u0002\u0002\u0002\u037f\u0380\u0007G\u0002\u0002\u0380", - "\u0381\u0007P\u0002\u0002\u0381\u0382\u0007F\u0002\u0002\u0382X\u0003", - "\u0002\u0002\u0002\u0383\u0384\u0007L\u0002\u0002\u0384\u0385\u0007", - "Q\u0002\u0002\u0385\u0386\u0007K\u0002\u0002\u0386\u0387\u0007P\u0002", - "\u0002\u0387Z\u0003\u0002\u0002\u0002\u0388\u0389\u0007E\u0002\u0002", - "\u0389\u038a\u0007T\u0002\u0002\u038a\u038b\u0007Q\u0002\u0002\u038b", - "\u038c\u0007U\u0002\u0002\u038c\u038d\u0007U\u0002\u0002\u038d\\\u0003", - "\u0002\u0002\u0002\u038e\u038f\u0007Q\u0002\u0002\u038f\u0390\u0007", - "W\u0002\u0002\u0390\u0391\u0007V\u0002\u0002\u0391\u0392\u0007G\u0002", - "\u0002\u0392\u0393\u0007T\u0002\u0002\u0393^\u0003\u0002\u0002\u0002", - "\u0394\u0395\u0007K\u0002\u0002\u0395\u0396\u0007P\u0002\u0002\u0396", - "\u0397\u0007P\u0002\u0002\u0397\u0398\u0007G\u0002\u0002\u0398\u0399", - "\u0007T\u0002\u0002\u0399`\u0003\u0002\u0002\u0002\u039a\u039b\u0007", - "N\u0002\u0002\u039b\u039c\u0007G\u0002\u0002\u039c\u039d\u0007H\u0002", - "\u0002\u039d\u039e\u0007V\u0002\u0002\u039eb\u0003\u0002\u0002\u0002", - "\u039f\u03a0\u0007U\u0002\u0002\u03a0\u03a1\u0007G\u0002\u0002\u03a1", - "\u03a2\u0007O\u0002\u0002\u03a2\u03a3\u0007K\u0002\u0002\u03a3d\u0003", - "\u0002\u0002\u0002\u03a4\u03a5\u0007T\u0002\u0002\u03a5\u03a6\u0007", - "K\u0002\u0002\u03a6\u03a7\u0007I\u0002\u0002\u03a7\u03a8\u0007J\u0002", - "\u0002\u03a8\u03a9\u0007V\u0002\u0002\u03a9f\u0003\u0002\u0002\u0002", - "\u03aa\u03ab\u0007H\u0002\u0002\u03ab\u03ac\u0007W\u0002\u0002\u03ac", - "\u03ad\u0007N\u0002\u0002\u03ad\u03ae\u0007N\u0002\u0002\u03aeh\u0003", - "\u0002\u0002\u0002\u03af\u03b0\u0007P\u0002\u0002\u03b0\u03b1\u0007", - "C\u0002\u0002\u03b1\u03b2\u0007V\u0002\u0002\u03b2\u03b3\u0007W\u0002", - "\u0002\u03b3\u03b4\u0007T\u0002\u0002\u03b4\u03b5\u0007C\u0002\u0002", - "\u03b5\u03b6\u0007N\u0002\u0002\u03b6j\u0003\u0002\u0002\u0002\u03b7", - "\u03b8\u0007Q\u0002\u0002\u03b8\u03b9\u0007P\u0002\u0002\u03b9l\u0003", - "\u0002\u0002\u0002\u03ba\u03bb\u0007R\u0002\u0002\u03bb\u03bc\u0007", - "K\u0002\u0002\u03bc\u03bd\u0007X\u0002\u0002\u03bd\u03be\u0007Q\u0002", - "\u0002\u03be\u03bf\u0007V\u0002\u0002\u03bfn\u0003\u0002\u0002\u0002", - "\u03c0\u03c1\u0007N\u0002\u0002\u03c1\u03c2\u0007C\u0002\u0002\u03c2", - "\u03c3\u0007V\u0002\u0002\u03c3\u03c4\u0007G\u0002\u0002\u03c4\u03c5", - "\u0007T\u0002\u0002\u03c5\u03c6\u0007C\u0002\u0002\u03c6\u03c7\u0007", - "N\u0002\u0002\u03c7p\u0003\u0002\u0002\u0002\u03c8\u03c9\u0007Y\u0002", - "\u0002\u03c9\u03ca\u0007K\u0002\u0002\u03ca\u03cb\u0007P\u0002\u0002", - "\u03cb\u03cc\u0007F\u0002\u0002\u03cc\u03cd\u0007Q\u0002\u0002\u03cd", - "\u03ce\u0007Y\u0002\u0002\u03cer\u0003\u0002\u0002\u0002\u03cf\u03d0", - "\u0007Q\u0002\u0002\u03d0\u03d1\u0007X\u0002\u0002\u03d1\u03d2\u0007", - "G\u0002\u0002\u03d2\u03d3\u0007T\u0002\u0002\u03d3t\u0003\u0002\u0002", - "\u0002\u03d4\u03d5\u0007R\u0002\u0002\u03d5\u03d6\u0007C\u0002\u0002", - "\u03d6\u03d7\u0007T\u0002\u0002\u03d7\u03d8\u0007V\u0002\u0002\u03d8", - "\u03d9\u0007K\u0002\u0002\u03d9\u03da\u0007V\u0002\u0002\u03da\u03db", - "\u0007K\u0002\u0002\u03db\u03dc\u0007Q\u0002\u0002\u03dc\u03dd\u0007", - "P\u0002\u0002\u03ddv\u0003\u0002\u0002\u0002\u03de\u03df\u0007T\u0002", - "\u0002\u03df\u03e0\u0007C\u0002\u0002\u03e0\u03e1\u0007P\u0002\u0002", - "\u03e1\u03e2\u0007I\u0002\u0002\u03e2\u03e3\u0007G\u0002\u0002\u03e3", - "x\u0003\u0002\u0002\u0002\u03e4\u03e5\u0007T\u0002\u0002\u03e5\u03e6", - "\u0007Q\u0002\u0002\u03e6\u03e7\u0007Y\u0002\u0002\u03e7\u03e8\u0007", - "U\u0002\u0002\u03e8z\u0003\u0002\u0002\u0002\u03e9\u03ea\u0007W\u0002", - "\u0002\u03ea\u03eb\u0007P\u0002\u0002\u03eb\u03ec\u0007D\u0002\u0002", - "\u03ec\u03ed\u0007Q\u0002\u0002\u03ed\u03ee\u0007W\u0002\u0002\u03ee", - "\u03ef\u0007P\u0002\u0002\u03ef\u03f0\u0007F\u0002\u0002\u03f0\u03f1", - "\u0007G\u0002\u0002\u03f1\u03f2\u0007F\u0002\u0002\u03f2|\u0003\u0002", - "\u0002\u0002\u03f3\u03f4\u0007R\u0002\u0002\u03f4\u03f5\u0007T\u0002", - "\u0002\u03f5\u03f6\u0007G\u0002\u0002\u03f6\u03f7\u0007E\u0002\u0002", - "\u03f7\u03f8\u0007G\u0002\u0002\u03f8\u03f9\u0007F\u0002\u0002\u03f9", - "\u03fa\u0007K\u0002\u0002\u03fa\u03fb\u0007P\u0002\u0002\u03fb\u03fc", - "\u0007I\u0002\u0002\u03fc~\u0003\u0002\u0002\u0002\u03fd\u03fe\u0007", - "H\u0002\u0002\u03fe\u03ff\u0007Q\u0002\u0002\u03ff\u0400\u0007N\u0002", - "\u0002\u0400\u0401\u0007N\u0002\u0002\u0401\u0402\u0007Q\u0002\u0002", - "\u0402\u0403\u0007Y\u0002\u0002\u0403\u0404\u0007K\u0002\u0002\u0404", - "\u0405\u0007P\u0002\u0002\u0405\u0406\u0007I\u0002\u0002\u0406\u0080", - "\u0003\u0002\u0002\u0002\u0407\u0408\u0007E\u0002\u0002\u0408\u0409", - "\u0007W\u0002\u0002\u0409\u040a\u0007T\u0002\u0002\u040a\u040b\u0007", - "T\u0002\u0002\u040b\u040c\u0007G\u0002\u0002\u040c\u040d\u0007P\u0002", - "\u0002\u040d\u040e\u0007V\u0002\u0002\u040e\u0082\u0003\u0002\u0002", - "\u0002\u040f\u0410\u0007H\u0002\u0002\u0410\u0411\u0007K\u0002\u0002", - "\u0411\u0412\u0007T\u0002\u0002\u0412\u0413\u0007U\u0002\u0002\u0413", - "\u0414\u0007V\u0002\u0002\u0414\u0084\u0003\u0002\u0002\u0002\u0415", - "\u0416\u0007C\u0002\u0002\u0416\u0417\u0007H\u0002\u0002\u0417\u0418", - "\u0007V\u0002\u0002\u0418\u0419\u0007G\u0002\u0002\u0419\u041a\u0007", - "T\u0002\u0002\u041a\u0086\u0003\u0002\u0002\u0002\u041b\u041c\u0007", - "N\u0002\u0002\u041c\u041d\u0007C\u0002\u0002\u041d\u041e\u0007U\u0002", - "\u0002\u041e\u041f\u0007V\u0002\u0002\u041f\u0088\u0003\u0002\u0002", - "\u0002\u0420\u0421\u0007Y\u0002\u0002\u0421\u0422\u0007K\u0002\u0002", - "\u0422\u0423\u0007V\u0002\u0002\u0423\u0424\u0007J\u0002\u0002\u0424", - "\u008a\u0003\u0002\u0002\u0002\u0425\u0426\u0007X\u0002\u0002\u0426", - "\u0427\u0007C\u0002\u0002\u0427\u0428\u0007N\u0002\u0002\u0428\u0429", - "\u0007W\u0002\u0002\u0429\u042a\u0007G\u0002\u0002\u042a\u042b\u0007", - "U\u0002\u0002\u042b\u008c\u0003\u0002\u0002\u0002\u042c\u042d\u0007", - "E\u0002\u0002\u042d\u042e\u0007T\u0002\u0002\u042e\u042f\u0007G\u0002", - "\u0002\u042f\u0430\u0007C\u0002\u0002\u0430\u0431\u0007V\u0002\u0002", - "\u0431\u0432\u0007G\u0002\u0002\u0432\u008e\u0003\u0002\u0002\u0002", - "\u0433\u0434\u0007V\u0002\u0002\u0434\u0435\u0007C\u0002\u0002\u0435", - "\u0436\u0007D\u0002\u0002\u0436\u0437\u0007N\u0002\u0002\u0437\u0438", - "\u0007G\u0002\u0002\u0438\u0090\u0003\u0002\u0002\u0002\u0439\u043a", - "\u0007F\u0002\u0002\u043a\u043b\u0007K\u0002\u0002\u043b\u043c\u0007", - "T\u0002\u0002\u043c\u043d\u0007G\u0002\u0002\u043d\u043e\u0007E\u0002", - "\u0002\u043e\u043f\u0007V\u0002\u0002\u043f\u0440\u0007Q\u0002\u0002", - "\u0440\u0441\u0007T\u0002\u0002\u0441\u0442\u0007[\u0002\u0002\u0442", - "\u0092\u0003\u0002\u0002\u0002\u0443\u0444\u0007X\u0002\u0002\u0444", - "\u0445\u0007K\u0002\u0002\u0445\u0446\u0007G\u0002\u0002\u0446\u0447", - "\u0007Y\u0002\u0002\u0447\u0094\u0003\u0002\u0002\u0002\u0448\u0449", - "\u0007T\u0002\u0002\u0449\u044a\u0007G\u0002\u0002\u044a\u044b\u0007", - "R\u0002\u0002\u044b\u044c\u0007N\u0002\u0002\u044c\u044d\u0007C\u0002", - "\u0002\u044d\u044e\u0007E\u0002\u0002\u044e\u044f\u0007G\u0002\u0002", - "\u044f\u0096\u0003\u0002\u0002\u0002\u0450\u0451\u0007K\u0002\u0002", - "\u0451\u0452\u0007P\u0002\u0002\u0452\u0453\u0007U\u0002\u0002\u0453", - "\u0454\u0007G\u0002\u0002\u0454\u0455\u0007T\u0002\u0002\u0455\u0456", - "\u0007V\u0002\u0002\u0456\u0098\u0003\u0002\u0002\u0002\u0457\u0458", - "\u0007F\u0002\u0002\u0458\u0459\u0007G\u0002\u0002\u0459\u045a\u0007", - "N\u0002\u0002\u045a\u045b\u0007G\u0002\u0002\u045b\u045c\u0007V\u0002", - "\u0002\u045c\u045d\u0007G\u0002\u0002\u045d\u009a\u0003\u0002\u0002", - "\u0002\u045e\u045f\u0007K\u0002\u0002\u045f\u0460\u0007P\u0002\u0002", - "\u0460\u0461\u0007V\u0002\u0002\u0461\u0462\u0007Q\u0002\u0002\u0462", - "\u009c\u0003\u0002\u0002\u0002\u0463\u0464\u0007F\u0002\u0002\u0464", - "\u0465\u0007G\u0002\u0002\u0465\u0466\u0007U\u0002\u0002\u0466\u0467", - "\u0007E\u0002\u0002\u0467\u0468\u0007T\u0002\u0002\u0468\u0469\u0007", - "K\u0002\u0002\u0469\u046a\u0007D\u0002\u0002\u046a\u046b\u0007G\u0002", - "\u0002\u046b\u009e\u0003\u0002\u0002\u0002\u046c\u046d\u0007G\u0002", - "\u0002\u046d\u046e\u0007Z\u0002\u0002\u046e\u046f\u0007R\u0002\u0002", - "\u046f\u0470\u0007N\u0002\u0002\u0470\u0471\u0007C\u0002\u0002\u0471", - "\u0472\u0007K\u0002\u0002\u0472\u0473\u0007P\u0002\u0002\u0473\u00a0", - "\u0003\u0002\u0002\u0002\u0474\u0475\u0007H\u0002\u0002\u0475\u0476", - "\u0007Q\u0002\u0002\u0476\u0477\u0007T\u0002\u0002\u0477\u0478\u0007", - "O\u0002\u0002\u0478\u0479\u0007C\u0002\u0002\u0479\u047a\u0007V\u0002", - "\u0002\u047a\u00a2\u0003\u0002\u0002\u0002\u047b\u047c\u0007N\u0002", - "\u0002\u047c\u047d\u0007Q\u0002\u0002\u047d\u047e\u0007I\u0002\u0002", - "\u047e\u047f\u0007K\u0002\u0002\u047f\u0480\u0007E\u0002\u0002\u0480", - "\u0481\u0007C\u0002\u0002\u0481\u0482\u0007N\u0002\u0002\u0482\u00a4", - "\u0003\u0002\u0002\u0002\u0483\u0484\u0007E\u0002\u0002\u0484\u0485", - "\u0007Q\u0002\u0002\u0485\u0486\u0007F\u0002\u0002\u0486\u0487\u0007", - "G\u0002\u0002\u0487\u0488\u0007I\u0002\u0002\u0488\u0489\u0007G\u0002", - "\u0002\u0489\u048a\u0007P\u0002\u0002\u048a\u00a6\u0003\u0002\u0002", - "\u0002\u048b\u048c\u0007E\u0002\u0002\u048c\u048d\u0007Q\u0002\u0002", - "\u048d\u048e\u0007U\u0002\u0002\u048e\u048f\u0007V\u0002\u0002\u048f", - "\u00a8\u0003\u0002\u0002\u0002\u0490\u0491\u0007E\u0002\u0002\u0491", - "\u0492\u0007C\u0002\u0002\u0492\u0493\u0007U\u0002\u0002\u0493\u0494", - "\u0007V\u0002\u0002\u0494\u00aa\u0003\u0002\u0002\u0002\u0495\u0496", - "\u0007U\u0002\u0002\u0496\u0497\u0007J\u0002\u0002\u0497\u0498\u0007", - "Q\u0002\u0002\u0498\u0499\u0007Y\u0002\u0002\u0499\u00ac\u0003\u0002", - "\u0002\u0002\u049a\u049b\u0007V\u0002\u0002\u049b\u049c\u0007C\u0002", - "\u0002\u049c\u049d\u0007D\u0002\u0002\u049d\u049e\u0007N\u0002\u0002", - "\u049e\u049f\u0007G\u0002\u0002\u049f\u04a0\u0007U\u0002\u0002\u04a0", - "\u00ae\u0003\u0002\u0002\u0002\u04a1\u04a2\u0007E\u0002\u0002\u04a2", - "\u04a3\u0007Q\u0002\u0002\u04a3\u04a4\u0007N\u0002\u0002\u04a4\u04a5", - "\u0007W\u0002\u0002\u04a5\u04a6\u0007O\u0002\u0002\u04a6\u04a7\u0007", - "P\u0002\u0002\u04a7\u04a8\u0007U\u0002\u0002\u04a8\u00b0\u0003\u0002", - "\u0002\u0002\u04a9\u04aa\u0007E\u0002\u0002\u04aa\u04ab\u0007Q\u0002", - "\u0002\u04ab\u04ac\u0007N\u0002\u0002\u04ac\u04ad\u0007W\u0002\u0002", - "\u04ad\u04ae\u0007O\u0002\u0002\u04ae\u04af\u0007P\u0002\u0002\u04af", - "\u00b2\u0003\u0002\u0002\u0002\u04b0\u04b1\u0007W\u0002\u0002\u04b1", - "\u04b2\u0007U\u0002\u0002\u04b2\u04b3\u0007G\u0002\u0002\u04b3\u00b4", - "\u0003\u0002\u0002\u0002\u04b4\u04b5\u0007R\u0002\u0002\u04b5\u04b6", - "\u0007C\u0002\u0002\u04b6\u04b7\u0007T\u0002\u0002\u04b7\u04b8\u0007", - "V\u0002\u0002\u04b8\u04b9\u0007K\u0002\u0002\u04b9\u04ba\u0007V\u0002", - "\u0002\u04ba\u04bb\u0007K\u0002\u0002\u04bb\u04bc\u0007Q\u0002\u0002", - "\u04bc\u04bd\u0007P\u0002\u0002\u04bd\u04be\u0007U\u0002\u0002\u04be", - "\u00b6\u0003\u0002\u0002\u0002\u04bf\u04c0\u0007H\u0002\u0002\u04c0", - "\u04c1\u0007W\u0002\u0002\u04c1\u04c2\u0007P\u0002\u0002\u04c2\u04c3", - "\u0007E\u0002\u0002\u04c3\u04c4\u0007V\u0002\u0002\u04c4\u04c5\u0007", - "K\u0002\u0002\u04c5\u04c6\u0007Q\u0002\u0002\u04c6\u04c7\u0007P\u0002", - "\u0002\u04c7\u04c8\u0007U\u0002\u0002\u04c8\u00b8\u0003\u0002\u0002", - "\u0002\u04c9\u04ca\u0007F\u0002\u0002\u04ca\u04cb\u0007T\u0002\u0002", - "\u04cb\u04cc\u0007Q\u0002\u0002\u04cc\u04cd\u0007R\u0002\u0002\u04cd", - "\u00ba\u0003\u0002\u0002\u0002\u04ce\u04cf\u0007W\u0002\u0002\u04cf", - "\u04d0\u0007P\u0002\u0002\u04d0\u04d1\u0007K\u0002\u0002\u04d1\u04d2", - "\u0007Q\u0002\u0002\u04d2\u04d3\u0007P\u0002\u0002\u04d3\u00bc\u0003", - "\u0002\u0002\u0002\u04d4\u04d5\u0007G\u0002\u0002\u04d5\u04d6\u0007", - "Z\u0002\u0002\u04d6\u04d7\u0007E\u0002\u0002\u04d7\u04d8\u0007G\u0002", - "\u0002\u04d8\u04d9\u0007R\u0002\u0002\u04d9\u04da\u0007V\u0002\u0002", - "\u04da\u00be\u0003\u0002\u0002\u0002\u04db\u04dc\u0007U\u0002\u0002", - "\u04dc\u04dd\u0007G\u0002\u0002\u04dd\u04de\u0007V\u0002\u0002\u04de", - "\u04df\u0007O\u0002\u0002\u04df\u04e0\u0007K\u0002\u0002\u04e0\u04e1", - "\u0007P\u0002\u0002\u04e1\u04e2\u0007W\u0002\u0002\u04e2\u04e3\u0007", - "U\u0002\u0002\u04e3\u00c0\u0003\u0002\u0002\u0002\u04e4\u04e5\u0007", - "K\u0002\u0002\u04e5\u04e6\u0007P\u0002\u0002\u04e6\u04e7\u0007V\u0002", - "\u0002\u04e7\u04e8\u0007G\u0002\u0002\u04e8\u04e9\u0007T\u0002\u0002", - "\u04e9\u04ea\u0007U\u0002\u0002\u04ea\u04eb\u0007G\u0002\u0002\u04eb", - "\u04ec\u0007E\u0002\u0002\u04ec\u04ed\u0007V\u0002\u0002\u04ed\u00c2", - "\u0003\u0002\u0002\u0002\u04ee\u04ef\u0007V\u0002\u0002\u04ef\u04f0", - "\u0007Q\u0002\u0002\u04f0\u00c4\u0003\u0002\u0002\u0002\u04f1\u04f2", - "\u0007V\u0002\u0002\u04f2\u04f3\u0007C\u0002\u0002\u04f3\u04f4\u0007", - "D\u0002\u0002\u04f4\u04f5\u0007N\u0002\u0002\u04f5\u04f6\u0007G\u0002", - "\u0002\u04f6\u04f7\u0007U\u0002\u0002\u04f7\u04f8\u0007C\u0002\u0002", - "\u04f8\u04f9\u0007O\u0002\u0002\u04f9\u04fa\u0007R\u0002\u0002\u04fa", - "\u04fb\u0007N\u0002\u0002\u04fb\u04fc\u0007G\u0002\u0002\u04fc\u00c6", - "\u0003\u0002\u0002\u0002\u04fd\u04fe\u0007U\u0002\u0002\u04fe\u04ff", - "\u0007V\u0002\u0002\u04ff\u0500\u0007T\u0002\u0002\u0500\u0501\u0007", - "C\u0002\u0002\u0501\u0502\u0007V\u0002\u0002\u0502\u0503\u0007K\u0002", - "\u0002\u0503\u0504\u0007H\u0002\u0002\u0504\u0505\u0007[\u0002\u0002", - "\u0505\u00c8\u0003\u0002\u0002\u0002\u0506\u0507\u0007C\u0002\u0002", - "\u0507\u0508\u0007N\u0002\u0002\u0508\u0509\u0007V\u0002\u0002\u0509", - "\u050a\u0007G\u0002\u0002\u050a\u050b\u0007T\u0002\u0002\u050b\u00ca", - "\u0003\u0002\u0002\u0002\u050c\u050d\u0007T\u0002\u0002\u050d\u050e", - "\u0007G\u0002\u0002\u050e\u050f\u0007P\u0002\u0002\u050f\u0510\u0007", - "C\u0002\u0002\u0510\u0511\u0007O\u0002\u0002\u0511\u0512\u0007G\u0002", - "\u0002\u0512\u00cc\u0003\u0002\u0002\u0002\u0513\u0514\u0007U\u0002", - "\u0002\u0514\u0515\u0007V\u0002\u0002\u0515\u0516\u0007T\u0002\u0002", - "\u0516\u0517\u0007W\u0002\u0002\u0517\u0518\u0007E\u0002\u0002\u0518", - "\u0519\u0007V\u0002\u0002\u0519\u00ce\u0003\u0002\u0002\u0002\u051a", - "\u051b\u0007E\u0002\u0002\u051b\u051c\u0007Q\u0002\u0002\u051c\u051d", - "\u0007O\u0002\u0002\u051d\u051e\u0007O\u0002\u0002\u051e\u051f\u0007", - "G\u0002\u0002\u051f\u0520\u0007P\u0002\u0002\u0520\u0521\u0007V\u0002", - "\u0002\u0521\u00d0\u0003\u0002\u0002\u0002\u0522\u0523\u0007U\u0002", - "\u0002\u0523\u0524\u0007G\u0002\u0002\u0524\u0525\u0007V\u0002\u0002", - "\u0525\u00d2\u0003\u0002\u0002\u0002\u0526\u0527\u0007T\u0002\u0002", - "\u0527\u0528\u0007G\u0002\u0002\u0528\u0529\u0007U\u0002\u0002\u0529", - "\u052a\u0007G\u0002\u0002\u052a\u052b\u0007V\u0002\u0002\u052b\u00d4", - "\u0003\u0002\u0002\u0002\u052c\u052d\u0007F\u0002\u0002\u052d\u052e", - "\u0007C\u0002\u0002\u052e\u052f\u0007V\u0002\u0002\u052f\u0530\u0007", - "C\u0002\u0002\u0530\u00d6\u0003\u0002\u0002\u0002\u0531\u0532\u0007", - "U\u0002\u0002\u0532\u0533\u0007V\u0002\u0002\u0533\u0534\u0007C\u0002", - "\u0002\u0534\u0535\u0007T\u0002\u0002\u0535\u0536\u0007V\u0002\u0002", - "\u0536\u00d8\u0003\u0002\u0002\u0002\u0537\u0538\u0007V\u0002\u0002", - "\u0538\u0539\u0007T\u0002\u0002\u0539\u053a\u0007C\u0002\u0002\u053a", - "\u053b\u0007P\u0002\u0002\u053b\u053c\u0007U\u0002\u0002\u053c\u053d", - "\u0007C\u0002\u0002\u053d\u053e\u0007E\u0002\u0002\u053e\u053f\u0007", - "V\u0002\u0002\u053f\u0540\u0007K\u0002\u0002\u0540\u0541\u0007Q\u0002", - "\u0002\u0541\u0542\u0007P\u0002\u0002\u0542\u00da\u0003\u0002\u0002", - "\u0002\u0543\u0544\u0007E\u0002\u0002\u0544\u0545\u0007Q\u0002\u0002", - "\u0545\u0546\u0007O\u0002\u0002\u0546\u0547\u0007O\u0002\u0002\u0547", - "\u0548\u0007K\u0002\u0002\u0548\u0549\u0007V\u0002\u0002\u0549\u00dc", - "\u0003\u0002\u0002\u0002\u054a\u054b\u0007T\u0002\u0002\u054b\u054c", - "\u0007Q\u0002\u0002\u054c\u054d\u0007N\u0002\u0002\u054d\u054e\u0007", - "N\u0002\u0002\u054e\u054f\u0007D\u0002\u0002\u054f\u0550\u0007C\u0002", - "\u0002\u0550\u0551\u0007E\u0002\u0002\u0551\u0552\u0007M\u0002\u0002", - "\u0552\u00de\u0003\u0002\u0002\u0002\u0553\u0554\u0007O\u0002\u0002", - "\u0554\u0555\u0007C\u0002\u0002\u0555\u0556\u0007E\u0002\u0002\u0556", - "\u0557\u0007T\u0002\u0002\u0557\u0558\u0007Q\u0002\u0002\u0558\u00e0", - "\u0003\u0002\u0002\u0002\u0559\u055a\u0007K\u0002\u0002\u055a\u055b", - "\u0007I\u0002\u0002\u055b\u055c\u0007P\u0002\u0002\u055c\u055d\u0007", - "Q\u0002\u0002\u055d\u055e\u0007T\u0002\u0002\u055e\u055f\u0007G\u0002", - "\u0002\u055f\u00e2\u0003\u0002\u0002\u0002\u0560\u0561\u0007D\u0002", - "\u0002\u0561\u0562\u0007Q\u0002\u0002\u0562\u0563\u0007V\u0002\u0002", - "\u0563\u0564\u0007J\u0002\u0002\u0564\u00e4\u0003\u0002\u0002\u0002", - "\u0565\u0566\u0007N\u0002\u0002\u0566\u0567\u0007G\u0002\u0002\u0567", - "\u0568\u0007C\u0002\u0002\u0568\u0569\u0007F\u0002\u0002\u0569\u056a", - "\u0007K\u0002\u0002\u056a\u056b\u0007P\u0002\u0002\u056b\u056c\u0007", - "I\u0002\u0002\u056c\u00e6\u0003\u0002\u0002\u0002\u056d\u056e\u0007", - "V\u0002\u0002\u056e\u056f\u0007T\u0002\u0002\u056f\u0570\u0007C\u0002", - "\u0002\u0570\u0571\u0007K\u0002\u0002\u0571\u0572\u0007N\u0002\u0002", - "\u0572\u0573\u0007K\u0002\u0002\u0573\u0574\u0007P\u0002\u0002\u0574", - "\u0575\u0007I\u0002\u0002\u0575\u00e8\u0003\u0002\u0002\u0002\u0576", - "\u0577\u0007K\u0002\u0002\u0577\u0578\u0007H\u0002\u0002\u0578\u00ea", - "\u0003\u0002\u0002\u0002\u0579\u057a\u0007R\u0002\u0002\u057a\u057b", - "\u0007Q\u0002\u0002\u057b\u057c\u0007U\u0002\u0002\u057c\u057d\u0007", - "K\u0002\u0002\u057d\u057e\u0007V\u0002\u0002\u057e\u057f\u0007K\u0002", - "\u0002\u057f\u0580\u0007Q\u0002\u0002\u0580\u0581\u0007P\u0002\u0002", - "\u0581\u00ec\u0003\u0002\u0002\u0002\u0582\u0583\u0007G\u0002\u0002", - "\u0583\u0584\u0007Z\u0002\u0002\u0584\u0585\u0007V\u0002\u0002\u0585", - "\u0586\u0007T\u0002\u0002\u0586\u0587\u0007C\u0002\u0002\u0587\u0588", - "\u0007E\u0002\u0002\u0588\u0589\u0007V\u0002\u0002\u0589\u00ee\u0003", - "\u0002\u0002\u0002\u058a\u058b\u0007G\u0002\u0002\u058b\u058c\u0007", - "S\u0002\u0002\u058c\u00f0\u0003\u0002\u0002\u0002\u058d\u058e\u0007", - "P\u0002\u0002\u058e\u058f\u0007U\u0002\u0002\u058f\u0590\u0007G\u0002", - "\u0002\u0590\u0591\u0007S\u0002\u0002\u0591\u00f2\u0003\u0002\u0002", - "\u0002\u0592\u0593\u0007P\u0002\u0002\u0593\u0594\u0007G\u0002\u0002", - "\u0594\u0595\u0007S\u0002\u0002\u0595\u00f4\u0003\u0002\u0002\u0002", - "\u0596\u0597\u0007P\u0002\u0002\u0597\u0598\u0007G\u0002\u0002\u0598", - "\u0599\u0007S\u0002\u0002\u0599\u059a\u0007L\u0002\u0002\u059a\u00f6", - "\u0003\u0002\u0002\u0002\u059b\u059c\u0007N\u0002\u0002\u059c\u059d", - "\u0007V\u0002\u0002\u059d\u00f8\u0003\u0002\u0002\u0002\u059e\u059f", - "\u0007N\u0002\u0002\u059f\u05a0\u0007V\u0002\u0002\u05a0\u05a1\u0007", - "G\u0002\u0002\u05a1\u00fa\u0003\u0002\u0002\u0002\u05a2\u05a3\u0007", - "I\u0002\u0002\u05a3\u05a4\u0007V\u0002\u0002\u05a4\u00fc\u0003\u0002", - "\u0002\u0002\u05a5\u05a6\u0007I\u0002\u0002\u05a6\u05a7\u0007V\u0002", - "\u0002\u05a7\u05a8\u0007G\u0002\u0002\u05a8\u00fe\u0003\u0002\u0002", - "\u0002\u05a9\u05aa\u0007R\u0002\u0002\u05aa\u05ab\u0007N\u0002\u0002", - "\u05ab\u05ac\u0007W\u0002\u0002\u05ac\u05ad\u0007U\u0002\u0002\u05ad", - "\u0100\u0003\u0002\u0002\u0002\u05ae\u05af\u0007O\u0002\u0002\u05af", - "\u05b0\u0007K\u0002\u0002\u05b0\u05b1\u0007P\u0002\u0002\u05b1\u05b2", - "\u0007W\u0002\u0002\u05b2\u05b3\u0007U\u0002\u0002\u05b3\u0102\u0003", - "\u0002\u0002\u0002\u05b4\u05b5\u0007C\u0002\u0002\u05b5\u05b6\u0007", - "U\u0002\u0002\u05b6\u05b7\u0007V\u0002\u0002\u05b7\u05b8\u0007G\u0002", - "\u0002\u05b8\u05b9\u0007T\u0002\u0002\u05b9\u05ba\u0007K\u0002\u0002", - "\u05ba\u05bb\u0007U\u0002\u0002\u05bb\u05bc\u0007M\u0002\u0002\u05bc", - "\u0104\u0003\u0002\u0002\u0002\u05bd\u05be\u0007U\u0002\u0002\u05be", - "\u05bf\u0007N\u0002\u0002\u05bf\u05c0\u0007C\u0002\u0002\u05c0\u05c1", - "\u0007U\u0002\u0002\u05c1\u05c2\u0007J\u0002\u0002\u05c2\u0106\u0003", - "\u0002\u0002\u0002\u05c3\u05c4\u0007R\u0002\u0002\u05c4\u05c5\u0007", - "G\u0002\u0002\u05c5\u05c6\u0007T\u0002\u0002\u05c6\u05c7\u0007E\u0002", - "\u0002\u05c7\u05c8\u0007G\u0002\u0002\u05c8\u05c9\u0007P\u0002\u0002", - "\u05c9\u05ca\u0007V\u0002\u0002\u05ca\u0108\u0003\u0002\u0002\u0002", - "\u05cb\u05cc\u0007F\u0002\u0002\u05cc\u05cd\u0007K\u0002\u0002\u05cd", - "\u05ce\u0007X\u0002\u0002\u05ce\u010a\u0003\u0002\u0002\u0002\u05cf", - "\u05d0\u0007V\u0002\u0002\u05d0\u05d1\u0007K\u0002\u0002\u05d1\u05d2", - "\u0007N\u0002\u0002\u05d2\u05d3\u0007F\u0002\u0002\u05d3\u05d4\u0007", - "G\u0002\u0002\u05d4\u010c\u0003\u0002\u0002\u0002\u05d5\u05d6\u0007", - "C\u0002\u0002\u05d6\u05d7\u0007O\u0002\u0002\u05d7\u05d8\u0007R\u0002", - "\u0002\u05d8\u05d9\u0007G\u0002\u0002\u05d9\u05da\u0007T\u0002\u0002", - "\u05da\u05db\u0007U\u0002\u0002\u05db\u05dc\u0007C\u0002\u0002\u05dc", - "\u05dd\u0007P\u0002\u0002\u05dd\u05de\u0007F\u0002\u0002\u05de\u010e", - "\u0003\u0002\u0002\u0002\u05df\u05e0\u0007R\u0002\u0002\u05e0\u05e1", - "\u0007K\u0002\u0002\u05e1\u05e2\u0007R\u0002\u0002\u05e2\u05e3\u0007", - "G\u0002\u0002\u05e3\u0110\u0003\u0002\u0002\u0002\u05e4\u05e5\u0007", - "E\u0002\u0002\u05e5\u05e6\u0007Q\u0002\u0002\u05e6\u05e7\u0007P\u0002", - "\u0002\u05e7\u05e8\u0007E\u0002\u0002\u05e8\u05e9\u0007C\u0002\u0002", - "\u05e9\u05ea\u0007V\u0002\u0002\u05ea\u05eb\u0007a\u0002\u0002\u05eb", - "\u05ec\u0007R\u0002\u0002\u05ec\u05ed\u0007K\u0002\u0002\u05ed\u05ee", - "\u0007R\u0002\u0002\u05ee\u05ef\u0007G\u0002\u0002\u05ef\u0112\u0003", - "\u0002\u0002\u0002\u05f0\u05f1\u0007J\u0002\u0002\u05f1\u05f2\u0007", - "C\u0002\u0002\u05f2\u05f3\u0007V\u0002\u0002\u05f3\u0114\u0003\u0002", - "\u0002\u0002\u05f4\u05f5\u0007R\u0002\u0002\u05f5\u05f6\u0007G\u0002", - "\u0002\u05f6\u05f7\u0007T\u0002\u0002\u05f7\u05f8\u0007E\u0002\u0002", - "\u05f8\u05f9\u0007G\u0002\u0002\u05f9\u05fa\u0007P\u0002\u0002\u05fa", - "\u05fb\u0007V\u0002\u0002\u05fb\u05fc\u0007N\u0002\u0002\u05fc\u05fd", - "\u0007K\u0002\u0002\u05fd\u05fe\u0007V\u0002\u0002\u05fe\u0116\u0003", - "\u0002\u0002\u0002\u05ff\u0600\u0007D\u0002\u0002\u0600\u0601\u0007", - "W\u0002\u0002\u0601\u0602\u0007E\u0002\u0002\u0602\u0603\u0007M\u0002", - "\u0002\u0603\u0604\u0007G\u0002\u0002\u0604\u0605\u0007V\u0002\u0002", - "\u0605\u0118\u0003\u0002\u0002\u0002\u0606\u0607\u0007Q\u0002\u0002", - "\u0607\u0608\u0007W\u0002\u0002\u0608\u0609\u0007V\u0002\u0002\u0609", - "\u011a\u0003\u0002\u0002\u0002\u060a\u060b\u0007Q\u0002\u0002\u060b", - "\u060c\u0007H\u0002\u0002\u060c\u011c\u0003\u0002\u0002\u0002\u060d", - "\u060e\u0007U\u0002\u0002\u060e\u060f\u0007Q\u0002\u0002\u060f\u0610", - "\u0007T\u0002\u0002\u0610\u0611\u0007V\u0002\u0002\u0611\u011e\u0003", - "\u0002\u0002\u0002\u0612\u0613\u0007E\u0002\u0002\u0613\u0614\u0007", - "N\u0002\u0002\u0614\u0615\u0007W\u0002\u0002\u0615\u0616\u0007U\u0002", - "\u0002\u0616\u0617\u0007V\u0002\u0002\u0617\u0618\u0007G\u0002\u0002", - "\u0618\u0619\u0007T\u0002\u0002\u0619\u0120\u0003\u0002\u0002\u0002", - "\u061a\u061b\u0007F\u0002\u0002\u061b\u061c\u0007K\u0002\u0002\u061c", - "\u061d\u0007U\u0002\u0002\u061d\u061e\u0007V\u0002\u0002\u061e\u061f", - "\u0007T\u0002\u0002\u061f\u0620\u0007K\u0002\u0002\u0620\u0621\u0007", - "D\u0002\u0002\u0621\u0622\u0007W\u0002\u0002\u0622\u0623\u0007V\u0002", - "\u0002\u0623\u0624\u0007G\u0002\u0002\u0624\u0122\u0003\u0002\u0002", - "\u0002\u0625\u0626\u0007Q\u0002\u0002\u0626\u0627\u0007X\u0002\u0002", - "\u0627\u0628\u0007G\u0002\u0002\u0628\u0629\u0007T\u0002\u0002\u0629", - "\u062a\u0007Y\u0002\u0002\u062a\u062b\u0007T\u0002\u0002\u062b\u062c", - "\u0007K\u0002\u0002\u062c\u062d\u0007V\u0002\u0002\u062d\u062e\u0007", - "G\u0002\u0002\u062e\u0124\u0003\u0002\u0002\u0002\u062f\u0630\u0007", - "V\u0002\u0002\u0630\u0631\u0007T\u0002\u0002\u0631\u0632\u0007C\u0002", - "\u0002\u0632\u0633\u0007P\u0002\u0002\u0633\u0634\u0007U\u0002\u0002", - "\u0634\u0635\u0007H\u0002\u0002\u0635\u0636\u0007Q\u0002\u0002\u0636", - "\u0637\u0007T\u0002\u0002\u0637\u0638\u0007O\u0002\u0002\u0638\u0126", - "\u0003\u0002\u0002\u0002\u0639\u063a\u0007T\u0002\u0002\u063a\u063b", - "\u0007G\u0002\u0002\u063b\u063c\u0007F\u0002\u0002\u063c\u063d\u0007", - "W\u0002\u0002\u063d\u063e\u0007E\u0002\u0002\u063e\u063f\u0007G\u0002", - "\u0002\u063f\u0128\u0003\u0002\u0002\u0002\u0640\u0641\u0007W\u0002", - "\u0002\u0641\u0642\u0007U\u0002\u0002\u0642\u0643\u0007K\u0002\u0002", - "\u0643\u0644\u0007P\u0002\u0002\u0644\u0645\u0007I\u0002\u0002\u0645", - "\u012a\u0003\u0002\u0002\u0002\u0646\u0647\u0007U\u0002\u0002\u0647", - "\u0648\u0007G\u0002\u0002\u0648\u0649\u0007T\u0002\u0002\u0649\u064a", - "\u0007F\u0002\u0002\u064a\u064b\u0007G\u0002\u0002\u064b\u012c\u0003", - "\u0002\u0002\u0002\u064c\u064d\u0007U\u0002\u0002\u064d\u064e\u0007", - "G\u0002\u0002\u064e\u064f\u0007T\u0002\u0002\u064f\u0650\u0007F\u0002", - "\u0002\u0650\u0651\u0007G\u0002\u0002\u0651\u0652\u0007R\u0002\u0002", - "\u0652\u0653\u0007T\u0002\u0002\u0653\u0654\u0007Q\u0002\u0002\u0654", - "\u0655\u0007R\u0002\u0002\u0655\u0656\u0007G\u0002\u0002\u0656\u0657", - "\u0007T\u0002\u0002\u0657\u0658\u0007V\u0002\u0002\u0658\u0659\u0007", - "K\u0002\u0002\u0659\u065a\u0007G\u0002\u0002\u065a\u065b\u0007U\u0002", - "\u0002\u065b\u012e\u0003\u0002\u0002\u0002\u065c\u065d\u0007T\u0002", - "\u0002\u065d\u065e\u0007G\u0002\u0002\u065e\u065f\u0007E\u0002\u0002", - "\u065f\u0660\u0007Q\u0002\u0002\u0660\u0661\u0007T\u0002\u0002\u0661", - "\u0662\u0007F\u0002\u0002\u0662\u0663\u0007T\u0002\u0002\u0663\u0664", - "\u0007G\u0002\u0002\u0664\u0665\u0007C\u0002\u0002\u0665\u0666\u0007", - "F\u0002\u0002\u0666\u0667\u0007G\u0002\u0002\u0667\u0668\u0007T\u0002", - "\u0002\u0668\u0130\u0003\u0002\u0002\u0002\u0669\u066a\u0007T\u0002", - "\u0002\u066a\u066b\u0007G\u0002\u0002\u066b\u066c\u0007E\u0002\u0002", - "\u066c\u066d\u0007Q\u0002\u0002\u066d\u066e\u0007T\u0002\u0002\u066e", - "\u066f\u0007F\u0002\u0002\u066f\u0670\u0007Y\u0002\u0002\u0670\u0671", - "\u0007T\u0002\u0002\u0671\u0672\u0007K\u0002\u0002\u0672\u0673\u0007", - "V\u0002\u0002\u0673\u0674\u0007G\u0002\u0002\u0674\u0675\u0007T\u0002", - "\u0002\u0675\u0132\u0003\u0002\u0002\u0002\u0676\u0677\u0007F\u0002", - "\u0002\u0677\u0678\u0007G\u0002\u0002\u0678\u0679\u0007N\u0002\u0002", - "\u0679\u067a\u0007K\u0002\u0002\u067a\u067b\u0007O\u0002\u0002\u067b", - "\u067c\u0007K\u0002\u0002\u067c\u067d\u0007V\u0002\u0002\u067d\u067e", - "\u0007G\u0002\u0002\u067e\u067f\u0007F\u0002\u0002\u067f\u0134\u0003", - "\u0002\u0002\u0002\u0680\u0681\u0007H\u0002\u0002\u0681\u0682\u0007", - "K\u0002\u0002\u0682\u0683\u0007G\u0002\u0002\u0683\u0684\u0007N\u0002", - "\u0002\u0684\u0685\u0007F\u0002\u0002\u0685\u0686\u0007U\u0002\u0002", - "\u0686\u0136\u0003\u0002\u0002\u0002\u0687\u0688\u0007V\u0002\u0002", - "\u0688\u0689\u0007G\u0002\u0002\u0689\u068a\u0007T\u0002\u0002\u068a", - "\u068b\u0007O\u0002\u0002\u068b\u068c\u0007K\u0002\u0002\u068c\u068d", - "\u0007P\u0002\u0002\u068d\u068e\u0007C\u0002\u0002\u068e\u068f\u0007", - "V\u0002\u0002\u068f\u0690\u0007G\u0002\u0002\u0690\u0691\u0007F\u0002", - "\u0002\u0691\u0138\u0003\u0002\u0002\u0002\u0692\u0693\u0007E\u0002", - "\u0002\u0693\u0694\u0007Q\u0002\u0002\u0694\u0695\u0007N\u0002\u0002", - "\u0695\u0696\u0007N\u0002\u0002\u0696\u0697\u0007G\u0002\u0002\u0697", - "\u0698\u0007E\u0002\u0002\u0698\u0699\u0007V\u0002\u0002\u0699\u069a", - "\u0007K\u0002\u0002\u069a\u069b\u0007Q\u0002\u0002\u069b\u069c\u0007", - "P\u0002\u0002\u069c\u013a\u0003\u0002\u0002\u0002\u069d\u069e\u0007", - "K\u0002\u0002\u069e\u069f\u0007V\u0002\u0002\u069f\u06a0\u0007G\u0002", - "\u0002\u06a0\u06a1\u0007O\u0002\u0002\u06a1\u06a2\u0007U\u0002\u0002", - "\u06a2\u013c\u0003\u0002\u0002\u0002\u06a3\u06a4\u0007M\u0002\u0002", - "\u06a4\u06a5\u0007G\u0002\u0002\u06a5\u06a6\u0007[\u0002\u0002\u06a6", - "\u06a7\u0007U\u0002\u0002\u06a7\u013e\u0003\u0002\u0002\u0002\u06a8", - "\u06a9\u0007G\u0002\u0002\u06a9\u06aa\u0007U\u0002\u0002\u06aa\u06ab", - "\u0007E\u0002\u0002\u06ab\u06ac\u0007C\u0002\u0002\u06ac\u06ad\u0007", - "R\u0002\u0002\u06ad\u06ae\u0007G\u0002\u0002\u06ae\u06af\u0007F\u0002", - "\u0002\u06af\u0140\u0003\u0002\u0002\u0002\u06b0\u06b1\u0007N\u0002", - "\u0002\u06b1\u06b2\u0007K\u0002\u0002\u06b2\u06b3\u0007P\u0002\u0002", - "\u06b3\u06b4\u0007G\u0002\u0002\u06b4\u06b5\u0007U\u0002\u0002\u06b5", - "\u0142\u0003\u0002\u0002\u0002\u06b6\u06b7\u0007U\u0002\u0002\u06b7", - "\u06b8\u0007G\u0002\u0002\u06b8\u06b9\u0007R\u0002\u0002\u06b9\u06ba", - "\u0007C\u0002\u0002\u06ba\u06bb\u0007T\u0002\u0002\u06bb\u06bc\u0007", - "C\u0002\u0002\u06bc\u06bd\u0007V\u0002\u0002\u06bd\u06be\u0007G\u0002", - "\u0002\u06be\u06bf\u0007F\u0002\u0002\u06bf\u0144\u0003\u0002\u0002", - "\u0002\u06c0\u06c1\u0007H\u0002\u0002\u06c1\u06c2\u0007W\u0002\u0002", - "\u06c2\u06c3\u0007P\u0002\u0002\u06c3\u06c4\u0007E\u0002\u0002\u06c4", - "\u06c5\u0007V\u0002\u0002\u06c5\u06c6\u0007K\u0002\u0002\u06c6\u06c7", - "\u0007Q\u0002\u0002\u06c7\u06c8\u0007P\u0002\u0002\u06c8\u0146\u0003", - "\u0002\u0002\u0002\u06c9\u06ca\u0007G\u0002\u0002\u06ca\u06cb\u0007", - "Z\u0002\u0002\u06cb\u06cc\u0007V\u0002\u0002\u06cc\u06cd\u0007G\u0002", - "\u0002\u06cd\u06ce\u0007P\u0002\u0002\u06ce\u06cf\u0007F\u0002\u0002", - "\u06cf\u06d0\u0007G\u0002\u0002\u06d0\u06d1\u0007F\u0002\u0002\u06d1", - "\u0148\u0003\u0002\u0002\u0002\u06d2\u06d3\u0007T\u0002\u0002\u06d3", - "\u06d4\u0007G\u0002\u0002\u06d4\u06d5\u0007H\u0002\u0002\u06d5\u06d6", - "\u0007T\u0002\u0002\u06d6\u06d7\u0007G\u0002\u0002\u06d7\u06d8\u0007", - "U\u0002\u0002\u06d8\u06d9\u0007J\u0002\u0002\u06d9\u014a\u0003\u0002", - "\u0002\u0002\u06da\u06db\u0007E\u0002\u0002\u06db\u06dc\u0007N\u0002", - "\u0002\u06dc\u06dd\u0007G\u0002\u0002\u06dd\u06de\u0007C\u0002\u0002", - "\u06de\u06df\u0007T\u0002\u0002\u06df\u014c\u0003\u0002\u0002\u0002", - "\u06e0\u06e1\u0007E\u0002\u0002\u06e1\u06e2\u0007C\u0002\u0002\u06e2", - "\u06e3\u0007E\u0002\u0002\u06e3\u06e4\u0007J\u0002\u0002\u06e4\u06e5", - "\u0007G\u0002\u0002\u06e5\u014e\u0003\u0002\u0002\u0002\u06e6\u06e7", - "\u0007W\u0002\u0002\u06e7\u06e8\u0007P\u0002\u0002\u06e8\u06e9\u0007", - "E\u0002\u0002\u06e9\u06ea\u0007C\u0002\u0002\u06ea\u06eb\u0007E\u0002", - "\u0002\u06eb\u06ec\u0007J\u0002\u0002\u06ec\u06ed\u0007G\u0002\u0002", - "\u06ed\u0150\u0003\u0002\u0002\u0002\u06ee\u06ef\u0007N\u0002\u0002", - "\u06ef\u06f0\u0007C\u0002\u0002\u06f0\u06f1\u0007\\\u0002\u0002\u06f1", - "\u06f2\u0007[\u0002\u0002\u06f2\u0152\u0003\u0002\u0002\u0002\u06f3", - "\u06f4\u0007H\u0002\u0002\u06f4\u06f5\u0007Q\u0002\u0002\u06f5\u06f6", - "\u0007T\u0002\u0002\u06f6\u06f7\u0007O\u0002\u0002\u06f7\u06f8\u0007", - "C\u0002\u0002\u06f8\u06f9\u0007V\u0002\u0002\u06f9\u06fa\u0007V\u0002", - "\u0002\u06fa\u06fb\u0007G\u0002\u0002\u06fb\u06fc\u0007F\u0002\u0002", - "\u06fc\u0154\u0003\u0002\u0002\u0002\u06fd\u06fe\u0007I\u0002\u0002", - "\u06fe\u06ff\u0007N\u0002\u0002\u06ff\u0700\u0007Q\u0002\u0002\u0700", - "\u0701\u0007D\u0002\u0002\u0701\u0702\u0007C\u0002\u0002\u0702\u0703", - "\u0007N\u0002\u0002\u0703\u0156\u0003\u0002\u0002\u0002\u0704\u0705", - "\u0007V\u0002\u0002\u0705\u0706\u0007G\u0002\u0002\u0706\u0707\u0007", - "O\u0002\u0002\u0707\u0708\u0007R\u0002\u0002\u0708\u0709\u0007Q\u0002", - "\u0002\u0709\u070a\u0007T\u0002\u0002\u070a\u070b\u0007C\u0002\u0002", - "\u070b\u070c\u0007T\u0002\u0002\u070c\u070d\u0007[\u0002\u0002\u070d", - "\u0158\u0003\u0002\u0002\u0002\u070e\u070f\u0007Q\u0002\u0002\u070f", - "\u0710\u0007R\u0002\u0002\u0710\u0711\u0007V\u0002\u0002\u0711\u0712", - "\u0007K\u0002\u0002\u0712\u0713\u0007Q\u0002\u0002\u0713\u0714\u0007", - "P\u0002\u0002\u0714\u0715\u0007U\u0002\u0002\u0715\u015a\u0003\u0002", - "\u0002\u0002\u0716\u0717\u0007W\u0002\u0002\u0717\u0718\u0007P\u0002", - "\u0002\u0718\u0719\u0007U\u0002\u0002\u0719\u071a\u0007G\u0002\u0002", - "\u071a\u071b\u0007V\u0002\u0002\u071b\u015c\u0003\u0002\u0002\u0002", - "\u071c\u071d\u0007V\u0002\u0002\u071d\u071e\u0007D\u0002\u0002\u071e", - "\u071f\u0007N\u0002\u0002\u071f\u0720\u0007R\u0002\u0002\u0720\u0721", - "\u0007T\u0002\u0002\u0721\u0722\u0007Q\u0002\u0002\u0722\u0723\u0007", - "R\u0002\u0002\u0723\u0724\u0007G\u0002\u0002\u0724\u0725\u0007T\u0002", - "\u0002\u0725\u0726\u0007V\u0002\u0002\u0726\u0727\u0007K\u0002\u0002", - "\u0727\u0728\u0007G\u0002\u0002\u0728\u0729\u0007U\u0002\u0002\u0729", - "\u015e\u0003\u0002\u0002\u0002\u072a\u072b\u0007F\u0002\u0002\u072b", - "\u072c\u0007D\u0002\u0002\u072c\u072d\u0007R\u0002\u0002\u072d\u072e", - "\u0007T\u0002\u0002\u072e\u072f\u0007Q\u0002\u0002\u072f\u0730\u0007", - "R\u0002\u0002\u0730\u0731\u0007G\u0002\u0002\u0731\u0732\u0007T\u0002", - "\u0002\u0732\u0733\u0007V\u0002\u0002\u0733\u0734\u0007K\u0002\u0002", - "\u0734\u0735\u0007G\u0002\u0002\u0735\u0736\u0007U\u0002\u0002\u0736", - "\u0160\u0003\u0002\u0002\u0002\u0737\u0738\u0007D\u0002\u0002\u0738", - "\u0739\u0007W\u0002\u0002\u0739\u073a\u0007E\u0002\u0002\u073a\u073b", - "\u0007M\u0002\u0002\u073b\u073c\u0007G\u0002\u0002\u073c\u073d\u0007", - "V\u0002\u0002\u073d\u073e\u0007U\u0002\u0002\u073e\u0162\u0003\u0002", - "\u0002\u0002\u073f\u0740\u0007U\u0002\u0002\u0740\u0741\u0007M\u0002", - "\u0002\u0741\u0742\u0007G\u0002\u0002\u0742\u0743\u0007Y\u0002\u0002", - "\u0743\u0744\u0007G\u0002\u0002\u0744\u0745\u0007F\u0002\u0002\u0745", - "\u0164\u0003\u0002\u0002\u0002\u0746\u0747\u0007U\u0002\u0002\u0747", - "\u0748\u0007V\u0002\u0002\u0748\u0749\u0007Q\u0002\u0002\u0749\u074a", - "\u0007T\u0002\u0002\u074a\u074b\u0007G\u0002\u0002\u074b\u074c\u0007", - "F\u0002\u0002\u074c\u0166\u0003\u0002\u0002\u0002\u074d\u074e\u0007", - "F\u0002\u0002\u074e\u074f\u0007K\u0002\u0002\u074f\u0750\u0007T\u0002", - "\u0002\u0750\u0751\u0007G\u0002\u0002\u0751\u0752\u0007E\u0002\u0002", - "\u0752\u0753\u0007V\u0002\u0002\u0753\u0754\u0007Q\u0002\u0002\u0754", - "\u0755\u0007T\u0002\u0002\u0755\u0756\u0007K\u0002\u0002\u0756\u0757", - "\u0007G\u0002\u0002\u0757\u0758\u0007U\u0002\u0002\u0758\u0168\u0003", - "\u0002\u0002\u0002\u0759\u075a\u0007N\u0002\u0002\u075a\u075b\u0007", - "Q\u0002\u0002\u075b\u075c\u0007E\u0002\u0002\u075c\u075d\u0007C\u0002", - "\u0002\u075d\u075e\u0007V\u0002\u0002\u075e\u075f\u0007K\u0002\u0002", - "\u075f\u0760\u0007Q\u0002\u0002\u0760\u0761\u0007P\u0002\u0002\u0761", - "\u016a\u0003\u0002\u0002\u0002\u0762\u0763\u0007G\u0002\u0002\u0763", - "\u0764\u0007Z\u0002\u0002\u0764\u0765\u0007E\u0002\u0002\u0765\u0766", - "\u0007J\u0002\u0002\u0766\u0767\u0007C\u0002\u0002\u0767\u0768\u0007", - "P\u0002\u0002\u0768\u0769\u0007I\u0002\u0002\u0769\u076a\u0007G\u0002", - "\u0002\u076a\u016c\u0003\u0002\u0002\u0002\u076b\u076c\u0007C\u0002", - "\u0002\u076c\u076d\u0007T\u0002\u0002\u076d\u076e\u0007E\u0002\u0002", - "\u076e\u076f\u0007J\u0002\u0002\u076f\u0770\u0007K\u0002\u0002\u0770", - "\u0771\u0007X\u0002\u0002\u0771\u0772\u0007G\u0002\u0002\u0772\u016e", - "\u0003\u0002\u0002\u0002\u0773\u0774\u0007W\u0002\u0002\u0774\u0775", - "\u0007P\u0002\u0002\u0775\u0776\u0007C\u0002\u0002\u0776\u0777\u0007", - "T\u0002\u0002\u0777\u0778\u0007E\u0002\u0002\u0778\u0779\u0007J\u0002", - "\u0002\u0779\u077a\u0007K\u0002\u0002\u077a\u077b\u0007X\u0002\u0002", - "\u077b\u077c\u0007G\u0002\u0002\u077c\u0170\u0003\u0002\u0002\u0002", - "\u077d\u077e\u0007H\u0002\u0002\u077e\u077f\u0007K\u0002\u0002\u077f", - "\u0780\u0007N\u0002\u0002\u0780\u0781\u0007G\u0002\u0002\u0781\u0782", - "\u0007H\u0002\u0002\u0782\u0783\u0007Q\u0002\u0002\u0783\u0784\u0007", - "T\u0002\u0002\u0784\u0785\u0007O\u0002\u0002\u0785\u0786\u0007C\u0002", - "\u0002\u0786\u0787\u0007V\u0002\u0002\u0787\u0172\u0003\u0002\u0002", - "\u0002\u0788\u0789\u0007V\u0002\u0002\u0789\u078a\u0007Q\u0002\u0002", - "\u078a\u078b\u0007W\u0002\u0002\u078b\u078c\u0007E\u0002\u0002\u078c", - "\u078d\u0007J\u0002\u0002\u078d\u0174\u0003\u0002\u0002\u0002\u078e", - "\u078f\u0007E\u0002\u0002\u078f\u0790\u0007Q\u0002\u0002\u0790\u0791", - "\u0007O\u0002\u0002\u0791\u0792\u0007R\u0002\u0002\u0792\u0793\u0007", - "C\u0002\u0002\u0793\u0794\u0007E\u0002\u0002\u0794\u0795\u0007V\u0002", - "\u0002\u0795\u0176\u0003\u0002\u0002\u0002\u0796\u0797\u0007E\u0002", - "\u0002\u0797\u0798\u0007Q\u0002\u0002\u0798\u0799\u0007P\u0002\u0002", - "\u0799\u079a\u0007E\u0002\u0002\u079a\u079b\u0007C\u0002\u0002\u079b", - "\u079c\u0007V\u0002\u0002\u079c\u079d\u0007G\u0002\u0002\u079d\u079e", - "\u0007P\u0002\u0002\u079e\u079f\u0007C\u0002\u0002\u079f\u07a0\u0007", - "V\u0002\u0002\u07a0\u07a1\u0007G\u0002\u0002\u07a1\u0178\u0003\u0002", - "\u0002\u0002\u07a2\u07a3\u0007E\u0002\u0002\u07a3\u07a4\u0007J\u0002", - "\u0002\u07a4\u07a5\u0007C\u0002\u0002\u07a5\u07a6\u0007P\u0002\u0002", - "\u07a6\u07a7\u0007I\u0002\u0002\u07a7\u07a8\u0007G\u0002\u0002\u07a8", - "\u017a\u0003\u0002\u0002\u0002\u07a9\u07aa\u0007E\u0002\u0002\u07aa", - "\u07ab\u0007C\u0002\u0002\u07ab\u07ac\u0007U\u0002\u0002\u07ac\u07ad", - "\u0007E\u0002\u0002\u07ad\u07ae\u0007C\u0002\u0002\u07ae\u07af\u0007", - "F\u0002\u0002\u07af\u07b0\u0007G\u0002\u0002\u07b0\u017c\u0003\u0002", - "\u0002\u0002\u07b1\u07b2\u0007T\u0002\u0002\u07b2\u07b3\u0007G\u0002", - "\u0002\u07b3\u07b4\u0007U\u0002\u0002\u07b4\u07b5\u0007V\u0002\u0002", - "\u07b5\u07b6\u0007T\u0002\u0002\u07b6\u07b7\u0007K\u0002\u0002\u07b7", - "\u07b8\u0007E\u0002\u0002\u07b8\u07b9\u0007V\u0002\u0002\u07b9\u017e", - "\u0003\u0002\u0002\u0002\u07ba\u07bb\u0007E\u0002\u0002\u07bb\u07bc", - "\u0007N\u0002\u0002\u07bc\u07bd\u0007W\u0002\u0002\u07bd\u07be\u0007", - "U\u0002\u0002\u07be\u07bf\u0007V\u0002\u0002\u07bf\u07c0\u0007G\u0002", - "\u0002\u07c0\u07c1\u0007T\u0002\u0002\u07c1\u07c2\u0007G\u0002\u0002", - "\u07c2\u07c3\u0007F\u0002\u0002\u07c3\u0180\u0003\u0002\u0002\u0002", - "\u07c4\u07c5\u0007U\u0002\u0002\u07c5\u07c6\u0007Q\u0002\u0002\u07c6", - "\u07c7\u0007T\u0002\u0002\u07c7\u07c8\u0007V\u0002\u0002\u07c8\u07c9", - "\u0007G\u0002\u0002\u07c9\u07ca\u0007F\u0002\u0002\u07ca\u0182\u0003", - "\u0002\u0002\u0002\u07cb\u07cc\u0007R\u0002\u0002\u07cc\u07cd\u0007", - "W\u0002\u0002\u07cd\u07ce\u0007T\u0002\u0002\u07ce\u07cf\u0007I\u0002", - "\u0002\u07cf\u07d0\u0007G\u0002\u0002\u07d0\u0184\u0003\u0002\u0002", - "\u0002\u07d1\u07d2\u0007K\u0002\u0002\u07d2\u07d3\u0007P\u0002\u0002", - "\u07d3\u07d4\u0007R\u0002\u0002\u07d4\u07d5\u0007W\u0002\u0002\u07d5", - "\u07d6\u0007V\u0002\u0002\u07d6\u07d7\u0007H\u0002\u0002\u07d7\u07d8", - "\u0007Q\u0002\u0002\u07d8\u07d9\u0007T\u0002\u0002\u07d9\u07da\u0007", - "O\u0002\u0002\u07da\u07db\u0007C\u0002\u0002\u07db\u07dc\u0007V\u0002", - "\u0002\u07dc\u0186\u0003\u0002\u0002\u0002\u07dd\u07de\u0007Q\u0002", - "\u0002\u07de\u07df\u0007W\u0002\u0002\u07df\u07e0\u0007V\u0002\u0002", - "\u07e0\u07e1\u0007R\u0002\u0002\u07e1\u07e2\u0007W\u0002\u0002\u07e2", - "\u07e3\u0007V\u0002\u0002\u07e3\u07e4\u0007H\u0002\u0002\u07e4\u07e5", - "\u0007Q\u0002\u0002\u07e5\u07e6\u0007T\u0002\u0002\u07e6\u07e7\u0007", - "O\u0002\u0002\u07e7\u07e8\u0007C\u0002\u0002\u07e8\u07e9\u0007V\u0002", - "\u0002\u07e9\u0188\u0003\u0002\u0002\u0002\u07ea\u07eb\u0007F\u0002", - "\u0002\u07eb\u07ec\u0007C\u0002\u0002\u07ec\u07ed\u0007V\u0002\u0002", - "\u07ed\u07ee\u0007C\u0002\u0002\u07ee\u07ef\u0007D\u0002\u0002\u07ef", - "\u07f0\u0007C\u0002\u0002\u07f0\u07f1\u0007U\u0002\u0002\u07f1\u07f2", - "\u0007G\u0002\u0002\u07f2\u018a\u0003\u0002\u0002\u0002\u07f3\u07f4", - "\u0007F\u0002\u0002\u07f4\u07f5\u0007C\u0002\u0002\u07f5\u07f6\u0007", - "V\u0002\u0002\u07f6\u07f7\u0007C\u0002\u0002\u07f7\u07f8\u0007D\u0002", - "\u0002\u07f8\u07f9\u0007C\u0002\u0002\u07f9\u07fa\u0007U\u0002\u0002", - "\u07fa\u07fb\u0007G\u0002\u0002\u07fb\u07fc\u0007U\u0002\u0002\u07fc", - "\u018c\u0003\u0002\u0002\u0002\u07fd\u07fe\u0007F\u0002\u0002\u07fe", - "\u07ff\u0007H\u0002\u0002\u07ff\u0800\u0007U\u0002\u0002\u0800\u018e", - "\u0003\u0002\u0002\u0002\u0801\u0802\u0007V\u0002\u0002\u0802\u0803", - "\u0007T\u0002\u0002\u0803\u0804\u0007W\u0002\u0002\u0804\u0805\u0007", - "P\u0002\u0002\u0805\u0806\u0007E\u0002\u0002\u0806\u0807\u0007C\u0002", - "\u0002\u0807\u0808\u0007V\u0002\u0002\u0808\u0809\u0007G\u0002\u0002", - "\u0809\u0190\u0003\u0002\u0002\u0002\u080a\u080b\u0007C\u0002\u0002", - "\u080b\u080c\u0007P\u0002\u0002\u080c\u080d\u0007C\u0002\u0002\u080d", - "\u080e\u0007N\u0002\u0002\u080e\u080f\u0007[\u0002\u0002\u080f\u0810", - "\u0007\\\u0002\u0002\u0810\u0811\u0007G\u0002\u0002\u0811\u0192\u0003", - "\u0002\u0002\u0002\u0812\u0813\u0007E\u0002\u0002\u0813\u0814\u0007", - "Q\u0002\u0002\u0814\u0815\u0007O\u0002\u0002\u0815\u0816\u0007R\u0002", - "\u0002\u0816\u0817\u0007W\u0002\u0002\u0817\u0818\u0007V\u0002\u0002", - "\u0818\u0819\u0007G\u0002\u0002\u0819\u0194\u0003\u0002\u0002\u0002", - "\u081a\u081b\u0007N\u0002\u0002\u081b\u081c\u0007K\u0002\u0002\u081c", - "\u081d\u0007U\u0002\u0002\u081d\u081e\u0007V\u0002\u0002\u081e\u0196", - "\u0003\u0002\u0002\u0002\u081f\u0820\u0007U\u0002\u0002\u0820\u0821", - "\u0007V\u0002\u0002\u0821\u0822\u0007C\u0002\u0002\u0822\u0823\u0007", - "V\u0002\u0002\u0823\u0824\u0007K\u0002\u0002\u0824\u0825\u0007U\u0002", - "\u0002\u0825\u0826\u0007V\u0002\u0002\u0826\u0827\u0007K\u0002\u0002", - "\u0827\u0828\u0007E\u0002\u0002\u0828\u0829\u0007U\u0002\u0002\u0829", - "\u0198\u0003\u0002\u0002\u0002\u082a\u082b\u0007R\u0002\u0002\u082b", - "\u082c\u0007C\u0002\u0002\u082c\u082d\u0007T\u0002\u0002\u082d\u082e", - "\u0007V\u0002\u0002\u082e\u082f\u0007K\u0002\u0002\u082f\u0830\u0007", - "V\u0002\u0002\u0830\u0831\u0007K\u0002\u0002\u0831\u0832\u0007Q\u0002", - "\u0002\u0832\u0833\u0007P\u0002\u0002\u0833\u0834\u0007G\u0002\u0002", - "\u0834\u0835\u0007F\u0002\u0002\u0835\u019a\u0003\u0002\u0002\u0002", - "\u0836\u0837\u0007G\u0002\u0002\u0837\u0838\u0007Z\u0002\u0002\u0838", - "\u0839\u0007V\u0002\u0002\u0839\u083a\u0007G\u0002\u0002\u083a\u083b", - "\u0007T\u0002\u0002\u083b\u083c\u0007P\u0002\u0002\u083c\u083d\u0007", - "C\u0002\u0002\u083d\u083e\u0007N\u0002\u0002\u083e\u019c\u0003\u0002", - "\u0002\u0002\u083f\u0840\u0007F\u0002\u0002\u0840\u0841\u0007G\u0002", - "\u0002\u0841\u0842\u0007H\u0002\u0002\u0842\u0843\u0007K\u0002\u0002", - "\u0843\u0844\u0007P\u0002\u0002\u0844\u0845\u0007G\u0002\u0002\u0845", - "\u0846\u0007F\u0002\u0002\u0846\u019e\u0003\u0002\u0002\u0002\u0847", - "\u0848\u0007T\u0002\u0002\u0848\u0849\u0007G\u0002\u0002\u0849\u084a", - "\u0007X\u0002\u0002\u084a\u084b\u0007Q\u0002\u0002\u084b\u084c\u0007", - "M\u0002\u0002\u084c\u084d\u0007G\u0002\u0002\u084d\u01a0\u0003\u0002", - "\u0002\u0002\u084e\u084f\u0007I\u0002\u0002\u084f\u0850\u0007T\u0002", - "\u0002\u0850\u0851\u0007C\u0002\u0002\u0851\u0852\u0007P\u0002\u0002", - "\u0852\u0853\u0007V\u0002\u0002\u0853\u01a2\u0003\u0002\u0002\u0002", - "\u0854\u0855\u0007N\u0002\u0002\u0855\u0856\u0007Q\u0002\u0002\u0856", - "\u0857\u0007E\u0002\u0002\u0857\u0858\u0007M\u0002\u0002\u0858\u01a4", - "\u0003\u0002\u0002\u0002\u0859\u085a\u0007W\u0002\u0002\u085a\u085b", - "\u0007P\u0002\u0002\u085b\u085c\u0007N\u0002\u0002\u085c\u085d\u0007", - "Q\u0002\u0002\u085d\u085e\u0007E\u0002\u0002\u085e\u085f\u0007M\u0002", - "\u0002\u085f\u01a6\u0003\u0002\u0002\u0002\u0860\u0861\u0007O\u0002", - "\u0002\u0861\u0862\u0007U\u0002\u0002\u0862\u0863\u0007E\u0002\u0002", - "\u0863\u0864\u0007M\u0002\u0002\u0864\u01a8\u0003\u0002\u0002\u0002", - "\u0865\u0866\u0007T\u0002\u0002\u0866\u0867\u0007G\u0002\u0002\u0867", - "\u0868\u0007R\u0002\u0002\u0868\u0869\u0007C\u0002\u0002\u0869\u086a", - "\u0007K\u0002\u0002\u086a\u086b\u0007T\u0002\u0002\u086b\u01aa\u0003", - "\u0002\u0002\u0002\u086c\u086d\u0007T\u0002\u0002\u086d\u086e\u0007", - "G\u0002\u0002\u086e\u086f\u0007E\u0002\u0002\u086f\u0870\u0007Q\u0002", - "\u0002\u0870\u0871\u0007X\u0002\u0002\u0871\u0872\u0007G\u0002\u0002", - "\u0872\u0873\u0007T\u0002\u0002\u0873\u01ac\u0003\u0002\u0002\u0002", - "\u0874\u0875\u0007G\u0002\u0002\u0875\u0876\u0007Z\u0002\u0002\u0876", - "\u0877\u0007R\u0002\u0002\u0877\u0878\u0007Q\u0002\u0002\u0878\u0879", - "\u0007T\u0002\u0002\u0879\u087a\u0007V\u0002\u0002\u087a\u01ae\u0003", - "\u0002\u0002\u0002\u087b\u087c\u0007K\u0002\u0002\u087c\u087d\u0007", - "O\u0002\u0002\u087d\u087e\u0007R\u0002\u0002\u087e\u087f\u0007Q\u0002", - "\u0002\u087f\u0880\u0007T\u0002\u0002\u0880\u0881\u0007V\u0002\u0002", - "\u0881\u01b0\u0003\u0002\u0002\u0002\u0882\u0883\u0007N\u0002\u0002", - "\u0883\u0884\u0007Q\u0002\u0002\u0884\u0885\u0007C\u0002\u0002\u0885", - "\u0886\u0007F\u0002\u0002\u0886\u01b2\u0003\u0002\u0002\u0002\u0887", - "\u0888\u0007T\u0002\u0002\u0888\u0889\u0007Q\u0002\u0002\u0889\u088a", - "\u0007N\u0002\u0002\u088a\u088b\u0007G\u0002\u0002\u088b\u01b4\u0003", - "\u0002\u0002\u0002\u088c\u088d\u0007T\u0002\u0002\u088d\u088e\u0007", - "Q\u0002\u0002\u088e\u088f\u0007N\u0002\u0002\u088f\u0890\u0007G\u0002", - "\u0002\u0890\u0891\u0007U\u0002\u0002\u0891\u01b6\u0003\u0002\u0002", - "\u0002\u0892\u0893\u0007E\u0002\u0002\u0893\u0894\u0007Q\u0002\u0002", - "\u0894\u0895\u0007O\u0002\u0002\u0895\u0896\u0007R\u0002\u0002\u0896", - "\u0897\u0007C\u0002\u0002\u0897\u0898\u0007E\u0002\u0002\u0898\u0899", - "\u0007V\u0002\u0002\u0899\u089a\u0007K\u0002\u0002\u089a\u089b\u0007", - "Q\u0002\u0002\u089b\u089c\u0007P\u0002\u0002\u089c\u089d\u0007U\u0002", - "\u0002\u089d\u01b8\u0003\u0002\u0002\u0002\u089e\u089f\u0007R\u0002", - "\u0002\u089f\u08a0\u0007T\u0002\u0002\u08a0\u08a1\u0007K\u0002\u0002", - "\u08a1\u08a2\u0007P\u0002\u0002\u08a2\u08a3\u0007E\u0002\u0002\u08a3", - "\u08a4\u0007K\u0002\u0002\u08a4\u08a5\u0007R\u0002\u0002\u08a5\u08a6", - "\u0007C\u0002\u0002\u08a6\u08a7\u0007N\u0002\u0002\u08a7\u08a8\u0007", - "U\u0002\u0002\u08a8\u01ba\u0003\u0002\u0002\u0002\u08a9\u08aa\u0007", - "V\u0002\u0002\u08aa\u08ab\u0007T\u0002\u0002\u08ab\u08ac\u0007C\u0002", - "\u0002\u08ac\u08ad\u0007P\u0002\u0002\u08ad\u08ae\u0007U\u0002\u0002", - "\u08ae\u08af\u0007C\u0002\u0002\u08af\u08b0\u0007E\u0002\u0002\u08b0", - "\u08b1\u0007V\u0002\u0002\u08b1\u08b2\u0007K\u0002\u0002\u08b2\u08b3", - "\u0007Q\u0002\u0002\u08b3\u08b4\u0007P\u0002\u0002\u08b4\u08b5\u0007", - "U\u0002\u0002\u08b5\u01bc\u0003\u0002\u0002\u0002\u08b6\u08b7\u0007", - "K\u0002\u0002\u08b7\u08b8\u0007P\u0002\u0002\u08b8\u08b9\u0007F\u0002", - "\u0002\u08b9\u08ba\u0007G\u0002\u0002\u08ba\u08bb\u0007Z\u0002\u0002", - "\u08bb\u01be\u0003\u0002\u0002\u0002\u08bc\u08bd\u0007K\u0002\u0002", - "\u08bd\u08be\u0007P\u0002\u0002\u08be\u08bf\u0007F\u0002\u0002\u08bf", - "\u08c0\u0007G\u0002\u0002\u08c0\u08c1\u0007Z\u0002\u0002\u08c1\u08c2", - "\u0007G\u0002\u0002\u08c2\u08c3\u0007U\u0002\u0002\u08c3\u01c0\u0003", - "\u0002\u0002\u0002\u08c4\u08c5\u0007N\u0002\u0002\u08c5\u08c6\u0007", - "Q\u0002\u0002\u08c6\u08c7\u0007E\u0002\u0002\u08c7\u08c8\u0007M\u0002", - "\u0002\u08c8\u08c9\u0007U\u0002\u0002\u08c9\u01c2\u0003\u0002\u0002", - "\u0002\u08ca\u08cb\u0007Q\u0002\u0002\u08cb\u08cc\u0007R\u0002\u0002", - "\u08cc\u08cd\u0007V\u0002\u0002\u08cd\u08ce\u0007K\u0002\u0002\u08ce", - "\u08cf\u0007Q\u0002\u0002\u08cf\u08d0\u0007P\u0002\u0002\u08d0\u01c4", - "\u0003\u0002\u0002\u0002\u08d1\u08d2\u0007C\u0002\u0002\u08d2\u08d3", - "\u0007P\u0002\u0002\u08d3\u08d4\u0007V\u0002\u0002\u08d4\u08d5\u0007", - "K\u0002\u0002\u08d5\u01c6\u0003\u0002\u0002\u0002\u08d6\u08d7\u0007", - "N\u0002\u0002\u08d7\u08d8\u0007Q\u0002\u0002\u08d8\u08d9\u0007E\u0002", - "\u0002\u08d9\u08da\u0007C\u0002\u0002\u08da\u08db\u0007N\u0002\u0002", - "\u08db\u01c8\u0003\u0002\u0002\u0002\u08dc\u08dd\u0007K\u0002\u0002", - "\u08dd\u08de\u0007P\u0002\u0002\u08de\u08df\u0007R\u0002\u0002\u08df", - "\u08e0\u0007C\u0002\u0002\u08e0\u08e1\u0007V\u0002\u0002\u08e1\u08e2", - "\u0007J\u0002\u0002\u08e2\u01ca\u0003\u0002\u0002\u0002\u08e3\u08e4", - "\u0007Y\u0002\u0002\u08e4\u08e5\u0007C\u0002\u0002\u08e5\u08e6\u0007", - "V\u0002\u0002\u08e6\u08e7\u0007G\u0002\u0002\u08e7\u08e8\u0007T\u0002", - "\u0002\u08e8\u08e9\u0007O\u0002\u0002\u08e9\u08ea\u0007C\u0002\u0002", - "\u08ea\u08eb\u0007T\u0002\u0002\u08eb\u08ec\u0007M\u0002\u0002\u08ec", - "\u01cc\u0003\u0002\u0002\u0002\u08ed\u08ee\u0007W\u0002\u0002\u08ee", - "\u08ef\u0007P\u0002\u0002\u08ef\u08f0\u0007P\u0002\u0002\u08f0\u08f1", - "\u0007G\u0002\u0002\u08f1\u08f2\u0007U\u0002\u0002\u08f2\u08f3\u0007", - "V\u0002\u0002\u08f3\u01ce\u0003\u0002\u0002\u0002\u08f4\u08f5\u0007", - "O\u0002\u0002\u08f5\u08f6\u0007C\u0002\u0002\u08f6\u08f7\u0007V\u0002", - "\u0002\u08f7\u08f8\u0007E\u0002\u0002\u08f8\u08f9\u0007J\u0002\u0002", - "\u08f9\u08fa\u0007a\u0002\u0002\u08fa\u08fb\u0007T\u0002\u0002\u08fb", - "\u08fc\u0007G\u0002\u0002\u08fc\u08fd\u0007E\u0002\u0002\u08fd\u08fe", - "\u0007Q\u0002\u0002\u08fe\u08ff\u0007I\u0002\u0002\u08ff\u0900\u0007", - "P\u0002\u0002\u0900\u0901\u0007K\u0002\u0002\u0901\u0902\u0007\\\u0002", - "\u0002\u0902\u0903\u0007G\u0002\u0002\u0903\u01d0\u0003\u0002\u0002", - "\u0002\u0904\u0905\u0007O\u0002\u0002\u0905\u0906\u0007G\u0002\u0002", - "\u0906\u0907\u0007C\u0002\u0002\u0907\u0908\u0007U\u0002\u0002\u0908", - "\u0909\u0007W\u0002\u0002\u0909\u090a\u0007T\u0002\u0002\u090a\u090b", - "\u0007G\u0002\u0002\u090b\u090c\u0007U\u0002\u0002\u090c\u01d2\u0003", - "\u0002\u0002\u0002\u090d\u090e\u0007Q\u0002\u0002\u090e\u090f\u0007", - "P\u0002\u0002\u090f\u0910\u0007G\u0002\u0002\u0910\u01d4\u0003\u0002", - "\u0002\u0002\u0911\u0912\u0007R\u0002\u0002\u0912\u0913\u0007G\u0002", - "\u0002\u0913\u0914\u0007T\u0002\u0002\u0914\u01d6\u0003\u0002\u0002", - "\u0002\u0915\u0916\u0007O\u0002\u0002\u0916\u0917\u0007C\u0002\u0002", - "\u0917\u0918\u0007V\u0002\u0002\u0918\u0919\u0007E\u0002\u0002\u0919", - "\u091a\u0007J\u0002\u0002\u091a\u01d8\u0003\u0002\u0002\u0002\u091b", - "\u091c\u0007U\u0002\u0002\u091c\u091d\u0007M\u0002\u0002\u091d\u091e", - "\u0007K\u0002\u0002\u091e\u091f\u0007R\u0002\u0002\u091f\u0920\u0007", - "3\u0002\u0002\u0920\u01da\u0003\u0002\u0002\u0002\u0921\u0922\u0007", - "P\u0002\u0002\u0922\u0923\u0007G\u0002\u0002\u0923\u0924\u0007Z\u0002", - "\u0002\u0924\u0925\u0007V\u0002\u0002\u0925\u01dc\u0003\u0002\u0002", - "\u0002\u0926\u0927\u0007R\u0002\u0002\u0927\u0928\u0007C\u0002\u0002", - "\u0928\u0929\u0007U\u0002\u0002\u0929\u092a\u0007V\u0002\u0002\u092a", - "\u01de\u0003\u0002\u0002\u0002\u092b\u092c\u0007R\u0002\u0002\u092c", - "\u092d\u0007C\u0002\u0002\u092d\u092e\u0007V\u0002\u0002\u092e\u092f", - "\u0007V\u0002\u0002\u092f\u0930\u0007G\u0002\u0002\u0930\u0931\u0007", - "T\u0002\u0002\u0931\u0932\u0007P\u0002\u0002\u0932\u01e0\u0003\u0002", - "\u0002\u0002\u0933\u0934\u0007Y\u0002\u0002\u0934\u0935\u0007K\u0002", - "\u0002\u0935\u0936\u0007V\u0002\u0002\u0936\u0937\u0007J\u0002\u0002", - "\u0937\u0938\u0007K\u0002\u0002\u0938\u0939\u0007P\u0002\u0002\u0939", - "\u01e2\u0003\u0002\u0002\u0002\u093a\u093b\u0007F\u0002\u0002\u093b", - "\u093c\u0007G\u0002\u0002\u093c\u093d\u0007H\u0002\u0002\u093d\u093e", - "\u0007K\u0002\u0002\u093e\u093f\u0007P\u0002\u0002\u093f\u0940\u0007", - "G\u0002\u0002\u0940\u01e4\u0003\u0002\u0002\u0002\u0941\u0942\u0007", - "Y\u0002\u0002\u0942\u0943\u0007U\u0002\u0002\u0943\u01e6\u0003\u0002", - "\u0002\u0002\u0944\u0945\u0007U\u0002\u0002\u0945\u0946\u0007[\u0002", - "\u0002\u0946\u0947\u0007U\u0002\u0002\u0947\u0948\u0007V\u0002\u0002", - "\u0948\u0949\u0007G\u0002\u0002\u0949\u094a\u0007O\u0002\u0002\u094a", - "\u01e8\u0003\u0002\u0002\u0002\u094b\u094c\u0007K\u0002\u0002\u094c", - "\u094d\u0007P\u0002\u0002\u094d\u094e\u0007E\u0002\u0002\u094e\u094f", - "\u0007N\u0002\u0002\u094f\u0950\u0007W\u0002\u0002\u0950\u0951\u0007", - "F\u0002\u0002\u0951\u0952\u0007K\u0002\u0002\u0952\u0953\u0007P\u0002", - "\u0002\u0953\u0954\u0007I\u0002\u0002\u0954\u01ea\u0003\u0002\u0002", - "\u0002\u0955\u0956\u0007G\u0002\u0002\u0956\u0957\u0007Z\u0002\u0002", - "\u0957\u0958\u0007E\u0002\u0002\u0958\u0959\u0007N\u0002\u0002\u0959", - "\u095a\u0007W\u0002\u0002\u095a\u095b\u0007F\u0002\u0002\u095b\u095c", - "\u0007K\u0002\u0002\u095c\u095d\u0007P\u0002\u0002\u095d\u095e\u0007", - "I\u0002\u0002\u095e\u01ec\u0003\u0002\u0002\u0002\u095f\u0960\u0007", - "E\u0002\u0002\u0960\u0961\u0007Q\u0002\u0002\u0961\u0962\u0007P\u0002", - "\u0002\u0962\u0963\u0007U\u0002\u0002\u0963\u0964\u0007V\u0002\u0002", - "\u0964\u0965\u0007T\u0002\u0002\u0965\u0966\u0007C\u0002\u0002\u0966", - "\u0967\u0007K\u0002\u0002\u0967\u0968\u0007P\u0002\u0002\u0968\u0969", - "\u0007V\u0002\u0002\u0969\u096a\u0007U\u0002\u0002\u096a\u01ee\u0003", - "\u0002\u0002\u0002\u096b\u096c\u0007Q\u0002\u0002\u096c\u096d\u0007", - "X\u0002\u0002\u096d\u096e\u0007G\u0002\u0002\u096e\u096f\u0007T\u0002", - "\u0002\u096f\u0970\u0007Y\u0002\u0002\u0970\u0971\u0007T\u0002\u0002", - "\u0971\u0972\u0007K\u0002\u0002\u0972\u0973\u0007V\u0002\u0002\u0973", - "\u0974\u0007K\u0002\u0002\u0974\u0975\u0007P\u0002\u0002\u0975\u0976", - "\u0007I\u0002\u0002\u0976\u01f0\u0003\u0002\u0002\u0002\u0977\u0978", - "\u0007I\u0002\u0002\u0978\u0979\u0007G\u0002\u0002\u0979\u097a\u0007", - "P\u0002\u0002\u097a\u097b\u0007G\u0002\u0002\u097b\u097c\u0007T\u0002", - "\u0002\u097c\u097d\u0007C\u0002\u0002\u097d\u097e\u0007V\u0002\u0002", - "\u097e\u097f\u0007G\u0002\u0002\u097f\u0980\u0007F\u0002\u0002\u0980", - "\u01f2\u0003\u0002\u0002\u0002\u0981\u0982\u0007E\u0002\u0002\u0982", - "\u0983\u0007C\u0002\u0002\u0983\u0984\u0007V\u0002\u0002\u0984\u0985", - "\u0007C\u0002\u0002\u0985\u0986\u0007N\u0002\u0002\u0986\u0987\u0007", - "Q\u0002\u0002\u0987\u0988\u0007I\u0002\u0002\u0988\u01f4\u0003\u0002", - "\u0002\u0002\u0989\u098a\u0007N\u0002\u0002\u098a\u098b\u0007C\u0002", - "\u0002\u098b\u098c\u0007P\u0002\u0002\u098c\u098d\u0007I\u0002\u0002", - "\u098d\u098e\u0007W\u0002\u0002\u098e\u098f\u0007C\u0002\u0002\u098f", - "\u0990\u0007I\u0002\u0002\u0990\u0991\u0007G\u0002\u0002\u0991\u01f6", - "\u0003\u0002\u0002\u0002\u0992\u0993\u0007E\u0002\u0002\u0993\u0994", - "\u0007C\u0002\u0002\u0994\u0995\u0007V\u0002\u0002\u0995\u0996\u0007", - "C\u0002\u0002\u0996\u0997\u0007N\u0002\u0002\u0997\u0998\u0007Q\u0002", - "\u0002\u0998\u0999\u0007I\u0002\u0002\u0999\u099a\u0007U\u0002\u0002", - "\u099a\u01f8\u0003\u0002\u0002\u0002\u099b\u099c\u0007X\u0002\u0002", - "\u099c\u099d\u0007K\u0002\u0002\u099d\u099e\u0007G\u0002\u0002\u099e", - "\u099f\u0007Y\u0002\u0002\u099f\u09a0\u0007U\u0002\u0002\u09a0\u01fa", - "\u0003\u0002\u0002\u0002\u09a1\u09a2\u0007U\u0002\u0002\u09a2\u09a3", - "\u0007V\u0002\u0002\u09a3\u09a4\u0007T\u0002\u0002\u09a4\u09a5\u0007", - "K\u0002\u0002\u09a5\u09a6\u0007P\u0002\u0002\u09a6\u09a7\u0007I\u0002", - "\u0002\u09a7\u01fc\u0003\u0002\u0002\u0002\u09a8\u09a9\u0007C\u0002", - "\u0002\u09a9\u09aa\u0007T\u0002\u0002\u09aa\u09ab\u0007T\u0002\u0002", - "\u09ab\u09ac\u0007C\u0002\u0002\u09ac\u09ad\u0007[\u0002\u0002\u09ad", - "\u01fe\u0003\u0002\u0002\u0002\u09ae\u09af\u0007O\u0002\u0002\u09af", - "\u09b0\u0007C\u0002\u0002\u09b0\u09b1\u0007R\u0002\u0002\u09b1\u0200", - "\u0003\u0002\u0002\u0002\u09b2\u09b3\u0007E\u0002\u0002\u09b3\u09b4", - "\u0007J\u0002\u0002\u09b4\u09b5\u0007C\u0002\u0002\u09b5\u09b6\u0007", - "T\u0002\u0002\u09b6\u0202\u0003\u0002\u0002\u0002\u09b7\u09b8\u0007", - "X\u0002\u0002\u09b8\u09b9\u0007C\u0002\u0002\u09b9\u09ba\u0007T\u0002", - "\u0002\u09ba\u09bb\u0007E\u0002\u0002\u09bb\u09bc\u0007J\u0002\u0002", - "\u09bc\u09bd\u0007C\u0002\u0002\u09bd\u09be\u0007T\u0002\u0002\u09be", - "\u0204\u0003\u0002\u0002\u0002\u09bf\u09c0\u0007D\u0002\u0002\u09c0", - "\u09c1\u0007K\u0002\u0002\u09c1\u09c2\u0007P\u0002\u0002\u09c2\u09c3", - "\u0007C\u0002\u0002\u09c3\u09c4\u0007T\u0002\u0002\u09c4\u09c5\u0007", - "[\u0002\u0002\u09c5\u0206\u0003\u0002\u0002\u0002\u09c6\u09c7\u0007", - "X\u0002\u0002\u09c7\u09c8\u0007C\u0002\u0002\u09c8\u09c9\u0007T\u0002", - "\u0002\u09c9\u09ca\u0007D\u0002\u0002\u09ca\u09cb\u0007K\u0002\u0002", - "\u09cb\u09cc\u0007P\u0002\u0002\u09cc\u09cd\u0007C\u0002\u0002\u09cd", - "\u09ce\u0007T\u0002\u0002\u09ce\u09cf\u0007[\u0002\u0002\u09cf\u0208", - "\u0003\u0002\u0002\u0002\u09d0\u09d1\u0007D\u0002\u0002\u09d1\u09d2", - "\u0007[\u0002\u0002\u09d2\u09d3\u0007V\u0002\u0002\u09d3\u09d4\u0007", - "G\u0002\u0002\u09d4\u09d5\u0007U\u0002\u0002\u09d5\u020a\u0003\u0002", - "\u0002\u0002\u09d6\u09d7\u0007F\u0002\u0002\u09d7\u09d8\u0007G\u0002", - "\u0002\u09d8\u09d9\u0007E\u0002\u0002\u09d9\u09da\u0007K\u0002\u0002", - "\u09da\u09db\u0007O\u0002\u0002\u09db\u09dc\u0007C\u0002\u0002\u09dc", - "\u09dd\u0007N\u0002\u0002\u09dd\u020c\u0003\u0002\u0002\u0002\u09de", - "\u09df\u0007V\u0002\u0002\u09df\u09e0\u0007K\u0002\u0002\u09e0\u09e1", - "\u0007P\u0002\u0002\u09e1\u09e2\u0007[\u0002\u0002\u09e2\u09e3\u0007", - "K\u0002\u0002\u09e3\u09e4\u0007P\u0002\u0002\u09e4\u09e5\u0007V\u0002", - "\u0002\u09e5\u020e\u0003\u0002\u0002\u0002\u09e6\u09e7\u0007U\u0002", - "\u0002\u09e7\u09e8\u0007O\u0002\u0002\u09e8\u09e9\u0007C\u0002\u0002", - "\u09e9\u09ea\u0007N\u0002\u0002\u09ea\u09eb\u0007N\u0002\u0002\u09eb", - "\u09ec\u0007K\u0002\u0002\u09ec\u09ed\u0007P\u0002\u0002\u09ed\u09ee", - "\u0007V\u0002\u0002\u09ee\u0210\u0003\u0002\u0002\u0002\u09ef\u09f0", - "\u0007K\u0002\u0002\u09f0\u09f1\u0007P\u0002\u0002\u09f1\u09f2\u0007", - "V\u0002\u0002\u09f2\u0212\u0003\u0002\u0002\u0002\u09f3\u09f4\u0007", - "D\u0002\u0002\u09f4\u09f5\u0007K\u0002\u0002\u09f5\u09f6\u0007I\u0002", - "\u0002\u09f6\u09f7\u0007K\u0002\u0002\u09f7\u09f8\u0007P\u0002\u0002", - "\u09f8\u09f9\u0007V\u0002\u0002\u09f9\u0214\u0003\u0002\u0002\u0002", - "\u09fa\u09fb\u0007H\u0002\u0002\u09fb\u09fc\u0007N\u0002\u0002\u09fc", - "\u09fd\u0007Q\u0002\u0002\u09fd\u09fe\u0007C\u0002\u0002\u09fe\u09ff", - "\u0007V\u0002\u0002\u09ff\u0216\u0003\u0002\u0002\u0002\u0a00\u0a01", - "\u0007F\u0002\u0002\u0a01\u0a02\u0007Q\u0002\u0002\u0a02\u0a03\u0007", - "W\u0002\u0002\u0a03\u0a04\u0007D\u0002\u0002\u0a04\u0a05\u0007N\u0002", - "\u0002\u0a05\u0a06\u0007G\u0002\u0002\u0a06\u0218\u0003\u0002\u0002", - "\u0002\u0a07\u0a08\u0007F\u0002\u0002\u0a08\u0a09\u0007C\u0002\u0002", - "\u0a09\u0a0a\u0007V\u0002\u0002\u0a0a\u0a0b\u0007G\u0002\u0002\u0a0b", - "\u021a\u0003\u0002\u0002\u0002\u0a0c\u0a0d\u0007V\u0002\u0002\u0a0d", - "\u0a0e\u0007K\u0002\u0002\u0a0e\u0a0f\u0007O\u0002\u0002\u0a0f\u0a10", - "\u0007G\u0002\u0002\u0a10\u021c\u0003\u0002\u0002\u0002\u0a11\u0a12", - "\u0007V\u0002\u0002\u0a12\u0a13\u0007K\u0002\u0002\u0a13\u0a14\u0007", - "O\u0002\u0002\u0a14\u0a15\u0007G\u0002\u0002\u0a15\u0a16\u0007U\u0002", - "\u0002\u0a16\u0a17\u0007V\u0002\u0002\u0a17\u0a18\u0007C\u0002\u0002", - "\u0a18\u0a19\u0007O\u0002\u0002\u0a19\u0a1a\u0007R\u0002\u0002\u0a1a", - "\u021e\u0003\u0002\u0002\u0002\u0a1b\u0a1c\u0007O\u0002\u0002\u0a1c", - "\u0a1d\u0007W\u0002\u0002\u0a1d\u0a1e\u0007N\u0002\u0002\u0a1e\u0a1f", - "\u0007V\u0002\u0002\u0a1f\u0a20\u0007K\u0002\u0002\u0a20\u0a21\u0007", - "U\u0002\u0002\u0a21\u0a22\u0007G\u0002\u0002\u0a22\u0a23\u0007V\u0002", - "\u0002\u0a23\u0220\u0003\u0002\u0002\u0002\u0a24\u0a25\u0007D\u0002", - "\u0002\u0a25\u0a26\u0007Q\u0002\u0002\u0a26\u0a27\u0007Q\u0002\u0002", - "\u0a27\u0a28\u0007N\u0002\u0002\u0a28\u0a29\u0007G\u0002\u0002\u0a29", - "\u0a2a\u0007C\u0002\u0002\u0a2a\u0a2b\u0007P\u0002\u0002\u0a2b\u0222", - "\u0003\u0002\u0002\u0002\u0a2c\u0a2d\u0007T\u0002\u0002\u0a2d\u0a2e", - "\u0007C\u0002\u0002\u0a2e\u0a2f\u0007Y\u0002\u0002\u0a2f\u0224\u0003", - "\u0002\u0002\u0002\u0a30\u0a31\u0007T\u0002\u0002\u0a31\u0a32\u0007", - "Q\u0002\u0002\u0a32\u0a33\u0007Y\u0002\u0002\u0a33\u0226\u0003\u0002", - "\u0002\u0002\u0a34\u0a35\u0007P\u0002\u0002\u0a35\u0a36\u0007W\u0002", - "\u0002\u0a36\u0a37\u0007N\u0002\u0002\u0a37\u0a38\u0007N\u0002\u0002", - "\u0a38\u0228\u0003\u0002\u0002\u0002\u0a39\u0a3a\u0007?\u0002\u0002", - "\u0a3a\u022a\u0003\u0002\u0002\u0002\u0a3b\u0a3c\u0007@\u0002\u0002", - "\u0a3c\u022c\u0003\u0002\u0002\u0002\u0a3d\u0a3e\u0007>\u0002\u0002", - "\u0a3e\u022e\u0003\u0002\u0002\u0002\u0a3f\u0a40\u0007#\u0002\u0002", - "\u0a40\u0230\u0003\u0002\u0002\u0002\u0a41\u0a42\u0007\u0080\u0002\u0002", - "\u0a42\u0232\u0003\u0002\u0002\u0002\u0a43\u0a44\u0007~\u0002\u0002", - "\u0a44\u0234\u0003\u0002\u0002\u0002\u0a45\u0a46\u0007(\u0002\u0002", - "\u0a46\u0236\u0003\u0002\u0002\u0002\u0a47\u0a48\u0007`\u0002\u0002", - "\u0a48\u0238\u0003\u0002\u0002\u0002\u0a49\u0a4a\u00070\u0002\u0002", - "\u0a4a\u023a\u0003\u0002\u0002\u0002\u0a4b\u0a4c\u0007]\u0002\u0002", - "\u0a4c\u023c\u0003\u0002\u0002\u0002\u0a4d\u0a4e\u0007_\u0002\u0002", - "\u0a4e\u023e\u0003\u0002\u0002\u0002\u0a4f\u0a50\u0007*\u0002\u0002", - "\u0a50\u0240\u0003\u0002\u0002\u0002\u0a51\u0a52\u0007+\u0002\u0002", - "\u0a52\u0242\u0003\u0002\u0002\u0002\u0a53\u0a54\u0007.\u0002\u0002", - "\u0a54\u0244\u0003\u0002\u0002\u0002\u0a55\u0a56\u0007=\u0002\u0002", - "\u0a56\u0246\u0003\u0002\u0002\u0002\u0a57\u0a58\u0007B\u0002\u0002", - "\u0a58\u0248\u0003\u0002\u0002\u0002\u0a59\u0a5a\u0007)\u0002\u0002", - "\u0a5a\u024a\u0003\u0002\u0002\u0002\u0a5b\u0a5c\u0007$\u0002\u0002", - "\u0a5c\u024c\u0003\u0002\u0002\u0002\u0a5d\u0a5e\u0007b\u0002\u0002", - "\u0a5e\u024e\u0003\u0002\u0002\u0002\u0a5f\u0a60\u0007<\u0002\u0002", - "\u0a60\u0250\u0003\u0002\u0002\u0002\u0a61\u0a62\u0007,\u0002\u0002", - "\u0a62\u0252\u0003\u0002\u0002\u0002\u0a63\u0a64\u0007a\u0002\u0002", - "\u0a64\u0254\u0003\u0002\u0002\u0002\u0a65\u0a66\u0007/\u0002\u0002", - "\u0a66\u0256\u0003\u0002\u0002\u0002\u0a67\u0a68\u0007-\u0002\u0002", - "\u0a68\u0258\u0003\u0002\u0002\u0002\u0a69\u0a6a\u0007\'\u0002\u0002", - "\u0a6a\u025a\u0003\u0002\u0002\u0002\u0a6b\u0a6c\u0007~\u0002\u0002", - "\u0a6c\u0a6d\u0007~\u0002\u0002\u0a6d\u025c\u0003\u0002\u0002\u0002", - "\u0a6e\u0a6f\u0007/\u0002\u0002\u0a6f\u0a70\u0007/\u0002\u0002\u0a70", - "\u025e\u0003\u0002\u0002\u0002\u0a71\u0a72\u00071\u0002\u0002\u0a72", - "\u0260\u0003\u0002\u0002\u0002\u0a73\u0a74\u00070\u0002\u0002\u0a74", - "\u0a75\u0005\u026f\u0138\u0002\u0a75\u0262\u0003\u0002\u0002\u0002\u0a76", - "\u0a7a\u0005\u0275\u013b\u0002\u0a77\u0a7a\u0005\u0277\u013c\u0002\u0a78", - "\u0a7a\u0005\u027b\u013e\u0002\u0a79\u0a76\u0003\u0002\u0002\u0002\u0a79", - "\u0a77\u0003\u0002\u0002\u0002\u0a79\u0a78\u0003\u0002\u0002\u0002\u0a7a", - "\u0264\u0003\u0002\u0002\u0002\u0a7b\u0a7d\u0005\u0271\u0139\u0002\u0a7c", - "\u0a7b\u0003\u0002\u0002\u0002\u0a7d\u0a7e\u0003\u0002\u0002\u0002\u0a7e", - "\u0a7c\u0003\u0002\u0002\u0002\u0a7e\u0a7f\u0003\u0002\u0002\u0002\u0a7f", - "\u0266\u0003\u0002\u0002\u0002\u0a80\u0a82\u0005\u0271\u0139\u0002\u0a81", - "\u0a80\u0003\u0002\u0002\u0002\u0a82\u0a83\u0003\u0002\u0002\u0002\u0a83", - "\u0a81\u0003\u0002\u0002\u0002\u0a83\u0a84\u0003\u0002\u0002\u0002\u0a84", - "\u0a86\u0003\u0002\u0002\u0002\u0a85\u0a81\u0003\u0002\u0002\u0002\u0a85", - "\u0a86\u0003\u0002\u0002\u0002\u0a86\u0a87\u0003\u0002\u0002\u0002\u0a87", - "\u0a89\u00070\u0002\u0002\u0a88\u0a8a\u0005\u0271\u0139\u0002\u0a89", - "\u0a88\u0003\u0002\u0002\u0002\u0a8a\u0a8b\u0003\u0002\u0002\u0002\u0a8b", - "\u0a89\u0003\u0002\u0002\u0002\u0a8b\u0a8c\u0003\u0002\u0002\u0002\u0a8c", - "\u0aac\u0003\u0002\u0002\u0002\u0a8d\u0a8f\u0005\u0271\u0139\u0002\u0a8e", - "\u0a8d\u0003\u0002\u0002\u0002\u0a8f\u0a90\u0003\u0002\u0002\u0002\u0a90", - "\u0a8e\u0003\u0002\u0002\u0002\u0a90\u0a91\u0003\u0002\u0002\u0002\u0a91", - "\u0a92\u0003\u0002\u0002\u0002\u0a92\u0a93\u00070\u0002\u0002\u0a93", - "\u0a94\u0005\u026d\u0137\u0002\u0a94\u0aac\u0003\u0002\u0002\u0002\u0a95", - "\u0a97\u0005\u0271\u0139\u0002\u0a96\u0a95\u0003\u0002\u0002\u0002\u0a97", - "\u0a98\u0003\u0002\u0002\u0002\u0a98\u0a96\u0003\u0002\u0002\u0002\u0a98", - "\u0a99\u0003\u0002\u0002\u0002\u0a99\u0a9b\u0003\u0002\u0002\u0002\u0a9a", - "\u0a96\u0003\u0002\u0002\u0002\u0a9a\u0a9b\u0003\u0002\u0002\u0002\u0a9b", - "\u0a9c\u0003\u0002\u0002\u0002\u0a9c\u0a9e\u00070\u0002\u0002\u0a9d", - "\u0a9f\u0005\u0271\u0139\u0002\u0a9e\u0a9d\u0003\u0002\u0002\u0002\u0a9f", - "\u0aa0\u0003\u0002\u0002\u0002\u0aa0\u0a9e\u0003\u0002\u0002\u0002\u0aa0", - "\u0aa1\u0003\u0002\u0002\u0002\u0aa1\u0aa2\u0003\u0002\u0002\u0002\u0aa2", - "\u0aa3\u0005\u026d\u0137\u0002\u0aa3\u0aac\u0003\u0002\u0002\u0002\u0aa4", - "\u0aa6\u0005\u0271\u0139\u0002\u0aa5\u0aa4\u0003\u0002\u0002\u0002\u0aa6", - "\u0aa7\u0003\u0002\u0002\u0002\u0aa7\u0aa5\u0003\u0002\u0002\u0002\u0aa7", - "\u0aa8\u0003\u0002\u0002\u0002\u0aa8\u0aa9\u0003\u0002\u0002\u0002\u0aa9", - "\u0aaa\u0005\u026d\u0137\u0002\u0aaa\u0aac\u0003\u0002\u0002\u0002\u0aab", - "\u0a85\u0003\u0002\u0002\u0002\u0aab\u0a8e\u0003\u0002\u0002\u0002\u0aab", - "\u0a9a\u0003\u0002\u0002\u0002\u0aab\u0aa5\u0003\u0002\u0002\u0002\u0aac", - "\u0268\u0003\u0002\u0002\u0002\u0aad\u0aae\u0005\u0279\u013d\u0002\u0aae", - "\u026a\u0003\u0002\u0002\u0002\u0aaf\u0ab0\u0005\u026f\u0138\u0002\u0ab0", - "\u026c\u0003\u0002\u0002\u0002\u0ab1\u0ab3\u0007G\u0002\u0002\u0ab2", - "\u0ab4\t\u0004\u0002\u0002\u0ab3\u0ab2\u0003\u0002\u0002\u0002\u0ab3", - "\u0ab4\u0003\u0002\u0002\u0002\u0ab4\u0ab6\u0003\u0002\u0002\u0002\u0ab5", - "\u0ab7\u0005\u0271\u0139\u0002\u0ab6\u0ab5\u0003\u0002\u0002\u0002\u0ab7", - "\u0ab8\u0003\u0002\u0002\u0002\u0ab8\u0ab6\u0003\u0002\u0002\u0002\u0ab8", - "\u0ab9\u0003\u0002\u0002\u0002\u0ab9\u026e\u0003\u0002\u0002\u0002\u0aba", - "\u0abc\t\u0005\u0002\u0002\u0abb\u0aba\u0003\u0002\u0002\u0002\u0abc", - "\u0abf\u0003\u0002\u0002\u0002\u0abd\u0abe\u0003\u0002\u0002\u0002\u0abd", - "\u0abb\u0003\u0002\u0002\u0002\u0abe\u0ac1\u0003\u0002\u0002\u0002\u0abf", - "\u0abd\u0003\u0002\u0002\u0002\u0ac0\u0ac2\t\u0006\u0002\u0002\u0ac1", - "\u0ac0\u0003\u0002\u0002\u0002\u0ac2\u0ac3\u0003\u0002\u0002\u0002\u0ac3", - "\u0ac4\u0003\u0002\u0002\u0002\u0ac3\u0ac1\u0003\u0002\u0002\u0002\u0ac4", - "\u0ac8\u0003\u0002\u0002\u0002\u0ac5\u0ac7\t\u0005\u0002\u0002\u0ac6", - "\u0ac5\u0003\u0002\u0002\u0002\u0ac7\u0aca\u0003\u0002\u0002\u0002\u0ac8", - "\u0ac6\u0003\u0002\u0002\u0002\u0ac8\u0ac9\u0003\u0002\u0002\u0002\u0ac9", - "\u0270\u0003\u0002\u0002\u0002\u0aca\u0ac8\u0003\u0002\u0002\u0002\u0acb", - "\u0acc\t\u0007\u0002\u0002\u0acc\u0272\u0003\u0002\u0002\u0002\u0acd", - "\u0ace\t\b\u0002\u0002\u0ace\u0274\u0003\u0002\u0002\u0002\u0acf\u0ad7", - "\u0007$\u0002\u0002\u0ad0\u0ad1\u0007^\u0002\u0002\u0ad1\u0ad6\u000b", - "\u0002\u0002\u0002\u0ad2\u0ad3\u0007$\u0002\u0002\u0ad3\u0ad6\u0007", - "$\u0002\u0002\u0ad4\u0ad6\n\t\u0002\u0002\u0ad5\u0ad0\u0003\u0002\u0002", - "\u0002\u0ad5\u0ad2\u0003\u0002\u0002\u0002\u0ad5\u0ad4\u0003\u0002\u0002", - "\u0002\u0ad6\u0ad9\u0003\u0002\u0002\u0002\u0ad7\u0ad5\u0003\u0002\u0002", - "\u0002\u0ad7\u0ad8\u0003\u0002\u0002\u0002\u0ad8\u0ada\u0003\u0002\u0002", - "\u0002\u0ad9\u0ad7\u0003\u0002\u0002\u0002\u0ada\u0adb\u0007$\u0002", - "\u0002\u0adb\u0276\u0003\u0002\u0002\u0002\u0adc\u0ae4\u0007)\u0002", - "\u0002\u0add\u0ade\u0007^\u0002\u0002\u0ade\u0ae3\u000b\u0002\u0002", - "\u0002\u0adf\u0ae0\u0007)\u0002\u0002\u0ae0\u0ae3\u0007)\u0002\u0002", - "\u0ae1\u0ae3\n\n\u0002\u0002\u0ae2\u0add\u0003\u0002\u0002\u0002\u0ae2", - "\u0adf\u0003\u0002\u0002\u0002\u0ae2\u0ae1\u0003\u0002\u0002\u0002\u0ae3", - "\u0ae6\u0003\u0002\u0002\u0002\u0ae4\u0ae2\u0003\u0002\u0002\u0002\u0ae4", - "\u0ae5\u0003\u0002\u0002\u0002\u0ae5\u0ae7\u0003\u0002\u0002\u0002\u0ae6", - "\u0ae4\u0003\u0002\u0002\u0002\u0ae7\u0ae8\u0007)\u0002\u0002\u0ae8", - "\u0278\u0003\u0002\u0002\u0002\u0ae9\u0aea\u0007D\u0002\u0002\u0aea", - "\u0aec\u0007)\u0002\u0002\u0aeb\u0aed\t\u000b\u0002\u0002\u0aec\u0aeb", - "\u0003\u0002\u0002\u0002\u0aed\u0aee\u0003\u0002\u0002\u0002\u0aee\u0aec", - "\u0003\u0002\u0002\u0002\u0aee\u0aef\u0003\u0002\u0002\u0002\u0aef\u0af0", - "\u0003\u0002\u0002\u0002\u0af0\u0af1\u0007)\u0002\u0002\u0af1\u027a", - "\u0003\u0002\u0002\u0002\u0af2\u0afa\u0007b\u0002\u0002\u0af3\u0af4", - "\u0007^\u0002\u0002\u0af4\u0af9\u000b\u0002\u0002\u0002\u0af5\u0af6", - "\u0007b\u0002\u0002\u0af6\u0af9\u0007b\u0002\u0002\u0af7\u0af9\n\f\u0002", - "\u0002\u0af8\u0af3\u0003\u0002\u0002\u0002\u0af8\u0af5\u0003\u0002\u0002", - "\u0002\u0af8\u0af7\u0003\u0002\u0002\u0002\u0af9\u0afc\u0003\u0002\u0002", - "\u0002\u0afa\u0af8\u0003\u0002\u0002\u0002\u0afa\u0afb\u0003\u0002\u0002", - "\u0002\u0afb\u0afd\u0003\u0002\u0002\u0002\u0afc\u0afa\u0003\u0002\u0002", - "\u0002\u0afd\u0afe\u0007b\u0002\u0002\u0afe\u027c\u0003\u0002\u0002", - "\u0002#\u0002\u0280\u028a\u0296\u029b\u029f\u02a3\u02a9\u02ad\u02af", - "\u0a79\u0a7e\u0a83\u0a85\u0a8b\u0a90\u0a98\u0a9a\u0aa0\u0aa7\u0aab\u0ab3", - "\u0ab8\u0abd\u0ac3\u0ac8\u0ad5\u0ad7\u0ae2\u0ae4\u0aee\u0af8\u0afa\u0003", - "\u0002\u0003\u0002"].join(""); + "\u0003\u0111\u0003\u0112\u0003\u0112\u0003\u0112\u0003\u0112\u0003\u0112", + "\u0003\u0113\u0003\u0113\u0003\u0113\u0003\u0113\u0003\u0113\u0003\u0114", + "\u0003\u0114\u0003\u0114\u0003\u0114\u0003\u0114\u0003\u0114\u0003\u0114", + "\u0003\u0114\u0003\u0114\u0003\u0114\u0003\u0115\u0003\u0115\u0003\u0115", + "\u0003\u0115\u0003\u0115\u0003\u0115\u0003\u0115\u0003\u0115\u0003\u0115", + "\u0003\u0116\u0003\u0116\u0003\u0116\u0003\u0116\u0003\u0116\u0003\u0116", + "\u0003\u0116\u0003\u0116\u0003\u0117\u0003\u0117\u0003\u0117\u0003\u0117", + "\u0003\u0118\u0003\u0118\u0003\u0118\u0003\u0118\u0003\u0119\u0003\u0119", + "\u0003\u0119\u0003\u0119\u0003\u0119\u0003\u011a\u0003\u011a\u0003\u011a", + "\u0003\u011a\u0003\u011a\u0003\u011a\u0003\u011a\u0003\u011a\u0003\u011a", + "\u0003\u011b\u0003\u011b\u0003\u011c\u0003\u011c\u0003\u011d\u0003\u011d", + "\u0003\u011e\u0003\u011e\u0003\u011f\u0003\u011f\u0003\u0120\u0003\u0120", + "\u0003\u0121\u0003\u0121\u0003\u0122\u0003\u0122\u0003\u0123\u0003\u0123", + "\u0003\u0124\u0003\u0124\u0003\u0125\u0003\u0125\u0003\u0126\u0003\u0126", + "\u0003\u0127\u0003\u0127\u0003\u0128\u0003\u0128\u0003\u0129\u0003\u0129", + "\u0003\u012a\u0003\u012a\u0003\u012b\u0003\u012b\u0003\u012c\u0003\u012c", + "\u0003\u012d\u0003\u012d\u0003\u012e\u0003\u012e\u0003\u012f\u0003\u012f", + "\u0003\u0130\u0003\u0130\u0003\u0131\u0003\u0131\u0003\u0132\u0003\u0132", + "\u0003\u0133\u0003\u0133\u0003\u0134\u0003\u0134\u0003\u0134\u0003\u0135", + "\u0003\u0135\u0003\u0135\u0003\u0136\u0003\u0136\u0003\u0137\u0003\u0137", + "\u0003\u0137\u0003\u0138\u0003\u0138\u0003\u0138\u0003\u0139\u0003\u0139", + "\u0003\u0139\u0005\u0139\u0ac2\n\u0139\u0003\u013a\u0006\u013a\u0ac5", + "\n\u013a\r\u013a\u000e\u013a\u0ac6\u0003\u013b\u0006\u013b\u0aca\n\u013b", + "\r\u013b\u000e\u013b\u0acb\u0005\u013b\u0ace\n\u013b\u0003\u013b\u0003", + "\u013b\u0006\u013b\u0ad2\n\u013b\r\u013b\u000e\u013b\u0ad3\u0003\u013b", + "\u0006\u013b\u0ad7\n\u013b\r\u013b\u000e\u013b\u0ad8\u0003\u013b\u0003", + "\u013b\u0003\u013b\u0003\u013b\u0006\u013b\u0adf\n\u013b\r\u013b\u000e", + "\u013b\u0ae0\u0005\u013b\u0ae3\n\u013b\u0003\u013b\u0003\u013b\u0006", + "\u013b\u0ae7\n\u013b\r\u013b\u000e\u013b\u0ae8\u0003\u013b\u0003\u013b", + "\u0003\u013b\u0006\u013b\u0aee\n\u013b\r\u013b\u000e\u013b\u0aef\u0003", + "\u013b\u0003\u013b\u0005\u013b\u0af4\n\u013b\u0003\u013c\u0003\u013c", + "\u0003\u013d\u0003\u013d\u0003\u013e\u0003\u013e\u0003\u013f\u0003\u013f", + "\u0005\u013f\u0afe\n\u013f\u0003\u013f\u0006\u013f\u0b01\n\u013f\r\u013f", + "\u000e\u013f\u0b02\u0003\u0140\u0007\u0140\u0b06\n\u0140\f\u0140\u000e", + "\u0140\u0b09\u000b\u0140\u0003\u0140\u0006\u0140\u0b0c\n\u0140\r\u0140", + "\u000e\u0140\u0b0d\u0003\u0140\u0007\u0140\u0b11\n\u0140\f\u0140\u000e", + "\u0140\u0b14\u000b\u0140\u0003\u0141\u0007\u0141\u0b17\n\u0141\f\u0141", + "\u000e\u0141\u0b1a\u000b\u0141\u0003\u0141\u0006\u0141\u0b1d\n\u0141", + "\r\u0141\u000e\u0141\u0b1e\u0003\u0141\u0007\u0141\u0b22\n\u0141\f\u0141", + "\u000e\u0141\u0b25\u000b\u0141\u0003\u0142\u0003\u0142\u0003\u0143\u0003", + "\u0143\u0003\u0144\u0003\u0144\u0003\u0144\u0003\u0144\u0003\u0144\u0003", + "\u0144\u0007\u0144\u0b31\n\u0144\f\u0144\u000e\u0144\u0b34\u000b\u0144", + "\u0003\u0144\u0003\u0144\u0003\u0145\u0003\u0145\u0003\u0145\u0003\u0145", + "\u0003\u0145\u0003\u0145\u0007\u0145\u0b3e\n\u0145\f\u0145\u000e\u0145", + "\u0b41\u000b\u0145\u0003\u0145\u0003\u0145\u0003\u0146\u0003\u0146\u0003", + "\u0146\u0006\u0146\u0b48\n\u0146\r\u0146\u000e\u0146\u0b49\u0003\u0146", + "\u0003\u0146\u0003\u0147\u0003\u0147\u0003\u0147\u0003\u0147\u0003\u0147", + "\u0003\u0147\u0007\u0147\u0b54\n\u0147\f\u0147\u000e\u0147\u0b57\u000b", + "\u0147\u0003\u0147\u0003\u0147\u0007\u029c\u0b07\u0b0d\u0b18\u0b1e\u0002", + "\u0148\u0003\u0003\u0005\u0004\u0007\u0005\t\u0006\u000b\u0007\r\b\u000f", + "\t\u0011\n\u0013\u000b\u0015\f\u0017\r\u0019\u000e\u001b\u000f\u001d", + "\u0010\u001f\u0011!\u0012#\u0013%\u0014\'\u0015)\u0016+\u0017-\u0018", + "/\u00191\u001a3\u001b5\u001c7\u001d9\u001e;\u001f= ?!A\"C#E$G%I&K\'", + "M(O)Q*S+U,W-Y.[/]0_1a2c3e4g5i6k7m8o9q:s;u{?}@\u007fA\u0081B\u0083", + "C\u0085D\u0087E\u0089F\u008bG\u008dH\u008fI\u0091J\u0093K\u0095L\u0097", + "M\u0099N\u009bO\u009dP\u009fQ\u00a1R\u00a3S\u00a5T\u00a7U\u00a9V\u00ab", + "W\u00adX\u00afY\u00b1Z\u00b3[\u00b5\\\u00b7]\u00b9^\u00bb_\u00bd`\u00bf", + "a\u00c1b\u00c3c\u00c5d\u00c7e\u00c9f\u00cbg\u00cdh\u00cfi\u00d1j\u00d3", + "k\u00d5l\u00d7m\u00d9n\u00dbo\u00ddp\u00dfq\u00e1r\u00e3s\u00e5t\u00e7", + "u\u00e9v\u00ebw\u00edx\u00efy\u00f1z\u00f3{\u00f5|\u00f7}\u00f9~\u00fb", + "\u007f\u00fd\u0080\u00ff\u0081\u0101\u0082\u0103\u0083\u0105\u0084\u0107", + "\u0085\u0109\u0086\u010b\u0087\u010d\u0088\u010f\u0089\u0111\u008a\u0113", + "\u008b\u0115\u008c\u0117\u008d\u0119\u008e\u011b\u008f\u011d\u0090\u011f", + "\u0091\u0121\u0092\u0123\u0093\u0125\u0094\u0127\u0095\u0129\u0096\u012b", + "\u0097\u012d\u0098\u012f\u0099\u0131\u009a\u0133\u009b\u0135\u009c\u0137", + "\u009d\u0139\u009e\u013b\u009f\u013d\u00a0\u013f\u00a1\u0141\u00a2\u0143", + "\u00a3\u0145\u00a4\u0147\u00a5\u0149\u00a6\u014b\u00a7\u014d\u00a8\u014f", + "\u00a9\u0151\u00aa\u0153\u00ab\u0155\u00ac\u0157\u00ad\u0159\u00ae\u015b", + "\u00af\u015d\u00b0\u015f\u00b1\u0161\u00b2\u0163\u00b3\u0165\u00b4\u0167", + "\u00b5\u0169\u00b6\u016b\u00b7\u016d\u00b8\u016f\u00b9\u0171\u00ba\u0173", + "\u00bb\u0175\u00bc\u0177\u00bd\u0179\u00be\u017b\u00bf\u017d\u00c0\u017f", + "\u00c1\u0181\u00c2\u0183\u00c3\u0185\u00c4\u0187\u00c5\u0189\u00c6\u018b", + "\u00c7\u018d\u00c8\u018f\u00c9\u0191\u00ca\u0193\u00cb\u0195\u00cc\u0197", + "\u00cd\u0199\u00ce\u019b\u00cf\u019d\u00d0\u019f\u00d1\u01a1\u00d2\u01a3", + "\u00d3\u01a5\u00d4\u01a7\u00d5\u01a9\u00d6\u01ab\u00d7\u01ad\u00d8\u01af", + "\u00d9\u01b1\u00da\u01b3\u00db\u01b5\u00dc\u01b7\u00dd\u01b9\u00de\u01bb", + "\u00df\u01bd\u00e0\u01bf\u00e1\u01c1\u00e2\u01c3\u00e3\u01c5\u00e4\u01c7", + "\u00e5\u01c9\u00e6\u01cb\u00e7\u01cd\u00e8\u01cf\u00e9\u01d1\u00ea\u01d3", + "\u00eb\u01d5\u00ec\u01d7\u00ed\u01d9\u00ee\u01db\u00ef\u01dd\u00f0\u01df", + "\u00f1\u01e1\u00f2\u01e3\u00f3\u01e5\u00f4\u01e7\u00f5\u01e9\u00f6\u01eb", + "\u00f7\u01ed\u00f8\u01ef\u00f9\u01f1\u00fa\u01f3\u00fb\u01f5\u00fc\u01f7", + "\u00fd\u01f9\u00fe\u01fb\u00ff\u01fd\u0100\u01ff\u0101\u0201\u0102\u0203", + "\u0103\u0205\u0104\u0207\u0105\u0209\u0106\u020b\u0107\u020d\u0108\u020f", + "\u0109\u0211\u010a\u0213\u010b\u0215\u010c\u0217\u010d\u0219\u010e\u021b", + "\u010f\u021d\u0110\u021f\u0111\u0221\u0112\u0223\u0113\u0225\u0114\u0227", + "\u0115\u0229\u0116\u022b\u0117\u022d\u0118\u022f\u0119\u0231\u011a\u0233", + "\u011b\u0235\u011c\u0237\u011d\u0239\u011e\u023b\u011f\u023d\u0120\u023f", + "\u0121\u0241\u0122\u0243\u0123\u0245\u0124\u0247\u0125\u0249\u0126\u024b", + "\u0127\u024d\u0128\u024f\u0129\u0251\u012a\u0253\u012b\u0255\u012c\u0257", + "\u012d\u0259\u012e\u025b\u012f\u025d\u0130\u025f\u0131\u0261\u0132\u0263", + "\u0133\u0265\u0134\u0267\u0135\u0269\u0136\u026b\u0137\u026d\u0138\u026f", + "\u0139\u0271\u013a\u0273\u013b\u0275\u013c\u0277\u013d\u0279\u013e\u027b", + "\u013f\u027d\u0002\u027f\u0002\u0281\u0002\u0283\u0002\u0285\u0002\u0287", + "\u0002\u0289\u0002\u028b\u0002\u028d\u0002\u0003\u0002\u000f\u0005\u0002", + "\u000b\f\u000f\u000f\"\"\u0004\u0002\f\f\u000f\u000f\u0004\u000200<", + "<\u0004\u0002--//\u0006\u00022;C\\aac|\u0005\u0002C\\aac|\b\u0002%(", + ",,2;BB`ac|\u0003\u00022;\u0004\u0002C\\c|\u0004\u0002$$^^\u0004\u0002", + "))^^\u0003\u000223\u0004\u0002^^bb\u0002\u0b79\u0002\u0003\u0003\u0002", + "\u0002\u0002\u0002\u0005\u0003\u0002\u0002\u0002\u0002\u0007\u0003\u0002", + "\u0002\u0002\u0002\t\u0003\u0002\u0002\u0002\u0002\u000b\u0003\u0002", + "\u0002\u0002\u0002\r\u0003\u0002\u0002\u0002\u0002\u000f\u0003\u0002", + "\u0002\u0002\u0002\u0011\u0003\u0002\u0002\u0002\u0002\u0013\u0003\u0002", + "\u0002\u0002\u0002\u0015\u0003\u0002\u0002\u0002\u0002\u0017\u0003\u0002", + "\u0002\u0002\u0002\u0019\u0003\u0002\u0002\u0002\u0002\u001b\u0003\u0002", + "\u0002\u0002\u0002\u001d\u0003\u0002\u0002\u0002\u0002\u001f\u0003\u0002", + "\u0002\u0002\u0002!\u0003\u0002\u0002\u0002\u0002#\u0003\u0002\u0002", + "\u0002\u0002%\u0003\u0002\u0002\u0002\u0002\'\u0003\u0002\u0002\u0002", + "\u0002)\u0003\u0002\u0002\u0002\u0002+\u0003\u0002\u0002\u0002\u0002", + "-\u0003\u0002\u0002\u0002\u0002/\u0003\u0002\u0002\u0002\u00021\u0003", + "\u0002\u0002\u0002\u00023\u0003\u0002\u0002\u0002\u00025\u0003\u0002", + "\u0002\u0002\u00027\u0003\u0002\u0002\u0002\u00029\u0003\u0002\u0002", + "\u0002\u0002;\u0003\u0002\u0002\u0002\u0002=\u0003\u0002\u0002\u0002", + "\u0002?\u0003\u0002\u0002\u0002\u0002A\u0003\u0002\u0002\u0002\u0002", + "C\u0003\u0002\u0002\u0002\u0002E\u0003\u0002\u0002\u0002\u0002G\u0003", + "\u0002\u0002\u0002\u0002I\u0003\u0002\u0002\u0002\u0002K\u0003\u0002", + "\u0002\u0002\u0002M\u0003\u0002\u0002\u0002\u0002O\u0003\u0002\u0002", + "\u0002\u0002Q\u0003\u0002\u0002\u0002\u0002S\u0003\u0002\u0002\u0002", + "\u0002U\u0003\u0002\u0002\u0002\u0002W\u0003\u0002\u0002\u0002\u0002", + "Y\u0003\u0002\u0002\u0002\u0002[\u0003\u0002\u0002\u0002\u0002]\u0003", + "\u0002\u0002\u0002\u0002_\u0003\u0002\u0002\u0002\u0002a\u0003\u0002", + "\u0002\u0002\u0002c\u0003\u0002\u0002\u0002\u0002e\u0003\u0002\u0002", + "\u0002\u0002g\u0003\u0002\u0002\u0002\u0002i\u0003\u0002\u0002\u0002", + "\u0002k\u0003\u0002\u0002\u0002\u0002m\u0003\u0002\u0002\u0002\u0002", + "o\u0003\u0002\u0002\u0002\u0002q\u0003\u0002\u0002\u0002\u0002s\u0003", + "\u0002\u0002\u0002\u0002u\u0003\u0002\u0002\u0002\u0002w\u0003\u0002", + "\u0002\u0002\u0002y\u0003\u0002\u0002\u0002\u0002{\u0003\u0002\u0002", + "\u0002\u0002}\u0003\u0002\u0002\u0002\u0002\u007f\u0003\u0002\u0002", + "\u0002\u0002\u0081\u0003\u0002\u0002\u0002\u0002\u0083\u0003\u0002\u0002", + "\u0002\u0002\u0085\u0003\u0002\u0002\u0002\u0002\u0087\u0003\u0002\u0002", + "\u0002\u0002\u0089\u0003\u0002\u0002\u0002\u0002\u008b\u0003\u0002\u0002", + "\u0002\u0002\u008d\u0003\u0002\u0002\u0002\u0002\u008f\u0003\u0002\u0002", + "\u0002\u0002\u0091\u0003\u0002\u0002\u0002\u0002\u0093\u0003\u0002\u0002", + "\u0002\u0002\u0095\u0003\u0002\u0002\u0002\u0002\u0097\u0003\u0002\u0002", + "\u0002\u0002\u0099\u0003\u0002\u0002\u0002\u0002\u009b\u0003\u0002\u0002", + "\u0002\u0002\u009d\u0003\u0002\u0002\u0002\u0002\u009f\u0003\u0002\u0002", + "\u0002\u0002\u00a1\u0003\u0002\u0002\u0002\u0002\u00a3\u0003\u0002\u0002", + "\u0002\u0002\u00a5\u0003\u0002\u0002\u0002\u0002\u00a7\u0003\u0002\u0002", + "\u0002\u0002\u00a9\u0003\u0002\u0002\u0002\u0002\u00ab\u0003\u0002\u0002", + "\u0002\u0002\u00ad\u0003\u0002\u0002\u0002\u0002\u00af\u0003\u0002\u0002", + "\u0002\u0002\u00b1\u0003\u0002\u0002\u0002\u0002\u00b3\u0003\u0002\u0002", + "\u0002\u0002\u00b5\u0003\u0002\u0002\u0002\u0002\u00b7\u0003\u0002\u0002", + "\u0002\u0002\u00b9\u0003\u0002\u0002\u0002\u0002\u00bb\u0003\u0002\u0002", + "\u0002\u0002\u00bd\u0003\u0002\u0002\u0002\u0002\u00bf\u0003\u0002\u0002", + "\u0002\u0002\u00c1\u0003\u0002\u0002\u0002\u0002\u00c3\u0003\u0002\u0002", + "\u0002\u0002\u00c5\u0003\u0002\u0002\u0002\u0002\u00c7\u0003\u0002\u0002", + "\u0002\u0002\u00c9\u0003\u0002\u0002\u0002\u0002\u00cb\u0003\u0002\u0002", + "\u0002\u0002\u00cd\u0003\u0002\u0002\u0002\u0002\u00cf\u0003\u0002\u0002", + "\u0002\u0002\u00d1\u0003\u0002\u0002\u0002\u0002\u00d3\u0003\u0002\u0002", + "\u0002\u0002\u00d5\u0003\u0002\u0002\u0002\u0002\u00d7\u0003\u0002\u0002", + "\u0002\u0002\u00d9\u0003\u0002\u0002\u0002\u0002\u00db\u0003\u0002\u0002", + "\u0002\u0002\u00dd\u0003\u0002\u0002\u0002\u0002\u00df\u0003\u0002\u0002", + "\u0002\u0002\u00e1\u0003\u0002\u0002\u0002\u0002\u00e3\u0003\u0002\u0002", + "\u0002\u0002\u00e5\u0003\u0002\u0002\u0002\u0002\u00e7\u0003\u0002\u0002", + "\u0002\u0002\u00e9\u0003\u0002\u0002\u0002\u0002\u00eb\u0003\u0002\u0002", + "\u0002\u0002\u00ed\u0003\u0002\u0002\u0002\u0002\u00ef\u0003\u0002\u0002", + "\u0002\u0002\u00f1\u0003\u0002\u0002\u0002\u0002\u00f3\u0003\u0002\u0002", + "\u0002\u0002\u00f5\u0003\u0002\u0002\u0002\u0002\u00f7\u0003\u0002\u0002", + "\u0002\u0002\u00f9\u0003\u0002\u0002\u0002\u0002\u00fb\u0003\u0002\u0002", + "\u0002\u0002\u00fd\u0003\u0002\u0002\u0002\u0002\u00ff\u0003\u0002\u0002", + "\u0002\u0002\u0101\u0003\u0002\u0002\u0002\u0002\u0103\u0003\u0002\u0002", + "\u0002\u0002\u0105\u0003\u0002\u0002\u0002\u0002\u0107\u0003\u0002\u0002", + "\u0002\u0002\u0109\u0003\u0002\u0002\u0002\u0002\u010b\u0003\u0002\u0002", + "\u0002\u0002\u010d\u0003\u0002\u0002\u0002\u0002\u010f\u0003\u0002\u0002", + "\u0002\u0002\u0111\u0003\u0002\u0002\u0002\u0002\u0113\u0003\u0002\u0002", + "\u0002\u0002\u0115\u0003\u0002\u0002\u0002\u0002\u0117\u0003\u0002\u0002", + "\u0002\u0002\u0119\u0003\u0002\u0002\u0002\u0002\u011b\u0003\u0002\u0002", + "\u0002\u0002\u011d\u0003\u0002\u0002\u0002\u0002\u011f\u0003\u0002\u0002", + "\u0002\u0002\u0121\u0003\u0002\u0002\u0002\u0002\u0123\u0003\u0002\u0002", + "\u0002\u0002\u0125\u0003\u0002\u0002\u0002\u0002\u0127\u0003\u0002\u0002", + "\u0002\u0002\u0129\u0003\u0002\u0002\u0002\u0002\u012b\u0003\u0002\u0002", + "\u0002\u0002\u012d\u0003\u0002\u0002\u0002\u0002\u012f\u0003\u0002\u0002", + "\u0002\u0002\u0131\u0003\u0002\u0002\u0002\u0002\u0133\u0003\u0002\u0002", + "\u0002\u0002\u0135\u0003\u0002\u0002\u0002\u0002\u0137\u0003\u0002\u0002", + "\u0002\u0002\u0139\u0003\u0002\u0002\u0002\u0002\u013b\u0003\u0002\u0002", + "\u0002\u0002\u013d\u0003\u0002\u0002\u0002\u0002\u013f\u0003\u0002\u0002", + "\u0002\u0002\u0141\u0003\u0002\u0002\u0002\u0002\u0143\u0003\u0002\u0002", + "\u0002\u0002\u0145\u0003\u0002\u0002\u0002\u0002\u0147\u0003\u0002\u0002", + "\u0002\u0002\u0149\u0003\u0002\u0002\u0002\u0002\u014b\u0003\u0002\u0002", + "\u0002\u0002\u014d\u0003\u0002\u0002\u0002\u0002\u014f\u0003\u0002\u0002", + "\u0002\u0002\u0151\u0003\u0002\u0002\u0002\u0002\u0153\u0003\u0002\u0002", + "\u0002\u0002\u0155\u0003\u0002\u0002\u0002\u0002\u0157\u0003\u0002\u0002", + "\u0002\u0002\u0159\u0003\u0002\u0002\u0002\u0002\u015b\u0003\u0002\u0002", + "\u0002\u0002\u015d\u0003\u0002\u0002\u0002\u0002\u015f\u0003\u0002\u0002", + "\u0002\u0002\u0161\u0003\u0002\u0002\u0002\u0002\u0163\u0003\u0002\u0002", + "\u0002\u0002\u0165\u0003\u0002\u0002\u0002\u0002\u0167\u0003\u0002\u0002", + "\u0002\u0002\u0169\u0003\u0002\u0002\u0002\u0002\u016b\u0003\u0002\u0002", + "\u0002\u0002\u016d\u0003\u0002\u0002\u0002\u0002\u016f\u0003\u0002\u0002", + "\u0002\u0002\u0171\u0003\u0002\u0002\u0002\u0002\u0173\u0003\u0002\u0002", + "\u0002\u0002\u0175\u0003\u0002\u0002\u0002\u0002\u0177\u0003\u0002\u0002", + "\u0002\u0002\u0179\u0003\u0002\u0002\u0002\u0002\u017b\u0003\u0002\u0002", + "\u0002\u0002\u017d\u0003\u0002\u0002\u0002\u0002\u017f\u0003\u0002\u0002", + "\u0002\u0002\u0181\u0003\u0002\u0002\u0002\u0002\u0183\u0003\u0002\u0002", + "\u0002\u0002\u0185\u0003\u0002\u0002\u0002\u0002\u0187\u0003\u0002\u0002", + "\u0002\u0002\u0189\u0003\u0002\u0002\u0002\u0002\u018b\u0003\u0002\u0002", + "\u0002\u0002\u018d\u0003\u0002\u0002\u0002\u0002\u018f\u0003\u0002\u0002", + "\u0002\u0002\u0191\u0003\u0002\u0002\u0002\u0002\u0193\u0003\u0002\u0002", + "\u0002\u0002\u0195\u0003\u0002\u0002\u0002\u0002\u0197\u0003\u0002\u0002", + "\u0002\u0002\u0199\u0003\u0002\u0002\u0002\u0002\u019b\u0003\u0002\u0002", + "\u0002\u0002\u019d\u0003\u0002\u0002\u0002\u0002\u019f\u0003\u0002\u0002", + "\u0002\u0002\u01a1\u0003\u0002\u0002\u0002\u0002\u01a3\u0003\u0002\u0002", + "\u0002\u0002\u01a5\u0003\u0002\u0002\u0002\u0002\u01a7\u0003\u0002\u0002", + "\u0002\u0002\u01a9\u0003\u0002\u0002\u0002\u0002\u01ab\u0003\u0002\u0002", + "\u0002\u0002\u01ad\u0003\u0002\u0002\u0002\u0002\u01af\u0003\u0002\u0002", + "\u0002\u0002\u01b1\u0003\u0002\u0002\u0002\u0002\u01b3\u0003\u0002\u0002", + "\u0002\u0002\u01b5\u0003\u0002\u0002\u0002\u0002\u01b7\u0003\u0002\u0002", + "\u0002\u0002\u01b9\u0003\u0002\u0002\u0002\u0002\u01bb\u0003\u0002\u0002", + "\u0002\u0002\u01bd\u0003\u0002\u0002\u0002\u0002\u01bf\u0003\u0002\u0002", + "\u0002\u0002\u01c1\u0003\u0002\u0002\u0002\u0002\u01c3\u0003\u0002\u0002", + "\u0002\u0002\u01c5\u0003\u0002\u0002\u0002\u0002\u01c7\u0003\u0002\u0002", + "\u0002\u0002\u01c9\u0003\u0002\u0002\u0002\u0002\u01cb\u0003\u0002\u0002", + "\u0002\u0002\u01cd\u0003\u0002\u0002\u0002\u0002\u01cf\u0003\u0002\u0002", + "\u0002\u0002\u01d1\u0003\u0002\u0002\u0002\u0002\u01d3\u0003\u0002\u0002", + "\u0002\u0002\u01d5\u0003\u0002\u0002\u0002\u0002\u01d7\u0003\u0002\u0002", + "\u0002\u0002\u01d9\u0003\u0002\u0002\u0002\u0002\u01db\u0003\u0002\u0002", + "\u0002\u0002\u01dd\u0003\u0002\u0002\u0002\u0002\u01df\u0003\u0002\u0002", + "\u0002\u0002\u01e1\u0003\u0002\u0002\u0002\u0002\u01e3\u0003\u0002\u0002", + "\u0002\u0002\u01e5\u0003\u0002\u0002\u0002\u0002\u01e7\u0003\u0002\u0002", + "\u0002\u0002\u01e9\u0003\u0002\u0002\u0002\u0002\u01eb\u0003\u0002\u0002", + "\u0002\u0002\u01ed\u0003\u0002\u0002\u0002\u0002\u01ef\u0003\u0002\u0002", + "\u0002\u0002\u01f1\u0003\u0002\u0002\u0002\u0002\u01f3\u0003\u0002\u0002", + "\u0002\u0002\u01f5\u0003\u0002\u0002\u0002\u0002\u01f7\u0003\u0002\u0002", + "\u0002\u0002\u01f9\u0003\u0002\u0002\u0002\u0002\u01fb\u0003\u0002\u0002", + "\u0002\u0002\u01fd\u0003\u0002\u0002\u0002\u0002\u01ff\u0003\u0002\u0002", + "\u0002\u0002\u0201\u0003\u0002\u0002\u0002\u0002\u0203\u0003\u0002\u0002", + "\u0002\u0002\u0205\u0003\u0002\u0002\u0002\u0002\u0207\u0003\u0002\u0002", + "\u0002\u0002\u0209\u0003\u0002\u0002\u0002\u0002\u020b\u0003\u0002\u0002", + "\u0002\u0002\u020d\u0003\u0002\u0002\u0002\u0002\u020f\u0003\u0002\u0002", + "\u0002\u0002\u0211\u0003\u0002\u0002\u0002\u0002\u0213\u0003\u0002\u0002", + "\u0002\u0002\u0215\u0003\u0002\u0002\u0002\u0002\u0217\u0003\u0002\u0002", + "\u0002\u0002\u0219\u0003\u0002\u0002\u0002\u0002\u021b\u0003\u0002\u0002", + "\u0002\u0002\u021d\u0003\u0002\u0002\u0002\u0002\u021f\u0003\u0002\u0002", + "\u0002\u0002\u0221\u0003\u0002\u0002\u0002\u0002\u0223\u0003\u0002\u0002", + "\u0002\u0002\u0225\u0003\u0002\u0002\u0002\u0002\u0227\u0003\u0002\u0002", + "\u0002\u0002\u0229\u0003\u0002\u0002\u0002\u0002\u022b\u0003\u0002\u0002", + "\u0002\u0002\u022d\u0003\u0002\u0002\u0002\u0002\u022f\u0003\u0002\u0002", + "\u0002\u0002\u0231\u0003\u0002\u0002\u0002\u0002\u0233\u0003\u0002\u0002", + "\u0002\u0002\u0235\u0003\u0002\u0002\u0002\u0002\u0237\u0003\u0002\u0002", + "\u0002\u0002\u0239\u0003\u0002\u0002\u0002\u0002\u023b\u0003\u0002\u0002", + "\u0002\u0002\u023d\u0003\u0002\u0002\u0002\u0002\u023f\u0003\u0002\u0002", + "\u0002\u0002\u0241\u0003\u0002\u0002\u0002\u0002\u0243\u0003\u0002\u0002", + "\u0002\u0002\u0245\u0003\u0002\u0002\u0002\u0002\u0247\u0003\u0002\u0002", + "\u0002\u0002\u0249\u0003\u0002\u0002\u0002\u0002\u024b\u0003\u0002\u0002", + "\u0002\u0002\u024d\u0003\u0002\u0002\u0002\u0002\u024f\u0003\u0002\u0002", + "\u0002\u0002\u0251\u0003\u0002\u0002\u0002\u0002\u0253\u0003\u0002\u0002", + "\u0002\u0002\u0255\u0003\u0002\u0002\u0002\u0002\u0257\u0003\u0002\u0002", + "\u0002\u0002\u0259\u0003\u0002\u0002\u0002\u0002\u025b\u0003\u0002\u0002", + "\u0002\u0002\u025d\u0003\u0002\u0002\u0002\u0002\u025f\u0003\u0002\u0002", + "\u0002\u0002\u0261\u0003\u0002\u0002\u0002\u0002\u0263\u0003\u0002\u0002", + "\u0002\u0002\u0265\u0003\u0002\u0002\u0002\u0002\u0267\u0003\u0002\u0002", + "\u0002\u0002\u0269\u0003\u0002\u0002\u0002\u0002\u026b\u0003\u0002\u0002", + "\u0002\u0002\u026d\u0003\u0002\u0002\u0002\u0002\u026f\u0003\u0002\u0002", + "\u0002\u0002\u0271\u0003\u0002\u0002\u0002\u0002\u0273\u0003\u0002\u0002", + "\u0002\u0002\u0275\u0003\u0002\u0002\u0002\u0002\u0277\u0003\u0002\u0002", + "\u0002\u0002\u0279\u0003\u0002\u0002\u0002\u0002\u027b\u0003\u0002\u0002", + "\u0002\u0003\u0290\u0003\u0002\u0002\u0002\u0005\u0296\u0003\u0002\u0002", + "\u0002\u0007\u02c1\u0003\u0002\u0002\u0002\t\u02c5\u0003\u0002\u0002", + "\u0002\u000b\u02cc\u0003\u0002\u0002\u0002\r\u02d1\u0003\u0002\u0002", + "\u0002\u000f\u02d5\u0003\u0002\u0002\u0002\u0011\u02d8\u0003\u0002\u0002", + "\u0002\u0013\u02dc\u0003\u0002\u0002\u0002\u0015\u02e0\u0003\u0002\u0002", + "\u0002\u0017\u02e9\u0003\u0002\u0002\u0002\u0019\u02ef\u0003\u0002\u0002", + "\u0002\u001b\u02f5\u0003\u0002\u0002\u0002\u001d\u02f8\u0003\u0002\u0002", + "\u0002\u001f\u0301\u0003\u0002\u0002\u0002!\u0306\u0003\u0002\u0002", + "\u0002#\u030b\u0003\u0002\u0002\u0002%\u0312\u0003\u0002\u0002\u0002", + "\'\u0318\u0003\u0002\u0002\u0002)\u031f\u0003\u0002\u0002\u0002+\u0325", + "\u0003\u0002\u0002\u0002-\u0328\u0003\u0002\u0002\u0002/\u032b\u0003", + "\u0002\u0002\u00021\u032f\u0003\u0002\u0002\u00023\u0332\u0003\u0002", + "\u0002\u00025\u0336\u0003\u0002\u0002\u00027\u0339\u0003\u0002\u0002", + "\u00029\u0340\u0003\u0002\u0002\u0002;\u0348\u0003\u0002\u0002\u0002", + "=\u034d\u0003\u0002\u0002\u0002?\u0353\u0003\u0002\u0002\u0002A\u0356", + "\u0003\u0002\u0002\u0002C\u035b\u0003\u0002\u0002\u0002E\u0361\u0003", + "\u0002\u0002\u0002G\u0367\u0003\u0002\u0002\u0002I\u036b\u0003\u0002", + "\u0002\u0002K\u0370\u0003\u0002\u0002\u0002M\u0374\u0003\u0002\u0002", + "\u0002O\u037d\u0003\u0002\u0002\u0002Q\u0382\u0003\u0002\u0002\u0002", + "S\u0387\u0003\u0002\u0002\u0002U\u038c\u0003\u0002\u0002\u0002W\u0391", + "\u0003\u0002\u0002\u0002Y\u0395\u0003\u0002\u0002\u0002[\u039a\u0003", + "\u0002\u0002\u0002]\u03a0\u0003\u0002\u0002\u0002_\u03a6\u0003\u0002", + "\u0002\u0002a\u03ac\u0003\u0002\u0002\u0002c\u03b1\u0003\u0002\u0002", + "\u0002e\u03b6\u0003\u0002\u0002\u0002g\u03bc\u0003\u0002\u0002\u0002", + "i\u03c1\u0003\u0002\u0002\u0002k\u03c9\u0003\u0002\u0002\u0002m\u03cc", + "\u0003\u0002\u0002\u0002o\u03d2\u0003\u0002\u0002\u0002q\u03da\u0003", + "\u0002\u0002\u0002s\u03e1\u0003\u0002\u0002\u0002u\u03e6\u0003\u0002", + "\u0002\u0002w\u03f0\u0003\u0002\u0002\u0002y\u03f6\u0003\u0002\u0002", + "\u0002{\u03fb\u0003\u0002\u0002\u0002}\u0405\u0003\u0002\u0002\u0002", + "\u007f\u040f\u0003\u0002\u0002\u0002\u0081\u0419\u0003\u0002\u0002\u0002", + "\u0083\u0421\u0003\u0002\u0002\u0002\u0085\u0427\u0003\u0002\u0002\u0002", + "\u0087\u042d\u0003\u0002\u0002\u0002\u0089\u0432\u0003\u0002\u0002\u0002", + "\u008b\u0437\u0003\u0002\u0002\u0002\u008d\u043e\u0003\u0002\u0002\u0002", + "\u008f\u0445\u0003\u0002\u0002\u0002\u0091\u044b\u0003\u0002\u0002\u0002", + "\u0093\u0455\u0003\u0002\u0002\u0002\u0095\u045a\u0003\u0002\u0002\u0002", + "\u0097\u0462\u0003\u0002\u0002\u0002\u0099\u0469\u0003\u0002\u0002\u0002", + "\u009b\u0470\u0003\u0002\u0002\u0002\u009d\u0475\u0003\u0002\u0002\u0002", + "\u009f\u047e\u0003\u0002\u0002\u0002\u00a1\u0486\u0003\u0002\u0002\u0002", + "\u00a3\u048d\u0003\u0002\u0002\u0002\u00a5\u0495\u0003\u0002\u0002\u0002", + "\u00a7\u049d\u0003\u0002\u0002\u0002\u00a9\u04a2\u0003\u0002\u0002\u0002", + "\u00ab\u04a7\u0003\u0002\u0002\u0002\u00ad\u04ac\u0003\u0002\u0002\u0002", + "\u00af\u04b3\u0003\u0002\u0002\u0002\u00b1\u04bb\u0003\u0002\u0002\u0002", + "\u00b3\u04c2\u0003\u0002\u0002\u0002\u00b5\u04c6\u0003\u0002\u0002\u0002", + "\u00b7\u04d1\u0003\u0002\u0002\u0002\u00b9\u04db\u0003\u0002\u0002\u0002", + "\u00bb\u04e0\u0003\u0002\u0002\u0002\u00bd\u04e6\u0003\u0002\u0002\u0002", + "\u00bf\u04ed\u0003\u0002\u0002\u0002\u00c1\u04f6\u0003\u0002\u0002\u0002", + "\u00c3\u0500\u0003\u0002\u0002\u0002\u00c5\u0503\u0003\u0002\u0002\u0002", + "\u00c7\u050f\u0003\u0002\u0002\u0002\u00c9\u0518\u0003\u0002\u0002\u0002", + "\u00cb\u051e\u0003\u0002\u0002\u0002\u00cd\u0525\u0003\u0002\u0002\u0002", + "\u00cf\u052c\u0003\u0002\u0002\u0002\u00d1\u0534\u0003\u0002\u0002\u0002", + "\u00d3\u0538\u0003\u0002\u0002\u0002\u00d5\u053e\u0003\u0002\u0002\u0002", + "\u00d7\u0543\u0003\u0002\u0002\u0002\u00d9\u0549\u0003\u0002\u0002\u0002", + "\u00db\u0555\u0003\u0002\u0002\u0002\u00dd\u055c\u0003\u0002\u0002\u0002", + "\u00df\u0565\u0003\u0002\u0002\u0002\u00e1\u056b\u0003\u0002\u0002\u0002", + "\u00e3\u0572\u0003\u0002\u0002\u0002\u00e5\u0577\u0003\u0002\u0002\u0002", + "\u00e7\u057f\u0003\u0002\u0002\u0002\u00e9\u0588\u0003\u0002\u0002\u0002", + "\u00eb\u058b\u0003\u0002\u0002\u0002\u00ed\u0594\u0003\u0002\u0002\u0002", + "\u00ef\u059c\u0003\u0002\u0002\u0002\u00f1\u059f\u0003\u0002\u0002\u0002", + "\u00f3\u05a4\u0003\u0002\u0002\u0002\u00f5\u05a8\u0003\u0002\u0002\u0002", + "\u00f7\u05ad\u0003\u0002\u0002\u0002\u00f9\u05b0\u0003\u0002\u0002\u0002", + "\u00fb\u05b4\u0003\u0002\u0002\u0002\u00fd\u05b7\u0003\u0002\u0002\u0002", + "\u00ff\u05bb\u0003\u0002\u0002\u0002\u0101\u05c0\u0003\u0002\u0002\u0002", + "\u0103\u05c6\u0003\u0002\u0002\u0002\u0105\u05cf\u0003\u0002\u0002\u0002", + "\u0107\u05d5\u0003\u0002\u0002\u0002\u0109\u05dd\u0003\u0002\u0002\u0002", + "\u010b\u05e1\u0003\u0002\u0002\u0002\u010d\u05e7\u0003\u0002\u0002\u0002", + "\u010f\u05f1\u0003\u0002\u0002\u0002\u0111\u05f6\u0003\u0002\u0002\u0002", + "\u0113\u0602\u0003\u0002\u0002\u0002\u0115\u0606\u0003\u0002\u0002\u0002", + "\u0117\u0611\u0003\u0002\u0002\u0002\u0119\u0618\u0003\u0002\u0002\u0002", + "\u011b\u061c\u0003\u0002\u0002\u0002\u011d\u061f\u0003\u0002\u0002\u0002", + "\u011f\u0624\u0003\u0002\u0002\u0002\u0121\u062c\u0003\u0002\u0002\u0002", + "\u0123\u0637\u0003\u0002\u0002\u0002\u0125\u0641\u0003\u0002\u0002\u0002", + "\u0127\u064b\u0003\u0002\u0002\u0002\u0129\u0652\u0003\u0002\u0002\u0002", + "\u012b\u0658\u0003\u0002\u0002\u0002\u012d\u065e\u0003\u0002\u0002\u0002", + "\u012f\u066e\u0003\u0002\u0002\u0002\u0131\u067b\u0003\u0002\u0002\u0002", + "\u0133\u0688\u0003\u0002\u0002\u0002\u0135\u0692\u0003\u0002\u0002\u0002", + "\u0137\u0699\u0003\u0002\u0002\u0002\u0139\u06a4\u0003\u0002\u0002\u0002", + "\u013b\u06af\u0003\u0002\u0002\u0002\u013d\u06b5\u0003\u0002\u0002\u0002", + "\u013f\u06ba\u0003\u0002\u0002\u0002\u0141\u06c2\u0003\u0002\u0002\u0002", + "\u0143\u06c8\u0003\u0002\u0002\u0002\u0145\u06d2\u0003\u0002\u0002\u0002", + "\u0147\u06db\u0003\u0002\u0002\u0002\u0149\u06e4\u0003\u0002\u0002\u0002", + "\u014b\u06ec\u0003\u0002\u0002\u0002\u014d\u06f2\u0003\u0002\u0002\u0002", + "\u014f\u06f8\u0003\u0002\u0002\u0002\u0151\u0700\u0003\u0002\u0002\u0002", + "\u0153\u0705\u0003\u0002\u0002\u0002\u0155\u070f\u0003\u0002\u0002\u0002", + "\u0157\u0716\u0003\u0002\u0002\u0002\u0159\u0720\u0003\u0002\u0002\u0002", + "\u015b\u0728\u0003\u0002\u0002\u0002\u015d\u072e\u0003\u0002\u0002\u0002", + "\u015f\u073c\u0003\u0002\u0002\u0002\u0161\u0749\u0003\u0002\u0002\u0002", + "\u0163\u0751\u0003\u0002\u0002\u0002\u0165\u0758\u0003\u0002\u0002\u0002", + "\u0167\u075f\u0003\u0002\u0002\u0002\u0169\u076b\u0003\u0002\u0002\u0002", + "\u016b\u0774\u0003\u0002\u0002\u0002\u016d\u077d\u0003\u0002\u0002\u0002", + "\u016f\u0785\u0003\u0002\u0002\u0002\u0171\u078f\u0003\u0002\u0002\u0002", + "\u0173\u079a\u0003\u0002\u0002\u0002\u0175\u07a0\u0003\u0002\u0002\u0002", + "\u0177\u07a8\u0003\u0002\u0002\u0002\u0179\u07b4\u0003\u0002\u0002\u0002", + "\u017b\u07bb\u0003\u0002\u0002\u0002\u017d\u07c3\u0003\u0002\u0002\u0002", + "\u017f\u07ce\u0003\u0002\u0002\u0002\u0181\u07d7\u0003\u0002\u0002\u0002", + "\u0183\u07e1\u0003\u0002\u0002\u0002\u0185\u07e8\u0003\u0002\u0002\u0002", + "\u0187\u07ee\u0003\u0002\u0002\u0002\u0189\u07fa\u0003\u0002\u0002\u0002", + "\u018b\u0807\u0003\u0002\u0002\u0002\u018d\u0810\u0003\u0002\u0002\u0002", + "\u018f\u081a\u0003\u0002\u0002\u0002\u0191\u081e\u0003\u0002\u0002\u0002", + "\u0193\u0827\u0003\u0002\u0002\u0002\u0195\u082f\u0003\u0002\u0002\u0002", + "\u0197\u0837\u0003\u0002\u0002\u0002\u0199\u083c\u0003\u0002\u0002\u0002", + "\u019b\u0847\u0003\u0002\u0002\u0002\u019d\u0853\u0003\u0002\u0002\u0002", + "\u019f\u085c\u0003\u0002\u0002\u0002\u01a1\u0864\u0003\u0002\u0002\u0002", + "\u01a3\u086b\u0003\u0002\u0002\u0002\u01a5\u0871\u0003\u0002\u0002\u0002", + "\u01a7\u0876\u0003\u0002\u0002\u0002\u01a9\u087d\u0003\u0002\u0002\u0002", + "\u01ab\u0882\u0003\u0002\u0002\u0002\u01ad\u0889\u0003\u0002\u0002\u0002", + "\u01af\u0891\u0003\u0002\u0002\u0002\u01b1\u0898\u0003\u0002\u0002\u0002", + "\u01b3\u089f\u0003\u0002\u0002\u0002\u01b5\u08a4\u0003\u0002\u0002\u0002", + "\u01b7\u08a9\u0003\u0002\u0002\u0002\u01b9\u08af\u0003\u0002\u0002\u0002", + "\u01bb\u08bb\u0003\u0002\u0002\u0002\u01bd\u08c6\u0003\u0002\u0002\u0002", + "\u01bf\u08d3\u0003\u0002\u0002\u0002\u01c1\u08d9\u0003\u0002\u0002\u0002", + "\u01c3\u08e1\u0003\u0002\u0002\u0002\u01c5\u08e7\u0003\u0002\u0002\u0002", + "\u01c7\u08ee\u0003\u0002\u0002\u0002\u01c9\u08f3\u0003\u0002\u0002\u0002", + "\u01cb\u08f9\u0003\u0002\u0002\u0002\u01cd\u0900\u0003\u0002\u0002\u0002", + "\u01cf\u090a\u0003\u0002\u0002\u0002\u01d1\u0911\u0003\u0002\u0002\u0002", + "\u01d3\u0921\u0003\u0002\u0002\u0002\u01d5\u092a\u0003\u0002\u0002\u0002", + "\u01d7\u092e\u0003\u0002\u0002\u0002\u01d9\u0932\u0003\u0002\u0002\u0002", + "\u01db\u0938\u0003\u0002\u0002\u0002\u01dd\u093e\u0003\u0002\u0002\u0002", + "\u01df\u0943\u0003\u0002\u0002\u0002\u01e1\u0948\u0003\u0002\u0002\u0002", + "\u01e3\u0950\u0003\u0002\u0002\u0002\u01e5\u0957\u0003\u0002\u0002\u0002", + "\u01e7\u095e\u0003\u0002\u0002\u0002\u01e9\u0961\u0003\u0002\u0002\u0002", + "\u01eb\u0968\u0003\u0002\u0002\u0002\u01ed\u0972\u0003\u0002\u0002\u0002", + "\u01ef\u097c\u0003\u0002\u0002\u0002\u01f1\u0988\u0003\u0002\u0002\u0002", + "\u01f3\u0994\u0003\u0002\u0002\u0002\u01f5\u099e\u0003\u0002\u0002\u0002", + "\u01f7\u09a6\u0003\u0002\u0002\u0002\u01f9\u09af\u0003\u0002\u0002\u0002", + "\u01fb\u09b8\u0003\u0002\u0002\u0002\u01fd\u09be\u0003\u0002\u0002\u0002", + "\u01ff\u09c6\u0003\u0002\u0002\u0002\u0201\u09ca\u0003\u0002\u0002\u0002", + "\u0203\u09d1\u0003\u0002\u0002\u0002\u0205\u09dd\u0003\u0002\u0002\u0002", + "\u0207\u09e4\u0003\u0002\u0002\u0002\u0209\u09ea\u0003\u0002\u0002\u0002", + "\u020b\u09ee\u0003\u0002\u0002\u0002\u020d\u09f3\u0003\u0002\u0002\u0002", + "\u020f\u09fb\u0003\u0002\u0002\u0002\u0211\u0a02\u0003\u0002\u0002\u0002", + "\u0213\u0a0c\u0003\u0002\u0002\u0002\u0215\u0a12\u0003\u0002\u0002\u0002", + "\u0217\u0a1a\u0003\u0002\u0002\u0002\u0219\u0a22\u0003\u0002\u0002\u0002", + "\u021b\u0a2b\u0003\u0002\u0002\u0002\u021d\u0a2f\u0003\u0002\u0002\u0002", + "\u021f\u0a36\u0003\u0002\u0002\u0002\u0221\u0a3c\u0003\u0002\u0002\u0002", + "\u0223\u0a43\u0003\u0002\u0002\u0002\u0225\u0a48\u0003\u0002\u0002\u0002", + "\u0227\u0a4d\u0003\u0002\u0002\u0002\u0229\u0a57\u0003\u0002\u0002\u0002", + "\u022b\u0a60\u0003\u0002\u0002\u0002\u022d\u0a68\u0003\u0002\u0002\u0002", + "\u022f\u0a6c\u0003\u0002\u0002\u0002\u0231\u0a70\u0003\u0002\u0002\u0002", + "\u0233\u0a75\u0003\u0002\u0002\u0002\u0235\u0a7e\u0003\u0002\u0002\u0002", + "\u0237\u0a80\u0003\u0002\u0002\u0002\u0239\u0a82\u0003\u0002\u0002\u0002", + "\u023b\u0a84\u0003\u0002\u0002\u0002\u023d\u0a86\u0003\u0002\u0002\u0002", + "\u023f\u0a88\u0003\u0002\u0002\u0002\u0241\u0a8a\u0003\u0002\u0002\u0002", + "\u0243\u0a8c\u0003\u0002\u0002\u0002\u0245\u0a8e\u0003\u0002\u0002\u0002", + "\u0247\u0a90\u0003\u0002\u0002\u0002\u0249\u0a92\u0003\u0002\u0002\u0002", + "\u024b\u0a94\u0003\u0002\u0002\u0002\u024d\u0a96\u0003\u0002\u0002\u0002", + "\u024f\u0a98\u0003\u0002\u0002\u0002\u0251\u0a9a\u0003\u0002\u0002\u0002", + "\u0253\u0a9c\u0003\u0002\u0002\u0002\u0255\u0a9e\u0003\u0002\u0002\u0002", + "\u0257\u0aa0\u0003\u0002\u0002\u0002\u0259\u0aa2\u0003\u0002\u0002\u0002", + "\u025b\u0aa4\u0003\u0002\u0002\u0002\u025d\u0aa6\u0003\u0002\u0002\u0002", + "\u025f\u0aa8\u0003\u0002\u0002\u0002\u0261\u0aaa\u0003\u0002\u0002\u0002", + "\u0263\u0aac\u0003\u0002\u0002\u0002\u0265\u0aae\u0003\u0002\u0002\u0002", + "\u0267\u0ab0\u0003\u0002\u0002\u0002\u0269\u0ab3\u0003\u0002\u0002\u0002", + "\u026b\u0ab6\u0003\u0002\u0002\u0002\u026d\u0ab8\u0003\u0002\u0002\u0002", + "\u026f\u0abb\u0003\u0002\u0002\u0002\u0271\u0ac1\u0003\u0002\u0002\u0002", + "\u0273\u0ac4\u0003\u0002\u0002\u0002\u0275\u0af3\u0003\u0002\u0002\u0002", + "\u0277\u0af5\u0003\u0002\u0002\u0002\u0279\u0af7\u0003\u0002\u0002\u0002", + "\u027b\u0af9\u0003\u0002\u0002\u0002\u027d\u0afb\u0003\u0002\u0002\u0002", + "\u027f\u0b07\u0003\u0002\u0002\u0002\u0281\u0b18\u0003\u0002\u0002\u0002", + "\u0283\u0b26\u0003\u0002\u0002\u0002\u0285\u0b28\u0003\u0002\u0002\u0002", + "\u0287\u0b2a\u0003\u0002\u0002\u0002\u0289\u0b37\u0003\u0002\u0002\u0002", + "\u028b\u0b44\u0003\u0002\u0002\u0002\u028d\u0b4d\u0003\u0002\u0002\u0002", + "\u028f\u0291\t\u0002\u0002\u0002\u0290\u028f\u0003\u0002\u0002\u0002", + "\u0291\u0292\u0003\u0002\u0002\u0002\u0292\u0290\u0003\u0002\u0002\u0002", + "\u0292\u0293\u0003\u0002\u0002\u0002\u0293\u0294\u0003\u0002\u0002\u0002", + "\u0294\u0295\b\u0002\u0002\u0002\u0295\u0004\u0003\u0002\u0002\u0002", + "\u0296\u0297\u00071\u0002\u0002\u0297\u0298\u0007,\u0002\u0002\u0298", + "\u029c\u0003\u0002\u0002\u0002\u0299\u029b\u000b\u0002\u0002\u0002\u029a", + "\u0299\u0003\u0002\u0002\u0002\u029b\u029e\u0003\u0002\u0002\u0002\u029c", + "\u029d\u0003\u0002\u0002\u0002\u029c\u029a\u0003\u0002\u0002\u0002\u029d", + "\u029f\u0003\u0002\u0002\u0002\u029e\u029c\u0003\u0002\u0002\u0002\u029f", + "\u02a0\u0007,\u0002\u0002\u02a0\u02a1\u00071\u0002\u0002\u02a1\u02a2", + "\u0003\u0002\u0002\u0002\u02a2\u02a3\b\u0003\u0002\u0002\u02a3\u0006", + "\u0003\u0002\u0002\u0002\u02a4\u02a5\u0007/\u0002\u0002\u02a5\u02a6", + "\u0007/\u0002\u0002\u02a6\u02a9\u0007\"\u0002\u0002\u02a7\u02a9\u0007", + "%\u0002\u0002\u02a8\u02a4\u0003\u0002\u0002\u0002\u02a8\u02a7\u0003", + "\u0002\u0002\u0002\u02a9\u02ad\u0003\u0002\u0002\u0002\u02aa\u02ac\n", + "\u0003\u0002\u0002\u02ab\u02aa\u0003\u0002\u0002\u0002\u02ac\u02af\u0003", + "\u0002\u0002\u0002\u02ad\u02ab\u0003\u0002\u0002\u0002\u02ad\u02ae\u0003", + "\u0002\u0002\u0002\u02ae\u02b5\u0003\u0002\u0002\u0002\u02af\u02ad\u0003", + "\u0002\u0002\u0002\u02b0\u02b2\u0007\u000f\u0002\u0002\u02b1\u02b0\u0003", + "\u0002\u0002\u0002\u02b1\u02b2\u0003\u0002\u0002\u0002\u02b2\u02b3\u0003", + "\u0002\u0002\u0002\u02b3\u02b6\u0007\f\u0002\u0002\u02b4\u02b6\u0007", + "\u0002\u0002\u0003\u02b5\u02b1\u0003\u0002\u0002\u0002\u02b5\u02b4\u0003", + "\u0002\u0002\u0002\u02b6\u02c2\u0003\u0002\u0002\u0002\u02b7\u02b8\u0007", + "/\u0002\u0002\u02b8\u02b9\u0007/\u0002\u0002\u02b9\u02bf\u0003\u0002", + "\u0002\u0002\u02ba\u02bc\u0007\u000f\u0002\u0002\u02bb\u02ba\u0003\u0002", + "\u0002\u0002\u02bb\u02bc\u0003\u0002\u0002\u0002\u02bc\u02bd\u0003\u0002", + "\u0002\u0002\u02bd\u02c0\u0007\f\u0002\u0002\u02be\u02c0\u0007\u0002", + "\u0002\u0003\u02bf\u02bb\u0003\u0002\u0002\u0002\u02bf\u02be\u0003\u0002", + "\u0002\u0002\u02c0\u02c2\u0003\u0002\u0002\u0002\u02c1\u02a8\u0003\u0002", + "\u0002\u0002\u02c1\u02b7\u0003\u0002\u0002\u0002\u02c2\u02c3\u0003\u0002", + "\u0002\u0002\u02c3\u02c4\b\u0004\u0002\u0002\u02c4\b\u0003\u0002\u0002", + "\u0002\u02c5\u02c6\u0007U\u0002\u0002\u02c6\u02c7\u0007G\u0002\u0002", + "\u02c7\u02c8\u0007N\u0002\u0002\u02c8\u02c9\u0007G\u0002\u0002\u02c9", + "\u02ca\u0007E\u0002\u0002\u02ca\u02cb\u0007V\u0002\u0002\u02cb\n\u0003", + "\u0002\u0002\u0002\u02cc\u02cd\u0007H\u0002\u0002\u02cd\u02ce\u0007", + "T\u0002\u0002\u02ce\u02cf\u0007Q\u0002\u0002\u02cf\u02d0\u0007O\u0002", + "\u0002\u02d0\f\u0003\u0002\u0002\u0002\u02d1\u02d2\u0007C\u0002\u0002", + "\u02d2\u02d3\u0007F\u0002\u0002\u02d3\u02d4\u0007F\u0002\u0002\u02d4", + "\u000e\u0003\u0002\u0002\u0002\u02d5\u02d6\u0007C\u0002\u0002\u02d6", + "\u02d7\u0007U\u0002\u0002\u02d7\u0010\u0003\u0002\u0002\u0002\u02d8", + "\u02d9\u0007C\u0002\u0002\u02d9\u02da\u0007N\u0002\u0002\u02da\u02db", + "\u0007N\u0002\u0002\u02db\u0012\u0003\u0002\u0002\u0002\u02dc\u02dd", + "\u0007C\u0002\u0002\u02dd\u02de\u0007P\u0002\u0002\u02de\u02df\u0007", + "[\u0002\u0002\u02df\u0014\u0003\u0002\u0002\u0002\u02e0\u02e1\u0007", + "F\u0002\u0002\u02e1\u02e2\u0007K\u0002\u0002\u02e2\u02e3\u0007U\u0002", + "\u0002\u02e3\u02e4\u0007V\u0002\u0002\u02e4\u02e5\u0007K\u0002\u0002", + "\u02e5\u02e6\u0007P\u0002\u0002\u02e6\u02e7\u0007E\u0002\u0002\u02e7", + "\u02e8\u0007V\u0002\u0002\u02e8\u0016\u0003\u0002\u0002\u0002\u02e9", + "\u02ea\u0007Y\u0002\u0002\u02ea\u02eb\u0007J\u0002\u0002\u02eb\u02ec", + "\u0007G\u0002\u0002\u02ec\u02ed\u0007T\u0002\u0002\u02ed\u02ee\u0007", + "G\u0002\u0002\u02ee\u0018\u0003\u0002\u0002\u0002\u02ef\u02f0\u0007", + "I\u0002\u0002\u02f0\u02f1\u0007T\u0002\u0002\u02f1\u02f2\u0007Q\u0002", + "\u0002\u02f2\u02f3\u0007W\u0002\u0002\u02f3\u02f4\u0007R\u0002\u0002", + "\u02f4\u001a\u0003\u0002\u0002\u0002\u02f5\u02f6\u0007D\u0002\u0002", + "\u02f6\u02f7\u0007[\u0002\u0002\u02f7\u001c\u0003\u0002\u0002\u0002", + "\u02f8\u02f9\u0007I\u0002\u0002\u02f9\u02fa\u0007T\u0002\u0002\u02fa", + "\u02fb\u0007Q\u0002\u0002\u02fb\u02fc\u0007W\u0002\u0002\u02fc\u02fd", + "\u0007R\u0002\u0002\u02fd\u02fe\u0007K\u0002\u0002\u02fe\u02ff\u0007", + "P\u0002\u0002\u02ff\u0300\u0007I\u0002\u0002\u0300\u001e\u0003\u0002", + "\u0002\u0002\u0301\u0302\u0007U\u0002\u0002\u0302\u0303\u0007G\u0002", + "\u0002\u0303\u0304\u0007V\u0002\u0002\u0304\u0305\u0007U\u0002\u0002", + "\u0305 \u0003\u0002\u0002\u0002\u0306\u0307\u0007E\u0002\u0002\u0307", + "\u0308\u0007W\u0002\u0002\u0308\u0309\u0007D\u0002\u0002\u0309\u030a", + "\u0007G\u0002\u0002\u030a\"\u0003\u0002\u0002\u0002\u030b\u030c\u0007", + "T\u0002\u0002\u030c\u030d\u0007Q\u0002\u0002\u030d\u030e\u0007N\u0002", + "\u0002\u030e\u030f\u0007N\u0002\u0002\u030f\u0310\u0007W\u0002\u0002", + "\u0310\u0311\u0007R\u0002\u0002\u0311$\u0003\u0002\u0002\u0002\u0312", + "\u0313\u0007Q\u0002\u0002\u0313\u0314\u0007T\u0002\u0002\u0314\u0315", + "\u0007F\u0002\u0002\u0315\u0316\u0007G\u0002\u0002\u0316\u0317\u0007", + "T\u0002\u0002\u0317&\u0003\u0002\u0002\u0002\u0318\u0319\u0007J\u0002", + "\u0002\u0319\u031a\u0007C\u0002\u0002\u031a\u031b\u0007X\u0002\u0002", + "\u031b\u031c\u0007K\u0002\u0002\u031c\u031d\u0007P\u0002\u0002\u031d", + "\u031e\u0007I\u0002\u0002\u031e(\u0003\u0002\u0002\u0002\u031f\u0320", + "\u0007N\u0002\u0002\u0320\u0321\u0007K\u0002\u0002\u0321\u0322\u0007", + "O\u0002\u0002\u0322\u0323\u0007K\u0002\u0002\u0323\u0324\u0007V\u0002", + "\u0002\u0324*\u0003\u0002\u0002\u0002\u0325\u0326\u0007C\u0002\u0002", + "\u0326\u0327\u0007V\u0002\u0002\u0327,\u0003\u0002\u0002\u0002\u0328", + "\u0329\u0007Q\u0002\u0002\u0329\u032a\u0007T\u0002\u0002\u032a.\u0003", + "\u0002\u0002\u0002\u032b\u032c\u0007C\u0002\u0002\u032c\u032d\u0007", + "P\u0002\u0002\u032d\u032e\u0007F\u0002\u0002\u032e0\u0003\u0002\u0002", + "\u0002\u032f\u0330\u0007K\u0002\u0002\u0330\u0331\u0007P\u0002\u0002", + "\u03312\u0003\u0002\u0002\u0002\u0332\u0333\u0007P\u0002\u0002\u0333", + "\u0334\u0007Q\u0002\u0002\u0334\u0335\u0007V\u0002\u0002\u03354\u0003", + "\u0002\u0002\u0002\u0336\u0337\u0007P\u0002\u0002\u0337\u0338\u0007", + "Q\u0002\u0002\u03386\u0003\u0002\u0002\u0002\u0339\u033a\u0007G\u0002", + "\u0002\u033a\u033b\u0007Z\u0002\u0002\u033b\u033c\u0007K\u0002\u0002", + "\u033c\u033d\u0007U\u0002\u0002\u033d\u033e\u0007V\u0002\u0002\u033e", + "\u033f\u0007U\u0002\u0002\u033f8\u0003\u0002\u0002\u0002\u0340\u0341", + "\u0007D\u0002\u0002\u0341\u0342\u0007G\u0002\u0002\u0342\u0343\u0007", + "V\u0002\u0002\u0343\u0344\u0007Y\u0002\u0002\u0344\u0345\u0007G\u0002", + "\u0002\u0345\u0346\u0007G\u0002\u0002\u0346\u0347\u0007P\u0002\u0002", + "\u0347:\u0003\u0002\u0002\u0002\u0348\u0349\u0007N\u0002\u0002\u0349", + "\u034a\u0007K\u0002\u0002\u034a\u034b\u0007M\u0002\u0002\u034b\u034c", + "\u0007G\u0002\u0002\u034c<\u0003\u0002\u0002\u0002\u034d\u034e\u0007", + "T\u0002\u0002\u034e\u034f\u0007N\u0002\u0002\u034f\u0350\u0007K\u0002", + "\u0002\u0350\u0351\u0007M\u0002\u0002\u0351\u0352\u0007G\u0002\u0002", + "\u0352>\u0003\u0002\u0002\u0002\u0353\u0354\u0007K\u0002\u0002\u0354", + "\u0355\u0007U\u0002\u0002\u0355@\u0003\u0002\u0002\u0002\u0356\u0357", + "\u0007V\u0002\u0002\u0357\u0358\u0007T\u0002\u0002\u0358\u0359\u0007", + "W\u0002\u0002\u0359\u035a\u0007G\u0002\u0002\u035aB\u0003\u0002\u0002", + "\u0002\u035b\u035c\u0007H\u0002\u0002\u035c\u035d\u0007C\u0002\u0002", + "\u035d\u035e\u0007N\u0002\u0002\u035e\u035f\u0007U\u0002\u0002\u035f", + "\u0360\u0007G\u0002\u0002\u0360D\u0003\u0002\u0002\u0002\u0361\u0362", + "\u0007P\u0002\u0002\u0362\u0363\u0007W\u0002\u0002\u0363\u0364\u0007", + "N\u0002\u0002\u0364\u0365\u0007N\u0002\u0002\u0365\u0366\u0007U\u0002", + "\u0002\u0366F\u0003\u0002\u0002\u0002\u0367\u0368\u0007C\u0002\u0002", + "\u0368\u0369\u0007U\u0002\u0002\u0369\u036a\u0007E\u0002\u0002\u036a", + "H\u0003\u0002\u0002\u0002\u036b\u036c\u0007F\u0002\u0002\u036c\u036d", + "\u0007G\u0002\u0002\u036d\u036e\u0007U\u0002\u0002\u036e\u036f\u0007", + "E\u0002\u0002\u036fJ\u0003\u0002\u0002\u0002\u0370\u0371\u0007H\u0002", + "\u0002\u0371\u0372\u0007Q\u0002\u0002\u0372\u0373\u0007T\u0002\u0002", + "\u0373L\u0003\u0002\u0002\u0002\u0374\u0375\u0007K\u0002\u0002\u0375", + "\u0376\u0007P\u0002\u0002\u0376\u0377\u0007V\u0002\u0002\u0377\u0378", + "\u0007G\u0002\u0002\u0378\u0379\u0007T\u0002\u0002\u0379\u037a\u0007", + "X\u0002\u0002\u037a\u037b\u0007C\u0002\u0002\u037b\u037c\u0007N\u0002", + "\u0002\u037cN\u0003\u0002\u0002\u0002\u037d\u037e\u0007E\u0002\u0002", + "\u037e\u037f\u0007C\u0002\u0002\u037f\u0380\u0007U\u0002\u0002\u0380", + "\u0381\u0007G\u0002\u0002\u0381P\u0003\u0002\u0002\u0002\u0382\u0383", + "\u0007Y\u0002\u0002\u0383\u0384\u0007J\u0002\u0002\u0384\u0385\u0007", + "G\u0002\u0002\u0385\u0386\u0007P\u0002\u0002\u0386R\u0003\u0002\u0002", + "\u0002\u0387\u0388\u0007V\u0002\u0002\u0388\u0389\u0007J\u0002\u0002", + "\u0389\u038a\u0007G\u0002\u0002\u038a\u038b\u0007P\u0002\u0002\u038b", + "T\u0003\u0002\u0002\u0002\u038c\u038d\u0007G\u0002\u0002\u038d\u038e", + "\u0007N\u0002\u0002\u038e\u038f\u0007U\u0002\u0002\u038f\u0390\u0007", + "G\u0002\u0002\u0390V\u0003\u0002\u0002\u0002\u0391\u0392\u0007G\u0002", + "\u0002\u0392\u0393\u0007P\u0002\u0002\u0393\u0394\u0007F\u0002\u0002", + "\u0394X\u0003\u0002\u0002\u0002\u0395\u0396\u0007L\u0002\u0002\u0396", + "\u0397\u0007Q\u0002\u0002\u0397\u0398\u0007K\u0002\u0002\u0398\u0399", + "\u0007P\u0002\u0002\u0399Z\u0003\u0002\u0002\u0002\u039a\u039b\u0007", + "E\u0002\u0002\u039b\u039c\u0007T\u0002\u0002\u039c\u039d\u0007Q\u0002", + "\u0002\u039d\u039e\u0007U\u0002\u0002\u039e\u039f\u0007U\u0002\u0002", + "\u039f\\\u0003\u0002\u0002\u0002\u03a0\u03a1\u0007Q\u0002\u0002\u03a1", + "\u03a2\u0007W\u0002\u0002\u03a2\u03a3\u0007V\u0002\u0002\u03a3\u03a4", + "\u0007G\u0002\u0002\u03a4\u03a5\u0007T\u0002\u0002\u03a5^\u0003\u0002", + "\u0002\u0002\u03a6\u03a7\u0007K\u0002\u0002\u03a7\u03a8\u0007P\u0002", + "\u0002\u03a8\u03a9\u0007P\u0002\u0002\u03a9\u03aa\u0007G\u0002\u0002", + "\u03aa\u03ab\u0007T\u0002\u0002\u03ab`\u0003\u0002\u0002\u0002\u03ac", + "\u03ad\u0007N\u0002\u0002\u03ad\u03ae\u0007G\u0002\u0002\u03ae\u03af", + "\u0007H\u0002\u0002\u03af\u03b0\u0007V\u0002\u0002\u03b0b\u0003\u0002", + "\u0002\u0002\u03b1\u03b2\u0007U\u0002\u0002\u03b2\u03b3\u0007G\u0002", + "\u0002\u03b3\u03b4\u0007O\u0002\u0002\u03b4\u03b5\u0007K\u0002\u0002", + "\u03b5d\u0003\u0002\u0002\u0002\u03b6\u03b7\u0007T\u0002\u0002\u03b7", + "\u03b8\u0007K\u0002\u0002\u03b8\u03b9\u0007I\u0002\u0002\u03b9\u03ba", + "\u0007J\u0002\u0002\u03ba\u03bb\u0007V\u0002\u0002\u03bbf\u0003\u0002", + "\u0002\u0002\u03bc\u03bd\u0007H\u0002\u0002\u03bd\u03be\u0007W\u0002", + "\u0002\u03be\u03bf\u0007N\u0002\u0002\u03bf\u03c0\u0007N\u0002\u0002", + "\u03c0h\u0003\u0002\u0002\u0002\u03c1\u03c2\u0007P\u0002\u0002\u03c2", + "\u03c3\u0007C\u0002\u0002\u03c3\u03c4\u0007V\u0002\u0002\u03c4\u03c5", + "\u0007W\u0002\u0002\u03c5\u03c6\u0007T\u0002\u0002\u03c6\u03c7\u0007", + "C\u0002\u0002\u03c7\u03c8\u0007N\u0002\u0002\u03c8j\u0003\u0002\u0002", + "\u0002\u03c9\u03ca\u0007Q\u0002\u0002\u03ca\u03cb\u0007P\u0002\u0002", + "\u03cbl\u0003\u0002\u0002\u0002\u03cc\u03cd\u0007R\u0002\u0002\u03cd", + "\u03ce\u0007K\u0002\u0002\u03ce\u03cf\u0007X\u0002\u0002\u03cf\u03d0", + "\u0007Q\u0002\u0002\u03d0\u03d1\u0007V\u0002\u0002\u03d1n\u0003\u0002", + "\u0002\u0002\u03d2\u03d3\u0007N\u0002\u0002\u03d3\u03d4\u0007C\u0002", + "\u0002\u03d4\u03d5\u0007V\u0002\u0002\u03d5\u03d6\u0007G\u0002\u0002", + "\u03d6\u03d7\u0007T\u0002\u0002\u03d7\u03d8\u0007C\u0002\u0002\u03d8", + "\u03d9\u0007N\u0002\u0002\u03d9p\u0003\u0002\u0002\u0002\u03da\u03db", + "\u0007Y\u0002\u0002\u03db\u03dc\u0007K\u0002\u0002\u03dc\u03dd\u0007", + "P\u0002\u0002\u03dd\u03de\u0007F\u0002\u0002\u03de\u03df\u0007Q\u0002", + "\u0002\u03df\u03e0\u0007Y\u0002\u0002\u03e0r\u0003\u0002\u0002\u0002", + "\u03e1\u03e2\u0007Q\u0002\u0002\u03e2\u03e3\u0007X\u0002\u0002\u03e3", + "\u03e4\u0007G\u0002\u0002\u03e4\u03e5\u0007T\u0002\u0002\u03e5t\u0003", + "\u0002\u0002\u0002\u03e6\u03e7\u0007R\u0002\u0002\u03e7\u03e8\u0007", + "C\u0002\u0002\u03e8\u03e9\u0007T\u0002\u0002\u03e9\u03ea\u0007V\u0002", + "\u0002\u03ea\u03eb\u0007K\u0002\u0002\u03eb\u03ec\u0007V\u0002\u0002", + "\u03ec\u03ed\u0007K\u0002\u0002\u03ed\u03ee\u0007Q\u0002\u0002\u03ee", + "\u03ef\u0007P\u0002\u0002\u03efv\u0003\u0002\u0002\u0002\u03f0\u03f1", + "\u0007T\u0002\u0002\u03f1\u03f2\u0007C\u0002\u0002\u03f2\u03f3\u0007", + "P\u0002\u0002\u03f3\u03f4\u0007I\u0002\u0002\u03f4\u03f5\u0007G\u0002", + "\u0002\u03f5x\u0003\u0002\u0002\u0002\u03f6\u03f7\u0007T\u0002\u0002", + "\u03f7\u03f8\u0007Q\u0002\u0002\u03f8\u03f9\u0007Y\u0002\u0002\u03f9", + "\u03fa\u0007U\u0002\u0002\u03faz\u0003\u0002\u0002\u0002\u03fb\u03fc", + "\u0007W\u0002\u0002\u03fc\u03fd\u0007P\u0002\u0002\u03fd\u03fe\u0007", + "D\u0002\u0002\u03fe\u03ff\u0007Q\u0002\u0002\u03ff\u0400\u0007W\u0002", + "\u0002\u0400\u0401\u0007P\u0002\u0002\u0401\u0402\u0007F\u0002\u0002", + "\u0402\u0403\u0007G\u0002\u0002\u0403\u0404\u0007F\u0002\u0002\u0404", + "|\u0003\u0002\u0002\u0002\u0405\u0406\u0007R\u0002\u0002\u0406\u0407", + "\u0007T\u0002\u0002\u0407\u0408\u0007G\u0002\u0002\u0408\u0409\u0007", + "E\u0002\u0002\u0409\u040a\u0007G\u0002\u0002\u040a\u040b\u0007F\u0002", + "\u0002\u040b\u040c\u0007K\u0002\u0002\u040c\u040d\u0007P\u0002\u0002", + "\u040d\u040e\u0007I\u0002\u0002\u040e~\u0003\u0002\u0002\u0002\u040f", + "\u0410\u0007H\u0002\u0002\u0410\u0411\u0007Q\u0002\u0002\u0411\u0412", + "\u0007N\u0002\u0002\u0412\u0413\u0007N\u0002\u0002\u0413\u0414\u0007", + "Q\u0002\u0002\u0414\u0415\u0007Y\u0002\u0002\u0415\u0416\u0007K\u0002", + "\u0002\u0416\u0417\u0007P\u0002\u0002\u0417\u0418\u0007I\u0002\u0002", + "\u0418\u0080\u0003\u0002\u0002\u0002\u0419\u041a\u0007E\u0002\u0002", + "\u041a\u041b\u0007W\u0002\u0002\u041b\u041c\u0007T\u0002\u0002\u041c", + "\u041d\u0007T\u0002\u0002\u041d\u041e\u0007G\u0002\u0002\u041e\u041f", + "\u0007P\u0002\u0002\u041f\u0420\u0007V\u0002\u0002\u0420\u0082\u0003", + "\u0002\u0002\u0002\u0421\u0422\u0007H\u0002\u0002\u0422\u0423\u0007", + "K\u0002\u0002\u0423\u0424\u0007T\u0002\u0002\u0424\u0425\u0007U\u0002", + "\u0002\u0425\u0426\u0007V\u0002\u0002\u0426\u0084\u0003\u0002\u0002", + "\u0002\u0427\u0428\u0007C\u0002\u0002\u0428\u0429\u0007H\u0002\u0002", + "\u0429\u042a\u0007V\u0002\u0002\u042a\u042b\u0007G\u0002\u0002\u042b", + "\u042c\u0007T\u0002\u0002\u042c\u0086\u0003\u0002\u0002\u0002\u042d", + "\u042e\u0007N\u0002\u0002\u042e\u042f\u0007C\u0002\u0002\u042f\u0430", + "\u0007U\u0002\u0002\u0430\u0431\u0007V\u0002\u0002\u0431\u0088\u0003", + "\u0002\u0002\u0002\u0432\u0433\u0007Y\u0002\u0002\u0433\u0434\u0007", + "K\u0002\u0002\u0434\u0435\u0007V\u0002\u0002\u0435\u0436\u0007J\u0002", + "\u0002\u0436\u008a\u0003\u0002\u0002\u0002\u0437\u0438\u0007X\u0002", + "\u0002\u0438\u0439\u0007C\u0002\u0002\u0439\u043a\u0007N\u0002\u0002", + "\u043a\u043b\u0007W\u0002\u0002\u043b\u043c\u0007G\u0002\u0002\u043c", + "\u043d\u0007U\u0002\u0002\u043d\u008c\u0003\u0002\u0002\u0002\u043e", + "\u043f\u0007E\u0002\u0002\u043f\u0440\u0007T\u0002\u0002\u0440\u0441", + "\u0007G\u0002\u0002\u0441\u0442\u0007C\u0002\u0002\u0442\u0443\u0007", + "V\u0002\u0002\u0443\u0444\u0007G\u0002\u0002\u0444\u008e\u0003\u0002", + "\u0002\u0002\u0445\u0446\u0007V\u0002\u0002\u0446\u0447\u0007C\u0002", + "\u0002\u0447\u0448\u0007D\u0002\u0002\u0448\u0449\u0007N\u0002\u0002", + "\u0449\u044a\u0007G\u0002\u0002\u044a\u0090\u0003\u0002\u0002\u0002", + "\u044b\u044c\u0007F\u0002\u0002\u044c\u044d\u0007K\u0002\u0002\u044d", + "\u044e\u0007T\u0002\u0002\u044e\u044f\u0007G\u0002\u0002\u044f\u0450", + "\u0007E\u0002\u0002\u0450\u0451\u0007V\u0002\u0002\u0451\u0452\u0007", + "Q\u0002\u0002\u0452\u0453\u0007T\u0002\u0002\u0453\u0454\u0007[\u0002", + "\u0002\u0454\u0092\u0003\u0002\u0002\u0002\u0455\u0456\u0007X\u0002", + "\u0002\u0456\u0457\u0007K\u0002\u0002\u0457\u0458\u0007G\u0002\u0002", + "\u0458\u0459\u0007Y\u0002\u0002\u0459\u0094\u0003\u0002\u0002\u0002", + "\u045a\u045b\u0007T\u0002\u0002\u045b\u045c\u0007G\u0002\u0002\u045c", + "\u045d\u0007R\u0002\u0002\u045d\u045e\u0007N\u0002\u0002\u045e\u045f", + "\u0007C\u0002\u0002\u045f\u0460\u0007E\u0002\u0002\u0460\u0461\u0007", + "G\u0002\u0002\u0461\u0096\u0003\u0002\u0002\u0002\u0462\u0463\u0007", + "K\u0002\u0002\u0463\u0464\u0007P\u0002\u0002\u0464\u0465\u0007U\u0002", + "\u0002\u0465\u0466\u0007G\u0002\u0002\u0466\u0467\u0007T\u0002\u0002", + "\u0467\u0468\u0007V\u0002\u0002\u0468\u0098\u0003\u0002\u0002\u0002", + "\u0469\u046a\u0007F\u0002\u0002\u046a\u046b\u0007G\u0002\u0002\u046b", + "\u046c\u0007N\u0002\u0002\u046c\u046d\u0007G\u0002\u0002\u046d\u046e", + "\u0007V\u0002\u0002\u046e\u046f\u0007G\u0002\u0002\u046f\u009a\u0003", + "\u0002\u0002\u0002\u0470\u0471\u0007K\u0002\u0002\u0471\u0472\u0007", + "P\u0002\u0002\u0472\u0473\u0007V\u0002\u0002\u0473\u0474\u0007Q\u0002", + "\u0002\u0474\u009c\u0003\u0002\u0002\u0002\u0475\u0476\u0007F\u0002", + "\u0002\u0476\u0477\u0007G\u0002\u0002\u0477\u0478\u0007U\u0002\u0002", + "\u0478\u0479\u0007E\u0002\u0002\u0479\u047a\u0007T\u0002\u0002\u047a", + "\u047b\u0007K\u0002\u0002\u047b\u047c\u0007D\u0002\u0002\u047c\u047d", + "\u0007G\u0002\u0002\u047d\u009e\u0003\u0002\u0002\u0002\u047e\u047f", + "\u0007G\u0002\u0002\u047f\u0480\u0007Z\u0002\u0002\u0480\u0481\u0007", + "R\u0002\u0002\u0481\u0482\u0007N\u0002\u0002\u0482\u0483\u0007C\u0002", + "\u0002\u0483\u0484\u0007K\u0002\u0002\u0484\u0485\u0007P\u0002\u0002", + "\u0485\u00a0\u0003\u0002\u0002\u0002\u0486\u0487\u0007H\u0002\u0002", + "\u0487\u0488\u0007Q\u0002\u0002\u0488\u0489\u0007T\u0002\u0002\u0489", + "\u048a\u0007O\u0002\u0002\u048a\u048b\u0007C\u0002\u0002\u048b\u048c", + "\u0007V\u0002\u0002\u048c\u00a2\u0003\u0002\u0002\u0002\u048d\u048e", + "\u0007N\u0002\u0002\u048e\u048f\u0007Q\u0002\u0002\u048f\u0490\u0007", + "I\u0002\u0002\u0490\u0491\u0007K\u0002\u0002\u0491\u0492\u0007E\u0002", + "\u0002\u0492\u0493\u0007C\u0002\u0002\u0493\u0494\u0007N\u0002\u0002", + "\u0494\u00a4\u0003\u0002\u0002\u0002\u0495\u0496\u0007E\u0002\u0002", + "\u0496\u0497\u0007Q\u0002\u0002\u0497\u0498\u0007F\u0002\u0002\u0498", + "\u0499\u0007G\u0002\u0002\u0499\u049a\u0007I\u0002\u0002\u049a\u049b", + "\u0007G\u0002\u0002\u049b\u049c\u0007P\u0002\u0002\u049c\u00a6\u0003", + "\u0002\u0002\u0002\u049d\u049e\u0007E\u0002\u0002\u049e\u049f\u0007", + "Q\u0002\u0002\u049f\u04a0\u0007U\u0002\u0002\u04a0\u04a1\u0007V\u0002", + "\u0002\u04a1\u00a8\u0003\u0002\u0002\u0002\u04a2\u04a3\u0007E\u0002", + "\u0002\u04a3\u04a4\u0007C\u0002\u0002\u04a4\u04a5\u0007U\u0002\u0002", + "\u04a5\u04a6\u0007V\u0002\u0002\u04a6\u00aa\u0003\u0002\u0002\u0002", + "\u04a7\u04a8\u0007U\u0002\u0002\u04a8\u04a9\u0007J\u0002\u0002\u04a9", + "\u04aa\u0007Q\u0002\u0002\u04aa\u04ab\u0007Y\u0002\u0002\u04ab\u00ac", + "\u0003\u0002\u0002\u0002\u04ac\u04ad\u0007V\u0002\u0002\u04ad\u04ae", + "\u0007C\u0002\u0002\u04ae\u04af\u0007D\u0002\u0002\u04af\u04b0\u0007", + "N\u0002\u0002\u04b0\u04b1\u0007G\u0002\u0002\u04b1\u04b2\u0007U\u0002", + "\u0002\u04b2\u00ae\u0003\u0002\u0002\u0002\u04b3\u04b4\u0007E\u0002", + "\u0002\u04b4\u04b5\u0007Q\u0002\u0002\u04b5\u04b6\u0007N\u0002\u0002", + "\u04b6\u04b7\u0007W\u0002\u0002\u04b7\u04b8\u0007O\u0002\u0002\u04b8", + "\u04b9\u0007P\u0002\u0002\u04b9\u04ba\u0007U\u0002\u0002\u04ba\u00b0", + "\u0003\u0002\u0002\u0002\u04bb\u04bc\u0007E\u0002\u0002\u04bc\u04bd", + "\u0007Q\u0002\u0002\u04bd\u04be\u0007N\u0002\u0002\u04be\u04bf\u0007", + "W\u0002\u0002\u04bf\u04c0\u0007O\u0002\u0002\u04c0\u04c1\u0007P\u0002", + "\u0002\u04c1\u00b2\u0003\u0002\u0002\u0002\u04c2\u04c3\u0007W\u0002", + "\u0002\u04c3\u04c4\u0007U\u0002\u0002\u04c4\u04c5\u0007G\u0002\u0002", + "\u04c5\u00b4\u0003\u0002\u0002\u0002\u04c6\u04c7\u0007R\u0002\u0002", + "\u04c7\u04c8\u0007C\u0002\u0002\u04c8\u04c9\u0007T\u0002\u0002\u04c9", + "\u04ca\u0007V\u0002\u0002\u04ca\u04cb\u0007K\u0002\u0002\u04cb\u04cc", + "\u0007V\u0002\u0002\u04cc\u04cd\u0007K\u0002\u0002\u04cd\u04ce\u0007", + "Q\u0002\u0002\u04ce\u04cf\u0007P\u0002\u0002\u04cf\u04d0\u0007U\u0002", + "\u0002\u04d0\u00b6\u0003\u0002\u0002\u0002\u04d1\u04d2\u0007H\u0002", + "\u0002\u04d2\u04d3\u0007W\u0002\u0002\u04d3\u04d4\u0007P\u0002\u0002", + "\u04d4\u04d5\u0007E\u0002\u0002\u04d5\u04d6\u0007V\u0002\u0002\u04d6", + "\u04d7\u0007K\u0002\u0002\u04d7\u04d8\u0007Q\u0002\u0002\u04d8\u04d9", + "\u0007P\u0002\u0002\u04d9\u04da\u0007U\u0002\u0002\u04da\u00b8\u0003", + "\u0002\u0002\u0002\u04db\u04dc\u0007F\u0002\u0002\u04dc\u04dd\u0007", + "T\u0002\u0002\u04dd\u04de\u0007Q\u0002\u0002\u04de\u04df\u0007R\u0002", + "\u0002\u04df\u00ba\u0003\u0002\u0002\u0002\u04e0\u04e1\u0007W\u0002", + "\u0002\u04e1\u04e2\u0007P\u0002\u0002\u04e2\u04e3\u0007K\u0002\u0002", + "\u04e3\u04e4\u0007Q\u0002\u0002\u04e4\u04e5\u0007P\u0002\u0002\u04e5", + "\u00bc\u0003\u0002\u0002\u0002\u04e6\u04e7\u0007G\u0002\u0002\u04e7", + "\u04e8\u0007Z\u0002\u0002\u04e8\u04e9\u0007E\u0002\u0002\u04e9\u04ea", + "\u0007G\u0002\u0002\u04ea\u04eb\u0007R\u0002\u0002\u04eb\u04ec\u0007", + "V\u0002\u0002\u04ec\u00be\u0003\u0002\u0002\u0002\u04ed\u04ee\u0007", + "U\u0002\u0002\u04ee\u04ef\u0007G\u0002\u0002\u04ef\u04f0\u0007V\u0002", + "\u0002\u04f0\u04f1\u0007O\u0002\u0002\u04f1\u04f2\u0007K\u0002\u0002", + "\u04f2\u04f3\u0007P\u0002\u0002\u04f3\u04f4\u0007W\u0002\u0002\u04f4", + "\u04f5\u0007U\u0002\u0002\u04f5\u00c0\u0003\u0002\u0002\u0002\u04f6", + "\u04f7\u0007K\u0002\u0002\u04f7\u04f8\u0007P\u0002\u0002\u04f8\u04f9", + "\u0007V\u0002\u0002\u04f9\u04fa\u0007G\u0002\u0002\u04fa\u04fb\u0007", + "T\u0002\u0002\u04fb\u04fc\u0007U\u0002\u0002\u04fc\u04fd\u0007G\u0002", + "\u0002\u04fd\u04fe\u0007E\u0002\u0002\u04fe\u04ff\u0007V\u0002\u0002", + "\u04ff\u00c2\u0003\u0002\u0002\u0002\u0500\u0501\u0007V\u0002\u0002", + "\u0501\u0502\u0007Q\u0002\u0002\u0502\u00c4\u0003\u0002\u0002\u0002", + "\u0503\u0504\u0007V\u0002\u0002\u0504\u0505\u0007C\u0002\u0002\u0505", + "\u0506\u0007D\u0002\u0002\u0506\u0507\u0007N\u0002\u0002\u0507\u0508", + "\u0007G\u0002\u0002\u0508\u0509\u0007U\u0002\u0002\u0509\u050a\u0007", + "C\u0002\u0002\u050a\u050b\u0007O\u0002\u0002\u050b\u050c\u0007R\u0002", + "\u0002\u050c\u050d\u0007N\u0002\u0002\u050d\u050e\u0007G\u0002\u0002", + "\u050e\u00c6\u0003\u0002\u0002\u0002\u050f\u0510\u0007U\u0002\u0002", + "\u0510\u0511\u0007V\u0002\u0002\u0511\u0512\u0007T\u0002\u0002\u0512", + "\u0513\u0007C\u0002\u0002\u0513\u0514\u0007V\u0002\u0002\u0514\u0515", + "\u0007K\u0002\u0002\u0515\u0516\u0007H\u0002\u0002\u0516\u0517\u0007", + "[\u0002\u0002\u0517\u00c8\u0003\u0002\u0002\u0002\u0518\u0519\u0007", + "C\u0002\u0002\u0519\u051a\u0007N\u0002\u0002\u051a\u051b\u0007V\u0002", + "\u0002\u051b\u051c\u0007G\u0002\u0002\u051c\u051d\u0007T\u0002\u0002", + "\u051d\u00ca\u0003\u0002\u0002\u0002\u051e\u051f\u0007T\u0002\u0002", + "\u051f\u0520\u0007G\u0002\u0002\u0520\u0521\u0007P\u0002\u0002\u0521", + "\u0522\u0007C\u0002\u0002\u0522\u0523\u0007O\u0002\u0002\u0523\u0524", + "\u0007G\u0002\u0002\u0524\u00cc\u0003\u0002\u0002\u0002\u0525\u0526", + "\u0007U\u0002\u0002\u0526\u0527\u0007V\u0002\u0002\u0527\u0528\u0007", + "T\u0002\u0002\u0528\u0529\u0007W\u0002\u0002\u0529\u052a\u0007E\u0002", + "\u0002\u052a\u052b\u0007V\u0002\u0002\u052b\u00ce\u0003\u0002\u0002", + "\u0002\u052c\u052d\u0007E\u0002\u0002\u052d\u052e\u0007Q\u0002\u0002", + "\u052e\u052f\u0007O\u0002\u0002\u052f\u0530\u0007O\u0002\u0002\u0530", + "\u0531\u0007G\u0002\u0002\u0531\u0532\u0007P\u0002\u0002\u0532\u0533", + "\u0007V\u0002\u0002\u0533\u00d0\u0003\u0002\u0002\u0002\u0534\u0535", + "\u0007U\u0002\u0002\u0535\u0536\u0007G\u0002\u0002\u0536\u0537\u0007", + "V\u0002\u0002\u0537\u00d2\u0003\u0002\u0002\u0002\u0538\u0539\u0007", + "T\u0002\u0002\u0539\u053a\u0007G\u0002\u0002\u053a\u053b\u0007U\u0002", + "\u0002\u053b\u053c\u0007G\u0002\u0002\u053c\u053d\u0007V\u0002\u0002", + "\u053d\u00d4\u0003\u0002\u0002\u0002\u053e\u053f\u0007F\u0002\u0002", + "\u053f\u0540\u0007C\u0002\u0002\u0540\u0541\u0007V\u0002\u0002\u0541", + "\u0542\u0007C\u0002\u0002\u0542\u00d6\u0003\u0002\u0002\u0002\u0543", + "\u0544\u0007U\u0002\u0002\u0544\u0545\u0007V\u0002\u0002\u0545\u0546", + "\u0007C\u0002\u0002\u0546\u0547\u0007T\u0002\u0002\u0547\u0548\u0007", + "V\u0002\u0002\u0548\u00d8\u0003\u0002\u0002\u0002\u0549\u054a\u0007", + "V\u0002\u0002\u054a\u054b\u0007T\u0002\u0002\u054b\u054c\u0007C\u0002", + "\u0002\u054c\u054d\u0007P\u0002\u0002\u054d\u054e\u0007U\u0002\u0002", + "\u054e\u054f\u0007C\u0002\u0002\u054f\u0550\u0007E\u0002\u0002\u0550", + "\u0551\u0007V\u0002\u0002\u0551\u0552\u0007K\u0002\u0002\u0552\u0553", + "\u0007Q\u0002\u0002\u0553\u0554\u0007P\u0002\u0002\u0554\u00da\u0003", + "\u0002\u0002\u0002\u0555\u0556\u0007E\u0002\u0002\u0556\u0557\u0007", + "Q\u0002\u0002\u0557\u0558\u0007O\u0002\u0002\u0558\u0559\u0007O\u0002", + "\u0002\u0559\u055a\u0007K\u0002\u0002\u055a\u055b\u0007V\u0002\u0002", + "\u055b\u00dc\u0003\u0002\u0002\u0002\u055c\u055d\u0007T\u0002\u0002", + "\u055d\u055e\u0007Q\u0002\u0002\u055e\u055f\u0007N\u0002\u0002\u055f", + "\u0560\u0007N\u0002\u0002\u0560\u0561\u0007D\u0002\u0002\u0561\u0562", + "\u0007C\u0002\u0002\u0562\u0563\u0007E\u0002\u0002\u0563\u0564\u0007", + "M\u0002\u0002\u0564\u00de\u0003\u0002\u0002\u0002\u0565\u0566\u0007", + "O\u0002\u0002\u0566\u0567\u0007C\u0002\u0002\u0567\u0568\u0007E\u0002", + "\u0002\u0568\u0569\u0007T\u0002\u0002\u0569\u056a\u0007Q\u0002\u0002", + "\u056a\u00e0\u0003\u0002\u0002\u0002\u056b\u056c\u0007K\u0002\u0002", + "\u056c\u056d\u0007I\u0002\u0002\u056d\u056e\u0007P\u0002\u0002\u056e", + "\u056f\u0007Q\u0002\u0002\u056f\u0570\u0007T\u0002\u0002\u0570\u0571", + "\u0007G\u0002\u0002\u0571\u00e2\u0003\u0002\u0002\u0002\u0572\u0573", + "\u0007D\u0002\u0002\u0573\u0574\u0007Q\u0002\u0002\u0574\u0575\u0007", + "V\u0002\u0002\u0575\u0576\u0007J\u0002\u0002\u0576\u00e4\u0003\u0002", + "\u0002\u0002\u0577\u0578\u0007N\u0002\u0002\u0578\u0579\u0007G\u0002", + "\u0002\u0579\u057a\u0007C\u0002\u0002\u057a\u057b\u0007F\u0002\u0002", + "\u057b\u057c\u0007K\u0002\u0002\u057c\u057d\u0007P\u0002\u0002\u057d", + "\u057e\u0007I\u0002\u0002\u057e\u00e6\u0003\u0002\u0002\u0002\u057f", + "\u0580\u0007V\u0002\u0002\u0580\u0581\u0007T\u0002\u0002\u0581\u0582", + "\u0007C\u0002\u0002\u0582\u0583\u0007K\u0002\u0002\u0583\u0584\u0007", + "N\u0002\u0002\u0584\u0585\u0007K\u0002\u0002\u0585\u0586\u0007P\u0002", + "\u0002\u0586\u0587\u0007I\u0002\u0002\u0587\u00e8\u0003\u0002\u0002", + "\u0002\u0588\u0589\u0007K\u0002\u0002\u0589\u058a\u0007H\u0002\u0002", + "\u058a\u00ea\u0003\u0002\u0002\u0002\u058b\u058c\u0007R\u0002\u0002", + "\u058c\u058d\u0007Q\u0002\u0002\u058d\u058e\u0007U\u0002\u0002\u058e", + "\u058f\u0007K\u0002\u0002\u058f\u0590\u0007V\u0002\u0002\u0590\u0591", + "\u0007K\u0002\u0002\u0591\u0592\u0007Q\u0002\u0002\u0592\u0593\u0007", + "P\u0002\u0002\u0593\u00ec\u0003\u0002\u0002\u0002\u0594\u0595\u0007", + "G\u0002\u0002\u0595\u0596\u0007Z\u0002\u0002\u0596\u0597\u0007V\u0002", + "\u0002\u0597\u0598\u0007T\u0002\u0002\u0598\u0599\u0007C\u0002\u0002", + "\u0599\u059a\u0007E\u0002\u0002\u059a\u059b\u0007V\u0002\u0002\u059b", + "\u00ee\u0003\u0002\u0002\u0002\u059c\u059d\u0007G\u0002\u0002\u059d", + "\u059e\u0007S\u0002\u0002\u059e\u00f0\u0003\u0002\u0002\u0002\u059f", + "\u05a0\u0007P\u0002\u0002\u05a0\u05a1\u0007U\u0002\u0002\u05a1\u05a2", + "\u0007G\u0002\u0002\u05a2\u05a3\u0007S\u0002\u0002\u05a3\u00f2\u0003", + "\u0002\u0002\u0002\u05a4\u05a5\u0007P\u0002\u0002\u05a5\u05a6\u0007", + "G\u0002\u0002\u05a6\u05a7\u0007S\u0002\u0002\u05a7\u00f4\u0003\u0002", + "\u0002\u0002\u05a8\u05a9\u0007P\u0002\u0002\u05a9\u05aa\u0007G\u0002", + "\u0002\u05aa\u05ab\u0007S\u0002\u0002\u05ab\u05ac\u0007L\u0002\u0002", + "\u05ac\u00f6\u0003\u0002\u0002\u0002\u05ad\u05ae\u0007N\u0002\u0002", + "\u05ae\u05af\u0007V\u0002\u0002\u05af\u00f8\u0003\u0002\u0002\u0002", + "\u05b0\u05b1\u0007N\u0002\u0002\u05b1\u05b2\u0007V\u0002\u0002\u05b2", + "\u05b3\u0007G\u0002\u0002\u05b3\u00fa\u0003\u0002\u0002\u0002\u05b4", + "\u05b5\u0007I\u0002\u0002\u05b5\u05b6\u0007V\u0002\u0002\u05b6\u00fc", + "\u0003\u0002\u0002\u0002\u05b7\u05b8\u0007I\u0002\u0002\u05b8\u05b9", + "\u0007V\u0002\u0002\u05b9\u05ba\u0007G\u0002\u0002\u05ba\u00fe\u0003", + "\u0002\u0002\u0002\u05bb\u05bc\u0007R\u0002\u0002\u05bc\u05bd\u0007", + "N\u0002\u0002\u05bd\u05be\u0007W\u0002\u0002\u05be\u05bf\u0007U\u0002", + "\u0002\u05bf\u0100\u0003\u0002\u0002\u0002\u05c0\u05c1\u0007O\u0002", + "\u0002\u05c1\u05c2\u0007K\u0002\u0002\u05c2\u05c3\u0007P\u0002\u0002", + "\u05c3\u05c4\u0007W\u0002\u0002\u05c4\u05c5\u0007U\u0002\u0002\u05c5", + "\u0102\u0003\u0002\u0002\u0002\u05c6\u05c7\u0007C\u0002\u0002\u05c7", + "\u05c8\u0007U\u0002\u0002\u05c8\u05c9\u0007V\u0002\u0002\u05c9\u05ca", + "\u0007G\u0002\u0002\u05ca\u05cb\u0007T\u0002\u0002\u05cb\u05cc\u0007", + "K\u0002\u0002\u05cc\u05cd\u0007U\u0002\u0002\u05cd\u05ce\u0007M\u0002", + "\u0002\u05ce\u0104\u0003\u0002\u0002\u0002\u05cf\u05d0\u0007U\u0002", + "\u0002\u05d0\u05d1\u0007N\u0002\u0002\u05d1\u05d2\u0007C\u0002\u0002", + "\u05d2\u05d3\u0007U\u0002\u0002\u05d3\u05d4\u0007J\u0002\u0002\u05d4", + "\u0106\u0003\u0002\u0002\u0002\u05d5\u05d6\u0007R\u0002\u0002\u05d6", + "\u05d7\u0007G\u0002\u0002\u05d7\u05d8\u0007T\u0002\u0002\u05d8\u05d9", + "\u0007E\u0002\u0002\u05d9\u05da\u0007G\u0002\u0002\u05da\u05db\u0007", + "P\u0002\u0002\u05db\u05dc\u0007V\u0002\u0002\u05dc\u0108\u0003\u0002", + "\u0002\u0002\u05dd\u05de\u0007F\u0002\u0002\u05de\u05df\u0007K\u0002", + "\u0002\u05df\u05e0\u0007X\u0002\u0002\u05e0\u010a\u0003\u0002\u0002", + "\u0002\u05e1\u05e2\u0007V\u0002\u0002\u05e2\u05e3\u0007K\u0002\u0002", + "\u05e3\u05e4\u0007N\u0002\u0002\u05e4\u05e5\u0007F\u0002\u0002\u05e5", + "\u05e6\u0007G\u0002\u0002\u05e6\u010c\u0003\u0002\u0002\u0002\u05e7", + "\u05e8\u0007C\u0002\u0002\u05e8\u05e9\u0007O\u0002\u0002\u05e9\u05ea", + "\u0007R\u0002\u0002\u05ea\u05eb\u0007G\u0002\u0002\u05eb\u05ec\u0007", + "T\u0002\u0002\u05ec\u05ed\u0007U\u0002\u0002\u05ed\u05ee\u0007C\u0002", + "\u0002\u05ee\u05ef\u0007P\u0002\u0002\u05ef\u05f0\u0007F\u0002\u0002", + "\u05f0\u010e\u0003\u0002\u0002\u0002\u05f1\u05f2\u0007R\u0002\u0002", + "\u05f2\u05f3\u0007K\u0002\u0002\u05f3\u05f4\u0007R\u0002\u0002\u05f4", + "\u05f5\u0007G\u0002\u0002\u05f5\u0110\u0003\u0002\u0002\u0002\u05f6", + "\u05f7\u0007E\u0002\u0002\u05f7\u05f8\u0007Q\u0002\u0002\u05f8\u05f9", + "\u0007P\u0002\u0002\u05f9\u05fa\u0007E\u0002\u0002\u05fa\u05fb\u0007", + "C\u0002\u0002\u05fb\u05fc\u0007V\u0002\u0002\u05fc\u05fd\u0007a\u0002", + "\u0002\u05fd\u05fe\u0007R\u0002\u0002\u05fe\u05ff\u0007K\u0002\u0002", + "\u05ff\u0600\u0007R\u0002\u0002\u0600\u0601\u0007G\u0002\u0002\u0601", + "\u0112\u0003\u0002\u0002\u0002\u0602\u0603\u0007J\u0002\u0002\u0603", + "\u0604\u0007C\u0002\u0002\u0604\u0605\u0007V\u0002\u0002\u0605\u0114", + "\u0003\u0002\u0002\u0002\u0606\u0607\u0007R\u0002\u0002\u0607\u0608", + "\u0007G\u0002\u0002\u0608\u0609\u0007T\u0002\u0002\u0609\u060a\u0007", + "E\u0002\u0002\u060a\u060b\u0007G\u0002\u0002\u060b\u060c\u0007P\u0002", + "\u0002\u060c\u060d\u0007V\u0002\u0002\u060d\u060e\u0007N\u0002\u0002", + "\u060e\u060f\u0007K\u0002\u0002\u060f\u0610\u0007V\u0002\u0002\u0610", + "\u0116\u0003\u0002\u0002\u0002\u0611\u0612\u0007D\u0002\u0002\u0612", + "\u0613\u0007W\u0002\u0002\u0613\u0614\u0007E\u0002\u0002\u0614\u0615", + "\u0007M\u0002\u0002\u0615\u0616\u0007G\u0002\u0002\u0616\u0617\u0007", + "V\u0002\u0002\u0617\u0118\u0003\u0002\u0002\u0002\u0618\u0619\u0007", + "Q\u0002\u0002\u0619\u061a\u0007W\u0002\u0002\u061a\u061b\u0007V\u0002", + "\u0002\u061b\u011a\u0003\u0002\u0002\u0002\u061c\u061d\u0007Q\u0002", + "\u0002\u061d\u061e\u0007H\u0002\u0002\u061e\u011c\u0003\u0002\u0002", + "\u0002\u061f\u0620\u0007U\u0002\u0002\u0620\u0621\u0007Q\u0002\u0002", + "\u0621\u0622\u0007T\u0002\u0002\u0622\u0623\u0007V\u0002\u0002\u0623", + "\u011e\u0003\u0002\u0002\u0002\u0624\u0625\u0007E\u0002\u0002\u0625", + "\u0626\u0007N\u0002\u0002\u0626\u0627\u0007W\u0002\u0002\u0627\u0628", + "\u0007U\u0002\u0002\u0628\u0629\u0007V\u0002\u0002\u0629\u062a\u0007", + "G\u0002\u0002\u062a\u062b\u0007T\u0002\u0002\u062b\u0120\u0003\u0002", + "\u0002\u0002\u062c\u062d\u0007F\u0002\u0002\u062d\u062e\u0007K\u0002", + "\u0002\u062e\u062f\u0007U\u0002\u0002\u062f\u0630\u0007V\u0002\u0002", + "\u0630\u0631\u0007T\u0002\u0002\u0631\u0632\u0007K\u0002\u0002\u0632", + "\u0633\u0007D\u0002\u0002\u0633\u0634\u0007W\u0002\u0002\u0634\u0635", + "\u0007V\u0002\u0002\u0635\u0636\u0007G\u0002\u0002\u0636\u0122\u0003", + "\u0002\u0002\u0002\u0637\u0638\u0007Q\u0002\u0002\u0638\u0639\u0007", + "X\u0002\u0002\u0639\u063a\u0007G\u0002\u0002\u063a\u063b\u0007T\u0002", + "\u0002\u063b\u063c\u0007Y\u0002\u0002\u063c\u063d\u0007T\u0002\u0002", + "\u063d\u063e\u0007K\u0002\u0002\u063e\u063f\u0007V\u0002\u0002\u063f", + "\u0640\u0007G\u0002\u0002\u0640\u0124\u0003\u0002\u0002\u0002\u0641", + "\u0642\u0007V\u0002\u0002\u0642\u0643\u0007T\u0002\u0002\u0643\u0644", + "\u0007C\u0002\u0002\u0644\u0645\u0007P\u0002\u0002\u0645\u0646\u0007", + "U\u0002\u0002\u0646\u0647\u0007H\u0002\u0002\u0647\u0648\u0007Q\u0002", + "\u0002\u0648\u0649\u0007T\u0002\u0002\u0649\u064a\u0007O\u0002\u0002", + "\u064a\u0126\u0003\u0002\u0002\u0002\u064b\u064c\u0007T\u0002\u0002", + "\u064c\u064d\u0007G\u0002\u0002\u064d\u064e\u0007F\u0002\u0002\u064e", + "\u064f\u0007W\u0002\u0002\u064f\u0650\u0007E\u0002\u0002\u0650\u0651", + "\u0007G\u0002\u0002\u0651\u0128\u0003\u0002\u0002\u0002\u0652\u0653", + "\u0007W\u0002\u0002\u0653\u0654\u0007U\u0002\u0002\u0654\u0655\u0007", + "K\u0002\u0002\u0655\u0656\u0007P\u0002\u0002\u0656\u0657\u0007I\u0002", + "\u0002\u0657\u012a\u0003\u0002\u0002\u0002\u0658\u0659\u0007U\u0002", + "\u0002\u0659\u065a\u0007G\u0002\u0002\u065a\u065b\u0007T\u0002\u0002", + "\u065b\u065c\u0007F\u0002\u0002\u065c\u065d\u0007G\u0002\u0002\u065d", + "\u012c\u0003\u0002\u0002\u0002\u065e\u065f\u0007U\u0002\u0002\u065f", + "\u0660\u0007G\u0002\u0002\u0660\u0661\u0007T\u0002\u0002\u0661\u0662", + "\u0007F\u0002\u0002\u0662\u0663\u0007G\u0002\u0002\u0663\u0664\u0007", + "R\u0002\u0002\u0664\u0665\u0007T\u0002\u0002\u0665\u0666\u0007Q\u0002", + "\u0002\u0666\u0667\u0007R\u0002\u0002\u0667\u0668\u0007G\u0002\u0002", + "\u0668\u0669\u0007T\u0002\u0002\u0669\u066a\u0007V\u0002\u0002\u066a", + "\u066b\u0007K\u0002\u0002\u066b\u066c\u0007G\u0002\u0002\u066c\u066d", + "\u0007U\u0002\u0002\u066d\u012e\u0003\u0002\u0002\u0002\u066e\u066f", + "\u0007T\u0002\u0002\u066f\u0670\u0007G\u0002\u0002\u0670\u0671\u0007", + "E\u0002\u0002\u0671\u0672\u0007Q\u0002\u0002\u0672\u0673\u0007T\u0002", + "\u0002\u0673\u0674\u0007F\u0002\u0002\u0674\u0675\u0007T\u0002\u0002", + "\u0675\u0676\u0007G\u0002\u0002\u0676\u0677\u0007C\u0002\u0002\u0677", + "\u0678\u0007F\u0002\u0002\u0678\u0679\u0007G\u0002\u0002\u0679\u067a", + "\u0007T\u0002\u0002\u067a\u0130\u0003\u0002\u0002\u0002\u067b\u067c", + "\u0007T\u0002\u0002\u067c\u067d\u0007G\u0002\u0002\u067d\u067e\u0007", + "E\u0002\u0002\u067e\u067f\u0007Q\u0002\u0002\u067f\u0680\u0007T\u0002", + "\u0002\u0680\u0681\u0007F\u0002\u0002\u0681\u0682\u0007Y\u0002\u0002", + "\u0682\u0683\u0007T\u0002\u0002\u0683\u0684\u0007K\u0002\u0002\u0684", + "\u0685\u0007V\u0002\u0002\u0685\u0686\u0007G\u0002\u0002\u0686\u0687", + "\u0007T\u0002\u0002\u0687\u0132\u0003\u0002\u0002\u0002\u0688\u0689", + "\u0007F\u0002\u0002\u0689\u068a\u0007G\u0002\u0002\u068a\u068b\u0007", + "N\u0002\u0002\u068b\u068c\u0007K\u0002\u0002\u068c\u068d\u0007O\u0002", + "\u0002\u068d\u068e\u0007K\u0002\u0002\u068e\u068f\u0007V\u0002\u0002", + "\u068f\u0690\u0007G\u0002\u0002\u0690\u0691\u0007F\u0002\u0002\u0691", + "\u0134\u0003\u0002\u0002\u0002\u0692\u0693\u0007H\u0002\u0002\u0693", + "\u0694\u0007K\u0002\u0002\u0694\u0695\u0007G\u0002\u0002\u0695\u0696", + "\u0007N\u0002\u0002\u0696\u0697\u0007F\u0002\u0002\u0697\u0698\u0007", + "U\u0002\u0002\u0698\u0136\u0003\u0002\u0002\u0002\u0699\u069a\u0007", + "V\u0002\u0002\u069a\u069b\u0007G\u0002\u0002\u069b\u069c\u0007T\u0002", + "\u0002\u069c\u069d\u0007O\u0002\u0002\u069d\u069e\u0007K\u0002\u0002", + "\u069e\u069f\u0007P\u0002\u0002\u069f\u06a0\u0007C\u0002\u0002\u06a0", + "\u06a1\u0007V\u0002\u0002\u06a1\u06a2\u0007G\u0002\u0002\u06a2\u06a3", + "\u0007F\u0002\u0002\u06a3\u0138\u0003\u0002\u0002\u0002\u06a4\u06a5", + "\u0007E\u0002\u0002\u06a5\u06a6\u0007Q\u0002\u0002\u06a6\u06a7\u0007", + "N\u0002\u0002\u06a7\u06a8\u0007N\u0002\u0002\u06a8\u06a9\u0007G\u0002", + "\u0002\u06a9\u06aa\u0007E\u0002\u0002\u06aa\u06ab\u0007V\u0002\u0002", + "\u06ab\u06ac\u0007K\u0002\u0002\u06ac\u06ad\u0007Q\u0002\u0002\u06ad", + "\u06ae\u0007P\u0002\u0002\u06ae\u013a\u0003\u0002\u0002\u0002\u06af", + "\u06b0\u0007K\u0002\u0002\u06b0\u06b1\u0007V\u0002\u0002\u06b1\u06b2", + "\u0007G\u0002\u0002\u06b2\u06b3\u0007O\u0002\u0002\u06b3\u06b4\u0007", + "U\u0002\u0002\u06b4\u013c\u0003\u0002\u0002\u0002\u06b5\u06b6\u0007", + "M\u0002\u0002\u06b6\u06b7\u0007G\u0002\u0002\u06b7\u06b8\u0007[\u0002", + "\u0002\u06b8\u06b9\u0007U\u0002\u0002\u06b9\u013e\u0003\u0002\u0002", + "\u0002\u06ba\u06bb\u0007G\u0002\u0002\u06bb\u06bc\u0007U\u0002\u0002", + "\u06bc\u06bd\u0007E\u0002\u0002\u06bd\u06be\u0007C\u0002\u0002\u06be", + "\u06bf\u0007R\u0002\u0002\u06bf\u06c0\u0007G\u0002\u0002\u06c0\u06c1", + "\u0007F\u0002\u0002\u06c1\u0140\u0003\u0002\u0002\u0002\u06c2\u06c3", + "\u0007N\u0002\u0002\u06c3\u06c4\u0007K\u0002\u0002\u06c4\u06c5\u0007", + "P\u0002\u0002\u06c5\u06c6\u0007G\u0002\u0002\u06c6\u06c7\u0007U\u0002", + "\u0002\u06c7\u0142\u0003\u0002\u0002\u0002\u06c8\u06c9\u0007U\u0002", + "\u0002\u06c9\u06ca\u0007G\u0002\u0002\u06ca\u06cb\u0007R\u0002\u0002", + "\u06cb\u06cc\u0007C\u0002\u0002\u06cc\u06cd\u0007T\u0002\u0002\u06cd", + "\u06ce\u0007C\u0002\u0002\u06ce\u06cf\u0007V\u0002\u0002\u06cf\u06d0", + "\u0007G\u0002\u0002\u06d0\u06d1\u0007F\u0002\u0002\u06d1\u0144\u0003", + "\u0002\u0002\u0002\u06d2\u06d3\u0007H\u0002\u0002\u06d3\u06d4\u0007", + "W\u0002\u0002\u06d4\u06d5\u0007P\u0002\u0002\u06d5\u06d6\u0007E\u0002", + "\u0002\u06d6\u06d7\u0007V\u0002\u0002\u06d7\u06d8\u0007K\u0002\u0002", + "\u06d8\u06d9\u0007Q\u0002\u0002\u06d9\u06da\u0007P\u0002\u0002\u06da", + "\u0146\u0003\u0002\u0002\u0002\u06db\u06dc\u0007G\u0002\u0002\u06dc", + "\u06dd\u0007Z\u0002\u0002\u06dd\u06de\u0007V\u0002\u0002\u06de\u06df", + "\u0007G\u0002\u0002\u06df\u06e0\u0007P\u0002\u0002\u06e0\u06e1\u0007", + "F\u0002\u0002\u06e1\u06e2\u0007G\u0002\u0002\u06e2\u06e3\u0007F\u0002", + "\u0002\u06e3\u0148\u0003\u0002\u0002\u0002\u06e4\u06e5\u0007T\u0002", + "\u0002\u06e5\u06e6\u0007G\u0002\u0002\u06e6\u06e7\u0007H\u0002\u0002", + "\u06e7\u06e8\u0007T\u0002\u0002\u06e8\u06e9\u0007G\u0002\u0002\u06e9", + "\u06ea\u0007U\u0002\u0002\u06ea\u06eb\u0007J\u0002\u0002\u06eb\u014a", + "\u0003\u0002\u0002\u0002\u06ec\u06ed\u0007E\u0002\u0002\u06ed\u06ee", + "\u0007N\u0002\u0002\u06ee\u06ef\u0007G\u0002\u0002\u06ef\u06f0\u0007", + "C\u0002\u0002\u06f0\u06f1\u0007T\u0002\u0002\u06f1\u014c\u0003\u0002", + "\u0002\u0002\u06f2\u06f3\u0007E\u0002\u0002\u06f3\u06f4\u0007C\u0002", + "\u0002\u06f4\u06f5\u0007E\u0002\u0002\u06f5\u06f6\u0007J\u0002\u0002", + "\u06f6\u06f7\u0007G\u0002\u0002\u06f7\u014e\u0003\u0002\u0002\u0002", + "\u06f8\u06f9\u0007W\u0002\u0002\u06f9\u06fa\u0007P\u0002\u0002\u06fa", + "\u06fb\u0007E\u0002\u0002\u06fb\u06fc\u0007C\u0002\u0002\u06fc\u06fd", + "\u0007E\u0002\u0002\u06fd\u06fe\u0007J\u0002\u0002\u06fe\u06ff\u0007", + "G\u0002\u0002\u06ff\u0150\u0003\u0002\u0002\u0002\u0700\u0701\u0007", + "N\u0002\u0002\u0701\u0702\u0007C\u0002\u0002\u0702\u0703\u0007\\\u0002", + "\u0002\u0703\u0704\u0007[\u0002\u0002\u0704\u0152\u0003\u0002\u0002", + "\u0002\u0705\u0706\u0007H\u0002\u0002\u0706\u0707\u0007Q\u0002\u0002", + "\u0707\u0708\u0007T\u0002\u0002\u0708\u0709\u0007O\u0002\u0002\u0709", + "\u070a\u0007C\u0002\u0002\u070a\u070b\u0007V\u0002\u0002\u070b\u070c", + "\u0007V\u0002\u0002\u070c\u070d\u0007G\u0002\u0002\u070d\u070e\u0007", + "F\u0002\u0002\u070e\u0154\u0003\u0002\u0002\u0002\u070f\u0710\u0007", + "I\u0002\u0002\u0710\u0711\u0007N\u0002\u0002\u0711\u0712\u0007Q\u0002", + "\u0002\u0712\u0713\u0007D\u0002\u0002\u0713\u0714\u0007C\u0002\u0002", + "\u0714\u0715\u0007N\u0002\u0002\u0715\u0156\u0003\u0002\u0002\u0002", + "\u0716\u0717\u0007V\u0002\u0002\u0717\u0718\u0007G\u0002\u0002\u0718", + "\u0719\u0007O\u0002\u0002\u0719\u071a\u0007R\u0002\u0002\u071a\u071b", + "\u0007Q\u0002\u0002\u071b\u071c\u0007T\u0002\u0002\u071c\u071d\u0007", + "C\u0002\u0002\u071d\u071e\u0007T\u0002\u0002\u071e\u071f\u0007[\u0002", + "\u0002\u071f\u0158\u0003\u0002\u0002\u0002\u0720\u0721\u0007Q\u0002", + "\u0002\u0721\u0722\u0007R\u0002\u0002\u0722\u0723\u0007V\u0002\u0002", + "\u0723\u0724\u0007K\u0002\u0002\u0724\u0725\u0007Q\u0002\u0002\u0725", + "\u0726\u0007P\u0002\u0002\u0726\u0727\u0007U\u0002\u0002\u0727\u015a", + "\u0003\u0002\u0002\u0002\u0728\u0729\u0007W\u0002\u0002\u0729\u072a", + "\u0007P\u0002\u0002\u072a\u072b\u0007U\u0002\u0002\u072b\u072c\u0007", + "G\u0002\u0002\u072c\u072d\u0007V\u0002\u0002\u072d\u015c\u0003\u0002", + "\u0002\u0002\u072e\u072f\u0007V\u0002\u0002\u072f\u0730\u0007D\u0002", + "\u0002\u0730\u0731\u0007N\u0002\u0002\u0731\u0732\u0007R\u0002\u0002", + "\u0732\u0733\u0007T\u0002\u0002\u0733\u0734\u0007Q\u0002\u0002\u0734", + "\u0735\u0007R\u0002\u0002\u0735\u0736\u0007G\u0002\u0002\u0736\u0737", + "\u0007T\u0002\u0002\u0737\u0738\u0007V\u0002\u0002\u0738\u0739\u0007", + "K\u0002\u0002\u0739\u073a\u0007G\u0002\u0002\u073a\u073b\u0007U\u0002", + "\u0002\u073b\u015e\u0003\u0002\u0002\u0002\u073c\u073d\u0007F\u0002", + "\u0002\u073d\u073e\u0007D\u0002\u0002\u073e\u073f\u0007R\u0002\u0002", + "\u073f\u0740\u0007T\u0002\u0002\u0740\u0741\u0007Q\u0002\u0002\u0741", + "\u0742\u0007R\u0002\u0002\u0742\u0743\u0007G\u0002\u0002\u0743\u0744", + "\u0007T\u0002\u0002\u0744\u0745\u0007V\u0002\u0002\u0745\u0746\u0007", + "K\u0002\u0002\u0746\u0747\u0007G\u0002\u0002\u0747\u0748\u0007U\u0002", + "\u0002\u0748\u0160\u0003\u0002\u0002\u0002\u0749\u074a\u0007D\u0002", + "\u0002\u074a\u074b\u0007W\u0002\u0002\u074b\u074c\u0007E\u0002\u0002", + "\u074c\u074d\u0007M\u0002\u0002\u074d\u074e\u0007G\u0002\u0002\u074e", + "\u074f\u0007V\u0002\u0002\u074f\u0750\u0007U\u0002\u0002\u0750\u0162", + "\u0003\u0002\u0002\u0002\u0751\u0752\u0007U\u0002\u0002\u0752\u0753", + "\u0007M\u0002\u0002\u0753\u0754\u0007G\u0002\u0002\u0754\u0755\u0007", + "Y\u0002\u0002\u0755\u0756\u0007G\u0002\u0002\u0756\u0757\u0007F\u0002", + "\u0002\u0757\u0164\u0003\u0002\u0002\u0002\u0758\u0759\u0007U\u0002", + "\u0002\u0759\u075a\u0007V\u0002\u0002\u075a\u075b\u0007Q\u0002\u0002", + "\u075b\u075c\u0007T\u0002\u0002\u075c\u075d\u0007G\u0002\u0002\u075d", + "\u075e\u0007F\u0002\u0002\u075e\u0166\u0003\u0002\u0002\u0002\u075f", + "\u0760\u0007F\u0002\u0002\u0760\u0761\u0007K\u0002\u0002\u0761\u0762", + "\u0007T\u0002\u0002\u0762\u0763\u0007G\u0002\u0002\u0763\u0764\u0007", + "E\u0002\u0002\u0764\u0765\u0007V\u0002\u0002\u0765\u0766\u0007Q\u0002", + "\u0002\u0766\u0767\u0007T\u0002\u0002\u0767\u0768\u0007K\u0002\u0002", + "\u0768\u0769\u0007G\u0002\u0002\u0769\u076a\u0007U\u0002\u0002\u076a", + "\u0168\u0003\u0002\u0002\u0002\u076b\u076c\u0007N\u0002\u0002\u076c", + "\u076d\u0007Q\u0002\u0002\u076d\u076e\u0007E\u0002\u0002\u076e\u076f", + "\u0007C\u0002\u0002\u076f\u0770\u0007V\u0002\u0002\u0770\u0771\u0007", + "K\u0002\u0002\u0771\u0772\u0007Q\u0002\u0002\u0772\u0773\u0007P\u0002", + "\u0002\u0773\u016a\u0003\u0002\u0002\u0002\u0774\u0775\u0007G\u0002", + "\u0002\u0775\u0776\u0007Z\u0002\u0002\u0776\u0777\u0007E\u0002\u0002", + "\u0777\u0778\u0007J\u0002\u0002\u0778\u0779\u0007C\u0002\u0002\u0779", + "\u077a\u0007P\u0002\u0002\u077a\u077b\u0007I\u0002\u0002\u077b\u077c", + "\u0007G\u0002\u0002\u077c\u016c\u0003\u0002\u0002\u0002\u077d\u077e", + "\u0007C\u0002\u0002\u077e\u077f\u0007T\u0002\u0002\u077f\u0780\u0007", + "E\u0002\u0002\u0780\u0781\u0007J\u0002\u0002\u0781\u0782\u0007K\u0002", + "\u0002\u0782\u0783\u0007X\u0002\u0002\u0783\u0784\u0007G\u0002\u0002", + "\u0784\u016e\u0003\u0002\u0002\u0002\u0785\u0786\u0007W\u0002\u0002", + "\u0786\u0787\u0007P\u0002\u0002\u0787\u0788\u0007C\u0002\u0002\u0788", + "\u0789\u0007T\u0002\u0002\u0789\u078a\u0007E\u0002\u0002\u078a\u078b", + "\u0007J\u0002\u0002\u078b\u078c\u0007K\u0002\u0002\u078c\u078d\u0007", + "X\u0002\u0002\u078d\u078e\u0007G\u0002\u0002\u078e\u0170\u0003\u0002", + "\u0002\u0002\u078f\u0790\u0007H\u0002\u0002\u0790\u0791\u0007K\u0002", + "\u0002\u0791\u0792\u0007N\u0002\u0002\u0792\u0793\u0007G\u0002\u0002", + "\u0793\u0794\u0007H\u0002\u0002\u0794\u0795\u0007Q\u0002\u0002\u0795", + "\u0796\u0007T\u0002\u0002\u0796\u0797\u0007O\u0002\u0002\u0797\u0798", + "\u0007C\u0002\u0002\u0798\u0799\u0007V\u0002\u0002\u0799\u0172\u0003", + "\u0002\u0002\u0002\u079a\u079b\u0007V\u0002\u0002\u079b\u079c\u0007", + "Q\u0002\u0002\u079c\u079d\u0007W\u0002\u0002\u079d\u079e\u0007E\u0002", + "\u0002\u079e\u079f\u0007J\u0002\u0002\u079f\u0174\u0003\u0002\u0002", + "\u0002\u07a0\u07a1\u0007E\u0002\u0002\u07a1\u07a2\u0007Q\u0002\u0002", + "\u07a2\u07a3\u0007O\u0002\u0002\u07a3\u07a4\u0007R\u0002\u0002\u07a4", + "\u07a5\u0007C\u0002\u0002\u07a5\u07a6\u0007E\u0002\u0002\u07a6\u07a7", + "\u0007V\u0002\u0002\u07a7\u0176\u0003\u0002\u0002\u0002\u07a8\u07a9", + "\u0007E\u0002\u0002\u07a9\u07aa\u0007Q\u0002\u0002\u07aa\u07ab\u0007", + "P\u0002\u0002\u07ab\u07ac\u0007E\u0002\u0002\u07ac\u07ad\u0007C\u0002", + "\u0002\u07ad\u07ae\u0007V\u0002\u0002\u07ae\u07af\u0007G\u0002\u0002", + "\u07af\u07b0\u0007P\u0002\u0002\u07b0\u07b1\u0007C\u0002\u0002\u07b1", + "\u07b2\u0007V\u0002\u0002\u07b2\u07b3\u0007G\u0002\u0002\u07b3\u0178", + "\u0003\u0002\u0002\u0002\u07b4\u07b5\u0007E\u0002\u0002\u07b5\u07b6", + "\u0007J\u0002\u0002\u07b6\u07b7\u0007C\u0002\u0002\u07b7\u07b8\u0007", + "P\u0002\u0002\u07b8\u07b9\u0007I\u0002\u0002\u07b9\u07ba\u0007G\u0002", + "\u0002\u07ba\u017a\u0003\u0002\u0002\u0002\u07bb\u07bc\u0007E\u0002", + "\u0002\u07bc\u07bd\u0007C\u0002\u0002\u07bd\u07be\u0007U\u0002\u0002", + "\u07be\u07bf\u0007E\u0002\u0002\u07bf\u07c0\u0007C\u0002\u0002\u07c0", + "\u07c1\u0007F\u0002\u0002\u07c1\u07c2\u0007G\u0002\u0002\u07c2\u017c", + "\u0003\u0002\u0002\u0002\u07c3\u07c4\u0007E\u0002\u0002\u07c4\u07c5", + "\u0007Q\u0002\u0002\u07c5\u07c6\u0007P\u0002\u0002\u07c6\u07c7\u0007", + "U\u0002\u0002\u07c7\u07c8\u0007V\u0002\u0002\u07c8\u07c9\u0007T\u0002", + "\u0002\u07c9\u07ca\u0007C\u0002\u0002\u07ca\u07cb\u0007K\u0002\u0002", + "\u07cb\u07cc\u0007P\u0002\u0002\u07cc\u07cd\u0007V\u0002\u0002\u07cd", + "\u017e\u0003\u0002\u0002\u0002\u07ce\u07cf\u0007T\u0002\u0002\u07cf", + "\u07d0\u0007G\u0002\u0002\u07d0\u07d1\u0007U\u0002\u0002\u07d1\u07d2", + "\u0007V\u0002\u0002\u07d2\u07d3\u0007T\u0002\u0002\u07d3\u07d4\u0007", + "K\u0002\u0002\u07d4\u07d5\u0007E\u0002\u0002\u07d5\u07d6\u0007V\u0002", + "\u0002\u07d6\u0180\u0003\u0002\u0002\u0002\u07d7\u07d8\u0007E\u0002", + "\u0002\u07d8\u07d9\u0007N\u0002\u0002\u07d9\u07da\u0007W\u0002\u0002", + "\u07da\u07db\u0007U\u0002\u0002\u07db\u07dc\u0007V\u0002\u0002\u07dc", + "\u07dd\u0007G\u0002\u0002\u07dd\u07de\u0007T\u0002\u0002\u07de\u07df", + "\u0007G\u0002\u0002\u07df\u07e0\u0007F\u0002\u0002\u07e0\u0182\u0003", + "\u0002\u0002\u0002\u07e1\u07e2\u0007U\u0002\u0002\u07e2\u07e3\u0007", + "Q\u0002\u0002\u07e3\u07e4\u0007T\u0002\u0002\u07e4\u07e5\u0007V\u0002", + "\u0002\u07e5\u07e6\u0007G\u0002\u0002\u07e6\u07e7\u0007F\u0002\u0002", + "\u07e7\u0184\u0003\u0002\u0002\u0002\u07e8\u07e9\u0007R\u0002\u0002", + "\u07e9\u07ea\u0007W\u0002\u0002\u07ea\u07eb\u0007T\u0002\u0002\u07eb", + "\u07ec\u0007I\u0002\u0002\u07ec\u07ed\u0007G\u0002\u0002\u07ed\u0186", + "\u0003\u0002\u0002\u0002\u07ee\u07ef\u0007K\u0002\u0002\u07ef\u07f0", + "\u0007P\u0002\u0002\u07f0\u07f1\u0007R\u0002\u0002\u07f1\u07f2\u0007", + "W\u0002\u0002\u07f2\u07f3\u0007V\u0002\u0002\u07f3\u07f4\u0007H\u0002", + "\u0002\u07f4\u07f5\u0007Q\u0002\u0002\u07f5\u07f6\u0007T\u0002\u0002", + "\u07f6\u07f7\u0007O\u0002\u0002\u07f7\u07f8\u0007C\u0002\u0002\u07f8", + "\u07f9\u0007V\u0002\u0002\u07f9\u0188\u0003\u0002\u0002\u0002\u07fa", + "\u07fb\u0007Q\u0002\u0002\u07fb\u07fc\u0007W\u0002\u0002\u07fc\u07fd", + "\u0007V\u0002\u0002\u07fd\u07fe\u0007R\u0002\u0002\u07fe\u07ff\u0007", + "W\u0002\u0002\u07ff\u0800\u0007V\u0002\u0002\u0800\u0801\u0007H\u0002", + "\u0002\u0801\u0802\u0007Q\u0002\u0002\u0802\u0803\u0007T\u0002\u0002", + "\u0803\u0804\u0007O\u0002\u0002\u0804\u0805\u0007C\u0002\u0002\u0805", + "\u0806\u0007V\u0002\u0002\u0806\u018a\u0003\u0002\u0002\u0002\u0807", + "\u0808\u0007F\u0002\u0002\u0808\u0809\u0007C\u0002\u0002\u0809\u080a", + "\u0007V\u0002\u0002\u080a\u080b\u0007C\u0002\u0002\u080b\u080c\u0007", + "D\u0002\u0002\u080c\u080d\u0007C\u0002\u0002\u080d\u080e\u0007U\u0002", + "\u0002\u080e\u080f\u0007G\u0002\u0002\u080f\u018c\u0003\u0002\u0002", + "\u0002\u0810\u0811\u0007F\u0002\u0002\u0811\u0812\u0007C\u0002\u0002", + "\u0812\u0813\u0007V\u0002\u0002\u0813\u0814\u0007C\u0002\u0002\u0814", + "\u0815\u0007D\u0002\u0002\u0815\u0816\u0007C\u0002\u0002\u0816\u0817", + "\u0007U\u0002\u0002\u0817\u0818\u0007G\u0002\u0002\u0818\u0819\u0007", + "U\u0002\u0002\u0819\u018e\u0003\u0002\u0002\u0002\u081a\u081b\u0007", + "F\u0002\u0002\u081b\u081c\u0007H\u0002\u0002\u081c\u081d\u0007U\u0002", + "\u0002\u081d\u0190\u0003\u0002\u0002\u0002\u081e\u081f\u0007V\u0002", + "\u0002\u081f\u0820\u0007T\u0002\u0002\u0820\u0821\u0007W\u0002\u0002", + "\u0821\u0822\u0007P\u0002\u0002\u0822\u0823\u0007E\u0002\u0002\u0823", + "\u0824\u0007C\u0002\u0002\u0824\u0825\u0007V\u0002\u0002\u0825\u0826", + "\u0007G\u0002\u0002\u0826\u0192\u0003\u0002\u0002\u0002\u0827\u0828", + "\u0007C\u0002\u0002\u0828\u0829\u0007P\u0002\u0002\u0829\u082a\u0007", + "C\u0002\u0002\u082a\u082b\u0007N\u0002\u0002\u082b\u082c\u0007[\u0002", + "\u0002\u082c\u082d\u0007\\\u0002\u0002\u082d\u082e\u0007G\u0002\u0002", + "\u082e\u0194\u0003\u0002\u0002\u0002\u082f\u0830\u0007E\u0002\u0002", + "\u0830\u0831\u0007Q\u0002\u0002\u0831\u0832\u0007O\u0002\u0002\u0832", + "\u0833\u0007R\u0002\u0002\u0833\u0834\u0007W\u0002\u0002\u0834\u0835", + "\u0007V\u0002\u0002\u0835\u0836\u0007G\u0002\u0002\u0836\u0196\u0003", + "\u0002\u0002\u0002\u0837\u0838\u0007N\u0002\u0002\u0838\u0839\u0007", + "K\u0002\u0002\u0839\u083a\u0007U\u0002\u0002\u083a\u083b\u0007V\u0002", + "\u0002\u083b\u0198\u0003\u0002\u0002\u0002\u083c\u083d\u0007U\u0002", + "\u0002\u083d\u083e\u0007V\u0002\u0002\u083e\u083f\u0007C\u0002\u0002", + "\u083f\u0840\u0007V\u0002\u0002\u0840\u0841\u0007K\u0002\u0002\u0841", + "\u0842\u0007U\u0002\u0002\u0842\u0843\u0007V\u0002\u0002\u0843\u0844", + "\u0007K\u0002\u0002\u0844\u0845\u0007E\u0002\u0002\u0845\u0846\u0007", + "U\u0002\u0002\u0846\u019a\u0003\u0002\u0002\u0002\u0847\u0848\u0007", + "R\u0002\u0002\u0848\u0849\u0007C\u0002\u0002\u0849\u084a\u0007T\u0002", + "\u0002\u084a\u084b\u0007V\u0002\u0002\u084b\u084c\u0007K\u0002\u0002", + "\u084c\u084d\u0007V\u0002\u0002\u084d\u084e\u0007K\u0002\u0002\u084e", + "\u084f\u0007Q\u0002\u0002\u084f\u0850\u0007P\u0002\u0002\u0850\u0851", + "\u0007G\u0002\u0002\u0851\u0852\u0007F\u0002\u0002\u0852\u019c\u0003", + "\u0002\u0002\u0002\u0853\u0854\u0007G\u0002\u0002\u0854\u0855\u0007", + "Z\u0002\u0002\u0855\u0856\u0007V\u0002\u0002\u0856\u0857\u0007G\u0002", + "\u0002\u0857\u0858\u0007T\u0002\u0002\u0858\u0859\u0007P\u0002\u0002", + "\u0859\u085a\u0007C\u0002\u0002\u085a\u085b\u0007N\u0002\u0002\u085b", + "\u019e\u0003\u0002\u0002\u0002\u085c\u085d\u0007F\u0002\u0002\u085d", + "\u085e\u0007G\u0002\u0002\u085e\u085f\u0007H\u0002\u0002\u085f\u0860", + "\u0007K\u0002\u0002\u0860\u0861\u0007P\u0002\u0002\u0861\u0862\u0007", + "G\u0002\u0002\u0862\u0863\u0007F\u0002\u0002\u0863\u01a0\u0003\u0002", + "\u0002\u0002\u0864\u0865\u0007T\u0002\u0002\u0865\u0866\u0007G\u0002", + "\u0002\u0866\u0867\u0007X\u0002\u0002\u0867\u0868\u0007Q\u0002\u0002", + "\u0868\u0869\u0007M\u0002\u0002\u0869\u086a\u0007G\u0002\u0002\u086a", + "\u01a2\u0003\u0002\u0002\u0002\u086b\u086c\u0007I\u0002\u0002\u086c", + "\u086d\u0007T\u0002\u0002\u086d\u086e\u0007C\u0002\u0002\u086e\u086f", + "\u0007P\u0002\u0002\u086f\u0870\u0007V\u0002\u0002\u0870\u01a4\u0003", + "\u0002\u0002\u0002\u0871\u0872\u0007N\u0002\u0002\u0872\u0873\u0007", + "Q\u0002\u0002\u0873\u0874\u0007E\u0002\u0002\u0874\u0875\u0007M\u0002", + "\u0002\u0875\u01a6\u0003\u0002\u0002\u0002\u0876\u0877\u0007W\u0002", + "\u0002\u0877\u0878\u0007P\u0002\u0002\u0878\u0879\u0007N\u0002\u0002", + "\u0879\u087a\u0007Q\u0002\u0002\u087a\u087b\u0007E\u0002\u0002\u087b", + "\u087c\u0007M\u0002\u0002\u087c\u01a8\u0003\u0002\u0002\u0002\u087d", + "\u087e\u0007O\u0002\u0002\u087e\u087f\u0007U\u0002\u0002\u087f\u0880", + "\u0007E\u0002\u0002\u0880\u0881\u0007M\u0002\u0002\u0881\u01aa\u0003", + "\u0002\u0002\u0002\u0882\u0883\u0007T\u0002\u0002\u0883\u0884\u0007", + "G\u0002\u0002\u0884\u0885\u0007R\u0002\u0002\u0885\u0886\u0007C\u0002", + "\u0002\u0886\u0887\u0007K\u0002\u0002\u0887\u0888\u0007T\u0002\u0002", + "\u0888\u01ac\u0003\u0002\u0002\u0002\u0889\u088a\u0007T\u0002\u0002", + "\u088a\u088b\u0007G\u0002\u0002\u088b\u088c\u0007E\u0002\u0002\u088c", + "\u088d\u0007Q\u0002\u0002\u088d\u088e\u0007X\u0002\u0002\u088e\u088f", + "\u0007G\u0002\u0002\u088f\u0890\u0007T\u0002\u0002\u0890\u01ae\u0003", + "\u0002\u0002\u0002\u0891\u0892\u0007G\u0002\u0002\u0892\u0893\u0007", + "Z\u0002\u0002\u0893\u0894\u0007R\u0002\u0002\u0894\u0895\u0007Q\u0002", + "\u0002\u0895\u0896\u0007T\u0002\u0002\u0896\u0897\u0007V\u0002\u0002", + "\u0897\u01b0\u0003\u0002\u0002\u0002\u0898\u0899\u0007K\u0002\u0002", + "\u0899\u089a\u0007O\u0002\u0002\u089a\u089b\u0007R\u0002\u0002\u089b", + "\u089c\u0007Q\u0002\u0002\u089c\u089d\u0007T\u0002\u0002\u089d\u089e", + "\u0007V\u0002\u0002\u089e\u01b2\u0003\u0002\u0002\u0002\u089f\u08a0", + "\u0007N\u0002\u0002\u08a0\u08a1\u0007Q\u0002\u0002\u08a1\u08a2\u0007", + "C\u0002\u0002\u08a2\u08a3\u0007F\u0002\u0002\u08a3\u01b4\u0003\u0002", + "\u0002\u0002\u08a4\u08a5\u0007T\u0002\u0002\u08a5\u08a6\u0007Q\u0002", + "\u0002\u08a6\u08a7\u0007N\u0002\u0002\u08a7\u08a8\u0007G\u0002\u0002", + "\u08a8\u01b6\u0003\u0002\u0002\u0002\u08a9\u08aa\u0007T\u0002\u0002", + "\u08aa\u08ab\u0007Q\u0002\u0002\u08ab\u08ac\u0007N\u0002\u0002\u08ac", + "\u08ad\u0007G\u0002\u0002\u08ad\u08ae\u0007U\u0002\u0002\u08ae\u01b8", + "\u0003\u0002\u0002\u0002\u08af\u08b0\u0007E\u0002\u0002\u08b0\u08b1", + "\u0007Q\u0002\u0002\u08b1\u08b2\u0007O\u0002\u0002\u08b2\u08b3\u0007", + "R\u0002\u0002\u08b3\u08b4\u0007C\u0002\u0002\u08b4\u08b5\u0007E\u0002", + "\u0002\u08b5\u08b6\u0007V\u0002\u0002\u08b6\u08b7\u0007K\u0002\u0002", + "\u08b7\u08b8\u0007Q\u0002\u0002\u08b8\u08b9\u0007P\u0002\u0002\u08b9", + "\u08ba\u0007U\u0002\u0002\u08ba\u01ba\u0003\u0002\u0002\u0002\u08bb", + "\u08bc\u0007R\u0002\u0002\u08bc\u08bd\u0007T\u0002\u0002\u08bd\u08be", + "\u0007K\u0002\u0002\u08be\u08bf\u0007P\u0002\u0002\u08bf\u08c0\u0007", + "E\u0002\u0002\u08c0\u08c1\u0007K\u0002\u0002\u08c1\u08c2\u0007R\u0002", + "\u0002\u08c2\u08c3\u0007C\u0002\u0002\u08c3\u08c4\u0007N\u0002\u0002", + "\u08c4\u08c5\u0007U\u0002\u0002\u08c5\u01bc\u0003\u0002\u0002\u0002", + "\u08c6\u08c7\u0007V\u0002\u0002\u08c7\u08c8\u0007T\u0002\u0002\u08c8", + "\u08c9\u0007C\u0002\u0002\u08c9\u08ca\u0007P\u0002\u0002\u08ca\u08cb", + "\u0007U\u0002\u0002\u08cb\u08cc\u0007C\u0002\u0002\u08cc\u08cd\u0007", + "E\u0002\u0002\u08cd\u08ce\u0007V\u0002\u0002\u08ce\u08cf\u0007K\u0002", + "\u0002\u08cf\u08d0\u0007Q\u0002\u0002\u08d0\u08d1\u0007P\u0002\u0002", + "\u08d1\u08d2\u0007U\u0002\u0002\u08d2\u01be\u0003\u0002\u0002\u0002", + "\u08d3\u08d4\u0007K\u0002\u0002\u08d4\u08d5\u0007P\u0002\u0002\u08d5", + "\u08d6\u0007F\u0002\u0002\u08d6\u08d7\u0007G\u0002\u0002\u08d7\u08d8", + "\u0007Z\u0002\u0002\u08d8\u01c0\u0003\u0002\u0002\u0002\u08d9\u08da", + "\u0007K\u0002\u0002\u08da\u08db\u0007P\u0002\u0002\u08db\u08dc\u0007", + "F\u0002\u0002\u08dc\u08dd\u0007G\u0002\u0002\u08dd\u08de\u0007Z\u0002", + "\u0002\u08de\u08df\u0007G\u0002\u0002\u08df\u08e0\u0007U\u0002\u0002", + "\u08e0\u01c2\u0003\u0002\u0002\u0002\u08e1\u08e2\u0007N\u0002\u0002", + "\u08e2\u08e3\u0007Q\u0002\u0002\u08e3\u08e4\u0007E\u0002\u0002\u08e4", + "\u08e5\u0007M\u0002\u0002\u08e5\u08e6\u0007U\u0002\u0002\u08e6\u01c4", + "\u0003\u0002\u0002\u0002\u08e7\u08e8\u0007Q\u0002\u0002\u08e8\u08e9", + "\u0007R\u0002\u0002\u08e9\u08ea\u0007V\u0002\u0002\u08ea\u08eb\u0007", + "K\u0002\u0002\u08eb\u08ec\u0007Q\u0002\u0002\u08ec\u08ed\u0007P\u0002", + "\u0002\u08ed\u01c6\u0003\u0002\u0002\u0002\u08ee\u08ef\u0007C\u0002", + "\u0002\u08ef\u08f0\u0007P\u0002\u0002\u08f0\u08f1\u0007V\u0002\u0002", + "\u08f1\u08f2\u0007K\u0002\u0002\u08f2\u01c8\u0003\u0002\u0002\u0002", + "\u08f3\u08f4\u0007N\u0002\u0002\u08f4\u08f5\u0007Q\u0002\u0002\u08f5", + "\u08f6\u0007E\u0002\u0002\u08f6\u08f7\u0007C\u0002\u0002\u08f7\u08f8", + "\u0007N\u0002\u0002\u08f8\u01ca\u0003\u0002\u0002\u0002\u08f9\u08fa", + "\u0007K\u0002\u0002\u08fa\u08fb\u0007P\u0002\u0002\u08fb\u08fc\u0007", + "R\u0002\u0002\u08fc\u08fd\u0007C\u0002\u0002\u08fd\u08fe\u0007V\u0002", + "\u0002\u08fe\u08ff\u0007J\u0002\u0002\u08ff\u01cc\u0003\u0002\u0002", + "\u0002\u0900\u0901\u0007Y\u0002\u0002\u0901\u0902\u0007C\u0002\u0002", + "\u0902\u0903\u0007V\u0002\u0002\u0903\u0904\u0007G\u0002\u0002\u0904", + "\u0905\u0007T\u0002\u0002\u0905\u0906\u0007O\u0002\u0002\u0906\u0907", + "\u0007C\u0002\u0002\u0907\u0908\u0007T\u0002\u0002\u0908\u0909\u0007", + "M\u0002\u0002\u0909\u01ce\u0003\u0002\u0002\u0002\u090a\u090b\u0007", + "W\u0002\u0002\u090b\u090c\u0007P\u0002\u0002\u090c\u090d\u0007P\u0002", + "\u0002\u090d\u090e\u0007G\u0002\u0002\u090e\u090f\u0007U\u0002\u0002", + "\u090f\u0910\u0007V\u0002\u0002\u0910\u01d0\u0003\u0002\u0002\u0002", + "\u0911\u0912\u0007O\u0002\u0002\u0912\u0913\u0007C\u0002\u0002\u0913", + "\u0914\u0007V\u0002\u0002\u0914\u0915\u0007E\u0002\u0002\u0915\u0916", + "\u0007J\u0002\u0002\u0916\u0917\u0007a\u0002\u0002\u0917\u0918\u0007", + "T\u0002\u0002\u0918\u0919\u0007G\u0002\u0002\u0919\u091a\u0007E\u0002", + "\u0002\u091a\u091b\u0007Q\u0002\u0002\u091b\u091c\u0007I\u0002\u0002", + "\u091c\u091d\u0007P\u0002\u0002\u091d\u091e\u0007K\u0002\u0002\u091e", + "\u091f\u0007\\\u0002\u0002\u091f\u0920\u0007G\u0002\u0002\u0920\u01d2", + "\u0003\u0002\u0002\u0002\u0921\u0922\u0007O\u0002\u0002\u0922\u0923", + "\u0007G\u0002\u0002\u0923\u0924\u0007C\u0002\u0002\u0924\u0925\u0007", + "U\u0002\u0002\u0925\u0926\u0007W\u0002\u0002\u0926\u0927\u0007T\u0002", + "\u0002\u0927\u0928\u0007G\u0002\u0002\u0928\u0929\u0007U\u0002\u0002", + "\u0929\u01d4\u0003\u0002\u0002\u0002\u092a\u092b\u0007Q\u0002\u0002", + "\u092b\u092c\u0007P\u0002\u0002\u092c\u092d\u0007G\u0002\u0002\u092d", + "\u01d6\u0003\u0002\u0002\u0002\u092e\u092f\u0007R\u0002\u0002\u092f", + "\u0930\u0007G\u0002\u0002\u0930\u0931\u0007T\u0002\u0002\u0931\u01d8", + "\u0003\u0002\u0002\u0002\u0932\u0933\u0007O\u0002\u0002\u0933\u0934", + "\u0007C\u0002\u0002\u0934\u0935\u0007V\u0002\u0002\u0935\u0936\u0007", + "E\u0002\u0002\u0936\u0937\u0007J\u0002\u0002\u0937\u01da\u0003\u0002", + "\u0002\u0002\u0938\u0939\u0007U\u0002\u0002\u0939\u093a\u0007M\u0002", + "\u0002\u093a\u093b\u0007K\u0002\u0002\u093b\u093c\u0007R\u0002\u0002", + "\u093c\u093d\u00073\u0002\u0002\u093d\u01dc\u0003\u0002\u0002\u0002", + "\u093e\u093f\u0007P\u0002\u0002\u093f\u0940\u0007G\u0002\u0002\u0940", + "\u0941\u0007Z\u0002\u0002\u0941\u0942\u0007V\u0002\u0002\u0942\u01de", + "\u0003\u0002\u0002\u0002\u0943\u0944\u0007R\u0002\u0002\u0944\u0945", + "\u0007C\u0002\u0002\u0945\u0946\u0007U\u0002\u0002\u0946\u0947\u0007", + "V\u0002\u0002\u0947\u01e0\u0003\u0002\u0002\u0002\u0948\u0949\u0007", + "R\u0002\u0002\u0949\u094a\u0007C\u0002\u0002\u094a\u094b\u0007V\u0002", + "\u0002\u094b\u094c\u0007V\u0002\u0002\u094c\u094d\u0007G\u0002\u0002", + "\u094d\u094e\u0007T\u0002\u0002\u094e\u094f\u0007P\u0002\u0002\u094f", + "\u01e2\u0003\u0002\u0002\u0002\u0950\u0951\u0007Y\u0002\u0002\u0951", + "\u0952\u0007K\u0002\u0002\u0952\u0953\u0007V\u0002\u0002\u0953\u0954", + "\u0007J\u0002\u0002\u0954\u0955\u0007K\u0002\u0002\u0955\u0956\u0007", + "P\u0002\u0002\u0956\u01e4\u0003\u0002\u0002\u0002\u0957\u0958\u0007", + "F\u0002\u0002\u0958\u0959\u0007G\u0002\u0002\u0959\u095a\u0007H\u0002", + "\u0002\u095a\u095b\u0007K\u0002\u0002\u095b\u095c\u0007P\u0002\u0002", + "\u095c\u095d\u0007G\u0002\u0002\u095d\u01e6\u0003\u0002\u0002\u0002", + "\u095e\u095f\u0007Y\u0002\u0002\u095f\u0960\u0007U\u0002\u0002\u0960", + "\u01e8\u0003\u0002\u0002\u0002\u0961\u0962\u0007U\u0002\u0002\u0962", + "\u0963\u0007[\u0002\u0002\u0963\u0964\u0007U\u0002\u0002\u0964\u0965", + "\u0007V\u0002\u0002\u0965\u0966\u0007G\u0002\u0002\u0966\u0967\u0007", + "O\u0002\u0002\u0967\u01ea\u0003\u0002\u0002\u0002\u0968\u0969\u0007", + "K\u0002\u0002\u0969\u096a\u0007P\u0002\u0002\u096a\u096b\u0007E\u0002", + "\u0002\u096b\u096c\u0007N\u0002\u0002\u096c\u096d\u0007W\u0002\u0002", + "\u096d\u096e\u0007F\u0002\u0002\u096e\u096f\u0007K\u0002\u0002\u096f", + "\u0970\u0007P\u0002\u0002\u0970\u0971\u0007I\u0002\u0002\u0971\u01ec", + "\u0003\u0002\u0002\u0002\u0972\u0973\u0007G\u0002\u0002\u0973\u0974", + "\u0007Z\u0002\u0002\u0974\u0975\u0007E\u0002\u0002\u0975\u0976\u0007", + "N\u0002\u0002\u0976\u0977\u0007W\u0002\u0002\u0977\u0978\u0007F\u0002", + "\u0002\u0978\u0979\u0007K\u0002\u0002\u0979\u097a\u0007P\u0002\u0002", + "\u097a\u097b\u0007I\u0002\u0002\u097b\u01ee\u0003\u0002\u0002\u0002", + "\u097c\u097d\u0007E\u0002\u0002\u097d\u097e\u0007Q\u0002\u0002\u097e", + "\u097f\u0007P\u0002\u0002\u097f\u0980\u0007U\u0002\u0002\u0980\u0981", + "\u0007V\u0002\u0002\u0981\u0982\u0007T\u0002\u0002\u0982\u0983\u0007", + "C\u0002\u0002\u0983\u0984\u0007K\u0002\u0002\u0984\u0985\u0007P\u0002", + "\u0002\u0985\u0986\u0007V\u0002\u0002\u0986\u0987\u0007U\u0002\u0002", + "\u0987\u01f0\u0003\u0002\u0002\u0002\u0988\u0989\u0007Q\u0002\u0002", + "\u0989\u098a\u0007X\u0002\u0002\u098a\u098b\u0007G\u0002\u0002\u098b", + "\u098c\u0007T\u0002\u0002\u098c\u098d\u0007Y\u0002\u0002\u098d\u098e", + "\u0007T\u0002\u0002\u098e\u098f\u0007K\u0002\u0002\u098f\u0990\u0007", + "V\u0002\u0002\u0990\u0991\u0007K\u0002\u0002\u0991\u0992\u0007P\u0002", + "\u0002\u0992\u0993\u0007I\u0002\u0002\u0993\u01f2\u0003\u0002\u0002", + "\u0002\u0994\u0995\u0007I\u0002\u0002\u0995\u0996\u0007G\u0002\u0002", + "\u0996\u0997\u0007P\u0002\u0002\u0997\u0998\u0007G\u0002\u0002\u0998", + "\u0999\u0007T\u0002\u0002\u0999\u099a\u0007C\u0002\u0002\u099a\u099b", + "\u0007V\u0002\u0002\u099b\u099c\u0007G\u0002\u0002\u099c\u099d\u0007", + "F\u0002\u0002\u099d\u01f4\u0003\u0002\u0002\u0002\u099e\u099f\u0007", + "E\u0002\u0002\u099f\u09a0\u0007C\u0002\u0002\u09a0\u09a1\u0007V\u0002", + "\u0002\u09a1\u09a2\u0007C\u0002\u0002\u09a2\u09a3\u0007N\u0002\u0002", + "\u09a3\u09a4\u0007Q\u0002\u0002\u09a4\u09a5\u0007I\u0002\u0002\u09a5", + "\u01f6\u0003\u0002\u0002\u0002\u09a6\u09a7\u0007N\u0002\u0002\u09a7", + "\u09a8\u0007C\u0002\u0002\u09a8\u09a9\u0007P\u0002\u0002\u09a9\u09aa", + "\u0007I\u0002\u0002\u09aa\u09ab\u0007W\u0002\u0002\u09ab\u09ac\u0007", + "C\u0002\u0002\u09ac\u09ad\u0007I\u0002\u0002\u09ad\u09ae\u0007G\u0002", + "\u0002\u09ae\u01f8\u0003\u0002\u0002\u0002\u09af\u09b0\u0007E\u0002", + "\u0002\u09b0\u09b1\u0007C\u0002\u0002\u09b1\u09b2\u0007V\u0002\u0002", + "\u09b2\u09b3\u0007C\u0002\u0002\u09b3\u09b4\u0007N\u0002\u0002\u09b4", + "\u09b5\u0007Q\u0002\u0002\u09b5\u09b6\u0007I\u0002\u0002\u09b6\u09b7", + "\u0007U\u0002\u0002\u09b7\u01fa\u0003\u0002\u0002\u0002\u09b8\u09b9", + "\u0007X\u0002\u0002\u09b9\u09ba\u0007K\u0002\u0002\u09ba\u09bb\u0007", + "G\u0002\u0002\u09bb\u09bc\u0007Y\u0002\u0002\u09bc\u09bd\u0007U\u0002", + "\u0002\u09bd\u01fc\u0003\u0002\u0002\u0002\u09be\u09bf\u0007R\u0002", + "\u0002\u09bf\u09c0\u0007T\u0002\u0002\u09c0\u09c1\u0007K\u0002\u0002", + "\u09c1\u09c2\u0007O\u0002\u0002\u09c2\u09c3\u0007C\u0002\u0002\u09c3", + "\u09c4\u0007T\u0002\u0002\u09c4\u09c5\u0007[\u0002\u0002\u09c5\u01fe", + "\u0003\u0002\u0002\u0002\u09c6\u09c7\u0007M\u0002\u0002\u09c7\u09c8", + "\u0007G\u0002\u0002\u09c8\u09c9\u0007[\u0002\u0002\u09c9\u0200\u0003", + "\u0002\u0002\u0002\u09ca\u09cb\u0007R\u0002\u0002\u09cb\u09cc\u0007", + "G\u0002\u0002\u09cc\u09cd\u0007T\u0002\u0002\u09cd\u09ce\u0007K\u0002", + "\u0002\u09ce\u09cf\u0007Q\u0002\u0002\u09cf\u09d0\u0007F\u0002\u0002", + "\u09d0\u0202\u0003\u0002\u0002\u0002\u09d1\u09d2\u0007U\u0002\u0002", + "\u09d2\u09d3\u0007[\u0002\u0002\u09d3\u09d4\u0007U\u0002\u0002\u09d4", + "\u09d5\u0007V\u0002\u0002\u09d5\u09d6\u0007G\u0002\u0002\u09d6\u09d7", + "\u0007O\u0002\u0002\u09d7\u09d8\u0007a\u0002\u0002\u09d8\u09d9\u0007", + "V\u0002\u0002\u09d9\u09da\u0007K\u0002\u0002\u09da\u09db\u0007O\u0002", + "\u0002\u09db\u09dc\u0007G\u0002\u0002\u09dc\u0204\u0003\u0002\u0002", + "\u0002\u09dd\u09de\u0007U\u0002\u0002\u09de\u09df\u0007V\u0002\u0002", + "\u09df\u09e0\u0007T\u0002\u0002\u09e0\u09e1\u0007K\u0002\u0002\u09e1", + "\u09e2\u0007P\u0002\u0002\u09e2\u09e3\u0007I\u0002\u0002\u09e3\u0206", + "\u0003\u0002\u0002\u0002\u09e4\u09e5\u0007C\u0002\u0002\u09e5\u09e6", + "\u0007T\u0002\u0002\u09e6\u09e7\u0007T\u0002\u0002\u09e7\u09e8\u0007", + "C\u0002\u0002\u09e8\u09e9\u0007[\u0002\u0002\u09e9\u0208\u0003\u0002", + "\u0002\u0002\u09ea\u09eb\u0007O\u0002\u0002\u09eb\u09ec\u0007C\u0002", + "\u0002\u09ec\u09ed\u0007R\u0002\u0002\u09ed\u020a\u0003\u0002\u0002", + "\u0002\u09ee\u09ef\u0007E\u0002\u0002\u09ef\u09f0\u0007J\u0002\u0002", + "\u09f0\u09f1\u0007C\u0002\u0002\u09f1\u09f2\u0007T\u0002\u0002\u09f2", + "\u020c\u0003\u0002\u0002\u0002\u09f3\u09f4\u0007X\u0002\u0002\u09f4", + "\u09f5\u0007C\u0002\u0002\u09f5\u09f6\u0007T\u0002\u0002\u09f6\u09f7", + "\u0007E\u0002\u0002\u09f7\u09f8\u0007J\u0002\u0002\u09f8\u09f9\u0007", + "C\u0002\u0002\u09f9\u09fa\u0007T\u0002\u0002\u09fa\u020e\u0003\u0002", + "\u0002\u0002\u09fb\u09fc\u0007D\u0002\u0002\u09fc\u09fd\u0007K\u0002", + "\u0002\u09fd\u09fe\u0007P\u0002\u0002\u09fe\u09ff\u0007C\u0002\u0002", + "\u09ff\u0a00\u0007T\u0002\u0002\u0a00\u0a01\u0007[\u0002\u0002\u0a01", + "\u0210\u0003\u0002\u0002\u0002\u0a02\u0a03\u0007X\u0002\u0002\u0a03", + "\u0a04\u0007C\u0002\u0002\u0a04\u0a05\u0007T\u0002\u0002\u0a05\u0a06", + "\u0007D\u0002\u0002\u0a06\u0a07\u0007K\u0002\u0002\u0a07\u0a08\u0007", + "P\u0002\u0002\u0a08\u0a09\u0007C\u0002\u0002\u0a09\u0a0a\u0007T\u0002", + "\u0002\u0a0a\u0a0b\u0007[\u0002\u0002\u0a0b\u0212\u0003\u0002\u0002", + "\u0002\u0a0c\u0a0d\u0007D\u0002\u0002\u0a0d\u0a0e\u0007[\u0002\u0002", + "\u0a0e\u0a0f\u0007V\u0002\u0002\u0a0f\u0a10\u0007G\u0002\u0002\u0a10", + "\u0a11\u0007U\u0002\u0002\u0a11\u0214\u0003\u0002\u0002\u0002\u0a12", + "\u0a13\u0007F\u0002\u0002\u0a13\u0a14\u0007G\u0002\u0002\u0a14\u0a15", + "\u0007E\u0002\u0002\u0a15\u0a16\u0007K\u0002\u0002\u0a16\u0a17\u0007", + "O\u0002\u0002\u0a17\u0a18\u0007C\u0002\u0002\u0a18\u0a19\u0007N\u0002", + "\u0002\u0a19\u0216\u0003\u0002\u0002\u0002\u0a1a\u0a1b\u0007V\u0002", + "\u0002\u0a1b\u0a1c\u0007K\u0002\u0002\u0a1c\u0a1d\u0007P\u0002\u0002", + "\u0a1d\u0a1e\u0007[\u0002\u0002\u0a1e\u0a1f\u0007K\u0002\u0002\u0a1f", + "\u0a20\u0007P\u0002\u0002\u0a20\u0a21\u0007V\u0002\u0002\u0a21\u0218", + "\u0003\u0002\u0002\u0002\u0a22\u0a23\u0007U\u0002\u0002\u0a23\u0a24", + "\u0007O\u0002\u0002\u0a24\u0a25\u0007C\u0002\u0002\u0a25\u0a26\u0007", + "N\u0002\u0002\u0a26\u0a27\u0007N\u0002\u0002\u0a27\u0a28\u0007K\u0002", + "\u0002\u0a28\u0a29\u0007P\u0002\u0002\u0a29\u0a2a\u0007V\u0002\u0002", + "\u0a2a\u021a\u0003\u0002\u0002\u0002\u0a2b\u0a2c\u0007K\u0002\u0002", + "\u0a2c\u0a2d\u0007P\u0002\u0002\u0a2d\u0a2e\u0007V\u0002\u0002\u0a2e", + "\u021c\u0003\u0002\u0002\u0002\u0a2f\u0a30\u0007D\u0002\u0002\u0a30", + "\u0a31\u0007K\u0002\u0002\u0a31\u0a32\u0007I\u0002\u0002\u0a32\u0a33", + "\u0007K\u0002\u0002\u0a33\u0a34\u0007P\u0002\u0002\u0a34\u0a35\u0007", + "V\u0002\u0002\u0a35\u021e\u0003\u0002\u0002\u0002\u0a36\u0a37\u0007", + "H\u0002\u0002\u0a37\u0a38\u0007N\u0002\u0002\u0a38\u0a39\u0007Q\u0002", + "\u0002\u0a39\u0a3a\u0007C\u0002\u0002\u0a3a\u0a3b\u0007V\u0002\u0002", + "\u0a3b\u0220\u0003\u0002\u0002\u0002\u0a3c\u0a3d\u0007F\u0002\u0002", + "\u0a3d\u0a3e\u0007Q\u0002\u0002\u0a3e\u0a3f\u0007W\u0002\u0002\u0a3f", + "\u0a40\u0007D\u0002\u0002\u0a40\u0a41\u0007N\u0002\u0002\u0a41\u0a42", + "\u0007G\u0002\u0002\u0a42\u0222\u0003\u0002\u0002\u0002\u0a43\u0a44", + "\u0007F\u0002\u0002\u0a44\u0a45\u0007C\u0002\u0002\u0a45\u0a46\u0007", + "V\u0002\u0002\u0a46\u0a47\u0007G\u0002\u0002\u0a47\u0224\u0003\u0002", + "\u0002\u0002\u0a48\u0a49\u0007V\u0002\u0002\u0a49\u0a4a\u0007K\u0002", + "\u0002\u0a4a\u0a4b\u0007O\u0002\u0002\u0a4b\u0a4c\u0007G\u0002\u0002", + "\u0a4c\u0226\u0003\u0002\u0002\u0002\u0a4d\u0a4e\u0007V\u0002\u0002", + "\u0a4e\u0a4f\u0007K\u0002\u0002\u0a4f\u0a50\u0007O\u0002\u0002\u0a50", + "\u0a51\u0007G\u0002\u0002\u0a51\u0a52\u0007U\u0002\u0002\u0a52\u0a53", + "\u0007V\u0002\u0002\u0a53\u0a54\u0007C\u0002\u0002\u0a54\u0a55\u0007", + "O\u0002\u0002\u0a55\u0a56\u0007R\u0002\u0002\u0a56\u0228\u0003\u0002", + "\u0002\u0002\u0a57\u0a58\u0007O\u0002\u0002\u0a58\u0a59\u0007W\u0002", + "\u0002\u0a59\u0a5a\u0007N\u0002\u0002\u0a5a\u0a5b\u0007V\u0002\u0002", + "\u0a5b\u0a5c\u0007K\u0002\u0002\u0a5c\u0a5d\u0007U\u0002\u0002\u0a5d", + "\u0a5e\u0007G\u0002\u0002\u0a5e\u0a5f\u0007V\u0002\u0002\u0a5f\u022a", + "\u0003\u0002\u0002\u0002\u0a60\u0a61\u0007D\u0002\u0002\u0a61\u0a62", + "\u0007Q\u0002\u0002\u0a62\u0a63\u0007Q\u0002\u0002\u0a63\u0a64\u0007", + "N\u0002\u0002\u0a64\u0a65\u0007G\u0002\u0002\u0a65\u0a66\u0007C\u0002", + "\u0002\u0a66\u0a67\u0007P\u0002\u0002\u0a67\u022c\u0003\u0002\u0002", + "\u0002\u0a68\u0a69\u0007T\u0002\u0002\u0a69\u0a6a\u0007C\u0002\u0002", + "\u0a6a\u0a6b\u0007Y\u0002\u0002\u0a6b\u022e\u0003\u0002\u0002\u0002", + "\u0a6c\u0a6d\u0007T\u0002\u0002\u0a6d\u0a6e\u0007Q\u0002\u0002\u0a6e", + "\u0a6f\u0007Y\u0002\u0002\u0a6f\u0230\u0003\u0002\u0002\u0002\u0a70", + "\u0a71\u0007P\u0002\u0002\u0a71\u0a72\u0007W\u0002\u0002\u0a72\u0a73", + "\u0007N\u0002\u0002\u0a73\u0a74\u0007N\u0002\u0002\u0a74\u0232\u0003", + "\u0002\u0002\u0002\u0a75\u0a76\u0007F\u0002\u0002\u0a76\u0a77\u0007", + "C\u0002\u0002\u0a77\u0a78\u0007V\u0002\u0002\u0a78\u0a79\u0007G\u0002", + "\u0002\u0a79\u0a7a\u0007V\u0002\u0002\u0a7a\u0a7b\u0007K\u0002\u0002", + "\u0a7b\u0a7c\u0007O\u0002\u0002\u0a7c\u0a7d\u0007G\u0002\u0002\u0a7d", + "\u0234\u0003\u0002\u0002\u0002\u0a7e\u0a7f\u0007?\u0002\u0002\u0a7f", + "\u0236\u0003\u0002\u0002\u0002\u0a80\u0a81\u0007@\u0002\u0002\u0a81", + "\u0238\u0003\u0002\u0002\u0002\u0a82\u0a83\u0007>\u0002\u0002\u0a83", + "\u023a\u0003\u0002\u0002\u0002\u0a84\u0a85\u0007#\u0002\u0002\u0a85", + "\u023c\u0003\u0002\u0002\u0002\u0a86\u0a87\u0007\u0080\u0002\u0002\u0a87", + "\u023e\u0003\u0002\u0002\u0002\u0a88\u0a89\u0007~\u0002\u0002\u0a89", + "\u0240\u0003\u0002\u0002\u0002\u0a8a\u0a8b\u0007(\u0002\u0002\u0a8b", + "\u0242\u0003\u0002\u0002\u0002\u0a8c\u0a8d\u0007`\u0002\u0002\u0a8d", + "\u0244\u0003\u0002\u0002\u0002\u0a8e\u0a8f\u00070\u0002\u0002\u0a8f", + "\u0246\u0003\u0002\u0002\u0002\u0a90\u0a91\u0007]\u0002\u0002\u0a91", + "\u0248\u0003\u0002\u0002\u0002\u0a92\u0a93\u0007_\u0002\u0002\u0a93", + "\u024a\u0003\u0002\u0002\u0002\u0a94\u0a95\u0007*\u0002\u0002\u0a95", + "\u024c\u0003\u0002\u0002\u0002\u0a96\u0a97\u0007+\u0002\u0002\u0a97", + "\u024e\u0003\u0002\u0002\u0002\u0a98\u0a99\u0007.\u0002\u0002\u0a99", + "\u0250\u0003\u0002\u0002\u0002\u0a9a\u0a9b\u0007=\u0002\u0002\u0a9b", + "\u0252\u0003\u0002\u0002\u0002\u0a9c\u0a9d\u0007B\u0002\u0002\u0a9d", + "\u0254\u0003\u0002\u0002\u0002\u0a9e\u0a9f\u0007)\u0002\u0002\u0a9f", + "\u0256\u0003\u0002\u0002\u0002\u0aa0\u0aa1\u0007$\u0002\u0002\u0aa1", + "\u0258\u0003\u0002\u0002\u0002\u0aa2\u0aa3\u0007b\u0002\u0002\u0aa3", + "\u025a\u0003\u0002\u0002\u0002\u0aa4\u0aa5\u0007<\u0002\u0002\u0aa5", + "\u025c\u0003\u0002\u0002\u0002\u0aa6\u0aa7\u0007,\u0002\u0002\u0aa7", + "\u025e\u0003\u0002\u0002\u0002\u0aa8\u0aa9\u0007a\u0002\u0002\u0aa9", + "\u0260\u0003\u0002\u0002\u0002\u0aaa\u0aab\u0007/\u0002\u0002\u0aab", + "\u0262\u0003\u0002\u0002\u0002\u0aac\u0aad\u0007-\u0002\u0002\u0aad", + "\u0264\u0003\u0002\u0002\u0002\u0aae\u0aaf\u0007\'\u0002\u0002\u0aaf", + "\u0266\u0003\u0002\u0002\u0002\u0ab0\u0ab1\u0007~\u0002\u0002\u0ab1", + "\u0ab2\u0007~\u0002\u0002\u0ab2\u0268\u0003\u0002\u0002\u0002\u0ab3", + "\u0ab4\u0007/\u0002\u0002\u0ab4\u0ab5\u0007/\u0002\u0002\u0ab5\u026a", + "\u0003\u0002\u0002\u0002\u0ab6\u0ab7\u00071\u0002\u0002\u0ab7\u026c", + "\u0003\u0002\u0002\u0002\u0ab8\u0ab9\u00070\u0002\u0002\u0ab9\u0aba", + "\u0005\u027f\u0140\u0002\u0aba\u026e\u0003\u0002\u0002\u0002\u0abb\u0abc", + "\t\u0004\u0002\u0002\u0abc\u0abd\u0005\u027b\u013e\u0002\u0abd\u0270", + "\u0003\u0002\u0002\u0002\u0abe\u0ac2\u0005\u0287\u0144\u0002\u0abf\u0ac2", + "\u0005\u0289\u0145\u0002\u0ac0\u0ac2\u0005\u028d\u0147\u0002\u0ac1\u0abe", + "\u0003\u0002\u0002\u0002\u0ac1\u0abf\u0003\u0002\u0002\u0002\u0ac1\u0ac0", + "\u0003\u0002\u0002\u0002\u0ac2\u0272\u0003\u0002\u0002\u0002\u0ac3\u0ac5", + "\u0005\u0283\u0142\u0002\u0ac4\u0ac3\u0003\u0002\u0002\u0002\u0ac5\u0ac6", + "\u0003\u0002\u0002\u0002\u0ac6\u0ac4\u0003\u0002\u0002\u0002\u0ac6\u0ac7", + "\u0003\u0002\u0002\u0002\u0ac7\u0274\u0003\u0002\u0002\u0002\u0ac8\u0aca", + "\u0005\u0283\u0142\u0002\u0ac9\u0ac8\u0003\u0002\u0002\u0002\u0aca\u0acb", + "\u0003\u0002\u0002\u0002\u0acb\u0ac9\u0003\u0002\u0002\u0002\u0acb\u0acc", + "\u0003\u0002\u0002\u0002\u0acc\u0ace\u0003\u0002\u0002\u0002\u0acd\u0ac9", + "\u0003\u0002\u0002\u0002\u0acd\u0ace\u0003\u0002\u0002\u0002\u0ace\u0acf", + "\u0003\u0002\u0002\u0002\u0acf\u0ad1\u00070\u0002\u0002\u0ad0\u0ad2", + "\u0005\u0283\u0142\u0002\u0ad1\u0ad0\u0003\u0002\u0002\u0002\u0ad2\u0ad3", + "\u0003\u0002\u0002\u0002\u0ad3\u0ad1\u0003\u0002\u0002\u0002\u0ad3\u0ad4", + "\u0003\u0002\u0002\u0002\u0ad4\u0af4\u0003\u0002\u0002\u0002\u0ad5\u0ad7", + "\u0005\u0283\u0142\u0002\u0ad6\u0ad5\u0003\u0002\u0002\u0002\u0ad7\u0ad8", + "\u0003\u0002\u0002\u0002\u0ad8\u0ad6\u0003\u0002\u0002\u0002\u0ad8\u0ad9", + "\u0003\u0002\u0002\u0002\u0ad9\u0ada\u0003\u0002\u0002\u0002\u0ada\u0adb", + "\u00070\u0002\u0002\u0adb\u0adc\u0005\u027d\u013f\u0002\u0adc\u0af4", + "\u0003\u0002\u0002\u0002\u0add\u0adf\u0005\u0283\u0142\u0002\u0ade\u0add", + "\u0003\u0002\u0002\u0002\u0adf\u0ae0\u0003\u0002\u0002\u0002\u0ae0\u0ade", + "\u0003\u0002\u0002\u0002\u0ae0\u0ae1\u0003\u0002\u0002\u0002\u0ae1\u0ae3", + "\u0003\u0002\u0002\u0002\u0ae2\u0ade\u0003\u0002\u0002\u0002\u0ae2\u0ae3", + "\u0003\u0002\u0002\u0002\u0ae3\u0ae4\u0003\u0002\u0002\u0002\u0ae4\u0ae6", + "\u00070\u0002\u0002\u0ae5\u0ae7\u0005\u0283\u0142\u0002\u0ae6\u0ae5", + "\u0003\u0002\u0002\u0002\u0ae7\u0ae8\u0003\u0002\u0002\u0002\u0ae8\u0ae6", + "\u0003\u0002\u0002\u0002\u0ae8\u0ae9\u0003\u0002\u0002\u0002\u0ae9\u0aea", + "\u0003\u0002\u0002\u0002\u0aea\u0aeb\u0005\u027d\u013f\u0002\u0aeb\u0af4", + "\u0003\u0002\u0002\u0002\u0aec\u0aee\u0005\u0283\u0142\u0002\u0aed\u0aec", + "\u0003\u0002\u0002\u0002\u0aee\u0aef\u0003\u0002\u0002\u0002\u0aef\u0aed", + "\u0003\u0002\u0002\u0002\u0aef\u0af0\u0003\u0002\u0002\u0002\u0af0\u0af1", + "\u0003\u0002\u0002\u0002\u0af1\u0af2\u0005\u027d\u013f\u0002\u0af2\u0af4", + "\u0003\u0002\u0002\u0002\u0af3\u0acd\u0003\u0002\u0002\u0002\u0af3\u0ad6", + "\u0003\u0002\u0002\u0002\u0af3\u0ae2\u0003\u0002\u0002\u0002\u0af3\u0aed", + "\u0003\u0002\u0002\u0002\u0af4\u0276\u0003\u0002\u0002\u0002\u0af5\u0af6", + "\u0005\u028b\u0146\u0002\u0af6\u0278\u0003\u0002\u0002\u0002\u0af7\u0af8", + "\u0005\u027f\u0140\u0002\u0af8\u027a\u0003\u0002\u0002\u0002\u0af9\u0afa", + "\u0005\u0281\u0141\u0002\u0afa\u027c\u0003\u0002\u0002\u0002\u0afb\u0afd", + "\u0007G\u0002\u0002\u0afc\u0afe\t\u0005\u0002\u0002\u0afd\u0afc\u0003", + "\u0002\u0002\u0002\u0afd\u0afe\u0003\u0002\u0002\u0002\u0afe\u0b00\u0003", + "\u0002\u0002\u0002\u0aff\u0b01\u0005\u0283\u0142\u0002\u0b00\u0aff\u0003", + "\u0002\u0002\u0002\u0b01\u0b02\u0003\u0002\u0002\u0002\u0b02\u0b00\u0003", + "\u0002\u0002\u0002\u0b02\u0b03\u0003\u0002\u0002\u0002\u0b03\u027e\u0003", + "\u0002\u0002\u0002\u0b04\u0b06\t\u0006\u0002\u0002\u0b05\u0b04\u0003", + "\u0002\u0002\u0002\u0b06\u0b09\u0003\u0002\u0002\u0002\u0b07\u0b08\u0003", + "\u0002\u0002\u0002\u0b07\u0b05\u0003\u0002\u0002\u0002\u0b08\u0b0b\u0003", + "\u0002\u0002\u0002\u0b09\u0b07\u0003\u0002\u0002\u0002\u0b0a\u0b0c\t", + "\u0007\u0002\u0002\u0b0b\u0b0a\u0003\u0002\u0002\u0002\u0b0c\u0b0d\u0003", + "\u0002\u0002\u0002\u0b0d\u0b0e\u0003\u0002\u0002\u0002\u0b0d\u0b0b\u0003", + "\u0002\u0002\u0002\u0b0e\u0b12\u0003\u0002\u0002\u0002\u0b0f\u0b11\t", + "\u0006\u0002\u0002\u0b10\u0b0f\u0003\u0002\u0002\u0002\u0b11\u0b14\u0003", + "\u0002\u0002\u0002\u0b12\u0b10\u0003\u0002\u0002\u0002\u0b12\u0b13\u0003", + "\u0002\u0002\u0002\u0b13\u0280\u0003\u0002\u0002\u0002\u0b14\u0b12\u0003", + "\u0002\u0002\u0002\u0b15\u0b17\t\b\u0002\u0002\u0b16\u0b15\u0003\u0002", + "\u0002\u0002\u0b17\u0b1a\u0003\u0002\u0002\u0002\u0b18\u0b19\u0003\u0002", + "\u0002\u0002\u0b18\u0b16\u0003\u0002\u0002\u0002\u0b19\u0b1c\u0003\u0002", + "\u0002\u0002\u0b1a\u0b18\u0003\u0002\u0002\u0002\u0b1b\u0b1d\t\u0007", + "\u0002\u0002\u0b1c\u0b1b\u0003\u0002\u0002\u0002\u0b1d\u0b1e\u0003\u0002", + "\u0002\u0002\u0b1e\u0b1f\u0003\u0002\u0002\u0002\u0b1e\u0b1c\u0003\u0002", + "\u0002\u0002\u0b1f\u0b23\u0003\u0002\u0002\u0002\u0b20\u0b22\t\b\u0002", + "\u0002\u0b21\u0b20\u0003\u0002\u0002\u0002\u0b22\u0b25\u0003\u0002\u0002", + "\u0002\u0b23\u0b21\u0003\u0002\u0002\u0002\u0b23\u0b24\u0003\u0002\u0002", + "\u0002\u0b24\u0282\u0003\u0002\u0002\u0002\u0b25\u0b23\u0003\u0002\u0002", + "\u0002\u0b26\u0b27\t\t\u0002\u0002\u0b27\u0284\u0003\u0002\u0002\u0002", + "\u0b28\u0b29\t\n\u0002\u0002\u0b29\u0286\u0003\u0002\u0002\u0002\u0b2a", + "\u0b32\u0007$\u0002\u0002\u0b2b\u0b2c\u0007^\u0002\u0002\u0b2c\u0b31", + "\u000b\u0002\u0002\u0002\u0b2d\u0b2e\u0007$\u0002\u0002\u0b2e\u0b31", + "\u0007$\u0002\u0002\u0b2f\u0b31\n\u000b\u0002\u0002\u0b30\u0b2b\u0003", + "\u0002\u0002\u0002\u0b30\u0b2d\u0003\u0002\u0002\u0002\u0b30\u0b2f\u0003", + "\u0002\u0002\u0002\u0b31\u0b34\u0003\u0002\u0002\u0002\u0b32\u0b30\u0003", + "\u0002\u0002\u0002\u0b32\u0b33\u0003\u0002\u0002\u0002\u0b33\u0b35\u0003", + "\u0002\u0002\u0002\u0b34\u0b32\u0003\u0002\u0002\u0002\u0b35\u0b36\u0007", + "$\u0002\u0002\u0b36\u0288\u0003\u0002\u0002\u0002\u0b37\u0b3f\u0007", + ")\u0002\u0002\u0b38\u0b39\u0007^\u0002\u0002\u0b39\u0b3e\u000b\u0002", + "\u0002\u0002\u0b3a\u0b3b\u0007)\u0002\u0002\u0b3b\u0b3e\u0007)\u0002", + "\u0002\u0b3c\u0b3e\n\f\u0002\u0002\u0b3d\u0b38\u0003\u0002\u0002\u0002", + "\u0b3d\u0b3a\u0003\u0002\u0002\u0002\u0b3d\u0b3c\u0003\u0002\u0002\u0002", + "\u0b3e\u0b41\u0003\u0002\u0002\u0002\u0b3f\u0b3d\u0003\u0002\u0002\u0002", + "\u0b3f\u0b40\u0003\u0002\u0002\u0002\u0b40\u0b42\u0003\u0002\u0002\u0002", + "\u0b41\u0b3f\u0003\u0002\u0002\u0002\u0b42\u0b43\u0007)\u0002\u0002", + "\u0b43\u028a\u0003\u0002\u0002\u0002\u0b44\u0b45\u0007D\u0002\u0002", + "\u0b45\u0b47\u0007)\u0002\u0002\u0b46\u0b48\t\r\u0002\u0002\u0b47\u0b46", + "\u0003\u0002\u0002\u0002\u0b48\u0b49\u0003\u0002\u0002\u0002\u0b49\u0b47", + "\u0003\u0002\u0002\u0002\u0b49\u0b4a\u0003\u0002\u0002\u0002\u0b4a\u0b4b", + "\u0003\u0002\u0002\u0002\u0b4b\u0b4c\u0007)\u0002\u0002\u0b4c\u028c", + "\u0003\u0002\u0002\u0002\u0b4d\u0b55\u0007b\u0002\u0002\u0b4e\u0b4f", + "\u0007^\u0002\u0002\u0b4f\u0b54\u000b\u0002\u0002\u0002\u0b50\u0b51", + "\u0007b\u0002\u0002\u0b51\u0b54\u0007b\u0002\u0002\u0b52\u0b54\n\u000e", + "\u0002\u0002\u0b53\u0b4e\u0003\u0002\u0002\u0002\u0b53\u0b50\u0003\u0002", + "\u0002\u0002\u0b53\u0b52\u0003\u0002\u0002\u0002\u0b54\u0b57\u0003\u0002", + "\u0002\u0002\u0b55\u0b53\u0003\u0002\u0002\u0002\u0b55\u0b56\u0003\u0002", + "\u0002\u0002\u0b56\u0b58\u0003\u0002\u0002\u0002\u0b57\u0b55\u0003\u0002", + "\u0002\u0002\u0b58\u0b59\u0007b\u0002\u0002\u0b59\u028e\u0003\u0002", + "\u0002\u0002&\u0002\u0292\u029c\u02a8\u02ad\u02b1\u02b5\u02bb\u02bf", + "\u02c1\u0ac1\u0ac6\u0acb\u0acd\u0ad3\u0ad8\u0ae0\u0ae2\u0ae8\u0aef\u0af3", + "\u0afd\u0b02\u0b07\u0b0d\u0b12\u0b18\u0b1e\u0b23\u0b30\u0b32\u0b3d\u0b3f", + "\u0b49\u0b53\u0b55\u0003\u0002\u0003\u0002"].join(""); var atn = new antlr4.atn.ATNDeserializer().deserialize(serializedATN); @@ -2016,126 +2077,134 @@ FlinkSqlLexer.COMPACT = 186; FlinkSqlLexer.CONCATENATE = 187; FlinkSqlLexer.CHANGE = 188; FlinkSqlLexer.CASCADE = 189; -FlinkSqlLexer.RESTRICT = 190; -FlinkSqlLexer.CLUSTERED = 191; -FlinkSqlLexer.SORTED = 192; -FlinkSqlLexer.PURGE = 193; -FlinkSqlLexer.INPUTFORMAT = 194; -FlinkSqlLexer.OUTPUTFORMAT = 195; -FlinkSqlLexer.DATABASE = 196; -FlinkSqlLexer.DATABASES = 197; -FlinkSqlLexer.DFS = 198; -FlinkSqlLexer.TRUNCATE = 199; -FlinkSqlLexer.ANALYZE = 200; -FlinkSqlLexer.COMPUTE = 201; -FlinkSqlLexer.LIST = 202; -FlinkSqlLexer.STATISTICS = 203; -FlinkSqlLexer.PARTITIONED = 204; -FlinkSqlLexer.EXTERNAL = 205; -FlinkSqlLexer.DEFINED = 206; -FlinkSqlLexer.REVOKE = 207; -FlinkSqlLexer.GRANT = 208; -FlinkSqlLexer.LOCK = 209; -FlinkSqlLexer.UNLOCK = 210; -FlinkSqlLexer.MSCK = 211; -FlinkSqlLexer.REPAIR = 212; -FlinkSqlLexer.RECOVER = 213; -FlinkSqlLexer.EXPORT = 214; -FlinkSqlLexer.IMPORT = 215; -FlinkSqlLexer.LOAD = 216; -FlinkSqlLexer.ROLE = 217; -FlinkSqlLexer.ROLES = 218; -FlinkSqlLexer.COMPACTIONS = 219; -FlinkSqlLexer.PRINCIPALS = 220; -FlinkSqlLexer.TRANSACTIONS = 221; -FlinkSqlLexer.INDEX = 222; -FlinkSqlLexer.INDEXES = 223; -FlinkSqlLexer.LOCKS = 224; -FlinkSqlLexer.OPTION = 225; -FlinkSqlLexer.ANTI = 226; -FlinkSqlLexer.LOCAL = 227; -FlinkSqlLexer.INPATH = 228; -FlinkSqlLexer.WATERMARK = 229; -FlinkSqlLexer.UNNEST = 230; -FlinkSqlLexer.MATCH_RECOGNIZE = 231; -FlinkSqlLexer.MEASURES = 232; -FlinkSqlLexer.ONE = 233; -FlinkSqlLexer.PER = 234; -FlinkSqlLexer.MATCH = 235; -FlinkSqlLexer.SKIP1 = 236; -FlinkSqlLexer.NEXT = 237; -FlinkSqlLexer.PAST = 238; -FlinkSqlLexer.PATTERN = 239; -FlinkSqlLexer.WITHIN = 240; -FlinkSqlLexer.DEFINE = 241; -FlinkSqlLexer.WS = 242; -FlinkSqlLexer.SYSTEM = 243; -FlinkSqlLexer.INCLUDING = 244; -FlinkSqlLexer.EXCLUDING = 245; -FlinkSqlLexer.CONSTRAINTS = 246; -FlinkSqlLexer.OVERWRITING = 247; -FlinkSqlLexer.GENERATED = 248; -FlinkSqlLexer.CATALOG = 249; -FlinkSqlLexer.LANGUAGE = 250; -FlinkSqlLexer.CATALOGS = 251; -FlinkSqlLexer.VIEWS = 252; -FlinkSqlLexer.STRING = 253; -FlinkSqlLexer.ARRAY = 254; -FlinkSqlLexer.MAP = 255; -FlinkSqlLexer.CHAR = 256; -FlinkSqlLexer.VARCHAR = 257; -FlinkSqlLexer.BINARY = 258; -FlinkSqlLexer.VARBINARY = 259; -FlinkSqlLexer.BYTES = 260; -FlinkSqlLexer.DECIMAL = 261; -FlinkSqlLexer.TINYINT = 262; -FlinkSqlLexer.SMALLINT = 263; -FlinkSqlLexer.INT = 264; -FlinkSqlLexer.BIGINT = 265; -FlinkSqlLexer.FLOAT = 266; -FlinkSqlLexer.DOUBLE = 267; -FlinkSqlLexer.DATE = 268; -FlinkSqlLexer.TIME = 269; -FlinkSqlLexer.TIMESTAMP = 270; -FlinkSqlLexer.MULTISET = 271; -FlinkSqlLexer.BOOLEAN = 272; -FlinkSqlLexer.RAW = 273; -FlinkSqlLexer.ROW = 274; -FlinkSqlLexer.NULL = 275; -FlinkSqlLexer.EQUAL_SYMBOL = 276; -FlinkSqlLexer.GREATER_SYMBOL = 277; -FlinkSqlLexer.LESS_SYMBOL = 278; -FlinkSqlLexer.EXCLAMATION_SYMBOL = 279; -FlinkSqlLexer.BIT_NOT_OP = 280; -FlinkSqlLexer.BIT_OR_OP = 281; -FlinkSqlLexer.BIT_AND_OP = 282; -FlinkSqlLexer.BIT_XOR_OP = 283; -FlinkSqlLexer.DOT = 284; -FlinkSqlLexer.LS_BRACKET = 285; -FlinkSqlLexer.RS_BRACKET = 286; -FlinkSqlLexer.LR_BRACKET = 287; -FlinkSqlLexer.RR_BRACKET = 288; -FlinkSqlLexer.COMMA = 289; -FlinkSqlLexer.SEMICOLON = 290; -FlinkSqlLexer.AT_SIGN = 291; -FlinkSqlLexer.SINGLE_QUOTE_SYMB = 292; -FlinkSqlLexer.DOUBLE_QUOTE_SYMB = 293; -FlinkSqlLexer.REVERSE_QUOTE_SYMB = 294; -FlinkSqlLexer.COLON_SYMB = 295; -FlinkSqlLexer.ASTERISK_SIGN = 296; -FlinkSqlLexer.UNDERLINE_SIGN = 297; -FlinkSqlLexer.HYPNEN_SIGN = 298; -FlinkSqlLexer.ADD_SIGN = 299; -FlinkSqlLexer.PENCENT_SIGN = 300; -FlinkSqlLexer.DOUBLE_VERTICAL_SIGN = 301; -FlinkSqlLexer.DOUBLE_HYPNEN_SIGN = 302; -FlinkSqlLexer.SLASH_SIGN = 303; -FlinkSqlLexer.DOT_ID = 304; -FlinkSqlLexer.STRING_LITERAL = 305; -FlinkSqlLexer.DIG_LITERAL = 306; -FlinkSqlLexer.REAL_LITERAL = 307; -FlinkSqlLexer.BIT_STRING = 308; -FlinkSqlLexer.ID = 309; +FlinkSqlLexer.CONSTRAINT = 190; +FlinkSqlLexer.RESTRICT = 191; +FlinkSqlLexer.CLUSTERED = 192; +FlinkSqlLexer.SORTED = 193; +FlinkSqlLexer.PURGE = 194; +FlinkSqlLexer.INPUTFORMAT = 195; +FlinkSqlLexer.OUTPUTFORMAT = 196; +FlinkSqlLexer.DATABASE = 197; +FlinkSqlLexer.DATABASES = 198; +FlinkSqlLexer.DFS = 199; +FlinkSqlLexer.TRUNCATE = 200; +FlinkSqlLexer.ANALYZE = 201; +FlinkSqlLexer.COMPUTE = 202; +FlinkSqlLexer.LIST = 203; +FlinkSqlLexer.STATISTICS = 204; +FlinkSqlLexer.PARTITIONED = 205; +FlinkSqlLexer.EXTERNAL = 206; +FlinkSqlLexer.DEFINED = 207; +FlinkSqlLexer.REVOKE = 208; +FlinkSqlLexer.GRANT = 209; +FlinkSqlLexer.LOCK = 210; +FlinkSqlLexer.UNLOCK = 211; +FlinkSqlLexer.MSCK = 212; +FlinkSqlLexer.REPAIR = 213; +FlinkSqlLexer.RECOVER = 214; +FlinkSqlLexer.EXPORT = 215; +FlinkSqlLexer.IMPORT = 216; +FlinkSqlLexer.LOAD = 217; +FlinkSqlLexer.ROLE = 218; +FlinkSqlLexer.ROLES = 219; +FlinkSqlLexer.COMPACTIONS = 220; +FlinkSqlLexer.PRINCIPALS = 221; +FlinkSqlLexer.TRANSACTIONS = 222; +FlinkSqlLexer.INDEX = 223; +FlinkSqlLexer.INDEXES = 224; +FlinkSqlLexer.LOCKS = 225; +FlinkSqlLexer.OPTION = 226; +FlinkSqlLexer.ANTI = 227; +FlinkSqlLexer.LOCAL = 228; +FlinkSqlLexer.INPATH = 229; +FlinkSqlLexer.WATERMARK = 230; +FlinkSqlLexer.UNNEST = 231; +FlinkSqlLexer.MATCH_RECOGNIZE = 232; +FlinkSqlLexer.MEASURES = 233; +FlinkSqlLexer.ONE = 234; +FlinkSqlLexer.PER = 235; +FlinkSqlLexer.MATCH = 236; +FlinkSqlLexer.SKIP1 = 237; +FlinkSqlLexer.NEXT = 238; +FlinkSqlLexer.PAST = 239; +FlinkSqlLexer.PATTERN = 240; +FlinkSqlLexer.WITHIN = 241; +FlinkSqlLexer.DEFINE = 242; +FlinkSqlLexer.WS = 243; +FlinkSqlLexer.SYSTEM = 244; +FlinkSqlLexer.INCLUDING = 245; +FlinkSqlLexer.EXCLUDING = 246; +FlinkSqlLexer.CONSTRAINTS = 247; +FlinkSqlLexer.OVERWRITING = 248; +FlinkSqlLexer.GENERATED = 249; +FlinkSqlLexer.CATALOG = 250; +FlinkSqlLexer.LANGUAGE = 251; +FlinkSqlLexer.CATALOGS = 252; +FlinkSqlLexer.VIEWS = 253; +FlinkSqlLexer.PRIMARY = 254; +FlinkSqlLexer.KEY = 255; +FlinkSqlLexer.PERIOD = 256; +FlinkSqlLexer.SYSTEM_TIME = 257; +FlinkSqlLexer.STRING = 258; +FlinkSqlLexer.ARRAY = 259; +FlinkSqlLexer.MAP = 260; +FlinkSqlLexer.CHAR = 261; +FlinkSqlLexer.VARCHAR = 262; +FlinkSqlLexer.BINARY = 263; +FlinkSqlLexer.VARBINARY = 264; +FlinkSqlLexer.BYTES = 265; +FlinkSqlLexer.DECIMAL = 266; +FlinkSqlLexer.TINYINT = 267; +FlinkSqlLexer.SMALLINT = 268; +FlinkSqlLexer.INT = 269; +FlinkSqlLexer.BIGINT = 270; +FlinkSqlLexer.FLOAT = 271; +FlinkSqlLexer.DOUBLE = 272; +FlinkSqlLexer.DATE = 273; +FlinkSqlLexer.TIME = 274; +FlinkSqlLexer.TIMESTAMP = 275; +FlinkSqlLexer.MULTISET = 276; +FlinkSqlLexer.BOOLEAN = 277; +FlinkSqlLexer.RAW = 278; +FlinkSqlLexer.ROW = 279; +FlinkSqlLexer.NULL = 280; +FlinkSqlLexer.DATETIME = 281; +FlinkSqlLexer.EQUAL_SYMBOL = 282; +FlinkSqlLexer.GREATER_SYMBOL = 283; +FlinkSqlLexer.LESS_SYMBOL = 284; +FlinkSqlLexer.EXCLAMATION_SYMBOL = 285; +FlinkSqlLexer.BIT_NOT_OP = 286; +FlinkSqlLexer.BIT_OR_OP = 287; +FlinkSqlLexer.BIT_AND_OP = 288; +FlinkSqlLexer.BIT_XOR_OP = 289; +FlinkSqlLexer.DOT = 290; +FlinkSqlLexer.LS_BRACKET = 291; +FlinkSqlLexer.RS_BRACKET = 292; +FlinkSqlLexer.LR_BRACKET = 293; +FlinkSqlLexer.RR_BRACKET = 294; +FlinkSqlLexer.COMMA = 295; +FlinkSqlLexer.SEMICOLON = 296; +FlinkSqlLexer.AT_SIGN = 297; +FlinkSqlLexer.SINGLE_QUOTE_SYMB = 298; +FlinkSqlLexer.DOUBLE_QUOTE_SYMB = 299; +FlinkSqlLexer.REVERSE_QUOTE_SYMB = 300; +FlinkSqlLexer.COLON_SYMB = 301; +FlinkSqlLexer.ASTERISK_SIGN = 302; +FlinkSqlLexer.UNDERLINE_SIGN = 303; +FlinkSqlLexer.HYPNEN_SIGN = 304; +FlinkSqlLexer.ADD_SIGN = 305; +FlinkSqlLexer.PENCENT_SIGN = 306; +FlinkSqlLexer.DOUBLE_VERTICAL_SIGN = 307; +FlinkSqlLexer.DOUBLE_HYPNEN_SIGN = 308; +FlinkSqlLexer.SLASH_SIGN = 309; +FlinkSqlLexer.DOT_ID = 310; +FlinkSqlLexer.PLUS_DOT_ID = 311; +FlinkSqlLexer.STRING_LITERAL = 312; +FlinkSqlLexer.DIG_LITERAL = 313; +FlinkSqlLexer.REAL_LITERAL = 314; +FlinkSqlLexer.BIT_STRING = 315; +FlinkSqlLexer.ID_LITERAL = 316; +FlinkSqlLexer.PLUS_ID_LITERAL = 317; FlinkSqlLexer.prototype.channelNames = [ "DEFAULT_TOKEN_CHANNEL", "HIDDEN" ]; @@ -2203,11 +2272,12 @@ FlinkSqlLexer.prototype.literalNames = [ null, null, null, null, "'SELECT'", "'EXCHANGE'", "'ARCHIVE'", "'UNARCHIVE'", "'FILEFORMAT'", "'TOUCH'", "'COMPACT'", "'CONCATENATE'", "'CHANGE'", "'CASCADE'", - "'RESTRICT'", "'CLUSTERED'", "'SORTED'", - "'PURGE'", "'INPUTFORMAT'", "'OUTPUTFORMAT'", - "'DATABASE'", "'DATABASES'", "'DFS'", - "'TRUNCATE'", "'ANALYZE'", "'COMPUTE'", - "'LIST'", "'STATISTICS'", "'PARTITIONED'", + "'CONSTRAINT'", "'RESTRICT'", "'CLUSTERED'", + "'SORTED'", "'PURGE'", "'INPUTFORMAT'", + "'OUTPUTFORMAT'", "'DATABASE'", + "'DATABASES'", "'DFS'", "'TRUNCATE'", + "'ANALYZE'", "'COMPUTE'", "'LIST'", + "'STATISTICS'", "'PARTITIONED'", "'EXTERNAL'", "'DEFINED'", "'REVOKE'", "'GRANT'", "'LOCK'", "'UNLOCK'", "'MSCK'", "'REPAIR'", "'RECOVER'", @@ -2224,20 +2294,22 @@ FlinkSqlLexer.prototype.literalNames = [ null, null, null, null, "'SELECT'", "'SYSTEM'", "'INCLUDING'", "'EXCLUDING'", "'CONSTRAINTS'", "'OVERWRITING'", "'GENERATED'", "'CATALOG'", "'LANGUAGE'", - "'CATALOGS'", "'VIEWS'", "'STRING'", - "'ARRAY'", "'MAP'", "'CHAR'", "'VARCHAR'", - "'BINARY'", "'VARBINARY'", "'BYTES'", - "'DECIMAL'", "'TINYINT'", "'SMALLINT'", - "'INT'", "'BIGINT'", "'FLOAT'", - "'DOUBLE'", "'DATE'", "'TIME'", - "'TIMESTAMP'", "'MULTISET'", "'BOOLEAN'", - "'RAW'", "'ROW'", "'NULL'", "'='", - "'>'", "'<'", "'!'", "'~'", "'|'", - "'&'", "'^'", "'.'", "'['", "']'", - "'('", "')'", "','", "';'", "'@'", - "'''", "'\"'", "'`'", "':'", "'*'", - "'_'", "'-'", "'+'", "'%'", "'||'", - "'--'", "'/'" ]; + "'CATALOGS'", "'VIEWS'", "'PRIMARY'", + "'KEY'", "'PERIOD'", "'SYSTEM_TIME'", + "'STRING'", "'ARRAY'", "'MAP'", + "'CHAR'", "'VARCHAR'", "'BINARY'", + "'VARBINARY'", "'BYTES'", "'DECIMAL'", + "'TINYINT'", "'SMALLINT'", "'INT'", + "'BIGINT'", "'FLOAT'", "'DOUBLE'", + "'DATE'", "'TIME'", "'TIMESTAMP'", + "'MULTISET'", "'BOOLEAN'", "'RAW'", + "'ROW'", "'NULL'", "'DATETIME'", + "'='", "'>'", "'<'", "'!'", "'~'", + "'|'", "'&'", "'^'", "'.'", "'['", + "']'", "'('", "')'", "','", "';'", + "'@'", "'''", "'\"'", "'`'", "':'", + "'*'", "'_'", "'-'", "'+'", "'%'", + "'||'", "'--'", "'/'" ]; FlinkSqlLexer.prototype.symbolicNames = [ null, "SPACE", "COMMENT_INPUT", "LINE_COMMENT", "SELECT", "FROM", @@ -2293,14 +2365,14 @@ FlinkSqlLexer.prototype.symbolicNames = [ null, "SPACE", "COMMENT_INPUT", "EXCHANGE", "ARCHIVE", "UNARCHIVE", "FILEFORMAT", "TOUCH", "COMPACT", "CONCATENATE", "CHANGE", "CASCADE", - "RESTRICT", "CLUSTERED", "SORTED", - "PURGE", "INPUTFORMAT", "OUTPUTFORMAT", - "DATABASE", "DATABASES", "DFS", - "TRUNCATE", "ANALYZE", "COMPUTE", - "LIST", "STATISTICS", "PARTITIONED", - "EXTERNAL", "DEFINED", "REVOKE", - "GRANT", "LOCK", "UNLOCK", "MSCK", - "REPAIR", "RECOVER", "EXPORT", + "CONSTRAINT", "RESTRICT", "CLUSTERED", + "SORTED", "PURGE", "INPUTFORMAT", + "OUTPUTFORMAT", "DATABASE", "DATABASES", + "DFS", "TRUNCATE", "ANALYZE", + "COMPUTE", "LIST", "STATISTICS", + "PARTITIONED", "EXTERNAL", "DEFINED", + "REVOKE", "GRANT", "LOCK", "UNLOCK", + "MSCK", "REPAIR", "RECOVER", "EXPORT", "IMPORT", "LOAD", "ROLE", "ROLES", "COMPACTIONS", "PRINCIPALS", "TRANSACTIONS", "INDEX", "INDEXES", "LOCKS", "OPTION", @@ -2311,27 +2383,29 @@ FlinkSqlLexer.prototype.symbolicNames = [ null, "SPACE", "COMMENT_INPUT", "DEFINE", "WS", "SYSTEM", "INCLUDING", "EXCLUDING", "CONSTRAINTS", "OVERWRITING", "GENERATED", "CATALOG", "LANGUAGE", - "CATALOGS", "VIEWS", "STRING", - "ARRAY", "MAP", "CHAR", "VARCHAR", - "BINARY", "VARBINARY", "BYTES", - "DECIMAL", "TINYINT", "SMALLINT", - "INT", "BIGINT", "FLOAT", "DOUBLE", - "DATE", "TIME", "TIMESTAMP", "MULTISET", - "BOOLEAN", "RAW", "ROW", "NULL", - "EQUAL_SYMBOL", "GREATER_SYMBOL", - "LESS_SYMBOL", "EXCLAMATION_SYMBOL", - "BIT_NOT_OP", "BIT_OR_OP", "BIT_AND_OP", - "BIT_XOR_OP", "DOT", "LS_BRACKET", - "RS_BRACKET", "LR_BRACKET", "RR_BRACKET", - "COMMA", "SEMICOLON", "AT_SIGN", - "SINGLE_QUOTE_SYMB", "DOUBLE_QUOTE_SYMB", - "REVERSE_QUOTE_SYMB", "COLON_SYMB", - "ASTERISK_SIGN", "UNDERLINE_SIGN", - "HYPNEN_SIGN", "ADD_SIGN", "PENCENT_SIGN", - "DOUBLE_VERTICAL_SIGN", "DOUBLE_HYPNEN_SIGN", - "SLASH_SIGN", "DOT_ID", "STRING_LITERAL", + "CATALOGS", "VIEWS", "PRIMARY", + "KEY", "PERIOD", "SYSTEM_TIME", + "STRING", "ARRAY", "MAP", "CHAR", + "VARCHAR", "BINARY", "VARBINARY", + "BYTES", "DECIMAL", "TINYINT", + "SMALLINT", "INT", "BIGINT", "FLOAT", + "DOUBLE", "DATE", "TIME", "TIMESTAMP", + "MULTISET", "BOOLEAN", "RAW", + "ROW", "NULL", "DATETIME", "EQUAL_SYMBOL", + "GREATER_SYMBOL", "LESS_SYMBOL", + "EXCLAMATION_SYMBOL", "BIT_NOT_OP", + "BIT_OR_OP", "BIT_AND_OP", "BIT_XOR_OP", + "DOT", "LS_BRACKET", "RS_BRACKET", + "LR_BRACKET", "RR_BRACKET", "COMMA", + "SEMICOLON", "AT_SIGN", "SINGLE_QUOTE_SYMB", + "DOUBLE_QUOTE_SYMB", "REVERSE_QUOTE_SYMB", + "COLON_SYMB", "ASTERISK_SIGN", + "UNDERLINE_SIGN", "HYPNEN_SIGN", + "ADD_SIGN", "PENCENT_SIGN", "DOUBLE_VERTICAL_SIGN", + "DOUBLE_HYPNEN_SIGN", "SLASH_SIGN", + "DOT_ID", "PLUS_DOT_ID", "STRING_LITERAL", "DIG_LITERAL", "REAL_LITERAL", - "BIT_STRING", "ID" ]; + "BIT_STRING", "ID_LITERAL", "PLUS_ID_LITERAL" ]; FlinkSqlLexer.prototype.ruleNames = [ "SPACE", "COMMENT_INPUT", "LINE_COMMENT", "SELECT", "FROM", "ADD", "AS", "ALL", @@ -2382,30 +2456,33 @@ FlinkSqlLexer.prototype.ruleNames = [ "SPACE", "COMMENT_INPUT", "LINE_COMMENT", "EXCHANGE", "ARCHIVE", "UNARCHIVE", "FILEFORMAT", "TOUCH", "COMPACT", "CONCATENATE", "CHANGE", "CASCADE", - "RESTRICT", "CLUSTERED", "SORTED", - "PURGE", "INPUTFORMAT", "OUTPUTFORMAT", - "DATABASE", "DATABASES", "DFS", "TRUNCATE", - "ANALYZE", "COMPUTE", "LIST", "STATISTICS", - "PARTITIONED", "EXTERNAL", "DEFINED", - "REVOKE", "GRANT", "LOCK", "UNLOCK", - "MSCK", "REPAIR", "RECOVER", "EXPORT", - "IMPORT", "LOAD", "ROLE", "ROLES", - "COMPACTIONS", "PRINCIPALS", "TRANSACTIONS", - "INDEX", "INDEXES", "LOCKS", "OPTION", - "ANTI", "LOCAL", "INPATH", "WATERMARK", - "UNNEST", "MATCH_RECOGNIZE", "MEASURES", - "ONE", "PER", "MATCH", "SKIP1", "NEXT", - "PAST", "PATTERN", "WITHIN", "DEFINE", - "WS", "SYSTEM", "INCLUDING", "EXCLUDING", - "CONSTRAINTS", "OVERWRITING", "GENERATED", - "CATALOG", "LANGUAGE", "CATALOGS", - "VIEWS", "STRING", "ARRAY", "MAP", - "CHAR", "VARCHAR", "BINARY", "VARBINARY", - "BYTES", "DECIMAL", "TINYINT", "SMALLINT", - "INT", "BIGINT", "FLOAT", "DOUBLE", - "DATE", "TIME", "TIMESTAMP", "MULTISET", - "BOOLEAN", "RAW", "ROW", "NULL", "EQUAL_SYMBOL", - "GREATER_SYMBOL", "LESS_SYMBOL", "EXCLAMATION_SYMBOL", + "CONSTRAINT", "RESTRICT", "CLUSTERED", + "SORTED", "PURGE", "INPUTFORMAT", + "OUTPUTFORMAT", "DATABASE", "DATABASES", + "DFS", "TRUNCATE", "ANALYZE", "COMPUTE", + "LIST", "STATISTICS", "PARTITIONED", + "EXTERNAL", "DEFINED", "REVOKE", "GRANT", + "LOCK", "UNLOCK", "MSCK", "REPAIR", + "RECOVER", "EXPORT", "IMPORT", "LOAD", + "ROLE", "ROLES", "COMPACTIONS", "PRINCIPALS", + "TRANSACTIONS", "INDEX", "INDEXES", + "LOCKS", "OPTION", "ANTI", "LOCAL", + "INPATH", "WATERMARK", "UNNEST", "MATCH_RECOGNIZE", + "MEASURES", "ONE", "PER", "MATCH", + "SKIP1", "NEXT", "PAST", "PATTERN", + "WITHIN", "DEFINE", "WS", "SYSTEM", + "INCLUDING", "EXCLUDING", "CONSTRAINTS", + "OVERWRITING", "GENERATED", "CATALOG", + "LANGUAGE", "CATALOGS", "VIEWS", "PRIMARY", + "KEY", "PERIOD", "SYSTEM_TIME", "STRING", + "ARRAY", "MAP", "CHAR", "VARCHAR", + "BINARY", "VARBINARY", "BYTES", "DECIMAL", + "TINYINT", "SMALLINT", "INT", "BIGINT", + "FLOAT", "DOUBLE", "DATE", "TIME", + "TIMESTAMP", "MULTISET", "BOOLEAN", + "RAW", "ROW", "NULL", "DATETIME", + "EQUAL_SYMBOL", "GREATER_SYMBOL", + "LESS_SYMBOL", "EXCLAMATION_SYMBOL", "BIT_NOT_OP", "BIT_OR_OP", "BIT_AND_OP", "BIT_XOR_OP", "DOT", "LS_BRACKET", "RS_BRACKET", "LR_BRACKET", "RR_BRACKET", @@ -2414,11 +2491,13 @@ FlinkSqlLexer.prototype.ruleNames = [ "SPACE", "COMMENT_INPUT", "LINE_COMMENT", "COLON_SYMB", "ASTERISK_SIGN", "UNDERLINE_SIGN", "HYPNEN_SIGN", "ADD_SIGN", "PENCENT_SIGN", "DOUBLE_VERTICAL_SIGN", "DOUBLE_HYPNEN_SIGN", - "SLASH_SIGN", "DOT_ID", "STRING_LITERAL", - "DIG_LITERAL", "REAL_LITERAL", "BIT_STRING", - "ID", "EXPONENT_NUM_PART", "ID_LITERAL", - "DEC_DIGIT", "DEC_LETTER", "DQUOTA_STRING", - "SQUOTA_STRING", "BIT_STRING_L", "BQUOTA_STRING" ]; + "SLASH_SIGN", "DOT_ID", "PLUS_DOT_ID", + "STRING_LITERAL", "DIG_LITERAL", "REAL_LITERAL", + "BIT_STRING", "ID_LITERAL", "PLUS_ID_LITERAL", + "EXPONENT_NUM_PART", "ID_LITERAL_FRAG", + "PLUS_ID_LITERAL_FRAG", "DEC_DIGIT", + "DEC_LETTER", "DQUOTA_STRING", "SQUOTA_STRING", + "BIT_STRING_L", "BQUOTA_STRING" ]; FlinkSqlLexer.prototype.grammarFileName = "FlinkSqlLexer.g4"; diff --git a/src/lib/flinksql/FlinkSqlLexer.tokens b/src/lib/flinksql/FlinkSqlLexer.tokens index ac05a70..2175cb9 100644 --- a/src/lib/flinksql/FlinkSqlLexer.tokens +++ b/src/lib/flinksql/FlinkSqlLexer.tokens @@ -187,126 +187,134 @@ COMPACT=186 CONCATENATE=187 CHANGE=188 CASCADE=189 -RESTRICT=190 -CLUSTERED=191 -SORTED=192 -PURGE=193 -INPUTFORMAT=194 -OUTPUTFORMAT=195 -DATABASE=196 -DATABASES=197 -DFS=198 -TRUNCATE=199 -ANALYZE=200 -COMPUTE=201 -LIST=202 -STATISTICS=203 -PARTITIONED=204 -EXTERNAL=205 -DEFINED=206 -REVOKE=207 -GRANT=208 -LOCK=209 -UNLOCK=210 -MSCK=211 -REPAIR=212 -RECOVER=213 -EXPORT=214 -IMPORT=215 -LOAD=216 -ROLE=217 -ROLES=218 -COMPACTIONS=219 -PRINCIPALS=220 -TRANSACTIONS=221 -INDEX=222 -INDEXES=223 -LOCKS=224 -OPTION=225 -ANTI=226 -LOCAL=227 -INPATH=228 -WATERMARK=229 -UNNEST=230 -MATCH_RECOGNIZE=231 -MEASURES=232 -ONE=233 -PER=234 -MATCH=235 -SKIP1=236 -NEXT=237 -PAST=238 -PATTERN=239 -WITHIN=240 -DEFINE=241 -WS=242 -SYSTEM=243 -INCLUDING=244 -EXCLUDING=245 -CONSTRAINTS=246 -OVERWRITING=247 -GENERATED=248 -CATALOG=249 -LANGUAGE=250 -CATALOGS=251 -VIEWS=252 -STRING=253 -ARRAY=254 -MAP=255 -CHAR=256 -VARCHAR=257 -BINARY=258 -VARBINARY=259 -BYTES=260 -DECIMAL=261 -TINYINT=262 -SMALLINT=263 -INT=264 -BIGINT=265 -FLOAT=266 -DOUBLE=267 -DATE=268 -TIME=269 -TIMESTAMP=270 -MULTISET=271 -BOOLEAN=272 -RAW=273 -ROW=274 -NULL=275 -EQUAL_SYMBOL=276 -GREATER_SYMBOL=277 -LESS_SYMBOL=278 -EXCLAMATION_SYMBOL=279 -BIT_NOT_OP=280 -BIT_OR_OP=281 -BIT_AND_OP=282 -BIT_XOR_OP=283 -DOT=284 -LS_BRACKET=285 -RS_BRACKET=286 -LR_BRACKET=287 -RR_BRACKET=288 -COMMA=289 -SEMICOLON=290 -AT_SIGN=291 -SINGLE_QUOTE_SYMB=292 -DOUBLE_QUOTE_SYMB=293 -REVERSE_QUOTE_SYMB=294 -COLON_SYMB=295 -ASTERISK_SIGN=296 -UNDERLINE_SIGN=297 -HYPNEN_SIGN=298 -ADD_SIGN=299 -PENCENT_SIGN=300 -DOUBLE_VERTICAL_SIGN=301 -DOUBLE_HYPNEN_SIGN=302 -SLASH_SIGN=303 -DOT_ID=304 -STRING_LITERAL=305 -DIG_LITERAL=306 -REAL_LITERAL=307 -BIT_STRING=308 -ID=309 +CONSTRAINT=190 +RESTRICT=191 +CLUSTERED=192 +SORTED=193 +PURGE=194 +INPUTFORMAT=195 +OUTPUTFORMAT=196 +DATABASE=197 +DATABASES=198 +DFS=199 +TRUNCATE=200 +ANALYZE=201 +COMPUTE=202 +LIST=203 +STATISTICS=204 +PARTITIONED=205 +EXTERNAL=206 +DEFINED=207 +REVOKE=208 +GRANT=209 +LOCK=210 +UNLOCK=211 +MSCK=212 +REPAIR=213 +RECOVER=214 +EXPORT=215 +IMPORT=216 +LOAD=217 +ROLE=218 +ROLES=219 +COMPACTIONS=220 +PRINCIPALS=221 +TRANSACTIONS=222 +INDEX=223 +INDEXES=224 +LOCKS=225 +OPTION=226 +ANTI=227 +LOCAL=228 +INPATH=229 +WATERMARK=230 +UNNEST=231 +MATCH_RECOGNIZE=232 +MEASURES=233 +ONE=234 +PER=235 +MATCH=236 +SKIP1=237 +NEXT=238 +PAST=239 +PATTERN=240 +WITHIN=241 +DEFINE=242 +WS=243 +SYSTEM=244 +INCLUDING=245 +EXCLUDING=246 +CONSTRAINTS=247 +OVERWRITING=248 +GENERATED=249 +CATALOG=250 +LANGUAGE=251 +CATALOGS=252 +VIEWS=253 +PRIMARY=254 +KEY=255 +PERIOD=256 +SYSTEM_TIME=257 +STRING=258 +ARRAY=259 +MAP=260 +CHAR=261 +VARCHAR=262 +BINARY=263 +VARBINARY=264 +BYTES=265 +DECIMAL=266 +TINYINT=267 +SMALLINT=268 +INT=269 +BIGINT=270 +FLOAT=271 +DOUBLE=272 +DATE=273 +TIME=274 +TIMESTAMP=275 +MULTISET=276 +BOOLEAN=277 +RAW=278 +ROW=279 +NULL=280 +DATETIME=281 +EQUAL_SYMBOL=282 +GREATER_SYMBOL=283 +LESS_SYMBOL=284 +EXCLAMATION_SYMBOL=285 +BIT_NOT_OP=286 +BIT_OR_OP=287 +BIT_AND_OP=288 +BIT_XOR_OP=289 +DOT=290 +LS_BRACKET=291 +RS_BRACKET=292 +LR_BRACKET=293 +RR_BRACKET=294 +COMMA=295 +SEMICOLON=296 +AT_SIGN=297 +SINGLE_QUOTE_SYMB=298 +DOUBLE_QUOTE_SYMB=299 +REVERSE_QUOTE_SYMB=300 +COLON_SYMB=301 +ASTERISK_SIGN=302 +UNDERLINE_SIGN=303 +HYPNEN_SIGN=304 +ADD_SIGN=305 +PENCENT_SIGN=306 +DOUBLE_VERTICAL_SIGN=307 +DOUBLE_HYPNEN_SIGN=308 +SLASH_SIGN=309 +DOT_ID=310 +PLUS_DOT_ID=311 +STRING_LITERAL=312 +DIG_LITERAL=313 +REAL_LITERAL=314 +BIT_STRING=315 +ID_LITERAL=316 +PLUS_ID_LITERAL=317 'SELECT'=4 'FROM'=5 'ADD'=6 @@ -493,117 +501,123 @@ ID=309 'CONCATENATE'=187 'CHANGE'=188 'CASCADE'=189 -'RESTRICT'=190 -'CLUSTERED'=191 -'SORTED'=192 -'PURGE'=193 -'INPUTFORMAT'=194 -'OUTPUTFORMAT'=195 -'DATABASE'=196 -'DATABASES'=197 -'DFS'=198 -'TRUNCATE'=199 -'ANALYZE'=200 -'COMPUTE'=201 -'LIST'=202 -'STATISTICS'=203 -'PARTITIONED'=204 -'EXTERNAL'=205 -'DEFINED'=206 -'REVOKE'=207 -'GRANT'=208 -'LOCK'=209 -'UNLOCK'=210 -'MSCK'=211 -'REPAIR'=212 -'RECOVER'=213 -'EXPORT'=214 -'IMPORT'=215 -'LOAD'=216 -'ROLE'=217 -'ROLES'=218 -'COMPACTIONS'=219 -'PRINCIPALS'=220 -'TRANSACTIONS'=221 -'INDEX'=222 -'INDEXES'=223 -'LOCKS'=224 -'OPTION'=225 -'ANTI'=226 -'LOCAL'=227 -'INPATH'=228 -'WATERMARK'=229 -'UNNEST'=230 -'MATCH_RECOGNIZE'=231 -'MEASURES'=232 -'ONE'=233 -'PER'=234 -'MATCH'=235 -'SKIP1'=236 -'NEXT'=237 -'PAST'=238 -'PATTERN'=239 -'WITHIN'=240 -'DEFINE'=241 -'WS'=242 -'SYSTEM'=243 -'INCLUDING'=244 -'EXCLUDING'=245 -'CONSTRAINTS'=246 -'OVERWRITING'=247 -'GENERATED'=248 -'CATALOG'=249 -'LANGUAGE'=250 -'CATALOGS'=251 -'VIEWS'=252 -'STRING'=253 -'ARRAY'=254 -'MAP'=255 -'CHAR'=256 -'VARCHAR'=257 -'BINARY'=258 -'VARBINARY'=259 -'BYTES'=260 -'DECIMAL'=261 -'TINYINT'=262 -'SMALLINT'=263 -'INT'=264 -'BIGINT'=265 -'FLOAT'=266 -'DOUBLE'=267 -'DATE'=268 -'TIME'=269 -'TIMESTAMP'=270 -'MULTISET'=271 -'BOOLEAN'=272 -'RAW'=273 -'ROW'=274 -'NULL'=275 -'='=276 -'>'=277 -'<'=278 -'!'=279 -'~'=280 -'|'=281 -'&'=282 -'^'=283 -'.'=284 -'['=285 -']'=286 -'('=287 -')'=288 -','=289 -';'=290 -'@'=291 -'\''=292 -'"'=293 -'`'=294 -':'=295 -'*'=296 -'_'=297 -'-'=298 -'+'=299 -'%'=300 -'||'=301 -'--'=302 -'/'=303 +'CONSTRAINT'=190 +'RESTRICT'=191 +'CLUSTERED'=192 +'SORTED'=193 +'PURGE'=194 +'INPUTFORMAT'=195 +'OUTPUTFORMAT'=196 +'DATABASE'=197 +'DATABASES'=198 +'DFS'=199 +'TRUNCATE'=200 +'ANALYZE'=201 +'COMPUTE'=202 +'LIST'=203 +'STATISTICS'=204 +'PARTITIONED'=205 +'EXTERNAL'=206 +'DEFINED'=207 +'REVOKE'=208 +'GRANT'=209 +'LOCK'=210 +'UNLOCK'=211 +'MSCK'=212 +'REPAIR'=213 +'RECOVER'=214 +'EXPORT'=215 +'IMPORT'=216 +'LOAD'=217 +'ROLE'=218 +'ROLES'=219 +'COMPACTIONS'=220 +'PRINCIPALS'=221 +'TRANSACTIONS'=222 +'INDEX'=223 +'INDEXES'=224 +'LOCKS'=225 +'OPTION'=226 +'ANTI'=227 +'LOCAL'=228 +'INPATH'=229 +'WATERMARK'=230 +'UNNEST'=231 +'MATCH_RECOGNIZE'=232 +'MEASURES'=233 +'ONE'=234 +'PER'=235 +'MATCH'=236 +'SKIP1'=237 +'NEXT'=238 +'PAST'=239 +'PATTERN'=240 +'WITHIN'=241 +'DEFINE'=242 +'WS'=243 +'SYSTEM'=244 +'INCLUDING'=245 +'EXCLUDING'=246 +'CONSTRAINTS'=247 +'OVERWRITING'=248 +'GENERATED'=249 +'CATALOG'=250 +'LANGUAGE'=251 +'CATALOGS'=252 +'VIEWS'=253 +'PRIMARY'=254 +'KEY'=255 +'PERIOD'=256 +'SYSTEM_TIME'=257 +'STRING'=258 +'ARRAY'=259 +'MAP'=260 +'CHAR'=261 +'VARCHAR'=262 +'BINARY'=263 +'VARBINARY'=264 +'BYTES'=265 +'DECIMAL'=266 +'TINYINT'=267 +'SMALLINT'=268 +'INT'=269 +'BIGINT'=270 +'FLOAT'=271 +'DOUBLE'=272 +'DATE'=273 +'TIME'=274 +'TIMESTAMP'=275 +'MULTISET'=276 +'BOOLEAN'=277 +'RAW'=278 +'ROW'=279 +'NULL'=280 +'DATETIME'=281 +'='=282 +'>'=283 +'<'=284 +'!'=285 +'~'=286 +'|'=287 +'&'=288 +'^'=289 +'.'=290 +'['=291 +']'=292 +'('=293 +')'=294 +','=295 +';'=296 +'@'=297 +'\''=298 +'"'=299 +'`'=300 +':'=301 +'*'=302 +'_'=303 +'-'=304 +'+'=305 +'%'=306 +'||'=307 +'--'=308 +'/'=309 diff --git a/src/lib/flinksql/FlinkSqlParser.interp b/src/lib/flinksql/FlinkSqlParser.interp index d09a006..d47e9e3 100644 --- a/src/lib/flinksql/FlinkSqlParser.interp +++ b/src/lib/flinksql/FlinkSqlParser.interp @@ -189,6 +189,7 @@ null 'CONCATENATE' 'CHANGE' 'CASCADE' +'CONSTRAINT' 'RESTRICT' 'CLUSTERED' 'SORTED' @@ -252,6 +253,10 @@ null 'LANGUAGE' 'CATALOGS' 'VIEWS' +'PRIMARY' +'KEY' +'PERIOD' +'SYSTEM_TIME' 'STRING' 'ARRAY' 'MAP' @@ -275,6 +280,7 @@ null 'RAW' 'ROW' 'NULL' +'DATETIME' '=' '>' '<' @@ -309,6 +315,8 @@ null null null null +null +null token symbolic names: null @@ -501,6 +509,7 @@ COMPACT CONCATENATE CHANGE CASCADE +CONSTRAINT RESTRICT CLUSTERED SORTED @@ -564,6 +573,10 @@ CATALOG LANGUAGE CATALOGS VIEWS +PRIMARY +KEY +PERIOD +SYSTEM_TIME STRING ARRAY MAP @@ -587,6 +600,7 @@ BOOLEAN RAW ROW NULL +DATETIME EQUAL_SYMBOL GREATER_SYMBOL LESS_SYMBOL @@ -616,11 +630,13 @@ DOUBLE_VERTICAL_SIGN DOUBLE_HYPNEN_SIGN SLASH_SIGN DOT_ID +PLUS_DOT_ID STRING_LITERAL DIG_LITERAL REAL_LITERAL BIT_STRING -ID +ID_LITERAL +PLUS_ID_LITERAL rule names: program @@ -637,10 +653,13 @@ showStatememt createTable columnOptionDefinition columnName +columnNameList columnType lengthOneDimension commentSpec watermarkDefinition +tableConstraint +selfDefinitionClause partitionDefinition transformList transform @@ -701,6 +720,7 @@ multiUnitsInterval errorCapturingUnitToUnitInterval unitToUnitInterval intervalValue +columnAlias tableAlias errorCapturingIdentifier errorCapturingIdentifierExtra @@ -713,6 +733,7 @@ quotedIdentifier whenClause uidList uid +plusUid withOption ifNotExists ifExists @@ -734,4 +755,4 @@ setQuantifier atn: -[3, 24715, 42794, 33075, 47597, 16764, 15335, 30598, 22884, 3, 311, 1298, 4, 2, 9, 2, 4, 3, 9, 3, 4, 4, 9, 4, 4, 5, 9, 5, 4, 6, 9, 6, 4, 7, 9, 7, 4, 8, 9, 8, 4, 9, 9, 9, 4, 10, 9, 10, 4, 11, 9, 11, 4, 12, 9, 12, 4, 13, 9, 13, 4, 14, 9, 14, 4, 15, 9, 15, 4, 16, 9, 16, 4, 17, 9, 17, 4, 18, 9, 18, 4, 19, 9, 19, 4, 20, 9, 20, 4, 21, 9, 21, 4, 22, 9, 22, 4, 23, 9, 23, 4, 24, 9, 24, 4, 25, 9, 25, 4, 26, 9, 26, 4, 27, 9, 27, 4, 28, 9, 28, 4, 29, 9, 29, 4, 30, 9, 30, 4, 31, 9, 31, 4, 32, 9, 32, 4, 33, 9, 33, 4, 34, 9, 34, 4, 35, 9, 35, 4, 36, 9, 36, 4, 37, 9, 37, 4, 38, 9, 38, 4, 39, 9, 39, 4, 40, 9, 40, 4, 41, 9, 41, 4, 42, 9, 42, 4, 43, 9, 43, 4, 44, 9, 44, 4, 45, 9, 45, 4, 46, 9, 46, 4, 47, 9, 47, 4, 48, 9, 48, 4, 49, 9, 49, 4, 50, 9, 50, 4, 51, 9, 51, 4, 52, 9, 52, 4, 53, 9, 53, 4, 54, 9, 54, 4, 55, 9, 55, 4, 56, 9, 56, 4, 57, 9, 57, 4, 58, 9, 58, 4, 59, 9, 59, 4, 60, 9, 60, 4, 61, 9, 61, 4, 62, 9, 62, 4, 63, 9, 63, 4, 64, 9, 64, 4, 65, 9, 65, 4, 66, 9, 66, 4, 67, 9, 67, 4, 68, 9, 68, 4, 69, 9, 69, 4, 70, 9, 70, 4, 71, 9, 71, 4, 72, 9, 72, 4, 73, 9, 73, 4, 74, 9, 74, 4, 75, 9, 75, 4, 76, 9, 76, 4, 77, 9, 77, 4, 78, 9, 78, 4, 79, 9, 79, 4, 80, 9, 80, 4, 81, 9, 81, 4, 82, 9, 82, 4, 83, 9, 83, 4, 84, 9, 84, 4, 85, 9, 85, 4, 86, 9, 86, 4, 87, 9, 87, 4, 88, 9, 88, 4, 89, 9, 89, 4, 90, 9, 90, 4, 91, 9, 91, 4, 92, 9, 92, 4, 93, 9, 93, 4, 94, 9, 94, 4, 95, 9, 95, 4, 96, 9, 96, 4, 97, 9, 97, 4, 98, 9, 98, 4, 99, 9, 99, 4, 100, 9, 100, 4, 101, 9, 101, 4, 102, 9, 102, 4, 103, 9, 103, 4, 104, 9, 104, 4, 105, 9, 105, 4, 106, 9, 106, 4, 107, 9, 107, 4, 108, 9, 108, 4, 109, 9, 109, 3, 2, 3, 2, 3, 2, 3, 3, 3, 3, 3, 3, 3, 4, 3, 4, 5, 4, 227, 10, 4, 3, 4, 7, 4, 230, 10, 4, 12, 4, 14, 4, 233, 11, 4, 3, 5, 3, 5, 3, 5, 3, 5, 3, 5, 3, 5, 5, 5, 241, 10, 5, 3, 6, 3, 6, 3, 7, 3, 7, 3, 7, 3, 7, 3, 7, 3, 7, 3, 7, 3, 7, 3, 7, 3, 7, 3, 7, 3, 7, 5, 7, 257, 10, 7, 3, 8, 3, 8, 5, 8, 261, 10, 8, 3, 9, 3, 9, 3, 9, 3, 10, 3, 10, 3, 10, 3, 10, 3, 10, 3, 11, 3, 11, 5, 11, 273, 10, 11, 3, 11, 3, 11, 3, 12, 3, 12, 3, 12, 3, 13, 3, 13, 3, 13, 3, 13, 3, 13, 3, 13, 3, 13, 7, 13, 287, 10, 13, 12, 13, 14, 13, 290, 11, 13, 3, 13, 5, 13, 293, 10, 13, 3, 13, 3, 13, 5, 13, 297, 10, 13, 3, 13, 5, 13, 300, 10, 13, 3, 13, 3, 13, 5, 13, 304, 10, 13, 3, 14, 3, 14, 3, 14, 5, 14, 309, 10, 14, 3, 15, 3, 15, 3, 16, 3, 16, 3, 17, 3, 17, 3, 17, 3, 17, 3, 18, 3, 18, 3, 18, 3, 19, 3, 19, 3, 19, 3, 19, 3, 19, 3, 19, 3, 20, 3, 20, 3, 20, 3, 20, 3, 21, 3, 21, 3, 21, 3, 21, 7, 21, 336, 10, 21, 12, 21, 14, 21, 339, 11, 21, 3, 21, 3, 21, 3, 22, 3, 22, 3, 22, 3, 22, 3, 22, 3, 22, 7, 22, 349, 10, 22, 12, 22, 14, 22, 352, 11, 22, 3, 22, 3, 22, 5, 22, 356, 10, 22, 3, 23, 3, 23, 5, 23, 360, 10, 23, 3, 24, 3, 24, 3, 24, 3, 24, 3, 25, 3, 25, 3, 25, 3, 25, 5, 25, 370, 10, 25, 3, 26, 3, 26, 3, 26, 3, 26, 3, 26, 3, 27, 3, 27, 3, 27, 5, 27, 380, 10, 27, 3, 27, 3, 27, 5, 27, 384, 10, 27, 3, 27, 3, 27, 3, 28, 3, 28, 5, 28, 390, 10, 28, 3, 28, 3, 28, 5, 28, 394, 10, 28, 3, 28, 3, 28, 3, 28, 3, 28, 7, 28, 400, 10, 28, 12, 28, 14, 28, 403, 11, 28, 5, 28, 405, 10, 28, 3, 28, 5, 28, 408, 10, 28, 3, 28, 3, 28, 3, 28, 3, 29, 3, 29, 3, 29, 3, 29, 5, 29, 417, 10, 29, 3, 29, 3, 29, 5, 29, 421, 10, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 5, 29, 428, 10, 29, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 5, 30, 435, 10, 30, 3, 31, 3, 31, 3, 31, 3, 31, 3, 32, 3, 32, 3, 32, 3, 33, 3, 33, 3, 33, 3, 33, 3, 33, 3, 34, 3, 34, 3, 34, 3, 34, 5, 34, 453, 10, 34, 3, 34, 3, 34, 5, 34, 457, 10, 34, 3, 34, 3, 34, 3, 34, 3, 34, 3, 34, 5, 34, 464, 10, 34, 3, 35, 3, 35, 3, 35, 5, 35, 469, 10, 35, 3, 35, 3, 35, 3, 36, 3, 36, 3, 36, 5, 36, 476, 10, 36, 3, 36, 3, 36, 5, 36, 480, 10, 36, 3, 37, 3, 37, 5, 37, 484, 10, 37, 3, 37, 3, 37, 5, 37, 488, 10, 37, 3, 37, 3, 37, 3, 38, 3, 38, 3, 38, 3, 38, 5, 38, 496, 10, 38, 3, 38, 3, 38, 5, 38, 500, 10, 38, 3, 38, 3, 38, 3, 39, 3, 39, 3, 39, 3, 39, 5, 39, 508, 10, 39, 3, 39, 3, 39, 5, 39, 512, 10, 39, 3, 40, 3, 40, 3, 40, 3, 41, 3, 41, 3, 41, 3, 41, 7, 41, 521, 10, 41, 12, 41, 14, 41, 524, 11, 41, 3, 42, 3, 42, 3, 42, 3, 42, 7, 42, 530, 10, 42, 12, 42, 14, 42, 533, 11, 42, 3, 42, 3, 42, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 5, 43, 545, 10, 43, 3, 43, 5, 43, 548, 10, 43, 3, 43, 3, 43, 5, 43, 552, 10, 43, 3, 43, 5, 43, 555, 10, 43, 5, 43, 557, 10, 43, 3, 43, 3, 43, 3, 43, 5, 43, 562, 10, 43, 3, 43, 3, 43, 5, 43, 566, 10, 43, 3, 43, 5, 43, 569, 10, 43, 7, 43, 571, 10, 43, 12, 43, 14, 43, 574, 11, 43, 3, 44, 3, 44, 3, 44, 3, 44, 7, 44, 580, 10, 44, 12, 44, 14, 44, 583, 11, 44, 3, 45, 3, 45, 3, 45, 5, 45, 588, 10, 45, 3, 45, 5, 45, 591, 10, 45, 3, 45, 5, 45, 594, 10, 45, 3, 45, 5, 45, 597, 10, 45, 3, 46, 3, 46, 5, 46, 601, 10, 46, 3, 46, 3, 46, 3, 46, 3, 46, 7, 46, 607, 10, 46, 12, 46, 14, 46, 610, 11, 46, 5, 46, 612, 10, 46, 3, 47, 3, 47, 5, 47, 616, 10, 47, 3, 47, 5, 47, 619, 10, 47, 3, 48, 3, 48, 3, 48, 3, 49, 3, 49, 3, 49, 3, 49, 7, 49, 628, 10, 49, 12, 49, 14, 49, 631, 11, 49, 3, 49, 3, 49, 5, 49, 635, 10, 49, 3, 49, 5, 49, 638, 10, 49, 3, 49, 3, 49, 3, 49, 5, 49, 643, 10, 49, 7, 49, 645, 10, 49, 12, 49, 14, 49, 648, 11, 49, 3, 50, 3, 50, 5, 50, 652, 10, 50, 3, 51, 5, 51, 655, 10, 51, 3, 51, 3, 51, 3, 51, 3, 51, 3, 51, 3, 51, 3, 51, 3, 51, 3, 51, 7, 51, 666, 10, 51, 12, 51, 14, 51, 669, 11, 51, 3, 51, 3, 51, 3, 51, 3, 51, 3, 51, 3, 51, 3, 51, 3, 51, 5, 51, 679, 10, 51, 3, 52, 3, 52, 3, 52, 3, 52, 3, 52, 3, 52, 3, 52, 7, 52, 688, 10, 52, 12, 52, 14, 52, 691, 11, 52, 3, 52, 3, 52, 5, 52, 695, 10, 52, 3, 53, 3, 53, 3, 53, 3, 54, 3, 54, 3, 54, 3, 54, 3, 54, 7, 54, 705, 10, 54, 12, 54, 14, 54, 708, 11, 54, 3, 55, 3, 55, 3, 55, 3, 55, 3, 55, 3, 55, 3, 55, 7, 55, 717, 10, 55, 12, 55, 14, 55, 720, 11, 55, 3, 55, 3, 55, 3, 55, 3, 55, 3, 55, 3, 55, 3, 55, 7, 55, 729, 10, 55, 12, 55, 14, 55, 732, 11, 55, 3, 55, 3, 55, 3, 55, 3, 55, 3, 55, 3, 55, 3, 55, 7, 55, 741, 10, 55, 12, 55, 14, 55, 744, 11, 55, 3, 55, 3, 55, 3, 55, 3, 55, 3, 55, 3, 55, 3, 55, 3, 55, 7, 55, 754, 10, 55, 12, 55, 14, 55, 757, 11, 55, 3, 55, 3, 55, 5, 55, 761, 10, 55, 3, 56, 3, 56, 3, 56, 3, 57, 3, 57, 3, 57, 3, 57, 3, 57, 7, 57, 771, 10, 57, 12, 57, 14, 57, 774, 11, 57, 3, 58, 3, 58, 5, 58, 778, 10, 58, 3, 59, 3, 59, 3, 59, 5, 59, 783, 10, 59, 3, 60, 3, 60, 3, 60, 3, 60, 7, 60, 789, 10, 60, 12, 60, 14, 60, 792, 11, 60, 3, 61, 3, 61, 3, 61, 3, 61, 3, 62, 5, 62, 799, 10, 62, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 7, 62, 807, 10, 62, 12, 62, 14, 62, 810, 11, 62, 5, 62, 812, 10, 62, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 7, 62, 819, 10, 62, 12, 62, 14, 62, 822, 11, 62, 5, 62, 824, 10, 62, 3, 62, 5, 62, 827, 10, 62, 3, 62, 3, 62, 3, 63, 3, 63, 5, 63, 833, 10, 63, 3, 63, 3, 63, 5, 63, 837, 10, 63, 3, 64, 3, 64, 3, 64, 3, 64, 5, 64, 843, 10, 64, 3, 65, 3, 65, 3, 65, 3, 66, 3, 66, 3, 67, 3, 67, 3, 67, 3, 67, 3, 67, 3, 67, 3, 67, 3, 67, 3, 67, 3, 67, 5, 67, 860, 10, 67, 5, 67, 862, 10, 67, 3, 67, 3, 67, 3, 67, 3, 67, 3, 67, 3, 67, 7, 67, 870, 10, 67, 12, 67, 14, 67, 873, 11, 67, 3, 68, 5, 68, 876, 10, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 5, 68, 884, 10, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 7, 68, 891, 10, 68, 12, 68, 14, 68, 894, 11, 68, 3, 68, 3, 68, 3, 68, 5, 68, 899, 10, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 5, 68, 912, 10, 68, 3, 68, 3, 68, 3, 68, 5, 68, 917, 10, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 7, 68, 927, 10, 68, 12, 68, 14, 68, 930, 11, 68, 3, 68, 3, 68, 5, 68, 934, 10, 68, 3, 68, 5, 68, 937, 10, 68, 3, 68, 3, 68, 3, 68, 3, 68, 5, 68, 943, 10, 68, 3, 68, 3, 68, 3, 68, 5, 68, 948, 10, 68, 3, 68, 3, 68, 3, 68, 5, 68, 953, 10, 68, 3, 68, 3, 68, 3, 68, 5, 68, 958, 10, 68, 3, 69, 3, 69, 3, 69, 3, 69, 5, 69, 964, 10, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 7, 69, 985, 10, 69, 12, 69, 14, 69, 988, 11, 69, 3, 70, 3, 70, 3, 70, 6, 70, 993, 10, 70, 13, 70, 14, 70, 994, 3, 70, 3, 70, 5, 70, 999, 10, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 6, 70, 1006, 10, 70, 13, 70, 14, 70, 1007, 3, 70, 3, 70, 5, 70, 1012, 10, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 5, 70, 1021, 10, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 5, 70, 1030, 10, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 5, 70, 1054, 10, 70, 3, 70, 3, 70, 3, 70, 7, 70, 1059, 10, 70, 12, 70, 14, 70, 1062, 11, 70, 5, 70, 1064, 10, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 5, 70, 1074, 10, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 7, 70, 1081, 10, 70, 12, 70, 14, 70, 1084, 11, 70, 3, 71, 3, 71, 3, 72, 3, 72, 3, 73, 3, 73, 3, 73, 7, 73, 1093, 10, 73, 12, 73, 14, 73, 1096, 11, 73, 3, 74, 3, 74, 3, 74, 5, 74, 1101, 10, 74, 3, 75, 3, 75, 5, 75, 1105, 10, 75, 3, 76, 3, 76, 3, 76, 6, 76, 1110, 10, 76, 13, 76, 14, 76, 1111, 3, 77, 3, 77, 3, 77, 5, 77, 1117, 10, 77, 3, 78, 3, 78, 3, 78, 3, 78, 3, 78, 3, 79, 5, 79, 1125, 10, 79, 3, 79, 3, 79, 5, 79, 1129, 10, 79, 3, 80, 5, 80, 1132, 10, 80, 3, 80, 3, 80, 5, 80, 1136, 10, 80, 3, 81, 3, 81, 3, 81, 3, 82, 3, 82, 6, 82, 1143, 10, 82, 13, 82, 14, 82, 1144, 3, 82, 5, 82, 1148, 10, 82, 3, 83, 3, 83, 3, 83, 3, 83, 3, 84, 3, 84, 3, 84, 7, 84, 1157, 10, 84, 12, 84, 14, 84, 1160, 11, 84, 3, 85, 3, 85, 3, 86, 3, 86, 5, 86, 1166, 10, 86, 3, 87, 3, 87, 3, 88, 3, 88, 3, 89, 3, 89, 3, 89, 3, 89, 3, 89, 3, 90, 3, 90, 3, 90, 7, 90, 1180, 10, 90, 12, 90, 14, 90, 1183, 11, 90, 3, 91, 3, 91, 7, 91, 1187, 10, 91, 12, 91, 14, 91, 1190, 11, 91, 3, 92, 3, 92, 3, 92, 3, 93, 3, 93, 3, 93, 3, 93, 3, 94, 3, 94, 3, 94, 3, 95, 3, 95, 3, 95, 3, 95, 7, 95, 1206, 10, 95, 12, 95, 14, 95, 1209, 11, 95, 3, 95, 3, 95, 3, 96, 3, 96, 5, 96, 1215, 10, 96, 3, 96, 5, 96, 1218, 10, 96, 3, 97, 3, 97, 3, 97, 7, 97, 1223, 10, 97, 12, 97, 14, 97, 1226, 11, 97, 3, 97, 5, 97, 1229, 10, 97, 3, 98, 3, 98, 3, 98, 3, 98, 5, 98, 1235, 10, 98, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 5, 99, 1243, 10, 99, 3, 100, 3, 100, 3, 100, 3, 100, 3, 100, 3, 100, 3, 100, 3, 100, 3, 100, 3, 100, 3, 100, 3, 100, 3, 100, 3, 100, 5, 100, 1259, 10, 100, 3, 101, 3, 101, 3, 101, 3, 101, 3, 101, 3, 101, 3, 101, 5, 101, 1268, 10, 101, 3, 102, 3, 102, 3, 103, 3, 103, 3, 104, 3, 104, 3, 105, 3, 105, 3, 105, 3, 105, 3, 105, 3, 105, 3, 105, 3, 105, 3, 105, 5, 105, 1285, 10, 105, 3, 105, 5, 105, 1288, 10, 105, 3, 106, 3, 106, 3, 107, 3, 107, 3, 108, 3, 108, 3, 109, 3, 109, 3, 109, 3, 1188, 7, 84, 96, 132, 136, 138, 110, 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, 2, 24, 6, 2, 88, 88, 93, 93, 199, 199, 253, 254, 3, 2, 255, 277, 3, 2, 246, 247, 4, 2, 10, 10, 248, 248, 4, 2, 174, 174, 250, 250, 3, 2, 191, 192, 4, 2, 79, 79, 147, 147, 4, 2, 95, 96, 98, 98, 4, 2, 50, 50, 52, 53, 3, 2, 37, 38, 4, 2, 67, 67, 69, 69, 3, 2, 10, 11, 3, 2, 34, 35, 4, 2, 282, 282, 300, 301, 6, 2, 134, 134, 298, 298, 302, 302, 305, 305, 4, 2, 300, 301, 303, 303, 3, 2, 300, 301, 3, 2, 308, 309, 4, 2, 308, 308, 311, 311, 6, 2, 134, 134, 298, 298, 300, 302, 304, 305, 5, 2, 27, 27, 281, 282, 300, 301, 4, 2, 10, 10, 12, 12, 2, 1405, 2, 218, 3, 2, 2, 2, 4, 221, 3, 2, 2, 2, 6, 231, 3, 2, 2, 2, 8, 240, 3, 2, 2, 2, 10, 242, 3, 2, 2, 2, 12, 256, 3, 2, 2, 2, 14, 260, 3, 2, 2, 2, 16, 262, 3, 2, 2, 2, 18, 265, 3, 2, 2, 2, 20, 270, 3, 2, 2, 2, 22, 276, 3, 2, 2, 2, 24, 279, 3, 2, 2, 2, 26, 305, 3, 2, 2, 2, 28, 310, 3, 2, 2, 2, 30, 312, 3, 2, 2, 2, 32, 314, 3, 2, 2, 2, 34, 318, 3, 2, 2, 2, 36, 321, 3, 2, 2, 2, 38, 327, 3, 2, 2, 2, 40, 331, 3, 2, 2, 2, 42, 355, 3, 2, 2, 2, 44, 359, 3, 2, 2, 2, 46, 361, 3, 2, 2, 2, 48, 369, 3, 2, 2, 2, 50, 371, 3, 2, 2, 2, 52, 376, 3, 2, 2, 2, 54, 387, 3, 2, 2, 2, 56, 412, 3, 2, 2, 2, 58, 429, 3, 2, 2, 2, 60, 436, 3, 2, 2, 2, 62, 440, 3, 2, 2, 2, 64, 443, 3, 2, 2, 2, 66, 448, 3, 2, 2, 2, 68, 465, 3, 2, 2, 2, 70, 472, 3, 2, 2, 2, 72, 481, 3, 2, 2, 2, 74, 491, 3, 2, 2, 2, 76, 503, 3, 2, 2, 2, 78, 513, 3, 2, 2, 2, 80, 516, 3, 2, 2, 2, 82, 525, 3, 2, 2, 2, 84, 556, 3, 2, 2, 2, 86, 575, 3, 2, 2, 2, 88, 584, 3, 2, 2, 2, 90, 598, 3, 2, 2, 2, 92, 613, 3, 2, 2, 2, 94, 620, 3, 2, 2, 2, 96, 623, 3, 2, 2, 2, 98, 649, 3, 2, 2, 2, 100, 678, 3, 2, 2, 2, 102, 694, 3, 2, 2, 2, 104, 696, 3, 2, 2, 2, 106, 699, 3, 2, 2, 2, 108, 760, 3, 2, 2, 2, 110, 762, 3, 2, 2, 2, 112, 765, 3, 2, 2, 2, 114, 775, 3, 2, 2, 2, 116, 779, 3, 2, 2, 2, 118, 784, 3, 2, 2, 2, 120, 793, 3, 2, 2, 2, 122, 798, 3, 2, 2, 2, 124, 830, 3, 2, 2, 2, 126, 842, 3, 2, 2, 2, 128, 844, 3, 2, 2, 2, 130, 847, 3, 2, 2, 2, 132, 861, 3, 2, 2, 2, 134, 957, 3, 2, 2, 2, 136, 963, 3, 2, 2, 2, 138, 1073, 3, 2, 2, 2, 140, 1085, 3, 2, 2, 2, 142, 1087, 3, 2, 2, 2, 144, 1089, 3, 2, 2, 2, 146, 1097, 3, 2, 2, 2, 148, 1102, 3, 2, 2, 2, 150, 1109, 3, 2, 2, 2, 152, 1113, 3, 2, 2, 2, 154, 1118, 3, 2, 2, 2, 156, 1128, 3, 2, 2, 2, 158, 1131, 3, 2, 2, 2, 160, 1137, 3, 2, 2, 2, 162, 1147, 3, 2, 2, 2, 164, 1149, 3, 2, 2, 2, 166, 1153, 3, 2, 2, 2, 168, 1161, 3, 2, 2, 2, 170, 1165, 3, 2, 2, 2, 172, 1167, 3, 2, 2, 2, 174, 1169, 3, 2, 2, 2, 176, 1171, 3, 2, 2, 2, 178, 1176, 3, 2, 2, 2, 180, 1184, 3, 2, 2, 2, 182, 1191, 3, 2, 2, 2, 184, 1194, 3, 2, 2, 2, 186, 1198, 3, 2, 2, 2, 188, 1201, 3, 2, 2, 2, 190, 1212, 3, 2, 2, 2, 192, 1228, 3, 2, 2, 2, 194, 1234, 3, 2, 2, 2, 196, 1242, 3, 2, 2, 2, 198, 1258, 3, 2, 2, 2, 200, 1267, 3, 2, 2, 2, 202, 1269, 3, 2, 2, 2, 204, 1271, 3, 2, 2, 2, 206, 1273, 3, 2, 2, 2, 208, 1287, 3, 2, 2, 2, 210, 1289, 3, 2, 2, 2, 212, 1291, 3, 2, 2, 2, 214, 1293, 3, 2, 2, 2, 216, 1295, 3, 2, 2, 2, 218, 219, 5, 4, 3, 2, 219, 220, 7, 2, 2, 3, 220, 3, 3, 2, 2, 2, 221, 222, 5, 6, 4, 2, 222, 223, 7, 2, 2, 3, 223, 5, 3, 2, 2, 2, 224, 226, 5, 8, 5, 2, 225, 227, 7, 292, 2, 2, 226, 225, 3, 2, 2, 2, 226, 227, 3, 2, 2, 2, 227, 230, 3, 2, 2, 2, 228, 230, 5, 10, 6, 2, 229, 224, 3, 2, 2, 2, 229, 228, 3, 2, 2, 2, 230, 233, 3, 2, 2, 2, 231, 229, 3, 2, 2, 2, 231, 232, 3, 2, 2, 2, 232, 7, 3, 2, 2, 2, 233, 231, 3, 2, 2, 2, 234, 241, 5, 12, 7, 2, 235, 241, 5, 14, 8, 2, 236, 241, 5, 16, 9, 2, 237, 241, 5, 18, 10, 2, 238, 241, 5, 20, 11, 2, 239, 241, 5, 22, 12, 2, 240, 234, 3, 2, 2, 2, 240, 235, 3, 2, 2, 2, 240, 236, 3, 2, 2, 2, 240, 237, 3, 2, 2, 2, 240, 238, 3, 2, 2, 2, 240, 239, 3, 2, 2, 2, 241, 9, 3, 2, 2, 2, 242, 243, 7, 292, 2, 2, 243, 11, 3, 2, 2, 2, 244, 257, 5, 24, 13, 2, 245, 257, 5, 52, 27, 2, 246, 257, 5, 54, 28, 2, 247, 257, 5, 56, 29, 2, 248, 257, 5, 50, 26, 2, 249, 257, 5, 58, 30, 2, 250, 257, 5, 64, 33, 2, 251, 257, 5, 66, 34, 2, 252, 257, 5, 68, 35, 2, 253, 257, 5, 70, 36, 2, 254, 257, 5, 72, 37, 2, 255, 257, 5, 74, 38, 2, 256, 244, 3, 2, 2, 2, 256, 245, 3, 2, 2, 2, 256, 246, 3, 2, 2, 2, 256, 247, 3, 2, 2, 2, 256, 248, 3, 2, 2, 2, 256, 249, 3, 2, 2, 2, 256, 250, 3, 2, 2, 2, 256, 251, 3, 2, 2, 2, 256, 252, 3, 2, 2, 2, 256, 253, 3, 2, 2, 2, 256, 254, 3, 2, 2, 2, 256, 255, 3, 2, 2, 2, 257, 13, 3, 2, 2, 2, 258, 261, 5, 84, 43, 2, 259, 261, 5, 76, 39, 2, 260, 258, 3, 2, 2, 2, 260, 259, 3, 2, 2, 2, 261, 15, 3, 2, 2, 2, 262, 263, 7, 80, 2, 2, 263, 264, 5, 180, 91, 2, 264, 17, 3, 2, 2, 2, 265, 266, 7, 81, 2, 2, 266, 267, 5, 168, 85, 2, 267, 268, 7, 39, 2, 2, 268, 269, 5, 14, 8, 2, 269, 19, 3, 2, 2, 2, 270, 272, 7, 91, 2, 2, 271, 273, 7, 251, 2, 2, 272, 271, 3, 2, 2, 2, 272, 273, 3, 2, 2, 2, 273, 274, 3, 2, 2, 2, 274, 275, 5, 180, 91, 2, 275, 21, 3, 2, 2, 2, 276, 277, 7, 87, 2, 2, 277, 278, 9, 2, 2, 2, 278, 23, 3, 2, 2, 2, 279, 280, 7, 72, 2, 2, 280, 281, 7, 73, 2, 2, 281, 282, 5, 180, 91, 2, 282, 283, 7, 289, 2, 2, 283, 288, 5, 26, 14, 2, 284, 285, 7, 291, 2, 2, 285, 287, 5, 26, 14, 2, 286, 284, 3, 2, 2, 2, 287, 290, 3, 2, 2, 2, 288, 286, 3, 2, 2, 2, 288, 289, 3, 2, 2, 2, 289, 292, 3, 2, 2, 2, 290, 288, 3, 2, 2, 2, 291, 293, 5, 36, 19, 2, 292, 291, 3, 2, 2, 2, 292, 293, 3, 2, 2, 2, 293, 294, 3, 2, 2, 2, 294, 296, 7, 290, 2, 2, 295, 297, 5, 34, 18, 2, 296, 295, 3, 2, 2, 2, 296, 297, 3, 2, 2, 2, 297, 299, 3, 2, 2, 2, 298, 300, 5, 38, 20, 2, 299, 298, 3, 2, 2, 2, 299, 300, 3, 2, 2, 2, 300, 301, 3, 2, 2, 2, 301, 303, 5, 182, 92, 2, 302, 304, 5, 46, 24, 2, 303, 302, 3, 2, 2, 2, 303, 304, 3, 2, 2, 2, 304, 25, 3, 2, 2, 2, 305, 306, 5, 28, 15, 2, 306, 308, 5, 30, 16, 2, 307, 309, 5, 32, 17, 2, 308, 307, 3, 2, 2, 2, 308, 309, 3, 2, 2, 2, 309, 27, 3, 2, 2, 2, 310, 311, 7, 311, 2, 2, 311, 29, 3, 2, 2, 2, 312, 313, 9, 3, 2, 2, 313, 31, 3, 2, 2, 2, 314, 315, 7, 289, 2, 2, 315, 316, 5, 212, 107, 2, 316, 317, 7, 290, 2, 2, 317, 33, 3, 2, 2, 2, 318, 319, 7, 105, 2, 2, 319, 320, 7, 307, 2, 2, 320, 35, 3, 2, 2, 2, 321, 322, 7, 231, 2, 2, 322, 323, 7, 39, 2, 2, 323, 324, 5, 130, 66, 2, 324, 325, 7, 9, 2, 2, 325, 326, 5, 130, 66, 2, 326, 37, 3, 2, 2, 2, 327, 328, 7, 206, 2, 2, 328, 329, 7, 15, 2, 2, 329, 330, 5, 40, 21, 2, 330, 39, 3, 2, 2, 2, 331, 332, 7, 289, 2, 2, 332, 337, 5, 42, 22, 2, 333, 334, 7, 291, 2, 2, 334, 336, 5, 42, 22, 2, 335, 333, 3, 2, 2, 2, 336, 339, 3, 2, 2, 2, 337, 335, 3, 2, 2, 2, 337, 338, 3, 2, 2, 2, 338, 340, 3, 2, 2, 2, 339, 337, 3, 2, 2, 2, 340, 341, 7, 290, 2, 2, 341, 41, 3, 2, 2, 2, 342, 356, 5, 144, 73, 2, 343, 344, 5, 168, 85, 2, 344, 345, 7, 289, 2, 2, 345, 350, 5, 44, 23, 2, 346, 347, 7, 291, 2, 2, 347, 349, 5, 44, 23, 2, 348, 346, 3, 2, 2, 2, 349, 352, 3, 2, 2, 2, 350, 348, 3, 2, 2, 2, 350, 351, 3, 2, 2, 2, 351, 353, 3, 2, 2, 2, 352, 350, 3, 2, 2, 2, 353, 354, 7, 290, 2, 2, 354, 356, 3, 2, 2, 2, 355, 342, 3, 2, 2, 2, 355, 343, 3, 2, 2, 2, 356, 43, 3, 2, 2, 2, 357, 360, 5, 144, 73, 2, 358, 360, 5, 208, 105, 2, 359, 357, 3, 2, 2, 2, 359, 358, 3, 2, 2, 2, 360, 45, 3, 2, 2, 2, 361, 362, 7, 31, 2, 2, 362, 363, 5, 168, 85, 2, 363, 364, 5, 48, 25, 2, 364, 47, 3, 2, 2, 2, 365, 366, 9, 4, 2, 2, 366, 370, 9, 5, 2, 2, 367, 368, 9, 4, 2, 2, 368, 370, 9, 6, 2, 2, 369, 365, 3, 2, 2, 2, 369, 367, 3, 2, 2, 2, 370, 49, 3, 2, 2, 2, 371, 372, 7, 72, 2, 2, 372, 373, 7, 251, 2, 2, 373, 374, 5, 180, 91, 2, 374, 375, 5, 182, 92, 2, 375, 51, 3, 2, 2, 2, 376, 377, 7, 72, 2, 2, 377, 379, 7, 198, 2, 2, 378, 380, 5, 184, 93, 2, 379, 378, 3, 2, 2, 2, 379, 380, 3, 2, 2, 2, 380, 381, 3, 2, 2, 2, 381, 383, 5, 180, 91, 2, 382, 384, 5, 34, 18, 2, 383, 382, 3, 2, 2, 2, 383, 384, 3, 2, 2, 2, 384, 385, 3, 2, 2, 2, 385, 386, 5, 182, 92, 2, 386, 53, 3, 2, 2, 2, 387, 389, 7, 72, 2, 2, 388, 390, 7, 173, 2, 2, 389, 388, 3, 2, 2, 2, 389, 390, 3, 2, 2, 2, 390, 391, 3, 2, 2, 2, 391, 393, 7, 75, 2, 2, 392, 394, 5, 184, 93, 2, 393, 392, 3, 2, 2, 2, 393, 394, 3, 2, 2, 2, 394, 395, 3, 2, 2, 2, 395, 404, 5, 180, 91, 2, 396, 401, 5, 28, 15, 2, 397, 398, 7, 291, 2, 2, 398, 400, 5, 28, 15, 2, 399, 397, 3, 2, 2, 2, 400, 403, 3, 2, 2, 2, 401, 399, 3, 2, 2, 2, 401, 402, 3, 2, 2, 2, 402, 405, 3, 2, 2, 2, 403, 401, 3, 2, 2, 2, 404, 396, 3, 2, 2, 2, 404, 405, 3, 2, 2, 2, 405, 407, 3, 2, 2, 2, 406, 408, 5, 34, 18, 2, 407, 406, 3, 2, 2, 2, 407, 408, 3, 2, 2, 2, 408, 409, 3, 2, 2, 2, 409, 410, 7, 9, 2, 2, 410, 411, 5, 84, 43, 2, 411, 55, 3, 2, 2, 2, 412, 416, 7, 72, 2, 2, 413, 417, 7, 173, 2, 2, 414, 415, 7, 173, 2, 2, 415, 417, 7, 245, 2, 2, 416, 413, 3, 2, 2, 2, 416, 414, 3, 2, 2, 2, 417, 418, 3, 2, 2, 2, 418, 420, 7, 164, 2, 2, 419, 421, 5, 184, 93, 2, 420, 419, 3, 2, 2, 2, 420, 421, 3, 2, 2, 2, 421, 422, 3, 2, 2, 2, 422, 423, 5, 180, 91, 2, 423, 424, 7, 9, 2, 2, 424, 427, 5, 168, 85, 2, 425, 426, 7, 252, 2, 2, 426, 428, 5, 168, 85, 2, 427, 425, 3, 2, 2, 2, 427, 428, 3, 2, 2, 2, 428, 57, 3, 2, 2, 2, 429, 430, 7, 102, 2, 2, 430, 431, 7, 73, 2, 2, 431, 434, 5, 180, 91, 2, 432, 435, 5, 60, 31, 2, 433, 435, 5, 62, 32, 2, 434, 432, 3, 2, 2, 2, 434, 433, 3, 2, 2, 2, 435, 59, 3, 2, 2, 2, 436, 437, 7, 103, 2, 2, 437, 438, 7, 99, 2, 2, 438, 439, 5, 180, 91, 2, 439, 61, 3, 2, 2, 2, 440, 441, 7, 106, 2, 2, 441, 442, 5, 188, 95, 2, 442, 63, 3, 2, 2, 2, 443, 444, 7, 102, 2, 2, 444, 445, 7, 198, 2, 2, 445, 446, 5, 180, 91, 2, 446, 447, 5, 62, 32, 2, 447, 65, 3, 2, 2, 2, 448, 452, 7, 102, 2, 2, 449, 453, 7, 173, 2, 2, 450, 451, 7, 173, 2, 2, 451, 453, 7, 245, 2, 2, 452, 449, 3, 2, 2, 2, 452, 450, 3, 2, 2, 2, 453, 454, 3, 2, 2, 2, 454, 456, 7, 164, 2, 2, 455, 457, 5, 186, 94, 2, 456, 455, 3, 2, 2, 2, 456, 457, 3, 2, 2, 2, 457, 458, 3, 2, 2, 2, 458, 459, 5, 180, 91, 2, 459, 460, 7, 9, 2, 2, 460, 463, 5, 168, 85, 2, 461, 462, 7, 252, 2, 2, 462, 464, 5, 168, 85, 2, 463, 461, 3, 2, 2, 2, 463, 464, 3, 2, 2, 2, 464, 67, 3, 2, 2, 2, 465, 466, 7, 94, 2, 2, 466, 468, 7, 73, 2, 2, 467, 469, 5, 186, 94, 2, 468, 467, 3, 2, 2, 2, 468, 469, 3, 2, 2, 2, 469, 470, 3, 2, 2, 2, 470, 471, 5, 180, 91, 2, 471, 69, 3, 2, 2, 2, 472, 473, 7, 94, 2, 2, 473, 475, 7, 198, 2, 2, 474, 476, 5, 186, 94, 2, 475, 474, 3, 2, 2, 2, 475, 476, 3, 2, 2, 2, 476, 477, 3, 2, 2, 2, 477, 479, 5, 180, 91, 2, 478, 480, 9, 7, 2, 2, 479, 478, 3, 2, 2, 2, 479, 480, 3, 2, 2, 2, 480, 71, 3, 2, 2, 2, 481, 483, 7, 94, 2, 2, 482, 484, 7, 173, 2, 2, 483, 482, 3, 2, 2, 2, 483, 484, 3, 2, 2, 2, 484, 485, 3, 2, 2, 2, 485, 487, 7, 75, 2, 2, 486, 488, 5, 186, 94, 2, 487, 486, 3, 2, 2, 2, 487, 488, 3, 2, 2, 2, 488, 489, 3, 2, 2, 2, 489, 490, 5, 180, 91, 2, 490, 73, 3, 2, 2, 2, 491, 495, 7, 94, 2, 2, 492, 496, 7, 173, 2, 2, 493, 494, 7, 173, 2, 2, 494, 496, 7, 245, 2, 2, 495, 492, 3, 2, 2, 2, 495, 493, 3, 2, 2, 2, 495, 496, 3, 2, 2, 2, 496, 497, 3, 2, 2, 2, 497, 499, 7, 164, 2, 2, 498, 500, 5, 186, 94, 2, 499, 498, 3, 2, 2, 2, 499, 500, 3, 2, 2, 2, 500, 501, 3, 2, 2, 2, 501, 502, 5, 180, 91, 2, 502, 75, 3, 2, 2, 2, 503, 504, 7, 77, 2, 2, 504, 505, 9, 8, 2, 2, 505, 511, 5, 180, 91, 2, 506, 508, 5, 78, 40, 2, 507, 506, 3, 2, 2, 2, 507, 508, 3, 2, 2, 2, 508, 509, 3, 2, 2, 2, 509, 512, 5, 84, 43, 2, 510, 512, 5, 80, 41, 2, 511, 507, 3, 2, 2, 2, 511, 510, 3, 2, 2, 2, 512, 77, 3, 2, 2, 2, 513, 514, 7, 60, 2, 2, 514, 515, 5, 188, 95, 2, 515, 79, 3, 2, 2, 2, 516, 517, 7, 71, 2, 2, 517, 522, 5, 82, 42, 2, 518, 519, 7, 291, 2, 2, 519, 521, 5, 82, 42, 2, 520, 518, 3, 2, 2, 2, 521, 524, 3, 2, 2, 2, 522, 520, 3, 2, 2, 2, 522, 523, 3, 2, 2, 2, 523, 81, 3, 2, 2, 2, 524, 522, 3, 2, 2, 2, 525, 526, 7, 289, 2, 2, 526, 531, 5, 208, 105, 2, 527, 528, 7, 291, 2, 2, 528, 530, 5, 208, 105, 2, 529, 527, 3, 2, 2, 2, 530, 533, 3, 2, 2, 2, 531, 529, 3, 2, 2, 2, 531, 532, 3, 2, 2, 2, 532, 534, 3, 2, 2, 2, 533, 531, 3, 2, 2, 2, 534, 535, 7, 290, 2, 2, 535, 83, 3, 2, 2, 2, 536, 537, 8, 43, 1, 2, 537, 557, 5, 86, 44, 2, 538, 539, 7, 289, 2, 2, 539, 540, 5, 84, 43, 2, 540, 541, 7, 290, 2, 2, 541, 557, 3, 2, 2, 2, 542, 544, 5, 90, 46, 2, 543, 545, 5, 112, 57, 2, 544, 543, 3, 2, 2, 2, 544, 545, 3, 2, 2, 2, 545, 547, 3, 2, 2, 2, 546, 548, 5, 116, 59, 2, 547, 546, 3, 2, 2, 2, 547, 548, 3, 2, 2, 2, 548, 557, 3, 2, 2, 2, 549, 551, 5, 88, 45, 2, 550, 552, 5, 112, 57, 2, 551, 550, 3, 2, 2, 2, 551, 552, 3, 2, 2, 2, 552, 554, 3, 2, 2, 2, 553, 555, 5, 116, 59, 2, 554, 553, 3, 2, 2, 2, 554, 555, 3, 2, 2, 2, 555, 557, 3, 2, 2, 2, 556, 536, 3, 2, 2, 2, 556, 538, 3, 2, 2, 2, 556, 542, 3, 2, 2, 2, 556, 549, 3, 2, 2, 2, 557, 572, 3, 2, 2, 2, 558, 559, 12, 5, 2, 2, 559, 561, 9, 9, 2, 2, 560, 562, 7, 10, 2, 2, 561, 560, 3, 2, 2, 2, 561, 562, 3, 2, 2, 2, 562, 563, 3, 2, 2, 2, 563, 565, 5, 84, 43, 2, 564, 566, 5, 112, 57, 2, 565, 564, 3, 2, 2, 2, 565, 566, 3, 2, 2, 2, 566, 568, 3, 2, 2, 2, 567, 569, 5, 116, 59, 2, 568, 567, 3, 2, 2, 2, 568, 569, 3, 2, 2, 2, 569, 571, 3, 2, 2, 2, 570, 558, 3, 2, 2, 2, 571, 574, 3, 2, 2, 2, 572, 570, 3, 2, 2, 2, 572, 573, 3, 2, 2, 2, 573, 85, 3, 2, 2, 2, 574, 572, 3, 2, 2, 2, 575, 576, 7, 71, 2, 2, 576, 581, 5, 130, 66, 2, 577, 578, 7, 291, 2, 2, 578, 580, 5, 130, 66, 2, 579, 577, 3, 2, 2, 2, 580, 583, 3, 2, 2, 2, 581, 579, 3, 2, 2, 2, 581, 582, 3, 2, 2, 2, 582, 87, 3, 2, 2, 2, 583, 581, 3, 2, 2, 2, 584, 585, 5, 90, 46, 2, 585, 587, 5, 94, 48, 2, 586, 588, 5, 104, 53, 2, 587, 586, 3, 2, 2, 2, 587, 588, 3, 2, 2, 2, 588, 590, 3, 2, 2, 2, 589, 591, 5, 106, 54, 2, 590, 589, 3, 2, 2, 2, 590, 591, 3, 2, 2, 2, 591, 593, 3, 2, 2, 2, 592, 594, 5, 110, 56, 2, 593, 592, 3, 2, 2, 2, 593, 594, 3, 2, 2, 2, 594, 596, 3, 2, 2, 2, 595, 597, 5, 118, 60, 2, 596, 595, 3, 2, 2, 2, 596, 597, 3, 2, 2, 2, 597, 89, 3, 2, 2, 2, 598, 600, 7, 6, 2, 2, 599, 601, 5, 216, 109, 2, 600, 599, 3, 2, 2, 2, 600, 601, 3, 2, 2, 2, 601, 611, 3, 2, 2, 2, 602, 612, 7, 298, 2, 2, 603, 608, 5, 92, 47, 2, 604, 605, 7, 291, 2, 2, 605, 607, 5, 92, 47, 2, 606, 604, 3, 2, 2, 2, 607, 610, 3, 2, 2, 2, 608, 606, 3, 2, 2, 2, 608, 609, 3, 2, 2, 2, 609, 612, 3, 2, 2, 2, 610, 608, 3, 2, 2, 2, 611, 602, 3, 2, 2, 2, 611, 603, 3, 2, 2, 2, 612, 91, 3, 2, 2, 2, 613, 618, 5, 130, 66, 2, 614, 616, 7, 9, 2, 2, 615, 614, 3, 2, 2, 2, 615, 616, 3, 2, 2, 2, 616, 617, 3, 2, 2, 2, 617, 619, 5, 180, 91, 2, 618, 615, 3, 2, 2, 2, 618, 619, 3, 2, 2, 2, 619, 93, 3, 2, 2, 2, 620, 621, 7, 7, 2, 2, 621, 622, 5, 96, 49, 2, 622, 95, 3, 2, 2, 2, 623, 624, 8, 49, 1, 2, 624, 629, 5, 98, 50, 2, 625, 626, 7, 291, 2, 2, 626, 628, 5, 98, 50, 2, 627, 625, 3, 2, 2, 2, 628, 631, 3, 2, 2, 2, 629, 627, 3, 2, 2, 2, 629, 630, 3, 2, 2, 2, 630, 646, 3, 2, 2, 2, 631, 629, 3, 2, 2, 2, 632, 634, 12, 3, 2, 2, 633, 635, 7, 54, 2, 2, 634, 633, 3, 2, 2, 2, 634, 635, 3, 2, 2, 2, 635, 637, 3, 2, 2, 2, 636, 638, 9, 10, 2, 2, 637, 636, 3, 2, 2, 2, 637, 638, 3, 2, 2, 2, 638, 639, 3, 2, 2, 2, 639, 640, 7, 46, 2, 2, 640, 642, 5, 96, 49, 2, 641, 643, 5, 102, 52, 2, 642, 641, 3, 2, 2, 2, 642, 643, 3, 2, 2, 2, 643, 645, 3, 2, 2, 2, 644, 632, 3, 2, 2, 2, 645, 648, 3, 2, 2, 2, 646, 644, 3, 2, 2, 2, 646, 647, 3, 2, 2, 2, 647, 97, 3, 2, 2, 2, 648, 646, 3, 2, 2, 2, 649, 651, 5, 100, 51, 2, 650, 652, 5, 158, 80, 2, 651, 650, 3, 2, 2, 2, 651, 652, 3, 2, 2, 2, 652, 99, 3, 2, 2, 2, 653, 655, 7, 73, 2, 2, 654, 653, 3, 2, 2, 2, 654, 655, 3, 2, 2, 2, 655, 656, 3, 2, 2, 2, 656, 679, 5, 130, 66, 2, 657, 658, 7, 57, 2, 2, 658, 659, 7, 73, 2, 2, 659, 660, 7, 289, 2, 2, 660, 661, 5, 180, 91, 2, 661, 662, 7, 289, 2, 2, 662, 667, 5, 130, 66, 2, 663, 664, 7, 291, 2, 2, 664, 666, 5, 130, 66, 2, 665, 663, 3, 2, 2, 2, 666, 669, 3, 2, 2, 2, 667, 665, 3, 2, 2, 2, 667, 668, 3, 2, 2, 2, 668, 670, 3, 2, 2, 2, 669, 667, 3, 2, 2, 2, 670, 671, 7, 290, 2, 2, 671, 672, 7, 290, 2, 2, 672, 679, 3, 2, 2, 2, 673, 674, 7, 232, 2, 2, 674, 675, 7, 289, 2, 2, 675, 676, 5, 130, 66, 2, 676, 677, 7, 290, 2, 2, 677, 679, 3, 2, 2, 2, 678, 654, 3, 2, 2, 2, 678, 657, 3, 2, 2, 2, 678, 673, 3, 2, 2, 2, 679, 101, 3, 2, 2, 2, 680, 681, 7, 55, 2, 2, 681, 695, 5, 132, 67, 2, 682, 683, 7, 150, 2, 2, 683, 684, 7, 289, 2, 2, 684, 689, 5, 180, 91, 2, 685, 686, 7, 291, 2, 2, 686, 688, 5, 180, 91, 2, 687, 685, 3, 2, 2, 2, 688, 691, 3, 2, 2, 2, 689, 687, 3, 2, 2, 2, 689, 690, 3, 2, 2, 2, 690, 692, 3, 2, 2, 2, 691, 689, 3, 2, 2, 2, 692, 693, 7, 290, 2, 2, 693, 695, 3, 2, 2, 2, 694, 680, 3, 2, 2, 2, 694, 682, 3, 2, 2, 2, 695, 103, 3, 2, 2, 2, 696, 697, 7, 13, 2, 2, 697, 698, 5, 132, 67, 2, 698, 105, 3, 2, 2, 2, 699, 700, 7, 14, 2, 2, 700, 701, 7, 15, 2, 2, 701, 706, 5, 108, 55, 2, 702, 703, 7, 291, 2, 2, 703, 705, 5, 108, 55, 2, 704, 702, 3, 2, 2, 2, 705, 708, 3, 2, 2, 2, 706, 704, 3, 2, 2, 2, 706, 707, 3, 2, 2, 2, 707, 107, 3, 2, 2, 2, 708, 706, 3, 2, 2, 2, 709, 761, 5, 130, 66, 2, 710, 711, 7, 289, 2, 2, 711, 761, 7, 290, 2, 2, 712, 713, 7, 289, 2, 2, 713, 718, 5, 130, 66, 2, 714, 715, 7, 291, 2, 2, 715, 717, 5, 130, 66, 2, 716, 714, 3, 2, 2, 2, 717, 720, 3, 2, 2, 2, 718, 716, 3, 2, 2, 2, 718, 719, 3, 2, 2, 2, 719, 721, 3, 2, 2, 2, 720, 718, 3, 2, 2, 2, 721, 722, 7, 290, 2, 2, 722, 761, 3, 2, 2, 2, 723, 724, 7, 18, 2, 2, 724, 725, 7, 289, 2, 2, 725, 730, 5, 130, 66, 2, 726, 727, 7, 291, 2, 2, 727, 729, 5, 130, 66, 2, 728, 726, 3, 2, 2, 2, 729, 732, 3, 2, 2, 2, 730, 728, 3, 2, 2, 2, 730, 731, 3, 2, 2, 2, 731, 733, 3, 2, 2, 2, 732, 730, 3, 2, 2, 2, 733, 734, 7, 290, 2, 2, 734, 761, 3, 2, 2, 2, 735, 736, 7, 19, 2, 2, 736, 737, 7, 289, 2, 2, 737, 742, 5, 130, 66, 2, 738, 739, 7, 291, 2, 2, 739, 741, 5, 130, 66, 2, 740, 738, 3, 2, 2, 2, 741, 744, 3, 2, 2, 2, 742, 740, 3, 2, 2, 2, 742, 743, 3, 2, 2, 2, 743, 745, 3, 2, 2, 2, 744, 742, 3, 2, 2, 2, 745, 746, 7, 290, 2, 2, 746, 761, 3, 2, 2, 2, 747, 748, 7, 16, 2, 2, 748, 749, 7, 17, 2, 2, 749, 750, 7, 289, 2, 2, 750, 755, 5, 108, 55, 2, 751, 752, 7, 291, 2, 2, 752, 754, 5, 108, 55, 2, 753, 751, 3, 2, 2, 2, 754, 757, 3, 2, 2, 2, 755, 753, 3, 2, 2, 2, 755, 756, 3, 2, 2, 2, 756, 758, 3, 2, 2, 2, 757, 755, 3, 2, 2, 2, 758, 759, 7, 290, 2, 2, 759, 761, 3, 2, 2, 2, 760, 709, 3, 2, 2, 2, 760, 710, 3, 2, 2, 2, 760, 712, 3, 2, 2, 2, 760, 723, 3, 2, 2, 2, 760, 735, 3, 2, 2, 2, 760, 747, 3, 2, 2, 2, 761, 109, 3, 2, 2, 2, 762, 763, 7, 21, 2, 2, 763, 764, 5, 132, 67, 2, 764, 111, 3, 2, 2, 2, 765, 766, 7, 20, 2, 2, 766, 767, 7, 15, 2, 2, 767, 772, 5, 114, 58, 2, 768, 769, 7, 291, 2, 2, 769, 771, 5, 114, 58, 2, 770, 768, 3, 2, 2, 2, 771, 774, 3, 2, 2, 2, 772, 770, 3, 2, 2, 2, 772, 773, 3, 2, 2, 2, 773, 113, 3, 2, 2, 2, 774, 772, 3, 2, 2, 2, 775, 777, 5, 130, 66, 2, 776, 778, 9, 11, 2, 2, 777, 776, 3, 2, 2, 2, 777, 778, 3, 2, 2, 2, 778, 115, 3, 2, 2, 2, 779, 782, 7, 22, 2, 2, 780, 783, 7, 10, 2, 2, 781, 783, 5, 130, 66, 2, 782, 780, 3, 2, 2, 2, 782, 781, 3, 2, 2, 2, 783, 117, 3, 2, 2, 2, 784, 785, 7, 58, 2, 2, 785, 790, 5, 120, 61, 2, 786, 787, 7, 291, 2, 2, 787, 789, 5, 120, 61, 2, 788, 786, 3, 2, 2, 2, 789, 792, 3, 2, 2, 2, 790, 788, 3, 2, 2, 2, 790, 791, 3, 2, 2, 2, 791, 119, 3, 2, 2, 2, 792, 790, 3, 2, 2, 2, 793, 794, 5, 160, 81, 2, 794, 795, 7, 9, 2, 2, 795, 796, 5, 122, 62, 2, 796, 121, 3, 2, 2, 2, 797, 799, 5, 160, 81, 2, 798, 797, 3, 2, 2, 2, 798, 799, 3, 2, 2, 2, 799, 800, 3, 2, 2, 2, 800, 811, 7, 289, 2, 2, 801, 802, 7, 20, 2, 2, 802, 803, 7, 15, 2, 2, 803, 808, 5, 124, 63, 2, 804, 805, 7, 291, 2, 2, 805, 807, 5, 124, 63, 2, 806, 804, 3, 2, 2, 2, 807, 810, 3, 2, 2, 2, 808, 806, 3, 2, 2, 2, 808, 809, 3, 2, 2, 2, 809, 812, 3, 2, 2, 2, 810, 808, 3, 2, 2, 2, 811, 801, 3, 2, 2, 2, 811, 812, 3, 2, 2, 2, 812, 823, 3, 2, 2, 2, 813, 814, 7, 60, 2, 2, 814, 815, 7, 15, 2, 2, 815, 820, 5, 130, 66, 2, 816, 817, 7, 291, 2, 2, 817, 819, 5, 130, 66, 2, 818, 816, 3, 2, 2, 2, 819, 822, 3, 2, 2, 2, 820, 818, 3, 2, 2, 2, 820, 821, 3, 2, 2, 2, 821, 824, 3, 2, 2, 2, 822, 820, 3, 2, 2, 2, 823, 813, 3, 2, 2, 2, 823, 824, 3, 2, 2, 2, 824, 826, 3, 2, 2, 2, 825, 827, 5, 126, 64, 2, 826, 825, 3, 2, 2, 2, 826, 827, 3, 2, 2, 2, 827, 828, 3, 2, 2, 2, 828, 829, 7, 290, 2, 2, 829, 123, 3, 2, 2, 2, 830, 832, 5, 130, 66, 2, 831, 833, 9, 11, 2, 2, 832, 831, 3, 2, 2, 2, 832, 833, 3, 2, 2, 2, 833, 836, 3, 2, 2, 2, 834, 835, 7, 36, 2, 2, 835, 837, 9, 12, 2, 2, 836, 834, 3, 2, 2, 2, 836, 837, 3, 2, 2, 2, 837, 125, 3, 2, 2, 2, 838, 839, 7, 61, 2, 2, 839, 843, 5, 128, 65, 2, 840, 841, 7, 62, 2, 2, 841, 843, 5, 128, 65, 2, 842, 838, 3, 2, 2, 2, 842, 840, 3, 2, 2, 2, 843, 127, 3, 2, 2, 2, 844, 845, 5, 130, 66, 2, 845, 846, 7, 64, 2, 2, 846, 129, 3, 2, 2, 2, 847, 848, 5, 132, 67, 2, 848, 131, 3, 2, 2, 2, 849, 850, 8, 67, 1, 2, 850, 851, 7, 27, 2, 2, 851, 862, 5, 132, 67, 7, 852, 853, 7, 29, 2, 2, 853, 854, 7, 289, 2, 2, 854, 855, 5, 84, 43, 2, 855, 856, 7, 290, 2, 2, 856, 862, 3, 2, 2, 2, 857, 859, 5, 136, 69, 2, 858, 860, 5, 134, 68, 2, 859, 858, 3, 2, 2, 2, 859, 860, 3, 2, 2, 2, 860, 862, 3, 2, 2, 2, 861, 849, 3, 2, 2, 2, 861, 852, 3, 2, 2, 2, 861, 857, 3, 2, 2, 2, 862, 871, 3, 2, 2, 2, 863, 864, 12, 4, 2, 2, 864, 865, 7, 25, 2, 2, 865, 870, 5, 132, 67, 5, 866, 867, 12, 3, 2, 2, 867, 868, 7, 24, 2, 2, 868, 870, 5, 132, 67, 4, 869, 863, 3, 2, 2, 2, 869, 866, 3, 2, 2, 2, 870, 873, 3, 2, 2, 2, 871, 869, 3, 2, 2, 2, 871, 872, 3, 2, 2, 2, 872, 133, 3, 2, 2, 2, 873, 871, 3, 2, 2, 2, 874, 876, 7, 27, 2, 2, 875, 874, 3, 2, 2, 2, 875, 876, 3, 2, 2, 2, 876, 877, 3, 2, 2, 2, 877, 878, 7, 30, 2, 2, 878, 879, 5, 136, 69, 2, 879, 880, 7, 25, 2, 2, 880, 881, 5, 136, 69, 2, 881, 958, 3, 2, 2, 2, 882, 884, 7, 27, 2, 2, 883, 882, 3, 2, 2, 2, 883, 884, 3, 2, 2, 2, 884, 885, 3, 2, 2, 2, 885, 886, 7, 26, 2, 2, 886, 887, 7, 289, 2, 2, 887, 892, 5, 130, 66, 2, 888, 889, 7, 291, 2, 2, 889, 891, 5, 130, 66, 2, 890, 888, 3, 2, 2, 2, 891, 894, 3, 2, 2, 2, 892, 890, 3, 2, 2, 2, 892, 893, 3, 2, 2, 2, 893, 895, 3, 2, 2, 2, 894, 892, 3, 2, 2, 2, 895, 896, 7, 290, 2, 2, 896, 958, 3, 2, 2, 2, 897, 899, 7, 27, 2, 2, 898, 897, 3, 2, 2, 2, 898, 899, 3, 2, 2, 2, 899, 900, 3, 2, 2, 2, 900, 901, 7, 26, 2, 2, 901, 902, 7, 289, 2, 2, 902, 903, 5, 84, 43, 2, 903, 904, 7, 290, 2, 2, 904, 958, 3, 2, 2, 2, 905, 906, 7, 29, 2, 2, 906, 907, 7, 289, 2, 2, 907, 908, 5, 84, 43, 2, 908, 909, 7, 290, 2, 2, 909, 958, 3, 2, 2, 2, 910, 912, 7, 27, 2, 2, 911, 910, 3, 2, 2, 2, 911, 912, 3, 2, 2, 2, 912, 913, 3, 2, 2, 2, 913, 914, 7, 32, 2, 2, 914, 958, 5, 136, 69, 2, 915, 917, 7, 27, 2, 2, 916, 915, 3, 2, 2, 2, 916, 917, 3, 2, 2, 2, 917, 918, 3, 2, 2, 2, 918, 919, 7, 31, 2, 2, 919, 933, 9, 13, 2, 2, 920, 921, 7, 289, 2, 2, 921, 934, 7, 290, 2, 2, 922, 923, 7, 289, 2, 2, 923, 928, 5, 130, 66, 2, 924, 925, 7, 291, 2, 2, 925, 927, 5, 130, 66, 2, 926, 924, 3, 2, 2, 2, 927, 930, 3, 2, 2, 2, 928, 926, 3, 2, 2, 2, 928, 929, 3, 2, 2, 2, 929, 931, 3, 2, 2, 2, 930, 928, 3, 2, 2, 2, 931, 932, 7, 290, 2, 2, 932, 934, 3, 2, 2, 2, 933, 920, 3, 2, 2, 2, 933, 922, 3, 2, 2, 2, 934, 958, 3, 2, 2, 2, 935, 937, 7, 27, 2, 2, 936, 935, 3, 2, 2, 2, 936, 937, 3, 2, 2, 2, 937, 938, 3, 2, 2, 2, 938, 939, 7, 31, 2, 2, 939, 958, 5, 136, 69, 2, 940, 942, 7, 33, 2, 2, 941, 943, 7, 27, 2, 2, 942, 941, 3, 2, 2, 2, 942, 943, 3, 2, 2, 2, 943, 944, 3, 2, 2, 2, 944, 958, 7, 277, 2, 2, 945, 947, 7, 33, 2, 2, 946, 948, 7, 27, 2, 2, 947, 946, 3, 2, 2, 2, 947, 948, 3, 2, 2, 2, 948, 949, 3, 2, 2, 2, 949, 958, 9, 14, 2, 2, 950, 952, 7, 33, 2, 2, 951, 953, 7, 27, 2, 2, 952, 951, 3, 2, 2, 2, 952, 953, 3, 2, 2, 2, 953, 954, 3, 2, 2, 2, 954, 955, 7, 12, 2, 2, 955, 956, 7, 7, 2, 2, 956, 958, 5, 136, 69, 2, 957, 875, 3, 2, 2, 2, 957, 883, 3, 2, 2, 2, 957, 898, 3, 2, 2, 2, 957, 905, 3, 2, 2, 2, 957, 911, 3, 2, 2, 2, 957, 916, 3, 2, 2, 2, 957, 936, 3, 2, 2, 2, 957, 940, 3, 2, 2, 2, 957, 945, 3, 2, 2, 2, 957, 950, 3, 2, 2, 2, 958, 135, 3, 2, 2, 2, 959, 960, 8, 69, 1, 2, 960, 964, 5, 138, 70, 2, 961, 962, 9, 15, 2, 2, 962, 964, 5, 136, 69, 9, 963, 959, 3, 2, 2, 2, 963, 961, 3, 2, 2, 2, 964, 986, 3, 2, 2, 2, 965, 966, 12, 8, 2, 2, 966, 967, 9, 16, 2, 2, 967, 985, 5, 136, 69, 9, 968, 969, 12, 7, 2, 2, 969, 970, 9, 17, 2, 2, 970, 985, 5, 136, 69, 8, 971, 972, 12, 6, 2, 2, 972, 973, 7, 284, 2, 2, 973, 985, 5, 136, 69, 7, 974, 975, 12, 5, 2, 2, 975, 976, 7, 285, 2, 2, 976, 985, 5, 136, 69, 6, 977, 978, 12, 4, 2, 2, 978, 979, 7, 283, 2, 2, 979, 985, 5, 136, 69, 5, 980, 981, 12, 3, 2, 2, 981, 982, 5, 198, 100, 2, 982, 983, 5, 136, 69, 4, 983, 985, 3, 2, 2, 2, 984, 965, 3, 2, 2, 2, 984, 968, 3, 2, 2, 2, 984, 971, 3, 2, 2, 2, 984, 974, 3, 2, 2, 2, 984, 977, 3, 2, 2, 2, 984, 980, 3, 2, 2, 2, 985, 988, 3, 2, 2, 2, 986, 984, 3, 2, 2, 2, 986, 987, 3, 2, 2, 2, 987, 137, 3, 2, 2, 2, 988, 986, 3, 2, 2, 2, 989, 990, 8, 70, 1, 2, 990, 992, 7, 41, 2, 2, 991, 993, 5, 176, 89, 2, 992, 991, 3, 2, 2, 2, 993, 994, 3, 2, 2, 2, 994, 992, 3, 2, 2, 2, 994, 995, 3, 2, 2, 2, 995, 998, 3, 2, 2, 2, 996, 997, 7, 44, 2, 2, 997, 999, 5, 130, 66, 2, 998, 996, 3, 2, 2, 2, 998, 999, 3, 2, 2, 2, 999, 1000, 3, 2, 2, 2, 1000, 1001, 7, 45, 2, 2, 1001, 1074, 3, 2, 2, 2, 1002, 1003, 7, 41, 2, 2, 1003, 1005, 5, 130, 66, 2, 1004, 1006, 5, 176, 89, 2, 1005, 1004, 3, 2, 2, 2, 1006, 1007, 3, 2, 2, 2, 1007, 1005, 3, 2, 2, 2, 1007, 1008, 3, 2, 2, 2, 1008, 1011, 3, 2, 2, 2, 1009, 1010, 7, 44, 2, 2, 1010, 1012, 5, 130, 66, 2, 1011, 1009, 3, 2, 2, 2, 1011, 1012, 3, 2, 2, 2, 1012, 1013, 3, 2, 2, 2, 1013, 1014, 7, 45, 2, 2, 1014, 1074, 3, 2, 2, 2, 1015, 1016, 7, 67, 2, 2, 1016, 1017, 7, 289, 2, 2, 1017, 1020, 5, 130, 66, 2, 1018, 1019, 7, 114, 2, 2, 1019, 1021, 7, 36, 2, 2, 1020, 1018, 3, 2, 2, 2, 1020, 1021, 3, 2, 2, 2, 1021, 1022, 3, 2, 2, 2, 1022, 1023, 7, 290, 2, 2, 1023, 1074, 3, 2, 2, 2, 1024, 1025, 7, 69, 2, 2, 1025, 1026, 7, 289, 2, 2, 1026, 1029, 5, 130, 66, 2, 1027, 1028, 7, 114, 2, 2, 1028, 1030, 7, 36, 2, 2, 1029, 1027, 3, 2, 2, 2, 1029, 1030, 3, 2, 2, 2, 1030, 1031, 3, 2, 2, 2, 1031, 1032, 7, 290, 2, 2, 1032, 1074, 3, 2, 2, 2, 1033, 1034, 7, 119, 2, 2, 1034, 1035, 7, 289, 2, 2, 1035, 1036, 5, 136, 69, 2, 1036, 1037, 7, 26, 2, 2, 1037, 1038, 5, 136, 69, 2, 1038, 1039, 7, 290, 2, 2, 1039, 1074, 3, 2, 2, 2, 1040, 1074, 5, 208, 105, 2, 1041, 1074, 7, 298, 2, 2, 1042, 1043, 5, 180, 91, 2, 1043, 1044, 7, 286, 2, 2, 1044, 1045, 7, 298, 2, 2, 1045, 1074, 3, 2, 2, 2, 1046, 1047, 7, 289, 2, 2, 1047, 1048, 5, 84, 43, 2, 1048, 1049, 7, 290, 2, 2, 1049, 1074, 3, 2, 2, 2, 1050, 1051, 5, 140, 71, 2, 1051, 1063, 7, 289, 2, 2, 1052, 1054, 5, 216, 109, 2, 1053, 1052, 3, 2, 2, 2, 1053, 1054, 3, 2, 2, 2, 1054, 1055, 3, 2, 2, 2, 1055, 1060, 5, 130, 66, 2, 1056, 1057, 7, 291, 2, 2, 1057, 1059, 5, 130, 66, 2, 1058, 1056, 3, 2, 2, 2, 1059, 1062, 3, 2, 2, 2, 1060, 1058, 3, 2, 2, 2, 1060, 1061, 3, 2, 2, 2, 1061, 1064, 3, 2, 2, 2, 1062, 1060, 3, 2, 2, 2, 1063, 1053, 3, 2, 2, 2, 1063, 1064, 3, 2, 2, 2, 1064, 1065, 3, 2, 2, 2, 1065, 1066, 7, 290, 2, 2, 1066, 1074, 3, 2, 2, 2, 1067, 1074, 5, 168, 85, 2, 1068, 1074, 5, 142, 72, 2, 1069, 1070, 7, 289, 2, 2, 1070, 1071, 5, 130, 66, 2, 1071, 1072, 7, 290, 2, 2, 1072, 1074, 3, 2, 2, 2, 1073, 989, 3, 2, 2, 2, 1073, 1002, 3, 2, 2, 2, 1073, 1015, 3, 2, 2, 2, 1073, 1024, 3, 2, 2, 2, 1073, 1033, 3, 2, 2, 2, 1073, 1040, 3, 2, 2, 2, 1073, 1041, 3, 2, 2, 2, 1073, 1042, 3, 2, 2, 2, 1073, 1046, 3, 2, 2, 2, 1073, 1050, 3, 2, 2, 2, 1073, 1067, 3, 2, 2, 2, 1073, 1068, 3, 2, 2, 2, 1073, 1069, 3, 2, 2, 2, 1074, 1082, 3, 2, 2, 2, 1075, 1076, 12, 6, 2, 2, 1076, 1077, 7, 287, 2, 2, 1077, 1078, 5, 136, 69, 2, 1078, 1079, 7, 288, 2, 2, 1079, 1081, 3, 2, 2, 2, 1080, 1075, 3, 2, 2, 2, 1081, 1084, 3, 2, 2, 2, 1082, 1080, 3, 2, 2, 2, 1082, 1083, 3, 2, 2, 2, 1083, 139, 3, 2, 2, 2, 1084, 1082, 3, 2, 2, 2, 1085, 1086, 5, 180, 91, 2, 1086, 141, 3, 2, 2, 2, 1087, 1088, 5, 180, 91, 2, 1088, 143, 3, 2, 2, 2, 1089, 1094, 5, 168, 85, 2, 1090, 1091, 7, 286, 2, 2, 1091, 1093, 5, 168, 85, 2, 1092, 1090, 3, 2, 2, 2, 1093, 1096, 3, 2, 2, 2, 1094, 1092, 3, 2, 2, 2, 1094, 1095, 3, 2, 2, 2, 1095, 145, 3, 2, 2, 2, 1096, 1094, 3, 2, 2, 2, 1097, 1100, 7, 40, 2, 2, 1098, 1101, 5, 148, 75, 2, 1099, 1101, 5, 152, 77, 2, 1100, 1098, 3, 2, 2, 2, 1100, 1099, 3, 2, 2, 2, 1100, 1101, 3, 2, 2, 2, 1101, 147, 3, 2, 2, 2, 1102, 1104, 5, 150, 76, 2, 1103, 1105, 5, 154, 78, 2, 1104, 1103, 3, 2, 2, 2, 1104, 1105, 3, 2, 2, 2, 1105, 149, 3, 2, 2, 2, 1106, 1107, 5, 156, 79, 2, 1107, 1108, 5, 168, 85, 2, 1108, 1110, 3, 2, 2, 2, 1109, 1106, 3, 2, 2, 2, 1110, 1111, 3, 2, 2, 2, 1111, 1109, 3, 2, 2, 2, 1111, 1112, 3, 2, 2, 2, 1112, 151, 3, 2, 2, 2, 1113, 1116, 5, 154, 78, 2, 1114, 1117, 5, 150, 76, 2, 1115, 1117, 5, 154, 78, 2, 1116, 1114, 3, 2, 2, 2, 1116, 1115, 3, 2, 2, 2, 1116, 1117, 3, 2, 2, 2, 1117, 153, 3, 2, 2, 2, 1118, 1119, 5, 156, 79, 2, 1119, 1120, 5, 168, 85, 2, 1120, 1121, 7, 99, 2, 2, 1121, 1122, 5, 168, 85, 2, 1122, 155, 3, 2, 2, 2, 1123, 1125, 9, 18, 2, 2, 1124, 1123, 3, 2, 2, 2, 1124, 1125, 3, 2, 2, 2, 1125, 1126, 3, 2, 2, 2, 1126, 1129, 9, 19, 2, 2, 1127, 1129, 7, 307, 2, 2, 1128, 1124, 3, 2, 2, 2, 1128, 1127, 3, 2, 2, 2, 1129, 157, 3, 2, 2, 2, 1130, 1132, 7, 9, 2, 2, 1131, 1130, 3, 2, 2, 2, 1131, 1132, 3, 2, 2, 2, 1132, 1133, 3, 2, 2, 2, 1133, 1135, 5, 170, 86, 2, 1134, 1136, 5, 164, 83, 2, 1135, 1134, 3, 2, 2, 2, 1135, 1136, 3, 2, 2, 2, 1136, 159, 3, 2, 2, 2, 1137, 1138, 5, 168, 85, 2, 1138, 1139, 5, 162, 82, 2, 1139, 161, 3, 2, 2, 2, 1140, 1141, 7, 130, 2, 2, 1141, 1143, 5, 168, 85, 2, 1142, 1140, 3, 2, 2, 2, 1143, 1144, 3, 2, 2, 2, 1144, 1142, 3, 2, 2, 2, 1144, 1145, 3, 2, 2, 2, 1145, 1148, 3, 2, 2, 2, 1146, 1148, 3, 2, 2, 2, 1147, 1142, 3, 2, 2, 2, 1147, 1146, 3, 2, 2, 2, 1148, 163, 3, 2, 2, 2, 1149, 1150, 7, 289, 2, 2, 1150, 1151, 5, 166, 84, 2, 1151, 1152, 7, 290, 2, 2, 1152, 165, 3, 2, 2, 2, 1153, 1158, 5, 168, 85, 2, 1154, 1155, 7, 291, 2, 2, 1155, 1157, 5, 168, 85, 2, 1156, 1154, 3, 2, 2, 2, 1157, 1160, 3, 2, 2, 2, 1158, 1156, 3, 2, 2, 2, 1158, 1159, 3, 2, 2, 2, 1159, 167, 3, 2, 2, 2, 1160, 1158, 3, 2, 2, 2, 1161, 1162, 5, 170, 86, 2, 1162, 169, 3, 2, 2, 2, 1163, 1166, 5, 172, 87, 2, 1164, 1166, 5, 174, 88, 2, 1165, 1163, 3, 2, 2, 2, 1165, 1164, 3, 2, 2, 2, 1166, 171, 3, 2, 2, 2, 1167, 1168, 9, 20, 2, 2, 1168, 173, 3, 2, 2, 2, 1169, 1170, 7, 307, 2, 2, 1170, 175, 3, 2, 2, 2, 1171, 1172, 7, 42, 2, 2, 1172, 1173, 5, 130, 66, 2, 1173, 1174, 7, 43, 2, 2, 1174, 1175, 5, 130, 66, 2, 1175, 177, 3, 2, 2, 2, 1176, 1181, 5, 180, 91, 2, 1177, 1178, 7, 291, 2, 2, 1178, 1180, 5, 180, 91, 2, 1179, 1177, 3, 2, 2, 2, 1180, 1183, 3, 2, 2, 2, 1181, 1179, 3, 2, 2, 2, 1181, 1182, 3, 2, 2, 2, 1182, 179, 3, 2, 2, 2, 1183, 1181, 3, 2, 2, 2, 1184, 1188, 7, 311, 2, 2, 1185, 1187, 7, 306, 2, 2, 1186, 1185, 3, 2, 2, 2, 1187, 1190, 3, 2, 2, 2, 1188, 1189, 3, 2, 2, 2, 1188, 1186, 3, 2, 2, 2, 1189, 181, 3, 2, 2, 2, 1190, 1188, 3, 2, 2, 2, 1191, 1192, 7, 70, 2, 2, 1192, 1193, 5, 188, 95, 2, 1193, 183, 3, 2, 2, 2, 1194, 1195, 7, 118, 2, 2, 1195, 1196, 7, 27, 2, 2, 1196, 1197, 7, 29, 2, 2, 1197, 185, 3, 2, 2, 2, 1198, 1199, 7, 118, 2, 2, 1199, 1200, 7, 29, 2, 2, 1200, 187, 3, 2, 2, 2, 1201, 1202, 7, 289, 2, 2, 1202, 1207, 5, 190, 96, 2, 1203, 1204, 7, 291, 2, 2, 1204, 1206, 5, 190, 96, 2, 1205, 1203, 3, 2, 2, 2, 1206, 1209, 3, 2, 2, 2, 1207, 1205, 3, 2, 2, 2, 1207, 1208, 3, 2, 2, 2, 1208, 1210, 3, 2, 2, 2, 1209, 1207, 3, 2, 2, 2, 1210, 1211, 7, 290, 2, 2, 1211, 189, 3, 2, 2, 2, 1212, 1217, 5, 192, 97, 2, 1213, 1215, 7, 278, 2, 2, 1214, 1213, 3, 2, 2, 2, 1214, 1215, 3, 2, 2, 2, 1215, 1216, 3, 2, 2, 2, 1216, 1218, 5, 194, 98, 2, 1217, 1214, 3, 2, 2, 2, 1217, 1218, 3, 2, 2, 2, 1218, 191, 3, 2, 2, 2, 1219, 1224, 5, 168, 85, 2, 1220, 1221, 7, 286, 2, 2, 1221, 1223, 5, 168, 85, 2, 1222, 1220, 3, 2, 2, 2, 1223, 1226, 3, 2, 2, 2, 1224, 1222, 3, 2, 2, 2, 1224, 1225, 3, 2, 2, 2, 1225, 1229, 3, 2, 2, 2, 1226, 1224, 3, 2, 2, 2, 1227, 1229, 7, 307, 2, 2, 1228, 1219, 3, 2, 2, 2, 1228, 1227, 3, 2, 2, 2, 1229, 193, 3, 2, 2, 2, 1230, 1235, 7, 308, 2, 2, 1231, 1235, 7, 309, 2, 2, 1232, 1235, 5, 214, 108, 2, 1233, 1235, 7, 307, 2, 2, 1234, 1230, 3, 2, 2, 2, 1234, 1231, 3, 2, 2, 2, 1234, 1232, 3, 2, 2, 2, 1234, 1233, 3, 2, 2, 2, 1235, 195, 3, 2, 2, 2, 1236, 1243, 7, 25, 2, 2, 1237, 1238, 7, 284, 2, 2, 1238, 1243, 7, 284, 2, 2, 1239, 1243, 7, 24, 2, 2, 1240, 1241, 7, 283, 2, 2, 1241, 1243, 7, 283, 2, 2, 1242, 1236, 3, 2, 2, 2, 1242, 1237, 3, 2, 2, 2, 1242, 1239, 3, 2, 2, 2, 1242, 1240, 3, 2, 2, 2, 1243, 197, 3, 2, 2, 2, 1244, 1259, 7, 278, 2, 2, 1245, 1259, 7, 279, 2, 2, 1246, 1259, 7, 280, 2, 2, 1247, 1248, 7, 280, 2, 2, 1248, 1259, 7, 278, 2, 2, 1249, 1250, 7, 279, 2, 2, 1250, 1259, 7, 278, 2, 2, 1251, 1252, 7, 280, 2, 2, 1252, 1259, 7, 279, 2, 2, 1253, 1254, 7, 281, 2, 2, 1254, 1259, 7, 278, 2, 2, 1255, 1256, 7, 280, 2, 2, 1256, 1257, 7, 278, 2, 2, 1257, 1259, 7, 279, 2, 2, 1258, 1244, 3, 2, 2, 2, 1258, 1245, 3, 2, 2, 2, 1258, 1246, 3, 2, 2, 2, 1258, 1247, 3, 2, 2, 2, 1258, 1249, 3, 2, 2, 2, 1258, 1251, 3, 2, 2, 2, 1258, 1253, 3, 2, 2, 2, 1258, 1255, 3, 2, 2, 2, 1259, 199, 3, 2, 2, 2, 1260, 1261, 7, 280, 2, 2, 1261, 1268, 7, 280, 2, 2, 1262, 1263, 7, 279, 2, 2, 1263, 1268, 7, 279, 2, 2, 1264, 1268, 7, 284, 2, 2, 1265, 1268, 7, 285, 2, 2, 1266, 1268, 7, 283, 2, 2, 1267, 1260, 3, 2, 2, 2, 1267, 1262, 3, 2, 2, 2, 1267, 1264, 3, 2, 2, 2, 1267, 1265, 3, 2, 2, 2, 1267, 1266, 3, 2, 2, 2, 1268, 201, 3, 2, 2, 2, 1269, 1270, 9, 21, 2, 2, 1270, 203, 3, 2, 2, 2, 1271, 1272, 9, 22, 2, 2, 1272, 205, 3, 2, 2, 2, 1273, 1274, 5, 180, 91, 2, 1274, 207, 3, 2, 2, 2, 1275, 1288, 5, 210, 106, 2, 1276, 1288, 5, 212, 107, 2, 1277, 1288, 5, 146, 74, 2, 1278, 1279, 7, 300, 2, 2, 1279, 1288, 5, 212, 107, 2, 1280, 1288, 5, 214, 108, 2, 1281, 1288, 7, 309, 2, 2, 1282, 1288, 7, 310, 2, 2, 1283, 1285, 7, 27, 2, 2, 1284, 1283, 3, 2, 2, 2, 1284, 1285, 3, 2, 2, 2, 1285, 1286, 3, 2, 2, 2, 1286, 1288, 7, 277, 2, 2, 1287, 1275, 3, 2, 2, 2, 1287, 1276, 3, 2, 2, 2, 1287, 1277, 3, 2, 2, 2, 1287, 1278, 3, 2, 2, 2, 1287, 1280, 3, 2, 2, 2, 1287, 1281, 3, 2, 2, 2, 1287, 1282, 3, 2, 2, 2, 1287, 1284, 3, 2, 2, 2, 1288, 209, 3, 2, 2, 2, 1289, 1290, 7, 307, 2, 2, 1290, 211, 3, 2, 2, 2, 1291, 1292, 7, 308, 2, 2, 1292, 213, 3, 2, 2, 2, 1293, 1294, 9, 14, 2, 2, 1294, 215, 3, 2, 2, 2, 1295, 1296, 9, 23, 2, 2, 1296, 217, 3, 2, 2, 2, 151, 226, 229, 231, 240, 256, 260, 272, 288, 292, 296, 299, 303, 308, 337, 350, 355, 359, 369, 379, 383, 389, 393, 401, 404, 407, 416, 420, 427, 434, 452, 456, 463, 468, 475, 479, 483, 487, 495, 499, 507, 511, 522, 531, 544, 547, 551, 554, 556, 561, 565, 568, 572, 581, 587, 590, 593, 596, 600, 608, 611, 615, 618, 629, 634, 637, 642, 646, 651, 654, 667, 678, 689, 694, 706, 718, 730, 742, 755, 760, 772, 777, 782, 790, 798, 808, 811, 820, 823, 826, 832, 836, 842, 859, 861, 869, 871, 875, 883, 892, 898, 911, 916, 928, 933, 936, 942, 947, 952, 957, 963, 984, 986, 994, 998, 1007, 1011, 1020, 1029, 1053, 1060, 1063, 1073, 1082, 1094, 1100, 1104, 1111, 1116, 1124, 1128, 1131, 1135, 1144, 1147, 1158, 1165, 1181, 1188, 1207, 1214, 1217, 1224, 1228, 1234, 1242, 1258, 1267, 1284, 1287] \ No newline at end of file +[3, 24715, 42794, 33075, 47597, 16764, 15335, 30598, 22884, 3, 319, 1348, 4, 2, 9, 2, 4, 3, 9, 3, 4, 4, 9, 4, 4, 5, 9, 5, 4, 6, 9, 6, 4, 7, 9, 7, 4, 8, 9, 8, 4, 9, 9, 9, 4, 10, 9, 10, 4, 11, 9, 11, 4, 12, 9, 12, 4, 13, 9, 13, 4, 14, 9, 14, 4, 15, 9, 15, 4, 16, 9, 16, 4, 17, 9, 17, 4, 18, 9, 18, 4, 19, 9, 19, 4, 20, 9, 20, 4, 21, 9, 21, 4, 22, 9, 22, 4, 23, 9, 23, 4, 24, 9, 24, 4, 25, 9, 25, 4, 26, 9, 26, 4, 27, 9, 27, 4, 28, 9, 28, 4, 29, 9, 29, 4, 30, 9, 30, 4, 31, 9, 31, 4, 32, 9, 32, 4, 33, 9, 33, 4, 34, 9, 34, 4, 35, 9, 35, 4, 36, 9, 36, 4, 37, 9, 37, 4, 38, 9, 38, 4, 39, 9, 39, 4, 40, 9, 40, 4, 41, 9, 41, 4, 42, 9, 42, 4, 43, 9, 43, 4, 44, 9, 44, 4, 45, 9, 45, 4, 46, 9, 46, 4, 47, 9, 47, 4, 48, 9, 48, 4, 49, 9, 49, 4, 50, 9, 50, 4, 51, 9, 51, 4, 52, 9, 52, 4, 53, 9, 53, 4, 54, 9, 54, 4, 55, 9, 55, 4, 56, 9, 56, 4, 57, 9, 57, 4, 58, 9, 58, 4, 59, 9, 59, 4, 60, 9, 60, 4, 61, 9, 61, 4, 62, 9, 62, 4, 63, 9, 63, 4, 64, 9, 64, 4, 65, 9, 65, 4, 66, 9, 66, 4, 67, 9, 67, 4, 68, 9, 68, 4, 69, 9, 69, 4, 70, 9, 70, 4, 71, 9, 71, 4, 72, 9, 72, 4, 73, 9, 73, 4, 74, 9, 74, 4, 75, 9, 75, 4, 76, 9, 76, 4, 77, 9, 77, 4, 78, 9, 78, 4, 79, 9, 79, 4, 80, 9, 80, 4, 81, 9, 81, 4, 82, 9, 82, 4, 83, 9, 83, 4, 84, 9, 84, 4, 85, 9, 85, 4, 86, 9, 86, 4, 87, 9, 87, 4, 88, 9, 88, 4, 89, 9, 89, 4, 90, 9, 90, 4, 91, 9, 91, 4, 92, 9, 92, 4, 93, 9, 93, 4, 94, 9, 94, 4, 95, 9, 95, 4, 96, 9, 96, 4, 97, 9, 97, 4, 98, 9, 98, 4, 99, 9, 99, 4, 100, 9, 100, 4, 101, 9, 101, 4, 102, 9, 102, 4, 103, 9, 103, 4, 104, 9, 104, 4, 105, 9, 105, 4, 106, 9, 106, 4, 107, 9, 107, 4, 108, 9, 108, 4, 109, 9, 109, 4, 110, 9, 110, 4, 111, 9, 111, 4, 112, 9, 112, 4, 113, 9, 113, 4, 114, 9, 114, 3, 2, 3, 2, 3, 2, 3, 3, 3, 3, 3, 3, 3, 4, 3, 4, 5, 4, 237, 10, 4, 3, 4, 7, 4, 240, 10, 4, 12, 4, 14, 4, 243, 11, 4, 3, 5, 3, 5, 3, 5, 3, 5, 3, 5, 3, 5, 5, 5, 251, 10, 5, 3, 6, 3, 6, 3, 7, 3, 7, 3, 7, 3, 7, 3, 7, 3, 7, 3, 7, 3, 7, 3, 7, 3, 7, 3, 7, 3, 7, 5, 7, 267, 10, 7, 3, 8, 3, 8, 5, 8, 271, 10, 8, 3, 9, 3, 9, 3, 9, 3, 10, 3, 10, 3, 10, 3, 10, 3, 10, 3, 11, 3, 11, 5, 11, 283, 10, 11, 3, 11, 3, 11, 3, 12, 3, 12, 3, 12, 3, 13, 3, 13, 3, 13, 3, 13, 3, 13, 3, 13, 3, 13, 7, 13, 297, 10, 13, 12, 13, 14, 13, 300, 11, 13, 3, 13, 3, 13, 5, 13, 304, 10, 13, 3, 13, 3, 13, 5, 13, 308, 10, 13, 3, 13, 3, 13, 5, 13, 312, 10, 13, 3, 13, 3, 13, 5, 13, 316, 10, 13, 3, 13, 5, 13, 319, 10, 13, 3, 13, 3, 13, 5, 13, 323, 10, 13, 3, 14, 3, 14, 3, 14, 5, 14, 328, 10, 14, 3, 14, 5, 14, 331, 10, 14, 3, 15, 3, 15, 5, 15, 335, 10, 15, 3, 16, 3, 16, 3, 16, 7, 16, 340, 10, 16, 12, 16, 14, 16, 343, 11, 16, 3, 17, 3, 17, 3, 18, 3, 18, 3, 18, 3, 18, 3, 19, 3, 19, 3, 19, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 21, 3, 21, 5, 21, 362, 10, 21, 3, 21, 3, 21, 3, 21, 3, 21, 3, 21, 3, 21, 3, 22, 3, 22, 3, 22, 3, 22, 3, 23, 3, 23, 3, 23, 3, 23, 3, 24, 3, 24, 3, 24, 3, 24, 7, 24, 382, 10, 24, 12, 24, 14, 24, 385, 11, 24, 3, 24, 3, 24, 3, 25, 3, 25, 3, 25, 3, 25, 3, 25, 3, 25, 7, 25, 395, 10, 25, 12, 25, 14, 25, 398, 11, 25, 3, 25, 3, 25, 5, 25, 402, 10, 25, 3, 26, 3, 26, 5, 26, 406, 10, 26, 3, 27, 3, 27, 3, 27, 3, 27, 3, 28, 3, 28, 3, 28, 3, 28, 5, 28, 416, 10, 28, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 30, 3, 30, 3, 30, 5, 30, 426, 10, 30, 3, 30, 3, 30, 5, 30, 430, 10, 30, 3, 30, 3, 30, 3, 31, 3, 31, 5, 31, 436, 10, 31, 3, 31, 3, 31, 5, 31, 440, 10, 31, 3, 31, 3, 31, 5, 31, 444, 10, 31, 3, 31, 5, 31, 447, 10, 31, 3, 31, 3, 31, 3, 31, 3, 32, 3, 32, 3, 32, 3, 32, 5, 32, 456, 10, 32, 3, 32, 3, 32, 5, 32, 460, 10, 32, 3, 32, 3, 32, 3, 32, 3, 32, 3, 32, 5, 32, 467, 10, 32, 3, 33, 3, 33, 3, 33, 3, 33, 3, 33, 5, 33, 474, 10, 33, 3, 34, 3, 34, 3, 34, 3, 34, 3, 35, 3, 35, 3, 35, 3, 36, 3, 36, 3, 36, 3, 36, 3, 36, 3, 37, 3, 37, 3, 37, 3, 37, 5, 37, 492, 10, 37, 3, 37, 3, 37, 5, 37, 496, 10, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 5, 37, 503, 10, 37, 3, 38, 3, 38, 3, 38, 5, 38, 508, 10, 38, 3, 38, 3, 38, 3, 39, 3, 39, 3, 39, 5, 39, 515, 10, 39, 3, 39, 3, 39, 5, 39, 519, 10, 39, 3, 40, 3, 40, 5, 40, 523, 10, 40, 3, 40, 3, 40, 5, 40, 527, 10, 40, 3, 40, 3, 40, 3, 41, 3, 41, 3, 41, 3, 41, 5, 41, 535, 10, 41, 3, 41, 3, 41, 5, 41, 539, 10, 41, 3, 41, 3, 41, 3, 42, 3, 42, 3, 42, 3, 42, 5, 42, 547, 10, 42, 3, 42, 3, 42, 5, 42, 551, 10, 42, 3, 43, 3, 43, 3, 43, 3, 44, 3, 44, 3, 44, 3, 44, 7, 44, 560, 10, 44, 12, 44, 14, 44, 563, 11, 44, 3, 45, 3, 45, 3, 45, 3, 45, 7, 45, 569, 10, 45, 12, 45, 14, 45, 572, 11, 45, 3, 45, 3, 45, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 5, 46, 584, 10, 46, 3, 46, 5, 46, 587, 10, 46, 3, 46, 3, 46, 5, 46, 591, 10, 46, 3, 46, 5, 46, 594, 10, 46, 5, 46, 596, 10, 46, 3, 46, 3, 46, 3, 46, 5, 46, 601, 10, 46, 3, 46, 3, 46, 5, 46, 605, 10, 46, 3, 46, 5, 46, 608, 10, 46, 7, 46, 610, 10, 46, 12, 46, 14, 46, 613, 11, 46, 3, 47, 3, 47, 3, 47, 3, 47, 7, 47, 619, 10, 47, 12, 47, 14, 47, 622, 11, 47, 3, 48, 3, 48, 3, 48, 5, 48, 627, 10, 48, 3, 48, 5, 48, 630, 10, 48, 3, 48, 5, 48, 633, 10, 48, 3, 48, 5, 48, 636, 10, 48, 3, 49, 3, 49, 5, 49, 640, 10, 49, 3, 49, 3, 49, 3, 49, 3, 49, 7, 49, 646, 10, 49, 12, 49, 14, 49, 649, 11, 49, 5, 49, 651, 10, 49, 3, 50, 3, 50, 5, 50, 655, 10, 50, 3, 50, 5, 50, 658, 10, 50, 3, 51, 3, 51, 3, 51, 3, 52, 3, 52, 3, 52, 3, 52, 7, 52, 667, 10, 52, 12, 52, 14, 52, 670, 11, 52, 3, 52, 3, 52, 5, 52, 674, 10, 52, 3, 52, 5, 52, 677, 10, 52, 3, 52, 3, 52, 3, 52, 5, 52, 682, 10, 52, 7, 52, 684, 10, 52, 12, 52, 14, 52, 687, 11, 52, 3, 53, 3, 53, 5, 53, 691, 10, 53, 3, 54, 5, 54, 694, 10, 54, 3, 54, 3, 54, 3, 54, 3, 54, 3, 54, 3, 54, 3, 54, 3, 54, 3, 54, 7, 54, 705, 10, 54, 12, 54, 14, 54, 708, 11, 54, 3, 54, 3, 54, 3, 54, 3, 54, 3, 54, 3, 54, 3, 54, 3, 54, 5, 54, 718, 10, 54, 3, 55, 3, 55, 3, 55, 3, 55, 3, 55, 3, 55, 3, 55, 7, 55, 727, 10, 55, 12, 55, 14, 55, 730, 11, 55, 3, 55, 3, 55, 5, 55, 734, 10, 55, 3, 56, 3, 56, 3, 56, 3, 57, 3, 57, 3, 57, 3, 57, 3, 57, 7, 57, 744, 10, 57, 12, 57, 14, 57, 747, 11, 57, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 7, 58, 756, 10, 58, 12, 58, 14, 58, 759, 11, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 7, 58, 768, 10, 58, 12, 58, 14, 58, 771, 11, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 7, 58, 780, 10, 58, 12, 58, 14, 58, 783, 11, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 7, 58, 793, 10, 58, 12, 58, 14, 58, 796, 11, 58, 3, 58, 3, 58, 5, 58, 800, 10, 58, 3, 59, 3, 59, 3, 59, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 7, 60, 810, 10, 60, 12, 60, 14, 60, 813, 11, 60, 3, 61, 3, 61, 5, 61, 817, 10, 61, 3, 62, 3, 62, 3, 62, 5, 62, 822, 10, 62, 3, 63, 3, 63, 3, 63, 3, 63, 7, 63, 828, 10, 63, 12, 63, 14, 63, 831, 11, 63, 3, 64, 3, 64, 3, 64, 3, 64, 3, 65, 5, 65, 838, 10, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 7, 65, 846, 10, 65, 12, 65, 14, 65, 849, 11, 65, 5, 65, 851, 10, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 7, 65, 858, 10, 65, 12, 65, 14, 65, 861, 11, 65, 5, 65, 863, 10, 65, 3, 65, 5, 65, 866, 10, 65, 3, 65, 3, 65, 3, 66, 3, 66, 5, 66, 872, 10, 66, 3, 66, 3, 66, 5, 66, 876, 10, 66, 3, 67, 3, 67, 3, 67, 3, 67, 5, 67, 882, 10, 67, 3, 68, 3, 68, 3, 68, 3, 69, 3, 69, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 5, 70, 899, 10, 70, 5, 70, 901, 10, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 7, 70, 909, 10, 70, 12, 70, 14, 70, 912, 11, 70, 3, 71, 5, 71, 915, 10, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 5, 71, 923, 10, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 7, 71, 930, 10, 71, 12, 71, 14, 71, 933, 11, 71, 3, 71, 3, 71, 3, 71, 5, 71, 938, 10, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 5, 71, 951, 10, 71, 3, 71, 3, 71, 3, 71, 5, 71, 956, 10, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 7, 71, 966, 10, 71, 12, 71, 14, 71, 969, 11, 71, 3, 71, 3, 71, 5, 71, 973, 10, 71, 3, 71, 5, 71, 976, 10, 71, 3, 71, 3, 71, 3, 71, 3, 71, 5, 71, 982, 10, 71, 3, 71, 3, 71, 3, 71, 5, 71, 987, 10, 71, 3, 71, 3, 71, 3, 71, 5, 71, 992, 10, 71, 3, 71, 3, 71, 3, 71, 5, 71, 997, 10, 71, 3, 72, 3, 72, 3, 72, 3, 72, 5, 72, 1003, 10, 72, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 7, 72, 1024, 10, 72, 12, 72, 14, 72, 1027, 11, 72, 3, 73, 3, 73, 3, 73, 6, 73, 1032, 10, 73, 13, 73, 14, 73, 1033, 3, 73, 3, 73, 5, 73, 1038, 10, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 6, 73, 1045, 10, 73, 13, 73, 14, 73, 1046, 3, 73, 3, 73, 5, 73, 1051, 10, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 5, 73, 1067, 10, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 5, 73, 1076, 10, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 5, 73, 1100, 10, 73, 3, 73, 3, 73, 3, 73, 7, 73, 1105, 10, 73, 12, 73, 14, 73, 1108, 11, 73, 5, 73, 1110, 10, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 5, 73, 1120, 10, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 7, 73, 1127, 10, 73, 12, 73, 14, 73, 1130, 11, 73, 3, 74, 3, 74, 3, 75, 3, 75, 3, 76, 3, 76, 5, 76, 1138, 10, 76, 3, 77, 3, 77, 3, 77, 5, 77, 1143, 10, 77, 3, 78, 3, 78, 5, 78, 1147, 10, 78, 3, 79, 3, 79, 3, 79, 6, 79, 1152, 10, 79, 13, 79, 14, 79, 1153, 3, 80, 3, 80, 3, 80, 5, 80, 1159, 10, 80, 3, 81, 3, 81, 3, 81, 3, 81, 3, 81, 3, 82, 5, 82, 1167, 10, 82, 3, 82, 3, 82, 5, 82, 1171, 10, 82, 3, 83, 5, 83, 1174, 10, 83, 3, 83, 3, 83, 5, 83, 1178, 10, 83, 3, 84, 5, 84, 1181, 10, 84, 3, 84, 3, 84, 5, 84, 1185, 10, 84, 3, 85, 3, 85, 3, 85, 3, 86, 3, 86, 6, 86, 1192, 10, 86, 13, 86, 14, 86, 1193, 3, 86, 5, 86, 1197, 10, 86, 3, 87, 3, 87, 3, 87, 3, 87, 3, 88, 3, 88, 3, 88, 7, 88, 1206, 10, 88, 12, 88, 14, 88, 1209, 11, 88, 3, 89, 3, 89, 3, 90, 3, 90, 5, 90, 1215, 10, 90, 3, 91, 3, 91, 3, 92, 3, 92, 3, 93, 3, 93, 3, 93, 3, 93, 3, 93, 3, 94, 3, 94, 3, 94, 7, 94, 1229, 10, 94, 12, 94, 14, 94, 1232, 11, 94, 3, 95, 3, 95, 7, 95, 1236, 10, 95, 12, 95, 14, 95, 1239, 11, 95, 3, 96, 3, 96, 7, 96, 1243, 10, 96, 12, 96, 14, 96, 1246, 11, 96, 3, 97, 3, 97, 3, 97, 3, 98, 3, 98, 3, 98, 3, 98, 3, 99, 3, 99, 3, 99, 3, 100, 3, 100, 3, 100, 3, 100, 7, 100, 1262, 10, 100, 12, 100, 14, 100, 1265, 11, 100, 3, 100, 3, 100, 3, 101, 3, 101, 5, 101, 1271, 10, 101, 3, 101, 5, 101, 1274, 10, 101, 3, 102, 3, 102, 3, 102, 5, 102, 1279, 10, 102, 3, 103, 3, 103, 3, 103, 3, 103, 5, 103, 1285, 10, 103, 3, 104, 3, 104, 3, 104, 3, 104, 3, 104, 3, 104, 5, 104, 1293, 10, 104, 3, 105, 3, 105, 3, 105, 3, 105, 3, 105, 3, 105, 3, 105, 3, 105, 3, 105, 3, 105, 3, 105, 3, 105, 3, 105, 3, 105, 5, 105, 1309, 10, 105, 3, 106, 3, 106, 3, 106, 3, 106, 3, 106, 3, 106, 3, 106, 5, 106, 1318, 10, 106, 3, 107, 3, 107, 3, 108, 3, 108, 3, 109, 3, 109, 3, 110, 3, 110, 3, 110, 3, 110, 3, 110, 3, 110, 3, 110, 3, 110, 3, 110, 5, 110, 1335, 10, 110, 3, 110, 5, 110, 1338, 10, 110, 3, 111, 3, 111, 3, 112, 3, 112, 3, 113, 3, 113, 3, 114, 3, 114, 3, 114, 4, 1237, 1244, 7, 90, 102, 138, 142, 144, 115, 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, 2, 26, 6, 2, 88, 88, 93, 93, 200, 200, 254, 255, 3, 2, 260, 283, 3, 2, 247, 248, 4, 2, 10, 10, 249, 249, 4, 2, 174, 174, 251, 251, 4, 2, 191, 191, 193, 193, 4, 2, 79, 79, 147, 147, 4, 2, 95, 96, 98, 98, 4, 2, 50, 50, 52, 53, 3, 2, 37, 38, 4, 2, 67, 67, 69, 69, 3, 2, 10, 11, 3, 2, 34, 35, 4, 2, 288, 288, 306, 307, 6, 2, 134, 134, 304, 304, 308, 308, 311, 311, 4, 2, 306, 307, 309, 309, 3, 2, 306, 307, 3, 2, 315, 316, 4, 2, 315, 315, 318, 318, 3, 2, 318, 319, 3, 2, 312, 313, 6, 2, 134, 134, 304, 304, 306, 308, 310, 311, 5, 2, 27, 27, 287, 288, 306, 307, 4, 2, 10, 10, 12, 12, 2, 1459, 2, 228, 3, 2, 2, 2, 4, 231, 3, 2, 2, 2, 6, 241, 3, 2, 2, 2, 8, 250, 3, 2, 2, 2, 10, 252, 3, 2, 2, 2, 12, 266, 3, 2, 2, 2, 14, 270, 3, 2, 2, 2, 16, 272, 3, 2, 2, 2, 18, 275, 3, 2, 2, 2, 20, 280, 3, 2, 2, 2, 22, 286, 3, 2, 2, 2, 24, 289, 3, 2, 2, 2, 26, 324, 3, 2, 2, 2, 28, 334, 3, 2, 2, 2, 30, 336, 3, 2, 2, 2, 32, 344, 3, 2, 2, 2, 34, 346, 3, 2, 2, 2, 36, 350, 3, 2, 2, 2, 38, 353, 3, 2, 2, 2, 40, 361, 3, 2, 2, 2, 42, 369, 3, 2, 2, 2, 44, 373, 3, 2, 2, 2, 46, 377, 3, 2, 2, 2, 48, 401, 3, 2, 2, 2, 50, 405, 3, 2, 2, 2, 52, 407, 3, 2, 2, 2, 54, 415, 3, 2, 2, 2, 56, 417, 3, 2, 2, 2, 58, 422, 3, 2, 2, 2, 60, 433, 3, 2, 2, 2, 62, 451, 3, 2, 2, 2, 64, 468, 3, 2, 2, 2, 66, 475, 3, 2, 2, 2, 68, 479, 3, 2, 2, 2, 70, 482, 3, 2, 2, 2, 72, 487, 3, 2, 2, 2, 74, 504, 3, 2, 2, 2, 76, 511, 3, 2, 2, 2, 78, 520, 3, 2, 2, 2, 80, 530, 3, 2, 2, 2, 82, 542, 3, 2, 2, 2, 84, 552, 3, 2, 2, 2, 86, 555, 3, 2, 2, 2, 88, 564, 3, 2, 2, 2, 90, 595, 3, 2, 2, 2, 92, 614, 3, 2, 2, 2, 94, 623, 3, 2, 2, 2, 96, 637, 3, 2, 2, 2, 98, 652, 3, 2, 2, 2, 100, 659, 3, 2, 2, 2, 102, 662, 3, 2, 2, 2, 104, 688, 3, 2, 2, 2, 106, 717, 3, 2, 2, 2, 108, 733, 3, 2, 2, 2, 110, 735, 3, 2, 2, 2, 112, 738, 3, 2, 2, 2, 114, 799, 3, 2, 2, 2, 116, 801, 3, 2, 2, 2, 118, 804, 3, 2, 2, 2, 120, 814, 3, 2, 2, 2, 122, 818, 3, 2, 2, 2, 124, 823, 3, 2, 2, 2, 126, 832, 3, 2, 2, 2, 128, 837, 3, 2, 2, 2, 130, 869, 3, 2, 2, 2, 132, 881, 3, 2, 2, 2, 134, 883, 3, 2, 2, 2, 136, 886, 3, 2, 2, 2, 138, 900, 3, 2, 2, 2, 140, 996, 3, 2, 2, 2, 142, 1002, 3, 2, 2, 2, 144, 1119, 3, 2, 2, 2, 146, 1131, 3, 2, 2, 2, 148, 1133, 3, 2, 2, 2, 150, 1137, 3, 2, 2, 2, 152, 1139, 3, 2, 2, 2, 154, 1144, 3, 2, 2, 2, 156, 1151, 3, 2, 2, 2, 158, 1155, 3, 2, 2, 2, 160, 1160, 3, 2, 2, 2, 162, 1170, 3, 2, 2, 2, 164, 1173, 3, 2, 2, 2, 166, 1180, 3, 2, 2, 2, 168, 1186, 3, 2, 2, 2, 170, 1196, 3, 2, 2, 2, 172, 1198, 3, 2, 2, 2, 174, 1202, 3, 2, 2, 2, 176, 1210, 3, 2, 2, 2, 178, 1214, 3, 2, 2, 2, 180, 1216, 3, 2, 2, 2, 182, 1218, 3, 2, 2, 2, 184, 1220, 3, 2, 2, 2, 186, 1225, 3, 2, 2, 2, 188, 1233, 3, 2, 2, 2, 190, 1240, 3, 2, 2, 2, 192, 1247, 3, 2, 2, 2, 194, 1250, 3, 2, 2, 2, 196, 1254, 3, 2, 2, 2, 198, 1257, 3, 2, 2, 2, 200, 1268, 3, 2, 2, 2, 202, 1278, 3, 2, 2, 2, 204, 1284, 3, 2, 2, 2, 206, 1292, 3, 2, 2, 2, 208, 1308, 3, 2, 2, 2, 210, 1317, 3, 2, 2, 2, 212, 1319, 3, 2, 2, 2, 214, 1321, 3, 2, 2, 2, 216, 1323, 3, 2, 2, 2, 218, 1337, 3, 2, 2, 2, 220, 1339, 3, 2, 2, 2, 222, 1341, 3, 2, 2, 2, 224, 1343, 3, 2, 2, 2, 226, 1345, 3, 2, 2, 2, 228, 229, 5, 4, 3, 2, 229, 230, 7, 2, 2, 3, 230, 3, 3, 2, 2, 2, 231, 232, 5, 6, 4, 2, 232, 233, 7, 2, 2, 3, 233, 5, 3, 2, 2, 2, 234, 236, 5, 8, 5, 2, 235, 237, 7, 298, 2, 2, 236, 235, 3, 2, 2, 2, 236, 237, 3, 2, 2, 2, 237, 240, 3, 2, 2, 2, 238, 240, 5, 10, 6, 2, 239, 234, 3, 2, 2, 2, 239, 238, 3, 2, 2, 2, 240, 243, 3, 2, 2, 2, 241, 239, 3, 2, 2, 2, 241, 242, 3, 2, 2, 2, 242, 7, 3, 2, 2, 2, 243, 241, 3, 2, 2, 2, 244, 251, 5, 12, 7, 2, 245, 251, 5, 14, 8, 2, 246, 251, 5, 16, 9, 2, 247, 251, 5, 18, 10, 2, 248, 251, 5, 20, 11, 2, 249, 251, 5, 22, 12, 2, 250, 244, 3, 2, 2, 2, 250, 245, 3, 2, 2, 2, 250, 246, 3, 2, 2, 2, 250, 247, 3, 2, 2, 2, 250, 248, 3, 2, 2, 2, 250, 249, 3, 2, 2, 2, 251, 9, 3, 2, 2, 2, 252, 253, 7, 298, 2, 2, 253, 11, 3, 2, 2, 2, 254, 267, 5, 24, 13, 2, 255, 267, 5, 58, 30, 2, 256, 267, 5, 60, 31, 2, 257, 267, 5, 62, 32, 2, 258, 267, 5, 56, 29, 2, 259, 267, 5, 64, 33, 2, 260, 267, 5, 70, 36, 2, 261, 267, 5, 72, 37, 2, 262, 267, 5, 74, 38, 2, 263, 267, 5, 76, 39, 2, 264, 267, 5, 78, 40, 2, 265, 267, 5, 80, 41, 2, 266, 254, 3, 2, 2, 2, 266, 255, 3, 2, 2, 2, 266, 256, 3, 2, 2, 2, 266, 257, 3, 2, 2, 2, 266, 258, 3, 2, 2, 2, 266, 259, 3, 2, 2, 2, 266, 260, 3, 2, 2, 2, 266, 261, 3, 2, 2, 2, 266, 262, 3, 2, 2, 2, 266, 263, 3, 2, 2, 2, 266, 264, 3, 2, 2, 2, 266, 265, 3, 2, 2, 2, 267, 13, 3, 2, 2, 2, 268, 271, 5, 90, 46, 2, 269, 271, 5, 82, 42, 2, 270, 268, 3, 2, 2, 2, 270, 269, 3, 2, 2, 2, 271, 15, 3, 2, 2, 2, 272, 273, 7, 80, 2, 2, 273, 274, 5, 188, 95, 2, 274, 17, 3, 2, 2, 2, 275, 276, 7, 81, 2, 2, 276, 277, 5, 176, 89, 2, 277, 278, 7, 39, 2, 2, 278, 279, 5, 14, 8, 2, 279, 19, 3, 2, 2, 2, 280, 282, 7, 91, 2, 2, 281, 283, 7, 252, 2, 2, 282, 281, 3, 2, 2, 2, 282, 283, 3, 2, 2, 2, 283, 284, 3, 2, 2, 2, 284, 285, 5, 188, 95, 2, 285, 21, 3, 2, 2, 2, 286, 287, 7, 87, 2, 2, 287, 288, 9, 2, 2, 2, 288, 23, 3, 2, 2, 2, 289, 290, 7, 72, 2, 2, 290, 291, 7, 73, 2, 2, 291, 292, 5, 188, 95, 2, 292, 293, 7, 295, 2, 2, 293, 298, 5, 26, 14, 2, 294, 295, 7, 297, 2, 2, 295, 297, 5, 26, 14, 2, 296, 294, 3, 2, 2, 2, 297, 300, 3, 2, 2, 2, 298, 296, 3, 2, 2, 2, 298, 299, 3, 2, 2, 2, 299, 303, 3, 2, 2, 2, 300, 298, 3, 2, 2, 2, 301, 302, 7, 297, 2, 2, 302, 304, 5, 38, 20, 2, 303, 301, 3, 2, 2, 2, 303, 304, 3, 2, 2, 2, 304, 307, 3, 2, 2, 2, 305, 306, 7, 297, 2, 2, 306, 308, 5, 40, 21, 2, 307, 305, 3, 2, 2, 2, 307, 308, 3, 2, 2, 2, 308, 311, 3, 2, 2, 2, 309, 310, 7, 297, 2, 2, 310, 312, 5, 42, 22, 2, 311, 309, 3, 2, 2, 2, 311, 312, 3, 2, 2, 2, 312, 313, 3, 2, 2, 2, 313, 315, 7, 296, 2, 2, 314, 316, 5, 36, 19, 2, 315, 314, 3, 2, 2, 2, 315, 316, 3, 2, 2, 2, 316, 318, 3, 2, 2, 2, 317, 319, 5, 44, 23, 2, 318, 317, 3, 2, 2, 2, 318, 319, 3, 2, 2, 2, 319, 320, 3, 2, 2, 2, 320, 322, 5, 192, 97, 2, 321, 323, 5, 52, 27, 2, 322, 321, 3, 2, 2, 2, 322, 323, 3, 2, 2, 2, 323, 25, 3, 2, 2, 2, 324, 325, 5, 28, 15, 2, 325, 327, 5, 32, 17, 2, 326, 328, 5, 34, 18, 2, 327, 326, 3, 2, 2, 2, 327, 328, 3, 2, 2, 2, 328, 330, 3, 2, 2, 2, 329, 331, 5, 164, 83, 2, 330, 329, 3, 2, 2, 2, 330, 331, 3, 2, 2, 2, 331, 27, 3, 2, 2, 2, 332, 335, 5, 190, 96, 2, 333, 335, 5, 136, 69, 2, 334, 332, 3, 2, 2, 2, 334, 333, 3, 2, 2, 2, 335, 29, 3, 2, 2, 2, 336, 341, 5, 28, 15, 2, 337, 338, 7, 297, 2, 2, 338, 340, 5, 28, 15, 2, 339, 337, 3, 2, 2, 2, 340, 343, 3, 2, 2, 2, 341, 339, 3, 2, 2, 2, 341, 342, 3, 2, 2, 2, 342, 31, 3, 2, 2, 2, 343, 341, 3, 2, 2, 2, 344, 345, 9, 3, 2, 2, 345, 33, 3, 2, 2, 2, 346, 347, 7, 295, 2, 2, 347, 348, 5, 222, 112, 2, 348, 349, 7, 296, 2, 2, 349, 35, 3, 2, 2, 2, 350, 351, 7, 105, 2, 2, 351, 352, 7, 314, 2, 2, 352, 37, 3, 2, 2, 2, 353, 354, 7, 232, 2, 2, 354, 355, 7, 39, 2, 2, 355, 356, 5, 136, 69, 2, 356, 357, 7, 9, 2, 2, 357, 358, 5, 136, 69, 2, 358, 39, 3, 2, 2, 2, 359, 360, 7, 192, 2, 2, 360, 362, 5, 176, 89, 2, 361, 359, 3, 2, 2, 2, 361, 362, 3, 2, 2, 2, 362, 363, 3, 2, 2, 2, 363, 364, 7, 256, 2, 2, 364, 365, 7, 257, 2, 2, 365, 366, 7, 295, 2, 2, 366, 367, 5, 30, 16, 2, 367, 368, 7, 296, 2, 2, 368, 41, 3, 2, 2, 2, 369, 370, 7, 258, 2, 2, 370, 371, 7, 39, 2, 2, 371, 372, 7, 259, 2, 2, 372, 43, 3, 2, 2, 2, 373, 374, 7, 207, 2, 2, 374, 375, 7, 15, 2, 2, 375, 376, 5, 46, 24, 2, 376, 45, 3, 2, 2, 2, 377, 378, 7, 295, 2, 2, 378, 383, 5, 48, 25, 2, 379, 380, 7, 297, 2, 2, 380, 382, 5, 48, 25, 2, 381, 379, 3, 2, 2, 2, 382, 385, 3, 2, 2, 2, 383, 381, 3, 2, 2, 2, 383, 384, 3, 2, 2, 2, 384, 386, 3, 2, 2, 2, 385, 383, 3, 2, 2, 2, 386, 387, 7, 296, 2, 2, 387, 47, 3, 2, 2, 2, 388, 402, 5, 150, 76, 2, 389, 390, 5, 176, 89, 2, 390, 391, 7, 295, 2, 2, 391, 396, 5, 50, 26, 2, 392, 393, 7, 297, 2, 2, 393, 395, 5, 50, 26, 2, 394, 392, 3, 2, 2, 2, 395, 398, 3, 2, 2, 2, 396, 394, 3, 2, 2, 2, 396, 397, 3, 2, 2, 2, 397, 399, 3, 2, 2, 2, 398, 396, 3, 2, 2, 2, 399, 400, 7, 296, 2, 2, 400, 402, 3, 2, 2, 2, 401, 388, 3, 2, 2, 2, 401, 389, 3, 2, 2, 2, 402, 49, 3, 2, 2, 2, 403, 406, 5, 150, 76, 2, 404, 406, 5, 218, 110, 2, 405, 403, 3, 2, 2, 2, 405, 404, 3, 2, 2, 2, 406, 51, 3, 2, 2, 2, 407, 408, 7, 31, 2, 2, 408, 409, 5, 176, 89, 2, 409, 410, 5, 54, 28, 2, 410, 53, 3, 2, 2, 2, 411, 412, 9, 4, 2, 2, 412, 416, 9, 5, 2, 2, 413, 414, 9, 4, 2, 2, 414, 416, 9, 6, 2, 2, 415, 411, 3, 2, 2, 2, 415, 413, 3, 2, 2, 2, 416, 55, 3, 2, 2, 2, 417, 418, 7, 72, 2, 2, 418, 419, 7, 252, 2, 2, 419, 420, 5, 188, 95, 2, 420, 421, 5, 192, 97, 2, 421, 57, 3, 2, 2, 2, 422, 423, 7, 72, 2, 2, 423, 425, 7, 199, 2, 2, 424, 426, 5, 194, 98, 2, 425, 424, 3, 2, 2, 2, 425, 426, 3, 2, 2, 2, 426, 427, 3, 2, 2, 2, 427, 429, 5, 188, 95, 2, 428, 430, 5, 36, 19, 2, 429, 428, 3, 2, 2, 2, 429, 430, 3, 2, 2, 2, 430, 431, 3, 2, 2, 2, 431, 432, 5, 192, 97, 2, 432, 59, 3, 2, 2, 2, 433, 435, 7, 72, 2, 2, 434, 436, 7, 173, 2, 2, 435, 434, 3, 2, 2, 2, 435, 436, 3, 2, 2, 2, 436, 437, 3, 2, 2, 2, 437, 439, 7, 75, 2, 2, 438, 440, 5, 194, 98, 2, 439, 438, 3, 2, 2, 2, 439, 440, 3, 2, 2, 2, 440, 441, 3, 2, 2, 2, 441, 443, 5, 188, 95, 2, 442, 444, 5, 30, 16, 2, 443, 442, 3, 2, 2, 2, 443, 444, 3, 2, 2, 2, 444, 446, 3, 2, 2, 2, 445, 447, 5, 36, 19, 2, 446, 445, 3, 2, 2, 2, 446, 447, 3, 2, 2, 2, 447, 448, 3, 2, 2, 2, 448, 449, 7, 9, 2, 2, 449, 450, 5, 90, 46, 2, 450, 61, 3, 2, 2, 2, 451, 455, 7, 72, 2, 2, 452, 456, 7, 173, 2, 2, 453, 454, 7, 173, 2, 2, 454, 456, 7, 246, 2, 2, 455, 452, 3, 2, 2, 2, 455, 453, 3, 2, 2, 2, 456, 457, 3, 2, 2, 2, 457, 459, 7, 164, 2, 2, 458, 460, 5, 194, 98, 2, 459, 458, 3, 2, 2, 2, 459, 460, 3, 2, 2, 2, 460, 461, 3, 2, 2, 2, 461, 462, 5, 188, 95, 2, 462, 463, 7, 9, 2, 2, 463, 466, 5, 176, 89, 2, 464, 465, 7, 253, 2, 2, 465, 467, 5, 176, 89, 2, 466, 464, 3, 2, 2, 2, 466, 467, 3, 2, 2, 2, 467, 63, 3, 2, 2, 2, 468, 469, 7, 102, 2, 2, 469, 470, 7, 73, 2, 2, 470, 473, 5, 188, 95, 2, 471, 474, 5, 66, 34, 2, 472, 474, 5, 68, 35, 2, 473, 471, 3, 2, 2, 2, 473, 472, 3, 2, 2, 2, 474, 65, 3, 2, 2, 2, 475, 476, 7, 103, 2, 2, 476, 477, 7, 99, 2, 2, 477, 478, 5, 188, 95, 2, 478, 67, 3, 2, 2, 2, 479, 480, 7, 106, 2, 2, 480, 481, 5, 198, 100, 2, 481, 69, 3, 2, 2, 2, 482, 483, 7, 102, 2, 2, 483, 484, 7, 199, 2, 2, 484, 485, 5, 188, 95, 2, 485, 486, 5, 68, 35, 2, 486, 71, 3, 2, 2, 2, 487, 491, 7, 102, 2, 2, 488, 492, 7, 173, 2, 2, 489, 490, 7, 173, 2, 2, 490, 492, 7, 246, 2, 2, 491, 488, 3, 2, 2, 2, 491, 489, 3, 2, 2, 2, 492, 493, 3, 2, 2, 2, 493, 495, 7, 164, 2, 2, 494, 496, 5, 196, 99, 2, 495, 494, 3, 2, 2, 2, 495, 496, 3, 2, 2, 2, 496, 497, 3, 2, 2, 2, 497, 498, 5, 188, 95, 2, 498, 499, 7, 9, 2, 2, 499, 502, 5, 176, 89, 2, 500, 501, 7, 253, 2, 2, 501, 503, 5, 176, 89, 2, 502, 500, 3, 2, 2, 2, 502, 503, 3, 2, 2, 2, 503, 73, 3, 2, 2, 2, 504, 505, 7, 94, 2, 2, 505, 507, 7, 73, 2, 2, 506, 508, 5, 196, 99, 2, 507, 506, 3, 2, 2, 2, 507, 508, 3, 2, 2, 2, 508, 509, 3, 2, 2, 2, 509, 510, 5, 188, 95, 2, 510, 75, 3, 2, 2, 2, 511, 512, 7, 94, 2, 2, 512, 514, 7, 199, 2, 2, 513, 515, 5, 196, 99, 2, 514, 513, 3, 2, 2, 2, 514, 515, 3, 2, 2, 2, 515, 516, 3, 2, 2, 2, 516, 518, 5, 188, 95, 2, 517, 519, 9, 7, 2, 2, 518, 517, 3, 2, 2, 2, 518, 519, 3, 2, 2, 2, 519, 77, 3, 2, 2, 2, 520, 522, 7, 94, 2, 2, 521, 523, 7, 173, 2, 2, 522, 521, 3, 2, 2, 2, 522, 523, 3, 2, 2, 2, 523, 524, 3, 2, 2, 2, 524, 526, 7, 75, 2, 2, 525, 527, 5, 196, 99, 2, 526, 525, 3, 2, 2, 2, 526, 527, 3, 2, 2, 2, 527, 528, 3, 2, 2, 2, 528, 529, 5, 188, 95, 2, 529, 79, 3, 2, 2, 2, 530, 534, 7, 94, 2, 2, 531, 535, 7, 173, 2, 2, 532, 533, 7, 173, 2, 2, 533, 535, 7, 246, 2, 2, 534, 531, 3, 2, 2, 2, 534, 532, 3, 2, 2, 2, 534, 535, 3, 2, 2, 2, 535, 536, 3, 2, 2, 2, 536, 538, 7, 164, 2, 2, 537, 539, 5, 196, 99, 2, 538, 537, 3, 2, 2, 2, 538, 539, 3, 2, 2, 2, 539, 540, 3, 2, 2, 2, 540, 541, 5, 188, 95, 2, 541, 81, 3, 2, 2, 2, 542, 543, 7, 77, 2, 2, 543, 544, 9, 8, 2, 2, 544, 550, 5, 188, 95, 2, 545, 547, 5, 84, 43, 2, 546, 545, 3, 2, 2, 2, 546, 547, 3, 2, 2, 2, 547, 548, 3, 2, 2, 2, 548, 551, 5, 90, 46, 2, 549, 551, 5, 86, 44, 2, 550, 546, 3, 2, 2, 2, 550, 549, 3, 2, 2, 2, 551, 83, 3, 2, 2, 2, 552, 553, 7, 60, 2, 2, 553, 554, 5, 198, 100, 2, 554, 85, 3, 2, 2, 2, 555, 556, 7, 71, 2, 2, 556, 561, 5, 88, 45, 2, 557, 558, 7, 297, 2, 2, 558, 560, 5, 88, 45, 2, 559, 557, 3, 2, 2, 2, 560, 563, 3, 2, 2, 2, 561, 559, 3, 2, 2, 2, 561, 562, 3, 2, 2, 2, 562, 87, 3, 2, 2, 2, 563, 561, 3, 2, 2, 2, 564, 565, 7, 295, 2, 2, 565, 570, 5, 218, 110, 2, 566, 567, 7, 297, 2, 2, 567, 569, 5, 218, 110, 2, 568, 566, 3, 2, 2, 2, 569, 572, 3, 2, 2, 2, 570, 568, 3, 2, 2, 2, 570, 571, 3, 2, 2, 2, 571, 573, 3, 2, 2, 2, 572, 570, 3, 2, 2, 2, 573, 574, 7, 296, 2, 2, 574, 89, 3, 2, 2, 2, 575, 576, 8, 46, 1, 2, 576, 596, 5, 92, 47, 2, 577, 578, 7, 295, 2, 2, 578, 579, 5, 90, 46, 2, 579, 580, 7, 296, 2, 2, 580, 596, 3, 2, 2, 2, 581, 583, 5, 96, 49, 2, 582, 584, 5, 118, 60, 2, 583, 582, 3, 2, 2, 2, 583, 584, 3, 2, 2, 2, 584, 586, 3, 2, 2, 2, 585, 587, 5, 122, 62, 2, 586, 585, 3, 2, 2, 2, 586, 587, 3, 2, 2, 2, 587, 596, 3, 2, 2, 2, 588, 590, 5, 94, 48, 2, 589, 591, 5, 118, 60, 2, 590, 589, 3, 2, 2, 2, 590, 591, 3, 2, 2, 2, 591, 593, 3, 2, 2, 2, 592, 594, 5, 122, 62, 2, 593, 592, 3, 2, 2, 2, 593, 594, 3, 2, 2, 2, 594, 596, 3, 2, 2, 2, 595, 575, 3, 2, 2, 2, 595, 577, 3, 2, 2, 2, 595, 581, 3, 2, 2, 2, 595, 588, 3, 2, 2, 2, 596, 611, 3, 2, 2, 2, 597, 598, 12, 5, 2, 2, 598, 600, 9, 9, 2, 2, 599, 601, 7, 10, 2, 2, 600, 599, 3, 2, 2, 2, 600, 601, 3, 2, 2, 2, 601, 602, 3, 2, 2, 2, 602, 604, 5, 90, 46, 2, 603, 605, 5, 118, 60, 2, 604, 603, 3, 2, 2, 2, 604, 605, 3, 2, 2, 2, 605, 607, 3, 2, 2, 2, 606, 608, 5, 122, 62, 2, 607, 606, 3, 2, 2, 2, 607, 608, 3, 2, 2, 2, 608, 610, 3, 2, 2, 2, 609, 597, 3, 2, 2, 2, 610, 613, 3, 2, 2, 2, 611, 609, 3, 2, 2, 2, 611, 612, 3, 2, 2, 2, 612, 91, 3, 2, 2, 2, 613, 611, 3, 2, 2, 2, 614, 615, 7, 71, 2, 2, 615, 620, 5, 136, 69, 2, 616, 617, 7, 297, 2, 2, 617, 619, 5, 136, 69, 2, 618, 616, 3, 2, 2, 2, 619, 622, 3, 2, 2, 2, 620, 618, 3, 2, 2, 2, 620, 621, 3, 2, 2, 2, 621, 93, 3, 2, 2, 2, 622, 620, 3, 2, 2, 2, 623, 624, 5, 96, 49, 2, 624, 626, 5, 100, 51, 2, 625, 627, 5, 110, 56, 2, 626, 625, 3, 2, 2, 2, 626, 627, 3, 2, 2, 2, 627, 629, 3, 2, 2, 2, 628, 630, 5, 112, 57, 2, 629, 628, 3, 2, 2, 2, 629, 630, 3, 2, 2, 2, 630, 632, 3, 2, 2, 2, 631, 633, 5, 116, 59, 2, 632, 631, 3, 2, 2, 2, 632, 633, 3, 2, 2, 2, 633, 635, 3, 2, 2, 2, 634, 636, 5, 124, 63, 2, 635, 634, 3, 2, 2, 2, 635, 636, 3, 2, 2, 2, 636, 95, 3, 2, 2, 2, 637, 639, 7, 6, 2, 2, 638, 640, 5, 226, 114, 2, 639, 638, 3, 2, 2, 2, 639, 640, 3, 2, 2, 2, 640, 650, 3, 2, 2, 2, 641, 651, 7, 304, 2, 2, 642, 647, 5, 98, 50, 2, 643, 644, 7, 297, 2, 2, 644, 646, 5, 98, 50, 2, 645, 643, 3, 2, 2, 2, 646, 649, 3, 2, 2, 2, 647, 645, 3, 2, 2, 2, 647, 648, 3, 2, 2, 2, 648, 651, 3, 2, 2, 2, 649, 647, 3, 2, 2, 2, 650, 641, 3, 2, 2, 2, 650, 642, 3, 2, 2, 2, 651, 97, 3, 2, 2, 2, 652, 657, 5, 136, 69, 2, 653, 655, 7, 9, 2, 2, 654, 653, 3, 2, 2, 2, 654, 655, 3, 2, 2, 2, 655, 656, 3, 2, 2, 2, 656, 658, 5, 188, 95, 2, 657, 654, 3, 2, 2, 2, 657, 658, 3, 2, 2, 2, 658, 99, 3, 2, 2, 2, 659, 660, 7, 7, 2, 2, 660, 661, 5, 102, 52, 2, 661, 101, 3, 2, 2, 2, 662, 663, 8, 52, 1, 2, 663, 668, 5, 104, 53, 2, 664, 665, 7, 297, 2, 2, 665, 667, 5, 104, 53, 2, 666, 664, 3, 2, 2, 2, 667, 670, 3, 2, 2, 2, 668, 666, 3, 2, 2, 2, 668, 669, 3, 2, 2, 2, 669, 685, 3, 2, 2, 2, 670, 668, 3, 2, 2, 2, 671, 673, 12, 3, 2, 2, 672, 674, 7, 54, 2, 2, 673, 672, 3, 2, 2, 2, 673, 674, 3, 2, 2, 2, 674, 676, 3, 2, 2, 2, 675, 677, 9, 10, 2, 2, 676, 675, 3, 2, 2, 2, 676, 677, 3, 2, 2, 2, 677, 678, 3, 2, 2, 2, 678, 679, 7, 46, 2, 2, 679, 681, 5, 102, 52, 2, 680, 682, 5, 108, 55, 2, 681, 680, 3, 2, 2, 2, 681, 682, 3, 2, 2, 2, 682, 684, 3, 2, 2, 2, 683, 671, 3, 2, 2, 2, 684, 687, 3, 2, 2, 2, 685, 683, 3, 2, 2, 2, 685, 686, 3, 2, 2, 2, 686, 103, 3, 2, 2, 2, 687, 685, 3, 2, 2, 2, 688, 690, 5, 106, 54, 2, 689, 691, 5, 166, 84, 2, 690, 689, 3, 2, 2, 2, 690, 691, 3, 2, 2, 2, 691, 105, 3, 2, 2, 2, 692, 694, 7, 73, 2, 2, 693, 692, 3, 2, 2, 2, 693, 694, 3, 2, 2, 2, 694, 695, 3, 2, 2, 2, 695, 718, 5, 136, 69, 2, 696, 697, 7, 57, 2, 2, 697, 698, 7, 73, 2, 2, 698, 699, 7, 295, 2, 2, 699, 700, 5, 188, 95, 2, 700, 701, 7, 295, 2, 2, 701, 706, 5, 136, 69, 2, 702, 703, 7, 297, 2, 2, 703, 705, 5, 136, 69, 2, 704, 702, 3, 2, 2, 2, 705, 708, 3, 2, 2, 2, 706, 704, 3, 2, 2, 2, 706, 707, 3, 2, 2, 2, 707, 709, 3, 2, 2, 2, 708, 706, 3, 2, 2, 2, 709, 710, 7, 296, 2, 2, 710, 711, 7, 296, 2, 2, 711, 718, 3, 2, 2, 2, 712, 713, 7, 233, 2, 2, 713, 714, 7, 295, 2, 2, 714, 715, 5, 136, 69, 2, 715, 716, 7, 296, 2, 2, 716, 718, 3, 2, 2, 2, 717, 693, 3, 2, 2, 2, 717, 696, 3, 2, 2, 2, 717, 712, 3, 2, 2, 2, 718, 107, 3, 2, 2, 2, 719, 720, 7, 55, 2, 2, 720, 734, 5, 138, 70, 2, 721, 722, 7, 150, 2, 2, 722, 723, 7, 295, 2, 2, 723, 728, 5, 188, 95, 2, 724, 725, 7, 297, 2, 2, 725, 727, 5, 188, 95, 2, 726, 724, 3, 2, 2, 2, 727, 730, 3, 2, 2, 2, 728, 726, 3, 2, 2, 2, 728, 729, 3, 2, 2, 2, 729, 731, 3, 2, 2, 2, 730, 728, 3, 2, 2, 2, 731, 732, 7, 296, 2, 2, 732, 734, 3, 2, 2, 2, 733, 719, 3, 2, 2, 2, 733, 721, 3, 2, 2, 2, 734, 109, 3, 2, 2, 2, 735, 736, 7, 13, 2, 2, 736, 737, 5, 138, 70, 2, 737, 111, 3, 2, 2, 2, 738, 739, 7, 14, 2, 2, 739, 740, 7, 15, 2, 2, 740, 745, 5, 114, 58, 2, 741, 742, 7, 297, 2, 2, 742, 744, 5, 114, 58, 2, 743, 741, 3, 2, 2, 2, 744, 747, 3, 2, 2, 2, 745, 743, 3, 2, 2, 2, 745, 746, 3, 2, 2, 2, 746, 113, 3, 2, 2, 2, 747, 745, 3, 2, 2, 2, 748, 800, 5, 136, 69, 2, 749, 750, 7, 295, 2, 2, 750, 800, 7, 296, 2, 2, 751, 752, 7, 295, 2, 2, 752, 757, 5, 136, 69, 2, 753, 754, 7, 297, 2, 2, 754, 756, 5, 136, 69, 2, 755, 753, 3, 2, 2, 2, 756, 759, 3, 2, 2, 2, 757, 755, 3, 2, 2, 2, 757, 758, 3, 2, 2, 2, 758, 760, 3, 2, 2, 2, 759, 757, 3, 2, 2, 2, 760, 761, 7, 296, 2, 2, 761, 800, 3, 2, 2, 2, 762, 763, 7, 18, 2, 2, 763, 764, 7, 295, 2, 2, 764, 769, 5, 136, 69, 2, 765, 766, 7, 297, 2, 2, 766, 768, 5, 136, 69, 2, 767, 765, 3, 2, 2, 2, 768, 771, 3, 2, 2, 2, 769, 767, 3, 2, 2, 2, 769, 770, 3, 2, 2, 2, 770, 772, 3, 2, 2, 2, 771, 769, 3, 2, 2, 2, 772, 773, 7, 296, 2, 2, 773, 800, 3, 2, 2, 2, 774, 775, 7, 19, 2, 2, 775, 776, 7, 295, 2, 2, 776, 781, 5, 136, 69, 2, 777, 778, 7, 297, 2, 2, 778, 780, 5, 136, 69, 2, 779, 777, 3, 2, 2, 2, 780, 783, 3, 2, 2, 2, 781, 779, 3, 2, 2, 2, 781, 782, 3, 2, 2, 2, 782, 784, 3, 2, 2, 2, 783, 781, 3, 2, 2, 2, 784, 785, 7, 296, 2, 2, 785, 800, 3, 2, 2, 2, 786, 787, 7, 16, 2, 2, 787, 788, 7, 17, 2, 2, 788, 789, 7, 295, 2, 2, 789, 794, 5, 114, 58, 2, 790, 791, 7, 297, 2, 2, 791, 793, 5, 114, 58, 2, 792, 790, 3, 2, 2, 2, 793, 796, 3, 2, 2, 2, 794, 792, 3, 2, 2, 2, 794, 795, 3, 2, 2, 2, 795, 797, 3, 2, 2, 2, 796, 794, 3, 2, 2, 2, 797, 798, 7, 296, 2, 2, 798, 800, 3, 2, 2, 2, 799, 748, 3, 2, 2, 2, 799, 749, 3, 2, 2, 2, 799, 751, 3, 2, 2, 2, 799, 762, 3, 2, 2, 2, 799, 774, 3, 2, 2, 2, 799, 786, 3, 2, 2, 2, 800, 115, 3, 2, 2, 2, 801, 802, 7, 21, 2, 2, 802, 803, 5, 138, 70, 2, 803, 117, 3, 2, 2, 2, 804, 805, 7, 20, 2, 2, 805, 806, 7, 15, 2, 2, 806, 811, 5, 120, 61, 2, 807, 808, 7, 297, 2, 2, 808, 810, 5, 120, 61, 2, 809, 807, 3, 2, 2, 2, 810, 813, 3, 2, 2, 2, 811, 809, 3, 2, 2, 2, 811, 812, 3, 2, 2, 2, 812, 119, 3, 2, 2, 2, 813, 811, 3, 2, 2, 2, 814, 816, 5, 136, 69, 2, 815, 817, 9, 11, 2, 2, 816, 815, 3, 2, 2, 2, 816, 817, 3, 2, 2, 2, 817, 121, 3, 2, 2, 2, 818, 821, 7, 22, 2, 2, 819, 822, 7, 10, 2, 2, 820, 822, 5, 136, 69, 2, 821, 819, 3, 2, 2, 2, 821, 820, 3, 2, 2, 2, 822, 123, 3, 2, 2, 2, 823, 824, 7, 58, 2, 2, 824, 829, 5, 126, 64, 2, 825, 826, 7, 297, 2, 2, 826, 828, 5, 126, 64, 2, 827, 825, 3, 2, 2, 2, 828, 831, 3, 2, 2, 2, 829, 827, 3, 2, 2, 2, 829, 830, 3, 2, 2, 2, 830, 125, 3, 2, 2, 2, 831, 829, 3, 2, 2, 2, 832, 833, 5, 168, 85, 2, 833, 834, 7, 9, 2, 2, 834, 835, 5, 128, 65, 2, 835, 127, 3, 2, 2, 2, 836, 838, 5, 168, 85, 2, 837, 836, 3, 2, 2, 2, 837, 838, 3, 2, 2, 2, 838, 839, 3, 2, 2, 2, 839, 850, 7, 295, 2, 2, 840, 841, 7, 20, 2, 2, 841, 842, 7, 15, 2, 2, 842, 847, 5, 130, 66, 2, 843, 844, 7, 297, 2, 2, 844, 846, 5, 130, 66, 2, 845, 843, 3, 2, 2, 2, 846, 849, 3, 2, 2, 2, 847, 845, 3, 2, 2, 2, 847, 848, 3, 2, 2, 2, 848, 851, 3, 2, 2, 2, 849, 847, 3, 2, 2, 2, 850, 840, 3, 2, 2, 2, 850, 851, 3, 2, 2, 2, 851, 862, 3, 2, 2, 2, 852, 853, 7, 60, 2, 2, 853, 854, 7, 15, 2, 2, 854, 859, 5, 136, 69, 2, 855, 856, 7, 297, 2, 2, 856, 858, 5, 136, 69, 2, 857, 855, 3, 2, 2, 2, 858, 861, 3, 2, 2, 2, 859, 857, 3, 2, 2, 2, 859, 860, 3, 2, 2, 2, 860, 863, 3, 2, 2, 2, 861, 859, 3, 2, 2, 2, 862, 852, 3, 2, 2, 2, 862, 863, 3, 2, 2, 2, 863, 865, 3, 2, 2, 2, 864, 866, 5, 132, 67, 2, 865, 864, 3, 2, 2, 2, 865, 866, 3, 2, 2, 2, 866, 867, 3, 2, 2, 2, 867, 868, 7, 296, 2, 2, 868, 129, 3, 2, 2, 2, 869, 871, 5, 136, 69, 2, 870, 872, 9, 11, 2, 2, 871, 870, 3, 2, 2, 2, 871, 872, 3, 2, 2, 2, 872, 875, 3, 2, 2, 2, 873, 874, 7, 36, 2, 2, 874, 876, 9, 12, 2, 2, 875, 873, 3, 2, 2, 2, 875, 876, 3, 2, 2, 2, 876, 131, 3, 2, 2, 2, 877, 878, 7, 61, 2, 2, 878, 882, 5, 134, 68, 2, 879, 880, 7, 62, 2, 2, 880, 882, 5, 134, 68, 2, 881, 877, 3, 2, 2, 2, 881, 879, 3, 2, 2, 2, 882, 133, 3, 2, 2, 2, 883, 884, 5, 136, 69, 2, 884, 885, 7, 64, 2, 2, 885, 135, 3, 2, 2, 2, 886, 887, 5, 138, 70, 2, 887, 137, 3, 2, 2, 2, 888, 889, 8, 70, 1, 2, 889, 890, 7, 27, 2, 2, 890, 901, 5, 138, 70, 7, 891, 892, 7, 29, 2, 2, 892, 893, 7, 295, 2, 2, 893, 894, 5, 90, 46, 2, 894, 895, 7, 296, 2, 2, 895, 901, 3, 2, 2, 2, 896, 898, 5, 142, 72, 2, 897, 899, 5, 140, 71, 2, 898, 897, 3, 2, 2, 2, 898, 899, 3, 2, 2, 2, 899, 901, 3, 2, 2, 2, 900, 888, 3, 2, 2, 2, 900, 891, 3, 2, 2, 2, 900, 896, 3, 2, 2, 2, 901, 910, 3, 2, 2, 2, 902, 903, 12, 4, 2, 2, 903, 904, 7, 25, 2, 2, 904, 909, 5, 138, 70, 5, 905, 906, 12, 3, 2, 2, 906, 907, 7, 24, 2, 2, 907, 909, 5, 138, 70, 4, 908, 902, 3, 2, 2, 2, 908, 905, 3, 2, 2, 2, 909, 912, 3, 2, 2, 2, 910, 908, 3, 2, 2, 2, 910, 911, 3, 2, 2, 2, 911, 139, 3, 2, 2, 2, 912, 910, 3, 2, 2, 2, 913, 915, 7, 27, 2, 2, 914, 913, 3, 2, 2, 2, 914, 915, 3, 2, 2, 2, 915, 916, 3, 2, 2, 2, 916, 917, 7, 30, 2, 2, 917, 918, 5, 142, 72, 2, 918, 919, 7, 25, 2, 2, 919, 920, 5, 142, 72, 2, 920, 997, 3, 2, 2, 2, 921, 923, 7, 27, 2, 2, 922, 921, 3, 2, 2, 2, 922, 923, 3, 2, 2, 2, 923, 924, 3, 2, 2, 2, 924, 925, 7, 26, 2, 2, 925, 926, 7, 295, 2, 2, 926, 931, 5, 136, 69, 2, 927, 928, 7, 297, 2, 2, 928, 930, 5, 136, 69, 2, 929, 927, 3, 2, 2, 2, 930, 933, 3, 2, 2, 2, 931, 929, 3, 2, 2, 2, 931, 932, 3, 2, 2, 2, 932, 934, 3, 2, 2, 2, 933, 931, 3, 2, 2, 2, 934, 935, 7, 296, 2, 2, 935, 997, 3, 2, 2, 2, 936, 938, 7, 27, 2, 2, 937, 936, 3, 2, 2, 2, 937, 938, 3, 2, 2, 2, 938, 939, 3, 2, 2, 2, 939, 940, 7, 26, 2, 2, 940, 941, 7, 295, 2, 2, 941, 942, 5, 90, 46, 2, 942, 943, 7, 296, 2, 2, 943, 997, 3, 2, 2, 2, 944, 945, 7, 29, 2, 2, 945, 946, 7, 295, 2, 2, 946, 947, 5, 90, 46, 2, 947, 948, 7, 296, 2, 2, 948, 997, 3, 2, 2, 2, 949, 951, 7, 27, 2, 2, 950, 949, 3, 2, 2, 2, 950, 951, 3, 2, 2, 2, 951, 952, 3, 2, 2, 2, 952, 953, 7, 32, 2, 2, 953, 997, 5, 142, 72, 2, 954, 956, 7, 27, 2, 2, 955, 954, 3, 2, 2, 2, 955, 956, 3, 2, 2, 2, 956, 957, 3, 2, 2, 2, 957, 958, 7, 31, 2, 2, 958, 972, 9, 13, 2, 2, 959, 960, 7, 295, 2, 2, 960, 973, 7, 296, 2, 2, 961, 962, 7, 295, 2, 2, 962, 967, 5, 136, 69, 2, 963, 964, 7, 297, 2, 2, 964, 966, 5, 136, 69, 2, 965, 963, 3, 2, 2, 2, 966, 969, 3, 2, 2, 2, 967, 965, 3, 2, 2, 2, 967, 968, 3, 2, 2, 2, 968, 970, 3, 2, 2, 2, 969, 967, 3, 2, 2, 2, 970, 971, 7, 296, 2, 2, 971, 973, 3, 2, 2, 2, 972, 959, 3, 2, 2, 2, 972, 961, 3, 2, 2, 2, 973, 997, 3, 2, 2, 2, 974, 976, 7, 27, 2, 2, 975, 974, 3, 2, 2, 2, 975, 976, 3, 2, 2, 2, 976, 977, 3, 2, 2, 2, 977, 978, 7, 31, 2, 2, 978, 997, 5, 142, 72, 2, 979, 981, 7, 33, 2, 2, 980, 982, 7, 27, 2, 2, 981, 980, 3, 2, 2, 2, 981, 982, 3, 2, 2, 2, 982, 983, 3, 2, 2, 2, 983, 997, 7, 282, 2, 2, 984, 986, 7, 33, 2, 2, 985, 987, 7, 27, 2, 2, 986, 985, 3, 2, 2, 2, 986, 987, 3, 2, 2, 2, 987, 988, 3, 2, 2, 2, 988, 997, 9, 14, 2, 2, 989, 991, 7, 33, 2, 2, 990, 992, 7, 27, 2, 2, 991, 990, 3, 2, 2, 2, 991, 992, 3, 2, 2, 2, 992, 993, 3, 2, 2, 2, 993, 994, 7, 12, 2, 2, 994, 995, 7, 7, 2, 2, 995, 997, 5, 142, 72, 2, 996, 914, 3, 2, 2, 2, 996, 922, 3, 2, 2, 2, 996, 937, 3, 2, 2, 2, 996, 944, 3, 2, 2, 2, 996, 950, 3, 2, 2, 2, 996, 955, 3, 2, 2, 2, 996, 975, 3, 2, 2, 2, 996, 979, 3, 2, 2, 2, 996, 984, 3, 2, 2, 2, 996, 989, 3, 2, 2, 2, 997, 141, 3, 2, 2, 2, 998, 999, 8, 72, 1, 2, 999, 1003, 5, 144, 73, 2, 1000, 1001, 9, 15, 2, 2, 1001, 1003, 5, 142, 72, 9, 1002, 998, 3, 2, 2, 2, 1002, 1000, 3, 2, 2, 2, 1003, 1025, 3, 2, 2, 2, 1004, 1005, 12, 8, 2, 2, 1005, 1006, 9, 16, 2, 2, 1006, 1024, 5, 142, 72, 9, 1007, 1008, 12, 7, 2, 2, 1008, 1009, 9, 17, 2, 2, 1009, 1024, 5, 142, 72, 8, 1010, 1011, 12, 6, 2, 2, 1011, 1012, 7, 290, 2, 2, 1012, 1024, 5, 142, 72, 7, 1013, 1014, 12, 5, 2, 2, 1014, 1015, 7, 291, 2, 2, 1015, 1024, 5, 142, 72, 6, 1016, 1017, 12, 4, 2, 2, 1017, 1018, 7, 289, 2, 2, 1018, 1024, 5, 142, 72, 5, 1019, 1020, 12, 3, 2, 2, 1020, 1021, 5, 208, 105, 2, 1021, 1022, 5, 142, 72, 4, 1022, 1024, 3, 2, 2, 2, 1023, 1004, 3, 2, 2, 2, 1023, 1007, 3, 2, 2, 2, 1023, 1010, 3, 2, 2, 2, 1023, 1013, 3, 2, 2, 2, 1023, 1016, 3, 2, 2, 2, 1023, 1019, 3, 2, 2, 2, 1024, 1027, 3, 2, 2, 2, 1025, 1023, 3, 2, 2, 2, 1025, 1026, 3, 2, 2, 2, 1026, 143, 3, 2, 2, 2, 1027, 1025, 3, 2, 2, 2, 1028, 1029, 8, 73, 1, 2, 1029, 1031, 7, 41, 2, 2, 1030, 1032, 5, 184, 93, 2, 1031, 1030, 3, 2, 2, 2, 1032, 1033, 3, 2, 2, 2, 1033, 1031, 3, 2, 2, 2, 1033, 1034, 3, 2, 2, 2, 1034, 1037, 3, 2, 2, 2, 1035, 1036, 7, 44, 2, 2, 1036, 1038, 5, 136, 69, 2, 1037, 1035, 3, 2, 2, 2, 1037, 1038, 3, 2, 2, 2, 1038, 1039, 3, 2, 2, 2, 1039, 1040, 7, 45, 2, 2, 1040, 1120, 3, 2, 2, 2, 1041, 1042, 7, 41, 2, 2, 1042, 1044, 5, 136, 69, 2, 1043, 1045, 5, 184, 93, 2, 1044, 1043, 3, 2, 2, 2, 1045, 1046, 3, 2, 2, 2, 1046, 1044, 3, 2, 2, 2, 1046, 1047, 3, 2, 2, 2, 1047, 1050, 3, 2, 2, 2, 1048, 1049, 7, 44, 2, 2, 1049, 1051, 5, 136, 69, 2, 1050, 1048, 3, 2, 2, 2, 1050, 1051, 3, 2, 2, 2, 1051, 1052, 3, 2, 2, 2, 1052, 1053, 7, 45, 2, 2, 1053, 1120, 3, 2, 2, 2, 1054, 1055, 7, 86, 2, 2, 1055, 1056, 7, 295, 2, 2, 1056, 1057, 5, 136, 69, 2, 1057, 1058, 7, 9, 2, 2, 1058, 1059, 5, 32, 17, 2, 1059, 1060, 7, 296, 2, 2, 1060, 1120, 3, 2, 2, 2, 1061, 1062, 7, 67, 2, 2, 1062, 1063, 7, 295, 2, 2, 1063, 1066, 5, 136, 69, 2, 1064, 1065, 7, 114, 2, 2, 1065, 1067, 7, 36, 2, 2, 1066, 1064, 3, 2, 2, 2, 1066, 1067, 3, 2, 2, 2, 1067, 1068, 3, 2, 2, 2, 1068, 1069, 7, 296, 2, 2, 1069, 1120, 3, 2, 2, 2, 1070, 1071, 7, 69, 2, 2, 1071, 1072, 7, 295, 2, 2, 1072, 1075, 5, 136, 69, 2, 1073, 1074, 7, 114, 2, 2, 1074, 1076, 7, 36, 2, 2, 1075, 1073, 3, 2, 2, 2, 1075, 1076, 3, 2, 2, 2, 1076, 1077, 3, 2, 2, 2, 1077, 1078, 7, 296, 2, 2, 1078, 1120, 3, 2, 2, 2, 1079, 1080, 7, 119, 2, 2, 1080, 1081, 7, 295, 2, 2, 1081, 1082, 5, 142, 72, 2, 1082, 1083, 7, 26, 2, 2, 1083, 1084, 5, 142, 72, 2, 1084, 1085, 7, 296, 2, 2, 1085, 1120, 3, 2, 2, 2, 1086, 1120, 5, 218, 110, 2, 1087, 1120, 7, 304, 2, 2, 1088, 1089, 5, 188, 95, 2, 1089, 1090, 7, 292, 2, 2, 1090, 1091, 7, 304, 2, 2, 1091, 1120, 3, 2, 2, 2, 1092, 1093, 7, 295, 2, 2, 1093, 1094, 5, 90, 46, 2, 1094, 1095, 7, 296, 2, 2, 1095, 1120, 3, 2, 2, 2, 1096, 1097, 5, 146, 74, 2, 1097, 1109, 7, 295, 2, 2, 1098, 1100, 5, 226, 114, 2, 1099, 1098, 3, 2, 2, 2, 1099, 1100, 3, 2, 2, 2, 1100, 1101, 3, 2, 2, 2, 1101, 1106, 5, 136, 69, 2, 1102, 1103, 7, 297, 2, 2, 1103, 1105, 5, 136, 69, 2, 1104, 1102, 3, 2, 2, 2, 1105, 1108, 3, 2, 2, 2, 1106, 1104, 3, 2, 2, 2, 1106, 1107, 3, 2, 2, 2, 1107, 1110, 3, 2, 2, 2, 1108, 1106, 3, 2, 2, 2, 1109, 1099, 3, 2, 2, 2, 1109, 1110, 3, 2, 2, 2, 1110, 1111, 3, 2, 2, 2, 1111, 1112, 7, 296, 2, 2, 1112, 1120, 3, 2, 2, 2, 1113, 1120, 5, 176, 89, 2, 1114, 1120, 5, 148, 75, 2, 1115, 1116, 7, 295, 2, 2, 1116, 1117, 5, 136, 69, 2, 1117, 1118, 7, 296, 2, 2, 1118, 1120, 3, 2, 2, 2, 1119, 1028, 3, 2, 2, 2, 1119, 1041, 3, 2, 2, 2, 1119, 1054, 3, 2, 2, 2, 1119, 1061, 3, 2, 2, 2, 1119, 1070, 3, 2, 2, 2, 1119, 1079, 3, 2, 2, 2, 1119, 1086, 3, 2, 2, 2, 1119, 1087, 3, 2, 2, 2, 1119, 1088, 3, 2, 2, 2, 1119, 1092, 3, 2, 2, 2, 1119, 1096, 3, 2, 2, 2, 1119, 1113, 3, 2, 2, 2, 1119, 1114, 3, 2, 2, 2, 1119, 1115, 3, 2, 2, 2, 1120, 1128, 3, 2, 2, 2, 1121, 1122, 12, 6, 2, 2, 1122, 1123, 7, 293, 2, 2, 1123, 1124, 5, 142, 72, 2, 1124, 1125, 7, 294, 2, 2, 1125, 1127, 3, 2, 2, 2, 1126, 1121, 3, 2, 2, 2, 1127, 1130, 3, 2, 2, 2, 1128, 1126, 3, 2, 2, 2, 1128, 1129, 3, 2, 2, 2, 1129, 145, 3, 2, 2, 2, 1130, 1128, 3, 2, 2, 2, 1131, 1132, 5, 188, 95, 2, 1132, 147, 3, 2, 2, 2, 1133, 1134, 5, 188, 95, 2, 1134, 149, 3, 2, 2, 2, 1135, 1138, 5, 176, 89, 2, 1136, 1138, 5, 148, 75, 2, 1137, 1135, 3, 2, 2, 2, 1137, 1136, 3, 2, 2, 2, 1138, 151, 3, 2, 2, 2, 1139, 1142, 7, 40, 2, 2, 1140, 1143, 5, 154, 78, 2, 1141, 1143, 5, 158, 80, 2, 1142, 1140, 3, 2, 2, 2, 1142, 1141, 3, 2, 2, 2, 1142, 1143, 3, 2, 2, 2, 1143, 153, 3, 2, 2, 2, 1144, 1146, 5, 156, 79, 2, 1145, 1147, 5, 160, 81, 2, 1146, 1145, 3, 2, 2, 2, 1146, 1147, 3, 2, 2, 2, 1147, 155, 3, 2, 2, 2, 1148, 1149, 5, 162, 82, 2, 1149, 1150, 5, 176, 89, 2, 1150, 1152, 3, 2, 2, 2, 1151, 1148, 3, 2, 2, 2, 1152, 1153, 3, 2, 2, 2, 1153, 1151, 3, 2, 2, 2, 1153, 1154, 3, 2, 2, 2, 1154, 157, 3, 2, 2, 2, 1155, 1158, 5, 160, 81, 2, 1156, 1159, 5, 156, 79, 2, 1157, 1159, 5, 160, 81, 2, 1158, 1156, 3, 2, 2, 2, 1158, 1157, 3, 2, 2, 2, 1158, 1159, 3, 2, 2, 2, 1159, 159, 3, 2, 2, 2, 1160, 1161, 5, 162, 82, 2, 1161, 1162, 5, 176, 89, 2, 1162, 1163, 7, 99, 2, 2, 1163, 1164, 5, 176, 89, 2, 1164, 161, 3, 2, 2, 2, 1165, 1167, 9, 18, 2, 2, 1166, 1165, 3, 2, 2, 2, 1166, 1167, 3, 2, 2, 2, 1167, 1168, 3, 2, 2, 2, 1168, 1171, 9, 19, 2, 2, 1169, 1171, 7, 314, 2, 2, 1170, 1166, 3, 2, 2, 2, 1170, 1169, 3, 2, 2, 2, 1171, 163, 3, 2, 2, 2, 1172, 1174, 7, 9, 2, 2, 1173, 1172, 3, 2, 2, 2, 1173, 1174, 3, 2, 2, 2, 1174, 1175, 3, 2, 2, 2, 1175, 1177, 5, 178, 90, 2, 1176, 1178, 5, 172, 87, 2, 1177, 1176, 3, 2, 2, 2, 1177, 1178, 3, 2, 2, 2, 1178, 165, 3, 2, 2, 2, 1179, 1181, 7, 9, 2, 2, 1180, 1179, 3, 2, 2, 2, 1180, 1181, 3, 2, 2, 2, 1181, 1182, 3, 2, 2, 2, 1182, 1184, 5, 178, 90, 2, 1183, 1185, 5, 172, 87, 2, 1184, 1183, 3, 2, 2, 2, 1184, 1185, 3, 2, 2, 2, 1185, 167, 3, 2, 2, 2, 1186, 1187, 5, 176, 89, 2, 1187, 1188, 5, 170, 86, 2, 1188, 169, 3, 2, 2, 2, 1189, 1190, 7, 130, 2, 2, 1190, 1192, 5, 176, 89, 2, 1191, 1189, 3, 2, 2, 2, 1192, 1193, 3, 2, 2, 2, 1193, 1191, 3, 2, 2, 2, 1193, 1194, 3, 2, 2, 2, 1194, 1197, 3, 2, 2, 2, 1195, 1197, 3, 2, 2, 2, 1196, 1191, 3, 2, 2, 2, 1196, 1195, 3, 2, 2, 2, 1197, 171, 3, 2, 2, 2, 1198, 1199, 7, 295, 2, 2, 1199, 1200, 5, 174, 88, 2, 1200, 1201, 7, 296, 2, 2, 1201, 173, 3, 2, 2, 2, 1202, 1207, 5, 176, 89, 2, 1203, 1204, 7, 297, 2, 2, 1204, 1206, 5, 176, 89, 2, 1205, 1203, 3, 2, 2, 2, 1206, 1209, 3, 2, 2, 2, 1207, 1205, 3, 2, 2, 2, 1207, 1208, 3, 2, 2, 2, 1208, 175, 3, 2, 2, 2, 1209, 1207, 3, 2, 2, 2, 1210, 1211, 5, 178, 90, 2, 1211, 177, 3, 2, 2, 2, 1212, 1215, 5, 180, 91, 2, 1213, 1215, 5, 182, 92, 2, 1214, 1212, 3, 2, 2, 2, 1214, 1213, 3, 2, 2, 2, 1215, 179, 3, 2, 2, 2, 1216, 1217, 9, 20, 2, 2, 1217, 181, 3, 2, 2, 2, 1218, 1219, 7, 314, 2, 2, 1219, 183, 3, 2, 2, 2, 1220, 1221, 7, 42, 2, 2, 1221, 1222, 5, 136, 69, 2, 1222, 1223, 7, 43, 2, 2, 1223, 1224, 5, 136, 69, 2, 1224, 185, 3, 2, 2, 2, 1225, 1230, 5, 188, 95, 2, 1226, 1227, 7, 297, 2, 2, 1227, 1229, 5, 188, 95, 2, 1228, 1226, 3, 2, 2, 2, 1229, 1232, 3, 2, 2, 2, 1230, 1228, 3, 2, 2, 2, 1230, 1231, 3, 2, 2, 2, 1231, 187, 3, 2, 2, 2, 1232, 1230, 3, 2, 2, 2, 1233, 1237, 7, 318, 2, 2, 1234, 1236, 7, 312, 2, 2, 1235, 1234, 3, 2, 2, 2, 1236, 1239, 3, 2, 2, 2, 1237, 1238, 3, 2, 2, 2, 1237, 1235, 3, 2, 2, 2, 1238, 189, 3, 2, 2, 2, 1239, 1237, 3, 2, 2, 2, 1240, 1244, 9, 21, 2, 2, 1241, 1243, 9, 22, 2, 2, 1242, 1241, 3, 2, 2, 2, 1243, 1246, 3, 2, 2, 2, 1244, 1245, 3, 2, 2, 2, 1244, 1242, 3, 2, 2, 2, 1245, 191, 3, 2, 2, 2, 1246, 1244, 3, 2, 2, 2, 1247, 1248, 7, 70, 2, 2, 1248, 1249, 5, 198, 100, 2, 1249, 193, 3, 2, 2, 2, 1250, 1251, 7, 118, 2, 2, 1251, 1252, 7, 27, 2, 2, 1252, 1253, 7, 29, 2, 2, 1253, 195, 3, 2, 2, 2, 1254, 1255, 7, 118, 2, 2, 1255, 1256, 7, 29, 2, 2, 1256, 197, 3, 2, 2, 2, 1257, 1258, 7, 295, 2, 2, 1258, 1263, 5, 200, 101, 2, 1259, 1260, 7, 297, 2, 2, 1260, 1262, 5, 200, 101, 2, 1261, 1259, 3, 2, 2, 2, 1262, 1265, 3, 2, 2, 2, 1263, 1261, 3, 2, 2, 2, 1263, 1264, 3, 2, 2, 2, 1264, 1266, 3, 2, 2, 2, 1265, 1263, 3, 2, 2, 2, 1266, 1267, 7, 296, 2, 2, 1267, 199, 3, 2, 2, 2, 1268, 1273, 5, 202, 102, 2, 1269, 1271, 7, 284, 2, 2, 1270, 1269, 3, 2, 2, 2, 1270, 1271, 3, 2, 2, 2, 1271, 1272, 3, 2, 2, 2, 1272, 1274, 5, 204, 103, 2, 1273, 1270, 3, 2, 2, 2, 1273, 1274, 3, 2, 2, 2, 1274, 201, 3, 2, 2, 2, 1275, 1279, 5, 176, 89, 2, 1276, 1279, 5, 148, 75, 2, 1277, 1279, 7, 314, 2, 2, 1278, 1275, 3, 2, 2, 2, 1278, 1276, 3, 2, 2, 2, 1278, 1277, 3, 2, 2, 2, 1279, 203, 3, 2, 2, 2, 1280, 1285, 7, 315, 2, 2, 1281, 1285, 7, 316, 2, 2, 1282, 1285, 5, 224, 113, 2, 1283, 1285, 7, 314, 2, 2, 1284, 1280, 3, 2, 2, 2, 1284, 1281, 3, 2, 2, 2, 1284, 1282, 3, 2, 2, 2, 1284, 1283, 3, 2, 2, 2, 1285, 205, 3, 2, 2, 2, 1286, 1293, 7, 25, 2, 2, 1287, 1288, 7, 290, 2, 2, 1288, 1293, 7, 290, 2, 2, 1289, 1293, 7, 24, 2, 2, 1290, 1291, 7, 289, 2, 2, 1291, 1293, 7, 289, 2, 2, 1292, 1286, 3, 2, 2, 2, 1292, 1287, 3, 2, 2, 2, 1292, 1289, 3, 2, 2, 2, 1292, 1290, 3, 2, 2, 2, 1293, 207, 3, 2, 2, 2, 1294, 1309, 7, 284, 2, 2, 1295, 1309, 7, 285, 2, 2, 1296, 1309, 7, 286, 2, 2, 1297, 1298, 7, 286, 2, 2, 1298, 1309, 7, 284, 2, 2, 1299, 1300, 7, 285, 2, 2, 1300, 1309, 7, 284, 2, 2, 1301, 1302, 7, 286, 2, 2, 1302, 1309, 7, 285, 2, 2, 1303, 1304, 7, 287, 2, 2, 1304, 1309, 7, 284, 2, 2, 1305, 1306, 7, 286, 2, 2, 1306, 1307, 7, 284, 2, 2, 1307, 1309, 7, 285, 2, 2, 1308, 1294, 3, 2, 2, 2, 1308, 1295, 3, 2, 2, 2, 1308, 1296, 3, 2, 2, 2, 1308, 1297, 3, 2, 2, 2, 1308, 1299, 3, 2, 2, 2, 1308, 1301, 3, 2, 2, 2, 1308, 1303, 3, 2, 2, 2, 1308, 1305, 3, 2, 2, 2, 1309, 209, 3, 2, 2, 2, 1310, 1311, 7, 286, 2, 2, 1311, 1318, 7, 286, 2, 2, 1312, 1313, 7, 285, 2, 2, 1313, 1318, 7, 285, 2, 2, 1314, 1318, 7, 290, 2, 2, 1315, 1318, 7, 291, 2, 2, 1316, 1318, 7, 289, 2, 2, 1317, 1310, 3, 2, 2, 2, 1317, 1312, 3, 2, 2, 2, 1317, 1314, 3, 2, 2, 2, 1317, 1315, 3, 2, 2, 2, 1317, 1316, 3, 2, 2, 2, 1318, 211, 3, 2, 2, 2, 1319, 1320, 9, 23, 2, 2, 1320, 213, 3, 2, 2, 2, 1321, 1322, 9, 24, 2, 2, 1322, 215, 3, 2, 2, 2, 1323, 1324, 5, 188, 95, 2, 1324, 217, 3, 2, 2, 2, 1325, 1338, 5, 220, 111, 2, 1326, 1338, 5, 222, 112, 2, 1327, 1338, 5, 152, 77, 2, 1328, 1329, 7, 306, 2, 2, 1329, 1338, 5, 222, 112, 2, 1330, 1338, 5, 224, 113, 2, 1331, 1338, 7, 316, 2, 2, 1332, 1338, 7, 317, 2, 2, 1333, 1335, 7, 27, 2, 2, 1334, 1333, 3, 2, 2, 2, 1334, 1335, 3, 2, 2, 2, 1335, 1336, 3, 2, 2, 2, 1336, 1338, 7, 282, 2, 2, 1337, 1325, 3, 2, 2, 2, 1337, 1326, 3, 2, 2, 2, 1337, 1327, 3, 2, 2, 2, 1337, 1328, 3, 2, 2, 2, 1337, 1330, 3, 2, 2, 2, 1337, 1331, 3, 2, 2, 2, 1337, 1332, 3, 2, 2, 2, 1337, 1334, 3, 2, 2, 2, 1338, 219, 3, 2, 2, 2, 1339, 1340, 7, 314, 2, 2, 1340, 221, 3, 2, 2, 2, 1341, 1342, 7, 315, 2, 2, 1342, 223, 3, 2, 2, 2, 1343, 1344, 9, 14, 2, 2, 1344, 225, 3, 2, 2, 2, 1345, 1346, 9, 25, 2, 2, 1346, 227, 3, 2, 2, 2, 158, 236, 239, 241, 250, 266, 270, 282, 298, 303, 307, 311, 315, 318, 322, 327, 330, 334, 341, 361, 383, 396, 401, 405, 415, 425, 429, 435, 439, 443, 446, 455, 459, 466, 473, 491, 495, 502, 507, 514, 518, 522, 526, 534, 538, 546, 550, 561, 570, 583, 586, 590, 593, 595, 600, 604, 607, 611, 620, 626, 629, 632, 635, 639, 647, 650, 654, 657, 668, 673, 676, 681, 685, 690, 693, 706, 717, 728, 733, 745, 757, 769, 781, 794, 799, 811, 816, 821, 829, 837, 847, 850, 859, 862, 865, 871, 875, 881, 898, 900, 908, 910, 914, 922, 931, 937, 950, 955, 967, 972, 975, 981, 986, 991, 996, 1002, 1023, 1025, 1033, 1037, 1046, 1050, 1066, 1075, 1099, 1106, 1109, 1119, 1128, 1137, 1142, 1146, 1153, 1158, 1166, 1170, 1173, 1177, 1180, 1184, 1193, 1196, 1207, 1214, 1230, 1237, 1244, 1263, 1270, 1273, 1278, 1284, 1292, 1308, 1317, 1334, 1337] \ No newline at end of file diff --git a/src/lib/flinksql/FlinkSqlParser.js b/src/lib/flinksql/FlinkSqlParser.js index d680080..67ffb6c 100644 --- a/src/lib/flinksql/FlinkSqlParser.js +++ b/src/lib/flinksql/FlinkSqlParser.js @@ -8,7 +8,7 @@ var grammarFileName = "FlinkSqlParser.g4"; var serializedATN = ["\u0003\u608b\ua72a\u8133\ub9ed\u417c\u3be7\u7786\u5964", - "\u0003\u0137\u0512\u0004\u0002\t\u0002\u0004\u0003\t\u0003\u0004\u0004", + "\u0003\u013f\u0544\u0004\u0002\t\u0002\u0004\u0003\t\u0003\u0004\u0004", "\t\u0004\u0004\u0005\t\u0005\u0004\u0006\t\u0006\u0004\u0007\t\u0007", "\u0004\b\t\b\u0004\t\t\t\u0004\n\t\n\u0004\u000b\t\u000b\u0004\f\t\f", "\u0004\r\t\r\u0004\u000e\t\u000e\u0004\u000f\t\u000f\u0004\u0010\t\u0010", @@ -27,849 +27,883 @@ var serializedATN = ["\u0003\u608b\ua72a\u8133\ub9ed\u417c\u3be7\u7786\u5964", "U\tU\u0004V\tV\u0004W\tW\u0004X\tX\u0004Y\tY\u0004Z\tZ\u0004[\t[\u0004", "\\\t\\\u0004]\t]\u0004^\t^\u0004_\t_\u0004`\t`\u0004a\ta\u0004b\tb\u0004", "c\tc\u0004d\td\u0004e\te\u0004f\tf\u0004g\tg\u0004h\th\u0004i\ti\u0004", - "j\tj\u0004k\tk\u0004l\tl\u0004m\tm\u0003\u0002\u0003\u0002\u0003\u0002", - "\u0003\u0003\u0003\u0003\u0003\u0003\u0003\u0004\u0003\u0004\u0005\u0004", - "\u00e3\n\u0004\u0003\u0004\u0007\u0004\u00e6\n\u0004\f\u0004\u000e\u0004", - "\u00e9\u000b\u0004\u0003\u0005\u0003\u0005\u0003\u0005\u0003\u0005\u0003", - "\u0005\u0003\u0005\u0005\u0005\u00f1\n\u0005\u0003\u0006\u0003\u0006", + "j\tj\u0004k\tk\u0004l\tl\u0004m\tm\u0004n\tn\u0004o\to\u0004p\tp\u0004", + "q\tq\u0004r\tr\u0003\u0002\u0003\u0002\u0003\u0002\u0003\u0003\u0003", + "\u0003\u0003\u0003\u0003\u0004\u0003\u0004\u0005\u0004\u00ed\n\u0004", + "\u0003\u0004\u0007\u0004\u00f0\n\u0004\f\u0004\u000e\u0004\u00f3\u000b", + "\u0004\u0003\u0005\u0003\u0005\u0003\u0005\u0003\u0005\u0003\u0005\u0003", + "\u0005\u0005\u0005\u00fb\n\u0005\u0003\u0006\u0003\u0006\u0003\u0007", "\u0003\u0007\u0003\u0007\u0003\u0007\u0003\u0007\u0003\u0007\u0003\u0007", - "\u0003\u0007\u0003\u0007\u0003\u0007\u0003\u0007\u0003\u0007\u0003\u0007", - "\u0005\u0007\u0101\n\u0007\u0003\b\u0003\b\u0005\b\u0105\n\b\u0003\t", - "\u0003\t\u0003\t\u0003\n\u0003\n\u0003\n\u0003\n\u0003\n\u0003\u000b", - "\u0003\u000b\u0005\u000b\u0111\n\u000b\u0003\u000b\u0003\u000b\u0003", - "\f\u0003\f\u0003\f\u0003\r\u0003\r\u0003\r\u0003\r\u0003\r\u0003\r\u0003", - "\r\u0007\r\u011f\n\r\f\r\u000e\r\u0122\u000b\r\u0003\r\u0005\r\u0125", - "\n\r\u0003\r\u0003\r\u0005\r\u0129\n\r\u0003\r\u0005\r\u012c\n\r\u0003", - "\r\u0003\r\u0005\r\u0130\n\r\u0003\u000e\u0003\u000e\u0003\u000e\u0005", - "\u000e\u0135\n\u000e\u0003\u000f\u0003\u000f\u0003\u0010\u0003\u0010", - "\u0003\u0011\u0003\u0011\u0003\u0011\u0003\u0011\u0003\u0012\u0003\u0012", - "\u0003\u0012\u0003\u0013\u0003\u0013\u0003\u0013\u0003\u0013\u0003\u0013", - "\u0003\u0013\u0003\u0014\u0003\u0014\u0003\u0014\u0003\u0014\u0003\u0015", - "\u0003\u0015\u0003\u0015\u0003\u0015\u0007\u0015\u0150\n\u0015\f\u0015", - "\u000e\u0015\u0153\u000b\u0015\u0003\u0015\u0003\u0015\u0003\u0016\u0003", - "\u0016\u0003\u0016\u0003\u0016\u0003\u0016\u0003\u0016\u0007\u0016\u015d", - "\n\u0016\f\u0016\u000e\u0016\u0160\u000b\u0016\u0003\u0016\u0003\u0016", - "\u0005\u0016\u0164\n\u0016\u0003\u0017\u0003\u0017\u0005\u0017\u0168", - "\n\u0017\u0003\u0018\u0003\u0018\u0003\u0018\u0003\u0018\u0003\u0019", - "\u0003\u0019\u0003\u0019\u0003\u0019\u0005\u0019\u0172\n\u0019\u0003", - "\u001a\u0003\u001a\u0003\u001a\u0003\u001a\u0003\u001a\u0003\u001b\u0003", - "\u001b\u0003\u001b\u0005\u001b\u017c\n\u001b\u0003\u001b\u0003\u001b", - "\u0005\u001b\u0180\n\u001b\u0003\u001b\u0003\u001b\u0003\u001c\u0003", - "\u001c\u0005\u001c\u0186\n\u001c\u0003\u001c\u0003\u001c\u0005\u001c", - "\u018a\n\u001c\u0003\u001c\u0003\u001c\u0003\u001c\u0003\u001c\u0007", - "\u001c\u0190\n\u001c\f\u001c\u000e\u001c\u0193\u000b\u001c\u0005\u001c", - "\u0195\n\u001c\u0003\u001c\u0005\u001c\u0198\n\u001c\u0003\u001c\u0003", - "\u001c\u0003\u001c\u0003\u001d\u0003\u001d\u0003\u001d\u0003\u001d\u0005", - "\u001d\u01a1\n\u001d\u0003\u001d\u0003\u001d\u0005\u001d\u01a5\n\u001d", - "\u0003\u001d\u0003\u001d\u0003\u001d\u0003\u001d\u0003\u001d\u0005\u001d", - "\u01ac\n\u001d\u0003\u001e\u0003\u001e\u0003\u001e\u0003\u001e\u0003", - "\u001e\u0005\u001e\u01b3\n\u001e\u0003\u001f\u0003\u001f\u0003\u001f", - "\u0003\u001f\u0003 \u0003 \u0003 \u0003!\u0003!\u0003!\u0003!\u0003", - "!\u0003\"\u0003\"\u0003\"\u0003\"\u0005\"\u01c5\n\"\u0003\"\u0003\"", - "\u0005\"\u01c9\n\"\u0003\"\u0003\"\u0003\"\u0003\"\u0003\"\u0005\"\u01d0", - "\n\"\u0003#\u0003#\u0003#\u0005#\u01d5\n#\u0003#\u0003#\u0003$\u0003", - "$\u0003$\u0005$\u01dc\n$\u0003$\u0003$\u0005$\u01e0\n$\u0003%\u0003", - "%\u0005%\u01e4\n%\u0003%\u0003%\u0005%\u01e8\n%\u0003%\u0003%\u0003", - "&\u0003&\u0003&\u0003&\u0005&\u01f0\n&\u0003&\u0003&\u0005&\u01f4\n", - "&\u0003&\u0003&\u0003\'\u0003\'\u0003\'\u0003\'\u0005\'\u01fc\n\'\u0003", - "\'\u0003\'\u0005\'\u0200\n\'\u0003(\u0003(\u0003(\u0003)\u0003)\u0003", - ")\u0003)\u0007)\u0209\n)\f)\u000e)\u020c\u000b)\u0003*\u0003*\u0003", - "*\u0003*\u0007*\u0212\n*\f*\u000e*\u0215\u000b*\u0003*\u0003*\u0003", - "+\u0003+\u0003+\u0003+\u0003+\u0003+\u0003+\u0003+\u0005+\u0221\n+\u0003", - "+\u0005+\u0224\n+\u0003+\u0003+\u0005+\u0228\n+\u0003+\u0005+\u022b", - "\n+\u0005+\u022d\n+\u0003+\u0003+\u0003+\u0005+\u0232\n+\u0003+\u0003", - "+\u0005+\u0236\n+\u0003+\u0005+\u0239\n+\u0007+\u023b\n+\f+\u000e+\u023e", - "\u000b+\u0003,\u0003,\u0003,\u0003,\u0007,\u0244\n,\f,\u000e,\u0247", - "\u000b,\u0003-\u0003-\u0003-\u0005-\u024c\n-\u0003-\u0005-\u024f\n-", - "\u0003-\u0005-\u0252\n-\u0003-\u0005-\u0255\n-\u0003.\u0003.\u0005.", - "\u0259\n.\u0003.\u0003.\u0003.\u0003.\u0007.\u025f\n.\f.\u000e.\u0262", - "\u000b.\u0005.\u0264\n.\u0003/\u0003/\u0005/\u0268\n/\u0003/\u0005/", - "\u026b\n/\u00030\u00030\u00030\u00031\u00031\u00031\u00031\u00071\u0274", - "\n1\f1\u000e1\u0277\u000b1\u00031\u00031\u00051\u027b\n1\u00031\u0005", - "1\u027e\n1\u00031\u00031\u00031\u00051\u0283\n1\u00071\u0285\n1\f1\u000e", - "1\u0288\u000b1\u00032\u00032\u00052\u028c\n2\u00033\u00053\u028f\n3", - "\u00033\u00033\u00033\u00033\u00033\u00033\u00033\u00033\u00033\u0007", - "3\u029a\n3\f3\u000e3\u029d\u000b3\u00033\u00033\u00033\u00033\u0003", - "3\u00033\u00033\u00033\u00053\u02a7\n3\u00034\u00034\u00034\u00034\u0003", - "4\u00034\u00034\u00074\u02b0\n4\f4\u000e4\u02b3\u000b4\u00034\u0003", - "4\u00054\u02b7\n4\u00035\u00035\u00035\u00036\u00036\u00036\u00036\u0003", - "6\u00076\u02c1\n6\f6\u000e6\u02c4\u000b6\u00037\u00037\u00037\u0003", - "7\u00037\u00037\u00037\u00077\u02cd\n7\f7\u000e7\u02d0\u000b7\u0003", - "7\u00037\u00037\u00037\u00037\u00037\u00037\u00077\u02d9\n7\f7\u000e", - "7\u02dc\u000b7\u00037\u00037\u00037\u00037\u00037\u00037\u00037\u0007", - "7\u02e5\n7\f7\u000e7\u02e8\u000b7\u00037\u00037\u00037\u00037\u0003", - "7\u00037\u00037\u00037\u00077\u02f2\n7\f7\u000e7\u02f5\u000b7\u0003", - "7\u00037\u00057\u02f9\n7\u00038\u00038\u00038\u00039\u00039\u00039\u0003", - "9\u00039\u00079\u0303\n9\f9\u000e9\u0306\u000b9\u0003:\u0003:\u0005", - ":\u030a\n:\u0003;\u0003;\u0003;\u0005;\u030f\n;\u0003<\u0003<\u0003", - "<\u0003<\u0007<\u0315\n<\f<\u000e<\u0318\u000b<\u0003=\u0003=\u0003", - "=\u0003=\u0003>\u0005>\u031f\n>\u0003>\u0003>\u0003>\u0003>\u0003>\u0003", - ">\u0007>\u0327\n>\f>\u000e>\u032a\u000b>\u0005>\u032c\n>\u0003>\u0003", - ">\u0003>\u0003>\u0003>\u0007>\u0333\n>\f>\u000e>\u0336\u000b>\u0005", - ">\u0338\n>\u0003>\u0005>\u033b\n>\u0003>\u0003>\u0003?\u0003?\u0005", - "?\u0341\n?\u0003?\u0003?\u0005?\u0345\n?\u0003@\u0003@\u0003@\u0003", - "@\u0005@\u034b\n@\u0003A\u0003A\u0003A\u0003B\u0003B\u0003C\u0003C\u0003", - "C\u0003C\u0003C\u0003C\u0003C\u0003C\u0003C\u0003C\u0005C\u035c\nC\u0005", - "C\u035e\nC\u0003C\u0003C\u0003C\u0003C\u0003C\u0003C\u0007C\u0366\n", - "C\fC\u000eC\u0369\u000bC\u0003D\u0005D\u036c\nD\u0003D\u0003D\u0003", - "D\u0003D\u0003D\u0003D\u0005D\u0374\nD\u0003D\u0003D\u0003D\u0003D\u0003", - "D\u0007D\u037b\nD\fD\u000eD\u037e\u000bD\u0003D\u0003D\u0003D\u0005", - "D\u0383\nD\u0003D\u0003D\u0003D\u0003D\u0003D\u0003D\u0003D\u0003D\u0003", - "D\u0003D\u0003D\u0005D\u0390\nD\u0003D\u0003D\u0003D\u0005D\u0395\n", - "D\u0003D\u0003D\u0003D\u0003D\u0003D\u0003D\u0003D\u0003D\u0007D\u039f", - "\nD\fD\u000eD\u03a2\u000bD\u0003D\u0003D\u0005D\u03a6\nD\u0003D\u0005", - "D\u03a9\nD\u0003D\u0003D\u0003D\u0003D\u0005D\u03af\nD\u0003D\u0003", - "D\u0003D\u0005D\u03b4\nD\u0003D\u0003D\u0003D\u0005D\u03b9\nD\u0003", - "D\u0003D\u0003D\u0005D\u03be\nD\u0003E\u0003E\u0003E\u0003E\u0005E\u03c4", - "\nE\u0003E\u0003E\u0003E\u0003E\u0003E\u0003E\u0003E\u0003E\u0003E\u0003", - "E\u0003E\u0003E\u0003E\u0003E\u0003E\u0003E\u0003E\u0003E\u0003E\u0007", - "E\u03d9\nE\fE\u000eE\u03dc\u000bE\u0003F\u0003F\u0003F\u0006F\u03e1", - "\nF\rF\u000eF\u03e2\u0003F\u0003F\u0005F\u03e7\nF\u0003F\u0003F\u0003", - "F\u0003F\u0003F\u0006F\u03ee\nF\rF\u000eF\u03ef\u0003F\u0003F\u0005", - "F\u03f4\nF\u0003F\u0003F\u0003F\u0003F\u0003F\u0003F\u0003F\u0005F\u03fd", - "\nF\u0003F\u0003F\u0003F\u0003F\u0003F\u0003F\u0003F\u0005F\u0406\n", - "F\u0003F\u0003F\u0003F\u0003F\u0003F\u0003F\u0003F\u0003F\u0003F\u0003", - "F\u0003F\u0003F\u0003F\u0003F\u0003F\u0003F\u0003F\u0003F\u0003F\u0003", - "F\u0003F\u0003F\u0005F\u041e\nF\u0003F\u0003F\u0003F\u0007F\u0423\n", - "F\fF\u000eF\u0426\u000bF\u0005F\u0428\nF\u0003F\u0003F\u0003F\u0003", - "F\u0003F\u0003F\u0003F\u0003F\u0005F\u0432\nF\u0003F\u0003F\u0003F\u0003", - "F\u0003F\u0007F\u0439\nF\fF\u000eF\u043c\u000bF\u0003G\u0003G\u0003", - "H\u0003H\u0003I\u0003I\u0003I\u0007I\u0445\nI\fI\u000eI\u0448\u000b", - "I\u0003J\u0003J\u0003J\u0005J\u044d\nJ\u0003K\u0003K\u0005K\u0451\n", - "K\u0003L\u0003L\u0003L\u0006L\u0456\nL\rL\u000eL\u0457\u0003M\u0003", - "M\u0003M\u0005M\u045d\nM\u0003N\u0003N\u0003N\u0003N\u0003N\u0003O\u0005", - "O\u0465\nO\u0003O\u0003O\u0005O\u0469\nO\u0003P\u0005P\u046c\nP\u0003", - "P\u0003P\u0005P\u0470\nP\u0003Q\u0003Q\u0003Q\u0003R\u0003R\u0006R\u0477", - "\nR\rR\u000eR\u0478\u0003R\u0005R\u047c\nR\u0003S\u0003S\u0003S\u0003", - "S\u0003T\u0003T\u0003T\u0007T\u0485\nT\fT\u000eT\u0488\u000bT\u0003", - "U\u0003U\u0003V\u0003V\u0005V\u048e\nV\u0003W\u0003W\u0003X\u0003X\u0003", - "Y\u0003Y\u0003Y\u0003Y\u0003Y\u0003Z\u0003Z\u0003Z\u0007Z\u049c\nZ\f", - "Z\u000eZ\u049f\u000bZ\u0003[\u0003[\u0007[\u04a3\n[\f[\u000e[\u04a6", - "\u000b[\u0003\\\u0003\\\u0003\\\u0003]\u0003]\u0003]\u0003]\u0003^\u0003", - "^\u0003^\u0003_\u0003_\u0003_\u0003_\u0007_\u04b6\n_\f_\u000e_\u04b9", - "\u000b_\u0003_\u0003_\u0003`\u0003`\u0005`\u04bf\n`\u0003`\u0005`\u04c2", - "\n`\u0003a\u0003a\u0003a\u0007a\u04c7\na\fa\u000ea\u04ca\u000ba\u0003", - "a\u0005a\u04cd\na\u0003b\u0003b\u0003b\u0003b\u0005b\u04d3\nb\u0003", - "c\u0003c\u0003c\u0003c\u0003c\u0003c\u0005c\u04db\nc\u0003d\u0003d\u0003", - "d\u0003d\u0003d\u0003d\u0003d\u0003d\u0003d\u0003d\u0003d\u0003d\u0003", - "d\u0003d\u0005d\u04eb\nd\u0003e\u0003e\u0003e\u0003e\u0003e\u0003e\u0003", - "e\u0005e\u04f4\ne\u0003f\u0003f\u0003g\u0003g\u0003h\u0003h\u0003i\u0003", - "i\u0003i\u0003i\u0003i\u0003i\u0003i\u0003i\u0003i\u0005i\u0505\ni\u0003", - "i\u0005i\u0508\ni\u0003j\u0003j\u0003k\u0003k\u0003l\u0003l\u0003m\u0003", - "m\u0003m\u0003\u04a4\u0007T`\u0084\u0088\u008an\u0002\u0004\u0006\b", - "\n\f\u000e\u0010\u0012\u0014\u0016\u0018\u001a\u001c\u001e \"$&(*,.", - "02468:<>@BDFHJLNPRTVXZ\\^`bdfhjlnprtvxz|~\u0080\u0082\u0084\u0086\u0088", - "\u008a\u008c\u008e\u0090\u0092\u0094\u0096\u0098\u009a\u009c\u009e\u00a0", - "\u00a2\u00a4\u00a6\u00a8\u00aa\u00ac\u00ae\u00b0\u00b2\u00b4\u00b6\u00b8", - "\u00ba\u00bc\u00be\u00c0\u00c2\u00c4\u00c6\u00c8\u00ca\u00cc\u00ce\u00d0", - "\u00d2\u00d4\u00d6\u00d8\u0002\u0018\u0006\u0002XX]]\u00c7\u00c7\u00fd", - "\u00fe\u0003\u0002\u00ff\u0115\u0003\u0002\u00f6\u00f7\u0004\u0002\n", - "\n\u00f8\u00f8\u0004\u0002\u00ae\u00ae\u00fa\u00fa\u0003\u0002\u00bf", - "\u00c0\u0004\u0002OO\u0093\u0093\u0004\u0002_`bb\u0004\u00022245\u0003", - "\u0002%&\u0004\u0002CCEE\u0003\u0002\n\u000b\u0003\u0002\"#\u0004\u0002", - "\u011a\u011a\u012c\u012d\u0006\u0002\u0086\u0086\u012a\u012a\u012e\u012e", - "\u0131\u0131\u0004\u0002\u012c\u012d\u012f\u012f\u0003\u0002\u012c\u012d", - "\u0003\u0002\u0134\u0135\u0004\u0002\u0134\u0134\u0137\u0137\u0006\u0002", - "\u0086\u0086\u012a\u012a\u012c\u012e\u0130\u0131\u0005\u0002\u001b\u001b", - "\u0119\u011a\u012c\u012d\u0004\u0002\n\n\f\f\u0002\u057d\u0002\u00da", - "\u0003\u0002\u0002\u0002\u0004\u00dd\u0003\u0002\u0002\u0002\u0006\u00e7", - "\u0003\u0002\u0002\u0002\b\u00f0\u0003\u0002\u0002\u0002\n\u00f2\u0003", - "\u0002\u0002\u0002\f\u0100\u0003\u0002\u0002\u0002\u000e\u0104\u0003", - "\u0002\u0002\u0002\u0010\u0106\u0003\u0002\u0002\u0002\u0012\u0109\u0003", - "\u0002\u0002\u0002\u0014\u010e\u0003\u0002\u0002\u0002\u0016\u0114\u0003", - "\u0002\u0002\u0002\u0018\u0117\u0003\u0002\u0002\u0002\u001a\u0131\u0003", - "\u0002\u0002\u0002\u001c\u0136\u0003\u0002\u0002\u0002\u001e\u0138\u0003", - "\u0002\u0002\u0002 \u013a\u0003\u0002\u0002\u0002\"\u013e\u0003\u0002", - "\u0002\u0002$\u0141\u0003\u0002\u0002\u0002&\u0147\u0003\u0002\u0002", - "\u0002(\u014b\u0003\u0002\u0002\u0002*\u0163\u0003\u0002\u0002\u0002", - ",\u0167\u0003\u0002\u0002\u0002.\u0169\u0003\u0002\u0002\u00020\u0171", - "\u0003\u0002\u0002\u00022\u0173\u0003\u0002\u0002\u00024\u0178\u0003", - "\u0002\u0002\u00026\u0183\u0003\u0002\u0002\u00028\u019c\u0003\u0002", - "\u0002\u0002:\u01ad\u0003\u0002\u0002\u0002<\u01b4\u0003\u0002\u0002", - "\u0002>\u01b8\u0003\u0002\u0002\u0002@\u01bb\u0003\u0002\u0002\u0002", - "B\u01c0\u0003\u0002\u0002\u0002D\u01d1\u0003\u0002\u0002\u0002F\u01d8", - "\u0003\u0002\u0002\u0002H\u01e1\u0003\u0002\u0002\u0002J\u01eb\u0003", - "\u0002\u0002\u0002L\u01f7\u0003\u0002\u0002\u0002N\u0201\u0003\u0002", - "\u0002\u0002P\u0204\u0003\u0002\u0002\u0002R\u020d\u0003\u0002\u0002", - "\u0002T\u022c\u0003\u0002\u0002\u0002V\u023f\u0003\u0002\u0002\u0002", - "X\u0248\u0003\u0002\u0002\u0002Z\u0256\u0003\u0002\u0002\u0002\\\u0265", - "\u0003\u0002\u0002\u0002^\u026c\u0003\u0002\u0002\u0002`\u026f\u0003", - "\u0002\u0002\u0002b\u0289\u0003\u0002\u0002\u0002d\u02a6\u0003\u0002", - "\u0002\u0002f\u02b6\u0003\u0002\u0002\u0002h\u02b8\u0003\u0002\u0002", - "\u0002j\u02bb\u0003\u0002\u0002\u0002l\u02f8\u0003\u0002\u0002\u0002", - "n\u02fa\u0003\u0002\u0002\u0002p\u02fd\u0003\u0002\u0002\u0002r\u0307", - "\u0003\u0002\u0002\u0002t\u030b\u0003\u0002\u0002\u0002v\u0310\u0003", - "\u0002\u0002\u0002x\u0319\u0003\u0002\u0002\u0002z\u031e\u0003\u0002", - "\u0002\u0002|\u033e\u0003\u0002\u0002\u0002~\u034a\u0003\u0002\u0002", - "\u0002\u0080\u034c\u0003\u0002\u0002\u0002\u0082\u034f\u0003\u0002\u0002", - "\u0002\u0084\u035d\u0003\u0002\u0002\u0002\u0086\u03bd\u0003\u0002\u0002", - "\u0002\u0088\u03c3\u0003\u0002\u0002\u0002\u008a\u0431\u0003\u0002\u0002", - "\u0002\u008c\u043d\u0003\u0002\u0002\u0002\u008e\u043f\u0003\u0002\u0002", - "\u0002\u0090\u0441\u0003\u0002\u0002\u0002\u0092\u0449\u0003\u0002\u0002", - "\u0002\u0094\u044e\u0003\u0002\u0002\u0002\u0096\u0455\u0003\u0002\u0002", - "\u0002\u0098\u0459\u0003\u0002\u0002\u0002\u009a\u045e\u0003\u0002\u0002", - "\u0002\u009c\u0468\u0003\u0002\u0002\u0002\u009e\u046b\u0003\u0002\u0002", - "\u0002\u00a0\u0471\u0003\u0002\u0002\u0002\u00a2\u047b\u0003\u0002\u0002", - "\u0002\u00a4\u047d\u0003\u0002\u0002\u0002\u00a6\u0481\u0003\u0002\u0002", - "\u0002\u00a8\u0489\u0003\u0002\u0002\u0002\u00aa\u048d\u0003\u0002\u0002", - "\u0002\u00ac\u048f\u0003\u0002\u0002\u0002\u00ae\u0491\u0003\u0002\u0002", - "\u0002\u00b0\u0493\u0003\u0002\u0002\u0002\u00b2\u0498\u0003\u0002\u0002", - "\u0002\u00b4\u04a0\u0003\u0002\u0002\u0002\u00b6\u04a7\u0003\u0002\u0002", - "\u0002\u00b8\u04aa\u0003\u0002\u0002\u0002\u00ba\u04ae\u0003\u0002\u0002", - "\u0002\u00bc\u04b1\u0003\u0002\u0002\u0002\u00be\u04bc\u0003\u0002\u0002", - "\u0002\u00c0\u04cc\u0003\u0002\u0002\u0002\u00c2\u04d2\u0003\u0002\u0002", - "\u0002\u00c4\u04da\u0003\u0002\u0002\u0002\u00c6\u04ea\u0003\u0002\u0002", - "\u0002\u00c8\u04f3\u0003\u0002\u0002\u0002\u00ca\u04f5\u0003\u0002\u0002", - "\u0002\u00cc\u04f7\u0003\u0002\u0002\u0002\u00ce\u04f9\u0003\u0002\u0002", - "\u0002\u00d0\u0507\u0003\u0002\u0002\u0002\u00d2\u0509\u0003\u0002\u0002", - "\u0002\u00d4\u050b\u0003\u0002\u0002\u0002\u00d6\u050d\u0003\u0002\u0002", - "\u0002\u00d8\u050f\u0003\u0002\u0002\u0002\u00da\u00db\u0005\u0004\u0003", - "\u0002\u00db\u00dc\u0007\u0002\u0002\u0003\u00dc\u0003\u0003\u0002\u0002", - "\u0002\u00dd\u00de\u0005\u0006\u0004\u0002\u00de\u00df\u0007\u0002\u0002", - "\u0003\u00df\u0005\u0003\u0002\u0002\u0002\u00e0\u00e2\u0005\b\u0005", - "\u0002\u00e1\u00e3\u0007\u0124\u0002\u0002\u00e2\u00e1\u0003\u0002\u0002", - "\u0002\u00e2\u00e3\u0003\u0002\u0002\u0002\u00e3\u00e6\u0003\u0002\u0002", - "\u0002\u00e4\u00e6\u0005\n\u0006\u0002\u00e5\u00e0\u0003\u0002\u0002", - "\u0002\u00e5\u00e4\u0003\u0002\u0002\u0002\u00e6\u00e9\u0003\u0002\u0002", - "\u0002\u00e7\u00e5\u0003\u0002\u0002\u0002\u00e7\u00e8\u0003\u0002\u0002", - "\u0002\u00e8\u0007\u0003\u0002\u0002\u0002\u00e9\u00e7\u0003\u0002\u0002", - "\u0002\u00ea\u00f1\u0005\f\u0007\u0002\u00eb\u00f1\u0005\u000e\b\u0002", - "\u00ec\u00f1\u0005\u0010\t\u0002\u00ed\u00f1\u0005\u0012\n\u0002\u00ee", - "\u00f1\u0005\u0014\u000b\u0002\u00ef\u00f1\u0005\u0016\f\u0002\u00f0", - "\u00ea\u0003\u0002\u0002\u0002\u00f0\u00eb\u0003\u0002\u0002\u0002\u00f0", - "\u00ec\u0003\u0002\u0002\u0002\u00f0\u00ed\u0003\u0002\u0002\u0002\u00f0", - "\u00ee\u0003\u0002\u0002\u0002\u00f0\u00ef\u0003\u0002\u0002\u0002\u00f1", - "\t\u0003\u0002\u0002\u0002\u00f2\u00f3\u0007\u0124\u0002\u0002\u00f3", - "\u000b\u0003\u0002\u0002\u0002\u00f4\u0101\u0005\u0018\r\u0002\u00f5", - "\u0101\u00054\u001b\u0002\u00f6\u0101\u00056\u001c\u0002\u00f7\u0101", - "\u00058\u001d\u0002\u00f8\u0101\u00052\u001a\u0002\u00f9\u0101\u0005", - ":\u001e\u0002\u00fa\u0101\u0005@!\u0002\u00fb\u0101\u0005B\"\u0002\u00fc", - "\u0101\u0005D#\u0002\u00fd\u0101\u0005F$\u0002\u00fe\u0101\u0005H%\u0002", - "\u00ff\u0101\u0005J&\u0002\u0100\u00f4\u0003\u0002\u0002\u0002\u0100", - "\u00f5\u0003\u0002\u0002\u0002\u0100\u00f6\u0003\u0002\u0002\u0002\u0100", - "\u00f7\u0003\u0002\u0002\u0002\u0100\u00f8\u0003\u0002\u0002\u0002\u0100", - "\u00f9\u0003\u0002\u0002\u0002\u0100\u00fa\u0003\u0002\u0002\u0002\u0100", - "\u00fb\u0003\u0002\u0002\u0002\u0100\u00fc\u0003\u0002\u0002\u0002\u0100", - "\u00fd\u0003\u0002\u0002\u0002\u0100\u00fe\u0003\u0002\u0002\u0002\u0100", - "\u00ff\u0003\u0002\u0002\u0002\u0101\r\u0003\u0002\u0002\u0002\u0102", - "\u0105\u0005T+\u0002\u0103\u0105\u0005L\'\u0002\u0104\u0102\u0003\u0002", - "\u0002\u0002\u0104\u0103\u0003\u0002\u0002\u0002\u0105\u000f\u0003\u0002", - "\u0002\u0002\u0106\u0107\u0007P\u0002\u0002\u0107\u0108\u0005\u00b4", - "[\u0002\u0108\u0011\u0003\u0002\u0002\u0002\u0109\u010a\u0007Q\u0002", - "\u0002\u010a\u010b\u0005\u00a8U\u0002\u010b\u010c\u0007\'\u0002\u0002", - "\u010c\u010d\u0005\u000e\b\u0002\u010d\u0013\u0003\u0002\u0002\u0002", - "\u010e\u0110\u0007[\u0002\u0002\u010f\u0111\u0007\u00fb\u0002\u0002", - "\u0110\u010f\u0003\u0002\u0002\u0002\u0110\u0111\u0003\u0002\u0002\u0002", - "\u0111\u0112\u0003\u0002\u0002\u0002\u0112\u0113\u0005\u00b4[\u0002", - "\u0113\u0015\u0003\u0002\u0002\u0002\u0114\u0115\u0007W\u0002\u0002", - "\u0115\u0116\t\u0002\u0002\u0002\u0116\u0017\u0003\u0002\u0002\u0002", - "\u0117\u0118\u0007H\u0002\u0002\u0118\u0119\u0007I\u0002\u0002\u0119", - "\u011a\u0005\u00b4[\u0002\u011a\u011b\u0007\u0121\u0002\u0002\u011b", - "\u0120\u0005\u001a\u000e\u0002\u011c\u011d\u0007\u0123\u0002\u0002\u011d", - "\u011f\u0005\u001a\u000e\u0002\u011e\u011c\u0003\u0002\u0002\u0002\u011f", - "\u0122\u0003\u0002\u0002\u0002\u0120\u011e\u0003\u0002\u0002\u0002\u0120", - "\u0121\u0003\u0002\u0002\u0002\u0121\u0124\u0003\u0002\u0002\u0002\u0122", - "\u0120\u0003\u0002\u0002\u0002\u0123\u0125\u0005$\u0013\u0002\u0124", - "\u0123\u0003\u0002\u0002\u0002\u0124\u0125\u0003\u0002\u0002\u0002\u0125", - "\u0126\u0003\u0002\u0002\u0002\u0126\u0128\u0007\u0122\u0002\u0002\u0127", - "\u0129\u0005\"\u0012\u0002\u0128\u0127\u0003\u0002\u0002\u0002\u0128", - "\u0129\u0003\u0002\u0002\u0002\u0129\u012b\u0003\u0002\u0002\u0002\u012a", - "\u012c\u0005&\u0014\u0002\u012b\u012a\u0003\u0002\u0002\u0002\u012b", - "\u012c\u0003\u0002\u0002\u0002\u012c\u012d\u0003\u0002\u0002\u0002\u012d", - "\u012f\u0005\u00b6\\\u0002\u012e\u0130\u0005.\u0018\u0002\u012f\u012e", - "\u0003\u0002\u0002\u0002\u012f\u0130\u0003\u0002\u0002\u0002\u0130\u0019", - "\u0003\u0002\u0002\u0002\u0131\u0132\u0005\u001c\u000f\u0002\u0132\u0134", - "\u0005\u001e\u0010\u0002\u0133\u0135\u0005 \u0011\u0002\u0134\u0133", - "\u0003\u0002\u0002\u0002\u0134\u0135\u0003\u0002\u0002\u0002\u0135\u001b", - "\u0003\u0002\u0002\u0002\u0136\u0137\u0007\u0137\u0002\u0002\u0137\u001d", - "\u0003\u0002\u0002\u0002\u0138\u0139\t\u0003\u0002\u0002\u0139\u001f", - "\u0003\u0002\u0002\u0002\u013a\u013b\u0007\u0121\u0002\u0002\u013b\u013c", - "\u0005\u00d4k\u0002\u013c\u013d\u0007\u0122\u0002\u0002\u013d!\u0003", - "\u0002\u0002\u0002\u013e\u013f\u0007i\u0002\u0002\u013f\u0140\u0007", - "\u0133\u0002\u0002\u0140#\u0003\u0002\u0002\u0002\u0141\u0142\u0007", - "\u00e7\u0002\u0002\u0142\u0143\u0007\'\u0002\u0002\u0143\u0144\u0005", - "\u0082B\u0002\u0144\u0145\u0007\t\u0002\u0002\u0145\u0146\u0005\u0082", - "B\u0002\u0146%\u0003\u0002\u0002\u0002\u0147\u0148\u0007\u00ce\u0002", - "\u0002\u0148\u0149\u0007\u000f\u0002\u0002\u0149\u014a\u0005(\u0015", - "\u0002\u014a\'\u0003\u0002\u0002\u0002\u014b\u014c\u0007\u0121\u0002", - "\u0002\u014c\u0151\u0005*\u0016\u0002\u014d\u014e\u0007\u0123\u0002", - "\u0002\u014e\u0150\u0005*\u0016\u0002\u014f\u014d\u0003\u0002\u0002", - "\u0002\u0150\u0153\u0003\u0002\u0002\u0002\u0151\u014f\u0003\u0002\u0002", - "\u0002\u0151\u0152\u0003\u0002\u0002\u0002\u0152\u0154\u0003\u0002\u0002", - "\u0002\u0153\u0151\u0003\u0002\u0002\u0002\u0154\u0155\u0007\u0122\u0002", - "\u0002\u0155)\u0003\u0002\u0002\u0002\u0156\u0164\u0005\u0090I\u0002", - "\u0157\u0158\u0005\u00a8U\u0002\u0158\u0159\u0007\u0121\u0002\u0002", - "\u0159\u015e\u0005,\u0017\u0002\u015a\u015b\u0007\u0123\u0002\u0002", - "\u015b\u015d\u0005,\u0017\u0002\u015c\u015a\u0003\u0002\u0002\u0002", - "\u015d\u0160\u0003\u0002\u0002\u0002\u015e\u015c\u0003\u0002\u0002\u0002", - "\u015e\u015f\u0003\u0002\u0002\u0002\u015f\u0161\u0003\u0002\u0002\u0002", - "\u0160\u015e\u0003\u0002\u0002\u0002\u0161\u0162\u0007\u0122\u0002\u0002", - "\u0162\u0164\u0003\u0002\u0002\u0002\u0163\u0156\u0003\u0002\u0002\u0002", - "\u0163\u0157\u0003\u0002\u0002\u0002\u0164+\u0003\u0002\u0002\u0002", - "\u0165\u0168\u0005\u0090I\u0002\u0166\u0168\u0005\u00d0i\u0002\u0167", - "\u0165\u0003\u0002\u0002\u0002\u0167\u0166\u0003\u0002\u0002\u0002\u0168", - "-\u0003\u0002\u0002\u0002\u0169\u016a\u0007\u001f\u0002\u0002\u016a", - "\u016b\u0005\u00a8U\u0002\u016b\u016c\u00050\u0019\u0002\u016c/\u0003", - "\u0002\u0002\u0002\u016d\u016e\t\u0004\u0002\u0002\u016e\u0172\t\u0005", - "\u0002\u0002\u016f\u0170\t\u0004\u0002\u0002\u0170\u0172\t\u0006\u0002", - "\u0002\u0171\u016d\u0003\u0002\u0002\u0002\u0171\u016f\u0003\u0002\u0002", - "\u0002\u01721\u0003\u0002\u0002\u0002\u0173\u0174\u0007H\u0002\u0002", - "\u0174\u0175\u0007\u00fb\u0002\u0002\u0175\u0176\u0005\u00b4[\u0002", - "\u0176\u0177\u0005\u00b6\\\u0002\u01773\u0003\u0002\u0002\u0002\u0178", - "\u0179\u0007H\u0002\u0002\u0179\u017b\u0007\u00c6\u0002\u0002\u017a", - "\u017c\u0005\u00b8]\u0002\u017b\u017a\u0003\u0002\u0002\u0002\u017b", - "\u017c\u0003\u0002\u0002\u0002\u017c\u017d\u0003\u0002\u0002\u0002\u017d", - "\u017f\u0005\u00b4[\u0002\u017e\u0180\u0005\"\u0012\u0002\u017f\u017e", - "\u0003\u0002\u0002\u0002\u017f\u0180\u0003\u0002\u0002\u0002\u0180\u0181", - "\u0003\u0002\u0002\u0002\u0181\u0182\u0005\u00b6\\\u0002\u01825\u0003", - "\u0002\u0002\u0002\u0183\u0185\u0007H\u0002\u0002\u0184\u0186\u0007", - "\u00ad\u0002\u0002\u0185\u0184\u0003\u0002\u0002\u0002\u0185\u0186\u0003", - "\u0002\u0002\u0002\u0186\u0187\u0003\u0002\u0002\u0002\u0187\u0189\u0007", - "K\u0002\u0002\u0188\u018a\u0005\u00b8]\u0002\u0189\u0188\u0003\u0002", - "\u0002\u0002\u0189\u018a\u0003\u0002\u0002\u0002\u018a\u018b\u0003\u0002", - "\u0002\u0002\u018b\u0194\u0005\u00b4[\u0002\u018c\u0191\u0005\u001c", - "\u000f\u0002\u018d\u018e\u0007\u0123\u0002\u0002\u018e\u0190\u0005\u001c", - "\u000f\u0002\u018f\u018d\u0003\u0002\u0002\u0002\u0190\u0193\u0003\u0002", - "\u0002\u0002\u0191\u018f\u0003\u0002\u0002\u0002\u0191\u0192\u0003\u0002", - "\u0002\u0002\u0192\u0195\u0003\u0002\u0002\u0002\u0193\u0191\u0003\u0002", - "\u0002\u0002\u0194\u018c\u0003\u0002\u0002\u0002\u0194\u0195\u0003\u0002", - "\u0002\u0002\u0195\u0197\u0003\u0002\u0002\u0002\u0196\u0198\u0005\"", - "\u0012\u0002\u0197\u0196\u0003\u0002\u0002\u0002\u0197\u0198\u0003\u0002", - "\u0002\u0002\u0198\u0199\u0003\u0002\u0002\u0002\u0199\u019a\u0007\t", - "\u0002\u0002\u019a\u019b\u0005T+\u0002\u019b7\u0003\u0002\u0002\u0002", - "\u019c\u01a0\u0007H\u0002\u0002\u019d\u01a1\u0007\u00ad\u0002\u0002", - "\u019e\u019f\u0007\u00ad\u0002\u0002\u019f\u01a1\u0007\u00f5\u0002\u0002", - "\u01a0\u019d\u0003\u0002\u0002\u0002\u01a0\u019e\u0003\u0002\u0002\u0002", - "\u01a1\u01a2\u0003\u0002\u0002\u0002\u01a2\u01a4\u0007\u00a4\u0002\u0002", - "\u01a3\u01a5\u0005\u00b8]\u0002\u01a4\u01a3\u0003\u0002\u0002\u0002", - "\u01a4\u01a5\u0003\u0002\u0002\u0002\u01a5\u01a6\u0003\u0002\u0002\u0002", - "\u01a6\u01a7\u0005\u00b4[\u0002\u01a7\u01a8\u0007\t\u0002\u0002\u01a8", - "\u01ab\u0005\u00a8U\u0002\u01a9\u01aa\u0007\u00fc\u0002\u0002\u01aa", - "\u01ac\u0005\u00a8U\u0002\u01ab\u01a9\u0003\u0002\u0002\u0002\u01ab", - "\u01ac\u0003\u0002\u0002\u0002\u01ac9\u0003\u0002\u0002\u0002\u01ad", - "\u01ae\u0007f\u0002\u0002\u01ae\u01af\u0007I\u0002\u0002\u01af\u01b2", - "\u0005\u00b4[\u0002\u01b0\u01b3\u0005<\u001f\u0002\u01b1\u01b3\u0005", - "> \u0002\u01b2\u01b0\u0003\u0002\u0002\u0002\u01b2\u01b1\u0003\u0002", - "\u0002\u0002\u01b3;\u0003\u0002\u0002\u0002\u01b4\u01b5\u0007g\u0002", - "\u0002\u01b5\u01b6\u0007c\u0002\u0002\u01b6\u01b7\u0005\u00b4[\u0002", - "\u01b7=\u0003\u0002\u0002\u0002\u01b8\u01b9\u0007j\u0002\u0002\u01b9", - "\u01ba\u0005\u00bc_\u0002\u01ba?\u0003\u0002\u0002\u0002\u01bb\u01bc", - "\u0007f\u0002\u0002\u01bc\u01bd\u0007\u00c6\u0002\u0002\u01bd\u01be", - "\u0005\u00b4[\u0002\u01be\u01bf\u0005> \u0002\u01bfA\u0003\u0002\u0002", - "\u0002\u01c0\u01c4\u0007f\u0002\u0002\u01c1\u01c5\u0007\u00ad\u0002", - "\u0002\u01c2\u01c3\u0007\u00ad\u0002\u0002\u01c3\u01c5\u0007\u00f5\u0002", - "\u0002\u01c4\u01c1\u0003\u0002\u0002\u0002\u01c4\u01c2\u0003\u0002\u0002", - "\u0002\u01c5\u01c6\u0003\u0002\u0002\u0002\u01c6\u01c8\u0007\u00a4\u0002", - "\u0002\u01c7\u01c9\u0005\u00ba^\u0002\u01c8\u01c7\u0003\u0002\u0002", - "\u0002\u01c8\u01c9\u0003\u0002\u0002\u0002\u01c9\u01ca\u0003\u0002\u0002", - "\u0002\u01ca\u01cb\u0005\u00b4[\u0002\u01cb\u01cc\u0007\t\u0002\u0002", - "\u01cc\u01cf\u0005\u00a8U\u0002\u01cd\u01ce\u0007\u00fc\u0002\u0002", - "\u01ce\u01d0\u0005\u00a8U\u0002\u01cf\u01cd\u0003\u0002\u0002\u0002", - "\u01cf\u01d0\u0003\u0002\u0002\u0002\u01d0C\u0003\u0002\u0002\u0002", - "\u01d1\u01d2\u0007^\u0002\u0002\u01d2\u01d4\u0007I\u0002\u0002\u01d3", - "\u01d5\u0005\u00ba^\u0002\u01d4\u01d3\u0003\u0002\u0002\u0002\u01d4", - "\u01d5\u0003\u0002\u0002\u0002\u01d5\u01d6\u0003\u0002\u0002\u0002\u01d6", - "\u01d7\u0005\u00b4[\u0002\u01d7E\u0003\u0002\u0002\u0002\u01d8\u01d9", - "\u0007^\u0002\u0002\u01d9\u01db\u0007\u00c6\u0002\u0002\u01da\u01dc", - "\u0005\u00ba^\u0002\u01db\u01da\u0003\u0002\u0002\u0002\u01db\u01dc", - "\u0003\u0002\u0002\u0002\u01dc\u01dd\u0003\u0002\u0002\u0002\u01dd\u01df", - "\u0005\u00b4[\u0002\u01de\u01e0\t\u0007\u0002\u0002\u01df\u01de\u0003", - "\u0002\u0002\u0002\u01df\u01e0\u0003\u0002\u0002\u0002\u01e0G\u0003", - "\u0002\u0002\u0002\u01e1\u01e3\u0007^\u0002\u0002\u01e2\u01e4\u0007", - "\u00ad\u0002\u0002\u01e3\u01e2\u0003\u0002\u0002\u0002\u01e3\u01e4\u0003", - "\u0002\u0002\u0002\u01e4\u01e5\u0003\u0002\u0002\u0002\u01e5\u01e7\u0007", - "K\u0002\u0002\u01e6\u01e8\u0005\u00ba^\u0002\u01e7\u01e6\u0003\u0002", - "\u0002\u0002\u01e7\u01e8\u0003\u0002\u0002\u0002\u01e8\u01e9\u0003\u0002", - "\u0002\u0002\u01e9\u01ea\u0005\u00b4[\u0002\u01eaI\u0003\u0002\u0002", - "\u0002\u01eb\u01ef\u0007^\u0002\u0002\u01ec\u01f0\u0007\u00ad\u0002", - "\u0002\u01ed\u01ee\u0007\u00ad\u0002\u0002\u01ee\u01f0\u0007\u00f5\u0002", - "\u0002\u01ef\u01ec\u0003\u0002\u0002\u0002\u01ef\u01ed\u0003\u0002\u0002", - "\u0002\u01ef\u01f0\u0003\u0002\u0002\u0002\u01f0\u01f1\u0003\u0002\u0002", - "\u0002\u01f1\u01f3\u0007\u00a4\u0002\u0002\u01f2\u01f4\u0005\u00ba^", - "\u0002\u01f3\u01f2\u0003\u0002\u0002\u0002\u01f3\u01f4\u0003\u0002\u0002", - "\u0002\u01f4\u01f5\u0003\u0002\u0002\u0002\u01f5\u01f6\u0005\u00b4[", - "\u0002\u01f6K\u0003\u0002\u0002\u0002\u01f7\u01f8\u0007M\u0002\u0002", - "\u01f8\u01f9\t\b\u0002\u0002\u01f9\u01ff\u0005\u00b4[\u0002\u01fa\u01fc", - "\u0005N(\u0002\u01fb\u01fa\u0003\u0002\u0002\u0002\u01fb\u01fc\u0003", - "\u0002\u0002\u0002\u01fc\u01fd\u0003\u0002\u0002\u0002\u01fd\u0200\u0005", - "T+\u0002\u01fe\u0200\u0005P)\u0002\u01ff\u01fb\u0003\u0002\u0002\u0002", - "\u01ff\u01fe\u0003\u0002\u0002\u0002\u0200M\u0003\u0002\u0002\u0002", - "\u0201\u0202\u0007<\u0002\u0002\u0202\u0203\u0005\u00bc_\u0002\u0203", - "O\u0003\u0002\u0002\u0002\u0204\u0205\u0007G\u0002\u0002\u0205\u020a", - "\u0005R*\u0002\u0206\u0207\u0007\u0123\u0002\u0002\u0207\u0209\u0005", - "R*\u0002\u0208\u0206\u0003\u0002\u0002\u0002\u0209\u020c\u0003\u0002", - "\u0002\u0002\u020a\u0208\u0003\u0002\u0002\u0002\u020a\u020b\u0003\u0002", - "\u0002\u0002\u020bQ\u0003\u0002\u0002\u0002\u020c\u020a\u0003\u0002", - "\u0002\u0002\u020d\u020e\u0007\u0121\u0002\u0002\u020e\u0213\u0005\u00d0", - "i\u0002\u020f\u0210\u0007\u0123\u0002\u0002\u0210\u0212\u0005\u00d0", - "i\u0002\u0211\u020f\u0003\u0002\u0002\u0002\u0212\u0215\u0003\u0002", - "\u0002\u0002\u0213\u0211\u0003\u0002\u0002\u0002\u0213\u0214\u0003\u0002", - "\u0002\u0002\u0214\u0216\u0003\u0002\u0002\u0002\u0215\u0213\u0003\u0002", - "\u0002\u0002\u0216\u0217\u0007\u0122\u0002\u0002\u0217S\u0003\u0002", - "\u0002\u0002\u0218\u0219\b+\u0001\u0002\u0219\u022d\u0005V,\u0002\u021a", - "\u021b\u0007\u0121\u0002\u0002\u021b\u021c\u0005T+\u0002\u021c\u021d", - "\u0007\u0122\u0002\u0002\u021d\u022d\u0003\u0002\u0002\u0002\u021e\u0220", - "\u0005Z.\u0002\u021f\u0221\u0005p9\u0002\u0220\u021f\u0003\u0002\u0002", - "\u0002\u0220\u0221\u0003\u0002\u0002\u0002\u0221\u0223\u0003\u0002\u0002", - "\u0002\u0222\u0224\u0005t;\u0002\u0223\u0222\u0003\u0002\u0002\u0002", - "\u0223\u0224\u0003\u0002\u0002\u0002\u0224\u022d\u0003\u0002\u0002\u0002", - "\u0225\u0227\u0005X-\u0002\u0226\u0228\u0005p9\u0002\u0227\u0226\u0003", - "\u0002\u0002\u0002\u0227\u0228\u0003\u0002\u0002\u0002\u0228\u022a\u0003", - "\u0002\u0002\u0002\u0229\u022b\u0005t;\u0002\u022a\u0229\u0003\u0002", - "\u0002\u0002\u022a\u022b\u0003\u0002\u0002\u0002\u022b\u022d\u0003\u0002", - "\u0002\u0002\u022c\u0218\u0003\u0002\u0002\u0002\u022c\u021a\u0003\u0002", - "\u0002\u0002\u022c\u021e\u0003\u0002\u0002\u0002\u022c\u0225\u0003\u0002", - "\u0002\u0002\u022d\u023c\u0003\u0002\u0002\u0002\u022e\u022f\f\u0005", - "\u0002\u0002\u022f\u0231\t\t\u0002\u0002\u0230\u0232\u0007\n\u0002\u0002", - "\u0231\u0230\u0003\u0002\u0002\u0002\u0231\u0232\u0003\u0002\u0002\u0002", - "\u0232\u0233\u0003\u0002\u0002\u0002\u0233\u0235\u0005T+\u0002\u0234", - "\u0236\u0005p9\u0002\u0235\u0234\u0003\u0002\u0002\u0002\u0235\u0236", - "\u0003\u0002\u0002\u0002\u0236\u0238\u0003\u0002\u0002\u0002\u0237\u0239", - "\u0005t;\u0002\u0238\u0237\u0003\u0002\u0002\u0002\u0238\u0239\u0003", - "\u0002\u0002\u0002\u0239\u023b\u0003\u0002\u0002\u0002\u023a\u022e\u0003", - "\u0002\u0002\u0002\u023b\u023e\u0003\u0002\u0002\u0002\u023c\u023a\u0003", - "\u0002\u0002\u0002\u023c\u023d\u0003\u0002\u0002\u0002\u023dU\u0003", - "\u0002\u0002\u0002\u023e\u023c\u0003\u0002\u0002\u0002\u023f\u0240\u0007", - "G\u0002\u0002\u0240\u0245\u0005\u0082B\u0002\u0241\u0242\u0007\u0123", - "\u0002\u0002\u0242\u0244\u0005\u0082B\u0002\u0243\u0241\u0003\u0002", - "\u0002\u0002\u0244\u0247\u0003\u0002\u0002\u0002\u0245\u0243\u0003\u0002", - "\u0002\u0002\u0245\u0246\u0003\u0002\u0002\u0002\u0246W\u0003\u0002", - "\u0002\u0002\u0247\u0245\u0003\u0002\u0002\u0002\u0248\u0249\u0005Z", - ".\u0002\u0249\u024b\u0005^0\u0002\u024a\u024c\u0005h5\u0002\u024b\u024a", - "\u0003\u0002\u0002\u0002\u024b\u024c\u0003\u0002\u0002\u0002\u024c\u024e", - "\u0003\u0002\u0002\u0002\u024d\u024f\u0005j6\u0002\u024e\u024d\u0003", + "\u0003\u0007\u0003\u0007\u0003\u0007\u0003\u0007\u0003\u0007\u0005\u0007", + "\u010b\n\u0007\u0003\b\u0003\b\u0005\b\u010f\n\b\u0003\t\u0003\t\u0003", + "\t\u0003\n\u0003\n\u0003\n\u0003\n\u0003\n\u0003\u000b\u0003\u000b\u0005", + "\u000b\u011b\n\u000b\u0003\u000b\u0003\u000b\u0003\f\u0003\f\u0003\f", + "\u0003\r\u0003\r\u0003\r\u0003\r\u0003\r\u0003\r\u0003\r\u0007\r\u0129", + "\n\r\f\r\u000e\r\u012c\u000b\r\u0003\r\u0003\r\u0005\r\u0130\n\r\u0003", + "\r\u0003\r\u0005\r\u0134\n\r\u0003\r\u0003\r\u0005\r\u0138\n\r\u0003", + "\r\u0003\r\u0005\r\u013c\n\r\u0003\r\u0005\r\u013f\n\r\u0003\r\u0003", + "\r\u0005\r\u0143\n\r\u0003\u000e\u0003\u000e\u0003\u000e\u0005\u000e", + "\u0148\n\u000e\u0003\u000e\u0005\u000e\u014b\n\u000e\u0003\u000f\u0003", + "\u000f\u0005\u000f\u014f\n\u000f\u0003\u0010\u0003\u0010\u0003\u0010", + "\u0007\u0010\u0154\n\u0010\f\u0010\u000e\u0010\u0157\u000b\u0010\u0003", + "\u0011\u0003\u0011\u0003\u0012\u0003\u0012\u0003\u0012\u0003\u0012\u0003", + "\u0013\u0003\u0013\u0003\u0013\u0003\u0014\u0003\u0014\u0003\u0014\u0003", + "\u0014\u0003\u0014\u0003\u0014\u0003\u0015\u0003\u0015\u0005\u0015\u016a", + "\n\u0015\u0003\u0015\u0003\u0015\u0003\u0015\u0003\u0015\u0003\u0015", + "\u0003\u0015\u0003\u0016\u0003\u0016\u0003\u0016\u0003\u0016\u0003\u0017", + "\u0003\u0017\u0003\u0017\u0003\u0017\u0003\u0018\u0003\u0018\u0003\u0018", + "\u0003\u0018\u0007\u0018\u017e\n\u0018\f\u0018\u000e\u0018\u0181\u000b", + "\u0018\u0003\u0018\u0003\u0018\u0003\u0019\u0003\u0019\u0003\u0019\u0003", + "\u0019\u0003\u0019\u0003\u0019\u0007\u0019\u018b\n\u0019\f\u0019\u000e", + "\u0019\u018e\u000b\u0019\u0003\u0019\u0003\u0019\u0005\u0019\u0192\n", + "\u0019\u0003\u001a\u0003\u001a\u0005\u001a\u0196\n\u001a\u0003\u001b", + "\u0003\u001b\u0003\u001b\u0003\u001b\u0003\u001c\u0003\u001c\u0003\u001c", + "\u0003\u001c\u0005\u001c\u01a0\n\u001c\u0003\u001d\u0003\u001d\u0003", + "\u001d\u0003\u001d\u0003\u001d\u0003\u001e\u0003\u001e\u0003\u001e\u0005", + "\u001e\u01aa\n\u001e\u0003\u001e\u0003\u001e\u0005\u001e\u01ae\n\u001e", + "\u0003\u001e\u0003\u001e\u0003\u001f\u0003\u001f\u0005\u001f\u01b4\n", + "\u001f\u0003\u001f\u0003\u001f\u0005\u001f\u01b8\n\u001f\u0003\u001f", + "\u0003\u001f\u0005\u001f\u01bc\n\u001f\u0003\u001f\u0005\u001f\u01bf", + "\n\u001f\u0003\u001f\u0003\u001f\u0003\u001f\u0003 \u0003 \u0003 \u0003", + " \u0005 \u01c8\n \u0003 \u0003 \u0005 \u01cc\n \u0003 \u0003 \u0003", + " \u0003 \u0003 \u0005 \u01d3\n \u0003!\u0003!\u0003!\u0003!\u0003!\u0005", + "!\u01da\n!\u0003\"\u0003\"\u0003\"\u0003\"\u0003#\u0003#\u0003#\u0003", + "$\u0003$\u0003$\u0003$\u0003$\u0003%\u0003%\u0003%\u0003%\u0005%\u01ec", + "\n%\u0003%\u0003%\u0005%\u01f0\n%\u0003%\u0003%\u0003%\u0003%\u0003", + "%\u0005%\u01f7\n%\u0003&\u0003&\u0003&\u0005&\u01fc\n&\u0003&\u0003", + "&\u0003\'\u0003\'\u0003\'\u0005\'\u0203\n\'\u0003\'\u0003\'\u0005\'", + "\u0207\n\'\u0003(\u0003(\u0005(\u020b\n(\u0003(\u0003(\u0005(\u020f", + "\n(\u0003(\u0003(\u0003)\u0003)\u0003)\u0003)\u0005)\u0217\n)\u0003", + ")\u0003)\u0005)\u021b\n)\u0003)\u0003)\u0003*\u0003*\u0003*\u0003*\u0005", + "*\u0223\n*\u0003*\u0003*\u0005*\u0227\n*\u0003+\u0003+\u0003+\u0003", + ",\u0003,\u0003,\u0003,\u0007,\u0230\n,\f,\u000e,\u0233\u000b,\u0003", + "-\u0003-\u0003-\u0003-\u0007-\u0239\n-\f-\u000e-\u023c\u000b-\u0003", + "-\u0003-\u0003.\u0003.\u0003.\u0003.\u0003.\u0003.\u0003.\u0003.\u0005", + ".\u0248\n.\u0003.\u0005.\u024b\n.\u0003.\u0003.\u0005.\u024f\n.\u0003", + ".\u0005.\u0252\n.\u0005.\u0254\n.\u0003.\u0003.\u0003.\u0005.\u0259", + "\n.\u0003.\u0003.\u0005.\u025d\n.\u0003.\u0005.\u0260\n.\u0007.\u0262", + "\n.\f.\u000e.\u0265\u000b.\u0003/\u0003/\u0003/\u0003/\u0007/\u026b", + "\n/\f/\u000e/\u026e\u000b/\u00030\u00030\u00030\u00050\u0273\n0\u0003", + "0\u00050\u0276\n0\u00030\u00050\u0279\n0\u00030\u00050\u027c\n0\u0003", + "1\u00031\u00051\u0280\n1\u00031\u00031\u00031\u00031\u00071\u0286\n", + "1\f1\u000e1\u0289\u000b1\u00051\u028b\n1\u00032\u00032\u00052\u028f", + "\n2\u00032\u00052\u0292\n2\u00033\u00033\u00033\u00034\u00034\u0003", + "4\u00034\u00074\u029b\n4\f4\u000e4\u029e\u000b4\u00034\u00034\u0005", + "4\u02a2\n4\u00034\u00054\u02a5\n4\u00034\u00034\u00034\u00054\u02aa", + "\n4\u00074\u02ac\n4\f4\u000e4\u02af\u000b4\u00035\u00035\u00055\u02b3", + "\n5\u00036\u00056\u02b6\n6\u00036\u00036\u00036\u00036\u00036\u0003", + "6\u00036\u00036\u00036\u00076\u02c1\n6\f6\u000e6\u02c4\u000b6\u0003", + "6\u00036\u00036\u00036\u00036\u00036\u00036\u00036\u00056\u02ce\n6\u0003", + "7\u00037\u00037\u00037\u00037\u00037\u00037\u00077\u02d7\n7\f7\u000e", + "7\u02da\u000b7\u00037\u00037\u00057\u02de\n7\u00038\u00038\u00038\u0003", + "9\u00039\u00039\u00039\u00039\u00079\u02e8\n9\f9\u000e9\u02eb\u000b", + "9\u0003:\u0003:\u0003:\u0003:\u0003:\u0003:\u0003:\u0007:\u02f4\n:\f", + ":\u000e:\u02f7\u000b:\u0003:\u0003:\u0003:\u0003:\u0003:\u0003:\u0003", + ":\u0007:\u0300\n:\f:\u000e:\u0303\u000b:\u0003:\u0003:\u0003:\u0003", + ":\u0003:\u0003:\u0003:\u0007:\u030c\n:\f:\u000e:\u030f\u000b:\u0003", + ":\u0003:\u0003:\u0003:\u0003:\u0003:\u0003:\u0003:\u0007:\u0319\n:\f", + ":\u000e:\u031c\u000b:\u0003:\u0003:\u0005:\u0320\n:\u0003;\u0003;\u0003", + ";\u0003<\u0003<\u0003<\u0003<\u0003<\u0007<\u032a\n<\f<\u000e<\u032d", + "\u000b<\u0003=\u0003=\u0005=\u0331\n=\u0003>\u0003>\u0003>\u0005>\u0336", + "\n>\u0003?\u0003?\u0003?\u0003?\u0007?\u033c\n?\f?\u000e?\u033f\u000b", + "?\u0003@\u0003@\u0003@\u0003@\u0003A\u0005A\u0346\nA\u0003A\u0003A\u0003", + "A\u0003A\u0003A\u0003A\u0007A\u034e\nA\fA\u000eA\u0351\u000bA\u0005", + "A\u0353\nA\u0003A\u0003A\u0003A\u0003A\u0003A\u0007A\u035a\nA\fA\u000e", + "A\u035d\u000bA\u0005A\u035f\nA\u0003A\u0005A\u0362\nA\u0003A\u0003A", + "\u0003B\u0003B\u0005B\u0368\nB\u0003B\u0003B\u0005B\u036c\nB\u0003C", + "\u0003C\u0003C\u0003C\u0005C\u0372\nC\u0003D\u0003D\u0003D\u0003E\u0003", + "E\u0003F\u0003F\u0003F\u0003F\u0003F\u0003F\u0003F\u0003F\u0003F\u0003", + "F\u0005F\u0383\nF\u0005F\u0385\nF\u0003F\u0003F\u0003F\u0003F\u0003", + "F\u0003F\u0007F\u038d\nF\fF\u000eF\u0390\u000bF\u0003G\u0005G\u0393", + "\nG\u0003G\u0003G\u0003G\u0003G\u0003G\u0003G\u0005G\u039b\nG\u0003", + "G\u0003G\u0003G\u0003G\u0003G\u0007G\u03a2\nG\fG\u000eG\u03a5\u000b", + "G\u0003G\u0003G\u0003G\u0005G\u03aa\nG\u0003G\u0003G\u0003G\u0003G\u0003", + "G\u0003G\u0003G\u0003G\u0003G\u0003G\u0003G\u0005G\u03b7\nG\u0003G\u0003", + "G\u0003G\u0005G\u03bc\nG\u0003G\u0003G\u0003G\u0003G\u0003G\u0003G\u0003", + "G\u0003G\u0007G\u03c6\nG\fG\u000eG\u03c9\u000bG\u0003G\u0003G\u0005", + "G\u03cd\nG\u0003G\u0005G\u03d0\nG\u0003G\u0003G\u0003G\u0003G\u0005", + "G\u03d6\nG\u0003G\u0003G\u0003G\u0005G\u03db\nG\u0003G\u0003G\u0003", + "G\u0005G\u03e0\nG\u0003G\u0003G\u0003G\u0005G\u03e5\nG\u0003H\u0003", + "H\u0003H\u0003H\u0005H\u03eb\nH\u0003H\u0003H\u0003H\u0003H\u0003H\u0003", + "H\u0003H\u0003H\u0003H\u0003H\u0003H\u0003H\u0003H\u0003H\u0003H\u0003", + "H\u0003H\u0003H\u0003H\u0007H\u0400\nH\fH\u000eH\u0403\u000bH\u0003", + "I\u0003I\u0003I\u0006I\u0408\nI\rI\u000eI\u0409\u0003I\u0003I\u0005", + "I\u040e\nI\u0003I\u0003I\u0003I\u0003I\u0003I\u0006I\u0415\nI\rI\u000e", + "I\u0416\u0003I\u0003I\u0005I\u041b\nI\u0003I\u0003I\u0003I\u0003I\u0003", + "I\u0003I\u0003I\u0003I\u0003I\u0003I\u0003I\u0003I\u0003I\u0003I\u0005", + "I\u042b\nI\u0003I\u0003I\u0003I\u0003I\u0003I\u0003I\u0003I\u0005I\u0434", + "\nI\u0003I\u0003I\u0003I\u0003I\u0003I\u0003I\u0003I\u0003I\u0003I\u0003", + "I\u0003I\u0003I\u0003I\u0003I\u0003I\u0003I\u0003I\u0003I\u0003I\u0003", + "I\u0003I\u0003I\u0005I\u044c\nI\u0003I\u0003I\u0003I\u0007I\u0451\n", + "I\fI\u000eI\u0454\u000bI\u0005I\u0456\nI\u0003I\u0003I\u0003I\u0003", + "I\u0003I\u0003I\u0003I\u0003I\u0005I\u0460\nI\u0003I\u0003I\u0003I\u0003", + "I\u0003I\u0007I\u0467\nI\fI\u000eI\u046a\u000bI\u0003J\u0003J\u0003", + "K\u0003K\u0003L\u0003L\u0005L\u0472\nL\u0003M\u0003M\u0003M\u0005M\u0477", + "\nM\u0003N\u0003N\u0005N\u047b\nN\u0003O\u0003O\u0003O\u0006O\u0480", + "\nO\rO\u000eO\u0481\u0003P\u0003P\u0003P\u0005P\u0487\nP\u0003Q\u0003", + "Q\u0003Q\u0003Q\u0003Q\u0003R\u0005R\u048f\nR\u0003R\u0003R\u0005R\u0493", + "\nR\u0003S\u0005S\u0496\nS\u0003S\u0003S\u0005S\u049a\nS\u0003T\u0005", + "T\u049d\nT\u0003T\u0003T\u0005T\u04a1\nT\u0003U\u0003U\u0003U\u0003", + "V\u0003V\u0006V\u04a8\nV\rV\u000eV\u04a9\u0003V\u0005V\u04ad\nV\u0003", + "W\u0003W\u0003W\u0003W\u0003X\u0003X\u0003X\u0007X\u04b6\nX\fX\u000e", + "X\u04b9\u000bX\u0003Y\u0003Y\u0003Z\u0003Z\u0005Z\u04bf\nZ\u0003[\u0003", + "[\u0003\\\u0003\\\u0003]\u0003]\u0003]\u0003]\u0003]\u0003^\u0003^\u0003", + "^\u0007^\u04cd\n^\f^\u000e^\u04d0\u000b^\u0003_\u0003_\u0007_\u04d4", + "\n_\f_\u000e_\u04d7\u000b_\u0003`\u0003`\u0007`\u04db\n`\f`\u000e`\u04de", + "\u000b`\u0003a\u0003a\u0003a\u0003b\u0003b\u0003b\u0003b\u0003c\u0003", + "c\u0003c\u0003d\u0003d\u0003d\u0003d\u0007d\u04ee\nd\fd\u000ed\u04f1", + "\u000bd\u0003d\u0003d\u0003e\u0003e\u0005e\u04f7\ne\u0003e\u0005e\u04fa", + "\ne\u0003f\u0003f\u0003f\u0005f\u04ff\nf\u0003g\u0003g\u0003g\u0003", + "g\u0005g\u0505\ng\u0003h\u0003h\u0003h\u0003h\u0003h\u0003h\u0005h\u050d", + "\nh\u0003i\u0003i\u0003i\u0003i\u0003i\u0003i\u0003i\u0003i\u0003i\u0003", + "i\u0003i\u0003i\u0003i\u0003i\u0005i\u051d\ni\u0003j\u0003j\u0003j\u0003", + "j\u0003j\u0003j\u0003j\u0005j\u0526\nj\u0003k\u0003k\u0003l\u0003l\u0003", + "m\u0003m\u0003n\u0003n\u0003n\u0003n\u0003n\u0003n\u0003n\u0003n\u0003", + "n\u0005n\u0537\nn\u0003n\u0005n\u053a\nn\u0003o\u0003o\u0003p\u0003", + "p\u0003q\u0003q\u0003r\u0003r\u0003r\u0004\u04d5\u04dc\u0007Zf\u008a", + "\u008e\u0090s\u0002\u0004\u0006\b\n\f\u000e\u0010\u0012\u0014\u0016", + "\u0018\u001a\u001c\u001e \"$&(*,.02468:<>@BDFHJLNPRTVXZ\\^`bdfhjlnp", + "rtvxz|~\u0080\u0082\u0084\u0086\u0088\u008a\u008c\u008e\u0090\u0092", + "\u0094\u0096\u0098\u009a\u009c\u009e\u00a0\u00a2\u00a4\u00a6\u00a8\u00aa", + "\u00ac\u00ae\u00b0\u00b2\u00b4\u00b6\u00b8\u00ba\u00bc\u00be\u00c0\u00c2", + "\u00c4\u00c6\u00c8\u00ca\u00cc\u00ce\u00d0\u00d2\u00d4\u00d6\u00d8\u00da", + "\u00dc\u00de\u00e0\u00e2\u0002\u001a\u0006\u0002XX]]\u00c8\u00c8\u00fe", + "\u00ff\u0003\u0002\u0104\u011b\u0003\u0002\u00f7\u00f8\u0004\u0002\n", + "\n\u00f9\u00f9\u0004\u0002\u00ae\u00ae\u00fb\u00fb\u0004\u0002\u00bf", + "\u00bf\u00c1\u00c1\u0004\u0002OO\u0093\u0093\u0004\u0002_`bb\u0004\u0002", + "2245\u0003\u0002%&\u0004\u0002CCEE\u0003\u0002\n\u000b\u0003\u0002\"", + "#\u0004\u0002\u0120\u0120\u0132\u0133\u0006\u0002\u0086\u0086\u0130", + "\u0130\u0134\u0134\u0137\u0137\u0004\u0002\u0132\u0133\u0135\u0135\u0003", + "\u0002\u0132\u0133\u0003\u0002\u013b\u013c\u0004\u0002\u013b\u013b\u013e", + "\u013e\u0003\u0002\u013e\u013f\u0003\u0002\u0138\u0139\u0006\u0002\u0086", + "\u0086\u0130\u0130\u0132\u0134\u0136\u0137\u0005\u0002\u001b\u001b\u011f", + "\u0120\u0132\u0133\u0004\u0002\n\n\f\f\u0002\u05b3\u0002\u00e4\u0003", + "\u0002\u0002\u0002\u0004\u00e7\u0003\u0002\u0002\u0002\u0006\u00f1\u0003", + "\u0002\u0002\u0002\b\u00fa\u0003\u0002\u0002\u0002\n\u00fc\u0003\u0002", + "\u0002\u0002\f\u010a\u0003\u0002\u0002\u0002\u000e\u010e\u0003\u0002", + "\u0002\u0002\u0010\u0110\u0003\u0002\u0002\u0002\u0012\u0113\u0003\u0002", + "\u0002\u0002\u0014\u0118\u0003\u0002\u0002\u0002\u0016\u011e\u0003\u0002", + "\u0002\u0002\u0018\u0121\u0003\u0002\u0002\u0002\u001a\u0144\u0003\u0002", + "\u0002\u0002\u001c\u014e\u0003\u0002\u0002\u0002\u001e\u0150\u0003\u0002", + "\u0002\u0002 \u0158\u0003\u0002\u0002\u0002\"\u015a\u0003\u0002\u0002", + "\u0002$\u015e\u0003\u0002\u0002\u0002&\u0161\u0003\u0002\u0002\u0002", + "(\u0169\u0003\u0002\u0002\u0002*\u0171\u0003\u0002\u0002\u0002,\u0175", + "\u0003\u0002\u0002\u0002.\u0179\u0003\u0002\u0002\u00020\u0191\u0003", + "\u0002\u0002\u00022\u0195\u0003\u0002\u0002\u00024\u0197\u0003\u0002", + "\u0002\u00026\u019f\u0003\u0002\u0002\u00028\u01a1\u0003\u0002\u0002", + "\u0002:\u01a6\u0003\u0002\u0002\u0002<\u01b1\u0003\u0002\u0002\u0002", + ">\u01c3\u0003\u0002\u0002\u0002@\u01d4\u0003\u0002\u0002\u0002B\u01db", + "\u0003\u0002\u0002\u0002D\u01df\u0003\u0002\u0002\u0002F\u01e2\u0003", + "\u0002\u0002\u0002H\u01e7\u0003\u0002\u0002\u0002J\u01f8\u0003\u0002", + "\u0002\u0002L\u01ff\u0003\u0002\u0002\u0002N\u0208\u0003\u0002\u0002", + "\u0002P\u0212\u0003\u0002\u0002\u0002R\u021e\u0003\u0002\u0002\u0002", + "T\u0228\u0003\u0002\u0002\u0002V\u022b\u0003\u0002\u0002\u0002X\u0234", + "\u0003\u0002\u0002\u0002Z\u0253\u0003\u0002\u0002\u0002\\\u0266\u0003", + "\u0002\u0002\u0002^\u026f\u0003\u0002\u0002\u0002`\u027d\u0003\u0002", + "\u0002\u0002b\u028c\u0003\u0002\u0002\u0002d\u0293\u0003\u0002\u0002", + "\u0002f\u0296\u0003\u0002\u0002\u0002h\u02b0\u0003\u0002\u0002\u0002", + "j\u02cd\u0003\u0002\u0002\u0002l\u02dd\u0003\u0002\u0002\u0002n\u02df", + "\u0003\u0002\u0002\u0002p\u02e2\u0003\u0002\u0002\u0002r\u031f\u0003", + "\u0002\u0002\u0002t\u0321\u0003\u0002\u0002\u0002v\u0324\u0003\u0002", + "\u0002\u0002x\u032e\u0003\u0002\u0002\u0002z\u0332\u0003\u0002\u0002", + "\u0002|\u0337\u0003\u0002\u0002\u0002~\u0340\u0003\u0002\u0002\u0002", + "\u0080\u0345\u0003\u0002\u0002\u0002\u0082\u0365\u0003\u0002\u0002\u0002", + "\u0084\u0371\u0003\u0002\u0002\u0002\u0086\u0373\u0003\u0002\u0002\u0002", + "\u0088\u0376\u0003\u0002\u0002\u0002\u008a\u0384\u0003\u0002\u0002\u0002", + "\u008c\u03e4\u0003\u0002\u0002\u0002\u008e\u03ea\u0003\u0002\u0002\u0002", + "\u0090\u045f\u0003\u0002\u0002\u0002\u0092\u046b\u0003\u0002\u0002\u0002", + "\u0094\u046d\u0003\u0002\u0002\u0002\u0096\u0471\u0003\u0002\u0002\u0002", + "\u0098\u0473\u0003\u0002\u0002\u0002\u009a\u0478\u0003\u0002\u0002\u0002", + "\u009c\u047f\u0003\u0002\u0002\u0002\u009e\u0483\u0003\u0002\u0002\u0002", + "\u00a0\u0488\u0003\u0002\u0002\u0002\u00a2\u0492\u0003\u0002\u0002\u0002", + "\u00a4\u0495\u0003\u0002\u0002\u0002\u00a6\u049c\u0003\u0002\u0002\u0002", + "\u00a8\u04a2\u0003\u0002\u0002\u0002\u00aa\u04ac\u0003\u0002\u0002\u0002", + "\u00ac\u04ae\u0003\u0002\u0002\u0002\u00ae\u04b2\u0003\u0002\u0002\u0002", + "\u00b0\u04ba\u0003\u0002\u0002\u0002\u00b2\u04be\u0003\u0002\u0002\u0002", + "\u00b4\u04c0\u0003\u0002\u0002\u0002\u00b6\u04c2\u0003\u0002\u0002\u0002", + "\u00b8\u04c4\u0003\u0002\u0002\u0002\u00ba\u04c9\u0003\u0002\u0002\u0002", + "\u00bc\u04d1\u0003\u0002\u0002\u0002\u00be\u04d8\u0003\u0002\u0002\u0002", + "\u00c0\u04df\u0003\u0002\u0002\u0002\u00c2\u04e2\u0003\u0002\u0002\u0002", + "\u00c4\u04e6\u0003\u0002\u0002\u0002\u00c6\u04e9\u0003\u0002\u0002\u0002", + "\u00c8\u04f4\u0003\u0002\u0002\u0002\u00ca\u04fe\u0003\u0002\u0002\u0002", + "\u00cc\u0504\u0003\u0002\u0002\u0002\u00ce\u050c\u0003\u0002\u0002\u0002", + "\u00d0\u051c\u0003\u0002\u0002\u0002\u00d2\u0525\u0003\u0002\u0002\u0002", + "\u00d4\u0527\u0003\u0002\u0002\u0002\u00d6\u0529\u0003\u0002\u0002\u0002", + "\u00d8\u052b\u0003\u0002\u0002\u0002\u00da\u0539\u0003\u0002\u0002\u0002", + "\u00dc\u053b\u0003\u0002\u0002\u0002\u00de\u053d\u0003\u0002\u0002\u0002", + "\u00e0\u053f\u0003\u0002\u0002\u0002\u00e2\u0541\u0003\u0002\u0002\u0002", + "\u00e4\u00e5\u0005\u0004\u0003\u0002\u00e5\u00e6\u0007\u0002\u0002\u0003", + "\u00e6\u0003\u0003\u0002\u0002\u0002\u00e7\u00e8\u0005\u0006\u0004\u0002", + "\u00e8\u00e9\u0007\u0002\u0002\u0003\u00e9\u0005\u0003\u0002\u0002\u0002", + "\u00ea\u00ec\u0005\b\u0005\u0002\u00eb\u00ed\u0007\u012a\u0002\u0002", + "\u00ec\u00eb\u0003\u0002\u0002\u0002\u00ec\u00ed\u0003\u0002\u0002\u0002", + "\u00ed\u00f0\u0003\u0002\u0002\u0002\u00ee\u00f0\u0005\n\u0006\u0002", + "\u00ef\u00ea\u0003\u0002\u0002\u0002\u00ef\u00ee\u0003\u0002\u0002\u0002", + "\u00f0\u00f3\u0003\u0002\u0002\u0002\u00f1\u00ef\u0003\u0002\u0002\u0002", + "\u00f1\u00f2\u0003\u0002\u0002\u0002\u00f2\u0007\u0003\u0002\u0002\u0002", + "\u00f3\u00f1\u0003\u0002\u0002\u0002\u00f4\u00fb\u0005\f\u0007\u0002", + "\u00f5\u00fb\u0005\u000e\b\u0002\u00f6\u00fb\u0005\u0010\t\u0002\u00f7", + "\u00fb\u0005\u0012\n\u0002\u00f8\u00fb\u0005\u0014\u000b\u0002\u00f9", + "\u00fb\u0005\u0016\f\u0002\u00fa\u00f4\u0003\u0002\u0002\u0002\u00fa", + "\u00f5\u0003\u0002\u0002\u0002\u00fa\u00f6\u0003\u0002\u0002\u0002\u00fa", + "\u00f7\u0003\u0002\u0002\u0002\u00fa\u00f8\u0003\u0002\u0002\u0002\u00fa", + "\u00f9\u0003\u0002\u0002\u0002\u00fb\t\u0003\u0002\u0002\u0002\u00fc", + "\u00fd\u0007\u012a\u0002\u0002\u00fd\u000b\u0003\u0002\u0002\u0002\u00fe", + "\u010b\u0005\u0018\r\u0002\u00ff\u010b\u0005:\u001e\u0002\u0100\u010b", + "\u0005<\u001f\u0002\u0101\u010b\u0005> \u0002\u0102\u010b\u00058\u001d", + "\u0002\u0103\u010b\u0005@!\u0002\u0104\u010b\u0005F$\u0002\u0105\u010b", + "\u0005H%\u0002\u0106\u010b\u0005J&\u0002\u0107\u010b\u0005L\'\u0002", + "\u0108\u010b\u0005N(\u0002\u0109\u010b\u0005P)\u0002\u010a\u00fe\u0003", + "\u0002\u0002\u0002\u010a\u00ff\u0003\u0002\u0002\u0002\u010a\u0100\u0003", + "\u0002\u0002\u0002\u010a\u0101\u0003\u0002\u0002\u0002\u010a\u0102\u0003", + "\u0002\u0002\u0002\u010a\u0103\u0003\u0002\u0002\u0002\u010a\u0104\u0003", + "\u0002\u0002\u0002\u010a\u0105\u0003\u0002\u0002\u0002\u010a\u0106\u0003", + "\u0002\u0002\u0002\u010a\u0107\u0003\u0002\u0002\u0002\u010a\u0108\u0003", + "\u0002\u0002\u0002\u010a\u0109\u0003\u0002\u0002\u0002\u010b\r\u0003", + "\u0002\u0002\u0002\u010c\u010f\u0005Z.\u0002\u010d\u010f\u0005R*\u0002", + "\u010e\u010c\u0003\u0002\u0002\u0002\u010e\u010d\u0003\u0002\u0002\u0002", + "\u010f\u000f\u0003\u0002\u0002\u0002\u0110\u0111\u0007P\u0002\u0002", + "\u0111\u0112\u0005\u00bc_\u0002\u0112\u0011\u0003\u0002\u0002\u0002", + "\u0113\u0114\u0007Q\u0002\u0002\u0114\u0115\u0005\u00b0Y\u0002\u0115", + "\u0116\u0007\'\u0002\u0002\u0116\u0117\u0005\u000e\b\u0002\u0117\u0013", + "\u0003\u0002\u0002\u0002\u0118\u011a\u0007[\u0002\u0002\u0119\u011b", + "\u0007\u00fc\u0002\u0002\u011a\u0119\u0003\u0002\u0002\u0002\u011a\u011b", + "\u0003\u0002\u0002\u0002\u011b\u011c\u0003\u0002\u0002\u0002\u011c\u011d", + "\u0005\u00bc_\u0002\u011d\u0015\u0003\u0002\u0002\u0002\u011e\u011f", + "\u0007W\u0002\u0002\u011f\u0120\t\u0002\u0002\u0002\u0120\u0017\u0003", + "\u0002\u0002\u0002\u0121\u0122\u0007H\u0002\u0002\u0122\u0123\u0007", + "I\u0002\u0002\u0123\u0124\u0005\u00bc_\u0002\u0124\u0125\u0007\u0127", + "\u0002\u0002\u0125\u012a\u0005\u001a\u000e\u0002\u0126\u0127\u0007\u0129", + "\u0002\u0002\u0127\u0129\u0005\u001a\u000e\u0002\u0128\u0126\u0003\u0002", + "\u0002\u0002\u0129\u012c\u0003\u0002\u0002\u0002\u012a\u0128\u0003\u0002", + "\u0002\u0002\u012a\u012b\u0003\u0002\u0002\u0002\u012b\u012f\u0003\u0002", + "\u0002\u0002\u012c\u012a\u0003\u0002\u0002\u0002\u012d\u012e\u0007\u0129", + "\u0002\u0002\u012e\u0130\u0005&\u0014\u0002\u012f\u012d\u0003\u0002", + "\u0002\u0002\u012f\u0130\u0003\u0002\u0002\u0002\u0130\u0133\u0003\u0002", + "\u0002\u0002\u0131\u0132\u0007\u0129\u0002\u0002\u0132\u0134\u0005(", + "\u0015\u0002\u0133\u0131\u0003\u0002\u0002\u0002\u0133\u0134\u0003\u0002", + "\u0002\u0002\u0134\u0137\u0003\u0002\u0002\u0002\u0135\u0136\u0007\u0129", + "\u0002\u0002\u0136\u0138\u0005*\u0016\u0002\u0137\u0135\u0003\u0002", + "\u0002\u0002\u0137\u0138\u0003\u0002\u0002\u0002\u0138\u0139\u0003\u0002", + "\u0002\u0002\u0139\u013b\u0007\u0128\u0002\u0002\u013a\u013c\u0005$", + "\u0013\u0002\u013b\u013a\u0003\u0002\u0002\u0002\u013b\u013c\u0003\u0002", + "\u0002\u0002\u013c\u013e\u0003\u0002\u0002\u0002\u013d\u013f\u0005,", + "\u0017\u0002\u013e\u013d\u0003\u0002\u0002\u0002\u013e\u013f\u0003\u0002", + "\u0002\u0002\u013f\u0140\u0003\u0002\u0002\u0002\u0140\u0142\u0005\u00c0", + "a\u0002\u0141\u0143\u00054\u001b\u0002\u0142\u0141\u0003\u0002\u0002", + "\u0002\u0142\u0143\u0003\u0002\u0002\u0002\u0143\u0019\u0003\u0002\u0002", + "\u0002\u0144\u0145\u0005\u001c\u000f\u0002\u0145\u0147\u0005 \u0011", + "\u0002\u0146\u0148\u0005\"\u0012\u0002\u0147\u0146\u0003\u0002\u0002", + "\u0002\u0147\u0148\u0003\u0002\u0002\u0002\u0148\u014a\u0003\u0002\u0002", + "\u0002\u0149\u014b\u0005\u00a4S\u0002\u014a\u0149\u0003\u0002\u0002", + "\u0002\u014a\u014b\u0003\u0002\u0002\u0002\u014b\u001b\u0003\u0002\u0002", + "\u0002\u014c\u014f\u0005\u00be`\u0002\u014d\u014f\u0005\u0088E\u0002", + "\u014e\u014c\u0003\u0002\u0002\u0002\u014e\u014d\u0003\u0002\u0002\u0002", + "\u014f\u001d\u0003\u0002\u0002\u0002\u0150\u0155\u0005\u001c\u000f\u0002", + "\u0151\u0152\u0007\u0129\u0002\u0002\u0152\u0154\u0005\u001c\u000f\u0002", + "\u0153\u0151\u0003\u0002\u0002\u0002\u0154\u0157\u0003\u0002\u0002\u0002", + "\u0155\u0153\u0003\u0002\u0002\u0002\u0155\u0156\u0003\u0002\u0002\u0002", + "\u0156\u001f\u0003\u0002\u0002\u0002\u0157\u0155\u0003\u0002\u0002\u0002", + "\u0158\u0159\t\u0003\u0002\u0002\u0159!\u0003\u0002\u0002\u0002\u015a", + "\u015b\u0007\u0127\u0002\u0002\u015b\u015c\u0005\u00dep\u0002\u015c", + "\u015d\u0007\u0128\u0002\u0002\u015d#\u0003\u0002\u0002\u0002\u015e", + "\u015f\u0007i\u0002\u0002\u015f\u0160\u0007\u013a\u0002\u0002\u0160", + "%\u0003\u0002\u0002\u0002\u0161\u0162\u0007\u00e8\u0002\u0002\u0162", + "\u0163\u0007\'\u0002\u0002\u0163\u0164\u0005\u0088E\u0002\u0164\u0165", + "\u0007\t\u0002\u0002\u0165\u0166\u0005\u0088E\u0002\u0166\'\u0003\u0002", + "\u0002\u0002\u0167\u0168\u0007\u00c0\u0002\u0002\u0168\u016a\u0005\u00b0", + "Y\u0002\u0169\u0167\u0003\u0002\u0002\u0002\u0169\u016a\u0003\u0002", + "\u0002\u0002\u016a\u016b\u0003\u0002\u0002\u0002\u016b\u016c\u0007\u0100", + "\u0002\u0002\u016c\u016d\u0007\u0101\u0002\u0002\u016d\u016e\u0007\u0127", + "\u0002\u0002\u016e\u016f\u0005\u001e\u0010\u0002\u016f\u0170\u0007\u0128", + "\u0002\u0002\u0170)\u0003\u0002\u0002\u0002\u0171\u0172\u0007\u0102", + "\u0002\u0002\u0172\u0173\u0007\'\u0002\u0002\u0173\u0174\u0007\u0103", + "\u0002\u0002\u0174+\u0003\u0002\u0002\u0002\u0175\u0176\u0007\u00cf", + "\u0002\u0002\u0176\u0177\u0007\u000f\u0002\u0002\u0177\u0178\u0005.", + "\u0018\u0002\u0178-\u0003\u0002\u0002\u0002\u0179\u017a\u0007\u0127", + "\u0002\u0002\u017a\u017f\u00050\u0019\u0002\u017b\u017c\u0007\u0129", + "\u0002\u0002\u017c\u017e\u00050\u0019\u0002\u017d\u017b\u0003\u0002", + "\u0002\u0002\u017e\u0181\u0003\u0002\u0002\u0002\u017f\u017d\u0003\u0002", + "\u0002\u0002\u017f\u0180\u0003\u0002\u0002\u0002\u0180\u0182\u0003\u0002", + "\u0002\u0002\u0181\u017f\u0003\u0002\u0002\u0002\u0182\u0183\u0007\u0128", + "\u0002\u0002\u0183/\u0003\u0002\u0002\u0002\u0184\u0192\u0005\u0096", + "L\u0002\u0185\u0186\u0005\u00b0Y\u0002\u0186\u0187\u0007\u0127\u0002", + "\u0002\u0187\u018c\u00052\u001a\u0002\u0188\u0189\u0007\u0129\u0002", + "\u0002\u0189\u018b\u00052\u001a\u0002\u018a\u0188\u0003\u0002\u0002", + "\u0002\u018b\u018e\u0003\u0002\u0002\u0002\u018c\u018a\u0003\u0002\u0002", + "\u0002\u018c\u018d\u0003\u0002\u0002\u0002\u018d\u018f\u0003\u0002\u0002", + "\u0002\u018e\u018c\u0003\u0002\u0002\u0002\u018f\u0190\u0007\u0128\u0002", + "\u0002\u0190\u0192\u0003\u0002\u0002\u0002\u0191\u0184\u0003\u0002\u0002", + "\u0002\u0191\u0185\u0003\u0002\u0002\u0002\u01921\u0003\u0002\u0002", + "\u0002\u0193\u0196\u0005\u0096L\u0002\u0194\u0196\u0005\u00dan\u0002", + "\u0195\u0193\u0003\u0002\u0002\u0002\u0195\u0194\u0003\u0002\u0002\u0002", + "\u01963\u0003\u0002\u0002\u0002\u0197\u0198\u0007\u001f\u0002\u0002", + "\u0198\u0199\u0005\u00b0Y\u0002\u0199\u019a\u00056\u001c\u0002\u019a", + "5\u0003\u0002\u0002\u0002\u019b\u019c\t\u0004\u0002\u0002\u019c\u01a0", + "\t\u0005\u0002\u0002\u019d\u019e\t\u0004\u0002\u0002\u019e\u01a0\t\u0006", + "\u0002\u0002\u019f\u019b\u0003\u0002\u0002\u0002\u019f\u019d\u0003\u0002", + "\u0002\u0002\u01a07\u0003\u0002\u0002\u0002\u01a1\u01a2\u0007H\u0002", + "\u0002\u01a2\u01a3\u0007\u00fc\u0002\u0002\u01a3\u01a4\u0005\u00bc_", + "\u0002\u01a4\u01a5\u0005\u00c0a\u0002\u01a59\u0003\u0002\u0002\u0002", + "\u01a6\u01a7\u0007H\u0002\u0002\u01a7\u01a9\u0007\u00c7\u0002\u0002", + "\u01a8\u01aa\u0005\u00c2b\u0002\u01a9\u01a8\u0003\u0002\u0002\u0002", + "\u01a9\u01aa\u0003\u0002\u0002\u0002\u01aa\u01ab\u0003\u0002\u0002\u0002", + "\u01ab\u01ad\u0005\u00bc_\u0002\u01ac\u01ae\u0005$\u0013\u0002\u01ad", + "\u01ac\u0003\u0002\u0002\u0002\u01ad\u01ae\u0003\u0002\u0002\u0002\u01ae", + "\u01af\u0003\u0002\u0002\u0002\u01af\u01b0\u0005\u00c0a\u0002\u01b0", + ";\u0003\u0002\u0002\u0002\u01b1\u01b3\u0007H\u0002\u0002\u01b2\u01b4", + "\u0007\u00ad\u0002\u0002\u01b3\u01b2\u0003\u0002\u0002\u0002\u01b3\u01b4", + "\u0003\u0002\u0002\u0002\u01b4\u01b5\u0003\u0002\u0002\u0002\u01b5\u01b7", + "\u0007K\u0002\u0002\u01b6\u01b8\u0005\u00c2b\u0002\u01b7\u01b6\u0003", + "\u0002\u0002\u0002\u01b7\u01b8\u0003\u0002\u0002\u0002\u01b8\u01b9\u0003", + "\u0002\u0002\u0002\u01b9\u01bb\u0005\u00bc_\u0002\u01ba\u01bc\u0005", + "\u001e\u0010\u0002\u01bb\u01ba\u0003\u0002\u0002\u0002\u01bb\u01bc\u0003", + "\u0002\u0002\u0002\u01bc\u01be\u0003\u0002\u0002\u0002\u01bd\u01bf\u0005", + "$\u0013\u0002\u01be\u01bd\u0003\u0002\u0002\u0002\u01be\u01bf\u0003", + "\u0002\u0002\u0002\u01bf\u01c0\u0003\u0002\u0002\u0002\u01c0\u01c1\u0007", + "\t\u0002\u0002\u01c1\u01c2\u0005Z.\u0002\u01c2=\u0003\u0002\u0002\u0002", + "\u01c3\u01c7\u0007H\u0002\u0002\u01c4\u01c8\u0007\u00ad\u0002\u0002", + "\u01c5\u01c6\u0007\u00ad\u0002\u0002\u01c6\u01c8\u0007\u00f6\u0002\u0002", + "\u01c7\u01c4\u0003\u0002\u0002\u0002\u01c7\u01c5\u0003\u0002\u0002\u0002", + "\u01c8\u01c9\u0003\u0002\u0002\u0002\u01c9\u01cb\u0007\u00a4\u0002\u0002", + "\u01ca\u01cc\u0005\u00c2b\u0002\u01cb\u01ca\u0003\u0002\u0002\u0002", + "\u01cb\u01cc\u0003\u0002\u0002\u0002\u01cc\u01cd\u0003\u0002\u0002\u0002", + "\u01cd\u01ce\u0005\u00bc_\u0002\u01ce\u01cf\u0007\t\u0002\u0002\u01cf", + "\u01d2\u0005\u00b0Y\u0002\u01d0\u01d1\u0007\u00fd\u0002\u0002\u01d1", + "\u01d3\u0005\u00b0Y\u0002\u01d2\u01d0\u0003\u0002\u0002\u0002\u01d2", + "\u01d3\u0003\u0002\u0002\u0002\u01d3?\u0003\u0002\u0002\u0002\u01d4", + "\u01d5\u0007f\u0002\u0002\u01d5\u01d6\u0007I\u0002\u0002\u01d6\u01d9", + "\u0005\u00bc_\u0002\u01d7\u01da\u0005B\"\u0002\u01d8\u01da\u0005D#\u0002", + "\u01d9\u01d7\u0003\u0002\u0002\u0002\u01d9\u01d8\u0003\u0002\u0002\u0002", + "\u01daA\u0003\u0002\u0002\u0002\u01db\u01dc\u0007g\u0002\u0002\u01dc", + "\u01dd\u0007c\u0002\u0002\u01dd\u01de\u0005\u00bc_\u0002\u01deC\u0003", + "\u0002\u0002\u0002\u01df\u01e0\u0007j\u0002\u0002\u01e0\u01e1\u0005", + "\u00c6d\u0002\u01e1E\u0003\u0002\u0002\u0002\u01e2\u01e3\u0007f\u0002", + "\u0002\u01e3\u01e4\u0007\u00c7\u0002\u0002\u01e4\u01e5\u0005\u00bc_", + "\u0002\u01e5\u01e6\u0005D#\u0002\u01e6G\u0003\u0002\u0002\u0002\u01e7", + "\u01eb\u0007f\u0002\u0002\u01e8\u01ec\u0007\u00ad\u0002\u0002\u01e9", + "\u01ea\u0007\u00ad\u0002\u0002\u01ea\u01ec\u0007\u00f6\u0002\u0002\u01eb", + "\u01e8\u0003\u0002\u0002\u0002\u01eb\u01e9\u0003\u0002\u0002\u0002\u01ec", + "\u01ed\u0003\u0002\u0002\u0002\u01ed\u01ef\u0007\u00a4\u0002\u0002\u01ee", + "\u01f0\u0005\u00c4c\u0002\u01ef\u01ee\u0003\u0002\u0002\u0002\u01ef", + "\u01f0\u0003\u0002\u0002\u0002\u01f0\u01f1\u0003\u0002\u0002\u0002\u01f1", + "\u01f2\u0005\u00bc_\u0002\u01f2\u01f3\u0007\t\u0002\u0002\u01f3\u01f6", + "\u0005\u00b0Y\u0002\u01f4\u01f5\u0007\u00fd\u0002\u0002\u01f5\u01f7", + "\u0005\u00b0Y\u0002\u01f6\u01f4\u0003\u0002\u0002\u0002\u01f6\u01f7", + "\u0003\u0002\u0002\u0002\u01f7I\u0003\u0002\u0002\u0002\u01f8\u01f9", + "\u0007^\u0002\u0002\u01f9\u01fb\u0007I\u0002\u0002\u01fa\u01fc\u0005", + "\u00c4c\u0002\u01fb\u01fa\u0003\u0002\u0002\u0002\u01fb\u01fc\u0003", + "\u0002\u0002\u0002\u01fc\u01fd\u0003\u0002\u0002\u0002\u01fd\u01fe\u0005", + "\u00bc_\u0002\u01feK\u0003\u0002\u0002\u0002\u01ff\u0200\u0007^\u0002", + "\u0002\u0200\u0202\u0007\u00c7\u0002\u0002\u0201\u0203\u0005\u00c4c", + "\u0002\u0202\u0201\u0003\u0002\u0002\u0002\u0202\u0203\u0003\u0002\u0002", + "\u0002\u0203\u0204\u0003\u0002\u0002\u0002\u0204\u0206\u0005\u00bc_", + "\u0002\u0205\u0207\t\u0007\u0002\u0002\u0206\u0205\u0003\u0002\u0002", + "\u0002\u0206\u0207\u0003\u0002\u0002\u0002\u0207M\u0003\u0002\u0002", + "\u0002\u0208\u020a\u0007^\u0002\u0002\u0209\u020b\u0007\u00ad\u0002", + "\u0002\u020a\u0209\u0003\u0002\u0002\u0002\u020a\u020b\u0003\u0002\u0002", + "\u0002\u020b\u020c\u0003\u0002\u0002\u0002\u020c\u020e\u0007K\u0002", + "\u0002\u020d\u020f\u0005\u00c4c\u0002\u020e\u020d\u0003\u0002\u0002", + "\u0002\u020e\u020f\u0003\u0002\u0002\u0002\u020f\u0210\u0003\u0002\u0002", + "\u0002\u0210\u0211\u0005\u00bc_\u0002\u0211O\u0003\u0002\u0002\u0002", + "\u0212\u0216\u0007^\u0002\u0002\u0213\u0217\u0007\u00ad\u0002\u0002", + "\u0214\u0215\u0007\u00ad\u0002\u0002\u0215\u0217\u0007\u00f6\u0002\u0002", + "\u0216\u0213\u0003\u0002\u0002\u0002\u0216\u0214\u0003\u0002\u0002\u0002", + "\u0216\u0217\u0003\u0002\u0002\u0002\u0217\u0218\u0003\u0002\u0002\u0002", + "\u0218\u021a\u0007\u00a4\u0002\u0002\u0219\u021b\u0005\u00c4c\u0002", + "\u021a\u0219\u0003\u0002\u0002\u0002\u021a\u021b\u0003\u0002\u0002\u0002", + "\u021b\u021c\u0003\u0002\u0002\u0002\u021c\u021d\u0005\u00bc_\u0002", + "\u021dQ\u0003\u0002\u0002\u0002\u021e\u021f\u0007M\u0002\u0002\u021f", + "\u0220\t\b\u0002\u0002\u0220\u0226\u0005\u00bc_\u0002\u0221\u0223\u0005", + "T+\u0002\u0222\u0221\u0003\u0002\u0002\u0002\u0222\u0223\u0003\u0002", + "\u0002\u0002\u0223\u0224\u0003\u0002\u0002\u0002\u0224\u0227\u0005Z", + ".\u0002\u0225\u0227\u0005V,\u0002\u0226\u0222\u0003\u0002\u0002\u0002", + "\u0226\u0225\u0003\u0002\u0002\u0002\u0227S\u0003\u0002\u0002\u0002", + "\u0228\u0229\u0007<\u0002\u0002\u0229\u022a\u0005\u00c6d\u0002\u022a", + "U\u0003\u0002\u0002\u0002\u022b\u022c\u0007G\u0002\u0002\u022c\u0231", + "\u0005X-\u0002\u022d\u022e\u0007\u0129\u0002\u0002\u022e\u0230\u0005", + "X-\u0002\u022f\u022d\u0003\u0002\u0002\u0002\u0230\u0233\u0003\u0002", + "\u0002\u0002\u0231\u022f\u0003\u0002\u0002\u0002\u0231\u0232\u0003\u0002", + "\u0002\u0002\u0232W\u0003\u0002\u0002\u0002\u0233\u0231\u0003\u0002", + "\u0002\u0002\u0234\u0235\u0007\u0127\u0002\u0002\u0235\u023a\u0005\u00da", + "n\u0002\u0236\u0237\u0007\u0129\u0002\u0002\u0237\u0239\u0005\u00da", + "n\u0002\u0238\u0236\u0003\u0002\u0002\u0002\u0239\u023c\u0003\u0002", + "\u0002\u0002\u023a\u0238\u0003\u0002\u0002\u0002\u023a\u023b\u0003\u0002", + "\u0002\u0002\u023b\u023d\u0003\u0002\u0002\u0002\u023c\u023a\u0003\u0002", + "\u0002\u0002\u023d\u023e\u0007\u0128\u0002\u0002\u023eY\u0003\u0002", + "\u0002\u0002\u023f\u0240\b.\u0001\u0002\u0240\u0254\u0005\\/\u0002\u0241", + "\u0242\u0007\u0127\u0002\u0002\u0242\u0243\u0005Z.\u0002\u0243\u0244", + "\u0007\u0128\u0002\u0002\u0244\u0254\u0003\u0002\u0002\u0002\u0245\u0247", + "\u0005`1\u0002\u0246\u0248\u0005v<\u0002\u0247\u0246\u0003\u0002\u0002", + "\u0002\u0247\u0248\u0003\u0002\u0002\u0002\u0248\u024a\u0003\u0002\u0002", + "\u0002\u0249\u024b\u0005z>\u0002\u024a\u0249\u0003\u0002\u0002\u0002", + "\u024a\u024b\u0003\u0002\u0002\u0002\u024b\u0254\u0003\u0002\u0002\u0002", + "\u024c\u024e\u0005^0\u0002\u024d\u024f\u0005v<\u0002\u024e\u024d\u0003", "\u0002\u0002\u0002\u024e\u024f\u0003\u0002\u0002\u0002\u024f\u0251\u0003", - "\u0002\u0002\u0002\u0250\u0252\u0005n8\u0002\u0251\u0250\u0003\u0002", + "\u0002\u0002\u0002\u0250\u0252\u0005z>\u0002\u0251\u0250\u0003\u0002", "\u0002\u0002\u0251\u0252\u0003\u0002\u0002\u0002\u0252\u0254\u0003\u0002", - "\u0002\u0002\u0253\u0255\u0005v<\u0002\u0254\u0253\u0003\u0002\u0002", - "\u0002\u0254\u0255\u0003\u0002\u0002\u0002\u0255Y\u0003\u0002\u0002", - "\u0002\u0256\u0258\u0007\u0006\u0002\u0002\u0257\u0259\u0005\u00d8m", - "\u0002\u0258\u0257\u0003\u0002\u0002\u0002\u0258\u0259\u0003\u0002\u0002", - "\u0002\u0259\u0263\u0003\u0002\u0002\u0002\u025a\u0264\u0007\u012a\u0002", - "\u0002\u025b\u0260\u0005\\/\u0002\u025c\u025d\u0007\u0123\u0002\u0002", - "\u025d\u025f\u0005\\/\u0002\u025e\u025c\u0003\u0002\u0002\u0002\u025f", - "\u0262\u0003\u0002\u0002\u0002\u0260\u025e\u0003\u0002\u0002\u0002\u0260", - "\u0261\u0003\u0002\u0002\u0002\u0261\u0264\u0003\u0002\u0002\u0002\u0262", - "\u0260\u0003\u0002\u0002\u0002\u0263\u025a\u0003\u0002\u0002\u0002\u0263", - "\u025b\u0003\u0002\u0002\u0002\u0264[\u0003\u0002\u0002\u0002\u0265", - "\u026a\u0005\u0082B\u0002\u0266\u0268\u0007\t\u0002\u0002\u0267\u0266", - "\u0003\u0002\u0002\u0002\u0267\u0268\u0003\u0002\u0002\u0002\u0268\u0269", - "\u0003\u0002\u0002\u0002\u0269\u026b\u0005\u00b4[\u0002\u026a\u0267", - "\u0003\u0002\u0002\u0002\u026a\u026b\u0003\u0002\u0002\u0002\u026b]", - "\u0003\u0002\u0002\u0002\u026c\u026d\u0007\u0007\u0002\u0002\u026d\u026e", - "\u0005`1\u0002\u026e_\u0003\u0002\u0002\u0002\u026f\u0270\b1\u0001\u0002", - "\u0270\u0275\u0005b2\u0002\u0271\u0272\u0007\u0123\u0002\u0002\u0272", - "\u0274\u0005b2\u0002\u0273\u0271\u0003\u0002\u0002\u0002\u0274\u0277", - "\u0003\u0002\u0002\u0002\u0275\u0273\u0003\u0002\u0002\u0002\u0275\u0276", - "\u0003\u0002\u0002\u0002\u0276\u0286\u0003\u0002\u0002\u0002\u0277\u0275", - "\u0003\u0002\u0002\u0002\u0278\u027a\f\u0003\u0002\u0002\u0279\u027b", - "\u00076\u0002\u0002\u027a\u0279\u0003\u0002\u0002\u0002\u027a\u027b", - "\u0003\u0002\u0002\u0002\u027b\u027d\u0003\u0002\u0002\u0002\u027c\u027e", - "\t\n\u0002\u0002\u027d\u027c\u0003\u0002\u0002\u0002\u027d\u027e\u0003", - "\u0002\u0002\u0002\u027e\u027f\u0003\u0002\u0002\u0002\u027f\u0280\u0007", - ".\u0002\u0002\u0280\u0282\u0005`1\u0002\u0281\u0283\u0005f4\u0002\u0282", - "\u0281\u0003\u0002\u0002\u0002\u0282\u0283\u0003\u0002\u0002\u0002\u0283", - "\u0285\u0003\u0002\u0002\u0002\u0284\u0278\u0003\u0002\u0002\u0002\u0285", - "\u0288\u0003\u0002\u0002\u0002\u0286\u0284\u0003\u0002\u0002\u0002\u0286", - "\u0287\u0003\u0002\u0002\u0002\u0287a\u0003\u0002\u0002\u0002\u0288", - "\u0286\u0003\u0002\u0002\u0002\u0289\u028b\u0005d3\u0002\u028a\u028c", - "\u0005\u009eP\u0002\u028b\u028a\u0003\u0002\u0002\u0002\u028b\u028c", - "\u0003\u0002\u0002\u0002\u028cc\u0003\u0002\u0002\u0002\u028d\u028f", - "\u0007I\u0002\u0002\u028e\u028d\u0003\u0002\u0002\u0002\u028e\u028f", - "\u0003\u0002\u0002\u0002\u028f\u0290\u0003\u0002\u0002\u0002\u0290\u02a7", - "\u0005\u0082B\u0002\u0291\u0292\u00079\u0002\u0002\u0292\u0293\u0007", - "I\u0002\u0002\u0293\u0294\u0007\u0121\u0002\u0002\u0294\u0295\u0005", - "\u00b4[\u0002\u0295\u0296\u0007\u0121\u0002\u0002\u0296\u029b\u0005", - "\u0082B\u0002\u0297\u0298\u0007\u0123\u0002\u0002\u0298\u029a\u0005", - "\u0082B\u0002\u0299\u0297\u0003\u0002\u0002\u0002\u029a\u029d\u0003", - "\u0002\u0002\u0002\u029b\u0299\u0003\u0002\u0002\u0002\u029b\u029c\u0003", - "\u0002\u0002\u0002\u029c\u029e\u0003\u0002\u0002\u0002\u029d\u029b\u0003", - "\u0002\u0002\u0002\u029e\u029f\u0007\u0122\u0002\u0002\u029f\u02a0\u0007", - "\u0122\u0002\u0002\u02a0\u02a7\u0003\u0002\u0002\u0002\u02a1\u02a2\u0007", - "\u00e8\u0002\u0002\u02a2\u02a3\u0007\u0121\u0002\u0002\u02a3\u02a4\u0005", - "\u0082B\u0002\u02a4\u02a5\u0007\u0122\u0002\u0002\u02a5\u02a7\u0003", - "\u0002\u0002\u0002\u02a6\u028e\u0003\u0002\u0002\u0002\u02a6\u0291\u0003", - "\u0002\u0002\u0002\u02a6\u02a1\u0003\u0002\u0002\u0002\u02a7e\u0003", - "\u0002\u0002\u0002\u02a8\u02a9\u00077\u0002\u0002\u02a9\u02b7\u0005", - "\u0084C\u0002\u02aa\u02ab\u0007\u0096\u0002\u0002\u02ab\u02ac\u0007", - "\u0121\u0002\u0002\u02ac\u02b1\u0005\u00b4[\u0002\u02ad\u02ae\u0007", - "\u0123\u0002\u0002\u02ae\u02b0\u0005\u00b4[\u0002\u02af\u02ad\u0003", - "\u0002\u0002\u0002\u02b0\u02b3\u0003\u0002\u0002\u0002\u02b1\u02af\u0003", - "\u0002\u0002\u0002\u02b1\u02b2\u0003\u0002\u0002\u0002\u02b2\u02b4\u0003", - "\u0002\u0002\u0002\u02b3\u02b1\u0003\u0002\u0002\u0002\u02b4\u02b5\u0007", - "\u0122\u0002\u0002\u02b5\u02b7\u0003\u0002\u0002\u0002\u02b6\u02a8\u0003", - "\u0002\u0002\u0002\u02b6\u02aa\u0003\u0002\u0002\u0002\u02b7g\u0003", - "\u0002\u0002\u0002\u02b8\u02b9\u0007\r\u0002\u0002\u02b9\u02ba\u0005", - "\u0084C\u0002\u02bai\u0003\u0002\u0002\u0002\u02bb\u02bc\u0007\u000e", - "\u0002\u0002\u02bc\u02bd\u0007\u000f\u0002\u0002\u02bd\u02c2\u0005l", - "7\u0002\u02be\u02bf\u0007\u0123\u0002\u0002\u02bf\u02c1\u0005l7\u0002", - "\u02c0\u02be\u0003\u0002\u0002\u0002\u02c1\u02c4\u0003\u0002\u0002\u0002", - "\u02c2\u02c0\u0003\u0002\u0002\u0002\u02c2\u02c3\u0003\u0002\u0002\u0002", - "\u02c3k\u0003\u0002\u0002\u0002\u02c4\u02c2\u0003\u0002\u0002\u0002", - "\u02c5\u02f9\u0005\u0082B\u0002\u02c6\u02c7\u0007\u0121\u0002\u0002", - "\u02c7\u02f9\u0007\u0122\u0002\u0002\u02c8\u02c9\u0007\u0121\u0002\u0002", - "\u02c9\u02ce\u0005\u0082B\u0002\u02ca\u02cb\u0007\u0123\u0002\u0002", - "\u02cb\u02cd\u0005\u0082B\u0002\u02cc\u02ca\u0003\u0002\u0002\u0002", - "\u02cd\u02d0\u0003\u0002\u0002\u0002\u02ce\u02cc\u0003\u0002\u0002\u0002", - "\u02ce\u02cf\u0003\u0002\u0002\u0002\u02cf\u02d1\u0003\u0002\u0002\u0002", - "\u02d0\u02ce\u0003\u0002\u0002\u0002\u02d1\u02d2\u0007\u0122\u0002\u0002", - "\u02d2\u02f9\u0003\u0002\u0002\u0002\u02d3\u02d4\u0007\u0012\u0002\u0002", - "\u02d4\u02d5\u0007\u0121\u0002\u0002\u02d5\u02da\u0005\u0082B\u0002", - "\u02d6\u02d7\u0007\u0123\u0002\u0002\u02d7\u02d9\u0005\u0082B\u0002", - "\u02d8\u02d6\u0003\u0002\u0002\u0002\u02d9\u02dc\u0003\u0002\u0002\u0002", - "\u02da\u02d8\u0003\u0002\u0002\u0002\u02da\u02db\u0003\u0002\u0002\u0002", - "\u02db\u02dd\u0003\u0002\u0002\u0002\u02dc\u02da\u0003\u0002\u0002\u0002", - "\u02dd\u02de\u0007\u0122\u0002\u0002\u02de\u02f9\u0003\u0002\u0002\u0002", - "\u02df\u02e0\u0007\u0013\u0002\u0002\u02e0\u02e1\u0007\u0121\u0002\u0002", - "\u02e1\u02e6\u0005\u0082B\u0002\u02e2\u02e3\u0007\u0123\u0002\u0002", - "\u02e3\u02e5\u0005\u0082B\u0002\u02e4\u02e2\u0003\u0002\u0002\u0002", - "\u02e5\u02e8\u0003\u0002\u0002\u0002\u02e6\u02e4\u0003\u0002\u0002\u0002", - "\u02e6\u02e7\u0003\u0002\u0002\u0002\u02e7\u02e9\u0003\u0002\u0002\u0002", - "\u02e8\u02e6\u0003\u0002\u0002\u0002\u02e9\u02ea\u0007\u0122\u0002\u0002", - "\u02ea\u02f9\u0003\u0002\u0002\u0002\u02eb\u02ec\u0007\u0010\u0002\u0002", - "\u02ec\u02ed\u0007\u0011\u0002\u0002\u02ed\u02ee\u0007\u0121\u0002\u0002", - "\u02ee\u02f3\u0005l7\u0002\u02ef\u02f0\u0007\u0123\u0002\u0002\u02f0", - "\u02f2\u0005l7\u0002\u02f1\u02ef\u0003\u0002\u0002\u0002\u02f2\u02f5", - "\u0003\u0002\u0002\u0002\u02f3\u02f1\u0003\u0002\u0002\u0002\u02f3\u02f4", - "\u0003\u0002\u0002\u0002\u02f4\u02f6\u0003\u0002\u0002\u0002\u02f5\u02f3", - "\u0003\u0002\u0002\u0002\u02f6\u02f7\u0007\u0122\u0002\u0002\u02f7\u02f9", - "\u0003\u0002\u0002\u0002\u02f8\u02c5\u0003\u0002\u0002\u0002\u02f8\u02c6", - "\u0003\u0002\u0002\u0002\u02f8\u02c8\u0003\u0002\u0002\u0002\u02f8\u02d3", - "\u0003\u0002\u0002\u0002\u02f8\u02df\u0003\u0002\u0002\u0002\u02f8\u02eb", - "\u0003\u0002\u0002\u0002\u02f9m\u0003\u0002\u0002\u0002\u02fa\u02fb", - "\u0007\u0015\u0002\u0002\u02fb\u02fc\u0005\u0084C\u0002\u02fco\u0003", - "\u0002\u0002\u0002\u02fd\u02fe\u0007\u0014\u0002\u0002\u02fe\u02ff\u0007", - "\u000f\u0002\u0002\u02ff\u0304\u0005r:\u0002\u0300\u0301\u0007\u0123", - "\u0002\u0002\u0301\u0303\u0005r:\u0002\u0302\u0300\u0003\u0002\u0002", - "\u0002\u0303\u0306\u0003\u0002\u0002\u0002\u0304\u0302\u0003\u0002\u0002", - "\u0002\u0304\u0305\u0003\u0002\u0002\u0002\u0305q\u0003\u0002\u0002", - "\u0002\u0306\u0304\u0003\u0002\u0002\u0002\u0307\u0309\u0005\u0082B", - "\u0002\u0308\u030a\t\u000b\u0002\u0002\u0309\u0308\u0003\u0002\u0002", - "\u0002\u0309\u030a\u0003\u0002\u0002\u0002\u030as\u0003\u0002\u0002", - "\u0002\u030b\u030e\u0007\u0016\u0002\u0002\u030c\u030f\u0007\n\u0002", - "\u0002\u030d\u030f\u0005\u0082B\u0002\u030e\u030c\u0003\u0002\u0002", - "\u0002\u030e\u030d\u0003\u0002\u0002\u0002\u030fu\u0003\u0002\u0002", - "\u0002\u0310\u0311\u0007:\u0002\u0002\u0311\u0316\u0005x=\u0002\u0312", - "\u0313\u0007\u0123\u0002\u0002\u0313\u0315\u0005x=\u0002\u0314\u0312", - "\u0003\u0002\u0002\u0002\u0315\u0318\u0003\u0002\u0002\u0002\u0316\u0314", - "\u0003\u0002\u0002\u0002\u0316\u0317\u0003\u0002\u0002\u0002\u0317w", - "\u0003\u0002\u0002\u0002\u0318\u0316\u0003\u0002\u0002\u0002\u0319\u031a", - "\u0005\u00a0Q\u0002\u031a\u031b\u0007\t\u0002\u0002\u031b\u031c\u0005", - "z>\u0002\u031cy\u0003\u0002\u0002\u0002\u031d\u031f\u0005\u00a0Q\u0002", - "\u031e\u031d\u0003\u0002\u0002\u0002\u031e\u031f\u0003\u0002\u0002\u0002", - "\u031f\u0320\u0003\u0002\u0002\u0002\u0320\u032b\u0007\u0121\u0002\u0002", - "\u0321\u0322\u0007\u0014\u0002\u0002\u0322\u0323\u0007\u000f\u0002\u0002", - "\u0323\u0328\u0005|?\u0002\u0324\u0325\u0007\u0123\u0002\u0002\u0325", - "\u0327\u0005|?\u0002\u0326\u0324\u0003\u0002\u0002\u0002\u0327\u032a", - "\u0003\u0002\u0002\u0002\u0328\u0326\u0003\u0002\u0002\u0002\u0328\u0329", - "\u0003\u0002\u0002\u0002\u0329\u032c\u0003\u0002\u0002\u0002\u032a\u0328", - "\u0003\u0002\u0002\u0002\u032b\u0321\u0003\u0002\u0002\u0002\u032b\u032c", - "\u0003\u0002\u0002\u0002\u032c\u0337\u0003\u0002\u0002\u0002\u032d\u032e", - "\u0007<\u0002\u0002\u032e\u032f\u0007\u000f\u0002\u0002\u032f\u0334", - "\u0005\u0082B\u0002\u0330\u0331\u0007\u0123\u0002\u0002\u0331\u0333", - "\u0005\u0082B\u0002\u0332\u0330\u0003\u0002\u0002\u0002\u0333\u0336", - "\u0003\u0002\u0002\u0002\u0334\u0332\u0003\u0002\u0002\u0002\u0334\u0335", - "\u0003\u0002\u0002\u0002\u0335\u0338\u0003\u0002\u0002\u0002\u0336\u0334", - "\u0003\u0002\u0002\u0002\u0337\u032d\u0003\u0002\u0002\u0002\u0337\u0338", - "\u0003\u0002\u0002\u0002\u0338\u033a\u0003\u0002\u0002\u0002\u0339\u033b", - "\u0005~@\u0002\u033a\u0339\u0003\u0002\u0002\u0002\u033a\u033b\u0003", - "\u0002\u0002\u0002\u033b\u033c\u0003\u0002\u0002\u0002\u033c\u033d\u0007", - "\u0122\u0002\u0002\u033d{\u0003\u0002\u0002\u0002\u033e\u0340\u0005", - "\u0082B\u0002\u033f\u0341\t\u000b\u0002\u0002\u0340\u033f\u0003\u0002", - "\u0002\u0002\u0340\u0341\u0003\u0002\u0002\u0002\u0341\u0344\u0003\u0002", - "\u0002\u0002\u0342\u0343\u0007$\u0002\u0002\u0343\u0345\t\f\u0002\u0002", - "\u0344\u0342\u0003\u0002\u0002\u0002\u0344\u0345\u0003\u0002\u0002\u0002", - "\u0345}\u0003\u0002\u0002\u0002\u0346\u0347\u0007=\u0002\u0002\u0347", - "\u034b\u0005\u0080A\u0002\u0348\u0349\u0007>\u0002\u0002\u0349\u034b", - "\u0005\u0080A\u0002\u034a\u0346\u0003\u0002\u0002\u0002\u034a\u0348", - "\u0003\u0002\u0002\u0002\u034b\u007f\u0003\u0002\u0002\u0002\u034c\u034d", - "\u0005\u0082B\u0002\u034d\u034e\u0007@\u0002\u0002\u034e\u0081\u0003", - "\u0002\u0002\u0002\u034f\u0350\u0005\u0084C\u0002\u0350\u0083\u0003", - "\u0002\u0002\u0002\u0351\u0352\bC\u0001\u0002\u0352\u0353\u0007\u001b", - "\u0002\u0002\u0353\u035e\u0005\u0084C\u0007\u0354\u0355\u0007\u001d", - "\u0002\u0002\u0355\u0356\u0007\u0121\u0002\u0002\u0356\u0357\u0005T", - "+\u0002\u0357\u0358\u0007\u0122\u0002\u0002\u0358\u035e\u0003\u0002", - "\u0002\u0002\u0359\u035b\u0005\u0088E\u0002\u035a\u035c\u0005\u0086", - "D\u0002\u035b\u035a\u0003\u0002\u0002\u0002\u035b\u035c\u0003\u0002", - "\u0002\u0002\u035c\u035e\u0003\u0002\u0002\u0002\u035d\u0351\u0003\u0002", - "\u0002\u0002\u035d\u0354\u0003\u0002\u0002\u0002\u035d\u0359\u0003\u0002", - "\u0002\u0002\u035e\u0367\u0003\u0002\u0002\u0002\u035f\u0360\f\u0004", - "\u0002\u0002\u0360\u0361\u0007\u0019\u0002\u0002\u0361\u0366\u0005\u0084", - "C\u0005\u0362\u0363\f\u0003\u0002\u0002\u0363\u0364\u0007\u0018\u0002", - "\u0002\u0364\u0366\u0005\u0084C\u0004\u0365\u035f\u0003\u0002\u0002", - "\u0002\u0365\u0362\u0003\u0002\u0002\u0002\u0366\u0369\u0003\u0002\u0002", - "\u0002\u0367\u0365\u0003\u0002\u0002\u0002\u0367\u0368\u0003\u0002\u0002", - "\u0002\u0368\u0085\u0003\u0002\u0002\u0002\u0369\u0367\u0003\u0002\u0002", - "\u0002\u036a\u036c\u0007\u001b\u0002\u0002\u036b\u036a\u0003\u0002\u0002", - "\u0002\u036b\u036c\u0003\u0002\u0002\u0002\u036c\u036d\u0003\u0002\u0002", - "\u0002\u036d\u036e\u0007\u001e\u0002\u0002\u036e\u036f\u0005\u0088E", - "\u0002\u036f\u0370\u0007\u0019\u0002\u0002\u0370\u0371\u0005\u0088E", - "\u0002\u0371\u03be\u0003\u0002\u0002\u0002\u0372\u0374\u0007\u001b\u0002", - "\u0002\u0373\u0372\u0003\u0002\u0002\u0002\u0373\u0374\u0003\u0002\u0002", - "\u0002\u0374\u0375\u0003\u0002\u0002\u0002\u0375\u0376\u0007\u001a\u0002", - "\u0002\u0376\u0377\u0007\u0121\u0002\u0002\u0377\u037c\u0005\u0082B", - "\u0002\u0378\u0379\u0007\u0123\u0002\u0002\u0379\u037b\u0005\u0082B", - "\u0002\u037a\u0378\u0003\u0002\u0002\u0002\u037b\u037e\u0003\u0002\u0002", - "\u0002\u037c\u037a\u0003\u0002\u0002\u0002\u037c\u037d\u0003\u0002\u0002", - "\u0002\u037d\u037f\u0003\u0002\u0002\u0002\u037e\u037c\u0003\u0002\u0002", - "\u0002\u037f\u0380\u0007\u0122\u0002\u0002\u0380\u03be\u0003\u0002\u0002", - "\u0002\u0381\u0383\u0007\u001b\u0002\u0002\u0382\u0381\u0003\u0002\u0002", - "\u0002\u0382\u0383\u0003\u0002\u0002\u0002\u0383\u0384\u0003\u0002\u0002", - "\u0002\u0384\u0385\u0007\u001a\u0002\u0002\u0385\u0386\u0007\u0121\u0002", - "\u0002\u0386\u0387\u0005T+\u0002\u0387\u0388\u0007\u0122\u0002\u0002", - "\u0388\u03be\u0003\u0002\u0002\u0002\u0389\u038a\u0007\u001d\u0002\u0002", - "\u038a\u038b\u0007\u0121\u0002\u0002\u038b\u038c\u0005T+\u0002\u038c", - "\u038d\u0007\u0122\u0002\u0002\u038d\u03be\u0003\u0002\u0002\u0002\u038e", - "\u0390\u0007\u001b\u0002\u0002\u038f\u038e\u0003\u0002\u0002\u0002\u038f", - "\u0390\u0003\u0002\u0002\u0002\u0390\u0391\u0003\u0002\u0002\u0002\u0391", - "\u0392\u0007 \u0002\u0002\u0392\u03be\u0005\u0088E\u0002\u0393\u0395", - "\u0007\u001b\u0002\u0002\u0394\u0393\u0003\u0002\u0002\u0002\u0394\u0395", - "\u0003\u0002\u0002\u0002\u0395\u0396\u0003\u0002\u0002\u0002\u0396\u0397", - "\u0007\u001f\u0002\u0002\u0397\u03a5\t\r\u0002\u0002\u0398\u0399\u0007", - "\u0121\u0002\u0002\u0399\u03a6\u0007\u0122\u0002\u0002\u039a\u039b\u0007", - "\u0121\u0002\u0002\u039b\u03a0\u0005\u0082B\u0002\u039c\u039d\u0007", - "\u0123\u0002\u0002\u039d\u039f\u0005\u0082B\u0002\u039e\u039c\u0003", - "\u0002\u0002\u0002\u039f\u03a2\u0003\u0002\u0002\u0002\u03a0\u039e\u0003", - "\u0002\u0002\u0002\u03a0\u03a1\u0003\u0002\u0002\u0002\u03a1\u03a3\u0003", - "\u0002\u0002\u0002\u03a2\u03a0\u0003\u0002\u0002\u0002\u03a3\u03a4\u0007", - "\u0122\u0002\u0002\u03a4\u03a6\u0003\u0002\u0002\u0002\u03a5\u0398\u0003", - "\u0002\u0002\u0002\u03a5\u039a\u0003\u0002\u0002\u0002\u03a6\u03be\u0003", - "\u0002\u0002\u0002\u03a7\u03a9\u0007\u001b\u0002\u0002\u03a8\u03a7\u0003", - "\u0002\u0002\u0002\u03a8\u03a9\u0003\u0002\u0002\u0002\u03a9\u03aa\u0003", - "\u0002\u0002\u0002\u03aa\u03ab\u0007\u001f\u0002\u0002\u03ab\u03be\u0005", - "\u0088E\u0002\u03ac\u03ae\u0007!\u0002\u0002\u03ad\u03af\u0007\u001b", - "\u0002\u0002\u03ae\u03ad\u0003\u0002\u0002\u0002\u03ae\u03af\u0003\u0002", - "\u0002\u0002\u03af\u03b0\u0003\u0002\u0002\u0002\u03b0\u03be\u0007\u0115", - "\u0002\u0002\u03b1\u03b3\u0007!\u0002\u0002\u03b2\u03b4\u0007\u001b", - "\u0002\u0002\u03b3\u03b2\u0003\u0002\u0002\u0002\u03b3\u03b4\u0003\u0002", - "\u0002\u0002\u03b4\u03b5\u0003\u0002\u0002\u0002\u03b5\u03be\t\u000e", - "\u0002\u0002\u03b6\u03b8\u0007!\u0002\u0002\u03b7\u03b9\u0007\u001b", - "\u0002\u0002\u03b8\u03b7\u0003\u0002\u0002\u0002\u03b8\u03b9\u0003\u0002", - "\u0002\u0002\u03b9\u03ba\u0003\u0002\u0002\u0002\u03ba\u03bb\u0007\f", - "\u0002\u0002\u03bb\u03bc\u0007\u0007\u0002\u0002\u03bc\u03be\u0005\u0088", - "E\u0002\u03bd\u036b\u0003\u0002\u0002\u0002\u03bd\u0373\u0003\u0002", - "\u0002\u0002\u03bd\u0382\u0003\u0002\u0002\u0002\u03bd\u0389\u0003\u0002", - "\u0002\u0002\u03bd\u038f\u0003\u0002\u0002\u0002\u03bd\u0394\u0003\u0002", - "\u0002\u0002\u03bd\u03a8\u0003\u0002\u0002\u0002\u03bd\u03ac\u0003\u0002", - "\u0002\u0002\u03bd\u03b1\u0003\u0002\u0002\u0002\u03bd\u03b6\u0003\u0002", - "\u0002\u0002\u03be\u0087\u0003\u0002\u0002\u0002\u03bf\u03c0\bE\u0001", - "\u0002\u03c0\u03c4\u0005\u008aF\u0002\u03c1\u03c2\t\u000f\u0002\u0002", - "\u03c2\u03c4\u0005\u0088E\t\u03c3\u03bf\u0003\u0002\u0002\u0002\u03c3", - "\u03c1\u0003\u0002\u0002\u0002\u03c4\u03da\u0003\u0002\u0002\u0002\u03c5", - "\u03c6\f\b\u0002\u0002\u03c6\u03c7\t\u0010\u0002\u0002\u03c7\u03d9\u0005", - "\u0088E\t\u03c8\u03c9\f\u0007\u0002\u0002\u03c9\u03ca\t\u0011\u0002", - "\u0002\u03ca\u03d9\u0005\u0088E\b\u03cb\u03cc\f\u0006\u0002\u0002\u03cc", - "\u03cd\u0007\u011c\u0002\u0002\u03cd\u03d9\u0005\u0088E\u0007\u03ce", - "\u03cf\f\u0005\u0002\u0002\u03cf\u03d0\u0007\u011d\u0002\u0002\u03d0", - "\u03d9\u0005\u0088E\u0006\u03d1\u03d2\f\u0004\u0002\u0002\u03d2\u03d3", - "\u0007\u011b\u0002\u0002\u03d3\u03d9\u0005\u0088E\u0005\u03d4\u03d5", - "\f\u0003\u0002\u0002\u03d5\u03d6\u0005\u00c6d\u0002\u03d6\u03d7\u0005", - "\u0088E\u0004\u03d7\u03d9\u0003\u0002\u0002\u0002\u03d8\u03c5\u0003", - "\u0002\u0002\u0002\u03d8\u03c8\u0003\u0002\u0002\u0002\u03d8\u03cb\u0003", - "\u0002\u0002\u0002\u03d8\u03ce\u0003\u0002\u0002\u0002\u03d8\u03d1\u0003", - "\u0002\u0002\u0002\u03d8\u03d4\u0003\u0002\u0002\u0002\u03d9\u03dc\u0003", - "\u0002\u0002\u0002\u03da\u03d8\u0003\u0002\u0002\u0002\u03da\u03db\u0003", - "\u0002\u0002\u0002\u03db\u0089\u0003\u0002\u0002\u0002\u03dc\u03da\u0003", - "\u0002\u0002\u0002\u03dd\u03de\bF\u0001\u0002\u03de\u03e0\u0007)\u0002", - "\u0002\u03df\u03e1\u0005\u00b0Y\u0002\u03e0\u03df\u0003\u0002\u0002", - "\u0002\u03e1\u03e2\u0003\u0002\u0002\u0002\u03e2\u03e0\u0003\u0002\u0002", - "\u0002\u03e2\u03e3\u0003\u0002\u0002\u0002\u03e3\u03e6\u0003\u0002\u0002", - "\u0002\u03e4\u03e5\u0007,\u0002\u0002\u03e5\u03e7\u0005\u0082B\u0002", - "\u03e6\u03e4\u0003\u0002\u0002\u0002\u03e6\u03e7\u0003\u0002\u0002\u0002", - "\u03e7\u03e8\u0003\u0002\u0002\u0002\u03e8\u03e9\u0007-\u0002\u0002", - "\u03e9\u0432\u0003\u0002\u0002\u0002\u03ea\u03eb\u0007)\u0002\u0002", - "\u03eb\u03ed\u0005\u0082B\u0002\u03ec\u03ee\u0005\u00b0Y\u0002\u03ed", - "\u03ec\u0003\u0002\u0002\u0002\u03ee\u03ef\u0003\u0002\u0002\u0002\u03ef", - "\u03ed\u0003\u0002\u0002\u0002\u03ef\u03f0\u0003\u0002\u0002\u0002\u03f0", - "\u03f3\u0003\u0002\u0002\u0002\u03f1\u03f2\u0007,\u0002\u0002\u03f2", - "\u03f4\u0005\u0082B\u0002\u03f3\u03f1\u0003\u0002\u0002\u0002\u03f3", - "\u03f4\u0003\u0002\u0002\u0002\u03f4\u03f5\u0003\u0002\u0002\u0002\u03f5", - "\u03f6\u0007-\u0002\u0002\u03f6\u0432\u0003\u0002\u0002\u0002\u03f7", - "\u03f8\u0007C\u0002\u0002\u03f8\u03f9\u0007\u0121\u0002\u0002\u03f9", - "\u03fc\u0005\u0082B\u0002\u03fa\u03fb\u0007r\u0002\u0002\u03fb\u03fd", - "\u0007$\u0002\u0002\u03fc\u03fa\u0003\u0002\u0002\u0002\u03fc\u03fd", - "\u0003\u0002\u0002\u0002\u03fd\u03fe\u0003\u0002\u0002\u0002\u03fe\u03ff", - "\u0007\u0122\u0002\u0002\u03ff\u0432\u0003\u0002\u0002\u0002\u0400\u0401", - "\u0007E\u0002\u0002\u0401\u0402\u0007\u0121\u0002\u0002\u0402\u0405", - "\u0005\u0082B\u0002\u0403\u0404\u0007r\u0002\u0002\u0404\u0406\u0007", - "$\u0002\u0002\u0405\u0403\u0003\u0002\u0002\u0002\u0405\u0406\u0003", - "\u0002\u0002\u0002\u0406\u0407\u0003\u0002\u0002\u0002\u0407\u0408\u0007", - "\u0122\u0002\u0002\u0408\u0432\u0003\u0002\u0002\u0002\u0409\u040a\u0007", - "w\u0002\u0002\u040a\u040b\u0007\u0121\u0002\u0002\u040b\u040c\u0005", - "\u0088E\u0002\u040c\u040d\u0007\u001a\u0002\u0002\u040d\u040e\u0005", - "\u0088E\u0002\u040e\u040f\u0007\u0122\u0002\u0002\u040f\u0432\u0003", - "\u0002\u0002\u0002\u0410\u0432\u0005\u00d0i\u0002\u0411\u0432\u0007", - "\u012a\u0002\u0002\u0412\u0413\u0005\u00b4[\u0002\u0413\u0414\u0007", - "\u011e\u0002\u0002\u0414\u0415\u0007\u012a\u0002\u0002\u0415\u0432\u0003", - "\u0002\u0002\u0002\u0416\u0417\u0007\u0121\u0002\u0002\u0417\u0418\u0005", - "T+\u0002\u0418\u0419\u0007\u0122\u0002\u0002\u0419\u0432\u0003\u0002", - "\u0002\u0002\u041a\u041b\u0005\u008cG\u0002\u041b\u0427\u0007\u0121", - "\u0002\u0002\u041c\u041e\u0005\u00d8m\u0002\u041d\u041c\u0003\u0002", - "\u0002\u0002\u041d\u041e\u0003\u0002\u0002\u0002\u041e\u041f\u0003\u0002", - "\u0002\u0002\u041f\u0424\u0005\u0082B\u0002\u0420\u0421\u0007\u0123", - "\u0002\u0002\u0421\u0423\u0005\u0082B\u0002\u0422\u0420\u0003\u0002", - "\u0002\u0002\u0423\u0426\u0003\u0002\u0002\u0002\u0424\u0422\u0003\u0002", - "\u0002\u0002\u0424\u0425\u0003\u0002\u0002\u0002\u0425\u0428\u0003\u0002", - "\u0002\u0002\u0426\u0424\u0003\u0002\u0002\u0002\u0427\u041d\u0003\u0002", - "\u0002\u0002\u0427\u0428\u0003\u0002\u0002\u0002\u0428\u0429\u0003\u0002", - "\u0002\u0002\u0429\u042a\u0007\u0122\u0002\u0002\u042a\u0432\u0003\u0002", - "\u0002\u0002\u042b\u0432\u0005\u00a8U\u0002\u042c\u0432\u0005\u008e", - "H\u0002\u042d\u042e\u0007\u0121\u0002\u0002\u042e\u042f\u0005\u0082", - "B\u0002\u042f\u0430\u0007\u0122\u0002\u0002\u0430\u0432\u0003\u0002", - "\u0002\u0002\u0431\u03dd\u0003\u0002\u0002\u0002\u0431\u03ea\u0003\u0002", - "\u0002\u0002\u0431\u03f7\u0003\u0002\u0002\u0002\u0431\u0400\u0003\u0002", - "\u0002\u0002\u0431\u0409\u0003\u0002\u0002\u0002\u0431\u0410\u0003\u0002", - "\u0002\u0002\u0431\u0411\u0003\u0002\u0002\u0002\u0431\u0412\u0003\u0002", - "\u0002\u0002\u0431\u0416\u0003\u0002\u0002\u0002\u0431\u041a\u0003\u0002", - "\u0002\u0002\u0431\u042b\u0003\u0002\u0002\u0002\u0431\u042c\u0003\u0002", - "\u0002\u0002\u0431\u042d\u0003\u0002\u0002\u0002\u0432\u043a\u0003\u0002", - "\u0002\u0002\u0433\u0434\f\u0006\u0002\u0002\u0434\u0435\u0007\u011f", - "\u0002\u0002\u0435\u0436\u0005\u0088E\u0002\u0436\u0437\u0007\u0120", - "\u0002\u0002\u0437\u0439\u0003\u0002\u0002\u0002\u0438\u0433\u0003\u0002", - "\u0002\u0002\u0439\u043c\u0003\u0002\u0002\u0002\u043a\u0438\u0003\u0002", - "\u0002\u0002\u043a\u043b\u0003\u0002\u0002\u0002\u043b\u008b\u0003\u0002", - "\u0002\u0002\u043c\u043a\u0003\u0002\u0002\u0002\u043d\u043e\u0005\u00b4", - "[\u0002\u043e\u008d\u0003\u0002\u0002\u0002\u043f\u0440\u0005\u00b4", - "[\u0002\u0440\u008f\u0003\u0002\u0002\u0002\u0441\u0446\u0005\u00a8", - "U\u0002\u0442\u0443\u0007\u011e\u0002\u0002\u0443\u0445\u0005\u00a8", - "U\u0002\u0444\u0442\u0003\u0002\u0002\u0002\u0445\u0448\u0003\u0002", - "\u0002\u0002\u0446\u0444\u0003\u0002\u0002\u0002\u0446\u0447\u0003\u0002", - "\u0002\u0002\u0447\u0091\u0003\u0002\u0002\u0002\u0448\u0446\u0003\u0002", - "\u0002\u0002\u0449\u044c\u0007(\u0002\u0002\u044a\u044d\u0005\u0094", - "K\u0002\u044b\u044d\u0005\u0098M\u0002\u044c\u044a\u0003\u0002\u0002", - "\u0002\u044c\u044b\u0003\u0002\u0002\u0002\u044c\u044d\u0003\u0002\u0002", - "\u0002\u044d\u0093\u0003\u0002\u0002\u0002\u044e\u0450\u0005\u0096L", - "\u0002\u044f\u0451\u0005\u009aN\u0002\u0450\u044f\u0003\u0002\u0002", - "\u0002\u0450\u0451\u0003\u0002\u0002\u0002\u0451\u0095\u0003\u0002\u0002", - "\u0002\u0452\u0453\u0005\u009cO\u0002\u0453\u0454\u0005\u00a8U\u0002", - "\u0454\u0456\u0003\u0002\u0002\u0002\u0455\u0452\u0003\u0002\u0002\u0002", - "\u0456\u0457\u0003\u0002\u0002\u0002\u0457\u0455\u0003\u0002\u0002\u0002", - "\u0457\u0458\u0003\u0002\u0002\u0002\u0458\u0097\u0003\u0002\u0002\u0002", - "\u0459\u045c\u0005\u009aN\u0002\u045a\u045d\u0005\u0096L\u0002\u045b", - "\u045d\u0005\u009aN\u0002\u045c\u045a\u0003\u0002\u0002\u0002\u045c", - "\u045b\u0003\u0002\u0002\u0002\u045c\u045d\u0003\u0002\u0002\u0002\u045d", - "\u0099\u0003\u0002\u0002\u0002\u045e\u045f\u0005\u009cO\u0002\u045f", - "\u0460\u0005\u00a8U\u0002\u0460\u0461\u0007c\u0002\u0002\u0461\u0462", - "\u0005\u00a8U\u0002\u0462\u009b\u0003\u0002\u0002\u0002\u0463\u0465", - "\t\u0012\u0002\u0002\u0464\u0463\u0003\u0002\u0002\u0002\u0464\u0465", - "\u0003\u0002\u0002\u0002\u0465\u0466\u0003\u0002\u0002\u0002\u0466\u0469", - "\t\u0013\u0002\u0002\u0467\u0469\u0007\u0133\u0002\u0002\u0468\u0464", - "\u0003\u0002\u0002\u0002\u0468\u0467\u0003\u0002\u0002\u0002\u0469\u009d", - "\u0003\u0002\u0002\u0002\u046a\u046c\u0007\t\u0002\u0002\u046b\u046a", - "\u0003\u0002\u0002\u0002\u046b\u046c\u0003\u0002\u0002\u0002\u046c\u046d", - "\u0003\u0002\u0002\u0002\u046d\u046f\u0005\u00aaV\u0002\u046e\u0470", - "\u0005\u00a4S\u0002\u046f\u046e\u0003\u0002\u0002\u0002\u046f\u0470", - "\u0003\u0002\u0002\u0002\u0470\u009f\u0003\u0002\u0002\u0002\u0471\u0472", - "\u0005\u00a8U\u0002\u0472\u0473\u0005\u00a2R\u0002\u0473\u00a1\u0003", - "\u0002\u0002\u0002\u0474\u0475\u0007\u0082\u0002\u0002\u0475\u0477\u0005", - "\u00a8U\u0002\u0476\u0474\u0003\u0002\u0002\u0002\u0477\u0478\u0003", - "\u0002\u0002\u0002\u0478\u0476\u0003\u0002\u0002\u0002\u0478\u0479\u0003", - "\u0002\u0002\u0002\u0479\u047c\u0003\u0002\u0002\u0002\u047a\u047c\u0003", - "\u0002\u0002\u0002\u047b\u0476\u0003\u0002\u0002\u0002\u047b\u047a\u0003", - "\u0002\u0002\u0002\u047c\u00a3\u0003\u0002\u0002\u0002\u047d\u047e\u0007", - "\u0121\u0002\u0002\u047e\u047f\u0005\u00a6T\u0002\u047f\u0480\u0007", - "\u0122\u0002\u0002\u0480\u00a5\u0003\u0002\u0002\u0002\u0481\u0486\u0005", - "\u00a8U\u0002\u0482\u0483\u0007\u0123\u0002\u0002\u0483\u0485\u0005", - "\u00a8U\u0002\u0484\u0482\u0003\u0002\u0002\u0002\u0485\u0488\u0003", - "\u0002\u0002\u0002\u0486\u0484\u0003\u0002\u0002\u0002\u0486\u0487\u0003", - "\u0002\u0002\u0002\u0487\u00a7\u0003\u0002\u0002\u0002\u0488\u0486\u0003", - "\u0002\u0002\u0002\u0489\u048a\u0005\u00aaV\u0002\u048a\u00a9\u0003", - "\u0002\u0002\u0002\u048b\u048e\u0005\u00acW\u0002\u048c\u048e\u0005", - "\u00aeX\u0002\u048d\u048b\u0003\u0002\u0002\u0002\u048d\u048c\u0003", - "\u0002\u0002\u0002\u048e\u00ab\u0003\u0002\u0002\u0002\u048f\u0490\t", - "\u0014\u0002\u0002\u0490\u00ad\u0003\u0002\u0002\u0002\u0491\u0492\u0007", - "\u0133\u0002\u0002\u0492\u00af\u0003\u0002\u0002\u0002\u0493\u0494\u0007", - "*\u0002\u0002\u0494\u0495\u0005\u0082B\u0002\u0495\u0496\u0007+\u0002", - "\u0002\u0496\u0497\u0005\u0082B\u0002\u0497\u00b1\u0003\u0002\u0002", - "\u0002\u0498\u049d\u0005\u00b4[\u0002\u0499\u049a\u0007\u0123\u0002", - "\u0002\u049a\u049c\u0005\u00b4[\u0002\u049b\u0499\u0003\u0002\u0002", - "\u0002\u049c\u049f\u0003\u0002\u0002\u0002\u049d\u049b\u0003\u0002\u0002", - "\u0002\u049d\u049e\u0003\u0002\u0002\u0002\u049e\u00b3\u0003\u0002\u0002", - "\u0002\u049f\u049d\u0003\u0002\u0002\u0002\u04a0\u04a4\u0007\u0137\u0002", - "\u0002\u04a1\u04a3\u0007\u0132\u0002\u0002\u04a2\u04a1\u0003\u0002\u0002", - "\u0002\u04a3\u04a6\u0003\u0002\u0002\u0002\u04a4\u04a5\u0003\u0002\u0002", - "\u0002\u04a4\u04a2\u0003\u0002\u0002\u0002\u04a5\u00b5\u0003\u0002\u0002", - "\u0002\u04a6\u04a4\u0003\u0002\u0002\u0002\u04a7\u04a8\u0007F\u0002", - "\u0002\u04a8\u04a9\u0005\u00bc_\u0002\u04a9\u00b7\u0003\u0002\u0002", - "\u0002\u04aa\u04ab\u0007v\u0002\u0002\u04ab\u04ac\u0007\u001b\u0002", - "\u0002\u04ac\u04ad\u0007\u001d\u0002\u0002\u04ad\u00b9\u0003\u0002\u0002", - "\u0002\u04ae\u04af\u0007v\u0002\u0002\u04af\u04b0\u0007\u001d\u0002", - "\u0002\u04b0\u00bb\u0003\u0002\u0002\u0002\u04b1\u04b2\u0007\u0121\u0002", - "\u0002\u04b2\u04b7\u0005\u00be`\u0002\u04b3\u04b4\u0007\u0123\u0002", - "\u0002\u04b4\u04b6\u0005\u00be`\u0002\u04b5\u04b3\u0003\u0002\u0002", - "\u0002\u04b6\u04b9\u0003\u0002\u0002\u0002\u04b7\u04b5\u0003\u0002\u0002", - "\u0002\u04b7\u04b8\u0003\u0002\u0002\u0002\u04b8\u04ba\u0003\u0002\u0002", - "\u0002\u04b9\u04b7\u0003\u0002\u0002\u0002\u04ba\u04bb\u0007\u0122\u0002", - "\u0002\u04bb\u00bd\u0003\u0002\u0002\u0002\u04bc\u04c1\u0005\u00c0a", - "\u0002\u04bd\u04bf\u0007\u0116\u0002\u0002\u04be\u04bd\u0003\u0002\u0002", - "\u0002\u04be\u04bf\u0003\u0002\u0002\u0002\u04bf\u04c0\u0003\u0002\u0002", - "\u0002\u04c0\u04c2\u0005\u00c2b\u0002\u04c1\u04be\u0003\u0002\u0002", - "\u0002\u04c1\u04c2\u0003\u0002\u0002\u0002\u04c2\u00bf\u0003\u0002\u0002", - "\u0002\u04c3\u04c8\u0005\u00a8U\u0002\u04c4\u04c5\u0007\u011e\u0002", - "\u0002\u04c5\u04c7\u0005\u00a8U\u0002\u04c6\u04c4\u0003\u0002\u0002", - "\u0002\u04c7\u04ca\u0003\u0002\u0002\u0002\u04c8\u04c6\u0003\u0002\u0002", - "\u0002\u04c8\u04c9\u0003\u0002\u0002\u0002\u04c9\u04cd\u0003\u0002\u0002", - "\u0002\u04ca\u04c8\u0003\u0002\u0002\u0002\u04cb\u04cd\u0007\u0133\u0002", - "\u0002\u04cc\u04c3\u0003\u0002\u0002\u0002\u04cc\u04cb\u0003\u0002\u0002", - "\u0002\u04cd\u00c1\u0003\u0002\u0002\u0002\u04ce\u04d3\u0007\u0134\u0002", - "\u0002\u04cf\u04d3\u0007\u0135\u0002\u0002\u04d0\u04d3\u0005\u00d6l", - "\u0002\u04d1\u04d3\u0007\u0133\u0002\u0002\u04d2\u04ce\u0003\u0002\u0002", - "\u0002\u04d2\u04cf\u0003\u0002\u0002\u0002\u04d2\u04d0\u0003\u0002\u0002", - "\u0002\u04d2\u04d1\u0003\u0002\u0002\u0002\u04d3\u00c3\u0003\u0002\u0002", - "\u0002\u04d4\u04db\u0007\u0019\u0002\u0002\u04d5\u04d6\u0007\u011c\u0002", - "\u0002\u04d6\u04db\u0007\u011c\u0002\u0002\u04d7\u04db\u0007\u0018\u0002", - "\u0002\u04d8\u04d9\u0007\u011b\u0002\u0002\u04d9\u04db\u0007\u011b\u0002", - "\u0002\u04da\u04d4\u0003\u0002\u0002\u0002\u04da\u04d5\u0003\u0002\u0002", - "\u0002\u04da\u04d7\u0003\u0002\u0002\u0002\u04da\u04d8\u0003\u0002\u0002", - "\u0002\u04db\u00c5\u0003\u0002\u0002\u0002\u04dc\u04eb\u0007\u0116\u0002", - "\u0002\u04dd\u04eb\u0007\u0117\u0002\u0002\u04de\u04eb\u0007\u0118\u0002", - "\u0002\u04df\u04e0\u0007\u0118\u0002\u0002\u04e0\u04eb\u0007\u0116\u0002", - "\u0002\u04e1\u04e2\u0007\u0117\u0002\u0002\u04e2\u04eb\u0007\u0116\u0002", - "\u0002\u04e3\u04e4\u0007\u0118\u0002\u0002\u04e4\u04eb\u0007\u0117\u0002", - "\u0002\u04e5\u04e6\u0007\u0119\u0002\u0002\u04e6\u04eb\u0007\u0116\u0002", - "\u0002\u04e7\u04e8\u0007\u0118\u0002\u0002\u04e8\u04e9\u0007\u0116\u0002", - "\u0002\u04e9\u04eb\u0007\u0117\u0002\u0002\u04ea\u04dc\u0003\u0002\u0002", - "\u0002\u04ea\u04dd\u0003\u0002\u0002\u0002\u04ea\u04de\u0003\u0002\u0002", - "\u0002\u04ea\u04df\u0003\u0002\u0002\u0002\u04ea\u04e1\u0003\u0002\u0002", - "\u0002\u04ea\u04e3\u0003\u0002\u0002\u0002\u04ea\u04e5\u0003\u0002\u0002", - "\u0002\u04ea\u04e7\u0003\u0002\u0002\u0002\u04eb\u00c7\u0003\u0002\u0002", - "\u0002\u04ec\u04ed\u0007\u0118\u0002\u0002\u04ed\u04f4\u0007\u0118\u0002", - "\u0002\u04ee\u04ef\u0007\u0117\u0002\u0002\u04ef\u04f4\u0007\u0117\u0002", - "\u0002\u04f0\u04f4\u0007\u011c\u0002\u0002\u04f1\u04f4\u0007\u011d\u0002", - "\u0002\u04f2\u04f4\u0007\u011b\u0002\u0002\u04f3\u04ec\u0003\u0002\u0002", - "\u0002\u04f3\u04ee\u0003\u0002\u0002\u0002\u04f3\u04f0\u0003\u0002\u0002", - "\u0002\u04f3\u04f1\u0003\u0002\u0002\u0002\u04f3\u04f2\u0003\u0002\u0002", - "\u0002\u04f4\u00c9\u0003\u0002\u0002\u0002\u04f5\u04f6\t\u0015\u0002", - "\u0002\u04f6\u00cb\u0003\u0002\u0002\u0002\u04f7\u04f8\t\u0016\u0002", - "\u0002\u04f8\u00cd\u0003\u0002\u0002\u0002\u04f9\u04fa\u0005\u00b4[", - "\u0002\u04fa\u00cf\u0003\u0002\u0002\u0002\u04fb\u0508\u0005\u00d2j", - "\u0002\u04fc\u0508\u0005\u00d4k\u0002\u04fd\u0508\u0005\u0092J\u0002", - "\u04fe\u04ff\u0007\u012c\u0002\u0002\u04ff\u0508\u0005\u00d4k\u0002", - "\u0500\u0508\u0005\u00d6l\u0002\u0501\u0508\u0007\u0135\u0002\u0002", - "\u0502\u0508\u0007\u0136\u0002\u0002\u0503\u0505\u0007\u001b\u0002\u0002", - "\u0504\u0503\u0003\u0002\u0002\u0002\u0504\u0505\u0003\u0002\u0002\u0002", - "\u0505\u0506\u0003\u0002\u0002\u0002\u0506\u0508\u0007\u0115\u0002\u0002", - "\u0507\u04fb\u0003\u0002\u0002\u0002\u0507\u04fc\u0003\u0002\u0002\u0002", - "\u0507\u04fd\u0003\u0002\u0002\u0002\u0507\u04fe\u0003\u0002\u0002\u0002", - "\u0507\u0500\u0003\u0002\u0002\u0002\u0507\u0501\u0003\u0002\u0002\u0002", - "\u0507\u0502\u0003\u0002\u0002\u0002\u0507\u0504\u0003\u0002\u0002\u0002", - "\u0508\u00d1\u0003\u0002\u0002\u0002\u0509\u050a\u0007\u0133\u0002\u0002", - "\u050a\u00d3\u0003\u0002\u0002\u0002\u050b\u050c\u0007\u0134\u0002\u0002", - "\u050c\u00d5\u0003\u0002\u0002\u0002\u050d\u050e\t\u000e\u0002\u0002", - "\u050e\u00d7\u0003\u0002\u0002\u0002\u050f\u0510\t\u0017\u0002\u0002", - "\u0510\u00d9\u0003\u0002\u0002\u0002\u0097\u00e2\u00e5\u00e7\u00f0\u0100", - "\u0104\u0110\u0120\u0124\u0128\u012b\u012f\u0134\u0151\u015e\u0163\u0167", - "\u0171\u017b\u017f\u0185\u0189\u0191\u0194\u0197\u01a0\u01a4\u01ab\u01b2", - "\u01c4\u01c8\u01cf\u01d4\u01db\u01df\u01e3\u01e7\u01ef\u01f3\u01fb\u01ff", - "\u020a\u0213\u0220\u0223\u0227\u022a\u022c\u0231\u0235\u0238\u023c\u0245", - "\u024b\u024e\u0251\u0254\u0258\u0260\u0263\u0267\u026a\u0275\u027a\u027d", - "\u0282\u0286\u028b\u028e\u029b\u02a6\u02b1\u02b6\u02c2\u02ce\u02da\u02e6", - "\u02f3\u02f8\u0304\u0309\u030e\u0316\u031e\u0328\u032b\u0334\u0337\u033a", - "\u0340\u0344\u034a\u035b\u035d\u0365\u0367\u036b\u0373\u037c\u0382\u038f", - "\u0394\u03a0\u03a5\u03a8\u03ae\u03b3\u03b8\u03bd\u03c3\u03d8\u03da\u03e2", - "\u03e6\u03ef\u03f3\u03fc\u0405\u041d\u0424\u0427\u0431\u043a\u0446\u044c", - "\u0450\u0457\u045c\u0464\u0468\u046b\u046f\u0478\u047b\u0486\u048d\u049d", - "\u04a4\u04b7\u04be\u04c1\u04c8\u04cc\u04d2\u04da\u04ea\u04f3\u0504\u0507"].join(""); + "\u0002\u0002\u0253\u023f\u0003\u0002\u0002\u0002\u0253\u0241\u0003\u0002", + "\u0002\u0002\u0253\u0245\u0003\u0002\u0002\u0002\u0253\u024c\u0003\u0002", + "\u0002\u0002\u0254\u0263\u0003\u0002\u0002\u0002\u0255\u0256\f\u0005", + "\u0002\u0002\u0256\u0258\t\t\u0002\u0002\u0257\u0259\u0007\n\u0002\u0002", + "\u0258\u0257\u0003\u0002\u0002\u0002\u0258\u0259\u0003\u0002\u0002\u0002", + "\u0259\u025a\u0003\u0002\u0002\u0002\u025a\u025c\u0005Z.\u0002\u025b", + "\u025d\u0005v<\u0002\u025c\u025b\u0003\u0002\u0002\u0002\u025c\u025d", + "\u0003\u0002\u0002\u0002\u025d\u025f\u0003\u0002\u0002\u0002\u025e\u0260", + "\u0005z>\u0002\u025f\u025e\u0003\u0002\u0002\u0002\u025f\u0260\u0003", + "\u0002\u0002\u0002\u0260\u0262\u0003\u0002\u0002\u0002\u0261\u0255\u0003", + "\u0002\u0002\u0002\u0262\u0265\u0003\u0002\u0002\u0002\u0263\u0261\u0003", + "\u0002\u0002\u0002\u0263\u0264\u0003\u0002\u0002\u0002\u0264[\u0003", + "\u0002\u0002\u0002\u0265\u0263\u0003\u0002\u0002\u0002\u0266\u0267\u0007", + "G\u0002\u0002\u0267\u026c\u0005\u0088E\u0002\u0268\u0269\u0007\u0129", + "\u0002\u0002\u0269\u026b\u0005\u0088E\u0002\u026a\u0268\u0003\u0002", + "\u0002\u0002\u026b\u026e\u0003\u0002\u0002\u0002\u026c\u026a\u0003\u0002", + "\u0002\u0002\u026c\u026d\u0003\u0002\u0002\u0002\u026d]\u0003\u0002", + "\u0002\u0002\u026e\u026c\u0003\u0002\u0002\u0002\u026f\u0270\u0005`", + "1\u0002\u0270\u0272\u0005d3\u0002\u0271\u0273\u0005n8\u0002\u0272\u0271", + "\u0003\u0002\u0002\u0002\u0272\u0273\u0003\u0002\u0002\u0002\u0273\u0275", + "\u0003\u0002\u0002\u0002\u0274\u0276\u0005p9\u0002\u0275\u0274\u0003", + "\u0002\u0002\u0002\u0275\u0276\u0003\u0002\u0002\u0002\u0276\u0278\u0003", + "\u0002\u0002\u0002\u0277\u0279\u0005t;\u0002\u0278\u0277\u0003\u0002", + "\u0002\u0002\u0278\u0279\u0003\u0002\u0002\u0002\u0279\u027b\u0003\u0002", + "\u0002\u0002\u027a\u027c\u0005|?\u0002\u027b\u027a\u0003\u0002\u0002", + "\u0002\u027b\u027c\u0003\u0002\u0002\u0002\u027c_\u0003\u0002\u0002", + "\u0002\u027d\u027f\u0007\u0006\u0002\u0002\u027e\u0280\u0005\u00e2r", + "\u0002\u027f\u027e\u0003\u0002\u0002\u0002\u027f\u0280\u0003\u0002\u0002", + "\u0002\u0280\u028a\u0003\u0002\u0002\u0002\u0281\u028b\u0007\u0130\u0002", + "\u0002\u0282\u0287\u0005b2\u0002\u0283\u0284\u0007\u0129\u0002\u0002", + "\u0284\u0286\u0005b2\u0002\u0285\u0283\u0003\u0002\u0002\u0002\u0286", + "\u0289\u0003\u0002\u0002\u0002\u0287\u0285\u0003\u0002\u0002\u0002\u0287", + "\u0288\u0003\u0002\u0002\u0002\u0288\u028b\u0003\u0002\u0002\u0002\u0289", + "\u0287\u0003\u0002\u0002\u0002\u028a\u0281\u0003\u0002\u0002\u0002\u028a", + "\u0282\u0003\u0002\u0002\u0002\u028ba\u0003\u0002\u0002\u0002\u028c", + "\u0291\u0005\u0088E\u0002\u028d\u028f\u0007\t\u0002\u0002\u028e\u028d", + "\u0003\u0002\u0002\u0002\u028e\u028f\u0003\u0002\u0002\u0002\u028f\u0290", + "\u0003\u0002\u0002\u0002\u0290\u0292\u0005\u00bc_\u0002\u0291\u028e", + "\u0003\u0002\u0002\u0002\u0291\u0292\u0003\u0002\u0002\u0002\u0292c", + "\u0003\u0002\u0002\u0002\u0293\u0294\u0007\u0007\u0002\u0002\u0294\u0295", + "\u0005f4\u0002\u0295e\u0003\u0002\u0002\u0002\u0296\u0297\b4\u0001\u0002", + "\u0297\u029c\u0005h5\u0002\u0298\u0299\u0007\u0129\u0002\u0002\u0299", + "\u029b\u0005h5\u0002\u029a\u0298\u0003\u0002\u0002\u0002\u029b\u029e", + "\u0003\u0002\u0002\u0002\u029c\u029a\u0003\u0002\u0002\u0002\u029c\u029d", + "\u0003\u0002\u0002\u0002\u029d\u02ad\u0003\u0002\u0002\u0002\u029e\u029c", + "\u0003\u0002\u0002\u0002\u029f\u02a1\f\u0003\u0002\u0002\u02a0\u02a2", + "\u00076\u0002\u0002\u02a1\u02a0\u0003\u0002\u0002\u0002\u02a1\u02a2", + "\u0003\u0002\u0002\u0002\u02a2\u02a4\u0003\u0002\u0002\u0002\u02a3\u02a5", + "\t\n\u0002\u0002\u02a4\u02a3\u0003\u0002\u0002\u0002\u02a4\u02a5\u0003", + "\u0002\u0002\u0002\u02a5\u02a6\u0003\u0002\u0002\u0002\u02a6\u02a7\u0007", + ".\u0002\u0002\u02a7\u02a9\u0005f4\u0002\u02a8\u02aa\u0005l7\u0002\u02a9", + "\u02a8\u0003\u0002\u0002\u0002\u02a9\u02aa\u0003\u0002\u0002\u0002\u02aa", + "\u02ac\u0003\u0002\u0002\u0002\u02ab\u029f\u0003\u0002\u0002\u0002\u02ac", + "\u02af\u0003\u0002\u0002\u0002\u02ad\u02ab\u0003\u0002\u0002\u0002\u02ad", + "\u02ae\u0003\u0002\u0002\u0002\u02aeg\u0003\u0002\u0002\u0002\u02af", + "\u02ad\u0003\u0002\u0002\u0002\u02b0\u02b2\u0005j6\u0002\u02b1\u02b3", + "\u0005\u00a6T\u0002\u02b2\u02b1\u0003\u0002\u0002\u0002\u02b2\u02b3", + "\u0003\u0002\u0002\u0002\u02b3i\u0003\u0002\u0002\u0002\u02b4\u02b6", + "\u0007I\u0002\u0002\u02b5\u02b4\u0003\u0002\u0002\u0002\u02b5\u02b6", + "\u0003\u0002\u0002\u0002\u02b6\u02b7\u0003\u0002\u0002\u0002\u02b7\u02ce", + "\u0005\u0088E\u0002\u02b8\u02b9\u00079\u0002\u0002\u02b9\u02ba\u0007", + "I\u0002\u0002\u02ba\u02bb\u0007\u0127\u0002\u0002\u02bb\u02bc\u0005", + "\u00bc_\u0002\u02bc\u02bd\u0007\u0127\u0002\u0002\u02bd\u02c2\u0005", + "\u0088E\u0002\u02be\u02bf\u0007\u0129\u0002\u0002\u02bf\u02c1\u0005", + "\u0088E\u0002\u02c0\u02be\u0003\u0002\u0002\u0002\u02c1\u02c4\u0003", + "\u0002\u0002\u0002\u02c2\u02c0\u0003\u0002\u0002\u0002\u02c2\u02c3\u0003", + "\u0002\u0002\u0002\u02c3\u02c5\u0003\u0002\u0002\u0002\u02c4\u02c2\u0003", + "\u0002\u0002\u0002\u02c5\u02c6\u0007\u0128\u0002\u0002\u02c6\u02c7\u0007", + "\u0128\u0002\u0002\u02c7\u02ce\u0003\u0002\u0002\u0002\u02c8\u02c9\u0007", + "\u00e9\u0002\u0002\u02c9\u02ca\u0007\u0127\u0002\u0002\u02ca\u02cb\u0005", + "\u0088E\u0002\u02cb\u02cc\u0007\u0128\u0002\u0002\u02cc\u02ce\u0003", + "\u0002\u0002\u0002\u02cd\u02b5\u0003\u0002\u0002\u0002\u02cd\u02b8\u0003", + "\u0002\u0002\u0002\u02cd\u02c8\u0003\u0002\u0002\u0002\u02cek\u0003", + "\u0002\u0002\u0002\u02cf\u02d0\u00077\u0002\u0002\u02d0\u02de\u0005", + "\u008aF\u0002\u02d1\u02d2\u0007\u0096\u0002\u0002\u02d2\u02d3\u0007", + "\u0127\u0002\u0002\u02d3\u02d8\u0005\u00bc_\u0002\u02d4\u02d5\u0007", + "\u0129\u0002\u0002\u02d5\u02d7\u0005\u00bc_\u0002\u02d6\u02d4\u0003", + "\u0002\u0002\u0002\u02d7\u02da\u0003\u0002\u0002\u0002\u02d8\u02d6\u0003", + "\u0002\u0002\u0002\u02d8\u02d9\u0003\u0002\u0002\u0002\u02d9\u02db\u0003", + "\u0002\u0002\u0002\u02da\u02d8\u0003\u0002\u0002\u0002\u02db\u02dc\u0007", + "\u0128\u0002\u0002\u02dc\u02de\u0003\u0002\u0002\u0002\u02dd\u02cf\u0003", + "\u0002\u0002\u0002\u02dd\u02d1\u0003\u0002\u0002\u0002\u02dem\u0003", + "\u0002\u0002\u0002\u02df\u02e0\u0007\r\u0002\u0002\u02e0\u02e1\u0005", + "\u008aF\u0002\u02e1o\u0003\u0002\u0002\u0002\u02e2\u02e3\u0007\u000e", + "\u0002\u0002\u02e3\u02e4\u0007\u000f\u0002\u0002\u02e4\u02e9\u0005r", + ":\u0002\u02e5\u02e6\u0007\u0129\u0002\u0002\u02e6\u02e8\u0005r:\u0002", + "\u02e7\u02e5\u0003\u0002\u0002\u0002\u02e8\u02eb\u0003\u0002\u0002\u0002", + "\u02e9\u02e7\u0003\u0002\u0002\u0002\u02e9\u02ea\u0003\u0002\u0002\u0002", + "\u02eaq\u0003\u0002\u0002\u0002\u02eb\u02e9\u0003\u0002\u0002\u0002", + "\u02ec\u0320\u0005\u0088E\u0002\u02ed\u02ee\u0007\u0127\u0002\u0002", + "\u02ee\u0320\u0007\u0128\u0002\u0002\u02ef\u02f0\u0007\u0127\u0002\u0002", + "\u02f0\u02f5\u0005\u0088E\u0002\u02f1\u02f2\u0007\u0129\u0002\u0002", + "\u02f2\u02f4\u0005\u0088E\u0002\u02f3\u02f1\u0003\u0002\u0002\u0002", + "\u02f4\u02f7\u0003\u0002\u0002\u0002\u02f5\u02f3\u0003\u0002\u0002\u0002", + "\u02f5\u02f6\u0003\u0002\u0002\u0002\u02f6\u02f8\u0003\u0002\u0002\u0002", + "\u02f7\u02f5\u0003\u0002\u0002\u0002\u02f8\u02f9\u0007\u0128\u0002\u0002", + "\u02f9\u0320\u0003\u0002\u0002\u0002\u02fa\u02fb\u0007\u0012\u0002\u0002", + "\u02fb\u02fc\u0007\u0127\u0002\u0002\u02fc\u0301\u0005\u0088E\u0002", + "\u02fd\u02fe\u0007\u0129\u0002\u0002\u02fe\u0300\u0005\u0088E\u0002", + "\u02ff\u02fd\u0003\u0002\u0002\u0002\u0300\u0303\u0003\u0002\u0002\u0002", + "\u0301\u02ff\u0003\u0002\u0002\u0002\u0301\u0302\u0003\u0002\u0002\u0002", + "\u0302\u0304\u0003\u0002\u0002\u0002\u0303\u0301\u0003\u0002\u0002\u0002", + "\u0304\u0305\u0007\u0128\u0002\u0002\u0305\u0320\u0003\u0002\u0002\u0002", + "\u0306\u0307\u0007\u0013\u0002\u0002\u0307\u0308\u0007\u0127\u0002\u0002", + "\u0308\u030d\u0005\u0088E\u0002\u0309\u030a\u0007\u0129\u0002\u0002", + "\u030a\u030c\u0005\u0088E\u0002\u030b\u0309\u0003\u0002\u0002\u0002", + "\u030c\u030f\u0003\u0002\u0002\u0002\u030d\u030b\u0003\u0002\u0002\u0002", + "\u030d\u030e\u0003\u0002\u0002\u0002\u030e\u0310\u0003\u0002\u0002\u0002", + "\u030f\u030d\u0003\u0002\u0002\u0002\u0310\u0311\u0007\u0128\u0002\u0002", + "\u0311\u0320\u0003\u0002\u0002\u0002\u0312\u0313\u0007\u0010\u0002\u0002", + "\u0313\u0314\u0007\u0011\u0002\u0002\u0314\u0315\u0007\u0127\u0002\u0002", + "\u0315\u031a\u0005r:\u0002\u0316\u0317\u0007\u0129\u0002\u0002\u0317", + "\u0319\u0005r:\u0002\u0318\u0316\u0003\u0002\u0002\u0002\u0319\u031c", + "\u0003\u0002\u0002\u0002\u031a\u0318\u0003\u0002\u0002\u0002\u031a\u031b", + "\u0003\u0002\u0002\u0002\u031b\u031d\u0003\u0002\u0002\u0002\u031c\u031a", + "\u0003\u0002\u0002\u0002\u031d\u031e\u0007\u0128\u0002\u0002\u031e\u0320", + "\u0003\u0002\u0002\u0002\u031f\u02ec\u0003\u0002\u0002\u0002\u031f\u02ed", + "\u0003\u0002\u0002\u0002\u031f\u02ef\u0003\u0002\u0002\u0002\u031f\u02fa", + "\u0003\u0002\u0002\u0002\u031f\u0306\u0003\u0002\u0002\u0002\u031f\u0312", + "\u0003\u0002\u0002\u0002\u0320s\u0003\u0002\u0002\u0002\u0321\u0322", + "\u0007\u0015\u0002\u0002\u0322\u0323\u0005\u008aF\u0002\u0323u\u0003", + "\u0002\u0002\u0002\u0324\u0325\u0007\u0014\u0002\u0002\u0325\u0326\u0007", + "\u000f\u0002\u0002\u0326\u032b\u0005x=\u0002\u0327\u0328\u0007\u0129", + "\u0002\u0002\u0328\u032a\u0005x=\u0002\u0329\u0327\u0003\u0002\u0002", + "\u0002\u032a\u032d\u0003\u0002\u0002\u0002\u032b\u0329\u0003\u0002\u0002", + "\u0002\u032b\u032c\u0003\u0002\u0002\u0002\u032cw\u0003\u0002\u0002", + "\u0002\u032d\u032b\u0003\u0002\u0002\u0002\u032e\u0330\u0005\u0088E", + "\u0002\u032f\u0331\t\u000b\u0002\u0002\u0330\u032f\u0003\u0002\u0002", + "\u0002\u0330\u0331\u0003\u0002\u0002\u0002\u0331y\u0003\u0002\u0002", + "\u0002\u0332\u0335\u0007\u0016\u0002\u0002\u0333\u0336\u0007\n\u0002", + "\u0002\u0334\u0336\u0005\u0088E\u0002\u0335\u0333\u0003\u0002\u0002", + "\u0002\u0335\u0334\u0003\u0002\u0002\u0002\u0336{\u0003\u0002\u0002", + "\u0002\u0337\u0338\u0007:\u0002\u0002\u0338\u033d\u0005~@\u0002\u0339", + "\u033a\u0007\u0129\u0002\u0002\u033a\u033c\u0005~@\u0002\u033b\u0339", + "\u0003\u0002\u0002\u0002\u033c\u033f\u0003\u0002\u0002\u0002\u033d\u033b", + "\u0003\u0002\u0002\u0002\u033d\u033e\u0003\u0002\u0002\u0002\u033e}", + "\u0003\u0002\u0002\u0002\u033f\u033d\u0003\u0002\u0002\u0002\u0340\u0341", + "\u0005\u00a8U\u0002\u0341\u0342\u0007\t\u0002\u0002\u0342\u0343\u0005", + "\u0080A\u0002\u0343\u007f\u0003\u0002\u0002\u0002\u0344\u0346\u0005", + "\u00a8U\u0002\u0345\u0344\u0003\u0002\u0002\u0002\u0345\u0346\u0003", + "\u0002\u0002\u0002\u0346\u0347\u0003\u0002\u0002\u0002\u0347\u0352\u0007", + "\u0127\u0002\u0002\u0348\u0349\u0007\u0014\u0002\u0002\u0349\u034a\u0007", + "\u000f\u0002\u0002\u034a\u034f\u0005\u0082B\u0002\u034b\u034c\u0007", + "\u0129\u0002\u0002\u034c\u034e\u0005\u0082B\u0002\u034d\u034b\u0003", + "\u0002\u0002\u0002\u034e\u0351\u0003\u0002\u0002\u0002\u034f\u034d\u0003", + "\u0002\u0002\u0002\u034f\u0350\u0003\u0002\u0002\u0002\u0350\u0353\u0003", + "\u0002\u0002\u0002\u0351\u034f\u0003\u0002\u0002\u0002\u0352\u0348\u0003", + "\u0002\u0002\u0002\u0352\u0353\u0003\u0002\u0002\u0002\u0353\u035e\u0003", + "\u0002\u0002\u0002\u0354\u0355\u0007<\u0002\u0002\u0355\u0356\u0007", + "\u000f\u0002\u0002\u0356\u035b\u0005\u0088E\u0002\u0357\u0358\u0007", + "\u0129\u0002\u0002\u0358\u035a\u0005\u0088E\u0002\u0359\u0357\u0003", + "\u0002\u0002\u0002\u035a\u035d\u0003\u0002\u0002\u0002\u035b\u0359\u0003", + "\u0002\u0002\u0002\u035b\u035c\u0003\u0002\u0002\u0002\u035c\u035f\u0003", + "\u0002\u0002\u0002\u035d\u035b\u0003\u0002\u0002\u0002\u035e\u0354\u0003", + "\u0002\u0002\u0002\u035e\u035f\u0003\u0002\u0002\u0002\u035f\u0361\u0003", + "\u0002\u0002\u0002\u0360\u0362\u0005\u0084C\u0002\u0361\u0360\u0003", + "\u0002\u0002\u0002\u0361\u0362\u0003\u0002\u0002\u0002\u0362\u0363\u0003", + "\u0002\u0002\u0002\u0363\u0364\u0007\u0128\u0002\u0002\u0364\u0081\u0003", + "\u0002\u0002\u0002\u0365\u0367\u0005\u0088E\u0002\u0366\u0368\t\u000b", + "\u0002\u0002\u0367\u0366\u0003\u0002\u0002\u0002\u0367\u0368\u0003\u0002", + "\u0002\u0002\u0368\u036b\u0003\u0002\u0002\u0002\u0369\u036a\u0007$", + "\u0002\u0002\u036a\u036c\t\f\u0002\u0002\u036b\u0369\u0003\u0002\u0002", + "\u0002\u036b\u036c\u0003\u0002\u0002\u0002\u036c\u0083\u0003\u0002\u0002", + "\u0002\u036d\u036e\u0007=\u0002\u0002\u036e\u0372\u0005\u0086D\u0002", + "\u036f\u0370\u0007>\u0002\u0002\u0370\u0372\u0005\u0086D\u0002\u0371", + "\u036d\u0003\u0002\u0002\u0002\u0371\u036f\u0003\u0002\u0002\u0002\u0372", + "\u0085\u0003\u0002\u0002\u0002\u0373\u0374\u0005\u0088E\u0002\u0374", + "\u0375\u0007@\u0002\u0002\u0375\u0087\u0003\u0002\u0002\u0002\u0376", + "\u0377\u0005\u008aF\u0002\u0377\u0089\u0003\u0002\u0002\u0002\u0378", + "\u0379\bF\u0001\u0002\u0379\u037a\u0007\u001b\u0002\u0002\u037a\u0385", + "\u0005\u008aF\u0007\u037b\u037c\u0007\u001d\u0002\u0002\u037c\u037d", + "\u0007\u0127\u0002\u0002\u037d\u037e\u0005Z.\u0002\u037e\u037f\u0007", + "\u0128\u0002\u0002\u037f\u0385\u0003\u0002\u0002\u0002\u0380\u0382\u0005", + "\u008eH\u0002\u0381\u0383\u0005\u008cG\u0002\u0382\u0381\u0003\u0002", + "\u0002\u0002\u0382\u0383\u0003\u0002\u0002\u0002\u0383\u0385\u0003\u0002", + "\u0002\u0002\u0384\u0378\u0003\u0002\u0002\u0002\u0384\u037b\u0003\u0002", + "\u0002\u0002\u0384\u0380\u0003\u0002\u0002\u0002\u0385\u038e\u0003\u0002", + "\u0002\u0002\u0386\u0387\f\u0004\u0002\u0002\u0387\u0388\u0007\u0019", + "\u0002\u0002\u0388\u038d\u0005\u008aF\u0005\u0389\u038a\f\u0003\u0002", + "\u0002\u038a\u038b\u0007\u0018\u0002\u0002\u038b\u038d\u0005\u008aF", + "\u0004\u038c\u0386\u0003\u0002\u0002\u0002\u038c\u0389\u0003\u0002\u0002", + "\u0002\u038d\u0390\u0003\u0002\u0002\u0002\u038e\u038c\u0003\u0002\u0002", + "\u0002\u038e\u038f\u0003\u0002\u0002\u0002\u038f\u008b\u0003\u0002\u0002", + "\u0002\u0390\u038e\u0003\u0002\u0002\u0002\u0391\u0393\u0007\u001b\u0002", + "\u0002\u0392\u0391\u0003\u0002\u0002\u0002\u0392\u0393\u0003\u0002\u0002", + "\u0002\u0393\u0394\u0003\u0002\u0002\u0002\u0394\u0395\u0007\u001e\u0002", + "\u0002\u0395\u0396\u0005\u008eH\u0002\u0396\u0397\u0007\u0019\u0002", + "\u0002\u0397\u0398\u0005\u008eH\u0002\u0398\u03e5\u0003\u0002\u0002", + "\u0002\u0399\u039b\u0007\u001b\u0002\u0002\u039a\u0399\u0003\u0002\u0002", + "\u0002\u039a\u039b\u0003\u0002\u0002\u0002\u039b\u039c\u0003\u0002\u0002", + "\u0002\u039c\u039d\u0007\u001a\u0002\u0002\u039d\u039e\u0007\u0127\u0002", + "\u0002\u039e\u03a3\u0005\u0088E\u0002\u039f\u03a0\u0007\u0129\u0002", + "\u0002\u03a0\u03a2\u0005\u0088E\u0002\u03a1\u039f\u0003\u0002\u0002", + "\u0002\u03a2\u03a5\u0003\u0002\u0002\u0002\u03a3\u03a1\u0003\u0002\u0002", + "\u0002\u03a3\u03a4\u0003\u0002\u0002\u0002\u03a4\u03a6\u0003\u0002\u0002", + "\u0002\u03a5\u03a3\u0003\u0002\u0002\u0002\u03a6\u03a7\u0007\u0128\u0002", + "\u0002\u03a7\u03e5\u0003\u0002\u0002\u0002\u03a8\u03aa\u0007\u001b\u0002", + "\u0002\u03a9\u03a8\u0003\u0002\u0002\u0002\u03a9\u03aa\u0003\u0002\u0002", + "\u0002\u03aa\u03ab\u0003\u0002\u0002\u0002\u03ab\u03ac\u0007\u001a\u0002", + "\u0002\u03ac\u03ad\u0007\u0127\u0002\u0002\u03ad\u03ae\u0005Z.\u0002", + "\u03ae\u03af\u0007\u0128\u0002\u0002\u03af\u03e5\u0003\u0002\u0002\u0002", + "\u03b0\u03b1\u0007\u001d\u0002\u0002\u03b1\u03b2\u0007\u0127\u0002\u0002", + "\u03b2\u03b3\u0005Z.\u0002\u03b3\u03b4\u0007\u0128\u0002\u0002\u03b4", + "\u03e5\u0003\u0002\u0002\u0002\u03b5\u03b7\u0007\u001b\u0002\u0002\u03b6", + "\u03b5\u0003\u0002\u0002\u0002\u03b6\u03b7\u0003\u0002\u0002\u0002\u03b7", + "\u03b8\u0003\u0002\u0002\u0002\u03b8\u03b9\u0007 \u0002\u0002\u03b9", + "\u03e5\u0005\u008eH\u0002\u03ba\u03bc\u0007\u001b\u0002\u0002\u03bb", + "\u03ba\u0003\u0002\u0002\u0002\u03bb\u03bc\u0003\u0002\u0002\u0002\u03bc", + "\u03bd\u0003\u0002\u0002\u0002\u03bd\u03be\u0007\u001f\u0002\u0002\u03be", + "\u03cc\t\r\u0002\u0002\u03bf\u03c0\u0007\u0127\u0002\u0002\u03c0\u03cd", + "\u0007\u0128\u0002\u0002\u03c1\u03c2\u0007\u0127\u0002\u0002\u03c2\u03c7", + "\u0005\u0088E\u0002\u03c3\u03c4\u0007\u0129\u0002\u0002\u03c4\u03c6", + "\u0005\u0088E\u0002\u03c5\u03c3\u0003\u0002\u0002\u0002\u03c6\u03c9", + "\u0003\u0002\u0002\u0002\u03c7\u03c5\u0003\u0002\u0002\u0002\u03c7\u03c8", + "\u0003\u0002\u0002\u0002\u03c8\u03ca\u0003\u0002\u0002\u0002\u03c9\u03c7", + "\u0003\u0002\u0002\u0002\u03ca\u03cb\u0007\u0128\u0002\u0002\u03cb\u03cd", + "\u0003\u0002\u0002\u0002\u03cc\u03bf\u0003\u0002\u0002\u0002\u03cc\u03c1", + "\u0003\u0002\u0002\u0002\u03cd\u03e5\u0003\u0002\u0002\u0002\u03ce\u03d0", + "\u0007\u001b\u0002\u0002\u03cf\u03ce\u0003\u0002\u0002\u0002\u03cf\u03d0", + "\u0003\u0002\u0002\u0002\u03d0\u03d1\u0003\u0002\u0002\u0002\u03d1\u03d2", + "\u0007\u001f\u0002\u0002\u03d2\u03e5\u0005\u008eH\u0002\u03d3\u03d5", + "\u0007!\u0002\u0002\u03d4\u03d6\u0007\u001b\u0002\u0002\u03d5\u03d4", + "\u0003\u0002\u0002\u0002\u03d5\u03d6\u0003\u0002\u0002\u0002\u03d6\u03d7", + "\u0003\u0002\u0002\u0002\u03d7\u03e5\u0007\u011a\u0002\u0002\u03d8\u03da", + "\u0007!\u0002\u0002\u03d9\u03db\u0007\u001b\u0002\u0002\u03da\u03d9", + "\u0003\u0002\u0002\u0002\u03da\u03db\u0003\u0002\u0002\u0002\u03db\u03dc", + "\u0003\u0002\u0002\u0002\u03dc\u03e5\t\u000e\u0002\u0002\u03dd\u03df", + "\u0007!\u0002\u0002\u03de\u03e0\u0007\u001b\u0002\u0002\u03df\u03de", + "\u0003\u0002\u0002\u0002\u03df\u03e0\u0003\u0002\u0002\u0002\u03e0\u03e1", + "\u0003\u0002\u0002\u0002\u03e1\u03e2\u0007\f\u0002\u0002\u03e2\u03e3", + "\u0007\u0007\u0002\u0002\u03e3\u03e5\u0005\u008eH\u0002\u03e4\u0392", + "\u0003\u0002\u0002\u0002\u03e4\u039a\u0003\u0002\u0002\u0002\u03e4\u03a9", + "\u0003\u0002\u0002\u0002\u03e4\u03b0\u0003\u0002\u0002\u0002\u03e4\u03b6", + "\u0003\u0002\u0002\u0002\u03e4\u03bb\u0003\u0002\u0002\u0002\u03e4\u03cf", + "\u0003\u0002\u0002\u0002\u03e4\u03d3\u0003\u0002\u0002\u0002\u03e4\u03d8", + "\u0003\u0002\u0002\u0002\u03e4\u03dd\u0003\u0002\u0002\u0002\u03e5\u008d", + "\u0003\u0002\u0002\u0002\u03e6\u03e7\bH\u0001\u0002\u03e7\u03eb\u0005", + "\u0090I\u0002\u03e8\u03e9\t\u000f\u0002\u0002\u03e9\u03eb\u0005\u008e", + "H\t\u03ea\u03e6\u0003\u0002\u0002\u0002\u03ea\u03e8\u0003\u0002\u0002", + "\u0002\u03eb\u0401\u0003\u0002\u0002\u0002\u03ec\u03ed\f\b\u0002\u0002", + "\u03ed\u03ee\t\u0010\u0002\u0002\u03ee\u0400\u0005\u008eH\t\u03ef\u03f0", + "\f\u0007\u0002\u0002\u03f0\u03f1\t\u0011\u0002\u0002\u03f1\u0400\u0005", + "\u008eH\b\u03f2\u03f3\f\u0006\u0002\u0002\u03f3\u03f4\u0007\u0122\u0002", + "\u0002\u03f4\u0400\u0005\u008eH\u0007\u03f5\u03f6\f\u0005\u0002\u0002", + "\u03f6\u03f7\u0007\u0123\u0002\u0002\u03f7\u0400\u0005\u008eH\u0006", + "\u03f8\u03f9\f\u0004\u0002\u0002\u03f9\u03fa\u0007\u0121\u0002\u0002", + "\u03fa\u0400\u0005\u008eH\u0005\u03fb\u03fc\f\u0003\u0002\u0002\u03fc", + "\u03fd\u0005\u00d0i\u0002\u03fd\u03fe\u0005\u008eH\u0004\u03fe\u0400", + "\u0003\u0002\u0002\u0002\u03ff\u03ec\u0003\u0002\u0002\u0002\u03ff\u03ef", + "\u0003\u0002\u0002\u0002\u03ff\u03f2\u0003\u0002\u0002\u0002\u03ff\u03f5", + "\u0003\u0002\u0002\u0002\u03ff\u03f8\u0003\u0002\u0002\u0002\u03ff\u03fb", + "\u0003\u0002\u0002\u0002\u0400\u0403\u0003\u0002\u0002\u0002\u0401\u03ff", + "\u0003\u0002\u0002\u0002\u0401\u0402\u0003\u0002\u0002\u0002\u0402\u008f", + "\u0003\u0002\u0002\u0002\u0403\u0401\u0003\u0002\u0002\u0002\u0404\u0405", + "\bI\u0001\u0002\u0405\u0407\u0007)\u0002\u0002\u0406\u0408\u0005\u00b8", + "]\u0002\u0407\u0406\u0003\u0002\u0002\u0002\u0408\u0409\u0003\u0002", + "\u0002\u0002\u0409\u0407\u0003\u0002\u0002\u0002\u0409\u040a\u0003\u0002", + "\u0002\u0002\u040a\u040d\u0003\u0002\u0002\u0002\u040b\u040c\u0007,", + "\u0002\u0002\u040c\u040e\u0005\u0088E\u0002\u040d\u040b\u0003\u0002", + "\u0002\u0002\u040d\u040e\u0003\u0002\u0002\u0002\u040e\u040f\u0003\u0002", + "\u0002\u0002\u040f\u0410\u0007-\u0002\u0002\u0410\u0460\u0003\u0002", + "\u0002\u0002\u0411\u0412\u0007)\u0002\u0002\u0412\u0414\u0005\u0088", + "E\u0002\u0413\u0415\u0005\u00b8]\u0002\u0414\u0413\u0003\u0002\u0002", + "\u0002\u0415\u0416\u0003\u0002\u0002\u0002\u0416\u0414\u0003\u0002\u0002", + "\u0002\u0416\u0417\u0003\u0002\u0002\u0002\u0417\u041a\u0003\u0002\u0002", + "\u0002\u0418\u0419\u0007,\u0002\u0002\u0419\u041b\u0005\u0088E\u0002", + "\u041a\u0418\u0003\u0002\u0002\u0002\u041a\u041b\u0003\u0002\u0002\u0002", + "\u041b\u041c\u0003\u0002\u0002\u0002\u041c\u041d\u0007-\u0002\u0002", + "\u041d\u0460\u0003\u0002\u0002\u0002\u041e\u041f\u0007V\u0002\u0002", + "\u041f\u0420\u0007\u0127\u0002\u0002\u0420\u0421\u0005\u0088E\u0002", + "\u0421\u0422\u0007\t\u0002\u0002\u0422\u0423\u0005 \u0011\u0002\u0423", + "\u0424\u0007\u0128\u0002\u0002\u0424\u0460\u0003\u0002\u0002\u0002\u0425", + "\u0426\u0007C\u0002\u0002\u0426\u0427\u0007\u0127\u0002\u0002\u0427", + "\u042a\u0005\u0088E\u0002\u0428\u0429\u0007r\u0002\u0002\u0429\u042b", + "\u0007$\u0002\u0002\u042a\u0428\u0003\u0002\u0002\u0002\u042a\u042b", + "\u0003\u0002\u0002\u0002\u042b\u042c\u0003\u0002\u0002\u0002\u042c\u042d", + "\u0007\u0128\u0002\u0002\u042d\u0460\u0003\u0002\u0002\u0002\u042e\u042f", + "\u0007E\u0002\u0002\u042f\u0430\u0007\u0127\u0002\u0002\u0430\u0433", + "\u0005\u0088E\u0002\u0431\u0432\u0007r\u0002\u0002\u0432\u0434\u0007", + "$\u0002\u0002\u0433\u0431\u0003\u0002\u0002\u0002\u0433\u0434\u0003", + "\u0002\u0002\u0002\u0434\u0435\u0003\u0002\u0002\u0002\u0435\u0436\u0007", + "\u0128\u0002\u0002\u0436\u0460\u0003\u0002\u0002\u0002\u0437\u0438\u0007", + "w\u0002\u0002\u0438\u0439\u0007\u0127\u0002\u0002\u0439\u043a\u0005", + "\u008eH\u0002\u043a\u043b\u0007\u001a\u0002\u0002\u043b\u043c\u0005", + "\u008eH\u0002\u043c\u043d\u0007\u0128\u0002\u0002\u043d\u0460\u0003", + "\u0002\u0002\u0002\u043e\u0460\u0005\u00dan\u0002\u043f\u0460\u0007", + "\u0130\u0002\u0002\u0440\u0441\u0005\u00bc_\u0002\u0441\u0442\u0007", + "\u0124\u0002\u0002\u0442\u0443\u0007\u0130\u0002\u0002\u0443\u0460\u0003", + "\u0002\u0002\u0002\u0444\u0445\u0007\u0127\u0002\u0002\u0445\u0446\u0005", + "Z.\u0002\u0446\u0447\u0007\u0128\u0002\u0002\u0447\u0460\u0003\u0002", + "\u0002\u0002\u0448\u0449\u0005\u0092J\u0002\u0449\u0455\u0007\u0127", + "\u0002\u0002\u044a\u044c\u0005\u00e2r\u0002\u044b\u044a\u0003\u0002", + "\u0002\u0002\u044b\u044c\u0003\u0002\u0002\u0002\u044c\u044d\u0003\u0002", + "\u0002\u0002\u044d\u0452\u0005\u0088E\u0002\u044e\u044f\u0007\u0129", + "\u0002\u0002\u044f\u0451\u0005\u0088E\u0002\u0450\u044e\u0003\u0002", + "\u0002\u0002\u0451\u0454\u0003\u0002\u0002\u0002\u0452\u0450\u0003\u0002", + "\u0002\u0002\u0452\u0453\u0003\u0002\u0002\u0002\u0453\u0456\u0003\u0002", + "\u0002\u0002\u0454\u0452\u0003\u0002\u0002\u0002\u0455\u044b\u0003\u0002", + "\u0002\u0002\u0455\u0456\u0003\u0002\u0002\u0002\u0456\u0457\u0003\u0002", + "\u0002\u0002\u0457\u0458\u0007\u0128\u0002\u0002\u0458\u0460\u0003\u0002", + "\u0002\u0002\u0459\u0460\u0005\u00b0Y\u0002\u045a\u0460\u0005\u0094", + "K\u0002\u045b\u045c\u0007\u0127\u0002\u0002\u045c\u045d\u0005\u0088", + "E\u0002\u045d\u045e\u0007\u0128\u0002\u0002\u045e\u0460\u0003\u0002", + "\u0002\u0002\u045f\u0404\u0003\u0002\u0002\u0002\u045f\u0411\u0003\u0002", + "\u0002\u0002\u045f\u041e\u0003\u0002\u0002\u0002\u045f\u0425\u0003\u0002", + "\u0002\u0002\u045f\u042e\u0003\u0002\u0002\u0002\u045f\u0437\u0003\u0002", + "\u0002\u0002\u045f\u043e\u0003\u0002\u0002\u0002\u045f\u043f\u0003\u0002", + "\u0002\u0002\u045f\u0440\u0003\u0002\u0002\u0002\u045f\u0444\u0003\u0002", + "\u0002\u0002\u045f\u0448\u0003\u0002\u0002\u0002\u045f\u0459\u0003\u0002", + "\u0002\u0002\u045f\u045a\u0003\u0002\u0002\u0002\u045f\u045b\u0003\u0002", + "\u0002\u0002\u0460\u0468\u0003\u0002\u0002\u0002\u0461\u0462\f\u0006", + "\u0002\u0002\u0462\u0463\u0007\u0125\u0002\u0002\u0463\u0464\u0005\u008e", + "H\u0002\u0464\u0465\u0007\u0126\u0002\u0002\u0465\u0467\u0003\u0002", + "\u0002\u0002\u0466\u0461\u0003\u0002\u0002\u0002\u0467\u046a\u0003\u0002", + "\u0002\u0002\u0468\u0466\u0003\u0002\u0002\u0002\u0468\u0469\u0003\u0002", + "\u0002\u0002\u0469\u0091\u0003\u0002\u0002\u0002\u046a\u0468\u0003\u0002", + "\u0002\u0002\u046b\u046c\u0005\u00bc_\u0002\u046c\u0093\u0003\u0002", + "\u0002\u0002\u046d\u046e\u0005\u00bc_\u0002\u046e\u0095\u0003\u0002", + "\u0002\u0002\u046f\u0472\u0005\u00b0Y\u0002\u0470\u0472\u0005\u0094", + "K\u0002\u0471\u046f\u0003\u0002\u0002\u0002\u0471\u0470\u0003\u0002", + "\u0002\u0002\u0472\u0097\u0003\u0002\u0002\u0002\u0473\u0476\u0007(", + "\u0002\u0002\u0474\u0477\u0005\u009aN\u0002\u0475\u0477\u0005\u009e", + "P\u0002\u0476\u0474\u0003\u0002\u0002\u0002\u0476\u0475\u0003\u0002", + "\u0002\u0002\u0476\u0477\u0003\u0002\u0002\u0002\u0477\u0099\u0003\u0002", + "\u0002\u0002\u0478\u047a\u0005\u009cO\u0002\u0479\u047b\u0005\u00a0", + "Q\u0002\u047a\u0479\u0003\u0002\u0002\u0002\u047a\u047b\u0003\u0002", + "\u0002\u0002\u047b\u009b\u0003\u0002\u0002\u0002\u047c\u047d\u0005\u00a2", + "R\u0002\u047d\u047e\u0005\u00b0Y\u0002\u047e\u0480\u0003\u0002\u0002", + "\u0002\u047f\u047c\u0003\u0002\u0002\u0002\u0480\u0481\u0003\u0002\u0002", + "\u0002\u0481\u047f\u0003\u0002\u0002\u0002\u0481\u0482\u0003\u0002\u0002", + "\u0002\u0482\u009d\u0003\u0002\u0002\u0002\u0483\u0486\u0005\u00a0Q", + "\u0002\u0484\u0487\u0005\u009cO\u0002\u0485\u0487\u0005\u00a0Q\u0002", + "\u0486\u0484\u0003\u0002\u0002\u0002\u0486\u0485\u0003\u0002\u0002\u0002", + "\u0486\u0487\u0003\u0002\u0002\u0002\u0487\u009f\u0003\u0002\u0002\u0002", + "\u0488\u0489\u0005\u00a2R\u0002\u0489\u048a\u0005\u00b0Y\u0002\u048a", + "\u048b\u0007c\u0002\u0002\u048b\u048c\u0005\u00b0Y\u0002\u048c\u00a1", + "\u0003\u0002\u0002\u0002\u048d\u048f\t\u0012\u0002\u0002\u048e\u048d", + "\u0003\u0002\u0002\u0002\u048e\u048f\u0003\u0002\u0002\u0002\u048f\u0490", + "\u0003\u0002\u0002\u0002\u0490\u0493\t\u0013\u0002\u0002\u0491\u0493", + "\u0007\u013a\u0002\u0002\u0492\u048e\u0003\u0002\u0002\u0002\u0492\u0491", + "\u0003\u0002\u0002\u0002\u0493\u00a3\u0003\u0002\u0002\u0002\u0494\u0496", + "\u0007\t\u0002\u0002\u0495\u0494\u0003\u0002\u0002\u0002\u0495\u0496", + "\u0003\u0002\u0002\u0002\u0496\u0497\u0003\u0002\u0002\u0002\u0497\u0499", + "\u0005\u00b2Z\u0002\u0498\u049a\u0005\u00acW\u0002\u0499\u0498\u0003", + "\u0002\u0002\u0002\u0499\u049a\u0003\u0002\u0002\u0002\u049a\u00a5\u0003", + "\u0002\u0002\u0002\u049b\u049d\u0007\t\u0002\u0002\u049c\u049b\u0003", + "\u0002\u0002\u0002\u049c\u049d\u0003\u0002\u0002\u0002\u049d\u049e\u0003", + "\u0002\u0002\u0002\u049e\u04a0\u0005\u00b2Z\u0002\u049f\u04a1\u0005", + "\u00acW\u0002\u04a0\u049f\u0003\u0002\u0002\u0002\u04a0\u04a1\u0003", + "\u0002\u0002\u0002\u04a1\u00a7\u0003\u0002\u0002\u0002\u04a2\u04a3\u0005", + "\u00b0Y\u0002\u04a3\u04a4\u0005\u00aaV\u0002\u04a4\u00a9\u0003\u0002", + "\u0002\u0002\u04a5\u04a6\u0007\u0082\u0002\u0002\u04a6\u04a8\u0005\u00b0", + "Y\u0002\u04a7\u04a5\u0003\u0002\u0002\u0002\u04a8\u04a9\u0003\u0002", + "\u0002\u0002\u04a9\u04a7\u0003\u0002\u0002\u0002\u04a9\u04aa\u0003\u0002", + "\u0002\u0002\u04aa\u04ad\u0003\u0002\u0002\u0002\u04ab\u04ad\u0003\u0002", + "\u0002\u0002\u04ac\u04a7\u0003\u0002\u0002\u0002\u04ac\u04ab\u0003\u0002", + "\u0002\u0002\u04ad\u00ab\u0003\u0002\u0002\u0002\u04ae\u04af\u0007\u0127", + "\u0002\u0002\u04af\u04b0\u0005\u00aeX\u0002\u04b0\u04b1\u0007\u0128", + "\u0002\u0002\u04b1\u00ad\u0003\u0002\u0002\u0002\u04b2\u04b7\u0005\u00b0", + "Y\u0002\u04b3\u04b4\u0007\u0129\u0002\u0002\u04b4\u04b6\u0005\u00b0", + "Y\u0002\u04b5\u04b3\u0003\u0002\u0002\u0002\u04b6\u04b9\u0003\u0002", + "\u0002\u0002\u04b7\u04b5\u0003\u0002\u0002\u0002\u04b7\u04b8\u0003\u0002", + "\u0002\u0002\u04b8\u00af\u0003\u0002\u0002\u0002\u04b9\u04b7\u0003\u0002", + "\u0002\u0002\u04ba\u04bb\u0005\u00b2Z\u0002\u04bb\u00b1\u0003\u0002", + "\u0002\u0002\u04bc\u04bf\u0005\u00b4[\u0002\u04bd\u04bf\u0005\u00b6", + "\\\u0002\u04be\u04bc\u0003\u0002\u0002\u0002\u04be\u04bd\u0003\u0002", + "\u0002\u0002\u04bf\u00b3\u0003\u0002\u0002\u0002\u04c0\u04c1\t\u0014", + "\u0002\u0002\u04c1\u00b5\u0003\u0002\u0002\u0002\u04c2\u04c3\u0007\u013a", + "\u0002\u0002\u04c3\u00b7\u0003\u0002\u0002\u0002\u04c4\u04c5\u0007*", + "\u0002\u0002\u04c5\u04c6\u0005\u0088E\u0002\u04c6\u04c7\u0007+\u0002", + "\u0002\u04c7\u04c8\u0005\u0088E\u0002\u04c8\u00b9\u0003\u0002\u0002", + "\u0002\u04c9\u04ce\u0005\u00bc_\u0002\u04ca\u04cb\u0007\u0129\u0002", + "\u0002\u04cb\u04cd\u0005\u00bc_\u0002\u04cc\u04ca\u0003\u0002\u0002", + "\u0002\u04cd\u04d0\u0003\u0002\u0002\u0002\u04ce\u04cc\u0003\u0002\u0002", + "\u0002\u04ce\u04cf\u0003\u0002\u0002\u0002\u04cf\u00bb\u0003\u0002\u0002", + "\u0002\u04d0\u04ce\u0003\u0002\u0002\u0002\u04d1\u04d5\u0007\u013e\u0002", + "\u0002\u04d2\u04d4\u0007\u0138\u0002\u0002\u04d3\u04d2\u0003\u0002\u0002", + "\u0002\u04d4\u04d7\u0003\u0002\u0002\u0002\u04d5\u04d6\u0003\u0002\u0002", + "\u0002\u04d5\u04d3\u0003\u0002\u0002\u0002\u04d6\u00bd\u0003\u0002\u0002", + "\u0002\u04d7\u04d5\u0003\u0002\u0002\u0002\u04d8\u04dc\t\u0015\u0002", + "\u0002\u04d9\u04db\t\u0016\u0002\u0002\u04da\u04d9\u0003\u0002\u0002", + "\u0002\u04db\u04de\u0003\u0002\u0002\u0002\u04dc\u04dd\u0003\u0002\u0002", + "\u0002\u04dc\u04da\u0003\u0002\u0002\u0002\u04dd\u00bf\u0003\u0002\u0002", + "\u0002\u04de\u04dc\u0003\u0002\u0002\u0002\u04df\u04e0\u0007F\u0002", + "\u0002\u04e0\u04e1\u0005\u00c6d\u0002\u04e1\u00c1\u0003\u0002\u0002", + "\u0002\u04e2\u04e3\u0007v\u0002\u0002\u04e3\u04e4\u0007\u001b\u0002", + "\u0002\u04e4\u04e5\u0007\u001d\u0002\u0002\u04e5\u00c3\u0003\u0002\u0002", + "\u0002\u04e6\u04e7\u0007v\u0002\u0002\u04e7\u04e8\u0007\u001d\u0002", + "\u0002\u04e8\u00c5\u0003\u0002\u0002\u0002\u04e9\u04ea\u0007\u0127\u0002", + "\u0002\u04ea\u04ef\u0005\u00c8e\u0002\u04eb\u04ec\u0007\u0129\u0002", + "\u0002\u04ec\u04ee\u0005\u00c8e\u0002\u04ed\u04eb\u0003\u0002\u0002", + "\u0002\u04ee\u04f1\u0003\u0002\u0002\u0002\u04ef\u04ed\u0003\u0002\u0002", + "\u0002\u04ef\u04f0\u0003\u0002\u0002\u0002\u04f0\u04f2\u0003\u0002\u0002", + "\u0002\u04f1\u04ef\u0003\u0002\u0002\u0002\u04f2\u04f3\u0007\u0128\u0002", + "\u0002\u04f3\u00c7\u0003\u0002\u0002\u0002\u04f4\u04f9\u0005\u00caf", + "\u0002\u04f5\u04f7\u0007\u011c\u0002\u0002\u04f6\u04f5\u0003\u0002\u0002", + "\u0002\u04f6\u04f7\u0003\u0002\u0002\u0002\u04f7\u04f8\u0003\u0002\u0002", + "\u0002\u04f8\u04fa\u0005\u00ccg\u0002\u04f9\u04f6\u0003\u0002\u0002", + "\u0002\u04f9\u04fa\u0003\u0002\u0002\u0002\u04fa\u00c9\u0003\u0002\u0002", + "\u0002\u04fb\u04ff\u0005\u00b0Y\u0002\u04fc\u04ff\u0005\u0094K\u0002", + "\u04fd\u04ff\u0007\u013a\u0002\u0002\u04fe\u04fb\u0003\u0002\u0002\u0002", + "\u04fe\u04fc\u0003\u0002\u0002\u0002\u04fe\u04fd\u0003\u0002\u0002\u0002", + "\u04ff\u00cb\u0003\u0002\u0002\u0002\u0500\u0505\u0007\u013b\u0002\u0002", + "\u0501\u0505\u0007\u013c\u0002\u0002\u0502\u0505\u0005\u00e0q\u0002", + "\u0503\u0505\u0007\u013a\u0002\u0002\u0504\u0500\u0003\u0002\u0002\u0002", + "\u0504\u0501\u0003\u0002\u0002\u0002\u0504\u0502\u0003\u0002\u0002\u0002", + "\u0504\u0503\u0003\u0002\u0002\u0002\u0505\u00cd\u0003\u0002\u0002\u0002", + "\u0506\u050d\u0007\u0019\u0002\u0002\u0507\u0508\u0007\u0122\u0002\u0002", + "\u0508\u050d\u0007\u0122\u0002\u0002\u0509\u050d\u0007\u0018\u0002\u0002", + "\u050a\u050b\u0007\u0121\u0002\u0002\u050b\u050d\u0007\u0121\u0002\u0002", + "\u050c\u0506\u0003\u0002\u0002\u0002\u050c\u0507\u0003\u0002\u0002\u0002", + "\u050c\u0509\u0003\u0002\u0002\u0002\u050c\u050a\u0003\u0002\u0002\u0002", + "\u050d\u00cf\u0003\u0002\u0002\u0002\u050e\u051d\u0007\u011c\u0002\u0002", + "\u050f\u051d\u0007\u011d\u0002\u0002\u0510\u051d\u0007\u011e\u0002\u0002", + "\u0511\u0512\u0007\u011e\u0002\u0002\u0512\u051d\u0007\u011c\u0002\u0002", + "\u0513\u0514\u0007\u011d\u0002\u0002\u0514\u051d\u0007\u011c\u0002\u0002", + "\u0515\u0516\u0007\u011e\u0002\u0002\u0516\u051d\u0007\u011d\u0002\u0002", + "\u0517\u0518\u0007\u011f\u0002\u0002\u0518\u051d\u0007\u011c\u0002\u0002", + "\u0519\u051a\u0007\u011e\u0002\u0002\u051a\u051b\u0007\u011c\u0002\u0002", + "\u051b\u051d\u0007\u011d\u0002\u0002\u051c\u050e\u0003\u0002\u0002\u0002", + "\u051c\u050f\u0003\u0002\u0002\u0002\u051c\u0510\u0003\u0002\u0002\u0002", + "\u051c\u0511\u0003\u0002\u0002\u0002\u051c\u0513\u0003\u0002\u0002\u0002", + "\u051c\u0515\u0003\u0002\u0002\u0002\u051c\u0517\u0003\u0002\u0002\u0002", + "\u051c\u0519\u0003\u0002\u0002\u0002\u051d\u00d1\u0003\u0002\u0002\u0002", + "\u051e\u051f\u0007\u011e\u0002\u0002\u051f\u0526\u0007\u011e\u0002\u0002", + "\u0520\u0521\u0007\u011d\u0002\u0002\u0521\u0526\u0007\u011d\u0002\u0002", + "\u0522\u0526\u0007\u0122\u0002\u0002\u0523\u0526\u0007\u0123\u0002\u0002", + "\u0524\u0526\u0007\u0121\u0002\u0002\u0525\u051e\u0003\u0002\u0002\u0002", + "\u0525\u0520\u0003\u0002\u0002\u0002\u0525\u0522\u0003\u0002\u0002\u0002", + "\u0525\u0523\u0003\u0002\u0002\u0002\u0525\u0524\u0003\u0002\u0002\u0002", + "\u0526\u00d3\u0003\u0002\u0002\u0002\u0527\u0528\t\u0017\u0002\u0002", + "\u0528\u00d5\u0003\u0002\u0002\u0002\u0529\u052a\t\u0018\u0002\u0002", + "\u052a\u00d7\u0003\u0002\u0002\u0002\u052b\u052c\u0005\u00bc_\u0002", + "\u052c\u00d9\u0003\u0002\u0002\u0002\u052d\u053a\u0005\u00dco\u0002", + "\u052e\u053a\u0005\u00dep\u0002\u052f\u053a\u0005\u0098M\u0002\u0530", + "\u0531\u0007\u0132\u0002\u0002\u0531\u053a\u0005\u00dep\u0002\u0532", + "\u053a\u0005\u00e0q\u0002\u0533\u053a\u0007\u013c\u0002\u0002\u0534", + "\u053a\u0007\u013d\u0002\u0002\u0535\u0537\u0007\u001b\u0002\u0002\u0536", + "\u0535\u0003\u0002\u0002\u0002\u0536\u0537\u0003\u0002\u0002\u0002\u0537", + "\u0538\u0003\u0002\u0002\u0002\u0538\u053a\u0007\u011a\u0002\u0002\u0539", + "\u052d\u0003\u0002\u0002\u0002\u0539\u052e\u0003\u0002\u0002\u0002\u0539", + "\u052f\u0003\u0002\u0002\u0002\u0539\u0530\u0003\u0002\u0002\u0002\u0539", + "\u0532\u0003\u0002\u0002\u0002\u0539\u0533\u0003\u0002\u0002\u0002\u0539", + "\u0534\u0003\u0002\u0002\u0002\u0539\u0536\u0003\u0002\u0002\u0002\u053a", + "\u00db\u0003\u0002\u0002\u0002\u053b\u053c\u0007\u013a\u0002\u0002\u053c", + "\u00dd\u0003\u0002\u0002\u0002\u053d\u053e\u0007\u013b\u0002\u0002\u053e", + "\u00df\u0003\u0002\u0002\u0002\u053f\u0540\t\u000e\u0002\u0002\u0540", + "\u00e1\u0003\u0002\u0002\u0002\u0541\u0542\t\u0019\u0002\u0002\u0542", + "\u00e3\u0003\u0002\u0002\u0002\u009e\u00ec\u00ef\u00f1\u00fa\u010a\u010e", + "\u011a\u012a\u012f\u0133\u0137\u013b\u013e\u0142\u0147\u014a\u014e\u0155", + "\u0169\u017f\u018c\u0191\u0195\u019f\u01a9\u01ad\u01b3\u01b7\u01bb\u01be", + "\u01c7\u01cb\u01d2\u01d9\u01eb\u01ef\u01f6\u01fb\u0202\u0206\u020a\u020e", + "\u0216\u021a\u0222\u0226\u0231\u023a\u0247\u024a\u024e\u0251\u0253\u0258", + "\u025c\u025f\u0263\u026c\u0272\u0275\u0278\u027b\u027f\u0287\u028a\u028e", + "\u0291\u029c\u02a1\u02a4\u02a9\u02ad\u02b2\u02b5\u02c2\u02cd\u02d8\u02dd", + "\u02e9\u02f5\u0301\u030d\u031a\u031f\u032b\u0330\u0335\u033d\u0345\u034f", + "\u0352\u035b\u035e\u0361\u0367\u036b\u0371\u0382\u0384\u038c\u038e\u0392", + "\u039a\u03a3\u03a9\u03b6\u03bb\u03c7\u03cc\u03cf\u03d5\u03da\u03df\u03e4", + "\u03ea\u03ff\u0401\u0409\u040d\u0416\u041a\u042a\u0433\u044b\u0452\u0455", + "\u045f\u0468\u0471\u0476\u047a\u0481\u0486\u048e\u0492\u0495\u0499\u049c", + "\u04a0\u04a9\u04ac\u04b7\u04be\u04ce\u04d5\u04dc\u04ef\u04f6\u04f9\u04fe", + "\u0504\u050c\u051c\u0525\u0536\u0539"].join(""); var atn = new antlr4.atn.ATNDeserializer().deserialize(serializedATN); @@ -917,10 +951,10 @@ var literalNames = [ null, null, null, null, "'SELECT'", "'FROM'", "'ADD'", "'BUCKETS'", "'SKEWED'", "'STORED'", "'DIRECTORIES'", "'LOCATION'", "'EXCHANGE'", "'ARCHIVE'", "'UNARCHIVE'", "'FILEFORMAT'", "'TOUCH'", "'COMPACT'", "'CONCATENATE'", - "'CHANGE'", "'CASCADE'", "'RESTRICT'", "'CLUSTERED'", - "'SORTED'", "'PURGE'", "'INPUTFORMAT'", "'OUTPUTFORMAT'", - "'DATABASE'", "'DATABASES'", "'DFS'", "'TRUNCATE'", - "'ANALYZE'", "'COMPUTE'", "'LIST'", "'STATISTICS'", + "'CHANGE'", "'CASCADE'", "'CONSTRAINT'", "'RESTRICT'", + "'CLUSTERED'", "'SORTED'", "'PURGE'", "'INPUTFORMAT'", + "'OUTPUTFORMAT'", "'DATABASE'", "'DATABASES'", "'DFS'", + "'TRUNCATE'", "'ANALYZE'", "'COMPUTE'", "'LIST'", "'STATISTICS'", "'PARTITIONED'", "'EXTERNAL'", "'DEFINED'", "'REVOKE'", "'GRANT'", "'LOCK'", "'UNLOCK'", "'MSCK'", "'REPAIR'", "'RECOVER'", "'EXPORT'", "'IMPORT'", "'LOAD'", "'ROLE'", @@ -931,15 +965,16 @@ var literalNames = [ null, null, null, null, "'SELECT'", "'FROM'", "'ADD'", "'NEXT'", "'PAST'", "'PATTERN'", "'WITHIN'", "'DEFINE'", "'WS'", "'SYSTEM'", "'INCLUDING'", "'EXCLUDING'", "'CONSTRAINTS'", "'OVERWRITING'", "'GENERATED'", "'CATALOG'", "'LANGUAGE'", - "'CATALOGS'", "'VIEWS'", "'STRING'", "'ARRAY'", "'MAP'", - "'CHAR'", "'VARCHAR'", "'BINARY'", "'VARBINARY'", "'BYTES'", + "'CATALOGS'", "'VIEWS'", "'PRIMARY'", "'KEY'", "'PERIOD'", + "'SYSTEM_TIME'", "'STRING'", "'ARRAY'", "'MAP'", "'CHAR'", + "'VARCHAR'", "'BINARY'", "'VARBINARY'", "'BYTES'", "'DECIMAL'", "'TINYINT'", "'SMALLINT'", "'INT'", "'BIGINT'", "'FLOAT'", "'DOUBLE'", "'DATE'", "'TIME'", "'TIMESTAMP'", "'MULTISET'", "'BOOLEAN'", "'RAW'", "'ROW'", "'NULL'", - "'='", "'>'", "'<'", "'!'", "'~'", "'|'", "'&'", "'^'", - "'.'", "'['", "']'", "'('", "')'", "','", "';'", "'@'", - "'''", "'\"'", "'`'", "':'", "'*'", "'_'", "'-'", "'+'", - "'%'", "'||'", "'--'", "'/'" ]; + "'DATETIME'", "'='", "'>'", "'<'", "'!'", "'~'", "'|'", + "'&'", "'^'", "'.'", "'['", "']'", "'('", "')'", "','", + "';'", "'@'", "'''", "'\"'", "'`'", "':'", "'*'", "'_'", + "'-'", "'+'", "'%'", "'||'", "'--'", "'/'" ]; var symbolicNames = [ null, "SPACE", "COMMENT_INPUT", "LINE_COMMENT", "SELECT", "FROM", "ADD", "AS", "ALL", "ANY", "DISTINCT", "WHERE", @@ -975,40 +1010,43 @@ var symbolicNames = [ null, "SPACE", "COMMENT_INPUT", "LINE_COMMENT", "SELECT", "DBPROPERTIES", "BUCKETS", "SKEWED", "STORED", "DIRECTORIES", "LOCATION", "EXCHANGE", "ARCHIVE", "UNARCHIVE", "FILEFORMAT", "TOUCH", "COMPACT", "CONCATENATE", "CHANGE", "CASCADE", - "RESTRICT", "CLUSTERED", "SORTED", "PURGE", "INPUTFORMAT", - "OUTPUTFORMAT", "DATABASE", "DATABASES", "DFS", "TRUNCATE", - "ANALYZE", "COMPUTE", "LIST", "STATISTICS", "PARTITIONED", - "EXTERNAL", "DEFINED", "REVOKE", "GRANT", "LOCK", - "UNLOCK", "MSCK", "REPAIR", "RECOVER", "EXPORT", "IMPORT", - "LOAD", "ROLE", "ROLES", "COMPACTIONS", "PRINCIPALS", - "TRANSACTIONS", "INDEX", "INDEXES", "LOCKS", "OPTION", - "ANTI", "LOCAL", "INPATH", "WATERMARK", "UNNEST", - "MATCH_RECOGNIZE", "MEASURES", "ONE", "PER", "MATCH", - "SKIP1", "NEXT", "PAST", "PATTERN", "WITHIN", "DEFINE", - "WS", "SYSTEM", "INCLUDING", "EXCLUDING", "CONSTRAINTS", - "OVERWRITING", "GENERATED", "CATALOG", "LANGUAGE", - "CATALOGS", "VIEWS", "STRING", "ARRAY", "MAP", "CHAR", - "VARCHAR", "BINARY", "VARBINARY", "BYTES", "DECIMAL", - "TINYINT", "SMALLINT", "INT", "BIGINT", "FLOAT", "DOUBLE", - "DATE", "TIME", "TIMESTAMP", "MULTISET", "BOOLEAN", - "RAW", "ROW", "NULL", "EQUAL_SYMBOL", "GREATER_SYMBOL", - "LESS_SYMBOL", "EXCLAMATION_SYMBOL", "BIT_NOT_OP", - "BIT_OR_OP", "BIT_AND_OP", "BIT_XOR_OP", "DOT", "LS_BRACKET", - "RS_BRACKET", "LR_BRACKET", "RR_BRACKET", "COMMA", - "SEMICOLON", "AT_SIGN", "SINGLE_QUOTE_SYMB", "DOUBLE_QUOTE_SYMB", - "REVERSE_QUOTE_SYMB", "COLON_SYMB", "ASTERISK_SIGN", - "UNDERLINE_SIGN", "HYPNEN_SIGN", "ADD_SIGN", "PENCENT_SIGN", - "DOUBLE_VERTICAL_SIGN", "DOUBLE_HYPNEN_SIGN", "SLASH_SIGN", - "DOT_ID", "STRING_LITERAL", "DIG_LITERAL", "REAL_LITERAL", - "BIT_STRING", "ID" ]; + "CONSTRAINT", "RESTRICT", "CLUSTERED", "SORTED", "PURGE", + "INPUTFORMAT", "OUTPUTFORMAT", "DATABASE", "DATABASES", + "DFS", "TRUNCATE", "ANALYZE", "COMPUTE", "LIST", "STATISTICS", + "PARTITIONED", "EXTERNAL", "DEFINED", "REVOKE", "GRANT", + "LOCK", "UNLOCK", "MSCK", "REPAIR", "RECOVER", "EXPORT", + "IMPORT", "LOAD", "ROLE", "ROLES", "COMPACTIONS", + "PRINCIPALS", "TRANSACTIONS", "INDEX", "INDEXES", + "LOCKS", "OPTION", "ANTI", "LOCAL", "INPATH", "WATERMARK", + "UNNEST", "MATCH_RECOGNIZE", "MEASURES", "ONE", "PER", + "MATCH", "SKIP1", "NEXT", "PAST", "PATTERN", "WITHIN", + "DEFINE", "WS", "SYSTEM", "INCLUDING", "EXCLUDING", + "CONSTRAINTS", "OVERWRITING", "GENERATED", "CATALOG", + "LANGUAGE", "CATALOGS", "VIEWS", "PRIMARY", "KEY", + "PERIOD", "SYSTEM_TIME", "STRING", "ARRAY", "MAP", + "CHAR", "VARCHAR", "BINARY", "VARBINARY", "BYTES", + "DECIMAL", "TINYINT", "SMALLINT", "INT", "BIGINT", + "FLOAT", "DOUBLE", "DATE", "TIME", "TIMESTAMP", "MULTISET", + "BOOLEAN", "RAW", "ROW", "NULL", "DATETIME", "EQUAL_SYMBOL", + "GREATER_SYMBOL", "LESS_SYMBOL", "EXCLAMATION_SYMBOL", + "BIT_NOT_OP", "BIT_OR_OP", "BIT_AND_OP", "BIT_XOR_OP", + "DOT", "LS_BRACKET", "RS_BRACKET", "LR_BRACKET", "RR_BRACKET", + "COMMA", "SEMICOLON", "AT_SIGN", "SINGLE_QUOTE_SYMB", + "DOUBLE_QUOTE_SYMB", "REVERSE_QUOTE_SYMB", "COLON_SYMB", + "ASTERISK_SIGN", "UNDERLINE_SIGN", "HYPNEN_SIGN", + "ADD_SIGN", "PENCENT_SIGN", "DOUBLE_VERTICAL_SIGN", + "DOUBLE_HYPNEN_SIGN", "SLASH_SIGN", "DOT_ID", "PLUS_DOT_ID", + "STRING_LITERAL", "DIG_LITERAL", "REAL_LITERAL", "BIT_STRING", + "ID_LITERAL", "PLUS_ID_LITERAL" ]; var ruleNames = [ "program", "statement", "sqlStatements", "sqlStatement", "emptyStatement", "ddlStatement", "dmlStatement", "describeStatement", "explainStatement", "useStatement", "showStatememt", "createTable", "columnOptionDefinition", "columnName", - "columnType", "lengthOneDimension", "commentSpec", "watermarkDefinition", - "partitionDefinition", "transformList", "transform", - "transformArgument", "likeDefinition", "likeOption", + "columnNameList", "columnType", "lengthOneDimension", + "commentSpec", "watermarkDefinition", "tableConstraint", + "selfDefinitionClause", "partitionDefinition", "transformList", + "transform", "transformArgument", "likeDefinition", "likeOption", "createCatalog", "createDatabase", "createView", "createFunction", "alterTable", "renameDefinition", "setKeyValueDefinition", "alterDatabase", "alterFunction", "dropTable", "dropDatabase", @@ -1024,12 +1062,12 @@ var ruleNames = [ "program", "statement", "sqlStatements", "sqlStatement", "primaryExpression", "functionName", "dereferenceDefinition", "qualifiedName", "interval", "errorCapturingMultiUnitsInterval", "multiUnitsInterval", "errorCapturingUnitToUnitInterval", - "unitToUnitInterval", "intervalValue", "tableAlias", - "errorCapturingIdentifier", "errorCapturingIdentifierExtra", + "unitToUnitInterval", "intervalValue", "columnAlias", + "tableAlias", "errorCapturingIdentifier", "errorCapturingIdentifierExtra", "identifierList", "identifierSeq", "identifier", "strictIdentifier", "unquotedIdentifier", "quotedIdentifier", "whenClause", - "uidList", "uid", "withOption", "ifNotExists", "ifExists", - "tablePropertyList", "tableProperty", "tablePropertyKey", + "uidList", "uid", "plusUid", "withOption", "ifNotExists", + "ifExists", "tablePropertyList", "tableProperty", "tablePropertyKey", "tablePropertyValue", "logicalOperator", "comparisonOperator", "bitOperator", "mathOperator", "unaryOperator", "fullColumnName", "constant", "stringLiteral", "decimalLiteral", "booleanLiteral", @@ -1243,126 +1281,134 @@ FlinkSqlParser.COMPACT = 186; FlinkSqlParser.CONCATENATE = 187; FlinkSqlParser.CHANGE = 188; FlinkSqlParser.CASCADE = 189; -FlinkSqlParser.RESTRICT = 190; -FlinkSqlParser.CLUSTERED = 191; -FlinkSqlParser.SORTED = 192; -FlinkSqlParser.PURGE = 193; -FlinkSqlParser.INPUTFORMAT = 194; -FlinkSqlParser.OUTPUTFORMAT = 195; -FlinkSqlParser.DATABASE = 196; -FlinkSqlParser.DATABASES = 197; -FlinkSqlParser.DFS = 198; -FlinkSqlParser.TRUNCATE = 199; -FlinkSqlParser.ANALYZE = 200; -FlinkSqlParser.COMPUTE = 201; -FlinkSqlParser.LIST = 202; -FlinkSqlParser.STATISTICS = 203; -FlinkSqlParser.PARTITIONED = 204; -FlinkSqlParser.EXTERNAL = 205; -FlinkSqlParser.DEFINED = 206; -FlinkSqlParser.REVOKE = 207; -FlinkSqlParser.GRANT = 208; -FlinkSqlParser.LOCK = 209; -FlinkSqlParser.UNLOCK = 210; -FlinkSqlParser.MSCK = 211; -FlinkSqlParser.REPAIR = 212; -FlinkSqlParser.RECOVER = 213; -FlinkSqlParser.EXPORT = 214; -FlinkSqlParser.IMPORT = 215; -FlinkSqlParser.LOAD = 216; -FlinkSqlParser.ROLE = 217; -FlinkSqlParser.ROLES = 218; -FlinkSqlParser.COMPACTIONS = 219; -FlinkSqlParser.PRINCIPALS = 220; -FlinkSqlParser.TRANSACTIONS = 221; -FlinkSqlParser.INDEX = 222; -FlinkSqlParser.INDEXES = 223; -FlinkSqlParser.LOCKS = 224; -FlinkSqlParser.OPTION = 225; -FlinkSqlParser.ANTI = 226; -FlinkSqlParser.LOCAL = 227; -FlinkSqlParser.INPATH = 228; -FlinkSqlParser.WATERMARK = 229; -FlinkSqlParser.UNNEST = 230; -FlinkSqlParser.MATCH_RECOGNIZE = 231; -FlinkSqlParser.MEASURES = 232; -FlinkSqlParser.ONE = 233; -FlinkSqlParser.PER = 234; -FlinkSqlParser.MATCH = 235; -FlinkSqlParser.SKIP1 = 236; -FlinkSqlParser.NEXT = 237; -FlinkSqlParser.PAST = 238; -FlinkSqlParser.PATTERN = 239; -FlinkSqlParser.WITHIN = 240; -FlinkSqlParser.DEFINE = 241; -FlinkSqlParser.WS = 242; -FlinkSqlParser.SYSTEM = 243; -FlinkSqlParser.INCLUDING = 244; -FlinkSqlParser.EXCLUDING = 245; -FlinkSqlParser.CONSTRAINTS = 246; -FlinkSqlParser.OVERWRITING = 247; -FlinkSqlParser.GENERATED = 248; -FlinkSqlParser.CATALOG = 249; -FlinkSqlParser.LANGUAGE = 250; -FlinkSqlParser.CATALOGS = 251; -FlinkSqlParser.VIEWS = 252; -FlinkSqlParser.STRING = 253; -FlinkSqlParser.ARRAY = 254; -FlinkSqlParser.MAP = 255; -FlinkSqlParser.CHAR = 256; -FlinkSqlParser.VARCHAR = 257; -FlinkSqlParser.BINARY = 258; -FlinkSqlParser.VARBINARY = 259; -FlinkSqlParser.BYTES = 260; -FlinkSqlParser.DECIMAL = 261; -FlinkSqlParser.TINYINT = 262; -FlinkSqlParser.SMALLINT = 263; -FlinkSqlParser.INT = 264; -FlinkSqlParser.BIGINT = 265; -FlinkSqlParser.FLOAT = 266; -FlinkSqlParser.DOUBLE = 267; -FlinkSqlParser.DATE = 268; -FlinkSqlParser.TIME = 269; -FlinkSqlParser.TIMESTAMP = 270; -FlinkSqlParser.MULTISET = 271; -FlinkSqlParser.BOOLEAN = 272; -FlinkSqlParser.RAW = 273; -FlinkSqlParser.ROW = 274; -FlinkSqlParser.NULL = 275; -FlinkSqlParser.EQUAL_SYMBOL = 276; -FlinkSqlParser.GREATER_SYMBOL = 277; -FlinkSqlParser.LESS_SYMBOL = 278; -FlinkSqlParser.EXCLAMATION_SYMBOL = 279; -FlinkSqlParser.BIT_NOT_OP = 280; -FlinkSqlParser.BIT_OR_OP = 281; -FlinkSqlParser.BIT_AND_OP = 282; -FlinkSqlParser.BIT_XOR_OP = 283; -FlinkSqlParser.DOT = 284; -FlinkSqlParser.LS_BRACKET = 285; -FlinkSqlParser.RS_BRACKET = 286; -FlinkSqlParser.LR_BRACKET = 287; -FlinkSqlParser.RR_BRACKET = 288; -FlinkSqlParser.COMMA = 289; -FlinkSqlParser.SEMICOLON = 290; -FlinkSqlParser.AT_SIGN = 291; -FlinkSqlParser.SINGLE_QUOTE_SYMB = 292; -FlinkSqlParser.DOUBLE_QUOTE_SYMB = 293; -FlinkSqlParser.REVERSE_QUOTE_SYMB = 294; -FlinkSqlParser.COLON_SYMB = 295; -FlinkSqlParser.ASTERISK_SIGN = 296; -FlinkSqlParser.UNDERLINE_SIGN = 297; -FlinkSqlParser.HYPNEN_SIGN = 298; -FlinkSqlParser.ADD_SIGN = 299; -FlinkSqlParser.PENCENT_SIGN = 300; -FlinkSqlParser.DOUBLE_VERTICAL_SIGN = 301; -FlinkSqlParser.DOUBLE_HYPNEN_SIGN = 302; -FlinkSqlParser.SLASH_SIGN = 303; -FlinkSqlParser.DOT_ID = 304; -FlinkSqlParser.STRING_LITERAL = 305; -FlinkSqlParser.DIG_LITERAL = 306; -FlinkSqlParser.REAL_LITERAL = 307; -FlinkSqlParser.BIT_STRING = 308; -FlinkSqlParser.ID = 309; +FlinkSqlParser.CONSTRAINT = 190; +FlinkSqlParser.RESTRICT = 191; +FlinkSqlParser.CLUSTERED = 192; +FlinkSqlParser.SORTED = 193; +FlinkSqlParser.PURGE = 194; +FlinkSqlParser.INPUTFORMAT = 195; +FlinkSqlParser.OUTPUTFORMAT = 196; +FlinkSqlParser.DATABASE = 197; +FlinkSqlParser.DATABASES = 198; +FlinkSqlParser.DFS = 199; +FlinkSqlParser.TRUNCATE = 200; +FlinkSqlParser.ANALYZE = 201; +FlinkSqlParser.COMPUTE = 202; +FlinkSqlParser.LIST = 203; +FlinkSqlParser.STATISTICS = 204; +FlinkSqlParser.PARTITIONED = 205; +FlinkSqlParser.EXTERNAL = 206; +FlinkSqlParser.DEFINED = 207; +FlinkSqlParser.REVOKE = 208; +FlinkSqlParser.GRANT = 209; +FlinkSqlParser.LOCK = 210; +FlinkSqlParser.UNLOCK = 211; +FlinkSqlParser.MSCK = 212; +FlinkSqlParser.REPAIR = 213; +FlinkSqlParser.RECOVER = 214; +FlinkSqlParser.EXPORT = 215; +FlinkSqlParser.IMPORT = 216; +FlinkSqlParser.LOAD = 217; +FlinkSqlParser.ROLE = 218; +FlinkSqlParser.ROLES = 219; +FlinkSqlParser.COMPACTIONS = 220; +FlinkSqlParser.PRINCIPALS = 221; +FlinkSqlParser.TRANSACTIONS = 222; +FlinkSqlParser.INDEX = 223; +FlinkSqlParser.INDEXES = 224; +FlinkSqlParser.LOCKS = 225; +FlinkSqlParser.OPTION = 226; +FlinkSqlParser.ANTI = 227; +FlinkSqlParser.LOCAL = 228; +FlinkSqlParser.INPATH = 229; +FlinkSqlParser.WATERMARK = 230; +FlinkSqlParser.UNNEST = 231; +FlinkSqlParser.MATCH_RECOGNIZE = 232; +FlinkSqlParser.MEASURES = 233; +FlinkSqlParser.ONE = 234; +FlinkSqlParser.PER = 235; +FlinkSqlParser.MATCH = 236; +FlinkSqlParser.SKIP1 = 237; +FlinkSqlParser.NEXT = 238; +FlinkSqlParser.PAST = 239; +FlinkSqlParser.PATTERN = 240; +FlinkSqlParser.WITHIN = 241; +FlinkSqlParser.DEFINE = 242; +FlinkSqlParser.WS = 243; +FlinkSqlParser.SYSTEM = 244; +FlinkSqlParser.INCLUDING = 245; +FlinkSqlParser.EXCLUDING = 246; +FlinkSqlParser.CONSTRAINTS = 247; +FlinkSqlParser.OVERWRITING = 248; +FlinkSqlParser.GENERATED = 249; +FlinkSqlParser.CATALOG = 250; +FlinkSqlParser.LANGUAGE = 251; +FlinkSqlParser.CATALOGS = 252; +FlinkSqlParser.VIEWS = 253; +FlinkSqlParser.PRIMARY = 254; +FlinkSqlParser.KEY = 255; +FlinkSqlParser.PERIOD = 256; +FlinkSqlParser.SYSTEM_TIME = 257; +FlinkSqlParser.STRING = 258; +FlinkSqlParser.ARRAY = 259; +FlinkSqlParser.MAP = 260; +FlinkSqlParser.CHAR = 261; +FlinkSqlParser.VARCHAR = 262; +FlinkSqlParser.BINARY = 263; +FlinkSqlParser.VARBINARY = 264; +FlinkSqlParser.BYTES = 265; +FlinkSqlParser.DECIMAL = 266; +FlinkSqlParser.TINYINT = 267; +FlinkSqlParser.SMALLINT = 268; +FlinkSqlParser.INT = 269; +FlinkSqlParser.BIGINT = 270; +FlinkSqlParser.FLOAT = 271; +FlinkSqlParser.DOUBLE = 272; +FlinkSqlParser.DATE = 273; +FlinkSqlParser.TIME = 274; +FlinkSqlParser.TIMESTAMP = 275; +FlinkSqlParser.MULTISET = 276; +FlinkSqlParser.BOOLEAN = 277; +FlinkSqlParser.RAW = 278; +FlinkSqlParser.ROW = 279; +FlinkSqlParser.NULL = 280; +FlinkSqlParser.DATETIME = 281; +FlinkSqlParser.EQUAL_SYMBOL = 282; +FlinkSqlParser.GREATER_SYMBOL = 283; +FlinkSqlParser.LESS_SYMBOL = 284; +FlinkSqlParser.EXCLAMATION_SYMBOL = 285; +FlinkSqlParser.BIT_NOT_OP = 286; +FlinkSqlParser.BIT_OR_OP = 287; +FlinkSqlParser.BIT_AND_OP = 288; +FlinkSqlParser.BIT_XOR_OP = 289; +FlinkSqlParser.DOT = 290; +FlinkSqlParser.LS_BRACKET = 291; +FlinkSqlParser.RS_BRACKET = 292; +FlinkSqlParser.LR_BRACKET = 293; +FlinkSqlParser.RR_BRACKET = 294; +FlinkSqlParser.COMMA = 295; +FlinkSqlParser.SEMICOLON = 296; +FlinkSqlParser.AT_SIGN = 297; +FlinkSqlParser.SINGLE_QUOTE_SYMB = 298; +FlinkSqlParser.DOUBLE_QUOTE_SYMB = 299; +FlinkSqlParser.REVERSE_QUOTE_SYMB = 300; +FlinkSqlParser.COLON_SYMB = 301; +FlinkSqlParser.ASTERISK_SIGN = 302; +FlinkSqlParser.UNDERLINE_SIGN = 303; +FlinkSqlParser.HYPNEN_SIGN = 304; +FlinkSqlParser.ADD_SIGN = 305; +FlinkSqlParser.PENCENT_SIGN = 306; +FlinkSqlParser.DOUBLE_VERTICAL_SIGN = 307; +FlinkSqlParser.DOUBLE_HYPNEN_SIGN = 308; +FlinkSqlParser.SLASH_SIGN = 309; +FlinkSqlParser.DOT_ID = 310; +FlinkSqlParser.PLUS_DOT_ID = 311; +FlinkSqlParser.STRING_LITERAL = 312; +FlinkSqlParser.DIG_LITERAL = 313; +FlinkSqlParser.REAL_LITERAL = 314; +FlinkSqlParser.BIT_STRING = 315; +FlinkSqlParser.ID_LITERAL = 316; +FlinkSqlParser.PLUS_ID_LITERAL = 317; FlinkSqlParser.RULE_program = 0; FlinkSqlParser.RULE_statement = 1; @@ -1378,100 +1424,105 @@ FlinkSqlParser.RULE_showStatememt = 10; FlinkSqlParser.RULE_createTable = 11; FlinkSqlParser.RULE_columnOptionDefinition = 12; FlinkSqlParser.RULE_columnName = 13; -FlinkSqlParser.RULE_columnType = 14; -FlinkSqlParser.RULE_lengthOneDimension = 15; -FlinkSqlParser.RULE_commentSpec = 16; -FlinkSqlParser.RULE_watermarkDefinition = 17; -FlinkSqlParser.RULE_partitionDefinition = 18; -FlinkSqlParser.RULE_transformList = 19; -FlinkSqlParser.RULE_transform = 20; -FlinkSqlParser.RULE_transformArgument = 21; -FlinkSqlParser.RULE_likeDefinition = 22; -FlinkSqlParser.RULE_likeOption = 23; -FlinkSqlParser.RULE_createCatalog = 24; -FlinkSqlParser.RULE_createDatabase = 25; -FlinkSqlParser.RULE_createView = 26; -FlinkSqlParser.RULE_createFunction = 27; -FlinkSqlParser.RULE_alterTable = 28; -FlinkSqlParser.RULE_renameDefinition = 29; -FlinkSqlParser.RULE_setKeyValueDefinition = 30; -FlinkSqlParser.RULE_alterDatabase = 31; -FlinkSqlParser.RULE_alterFunction = 32; -FlinkSqlParser.RULE_dropTable = 33; -FlinkSqlParser.RULE_dropDatabase = 34; -FlinkSqlParser.RULE_dropView = 35; -FlinkSqlParser.RULE_dropFunction = 36; -FlinkSqlParser.RULE_insertStatement = 37; -FlinkSqlParser.RULE_insertPartitionDefinition = 38; -FlinkSqlParser.RULE_valuesDefinition = 39; -FlinkSqlParser.RULE_valuesRowDefinition = 40; -FlinkSqlParser.RULE_queryStatement = 41; -FlinkSqlParser.RULE_valuesCaluse = 42; -FlinkSqlParser.RULE_selectStatement = 43; -FlinkSqlParser.RULE_selectClause = 44; -FlinkSqlParser.RULE_projectItemDefinition = 45; -FlinkSqlParser.RULE_fromClause = 46; -FlinkSqlParser.RULE_tableExpression = 47; -FlinkSqlParser.RULE_tableReference = 48; -FlinkSqlParser.RULE_tablePrimary = 49; -FlinkSqlParser.RULE_joinCondition = 50; -FlinkSqlParser.RULE_whereClause = 51; -FlinkSqlParser.RULE_groupByClause = 52; -FlinkSqlParser.RULE_groupItemDefinition = 53; -FlinkSqlParser.RULE_havingClause = 54; -FlinkSqlParser.RULE_orderByCaluse = 55; -FlinkSqlParser.RULE_orderItemDefition = 56; -FlinkSqlParser.RULE_limitClause = 57; -FlinkSqlParser.RULE_windowClause = 58; -FlinkSqlParser.RULE_namedWindow = 59; -FlinkSqlParser.RULE_windowSpec = 60; -FlinkSqlParser.RULE_sortItem = 61; -FlinkSqlParser.RULE_windowFrame = 62; -FlinkSqlParser.RULE_frameBound = 63; -FlinkSqlParser.RULE_expression = 64; -FlinkSqlParser.RULE_booleanExpression = 65; -FlinkSqlParser.RULE_predicate = 66; -FlinkSqlParser.RULE_valueExpression = 67; -FlinkSqlParser.RULE_primaryExpression = 68; -FlinkSqlParser.RULE_functionName = 69; -FlinkSqlParser.RULE_dereferenceDefinition = 70; -FlinkSqlParser.RULE_qualifiedName = 71; -FlinkSqlParser.RULE_interval = 72; -FlinkSqlParser.RULE_errorCapturingMultiUnitsInterval = 73; -FlinkSqlParser.RULE_multiUnitsInterval = 74; -FlinkSqlParser.RULE_errorCapturingUnitToUnitInterval = 75; -FlinkSqlParser.RULE_unitToUnitInterval = 76; -FlinkSqlParser.RULE_intervalValue = 77; -FlinkSqlParser.RULE_tableAlias = 78; -FlinkSqlParser.RULE_errorCapturingIdentifier = 79; -FlinkSqlParser.RULE_errorCapturingIdentifierExtra = 80; -FlinkSqlParser.RULE_identifierList = 81; -FlinkSqlParser.RULE_identifierSeq = 82; -FlinkSqlParser.RULE_identifier = 83; -FlinkSqlParser.RULE_strictIdentifier = 84; -FlinkSqlParser.RULE_unquotedIdentifier = 85; -FlinkSqlParser.RULE_quotedIdentifier = 86; -FlinkSqlParser.RULE_whenClause = 87; -FlinkSqlParser.RULE_uidList = 88; -FlinkSqlParser.RULE_uid = 89; -FlinkSqlParser.RULE_withOption = 90; -FlinkSqlParser.RULE_ifNotExists = 91; -FlinkSqlParser.RULE_ifExists = 92; -FlinkSqlParser.RULE_tablePropertyList = 93; -FlinkSqlParser.RULE_tableProperty = 94; -FlinkSqlParser.RULE_tablePropertyKey = 95; -FlinkSqlParser.RULE_tablePropertyValue = 96; -FlinkSqlParser.RULE_logicalOperator = 97; -FlinkSqlParser.RULE_comparisonOperator = 98; -FlinkSqlParser.RULE_bitOperator = 99; -FlinkSqlParser.RULE_mathOperator = 100; -FlinkSqlParser.RULE_unaryOperator = 101; -FlinkSqlParser.RULE_fullColumnName = 102; -FlinkSqlParser.RULE_constant = 103; -FlinkSqlParser.RULE_stringLiteral = 104; -FlinkSqlParser.RULE_decimalLiteral = 105; -FlinkSqlParser.RULE_booleanLiteral = 106; -FlinkSqlParser.RULE_setQuantifier = 107; +FlinkSqlParser.RULE_columnNameList = 14; +FlinkSqlParser.RULE_columnType = 15; +FlinkSqlParser.RULE_lengthOneDimension = 16; +FlinkSqlParser.RULE_commentSpec = 17; +FlinkSqlParser.RULE_watermarkDefinition = 18; +FlinkSqlParser.RULE_tableConstraint = 19; +FlinkSqlParser.RULE_selfDefinitionClause = 20; +FlinkSqlParser.RULE_partitionDefinition = 21; +FlinkSqlParser.RULE_transformList = 22; +FlinkSqlParser.RULE_transform = 23; +FlinkSqlParser.RULE_transformArgument = 24; +FlinkSqlParser.RULE_likeDefinition = 25; +FlinkSqlParser.RULE_likeOption = 26; +FlinkSqlParser.RULE_createCatalog = 27; +FlinkSqlParser.RULE_createDatabase = 28; +FlinkSqlParser.RULE_createView = 29; +FlinkSqlParser.RULE_createFunction = 30; +FlinkSqlParser.RULE_alterTable = 31; +FlinkSqlParser.RULE_renameDefinition = 32; +FlinkSqlParser.RULE_setKeyValueDefinition = 33; +FlinkSqlParser.RULE_alterDatabase = 34; +FlinkSqlParser.RULE_alterFunction = 35; +FlinkSqlParser.RULE_dropTable = 36; +FlinkSqlParser.RULE_dropDatabase = 37; +FlinkSqlParser.RULE_dropView = 38; +FlinkSqlParser.RULE_dropFunction = 39; +FlinkSqlParser.RULE_insertStatement = 40; +FlinkSqlParser.RULE_insertPartitionDefinition = 41; +FlinkSqlParser.RULE_valuesDefinition = 42; +FlinkSqlParser.RULE_valuesRowDefinition = 43; +FlinkSqlParser.RULE_queryStatement = 44; +FlinkSqlParser.RULE_valuesCaluse = 45; +FlinkSqlParser.RULE_selectStatement = 46; +FlinkSqlParser.RULE_selectClause = 47; +FlinkSqlParser.RULE_projectItemDefinition = 48; +FlinkSqlParser.RULE_fromClause = 49; +FlinkSqlParser.RULE_tableExpression = 50; +FlinkSqlParser.RULE_tableReference = 51; +FlinkSqlParser.RULE_tablePrimary = 52; +FlinkSqlParser.RULE_joinCondition = 53; +FlinkSqlParser.RULE_whereClause = 54; +FlinkSqlParser.RULE_groupByClause = 55; +FlinkSqlParser.RULE_groupItemDefinition = 56; +FlinkSqlParser.RULE_havingClause = 57; +FlinkSqlParser.RULE_orderByCaluse = 58; +FlinkSqlParser.RULE_orderItemDefition = 59; +FlinkSqlParser.RULE_limitClause = 60; +FlinkSqlParser.RULE_windowClause = 61; +FlinkSqlParser.RULE_namedWindow = 62; +FlinkSqlParser.RULE_windowSpec = 63; +FlinkSqlParser.RULE_sortItem = 64; +FlinkSqlParser.RULE_windowFrame = 65; +FlinkSqlParser.RULE_frameBound = 66; +FlinkSqlParser.RULE_expression = 67; +FlinkSqlParser.RULE_booleanExpression = 68; +FlinkSqlParser.RULE_predicate = 69; +FlinkSqlParser.RULE_valueExpression = 70; +FlinkSqlParser.RULE_primaryExpression = 71; +FlinkSqlParser.RULE_functionName = 72; +FlinkSqlParser.RULE_dereferenceDefinition = 73; +FlinkSqlParser.RULE_qualifiedName = 74; +FlinkSqlParser.RULE_interval = 75; +FlinkSqlParser.RULE_errorCapturingMultiUnitsInterval = 76; +FlinkSqlParser.RULE_multiUnitsInterval = 77; +FlinkSqlParser.RULE_errorCapturingUnitToUnitInterval = 78; +FlinkSqlParser.RULE_unitToUnitInterval = 79; +FlinkSqlParser.RULE_intervalValue = 80; +FlinkSqlParser.RULE_columnAlias = 81; +FlinkSqlParser.RULE_tableAlias = 82; +FlinkSqlParser.RULE_errorCapturingIdentifier = 83; +FlinkSqlParser.RULE_errorCapturingIdentifierExtra = 84; +FlinkSqlParser.RULE_identifierList = 85; +FlinkSqlParser.RULE_identifierSeq = 86; +FlinkSqlParser.RULE_identifier = 87; +FlinkSqlParser.RULE_strictIdentifier = 88; +FlinkSqlParser.RULE_unquotedIdentifier = 89; +FlinkSqlParser.RULE_quotedIdentifier = 90; +FlinkSqlParser.RULE_whenClause = 91; +FlinkSqlParser.RULE_uidList = 92; +FlinkSqlParser.RULE_uid = 93; +FlinkSqlParser.RULE_plusUid = 94; +FlinkSqlParser.RULE_withOption = 95; +FlinkSqlParser.RULE_ifNotExists = 96; +FlinkSqlParser.RULE_ifExists = 97; +FlinkSqlParser.RULE_tablePropertyList = 98; +FlinkSqlParser.RULE_tableProperty = 99; +FlinkSqlParser.RULE_tablePropertyKey = 100; +FlinkSqlParser.RULE_tablePropertyValue = 101; +FlinkSqlParser.RULE_logicalOperator = 102; +FlinkSqlParser.RULE_comparisonOperator = 103; +FlinkSqlParser.RULE_bitOperator = 104; +FlinkSqlParser.RULE_mathOperator = 105; +FlinkSqlParser.RULE_unaryOperator = 106; +FlinkSqlParser.RULE_fullColumnName = 107; +FlinkSqlParser.RULE_constant = 108; +FlinkSqlParser.RULE_stringLiteral = 109; +FlinkSqlParser.RULE_decimalLiteral = 110; +FlinkSqlParser.RULE_booleanLiteral = 111; +FlinkSqlParser.RULE_setQuantifier = 112; function ProgramContext(parser, parent, invokingState) { @@ -1529,9 +1580,9 @@ FlinkSqlParser.prototype.program = function() { this.enterRule(localctx, 0, FlinkSqlParser.RULE_program); try { this.enterOuterAlt(localctx, 1); - this.state = 216; + this.state = 226; this.statement(); - this.state = 217; + this.state = 227; this.match(FlinkSqlParser.EOF); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -1603,9 +1654,9 @@ FlinkSqlParser.prototype.statement = function() { this.enterRule(localctx, 2, FlinkSqlParser.RULE_statement); try { this.enterOuterAlt(localctx, 1); - this.state = 219; + this.state = 229; this.sqlStatements(); - this.state = 220; + this.state = 230; this.match(FlinkSqlParser.EOF); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -1704,11 +1755,11 @@ FlinkSqlParser.prototype.sqlStatements = function() { var _la = 0; // Token type try { this.enterOuterAlt(localctx, 1); - this.state = 229; + this.state = 239; this._errHandler.sync(this); _la = this._input.LA(1); while(_la===FlinkSqlParser.SELECT || ((((_la - 69)) & ~0x1f) == 0 && ((1 << (_la - 69)) & ((1 << (FlinkSqlParser.VALUES - 69)) | (1 << (FlinkSqlParser.CREATE - 69)) | (1 << (FlinkSqlParser.INSERT - 69)) | (1 << (FlinkSqlParser.DESCRIBE - 69)) | (1 << (FlinkSqlParser.EXPLAIN - 69)) | (1 << (FlinkSqlParser.SHOW - 69)) | (1 << (FlinkSqlParser.USE - 69)) | (1 << (FlinkSqlParser.DROP - 69)) | (1 << (FlinkSqlParser.ALTER - 69)))) !== 0) || _la===FlinkSqlParser.LR_BRACKET || _la===FlinkSqlParser.SEMICOLON) { - this.state = 227; + this.state = 237; this._errHandler.sync(this); switch(this._input.LA(1)) { case FlinkSqlParser.SELECT: @@ -1722,25 +1773,25 @@ FlinkSqlParser.prototype.sqlStatements = function() { case FlinkSqlParser.DROP: case FlinkSqlParser.ALTER: case FlinkSqlParser.LR_BRACKET: - this.state = 222; + this.state = 232; this.sqlStatement(); - this.state = 224; + this.state = 234; this._errHandler.sync(this); var la_ = this._interp.adaptivePredict(this._input,0,this._ctx); if(la_===1) { - this.state = 223; + this.state = 233; this.match(FlinkSqlParser.SEMICOLON); } break; case FlinkSqlParser.SEMICOLON: - this.state = 226; + this.state = 236; this.emptyStatement(); break; default: throw new antlr4.error.NoViableAltException(this); } - this.state = 231; + this.state = 241; this._errHandler.sync(this); _la = this._input.LA(1); } @@ -1829,14 +1880,14 @@ FlinkSqlParser.prototype.sqlStatement = function() { var localctx = new SqlStatementContext(this, this._ctx, this.state); this.enterRule(localctx, 6, FlinkSqlParser.RULE_sqlStatement); try { - this.state = 238; + this.state = 248; this._errHandler.sync(this); switch(this._input.LA(1)) { case FlinkSqlParser.CREATE: case FlinkSqlParser.DROP: case FlinkSqlParser.ALTER: this.enterOuterAlt(localctx, 1); - this.state = 232; + this.state = 242; this.ddlStatement(); break; case FlinkSqlParser.SELECT: @@ -1844,27 +1895,27 @@ FlinkSqlParser.prototype.sqlStatement = function() { case FlinkSqlParser.INSERT: case FlinkSqlParser.LR_BRACKET: this.enterOuterAlt(localctx, 2); - this.state = 233; + this.state = 243; this.dmlStatement(); break; case FlinkSqlParser.DESCRIBE: this.enterOuterAlt(localctx, 3); - this.state = 234; + this.state = 244; this.describeStatement(); break; case FlinkSqlParser.EXPLAIN: this.enterOuterAlt(localctx, 4); - this.state = 235; + this.state = 245; this.explainStatement(); break; case FlinkSqlParser.USE: this.enterOuterAlt(localctx, 5); - this.state = 236; + this.state = 246; this.useStatement(); break; case FlinkSqlParser.SHOW: this.enterOuterAlt(localctx, 6); - this.state = 237; + this.state = 247; this.showStatememt(); break; default: @@ -1936,7 +1987,7 @@ FlinkSqlParser.prototype.emptyStatement = function() { this.enterRule(localctx, 8, FlinkSqlParser.RULE_emptyStatement); try { this.enterOuterAlt(localctx, 1); - this.state = 240; + this.state = 250; this.match(FlinkSqlParser.SEMICOLON); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -2047,79 +2098,79 @@ FlinkSqlParser.prototype.ddlStatement = function() { var localctx = new DdlStatementContext(this, this._ctx, this.state); this.enterRule(localctx, 10, FlinkSqlParser.RULE_ddlStatement); try { - this.state = 254; + this.state = 264; this._errHandler.sync(this); var la_ = this._interp.adaptivePredict(this._input,4,this._ctx); switch(la_) { case 1: this.enterOuterAlt(localctx, 1); - this.state = 242; + this.state = 252; this.createTable(); break; case 2: this.enterOuterAlt(localctx, 2); - this.state = 243; + this.state = 253; this.createDatabase(); break; case 3: this.enterOuterAlt(localctx, 3); - this.state = 244; + this.state = 254; this.createView(); break; case 4: this.enterOuterAlt(localctx, 4); - this.state = 245; + this.state = 255; this.createFunction(); break; case 5: this.enterOuterAlt(localctx, 5); - this.state = 246; + this.state = 256; this.createCatalog(); break; case 6: this.enterOuterAlt(localctx, 6); - this.state = 247; + this.state = 257; this.alterTable(); break; case 7: this.enterOuterAlt(localctx, 7); - this.state = 248; + this.state = 258; this.alterDatabase(); break; case 8: this.enterOuterAlt(localctx, 8); - this.state = 249; + this.state = 259; this.alterFunction(); break; case 9: this.enterOuterAlt(localctx, 9); - this.state = 250; + this.state = 260; this.dropTable(); break; case 10: this.enterOuterAlt(localctx, 10); - this.state = 251; + this.state = 261; this.dropDatabase(); break; case 11: this.enterOuterAlt(localctx, 11); - this.state = 252; + this.state = 262; this.dropView(); break; case 12: this.enterOuterAlt(localctx, 12); - this.state = 253; + this.state = 263; this.dropFunction(); break; @@ -2193,19 +2244,19 @@ FlinkSqlParser.prototype.dmlStatement = function() { var localctx = new DmlStatementContext(this, this._ctx, this.state); this.enterRule(localctx, 12, FlinkSqlParser.RULE_dmlStatement); try { - this.state = 258; + this.state = 268; this._errHandler.sync(this); switch(this._input.LA(1)) { case FlinkSqlParser.SELECT: case FlinkSqlParser.VALUES: case FlinkSqlParser.LR_BRACKET: this.enterOuterAlt(localctx, 1); - this.state = 256; + this.state = 266; this.queryStatement(0); break; case FlinkSqlParser.INSERT: this.enterOuterAlt(localctx, 2); - this.state = 257; + this.state = 267; this.insertStatement(); break; default: @@ -2281,9 +2332,9 @@ FlinkSqlParser.prototype.describeStatement = function() { this.enterRule(localctx, 14, FlinkSqlParser.RULE_describeStatement); try { this.enterOuterAlt(localctx, 1); - this.state = 260; + this.state = 270; this.match(FlinkSqlParser.DESCRIBE); - this.state = 261; + this.state = 271; this.uid(); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -2363,13 +2414,13 @@ FlinkSqlParser.prototype.explainStatement = function() { this.enterRule(localctx, 16, FlinkSqlParser.RULE_explainStatement); try { this.enterOuterAlt(localctx, 1); - this.state = 263; + this.state = 273; this.match(FlinkSqlParser.EXPLAIN); - this.state = 264; + this.state = 274; this.identifier(); - this.state = 265; + this.state = 275; this.match(FlinkSqlParser.FOR); - this.state = 266; + this.state = 276; this.dmlStatement(); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -2446,17 +2497,17 @@ FlinkSqlParser.prototype.useStatement = function() { var _la = 0; // Token type try { this.enterOuterAlt(localctx, 1); - this.state = 268; + this.state = 278; this.match(FlinkSqlParser.USE); - this.state = 270; + this.state = 280; this._errHandler.sync(this); _la = this._input.LA(1); if(_la===FlinkSqlParser.CATALOG) { - this.state = 269; + this.state = 279; this.match(FlinkSqlParser.CATALOG); } - this.state = 272; + this.state = 282; this.uid(); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -2545,9 +2596,9 @@ FlinkSqlParser.prototype.showStatememt = function() { var _la = 0; // Token type try { this.enterOuterAlt(localctx, 1); - this.state = 274; + this.state = 284; this.match(FlinkSqlParser.SHOW); - this.state = 275; + this.state = 285; _la = this._input.LA(1); if(!(_la===FlinkSqlParser.TABLES || _la===FlinkSqlParser.FUNCTIONS || _la===FlinkSqlParser.DATABASES || _la===FlinkSqlParser.CATALOGS || _la===FlinkSqlParser.VIEWS)) { this._errHandler.recoverInline(this); @@ -2638,6 +2689,14 @@ CreateTableContext.prototype.watermarkDefinition = function() { return this.getTypedRuleContext(WatermarkDefinitionContext,0); }; +CreateTableContext.prototype.tableConstraint = function() { + return this.getTypedRuleContext(TableConstraintContext,0); +}; + +CreateTableContext.prototype.selfDefinitionClause = function() { + return this.getTypedRuleContext(SelfDefinitionClauseContext,0); +}; + CreateTableContext.prototype.commentSpec = function() { return this.getTypedRuleContext(CommentSpecContext,0); }; @@ -2682,61 +2741,86 @@ FlinkSqlParser.prototype.createTable = function() { var _la = 0; // Token type try { this.enterOuterAlt(localctx, 1); - this.state = 277; + this.state = 287; this.match(FlinkSqlParser.CREATE); - this.state = 278; + this.state = 288; this.match(FlinkSqlParser.TABLE); - this.state = 279; + this.state = 289; this.uid(); - this.state = 280; - this.match(FlinkSqlParser.LR_BRACKET); - this.state = 281; - this.columnOptionDefinition(); - this.state = 286; - this._errHandler.sync(this); - _la = this._input.LA(1); - while(_la===FlinkSqlParser.COMMA) { - this.state = 282; - this.match(FlinkSqlParser.COMMA); - this.state = 283; - this.columnOptionDefinition(); - this.state = 288; - this._errHandler.sync(this); - _la = this._input.LA(1); - } this.state = 290; + this.match(FlinkSqlParser.LR_BRACKET); + this.state = 291; + this.columnOptionDefinition(); + this.state = 296; this._errHandler.sync(this); - _la = this._input.LA(1); - if(_la===FlinkSqlParser.WATERMARK) { - this.state = 289; - this.watermarkDefinition(); + var _alt = this._interp.adaptivePredict(this._input,7,this._ctx) + while(_alt!=2 && _alt!=antlr4.atn.ATN.INVALID_ALT_NUMBER) { + if(_alt===1) { + this.state = 292; + this.match(FlinkSqlParser.COMMA); + this.state = 293; + this.columnOptionDefinition(); + } + this.state = 298; + this._errHandler.sync(this); + _alt = this._interp.adaptivePredict(this._input,7,this._ctx); } - this.state = 292; + this.state = 301; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,8,this._ctx); + if(la_===1) { + this.state = 299; + this.match(FlinkSqlParser.COMMA); + this.state = 300; + this.watermarkDefinition(); + + } + this.state = 305; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,9,this._ctx); + if(la_===1) { + this.state = 303; + this.match(FlinkSqlParser.COMMA); + this.state = 304; + this.tableConstraint(); + + } + this.state = 309; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===FlinkSqlParser.COMMA) { + this.state = 307; + this.match(FlinkSqlParser.COMMA); + this.state = 308; + this.selfDefinitionClause(); + } + + this.state = 311; this.match(FlinkSqlParser.RR_BRACKET); - this.state = 294; + this.state = 313; this._errHandler.sync(this); _la = this._input.LA(1); if(_la===FlinkSqlParser.COMMENT) { - this.state = 293; + this.state = 312; this.commentSpec(); } - this.state = 297; + this.state = 316; this._errHandler.sync(this); _la = this._input.LA(1); if(_la===FlinkSqlParser.PARTITIONED) { - this.state = 296; + this.state = 315; this.partitionDefinition(); } - this.state = 299; + this.state = 318; this.withOption(); - this.state = 301; + this.state = 320; this._errHandler.sync(this); _la = this._input.LA(1); if(_la===FlinkSqlParser.LIKE) { - this.state = 300; + this.state = 319; this.likeDefinition(); } @@ -2783,6 +2867,10 @@ ColumnOptionDefinitionContext.prototype.lengthOneDimension = function() { return this.getTypedRuleContext(LengthOneDimensionContext,0); }; +ColumnOptionDefinitionContext.prototype.columnAlias = function() { + return this.getTypedRuleContext(ColumnAliasContext,0); +}; + ColumnOptionDefinitionContext.prototype.enterRule = function(listener) { if(listener instanceof FlinkSqlParserListener ) { listener.enterColumnOptionDefinition(this); @@ -2815,18 +2903,26 @@ FlinkSqlParser.prototype.columnOptionDefinition = function() { var _la = 0; // Token type try { this.enterOuterAlt(localctx, 1); - this.state = 303; + this.state = 322; this.columnName(); - this.state = 304; + this.state = 323; this.columnType(); - this.state = 306; + this.state = 325; this._errHandler.sync(this); _la = this._input.LA(1); if(_la===FlinkSqlParser.LR_BRACKET) { - this.state = 305; + this.state = 324; this.lengthOneDimension(); } + this.state = 328; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===FlinkSqlParser.AS || ((((_la - 312)) & ~0x1f) == 0 && ((1 << (_la - 312)) & ((1 << (FlinkSqlParser.STRING_LITERAL - 312)) | (1 << (FlinkSqlParser.DIG_LITERAL - 312)) | (1 << (FlinkSqlParser.ID_LITERAL - 312)))) !== 0)) { + this.state = 327; + this.columnAlias(); + } + } catch (re) { if(re instanceof antlr4.error.RecognitionException) { localctx.exception = re; @@ -2858,8 +2954,12 @@ function ColumnNameContext(parser, parent, invokingState) { ColumnNameContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); ColumnNameContext.prototype.constructor = ColumnNameContext; -ColumnNameContext.prototype.ID = function() { - return this.getToken(FlinkSqlParser.ID, 0); +ColumnNameContext.prototype.plusUid = function() { + return this.getTypedRuleContext(PlusUidContext,0); +}; + +ColumnNameContext.prototype.expression = function() { + return this.getTypedRuleContext(ExpressionContext,0); }; ColumnNameContext.prototype.enterRule = function(listener) { @@ -2891,10 +2991,124 @@ FlinkSqlParser.prototype.columnName = function() { var localctx = new ColumnNameContext(this, this._ctx, this.state); this.enterRule(localctx, 26, FlinkSqlParser.RULE_columnName); + try { + this.state = 332; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,16,this._ctx); + switch(la_) { + case 1: + this.enterOuterAlt(localctx, 1); + this.state = 330; + this.plusUid(); + break; + + case 2: + this.enterOuterAlt(localctx, 2); + this.state = 331; + this.expression(); + break; + + } + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function ColumnNameListContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = FlinkSqlParser.RULE_columnNameList; + return this; +} + +ColumnNameListContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +ColumnNameListContext.prototype.constructor = ColumnNameListContext; + +ColumnNameListContext.prototype.columnName = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(ColumnNameContext); + } else { + return this.getTypedRuleContext(ColumnNameContext,i); + } +}; + +ColumnNameListContext.prototype.COMMA = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTokens(FlinkSqlParser.COMMA); + } else { + return this.getToken(FlinkSqlParser.COMMA, i); + } +}; + + +ColumnNameListContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterColumnNameList(this); + } +}; + +ColumnNameListContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitColumnNameList(this); + } +}; + +ColumnNameListContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitColumnNameList(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +FlinkSqlParser.ColumnNameListContext = ColumnNameListContext; + +FlinkSqlParser.prototype.columnNameList = function() { + + var localctx = new ColumnNameListContext(this, this._ctx, this.state); + this.enterRule(localctx, 28, FlinkSqlParser.RULE_columnNameList); + var _la = 0; // Token type try { this.enterOuterAlt(localctx, 1); - this.state = 308; - this.match(FlinkSqlParser.ID); + this.state = 334; + this.columnName(); + this.state = 339; + this._errHandler.sync(this); + _la = this._input.LA(1); + while(_la===FlinkSqlParser.COMMA) { + this.state = 335; + this.match(FlinkSqlParser.COMMA); + this.state = 336; + this.columnName(); + this.state = 341; + this._errHandler.sync(this); + _la = this._input.LA(1); + } } catch (re) { if(re instanceof antlr4.error.RecognitionException) { localctx.exception = re; @@ -3019,6 +3233,10 @@ ColumnTypeContext.prototype.NULL = function() { return this.getToken(FlinkSqlParser.NULL, 0); }; +ColumnTypeContext.prototype.DATETIME = function() { + return this.getToken(FlinkSqlParser.DATETIME, 0); +}; + ColumnTypeContext.prototype.enterRule = function(listener) { if(listener instanceof FlinkSqlParserListener ) { listener.enterColumnType(this); @@ -3047,14 +3265,14 @@ FlinkSqlParser.ColumnTypeContext = ColumnTypeContext; FlinkSqlParser.prototype.columnType = function() { var localctx = new ColumnTypeContext(this, this._ctx, this.state); - this.enterRule(localctx, 28, FlinkSqlParser.RULE_columnType); + this.enterRule(localctx, 30, FlinkSqlParser.RULE_columnType); var _la = 0; // Token type try { this.enterOuterAlt(localctx, 1); - this.state = 310; + this.state = 342; localctx.typeName = this._input.LT(1); _la = this._input.LA(1); - if(!(((((_la - 253)) & ~0x1f) == 0 && ((1 << (_la - 253)) & ((1 << (FlinkSqlParser.STRING - 253)) | (1 << (FlinkSqlParser.ARRAY - 253)) | (1 << (FlinkSqlParser.MAP - 253)) | (1 << (FlinkSqlParser.CHAR - 253)) | (1 << (FlinkSqlParser.VARCHAR - 253)) | (1 << (FlinkSqlParser.BINARY - 253)) | (1 << (FlinkSqlParser.VARBINARY - 253)) | (1 << (FlinkSqlParser.BYTES - 253)) | (1 << (FlinkSqlParser.DECIMAL - 253)) | (1 << (FlinkSqlParser.TINYINT - 253)) | (1 << (FlinkSqlParser.SMALLINT - 253)) | (1 << (FlinkSqlParser.INT - 253)) | (1 << (FlinkSqlParser.BIGINT - 253)) | (1 << (FlinkSqlParser.FLOAT - 253)) | (1 << (FlinkSqlParser.DOUBLE - 253)) | (1 << (FlinkSqlParser.DATE - 253)) | (1 << (FlinkSqlParser.TIME - 253)) | (1 << (FlinkSqlParser.TIMESTAMP - 253)) | (1 << (FlinkSqlParser.MULTISET - 253)) | (1 << (FlinkSqlParser.BOOLEAN - 253)) | (1 << (FlinkSqlParser.RAW - 253)) | (1 << (FlinkSqlParser.ROW - 253)) | (1 << (FlinkSqlParser.NULL - 253)))) !== 0))) { + if(!(((((_la - 258)) & ~0x1f) == 0 && ((1 << (_la - 258)) & ((1 << (FlinkSqlParser.STRING - 258)) | (1 << (FlinkSqlParser.ARRAY - 258)) | (1 << (FlinkSqlParser.MAP - 258)) | (1 << (FlinkSqlParser.CHAR - 258)) | (1 << (FlinkSqlParser.VARCHAR - 258)) | (1 << (FlinkSqlParser.BINARY - 258)) | (1 << (FlinkSqlParser.VARBINARY - 258)) | (1 << (FlinkSqlParser.BYTES - 258)) | (1 << (FlinkSqlParser.DECIMAL - 258)) | (1 << (FlinkSqlParser.TINYINT - 258)) | (1 << (FlinkSqlParser.SMALLINT - 258)) | (1 << (FlinkSqlParser.INT - 258)) | (1 << (FlinkSqlParser.BIGINT - 258)) | (1 << (FlinkSqlParser.FLOAT - 258)) | (1 << (FlinkSqlParser.DOUBLE - 258)) | (1 << (FlinkSqlParser.DATE - 258)) | (1 << (FlinkSqlParser.TIME - 258)) | (1 << (FlinkSqlParser.TIMESTAMP - 258)) | (1 << (FlinkSqlParser.MULTISET - 258)) | (1 << (FlinkSqlParser.BOOLEAN - 258)) | (1 << (FlinkSqlParser.RAW - 258)) | (1 << (FlinkSqlParser.ROW - 258)) | (1 << (FlinkSqlParser.NULL - 258)) | (1 << (FlinkSqlParser.DATETIME - 258)))) !== 0))) { localctx.typeName = this._errHandler.recoverInline(this); } else { @@ -3132,14 +3350,14 @@ FlinkSqlParser.LengthOneDimensionContext = LengthOneDimensionContext; FlinkSqlParser.prototype.lengthOneDimension = function() { var localctx = new LengthOneDimensionContext(this, this._ctx, this.state); - this.enterRule(localctx, 30, FlinkSqlParser.RULE_lengthOneDimension); + this.enterRule(localctx, 32, FlinkSqlParser.RULE_lengthOneDimension); try { this.enterOuterAlt(localctx, 1); - this.state = 312; + this.state = 344; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 313; + this.state = 345; this.decimalLiteral(); - this.state = 314; + this.state = 346; this.match(FlinkSqlParser.RR_BRACKET); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -3208,12 +3426,12 @@ FlinkSqlParser.CommentSpecContext = CommentSpecContext; FlinkSqlParser.prototype.commentSpec = function() { var localctx = new CommentSpecContext(this, this._ctx, this.state); - this.enterRule(localctx, 32, FlinkSqlParser.RULE_commentSpec); + this.enterRule(localctx, 34, FlinkSqlParser.RULE_commentSpec); try { this.enterOuterAlt(localctx, 1); - this.state = 316; + this.state = 348; this.match(FlinkSqlParser.COMMENT); - this.state = 317; + this.state = 349; this.match(FlinkSqlParser.STRING_LITERAL); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -3297,18 +3515,18 @@ FlinkSqlParser.WatermarkDefinitionContext = WatermarkDefinitionContext; FlinkSqlParser.prototype.watermarkDefinition = function() { var localctx = new WatermarkDefinitionContext(this, this._ctx, this.state); - this.enterRule(localctx, 34, FlinkSqlParser.RULE_watermarkDefinition); + this.enterRule(localctx, 36, FlinkSqlParser.RULE_watermarkDefinition); try { this.enterOuterAlt(localctx, 1); - this.state = 319; + this.state = 351; this.match(FlinkSqlParser.WATERMARK); - this.state = 320; + this.state = 352; this.match(FlinkSqlParser.FOR); - this.state = 321; + this.state = 353; this.expression(); - this.state = 322; + this.state = 354; this.match(FlinkSqlParser.AS); - this.state = 323; + this.state = 355; this.expression(); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -3325,6 +3543,197 @@ FlinkSqlParser.prototype.watermarkDefinition = function() { }; +function TableConstraintContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = FlinkSqlParser.RULE_tableConstraint; + return this; +} + +TableConstraintContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +TableConstraintContext.prototype.constructor = TableConstraintContext; + +TableConstraintContext.prototype.PRIMARY = function() { + return this.getToken(FlinkSqlParser.PRIMARY, 0); +}; + +TableConstraintContext.prototype.KEY = function() { + return this.getToken(FlinkSqlParser.KEY, 0); +}; + +TableConstraintContext.prototype.LR_BRACKET = function() { + return this.getToken(FlinkSqlParser.LR_BRACKET, 0); +}; + +TableConstraintContext.prototype.columnNameList = function() { + return this.getTypedRuleContext(ColumnNameListContext,0); +}; + +TableConstraintContext.prototype.RR_BRACKET = function() { + return this.getToken(FlinkSqlParser.RR_BRACKET, 0); +}; + +TableConstraintContext.prototype.CONSTRAINT = function() { + return this.getToken(FlinkSqlParser.CONSTRAINT, 0); +}; + +TableConstraintContext.prototype.identifier = function() { + return this.getTypedRuleContext(IdentifierContext,0); +}; + +TableConstraintContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterTableConstraint(this); + } +}; + +TableConstraintContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitTableConstraint(this); + } +}; + +TableConstraintContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitTableConstraint(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +FlinkSqlParser.TableConstraintContext = TableConstraintContext; + +FlinkSqlParser.prototype.tableConstraint = function() { + + var localctx = new TableConstraintContext(this, this._ctx, this.state); + this.enterRule(localctx, 38, FlinkSqlParser.RULE_tableConstraint); + var _la = 0; // Token type + try { + this.enterOuterAlt(localctx, 1); + this.state = 359; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===FlinkSqlParser.CONSTRAINT) { + this.state = 357; + this.match(FlinkSqlParser.CONSTRAINT); + this.state = 358; + this.identifier(); + } + + this.state = 361; + this.match(FlinkSqlParser.PRIMARY); + this.state = 362; + this.match(FlinkSqlParser.KEY); + this.state = 363; + this.match(FlinkSqlParser.LR_BRACKET); + this.state = 364; + this.columnNameList(); + this.state = 365; + this.match(FlinkSqlParser.RR_BRACKET); + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function SelfDefinitionClauseContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = FlinkSqlParser.RULE_selfDefinitionClause; + return this; +} + +SelfDefinitionClauseContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +SelfDefinitionClauseContext.prototype.constructor = SelfDefinitionClauseContext; + +SelfDefinitionClauseContext.prototype.PERIOD = function() { + return this.getToken(FlinkSqlParser.PERIOD, 0); +}; + +SelfDefinitionClauseContext.prototype.FOR = function() { + return this.getToken(FlinkSqlParser.FOR, 0); +}; + +SelfDefinitionClauseContext.prototype.SYSTEM_TIME = function() { + return this.getToken(FlinkSqlParser.SYSTEM_TIME, 0); +}; + +SelfDefinitionClauseContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterSelfDefinitionClause(this); + } +}; + +SelfDefinitionClauseContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitSelfDefinitionClause(this); + } +}; + +SelfDefinitionClauseContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitSelfDefinitionClause(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +FlinkSqlParser.SelfDefinitionClauseContext = SelfDefinitionClauseContext; + +FlinkSqlParser.prototype.selfDefinitionClause = function() { + + var localctx = new SelfDefinitionClauseContext(this, this._ctx, this.state); + this.enterRule(localctx, 40, FlinkSqlParser.RULE_selfDefinitionClause); + try { + this.enterOuterAlt(localctx, 1); + this.state = 367; + this.match(FlinkSqlParser.PERIOD); + this.state = 368; + this.match(FlinkSqlParser.FOR); + this.state = 369; + this.match(FlinkSqlParser.SYSTEM_TIME); + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + function PartitionDefinitionContext(parser, parent, invokingState) { if(parent===undefined) { parent = null; @@ -3381,14 +3790,14 @@ FlinkSqlParser.PartitionDefinitionContext = PartitionDefinitionContext; FlinkSqlParser.prototype.partitionDefinition = function() { var localctx = new PartitionDefinitionContext(this, this._ctx, this.state); - this.enterRule(localctx, 36, FlinkSqlParser.RULE_partitionDefinition); + this.enterRule(localctx, 42, FlinkSqlParser.RULE_partitionDefinition); try { this.enterOuterAlt(localctx, 1); - this.state = 325; + this.state = 371; this.match(FlinkSqlParser.PARTITIONED); - this.state = 326; + this.state = 372; this.match(FlinkSqlParser.BY); - this.state = 327; + this.state = 373; this.transformList(); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -3480,27 +3889,27 @@ FlinkSqlParser.TransformListContext = TransformListContext; FlinkSqlParser.prototype.transformList = function() { var localctx = new TransformListContext(this, this._ctx, this.state); - this.enterRule(localctx, 38, FlinkSqlParser.RULE_transformList); + this.enterRule(localctx, 44, FlinkSqlParser.RULE_transformList); var _la = 0; // Token type try { this.enterOuterAlt(localctx, 1); - this.state = 329; + this.state = 375; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 330; + this.state = 376; this.transform(); - this.state = 335; + this.state = 381; this._errHandler.sync(this); _la = this._input.LA(1); while(_la===FlinkSqlParser.COMMA) { - this.state = 331; + this.state = 377; this.match(FlinkSqlParser.COMMA); - this.state = 332; + this.state = 378; this.transform(); - this.state = 337; + this.state = 383; this._errHandler.sync(this); _la = this._input.LA(1); } - this.state = 338; + this.state = 384; this.match(FlinkSqlParser.RR_BRACKET); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -3648,42 +4057,42 @@ FlinkSqlParser.TransformContext = TransformContext; FlinkSqlParser.prototype.transform = function() { var localctx = new TransformContext(this, this._ctx, this.state); - this.enterRule(localctx, 40, FlinkSqlParser.RULE_transform); + this.enterRule(localctx, 46, FlinkSqlParser.RULE_transform); var _la = 0; // Token type try { - this.state = 353; + this.state = 399; this._errHandler.sync(this); - var la_ = this._interp.adaptivePredict(this._input,15,this._ctx); + var la_ = this._interp.adaptivePredict(this._input,21,this._ctx); switch(la_) { case 1: localctx = new IdentityTransformContext(this, localctx); this.enterOuterAlt(localctx, 1); - this.state = 340; + this.state = 386; this.qualifiedName(); break; case 2: localctx = new ApplyTransformContext(this, localctx); this.enterOuterAlt(localctx, 2); - this.state = 341; + this.state = 387; localctx.transformName = this.identifier(); - this.state = 342; + this.state = 388; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 343; + this.state = 389; this.transformArgument(); - this.state = 348; + this.state = 394; this._errHandler.sync(this); _la = this._input.LA(1); while(_la===FlinkSqlParser.COMMA) { - this.state = 344; + this.state = 390; this.match(FlinkSqlParser.COMMA); - this.state = 345; + this.state = 391; this.transformArgument(); - this.state = 350; + this.state = 396; this._errHandler.sync(this); _la = this._input.LA(1); } - this.state = 351; + this.state = 397; this.match(FlinkSqlParser.RR_BRACKET); break; @@ -3755,21 +4164,21 @@ FlinkSqlParser.TransformArgumentContext = TransformArgumentContext; FlinkSqlParser.prototype.transformArgument = function() { var localctx = new TransformArgumentContext(this, this._ctx, this.state); - this.enterRule(localctx, 42, FlinkSqlParser.RULE_transformArgument); + this.enterRule(localctx, 48, FlinkSqlParser.RULE_transformArgument); try { - this.state = 357; + this.state = 403; this._errHandler.sync(this); - var la_ = this._interp.adaptivePredict(this._input,16,this._ctx); + var la_ = this._interp.adaptivePredict(this._input,22,this._ctx); switch(la_) { case 1: this.enterOuterAlt(localctx, 1); - this.state = 355; + this.state = 401; this.qualifiedName(); break; case 2: this.enterOuterAlt(localctx, 2); - this.state = 356; + this.state = 402; this.constant(); break; @@ -3845,14 +4254,14 @@ FlinkSqlParser.LikeDefinitionContext = LikeDefinitionContext; FlinkSqlParser.prototype.likeDefinition = function() { var localctx = new LikeDefinitionContext(this, this._ctx, this.state); - this.enterRule(localctx, 44, FlinkSqlParser.RULE_likeDefinition); + this.enterRule(localctx, 50, FlinkSqlParser.RULE_likeDefinition); try { this.enterOuterAlt(localctx, 1); - this.state = 359; + this.state = 405; this.match(FlinkSqlParser.LIKE); - this.state = 360; + this.state = 406; this.identifier(); - this.state = 361; + this.state = 407; this.likeOption(); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -3937,16 +4346,16 @@ FlinkSqlParser.LikeOptionContext = LikeOptionContext; FlinkSqlParser.prototype.likeOption = function() { var localctx = new LikeOptionContext(this, this._ctx, this.state); - this.enterRule(localctx, 46, FlinkSqlParser.RULE_likeOption); + this.enterRule(localctx, 52, FlinkSqlParser.RULE_likeOption); var _la = 0; // Token type try { - this.state = 367; + this.state = 413; this._errHandler.sync(this); - var la_ = this._interp.adaptivePredict(this._input,17,this._ctx); + var la_ = this._interp.adaptivePredict(this._input,23,this._ctx); switch(la_) { case 1: this.enterOuterAlt(localctx, 1); - this.state = 363; + this.state = 409; _la = this._input.LA(1); if(!(_la===FlinkSqlParser.INCLUDING || _la===FlinkSqlParser.EXCLUDING)) { this._errHandler.recoverInline(this); @@ -3955,7 +4364,7 @@ FlinkSqlParser.prototype.likeOption = function() { this._errHandler.reportMatch(this); this.consume(); } - this.state = 364; + this.state = 410; _la = this._input.LA(1); if(!(_la===FlinkSqlParser.ALL || _la===FlinkSqlParser.CONSTRAINTS)) { this._errHandler.recoverInline(this); @@ -3968,7 +4377,7 @@ FlinkSqlParser.prototype.likeOption = function() { case 2: this.enterOuterAlt(localctx, 2); - this.state = 365; + this.state = 411; _la = this._input.LA(1); if(!(_la===FlinkSqlParser.INCLUDING || _la===FlinkSqlParser.EXCLUDING)) { this._errHandler.recoverInline(this); @@ -3977,7 +4386,7 @@ FlinkSqlParser.prototype.likeOption = function() { this._errHandler.reportMatch(this); this.consume(); } - this.state = 366; + this.state = 412; _la = this._input.LA(1); if(!(_la===FlinkSqlParser.OPTIONS || _la===FlinkSqlParser.GENERATED)) { this._errHandler.recoverInline(this); @@ -4064,16 +4473,16 @@ FlinkSqlParser.CreateCatalogContext = CreateCatalogContext; FlinkSqlParser.prototype.createCatalog = function() { var localctx = new CreateCatalogContext(this, this._ctx, this.state); - this.enterRule(localctx, 48, FlinkSqlParser.RULE_createCatalog); + this.enterRule(localctx, 54, FlinkSqlParser.RULE_createCatalog); try { this.enterOuterAlt(localctx, 1); - this.state = 369; + this.state = 415; this.match(FlinkSqlParser.CREATE); - this.state = 370; + this.state = 416; this.match(FlinkSqlParser.CATALOG); - this.state = 371; + this.state = 417; this.uid(); - this.state = 372; + this.state = 418; this.withOption(); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -4158,33 +4567,33 @@ FlinkSqlParser.CreateDatabaseContext = CreateDatabaseContext; FlinkSqlParser.prototype.createDatabase = function() { var localctx = new CreateDatabaseContext(this, this._ctx, this.state); - this.enterRule(localctx, 50, FlinkSqlParser.RULE_createDatabase); + this.enterRule(localctx, 56, FlinkSqlParser.RULE_createDatabase); var _la = 0; // Token type try { this.enterOuterAlt(localctx, 1); - this.state = 374; + this.state = 420; this.match(FlinkSqlParser.CREATE); - this.state = 375; + this.state = 421; this.match(FlinkSqlParser.DATABASE); - this.state = 377; + this.state = 423; this._errHandler.sync(this); _la = this._input.LA(1); if(_la===FlinkSqlParser.IF) { - this.state = 376; + this.state = 422; this.ifNotExists(); } - this.state = 379; + this.state = 425; this.uid(); - this.state = 381; + this.state = 427; this._errHandler.sync(this); _la = this._input.LA(1); if(_la===FlinkSqlParser.COMMENT) { - this.state = 380; + this.state = 426; this.commentSpec(); } - this.state = 383; + this.state = 429; this.withOption(); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -4245,33 +4654,14 @@ CreateViewContext.prototype.ifNotExists = function() { return this.getTypedRuleContext(IfNotExistsContext,0); }; -CreateViewContext.prototype.columnName = function(i) { - if(i===undefined) { - i = null; - } - if(i===null) { - return this.getTypedRuleContexts(ColumnNameContext); - } else { - return this.getTypedRuleContext(ColumnNameContext,i); - } +CreateViewContext.prototype.columnNameList = function() { + return this.getTypedRuleContext(ColumnNameListContext,0); }; CreateViewContext.prototype.commentSpec = function() { return this.getTypedRuleContext(CommentSpecContext,0); }; -CreateViewContext.prototype.COMMA = function(i) { - if(i===undefined) { - i = null; - } - if(i===null) { - return this.getTokens(FlinkSqlParser.COMMA); - } else { - return this.getToken(FlinkSqlParser.COMMA, i); - } -}; - - CreateViewContext.prototype.enterRule = function(listener) { if(listener instanceof FlinkSqlParserListener ) { listener.enterCreateView(this); @@ -4300,63 +4690,51 @@ FlinkSqlParser.CreateViewContext = CreateViewContext; FlinkSqlParser.prototype.createView = function() { var localctx = new CreateViewContext(this, this._ctx, this.state); - this.enterRule(localctx, 52, FlinkSqlParser.RULE_createView); + this.enterRule(localctx, 58, FlinkSqlParser.RULE_createView); var _la = 0; // Token type try { this.enterOuterAlt(localctx, 1); - this.state = 385; + this.state = 431; this.match(FlinkSqlParser.CREATE); - this.state = 387; + this.state = 433; this._errHandler.sync(this); _la = this._input.LA(1); if(_la===FlinkSqlParser.TEMPORARY) { - this.state = 386; + this.state = 432; this.match(FlinkSqlParser.TEMPORARY); } - this.state = 389; + this.state = 435; this.match(FlinkSqlParser.VIEW); - this.state = 391; + this.state = 437; this._errHandler.sync(this); _la = this._input.LA(1); if(_la===FlinkSqlParser.IF) { - this.state = 390; + this.state = 436; this.ifNotExists(); } - this.state = 393; + this.state = 439; this.uid(); - this.state = 402; + this.state = 441; this._errHandler.sync(this); _la = this._input.LA(1); - if(_la===FlinkSqlParser.ID) { - this.state = 394; - this.columnName(); - this.state = 399; - this._errHandler.sync(this); - _la = this._input.LA(1); - while(_la===FlinkSqlParser.COMMA) { - this.state = 395; - this.match(FlinkSqlParser.COMMA); - this.state = 396; - this.columnName(); - this.state = 401; - this._errHandler.sync(this); - _la = this._input.LA(1); - } + if(((((_la - 25)) & ~0x1f) == 0 && ((1 << (_la - 25)) & ((1 << (FlinkSqlParser.NOT - 25)) | (1 << (FlinkSqlParser.EXISTS - 25)) | (1 << (FlinkSqlParser.TRUE - 25)) | (1 << (FlinkSqlParser.FALSE - 25)) | (1 << (FlinkSqlParser.INTERVAL - 25)) | (1 << (FlinkSqlParser.CASE - 25)))) !== 0) || ((((_la - 65)) & ~0x1f) == 0 && ((1 << (_la - 65)) & ((1 << (FlinkSqlParser.FIRST - 65)) | (1 << (FlinkSqlParser.LAST - 65)) | (1 << (FlinkSqlParser.CAST - 65)))) !== 0) || _la===FlinkSqlParser.POSITION || ((((_la - 280)) & ~0x1f) == 0 && ((1 << (_la - 280)) & ((1 << (FlinkSqlParser.NULL - 280)) | (1 << (FlinkSqlParser.BIT_NOT_OP - 280)) | (1 << (FlinkSqlParser.LR_BRACKET - 280)) | (1 << (FlinkSqlParser.ASTERISK_SIGN - 280)) | (1 << (FlinkSqlParser.HYPNEN_SIGN - 280)) | (1 << (FlinkSqlParser.ADD_SIGN - 280)))) !== 0) || ((((_la - 312)) & ~0x1f) == 0 && ((1 << (_la - 312)) & ((1 << (FlinkSqlParser.STRING_LITERAL - 312)) | (1 << (FlinkSqlParser.DIG_LITERAL - 312)) | (1 << (FlinkSqlParser.REAL_LITERAL - 312)) | (1 << (FlinkSqlParser.BIT_STRING - 312)) | (1 << (FlinkSqlParser.ID_LITERAL - 312)) | (1 << (FlinkSqlParser.PLUS_ID_LITERAL - 312)))) !== 0)) { + this.state = 440; + this.columnNameList(); } - this.state = 405; + this.state = 444; this._errHandler.sync(this); _la = this._input.LA(1); if(_la===FlinkSqlParser.COMMENT) { - this.state = 404; + this.state = 443; this.commentSpec(); } - this.state = 407; + this.state = 446; this.match(FlinkSqlParser.AS); - this.state = 408; + this.state = 447; this.queryStatement(0); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -4460,52 +4838,52 @@ FlinkSqlParser.CreateFunctionContext = CreateFunctionContext; FlinkSqlParser.prototype.createFunction = function() { var localctx = new CreateFunctionContext(this, this._ctx, this.state); - this.enterRule(localctx, 54, FlinkSqlParser.RULE_createFunction); + this.enterRule(localctx, 60, FlinkSqlParser.RULE_createFunction); var _la = 0; // Token type try { this.enterOuterAlt(localctx, 1); - this.state = 410; + this.state = 449; this.match(FlinkSqlParser.CREATE); - this.state = 414; + this.state = 453; this._errHandler.sync(this); - var la_ = this._interp.adaptivePredict(this._input,25,this._ctx); + var la_ = this._interp.adaptivePredict(this._input,30,this._ctx); switch(la_) { case 1: - this.state = 411; + this.state = 450; this.match(FlinkSqlParser.TEMPORARY); break; case 2: - this.state = 412; + this.state = 451; this.match(FlinkSqlParser.TEMPORARY); - this.state = 413; + this.state = 452; this.match(FlinkSqlParser.SYSTEM); break; } - this.state = 416; + this.state = 455; this.match(FlinkSqlParser.FUNCTION); - this.state = 418; + this.state = 457; this._errHandler.sync(this); _la = this._input.LA(1); if(_la===FlinkSqlParser.IF) { - this.state = 417; + this.state = 456; this.ifNotExists(); } - this.state = 420; + this.state = 459; this.uid(); - this.state = 421; + this.state = 460; this.match(FlinkSqlParser.AS); - this.state = 422; + this.state = 461; this.identifier(); - this.state = 425; + this.state = 464; this._errHandler.sync(this); _la = this._input.LA(1); if(_la===FlinkSqlParser.LANGUAGE) { - this.state = 423; + this.state = 462; this.match(FlinkSqlParser.LANGUAGE); - this.state = 424; + this.state = 463; this.identifier(); } @@ -4588,24 +4966,24 @@ FlinkSqlParser.AlterTableContext = AlterTableContext; FlinkSqlParser.prototype.alterTable = function() { var localctx = new AlterTableContext(this, this._ctx, this.state); - this.enterRule(localctx, 56, FlinkSqlParser.RULE_alterTable); + this.enterRule(localctx, 62, FlinkSqlParser.RULE_alterTable); try { this.enterOuterAlt(localctx, 1); - this.state = 427; + this.state = 466; this.match(FlinkSqlParser.ALTER); - this.state = 428; + this.state = 467; this.match(FlinkSqlParser.TABLE); - this.state = 429; + this.state = 468; this.uid(); - this.state = 432; + this.state = 471; this._errHandler.sync(this); switch(this._input.LA(1)) { case FlinkSqlParser.RENAME: - this.state = 430; + this.state = 469; this.renameDefinition(); break; case FlinkSqlParser.SET: - this.state = 431; + this.state = 470; this.setKeyValueDefinition(); break; default: @@ -4682,14 +5060,14 @@ FlinkSqlParser.RenameDefinitionContext = RenameDefinitionContext; FlinkSqlParser.prototype.renameDefinition = function() { var localctx = new RenameDefinitionContext(this, this._ctx, this.state); - this.enterRule(localctx, 58, FlinkSqlParser.RULE_renameDefinition); + this.enterRule(localctx, 64, FlinkSqlParser.RULE_renameDefinition); try { this.enterOuterAlt(localctx, 1); - this.state = 434; + this.state = 473; this.match(FlinkSqlParser.RENAME); - this.state = 435; + this.state = 474; this.match(FlinkSqlParser.TO); - this.state = 436; + this.state = 475; this.uid(); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -4758,12 +5136,12 @@ FlinkSqlParser.SetKeyValueDefinitionContext = SetKeyValueDefinitionContext; FlinkSqlParser.prototype.setKeyValueDefinition = function() { var localctx = new SetKeyValueDefinitionContext(this, this._ctx, this.state); - this.enterRule(localctx, 60, FlinkSqlParser.RULE_setKeyValueDefinition); + this.enterRule(localctx, 66, FlinkSqlParser.RULE_setKeyValueDefinition); try { this.enterOuterAlt(localctx, 1); - this.state = 438; + this.state = 477; this.match(FlinkSqlParser.SET); - this.state = 439; + this.state = 478; this.tablePropertyList(); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -4840,16 +5218,16 @@ FlinkSqlParser.AlterDatabaseContext = AlterDatabaseContext; FlinkSqlParser.prototype.alterDatabase = function() { var localctx = new AlterDatabaseContext(this, this._ctx, this.state); - this.enterRule(localctx, 62, FlinkSqlParser.RULE_alterDatabase); + this.enterRule(localctx, 68, FlinkSqlParser.RULE_alterDatabase); try { this.enterOuterAlt(localctx, 1); - this.state = 441; + this.state = 480; this.match(FlinkSqlParser.ALTER); - this.state = 442; + this.state = 481; this.match(FlinkSqlParser.DATABASE); - this.state = 443; + this.state = 482; this.uid(); - this.state = 444; + this.state = 483; this.setKeyValueDefinition(); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -4953,52 +5331,52 @@ FlinkSqlParser.AlterFunctionContext = AlterFunctionContext; FlinkSqlParser.prototype.alterFunction = function() { var localctx = new AlterFunctionContext(this, this._ctx, this.state); - this.enterRule(localctx, 64, FlinkSqlParser.RULE_alterFunction); + this.enterRule(localctx, 70, FlinkSqlParser.RULE_alterFunction); var _la = 0; // Token type try { this.enterOuterAlt(localctx, 1); - this.state = 446; + this.state = 485; this.match(FlinkSqlParser.ALTER); - this.state = 450; + this.state = 489; this._errHandler.sync(this); - var la_ = this._interp.adaptivePredict(this._input,29,this._ctx); + var la_ = this._interp.adaptivePredict(this._input,34,this._ctx); switch(la_) { case 1: - this.state = 447; + this.state = 486; this.match(FlinkSqlParser.TEMPORARY); break; case 2: - this.state = 448; + this.state = 487; this.match(FlinkSqlParser.TEMPORARY); - this.state = 449; + this.state = 488; this.match(FlinkSqlParser.SYSTEM); break; } - this.state = 452; + this.state = 491; this.match(FlinkSqlParser.FUNCTION); - this.state = 454; + this.state = 493; this._errHandler.sync(this); _la = this._input.LA(1); if(_la===FlinkSqlParser.IF) { - this.state = 453; + this.state = 492; this.ifExists(); } - this.state = 456; + this.state = 495; this.uid(); - this.state = 457; + this.state = 496; this.match(FlinkSqlParser.AS); - this.state = 458; + this.state = 497; this.identifier(); - this.state = 461; + this.state = 500; this._errHandler.sync(this); _la = this._input.LA(1); if(_la===FlinkSqlParser.LANGUAGE) { - this.state = 459; + this.state = 498; this.match(FlinkSqlParser.LANGUAGE); - this.state = 460; + this.state = 499; this.identifier(); } @@ -5077,23 +5455,23 @@ FlinkSqlParser.DropTableContext = DropTableContext; FlinkSqlParser.prototype.dropTable = function() { var localctx = new DropTableContext(this, this._ctx, this.state); - this.enterRule(localctx, 66, FlinkSqlParser.RULE_dropTable); + this.enterRule(localctx, 72, FlinkSqlParser.RULE_dropTable); var _la = 0; // Token type try { this.enterOuterAlt(localctx, 1); - this.state = 463; + this.state = 502; this.match(FlinkSqlParser.DROP); - this.state = 464; + this.state = 503; this.match(FlinkSqlParser.TABLE); - this.state = 466; + this.state = 505; this._errHandler.sync(this); _la = this._input.LA(1); if(_la===FlinkSqlParser.IF) { - this.state = 465; + this.state = 504; this.ifExists(); } - this.state = 468; + this.state = 507; this.uid(); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -5179,29 +5557,29 @@ FlinkSqlParser.DropDatabaseContext = DropDatabaseContext; FlinkSqlParser.prototype.dropDatabase = function() { var localctx = new DropDatabaseContext(this, this._ctx, this.state); - this.enterRule(localctx, 68, FlinkSqlParser.RULE_dropDatabase); + this.enterRule(localctx, 74, FlinkSqlParser.RULE_dropDatabase); var _la = 0; // Token type try { this.enterOuterAlt(localctx, 1); - this.state = 470; + this.state = 509; this.match(FlinkSqlParser.DROP); - this.state = 471; + this.state = 510; this.match(FlinkSqlParser.DATABASE); - this.state = 473; + this.state = 512; this._errHandler.sync(this); _la = this._input.LA(1); if(_la===FlinkSqlParser.IF) { - this.state = 472; + this.state = 511; this.ifExists(); } - this.state = 475; + this.state = 514; this.uid(); - this.state = 477; + this.state = 516; this._errHandler.sync(this); _la = this._input.LA(1); if(_la===FlinkSqlParser.CASCADE || _la===FlinkSqlParser.RESTRICT) { - this.state = 476; + this.state = 515; localctx.dropType = this._input.LT(1); _la = this._input.LA(1); if(!(_la===FlinkSqlParser.CASCADE || _la===FlinkSqlParser.RESTRICT)) { @@ -5292,31 +5670,31 @@ FlinkSqlParser.DropViewContext = DropViewContext; FlinkSqlParser.prototype.dropView = function() { var localctx = new DropViewContext(this, this._ctx, this.state); - this.enterRule(localctx, 70, FlinkSqlParser.RULE_dropView); + this.enterRule(localctx, 76, FlinkSqlParser.RULE_dropView); var _la = 0; // Token type try { this.enterOuterAlt(localctx, 1); - this.state = 479; + this.state = 518; this.match(FlinkSqlParser.DROP); - this.state = 481; + this.state = 520; this._errHandler.sync(this); _la = this._input.LA(1); if(_la===FlinkSqlParser.TEMPORARY) { - this.state = 480; + this.state = 519; this.match(FlinkSqlParser.TEMPORARY); } - this.state = 483; + this.state = 522; this.match(FlinkSqlParser.VIEW); - this.state = 485; + this.state = 524; this._errHandler.sync(this); _la = this._input.LA(1); if(_la===FlinkSqlParser.IF) { - this.state = 484; + this.state = 523; this.ifExists(); } - this.state = 487; + this.state = 526; this.uid(); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -5401,37 +5779,37 @@ FlinkSqlParser.DropFunctionContext = DropFunctionContext; FlinkSqlParser.prototype.dropFunction = function() { var localctx = new DropFunctionContext(this, this._ctx, this.state); - this.enterRule(localctx, 72, FlinkSqlParser.RULE_dropFunction); + this.enterRule(localctx, 78, FlinkSqlParser.RULE_dropFunction); var _la = 0; // Token type try { this.enterOuterAlt(localctx, 1); - this.state = 489; + this.state = 528; this.match(FlinkSqlParser.DROP); - this.state = 493; + this.state = 532; this._errHandler.sync(this); - var la_ = this._interp.adaptivePredict(this._input,37,this._ctx); + var la_ = this._interp.adaptivePredict(this._input,42,this._ctx); if(la_===1) { - this.state = 490; + this.state = 529; this.match(FlinkSqlParser.TEMPORARY); } else if(la_===2) { - this.state = 491; + this.state = 530; this.match(FlinkSqlParser.TEMPORARY); - this.state = 492; + this.state = 531; this.match(FlinkSqlParser.SYSTEM); } - this.state = 495; + this.state = 534; this.match(FlinkSqlParser.FUNCTION); - this.state = 497; + this.state = 536; this._errHandler.sync(this); _la = this._input.LA(1); if(_la===FlinkSqlParser.IF) { - this.state = 496; + this.state = 535; this.ifExists(); } - this.state = 499; + this.state = 538; this.uid(); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -5520,13 +5898,13 @@ FlinkSqlParser.InsertStatementContext = InsertStatementContext; FlinkSqlParser.prototype.insertStatement = function() { var localctx = new InsertStatementContext(this, this._ctx, this.state); - this.enterRule(localctx, 74, FlinkSqlParser.RULE_insertStatement); + this.enterRule(localctx, 80, FlinkSqlParser.RULE_insertStatement); var _la = 0; // Token type try { this.enterOuterAlt(localctx, 1); - this.state = 501; + this.state = 540; this.match(FlinkSqlParser.INSERT); - this.state = 502; + this.state = 541; _la = this._input.LA(1); if(!(_la===FlinkSqlParser.INTO || _la===FlinkSqlParser.OVERWRITE)) { this._errHandler.recoverInline(this); @@ -5535,27 +5913,27 @@ FlinkSqlParser.prototype.insertStatement = function() { this._errHandler.reportMatch(this); this.consume(); } - this.state = 503; + this.state = 542; this.uid(); - this.state = 509; + this.state = 548; this._errHandler.sync(this); - var la_ = this._interp.adaptivePredict(this._input,40,this._ctx); + var la_ = this._interp.adaptivePredict(this._input,45,this._ctx); switch(la_) { case 1: - this.state = 505; + this.state = 544; this._errHandler.sync(this); _la = this._input.LA(1); if(_la===FlinkSqlParser.PARTITION) { - this.state = 504; + this.state = 543; this.insertPartitionDefinition(); } - this.state = 507; + this.state = 546; this.queryStatement(0); break; case 2: - this.state = 508; + this.state = 547; this.valuesDefinition(); break; @@ -5627,12 +6005,12 @@ FlinkSqlParser.InsertPartitionDefinitionContext = InsertPartitionDefinitionConte FlinkSqlParser.prototype.insertPartitionDefinition = function() { var localctx = new InsertPartitionDefinitionContext(this, this._ctx, this.state); - this.enterRule(localctx, 76, FlinkSqlParser.RULE_insertPartitionDefinition); + this.enterRule(localctx, 82, FlinkSqlParser.RULE_insertPartitionDefinition); try { this.enterOuterAlt(localctx, 1); - this.state = 511; + this.state = 550; this.match(FlinkSqlParser.PARTITION); - this.state = 512; + this.state = 551; this.tablePropertyList(); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -5720,23 +6098,23 @@ FlinkSqlParser.ValuesDefinitionContext = ValuesDefinitionContext; FlinkSqlParser.prototype.valuesDefinition = function() { var localctx = new ValuesDefinitionContext(this, this._ctx, this.state); - this.enterRule(localctx, 78, FlinkSqlParser.RULE_valuesDefinition); + this.enterRule(localctx, 84, FlinkSqlParser.RULE_valuesDefinition); var _la = 0; // Token type try { this.enterOuterAlt(localctx, 1); - this.state = 514; + this.state = 553; this.match(FlinkSqlParser.VALUES); - this.state = 515; + this.state = 554; this.valuesRowDefinition(); - this.state = 520; + this.state = 559; this._errHandler.sync(this); _la = this._input.LA(1); while(_la===FlinkSqlParser.COMMA) { - this.state = 516; + this.state = 555; this.match(FlinkSqlParser.COMMA); - this.state = 517; + this.state = 556; this.valuesRowDefinition(); - this.state = 522; + this.state = 561; this._errHandler.sync(this); _la = this._input.LA(1); } @@ -5830,27 +6208,27 @@ FlinkSqlParser.ValuesRowDefinitionContext = ValuesRowDefinitionContext; FlinkSqlParser.prototype.valuesRowDefinition = function() { var localctx = new ValuesRowDefinitionContext(this, this._ctx, this.state); - this.enterRule(localctx, 80, FlinkSqlParser.RULE_valuesRowDefinition); + this.enterRule(localctx, 86, FlinkSqlParser.RULE_valuesRowDefinition); var _la = 0; // Token type try { this.enterOuterAlt(localctx, 1); - this.state = 523; + this.state = 562; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 524; + this.state = 563; this.constant(); - this.state = 529; + this.state = 568; this._errHandler.sync(this); _la = this._input.LA(1); while(_la===FlinkSqlParser.COMMA) { - this.state = 525; + this.state = 564; this.match(FlinkSqlParser.COMMA); - this.state = 526; + this.state = 565; this.constant(); - this.state = 531; + this.state = 570; this._errHandler.sync(this); _la = this._input.LA(1); } - this.state = 532; + this.state = 571; this.match(FlinkSqlParser.RR_BRACKET); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -5971,66 +6349,66 @@ FlinkSqlParser.prototype.queryStatement = function(_p) { var _parentState = this.state; var localctx = new QueryStatementContext(this, this._ctx, _parentState); var _prevctx = localctx; - var _startState = 82; - this.enterRecursionRule(localctx, 82, FlinkSqlParser.RULE_queryStatement, _p); + var _startState = 88; + this.enterRecursionRule(localctx, 88, FlinkSqlParser.RULE_queryStatement, _p); var _la = 0; // Token type try { this.enterOuterAlt(localctx, 1); - this.state = 554; + this.state = 593; this._errHandler.sync(this); - var la_ = this._interp.adaptivePredict(this._input,47,this._ctx); + var la_ = this._interp.adaptivePredict(this._input,52,this._ctx); switch(la_) { case 1: - this.state = 535; + this.state = 574; this.valuesCaluse(); break; case 2: - this.state = 536; + this.state = 575; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 537; + this.state = 576; this.queryStatement(0); - this.state = 538; + this.state = 577; this.match(FlinkSqlParser.RR_BRACKET); break; case 3: - this.state = 540; + this.state = 579; this.selectClause(); - this.state = 542; + this.state = 581; this._errHandler.sync(this); - var la_ = this._interp.adaptivePredict(this._input,43,this._ctx); + var la_ = this._interp.adaptivePredict(this._input,48,this._ctx); if(la_===1) { - this.state = 541; + this.state = 580; this.orderByCaluse(); } - this.state = 545; + this.state = 584; this._errHandler.sync(this); - var la_ = this._interp.adaptivePredict(this._input,44,this._ctx); + var la_ = this._interp.adaptivePredict(this._input,49,this._ctx); if(la_===1) { - this.state = 544; + this.state = 583; this.limitClause(); } break; case 4: - this.state = 547; + this.state = 586; this.selectStatement(); - this.state = 549; + this.state = 588; this._errHandler.sync(this); - var la_ = this._interp.adaptivePredict(this._input,45,this._ctx); + var la_ = this._interp.adaptivePredict(this._input,50,this._ctx); if(la_===1) { - this.state = 548; + this.state = 587; this.orderByCaluse(); } - this.state = 552; + this.state = 591; this._errHandler.sync(this); - var la_ = this._interp.adaptivePredict(this._input,46,this._ctx); + var la_ = this._interp.adaptivePredict(this._input,51,this._ctx); if(la_===1) { - this.state = 551; + this.state = 590; this.limitClause(); } @@ -6038,9 +6416,9 @@ FlinkSqlParser.prototype.queryStatement = function(_p) { } this._ctx.stop = this._input.LT(-1); - this.state = 570; + this.state = 609; this._errHandler.sync(this); - var _alt = this._interp.adaptivePredict(this._input,51,this._ctx) + var _alt = this._interp.adaptivePredict(this._input,56,this._ctx) while(_alt!=2 && _alt!=antlr4.atn.ATN.INVALID_ALT_NUMBER) { if(_alt===1) { if(this._parseListeners!==null) { @@ -6050,11 +6428,11 @@ FlinkSqlParser.prototype.queryStatement = function(_p) { localctx = new QueryStatementContext(this, _parentctx, _parentState); localctx.left = _prevctx; this.pushNewRecursionContext(localctx, _startState, FlinkSqlParser.RULE_queryStatement); - this.state = 556; + this.state = 595; if (!( this.precpred(this._ctx, 3))) { throw new antlr4.error.FailedPredicateException(this, "this.precpred(this._ctx, 3)"); } - this.state = 557; + this.state = 596; localctx.operator = this._input.LT(1); _la = this._input.LA(1); if(!(((((_la - 93)) & ~0x1f) == 0 && ((1 << (_la - 93)) & ((1 << (FlinkSqlParser.UNION - 93)) | (1 << (FlinkSqlParser.EXCEPT - 93)) | (1 << (FlinkSqlParser.INTERSECT - 93)))) !== 0))) { @@ -6064,36 +6442,36 @@ FlinkSqlParser.prototype.queryStatement = function(_p) { this._errHandler.reportMatch(this); this.consume(); } - this.state = 559; + this.state = 598; this._errHandler.sync(this); _la = this._input.LA(1); if(_la===FlinkSqlParser.ALL) { - this.state = 558; + this.state = 597; this.match(FlinkSqlParser.ALL); } - this.state = 561; + this.state = 600; localctx.right = this.queryStatement(0); - this.state = 563; + this.state = 602; this._errHandler.sync(this); - var la_ = this._interp.adaptivePredict(this._input,49,this._ctx); + var la_ = this._interp.adaptivePredict(this._input,54,this._ctx); if(la_===1) { - this.state = 562; + this.state = 601; this.orderByCaluse(); } - this.state = 566; + this.state = 605; this._errHandler.sync(this); - var la_ = this._interp.adaptivePredict(this._input,50,this._ctx); + var la_ = this._interp.adaptivePredict(this._input,55,this._ctx); if(la_===1) { - this.state = 565; + this.state = 604; this.limitClause(); } } - this.state = 572; + this.state = 611; this._errHandler.sync(this); - _alt = this._interp.adaptivePredict(this._input,51,this._ctx); + _alt = this._interp.adaptivePredict(this._input,56,this._ctx); } } catch( error) { @@ -6182,26 +6560,26 @@ FlinkSqlParser.ValuesCaluseContext = ValuesCaluseContext; FlinkSqlParser.prototype.valuesCaluse = function() { var localctx = new ValuesCaluseContext(this, this._ctx, this.state); - this.enterRule(localctx, 84, FlinkSqlParser.RULE_valuesCaluse); + this.enterRule(localctx, 90, FlinkSqlParser.RULE_valuesCaluse); try { this.enterOuterAlt(localctx, 1); - this.state = 573; + this.state = 612; this.match(FlinkSqlParser.VALUES); - this.state = 574; + this.state = 613; this.expression(); - this.state = 579; + this.state = 618; this._errHandler.sync(this); - var _alt = this._interp.adaptivePredict(this._input,52,this._ctx) + var _alt = this._interp.adaptivePredict(this._input,57,this._ctx) while(_alt!=2 && _alt!=antlr4.atn.ATN.INVALID_ALT_NUMBER) { if(_alt===1) { - this.state = 575; + this.state = 614; this.match(FlinkSqlParser.COMMA); - this.state = 576; + this.state = 615; this.expression(); } - this.state = 581; + this.state = 620; this._errHandler.sync(this); - _alt = this._interp.adaptivePredict(this._input,52,this._ctx); + _alt = this._interp.adaptivePredict(this._input,57,this._ctx); } } catch (re) { @@ -6287,42 +6665,42 @@ FlinkSqlParser.SelectStatementContext = SelectStatementContext; FlinkSqlParser.prototype.selectStatement = function() { var localctx = new SelectStatementContext(this, this._ctx, this.state); - this.enterRule(localctx, 86, FlinkSqlParser.RULE_selectStatement); + this.enterRule(localctx, 92, FlinkSqlParser.RULE_selectStatement); try { this.enterOuterAlt(localctx, 1); - this.state = 582; + this.state = 621; this.selectClause(); - this.state = 583; + this.state = 622; this.fromClause(); - this.state = 585; + this.state = 624; this._errHandler.sync(this); - var la_ = this._interp.adaptivePredict(this._input,53,this._ctx); + var la_ = this._interp.adaptivePredict(this._input,58,this._ctx); if(la_===1) { - this.state = 584; + this.state = 623; this.whereClause(); } - this.state = 588; + this.state = 627; this._errHandler.sync(this); - var la_ = this._interp.adaptivePredict(this._input,54,this._ctx); + var la_ = this._interp.adaptivePredict(this._input,59,this._ctx); if(la_===1) { - this.state = 587; + this.state = 626; this.groupByClause(); } - this.state = 591; + this.state = 630; this._errHandler.sync(this); - var la_ = this._interp.adaptivePredict(this._input,55,this._ctx); + var la_ = this._interp.adaptivePredict(this._input,60,this._ctx); if(la_===1) { - this.state = 590; + this.state = 629; this.havingClause(); } - this.state = 594; + this.state = 633; this._errHandler.sync(this); - var la_ = this._interp.adaptivePredict(this._input,56,this._ctx); + var la_ = this._interp.adaptivePredict(this._input,61,this._ctx); if(la_===1) { - this.state = 593; + this.state = 632; this.windowClause(); } @@ -6420,45 +6798,45 @@ FlinkSqlParser.SelectClauseContext = SelectClauseContext; FlinkSqlParser.prototype.selectClause = function() { var localctx = new SelectClauseContext(this, this._ctx, this.state); - this.enterRule(localctx, 88, FlinkSqlParser.RULE_selectClause); + this.enterRule(localctx, 94, FlinkSqlParser.RULE_selectClause); var _la = 0; // Token type try { this.enterOuterAlt(localctx, 1); - this.state = 596; + this.state = 635; this.match(FlinkSqlParser.SELECT); - this.state = 598; + this.state = 637; this._errHandler.sync(this); _la = this._input.LA(1); if(_la===FlinkSqlParser.ALL || _la===FlinkSqlParser.DISTINCT) { - this.state = 597; + this.state = 636; this.setQuantifier(); } - this.state = 609; + this.state = 648; this._errHandler.sync(this); - var la_ = this._interp.adaptivePredict(this._input,59,this._ctx); + var la_ = this._interp.adaptivePredict(this._input,64,this._ctx); switch(la_) { case 1: - this.state = 600; + this.state = 639; this.match(FlinkSqlParser.ASTERISK_SIGN); break; case 2: - this.state = 601; + this.state = 640; this.projectItemDefinition(); - this.state = 606; + this.state = 645; this._errHandler.sync(this); - var _alt = this._interp.adaptivePredict(this._input,58,this._ctx) + var _alt = this._interp.adaptivePredict(this._input,63,this._ctx) while(_alt!=2 && _alt!=antlr4.atn.ATN.INVALID_ALT_NUMBER) { if(_alt===1) { - this.state = 602; + this.state = 641; this.match(FlinkSqlParser.COMMA); - this.state = 603; + this.state = 642; this.projectItemDefinition(); } - this.state = 608; + this.state = 647; this._errHandler.sync(this); - _alt = this._interp.adaptivePredict(this._input,58,this._ctx); + _alt = this._interp.adaptivePredict(this._input,63,this._ctx); } break; @@ -6535,25 +6913,25 @@ FlinkSqlParser.ProjectItemDefinitionContext = ProjectItemDefinitionContext; FlinkSqlParser.prototype.projectItemDefinition = function() { var localctx = new ProjectItemDefinitionContext(this, this._ctx, this.state); - this.enterRule(localctx, 90, FlinkSqlParser.RULE_projectItemDefinition); + this.enterRule(localctx, 96, FlinkSqlParser.RULE_projectItemDefinition); var _la = 0; // Token type try { this.enterOuterAlt(localctx, 1); - this.state = 611; + this.state = 650; this.expression(); - this.state = 616; + this.state = 655; this._errHandler.sync(this); - var la_ = this._interp.adaptivePredict(this._input,61,this._ctx); + var la_ = this._interp.adaptivePredict(this._input,66,this._ctx); if(la_===1) { - this.state = 613; + this.state = 652; this._errHandler.sync(this); _la = this._input.LA(1); if(_la===FlinkSqlParser.AS) { - this.state = 612; + this.state = 651; this.match(FlinkSqlParser.AS); } - this.state = 615; + this.state = 654; this.uid(); } @@ -6624,12 +7002,12 @@ FlinkSqlParser.FromClauseContext = FromClauseContext; FlinkSqlParser.prototype.fromClause = function() { var localctx = new FromClauseContext(this, this._ctx, this.state); - this.enterRule(localctx, 92, FlinkSqlParser.RULE_fromClause); + this.enterRule(localctx, 98, FlinkSqlParser.RULE_fromClause); try { this.enterOuterAlt(localctx, 1); - this.state = 618; + this.state = 657; this.match(FlinkSqlParser.FROM); - this.state = 619; + this.state = 658; this.tableExpression(0); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -6750,32 +7128,32 @@ FlinkSqlParser.prototype.tableExpression = function(_p) { var _parentState = this.state; var localctx = new TableExpressionContext(this, this._ctx, _parentState); var _prevctx = localctx; - var _startState = 94; - this.enterRecursionRule(localctx, 94, FlinkSqlParser.RULE_tableExpression, _p); + var _startState = 100; + this.enterRecursionRule(localctx, 100, FlinkSqlParser.RULE_tableExpression, _p); var _la = 0; // Token type try { this.enterOuterAlt(localctx, 1); - this.state = 622; + this.state = 661; this.tableReference(); - this.state = 627; + this.state = 666; this._errHandler.sync(this); - var _alt = this._interp.adaptivePredict(this._input,62,this._ctx) + var _alt = this._interp.adaptivePredict(this._input,67,this._ctx) while(_alt!=2 && _alt!=antlr4.atn.ATN.INVALID_ALT_NUMBER) { if(_alt===1) { - this.state = 623; + this.state = 662; this.match(FlinkSqlParser.COMMA); - this.state = 624; + this.state = 663; this.tableReference(); } - this.state = 629; + this.state = 668; this._errHandler.sync(this); - _alt = this._interp.adaptivePredict(this._input,62,this._ctx); + _alt = this._interp.adaptivePredict(this._input,67,this._ctx); } this._ctx.stop = this._input.LT(-1); - this.state = 644; + this.state = 683; this._errHandler.sync(this); - var _alt = this._interp.adaptivePredict(this._input,66,this._ctx) + var _alt = this._interp.adaptivePredict(this._input,71,this._ctx) while(_alt!=2 && _alt!=antlr4.atn.ATN.INVALID_ALT_NUMBER) { if(_alt===1) { if(this._parseListeners!==null) { @@ -6784,23 +7162,23 @@ FlinkSqlParser.prototype.tableExpression = function(_p) { _prevctx = localctx; localctx = new TableExpressionContext(this, _parentctx, _parentState); this.pushNewRecursionContext(localctx, _startState, FlinkSqlParser.RULE_tableExpression); - this.state = 630; + this.state = 669; if (!( this.precpred(this._ctx, 1))) { throw new antlr4.error.FailedPredicateException(this, "this.precpred(this._ctx, 1)"); } - this.state = 632; + this.state = 671; this._errHandler.sync(this); _la = this._input.LA(1); if(_la===FlinkSqlParser.NATURAL) { - this.state = 631; + this.state = 670; this.match(FlinkSqlParser.NATURAL); } - this.state = 635; + this.state = 674; this._errHandler.sync(this); _la = this._input.LA(1); if(((((_la - 48)) & ~0x1f) == 0 && ((1 << (_la - 48)) & ((1 << (FlinkSqlParser.LEFT - 48)) | (1 << (FlinkSqlParser.RIGHT - 48)) | (1 << (FlinkSqlParser.FULL - 48)))) !== 0)) { - this.state = 634; + this.state = 673; _la = this._input.LA(1); if(!(((((_la - 48)) & ~0x1f) == 0 && ((1 << (_la - 48)) & ((1 << (FlinkSqlParser.LEFT - 48)) | (1 << (FlinkSqlParser.RIGHT - 48)) | (1 << (FlinkSqlParser.FULL - 48)))) !== 0))) { this._errHandler.recoverInline(this); @@ -6811,22 +7189,22 @@ FlinkSqlParser.prototype.tableExpression = function(_p) { } } - this.state = 637; + this.state = 676; this.match(FlinkSqlParser.JOIN); - this.state = 638; + this.state = 677; this.tableExpression(0); - this.state = 640; + this.state = 679; this._errHandler.sync(this); - var la_ = this._interp.adaptivePredict(this._input,65,this._ctx); + var la_ = this._interp.adaptivePredict(this._input,70,this._ctx); if(la_===1) { - this.state = 639; + this.state = 678; this.joinCondition(); } } - this.state = 646; + this.state = 685; this._errHandler.sync(this); - _alt = this._interp.adaptivePredict(this._input,66,this._ctx); + _alt = this._interp.adaptivePredict(this._input,71,this._ctx); } } catch( error) { @@ -6896,16 +7274,16 @@ FlinkSqlParser.TableReferenceContext = TableReferenceContext; FlinkSqlParser.prototype.tableReference = function() { var localctx = new TableReferenceContext(this, this._ctx, this.state); - this.enterRule(localctx, 96, FlinkSqlParser.RULE_tableReference); + this.enterRule(localctx, 102, FlinkSqlParser.RULE_tableReference); try { this.enterOuterAlt(localctx, 1); - this.state = 647; + this.state = 686; this.tablePrimary(); - this.state = 649; + this.state = 688; this._errHandler.sync(this); - var la_ = this._interp.adaptivePredict(this._input,67,this._ctx); + var la_ = this._interp.adaptivePredict(this._input,72,this._ctx); if(la_===1) { - this.state = 648; + this.state = 687; this.tableAlias(); } @@ -7031,10 +7409,10 @@ FlinkSqlParser.TablePrimaryContext = TablePrimaryContext; FlinkSqlParser.prototype.tablePrimary = function() { var localctx = new TablePrimaryContext(this, this._ctx, this.state); - this.enterRule(localctx, 98, FlinkSqlParser.RULE_tablePrimary); + this.enterRule(localctx, 104, FlinkSqlParser.RULE_tablePrimary); var _la = 0; // Token type try { - this.state = 676; + this.state = 715; this._errHandler.sync(this); switch(this._input.LA(1)) { case FlinkSqlParser.NOT: @@ -7046,6 +7424,7 @@ FlinkSqlParser.prototype.tablePrimary = function() { case FlinkSqlParser.FIRST: case FlinkSqlParser.LAST: case FlinkSqlParser.TABLE: + case FlinkSqlParser.CAST: case FlinkSqlParser.POSITION: case FlinkSqlParser.NULL: case FlinkSqlParser.BIT_NOT_OP: @@ -7057,59 +7436,59 @@ FlinkSqlParser.prototype.tablePrimary = function() { case FlinkSqlParser.DIG_LITERAL: case FlinkSqlParser.REAL_LITERAL: case FlinkSqlParser.BIT_STRING: - case FlinkSqlParser.ID: + case FlinkSqlParser.ID_LITERAL: this.enterOuterAlt(localctx, 1); - this.state = 652; + this.state = 691; this._errHandler.sync(this); _la = this._input.LA(1); if(_la===FlinkSqlParser.TABLE) { - this.state = 651; + this.state = 690; this.match(FlinkSqlParser.TABLE); } - this.state = 654; + this.state = 693; this.expression(); break; case FlinkSqlParser.LATERAL: this.enterOuterAlt(localctx, 2); - this.state = 655; + this.state = 694; this.match(FlinkSqlParser.LATERAL); - this.state = 656; + this.state = 695; this.match(FlinkSqlParser.TABLE); - this.state = 657; + this.state = 696; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 658; + this.state = 697; this.uid(); - this.state = 659; + this.state = 698; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 660; + this.state = 699; this.expression(); - this.state = 665; + this.state = 704; this._errHandler.sync(this); _la = this._input.LA(1); while(_la===FlinkSqlParser.COMMA) { - this.state = 661; + this.state = 700; this.match(FlinkSqlParser.COMMA); - this.state = 662; + this.state = 701; this.expression(); - this.state = 667; + this.state = 706; this._errHandler.sync(this); _la = this._input.LA(1); } - this.state = 668; + this.state = 707; this.match(FlinkSqlParser.RR_BRACKET); - this.state = 669; + this.state = 708; this.match(FlinkSqlParser.RR_BRACKET); break; case FlinkSqlParser.UNNEST: this.enterOuterAlt(localctx, 3); - this.state = 671; + this.state = 710; this.match(FlinkSqlParser.UNNEST); - this.state = 672; + this.state = 711; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 673; + this.state = 712; this.expression(); - this.state = 674; + this.state = 713; this.match(FlinkSqlParser.RR_BRACKET); break; default: @@ -7217,40 +7596,40 @@ FlinkSqlParser.JoinConditionContext = JoinConditionContext; FlinkSqlParser.prototype.joinCondition = function() { var localctx = new JoinConditionContext(this, this._ctx, this.state); - this.enterRule(localctx, 100, FlinkSqlParser.RULE_joinCondition); + this.enterRule(localctx, 106, FlinkSqlParser.RULE_joinCondition); var _la = 0; // Token type try { - this.state = 692; + this.state = 731; this._errHandler.sync(this); switch(this._input.LA(1)) { case FlinkSqlParser.ON: this.enterOuterAlt(localctx, 1); - this.state = 678; + this.state = 717; this.match(FlinkSqlParser.ON); - this.state = 679; + this.state = 718; this.booleanExpression(0); break; case FlinkSqlParser.USING: this.enterOuterAlt(localctx, 2); - this.state = 680; + this.state = 719; this.match(FlinkSqlParser.USING); - this.state = 681; + this.state = 720; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 682; + this.state = 721; this.uid(); - this.state = 687; + this.state = 726; this._errHandler.sync(this); _la = this._input.LA(1); while(_la===FlinkSqlParser.COMMA) { - this.state = 683; + this.state = 722; this.match(FlinkSqlParser.COMMA); - this.state = 684; + this.state = 723; this.uid(); - this.state = 689; + this.state = 728; this._errHandler.sync(this); _la = this._input.LA(1); } - this.state = 690; + this.state = 729; this.match(FlinkSqlParser.RR_BRACKET); break; default: @@ -7323,12 +7702,12 @@ FlinkSqlParser.WhereClauseContext = WhereClauseContext; FlinkSqlParser.prototype.whereClause = function() { var localctx = new WhereClauseContext(this, this._ctx, this.state); - this.enterRule(localctx, 102, FlinkSqlParser.RULE_whereClause); + this.enterRule(localctx, 108, FlinkSqlParser.RULE_whereClause); try { this.enterOuterAlt(localctx, 1); - this.state = 694; + this.state = 733; this.match(FlinkSqlParser.WHERE); - this.state = 695; + this.state = 734; this.booleanExpression(0); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -7420,28 +7799,28 @@ FlinkSqlParser.GroupByClauseContext = GroupByClauseContext; FlinkSqlParser.prototype.groupByClause = function() { var localctx = new GroupByClauseContext(this, this._ctx, this.state); - this.enterRule(localctx, 104, FlinkSqlParser.RULE_groupByClause); + this.enterRule(localctx, 110, FlinkSqlParser.RULE_groupByClause); try { this.enterOuterAlt(localctx, 1); - this.state = 697; + this.state = 736; this.match(FlinkSqlParser.GROUP); - this.state = 698; + this.state = 737; this.match(FlinkSqlParser.BY); - this.state = 699; + this.state = 738; this.groupItemDefinition(); - this.state = 704; + this.state = 743; this._errHandler.sync(this); - var _alt = this._interp.adaptivePredict(this._input,73,this._ctx) + var _alt = this._interp.adaptivePredict(this._input,78,this._ctx) while(_alt!=2 && _alt!=antlr4.atn.ATN.INVALID_ALT_NUMBER) { if(_alt===1) { - this.state = 700; + this.state = 739; this.match(FlinkSqlParser.COMMA); - this.state = 701; + this.state = 740; this.groupItemDefinition(); } - this.state = 706; + this.state = 745; this._errHandler.sync(this); - _alt = this._interp.adaptivePredict(this._input,73,this._ctx); + _alt = this._interp.adaptivePredict(this._input,78,this._ctx); } } catch (re) { @@ -7561,120 +7940,120 @@ FlinkSqlParser.GroupItemDefinitionContext = GroupItemDefinitionContext; FlinkSqlParser.prototype.groupItemDefinition = function() { var localctx = new GroupItemDefinitionContext(this, this._ctx, this.state); - this.enterRule(localctx, 106, FlinkSqlParser.RULE_groupItemDefinition); + this.enterRule(localctx, 112, FlinkSqlParser.RULE_groupItemDefinition); var _la = 0; // Token type try { - this.state = 758; + this.state = 797; this._errHandler.sync(this); - var la_ = this._interp.adaptivePredict(this._input,78,this._ctx); + var la_ = this._interp.adaptivePredict(this._input,83,this._ctx); switch(la_) { case 1: this.enterOuterAlt(localctx, 1); - this.state = 707; + this.state = 746; this.expression(); break; case 2: this.enterOuterAlt(localctx, 2); - this.state = 708; + this.state = 747; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 709; + this.state = 748; this.match(FlinkSqlParser.RR_BRACKET); break; case 3: this.enterOuterAlt(localctx, 3); - this.state = 710; + this.state = 749; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 711; + this.state = 750; this.expression(); - this.state = 716; + this.state = 755; this._errHandler.sync(this); _la = this._input.LA(1); while(_la===FlinkSqlParser.COMMA) { - this.state = 712; + this.state = 751; this.match(FlinkSqlParser.COMMA); - this.state = 713; + this.state = 752; this.expression(); - this.state = 718; + this.state = 757; this._errHandler.sync(this); _la = this._input.LA(1); } - this.state = 719; + this.state = 758; this.match(FlinkSqlParser.RR_BRACKET); break; case 4: this.enterOuterAlt(localctx, 4); - this.state = 721; + this.state = 760; this.match(FlinkSqlParser.CUBE); - this.state = 722; + this.state = 761; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 723; + this.state = 762; this.expression(); - this.state = 728; + this.state = 767; this._errHandler.sync(this); _la = this._input.LA(1); while(_la===FlinkSqlParser.COMMA) { - this.state = 724; + this.state = 763; this.match(FlinkSqlParser.COMMA); - this.state = 725; + this.state = 764; this.expression(); - this.state = 730; + this.state = 769; this._errHandler.sync(this); _la = this._input.LA(1); } - this.state = 731; + this.state = 770; this.match(FlinkSqlParser.RR_BRACKET); break; case 5: this.enterOuterAlt(localctx, 5); - this.state = 733; + this.state = 772; this.match(FlinkSqlParser.ROLLUP); - this.state = 734; + this.state = 773; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 735; + this.state = 774; this.expression(); - this.state = 740; + this.state = 779; this._errHandler.sync(this); _la = this._input.LA(1); while(_la===FlinkSqlParser.COMMA) { - this.state = 736; + this.state = 775; this.match(FlinkSqlParser.COMMA); - this.state = 737; + this.state = 776; this.expression(); - this.state = 742; + this.state = 781; this._errHandler.sync(this); _la = this._input.LA(1); } - this.state = 743; + this.state = 782; this.match(FlinkSqlParser.RR_BRACKET); break; case 6: this.enterOuterAlt(localctx, 6); - this.state = 745; + this.state = 784; this.match(FlinkSqlParser.GROUPING); - this.state = 746; + this.state = 785; this.match(FlinkSqlParser.SETS); - this.state = 747; + this.state = 786; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 748; + this.state = 787; this.groupItemDefinition(); - this.state = 753; + this.state = 792; this._errHandler.sync(this); _la = this._input.LA(1); while(_la===FlinkSqlParser.COMMA) { - this.state = 749; + this.state = 788; this.match(FlinkSqlParser.COMMA); - this.state = 750; + this.state = 789; this.groupItemDefinition(); - this.state = 755; + this.state = 794; this._errHandler.sync(this); _la = this._input.LA(1); } - this.state = 756; + this.state = 795; this.match(FlinkSqlParser.RR_BRACKET); break; @@ -7746,12 +8125,12 @@ FlinkSqlParser.HavingClauseContext = HavingClauseContext; FlinkSqlParser.prototype.havingClause = function() { var localctx = new HavingClauseContext(this, this._ctx, this.state); - this.enterRule(localctx, 108, FlinkSqlParser.RULE_havingClause); + this.enterRule(localctx, 114, FlinkSqlParser.RULE_havingClause); try { this.enterOuterAlt(localctx, 1); - this.state = 760; + this.state = 799; this.match(FlinkSqlParser.HAVING); - this.state = 761; + this.state = 800; this.booleanExpression(0); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -7843,28 +8222,28 @@ FlinkSqlParser.OrderByCaluseContext = OrderByCaluseContext; FlinkSqlParser.prototype.orderByCaluse = function() { var localctx = new OrderByCaluseContext(this, this._ctx, this.state); - this.enterRule(localctx, 110, FlinkSqlParser.RULE_orderByCaluse); + this.enterRule(localctx, 116, FlinkSqlParser.RULE_orderByCaluse); try { this.enterOuterAlt(localctx, 1); - this.state = 763; + this.state = 802; this.match(FlinkSqlParser.ORDER); - this.state = 764; + this.state = 803; this.match(FlinkSqlParser.BY); - this.state = 765; + this.state = 804; this.orderItemDefition(); - this.state = 770; + this.state = 809; this._errHandler.sync(this); - var _alt = this._interp.adaptivePredict(this._input,79,this._ctx) + var _alt = this._interp.adaptivePredict(this._input,84,this._ctx) while(_alt!=2 && _alt!=antlr4.atn.ATN.INVALID_ALT_NUMBER) { if(_alt===1) { - this.state = 766; + this.state = 805; this.match(FlinkSqlParser.COMMA); - this.state = 767; + this.state = 806; this.orderItemDefition(); } - this.state = 772; + this.state = 811; this._errHandler.sync(this); - _alt = this._interp.adaptivePredict(this._input,79,this._ctx); + _alt = this._interp.adaptivePredict(this._input,84,this._ctx); } } catch (re) { @@ -7938,17 +8317,17 @@ FlinkSqlParser.OrderItemDefitionContext = OrderItemDefitionContext; FlinkSqlParser.prototype.orderItemDefition = function() { var localctx = new OrderItemDefitionContext(this, this._ctx, this.state); - this.enterRule(localctx, 112, FlinkSqlParser.RULE_orderItemDefition); + this.enterRule(localctx, 118, FlinkSqlParser.RULE_orderItemDefition); var _la = 0; // Token type try { this.enterOuterAlt(localctx, 1); - this.state = 773; + this.state = 812; this.expression(); - this.state = 775; + this.state = 814; this._errHandler.sync(this); - var la_ = this._interp.adaptivePredict(this._input,80,this._ctx); + var la_ = this._interp.adaptivePredict(this._input,85,this._ctx); if(la_===1) { - this.state = 774; + this.state = 813; _la = this._input.LA(1); if(!(_la===FlinkSqlParser.ASC || _la===FlinkSqlParser.DESC)) { this._errHandler.recoverInline(this); @@ -8031,16 +8410,16 @@ FlinkSqlParser.LimitClauseContext = LimitClauseContext; FlinkSqlParser.prototype.limitClause = function() { var localctx = new LimitClauseContext(this, this._ctx, this.state); - this.enterRule(localctx, 114, FlinkSqlParser.RULE_limitClause); + this.enterRule(localctx, 120, FlinkSqlParser.RULE_limitClause); try { this.enterOuterAlt(localctx, 1); - this.state = 777; + this.state = 816; this.match(FlinkSqlParser.LIMIT); - this.state = 780; + this.state = 819; this._errHandler.sync(this); switch(this._input.LA(1)) { case FlinkSqlParser.ALL: - this.state = 778; + this.state = 817; this.match(FlinkSqlParser.ALL); break; case FlinkSqlParser.NOT: @@ -8051,6 +8430,7 @@ FlinkSqlParser.prototype.limitClause = function() { case FlinkSqlParser.CASE: case FlinkSqlParser.FIRST: case FlinkSqlParser.LAST: + case FlinkSqlParser.CAST: case FlinkSqlParser.POSITION: case FlinkSqlParser.NULL: case FlinkSqlParser.BIT_NOT_OP: @@ -8062,8 +8442,8 @@ FlinkSqlParser.prototype.limitClause = function() { case FlinkSqlParser.DIG_LITERAL: case FlinkSqlParser.REAL_LITERAL: case FlinkSqlParser.BIT_STRING: - case FlinkSqlParser.ID: - this.state = 779; + case FlinkSqlParser.ID_LITERAL: + this.state = 818; localctx.limit = this.expression(); break; default: @@ -8155,26 +8535,26 @@ FlinkSqlParser.WindowClauseContext = WindowClauseContext; FlinkSqlParser.prototype.windowClause = function() { var localctx = new WindowClauseContext(this, this._ctx, this.state); - this.enterRule(localctx, 116, FlinkSqlParser.RULE_windowClause); + this.enterRule(localctx, 122, FlinkSqlParser.RULE_windowClause); try { this.enterOuterAlt(localctx, 1); - this.state = 782; + this.state = 821; this.match(FlinkSqlParser.WINDOW); - this.state = 783; + this.state = 822; this.namedWindow(); - this.state = 788; + this.state = 827; this._errHandler.sync(this); - var _alt = this._interp.adaptivePredict(this._input,82,this._ctx) + var _alt = this._interp.adaptivePredict(this._input,87,this._ctx) while(_alt!=2 && _alt!=antlr4.atn.ATN.INVALID_ALT_NUMBER) { if(_alt===1) { - this.state = 784; + this.state = 823; this.match(FlinkSqlParser.COMMA); - this.state = 785; + this.state = 824; this.namedWindow(); } - this.state = 790; + this.state = 829; this._errHandler.sync(this); - _alt = this._interp.adaptivePredict(this._input,82,this._ctx); + _alt = this._interp.adaptivePredict(this._input,87,this._ctx); } } catch (re) { @@ -8249,14 +8629,14 @@ FlinkSqlParser.NamedWindowContext = NamedWindowContext; FlinkSqlParser.prototype.namedWindow = function() { var localctx = new NamedWindowContext(this, this._ctx, this.state); - this.enterRule(localctx, 118, FlinkSqlParser.RULE_namedWindow); + this.enterRule(localctx, 124, FlinkSqlParser.RULE_namedWindow); try { this.enterOuterAlt(localctx, 1); - this.state = 791; + this.state = 830; localctx.name = this.errorCapturingIdentifier(); - this.state = 792; + this.state = 831; this.match(FlinkSqlParser.AS); - this.state = 793; + this.state = 832; this.windowSpec(); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -8388,77 +8768,77 @@ FlinkSqlParser.WindowSpecContext = WindowSpecContext; FlinkSqlParser.prototype.windowSpec = function() { var localctx = new WindowSpecContext(this, this._ctx, this.state); - this.enterRule(localctx, 120, FlinkSqlParser.RULE_windowSpec); + this.enterRule(localctx, 126, FlinkSqlParser.RULE_windowSpec); var _la = 0; // Token type try { this.enterOuterAlt(localctx, 1); - this.state = 796; + this.state = 835; this._errHandler.sync(this); _la = this._input.LA(1); - if(((((_la - 305)) & ~0x1f) == 0 && ((1 << (_la - 305)) & ((1 << (FlinkSqlParser.STRING_LITERAL - 305)) | (1 << (FlinkSqlParser.DIG_LITERAL - 305)) | (1 << (FlinkSqlParser.ID - 305)))) !== 0)) { - this.state = 795; + if(((((_la - 312)) & ~0x1f) == 0 && ((1 << (_la - 312)) & ((1 << (FlinkSqlParser.STRING_LITERAL - 312)) | (1 << (FlinkSqlParser.DIG_LITERAL - 312)) | (1 << (FlinkSqlParser.ID_LITERAL - 312)))) !== 0)) { + this.state = 834; localctx.name = this.errorCapturingIdentifier(); } - this.state = 798; + this.state = 837; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 809; + this.state = 848; this._errHandler.sync(this); _la = this._input.LA(1); if(_la===FlinkSqlParser.ORDER) { - this.state = 799; + this.state = 838; this.match(FlinkSqlParser.ORDER); - this.state = 800; + this.state = 839; this.match(FlinkSqlParser.BY); - this.state = 801; + this.state = 840; this.sortItem(); - this.state = 806; + this.state = 845; this._errHandler.sync(this); _la = this._input.LA(1); while(_la===FlinkSqlParser.COMMA) { - this.state = 802; + this.state = 841; this.match(FlinkSqlParser.COMMA); - this.state = 803; + this.state = 842; this.sortItem(); - this.state = 808; + this.state = 847; this._errHandler.sync(this); _la = this._input.LA(1); } } - this.state = 821; + this.state = 860; this._errHandler.sync(this); _la = this._input.LA(1); if(_la===FlinkSqlParser.PARTITION) { - this.state = 811; + this.state = 850; this.match(FlinkSqlParser.PARTITION); - this.state = 812; + this.state = 851; this.match(FlinkSqlParser.BY); - this.state = 813; + this.state = 852; this.expression(); - this.state = 818; + this.state = 857; this._errHandler.sync(this); _la = this._input.LA(1); while(_la===FlinkSqlParser.COMMA) { - this.state = 814; + this.state = 853; this.match(FlinkSqlParser.COMMA); - this.state = 815; + this.state = 854; this.expression(); - this.state = 820; + this.state = 859; this._errHandler.sync(this); _la = this._input.LA(1); } } - this.state = 824; + this.state = 863; this._errHandler.sync(this); _la = this._input.LA(1); if(_la===FlinkSqlParser.RANGE || _la===FlinkSqlParser.ROWS) { - this.state = 823; + this.state = 862; this.windowFrame(); } - this.state = 826; + this.state = 865; this.match(FlinkSqlParser.RR_BRACKET); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -8545,17 +8925,17 @@ FlinkSqlParser.SortItemContext = SortItemContext; FlinkSqlParser.prototype.sortItem = function() { var localctx = new SortItemContext(this, this._ctx, this.state); - this.enterRule(localctx, 122, FlinkSqlParser.RULE_sortItem); + this.enterRule(localctx, 128, FlinkSqlParser.RULE_sortItem); var _la = 0; // Token type try { this.enterOuterAlt(localctx, 1); - this.state = 828; + this.state = 867; this.expression(); - this.state = 830; + this.state = 869; this._errHandler.sync(this); _la = this._input.LA(1); if(_la===FlinkSqlParser.ASC || _la===FlinkSqlParser.DESC) { - this.state = 829; + this.state = 868; localctx.ordering = this._input.LT(1); _la = this._input.LA(1); if(!(_la===FlinkSqlParser.ASC || _la===FlinkSqlParser.DESC)) { @@ -8567,13 +8947,13 @@ FlinkSqlParser.prototype.sortItem = function() { } } - this.state = 834; + this.state = 873; this._errHandler.sync(this); _la = this._input.LA(1); if(_la===FlinkSqlParser.NULLS) { - this.state = 832; + this.state = 871; this.match(FlinkSqlParser.NULLS); - this.state = 833; + this.state = 872; localctx.nullOrder = this._input.LT(1); _la = this._input.LA(1); if(!(_la===FlinkSqlParser.FIRST || _la===FlinkSqlParser.LAST)) { @@ -8656,23 +9036,23 @@ FlinkSqlParser.WindowFrameContext = WindowFrameContext; FlinkSqlParser.prototype.windowFrame = function() { var localctx = new WindowFrameContext(this, this._ctx, this.state); - this.enterRule(localctx, 124, FlinkSqlParser.RULE_windowFrame); + this.enterRule(localctx, 130, FlinkSqlParser.RULE_windowFrame); try { - this.state = 840; + this.state = 879; this._errHandler.sync(this); switch(this._input.LA(1)) { case FlinkSqlParser.RANGE: this.enterOuterAlt(localctx, 1); - this.state = 836; + this.state = 875; this.match(FlinkSqlParser.RANGE); - this.state = 837; + this.state = 876; this.frameBound(); break; case FlinkSqlParser.ROWS: this.enterOuterAlt(localctx, 2); - this.state = 838; + this.state = 877; this.match(FlinkSqlParser.ROWS); - this.state = 839; + this.state = 878; this.frameBound(); break; default: @@ -8745,12 +9125,12 @@ FlinkSqlParser.FrameBoundContext = FrameBoundContext; FlinkSqlParser.prototype.frameBound = function() { var localctx = new FrameBoundContext(this, this._ctx, this.state); - this.enterRule(localctx, 126, FlinkSqlParser.RULE_frameBound); + this.enterRule(localctx, 132, FlinkSqlParser.RULE_frameBound); try { this.enterOuterAlt(localctx, 1); - this.state = 842; + this.state = 881; this.expression(); - this.state = 843; + this.state = 882; this.match(FlinkSqlParser.PRECEDING); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -8815,10 +9195,10 @@ FlinkSqlParser.ExpressionContext = ExpressionContext; FlinkSqlParser.prototype.expression = function() { var localctx = new ExpressionContext(this, this._ctx, this.state); - this.enterRule(localctx, 128, FlinkSqlParser.RULE_expression); + this.enterRule(localctx, 134, FlinkSqlParser.RULE_expression); try { this.enterOuterAlt(localctx, 1); - this.state = 845; + this.state = 884; this.booleanExpression(0); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -9044,22 +9424,22 @@ FlinkSqlParser.prototype.booleanExpression = function(_p) { var _parentState = this.state; var localctx = new BooleanExpressionContext(this, this._ctx, _parentState); var _prevctx = localctx; - var _startState = 130; - this.enterRecursionRule(localctx, 130, FlinkSqlParser.RULE_booleanExpression, _p); + var _startState = 136; + this.enterRecursionRule(localctx, 136, FlinkSqlParser.RULE_booleanExpression, _p); try { this.enterOuterAlt(localctx, 1); - this.state = 859; + this.state = 898; this._errHandler.sync(this); - var la_ = this._interp.adaptivePredict(this._input,93,this._ctx); + var la_ = this._interp.adaptivePredict(this._input,98,this._ctx); switch(la_) { case 1: localctx = new LogicalNotContext(this, localctx); this._ctx = localctx; _prevctx = localctx; - this.state = 848; + this.state = 887; this.match(FlinkSqlParser.NOT); - this.state = 849; + this.state = 888; this.booleanExpression(5); break; @@ -9067,13 +9447,13 @@ FlinkSqlParser.prototype.booleanExpression = function(_p) { localctx = new ExistsContext(this, localctx); this._ctx = localctx; _prevctx = localctx; - this.state = 850; + this.state = 889; this.match(FlinkSqlParser.EXISTS); - this.state = 851; + this.state = 890; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 852; + this.state = 891; this.queryStatement(0); - this.state = 853; + this.state = 892; this.match(FlinkSqlParser.RR_BRACKET); break; @@ -9081,13 +9461,13 @@ FlinkSqlParser.prototype.booleanExpression = function(_p) { localctx = new PredicatedContext(this, localctx); this._ctx = localctx; _prevctx = localctx; - this.state = 855; + this.state = 894; this.valueExpression(0); - this.state = 857; + this.state = 896; this._errHandler.sync(this); - var la_ = this._interp.adaptivePredict(this._input,92,this._ctx); + var la_ = this._interp.adaptivePredict(this._input,97,this._ctx); if(la_===1) { - this.state = 856; + this.state = 895; this.predicate(); } @@ -9095,30 +9475,30 @@ FlinkSqlParser.prototype.booleanExpression = function(_p) { } this._ctx.stop = this._input.LT(-1); - this.state = 869; + this.state = 908; this._errHandler.sync(this); - var _alt = this._interp.adaptivePredict(this._input,95,this._ctx) + var _alt = this._interp.adaptivePredict(this._input,100,this._ctx) while(_alt!=2 && _alt!=antlr4.atn.ATN.INVALID_ALT_NUMBER) { if(_alt===1) { if(this._parseListeners!==null) { this.triggerExitRuleEvent(); } _prevctx = localctx; - this.state = 867; + this.state = 906; this._errHandler.sync(this); - var la_ = this._interp.adaptivePredict(this._input,94,this._ctx); + var la_ = this._interp.adaptivePredict(this._input,99,this._ctx); switch(la_) { case 1: localctx = new LogicalBinaryContext(this, new BooleanExpressionContext(this, _parentctx, _parentState)); localctx.left = _prevctx; this.pushNewRecursionContext(localctx, _startState, FlinkSqlParser.RULE_booleanExpression); - this.state = 861; + this.state = 900; if (!( this.precpred(this._ctx, 2))) { throw new antlr4.error.FailedPredicateException(this, "this.precpred(this._ctx, 2)"); } - this.state = 862; + this.state = 901; localctx.operator = this.match(FlinkSqlParser.AND); - this.state = 863; + this.state = 902; localctx.right = this.booleanExpression(3); break; @@ -9126,21 +9506,21 @@ FlinkSqlParser.prototype.booleanExpression = function(_p) { localctx = new LogicalBinaryContext(this, new BooleanExpressionContext(this, _parentctx, _parentState)); localctx.left = _prevctx; this.pushNewRecursionContext(localctx, _startState, FlinkSqlParser.RULE_booleanExpression); - this.state = 864; + this.state = 903; if (!( this.precpred(this._ctx, 1))) { throw new antlr4.error.FailedPredicateException(this, "this.precpred(this._ctx, 1)"); } - this.state = 865; + this.state = 904; localctx.operator = this.match(FlinkSqlParser.OR); - this.state = 866; + this.state = 905; localctx.right = this.booleanExpression(2); break; } } - this.state = 871; + this.state = 910; this._errHandler.sync(this); - _alt = this._interp.adaptivePredict(this._input,95,this._ctx); + _alt = this._interp.adaptivePredict(this._input,100,this._ctx); } } catch( error) { @@ -9314,126 +9694,126 @@ FlinkSqlParser.PredicateContext = PredicateContext; FlinkSqlParser.prototype.predicate = function() { var localctx = new PredicateContext(this, this._ctx, this.state); - this.enterRule(localctx, 132, FlinkSqlParser.RULE_predicate); + this.enterRule(localctx, 138, FlinkSqlParser.RULE_predicate); var _la = 0; // Token type try { - this.state = 955; + this.state = 994; this._errHandler.sync(this); - var la_ = this._interp.adaptivePredict(this._input,108,this._ctx); + var la_ = this._interp.adaptivePredict(this._input,113,this._ctx); switch(la_) { case 1: this.enterOuterAlt(localctx, 1); - this.state = 873; + this.state = 912; this._errHandler.sync(this); _la = this._input.LA(1); if(_la===FlinkSqlParser.NOT) { - this.state = 872; + this.state = 911; this.match(FlinkSqlParser.NOT); } - this.state = 875; + this.state = 914; localctx.kind = this.match(FlinkSqlParser.BETWEEN); - this.state = 876; + this.state = 915; localctx.lower = this.valueExpression(0); - this.state = 877; + this.state = 916; this.match(FlinkSqlParser.AND); - this.state = 878; + this.state = 917; localctx.upper = this.valueExpression(0); break; case 2: this.enterOuterAlt(localctx, 2); - this.state = 881; + this.state = 920; this._errHandler.sync(this); _la = this._input.LA(1); if(_la===FlinkSqlParser.NOT) { - this.state = 880; + this.state = 919; this.match(FlinkSqlParser.NOT); } - this.state = 883; + this.state = 922; localctx.kind = this.match(FlinkSqlParser.IN); - this.state = 884; + this.state = 923; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 885; + this.state = 924; this.expression(); - this.state = 890; + this.state = 929; this._errHandler.sync(this); _la = this._input.LA(1); while(_la===FlinkSqlParser.COMMA) { - this.state = 886; + this.state = 925; this.match(FlinkSqlParser.COMMA); - this.state = 887; + this.state = 926; this.expression(); - this.state = 892; + this.state = 931; this._errHandler.sync(this); _la = this._input.LA(1); } - this.state = 893; + this.state = 932; this.match(FlinkSqlParser.RR_BRACKET); break; case 3: this.enterOuterAlt(localctx, 3); - this.state = 896; + this.state = 935; this._errHandler.sync(this); _la = this._input.LA(1); if(_la===FlinkSqlParser.NOT) { - this.state = 895; + this.state = 934; this.match(FlinkSqlParser.NOT); } - this.state = 898; + this.state = 937; localctx.kind = this.match(FlinkSqlParser.IN); - this.state = 899; + this.state = 938; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 900; + this.state = 939; this.queryStatement(0); - this.state = 901; + this.state = 940; this.match(FlinkSqlParser.RR_BRACKET); break; case 4: this.enterOuterAlt(localctx, 4); - this.state = 903; + this.state = 942; localctx.kind = this.match(FlinkSqlParser.EXISTS); - this.state = 904; + this.state = 943; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 905; + this.state = 944; this.queryStatement(0); - this.state = 906; + this.state = 945; this.match(FlinkSqlParser.RR_BRACKET); break; case 5: this.enterOuterAlt(localctx, 5); - this.state = 909; + this.state = 948; this._errHandler.sync(this); _la = this._input.LA(1); if(_la===FlinkSqlParser.NOT) { - this.state = 908; + this.state = 947; this.match(FlinkSqlParser.NOT); } - this.state = 911; + this.state = 950; localctx.kind = this.match(FlinkSqlParser.RLIKE); - this.state = 912; + this.state = 951; localctx.pattern = this.valueExpression(0); break; case 6: this.enterOuterAlt(localctx, 6); - this.state = 914; + this.state = 953; this._errHandler.sync(this); _la = this._input.LA(1); if(_la===FlinkSqlParser.NOT) { - this.state = 913; + this.state = 952; this.match(FlinkSqlParser.NOT); } - this.state = 916; + this.state = 955; localctx.kind = this.match(FlinkSqlParser.LIKE); - this.state = 917; + this.state = 956; localctx.quantifier = this._input.LT(1); _la = this._input.LA(1); if(!(_la===FlinkSqlParser.ALL || _la===FlinkSqlParser.ANY)) { @@ -9443,35 +9823,35 @@ FlinkSqlParser.prototype.predicate = function() { this._errHandler.reportMatch(this); this.consume(); } - this.state = 931; + this.state = 970; this._errHandler.sync(this); - var la_ = this._interp.adaptivePredict(this._input,103,this._ctx); + var la_ = this._interp.adaptivePredict(this._input,108,this._ctx); switch(la_) { case 1: - this.state = 918; + this.state = 957; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 919; + this.state = 958; this.match(FlinkSqlParser.RR_BRACKET); break; case 2: - this.state = 920; + this.state = 959; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 921; + this.state = 960; this.expression(); - this.state = 926; + this.state = 965; this._errHandler.sync(this); _la = this._input.LA(1); while(_la===FlinkSqlParser.COMMA) { - this.state = 922; + this.state = 961; this.match(FlinkSqlParser.COMMA); - this.state = 923; + this.state = 962; this.expression(); - this.state = 928; + this.state = 967; this._errHandler.sync(this); _la = this._input.LA(1); } - this.state = 929; + this.state = 968; this.match(FlinkSqlParser.RR_BRACKET); break; @@ -9480,49 +9860,49 @@ FlinkSqlParser.prototype.predicate = function() { case 7: this.enterOuterAlt(localctx, 7); - this.state = 934; + this.state = 973; this._errHandler.sync(this); _la = this._input.LA(1); if(_la===FlinkSqlParser.NOT) { - this.state = 933; + this.state = 972; this.match(FlinkSqlParser.NOT); } - this.state = 936; + this.state = 975; localctx.kind = this.match(FlinkSqlParser.LIKE); - this.state = 937; + this.state = 976; localctx.pattern = this.valueExpression(0); break; case 8: this.enterOuterAlt(localctx, 8); - this.state = 938; + this.state = 977; this.match(FlinkSqlParser.IS); - this.state = 940; + this.state = 979; this._errHandler.sync(this); _la = this._input.LA(1); if(_la===FlinkSqlParser.NOT) { - this.state = 939; + this.state = 978; this.match(FlinkSqlParser.NOT); } - this.state = 942; + this.state = 981; localctx.kind = this.match(FlinkSqlParser.NULL); break; case 9: this.enterOuterAlt(localctx, 9); - this.state = 943; + this.state = 982; this.match(FlinkSqlParser.IS); - this.state = 945; + this.state = 984; this._errHandler.sync(this); _la = this._input.LA(1); if(_la===FlinkSqlParser.NOT) { - this.state = 944; + this.state = 983; this.match(FlinkSqlParser.NOT); } - this.state = 947; + this.state = 986; localctx.kind = this._input.LT(1); _la = this._input.LA(1); if(!(_la===FlinkSqlParser.TRUE || _la===FlinkSqlParser.FALSE)) { @@ -9536,21 +9916,21 @@ FlinkSqlParser.prototype.predicate = function() { case 10: this.enterOuterAlt(localctx, 10); - this.state = 948; + this.state = 987; this.match(FlinkSqlParser.IS); - this.state = 950; + this.state = 989; this._errHandler.sync(this); _la = this._input.LA(1); if(_la===FlinkSqlParser.NOT) { - this.state = 949; + this.state = 988; this.match(FlinkSqlParser.NOT); } - this.state = 952; + this.state = 991; localctx.kind = this.match(FlinkSqlParser.DISTINCT); - this.state = 953; + this.state = 992; this.match(FlinkSqlParser.FROM); - this.state = 954; + this.state = 993; localctx.right = this.valueExpression(0); break; @@ -9817,21 +10197,21 @@ FlinkSqlParser.prototype.valueExpression = function(_p) { var _parentState = this.state; var localctx = new ValueExpressionContext(this, this._ctx, _parentState); var _prevctx = localctx; - var _startState = 134; - this.enterRecursionRule(localctx, 134, FlinkSqlParser.RULE_valueExpression, _p); + var _startState = 140; + this.enterRecursionRule(localctx, 140, FlinkSqlParser.RULE_valueExpression, _p); var _la = 0; // Token type try { this.enterOuterAlt(localctx, 1); - this.state = 961; + this.state = 1000; this._errHandler.sync(this); - var la_ = this._interp.adaptivePredict(this._input,109,this._ctx); + var la_ = this._interp.adaptivePredict(this._input,114,this._ctx); switch(la_) { case 1: localctx = new ValueExpressionDefaultContext(this, localctx); this._ctx = localctx; _prevctx = localctx; - this.state = 958; + this.state = 997; this.primaryExpression(0); break; @@ -9839,54 +10219,54 @@ FlinkSqlParser.prototype.valueExpression = function(_p) { localctx = new ArithmeticUnaryContext(this, localctx); this._ctx = localctx; _prevctx = localctx; - this.state = 959; + this.state = 998; localctx.operator = this._input.LT(1); _la = this._input.LA(1); - if(!(((((_la - 280)) & ~0x1f) == 0 && ((1 << (_la - 280)) & ((1 << (FlinkSqlParser.BIT_NOT_OP - 280)) | (1 << (FlinkSqlParser.HYPNEN_SIGN - 280)) | (1 << (FlinkSqlParser.ADD_SIGN - 280)))) !== 0))) { + if(!(((((_la - 286)) & ~0x1f) == 0 && ((1 << (_la - 286)) & ((1 << (FlinkSqlParser.BIT_NOT_OP - 286)) | (1 << (FlinkSqlParser.HYPNEN_SIGN - 286)) | (1 << (FlinkSqlParser.ADD_SIGN - 286)))) !== 0))) { localctx.operator = this._errHandler.recoverInline(this); } else { this._errHandler.reportMatch(this); this.consume(); } - this.state = 960; + this.state = 999; this.valueExpression(7); break; } this._ctx.stop = this._input.LT(-1); - this.state = 984; + this.state = 1023; this._errHandler.sync(this); - var _alt = this._interp.adaptivePredict(this._input,111,this._ctx) + var _alt = this._interp.adaptivePredict(this._input,116,this._ctx) while(_alt!=2 && _alt!=antlr4.atn.ATN.INVALID_ALT_NUMBER) { if(_alt===1) { if(this._parseListeners!==null) { this.triggerExitRuleEvent(); } _prevctx = localctx; - this.state = 982; + this.state = 1021; this._errHandler.sync(this); - var la_ = this._interp.adaptivePredict(this._input,110,this._ctx); + var la_ = this._interp.adaptivePredict(this._input,115,this._ctx); switch(la_) { case 1: localctx = new ArithmeticBinaryContext(this, new ValueExpressionContext(this, _parentctx, _parentState)); localctx.left = _prevctx; this.pushNewRecursionContext(localctx, _startState, FlinkSqlParser.RULE_valueExpression); - this.state = 963; + this.state = 1002; if (!( this.precpred(this._ctx, 6))) { throw new antlr4.error.FailedPredicateException(this, "this.precpred(this._ctx, 6)"); } - this.state = 964; + this.state = 1003; localctx.operator = this._input.LT(1); _la = this._input.LA(1); - if(!(_la===FlinkSqlParser.DIV || ((((_la - 296)) & ~0x1f) == 0 && ((1 << (_la - 296)) & ((1 << (FlinkSqlParser.ASTERISK_SIGN - 296)) | (1 << (FlinkSqlParser.PENCENT_SIGN - 296)) | (1 << (FlinkSqlParser.SLASH_SIGN - 296)))) !== 0))) { + if(!(_la===FlinkSqlParser.DIV || ((((_la - 302)) & ~0x1f) == 0 && ((1 << (_la - 302)) & ((1 << (FlinkSqlParser.ASTERISK_SIGN - 302)) | (1 << (FlinkSqlParser.PENCENT_SIGN - 302)) | (1 << (FlinkSqlParser.SLASH_SIGN - 302)))) !== 0))) { localctx.operator = this._errHandler.recoverInline(this); } else { this._errHandler.reportMatch(this); this.consume(); } - this.state = 965; + this.state = 1004; localctx.right = this.valueExpression(7); break; @@ -9894,21 +10274,21 @@ FlinkSqlParser.prototype.valueExpression = function(_p) { localctx = new ArithmeticBinaryContext(this, new ValueExpressionContext(this, _parentctx, _parentState)); localctx.left = _prevctx; this.pushNewRecursionContext(localctx, _startState, FlinkSqlParser.RULE_valueExpression); - this.state = 966; + this.state = 1005; if (!( this.precpred(this._ctx, 5))) { throw new antlr4.error.FailedPredicateException(this, "this.precpred(this._ctx, 5)"); } - this.state = 967; + this.state = 1006; localctx.operator = this._input.LT(1); _la = this._input.LA(1); - if(!(((((_la - 298)) & ~0x1f) == 0 && ((1 << (_la - 298)) & ((1 << (FlinkSqlParser.HYPNEN_SIGN - 298)) | (1 << (FlinkSqlParser.ADD_SIGN - 298)) | (1 << (FlinkSqlParser.DOUBLE_VERTICAL_SIGN - 298)))) !== 0))) { + if(!(((((_la - 304)) & ~0x1f) == 0 && ((1 << (_la - 304)) & ((1 << (FlinkSqlParser.HYPNEN_SIGN - 304)) | (1 << (FlinkSqlParser.ADD_SIGN - 304)) | (1 << (FlinkSqlParser.DOUBLE_VERTICAL_SIGN - 304)))) !== 0))) { localctx.operator = this._errHandler.recoverInline(this); } else { this._errHandler.reportMatch(this); this.consume(); } - this.state = 968; + this.state = 1007; localctx.right = this.valueExpression(6); break; @@ -9916,13 +10296,13 @@ FlinkSqlParser.prototype.valueExpression = function(_p) { localctx = new ArithmeticBinaryContext(this, new ValueExpressionContext(this, _parentctx, _parentState)); localctx.left = _prevctx; this.pushNewRecursionContext(localctx, _startState, FlinkSqlParser.RULE_valueExpression); - this.state = 969; + this.state = 1008; if (!( this.precpred(this._ctx, 4))) { throw new antlr4.error.FailedPredicateException(this, "this.precpred(this._ctx, 4)"); } - this.state = 970; + this.state = 1009; localctx.operator = this.match(FlinkSqlParser.BIT_AND_OP); - this.state = 971; + this.state = 1010; localctx.right = this.valueExpression(5); break; @@ -9930,13 +10310,13 @@ FlinkSqlParser.prototype.valueExpression = function(_p) { localctx = new ArithmeticBinaryContext(this, new ValueExpressionContext(this, _parentctx, _parentState)); localctx.left = _prevctx; this.pushNewRecursionContext(localctx, _startState, FlinkSqlParser.RULE_valueExpression); - this.state = 972; + this.state = 1011; if (!( this.precpred(this._ctx, 3))) { throw new antlr4.error.FailedPredicateException(this, "this.precpred(this._ctx, 3)"); } - this.state = 973; + this.state = 1012; localctx.operator = this.match(FlinkSqlParser.BIT_XOR_OP); - this.state = 974; + this.state = 1013; localctx.right = this.valueExpression(4); break; @@ -9944,13 +10324,13 @@ FlinkSqlParser.prototype.valueExpression = function(_p) { localctx = new ArithmeticBinaryContext(this, new ValueExpressionContext(this, _parentctx, _parentState)); localctx.left = _prevctx; this.pushNewRecursionContext(localctx, _startState, FlinkSqlParser.RULE_valueExpression); - this.state = 975; + this.state = 1014; if (!( this.precpred(this._ctx, 2))) { throw new antlr4.error.FailedPredicateException(this, "this.precpred(this._ctx, 2)"); } - this.state = 976; + this.state = 1015; localctx.operator = this.match(FlinkSqlParser.BIT_OR_OP); - this.state = 977; + this.state = 1016; localctx.right = this.valueExpression(3); break; @@ -9958,21 +10338,21 @@ FlinkSqlParser.prototype.valueExpression = function(_p) { localctx = new ComparisonContext(this, new ValueExpressionContext(this, _parentctx, _parentState)); localctx.left = _prevctx; this.pushNewRecursionContext(localctx, _startState, FlinkSqlParser.RULE_valueExpression); - this.state = 978; + this.state = 1017; if (!( this.precpred(this._ctx, 1))) { throw new antlr4.error.FailedPredicateException(this, "this.precpred(this._ctx, 1)"); } - this.state = 979; + this.state = 1018; this.comparisonOperator(); - this.state = 980; + this.state = 1019; localctx.right = this.valueExpression(2); break; } } - this.state = 986; + this.state = 1025; this._errHandler.sync(this); - _alt = this._interp.adaptivePredict(this._input,111,this._ctx); + _alt = this._interp.adaptivePredict(this._input,116,this._ctx); } } catch( error) { @@ -10339,6 +10719,61 @@ SubqueryExpressionContext.prototype.accept = function(visitor) { }; +function CastContext(parser, ctx) { + PrimaryExpressionContext.call(this, parser); + PrimaryExpressionContext.prototype.copyFrom.call(this, ctx); + return this; +} + +CastContext.prototype = Object.create(PrimaryExpressionContext.prototype); +CastContext.prototype.constructor = CastContext; + +FlinkSqlParser.CastContext = CastContext; + +CastContext.prototype.CAST = function() { + return this.getToken(FlinkSqlParser.CAST, 0); +}; + +CastContext.prototype.LR_BRACKET = function() { + return this.getToken(FlinkSqlParser.LR_BRACKET, 0); +}; + +CastContext.prototype.expression = function() { + return this.getTypedRuleContext(ExpressionContext,0); +}; + +CastContext.prototype.AS = function() { + return this.getToken(FlinkSqlParser.AS, 0); +}; + +CastContext.prototype.columnType = function() { + return this.getTypedRuleContext(ColumnTypeContext,0); +}; + +CastContext.prototype.RR_BRACKET = function() { + return this.getToken(FlinkSqlParser.RR_BRACKET, 0); +}; +CastContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterCast(this); + } +}; + +CastContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitCast(this); + } +}; + +CastContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitCast(this); + } else { + return visitor.visitChildren(this); + } +}; + + function ConstantDefaultContext(parser, ctx) { PrimaryExpressionContext.call(this, parser); PrimaryExpressionContext.prototype.copyFrom.call(this, ctx); @@ -10670,43 +11105,43 @@ FlinkSqlParser.prototype.primaryExpression = function(_p) { var _parentState = this.state; var localctx = new PrimaryExpressionContext(this, this._ctx, _parentState); var _prevctx = localctx; - var _startState = 136; - this.enterRecursionRule(localctx, 136, FlinkSqlParser.RULE_primaryExpression, _p); + var _startState = 142; + this.enterRecursionRule(localctx, 142, FlinkSqlParser.RULE_primaryExpression, _p); var _la = 0; // Token type try { this.enterOuterAlt(localctx, 1); - this.state = 1071; + this.state = 1117; this._errHandler.sync(this); - var la_ = this._interp.adaptivePredict(this._input,121,this._ctx); + var la_ = this._interp.adaptivePredict(this._input,126,this._ctx); switch(la_) { case 1: localctx = new SearchedCaseContext(this, localctx); this._ctx = localctx; _prevctx = localctx; - this.state = 988; + this.state = 1027; this.match(FlinkSqlParser.CASE); - this.state = 990; + this.state = 1029; this._errHandler.sync(this); _la = this._input.LA(1); do { - this.state = 989; + this.state = 1028; this.whenClause(); - this.state = 992; + this.state = 1031; this._errHandler.sync(this); _la = this._input.LA(1); } while(_la===FlinkSqlParser.WHEN); - this.state = 996; + this.state = 1035; this._errHandler.sync(this); _la = this._input.LA(1); if(_la===FlinkSqlParser.ELSE) { - this.state = 994; + this.state = 1033; this.match(FlinkSqlParser.ELSE); - this.state = 995; + this.state = 1034; localctx.elseExpression = this.expression(); } - this.state = 998; + this.state = 1037; this.match(FlinkSqlParser.END); break; @@ -10714,213 +11149,231 @@ FlinkSqlParser.prototype.primaryExpression = function(_p) { localctx = new SimpleCaseContext(this, localctx); this._ctx = localctx; _prevctx = localctx; - this.state = 1000; + this.state = 1039; this.match(FlinkSqlParser.CASE); - this.state = 1001; + this.state = 1040; localctx.value = this.expression(); - this.state = 1003; + this.state = 1042; this._errHandler.sync(this); _la = this._input.LA(1); do { - this.state = 1002; + this.state = 1041; this.whenClause(); - this.state = 1005; + this.state = 1044; this._errHandler.sync(this); _la = this._input.LA(1); } while(_la===FlinkSqlParser.WHEN); - this.state = 1009; + this.state = 1048; this._errHandler.sync(this); _la = this._input.LA(1); if(_la===FlinkSqlParser.ELSE) { - this.state = 1007; + this.state = 1046; this.match(FlinkSqlParser.ELSE); - this.state = 1008; + this.state = 1047; localctx.elseExpression = this.expression(); } - this.state = 1011; + this.state = 1050; this.match(FlinkSqlParser.END); break; case 3: - localctx = new FirstContext(this, localctx); + localctx = new CastContext(this, localctx); this._ctx = localctx; _prevctx = localctx; - this.state = 1013; - this.match(FlinkSqlParser.FIRST); - this.state = 1014; + this.state = 1052; + this.match(FlinkSqlParser.CAST); + this.state = 1053; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1015; + this.state = 1054; this.expression(); - this.state = 1018; - this._errHandler.sync(this); - _la = this._input.LA(1); - if(_la===FlinkSqlParser.IGNORE) { - this.state = 1016; - this.match(FlinkSqlParser.IGNORE); - this.state = 1017; - this.match(FlinkSqlParser.NULLS); - } - - this.state = 1020; + this.state = 1055; + this.match(FlinkSqlParser.AS); + this.state = 1056; + this.columnType(); + this.state = 1057; this.match(FlinkSqlParser.RR_BRACKET); break; case 4: - localctx = new LastContext(this, localctx); + localctx = new FirstContext(this, localctx); this._ctx = localctx; _prevctx = localctx; - this.state = 1022; - this.match(FlinkSqlParser.LAST); - this.state = 1023; + this.state = 1059; + this.match(FlinkSqlParser.FIRST); + this.state = 1060; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1024; + this.state = 1061; this.expression(); - this.state = 1027; + this.state = 1064; this._errHandler.sync(this); _la = this._input.LA(1); if(_la===FlinkSqlParser.IGNORE) { - this.state = 1025; + this.state = 1062; this.match(FlinkSqlParser.IGNORE); - this.state = 1026; + this.state = 1063; this.match(FlinkSqlParser.NULLS); } - this.state = 1029; + this.state = 1066; this.match(FlinkSqlParser.RR_BRACKET); break; case 5: - localctx = new PositionContext(this, localctx); + localctx = new LastContext(this, localctx); this._ctx = localctx; _prevctx = localctx; - this.state = 1031; - this.match(FlinkSqlParser.POSITION); - this.state = 1032; + this.state = 1068; + this.match(FlinkSqlParser.LAST); + this.state = 1069; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1033; - localctx.substr = this.valueExpression(0); - this.state = 1034; - this.match(FlinkSqlParser.IN); - this.state = 1035; - localctx.str = this.valueExpression(0); - this.state = 1036; + this.state = 1070; + this.expression(); + this.state = 1073; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===FlinkSqlParser.IGNORE) { + this.state = 1071; + this.match(FlinkSqlParser.IGNORE); + this.state = 1072; + this.match(FlinkSqlParser.NULLS); + } + + this.state = 1075; this.match(FlinkSqlParser.RR_BRACKET); break; case 6: - localctx = new ConstantDefaultContext(this, localctx); + localctx = new PositionContext(this, localctx); this._ctx = localctx; _prevctx = localctx; - this.state = 1038; - this.constant(); + this.state = 1077; + this.match(FlinkSqlParser.POSITION); + this.state = 1078; + this.match(FlinkSqlParser.LR_BRACKET); + this.state = 1079; + localctx.substr = this.valueExpression(0); + this.state = 1080; + this.match(FlinkSqlParser.IN); + this.state = 1081; + localctx.str = this.valueExpression(0); + this.state = 1082; + this.match(FlinkSqlParser.RR_BRACKET); break; case 7: - localctx = new StarContext(this, localctx); + localctx = new ConstantDefaultContext(this, localctx); this._ctx = localctx; _prevctx = localctx; - this.state = 1039; - this.match(FlinkSqlParser.ASTERISK_SIGN); + this.state = 1084; + this.constant(); break; case 8: localctx = new StarContext(this, localctx); this._ctx = localctx; _prevctx = localctx; - this.state = 1040; - this.uid(); - this.state = 1041; - this.match(FlinkSqlParser.DOT); - this.state = 1042; + this.state = 1085; this.match(FlinkSqlParser.ASTERISK_SIGN); break; case 9: - localctx = new SubqueryExpressionContext(this, localctx); + localctx = new StarContext(this, localctx); this._ctx = localctx; _prevctx = localctx; - this.state = 1044; - this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1045; - this.queryStatement(0); - this.state = 1046; - this.match(FlinkSqlParser.RR_BRACKET); + this.state = 1086; + this.uid(); + this.state = 1087; + this.match(FlinkSqlParser.DOT); + this.state = 1088; + this.match(FlinkSqlParser.ASTERISK_SIGN); break; case 10: + localctx = new SubqueryExpressionContext(this, localctx); + this._ctx = localctx; + _prevctx = localctx; + this.state = 1090; + this.match(FlinkSqlParser.LR_BRACKET); + this.state = 1091; + this.queryStatement(0); + this.state = 1092; + this.match(FlinkSqlParser.RR_BRACKET); + break; + + case 11: localctx = new FunctionCallContext(this, localctx); this._ctx = localctx; _prevctx = localctx; - this.state = 1048; + this.state = 1094; this.functionName(); - this.state = 1049; + this.state = 1095; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1061; + this.state = 1107; this._errHandler.sync(this); _la = this._input.LA(1); - if(((((_la - 8)) & ~0x1f) == 0 && ((1 << (_la - 8)) & ((1 << (FlinkSqlParser.ALL - 8)) | (1 << (FlinkSqlParser.DISTINCT - 8)) | (1 << (FlinkSqlParser.NOT - 8)) | (1 << (FlinkSqlParser.EXISTS - 8)) | (1 << (FlinkSqlParser.TRUE - 8)) | (1 << (FlinkSqlParser.FALSE - 8)) | (1 << (FlinkSqlParser.INTERVAL - 8)) | (1 << (FlinkSqlParser.CASE - 8)))) !== 0) || _la===FlinkSqlParser.FIRST || _la===FlinkSqlParser.LAST || _la===FlinkSqlParser.POSITION || ((((_la - 275)) & ~0x1f) == 0 && ((1 << (_la - 275)) & ((1 << (FlinkSqlParser.NULL - 275)) | (1 << (FlinkSqlParser.BIT_NOT_OP - 275)) | (1 << (FlinkSqlParser.LR_BRACKET - 275)) | (1 << (FlinkSqlParser.ASTERISK_SIGN - 275)) | (1 << (FlinkSqlParser.HYPNEN_SIGN - 275)) | (1 << (FlinkSqlParser.ADD_SIGN - 275)) | (1 << (FlinkSqlParser.STRING_LITERAL - 275)) | (1 << (FlinkSqlParser.DIG_LITERAL - 275)))) !== 0) || ((((_la - 307)) & ~0x1f) == 0 && ((1 << (_la - 307)) & ((1 << (FlinkSqlParser.REAL_LITERAL - 307)) | (1 << (FlinkSqlParser.BIT_STRING - 307)) | (1 << (FlinkSqlParser.ID - 307)))) !== 0)) { - this.state = 1051; + if(((((_la - 8)) & ~0x1f) == 0 && ((1 << (_la - 8)) & ((1 << (FlinkSqlParser.ALL - 8)) | (1 << (FlinkSqlParser.DISTINCT - 8)) | (1 << (FlinkSqlParser.NOT - 8)) | (1 << (FlinkSqlParser.EXISTS - 8)) | (1 << (FlinkSqlParser.TRUE - 8)) | (1 << (FlinkSqlParser.FALSE - 8)) | (1 << (FlinkSqlParser.INTERVAL - 8)) | (1 << (FlinkSqlParser.CASE - 8)))) !== 0) || ((((_la - 65)) & ~0x1f) == 0 && ((1 << (_la - 65)) & ((1 << (FlinkSqlParser.FIRST - 65)) | (1 << (FlinkSqlParser.LAST - 65)) | (1 << (FlinkSqlParser.CAST - 65)))) !== 0) || _la===FlinkSqlParser.POSITION || ((((_la - 280)) & ~0x1f) == 0 && ((1 << (_la - 280)) & ((1 << (FlinkSqlParser.NULL - 280)) | (1 << (FlinkSqlParser.BIT_NOT_OP - 280)) | (1 << (FlinkSqlParser.LR_BRACKET - 280)) | (1 << (FlinkSqlParser.ASTERISK_SIGN - 280)) | (1 << (FlinkSqlParser.HYPNEN_SIGN - 280)) | (1 << (FlinkSqlParser.ADD_SIGN - 280)))) !== 0) || ((((_la - 312)) & ~0x1f) == 0 && ((1 << (_la - 312)) & ((1 << (FlinkSqlParser.STRING_LITERAL - 312)) | (1 << (FlinkSqlParser.DIG_LITERAL - 312)) | (1 << (FlinkSqlParser.REAL_LITERAL - 312)) | (1 << (FlinkSqlParser.BIT_STRING - 312)) | (1 << (FlinkSqlParser.ID_LITERAL - 312)))) !== 0)) { + this.state = 1097; this._errHandler.sync(this); _la = this._input.LA(1); if(_la===FlinkSqlParser.ALL || _la===FlinkSqlParser.DISTINCT) { - this.state = 1050; + this.state = 1096; this.setQuantifier(); } - this.state = 1053; + this.state = 1099; this.expression(); - this.state = 1058; + this.state = 1104; this._errHandler.sync(this); _la = this._input.LA(1); while(_la===FlinkSqlParser.COMMA) { - this.state = 1054; + this.state = 1100; this.match(FlinkSqlParser.COMMA); - this.state = 1055; + this.state = 1101; this.expression(); - this.state = 1060; + this.state = 1106; this._errHandler.sync(this); _la = this._input.LA(1); } } - this.state = 1063; + this.state = 1109; this.match(FlinkSqlParser.RR_BRACKET); break; - case 11: + case 12: localctx = new ColumnReferenceContext(this, localctx); this._ctx = localctx; _prevctx = localctx; - this.state = 1065; + this.state = 1111; this.identifier(); break; - case 12: + case 13: localctx = new DereferenceContext(this, localctx); this._ctx = localctx; _prevctx = localctx; - this.state = 1066; + this.state = 1112; this.dereferenceDefinition(); break; - case 13: + case 14: localctx = new ParenthesizedExpressionContext(this, localctx); this._ctx = localctx; _prevctx = localctx; - this.state = 1067; + this.state = 1113; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1068; + this.state = 1114; this.expression(); - this.state = 1069; + this.state = 1115; this.match(FlinkSqlParser.RR_BRACKET); break; } this._ctx.stop = this._input.LT(-1); - this.state = 1080; + this.state = 1126; this._errHandler.sync(this); - var _alt = this._interp.adaptivePredict(this._input,122,this._ctx) + var _alt = this._interp.adaptivePredict(this._input,127,this._ctx) while(_alt!=2 && _alt!=antlr4.atn.ATN.INVALID_ALT_NUMBER) { if(_alt===1) { if(this._parseListeners!==null) { @@ -10930,20 +11383,20 @@ FlinkSqlParser.prototype.primaryExpression = function(_p) { localctx = new SubscriptContext(this, new PrimaryExpressionContext(this, _parentctx, _parentState)); localctx.value = _prevctx; this.pushNewRecursionContext(localctx, _startState, FlinkSqlParser.RULE_primaryExpression); - this.state = 1073; + this.state = 1119; if (!( this.precpred(this._ctx, 4))) { throw new antlr4.error.FailedPredicateException(this, "this.precpred(this._ctx, 4)"); } - this.state = 1074; + this.state = 1120; this.match(FlinkSqlParser.LS_BRACKET); - this.state = 1075; + this.state = 1121; localctx.index = this.valueExpression(0); - this.state = 1076; + this.state = 1122; this.match(FlinkSqlParser.RS_BRACKET); } - this.state = 1082; + this.state = 1128; this._errHandler.sync(this); - _alt = this._interp.adaptivePredict(this._input,122,this._ctx); + _alt = this._interp.adaptivePredict(this._input,127,this._ctx); } } catch( error) { @@ -11009,10 +11462,10 @@ FlinkSqlParser.FunctionNameContext = FunctionNameContext; FlinkSqlParser.prototype.functionName = function() { var localctx = new FunctionNameContext(this, this._ctx, this.state); - this.enterRule(localctx, 138, FlinkSqlParser.RULE_functionName); + this.enterRule(localctx, 144, FlinkSqlParser.RULE_functionName); try { this.enterOuterAlt(localctx, 1); - this.state = 1083; + this.state = 1129; this.uid(); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -11077,10 +11530,10 @@ FlinkSqlParser.DereferenceDefinitionContext = DereferenceDefinitionContext; FlinkSqlParser.prototype.dereferenceDefinition = function() { var localctx = new DereferenceDefinitionContext(this, this._ctx, this.state); - this.enterRule(localctx, 140, FlinkSqlParser.RULE_dereferenceDefinition); + this.enterRule(localctx, 146, FlinkSqlParser.RULE_dereferenceDefinition); try { this.enterOuterAlt(localctx, 1); - this.state = 1085; + this.state = 1131; this.uid(); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -11113,29 +11566,14 @@ function QualifiedNameContext(parser, parent, invokingState) { QualifiedNameContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); QualifiedNameContext.prototype.constructor = QualifiedNameContext; -QualifiedNameContext.prototype.identifier = function(i) { - if(i===undefined) { - i = null; - } - if(i===null) { - return this.getTypedRuleContexts(IdentifierContext); - } else { - return this.getTypedRuleContext(IdentifierContext,i); - } +QualifiedNameContext.prototype.identifier = function() { + return this.getTypedRuleContext(IdentifierContext,0); }; -QualifiedNameContext.prototype.DOT = function(i) { - if(i===undefined) { - i = null; - } - if(i===null) { - return this.getTokens(FlinkSqlParser.DOT); - } else { - return this.getToken(FlinkSqlParser.DOT, i); - } +QualifiedNameContext.prototype.dereferenceDefinition = function() { + return this.getTypedRuleContext(DereferenceDefinitionContext,0); }; - QualifiedNameContext.prototype.enterRule = function(listener) { if(listener instanceof FlinkSqlParserListener ) { listener.enterQualifiedName(this); @@ -11164,23 +11602,24 @@ FlinkSqlParser.QualifiedNameContext = QualifiedNameContext; FlinkSqlParser.prototype.qualifiedName = function() { var localctx = new QualifiedNameContext(this, this._ctx, this.state); - this.enterRule(localctx, 142, FlinkSqlParser.RULE_qualifiedName); - var _la = 0; // Token type + this.enterRule(localctx, 148, FlinkSqlParser.RULE_qualifiedName); try { - this.enterOuterAlt(localctx, 1); - this.state = 1087; - this.identifier(); - this.state = 1092; + this.state = 1135; this._errHandler.sync(this); - _la = this._input.LA(1); - while(_la===FlinkSqlParser.DOT) { - this.state = 1088; - this.match(FlinkSqlParser.DOT); - this.state = 1089; + var la_ = this._interp.adaptivePredict(this._input,128,this._ctx); + switch(la_) { + case 1: + this.enterOuterAlt(localctx, 1); + this.state = 1133; this.identifier(); - this.state = 1094; - this._errHandler.sync(this); - _la = this._input.LA(1); + break; + + case 2: + this.enterOuterAlt(localctx, 2); + this.state = 1134; + this.dereferenceDefinition(); + break; + } } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -11253,20 +11692,20 @@ FlinkSqlParser.IntervalContext = IntervalContext; FlinkSqlParser.prototype.interval = function() { var localctx = new IntervalContext(this, this._ctx, this.state); - this.enterRule(localctx, 144, FlinkSqlParser.RULE_interval); + this.enterRule(localctx, 150, FlinkSqlParser.RULE_interval); try { this.enterOuterAlt(localctx, 1); - this.state = 1095; + this.state = 1137; this.match(FlinkSqlParser.INTERVAL); - this.state = 1098; + this.state = 1140; this._errHandler.sync(this); - var la_ = this._interp.adaptivePredict(this._input,124,this._ctx); + var la_ = this._interp.adaptivePredict(this._input,129,this._ctx); if(la_===1) { - this.state = 1096; + this.state = 1138; this.errorCapturingMultiUnitsInterval(); } else if(la_===2) { - this.state = 1097; + this.state = 1139; this.errorCapturingUnitToUnitInterval(); } @@ -11337,16 +11776,16 @@ FlinkSqlParser.ErrorCapturingMultiUnitsIntervalContext = ErrorCapturingMultiUnit FlinkSqlParser.prototype.errorCapturingMultiUnitsInterval = function() { var localctx = new ErrorCapturingMultiUnitsIntervalContext(this, this._ctx, this.state); - this.enterRule(localctx, 146, FlinkSqlParser.RULE_errorCapturingMultiUnitsInterval); + this.enterRule(localctx, 152, FlinkSqlParser.RULE_errorCapturingMultiUnitsInterval); try { this.enterOuterAlt(localctx, 1); - this.state = 1100; + this.state = 1142; this.multiUnitsInterval(); - this.state = 1102; + this.state = 1144; this._errHandler.sync(this); - var la_ = this._interp.adaptivePredict(this._input,125,this._ctx); + var la_ = this._interp.adaptivePredict(this._input,130,this._ctx); if(la_===1) { - this.state = 1101; + this.state = 1143; this.unitToUnitInterval(); } @@ -11431,26 +11870,26 @@ FlinkSqlParser.MultiUnitsIntervalContext = MultiUnitsIntervalContext; FlinkSqlParser.prototype.multiUnitsInterval = function() { var localctx = new MultiUnitsIntervalContext(this, this._ctx, this.state); - this.enterRule(localctx, 148, FlinkSqlParser.RULE_multiUnitsInterval); + this.enterRule(localctx, 154, FlinkSqlParser.RULE_multiUnitsInterval); try { this.enterOuterAlt(localctx, 1); - this.state = 1107; + this.state = 1149; this._errHandler.sync(this); var _alt = 1; do { switch (_alt) { case 1: - this.state = 1104; + this.state = 1146; this.intervalValue(); - this.state = 1105; + this.state = 1147; this.identifier(); break; default: throw new antlr4.error.NoViableAltException(this); } - this.state = 1109; + this.state = 1151; this._errHandler.sync(this); - _alt = this._interp.adaptivePredict(this._input,126, this._ctx); + _alt = this._interp.adaptivePredict(this._input,131, this._ctx); } while ( _alt!=2 && _alt!=antlr4.atn.ATN.INVALID_ALT_NUMBER ); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -11529,20 +11968,20 @@ FlinkSqlParser.ErrorCapturingUnitToUnitIntervalContext = ErrorCapturingUnitToUni FlinkSqlParser.prototype.errorCapturingUnitToUnitInterval = function() { var localctx = new ErrorCapturingUnitToUnitIntervalContext(this, this._ctx, this.state); - this.enterRule(localctx, 150, FlinkSqlParser.RULE_errorCapturingUnitToUnitInterval); + this.enterRule(localctx, 156, FlinkSqlParser.RULE_errorCapturingUnitToUnitInterval); try { this.enterOuterAlt(localctx, 1); - this.state = 1111; + this.state = 1153; localctx.body = this.unitToUnitInterval(); - this.state = 1114; + this.state = 1156; this._errHandler.sync(this); - var la_ = this._interp.adaptivePredict(this._input,127,this._ctx); + var la_ = this._interp.adaptivePredict(this._input,132,this._ctx); if(la_===1) { - this.state = 1112; + this.state = 1154; localctx.error1 = this.multiUnitsInterval(); } else if(la_===2) { - this.state = 1113; + this.state = 1155; localctx.error2 = this.unitToUnitInterval(); } @@ -11627,16 +12066,16 @@ FlinkSqlParser.UnitToUnitIntervalContext = UnitToUnitIntervalContext; FlinkSqlParser.prototype.unitToUnitInterval = function() { var localctx = new UnitToUnitIntervalContext(this, this._ctx, this.state); - this.enterRule(localctx, 152, FlinkSqlParser.RULE_unitToUnitInterval); + this.enterRule(localctx, 158, FlinkSqlParser.RULE_unitToUnitInterval); try { this.enterOuterAlt(localctx, 1); - this.state = 1116; + this.state = 1158; localctx.value = this.intervalValue(); - this.state = 1117; + this.state = 1159; localctx.from = this.identifier(); - this.state = 1118; + this.state = 1160; this.match(FlinkSqlParser.TO); - this.state = 1119; + this.state = 1161; localctx.to = this.identifier(); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -11717,10 +12156,10 @@ FlinkSqlParser.IntervalValueContext = IntervalValueContext; FlinkSqlParser.prototype.intervalValue = function() { var localctx = new IntervalValueContext(this, this._ctx, this.state); - this.enterRule(localctx, 154, FlinkSqlParser.RULE_intervalValue); + this.enterRule(localctx, 160, FlinkSqlParser.RULE_intervalValue); var _la = 0; // Token type try { - this.state = 1126; + this.state = 1168; this._errHandler.sync(this); switch(this._input.LA(1)) { case FlinkSqlParser.HYPNEN_SIGN: @@ -11728,11 +12167,11 @@ FlinkSqlParser.prototype.intervalValue = function() { case FlinkSqlParser.DIG_LITERAL: case FlinkSqlParser.REAL_LITERAL: this.enterOuterAlt(localctx, 1); - this.state = 1122; + this.state = 1164; this._errHandler.sync(this); _la = this._input.LA(1); if(_la===FlinkSqlParser.HYPNEN_SIGN || _la===FlinkSqlParser.ADD_SIGN) { - this.state = 1121; + this.state = 1163; _la = this._input.LA(1); if(!(_la===FlinkSqlParser.HYPNEN_SIGN || _la===FlinkSqlParser.ADD_SIGN)) { this._errHandler.recoverInline(this); @@ -11743,7 +12182,7 @@ FlinkSqlParser.prototype.intervalValue = function() { } } - this.state = 1124; + this.state = 1166; _la = this._input.LA(1); if(!(_la===FlinkSqlParser.DIG_LITERAL || _la===FlinkSqlParser.REAL_LITERAL)) { this._errHandler.recoverInline(this); @@ -11755,7 +12194,7 @@ FlinkSqlParser.prototype.intervalValue = function() { break; case FlinkSqlParser.STRING_LITERAL: this.enterOuterAlt(localctx, 2); - this.state = 1125; + this.state = 1167; this.match(FlinkSqlParser.STRING_LITERAL); break; default: @@ -11776,6 +12215,99 @@ FlinkSqlParser.prototype.intervalValue = function() { }; +function ColumnAliasContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = FlinkSqlParser.RULE_columnAlias; + return this; +} + +ColumnAliasContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +ColumnAliasContext.prototype.constructor = ColumnAliasContext; + +ColumnAliasContext.prototype.strictIdentifier = function() { + return this.getTypedRuleContext(StrictIdentifierContext,0); +}; + +ColumnAliasContext.prototype.AS = function() { + return this.getToken(FlinkSqlParser.AS, 0); +}; + +ColumnAliasContext.prototype.identifierList = function() { + return this.getTypedRuleContext(IdentifierListContext,0); +}; + +ColumnAliasContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterColumnAlias(this); + } +}; + +ColumnAliasContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitColumnAlias(this); + } +}; + +ColumnAliasContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitColumnAlias(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +FlinkSqlParser.ColumnAliasContext = ColumnAliasContext; + +FlinkSqlParser.prototype.columnAlias = function() { + + var localctx = new ColumnAliasContext(this, this._ctx, this.state); + this.enterRule(localctx, 162, FlinkSqlParser.RULE_columnAlias); + var _la = 0; // Token type + try { + this.enterOuterAlt(localctx, 1); + this.state = 1171; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===FlinkSqlParser.AS) { + this.state = 1170; + this.match(FlinkSqlParser.AS); + } + + this.state = 1173; + this.strictIdentifier(); + this.state = 1175; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===FlinkSqlParser.LR_BRACKET) { + this.state = 1174; + this.identifierList(); + } + + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + function TableAliasContext(parser, parent, invokingState) { if(parent===undefined) { parent = null; @@ -11832,25 +12364,25 @@ FlinkSqlParser.TableAliasContext = TableAliasContext; FlinkSqlParser.prototype.tableAlias = function() { var localctx = new TableAliasContext(this, this._ctx, this.state); - this.enterRule(localctx, 156, FlinkSqlParser.RULE_tableAlias); + this.enterRule(localctx, 164, FlinkSqlParser.RULE_tableAlias); var _la = 0; // Token type try { this.enterOuterAlt(localctx, 1); - this.state = 1129; + this.state = 1178; this._errHandler.sync(this); _la = this._input.LA(1); if(_la===FlinkSqlParser.AS) { - this.state = 1128; + this.state = 1177; this.match(FlinkSqlParser.AS); } - this.state = 1131; + this.state = 1180; this.strictIdentifier(); - this.state = 1133; + this.state = 1182; this._errHandler.sync(this); - var la_ = this._interp.adaptivePredict(this._input,131,this._ctx); + var la_ = this._interp.adaptivePredict(this._input,138,this._ctx); if(la_===1) { - this.state = 1132; + this.state = 1181; this.identifierList(); } @@ -11921,12 +12453,12 @@ FlinkSqlParser.ErrorCapturingIdentifierContext = ErrorCapturingIdentifierContext FlinkSqlParser.prototype.errorCapturingIdentifier = function() { var localctx = new ErrorCapturingIdentifierContext(this, this._ctx, this.state); - this.enterRule(localctx, 158, FlinkSqlParser.RULE_errorCapturingIdentifier); + this.enterRule(localctx, 166, FlinkSqlParser.RULE_errorCapturingIdentifier); try { this.enterOuterAlt(localctx, 1); - this.state = 1135; + this.state = 1184; this.identifier(); - this.state = 1136; + this.state = 1185; this.errorCapturingIdentifierExtra(); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -12058,24 +12590,24 @@ FlinkSqlParser.ErrorCapturingIdentifierExtraContext = ErrorCapturingIdentifierEx FlinkSqlParser.prototype.errorCapturingIdentifierExtra = function() { var localctx = new ErrorCapturingIdentifierExtraContext(this, this._ctx, this.state); - this.enterRule(localctx, 160, FlinkSqlParser.RULE_errorCapturingIdentifierExtra); + this.enterRule(localctx, 168, FlinkSqlParser.RULE_errorCapturingIdentifierExtra); var _la = 0; // Token type try { - this.state = 1145; + this.state = 1194; this._errHandler.sync(this); switch(this._input.LA(1)) { case FlinkSqlParser.MINUS: localctx = new ErrorIdentContext(this, localctx); this.enterOuterAlt(localctx, 1); - this.state = 1140; + this.state = 1189; this._errHandler.sync(this); _la = this._input.LA(1); do { - this.state = 1138; + this.state = 1187; this.match(FlinkSqlParser.MINUS); - this.state = 1139; + this.state = 1188; this.identifier(); - this.state = 1142; + this.state = 1191; this._errHandler.sync(this); _la = this._input.LA(1); } while(_la===FlinkSqlParser.MINUS); @@ -12160,14 +12692,14 @@ FlinkSqlParser.IdentifierListContext = IdentifierListContext; FlinkSqlParser.prototype.identifierList = function() { var localctx = new IdentifierListContext(this, this._ctx, this.state); - this.enterRule(localctx, 162, FlinkSqlParser.RULE_identifierList); + this.enterRule(localctx, 170, FlinkSqlParser.RULE_identifierList); try { this.enterOuterAlt(localctx, 1); - this.state = 1147; + this.state = 1196; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1148; + this.state = 1197; this.identifierSeq(); - this.state = 1149; + this.state = 1198; this.match(FlinkSqlParser.RR_BRACKET); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -12251,21 +12783,21 @@ FlinkSqlParser.IdentifierSeqContext = IdentifierSeqContext; FlinkSqlParser.prototype.identifierSeq = function() { var localctx = new IdentifierSeqContext(this, this._ctx, this.state); - this.enterRule(localctx, 164, FlinkSqlParser.RULE_identifierSeq); + this.enterRule(localctx, 172, FlinkSqlParser.RULE_identifierSeq); var _la = 0; // Token type try { this.enterOuterAlt(localctx, 1); - this.state = 1151; + this.state = 1200; this.identifier(); - this.state = 1156; + this.state = 1205; this._errHandler.sync(this); _la = this._input.LA(1); while(_la===FlinkSqlParser.COMMA) { - this.state = 1152; + this.state = 1201; this.match(FlinkSqlParser.COMMA); - this.state = 1153; + this.state = 1202; this.identifier(); - this.state = 1158; + this.state = 1207; this._errHandler.sync(this); _la = this._input.LA(1); } @@ -12332,10 +12864,10 @@ FlinkSqlParser.IdentifierContext = IdentifierContext; FlinkSqlParser.prototype.identifier = function() { var localctx = new IdentifierContext(this, this._ctx, this.state); - this.enterRule(localctx, 166, FlinkSqlParser.RULE_identifier); + this.enterRule(localctx, 174, FlinkSqlParser.RULE_identifier); try { this.enterOuterAlt(localctx, 1); - this.state = 1159; + this.state = 1208; this.strictIdentifier(); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -12451,22 +12983,22 @@ FlinkSqlParser.StrictIdentifierContext = StrictIdentifierContext; FlinkSqlParser.prototype.strictIdentifier = function() { var localctx = new StrictIdentifierContext(this, this._ctx, this.state); - this.enterRule(localctx, 168, FlinkSqlParser.RULE_strictIdentifier); + this.enterRule(localctx, 176, FlinkSqlParser.RULE_strictIdentifier); try { - this.state = 1163; + this.state = 1212; this._errHandler.sync(this); switch(this._input.LA(1)) { case FlinkSqlParser.DIG_LITERAL: - case FlinkSqlParser.ID: + case FlinkSqlParser.ID_LITERAL: localctx = new UnquotedIdentifierAlternativeContext(this, localctx); this.enterOuterAlt(localctx, 1); - this.state = 1161; + this.state = 1210; this.unquotedIdentifier(); break; case FlinkSqlParser.STRING_LITERAL: localctx = new QuotedIdentifierAlternativeContext(this, localctx); this.enterOuterAlt(localctx, 2); - this.state = 1162; + this.state = 1211; this.quotedIdentifier(); break; default: @@ -12507,8 +13039,8 @@ UnquotedIdentifierContext.prototype.DIG_LITERAL = function() { return this.getToken(FlinkSqlParser.DIG_LITERAL, 0); }; -UnquotedIdentifierContext.prototype.ID = function() { - return this.getToken(FlinkSqlParser.ID, 0); +UnquotedIdentifierContext.prototype.ID_LITERAL = function() { + return this.getToken(FlinkSqlParser.ID_LITERAL, 0); }; UnquotedIdentifierContext.prototype.enterRule = function(listener) { @@ -12539,13 +13071,13 @@ FlinkSqlParser.UnquotedIdentifierContext = UnquotedIdentifierContext; FlinkSqlParser.prototype.unquotedIdentifier = function() { var localctx = new UnquotedIdentifierContext(this, this._ctx, this.state); - this.enterRule(localctx, 170, FlinkSqlParser.RULE_unquotedIdentifier); + this.enterRule(localctx, 178, FlinkSqlParser.RULE_unquotedIdentifier); var _la = 0; // Token type try { this.enterOuterAlt(localctx, 1); - this.state = 1165; + this.state = 1214; _la = this._input.LA(1); - if(!(_la===FlinkSqlParser.DIG_LITERAL || _la===FlinkSqlParser.ID)) { + if(!(_la===FlinkSqlParser.DIG_LITERAL || _la===FlinkSqlParser.ID_LITERAL)) { this._errHandler.recoverInline(this); } else { @@ -12615,10 +13147,10 @@ FlinkSqlParser.QuotedIdentifierContext = QuotedIdentifierContext; FlinkSqlParser.prototype.quotedIdentifier = function() { var localctx = new QuotedIdentifierContext(this, this._ctx, this.state); - this.enterRule(localctx, 172, FlinkSqlParser.RULE_quotedIdentifier); + this.enterRule(localctx, 180, FlinkSqlParser.RULE_quotedIdentifier); try { this.enterOuterAlt(localctx, 1); - this.state = 1167; + this.state = 1216; this.match(FlinkSqlParser.STRING_LITERAL); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -12700,16 +13232,16 @@ FlinkSqlParser.WhenClauseContext = WhenClauseContext; FlinkSqlParser.prototype.whenClause = function() { var localctx = new WhenClauseContext(this, this._ctx, this.state); - this.enterRule(localctx, 174, FlinkSqlParser.RULE_whenClause); + this.enterRule(localctx, 182, FlinkSqlParser.RULE_whenClause); try { this.enterOuterAlt(localctx, 1); - this.state = 1169; + this.state = 1218; this.match(FlinkSqlParser.WHEN); - this.state = 1170; + this.state = 1219; localctx.condition = this.expression(); - this.state = 1171; + this.state = 1220; this.match(FlinkSqlParser.THEN); - this.state = 1172; + this.state = 1221; localctx.result = this.expression(); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -12793,21 +13325,21 @@ FlinkSqlParser.UidListContext = UidListContext; FlinkSqlParser.prototype.uidList = function() { var localctx = new UidListContext(this, this._ctx, this.state); - this.enterRule(localctx, 176, FlinkSqlParser.RULE_uidList); + this.enterRule(localctx, 184, FlinkSqlParser.RULE_uidList); var _la = 0; // Token type try { this.enterOuterAlt(localctx, 1); - this.state = 1174; + this.state = 1223; this.uid(); - this.state = 1179; + this.state = 1228; this._errHandler.sync(this); _la = this._input.LA(1); while(_la===FlinkSqlParser.COMMA) { - this.state = 1175; + this.state = 1224; this.match(FlinkSqlParser.COMMA); - this.state = 1176; + this.state = 1225; this.uid(); - this.state = 1181; + this.state = 1230; this._errHandler.sync(this); _la = this._input.LA(1); } @@ -12842,8 +13374,8 @@ function UidContext(parser, parent, invokingState) { UidContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); UidContext.prototype.constructor = UidContext; -UidContext.prototype.ID = function() { - return this.getToken(FlinkSqlParser.ID, 0); +UidContext.prototype.ID_LITERAL = function() { + return this.getToken(FlinkSqlParser.ID_LITERAL, 0); }; UidContext.prototype.DOT_ID = function(i) { @@ -12886,22 +13418,146 @@ FlinkSqlParser.UidContext = UidContext; FlinkSqlParser.prototype.uid = function() { var localctx = new UidContext(this, this._ctx, this.state); - this.enterRule(localctx, 178, FlinkSqlParser.RULE_uid); + this.enterRule(localctx, 186, FlinkSqlParser.RULE_uid); try { this.enterOuterAlt(localctx, 1); - this.state = 1182; - this.match(FlinkSqlParser.ID); - this.state = 1186; + this.state = 1231; + this.match(FlinkSqlParser.ID_LITERAL); + this.state = 1235; this._errHandler.sync(this); - var _alt = this._interp.adaptivePredict(this._input,137,this._ctx) + var _alt = this._interp.adaptivePredict(this._input,144,this._ctx) while(_alt!=1 && _alt!=antlr4.atn.ATN.INVALID_ALT_NUMBER) { if(_alt===1+1) { - this.state = 1183; + this.state = 1232; this.match(FlinkSqlParser.DOT_ID); } - this.state = 1188; + this.state = 1237; this._errHandler.sync(this); - _alt = this._interp.adaptivePredict(this._input,137,this._ctx); + _alt = this._interp.adaptivePredict(this._input,144,this._ctx); + } + + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function PlusUidContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = FlinkSqlParser.RULE_plusUid; + return this; +} + +PlusUidContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +PlusUidContext.prototype.constructor = PlusUidContext; + +PlusUidContext.prototype.ID_LITERAL = function() { + return this.getToken(FlinkSqlParser.ID_LITERAL, 0); +}; + +PlusUidContext.prototype.PLUS_ID_LITERAL = function() { + return this.getToken(FlinkSqlParser.PLUS_ID_LITERAL, 0); +}; + +PlusUidContext.prototype.DOT_ID = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTokens(FlinkSqlParser.DOT_ID); + } else { + return this.getToken(FlinkSqlParser.DOT_ID, i); + } +}; + + +PlusUidContext.prototype.PLUS_DOT_ID = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTokens(FlinkSqlParser.PLUS_DOT_ID); + } else { + return this.getToken(FlinkSqlParser.PLUS_DOT_ID, i); + } +}; + + +PlusUidContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterPlusUid(this); + } +}; + +PlusUidContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitPlusUid(this); + } +}; + +PlusUidContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitPlusUid(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +FlinkSqlParser.PlusUidContext = PlusUidContext; + +FlinkSqlParser.prototype.plusUid = function() { + + var localctx = new PlusUidContext(this, this._ctx, this.state); + this.enterRule(localctx, 188, FlinkSqlParser.RULE_plusUid); + var _la = 0; // Token type + try { + this.enterOuterAlt(localctx, 1); + this.state = 1238; + _la = this._input.LA(1); + if(!(_la===FlinkSqlParser.ID_LITERAL || _la===FlinkSqlParser.PLUS_ID_LITERAL)) { + this._errHandler.recoverInline(this); + } + else { + this._errHandler.reportMatch(this); + this.consume(); + } + this.state = 1242; + this._errHandler.sync(this); + var _alt = this._interp.adaptivePredict(this._input,145,this._ctx) + while(_alt!=1 && _alt!=antlr4.atn.ATN.INVALID_ALT_NUMBER) { + if(_alt===1+1) { + this.state = 1239; + _la = this._input.LA(1); + if(!(_la===FlinkSqlParser.DOT_ID || _la===FlinkSqlParser.PLUS_DOT_ID)) { + this._errHandler.recoverInline(this); + } + else { + this._errHandler.reportMatch(this); + this.consume(); + } + } + this.state = 1244; + this._errHandler.sync(this); + _alt = this._interp.adaptivePredict(this._input,145,this._ctx); } } catch (re) { @@ -12971,12 +13627,12 @@ FlinkSqlParser.WithOptionContext = WithOptionContext; FlinkSqlParser.prototype.withOption = function() { var localctx = new WithOptionContext(this, this._ctx, this.state); - this.enterRule(localctx, 180, FlinkSqlParser.RULE_withOption); + this.enterRule(localctx, 190, FlinkSqlParser.RULE_withOption); try { this.enterOuterAlt(localctx, 1); - this.state = 1189; + this.state = 1245; this.match(FlinkSqlParser.WITH); - this.state = 1190; + this.state = 1246; this.tablePropertyList(); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -13049,14 +13705,14 @@ FlinkSqlParser.IfNotExistsContext = IfNotExistsContext; FlinkSqlParser.prototype.ifNotExists = function() { var localctx = new IfNotExistsContext(this, this._ctx, this.state); - this.enterRule(localctx, 182, FlinkSqlParser.RULE_ifNotExists); + this.enterRule(localctx, 192, FlinkSqlParser.RULE_ifNotExists); try { this.enterOuterAlt(localctx, 1); - this.state = 1192; + this.state = 1248; this.match(FlinkSqlParser.IF); - this.state = 1193; + this.state = 1249; this.match(FlinkSqlParser.NOT); - this.state = 1194; + this.state = 1250; this.match(FlinkSqlParser.EXISTS); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -13125,12 +13781,12 @@ FlinkSqlParser.IfExistsContext = IfExistsContext; FlinkSqlParser.prototype.ifExists = function() { var localctx = new IfExistsContext(this, this._ctx, this.state); - this.enterRule(localctx, 184, FlinkSqlParser.RULE_ifExists); + this.enterRule(localctx, 194, FlinkSqlParser.RULE_ifExists); try { this.enterOuterAlt(localctx, 1); - this.state = 1196; + this.state = 1252; this.match(FlinkSqlParser.IF); - this.state = 1197; + this.state = 1253; this.match(FlinkSqlParser.EXISTS); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -13222,27 +13878,27 @@ FlinkSqlParser.TablePropertyListContext = TablePropertyListContext; FlinkSqlParser.prototype.tablePropertyList = function() { var localctx = new TablePropertyListContext(this, this._ctx, this.state); - this.enterRule(localctx, 186, FlinkSqlParser.RULE_tablePropertyList); + this.enterRule(localctx, 196, FlinkSqlParser.RULE_tablePropertyList); var _la = 0; // Token type try { this.enterOuterAlt(localctx, 1); - this.state = 1199; + this.state = 1255; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 1200; + this.state = 1256; this.tableProperty(); - this.state = 1205; + this.state = 1261; this._errHandler.sync(this); _la = this._input.LA(1); while(_la===FlinkSqlParser.COMMA) { - this.state = 1201; + this.state = 1257; this.match(FlinkSqlParser.COMMA); - this.state = 1202; + this.state = 1258; this.tableProperty(); - this.state = 1207; + this.state = 1263; this._errHandler.sync(this); _la = this._input.LA(1); } - this.state = 1208; + this.state = 1264; this.match(FlinkSqlParser.RR_BRACKET); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -13317,25 +13973,25 @@ FlinkSqlParser.TablePropertyContext = TablePropertyContext; FlinkSqlParser.prototype.tableProperty = function() { var localctx = new TablePropertyContext(this, this._ctx, this.state); - this.enterRule(localctx, 188, FlinkSqlParser.RULE_tableProperty); + this.enterRule(localctx, 198, FlinkSqlParser.RULE_tableProperty); var _la = 0; // Token type try { this.enterOuterAlt(localctx, 1); - this.state = 1210; + this.state = 1266; localctx.key = this.tablePropertyKey(); - this.state = 1215; + this.state = 1271; this._errHandler.sync(this); _la = this._input.LA(1); - if(_la===FlinkSqlParser.TRUE || _la===FlinkSqlParser.FALSE || ((((_la - 276)) & ~0x1f) == 0 && ((1 << (_la - 276)) & ((1 << (FlinkSqlParser.EQUAL_SYMBOL - 276)) | (1 << (FlinkSqlParser.STRING_LITERAL - 276)) | (1 << (FlinkSqlParser.DIG_LITERAL - 276)) | (1 << (FlinkSqlParser.REAL_LITERAL - 276)))) !== 0)) { - this.state = 1212; + if(_la===FlinkSqlParser.TRUE || _la===FlinkSqlParser.FALSE || ((((_la - 282)) & ~0x1f) == 0 && ((1 << (_la - 282)) & ((1 << (FlinkSqlParser.EQUAL_SYMBOL - 282)) | (1 << (FlinkSqlParser.STRING_LITERAL - 282)) | (1 << (FlinkSqlParser.DIG_LITERAL - 282)))) !== 0) || _la===FlinkSqlParser.REAL_LITERAL) { + this.state = 1268; this._errHandler.sync(this); _la = this._input.LA(1); if(_la===FlinkSqlParser.EQUAL_SYMBOL) { - this.state = 1211; + this.state = 1267; this.match(FlinkSqlParser.EQUAL_SYMBOL); } - this.state = 1214; + this.state = 1270; localctx.value = this.tablePropertyValue(); } @@ -13370,29 +14026,14 @@ function TablePropertyKeyContext(parser, parent, invokingState) { TablePropertyKeyContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); TablePropertyKeyContext.prototype.constructor = TablePropertyKeyContext; -TablePropertyKeyContext.prototype.identifier = function(i) { - if(i===undefined) { - i = null; - } - if(i===null) { - return this.getTypedRuleContexts(IdentifierContext); - } else { - return this.getTypedRuleContext(IdentifierContext,i); - } +TablePropertyKeyContext.prototype.identifier = function() { + return this.getTypedRuleContext(IdentifierContext,0); }; -TablePropertyKeyContext.prototype.DOT = function(i) { - if(i===undefined) { - i = null; - } - if(i===null) { - return this.getTokens(FlinkSqlParser.DOT); - } else { - return this.getToken(FlinkSqlParser.DOT, i); - } +TablePropertyKeyContext.prototype.dereferenceDefinition = function() { + return this.getTypedRuleContext(DereferenceDefinitionContext,0); }; - TablePropertyKeyContext.prototype.STRING_LITERAL = function() { return this.getToken(FlinkSqlParser.STRING_LITERAL, 0); }; @@ -13425,34 +14066,27 @@ FlinkSqlParser.TablePropertyKeyContext = TablePropertyKeyContext; FlinkSqlParser.prototype.tablePropertyKey = function() { var localctx = new TablePropertyKeyContext(this, this._ctx, this.state); - this.enterRule(localctx, 190, FlinkSqlParser.RULE_tablePropertyKey); - var _la = 0; // Token type + this.enterRule(localctx, 200, FlinkSqlParser.RULE_tablePropertyKey); try { - this.state = 1226; + this.state = 1276; this._errHandler.sync(this); - var la_ = this._interp.adaptivePredict(this._input,142,this._ctx); + var la_ = this._interp.adaptivePredict(this._input,149,this._ctx); switch(la_) { case 1: this.enterOuterAlt(localctx, 1); - this.state = 1217; + this.state = 1273; this.identifier(); - this.state = 1222; - this._errHandler.sync(this); - _la = this._input.LA(1); - while(_la===FlinkSqlParser.DOT) { - this.state = 1218; - this.match(FlinkSqlParser.DOT); - this.state = 1219; - this.identifier(); - this.state = 1224; - this._errHandler.sync(this); - _la = this._input.LA(1); - } break; case 2: this.enterOuterAlt(localctx, 2); - this.state = 1225; + this.state = 1274; + this.dereferenceDefinition(); + break; + + case 3: + this.enterOuterAlt(localctx, 3); + this.state = 1275; this.match(FlinkSqlParser.STRING_LITERAL); break; @@ -13532,30 +14166,30 @@ FlinkSqlParser.TablePropertyValueContext = TablePropertyValueContext; FlinkSqlParser.prototype.tablePropertyValue = function() { var localctx = new TablePropertyValueContext(this, this._ctx, this.state); - this.enterRule(localctx, 192, FlinkSqlParser.RULE_tablePropertyValue); + this.enterRule(localctx, 202, FlinkSqlParser.RULE_tablePropertyValue); try { - this.state = 1232; + this.state = 1282; this._errHandler.sync(this); switch(this._input.LA(1)) { case FlinkSqlParser.DIG_LITERAL: this.enterOuterAlt(localctx, 1); - this.state = 1228; + this.state = 1278; this.match(FlinkSqlParser.DIG_LITERAL); break; case FlinkSqlParser.REAL_LITERAL: this.enterOuterAlt(localctx, 2); - this.state = 1229; + this.state = 1279; this.match(FlinkSqlParser.REAL_LITERAL); break; case FlinkSqlParser.TRUE: case FlinkSqlParser.FALSE: this.enterOuterAlt(localctx, 3); - this.state = 1230; + this.state = 1280; this.booleanLiteral(); break; case FlinkSqlParser.STRING_LITERAL: this.enterOuterAlt(localctx, 4); - this.state = 1231; + this.state = 1281; this.match(FlinkSqlParser.STRING_LITERAL); break; default: @@ -13652,33 +14286,33 @@ FlinkSqlParser.LogicalOperatorContext = LogicalOperatorContext; FlinkSqlParser.prototype.logicalOperator = function() { var localctx = new LogicalOperatorContext(this, this._ctx, this.state); - this.enterRule(localctx, 194, FlinkSqlParser.RULE_logicalOperator); + this.enterRule(localctx, 204, FlinkSqlParser.RULE_logicalOperator); try { - this.state = 1240; + this.state = 1290; this._errHandler.sync(this); switch(this._input.LA(1)) { case FlinkSqlParser.AND: this.enterOuterAlt(localctx, 1); - this.state = 1234; + this.state = 1284; this.match(FlinkSqlParser.AND); break; case FlinkSqlParser.BIT_AND_OP: this.enterOuterAlt(localctx, 2); - this.state = 1235; + this.state = 1285; this.match(FlinkSqlParser.BIT_AND_OP); - this.state = 1236; + this.state = 1286; this.match(FlinkSqlParser.BIT_AND_OP); break; case FlinkSqlParser.OR: this.enterOuterAlt(localctx, 3); - this.state = 1237; + this.state = 1287; this.match(FlinkSqlParser.OR); break; case FlinkSqlParser.BIT_OR_OP: this.enterOuterAlt(localctx, 4); - this.state = 1238; + this.state = 1288; this.match(FlinkSqlParser.BIT_OR_OP); - this.state = 1239; + this.state = 1289; this.match(FlinkSqlParser.BIT_OR_OP); break; default: @@ -13759,69 +14393,69 @@ FlinkSqlParser.ComparisonOperatorContext = ComparisonOperatorContext; FlinkSqlParser.prototype.comparisonOperator = function() { var localctx = new ComparisonOperatorContext(this, this._ctx, this.state); - this.enterRule(localctx, 196, FlinkSqlParser.RULE_comparisonOperator); + this.enterRule(localctx, 206, FlinkSqlParser.RULE_comparisonOperator); try { - this.state = 1256; + this.state = 1306; this._errHandler.sync(this); - var la_ = this._interp.adaptivePredict(this._input,145,this._ctx); + var la_ = this._interp.adaptivePredict(this._input,152,this._ctx); switch(la_) { case 1: this.enterOuterAlt(localctx, 1); - this.state = 1242; + this.state = 1292; this.match(FlinkSqlParser.EQUAL_SYMBOL); break; case 2: this.enterOuterAlt(localctx, 2); - this.state = 1243; + this.state = 1293; this.match(FlinkSqlParser.GREATER_SYMBOL); break; case 3: this.enterOuterAlt(localctx, 3); - this.state = 1244; + this.state = 1294; this.match(FlinkSqlParser.LESS_SYMBOL); break; case 4: this.enterOuterAlt(localctx, 4); - this.state = 1245; + this.state = 1295; this.match(FlinkSqlParser.LESS_SYMBOL); - this.state = 1246; + this.state = 1296; this.match(FlinkSqlParser.EQUAL_SYMBOL); break; case 5: this.enterOuterAlt(localctx, 5); - this.state = 1247; + this.state = 1297; this.match(FlinkSqlParser.GREATER_SYMBOL); - this.state = 1248; + this.state = 1298; this.match(FlinkSqlParser.EQUAL_SYMBOL); break; case 6: this.enterOuterAlt(localctx, 6); - this.state = 1249; + this.state = 1299; this.match(FlinkSqlParser.LESS_SYMBOL); - this.state = 1250; + this.state = 1300; this.match(FlinkSqlParser.GREATER_SYMBOL); break; case 7: this.enterOuterAlt(localctx, 7); - this.state = 1251; + this.state = 1301; this.match(FlinkSqlParser.EXCLAMATION_SYMBOL); - this.state = 1252; + this.state = 1302; this.match(FlinkSqlParser.EQUAL_SYMBOL); break; case 8: this.enterOuterAlt(localctx, 8); - this.state = 1253; + this.state = 1303; this.match(FlinkSqlParser.LESS_SYMBOL); - this.state = 1254; + this.state = 1304; this.match(FlinkSqlParser.EQUAL_SYMBOL); - this.state = 1255; + this.state = 1305; this.match(FlinkSqlParser.GREATER_SYMBOL); break; @@ -13921,38 +14555,38 @@ FlinkSqlParser.BitOperatorContext = BitOperatorContext; FlinkSqlParser.prototype.bitOperator = function() { var localctx = new BitOperatorContext(this, this._ctx, this.state); - this.enterRule(localctx, 198, FlinkSqlParser.RULE_bitOperator); + this.enterRule(localctx, 208, FlinkSqlParser.RULE_bitOperator); try { - this.state = 1265; + this.state = 1315; this._errHandler.sync(this); switch(this._input.LA(1)) { case FlinkSqlParser.LESS_SYMBOL: this.enterOuterAlt(localctx, 1); - this.state = 1258; + this.state = 1308; this.match(FlinkSqlParser.LESS_SYMBOL); - this.state = 1259; + this.state = 1309; this.match(FlinkSqlParser.LESS_SYMBOL); break; case FlinkSqlParser.GREATER_SYMBOL: this.enterOuterAlt(localctx, 2); - this.state = 1260; + this.state = 1310; this.match(FlinkSqlParser.GREATER_SYMBOL); - this.state = 1261; + this.state = 1311; this.match(FlinkSqlParser.GREATER_SYMBOL); break; case FlinkSqlParser.BIT_AND_OP: this.enterOuterAlt(localctx, 3); - this.state = 1262; + this.state = 1312; this.match(FlinkSqlParser.BIT_AND_OP); break; case FlinkSqlParser.BIT_XOR_OP: this.enterOuterAlt(localctx, 4); - this.state = 1263; + this.state = 1313; this.match(FlinkSqlParser.BIT_XOR_OP); break; case FlinkSqlParser.BIT_OR_OP: this.enterOuterAlt(localctx, 5); - this.state = 1264; + this.state = 1314; this.match(FlinkSqlParser.BIT_OR_OP); break; default: @@ -14045,13 +14679,13 @@ FlinkSqlParser.MathOperatorContext = MathOperatorContext; FlinkSqlParser.prototype.mathOperator = function() { var localctx = new MathOperatorContext(this, this._ctx, this.state); - this.enterRule(localctx, 200, FlinkSqlParser.RULE_mathOperator); + this.enterRule(localctx, 210, FlinkSqlParser.RULE_mathOperator); var _la = 0; // Token type try { this.enterOuterAlt(localctx, 1); - this.state = 1267; + this.state = 1317; _la = this._input.LA(1); - if(!(_la===FlinkSqlParser.DIV || ((((_la - 296)) & ~0x1f) == 0 && ((1 << (_la - 296)) & ((1 << (FlinkSqlParser.ASTERISK_SIGN - 296)) | (1 << (FlinkSqlParser.HYPNEN_SIGN - 296)) | (1 << (FlinkSqlParser.ADD_SIGN - 296)) | (1 << (FlinkSqlParser.PENCENT_SIGN - 296)) | (1 << (FlinkSqlParser.DOUBLE_HYPNEN_SIGN - 296)) | (1 << (FlinkSqlParser.SLASH_SIGN - 296)))) !== 0))) { + if(!(_la===FlinkSqlParser.DIV || ((((_la - 302)) & ~0x1f) == 0 && ((1 << (_la - 302)) & ((1 << (FlinkSqlParser.ASTERISK_SIGN - 302)) | (1 << (FlinkSqlParser.HYPNEN_SIGN - 302)) | (1 << (FlinkSqlParser.ADD_SIGN - 302)) | (1 << (FlinkSqlParser.PENCENT_SIGN - 302)) | (1 << (FlinkSqlParser.DOUBLE_HYPNEN_SIGN - 302)) | (1 << (FlinkSqlParser.SLASH_SIGN - 302)))) !== 0))) { this._errHandler.recoverInline(this); } else { @@ -14137,13 +14771,13 @@ FlinkSqlParser.UnaryOperatorContext = UnaryOperatorContext; FlinkSqlParser.prototype.unaryOperator = function() { var localctx = new UnaryOperatorContext(this, this._ctx, this.state); - this.enterRule(localctx, 202, FlinkSqlParser.RULE_unaryOperator); + this.enterRule(localctx, 212, FlinkSqlParser.RULE_unaryOperator); var _la = 0; // Token type try { this.enterOuterAlt(localctx, 1); - this.state = 1269; + this.state = 1319; _la = this._input.LA(1); - if(!(_la===FlinkSqlParser.NOT || ((((_la - 279)) & ~0x1f) == 0 && ((1 << (_la - 279)) & ((1 << (FlinkSqlParser.EXCLAMATION_SYMBOL - 279)) | (1 << (FlinkSqlParser.BIT_NOT_OP - 279)) | (1 << (FlinkSqlParser.HYPNEN_SIGN - 279)) | (1 << (FlinkSqlParser.ADD_SIGN - 279)))) !== 0))) { + if(!(_la===FlinkSqlParser.NOT || ((((_la - 285)) & ~0x1f) == 0 && ((1 << (_la - 285)) & ((1 << (FlinkSqlParser.EXCLAMATION_SYMBOL - 285)) | (1 << (FlinkSqlParser.BIT_NOT_OP - 285)) | (1 << (FlinkSqlParser.HYPNEN_SIGN - 285)) | (1 << (FlinkSqlParser.ADD_SIGN - 285)))) !== 0))) { this._errHandler.recoverInline(this); } else { @@ -14213,10 +14847,10 @@ FlinkSqlParser.FullColumnNameContext = FullColumnNameContext; FlinkSqlParser.prototype.fullColumnName = function() { var localctx = new FullColumnNameContext(this, this._ctx, this.state); - this.enterRule(localctx, 204, FlinkSqlParser.RULE_fullColumnName); + this.enterRule(localctx, 214, FlinkSqlParser.RULE_fullColumnName); try { this.enterOuterAlt(localctx, 1); - this.state = 1271; + this.state = 1321; this.uid(); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -14313,62 +14947,62 @@ FlinkSqlParser.ConstantContext = ConstantContext; FlinkSqlParser.prototype.constant = function() { var localctx = new ConstantContext(this, this._ctx, this.state); - this.enterRule(localctx, 206, FlinkSqlParser.RULE_constant); + this.enterRule(localctx, 216, FlinkSqlParser.RULE_constant); var _la = 0; // Token type try { - this.state = 1285; + this.state = 1335; this._errHandler.sync(this); switch(this._input.LA(1)) { case FlinkSqlParser.STRING_LITERAL: this.enterOuterAlt(localctx, 1); - this.state = 1273; + this.state = 1323; this.stringLiteral(); break; case FlinkSqlParser.DIG_LITERAL: this.enterOuterAlt(localctx, 2); - this.state = 1274; + this.state = 1324; this.decimalLiteral(); break; case FlinkSqlParser.INTERVAL: this.enterOuterAlt(localctx, 3); - this.state = 1275; + this.state = 1325; this.interval(); break; case FlinkSqlParser.HYPNEN_SIGN: this.enterOuterAlt(localctx, 4); - this.state = 1276; + this.state = 1326; this.match(FlinkSqlParser.HYPNEN_SIGN); - this.state = 1277; + this.state = 1327; this.decimalLiteral(); break; case FlinkSqlParser.TRUE: case FlinkSqlParser.FALSE: this.enterOuterAlt(localctx, 5); - this.state = 1278; + this.state = 1328; this.booleanLiteral(); break; case FlinkSqlParser.REAL_LITERAL: this.enterOuterAlt(localctx, 6); - this.state = 1279; + this.state = 1329; this.match(FlinkSqlParser.REAL_LITERAL); break; case FlinkSqlParser.BIT_STRING: this.enterOuterAlt(localctx, 7); - this.state = 1280; + this.state = 1330; this.match(FlinkSqlParser.BIT_STRING); break; case FlinkSqlParser.NOT: case FlinkSqlParser.NULL: this.enterOuterAlt(localctx, 8); - this.state = 1282; + this.state = 1332; this._errHandler.sync(this); _la = this._input.LA(1); if(_la===FlinkSqlParser.NOT) { - this.state = 1281; + this.state = 1331; this.match(FlinkSqlParser.NOT); } - this.state = 1284; + this.state = 1334; this.match(FlinkSqlParser.NULL); break; default: @@ -14437,10 +15071,10 @@ FlinkSqlParser.StringLiteralContext = StringLiteralContext; FlinkSqlParser.prototype.stringLiteral = function() { var localctx = new StringLiteralContext(this, this._ctx, this.state); - this.enterRule(localctx, 208, FlinkSqlParser.RULE_stringLiteral); + this.enterRule(localctx, 218, FlinkSqlParser.RULE_stringLiteral); try { this.enterOuterAlt(localctx, 1); - this.state = 1287; + this.state = 1337; this.match(FlinkSqlParser.STRING_LITERAL); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -14505,10 +15139,10 @@ FlinkSqlParser.DecimalLiteralContext = DecimalLiteralContext; FlinkSqlParser.prototype.decimalLiteral = function() { var localctx = new DecimalLiteralContext(this, this._ctx, this.state); - this.enterRule(localctx, 210, FlinkSqlParser.RULE_decimalLiteral); + this.enterRule(localctx, 220, FlinkSqlParser.RULE_decimalLiteral); try { this.enterOuterAlt(localctx, 1); - this.state = 1289; + this.state = 1339; this.match(FlinkSqlParser.DIG_LITERAL); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -14577,11 +15211,11 @@ FlinkSqlParser.BooleanLiteralContext = BooleanLiteralContext; FlinkSqlParser.prototype.booleanLiteral = function() { var localctx = new BooleanLiteralContext(this, this._ctx, this.state); - this.enterRule(localctx, 212, FlinkSqlParser.RULE_booleanLiteral); + this.enterRule(localctx, 222, FlinkSqlParser.RULE_booleanLiteral); var _la = 0; // Token type try { this.enterOuterAlt(localctx, 1); - this.state = 1291; + this.state = 1341; _la = this._input.LA(1); if(!(_la===FlinkSqlParser.TRUE || _la===FlinkSqlParser.FALSE)) { this._errHandler.recoverInline(this); @@ -14657,11 +15291,11 @@ FlinkSqlParser.SetQuantifierContext = SetQuantifierContext; FlinkSqlParser.prototype.setQuantifier = function() { var localctx = new SetQuantifierContext(this, this._ctx, this.state); - this.enterRule(localctx, 214, FlinkSqlParser.RULE_setQuantifier); + this.enterRule(localctx, 224, FlinkSqlParser.RULE_setQuantifier); var _la = 0; // Token type try { this.enterOuterAlt(localctx, 1); - this.state = 1293; + this.state = 1343; _la = this._input.LA(1); if(!(_la===FlinkSqlParser.ALL || _la===FlinkSqlParser.DISTINCT)) { this._errHandler.recoverInline(this); @@ -14687,15 +15321,15 @@ FlinkSqlParser.prototype.setQuantifier = function() { FlinkSqlParser.prototype.sempred = function(localctx, ruleIndex, predIndex) { switch(ruleIndex) { - case 41: + case 44: return this.queryStatement_sempred(localctx, predIndex); - case 47: + case 50: return this.tableExpression_sempred(localctx, predIndex); - case 65: - return this.booleanExpression_sempred(localctx, predIndex); - case 67: - return this.valueExpression_sempred(localctx, predIndex); case 68: + return this.booleanExpression_sempred(localctx, predIndex); + case 70: + return this.valueExpression_sempred(localctx, predIndex); + case 71: return this.primaryExpression_sempred(localctx, predIndex); default: throw "No predicate with index:" + ruleIndex; diff --git a/src/lib/flinksql/FlinkSqlParser.tokens b/src/lib/flinksql/FlinkSqlParser.tokens index ac05a70..2175cb9 100644 --- a/src/lib/flinksql/FlinkSqlParser.tokens +++ b/src/lib/flinksql/FlinkSqlParser.tokens @@ -187,126 +187,134 @@ COMPACT=186 CONCATENATE=187 CHANGE=188 CASCADE=189 -RESTRICT=190 -CLUSTERED=191 -SORTED=192 -PURGE=193 -INPUTFORMAT=194 -OUTPUTFORMAT=195 -DATABASE=196 -DATABASES=197 -DFS=198 -TRUNCATE=199 -ANALYZE=200 -COMPUTE=201 -LIST=202 -STATISTICS=203 -PARTITIONED=204 -EXTERNAL=205 -DEFINED=206 -REVOKE=207 -GRANT=208 -LOCK=209 -UNLOCK=210 -MSCK=211 -REPAIR=212 -RECOVER=213 -EXPORT=214 -IMPORT=215 -LOAD=216 -ROLE=217 -ROLES=218 -COMPACTIONS=219 -PRINCIPALS=220 -TRANSACTIONS=221 -INDEX=222 -INDEXES=223 -LOCKS=224 -OPTION=225 -ANTI=226 -LOCAL=227 -INPATH=228 -WATERMARK=229 -UNNEST=230 -MATCH_RECOGNIZE=231 -MEASURES=232 -ONE=233 -PER=234 -MATCH=235 -SKIP1=236 -NEXT=237 -PAST=238 -PATTERN=239 -WITHIN=240 -DEFINE=241 -WS=242 -SYSTEM=243 -INCLUDING=244 -EXCLUDING=245 -CONSTRAINTS=246 -OVERWRITING=247 -GENERATED=248 -CATALOG=249 -LANGUAGE=250 -CATALOGS=251 -VIEWS=252 -STRING=253 -ARRAY=254 -MAP=255 -CHAR=256 -VARCHAR=257 -BINARY=258 -VARBINARY=259 -BYTES=260 -DECIMAL=261 -TINYINT=262 -SMALLINT=263 -INT=264 -BIGINT=265 -FLOAT=266 -DOUBLE=267 -DATE=268 -TIME=269 -TIMESTAMP=270 -MULTISET=271 -BOOLEAN=272 -RAW=273 -ROW=274 -NULL=275 -EQUAL_SYMBOL=276 -GREATER_SYMBOL=277 -LESS_SYMBOL=278 -EXCLAMATION_SYMBOL=279 -BIT_NOT_OP=280 -BIT_OR_OP=281 -BIT_AND_OP=282 -BIT_XOR_OP=283 -DOT=284 -LS_BRACKET=285 -RS_BRACKET=286 -LR_BRACKET=287 -RR_BRACKET=288 -COMMA=289 -SEMICOLON=290 -AT_SIGN=291 -SINGLE_QUOTE_SYMB=292 -DOUBLE_QUOTE_SYMB=293 -REVERSE_QUOTE_SYMB=294 -COLON_SYMB=295 -ASTERISK_SIGN=296 -UNDERLINE_SIGN=297 -HYPNEN_SIGN=298 -ADD_SIGN=299 -PENCENT_SIGN=300 -DOUBLE_VERTICAL_SIGN=301 -DOUBLE_HYPNEN_SIGN=302 -SLASH_SIGN=303 -DOT_ID=304 -STRING_LITERAL=305 -DIG_LITERAL=306 -REAL_LITERAL=307 -BIT_STRING=308 -ID=309 +CONSTRAINT=190 +RESTRICT=191 +CLUSTERED=192 +SORTED=193 +PURGE=194 +INPUTFORMAT=195 +OUTPUTFORMAT=196 +DATABASE=197 +DATABASES=198 +DFS=199 +TRUNCATE=200 +ANALYZE=201 +COMPUTE=202 +LIST=203 +STATISTICS=204 +PARTITIONED=205 +EXTERNAL=206 +DEFINED=207 +REVOKE=208 +GRANT=209 +LOCK=210 +UNLOCK=211 +MSCK=212 +REPAIR=213 +RECOVER=214 +EXPORT=215 +IMPORT=216 +LOAD=217 +ROLE=218 +ROLES=219 +COMPACTIONS=220 +PRINCIPALS=221 +TRANSACTIONS=222 +INDEX=223 +INDEXES=224 +LOCKS=225 +OPTION=226 +ANTI=227 +LOCAL=228 +INPATH=229 +WATERMARK=230 +UNNEST=231 +MATCH_RECOGNIZE=232 +MEASURES=233 +ONE=234 +PER=235 +MATCH=236 +SKIP1=237 +NEXT=238 +PAST=239 +PATTERN=240 +WITHIN=241 +DEFINE=242 +WS=243 +SYSTEM=244 +INCLUDING=245 +EXCLUDING=246 +CONSTRAINTS=247 +OVERWRITING=248 +GENERATED=249 +CATALOG=250 +LANGUAGE=251 +CATALOGS=252 +VIEWS=253 +PRIMARY=254 +KEY=255 +PERIOD=256 +SYSTEM_TIME=257 +STRING=258 +ARRAY=259 +MAP=260 +CHAR=261 +VARCHAR=262 +BINARY=263 +VARBINARY=264 +BYTES=265 +DECIMAL=266 +TINYINT=267 +SMALLINT=268 +INT=269 +BIGINT=270 +FLOAT=271 +DOUBLE=272 +DATE=273 +TIME=274 +TIMESTAMP=275 +MULTISET=276 +BOOLEAN=277 +RAW=278 +ROW=279 +NULL=280 +DATETIME=281 +EQUAL_SYMBOL=282 +GREATER_SYMBOL=283 +LESS_SYMBOL=284 +EXCLAMATION_SYMBOL=285 +BIT_NOT_OP=286 +BIT_OR_OP=287 +BIT_AND_OP=288 +BIT_XOR_OP=289 +DOT=290 +LS_BRACKET=291 +RS_BRACKET=292 +LR_BRACKET=293 +RR_BRACKET=294 +COMMA=295 +SEMICOLON=296 +AT_SIGN=297 +SINGLE_QUOTE_SYMB=298 +DOUBLE_QUOTE_SYMB=299 +REVERSE_QUOTE_SYMB=300 +COLON_SYMB=301 +ASTERISK_SIGN=302 +UNDERLINE_SIGN=303 +HYPNEN_SIGN=304 +ADD_SIGN=305 +PENCENT_SIGN=306 +DOUBLE_VERTICAL_SIGN=307 +DOUBLE_HYPNEN_SIGN=308 +SLASH_SIGN=309 +DOT_ID=310 +PLUS_DOT_ID=311 +STRING_LITERAL=312 +DIG_LITERAL=313 +REAL_LITERAL=314 +BIT_STRING=315 +ID_LITERAL=316 +PLUS_ID_LITERAL=317 'SELECT'=4 'FROM'=5 'ADD'=6 @@ -493,117 +501,123 @@ ID=309 'CONCATENATE'=187 'CHANGE'=188 'CASCADE'=189 -'RESTRICT'=190 -'CLUSTERED'=191 -'SORTED'=192 -'PURGE'=193 -'INPUTFORMAT'=194 -'OUTPUTFORMAT'=195 -'DATABASE'=196 -'DATABASES'=197 -'DFS'=198 -'TRUNCATE'=199 -'ANALYZE'=200 -'COMPUTE'=201 -'LIST'=202 -'STATISTICS'=203 -'PARTITIONED'=204 -'EXTERNAL'=205 -'DEFINED'=206 -'REVOKE'=207 -'GRANT'=208 -'LOCK'=209 -'UNLOCK'=210 -'MSCK'=211 -'REPAIR'=212 -'RECOVER'=213 -'EXPORT'=214 -'IMPORT'=215 -'LOAD'=216 -'ROLE'=217 -'ROLES'=218 -'COMPACTIONS'=219 -'PRINCIPALS'=220 -'TRANSACTIONS'=221 -'INDEX'=222 -'INDEXES'=223 -'LOCKS'=224 -'OPTION'=225 -'ANTI'=226 -'LOCAL'=227 -'INPATH'=228 -'WATERMARK'=229 -'UNNEST'=230 -'MATCH_RECOGNIZE'=231 -'MEASURES'=232 -'ONE'=233 -'PER'=234 -'MATCH'=235 -'SKIP1'=236 -'NEXT'=237 -'PAST'=238 -'PATTERN'=239 -'WITHIN'=240 -'DEFINE'=241 -'WS'=242 -'SYSTEM'=243 -'INCLUDING'=244 -'EXCLUDING'=245 -'CONSTRAINTS'=246 -'OVERWRITING'=247 -'GENERATED'=248 -'CATALOG'=249 -'LANGUAGE'=250 -'CATALOGS'=251 -'VIEWS'=252 -'STRING'=253 -'ARRAY'=254 -'MAP'=255 -'CHAR'=256 -'VARCHAR'=257 -'BINARY'=258 -'VARBINARY'=259 -'BYTES'=260 -'DECIMAL'=261 -'TINYINT'=262 -'SMALLINT'=263 -'INT'=264 -'BIGINT'=265 -'FLOAT'=266 -'DOUBLE'=267 -'DATE'=268 -'TIME'=269 -'TIMESTAMP'=270 -'MULTISET'=271 -'BOOLEAN'=272 -'RAW'=273 -'ROW'=274 -'NULL'=275 -'='=276 -'>'=277 -'<'=278 -'!'=279 -'~'=280 -'|'=281 -'&'=282 -'^'=283 -'.'=284 -'['=285 -']'=286 -'('=287 -')'=288 -','=289 -';'=290 -'@'=291 -'\''=292 -'"'=293 -'`'=294 -':'=295 -'*'=296 -'_'=297 -'-'=298 -'+'=299 -'%'=300 -'||'=301 -'--'=302 -'/'=303 +'CONSTRAINT'=190 +'RESTRICT'=191 +'CLUSTERED'=192 +'SORTED'=193 +'PURGE'=194 +'INPUTFORMAT'=195 +'OUTPUTFORMAT'=196 +'DATABASE'=197 +'DATABASES'=198 +'DFS'=199 +'TRUNCATE'=200 +'ANALYZE'=201 +'COMPUTE'=202 +'LIST'=203 +'STATISTICS'=204 +'PARTITIONED'=205 +'EXTERNAL'=206 +'DEFINED'=207 +'REVOKE'=208 +'GRANT'=209 +'LOCK'=210 +'UNLOCK'=211 +'MSCK'=212 +'REPAIR'=213 +'RECOVER'=214 +'EXPORT'=215 +'IMPORT'=216 +'LOAD'=217 +'ROLE'=218 +'ROLES'=219 +'COMPACTIONS'=220 +'PRINCIPALS'=221 +'TRANSACTIONS'=222 +'INDEX'=223 +'INDEXES'=224 +'LOCKS'=225 +'OPTION'=226 +'ANTI'=227 +'LOCAL'=228 +'INPATH'=229 +'WATERMARK'=230 +'UNNEST'=231 +'MATCH_RECOGNIZE'=232 +'MEASURES'=233 +'ONE'=234 +'PER'=235 +'MATCH'=236 +'SKIP1'=237 +'NEXT'=238 +'PAST'=239 +'PATTERN'=240 +'WITHIN'=241 +'DEFINE'=242 +'WS'=243 +'SYSTEM'=244 +'INCLUDING'=245 +'EXCLUDING'=246 +'CONSTRAINTS'=247 +'OVERWRITING'=248 +'GENERATED'=249 +'CATALOG'=250 +'LANGUAGE'=251 +'CATALOGS'=252 +'VIEWS'=253 +'PRIMARY'=254 +'KEY'=255 +'PERIOD'=256 +'SYSTEM_TIME'=257 +'STRING'=258 +'ARRAY'=259 +'MAP'=260 +'CHAR'=261 +'VARCHAR'=262 +'BINARY'=263 +'VARBINARY'=264 +'BYTES'=265 +'DECIMAL'=266 +'TINYINT'=267 +'SMALLINT'=268 +'INT'=269 +'BIGINT'=270 +'FLOAT'=271 +'DOUBLE'=272 +'DATE'=273 +'TIME'=274 +'TIMESTAMP'=275 +'MULTISET'=276 +'BOOLEAN'=277 +'RAW'=278 +'ROW'=279 +'NULL'=280 +'DATETIME'=281 +'='=282 +'>'=283 +'<'=284 +'!'=285 +'~'=286 +'|'=287 +'&'=288 +'^'=289 +'.'=290 +'['=291 +']'=292 +'('=293 +')'=294 +','=295 +';'=296 +'@'=297 +'\''=298 +'"'=299 +'`'=300 +':'=301 +'*'=302 +'_'=303 +'-'=304 +'+'=305 +'%'=306 +'||'=307 +'--'=308 +'/'=309 diff --git a/src/lib/flinksql/FlinkSqlParserListener.js b/src/lib/flinksql/FlinkSqlParserListener.js index 6a04116..9fde3ae 100644 --- a/src/lib/flinksql/FlinkSqlParserListener.js +++ b/src/lib/flinksql/FlinkSqlParserListener.js @@ -137,6 +137,15 @@ FlinkSqlParserListener.prototype.exitColumnName = function(ctx) { }; +// Enter a parse tree produced by FlinkSqlParser#columnNameList. +FlinkSqlParserListener.prototype.enterColumnNameList = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParser#columnNameList. +FlinkSqlParserListener.prototype.exitColumnNameList = function(ctx) { +}; + + // Enter a parse tree produced by FlinkSqlParser#columnType. FlinkSqlParserListener.prototype.enterColumnType = function(ctx) { }; @@ -173,6 +182,24 @@ FlinkSqlParserListener.prototype.exitWatermarkDefinition = function(ctx) { }; +// Enter a parse tree produced by FlinkSqlParser#tableConstraint. +FlinkSqlParserListener.prototype.enterTableConstraint = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParser#tableConstraint. +FlinkSqlParserListener.prototype.exitTableConstraint = function(ctx) { +}; + + +// Enter a parse tree produced by FlinkSqlParser#selfDefinitionClause. +FlinkSqlParserListener.prototype.enterSelfDefinitionClause = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParser#selfDefinitionClause. +FlinkSqlParserListener.prototype.exitSelfDefinitionClause = function(ctx) { +}; + + // Enter a parse tree produced by FlinkSqlParser#partitionDefinition. FlinkSqlParserListener.prototype.enterPartitionDefinition = function(ctx) { }; @@ -749,6 +776,15 @@ FlinkSqlParserListener.prototype.exitSubqueryExpression = function(ctx) { }; +// Enter a parse tree produced by FlinkSqlParser#cast. +FlinkSqlParserListener.prototype.enterCast = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParser#cast. +FlinkSqlParserListener.prototype.exitCast = function(ctx) { +}; + + // Enter a parse tree produced by FlinkSqlParser#constantDefault. FlinkSqlParserListener.prototype.enterConstantDefault = function(ctx) { }; @@ -884,6 +920,15 @@ FlinkSqlParserListener.prototype.exitIntervalValue = function(ctx) { }; +// Enter a parse tree produced by FlinkSqlParser#columnAlias. +FlinkSqlParserListener.prototype.enterColumnAlias = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParser#columnAlias. +FlinkSqlParserListener.prototype.exitColumnAlias = function(ctx) { +}; + + // Enter a parse tree produced by FlinkSqlParser#tableAlias. FlinkSqlParserListener.prototype.enterTableAlias = function(ctx) { }; @@ -1010,6 +1055,15 @@ FlinkSqlParserListener.prototype.exitUid = function(ctx) { }; +// Enter a parse tree produced by FlinkSqlParser#plusUid. +FlinkSqlParserListener.prototype.enterPlusUid = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParser#plusUid. +FlinkSqlParserListener.prototype.exitPlusUid = function(ctx) { +}; + + // Enter a parse tree produced by FlinkSqlParser#withOption. FlinkSqlParserListener.prototype.enterWithOption = function(ctx) { }; diff --git a/src/lib/flinksql/FlinkSqlParserVisitor.js b/src/lib/flinksql/FlinkSqlParserVisitor.js index b0f3b26..9d245b3 100644 --- a/src/lib/flinksql/FlinkSqlParserVisitor.js +++ b/src/lib/flinksql/FlinkSqlParserVisitor.js @@ -96,6 +96,12 @@ FlinkSqlParserVisitor.prototype.visitColumnName = function(ctx) { }; +// Visit a parse tree produced by FlinkSqlParser#columnNameList. +FlinkSqlParserVisitor.prototype.visitColumnNameList = function(ctx) { + return this.visitChildren(ctx); +}; + + // Visit a parse tree produced by FlinkSqlParser#columnType. FlinkSqlParserVisitor.prototype.visitColumnType = function(ctx) { return this.visitChildren(ctx); @@ -120,6 +126,18 @@ FlinkSqlParserVisitor.prototype.visitWatermarkDefinition = function(ctx) { }; +// Visit a parse tree produced by FlinkSqlParser#tableConstraint. +FlinkSqlParserVisitor.prototype.visitTableConstraint = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by FlinkSqlParser#selfDefinitionClause. +FlinkSqlParserVisitor.prototype.visitSelfDefinitionClause = function(ctx) { + return this.visitChildren(ctx); +}; + + // Visit a parse tree produced by FlinkSqlParser#partitionDefinition. FlinkSqlParserVisitor.prototype.visitPartitionDefinition = function(ctx) { return this.visitChildren(ctx); @@ -504,6 +522,12 @@ FlinkSqlParserVisitor.prototype.visitSubqueryExpression = function(ctx) { }; +// Visit a parse tree produced by FlinkSqlParser#cast. +FlinkSqlParserVisitor.prototype.visitCast = function(ctx) { + return this.visitChildren(ctx); +}; + + // Visit a parse tree produced by FlinkSqlParser#constantDefault. FlinkSqlParserVisitor.prototype.visitConstantDefault = function(ctx) { return this.visitChildren(ctx); @@ -594,6 +618,12 @@ FlinkSqlParserVisitor.prototype.visitIntervalValue = function(ctx) { }; +// Visit a parse tree produced by FlinkSqlParser#columnAlias. +FlinkSqlParserVisitor.prototype.visitColumnAlias = function(ctx) { + return this.visitChildren(ctx); +}; + + // Visit a parse tree produced by FlinkSqlParser#tableAlias. FlinkSqlParserVisitor.prototype.visitTableAlias = function(ctx) { return this.visitChildren(ctx); @@ -678,6 +708,12 @@ FlinkSqlParserVisitor.prototype.visitUid = function(ctx) { }; +// Visit a parse tree produced by FlinkSqlParser#plusUid. +FlinkSqlParserVisitor.prototype.visitPlusUid = function(ctx) { + return this.visitChildren(ctx); +}; + + // Visit a parse tree produced by FlinkSqlParser#withOption. FlinkSqlParserVisitor.prototype.visitWithOption = function(ctx) { return this.visitChildren(ctx);