From a5ea7be6069e239ac20f69ffa1cc9f0c043b8dc3 Mon Sep 17 00:00:00 2001 From: Erindcl Date: Wed, 11 Nov 2020 19:58:14 +0800 Subject: [PATCH] feat: add some query grammar --- src/grammar/flinksql/FlinkSqlLexer.g4 | 16 +- src/grammar/flinksql/FlinkSqlParser.g4 | 127 +- src/lib/flinksql/FlinkSqlLexer.interp | 23 +- src/lib/flinksql/FlinkSqlLexer.js | 3465 +++++----- src/lib/flinksql/FlinkSqlLexer.tokens | 6 + src/lib/flinksql/FlinkSqlParser.interp | 110 +- src/lib/flinksql/FlinkSqlParser.tokens | 53 +- src/lib/flinksql/FlinkSqlParserLexer.interp | 53 +- src/lib/flinksql/FlinkSqlParserLexer.js | 79 +- src/lib/flinksql/FlinkSqlParserLexer.tokens | 36 +- src/lib/flinksql/FlinkSqlParserListener.js | 459 ++ src/lib/flinksql/FlinkSqlParserParser.js | 6363 +++++++++++++++++-- src/lib/flinksql/FlinkSqlParserVisitor.js | 306 + test/parser/flinksql/syntax.test.ts | 6 + 14 files changed, 8903 insertions(+), 2199 deletions(-) diff --git a/src/grammar/flinksql/FlinkSqlLexer.g4 b/src/grammar/flinksql/FlinkSqlLexer.g4 index 8b951a8..7b5e027 100644 --- a/src/grammar/flinksql/FlinkSqlLexer.g4 +++ b/src/grammar/flinksql/FlinkSqlLexer.g4 @@ -333,6 +333,18 @@ DOUBLE_QUOTE_SYMB: '"'; REVERSE_QUOTE_SYMB: '`'; COLON_SYMB: ':'; ASTERISK_SIGN: '*'; +STRING_LITERAL: DQUOTA_STRING | SQUOTA_STRING | BQUOTA_STRING; +DECIMAL_LITERAL: DEC_DIGIT+; +REAL_LITERAL: (DEC_DIGIT+)? '.' DEC_DIGIT+ + | DEC_DIGIT+ '.' EXPONENT_NUM_PART + | (DEC_DIGIT+)? '.' (DEC_DIGIT+ EXPONENT_NUM_PART) + | DEC_DIGIT+ EXPONENT_NUM_PART; +BIT_STRING: BIT_STRING_L; - -fragment ID_LITERAL: [A-Z_0-9a-z]*?[A-Z_a-z]+?[A-Z_0-9a-z]*; \ No newline at end of file +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 DEC_DIGIT: [0-9]; +fragment DQUOTA_STRING: '"' ( '\\'. | '""' | ~('"'| '\\') )* '"'; +fragment SQUOTA_STRING: '\'' ('\\'. | '\'\'' | ~('\'' | '\\'))* '\''; +fragment BIT_STRING_L: 'B' '\'' [01]+ '\''; +fragment BQUOTA_STRING: '`' ( '\\'. | '``' | ~('`'|'\\'))* '`'; \ No newline at end of file diff --git a/src/grammar/flinksql/FlinkSqlParser.g4 b/src/grammar/flinksql/FlinkSqlParser.g4 index 96b8f05..c7eb226 100644 --- a/src/grammar/flinksql/FlinkSqlParser.g4 +++ b/src/grammar/flinksql/FlinkSqlParser.g4 @@ -144,14 +144,14 @@ selectStatement : SELECT (ALL | DISTINCT)? (ASTERISK_SIGN | projectItemDefinition (COMMA projectItemDefinition)*) FROM tableExpression - (WHERE booleanExpression)? + (WHERE expression)? (GROUP BY groupItemDefinition (COMMA groupItemDefinition)*) - (HAVING booleanExpression)? + (HAVING expression)? // (WINDOW windowName AS windowSpec (COMMA windowName AS windowSpec)*)? ; -projectItemDefinition // expression (AS? columnAlias)? | tableAlias . * - : +projectItemDefinition + : expression (AS? uid)? | uid '.' '*' ; tableExpression @@ -160,20 +160,27 @@ tableExpression ; tableReference - : // tablePrimary matchRecognize? (AS? alias (LR_BRACKET columnAlias (COMMA columnAlias)* RR_BRACKET)?)? + : tablePrimary matchRecognize? (AS? uid (LR_BRACKET uid (COMMA uid)* RR_BRACKET)?)? ; -// tablePrimary -// : TABLE? uid dynamicTableOptions? -// | LATERAL TABLE LR_BRACKET uid LR_BRACKET expression (COMMA expression)* RR_BRACKET RR_BRACKET -// | UNNEST LR_BRACKET expression RR_BRACKET -// ; - - -joinCondition // ON booleanExpression | USING LR_BRACKET column (COMMA column)* RR_BRACKET +matchRecognize : ; +tablePrimary + : TABLE? uid dynamicTableOptions? + | LATERAL TABLE LR_BRACKET uid LR_BRACKET expression (COMMA expression)* RR_BRACKET RR_BRACKET + | UNNEST LR_BRACKET expression RR_BRACKET + ; + +dynamicTableOptions + : + ; + +joinCondition + : ON booleanExpression | USING LR_BRACKET uid (COMMA uid)* RR_BRACKET + ; + booleanExpression : ; @@ -208,15 +215,15 @@ selectWithoutFromDefinition ; projectItem - : // expression (AS? columnAlias)? | tableAlias . * + : expression (AS? uid)? | uid '.' '*' ; queryOrderByDefinition : ORDER BY orderItemDefition (COMMA orderItemDefition)* ; -orderItemDefition // expression (ASC | DESC)? - : +orderItemDefition + : expression (ASC | DESC) ; queryLimitDefinition @@ -235,7 +242,6 @@ queryFetchDefinition // FETCH (FIRST | NEXT) countDefinition? (ROW | ROWS) ONLY : ; - // Insert statements insertStatement @@ -256,13 +262,16 @@ valuesDefinition : VALUES valuesRowDefinition (COMMA valuesRowDefinition)* ; -// TODO 匹配所有的值 任意value 即:(val1 [, val2, ...]) valuesRowDefinition : LR_BRACKET - .*? + allValueDifinition (COMMA allValueDifinition)* RR_BRACKET ; +allValueDifinition + : stringLiteral | booleanLiteral | DEC_DIGIT | NULL + ; + // base common uidList @@ -289,6 +298,82 @@ keyValueDefinition : DOUBLE_QUOTE_ID EQUAL_SYMBOL DOUBLE_QUOTE_ID ; +expressions + : expression (',' expression)* + ; + +// Expressions, predicates + +// Simplified approach for expression expression - : - ; \ No newline at end of file + : notOperator=(NOT | '!') expression #notExpression + | expression logicalOperator expression #logicalExpression + | predicate IS NOT? testValue=(TRUE | FALSE) #isExpression + | predicate #predicateExpression + ; + +predicate + : predicate NOT? IN '(' (selectStatement | expressions) ')' #inPredicate + | left=predicate comparisonOperator right=predicate #binaryComparasionPredicate + | predicate comparisonOperator + quantifier=(ALL | ANY) '(' selectStatement ')' #subqueryComparasionPredicate + | predicate NOT? BETWEEN predicate AND predicate #betweenPredicate + | predicate NOT? LIKE predicate #likePredicate + | expressionAtom #expressionAtomPredicate + ; + +expressionAtom + : constant #constantExpressionAtom + | fullColumnName #fullColumnNameExpressionAtom + | unaryOperator expressionAtom #unaryExpressionAtom + | BINARY expressionAtom #binaryExpressionAtom + | '(' expression (',' expression)* ')' #nestedExpressionAtom + | ROW '(' expression (',' expression)+ ')' #nestedRowExpressionAtom + | EXISTS '(' selectStatement ')' #existsExpessionAtom + | '(' selectStatement ')' #subqueryExpessionAtom + | left=expressionAtom bitOperator right=expressionAtom #bitExpressionAtom + | left=expressionAtom mathOperator right=expressionAtom #mathExpressionAtom + ; + +logicalOperator + : AND | '&' '&' | OR | '|' '|' + ; + +comparisonOperator + : '=' | '>' | '<' | '<' '=' | '>' '=' + | '<' '>' | '!' '=' | '<' '=' '>' + ; +bitOperator + : '<' '<' | '>' '>' | '&' | '^' | '|' + ; + +mathOperator + : '*' | '/' | '%' | DIV | '+' | '-' | '--' + ; + +unaryOperator + : '!' | '~' | '+' | '-' | NOT + ; + +fullColumnName + : uid + ; + +constant + : stringLiteral | decimalLiteral + | '-' decimalLiteral + | booleanLiteral + | REAL_LITERAL | BIT_STRING + | NOT? NULL + ; + +stringLiteral + : STRING_LITERAL + ; + +decimalLiteral + : DECIMAL_LITERAL | ZERO_DECIMAL | ONE_DECIMAL | TWO_DECIMAL + ; + +booleanLiteral + : TRUE | FALSE; diff --git a/src/lib/flinksql/FlinkSqlLexer.interp b/src/lib/flinksql/FlinkSqlLexer.interp index 7cad99d..73b85f6 100644 --- a/src/lib/flinksql/FlinkSqlLexer.interp +++ b/src/lib/flinksql/FlinkSqlLexer.interp @@ -305,6 +305,11 @@ null '"' '`' ':' +'*' +null +null +null +null token symbolic names: null @@ -613,6 +618,11 @@ SINGLE_QUOTE_SYMB DOUBLE_QUOTE_SYMB REVERSE_QUOTE_SYMB COLON_SYMB +ASTERISK_SIGN +STRING_LITERAL +DECIMAL_LITERAL +REAL_LITERAL +BIT_STRING rule names: SPACE @@ -920,7 +930,18 @@ SINGLE_QUOTE_SYMB DOUBLE_QUOTE_SYMB REVERSE_QUOTE_SYMB COLON_SYMB +ASTERISK_SIGN +STRING_LITERAL +DECIMAL_LITERAL +REAL_LITERAL +BIT_STRING +EXPONENT_NUM_PART ID_LITERAL +DEC_DIGIT +DQUOTA_STRING +SQUOTA_STRING +BIT_STRING_L +BQUOTA_STRING channel names: DEFAULT_TOKEN_CHANNEL @@ -933,4 +954,4 @@ mode names: DEFAULT_MODE atn: -[3, 24715, 42794, 33075, 47597, 16764, 15335, 30598, 22884, 2, 307, 2816, 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, 3, 2, 6, 2, 617, 10, 2, 13, 2, 14, 2, 618, 3, 2, 3, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 6, 3, 628, 10, 3, 13, 3, 14, 3, 629, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 4, 3, 4, 3, 4, 3, 4, 7, 4, 641, 10, 4, 12, 4, 14, 4, 644, 11, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 5, 3, 5, 3, 5, 3, 5, 5, 5, 655, 10, 5, 3, 5, 7, 5, 658, 10, 5, 12, 5, 14, 5, 661, 11, 5, 3, 5, 5, 5, 664, 10, 5, 3, 5, 3, 5, 5, 5, 668, 10, 5, 3, 5, 3, 5, 3, 5, 3, 5, 5, 5, 674, 10, 5, 3, 5, 3, 5, 5, 5, 678, 10, 5, 5, 5, 680, 10, 5, 3, 5, 3, 5, 3, 6, 3, 6, 3, 6, 3, 6, 3, 6, 3, 6, 3, 6, 3, 7, 3, 7, 3, 7, 3, 7, 3, 7, 3, 8, 3, 8, 3, 8, 3, 8, 3, 9, 3, 9, 3, 9, 3, 10, 3, 10, 3, 10, 3, 10, 3, 11, 3, 11, 3, 11, 3, 11, 3, 12, 3, 12, 3, 12, 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, 14, 3, 14, 3, 14, 3, 15, 3, 15, 3, 15, 3, 16, 3, 16, 3, 16, 3, 16, 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, 19, 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, 21, 3, 21, 3, 21, 3, 21, 3, 21, 3, 21, 3, 21, 3, 22, 3, 22, 3, 22, 3, 22, 3, 22, 3, 22, 3, 23, 3, 23, 3, 23, 3, 24, 3, 24, 3, 24, 3, 25, 3, 25, 3, 25, 3, 25, 3, 26, 3, 26, 3, 26, 3, 27, 3, 27, 3, 27, 3, 27, 3, 28, 3, 28, 3, 28, 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, 30, 3, 30, 3, 30, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 32, 3, 32, 3, 32, 3, 32, 3, 32, 3, 32, 3, 33, 3, 33, 3, 33, 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, 36, 3, 36, 3, 37, 3, 37, 3, 37, 3, 37, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 39, 3, 39, 3, 39, 3, 39, 3, 40, 3, 40, 3, 40, 3, 40, 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, 44, 3, 45, 3, 45, 3, 45, 3, 45, 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, 49, 3, 50, 3, 50, 3, 50, 3, 50, 3, 50, 3, 51, 3, 51, 3, 51, 3, 51, 3, 51, 3, 52, 3, 52, 3, 52, 3, 52, 3, 52, 3, 52, 3, 53, 3, 53, 3, 53, 3, 53, 3, 53, 3, 54, 3, 54, 3, 54, 3, 54, 3, 54, 3, 54, 3, 54, 3, 54, 3, 55, 3, 55, 3, 55, 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, 57, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 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, 65, 3, 65, 3, 66, 3, 66, 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, 68, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 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, 72, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 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, 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, 78, 3, 78, 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, 80, 3, 81, 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, 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, 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, 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, 89, 3, 90, 3, 90, 3, 90, 3, 90, 3, 90, 3, 90, 3, 90, 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, 92, 3, 93, 3, 93, 3, 93, 3, 93, 3, 93, 3, 93, 3, 93, 3, 93, 3, 93, 3, 93, 3, 94, 3, 94, 3, 94, 3, 94, 3, 94, 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, 97, 3, 97, 3, 97, 3, 97, 3, 97, 3, 97, 3, 97, 3, 97, 3, 97, 3, 98, 3, 98, 3, 98, 3, 98, 3, 98, 3, 98, 3, 98, 3, 98, 3, 98, 3, 98, 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, 100, 3, 100, 3, 100, 3, 101, 3, 101, 3, 101, 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, 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, 105, 3, 105, 3, 105, 3, 105, 3, 105, 3, 105, 3, 105, 3, 105, 3, 106, 3, 106, 3, 106, 3, 106, 3, 107, 3, 107, 3, 107, 3, 107, 3, 107, 3, 107, 3, 108, 3, 108, 3, 108, 3, 108, 3, 108, 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, 110, 3, 110, 3, 110, 3, 110, 3, 110, 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, 112, 3, 112, 3, 112, 3, 113, 3, 113, 3, 113, 3, 113, 3, 113, 3, 113, 3, 114, 3, 114, 3, 114, 3, 114, 3, 114, 3, 114, 3, 114, 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, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 118, 3, 118, 3, 118, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 120, 3, 120, 3, 120, 3, 120, 3, 120, 3, 120, 3, 120, 3, 120, 3, 121, 3, 121, 3, 121, 3, 122, 3, 122, 3, 122, 3, 122, 3, 122, 3, 123, 3, 123, 3, 123, 3, 123, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 125, 3, 125, 3, 125, 3, 126, 3, 126, 3, 126, 3, 126, 3, 127, 3, 127, 3, 127, 3, 128, 3, 128, 3, 128, 3, 128, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 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, 131, 3, 131, 3, 131, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 133, 3, 133, 3, 133, 3, 133, 3, 133, 3, 133, 3, 133, 3, 133, 3, 134, 3, 134, 3, 134, 3, 134, 3, 135, 3, 135, 3, 135, 3, 135, 3, 135, 3, 135, 3, 136, 3, 136, 3, 136, 3, 136, 3, 136, 3, 136, 3, 136, 3, 136, 3, 136, 3, 136, 3, 137, 3, 137, 3, 137, 3, 137, 3, 137, 3, 138, 3, 138, 3, 138, 3, 138, 3, 138, 3, 138, 3, 138, 3, 138, 3, 138, 3, 138, 3, 138, 3, 138, 3, 139, 3, 139, 3, 139, 3, 139, 3, 140, 3, 140, 3, 140, 3, 140, 3, 140, 3, 140, 3, 140, 3, 140, 3, 140, 3, 140, 3, 140, 3, 141, 3, 141, 3, 141, 3, 141, 3, 141, 3, 141, 3, 141, 3, 142, 3, 142, 3, 142, 3, 142, 3, 143, 3, 143, 3, 143, 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, 146, 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, 148, 3, 148, 3, 148, 3, 149, 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, 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, 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, 154, 3, 154, 3, 154, 3, 155, 3, 155, 3, 155, 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, 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, 158, 3, 158, 3, 158, 3, 158, 3, 158, 3, 159, 3, 159, 3, 159, 3, 159, 3, 159, 3, 159, 3, 160, 3, 160, 3, 160, 3, 160, 3, 160, 3, 161, 3, 161, 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, 163, 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, 165, 3, 166, 3, 166, 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, 169, 3, 169, 3, 169, 3, 169, 3, 169, 3, 169, 3, 169, 3, 169, 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, 171, 3, 171, 3, 171, 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, 173, 3, 173, 3, 174, 3, 174, 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, 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, 176, 3, 177, 3, 177, 3, 177, 3, 177, 3, 177, 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, 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, 181, 3, 181, 3, 181, 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, 183, 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, 186, 3, 186, 3, 186, 3, 186, 3, 186, 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, 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, 189, 3, 189, 3, 189, 3, 189, 3, 189, 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, 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, 244, 3, 244, 3, 244, 3, 244, 3, 244, 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, 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, 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, 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, 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, 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, 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, 251, 3, 251, 3, 251, 3, 252, 3, 252, 3, 252, 3, 252, 3, 252, 3, 252, 3, 252, 3, 252, 3, 252, 3, 252, 3, 252, 3, 252, 3, 252, 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, 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, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 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, 255, 3, 255, 3, 255, 3, 255, 3, 255, 3, 255, 3, 255, 3, 255, 3, 255, 3, 255, 3, 255, 3, 255, 3, 256, 3, 256, 3, 256, 3, 257, 3, 257, 3, 257, 3, 257, 3, 257, 3, 257, 3, 257, 3, 257, 3, 257, 3, 257, 3, 257, 3, 257, 3, 257, 3, 258, 3, 258, 6, 258, 2580, 10, 258, 13, 258, 14, 258, 2581, 3, 258, 3, 258, 3, 259, 3, 259, 6, 259, 2588, 10, 259, 13, 259, 14, 259, 2589, 3, 259, 3, 259, 3, 260, 3, 260, 3, 260, 3, 261, 3, 261, 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, 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, 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, 269, 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, 270, 3, 270, 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, 273, 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, 275, 3, 275, 3, 275, 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, 278, 3, 278, 3, 278, 3, 278, 3, 278, 3, 279, 3, 279, 3, 279, 3, 279, 3, 279, 3, 280, 3, 280, 3, 280, 3, 280, 3, 280, 3, 280, 3, 280, 3, 280, 3, 280, 3, 280, 3, 281, 3, 281, 3, 281, 3, 281, 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, 283, 3, 283, 3, 283, 3, 283, 3, 284, 3, 284, 3, 284, 3, 284, 3, 285, 3, 285, 3, 285, 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, 7, 307, 2801, 10, 307, 12, 307, 14, 307, 2804, 11, 307, 3, 307, 6, 307, 2807, 10, 307, 13, 307, 14, 307, 2808, 3, 307, 7, 307, 2812, 10, 307, 12, 307, 14, 307, 2815, 11, 307, 6, 629, 642, 2802, 2808, 2, 308, 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, 2, 3, 2, 8, 5, 2, 11, 12, 15, 15, 34, 34, 4, 2, 12, 12, 15, 15, 3, 2, 98, 98, 3, 2, 36, 36, 6, 2, 50, 59, 67, 92, 97, 97, 99, 124, 5, 2, 67, 92, 97, 97, 99, 124, 2, 2829, 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, 3, 616, 3, 2, 2, 2, 5, 622, 3, 2, 2, 2, 7, 636, 3, 2, 2, 2, 9, 679, 3, 2, 2, 2, 11, 683, 3, 2, 2, 2, 13, 690, 3, 2, 2, 2, 15, 695, 3, 2, 2, 2, 17, 699, 3, 2, 2, 2, 19, 702, 3, 2, 2, 2, 21, 706, 3, 2, 2, 2, 23, 710, 3, 2, 2, 2, 25, 719, 3, 2, 2, 2, 27, 725, 3, 2, 2, 2, 29, 731, 3, 2, 2, 2, 31, 734, 3, 2, 2, 2, 33, 743, 3, 2, 2, 2, 35, 748, 3, 2, 2, 2, 37, 753, 3, 2, 2, 2, 39, 760, 3, 2, 2, 2, 41, 766, 3, 2, 2, 2, 43, 773, 3, 2, 2, 2, 45, 779, 3, 2, 2, 2, 47, 782, 3, 2, 2, 2, 49, 785, 3, 2, 2, 2, 51, 789, 3, 2, 2, 2, 53, 792, 3, 2, 2, 2, 55, 796, 3, 2, 2, 2, 57, 799, 3, 2, 2, 2, 59, 806, 3, 2, 2, 2, 61, 814, 3, 2, 2, 2, 63, 819, 3, 2, 2, 2, 65, 825, 3, 2, 2, 2, 67, 828, 3, 2, 2, 2, 69, 833, 3, 2, 2, 2, 71, 839, 3, 2, 2, 2, 73, 845, 3, 2, 2, 2, 75, 849, 3, 2, 2, 2, 77, 854, 3, 2, 2, 2, 79, 858, 3, 2, 2, 2, 81, 867, 3, 2, 2, 2, 83, 872, 3, 2, 2, 2, 85, 877, 3, 2, 2, 2, 87, 882, 3, 2, 2, 2, 89, 887, 3, 2, 2, 2, 91, 891, 3, 2, 2, 2, 93, 896, 3, 2, 2, 2, 95, 902, 3, 2, 2, 2, 97, 908, 3, 2, 2, 2, 99, 914, 3, 2, 2, 2, 101, 919, 3, 2, 2, 2, 103, 924, 3, 2, 2, 2, 105, 930, 3, 2, 2, 2, 107, 935, 3, 2, 2, 2, 109, 943, 3, 2, 2, 2, 111, 946, 3, 2, 2, 2, 113, 952, 3, 2, 2, 2, 115, 960, 3, 2, 2, 2, 117, 967, 3, 2, 2, 2, 119, 972, 3, 2, 2, 2, 121, 982, 3, 2, 2, 2, 123, 988, 3, 2, 2, 2, 125, 993, 3, 2, 2, 2, 127, 1003, 3, 2, 2, 2, 129, 1013, 3, 2, 2, 2, 131, 1023, 3, 2, 2, 2, 133, 1031, 3, 2, 2, 2, 135, 1037, 3, 2, 2, 2, 137, 1043, 3, 2, 2, 2, 139, 1048, 3, 2, 2, 2, 141, 1053, 3, 2, 2, 2, 143, 1060, 3, 2, 2, 2, 145, 1067, 3, 2, 2, 2, 147, 1073, 3, 2, 2, 2, 149, 1083, 3, 2, 2, 2, 151, 1088, 3, 2, 2, 2, 153, 1096, 3, 2, 2, 2, 155, 1103, 3, 2, 2, 2, 157, 1110, 3, 2, 2, 2, 159, 1115, 3, 2, 2, 2, 161, 1124, 3, 2, 2, 2, 163, 1132, 3, 2, 2, 2, 165, 1139, 3, 2, 2, 2, 167, 1147, 3, 2, 2, 2, 169, 1155, 3, 2, 2, 2, 171, 1160, 3, 2, 2, 2, 173, 1165, 3, 2, 2, 2, 175, 1170, 3, 2, 2, 2, 177, 1177, 3, 2, 2, 2, 179, 1185, 3, 2, 2, 2, 181, 1192, 3, 2, 2, 2, 183, 1196, 3, 2, 2, 2, 185, 1207, 3, 2, 2, 2, 187, 1217, 3, 2, 2, 2, 189, 1222, 3, 2, 2, 2, 191, 1228, 3, 2, 2, 2, 193, 1235, 3, 2, 2, 2, 195, 1244, 3, 2, 2, 2, 197, 1254, 3, 2, 2, 2, 199, 1257, 3, 2, 2, 2, 201, 1269, 3, 2, 2, 2, 203, 1278, 3, 2, 2, 2, 205, 1284, 3, 2, 2, 2, 207, 1291, 3, 2, 2, 2, 209, 1298, 3, 2, 2, 2, 211, 1306, 3, 2, 2, 2, 213, 1310, 3, 2, 2, 2, 215, 1316, 3, 2, 2, 2, 217, 1321, 3, 2, 2, 2, 219, 1327, 3, 2, 2, 2, 221, 1339, 3, 2, 2, 2, 223, 1346, 3, 2, 2, 2, 225, 1355, 3, 2, 2, 2, 227, 1361, 3, 2, 2, 2, 229, 1368, 3, 2, 2, 2, 231, 1373, 3, 2, 2, 2, 233, 1381, 3, 2, 2, 2, 235, 1390, 3, 2, 2, 2, 237, 1393, 3, 2, 2, 2, 239, 1402, 3, 2, 2, 2, 241, 1410, 3, 2, 2, 2, 243, 1413, 3, 2, 2, 2, 245, 1418, 3, 2, 2, 2, 247, 1422, 3, 2, 2, 2, 249, 1427, 3, 2, 2, 2, 251, 1430, 3, 2, 2, 2, 253, 1434, 3, 2, 2, 2, 255, 1437, 3, 2, 2, 2, 257, 1441, 3, 2, 2, 2, 259, 1446, 3, 2, 2, 2, 261, 1452, 3, 2, 2, 2, 263, 1461, 3, 2, 2, 2, 265, 1467, 3, 2, 2, 2, 267, 1475, 3, 2, 2, 2, 269, 1479, 3, 2, 2, 2, 271, 1485, 3, 2, 2, 2, 273, 1495, 3, 2, 2, 2, 275, 1500, 3, 2, 2, 2, 277, 1512, 3, 2, 2, 2, 279, 1516, 3, 2, 2, 2, 281, 1527, 3, 2, 2, 2, 283, 1534, 3, 2, 2, 2, 285, 1538, 3, 2, 2, 2, 287, 1541, 3, 2, 2, 2, 289, 1546, 3, 2, 2, 2, 291, 1554, 3, 2, 2, 2, 293, 1565, 3, 2, 2, 2, 295, 1575, 3, 2, 2, 2, 297, 1585, 3, 2, 2, 2, 299, 1592, 3, 2, 2, 2, 301, 1598, 3, 2, 2, 2, 303, 1604, 3, 2, 2, 2, 305, 1620, 3, 2, 2, 2, 307, 1633, 3, 2, 2, 2, 309, 1646, 3, 2, 2, 2, 311, 1656, 3, 2, 2, 2, 313, 1663, 3, 2, 2, 2, 315, 1674, 3, 2, 2, 2, 317, 1685, 3, 2, 2, 2, 319, 1691, 3, 2, 2, 2, 321, 1696, 3, 2, 2, 2, 323, 1704, 3, 2, 2, 2, 325, 1710, 3, 2, 2, 2, 327, 1720, 3, 2, 2, 2, 329, 1729, 3, 2, 2, 2, 331, 1738, 3, 2, 2, 2, 333, 1746, 3, 2, 2, 2, 335, 1752, 3, 2, 2, 2, 337, 1758, 3, 2, 2, 2, 339, 1766, 3, 2, 2, 2, 341, 1771, 3, 2, 2, 2, 343, 1781, 3, 2, 2, 2, 345, 1788, 3, 2, 2, 2, 347, 1798, 3, 2, 2, 2, 349, 1806, 3, 2, 2, 2, 351, 1812, 3, 2, 2, 2, 353, 1826, 3, 2, 2, 2, 355, 1839, 3, 2, 2, 2, 357, 1847, 3, 2, 2, 2, 359, 1854, 3, 2, 2, 2, 361, 1861, 3, 2, 2, 2, 363, 1873, 3, 2, 2, 2, 365, 1882, 3, 2, 2, 2, 367, 1891, 3, 2, 2, 2, 369, 1899, 3, 2, 2, 2, 371, 1909, 3, 2, 2, 2, 373, 1920, 3, 2, 2, 2, 375, 1926, 3, 2, 2, 2, 377, 1934, 3, 2, 2, 2, 379, 1946, 3, 2, 2, 2, 381, 1953, 3, 2, 2, 2, 383, 1961, 3, 2, 2, 2, 385, 1970, 3, 2, 2, 2, 387, 1980, 3, 2, 2, 2, 389, 1987, 3, 2, 2, 2, 391, 1993, 3, 2, 2, 2, 393, 2005, 3, 2, 2, 2, 395, 2018, 3, 2, 2, 2, 397, 2027, 3, 2, 2, 2, 399, 2037, 3, 2, 2, 2, 401, 2041, 3, 2, 2, 2, 403, 2050, 3, 2, 2, 2, 405, 2058, 3, 2, 2, 2, 407, 2066, 3, 2, 2, 2, 409, 2071, 3, 2, 2, 2, 411, 2082, 3, 2, 2, 2, 413, 2094, 3, 2, 2, 2, 415, 2103, 3, 2, 2, 2, 417, 2111, 3, 2, 2, 2, 419, 2118, 3, 2, 2, 2, 421, 2124, 3, 2, 2, 2, 423, 2129, 3, 2, 2, 2, 425, 2136, 3, 2, 2, 2, 427, 2141, 3, 2, 2, 2, 429, 2148, 3, 2, 2, 2, 431, 2156, 3, 2, 2, 2, 433, 2163, 3, 2, 2, 2, 435, 2170, 3, 2, 2, 2, 437, 2175, 3, 2, 2, 2, 439, 2180, 3, 2, 2, 2, 441, 2186, 3, 2, 2, 2, 443, 2198, 3, 2, 2, 2, 445, 2209, 3, 2, 2, 2, 447, 2222, 3, 2, 2, 2, 449, 2228, 3, 2, 2, 2, 451, 2236, 3, 2, 2, 2, 453, 2242, 3, 2, 2, 2, 455, 2249, 3, 2, 2, 2, 457, 2254, 3, 2, 2, 2, 459, 2260, 3, 2, 2, 2, 461, 2267, 3, 2, 2, 2, 463, 2277, 3, 2, 2, 2, 465, 2284, 3, 2, 2, 2, 467, 2300, 3, 2, 2, 2, 469, 2309, 3, 2, 2, 2, 471, 2313, 3, 2, 2, 2, 473, 2317, 3, 2, 2, 2, 475, 2323, 3, 2, 2, 2, 477, 2329, 3, 2, 2, 2, 479, 2334, 3, 2, 2, 2, 481, 2339, 3, 2, 2, 2, 483, 2347, 3, 2, 2, 2, 485, 2354, 3, 2, 2, 2, 487, 2361, 3, 2, 2, 2, 489, 2376, 3, 2, 2, 2, 491, 2393, 3, 2, 2, 2, 493, 2409, 3, 2, 2, 2, 495, 2423, 3, 2, 2, 2, 497, 2437, 3, 2, 2, 2, 499, 2452, 3, 2, 2, 2, 501, 2471, 3, 2, 2, 2, 503, 2482, 3, 2, 2, 2, 505, 2504, 3, 2, 2, 2, 507, 2519, 3, 2, 2, 2, 509, 2543, 3, 2, 2, 2, 511, 2561, 3, 2, 2, 2, 513, 2564, 3, 2, 2, 2, 515, 2577, 3, 2, 2, 2, 517, 2585, 3, 2, 2, 2, 519, 2593, 3, 2, 2, 2, 521, 2596, 3, 2, 2, 2, 523, 2598, 3, 2, 2, 2, 525, 2605, 3, 2, 2, 2, 527, 2612, 3, 2, 2, 2, 529, 2618, 3, 2, 2, 2, 531, 2622, 3, 2, 2, 2, 533, 2627, 3, 2, 2, 2, 535, 2635, 3, 2, 2, 2, 537, 2642, 3, 2, 2, 2, 539, 2652, 3, 2, 2, 2, 541, 2658, 3, 2, 2, 2, 543, 2666, 3, 2, 2, 2, 545, 2674, 3, 2, 2, 2, 547, 2683, 3, 2, 2, 2, 549, 2687, 3, 2, 2, 2, 551, 2694, 3, 2, 2, 2, 553, 2700, 3, 2, 2, 2, 555, 2707, 3, 2, 2, 2, 557, 2712, 3, 2, 2, 2, 559, 2717, 3, 2, 2, 2, 561, 2727, 3, 2, 2, 2, 563, 2736, 3, 2, 2, 2, 565, 2744, 3, 2, 2, 2, 567, 2748, 3, 2, 2, 2, 569, 2752, 3, 2, 2, 2, 571, 2757, 3, 2, 2, 2, 573, 2759, 3, 2, 2, 2, 575, 2761, 3, 2, 2, 2, 577, 2763, 3, 2, 2, 2, 579, 2765, 3, 2, 2, 2, 581, 2767, 3, 2, 2, 2, 583, 2769, 3, 2, 2, 2, 585, 2771, 3, 2, 2, 2, 587, 2773, 3, 2, 2, 2, 589, 2775, 3, 2, 2, 2, 591, 2777, 3, 2, 2, 2, 593, 2779, 3, 2, 2, 2, 595, 2781, 3, 2, 2, 2, 597, 2783, 3, 2, 2, 2, 599, 2785, 3, 2, 2, 2, 601, 2787, 3, 2, 2, 2, 603, 2789, 3, 2, 2, 2, 605, 2791, 3, 2, 2, 2, 607, 2793, 3, 2, 2, 2, 609, 2795, 3, 2, 2, 2, 611, 2797, 3, 2, 2, 2, 613, 2802, 3, 2, 2, 2, 615, 617, 9, 2, 2, 2, 616, 615, 3, 2, 2, 2, 617, 618, 3, 2, 2, 2, 618, 616, 3, 2, 2, 2, 618, 619, 3, 2, 2, 2, 619, 620, 3, 2, 2, 2, 620, 621, 8, 2, 2, 2, 621, 4, 3, 2, 2, 2, 622, 623, 7, 49, 2, 2, 623, 624, 7, 44, 2, 2, 624, 625, 7, 35, 2, 2, 625, 627, 3, 2, 2, 2, 626, 628, 11, 2, 2, 2, 627, 626, 3, 2, 2, 2, 628, 629, 3, 2, 2, 2, 629, 630, 3, 2, 2, 2, 629, 627, 3, 2, 2, 2, 630, 631, 3, 2, 2, 2, 631, 632, 7, 44, 2, 2, 632, 633, 7, 49, 2, 2, 633, 634, 3, 2, 2, 2, 634, 635, 8, 3, 3, 2, 635, 6, 3, 2, 2, 2, 636, 637, 7, 49, 2, 2, 637, 638, 7, 44, 2, 2, 638, 642, 3, 2, 2, 2, 639, 641, 11, 2, 2, 2, 640, 639, 3, 2, 2, 2, 641, 644, 3, 2, 2, 2, 642, 643, 3, 2, 2, 2, 642, 640, 3, 2, 2, 2, 643, 645, 3, 2, 2, 2, 644, 642, 3, 2, 2, 2, 645, 646, 7, 44, 2, 2, 646, 647, 7, 49, 2, 2, 647, 648, 3, 2, 2, 2, 648, 649, 8, 4, 2, 2, 649, 8, 3, 2, 2, 2, 650, 651, 7, 47, 2, 2, 651, 652, 7, 47, 2, 2, 652, 655, 7, 34, 2, 2, 653, 655, 7, 37, 2, 2, 654, 650, 3, 2, 2, 2, 654, 653, 3, 2, 2, 2, 655, 659, 3, 2, 2, 2, 656, 658, 10, 3, 2, 2, 657, 656, 3, 2, 2, 2, 658, 661, 3, 2, 2, 2, 659, 657, 3, 2, 2, 2, 659, 660, 3, 2, 2, 2, 660, 667, 3, 2, 2, 2, 661, 659, 3, 2, 2, 2, 662, 664, 7, 15, 2, 2, 663, 662, 3, 2, 2, 2, 663, 664, 3, 2, 2, 2, 664, 665, 3, 2, 2, 2, 665, 668, 7, 12, 2, 2, 666, 668, 7, 2, 2, 3, 667, 663, 3, 2, 2, 2, 667, 666, 3, 2, 2, 2, 668, 680, 3, 2, 2, 2, 669, 670, 7, 47, 2, 2, 670, 671, 7, 47, 2, 2, 671, 677, 3, 2, 2, 2, 672, 674, 7, 15, 2, 2, 673, 672, 3, 2, 2, 2, 673, 674, 3, 2, 2, 2, 674, 675, 3, 2, 2, 2, 675, 678, 7, 12, 2, 2, 676, 678, 7, 2, 2, 3, 677, 673, 3, 2, 2, 2, 677, 676, 3, 2, 2, 2, 678, 680, 3, 2, 2, 2, 679, 654, 3, 2, 2, 2, 679, 669, 3, 2, 2, 2, 680, 681, 3, 2, 2, 2, 681, 682, 8, 5, 2, 2, 682, 10, 3, 2, 2, 2, 683, 684, 7, 85, 2, 2, 684, 685, 7, 71, 2, 2, 685, 686, 7, 78, 2, 2, 686, 687, 7, 71, 2, 2, 687, 688, 7, 69, 2, 2, 688, 689, 7, 86, 2, 2, 689, 12, 3, 2, 2, 2, 690, 691, 7, 72, 2, 2, 691, 692, 7, 84, 2, 2, 692, 693, 7, 81, 2, 2, 693, 694, 7, 79, 2, 2, 694, 14, 3, 2, 2, 2, 695, 696, 7, 67, 2, 2, 696, 697, 7, 70, 2, 2, 697, 698, 7, 70, 2, 2, 698, 16, 3, 2, 2, 2, 699, 700, 7, 67, 2, 2, 700, 701, 7, 85, 2, 2, 701, 18, 3, 2, 2, 2, 702, 703, 7, 67, 2, 2, 703, 704, 7, 78, 2, 2, 704, 705, 7, 78, 2, 2, 705, 20, 3, 2, 2, 2, 706, 707, 7, 67, 2, 2, 707, 708, 7, 80, 2, 2, 708, 709, 7, 91, 2, 2, 709, 22, 3, 2, 2, 2, 710, 711, 7, 70, 2, 2, 711, 712, 7, 75, 2, 2, 712, 713, 7, 85, 2, 2, 713, 714, 7, 86, 2, 2, 714, 715, 7, 75, 2, 2, 715, 716, 7, 80, 2, 2, 716, 717, 7, 69, 2, 2, 717, 718, 7, 86, 2, 2, 718, 24, 3, 2, 2, 2, 719, 720, 7, 89, 2, 2, 720, 721, 7, 74, 2, 2, 721, 722, 7, 71, 2, 2, 722, 723, 7, 84, 2, 2, 723, 724, 7, 71, 2, 2, 724, 26, 3, 2, 2, 2, 725, 726, 7, 73, 2, 2, 726, 727, 7, 84, 2, 2, 727, 728, 7, 81, 2, 2, 728, 729, 7, 87, 2, 2, 729, 730, 7, 82, 2, 2, 730, 28, 3, 2, 2, 2, 731, 732, 7, 68, 2, 2, 732, 733, 7, 91, 2, 2, 733, 30, 3, 2, 2, 2, 734, 735, 7, 73, 2, 2, 735, 736, 7, 84, 2, 2, 736, 737, 7, 81, 2, 2, 737, 738, 7, 87, 2, 2, 738, 739, 7, 82, 2, 2, 739, 740, 7, 75, 2, 2, 740, 741, 7, 80, 2, 2, 741, 742, 7, 73, 2, 2, 742, 32, 3, 2, 2, 2, 743, 744, 7, 85, 2, 2, 744, 745, 7, 71, 2, 2, 745, 746, 7, 86, 2, 2, 746, 747, 7, 85, 2, 2, 747, 34, 3, 2, 2, 2, 748, 749, 7, 69, 2, 2, 749, 750, 7, 87, 2, 2, 750, 751, 7, 68, 2, 2, 751, 752, 7, 71, 2, 2, 752, 36, 3, 2, 2, 2, 753, 754, 7, 84, 2, 2, 754, 755, 7, 81, 2, 2, 755, 756, 7, 78, 2, 2, 756, 757, 7, 78, 2, 2, 757, 758, 7, 87, 2, 2, 758, 759, 7, 82, 2, 2, 759, 38, 3, 2, 2, 2, 760, 761, 7, 81, 2, 2, 761, 762, 7, 84, 2, 2, 762, 763, 7, 70, 2, 2, 763, 764, 7, 71, 2, 2, 764, 765, 7, 84, 2, 2, 765, 40, 3, 2, 2, 2, 766, 767, 7, 74, 2, 2, 767, 768, 7, 67, 2, 2, 768, 769, 7, 88, 2, 2, 769, 770, 7, 75, 2, 2, 770, 771, 7, 80, 2, 2, 771, 772, 7, 73, 2, 2, 772, 42, 3, 2, 2, 2, 773, 774, 7, 78, 2, 2, 774, 775, 7, 75, 2, 2, 775, 776, 7, 79, 2, 2, 776, 777, 7, 75, 2, 2, 777, 778, 7, 86, 2, 2, 778, 44, 3, 2, 2, 2, 779, 780, 7, 67, 2, 2, 780, 781, 7, 86, 2, 2, 781, 46, 3, 2, 2, 2, 782, 783, 7, 81, 2, 2, 783, 784, 7, 84, 2, 2, 784, 48, 3, 2, 2, 2, 785, 786, 7, 67, 2, 2, 786, 787, 7, 80, 2, 2, 787, 788, 7, 70, 2, 2, 788, 50, 3, 2, 2, 2, 789, 790, 7, 75, 2, 2, 790, 791, 7, 80, 2, 2, 791, 52, 3, 2, 2, 2, 792, 793, 7, 80, 2, 2, 793, 794, 7, 81, 2, 2, 794, 795, 7, 86, 2, 2, 795, 54, 3, 2, 2, 2, 796, 797, 7, 80, 2, 2, 797, 798, 7, 81, 2, 2, 798, 56, 3, 2, 2, 2, 799, 800, 7, 71, 2, 2, 800, 801, 7, 90, 2, 2, 801, 802, 7, 75, 2, 2, 802, 803, 7, 85, 2, 2, 803, 804, 7, 86, 2, 2, 804, 805, 7, 85, 2, 2, 805, 58, 3, 2, 2, 2, 806, 807, 7, 68, 2, 2, 807, 808, 7, 71, 2, 2, 808, 809, 7, 86, 2, 2, 809, 810, 7, 89, 2, 2, 810, 811, 7, 71, 2, 2, 811, 812, 7, 71, 2, 2, 812, 813, 7, 80, 2, 2, 813, 60, 3, 2, 2, 2, 814, 815, 7, 78, 2, 2, 815, 816, 7, 75, 2, 2, 816, 817, 7, 77, 2, 2, 817, 818, 7, 71, 2, 2, 818, 62, 3, 2, 2, 2, 819, 820, 7, 84, 2, 2, 820, 821, 7, 78, 2, 2, 821, 822, 7, 75, 2, 2, 822, 823, 7, 77, 2, 2, 823, 824, 7, 71, 2, 2, 824, 64, 3, 2, 2, 2, 825, 826, 7, 75, 2, 2, 826, 827, 7, 85, 2, 2, 827, 66, 3, 2, 2, 2, 828, 829, 7, 86, 2, 2, 829, 830, 7, 84, 2, 2, 830, 831, 7, 87, 2, 2, 831, 832, 7, 71, 2, 2, 832, 68, 3, 2, 2, 2, 833, 834, 7, 72, 2, 2, 834, 835, 7, 67, 2, 2, 835, 836, 7, 78, 2, 2, 836, 837, 7, 85, 2, 2, 837, 838, 7, 71, 2, 2, 838, 70, 3, 2, 2, 2, 839, 840, 7, 80, 2, 2, 840, 841, 7, 87, 2, 2, 841, 842, 7, 78, 2, 2, 842, 843, 7, 78, 2, 2, 843, 844, 7, 85, 2, 2, 844, 72, 3, 2, 2, 2, 845, 846, 7, 67, 2, 2, 846, 847, 7, 85, 2, 2, 847, 848, 7, 69, 2, 2, 848, 74, 3, 2, 2, 2, 849, 850, 7, 70, 2, 2, 850, 851, 7, 71, 2, 2, 851, 852, 7, 85, 2, 2, 852, 853, 7, 69, 2, 2, 853, 76, 3, 2, 2, 2, 854, 855, 7, 72, 2, 2, 855, 856, 7, 81, 2, 2, 856, 857, 7, 84, 2, 2, 857, 78, 3, 2, 2, 2, 858, 859, 7, 75, 2, 2, 859, 860, 7, 80, 2, 2, 860, 861, 7, 86, 2, 2, 861, 862, 7, 71, 2, 2, 862, 863, 7, 84, 2, 2, 863, 864, 7, 88, 2, 2, 864, 865, 7, 67, 2, 2, 865, 866, 7, 78, 2, 2, 866, 80, 3, 2, 2, 2, 867, 868, 7, 69, 2, 2, 868, 869, 7, 67, 2, 2, 869, 870, 7, 85, 2, 2, 870, 871, 7, 71, 2, 2, 871, 82, 3, 2, 2, 2, 872, 873, 7, 89, 2, 2, 873, 874, 7, 74, 2, 2, 874, 875, 7, 71, 2, 2, 875, 876, 7, 80, 2, 2, 876, 84, 3, 2, 2, 2, 877, 878, 7, 86, 2, 2, 878, 879, 7, 74, 2, 2, 879, 880, 7, 71, 2, 2, 880, 881, 7, 80, 2, 2, 881, 86, 3, 2, 2, 2, 882, 883, 7, 71, 2, 2, 883, 884, 7, 78, 2, 2, 884, 885, 7, 85, 2, 2, 885, 886, 7, 71, 2, 2, 886, 88, 3, 2, 2, 2, 887, 888, 7, 71, 2, 2, 888, 889, 7, 80, 2, 2, 889, 890, 7, 70, 2, 2, 890, 90, 3, 2, 2, 2, 891, 892, 7, 76, 2, 2, 892, 893, 7, 81, 2, 2, 893, 894, 7, 75, 2, 2, 894, 895, 7, 80, 2, 2, 895, 92, 3, 2, 2, 2, 896, 897, 7, 69, 2, 2, 897, 898, 7, 84, 2, 2, 898, 899, 7, 81, 2, 2, 899, 900, 7, 85, 2, 2, 900, 901, 7, 85, 2, 2, 901, 94, 3, 2, 2, 2, 902, 903, 7, 81, 2, 2, 903, 904, 7, 87, 2, 2, 904, 905, 7, 86, 2, 2, 905, 906, 7, 71, 2, 2, 906, 907, 7, 84, 2, 2, 907, 96, 3, 2, 2, 2, 908, 909, 7, 75, 2, 2, 909, 910, 7, 80, 2, 2, 910, 911, 7, 80, 2, 2, 911, 912, 7, 71, 2, 2, 912, 913, 7, 84, 2, 2, 913, 98, 3, 2, 2, 2, 914, 915, 7, 78, 2, 2, 915, 916, 7, 71, 2, 2, 916, 917, 7, 72, 2, 2, 917, 918, 7, 86, 2, 2, 918, 100, 3, 2, 2, 2, 919, 920, 7, 85, 2, 2, 920, 921, 7, 71, 2, 2, 921, 922, 7, 79, 2, 2, 922, 923, 7, 75, 2, 2, 923, 102, 3, 2, 2, 2, 924, 925, 7, 84, 2, 2, 925, 926, 7, 75, 2, 2, 926, 927, 7, 73, 2, 2, 927, 928, 7, 74, 2, 2, 928, 929, 7, 86, 2, 2, 929, 104, 3, 2, 2, 2, 930, 931, 7, 72, 2, 2, 931, 932, 7, 87, 2, 2, 932, 933, 7, 78, 2, 2, 933, 934, 7, 78, 2, 2, 934, 106, 3, 2, 2, 2, 935, 936, 7, 80, 2, 2, 936, 937, 7, 67, 2, 2, 937, 938, 7, 86, 2, 2, 938, 939, 7, 87, 2, 2, 939, 940, 7, 84, 2, 2, 940, 941, 7, 67, 2, 2, 941, 942, 7, 78, 2, 2, 942, 108, 3, 2, 2, 2, 943, 944, 7, 81, 2, 2, 944, 945, 7, 80, 2, 2, 945, 110, 3, 2, 2, 2, 946, 947, 7, 82, 2, 2, 947, 948, 7, 75, 2, 2, 948, 949, 7, 88, 2, 2, 949, 950, 7, 81, 2, 2, 950, 951, 7, 86, 2, 2, 951, 112, 3, 2, 2, 2, 952, 953, 7, 78, 2, 2, 953, 954, 7, 67, 2, 2, 954, 955, 7, 86, 2, 2, 955, 956, 7, 71, 2, 2, 956, 957, 7, 84, 2, 2, 957, 958, 7, 67, 2, 2, 958, 959, 7, 78, 2, 2, 959, 114, 3, 2, 2, 2, 960, 961, 7, 89, 2, 2, 961, 962, 7, 75, 2, 2, 962, 963, 7, 80, 2, 2, 963, 964, 7, 70, 2, 2, 964, 965, 7, 81, 2, 2, 965, 966, 7, 89, 2, 2, 966, 116, 3, 2, 2, 2, 967, 968, 7, 81, 2, 2, 968, 969, 7, 88, 2, 2, 969, 970, 7, 71, 2, 2, 970, 971, 7, 84, 2, 2, 971, 118, 3, 2, 2, 2, 972, 973, 7, 82, 2, 2, 973, 974, 7, 67, 2, 2, 974, 975, 7, 84, 2, 2, 975, 976, 7, 86, 2, 2, 976, 977, 7, 75, 2, 2, 977, 978, 7, 86, 2, 2, 978, 979, 7, 75, 2, 2, 979, 980, 7, 81, 2, 2, 980, 981, 7, 80, 2, 2, 981, 120, 3, 2, 2, 2, 982, 983, 7, 84, 2, 2, 983, 984, 7, 67, 2, 2, 984, 985, 7, 80, 2, 2, 985, 986, 7, 73, 2, 2, 986, 987, 7, 71, 2, 2, 987, 122, 3, 2, 2, 2, 988, 989, 7, 84, 2, 2, 989, 990, 7, 81, 2, 2, 990, 991, 7, 89, 2, 2, 991, 992, 7, 85, 2, 2, 992, 124, 3, 2, 2, 2, 993, 994, 7, 87, 2, 2, 994, 995, 7, 80, 2, 2, 995, 996, 7, 68, 2, 2, 996, 997, 7, 81, 2, 2, 997, 998, 7, 87, 2, 2, 998, 999, 7, 80, 2, 2, 999, 1000, 7, 70, 2, 2, 1000, 1001, 7, 71, 2, 2, 1001, 1002, 7, 70, 2, 2, 1002, 126, 3, 2, 2, 2, 1003, 1004, 7, 82, 2, 2, 1004, 1005, 7, 84, 2, 2, 1005, 1006, 7, 71, 2, 2, 1006, 1007, 7, 69, 2, 2, 1007, 1008, 7, 71, 2, 2, 1008, 1009, 7, 70, 2, 2, 1009, 1010, 7, 75, 2, 2, 1010, 1011, 7, 80, 2, 2, 1011, 1012, 7, 73, 2, 2, 1012, 128, 3, 2, 2, 2, 1013, 1014, 7, 72, 2, 2, 1014, 1015, 7, 81, 2, 2, 1015, 1016, 7, 78, 2, 2, 1016, 1017, 7, 78, 2, 2, 1017, 1018, 7, 81, 2, 2, 1018, 1019, 7, 89, 2, 2, 1019, 1020, 7, 75, 2, 2, 1020, 1021, 7, 80, 2, 2, 1021, 1022, 7, 73, 2, 2, 1022, 130, 3, 2, 2, 2, 1023, 1024, 7, 69, 2, 2, 1024, 1025, 7, 87, 2, 2, 1025, 1026, 7, 84, 2, 2, 1026, 1027, 7, 84, 2, 2, 1027, 1028, 7, 71, 2, 2, 1028, 1029, 7, 80, 2, 2, 1029, 1030, 7, 86, 2, 2, 1030, 132, 3, 2, 2, 2, 1031, 1032, 7, 72, 2, 2, 1032, 1033, 7, 75, 2, 2, 1033, 1034, 7, 84, 2, 2, 1034, 1035, 7, 85, 2, 2, 1035, 1036, 7, 86, 2, 2, 1036, 134, 3, 2, 2, 2, 1037, 1038, 7, 67, 2, 2, 1038, 1039, 7, 72, 2, 2, 1039, 1040, 7, 86, 2, 2, 1040, 1041, 7, 71, 2, 2, 1041, 1042, 7, 84, 2, 2, 1042, 136, 3, 2, 2, 2, 1043, 1044, 7, 78, 2, 2, 1044, 1045, 7, 67, 2, 2, 1045, 1046, 7, 85, 2, 2, 1046, 1047, 7, 86, 2, 2, 1047, 138, 3, 2, 2, 2, 1048, 1049, 7, 89, 2, 2, 1049, 1050, 7, 75, 2, 2, 1050, 1051, 7, 86, 2, 2, 1051, 1052, 7, 74, 2, 2, 1052, 140, 3, 2, 2, 2, 1053, 1054, 7, 88, 2, 2, 1054, 1055, 7, 67, 2, 2, 1055, 1056, 7, 78, 2, 2, 1056, 1057, 7, 87, 2, 2, 1057, 1058, 7, 71, 2, 2, 1058, 1059, 7, 85, 2, 2, 1059, 142, 3, 2, 2, 2, 1060, 1061, 7, 69, 2, 2, 1061, 1062, 7, 84, 2, 2, 1062, 1063, 7, 71, 2, 2, 1063, 1064, 7, 67, 2, 2, 1064, 1065, 7, 86, 2, 2, 1065, 1066, 7, 71, 2, 2, 1066, 144, 3, 2, 2, 2, 1067, 1068, 7, 86, 2, 2, 1068, 1069, 7, 67, 2, 2, 1069, 1070, 7, 68, 2, 2, 1070, 1071, 7, 78, 2, 2, 1071, 1072, 7, 71, 2, 2, 1072, 146, 3, 2, 2, 2, 1073, 1074, 7, 70, 2, 2, 1074, 1075, 7, 75, 2, 2, 1075, 1076, 7, 84, 2, 2, 1076, 1077, 7, 71, 2, 2, 1077, 1078, 7, 69, 2, 2, 1078, 1079, 7, 86, 2, 2, 1079, 1080, 7, 81, 2, 2, 1080, 1081, 7, 84, 2, 2, 1081, 1082, 7, 91, 2, 2, 1082, 148, 3, 2, 2, 2, 1083, 1084, 7, 88, 2, 2, 1084, 1085, 7, 75, 2, 2, 1085, 1086, 7, 71, 2, 2, 1086, 1087, 7, 89, 2, 2, 1087, 150, 3, 2, 2, 2, 1088, 1089, 7, 84, 2, 2, 1089, 1090, 7, 71, 2, 2, 1090, 1091, 7, 82, 2, 2, 1091, 1092, 7, 78, 2, 2, 1092, 1093, 7, 67, 2, 2, 1093, 1094, 7, 69, 2, 2, 1094, 1095, 7, 71, 2, 2, 1095, 152, 3, 2, 2, 2, 1096, 1097, 7, 75, 2, 2, 1097, 1098, 7, 80, 2, 2, 1098, 1099, 7, 85, 2, 2, 1099, 1100, 7, 71, 2, 2, 1100, 1101, 7, 84, 2, 2, 1101, 1102, 7, 86, 2, 2, 1102, 154, 3, 2, 2, 2, 1103, 1104, 7, 70, 2, 2, 1104, 1105, 7, 71, 2, 2, 1105, 1106, 7, 78, 2, 2, 1106, 1107, 7, 71, 2, 2, 1107, 1108, 7, 86, 2, 2, 1108, 1109, 7, 71, 2, 2, 1109, 156, 3, 2, 2, 2, 1110, 1111, 7, 75, 2, 2, 1111, 1112, 7, 80, 2, 2, 1112, 1113, 7, 86, 2, 2, 1113, 1114, 7, 81, 2, 2, 1114, 158, 3, 2, 2, 2, 1115, 1116, 7, 70, 2, 2, 1116, 1117, 7, 71, 2, 2, 1117, 1118, 7, 85, 2, 2, 1118, 1119, 7, 69, 2, 2, 1119, 1120, 7, 84, 2, 2, 1120, 1121, 7, 75, 2, 2, 1121, 1122, 7, 68, 2, 2, 1122, 1123, 7, 71, 2, 2, 1123, 160, 3, 2, 2, 2, 1124, 1125, 7, 71, 2, 2, 1125, 1126, 7, 90, 2, 2, 1126, 1127, 7, 82, 2, 2, 1127, 1128, 7, 78, 2, 2, 1128, 1129, 7, 67, 2, 2, 1129, 1130, 7, 75, 2, 2, 1130, 1131, 7, 80, 2, 2, 1131, 162, 3, 2, 2, 2, 1132, 1133, 7, 72, 2, 2, 1133, 1134, 7, 81, 2, 2, 1134, 1135, 7, 84, 2, 2, 1135, 1136, 7, 79, 2, 2, 1136, 1137, 7, 67, 2, 2, 1137, 1138, 7, 86, 2, 2, 1138, 164, 3, 2, 2, 2, 1139, 1140, 7, 78, 2, 2, 1140, 1141, 7, 81, 2, 2, 1141, 1142, 7, 73, 2, 2, 1142, 1143, 7, 75, 2, 2, 1143, 1144, 7, 69, 2, 2, 1144, 1145, 7, 67, 2, 2, 1145, 1146, 7, 78, 2, 2, 1146, 166, 3, 2, 2, 2, 1147, 1148, 7, 69, 2, 2, 1148, 1149, 7, 81, 2, 2, 1149, 1150, 7, 70, 2, 2, 1150, 1151, 7, 71, 2, 2, 1151, 1152, 7, 73, 2, 2, 1152, 1153, 7, 71, 2, 2, 1153, 1154, 7, 80, 2, 2, 1154, 168, 3, 2, 2, 2, 1155, 1156, 7, 69, 2, 2, 1156, 1157, 7, 81, 2, 2, 1157, 1158, 7, 85, 2, 2, 1158, 1159, 7, 86, 2, 2, 1159, 170, 3, 2, 2, 2, 1160, 1161, 7, 69, 2, 2, 1161, 1162, 7, 67, 2, 2, 1162, 1163, 7, 85, 2, 2, 1163, 1164, 7, 86, 2, 2, 1164, 172, 3, 2, 2, 2, 1165, 1166, 7, 85, 2, 2, 1166, 1167, 7, 74, 2, 2, 1167, 1168, 7, 81, 2, 2, 1168, 1169, 7, 89, 2, 2, 1169, 174, 3, 2, 2, 2, 1170, 1171, 7, 86, 2, 2, 1171, 1172, 7, 67, 2, 2, 1172, 1173, 7, 68, 2, 2, 1173, 1174, 7, 78, 2, 2, 1174, 1175, 7, 71, 2, 2, 1175, 1176, 7, 85, 2, 2, 1176, 176, 3, 2, 2, 2, 1177, 1178, 7, 69, 2, 2, 1178, 1179, 7, 81, 2, 2, 1179, 1180, 7, 78, 2, 2, 1180, 1181, 7, 87, 2, 2, 1181, 1182, 7, 79, 2, 2, 1182, 1183, 7, 80, 2, 2, 1183, 1184, 7, 85, 2, 2, 1184, 178, 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, 180, 3, 2, 2, 2, 1192, 1193, 7, 87, 2, 2, 1193, 1194, 7, 85, 2, 2, 1194, 1195, 7, 71, 2, 2, 1195, 182, 3, 2, 2, 2, 1196, 1197, 7, 82, 2, 2, 1197, 1198, 7, 67, 2, 2, 1198, 1199, 7, 84, 2, 2, 1199, 1200, 7, 86, 2, 2, 1200, 1201, 7, 75, 2, 2, 1201, 1202, 7, 86, 2, 2, 1202, 1203, 7, 75, 2, 2, 1203, 1204, 7, 81, 2, 2, 1204, 1205, 7, 80, 2, 2, 1205, 1206, 7, 85, 2, 2, 1206, 184, 3, 2, 2, 2, 1207, 1208, 7, 72, 2, 2, 1208, 1209, 7, 87, 2, 2, 1209, 1210, 7, 80, 2, 2, 1210, 1211, 7, 69, 2, 2, 1211, 1212, 7, 86, 2, 2, 1212, 1213, 7, 75, 2, 2, 1213, 1214, 7, 81, 2, 2, 1214, 1215, 7, 80, 2, 2, 1215, 1216, 7, 85, 2, 2, 1216, 186, 3, 2, 2, 2, 1217, 1218, 7, 70, 2, 2, 1218, 1219, 7, 84, 2, 2, 1219, 1220, 7, 81, 2, 2, 1220, 1221, 7, 82, 2, 2, 1221, 188, 3, 2, 2, 2, 1222, 1223, 7, 87, 2, 2, 1223, 1224, 7, 80, 2, 2, 1224, 1225, 7, 75, 2, 2, 1225, 1226, 7, 81, 2, 2, 1226, 1227, 7, 80, 2, 2, 1227, 190, 3, 2, 2, 2, 1228, 1229, 7, 71, 2, 2, 1229, 1230, 7, 90, 2, 2, 1230, 1231, 7, 69, 2, 2, 1231, 1232, 7, 71, 2, 2, 1232, 1233, 7, 82, 2, 2, 1233, 1234, 7, 86, 2, 2, 1234, 192, 3, 2, 2, 2, 1235, 1236, 7, 85, 2, 2, 1236, 1237, 7, 71, 2, 2, 1237, 1238, 7, 86, 2, 2, 1238, 1239, 7, 79, 2, 2, 1239, 1240, 7, 75, 2, 2, 1240, 1241, 7, 80, 2, 2, 1241, 1242, 7, 87, 2, 2, 1242, 1243, 7, 85, 2, 2, 1243, 194, 3, 2, 2, 2, 1244, 1245, 7, 75, 2, 2, 1245, 1246, 7, 80, 2, 2, 1246, 1247, 7, 86, 2, 2, 1247, 1248, 7, 71, 2, 2, 1248, 1249, 7, 84, 2, 2, 1249, 1250, 7, 85, 2, 2, 1250, 1251, 7, 71, 2, 2, 1251, 1252, 7, 69, 2, 2, 1252, 1253, 7, 86, 2, 2, 1253, 196, 3, 2, 2, 2, 1254, 1255, 7, 86, 2, 2, 1255, 1256, 7, 81, 2, 2, 1256, 198, 3, 2, 2, 2, 1257, 1258, 7, 86, 2, 2, 1258, 1259, 7, 67, 2, 2, 1259, 1260, 7, 68, 2, 2, 1260, 1261, 7, 78, 2, 2, 1261, 1262, 7, 71, 2, 2, 1262, 1263, 7, 85, 2, 2, 1263, 1264, 7, 67, 2, 2, 1264, 1265, 7, 79, 2, 2, 1265, 1266, 7, 82, 2, 2, 1266, 1267, 7, 78, 2, 2, 1267, 1268, 7, 71, 2, 2, 1268, 200, 3, 2, 2, 2, 1269, 1270, 7, 85, 2, 2, 1270, 1271, 7, 86, 2, 2, 1271, 1272, 7, 84, 2, 2, 1272, 1273, 7, 67, 2, 2, 1273, 1274, 7, 86, 2, 2, 1274, 1275, 7, 75, 2, 2, 1275, 1276, 7, 72, 2, 2, 1276, 1277, 7, 91, 2, 2, 1277, 202, 3, 2, 2, 2, 1278, 1279, 7, 67, 2, 2, 1279, 1280, 7, 78, 2, 2, 1280, 1281, 7, 86, 2, 2, 1281, 1282, 7, 71, 2, 2, 1282, 1283, 7, 84, 2, 2, 1283, 204, 3, 2, 2, 2, 1284, 1285, 7, 84, 2, 2, 1285, 1286, 7, 71, 2, 2, 1286, 1287, 7, 80, 2, 2, 1287, 1288, 7, 67, 2, 2, 1288, 1289, 7, 79, 2, 2, 1289, 1290, 7, 71, 2, 2, 1290, 206, 3, 2, 2, 2, 1291, 1292, 7, 85, 2, 2, 1292, 1293, 7, 86, 2, 2, 1293, 1294, 7, 84, 2, 2, 1294, 1295, 7, 87, 2, 2, 1295, 1296, 7, 69, 2, 2, 1296, 1297, 7, 86, 2, 2, 1297, 208, 3, 2, 2, 2, 1298, 1299, 7, 69, 2, 2, 1299, 1300, 7, 81, 2, 2, 1300, 1301, 7, 79, 2, 2, 1301, 1302, 7, 79, 2, 2, 1302, 1303, 7, 71, 2, 2, 1303, 1304, 7, 80, 2, 2, 1304, 1305, 7, 86, 2, 2, 1305, 210, 3, 2, 2, 2, 1306, 1307, 7, 85, 2, 2, 1307, 1308, 7, 71, 2, 2, 1308, 1309, 7, 86, 2, 2, 1309, 212, 3, 2, 2, 2, 1310, 1311, 7, 84, 2, 2, 1311, 1312, 7, 71, 2, 2, 1312, 1313, 7, 85, 2, 2, 1313, 1314, 7, 71, 2, 2, 1314, 1315, 7, 86, 2, 2, 1315, 214, 3, 2, 2, 2, 1316, 1317, 7, 70, 2, 2, 1317, 1318, 7, 67, 2, 2, 1318, 1319, 7, 86, 2, 2, 1319, 1320, 7, 67, 2, 2, 1320, 216, 3, 2, 2, 2, 1321, 1322, 7, 85, 2, 2, 1322, 1323, 7, 86, 2, 2, 1323, 1324, 7, 67, 2, 2, 1324, 1325, 7, 84, 2, 2, 1325, 1326, 7, 86, 2, 2, 1326, 218, 3, 2, 2, 2, 1327, 1328, 7, 86, 2, 2, 1328, 1329, 7, 84, 2, 2, 1329, 1330, 7, 67, 2, 2, 1330, 1331, 7, 80, 2, 2, 1331, 1332, 7, 85, 2, 2, 1332, 1333, 7, 67, 2, 2, 1333, 1334, 7, 69, 2, 2, 1334, 1335, 7, 86, 2, 2, 1335, 1336, 7, 75, 2, 2, 1336, 1337, 7, 81, 2, 2, 1337, 1338, 7, 80, 2, 2, 1338, 220, 3, 2, 2, 2, 1339, 1340, 7, 69, 2, 2, 1340, 1341, 7, 81, 2, 2, 1341, 1342, 7, 79, 2, 2, 1342, 1343, 7, 79, 2, 2, 1343, 1344, 7, 75, 2, 2, 1344, 1345, 7, 86, 2, 2, 1345, 222, 3, 2, 2, 2, 1346, 1347, 7, 84, 2, 2, 1347, 1348, 7, 81, 2, 2, 1348, 1349, 7, 78, 2, 2, 1349, 1350, 7, 78, 2, 2, 1350, 1351, 7, 68, 2, 2, 1351, 1352, 7, 67, 2, 2, 1352, 1353, 7, 69, 2, 2, 1353, 1354, 7, 77, 2, 2, 1354, 224, 3, 2, 2, 2, 1355, 1356, 7, 79, 2, 2, 1356, 1357, 7, 67, 2, 2, 1357, 1358, 7, 69, 2, 2, 1358, 1359, 7, 84, 2, 2, 1359, 1360, 7, 81, 2, 2, 1360, 226, 3, 2, 2, 2, 1361, 1362, 7, 75, 2, 2, 1362, 1363, 7, 73, 2, 2, 1363, 1364, 7, 80, 2, 2, 1364, 1365, 7, 81, 2, 2, 1365, 1366, 7, 84, 2, 2, 1366, 1367, 7, 71, 2, 2, 1367, 228, 3, 2, 2, 2, 1368, 1369, 7, 68, 2, 2, 1369, 1370, 7, 81, 2, 2, 1370, 1371, 7, 86, 2, 2, 1371, 1372, 7, 74, 2, 2, 1372, 230, 3, 2, 2, 2, 1373, 1374, 7, 78, 2, 2, 1374, 1375, 7, 71, 2, 2, 1375, 1376, 7, 67, 2, 2, 1376, 1377, 7, 70, 2, 2, 1377, 1378, 7, 75, 2, 2, 1378, 1379, 7, 80, 2, 2, 1379, 1380, 7, 73, 2, 2, 1380, 232, 3, 2, 2, 2, 1381, 1382, 7, 86, 2, 2, 1382, 1383, 7, 84, 2, 2, 1383, 1384, 7, 67, 2, 2, 1384, 1385, 7, 75, 2, 2, 1385, 1386, 7, 78, 2, 2, 1386, 1387, 7, 75, 2, 2, 1387, 1388, 7, 80, 2, 2, 1388, 1389, 7, 73, 2, 2, 1389, 234, 3, 2, 2, 2, 1390, 1391, 7, 75, 2, 2, 1391, 1392, 7, 72, 2, 2, 1392, 236, 3, 2, 2, 2, 1393, 1394, 7, 82, 2, 2, 1394, 1395, 7, 81, 2, 2, 1395, 1396, 7, 85, 2, 2, 1396, 1397, 7, 75, 2, 2, 1397, 1398, 7, 86, 2, 2, 1398, 1399, 7, 75, 2, 2, 1399, 1400, 7, 81, 2, 2, 1400, 1401, 7, 80, 2, 2, 1401, 238, 3, 2, 2, 2, 1402, 1403, 7, 71, 2, 2, 1403, 1404, 7, 90, 2, 2, 1404, 1405, 7, 86, 2, 2, 1405, 1406, 7, 84, 2, 2, 1406, 1407, 7, 67, 2, 2, 1407, 1408, 7, 69, 2, 2, 1408, 1409, 7, 86, 2, 2, 1409, 240, 3, 2, 2, 2, 1410, 1411, 7, 71, 2, 2, 1411, 1412, 7, 83, 2, 2, 1412, 242, 3, 2, 2, 2, 1413, 1414, 7, 80, 2, 2, 1414, 1415, 7, 85, 2, 2, 1415, 1416, 7, 71, 2, 2, 1416, 1417, 7, 83, 2, 2, 1417, 244, 3, 2, 2, 2, 1418, 1419, 7, 80, 2, 2, 1419, 1420, 7, 71, 2, 2, 1420, 1421, 7, 83, 2, 2, 1421, 246, 3, 2, 2, 2, 1422, 1423, 7, 80, 2, 2, 1423, 1424, 7, 71, 2, 2, 1424, 1425, 7, 83, 2, 2, 1425, 1426, 7, 76, 2, 2, 1426, 248, 3, 2, 2, 2, 1427, 1428, 7, 78, 2, 2, 1428, 1429, 7, 86, 2, 2, 1429, 250, 3, 2, 2, 2, 1430, 1431, 7, 78, 2, 2, 1431, 1432, 7, 86, 2, 2, 1432, 1433, 7, 71, 2, 2, 1433, 252, 3, 2, 2, 2, 1434, 1435, 7, 73, 2, 2, 1435, 1436, 7, 86, 2, 2, 1436, 254, 3, 2, 2, 2, 1437, 1438, 7, 73, 2, 2, 1438, 1439, 7, 86, 2, 2, 1439, 1440, 7, 71, 2, 2, 1440, 256, 3, 2, 2, 2, 1441, 1442, 7, 82, 2, 2, 1442, 1443, 7, 78, 2, 2, 1443, 1444, 7, 87, 2, 2, 1444, 1445, 7, 85, 2, 2, 1445, 258, 3, 2, 2, 2, 1446, 1447, 7, 79, 2, 2, 1447, 1448, 7, 75, 2, 2, 1448, 1449, 7, 80, 2, 2, 1449, 1450, 7, 87, 2, 2, 1450, 1451, 7, 85, 2, 2, 1451, 260, 3, 2, 2, 2, 1452, 1453, 7, 67, 2, 2, 1453, 1454, 7, 85, 2, 2, 1454, 1455, 7, 86, 2, 2, 1455, 1456, 7, 71, 2, 2, 1456, 1457, 7, 84, 2, 2, 1457, 1458, 7, 75, 2, 2, 1458, 1459, 7, 85, 2, 2, 1459, 1460, 7, 77, 2, 2, 1460, 262, 3, 2, 2, 2, 1461, 1462, 7, 85, 2, 2, 1462, 1463, 7, 78, 2, 2, 1463, 1464, 7, 67, 2, 2, 1464, 1465, 7, 85, 2, 2, 1465, 1466, 7, 74, 2, 2, 1466, 264, 3, 2, 2, 2, 1467, 1468, 7, 82, 2, 2, 1468, 1469, 7, 71, 2, 2, 1469, 1470, 7, 84, 2, 2, 1470, 1471, 7, 69, 2, 2, 1471, 1472, 7, 71, 2, 2, 1472, 1473, 7, 80, 2, 2, 1473, 1474, 7, 86, 2, 2, 1474, 266, 3, 2, 2, 2, 1475, 1476, 7, 70, 2, 2, 1476, 1477, 7, 75, 2, 2, 1477, 1478, 7, 88, 2, 2, 1478, 268, 3, 2, 2, 2, 1479, 1480, 7, 86, 2, 2, 1480, 1481, 7, 75, 2, 2, 1481, 1482, 7, 78, 2, 2, 1482, 1483, 7, 70, 2, 2, 1483, 1484, 7, 71, 2, 2, 1484, 270, 3, 2, 2, 2, 1485, 1486, 7, 67, 2, 2, 1486, 1487, 7, 79, 2, 2, 1487, 1488, 7, 82, 2, 2, 1488, 1489, 7, 71, 2, 2, 1489, 1490, 7, 84, 2, 2, 1490, 1491, 7, 85, 2, 2, 1491, 1492, 7, 67, 2, 2, 1492, 1493, 7, 80, 2, 2, 1493, 1494, 7, 70, 2, 2, 1494, 272, 3, 2, 2, 2, 1495, 1496, 7, 82, 2, 2, 1496, 1497, 7, 75, 2, 2, 1497, 1498, 7, 82, 2, 2, 1498, 1499, 7, 71, 2, 2, 1499, 274, 3, 2, 2, 2, 1500, 1501, 7, 69, 2, 2, 1501, 1502, 7, 81, 2, 2, 1502, 1503, 7, 80, 2, 2, 1503, 1504, 7, 69, 2, 2, 1504, 1505, 7, 67, 2, 2, 1505, 1506, 7, 86, 2, 2, 1506, 1507, 7, 97, 2, 2, 1507, 1508, 7, 82, 2, 2, 1508, 1509, 7, 75, 2, 2, 1509, 1510, 7, 82, 2, 2, 1510, 1511, 7, 71, 2, 2, 1511, 276, 3, 2, 2, 2, 1512, 1513, 7, 74, 2, 2, 1513, 1514, 7, 67, 2, 2, 1514, 1515, 7, 86, 2, 2, 1515, 278, 3, 2, 2, 2, 1516, 1517, 7, 82, 2, 2, 1517, 1518, 7, 71, 2, 2, 1518, 1519, 7, 84, 2, 2, 1519, 1520, 7, 69, 2, 2, 1520, 1521, 7, 71, 2, 2, 1521, 1522, 7, 80, 2, 2, 1522, 1523, 7, 86, 2, 2, 1523, 1524, 7, 78, 2, 2, 1524, 1525, 7, 75, 2, 2, 1525, 1526, 7, 86, 2, 2, 1526, 280, 3, 2, 2, 2, 1527, 1528, 7, 68, 2, 2, 1528, 1529, 7, 87, 2, 2, 1529, 1530, 7, 69, 2, 2, 1530, 1531, 7, 77, 2, 2, 1531, 1532, 7, 71, 2, 2, 1532, 1533, 7, 86, 2, 2, 1533, 282, 3, 2, 2, 2, 1534, 1535, 7, 81, 2, 2, 1535, 1536, 7, 87, 2, 2, 1536, 1537, 7, 86, 2, 2, 1537, 284, 3, 2, 2, 2, 1538, 1539, 7, 81, 2, 2, 1539, 1540, 7, 72, 2, 2, 1540, 286, 3, 2, 2, 2, 1541, 1542, 7, 85, 2, 2, 1542, 1543, 7, 81, 2, 2, 1543, 1544, 7, 84, 2, 2, 1544, 1545, 7, 86, 2, 2, 1545, 288, 3, 2, 2, 2, 1546, 1547, 7, 69, 2, 2, 1547, 1548, 7, 78, 2, 2, 1548, 1549, 7, 87, 2, 2, 1549, 1550, 7, 85, 2, 2, 1550, 1551, 7, 86, 2, 2, 1551, 1552, 7, 71, 2, 2, 1552, 1553, 7, 84, 2, 2, 1553, 290, 3, 2, 2, 2, 1554, 1555, 7, 70, 2, 2, 1555, 1556, 7, 75, 2, 2, 1556, 1557, 7, 85, 2, 2, 1557, 1558, 7, 86, 2, 2, 1558, 1559, 7, 84, 2, 2, 1559, 1560, 7, 75, 2, 2, 1560, 1561, 7, 68, 2, 2, 1561, 1562, 7, 87, 2, 2, 1562, 1563, 7, 86, 2, 2, 1563, 1564, 7, 71, 2, 2, 1564, 292, 3, 2, 2, 2, 1565, 1566, 7, 81, 2, 2, 1566, 1567, 7, 88, 2, 2, 1567, 1568, 7, 71, 2, 2, 1568, 1569, 7, 84, 2, 2, 1569, 1570, 7, 89, 2, 2, 1570, 1571, 7, 84, 2, 2, 1571, 1572, 7, 75, 2, 2, 1572, 1573, 7, 86, 2, 2, 1573, 1574, 7, 71, 2, 2, 1574, 294, 3, 2, 2, 2, 1575, 1576, 7, 86, 2, 2, 1576, 1577, 7, 84, 2, 2, 1577, 1578, 7, 67, 2, 2, 1578, 1579, 7, 80, 2, 2, 1579, 1580, 7, 85, 2, 2, 1580, 1581, 7, 72, 2, 2, 1581, 1582, 7, 81, 2, 2, 1582, 1583, 7, 84, 2, 2, 1583, 1584, 7, 79, 2, 2, 1584, 296, 3, 2, 2, 2, 1585, 1586, 7, 84, 2, 2, 1586, 1587, 7, 71, 2, 2, 1587, 1588, 7, 70, 2, 2, 1588, 1589, 7, 87, 2, 2, 1589, 1590, 7, 69, 2, 2, 1590, 1591, 7, 71, 2, 2, 1591, 298, 3, 2, 2, 2, 1592, 1593, 7, 87, 2, 2, 1593, 1594, 7, 85, 2, 2, 1594, 1595, 7, 75, 2, 2, 1595, 1596, 7, 80, 2, 2, 1596, 1597, 7, 73, 2, 2, 1597, 300, 3, 2, 2, 2, 1598, 1599, 7, 85, 2, 2, 1599, 1600, 7, 71, 2, 2, 1600, 1601, 7, 84, 2, 2, 1601, 1602, 7, 70, 2, 2, 1602, 1603, 7, 71, 2, 2, 1603, 302, 3, 2, 2, 2, 1604, 1605, 7, 85, 2, 2, 1605, 1606, 7, 71, 2, 2, 1606, 1607, 7, 84, 2, 2, 1607, 1608, 7, 70, 2, 2, 1608, 1609, 7, 71, 2, 2, 1609, 1610, 7, 82, 2, 2, 1610, 1611, 7, 84, 2, 2, 1611, 1612, 7, 81, 2, 2, 1612, 1613, 7, 82, 2, 2, 1613, 1614, 7, 71, 2, 2, 1614, 1615, 7, 84, 2, 2, 1615, 1616, 7, 86, 2, 2, 1616, 1617, 7, 75, 2, 2, 1617, 1618, 7, 71, 2, 2, 1618, 1619, 7, 85, 2, 2, 1619, 304, 3, 2, 2, 2, 1620, 1621, 7, 84, 2, 2, 1621, 1622, 7, 71, 2, 2, 1622, 1623, 7, 69, 2, 2, 1623, 1624, 7, 81, 2, 2, 1624, 1625, 7, 84, 2, 2, 1625, 1626, 7, 70, 2, 2, 1626, 1627, 7, 84, 2, 2, 1627, 1628, 7, 71, 2, 2, 1628, 1629, 7, 67, 2, 2, 1629, 1630, 7, 70, 2, 2, 1630, 1631, 7, 71, 2, 2, 1631, 1632, 7, 84, 2, 2, 1632, 306, 3, 2, 2, 2, 1633, 1634, 7, 84, 2, 2, 1634, 1635, 7, 71, 2, 2, 1635, 1636, 7, 69, 2, 2, 1636, 1637, 7, 81, 2, 2, 1637, 1638, 7, 84, 2, 2, 1638, 1639, 7, 70, 2, 2, 1639, 1640, 7, 89, 2, 2, 1640, 1641, 7, 84, 2, 2, 1641, 1642, 7, 75, 2, 2, 1642, 1643, 7, 86, 2, 2, 1643, 1644, 7, 71, 2, 2, 1644, 1645, 7, 84, 2, 2, 1645, 308, 3, 2, 2, 2, 1646, 1647, 7, 70, 2, 2, 1647, 1648, 7, 71, 2, 2, 1648, 1649, 7, 78, 2, 2, 1649, 1650, 7, 75, 2, 2, 1650, 1651, 7, 79, 2, 2, 1651, 1652, 7, 75, 2, 2, 1652, 1653, 7, 86, 2, 2, 1653, 1654, 7, 71, 2, 2, 1654, 1655, 7, 70, 2, 2, 1655, 310, 3, 2, 2, 2, 1656, 1657, 7, 72, 2, 2, 1657, 1658, 7, 75, 2, 2, 1658, 1659, 7, 71, 2, 2, 1659, 1660, 7, 78, 2, 2, 1660, 1661, 7, 70, 2, 2, 1661, 1662, 7, 85, 2, 2, 1662, 312, 3, 2, 2, 2, 1663, 1664, 7, 86, 2, 2, 1664, 1665, 7, 71, 2, 2, 1665, 1666, 7, 84, 2, 2, 1666, 1667, 7, 79, 2, 2, 1667, 1668, 7, 75, 2, 2, 1668, 1669, 7, 80, 2, 2, 1669, 1670, 7, 67, 2, 2, 1670, 1671, 7, 86, 2, 2, 1671, 1672, 7, 71, 2, 2, 1672, 1673, 7, 70, 2, 2, 1673, 314, 3, 2, 2, 2, 1674, 1675, 7, 69, 2, 2, 1675, 1676, 7, 81, 2, 2, 1676, 1677, 7, 78, 2, 2, 1677, 1678, 7, 78, 2, 2, 1678, 1679, 7, 71, 2, 2, 1679, 1680, 7, 69, 2, 2, 1680, 1681, 7, 86, 2, 2, 1681, 1682, 7, 75, 2, 2, 1682, 1683, 7, 81, 2, 2, 1683, 1684, 7, 80, 2, 2, 1684, 316, 3, 2, 2, 2, 1685, 1686, 7, 75, 2, 2, 1686, 1687, 7, 86, 2, 2, 1687, 1688, 7, 71, 2, 2, 1688, 1689, 7, 79, 2, 2, 1689, 1690, 7, 85, 2, 2, 1690, 318, 3, 2, 2, 2, 1691, 1692, 7, 77, 2, 2, 1692, 1693, 7, 71, 2, 2, 1693, 1694, 7, 91, 2, 2, 1694, 1695, 7, 85, 2, 2, 1695, 320, 3, 2, 2, 2, 1696, 1697, 7, 71, 2, 2, 1697, 1698, 7, 85, 2, 2, 1698, 1699, 7, 69, 2, 2, 1699, 1700, 7, 67, 2, 2, 1700, 1701, 7, 82, 2, 2, 1701, 1702, 7, 71, 2, 2, 1702, 1703, 7, 70, 2, 2, 1703, 322, 3, 2, 2, 2, 1704, 1705, 7, 78, 2, 2, 1705, 1706, 7, 75, 2, 2, 1706, 1707, 7, 80, 2, 2, 1707, 1708, 7, 71, 2, 2, 1708, 1709, 7, 85, 2, 2, 1709, 324, 3, 2, 2, 2, 1710, 1711, 7, 85, 2, 2, 1711, 1712, 7, 71, 2, 2, 1712, 1713, 7, 82, 2, 2, 1713, 1714, 7, 67, 2, 2, 1714, 1715, 7, 84, 2, 2, 1715, 1716, 7, 67, 2, 2, 1716, 1717, 7, 86, 2, 2, 1717, 1718, 7, 71, 2, 2, 1718, 1719, 7, 70, 2, 2, 1719, 326, 3, 2, 2, 2, 1720, 1721, 7, 72, 2, 2, 1721, 1722, 7, 87, 2, 2, 1722, 1723, 7, 80, 2, 2, 1723, 1724, 7, 69, 2, 2, 1724, 1725, 7, 86, 2, 2, 1725, 1726, 7, 75, 2, 2, 1726, 1727, 7, 81, 2, 2, 1727, 1728, 7, 80, 2, 2, 1728, 328, 3, 2, 2, 2, 1729, 1730, 7, 71, 2, 2, 1730, 1731, 7, 90, 2, 2, 1731, 1732, 7, 86, 2, 2, 1732, 1733, 7, 71, 2, 2, 1733, 1734, 7, 80, 2, 2, 1734, 1735, 7, 70, 2, 2, 1735, 1736, 7, 71, 2, 2, 1736, 1737, 7, 70, 2, 2, 1737, 330, 3, 2, 2, 2, 1738, 1739, 7, 84, 2, 2, 1739, 1740, 7, 71, 2, 2, 1740, 1741, 7, 72, 2, 2, 1741, 1742, 7, 84, 2, 2, 1742, 1743, 7, 71, 2, 2, 1743, 1744, 7, 85, 2, 2, 1744, 1745, 7, 74, 2, 2, 1745, 332, 3, 2, 2, 2, 1746, 1747, 7, 69, 2, 2, 1747, 1748, 7, 78, 2, 2, 1748, 1749, 7, 71, 2, 2, 1749, 1750, 7, 67, 2, 2, 1750, 1751, 7, 84, 2, 2, 1751, 334, 3, 2, 2, 2, 1752, 1753, 7, 69, 2, 2, 1753, 1754, 7, 67, 2, 2, 1754, 1755, 7, 69, 2, 2, 1755, 1756, 7, 74, 2, 2, 1756, 1757, 7, 71, 2, 2, 1757, 336, 3, 2, 2, 2, 1758, 1759, 7, 87, 2, 2, 1759, 1760, 7, 80, 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, 338, 3, 2, 2, 2, 1766, 1767, 7, 78, 2, 2, 1767, 1768, 7, 67, 2, 2, 1768, 1769, 7, 92, 2, 2, 1769, 1770, 7, 91, 2, 2, 1770, 340, 3, 2, 2, 2, 1771, 1772, 7, 72, 2, 2, 1772, 1773, 7, 81, 2, 2, 1773, 1774, 7, 84, 2, 2, 1774, 1775, 7, 79, 2, 2, 1775, 1776, 7, 67, 2, 2, 1776, 1777, 7, 86, 2, 2, 1777, 1778, 7, 86, 2, 2, 1778, 1779, 7, 71, 2, 2, 1779, 1780, 7, 70, 2, 2, 1780, 342, 3, 2, 2, 2, 1781, 1782, 7, 73, 2, 2, 1782, 1783, 7, 78, 2, 2, 1783, 1784, 7, 81, 2, 2, 1784, 1785, 7, 68, 2, 2, 1785, 1786, 7, 67, 2, 2, 1786, 1787, 7, 78, 2, 2, 1787, 344, 3, 2, 2, 2, 1788, 1789, 7, 86, 2, 2, 1789, 1790, 7, 71, 2, 2, 1790, 1791, 7, 79, 2, 2, 1791, 1792, 7, 82, 2, 2, 1792, 1793, 7, 81, 2, 2, 1793, 1794, 7, 84, 2, 2, 1794, 1795, 7, 67, 2, 2, 1795, 1796, 7, 84, 2, 2, 1796, 1797, 7, 91, 2, 2, 1797, 346, 3, 2, 2, 2, 1798, 1799, 7, 81, 2, 2, 1799, 1800, 7, 82, 2, 2, 1800, 1801, 7, 86, 2, 2, 1801, 1802, 7, 75, 2, 2, 1802, 1803, 7, 81, 2, 2, 1803, 1804, 7, 80, 2, 2, 1804, 1805, 7, 85, 2, 2, 1805, 348, 3, 2, 2, 2, 1806, 1807, 7, 87, 2, 2, 1807, 1808, 7, 80, 2, 2, 1808, 1809, 7, 85, 2, 2, 1809, 1810, 7, 71, 2, 2, 1810, 1811, 7, 86, 2, 2, 1811, 350, 3, 2, 2, 2, 1812, 1813, 7, 86, 2, 2, 1813, 1814, 7, 68, 2, 2, 1814, 1815, 7, 78, 2, 2, 1815, 1816, 7, 82, 2, 2, 1816, 1817, 7, 84, 2, 2, 1817, 1818, 7, 81, 2, 2, 1818, 1819, 7, 82, 2, 2, 1819, 1820, 7, 71, 2, 2, 1820, 1821, 7, 84, 2, 2, 1821, 1822, 7, 86, 2, 2, 1822, 1823, 7, 75, 2, 2, 1823, 1824, 7, 71, 2, 2, 1824, 1825, 7, 85, 2, 2, 1825, 352, 3, 2, 2, 2, 1826, 1827, 7, 70, 2, 2, 1827, 1828, 7, 68, 2, 2, 1828, 1829, 7, 82, 2, 2, 1829, 1830, 7, 84, 2, 2, 1830, 1831, 7, 81, 2, 2, 1831, 1832, 7, 82, 2, 2, 1832, 1833, 7, 71, 2, 2, 1833, 1834, 7, 84, 2, 2, 1834, 1835, 7, 86, 2, 2, 1835, 1836, 7, 75, 2, 2, 1836, 1837, 7, 71, 2, 2, 1837, 1838, 7, 85, 2, 2, 1838, 354, 3, 2, 2, 2, 1839, 1840, 7, 68, 2, 2, 1840, 1841, 7, 87, 2, 2, 1841, 1842, 7, 69, 2, 2, 1842, 1843, 7, 77, 2, 2, 1843, 1844, 7, 71, 2, 2, 1844, 1845, 7, 86, 2, 2, 1845, 1846, 7, 85, 2, 2, 1846, 356, 3, 2, 2, 2, 1847, 1848, 7, 85, 2, 2, 1848, 1849, 7, 77, 2, 2, 1849, 1850, 7, 71, 2, 2, 1850, 1851, 7, 89, 2, 2, 1851, 1852, 7, 71, 2, 2, 1852, 1853, 7, 70, 2, 2, 1853, 358, 3, 2, 2, 2, 1854, 1855, 7, 85, 2, 2, 1855, 1856, 7, 86, 2, 2, 1856, 1857, 7, 81, 2, 2, 1857, 1858, 7, 84, 2, 2, 1858, 1859, 7, 71, 2, 2, 1859, 1860, 7, 70, 2, 2, 1860, 360, 3, 2, 2, 2, 1861, 1862, 7, 70, 2, 2, 1862, 1863, 7, 75, 2, 2, 1863, 1864, 7, 84, 2, 2, 1864, 1865, 7, 71, 2, 2, 1865, 1866, 7, 69, 2, 2, 1866, 1867, 7, 86, 2, 2, 1867, 1868, 7, 81, 2, 2, 1868, 1869, 7, 84, 2, 2, 1869, 1870, 7, 75, 2, 2, 1870, 1871, 7, 71, 2, 2, 1871, 1872, 7, 85, 2, 2, 1872, 362, 3, 2, 2, 2, 1873, 1874, 7, 78, 2, 2, 1874, 1875, 7, 81, 2, 2, 1875, 1876, 7, 69, 2, 2, 1876, 1877, 7, 67, 2, 2, 1877, 1878, 7, 86, 2, 2, 1878, 1879, 7, 75, 2, 2, 1879, 1880, 7, 81, 2, 2, 1880, 1881, 7, 80, 2, 2, 1881, 364, 3, 2, 2, 2, 1882, 1883, 7, 71, 2, 2, 1883, 1884, 7, 90, 2, 2, 1884, 1885, 7, 69, 2, 2, 1885, 1886, 7, 74, 2, 2, 1886, 1887, 7, 67, 2, 2, 1887, 1888, 7, 80, 2, 2, 1888, 1889, 7, 73, 2, 2, 1889, 1890, 7, 71, 2, 2, 1890, 366, 3, 2, 2, 2, 1891, 1892, 7, 67, 2, 2, 1892, 1893, 7, 84, 2, 2, 1893, 1894, 7, 69, 2, 2, 1894, 1895, 7, 74, 2, 2, 1895, 1896, 7, 75, 2, 2, 1896, 1897, 7, 88, 2, 2, 1897, 1898, 7, 71, 2, 2, 1898, 368, 3, 2, 2, 2, 1899, 1900, 7, 87, 2, 2, 1900, 1901, 7, 80, 2, 2, 1901, 1902, 7, 67, 2, 2, 1902, 1903, 7, 84, 2, 2, 1903, 1904, 7, 69, 2, 2, 1904, 1905, 7, 74, 2, 2, 1905, 1906, 7, 75, 2, 2, 1906, 1907, 7, 88, 2, 2, 1907, 1908, 7, 71, 2, 2, 1908, 370, 3, 2, 2, 2, 1909, 1910, 7, 72, 2, 2, 1910, 1911, 7, 75, 2, 2, 1911, 1912, 7, 78, 2, 2, 1912, 1913, 7, 71, 2, 2, 1913, 1914, 7, 72, 2, 2, 1914, 1915, 7, 81, 2, 2, 1915, 1916, 7, 84, 2, 2, 1916, 1917, 7, 79, 2, 2, 1917, 1918, 7, 67, 2, 2, 1918, 1919, 7, 86, 2, 2, 1919, 372, 3, 2, 2, 2, 1920, 1921, 7, 86, 2, 2, 1921, 1922, 7, 81, 2, 2, 1922, 1923, 7, 87, 2, 2, 1923, 1924, 7, 69, 2, 2, 1924, 1925, 7, 74, 2, 2, 1925, 374, 3, 2, 2, 2, 1926, 1927, 7, 69, 2, 2, 1927, 1928, 7, 81, 2, 2, 1928, 1929, 7, 79, 2, 2, 1929, 1930, 7, 82, 2, 2, 1930, 1931, 7, 67, 2, 2, 1931, 1932, 7, 69, 2, 2, 1932, 1933, 7, 86, 2, 2, 1933, 376, 3, 2, 2, 2, 1934, 1935, 7, 69, 2, 2, 1935, 1936, 7, 81, 2, 2, 1936, 1937, 7, 80, 2, 2, 1937, 1938, 7, 69, 2, 2, 1938, 1939, 7, 67, 2, 2, 1939, 1940, 7, 86, 2, 2, 1940, 1941, 7, 71, 2, 2, 1941, 1942, 7, 80, 2, 2, 1942, 1943, 7, 67, 2, 2, 1943, 1944, 7, 86, 2, 2, 1944, 1945, 7, 71, 2, 2, 1945, 378, 3, 2, 2, 2, 1946, 1947, 7, 69, 2, 2, 1947, 1948, 7, 74, 2, 2, 1948, 1949, 7, 67, 2, 2, 1949, 1950, 7, 80, 2, 2, 1950, 1951, 7, 73, 2, 2, 1951, 1952, 7, 71, 2, 2, 1952, 380, 3, 2, 2, 2, 1953, 1954, 7, 69, 2, 2, 1954, 1955, 7, 67, 2, 2, 1955, 1956, 7, 85, 2, 2, 1956, 1957, 7, 69, 2, 2, 1957, 1958, 7, 67, 2, 2, 1958, 1959, 7, 70, 2, 2, 1959, 1960, 7, 71, 2, 2, 1960, 382, 3, 2, 2, 2, 1961, 1962, 7, 84, 2, 2, 1962, 1963, 7, 71, 2, 2, 1963, 1964, 7, 85, 2, 2, 1964, 1965, 7, 86, 2, 2, 1965, 1966, 7, 84, 2, 2, 1966, 1967, 7, 75, 2, 2, 1967, 1968, 7, 69, 2, 2, 1968, 1969, 7, 86, 2, 2, 1969, 384, 3, 2, 2, 2, 1970, 1971, 7, 69, 2, 2, 1971, 1972, 7, 78, 2, 2, 1972, 1973, 7, 87, 2, 2, 1973, 1974, 7, 85, 2, 2, 1974, 1975, 7, 86, 2, 2, 1975, 1976, 7, 71, 2, 2, 1976, 1977, 7, 84, 2, 2, 1977, 1978, 7, 71, 2, 2, 1978, 1979, 7, 70, 2, 2, 1979, 386, 3, 2, 2, 2, 1980, 1981, 7, 85, 2, 2, 1981, 1982, 7, 81, 2, 2, 1982, 1983, 7, 84, 2, 2, 1983, 1984, 7, 86, 2, 2, 1984, 1985, 7, 71, 2, 2, 1985, 1986, 7, 70, 2, 2, 1986, 388, 3, 2, 2, 2, 1987, 1988, 7, 82, 2, 2, 1988, 1989, 7, 87, 2, 2, 1989, 1990, 7, 84, 2, 2, 1990, 1991, 7, 73, 2, 2, 1991, 1992, 7, 71, 2, 2, 1992, 390, 3, 2, 2, 2, 1993, 1994, 7, 75, 2, 2, 1994, 1995, 7, 80, 2, 2, 1995, 1996, 7, 82, 2, 2, 1996, 1997, 7, 87, 2, 2, 1997, 1998, 7, 86, 2, 2, 1998, 1999, 7, 72, 2, 2, 1999, 2000, 7, 81, 2, 2, 2000, 2001, 7, 84, 2, 2, 2001, 2002, 7, 79, 2, 2, 2002, 2003, 7, 67, 2, 2, 2003, 2004, 7, 86, 2, 2, 2004, 392, 3, 2, 2, 2, 2005, 2006, 7, 81, 2, 2, 2006, 2007, 7, 87, 2, 2, 2007, 2008, 7, 86, 2, 2, 2008, 2009, 7, 82, 2, 2, 2009, 2010, 7, 87, 2, 2, 2010, 2011, 7, 86, 2, 2, 2011, 2012, 7, 72, 2, 2, 2012, 2013, 7, 81, 2, 2, 2013, 2014, 7, 84, 2, 2, 2014, 2015, 7, 79, 2, 2, 2015, 2016, 7, 67, 2, 2, 2016, 2017, 7, 86, 2, 2, 2017, 394, 3, 2, 2, 2, 2018, 2019, 7, 70, 2, 2, 2019, 2020, 7, 67, 2, 2, 2020, 2021, 7, 86, 2, 2, 2021, 2022, 7, 67, 2, 2, 2022, 2023, 7, 68, 2, 2, 2023, 2024, 7, 67, 2, 2, 2024, 2025, 7, 85, 2, 2, 2025, 2026, 7, 71, 2, 2, 2026, 396, 3, 2, 2, 2, 2027, 2028, 7, 70, 2, 2, 2028, 2029, 7, 67, 2, 2, 2029, 2030, 7, 86, 2, 2, 2030, 2031, 7, 67, 2, 2, 2031, 2032, 7, 68, 2, 2, 2032, 2033, 7, 67, 2, 2, 2033, 2034, 7, 85, 2, 2, 2034, 2035, 7, 71, 2, 2, 2035, 2036, 7, 85, 2, 2, 2036, 398, 3, 2, 2, 2, 2037, 2038, 7, 70, 2, 2, 2038, 2039, 7, 72, 2, 2, 2039, 2040, 7, 85, 2, 2, 2040, 400, 3, 2, 2, 2, 2041, 2042, 7, 86, 2, 2, 2042, 2043, 7, 84, 2, 2, 2043, 2044, 7, 87, 2, 2, 2044, 2045, 7, 80, 2, 2, 2045, 2046, 7, 69, 2, 2, 2046, 2047, 7, 67, 2, 2, 2047, 2048, 7, 86, 2, 2, 2048, 2049, 7, 71, 2, 2, 2049, 402, 3, 2, 2, 2, 2050, 2051, 7, 67, 2, 2, 2051, 2052, 7, 80, 2, 2, 2052, 2053, 7, 67, 2, 2, 2053, 2054, 7, 78, 2, 2, 2054, 2055, 7, 91, 2, 2, 2055, 2056, 7, 92, 2, 2, 2056, 2057, 7, 71, 2, 2, 2057, 404, 3, 2, 2, 2, 2058, 2059, 7, 69, 2, 2, 2059, 2060, 7, 81, 2, 2, 2060, 2061, 7, 79, 2, 2, 2061, 2062, 7, 82, 2, 2, 2062, 2063, 7, 87, 2, 2, 2063, 2064, 7, 86, 2, 2, 2064, 2065, 7, 71, 2, 2, 2065, 406, 3, 2, 2, 2, 2066, 2067, 7, 78, 2, 2, 2067, 2068, 7, 75, 2, 2, 2068, 2069, 7, 85, 2, 2, 2069, 2070, 7, 86, 2, 2, 2070, 408, 3, 2, 2, 2, 2071, 2072, 7, 85, 2, 2, 2072, 2073, 7, 86, 2, 2, 2073, 2074, 7, 67, 2, 2, 2074, 2075, 7, 86, 2, 2, 2075, 2076, 7, 75, 2, 2, 2076, 2077, 7, 85, 2, 2, 2077, 2078, 7, 86, 2, 2, 2078, 2079, 7, 75, 2, 2, 2079, 2080, 7, 69, 2, 2, 2080, 2081, 7, 85, 2, 2, 2081, 410, 3, 2, 2, 2, 2082, 2083, 7, 82, 2, 2, 2083, 2084, 7, 67, 2, 2, 2084, 2085, 7, 84, 2, 2, 2085, 2086, 7, 86, 2, 2, 2086, 2087, 7, 75, 2, 2, 2087, 2088, 7, 86, 2, 2, 2088, 2089, 7, 75, 2, 2, 2089, 2090, 7, 81, 2, 2, 2090, 2091, 7, 80, 2, 2, 2091, 2092, 7, 71, 2, 2, 2092, 2093, 7, 70, 2, 2, 2093, 412, 3, 2, 2, 2, 2094, 2095, 7, 71, 2, 2, 2095, 2096, 7, 90, 2, 2, 2096, 2097, 7, 86, 2, 2, 2097, 2098, 7, 71, 2, 2, 2098, 2099, 7, 84, 2, 2, 2099, 2100, 7, 80, 2, 2, 2100, 2101, 7, 67, 2, 2, 2101, 2102, 7, 78, 2, 2, 2102, 414, 3, 2, 2, 2, 2103, 2104, 7, 70, 2, 2, 2104, 2105, 7, 71, 2, 2, 2105, 2106, 7, 72, 2, 2, 2106, 2107, 7, 75, 2, 2, 2107, 2108, 7, 80, 2, 2, 2108, 2109, 7, 71, 2, 2, 2109, 2110, 7, 70, 2, 2, 2110, 416, 3, 2, 2, 2, 2111, 2112, 7, 84, 2, 2, 2112, 2113, 7, 71, 2, 2, 2113, 2114, 7, 88, 2, 2, 2114, 2115, 7, 81, 2, 2, 2115, 2116, 7, 77, 2, 2, 2116, 2117, 7, 71, 2, 2, 2117, 418, 3, 2, 2, 2, 2118, 2119, 7, 73, 2, 2, 2119, 2120, 7, 84, 2, 2, 2120, 2121, 7, 67, 2, 2, 2121, 2122, 7, 80, 2, 2, 2122, 2123, 7, 86, 2, 2, 2123, 420, 3, 2, 2, 2, 2124, 2125, 7, 78, 2, 2, 2125, 2126, 7, 81, 2, 2, 2126, 2127, 7, 69, 2, 2, 2127, 2128, 7, 77, 2, 2, 2128, 422, 3, 2, 2, 2, 2129, 2130, 7, 87, 2, 2, 2130, 2131, 7, 80, 2, 2, 2131, 2132, 7, 78, 2, 2, 2132, 2133, 7, 81, 2, 2, 2133, 2134, 7, 69, 2, 2, 2134, 2135, 7, 77, 2, 2, 2135, 424, 3, 2, 2, 2, 2136, 2137, 7, 79, 2, 2, 2137, 2138, 7, 85, 2, 2, 2138, 2139, 7, 69, 2, 2, 2139, 2140, 7, 77, 2, 2, 2140, 426, 3, 2, 2, 2, 2141, 2142, 7, 84, 2, 2, 2142, 2143, 7, 71, 2, 2, 2143, 2144, 7, 82, 2, 2, 2144, 2145, 7, 67, 2, 2, 2145, 2146, 7, 75, 2, 2, 2146, 2147, 7, 84, 2, 2, 2147, 428, 3, 2, 2, 2, 2148, 2149, 7, 84, 2, 2, 2149, 2150, 7, 71, 2, 2, 2150, 2151, 7, 69, 2, 2, 2151, 2152, 7, 81, 2, 2, 2152, 2153, 7, 88, 2, 2, 2153, 2154, 7, 71, 2, 2, 2154, 2155, 7, 84, 2, 2, 2155, 430, 3, 2, 2, 2, 2156, 2157, 7, 71, 2, 2, 2157, 2158, 7, 90, 2, 2, 2158, 2159, 7, 82, 2, 2, 2159, 2160, 7, 81, 2, 2, 2160, 2161, 7, 84, 2, 2, 2161, 2162, 7, 86, 2, 2, 2162, 432, 3, 2, 2, 2, 2163, 2164, 7, 75, 2, 2, 2164, 2165, 7, 79, 2, 2, 2165, 2166, 7, 82, 2, 2, 2166, 2167, 7, 81, 2, 2, 2167, 2168, 7, 84, 2, 2, 2168, 2169, 7, 86, 2, 2, 2169, 434, 3, 2, 2, 2, 2170, 2171, 7, 78, 2, 2, 2171, 2172, 7, 81, 2, 2, 2172, 2173, 7, 67, 2, 2, 2173, 2174, 7, 70, 2, 2, 2174, 436, 3, 2, 2, 2, 2175, 2176, 7, 84, 2, 2, 2176, 2177, 7, 81, 2, 2, 2177, 2178, 7, 78, 2, 2, 2178, 2179, 7, 71, 2, 2, 2179, 438, 3, 2, 2, 2, 2180, 2181, 7, 84, 2, 2, 2181, 2182, 7, 81, 2, 2, 2182, 2183, 7, 78, 2, 2, 2183, 2184, 7, 71, 2, 2, 2184, 2185, 7, 85, 2, 2, 2185, 440, 3, 2, 2, 2, 2186, 2187, 7, 69, 2, 2, 2187, 2188, 7, 81, 2, 2, 2188, 2189, 7, 79, 2, 2, 2189, 2190, 7, 82, 2, 2, 2190, 2191, 7, 67, 2, 2, 2191, 2192, 7, 69, 2, 2, 2192, 2193, 7, 86, 2, 2, 2193, 2194, 7, 75, 2, 2, 2194, 2195, 7, 81, 2, 2, 2195, 2196, 7, 80, 2, 2, 2196, 2197, 7, 85, 2, 2, 2197, 442, 3, 2, 2, 2, 2198, 2199, 7, 82, 2, 2, 2199, 2200, 7, 84, 2, 2, 2200, 2201, 7, 75, 2, 2, 2201, 2202, 7, 80, 2, 2, 2202, 2203, 7, 69, 2, 2, 2203, 2204, 7, 75, 2, 2, 2204, 2205, 7, 82, 2, 2, 2205, 2206, 7, 67, 2, 2, 2206, 2207, 7, 78, 2, 2, 2207, 2208, 7, 85, 2, 2, 2208, 444, 3, 2, 2, 2, 2209, 2210, 7, 86, 2, 2, 2210, 2211, 7, 84, 2, 2, 2211, 2212, 7, 67, 2, 2, 2212, 2213, 7, 80, 2, 2, 2213, 2214, 7, 85, 2, 2, 2214, 2215, 7, 67, 2, 2, 2215, 2216, 7, 69, 2, 2, 2216, 2217, 7, 86, 2, 2, 2217, 2218, 7, 75, 2, 2, 2218, 2219, 7, 81, 2, 2, 2219, 2220, 7, 80, 2, 2, 2220, 2221, 7, 85, 2, 2, 2221, 446, 3, 2, 2, 2, 2222, 2223, 7, 75, 2, 2, 2223, 2224, 7, 80, 2, 2, 2224, 2225, 7, 70, 2, 2, 2225, 2226, 7, 71, 2, 2, 2226, 2227, 7, 90, 2, 2, 2227, 448, 3, 2, 2, 2, 2228, 2229, 7, 75, 2, 2, 2229, 2230, 7, 80, 2, 2, 2230, 2231, 7, 70, 2, 2, 2231, 2232, 7, 71, 2, 2, 2232, 2233, 7, 90, 2, 2, 2233, 2234, 7, 71, 2, 2, 2234, 2235, 7, 85, 2, 2, 2235, 450, 3, 2, 2, 2, 2236, 2237, 7, 78, 2, 2, 2237, 2238, 7, 81, 2, 2, 2238, 2239, 7, 69, 2, 2, 2239, 2240, 7, 77, 2, 2, 2240, 2241, 7, 85, 2, 2, 2241, 452, 3, 2, 2, 2, 2242, 2243, 7, 81, 2, 2, 2243, 2244, 7, 82, 2, 2, 2244, 2245, 7, 86, 2, 2, 2245, 2246, 7, 75, 2, 2, 2246, 2247, 7, 81, 2, 2, 2247, 2248, 7, 80, 2, 2, 2248, 454, 3, 2, 2, 2, 2249, 2250, 7, 67, 2, 2, 2250, 2251, 7, 80, 2, 2, 2251, 2252, 7, 86, 2, 2, 2252, 2253, 7, 75, 2, 2, 2253, 456, 3, 2, 2, 2, 2254, 2255, 7, 78, 2, 2, 2255, 2256, 7, 81, 2, 2, 2256, 2257, 7, 69, 2, 2, 2257, 2258, 7, 67, 2, 2, 2258, 2259, 7, 78, 2, 2, 2259, 458, 3, 2, 2, 2, 2260, 2261, 7, 75, 2, 2, 2261, 2262, 7, 80, 2, 2, 2262, 2263, 7, 82, 2, 2, 2263, 2264, 7, 67, 2, 2, 2264, 2265, 7, 86, 2, 2, 2265, 2266, 7, 74, 2, 2, 2266, 460, 3, 2, 2, 2, 2267, 2268, 7, 89, 2, 2, 2268, 2269, 7, 67, 2, 2, 2269, 2270, 7, 86, 2, 2, 2270, 2271, 7, 71, 2, 2, 2271, 2272, 7, 84, 2, 2, 2272, 2273, 7, 79, 2, 2, 2273, 2274, 7, 67, 2, 2, 2274, 2275, 7, 84, 2, 2, 2275, 2276, 7, 77, 2, 2, 2276, 462, 3, 2, 2, 2, 2277, 2278, 7, 87, 2, 2, 2278, 2279, 7, 80, 2, 2, 2279, 2280, 7, 80, 2, 2, 2280, 2281, 7, 71, 2, 2, 2281, 2282, 7, 85, 2, 2, 2282, 2283, 7, 86, 2, 2, 2283, 464, 3, 2, 2, 2, 2284, 2285, 7, 79, 2, 2, 2285, 2286, 7, 67, 2, 2, 2286, 2287, 7, 86, 2, 2, 2287, 2288, 7, 69, 2, 2, 2288, 2289, 7, 74, 2, 2, 2289, 2290, 7, 97, 2, 2, 2290, 2291, 7, 84, 2, 2, 2291, 2292, 7, 71, 2, 2, 2292, 2293, 7, 69, 2, 2, 2293, 2294, 7, 81, 2, 2, 2294, 2295, 7, 73, 2, 2, 2295, 2296, 7, 80, 2, 2, 2296, 2297, 7, 75, 2, 2, 2297, 2298, 7, 92, 2, 2, 2298, 2299, 7, 71, 2, 2, 2299, 466, 3, 2, 2, 2, 2300, 2301, 7, 79, 2, 2, 2301, 2302, 7, 71, 2, 2, 2302, 2303, 7, 67, 2, 2, 2303, 2304, 7, 85, 2, 2, 2304, 2305, 7, 87, 2, 2, 2305, 2306, 7, 84, 2, 2, 2306, 2307, 7, 71, 2, 2, 2307, 2308, 7, 85, 2, 2, 2308, 468, 3, 2, 2, 2, 2309, 2310, 7, 81, 2, 2, 2310, 2311, 7, 80, 2, 2, 2311, 2312, 7, 71, 2, 2, 2312, 470, 3, 2, 2, 2, 2313, 2314, 7, 82, 2, 2, 2314, 2315, 7, 71, 2, 2, 2315, 2316, 7, 84, 2, 2, 2316, 472, 3, 2, 2, 2, 2317, 2318, 7, 79, 2, 2, 2318, 2319, 7, 67, 2, 2, 2319, 2320, 7, 86, 2, 2, 2320, 2321, 7, 69, 2, 2, 2321, 2322, 7, 74, 2, 2, 2322, 474, 3, 2, 2, 2, 2323, 2324, 7, 85, 2, 2, 2324, 2325, 7, 77, 2, 2, 2325, 2326, 7, 75, 2, 2, 2326, 2327, 7, 82, 2, 2, 2327, 2328, 7, 51, 2, 2, 2328, 476, 3, 2, 2, 2, 2329, 2330, 7, 80, 2, 2, 2330, 2331, 7, 71, 2, 2, 2331, 2332, 7, 90, 2, 2, 2332, 2333, 7, 86, 2, 2, 2333, 478, 3, 2, 2, 2, 2334, 2335, 7, 82, 2, 2, 2335, 2336, 7, 67, 2, 2, 2336, 2337, 7, 85, 2, 2, 2337, 2338, 7, 86, 2, 2, 2338, 480, 3, 2, 2, 2, 2339, 2340, 7, 82, 2, 2, 2340, 2341, 7, 67, 2, 2, 2341, 2342, 7, 86, 2, 2, 2342, 2343, 7, 86, 2, 2, 2343, 2344, 7, 71, 2, 2, 2344, 2345, 7, 84, 2, 2, 2345, 2346, 7, 80, 2, 2, 2346, 482, 3, 2, 2, 2, 2347, 2348, 7, 89, 2, 2, 2348, 2349, 7, 75, 2, 2, 2349, 2350, 7, 86, 2, 2, 2350, 2351, 7, 74, 2, 2, 2351, 2352, 7, 75, 2, 2, 2352, 2353, 7, 80, 2, 2, 2353, 484, 3, 2, 2, 2, 2354, 2355, 7, 70, 2, 2, 2355, 2356, 7, 71, 2, 2, 2356, 2357, 7, 72, 2, 2, 2357, 2358, 7, 75, 2, 2, 2358, 2359, 7, 80, 2, 2, 2359, 2360, 7, 71, 2, 2, 2360, 486, 3, 2, 2, 2, 2361, 2362, 7, 68, 2, 2, 2362, 2363, 7, 75, 2, 2, 2363, 2364, 7, 73, 2, 2, 2364, 2365, 7, 75, 2, 2, 2365, 2366, 7, 80, 2, 2, 2366, 2367, 7, 86, 2, 2, 2367, 2368, 7, 97, 2, 2, 2368, 2369, 7, 78, 2, 2, 2369, 2370, 7, 75, 2, 2, 2370, 2371, 7, 86, 2, 2, 2371, 2372, 7, 71, 2, 2, 2372, 2373, 7, 84, 2, 2, 2373, 2374, 7, 67, 2, 2, 2374, 2375, 7, 78, 2, 2, 2375, 488, 3, 2, 2, 2, 2376, 2377, 7, 85, 2, 2, 2377, 2378, 7, 79, 2, 2, 2378, 2379, 7, 67, 2, 2, 2379, 2380, 7, 78, 2, 2, 2380, 2381, 7, 78, 2, 2, 2381, 2382, 7, 75, 2, 2, 2382, 2383, 7, 80, 2, 2, 2383, 2384, 7, 86, 2, 2, 2384, 2385, 7, 97, 2, 2, 2385, 2386, 7, 78, 2, 2, 2386, 2387, 7, 75, 2, 2, 2387, 2388, 7, 86, 2, 2, 2388, 2389, 7, 71, 2, 2, 2389, 2390, 7, 84, 2, 2, 2390, 2391, 7, 67, 2, 2, 2391, 2392, 7, 78, 2, 2, 2392, 490, 3, 2, 2, 2, 2393, 2394, 7, 86, 2, 2, 2394, 2395, 7, 75, 2, 2, 2395, 2396, 7, 80, 2, 2, 2396, 2397, 7, 91, 2, 2, 2397, 2398, 7, 75, 2, 2, 2398, 2399, 7, 80, 2, 2, 2399, 2400, 7, 86, 2, 2, 2400, 2401, 7, 97, 2, 2, 2401, 2402, 7, 78, 2, 2, 2402, 2403, 7, 75, 2, 2, 2403, 2404, 7, 86, 2, 2, 2404, 2405, 7, 71, 2, 2, 2405, 2406, 7, 84, 2, 2, 2406, 2407, 7, 67, 2, 2, 2407, 2408, 7, 78, 2, 2, 2408, 492, 3, 2, 2, 2, 2409, 2410, 7, 75, 2, 2, 2410, 2411, 7, 80, 2, 2, 2411, 2412, 7, 86, 2, 2, 2412, 2413, 7, 71, 2, 2, 2413, 2414, 7, 73, 2, 2, 2414, 2415, 7, 71, 2, 2, 2415, 2416, 7, 84, 2, 2, 2416, 2417, 7, 97, 2, 2, 2417, 2418, 7, 88, 2, 2, 2418, 2419, 7, 67, 2, 2, 2419, 2420, 7, 78, 2, 2, 2420, 2421, 7, 87, 2, 2, 2421, 2422, 7, 71, 2, 2, 2422, 494, 3, 2, 2, 2, 2423, 2424, 7, 70, 2, 2, 2424, 2425, 7, 71, 2, 2, 2425, 2426, 7, 69, 2, 2, 2426, 2427, 7, 75, 2, 2, 2427, 2428, 7, 79, 2, 2, 2428, 2429, 7, 67, 2, 2, 2429, 2430, 7, 78, 2, 2, 2430, 2431, 7, 97, 2, 2, 2431, 2432, 7, 88, 2, 2, 2432, 2433, 7, 67, 2, 2, 2433, 2434, 7, 78, 2, 2, 2434, 2435, 7, 87, 2, 2, 2435, 2436, 7, 71, 2, 2, 2436, 496, 3, 2, 2, 2, 2437, 2438, 7, 70, 2, 2, 2438, 2439, 7, 81, 2, 2, 2439, 2440, 7, 87, 2, 2, 2440, 2441, 7, 68, 2, 2, 2441, 2442, 7, 78, 2, 2, 2442, 2443, 7, 71, 2, 2, 2443, 2444, 7, 97, 2, 2, 2444, 2445, 7, 78, 2, 2, 2445, 2446, 7, 75, 2, 2, 2446, 2447, 7, 86, 2, 2, 2447, 2448, 7, 71, 2, 2, 2448, 2449, 7, 84, 2, 2, 2449, 2450, 7, 67, 2, 2, 2450, 2451, 7, 78, 2, 2, 2451, 498, 3, 2, 2, 2, 2452, 2453, 7, 68, 2, 2, 2453, 2454, 7, 75, 2, 2, 2454, 2455, 7, 73, 2, 2, 2455, 2456, 7, 70, 2, 2, 2456, 2457, 7, 71, 2, 2, 2457, 2458, 7, 69, 2, 2, 2458, 2459, 7, 75, 2, 2, 2459, 2460, 7, 79, 2, 2, 2460, 2461, 7, 67, 2, 2, 2461, 2462, 7, 78, 2, 2, 2462, 2463, 7, 97, 2, 2, 2463, 2464, 7, 78, 2, 2, 2464, 2465, 7, 75, 2, 2, 2465, 2466, 7, 86, 2, 2, 2466, 2467, 7, 71, 2, 2, 2467, 2468, 7, 84, 2, 2, 2468, 2469, 7, 67, 2, 2, 2469, 2470, 7, 78, 2, 2, 2470, 500, 3, 2, 2, 2, 2471, 2472, 7, 75, 2, 2, 2472, 2473, 7, 70, 2, 2, 2473, 2474, 7, 71, 2, 2, 2474, 2475, 7, 80, 2, 2, 2475, 2476, 7, 86, 2, 2, 2476, 2477, 7, 75, 2, 2, 2477, 2478, 7, 72, 2, 2, 2478, 2479, 7, 75, 2, 2, 2479, 2480, 7, 71, 2, 2, 2480, 2481, 7, 84, 2, 2, 2481, 502, 3, 2, 2, 2, 2482, 2483, 7, 68, 2, 2, 2483, 2484, 7, 67, 2, 2, 2484, 2485, 7, 69, 2, 2, 2485, 2486, 7, 77, 2, 2, 2486, 2487, 7, 83, 2, 2, 2487, 2488, 7, 87, 2, 2, 2488, 2489, 7, 81, 2, 2, 2489, 2490, 7, 86, 2, 2, 2490, 2491, 7, 71, 2, 2, 2491, 2492, 7, 70, 2, 2, 2492, 2493, 7, 97, 2, 2, 2493, 2494, 7, 75, 2, 2, 2494, 2495, 7, 70, 2, 2, 2495, 2496, 7, 71, 2, 2, 2496, 2497, 7, 80, 2, 2, 2497, 2498, 7, 86, 2, 2, 2498, 2499, 7, 75, 2, 2, 2499, 2500, 7, 72, 2, 2, 2500, 2501, 7, 75, 2, 2, 2501, 2502, 7, 71, 2, 2, 2502, 2503, 7, 84, 2, 2, 2503, 504, 3, 2, 2, 2, 2504, 2505, 7, 85, 2, 2, 2505, 2506, 7, 75, 2, 2, 2506, 2507, 7, 79, 2, 2, 2507, 2508, 7, 82, 2, 2, 2508, 2509, 7, 78, 2, 2, 2509, 2510, 7, 71, 2, 2, 2510, 2511, 7, 97, 2, 2, 2511, 2512, 7, 69, 2, 2, 2512, 2513, 7, 81, 2, 2, 2513, 2514, 7, 79, 2, 2, 2514, 2515, 7, 79, 2, 2, 2515, 2516, 7, 71, 2, 2, 2516, 2517, 7, 80, 2, 2, 2517, 2518, 7, 86, 2, 2, 2518, 506, 3, 2, 2, 2, 2519, 2520, 7, 68, 2, 2, 2520, 2521, 7, 84, 2, 2, 2521, 2522, 7, 67, 2, 2, 2522, 2523, 7, 69, 2, 2, 2523, 2524, 7, 77, 2, 2, 2524, 2525, 7, 71, 2, 2, 2525, 2526, 7, 86, 2, 2, 2526, 2527, 7, 71, 2, 2, 2527, 2528, 7, 70, 2, 2, 2528, 2529, 7, 97, 2, 2, 2529, 2530, 7, 71, 2, 2, 2530, 2531, 7, 79, 2, 2, 2531, 2532, 7, 82, 2, 2, 2532, 2533, 7, 86, 2, 2, 2533, 2534, 7, 91, 2, 2, 2534, 2535, 7, 97, 2, 2, 2535, 2536, 7, 69, 2, 2, 2536, 2537, 7, 81, 2, 2, 2537, 2538, 7, 79, 2, 2, 2538, 2539, 7, 79, 2, 2, 2539, 2540, 7, 71, 2, 2, 2540, 2541, 7, 80, 2, 2, 2541, 2542, 7, 86, 2, 2, 2542, 508, 3, 2, 2, 2, 2543, 2544, 7, 68, 2, 2, 2544, 2545, 7, 84, 2, 2, 2545, 2546, 7, 67, 2, 2, 2546, 2547, 7, 69, 2, 2, 2547, 2548, 7, 77, 2, 2, 2548, 2549, 7, 71, 2, 2, 2549, 2550, 7, 86, 2, 2, 2550, 2551, 7, 71, 2, 2, 2551, 2552, 7, 70, 2, 2, 2552, 2553, 7, 97, 2, 2, 2553, 2554, 7, 69, 2, 2, 2554, 2555, 7, 81, 2, 2, 2555, 2556, 7, 79, 2, 2, 2556, 2557, 7, 79, 2, 2, 2557, 2558, 7, 71, 2, 2, 2558, 2559, 7, 80, 2, 2, 2559, 2560, 7, 86, 2, 2, 2560, 510, 3, 2, 2, 2, 2561, 2562, 7, 89, 2, 2, 2562, 2563, 7, 85, 2, 2, 2563, 512, 3, 2, 2, 2, 2564, 2565, 7, 87, 2, 2, 2565, 2566, 7, 80, 2, 2, 2566, 2567, 7, 84, 2, 2, 2567, 2568, 7, 71, 2, 2, 2568, 2569, 7, 69, 2, 2, 2569, 2570, 7, 81, 2, 2, 2570, 2571, 7, 73, 2, 2, 2571, 2572, 7, 80, 2, 2, 2572, 2573, 7, 75, 2, 2, 2573, 2574, 7, 92, 2, 2, 2574, 2575, 7, 71, 2, 2, 2575, 2576, 7, 70, 2, 2, 2576, 514, 3, 2, 2, 2, 2577, 2579, 7, 98, 2, 2, 2578, 2580, 10, 4, 2, 2, 2579, 2578, 3, 2, 2, 2, 2580, 2581, 3, 2, 2, 2, 2581, 2579, 3, 2, 2, 2, 2581, 2582, 3, 2, 2, 2, 2582, 2583, 3, 2, 2, 2, 2583, 2584, 7, 98, 2, 2, 2584, 516, 3, 2, 2, 2, 2585, 2587, 7, 36, 2, 2, 2586, 2588, 10, 5, 2, 2, 2587, 2586, 3, 2, 2, 2, 2588, 2589, 3, 2, 2, 2, 2589, 2587, 3, 2, 2, 2, 2589, 2590, 3, 2, 2, 2, 2590, 2591, 3, 2, 2, 2, 2591, 2592, 7, 36, 2, 2, 2592, 518, 3, 2, 2, 2, 2593, 2594, 7, 48, 2, 2, 2594, 2595, 5, 613, 307, 2, 2595, 520, 3, 2, 2, 2, 2596, 2597, 5, 613, 307, 2, 2597, 522, 3, 2, 2, 2, 2598, 2599, 7, 85, 2, 2, 2599, 2600, 7, 91, 2, 2, 2600, 2601, 7, 85, 2, 2, 2601, 2602, 7, 86, 2, 2, 2602, 2603, 7, 71, 2, 2, 2603, 2604, 7, 79, 2, 2, 2604, 524, 3, 2, 2, 2, 2605, 2606, 7, 85, 2, 2, 2606, 2607, 7, 86, 2, 2, 2607, 2608, 7, 84, 2, 2, 2608, 2609, 7, 75, 2, 2, 2609, 2610, 7, 80, 2, 2, 2610, 2611, 7, 73, 2, 2, 2611, 526, 3, 2, 2, 2, 2612, 2613, 7, 67, 2, 2, 2613, 2614, 7, 84, 2, 2, 2614, 2615, 7, 84, 2, 2, 2615, 2616, 7, 67, 2, 2, 2616, 2617, 7, 91, 2, 2, 2617, 528, 3, 2, 2, 2, 2618, 2619, 7, 79, 2, 2, 2619, 2620, 7, 67, 2, 2, 2620, 2621, 7, 82, 2, 2, 2621, 530, 3, 2, 2, 2, 2622, 2623, 7, 69, 2, 2, 2623, 2624, 7, 74, 2, 2, 2624, 2625, 7, 67, 2, 2, 2625, 2626, 7, 84, 2, 2, 2626, 532, 3, 2, 2, 2, 2627, 2628, 7, 88, 2, 2, 2628, 2629, 7, 67, 2, 2, 2629, 2630, 7, 84, 2, 2, 2630, 2631, 7, 69, 2, 2, 2631, 2632, 7, 74, 2, 2, 2632, 2633, 7, 67, 2, 2, 2633, 2634, 7, 84, 2, 2, 2634, 534, 3, 2, 2, 2, 2635, 2636, 7, 68, 2, 2, 2636, 2637, 7, 75, 2, 2, 2637, 2638, 7, 80, 2, 2, 2638, 2639, 7, 67, 2, 2, 2639, 2640, 7, 84, 2, 2, 2640, 2641, 7, 91, 2, 2, 2641, 536, 3, 2, 2, 2, 2642, 2643, 7, 88, 2, 2, 2643, 2644, 7, 67, 2, 2, 2644, 2645, 7, 84, 2, 2, 2645, 2646, 7, 68, 2, 2, 2646, 2647, 7, 75, 2, 2, 2647, 2648, 7, 80, 2, 2, 2648, 2649, 7, 67, 2, 2, 2649, 2650, 7, 84, 2, 2, 2650, 2651, 7, 91, 2, 2, 2651, 538, 3, 2, 2, 2, 2652, 2653, 7, 68, 2, 2, 2653, 2654, 7, 91, 2, 2, 2654, 2655, 7, 86, 2, 2, 2655, 2656, 7, 71, 2, 2, 2656, 2657, 7, 85, 2, 2, 2657, 540, 3, 2, 2, 2, 2658, 2659, 7, 70, 2, 2, 2659, 2660, 7, 71, 2, 2, 2660, 2661, 7, 69, 2, 2, 2661, 2662, 7, 75, 2, 2, 2662, 2663, 7, 79, 2, 2, 2663, 2664, 7, 67, 2, 2, 2664, 2665, 7, 78, 2, 2, 2665, 542, 3, 2, 2, 2, 2666, 2667, 7, 86, 2, 2, 2667, 2668, 7, 75, 2, 2, 2668, 2669, 7, 80, 2, 2, 2669, 2670, 7, 91, 2, 2, 2670, 2671, 7, 75, 2, 2, 2671, 2672, 7, 80, 2, 2, 2672, 2673, 7, 86, 2, 2, 2673, 544, 3, 2, 2, 2, 2674, 2675, 7, 85, 2, 2, 2675, 2676, 7, 79, 2, 2, 2676, 2677, 7, 67, 2, 2, 2677, 2678, 7, 78, 2, 2, 2678, 2679, 7, 78, 2, 2, 2679, 2680, 7, 75, 2, 2, 2680, 2681, 7, 80, 2, 2, 2681, 2682, 7, 86, 2, 2, 2682, 546, 3, 2, 2, 2, 2683, 2684, 7, 75, 2, 2, 2684, 2685, 7, 80, 2, 2, 2685, 2686, 7, 86, 2, 2, 2686, 548, 3, 2, 2, 2, 2687, 2688, 7, 68, 2, 2, 2688, 2689, 7, 75, 2, 2, 2689, 2690, 7, 73, 2, 2, 2690, 2691, 7, 75, 2, 2, 2691, 2692, 7, 80, 2, 2, 2692, 2693, 7, 86, 2, 2, 2693, 550, 3, 2, 2, 2, 2694, 2695, 7, 72, 2, 2, 2695, 2696, 7, 78, 2, 2, 2696, 2697, 7, 81, 2, 2, 2697, 2698, 7, 67, 2, 2, 2698, 2699, 7, 86, 2, 2, 2699, 552, 3, 2, 2, 2, 2700, 2701, 7, 70, 2, 2, 2701, 2702, 7, 81, 2, 2, 2702, 2703, 7, 87, 2, 2, 2703, 2704, 7, 68, 2, 2, 2704, 2705, 7, 78, 2, 2, 2705, 2706, 7, 71, 2, 2, 2706, 554, 3, 2, 2, 2, 2707, 2708, 7, 70, 2, 2, 2708, 2709, 7, 67, 2, 2, 2709, 2710, 7, 86, 2, 2, 2710, 2711, 7, 71, 2, 2, 2711, 556, 3, 2, 2, 2, 2712, 2713, 7, 86, 2, 2, 2713, 2714, 7, 75, 2, 2, 2714, 2715, 7, 79, 2, 2, 2715, 2716, 7, 71, 2, 2, 2716, 558, 3, 2, 2, 2, 2717, 2718, 7, 86, 2, 2, 2718, 2719, 7, 75, 2, 2, 2719, 2720, 7, 79, 2, 2, 2720, 2721, 7, 71, 2, 2, 2721, 2722, 7, 85, 2, 2, 2722, 2723, 7, 86, 2, 2, 2723, 2724, 7, 67, 2, 2, 2724, 2725, 7, 79, 2, 2, 2725, 2726, 7, 82, 2, 2, 2726, 560, 3, 2, 2, 2, 2727, 2728, 7, 79, 2, 2, 2728, 2729, 7, 87, 2, 2, 2729, 2730, 7, 78, 2, 2, 2730, 2731, 7, 86, 2, 2, 2731, 2732, 7, 75, 2, 2, 2732, 2733, 7, 85, 2, 2, 2733, 2734, 7, 71, 2, 2, 2734, 2735, 7, 86, 2, 2, 2735, 562, 3, 2, 2, 2, 2736, 2737, 7, 68, 2, 2, 2737, 2738, 7, 81, 2, 2, 2738, 2739, 7, 81, 2, 2, 2739, 2740, 7, 78, 2, 2, 2740, 2741, 7, 71, 2, 2, 2741, 2742, 7, 67, 2, 2, 2742, 2743, 7, 80, 2, 2, 2743, 564, 3, 2, 2, 2, 2744, 2745, 7, 84, 2, 2, 2745, 2746, 7, 67, 2, 2, 2746, 2747, 7, 89, 2, 2, 2747, 566, 3, 2, 2, 2, 2748, 2749, 7, 84, 2, 2, 2749, 2750, 7, 81, 2, 2, 2750, 2751, 7, 89, 2, 2, 2751, 568, 3, 2, 2, 2, 2752, 2753, 7, 80, 2, 2, 2753, 2754, 7, 87, 2, 2, 2754, 2755, 7, 78, 2, 2, 2755, 2756, 7, 78, 2, 2, 2756, 570, 3, 2, 2, 2, 2757, 2758, 7, 63, 2, 2, 2758, 572, 3, 2, 2, 2, 2759, 2760, 7, 64, 2, 2, 2760, 574, 3, 2, 2, 2, 2761, 2762, 7, 62, 2, 2, 2762, 576, 3, 2, 2, 2, 2763, 2764, 7, 35, 2, 2, 2764, 578, 3, 2, 2, 2, 2765, 2766, 7, 128, 2, 2, 2766, 580, 3, 2, 2, 2, 2767, 2768, 7, 126, 2, 2, 2768, 582, 3, 2, 2, 2, 2769, 2770, 7, 40, 2, 2, 2770, 584, 3, 2, 2, 2, 2771, 2772, 7, 96, 2, 2, 2772, 586, 3, 2, 2, 2, 2773, 2774, 7, 48, 2, 2, 2774, 588, 3, 2, 2, 2, 2775, 2776, 7, 42, 2, 2, 2776, 590, 3, 2, 2, 2, 2777, 2778, 7, 43, 2, 2, 2778, 592, 3, 2, 2, 2, 2779, 2780, 7, 46, 2, 2, 2780, 594, 3, 2, 2, 2, 2781, 2782, 7, 61, 2, 2, 2782, 596, 3, 2, 2, 2, 2783, 2784, 7, 66, 2, 2, 2784, 598, 3, 2, 2, 2, 2785, 2786, 7, 50, 2, 2, 2786, 600, 3, 2, 2, 2, 2787, 2788, 7, 51, 2, 2, 2788, 602, 3, 2, 2, 2, 2789, 2790, 7, 52, 2, 2, 2790, 604, 3, 2, 2, 2, 2791, 2792, 7, 41, 2, 2, 2792, 606, 3, 2, 2, 2, 2793, 2794, 7, 36, 2, 2, 2794, 608, 3, 2, 2, 2, 2795, 2796, 7, 98, 2, 2, 2796, 610, 3, 2, 2, 2, 2797, 2798, 7, 60, 2, 2, 2798, 612, 3, 2, 2, 2, 2799, 2801, 9, 6, 2, 2, 2800, 2799, 3, 2, 2, 2, 2801, 2804, 3, 2, 2, 2, 2802, 2803, 3, 2, 2, 2, 2802, 2800, 3, 2, 2, 2, 2803, 2806, 3, 2, 2, 2, 2804, 2802, 3, 2, 2, 2, 2805, 2807, 9, 7, 2, 2, 2806, 2805, 3, 2, 2, 2, 2807, 2808, 3, 2, 2, 2, 2808, 2809, 3, 2, 2, 2, 2808, 2806, 3, 2, 2, 2, 2809, 2813, 3, 2, 2, 2, 2810, 2812, 9, 6, 2, 2, 2811, 2810, 3, 2, 2, 2, 2812, 2815, 3, 2, 2, 2, 2813, 2811, 3, 2, 2, 2, 2813, 2814, 3, 2, 2, 2, 2814, 614, 3, 2, 2, 2, 2815, 2813, 3, 2, 2, 2, 18, 2, 618, 629, 642, 654, 659, 663, 667, 673, 677, 679, 2581, 2589, 2802, 2808, 2813, 4, 2, 3, 2, 2, 4, 2] \ No newline at end of file +[3, 24715, 42794, 33075, 47597, 16764, 15335, 30598, 22884, 2, 312, 2956, 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, 3, 3, 6, 3, 650, 10, 3, 13, 3, 14, 3, 651, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 4, 3, 4, 3, 4, 3, 4, 7, 4, 663, 10, 4, 12, 4, 14, 4, 666, 11, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 5, 3, 5, 3, 5, 3, 5, 5, 5, 677, 10, 5, 3, 5, 7, 5, 680, 10, 5, 12, 5, 14, 5, 683, 11, 5, 3, 5, 5, 5, 686, 10, 5, 3, 5, 3, 5, 5, 5, 690, 10, 5, 3, 5, 3, 5, 3, 5, 3, 5, 5, 5, 696, 10, 5, 3, 5, 3, 5, 5, 5, 700, 10, 5, 5, 5, 702, 10, 5, 3, 5, 3, 5, 3, 6, 3, 6, 3, 6, 3, 6, 3, 6, 3, 6, 3, 6, 3, 7, 3, 7, 3, 7, 3, 7, 3, 7, 3, 8, 3, 8, 3, 8, 3, 8, 3, 9, 3, 9, 3, 9, 3, 10, 3, 10, 3, 10, 3, 10, 3, 11, 3, 11, 3, 11, 3, 11, 3, 12, 3, 12, 3, 12, 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, 14, 3, 14, 3, 14, 3, 15, 3, 15, 3, 15, 3, 16, 3, 16, 3, 16, 3, 16, 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, 19, 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, 21, 3, 21, 3, 21, 3, 21, 3, 21, 3, 21, 3, 21, 3, 22, 3, 22, 3, 22, 3, 22, 3, 22, 3, 22, 3, 23, 3, 23, 3, 23, 3, 24, 3, 24, 3, 24, 3, 25, 3, 25, 3, 25, 3, 25, 3, 26, 3, 26, 3, 26, 3, 27, 3, 27, 3, 27, 3, 27, 3, 28, 3, 28, 3, 28, 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, 30, 3, 30, 3, 30, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 32, 3, 32, 3, 32, 3, 32, 3, 32, 3, 32, 3, 33, 3, 33, 3, 33, 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, 36, 3, 36, 3, 37, 3, 37, 3, 37, 3, 37, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 3, 39, 3, 39, 3, 39, 3, 39, 3, 40, 3, 40, 3, 40, 3, 40, 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, 44, 3, 45, 3, 45, 3, 45, 3, 45, 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, 49, 3, 50, 3, 50, 3, 50, 3, 50, 3, 50, 3, 51, 3, 51, 3, 51, 3, 51, 3, 51, 3, 52, 3, 52, 3, 52, 3, 52, 3, 52, 3, 52, 3, 53, 3, 53, 3, 53, 3, 53, 3, 53, 3, 54, 3, 54, 3, 54, 3, 54, 3, 54, 3, 54, 3, 54, 3, 54, 3, 55, 3, 55, 3, 55, 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, 57, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 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, 65, 3, 65, 3, 66, 3, 66, 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, 68, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 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, 72, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 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, 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, 78, 3, 78, 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, 80, 3, 81, 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, 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, 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, 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, 89, 3, 90, 3, 90, 3, 90, 3, 90, 3, 90, 3, 90, 3, 90, 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, 92, 3, 93, 3, 93, 3, 93, 3, 93, 3, 93, 3, 93, 3, 93, 3, 93, 3, 93, 3, 93, 3, 94, 3, 94, 3, 94, 3, 94, 3, 94, 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, 97, 3, 97, 3, 97, 3, 97, 3, 97, 3, 97, 3, 97, 3, 97, 3, 97, 3, 98, 3, 98, 3, 98, 3, 98, 3, 98, 3, 98, 3, 98, 3, 98, 3, 98, 3, 98, 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, 100, 3, 100, 3, 100, 3, 101, 3, 101, 3, 101, 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, 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, 105, 3, 105, 3, 105, 3, 105, 3, 105, 3, 105, 3, 105, 3, 105, 3, 106, 3, 106, 3, 106, 3, 106, 3, 107, 3, 107, 3, 107, 3, 107, 3, 107, 3, 107, 3, 108, 3, 108, 3, 108, 3, 108, 3, 108, 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, 110, 3, 110, 3, 110, 3, 110, 3, 110, 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, 112, 3, 112, 3, 112, 3, 113, 3, 113, 3, 113, 3, 113, 3, 113, 3, 113, 3, 114, 3, 114, 3, 114, 3, 114, 3, 114, 3, 114, 3, 114, 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, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 117, 3, 118, 3, 118, 3, 118, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 120, 3, 120, 3, 120, 3, 120, 3, 120, 3, 120, 3, 120, 3, 120, 3, 121, 3, 121, 3, 121, 3, 122, 3, 122, 3, 122, 3, 122, 3, 122, 3, 123, 3, 123, 3, 123, 3, 123, 3, 124, 3, 124, 3, 124, 3, 124, 3, 124, 3, 125, 3, 125, 3, 125, 3, 126, 3, 126, 3, 126, 3, 126, 3, 127, 3, 127, 3, 127, 3, 128, 3, 128, 3, 128, 3, 128, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 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, 131, 3, 131, 3, 131, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 133, 3, 133, 3, 133, 3, 133, 3, 133, 3, 133, 3, 133, 3, 133, 3, 134, 3, 134, 3, 134, 3, 134, 3, 135, 3, 135, 3, 135, 3, 135, 3, 135, 3, 135, 3, 136, 3, 136, 3, 136, 3, 136, 3, 136, 3, 136, 3, 136, 3, 136, 3, 136, 3, 136, 3, 137, 3, 137, 3, 137, 3, 137, 3, 137, 3, 138, 3, 138, 3, 138, 3, 138, 3, 138, 3, 138, 3, 138, 3, 138, 3, 138, 3, 138, 3, 138, 3, 138, 3, 139, 3, 139, 3, 139, 3, 139, 3, 140, 3, 140, 3, 140, 3, 140, 3, 140, 3, 140, 3, 140, 3, 140, 3, 140, 3, 140, 3, 140, 3, 141, 3, 141, 3, 141, 3, 141, 3, 141, 3, 141, 3, 141, 3, 142, 3, 142, 3, 142, 3, 142, 3, 143, 3, 143, 3, 143, 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, 146, 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, 148, 3, 148, 3, 148, 3, 149, 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, 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, 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, 154, 3, 154, 3, 154, 3, 155, 3, 155, 3, 155, 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, 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, 158, 3, 158, 3, 158, 3, 158, 3, 158, 3, 159, 3, 159, 3, 159, 3, 159, 3, 159, 3, 159, 3, 160, 3, 160, 3, 160, 3, 160, 3, 160, 3, 161, 3, 161, 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, 163, 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, 165, 3, 166, 3, 166, 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, 169, 3, 169, 3, 169, 3, 169, 3, 169, 3, 169, 3, 169, 3, 169, 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, 171, 3, 171, 3, 171, 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, 173, 3, 173, 3, 174, 3, 174, 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, 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, 176, 3, 177, 3, 177, 3, 177, 3, 177, 3, 177, 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, 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, 181, 3, 181, 3, 181, 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, 183, 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, 186, 3, 186, 3, 186, 3, 186, 3, 186, 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, 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, 189, 3, 189, 3, 189, 3, 189, 3, 189, 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, 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, 244, 3, 244, 3, 244, 3, 244, 3, 244, 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, 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, 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, 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, 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, 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, 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, 251, 3, 251, 3, 251, 3, 252, 3, 252, 3, 252, 3, 252, 3, 252, 3, 252, 3, 252, 3, 252, 3, 252, 3, 252, 3, 252, 3, 252, 3, 252, 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, 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, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 3, 254, 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, 255, 3, 255, 3, 255, 3, 255, 3, 255, 3, 255, 3, 255, 3, 255, 3, 255, 3, 255, 3, 255, 3, 255, 3, 256, 3, 256, 3, 256, 3, 257, 3, 257, 3, 257, 3, 257, 3, 257, 3, 257, 3, 257, 3, 257, 3, 257, 3, 257, 3, 257, 3, 257, 3, 257, 3, 258, 3, 258, 6, 258, 2602, 10, 258, 13, 258, 14, 258, 2603, 3, 258, 3, 258, 3, 259, 3, 259, 6, 259, 2610, 10, 259, 13, 259, 14, 259, 2611, 3, 259, 3, 259, 3, 260, 3, 260, 3, 260, 3, 261, 3, 261, 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, 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, 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, 269, 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, 270, 3, 270, 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, 273, 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, 275, 3, 275, 3, 275, 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, 278, 3, 278, 3, 278, 3, 278, 3, 278, 3, 279, 3, 279, 3, 279, 3, 279, 3, 279, 3, 280, 3, 280, 3, 280, 3, 280, 3, 280, 3, 280, 3, 280, 3, 280, 3, 280, 3, 280, 3, 281, 3, 281, 3, 281, 3, 281, 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, 283, 3, 283, 3, 283, 3, 283, 3, 284, 3, 284, 3, 284, 3, 284, 3, 285, 3, 285, 3, 285, 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, 5, 308, 2827, 10, 308, 3, 309, 6, 309, 2830, 10, 309, 13, 309, 14, 309, 2831, 3, 310, 6, 310, 2835, 10, 310, 13, 310, 14, 310, 2836, 5, 310, 2839, 10, 310, 3, 310, 3, 310, 6, 310, 2843, 10, 310, 13, 310, 14, 310, 2844, 3, 310, 6, 310, 2848, 10, 310, 13, 310, 14, 310, 2849, 3, 310, 3, 310, 3, 310, 3, 310, 6, 310, 2856, 10, 310, 13, 310, 14, 310, 2857, 5, 310, 2860, 10, 310, 3, 310, 3, 310, 6, 310, 2864, 10, 310, 13, 310, 14, 310, 2865, 3, 310, 3, 310, 3, 310, 6, 310, 2871, 10, 310, 13, 310, 14, 310, 2872, 3, 310, 3, 310, 5, 310, 2877, 10, 310, 3, 311, 3, 311, 3, 312, 3, 312, 5, 312, 2883, 10, 312, 3, 312, 6, 312, 2886, 10, 312, 13, 312, 14, 312, 2887, 3, 313, 7, 313, 2891, 10, 313, 12, 313, 14, 313, 2894, 11, 313, 3, 313, 6, 313, 2897, 10, 313, 13, 313, 14, 313, 2898, 3, 313, 7, 313, 2902, 10, 313, 12, 313, 14, 313, 2905, 11, 313, 3, 314, 3, 314, 3, 315, 3, 315, 3, 315, 3, 315, 3, 315, 3, 315, 7, 315, 2915, 10, 315, 12, 315, 14, 315, 2918, 11, 315, 3, 315, 3, 315, 3, 316, 3, 316, 3, 316, 3, 316, 3, 316, 3, 316, 7, 316, 2928, 10, 316, 12, 316, 14, 316, 2931, 11, 316, 3, 316, 3, 316, 3, 317, 3, 317, 3, 317, 6, 317, 2938, 10, 317, 13, 317, 14, 317, 2939, 3, 317, 3, 317, 3, 318, 3, 318, 3, 318, 3, 318, 3, 318, 3, 318, 7, 318, 2950, 10, 318, 12, 318, 14, 318, 2953, 11, 318, 3, 318, 3, 318, 6, 651, 664, 2892, 2898, 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, 312, 623, 2, 625, 2, 627, 2, 629, 2, 631, 2, 633, 2, 635, 2, 3, 2, 14, 5, 2, 11, 12, 15, 15, 34, 34, 4, 2, 12, 12, 15, 15, 3, 2, 98, 98, 3, 2, 36, 36, 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, 36, 36, 94, 94, 4, 2, 41, 41, 94, 94, 3, 2, 50, 51, 4, 2, 94, 94, 98, 98, 2, 2989, 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, 3, 638, 3, 2, 2, 2, 5, 644, 3, 2, 2, 2, 7, 658, 3, 2, 2, 2, 9, 701, 3, 2, 2, 2, 11, 705, 3, 2, 2, 2, 13, 712, 3, 2, 2, 2, 15, 717, 3, 2, 2, 2, 17, 721, 3, 2, 2, 2, 19, 724, 3, 2, 2, 2, 21, 728, 3, 2, 2, 2, 23, 732, 3, 2, 2, 2, 25, 741, 3, 2, 2, 2, 27, 747, 3, 2, 2, 2, 29, 753, 3, 2, 2, 2, 31, 756, 3, 2, 2, 2, 33, 765, 3, 2, 2, 2, 35, 770, 3, 2, 2, 2, 37, 775, 3, 2, 2, 2, 39, 782, 3, 2, 2, 2, 41, 788, 3, 2, 2, 2, 43, 795, 3, 2, 2, 2, 45, 801, 3, 2, 2, 2, 47, 804, 3, 2, 2, 2, 49, 807, 3, 2, 2, 2, 51, 811, 3, 2, 2, 2, 53, 814, 3, 2, 2, 2, 55, 818, 3, 2, 2, 2, 57, 821, 3, 2, 2, 2, 59, 828, 3, 2, 2, 2, 61, 836, 3, 2, 2, 2, 63, 841, 3, 2, 2, 2, 65, 847, 3, 2, 2, 2, 67, 850, 3, 2, 2, 2, 69, 855, 3, 2, 2, 2, 71, 861, 3, 2, 2, 2, 73, 867, 3, 2, 2, 2, 75, 871, 3, 2, 2, 2, 77, 876, 3, 2, 2, 2, 79, 880, 3, 2, 2, 2, 81, 889, 3, 2, 2, 2, 83, 894, 3, 2, 2, 2, 85, 899, 3, 2, 2, 2, 87, 904, 3, 2, 2, 2, 89, 909, 3, 2, 2, 2, 91, 913, 3, 2, 2, 2, 93, 918, 3, 2, 2, 2, 95, 924, 3, 2, 2, 2, 97, 930, 3, 2, 2, 2, 99, 936, 3, 2, 2, 2, 101, 941, 3, 2, 2, 2, 103, 946, 3, 2, 2, 2, 105, 952, 3, 2, 2, 2, 107, 957, 3, 2, 2, 2, 109, 965, 3, 2, 2, 2, 111, 968, 3, 2, 2, 2, 113, 974, 3, 2, 2, 2, 115, 982, 3, 2, 2, 2, 117, 989, 3, 2, 2, 2, 119, 994, 3, 2, 2, 2, 121, 1004, 3, 2, 2, 2, 123, 1010, 3, 2, 2, 2, 125, 1015, 3, 2, 2, 2, 127, 1025, 3, 2, 2, 2, 129, 1035, 3, 2, 2, 2, 131, 1045, 3, 2, 2, 2, 133, 1053, 3, 2, 2, 2, 135, 1059, 3, 2, 2, 2, 137, 1065, 3, 2, 2, 2, 139, 1070, 3, 2, 2, 2, 141, 1075, 3, 2, 2, 2, 143, 1082, 3, 2, 2, 2, 145, 1089, 3, 2, 2, 2, 147, 1095, 3, 2, 2, 2, 149, 1105, 3, 2, 2, 2, 151, 1110, 3, 2, 2, 2, 153, 1118, 3, 2, 2, 2, 155, 1125, 3, 2, 2, 2, 157, 1132, 3, 2, 2, 2, 159, 1137, 3, 2, 2, 2, 161, 1146, 3, 2, 2, 2, 163, 1154, 3, 2, 2, 2, 165, 1161, 3, 2, 2, 2, 167, 1169, 3, 2, 2, 2, 169, 1177, 3, 2, 2, 2, 171, 1182, 3, 2, 2, 2, 173, 1187, 3, 2, 2, 2, 175, 1192, 3, 2, 2, 2, 177, 1199, 3, 2, 2, 2, 179, 1207, 3, 2, 2, 2, 181, 1214, 3, 2, 2, 2, 183, 1218, 3, 2, 2, 2, 185, 1229, 3, 2, 2, 2, 187, 1239, 3, 2, 2, 2, 189, 1244, 3, 2, 2, 2, 191, 1250, 3, 2, 2, 2, 193, 1257, 3, 2, 2, 2, 195, 1266, 3, 2, 2, 2, 197, 1276, 3, 2, 2, 2, 199, 1279, 3, 2, 2, 2, 201, 1291, 3, 2, 2, 2, 203, 1300, 3, 2, 2, 2, 205, 1306, 3, 2, 2, 2, 207, 1313, 3, 2, 2, 2, 209, 1320, 3, 2, 2, 2, 211, 1328, 3, 2, 2, 2, 213, 1332, 3, 2, 2, 2, 215, 1338, 3, 2, 2, 2, 217, 1343, 3, 2, 2, 2, 219, 1349, 3, 2, 2, 2, 221, 1361, 3, 2, 2, 2, 223, 1368, 3, 2, 2, 2, 225, 1377, 3, 2, 2, 2, 227, 1383, 3, 2, 2, 2, 229, 1390, 3, 2, 2, 2, 231, 1395, 3, 2, 2, 2, 233, 1403, 3, 2, 2, 2, 235, 1412, 3, 2, 2, 2, 237, 1415, 3, 2, 2, 2, 239, 1424, 3, 2, 2, 2, 241, 1432, 3, 2, 2, 2, 243, 1435, 3, 2, 2, 2, 245, 1440, 3, 2, 2, 2, 247, 1444, 3, 2, 2, 2, 249, 1449, 3, 2, 2, 2, 251, 1452, 3, 2, 2, 2, 253, 1456, 3, 2, 2, 2, 255, 1459, 3, 2, 2, 2, 257, 1463, 3, 2, 2, 2, 259, 1468, 3, 2, 2, 2, 261, 1474, 3, 2, 2, 2, 263, 1483, 3, 2, 2, 2, 265, 1489, 3, 2, 2, 2, 267, 1497, 3, 2, 2, 2, 269, 1501, 3, 2, 2, 2, 271, 1507, 3, 2, 2, 2, 273, 1517, 3, 2, 2, 2, 275, 1522, 3, 2, 2, 2, 277, 1534, 3, 2, 2, 2, 279, 1538, 3, 2, 2, 2, 281, 1549, 3, 2, 2, 2, 283, 1556, 3, 2, 2, 2, 285, 1560, 3, 2, 2, 2, 287, 1563, 3, 2, 2, 2, 289, 1568, 3, 2, 2, 2, 291, 1576, 3, 2, 2, 2, 293, 1587, 3, 2, 2, 2, 295, 1597, 3, 2, 2, 2, 297, 1607, 3, 2, 2, 2, 299, 1614, 3, 2, 2, 2, 301, 1620, 3, 2, 2, 2, 303, 1626, 3, 2, 2, 2, 305, 1642, 3, 2, 2, 2, 307, 1655, 3, 2, 2, 2, 309, 1668, 3, 2, 2, 2, 311, 1678, 3, 2, 2, 2, 313, 1685, 3, 2, 2, 2, 315, 1696, 3, 2, 2, 2, 317, 1707, 3, 2, 2, 2, 319, 1713, 3, 2, 2, 2, 321, 1718, 3, 2, 2, 2, 323, 1726, 3, 2, 2, 2, 325, 1732, 3, 2, 2, 2, 327, 1742, 3, 2, 2, 2, 329, 1751, 3, 2, 2, 2, 331, 1760, 3, 2, 2, 2, 333, 1768, 3, 2, 2, 2, 335, 1774, 3, 2, 2, 2, 337, 1780, 3, 2, 2, 2, 339, 1788, 3, 2, 2, 2, 341, 1793, 3, 2, 2, 2, 343, 1803, 3, 2, 2, 2, 345, 1810, 3, 2, 2, 2, 347, 1820, 3, 2, 2, 2, 349, 1828, 3, 2, 2, 2, 351, 1834, 3, 2, 2, 2, 353, 1848, 3, 2, 2, 2, 355, 1861, 3, 2, 2, 2, 357, 1869, 3, 2, 2, 2, 359, 1876, 3, 2, 2, 2, 361, 1883, 3, 2, 2, 2, 363, 1895, 3, 2, 2, 2, 365, 1904, 3, 2, 2, 2, 367, 1913, 3, 2, 2, 2, 369, 1921, 3, 2, 2, 2, 371, 1931, 3, 2, 2, 2, 373, 1942, 3, 2, 2, 2, 375, 1948, 3, 2, 2, 2, 377, 1956, 3, 2, 2, 2, 379, 1968, 3, 2, 2, 2, 381, 1975, 3, 2, 2, 2, 383, 1983, 3, 2, 2, 2, 385, 1992, 3, 2, 2, 2, 387, 2002, 3, 2, 2, 2, 389, 2009, 3, 2, 2, 2, 391, 2015, 3, 2, 2, 2, 393, 2027, 3, 2, 2, 2, 395, 2040, 3, 2, 2, 2, 397, 2049, 3, 2, 2, 2, 399, 2059, 3, 2, 2, 2, 401, 2063, 3, 2, 2, 2, 403, 2072, 3, 2, 2, 2, 405, 2080, 3, 2, 2, 2, 407, 2088, 3, 2, 2, 2, 409, 2093, 3, 2, 2, 2, 411, 2104, 3, 2, 2, 2, 413, 2116, 3, 2, 2, 2, 415, 2125, 3, 2, 2, 2, 417, 2133, 3, 2, 2, 2, 419, 2140, 3, 2, 2, 2, 421, 2146, 3, 2, 2, 2, 423, 2151, 3, 2, 2, 2, 425, 2158, 3, 2, 2, 2, 427, 2163, 3, 2, 2, 2, 429, 2170, 3, 2, 2, 2, 431, 2178, 3, 2, 2, 2, 433, 2185, 3, 2, 2, 2, 435, 2192, 3, 2, 2, 2, 437, 2197, 3, 2, 2, 2, 439, 2202, 3, 2, 2, 2, 441, 2208, 3, 2, 2, 2, 443, 2220, 3, 2, 2, 2, 445, 2231, 3, 2, 2, 2, 447, 2244, 3, 2, 2, 2, 449, 2250, 3, 2, 2, 2, 451, 2258, 3, 2, 2, 2, 453, 2264, 3, 2, 2, 2, 455, 2271, 3, 2, 2, 2, 457, 2276, 3, 2, 2, 2, 459, 2282, 3, 2, 2, 2, 461, 2289, 3, 2, 2, 2, 463, 2299, 3, 2, 2, 2, 465, 2306, 3, 2, 2, 2, 467, 2322, 3, 2, 2, 2, 469, 2331, 3, 2, 2, 2, 471, 2335, 3, 2, 2, 2, 473, 2339, 3, 2, 2, 2, 475, 2345, 3, 2, 2, 2, 477, 2351, 3, 2, 2, 2, 479, 2356, 3, 2, 2, 2, 481, 2361, 3, 2, 2, 2, 483, 2369, 3, 2, 2, 2, 485, 2376, 3, 2, 2, 2, 487, 2383, 3, 2, 2, 2, 489, 2398, 3, 2, 2, 2, 491, 2415, 3, 2, 2, 2, 493, 2431, 3, 2, 2, 2, 495, 2445, 3, 2, 2, 2, 497, 2459, 3, 2, 2, 2, 499, 2474, 3, 2, 2, 2, 501, 2493, 3, 2, 2, 2, 503, 2504, 3, 2, 2, 2, 505, 2526, 3, 2, 2, 2, 507, 2541, 3, 2, 2, 2, 509, 2565, 3, 2, 2, 2, 511, 2583, 3, 2, 2, 2, 513, 2586, 3, 2, 2, 2, 515, 2599, 3, 2, 2, 2, 517, 2607, 3, 2, 2, 2, 519, 2615, 3, 2, 2, 2, 521, 2618, 3, 2, 2, 2, 523, 2620, 3, 2, 2, 2, 525, 2627, 3, 2, 2, 2, 527, 2634, 3, 2, 2, 2, 529, 2640, 3, 2, 2, 2, 531, 2644, 3, 2, 2, 2, 533, 2649, 3, 2, 2, 2, 535, 2657, 3, 2, 2, 2, 537, 2664, 3, 2, 2, 2, 539, 2674, 3, 2, 2, 2, 541, 2680, 3, 2, 2, 2, 543, 2688, 3, 2, 2, 2, 545, 2696, 3, 2, 2, 2, 547, 2705, 3, 2, 2, 2, 549, 2709, 3, 2, 2, 2, 551, 2716, 3, 2, 2, 2, 553, 2722, 3, 2, 2, 2, 555, 2729, 3, 2, 2, 2, 557, 2734, 3, 2, 2, 2, 559, 2739, 3, 2, 2, 2, 561, 2749, 3, 2, 2, 2, 563, 2758, 3, 2, 2, 2, 565, 2766, 3, 2, 2, 2, 567, 2770, 3, 2, 2, 2, 569, 2774, 3, 2, 2, 2, 571, 2779, 3, 2, 2, 2, 573, 2781, 3, 2, 2, 2, 575, 2783, 3, 2, 2, 2, 577, 2785, 3, 2, 2, 2, 579, 2787, 3, 2, 2, 2, 581, 2789, 3, 2, 2, 2, 583, 2791, 3, 2, 2, 2, 585, 2793, 3, 2, 2, 2, 587, 2795, 3, 2, 2, 2, 589, 2797, 3, 2, 2, 2, 591, 2799, 3, 2, 2, 2, 593, 2801, 3, 2, 2, 2, 595, 2803, 3, 2, 2, 2, 597, 2805, 3, 2, 2, 2, 599, 2807, 3, 2, 2, 2, 601, 2809, 3, 2, 2, 2, 603, 2811, 3, 2, 2, 2, 605, 2813, 3, 2, 2, 2, 607, 2815, 3, 2, 2, 2, 609, 2817, 3, 2, 2, 2, 611, 2819, 3, 2, 2, 2, 613, 2821, 3, 2, 2, 2, 615, 2826, 3, 2, 2, 2, 617, 2829, 3, 2, 2, 2, 619, 2876, 3, 2, 2, 2, 621, 2878, 3, 2, 2, 2, 623, 2880, 3, 2, 2, 2, 625, 2892, 3, 2, 2, 2, 627, 2906, 3, 2, 2, 2, 629, 2908, 3, 2, 2, 2, 631, 2921, 3, 2, 2, 2, 633, 2934, 3, 2, 2, 2, 635, 2943, 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, 647, 7, 35, 2, 2, 647, 649, 3, 2, 2, 2, 648, 650, 11, 2, 2, 2, 649, 648, 3, 2, 2, 2, 650, 651, 3, 2, 2, 2, 651, 652, 3, 2, 2, 2, 651, 649, 3, 2, 2, 2, 652, 653, 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, 3, 2, 657, 6, 3, 2, 2, 2, 658, 659, 7, 49, 2, 2, 659, 660, 7, 44, 2, 2, 660, 664, 3, 2, 2, 2, 661, 663, 11, 2, 2, 2, 662, 661, 3, 2, 2, 2, 663, 666, 3, 2, 2, 2, 664, 665, 3, 2, 2, 2, 664, 662, 3, 2, 2, 2, 665, 667, 3, 2, 2, 2, 666, 664, 3, 2, 2, 2, 667, 668, 7, 44, 2, 2, 668, 669, 7, 49, 2, 2, 669, 670, 3, 2, 2, 2, 670, 671, 8, 4, 2, 2, 671, 8, 3, 2, 2, 2, 672, 673, 7, 47, 2, 2, 673, 674, 7, 47, 2, 2, 674, 677, 7, 34, 2, 2, 675, 677, 7, 37, 2, 2, 676, 672, 3, 2, 2, 2, 676, 675, 3, 2, 2, 2, 677, 681, 3, 2, 2, 2, 678, 680, 10, 3, 2, 2, 679, 678, 3, 2, 2, 2, 680, 683, 3, 2, 2, 2, 681, 679, 3, 2, 2, 2, 681, 682, 3, 2, 2, 2, 682, 689, 3, 2, 2, 2, 683, 681, 3, 2, 2, 2, 684, 686, 7, 15, 2, 2, 685, 684, 3, 2, 2, 2, 685, 686, 3, 2, 2, 2, 686, 687, 3, 2, 2, 2, 687, 690, 7, 12, 2, 2, 688, 690, 7, 2, 2, 3, 689, 685, 3, 2, 2, 2, 689, 688, 3, 2, 2, 2, 690, 702, 3, 2, 2, 2, 691, 692, 7, 47, 2, 2, 692, 693, 7, 47, 2, 2, 693, 699, 3, 2, 2, 2, 694, 696, 7, 15, 2, 2, 695, 694, 3, 2, 2, 2, 695, 696, 3, 2, 2, 2, 696, 697, 3, 2, 2, 2, 697, 700, 7, 12, 2, 2, 698, 700, 7, 2, 2, 3, 699, 695, 3, 2, 2, 2, 699, 698, 3, 2, 2, 2, 700, 702, 3, 2, 2, 2, 701, 676, 3, 2, 2, 2, 701, 691, 3, 2, 2, 2, 702, 703, 3, 2, 2, 2, 703, 704, 8, 5, 2, 2, 704, 10, 3, 2, 2, 2, 705, 706, 7, 85, 2, 2, 706, 707, 7, 71, 2, 2, 707, 708, 7, 78, 2, 2, 708, 709, 7, 71, 2, 2, 709, 710, 7, 69, 2, 2, 710, 711, 7, 86, 2, 2, 711, 12, 3, 2, 2, 2, 712, 713, 7, 72, 2, 2, 713, 714, 7, 84, 2, 2, 714, 715, 7, 81, 2, 2, 715, 716, 7, 79, 2, 2, 716, 14, 3, 2, 2, 2, 717, 718, 7, 67, 2, 2, 718, 719, 7, 70, 2, 2, 719, 720, 7, 70, 2, 2, 720, 16, 3, 2, 2, 2, 721, 722, 7, 67, 2, 2, 722, 723, 7, 85, 2, 2, 723, 18, 3, 2, 2, 2, 724, 725, 7, 67, 2, 2, 725, 726, 7, 78, 2, 2, 726, 727, 7, 78, 2, 2, 727, 20, 3, 2, 2, 2, 728, 729, 7, 67, 2, 2, 729, 730, 7, 80, 2, 2, 730, 731, 7, 91, 2, 2, 731, 22, 3, 2, 2, 2, 732, 733, 7, 70, 2, 2, 733, 734, 7, 75, 2, 2, 734, 735, 7, 85, 2, 2, 735, 736, 7, 86, 2, 2, 736, 737, 7, 75, 2, 2, 737, 738, 7, 80, 2, 2, 738, 739, 7, 69, 2, 2, 739, 740, 7, 86, 2, 2, 740, 24, 3, 2, 2, 2, 741, 742, 7, 89, 2, 2, 742, 743, 7, 74, 2, 2, 743, 744, 7, 71, 2, 2, 744, 745, 7, 84, 2, 2, 745, 746, 7, 71, 2, 2, 746, 26, 3, 2, 2, 2, 747, 748, 7, 73, 2, 2, 748, 749, 7, 84, 2, 2, 749, 750, 7, 81, 2, 2, 750, 751, 7, 87, 2, 2, 751, 752, 7, 82, 2, 2, 752, 28, 3, 2, 2, 2, 753, 754, 7, 68, 2, 2, 754, 755, 7, 91, 2, 2, 755, 30, 3, 2, 2, 2, 756, 757, 7, 73, 2, 2, 757, 758, 7, 84, 2, 2, 758, 759, 7, 81, 2, 2, 759, 760, 7, 87, 2, 2, 760, 761, 7, 82, 2, 2, 761, 762, 7, 75, 2, 2, 762, 763, 7, 80, 2, 2, 763, 764, 7, 73, 2, 2, 764, 32, 3, 2, 2, 2, 765, 766, 7, 85, 2, 2, 766, 767, 7, 71, 2, 2, 767, 768, 7, 86, 2, 2, 768, 769, 7, 85, 2, 2, 769, 34, 3, 2, 2, 2, 770, 771, 7, 69, 2, 2, 771, 772, 7, 87, 2, 2, 772, 773, 7, 68, 2, 2, 773, 774, 7, 71, 2, 2, 774, 36, 3, 2, 2, 2, 775, 776, 7, 84, 2, 2, 776, 777, 7, 81, 2, 2, 777, 778, 7, 78, 2, 2, 778, 779, 7, 78, 2, 2, 779, 780, 7, 87, 2, 2, 780, 781, 7, 82, 2, 2, 781, 38, 3, 2, 2, 2, 782, 783, 7, 81, 2, 2, 783, 784, 7, 84, 2, 2, 784, 785, 7, 70, 2, 2, 785, 786, 7, 71, 2, 2, 786, 787, 7, 84, 2, 2, 787, 40, 3, 2, 2, 2, 788, 789, 7, 74, 2, 2, 789, 790, 7, 67, 2, 2, 790, 791, 7, 88, 2, 2, 791, 792, 7, 75, 2, 2, 792, 793, 7, 80, 2, 2, 793, 794, 7, 73, 2, 2, 794, 42, 3, 2, 2, 2, 795, 796, 7, 78, 2, 2, 796, 797, 7, 75, 2, 2, 797, 798, 7, 79, 2, 2, 798, 799, 7, 75, 2, 2, 799, 800, 7, 86, 2, 2, 800, 44, 3, 2, 2, 2, 801, 802, 7, 67, 2, 2, 802, 803, 7, 86, 2, 2, 803, 46, 3, 2, 2, 2, 804, 805, 7, 81, 2, 2, 805, 806, 7, 84, 2, 2, 806, 48, 3, 2, 2, 2, 807, 808, 7, 67, 2, 2, 808, 809, 7, 80, 2, 2, 809, 810, 7, 70, 2, 2, 810, 50, 3, 2, 2, 2, 811, 812, 7, 75, 2, 2, 812, 813, 7, 80, 2, 2, 813, 52, 3, 2, 2, 2, 814, 815, 7, 80, 2, 2, 815, 816, 7, 81, 2, 2, 816, 817, 7, 86, 2, 2, 817, 54, 3, 2, 2, 2, 818, 819, 7, 80, 2, 2, 819, 820, 7, 81, 2, 2, 820, 56, 3, 2, 2, 2, 821, 822, 7, 71, 2, 2, 822, 823, 7, 90, 2, 2, 823, 824, 7, 75, 2, 2, 824, 825, 7, 85, 2, 2, 825, 826, 7, 86, 2, 2, 826, 827, 7, 85, 2, 2, 827, 58, 3, 2, 2, 2, 828, 829, 7, 68, 2, 2, 829, 830, 7, 71, 2, 2, 830, 831, 7, 86, 2, 2, 831, 832, 7, 89, 2, 2, 832, 833, 7, 71, 2, 2, 833, 834, 7, 71, 2, 2, 834, 835, 7, 80, 2, 2, 835, 60, 3, 2, 2, 2, 836, 837, 7, 78, 2, 2, 837, 838, 7, 75, 2, 2, 838, 839, 7, 77, 2, 2, 839, 840, 7, 71, 2, 2, 840, 62, 3, 2, 2, 2, 841, 842, 7, 84, 2, 2, 842, 843, 7, 78, 2, 2, 843, 844, 7, 75, 2, 2, 844, 845, 7, 77, 2, 2, 845, 846, 7, 71, 2, 2, 846, 64, 3, 2, 2, 2, 847, 848, 7, 75, 2, 2, 848, 849, 7, 85, 2, 2, 849, 66, 3, 2, 2, 2, 850, 851, 7, 86, 2, 2, 851, 852, 7, 84, 2, 2, 852, 853, 7, 87, 2, 2, 853, 854, 7, 71, 2, 2, 854, 68, 3, 2, 2, 2, 855, 856, 7, 72, 2, 2, 856, 857, 7, 67, 2, 2, 857, 858, 7, 78, 2, 2, 858, 859, 7, 85, 2, 2, 859, 860, 7, 71, 2, 2, 860, 70, 3, 2, 2, 2, 861, 862, 7, 80, 2, 2, 862, 863, 7, 87, 2, 2, 863, 864, 7, 78, 2, 2, 864, 865, 7, 78, 2, 2, 865, 866, 7, 85, 2, 2, 866, 72, 3, 2, 2, 2, 867, 868, 7, 67, 2, 2, 868, 869, 7, 85, 2, 2, 869, 870, 7, 69, 2, 2, 870, 74, 3, 2, 2, 2, 871, 872, 7, 70, 2, 2, 872, 873, 7, 71, 2, 2, 873, 874, 7, 85, 2, 2, 874, 875, 7, 69, 2, 2, 875, 76, 3, 2, 2, 2, 876, 877, 7, 72, 2, 2, 877, 878, 7, 81, 2, 2, 878, 879, 7, 84, 2, 2, 879, 78, 3, 2, 2, 2, 880, 881, 7, 75, 2, 2, 881, 882, 7, 80, 2, 2, 882, 883, 7, 86, 2, 2, 883, 884, 7, 71, 2, 2, 884, 885, 7, 84, 2, 2, 885, 886, 7, 88, 2, 2, 886, 887, 7, 67, 2, 2, 887, 888, 7, 78, 2, 2, 888, 80, 3, 2, 2, 2, 889, 890, 7, 69, 2, 2, 890, 891, 7, 67, 2, 2, 891, 892, 7, 85, 2, 2, 892, 893, 7, 71, 2, 2, 893, 82, 3, 2, 2, 2, 894, 895, 7, 89, 2, 2, 895, 896, 7, 74, 2, 2, 896, 897, 7, 71, 2, 2, 897, 898, 7, 80, 2, 2, 898, 84, 3, 2, 2, 2, 899, 900, 7, 86, 2, 2, 900, 901, 7, 74, 2, 2, 901, 902, 7, 71, 2, 2, 902, 903, 7, 80, 2, 2, 903, 86, 3, 2, 2, 2, 904, 905, 7, 71, 2, 2, 905, 906, 7, 78, 2, 2, 906, 907, 7, 85, 2, 2, 907, 908, 7, 71, 2, 2, 908, 88, 3, 2, 2, 2, 909, 910, 7, 71, 2, 2, 910, 911, 7, 80, 2, 2, 911, 912, 7, 70, 2, 2, 912, 90, 3, 2, 2, 2, 913, 914, 7, 76, 2, 2, 914, 915, 7, 81, 2, 2, 915, 916, 7, 75, 2, 2, 916, 917, 7, 80, 2, 2, 917, 92, 3, 2, 2, 2, 918, 919, 7, 69, 2, 2, 919, 920, 7, 84, 2, 2, 920, 921, 7, 81, 2, 2, 921, 922, 7, 85, 2, 2, 922, 923, 7, 85, 2, 2, 923, 94, 3, 2, 2, 2, 924, 925, 7, 81, 2, 2, 925, 926, 7, 87, 2, 2, 926, 927, 7, 86, 2, 2, 927, 928, 7, 71, 2, 2, 928, 929, 7, 84, 2, 2, 929, 96, 3, 2, 2, 2, 930, 931, 7, 75, 2, 2, 931, 932, 7, 80, 2, 2, 932, 933, 7, 80, 2, 2, 933, 934, 7, 71, 2, 2, 934, 935, 7, 84, 2, 2, 935, 98, 3, 2, 2, 2, 936, 937, 7, 78, 2, 2, 937, 938, 7, 71, 2, 2, 938, 939, 7, 72, 2, 2, 939, 940, 7, 86, 2, 2, 940, 100, 3, 2, 2, 2, 941, 942, 7, 85, 2, 2, 942, 943, 7, 71, 2, 2, 943, 944, 7, 79, 2, 2, 944, 945, 7, 75, 2, 2, 945, 102, 3, 2, 2, 2, 946, 947, 7, 84, 2, 2, 947, 948, 7, 75, 2, 2, 948, 949, 7, 73, 2, 2, 949, 950, 7, 74, 2, 2, 950, 951, 7, 86, 2, 2, 951, 104, 3, 2, 2, 2, 952, 953, 7, 72, 2, 2, 953, 954, 7, 87, 2, 2, 954, 955, 7, 78, 2, 2, 955, 956, 7, 78, 2, 2, 956, 106, 3, 2, 2, 2, 957, 958, 7, 80, 2, 2, 958, 959, 7, 67, 2, 2, 959, 960, 7, 86, 2, 2, 960, 961, 7, 87, 2, 2, 961, 962, 7, 84, 2, 2, 962, 963, 7, 67, 2, 2, 963, 964, 7, 78, 2, 2, 964, 108, 3, 2, 2, 2, 965, 966, 7, 81, 2, 2, 966, 967, 7, 80, 2, 2, 967, 110, 3, 2, 2, 2, 968, 969, 7, 82, 2, 2, 969, 970, 7, 75, 2, 2, 970, 971, 7, 88, 2, 2, 971, 972, 7, 81, 2, 2, 972, 973, 7, 86, 2, 2, 973, 112, 3, 2, 2, 2, 974, 975, 7, 78, 2, 2, 975, 976, 7, 67, 2, 2, 976, 977, 7, 86, 2, 2, 977, 978, 7, 71, 2, 2, 978, 979, 7, 84, 2, 2, 979, 980, 7, 67, 2, 2, 980, 981, 7, 78, 2, 2, 981, 114, 3, 2, 2, 2, 982, 983, 7, 89, 2, 2, 983, 984, 7, 75, 2, 2, 984, 985, 7, 80, 2, 2, 985, 986, 7, 70, 2, 2, 986, 987, 7, 81, 2, 2, 987, 988, 7, 89, 2, 2, 988, 116, 3, 2, 2, 2, 989, 990, 7, 81, 2, 2, 990, 991, 7, 88, 2, 2, 991, 992, 7, 71, 2, 2, 992, 993, 7, 84, 2, 2, 993, 118, 3, 2, 2, 2, 994, 995, 7, 82, 2, 2, 995, 996, 7, 67, 2, 2, 996, 997, 7, 84, 2, 2, 997, 998, 7, 86, 2, 2, 998, 999, 7, 75, 2, 2, 999, 1000, 7, 86, 2, 2, 1000, 1001, 7, 75, 2, 2, 1001, 1002, 7, 81, 2, 2, 1002, 1003, 7, 80, 2, 2, 1003, 120, 3, 2, 2, 2, 1004, 1005, 7, 84, 2, 2, 1005, 1006, 7, 67, 2, 2, 1006, 1007, 7, 80, 2, 2, 1007, 1008, 7, 73, 2, 2, 1008, 1009, 7, 71, 2, 2, 1009, 122, 3, 2, 2, 2, 1010, 1011, 7, 84, 2, 2, 1011, 1012, 7, 81, 2, 2, 1012, 1013, 7, 89, 2, 2, 1013, 1014, 7, 85, 2, 2, 1014, 124, 3, 2, 2, 2, 1015, 1016, 7, 87, 2, 2, 1016, 1017, 7, 80, 2, 2, 1017, 1018, 7, 68, 2, 2, 1018, 1019, 7, 81, 2, 2, 1019, 1020, 7, 87, 2, 2, 1020, 1021, 7, 80, 2, 2, 1021, 1022, 7, 70, 2, 2, 1022, 1023, 7, 71, 2, 2, 1023, 1024, 7, 70, 2, 2, 1024, 126, 3, 2, 2, 2, 1025, 1026, 7, 82, 2, 2, 1026, 1027, 7, 84, 2, 2, 1027, 1028, 7, 71, 2, 2, 1028, 1029, 7, 69, 2, 2, 1029, 1030, 7, 71, 2, 2, 1030, 1031, 7, 70, 2, 2, 1031, 1032, 7, 75, 2, 2, 1032, 1033, 7, 80, 2, 2, 1033, 1034, 7, 73, 2, 2, 1034, 128, 3, 2, 2, 2, 1035, 1036, 7, 72, 2, 2, 1036, 1037, 7, 81, 2, 2, 1037, 1038, 7, 78, 2, 2, 1038, 1039, 7, 78, 2, 2, 1039, 1040, 7, 81, 2, 2, 1040, 1041, 7, 89, 2, 2, 1041, 1042, 7, 75, 2, 2, 1042, 1043, 7, 80, 2, 2, 1043, 1044, 7, 73, 2, 2, 1044, 130, 3, 2, 2, 2, 1045, 1046, 7, 69, 2, 2, 1046, 1047, 7, 87, 2, 2, 1047, 1048, 7, 84, 2, 2, 1048, 1049, 7, 84, 2, 2, 1049, 1050, 7, 71, 2, 2, 1050, 1051, 7, 80, 2, 2, 1051, 1052, 7, 86, 2, 2, 1052, 132, 3, 2, 2, 2, 1053, 1054, 7, 72, 2, 2, 1054, 1055, 7, 75, 2, 2, 1055, 1056, 7, 84, 2, 2, 1056, 1057, 7, 85, 2, 2, 1057, 1058, 7, 86, 2, 2, 1058, 134, 3, 2, 2, 2, 1059, 1060, 7, 67, 2, 2, 1060, 1061, 7, 72, 2, 2, 1061, 1062, 7, 86, 2, 2, 1062, 1063, 7, 71, 2, 2, 1063, 1064, 7, 84, 2, 2, 1064, 136, 3, 2, 2, 2, 1065, 1066, 7, 78, 2, 2, 1066, 1067, 7, 67, 2, 2, 1067, 1068, 7, 85, 2, 2, 1068, 1069, 7, 86, 2, 2, 1069, 138, 3, 2, 2, 2, 1070, 1071, 7, 89, 2, 2, 1071, 1072, 7, 75, 2, 2, 1072, 1073, 7, 86, 2, 2, 1073, 1074, 7, 74, 2, 2, 1074, 140, 3, 2, 2, 2, 1075, 1076, 7, 88, 2, 2, 1076, 1077, 7, 67, 2, 2, 1077, 1078, 7, 78, 2, 2, 1078, 1079, 7, 87, 2, 2, 1079, 1080, 7, 71, 2, 2, 1080, 1081, 7, 85, 2, 2, 1081, 142, 3, 2, 2, 2, 1082, 1083, 7, 69, 2, 2, 1083, 1084, 7, 84, 2, 2, 1084, 1085, 7, 71, 2, 2, 1085, 1086, 7, 67, 2, 2, 1086, 1087, 7, 86, 2, 2, 1087, 1088, 7, 71, 2, 2, 1088, 144, 3, 2, 2, 2, 1089, 1090, 7, 86, 2, 2, 1090, 1091, 7, 67, 2, 2, 1091, 1092, 7, 68, 2, 2, 1092, 1093, 7, 78, 2, 2, 1093, 1094, 7, 71, 2, 2, 1094, 146, 3, 2, 2, 2, 1095, 1096, 7, 70, 2, 2, 1096, 1097, 7, 75, 2, 2, 1097, 1098, 7, 84, 2, 2, 1098, 1099, 7, 71, 2, 2, 1099, 1100, 7, 69, 2, 2, 1100, 1101, 7, 86, 2, 2, 1101, 1102, 7, 81, 2, 2, 1102, 1103, 7, 84, 2, 2, 1103, 1104, 7, 91, 2, 2, 1104, 148, 3, 2, 2, 2, 1105, 1106, 7, 88, 2, 2, 1106, 1107, 7, 75, 2, 2, 1107, 1108, 7, 71, 2, 2, 1108, 1109, 7, 89, 2, 2, 1109, 150, 3, 2, 2, 2, 1110, 1111, 7, 84, 2, 2, 1111, 1112, 7, 71, 2, 2, 1112, 1113, 7, 82, 2, 2, 1113, 1114, 7, 78, 2, 2, 1114, 1115, 7, 67, 2, 2, 1115, 1116, 7, 69, 2, 2, 1116, 1117, 7, 71, 2, 2, 1117, 152, 3, 2, 2, 2, 1118, 1119, 7, 75, 2, 2, 1119, 1120, 7, 80, 2, 2, 1120, 1121, 7, 85, 2, 2, 1121, 1122, 7, 71, 2, 2, 1122, 1123, 7, 84, 2, 2, 1123, 1124, 7, 86, 2, 2, 1124, 154, 3, 2, 2, 2, 1125, 1126, 7, 70, 2, 2, 1126, 1127, 7, 71, 2, 2, 1127, 1128, 7, 78, 2, 2, 1128, 1129, 7, 71, 2, 2, 1129, 1130, 7, 86, 2, 2, 1130, 1131, 7, 71, 2, 2, 1131, 156, 3, 2, 2, 2, 1132, 1133, 7, 75, 2, 2, 1133, 1134, 7, 80, 2, 2, 1134, 1135, 7, 86, 2, 2, 1135, 1136, 7, 81, 2, 2, 1136, 158, 3, 2, 2, 2, 1137, 1138, 7, 70, 2, 2, 1138, 1139, 7, 71, 2, 2, 1139, 1140, 7, 85, 2, 2, 1140, 1141, 7, 69, 2, 2, 1141, 1142, 7, 84, 2, 2, 1142, 1143, 7, 75, 2, 2, 1143, 1144, 7, 68, 2, 2, 1144, 1145, 7, 71, 2, 2, 1145, 160, 3, 2, 2, 2, 1146, 1147, 7, 71, 2, 2, 1147, 1148, 7, 90, 2, 2, 1148, 1149, 7, 82, 2, 2, 1149, 1150, 7, 78, 2, 2, 1150, 1151, 7, 67, 2, 2, 1151, 1152, 7, 75, 2, 2, 1152, 1153, 7, 80, 2, 2, 1153, 162, 3, 2, 2, 2, 1154, 1155, 7, 72, 2, 2, 1155, 1156, 7, 81, 2, 2, 1156, 1157, 7, 84, 2, 2, 1157, 1158, 7, 79, 2, 2, 1158, 1159, 7, 67, 2, 2, 1159, 1160, 7, 86, 2, 2, 1160, 164, 3, 2, 2, 2, 1161, 1162, 7, 78, 2, 2, 1162, 1163, 7, 81, 2, 2, 1163, 1164, 7, 73, 2, 2, 1164, 1165, 7, 75, 2, 2, 1165, 1166, 7, 69, 2, 2, 1166, 1167, 7, 67, 2, 2, 1167, 1168, 7, 78, 2, 2, 1168, 166, 3, 2, 2, 2, 1169, 1170, 7, 69, 2, 2, 1170, 1171, 7, 81, 2, 2, 1171, 1172, 7, 70, 2, 2, 1172, 1173, 7, 71, 2, 2, 1173, 1174, 7, 73, 2, 2, 1174, 1175, 7, 71, 2, 2, 1175, 1176, 7, 80, 2, 2, 1176, 168, 3, 2, 2, 2, 1177, 1178, 7, 69, 2, 2, 1178, 1179, 7, 81, 2, 2, 1179, 1180, 7, 85, 2, 2, 1180, 1181, 7, 86, 2, 2, 1181, 170, 3, 2, 2, 2, 1182, 1183, 7, 69, 2, 2, 1183, 1184, 7, 67, 2, 2, 1184, 1185, 7, 85, 2, 2, 1185, 1186, 7, 86, 2, 2, 1186, 172, 3, 2, 2, 2, 1187, 1188, 7, 85, 2, 2, 1188, 1189, 7, 74, 2, 2, 1189, 1190, 7, 81, 2, 2, 1190, 1191, 7, 89, 2, 2, 1191, 174, 3, 2, 2, 2, 1192, 1193, 7, 86, 2, 2, 1193, 1194, 7, 67, 2, 2, 1194, 1195, 7, 68, 2, 2, 1195, 1196, 7, 78, 2, 2, 1196, 1197, 7, 71, 2, 2, 1197, 1198, 7, 85, 2, 2, 1198, 176, 3, 2, 2, 2, 1199, 1200, 7, 69, 2, 2, 1200, 1201, 7, 81, 2, 2, 1201, 1202, 7, 78, 2, 2, 1202, 1203, 7, 87, 2, 2, 1203, 1204, 7, 79, 2, 2, 1204, 1205, 7, 80, 2, 2, 1205, 1206, 7, 85, 2, 2, 1206, 178, 3, 2, 2, 2, 1207, 1208, 7, 69, 2, 2, 1208, 1209, 7, 81, 2, 2, 1209, 1210, 7, 78, 2, 2, 1210, 1211, 7, 87, 2, 2, 1211, 1212, 7, 79, 2, 2, 1212, 1213, 7, 80, 2, 2, 1213, 180, 3, 2, 2, 2, 1214, 1215, 7, 87, 2, 2, 1215, 1216, 7, 85, 2, 2, 1216, 1217, 7, 71, 2, 2, 1217, 182, 3, 2, 2, 2, 1218, 1219, 7, 82, 2, 2, 1219, 1220, 7, 67, 2, 2, 1220, 1221, 7, 84, 2, 2, 1221, 1222, 7, 86, 2, 2, 1222, 1223, 7, 75, 2, 2, 1223, 1224, 7, 86, 2, 2, 1224, 1225, 7, 75, 2, 2, 1225, 1226, 7, 81, 2, 2, 1226, 1227, 7, 80, 2, 2, 1227, 1228, 7, 85, 2, 2, 1228, 184, 3, 2, 2, 2, 1229, 1230, 7, 72, 2, 2, 1230, 1231, 7, 87, 2, 2, 1231, 1232, 7, 80, 2, 2, 1232, 1233, 7, 69, 2, 2, 1233, 1234, 7, 86, 2, 2, 1234, 1235, 7, 75, 2, 2, 1235, 1236, 7, 81, 2, 2, 1236, 1237, 7, 80, 2, 2, 1237, 1238, 7, 85, 2, 2, 1238, 186, 3, 2, 2, 2, 1239, 1240, 7, 70, 2, 2, 1240, 1241, 7, 84, 2, 2, 1241, 1242, 7, 81, 2, 2, 1242, 1243, 7, 82, 2, 2, 1243, 188, 3, 2, 2, 2, 1244, 1245, 7, 87, 2, 2, 1245, 1246, 7, 80, 2, 2, 1246, 1247, 7, 75, 2, 2, 1247, 1248, 7, 81, 2, 2, 1248, 1249, 7, 80, 2, 2, 1249, 190, 3, 2, 2, 2, 1250, 1251, 7, 71, 2, 2, 1251, 1252, 7, 90, 2, 2, 1252, 1253, 7, 69, 2, 2, 1253, 1254, 7, 71, 2, 2, 1254, 1255, 7, 82, 2, 2, 1255, 1256, 7, 86, 2, 2, 1256, 192, 3, 2, 2, 2, 1257, 1258, 7, 85, 2, 2, 1258, 1259, 7, 71, 2, 2, 1259, 1260, 7, 86, 2, 2, 1260, 1261, 7, 79, 2, 2, 1261, 1262, 7, 75, 2, 2, 1262, 1263, 7, 80, 2, 2, 1263, 1264, 7, 87, 2, 2, 1264, 1265, 7, 85, 2, 2, 1265, 194, 3, 2, 2, 2, 1266, 1267, 7, 75, 2, 2, 1267, 1268, 7, 80, 2, 2, 1268, 1269, 7, 86, 2, 2, 1269, 1270, 7, 71, 2, 2, 1270, 1271, 7, 84, 2, 2, 1271, 1272, 7, 85, 2, 2, 1272, 1273, 7, 71, 2, 2, 1273, 1274, 7, 69, 2, 2, 1274, 1275, 7, 86, 2, 2, 1275, 196, 3, 2, 2, 2, 1276, 1277, 7, 86, 2, 2, 1277, 1278, 7, 81, 2, 2, 1278, 198, 3, 2, 2, 2, 1279, 1280, 7, 86, 2, 2, 1280, 1281, 7, 67, 2, 2, 1281, 1282, 7, 68, 2, 2, 1282, 1283, 7, 78, 2, 2, 1283, 1284, 7, 71, 2, 2, 1284, 1285, 7, 85, 2, 2, 1285, 1286, 7, 67, 2, 2, 1286, 1287, 7, 79, 2, 2, 1287, 1288, 7, 82, 2, 2, 1288, 1289, 7, 78, 2, 2, 1289, 1290, 7, 71, 2, 2, 1290, 200, 3, 2, 2, 2, 1291, 1292, 7, 85, 2, 2, 1292, 1293, 7, 86, 2, 2, 1293, 1294, 7, 84, 2, 2, 1294, 1295, 7, 67, 2, 2, 1295, 1296, 7, 86, 2, 2, 1296, 1297, 7, 75, 2, 2, 1297, 1298, 7, 72, 2, 2, 1298, 1299, 7, 91, 2, 2, 1299, 202, 3, 2, 2, 2, 1300, 1301, 7, 67, 2, 2, 1301, 1302, 7, 78, 2, 2, 1302, 1303, 7, 86, 2, 2, 1303, 1304, 7, 71, 2, 2, 1304, 1305, 7, 84, 2, 2, 1305, 204, 3, 2, 2, 2, 1306, 1307, 7, 84, 2, 2, 1307, 1308, 7, 71, 2, 2, 1308, 1309, 7, 80, 2, 2, 1309, 1310, 7, 67, 2, 2, 1310, 1311, 7, 79, 2, 2, 1311, 1312, 7, 71, 2, 2, 1312, 206, 3, 2, 2, 2, 1313, 1314, 7, 85, 2, 2, 1314, 1315, 7, 86, 2, 2, 1315, 1316, 7, 84, 2, 2, 1316, 1317, 7, 87, 2, 2, 1317, 1318, 7, 69, 2, 2, 1318, 1319, 7, 86, 2, 2, 1319, 208, 3, 2, 2, 2, 1320, 1321, 7, 69, 2, 2, 1321, 1322, 7, 81, 2, 2, 1322, 1323, 7, 79, 2, 2, 1323, 1324, 7, 79, 2, 2, 1324, 1325, 7, 71, 2, 2, 1325, 1326, 7, 80, 2, 2, 1326, 1327, 7, 86, 2, 2, 1327, 210, 3, 2, 2, 2, 1328, 1329, 7, 85, 2, 2, 1329, 1330, 7, 71, 2, 2, 1330, 1331, 7, 86, 2, 2, 1331, 212, 3, 2, 2, 2, 1332, 1333, 7, 84, 2, 2, 1333, 1334, 7, 71, 2, 2, 1334, 1335, 7, 85, 2, 2, 1335, 1336, 7, 71, 2, 2, 1336, 1337, 7, 86, 2, 2, 1337, 214, 3, 2, 2, 2, 1338, 1339, 7, 70, 2, 2, 1339, 1340, 7, 67, 2, 2, 1340, 1341, 7, 86, 2, 2, 1341, 1342, 7, 67, 2, 2, 1342, 216, 3, 2, 2, 2, 1343, 1344, 7, 85, 2, 2, 1344, 1345, 7, 86, 2, 2, 1345, 1346, 7, 67, 2, 2, 1346, 1347, 7, 84, 2, 2, 1347, 1348, 7, 86, 2, 2, 1348, 218, 3, 2, 2, 2, 1349, 1350, 7, 86, 2, 2, 1350, 1351, 7, 84, 2, 2, 1351, 1352, 7, 67, 2, 2, 1352, 1353, 7, 80, 2, 2, 1353, 1354, 7, 85, 2, 2, 1354, 1355, 7, 67, 2, 2, 1355, 1356, 7, 69, 2, 2, 1356, 1357, 7, 86, 2, 2, 1357, 1358, 7, 75, 2, 2, 1358, 1359, 7, 81, 2, 2, 1359, 1360, 7, 80, 2, 2, 1360, 220, 3, 2, 2, 2, 1361, 1362, 7, 69, 2, 2, 1362, 1363, 7, 81, 2, 2, 1363, 1364, 7, 79, 2, 2, 1364, 1365, 7, 79, 2, 2, 1365, 1366, 7, 75, 2, 2, 1366, 1367, 7, 86, 2, 2, 1367, 222, 3, 2, 2, 2, 1368, 1369, 7, 84, 2, 2, 1369, 1370, 7, 81, 2, 2, 1370, 1371, 7, 78, 2, 2, 1371, 1372, 7, 78, 2, 2, 1372, 1373, 7, 68, 2, 2, 1373, 1374, 7, 67, 2, 2, 1374, 1375, 7, 69, 2, 2, 1375, 1376, 7, 77, 2, 2, 1376, 224, 3, 2, 2, 2, 1377, 1378, 7, 79, 2, 2, 1378, 1379, 7, 67, 2, 2, 1379, 1380, 7, 69, 2, 2, 1380, 1381, 7, 84, 2, 2, 1381, 1382, 7, 81, 2, 2, 1382, 226, 3, 2, 2, 2, 1383, 1384, 7, 75, 2, 2, 1384, 1385, 7, 73, 2, 2, 1385, 1386, 7, 80, 2, 2, 1386, 1387, 7, 81, 2, 2, 1387, 1388, 7, 84, 2, 2, 1388, 1389, 7, 71, 2, 2, 1389, 228, 3, 2, 2, 2, 1390, 1391, 7, 68, 2, 2, 1391, 1392, 7, 81, 2, 2, 1392, 1393, 7, 86, 2, 2, 1393, 1394, 7, 74, 2, 2, 1394, 230, 3, 2, 2, 2, 1395, 1396, 7, 78, 2, 2, 1396, 1397, 7, 71, 2, 2, 1397, 1398, 7, 67, 2, 2, 1398, 1399, 7, 70, 2, 2, 1399, 1400, 7, 75, 2, 2, 1400, 1401, 7, 80, 2, 2, 1401, 1402, 7, 73, 2, 2, 1402, 232, 3, 2, 2, 2, 1403, 1404, 7, 86, 2, 2, 1404, 1405, 7, 84, 2, 2, 1405, 1406, 7, 67, 2, 2, 1406, 1407, 7, 75, 2, 2, 1407, 1408, 7, 78, 2, 2, 1408, 1409, 7, 75, 2, 2, 1409, 1410, 7, 80, 2, 2, 1410, 1411, 7, 73, 2, 2, 1411, 234, 3, 2, 2, 2, 1412, 1413, 7, 75, 2, 2, 1413, 1414, 7, 72, 2, 2, 1414, 236, 3, 2, 2, 2, 1415, 1416, 7, 82, 2, 2, 1416, 1417, 7, 81, 2, 2, 1417, 1418, 7, 85, 2, 2, 1418, 1419, 7, 75, 2, 2, 1419, 1420, 7, 86, 2, 2, 1420, 1421, 7, 75, 2, 2, 1421, 1422, 7, 81, 2, 2, 1422, 1423, 7, 80, 2, 2, 1423, 238, 3, 2, 2, 2, 1424, 1425, 7, 71, 2, 2, 1425, 1426, 7, 90, 2, 2, 1426, 1427, 7, 86, 2, 2, 1427, 1428, 7, 84, 2, 2, 1428, 1429, 7, 67, 2, 2, 1429, 1430, 7, 69, 2, 2, 1430, 1431, 7, 86, 2, 2, 1431, 240, 3, 2, 2, 2, 1432, 1433, 7, 71, 2, 2, 1433, 1434, 7, 83, 2, 2, 1434, 242, 3, 2, 2, 2, 1435, 1436, 7, 80, 2, 2, 1436, 1437, 7, 85, 2, 2, 1437, 1438, 7, 71, 2, 2, 1438, 1439, 7, 83, 2, 2, 1439, 244, 3, 2, 2, 2, 1440, 1441, 7, 80, 2, 2, 1441, 1442, 7, 71, 2, 2, 1442, 1443, 7, 83, 2, 2, 1443, 246, 3, 2, 2, 2, 1444, 1445, 7, 80, 2, 2, 1445, 1446, 7, 71, 2, 2, 1446, 1447, 7, 83, 2, 2, 1447, 1448, 7, 76, 2, 2, 1448, 248, 3, 2, 2, 2, 1449, 1450, 7, 78, 2, 2, 1450, 1451, 7, 86, 2, 2, 1451, 250, 3, 2, 2, 2, 1452, 1453, 7, 78, 2, 2, 1453, 1454, 7, 86, 2, 2, 1454, 1455, 7, 71, 2, 2, 1455, 252, 3, 2, 2, 2, 1456, 1457, 7, 73, 2, 2, 1457, 1458, 7, 86, 2, 2, 1458, 254, 3, 2, 2, 2, 1459, 1460, 7, 73, 2, 2, 1460, 1461, 7, 86, 2, 2, 1461, 1462, 7, 71, 2, 2, 1462, 256, 3, 2, 2, 2, 1463, 1464, 7, 82, 2, 2, 1464, 1465, 7, 78, 2, 2, 1465, 1466, 7, 87, 2, 2, 1466, 1467, 7, 85, 2, 2, 1467, 258, 3, 2, 2, 2, 1468, 1469, 7, 79, 2, 2, 1469, 1470, 7, 75, 2, 2, 1470, 1471, 7, 80, 2, 2, 1471, 1472, 7, 87, 2, 2, 1472, 1473, 7, 85, 2, 2, 1473, 260, 3, 2, 2, 2, 1474, 1475, 7, 67, 2, 2, 1475, 1476, 7, 85, 2, 2, 1476, 1477, 7, 86, 2, 2, 1477, 1478, 7, 71, 2, 2, 1478, 1479, 7, 84, 2, 2, 1479, 1480, 7, 75, 2, 2, 1480, 1481, 7, 85, 2, 2, 1481, 1482, 7, 77, 2, 2, 1482, 262, 3, 2, 2, 2, 1483, 1484, 7, 85, 2, 2, 1484, 1485, 7, 78, 2, 2, 1485, 1486, 7, 67, 2, 2, 1486, 1487, 7, 85, 2, 2, 1487, 1488, 7, 74, 2, 2, 1488, 264, 3, 2, 2, 2, 1489, 1490, 7, 82, 2, 2, 1490, 1491, 7, 71, 2, 2, 1491, 1492, 7, 84, 2, 2, 1492, 1493, 7, 69, 2, 2, 1493, 1494, 7, 71, 2, 2, 1494, 1495, 7, 80, 2, 2, 1495, 1496, 7, 86, 2, 2, 1496, 266, 3, 2, 2, 2, 1497, 1498, 7, 70, 2, 2, 1498, 1499, 7, 75, 2, 2, 1499, 1500, 7, 88, 2, 2, 1500, 268, 3, 2, 2, 2, 1501, 1502, 7, 86, 2, 2, 1502, 1503, 7, 75, 2, 2, 1503, 1504, 7, 78, 2, 2, 1504, 1505, 7, 70, 2, 2, 1505, 1506, 7, 71, 2, 2, 1506, 270, 3, 2, 2, 2, 1507, 1508, 7, 67, 2, 2, 1508, 1509, 7, 79, 2, 2, 1509, 1510, 7, 82, 2, 2, 1510, 1511, 7, 71, 2, 2, 1511, 1512, 7, 84, 2, 2, 1512, 1513, 7, 85, 2, 2, 1513, 1514, 7, 67, 2, 2, 1514, 1515, 7, 80, 2, 2, 1515, 1516, 7, 70, 2, 2, 1516, 272, 3, 2, 2, 2, 1517, 1518, 7, 82, 2, 2, 1518, 1519, 7, 75, 2, 2, 1519, 1520, 7, 82, 2, 2, 1520, 1521, 7, 71, 2, 2, 1521, 274, 3, 2, 2, 2, 1522, 1523, 7, 69, 2, 2, 1523, 1524, 7, 81, 2, 2, 1524, 1525, 7, 80, 2, 2, 1525, 1526, 7, 69, 2, 2, 1526, 1527, 7, 67, 2, 2, 1527, 1528, 7, 86, 2, 2, 1528, 1529, 7, 97, 2, 2, 1529, 1530, 7, 82, 2, 2, 1530, 1531, 7, 75, 2, 2, 1531, 1532, 7, 82, 2, 2, 1532, 1533, 7, 71, 2, 2, 1533, 276, 3, 2, 2, 2, 1534, 1535, 7, 74, 2, 2, 1535, 1536, 7, 67, 2, 2, 1536, 1537, 7, 86, 2, 2, 1537, 278, 3, 2, 2, 2, 1538, 1539, 7, 82, 2, 2, 1539, 1540, 7, 71, 2, 2, 1540, 1541, 7, 84, 2, 2, 1541, 1542, 7, 69, 2, 2, 1542, 1543, 7, 71, 2, 2, 1543, 1544, 7, 80, 2, 2, 1544, 1545, 7, 86, 2, 2, 1545, 1546, 7, 78, 2, 2, 1546, 1547, 7, 75, 2, 2, 1547, 1548, 7, 86, 2, 2, 1548, 280, 3, 2, 2, 2, 1549, 1550, 7, 68, 2, 2, 1550, 1551, 7, 87, 2, 2, 1551, 1552, 7, 69, 2, 2, 1552, 1553, 7, 77, 2, 2, 1553, 1554, 7, 71, 2, 2, 1554, 1555, 7, 86, 2, 2, 1555, 282, 3, 2, 2, 2, 1556, 1557, 7, 81, 2, 2, 1557, 1558, 7, 87, 2, 2, 1558, 1559, 7, 86, 2, 2, 1559, 284, 3, 2, 2, 2, 1560, 1561, 7, 81, 2, 2, 1561, 1562, 7, 72, 2, 2, 1562, 286, 3, 2, 2, 2, 1563, 1564, 7, 85, 2, 2, 1564, 1565, 7, 81, 2, 2, 1565, 1566, 7, 84, 2, 2, 1566, 1567, 7, 86, 2, 2, 1567, 288, 3, 2, 2, 2, 1568, 1569, 7, 69, 2, 2, 1569, 1570, 7, 78, 2, 2, 1570, 1571, 7, 87, 2, 2, 1571, 1572, 7, 85, 2, 2, 1572, 1573, 7, 86, 2, 2, 1573, 1574, 7, 71, 2, 2, 1574, 1575, 7, 84, 2, 2, 1575, 290, 3, 2, 2, 2, 1576, 1577, 7, 70, 2, 2, 1577, 1578, 7, 75, 2, 2, 1578, 1579, 7, 85, 2, 2, 1579, 1580, 7, 86, 2, 2, 1580, 1581, 7, 84, 2, 2, 1581, 1582, 7, 75, 2, 2, 1582, 1583, 7, 68, 2, 2, 1583, 1584, 7, 87, 2, 2, 1584, 1585, 7, 86, 2, 2, 1585, 1586, 7, 71, 2, 2, 1586, 292, 3, 2, 2, 2, 1587, 1588, 7, 81, 2, 2, 1588, 1589, 7, 88, 2, 2, 1589, 1590, 7, 71, 2, 2, 1590, 1591, 7, 84, 2, 2, 1591, 1592, 7, 89, 2, 2, 1592, 1593, 7, 84, 2, 2, 1593, 1594, 7, 75, 2, 2, 1594, 1595, 7, 86, 2, 2, 1595, 1596, 7, 71, 2, 2, 1596, 294, 3, 2, 2, 2, 1597, 1598, 7, 86, 2, 2, 1598, 1599, 7, 84, 2, 2, 1599, 1600, 7, 67, 2, 2, 1600, 1601, 7, 80, 2, 2, 1601, 1602, 7, 85, 2, 2, 1602, 1603, 7, 72, 2, 2, 1603, 1604, 7, 81, 2, 2, 1604, 1605, 7, 84, 2, 2, 1605, 1606, 7, 79, 2, 2, 1606, 296, 3, 2, 2, 2, 1607, 1608, 7, 84, 2, 2, 1608, 1609, 7, 71, 2, 2, 1609, 1610, 7, 70, 2, 2, 1610, 1611, 7, 87, 2, 2, 1611, 1612, 7, 69, 2, 2, 1612, 1613, 7, 71, 2, 2, 1613, 298, 3, 2, 2, 2, 1614, 1615, 7, 87, 2, 2, 1615, 1616, 7, 85, 2, 2, 1616, 1617, 7, 75, 2, 2, 1617, 1618, 7, 80, 2, 2, 1618, 1619, 7, 73, 2, 2, 1619, 300, 3, 2, 2, 2, 1620, 1621, 7, 85, 2, 2, 1621, 1622, 7, 71, 2, 2, 1622, 1623, 7, 84, 2, 2, 1623, 1624, 7, 70, 2, 2, 1624, 1625, 7, 71, 2, 2, 1625, 302, 3, 2, 2, 2, 1626, 1627, 7, 85, 2, 2, 1627, 1628, 7, 71, 2, 2, 1628, 1629, 7, 84, 2, 2, 1629, 1630, 7, 70, 2, 2, 1630, 1631, 7, 71, 2, 2, 1631, 1632, 7, 82, 2, 2, 1632, 1633, 7, 84, 2, 2, 1633, 1634, 7, 81, 2, 2, 1634, 1635, 7, 82, 2, 2, 1635, 1636, 7, 71, 2, 2, 1636, 1637, 7, 84, 2, 2, 1637, 1638, 7, 86, 2, 2, 1638, 1639, 7, 75, 2, 2, 1639, 1640, 7, 71, 2, 2, 1640, 1641, 7, 85, 2, 2, 1641, 304, 3, 2, 2, 2, 1642, 1643, 7, 84, 2, 2, 1643, 1644, 7, 71, 2, 2, 1644, 1645, 7, 69, 2, 2, 1645, 1646, 7, 81, 2, 2, 1646, 1647, 7, 84, 2, 2, 1647, 1648, 7, 70, 2, 2, 1648, 1649, 7, 84, 2, 2, 1649, 1650, 7, 71, 2, 2, 1650, 1651, 7, 67, 2, 2, 1651, 1652, 7, 70, 2, 2, 1652, 1653, 7, 71, 2, 2, 1653, 1654, 7, 84, 2, 2, 1654, 306, 3, 2, 2, 2, 1655, 1656, 7, 84, 2, 2, 1656, 1657, 7, 71, 2, 2, 1657, 1658, 7, 69, 2, 2, 1658, 1659, 7, 81, 2, 2, 1659, 1660, 7, 84, 2, 2, 1660, 1661, 7, 70, 2, 2, 1661, 1662, 7, 89, 2, 2, 1662, 1663, 7, 84, 2, 2, 1663, 1664, 7, 75, 2, 2, 1664, 1665, 7, 86, 2, 2, 1665, 1666, 7, 71, 2, 2, 1666, 1667, 7, 84, 2, 2, 1667, 308, 3, 2, 2, 2, 1668, 1669, 7, 70, 2, 2, 1669, 1670, 7, 71, 2, 2, 1670, 1671, 7, 78, 2, 2, 1671, 1672, 7, 75, 2, 2, 1672, 1673, 7, 79, 2, 2, 1673, 1674, 7, 75, 2, 2, 1674, 1675, 7, 86, 2, 2, 1675, 1676, 7, 71, 2, 2, 1676, 1677, 7, 70, 2, 2, 1677, 310, 3, 2, 2, 2, 1678, 1679, 7, 72, 2, 2, 1679, 1680, 7, 75, 2, 2, 1680, 1681, 7, 71, 2, 2, 1681, 1682, 7, 78, 2, 2, 1682, 1683, 7, 70, 2, 2, 1683, 1684, 7, 85, 2, 2, 1684, 312, 3, 2, 2, 2, 1685, 1686, 7, 86, 2, 2, 1686, 1687, 7, 71, 2, 2, 1687, 1688, 7, 84, 2, 2, 1688, 1689, 7, 79, 2, 2, 1689, 1690, 7, 75, 2, 2, 1690, 1691, 7, 80, 2, 2, 1691, 1692, 7, 67, 2, 2, 1692, 1693, 7, 86, 2, 2, 1693, 1694, 7, 71, 2, 2, 1694, 1695, 7, 70, 2, 2, 1695, 314, 3, 2, 2, 2, 1696, 1697, 7, 69, 2, 2, 1697, 1698, 7, 81, 2, 2, 1698, 1699, 7, 78, 2, 2, 1699, 1700, 7, 78, 2, 2, 1700, 1701, 7, 71, 2, 2, 1701, 1702, 7, 69, 2, 2, 1702, 1703, 7, 86, 2, 2, 1703, 1704, 7, 75, 2, 2, 1704, 1705, 7, 81, 2, 2, 1705, 1706, 7, 80, 2, 2, 1706, 316, 3, 2, 2, 2, 1707, 1708, 7, 75, 2, 2, 1708, 1709, 7, 86, 2, 2, 1709, 1710, 7, 71, 2, 2, 1710, 1711, 7, 79, 2, 2, 1711, 1712, 7, 85, 2, 2, 1712, 318, 3, 2, 2, 2, 1713, 1714, 7, 77, 2, 2, 1714, 1715, 7, 71, 2, 2, 1715, 1716, 7, 91, 2, 2, 1716, 1717, 7, 85, 2, 2, 1717, 320, 3, 2, 2, 2, 1718, 1719, 7, 71, 2, 2, 1719, 1720, 7, 85, 2, 2, 1720, 1721, 7, 69, 2, 2, 1721, 1722, 7, 67, 2, 2, 1722, 1723, 7, 82, 2, 2, 1723, 1724, 7, 71, 2, 2, 1724, 1725, 7, 70, 2, 2, 1725, 322, 3, 2, 2, 2, 1726, 1727, 7, 78, 2, 2, 1727, 1728, 7, 75, 2, 2, 1728, 1729, 7, 80, 2, 2, 1729, 1730, 7, 71, 2, 2, 1730, 1731, 7, 85, 2, 2, 1731, 324, 3, 2, 2, 2, 1732, 1733, 7, 85, 2, 2, 1733, 1734, 7, 71, 2, 2, 1734, 1735, 7, 82, 2, 2, 1735, 1736, 7, 67, 2, 2, 1736, 1737, 7, 84, 2, 2, 1737, 1738, 7, 67, 2, 2, 1738, 1739, 7, 86, 2, 2, 1739, 1740, 7, 71, 2, 2, 1740, 1741, 7, 70, 2, 2, 1741, 326, 3, 2, 2, 2, 1742, 1743, 7, 72, 2, 2, 1743, 1744, 7, 87, 2, 2, 1744, 1745, 7, 80, 2, 2, 1745, 1746, 7, 69, 2, 2, 1746, 1747, 7, 86, 2, 2, 1747, 1748, 7, 75, 2, 2, 1748, 1749, 7, 81, 2, 2, 1749, 1750, 7, 80, 2, 2, 1750, 328, 3, 2, 2, 2, 1751, 1752, 7, 71, 2, 2, 1752, 1753, 7, 90, 2, 2, 1753, 1754, 7, 86, 2, 2, 1754, 1755, 7, 71, 2, 2, 1755, 1756, 7, 80, 2, 2, 1756, 1757, 7, 70, 2, 2, 1757, 1758, 7, 71, 2, 2, 1758, 1759, 7, 70, 2, 2, 1759, 330, 3, 2, 2, 2, 1760, 1761, 7, 84, 2, 2, 1761, 1762, 7, 71, 2, 2, 1762, 1763, 7, 72, 2, 2, 1763, 1764, 7, 84, 2, 2, 1764, 1765, 7, 71, 2, 2, 1765, 1766, 7, 85, 2, 2, 1766, 1767, 7, 74, 2, 2, 1767, 332, 3, 2, 2, 2, 1768, 1769, 7, 69, 2, 2, 1769, 1770, 7, 78, 2, 2, 1770, 1771, 7, 71, 2, 2, 1771, 1772, 7, 67, 2, 2, 1772, 1773, 7, 84, 2, 2, 1773, 334, 3, 2, 2, 2, 1774, 1775, 7, 69, 2, 2, 1775, 1776, 7, 67, 2, 2, 1776, 1777, 7, 69, 2, 2, 1777, 1778, 7, 74, 2, 2, 1778, 1779, 7, 71, 2, 2, 1779, 336, 3, 2, 2, 2, 1780, 1781, 7, 87, 2, 2, 1781, 1782, 7, 80, 2, 2, 1782, 1783, 7, 69, 2, 2, 1783, 1784, 7, 67, 2, 2, 1784, 1785, 7, 69, 2, 2, 1785, 1786, 7, 74, 2, 2, 1786, 1787, 7, 71, 2, 2, 1787, 338, 3, 2, 2, 2, 1788, 1789, 7, 78, 2, 2, 1789, 1790, 7, 67, 2, 2, 1790, 1791, 7, 92, 2, 2, 1791, 1792, 7, 91, 2, 2, 1792, 340, 3, 2, 2, 2, 1793, 1794, 7, 72, 2, 2, 1794, 1795, 7, 81, 2, 2, 1795, 1796, 7, 84, 2, 2, 1796, 1797, 7, 79, 2, 2, 1797, 1798, 7, 67, 2, 2, 1798, 1799, 7, 86, 2, 2, 1799, 1800, 7, 86, 2, 2, 1800, 1801, 7, 71, 2, 2, 1801, 1802, 7, 70, 2, 2, 1802, 342, 3, 2, 2, 2, 1803, 1804, 7, 73, 2, 2, 1804, 1805, 7, 78, 2, 2, 1805, 1806, 7, 81, 2, 2, 1806, 1807, 7, 68, 2, 2, 1807, 1808, 7, 67, 2, 2, 1808, 1809, 7, 78, 2, 2, 1809, 344, 3, 2, 2, 2, 1810, 1811, 7, 86, 2, 2, 1811, 1812, 7, 71, 2, 2, 1812, 1813, 7, 79, 2, 2, 1813, 1814, 7, 82, 2, 2, 1814, 1815, 7, 81, 2, 2, 1815, 1816, 7, 84, 2, 2, 1816, 1817, 7, 67, 2, 2, 1817, 1818, 7, 84, 2, 2, 1818, 1819, 7, 91, 2, 2, 1819, 346, 3, 2, 2, 2, 1820, 1821, 7, 81, 2, 2, 1821, 1822, 7, 82, 2, 2, 1822, 1823, 7, 86, 2, 2, 1823, 1824, 7, 75, 2, 2, 1824, 1825, 7, 81, 2, 2, 1825, 1826, 7, 80, 2, 2, 1826, 1827, 7, 85, 2, 2, 1827, 348, 3, 2, 2, 2, 1828, 1829, 7, 87, 2, 2, 1829, 1830, 7, 80, 2, 2, 1830, 1831, 7, 85, 2, 2, 1831, 1832, 7, 71, 2, 2, 1832, 1833, 7, 86, 2, 2, 1833, 350, 3, 2, 2, 2, 1834, 1835, 7, 86, 2, 2, 1835, 1836, 7, 68, 2, 2, 1836, 1837, 7, 78, 2, 2, 1837, 1838, 7, 82, 2, 2, 1838, 1839, 7, 84, 2, 2, 1839, 1840, 7, 81, 2, 2, 1840, 1841, 7, 82, 2, 2, 1841, 1842, 7, 71, 2, 2, 1842, 1843, 7, 84, 2, 2, 1843, 1844, 7, 86, 2, 2, 1844, 1845, 7, 75, 2, 2, 1845, 1846, 7, 71, 2, 2, 1846, 1847, 7, 85, 2, 2, 1847, 352, 3, 2, 2, 2, 1848, 1849, 7, 70, 2, 2, 1849, 1850, 7, 68, 2, 2, 1850, 1851, 7, 82, 2, 2, 1851, 1852, 7, 84, 2, 2, 1852, 1853, 7, 81, 2, 2, 1853, 1854, 7, 82, 2, 2, 1854, 1855, 7, 71, 2, 2, 1855, 1856, 7, 84, 2, 2, 1856, 1857, 7, 86, 2, 2, 1857, 1858, 7, 75, 2, 2, 1858, 1859, 7, 71, 2, 2, 1859, 1860, 7, 85, 2, 2, 1860, 354, 3, 2, 2, 2, 1861, 1862, 7, 68, 2, 2, 1862, 1863, 7, 87, 2, 2, 1863, 1864, 7, 69, 2, 2, 1864, 1865, 7, 77, 2, 2, 1865, 1866, 7, 71, 2, 2, 1866, 1867, 7, 86, 2, 2, 1867, 1868, 7, 85, 2, 2, 1868, 356, 3, 2, 2, 2, 1869, 1870, 7, 85, 2, 2, 1870, 1871, 7, 77, 2, 2, 1871, 1872, 7, 71, 2, 2, 1872, 1873, 7, 89, 2, 2, 1873, 1874, 7, 71, 2, 2, 1874, 1875, 7, 70, 2, 2, 1875, 358, 3, 2, 2, 2, 1876, 1877, 7, 85, 2, 2, 1877, 1878, 7, 86, 2, 2, 1878, 1879, 7, 81, 2, 2, 1879, 1880, 7, 84, 2, 2, 1880, 1881, 7, 71, 2, 2, 1881, 1882, 7, 70, 2, 2, 1882, 360, 3, 2, 2, 2, 1883, 1884, 7, 70, 2, 2, 1884, 1885, 7, 75, 2, 2, 1885, 1886, 7, 84, 2, 2, 1886, 1887, 7, 71, 2, 2, 1887, 1888, 7, 69, 2, 2, 1888, 1889, 7, 86, 2, 2, 1889, 1890, 7, 81, 2, 2, 1890, 1891, 7, 84, 2, 2, 1891, 1892, 7, 75, 2, 2, 1892, 1893, 7, 71, 2, 2, 1893, 1894, 7, 85, 2, 2, 1894, 362, 3, 2, 2, 2, 1895, 1896, 7, 78, 2, 2, 1896, 1897, 7, 81, 2, 2, 1897, 1898, 7, 69, 2, 2, 1898, 1899, 7, 67, 2, 2, 1899, 1900, 7, 86, 2, 2, 1900, 1901, 7, 75, 2, 2, 1901, 1902, 7, 81, 2, 2, 1902, 1903, 7, 80, 2, 2, 1903, 364, 3, 2, 2, 2, 1904, 1905, 7, 71, 2, 2, 1905, 1906, 7, 90, 2, 2, 1906, 1907, 7, 69, 2, 2, 1907, 1908, 7, 74, 2, 2, 1908, 1909, 7, 67, 2, 2, 1909, 1910, 7, 80, 2, 2, 1910, 1911, 7, 73, 2, 2, 1911, 1912, 7, 71, 2, 2, 1912, 366, 3, 2, 2, 2, 1913, 1914, 7, 67, 2, 2, 1914, 1915, 7, 84, 2, 2, 1915, 1916, 7, 69, 2, 2, 1916, 1917, 7, 74, 2, 2, 1917, 1918, 7, 75, 2, 2, 1918, 1919, 7, 88, 2, 2, 1919, 1920, 7, 71, 2, 2, 1920, 368, 3, 2, 2, 2, 1921, 1922, 7, 87, 2, 2, 1922, 1923, 7, 80, 2, 2, 1923, 1924, 7, 67, 2, 2, 1924, 1925, 7, 84, 2, 2, 1925, 1926, 7, 69, 2, 2, 1926, 1927, 7, 74, 2, 2, 1927, 1928, 7, 75, 2, 2, 1928, 1929, 7, 88, 2, 2, 1929, 1930, 7, 71, 2, 2, 1930, 370, 3, 2, 2, 2, 1931, 1932, 7, 72, 2, 2, 1932, 1933, 7, 75, 2, 2, 1933, 1934, 7, 78, 2, 2, 1934, 1935, 7, 71, 2, 2, 1935, 1936, 7, 72, 2, 2, 1936, 1937, 7, 81, 2, 2, 1937, 1938, 7, 84, 2, 2, 1938, 1939, 7, 79, 2, 2, 1939, 1940, 7, 67, 2, 2, 1940, 1941, 7, 86, 2, 2, 1941, 372, 3, 2, 2, 2, 1942, 1943, 7, 86, 2, 2, 1943, 1944, 7, 81, 2, 2, 1944, 1945, 7, 87, 2, 2, 1945, 1946, 7, 69, 2, 2, 1946, 1947, 7, 74, 2, 2, 1947, 374, 3, 2, 2, 2, 1948, 1949, 7, 69, 2, 2, 1949, 1950, 7, 81, 2, 2, 1950, 1951, 7, 79, 2, 2, 1951, 1952, 7, 82, 2, 2, 1952, 1953, 7, 67, 2, 2, 1953, 1954, 7, 69, 2, 2, 1954, 1955, 7, 86, 2, 2, 1955, 376, 3, 2, 2, 2, 1956, 1957, 7, 69, 2, 2, 1957, 1958, 7, 81, 2, 2, 1958, 1959, 7, 80, 2, 2, 1959, 1960, 7, 69, 2, 2, 1960, 1961, 7, 67, 2, 2, 1961, 1962, 7, 86, 2, 2, 1962, 1963, 7, 71, 2, 2, 1963, 1964, 7, 80, 2, 2, 1964, 1965, 7, 67, 2, 2, 1965, 1966, 7, 86, 2, 2, 1966, 1967, 7, 71, 2, 2, 1967, 378, 3, 2, 2, 2, 1968, 1969, 7, 69, 2, 2, 1969, 1970, 7, 74, 2, 2, 1970, 1971, 7, 67, 2, 2, 1971, 1972, 7, 80, 2, 2, 1972, 1973, 7, 73, 2, 2, 1973, 1974, 7, 71, 2, 2, 1974, 380, 3, 2, 2, 2, 1975, 1976, 7, 69, 2, 2, 1976, 1977, 7, 67, 2, 2, 1977, 1978, 7, 85, 2, 2, 1978, 1979, 7, 69, 2, 2, 1979, 1980, 7, 67, 2, 2, 1980, 1981, 7, 70, 2, 2, 1981, 1982, 7, 71, 2, 2, 1982, 382, 3, 2, 2, 2, 1983, 1984, 7, 84, 2, 2, 1984, 1985, 7, 71, 2, 2, 1985, 1986, 7, 85, 2, 2, 1986, 1987, 7, 86, 2, 2, 1987, 1988, 7, 84, 2, 2, 1988, 1989, 7, 75, 2, 2, 1989, 1990, 7, 69, 2, 2, 1990, 1991, 7, 86, 2, 2, 1991, 384, 3, 2, 2, 2, 1992, 1993, 7, 69, 2, 2, 1993, 1994, 7, 78, 2, 2, 1994, 1995, 7, 87, 2, 2, 1995, 1996, 7, 85, 2, 2, 1996, 1997, 7, 86, 2, 2, 1997, 1998, 7, 71, 2, 2, 1998, 1999, 7, 84, 2, 2, 1999, 2000, 7, 71, 2, 2, 2000, 2001, 7, 70, 2, 2, 2001, 386, 3, 2, 2, 2, 2002, 2003, 7, 85, 2, 2, 2003, 2004, 7, 81, 2, 2, 2004, 2005, 7, 84, 2, 2, 2005, 2006, 7, 86, 2, 2, 2006, 2007, 7, 71, 2, 2, 2007, 2008, 7, 70, 2, 2, 2008, 388, 3, 2, 2, 2, 2009, 2010, 7, 82, 2, 2, 2010, 2011, 7, 87, 2, 2, 2011, 2012, 7, 84, 2, 2, 2012, 2013, 7, 73, 2, 2, 2013, 2014, 7, 71, 2, 2, 2014, 390, 3, 2, 2, 2, 2015, 2016, 7, 75, 2, 2, 2016, 2017, 7, 80, 2, 2, 2017, 2018, 7, 82, 2, 2, 2018, 2019, 7, 87, 2, 2, 2019, 2020, 7, 86, 2, 2, 2020, 2021, 7, 72, 2, 2, 2021, 2022, 7, 81, 2, 2, 2022, 2023, 7, 84, 2, 2, 2023, 2024, 7, 79, 2, 2, 2024, 2025, 7, 67, 2, 2, 2025, 2026, 7, 86, 2, 2, 2026, 392, 3, 2, 2, 2, 2027, 2028, 7, 81, 2, 2, 2028, 2029, 7, 87, 2, 2, 2029, 2030, 7, 86, 2, 2, 2030, 2031, 7, 82, 2, 2, 2031, 2032, 7, 87, 2, 2, 2032, 2033, 7, 86, 2, 2, 2033, 2034, 7, 72, 2, 2, 2034, 2035, 7, 81, 2, 2, 2035, 2036, 7, 84, 2, 2, 2036, 2037, 7, 79, 2, 2, 2037, 2038, 7, 67, 2, 2, 2038, 2039, 7, 86, 2, 2, 2039, 394, 3, 2, 2, 2, 2040, 2041, 7, 70, 2, 2, 2041, 2042, 7, 67, 2, 2, 2042, 2043, 7, 86, 2, 2, 2043, 2044, 7, 67, 2, 2, 2044, 2045, 7, 68, 2, 2, 2045, 2046, 7, 67, 2, 2, 2046, 2047, 7, 85, 2, 2, 2047, 2048, 7, 71, 2, 2, 2048, 396, 3, 2, 2, 2, 2049, 2050, 7, 70, 2, 2, 2050, 2051, 7, 67, 2, 2, 2051, 2052, 7, 86, 2, 2, 2052, 2053, 7, 67, 2, 2, 2053, 2054, 7, 68, 2, 2, 2054, 2055, 7, 67, 2, 2, 2055, 2056, 7, 85, 2, 2, 2056, 2057, 7, 71, 2, 2, 2057, 2058, 7, 85, 2, 2, 2058, 398, 3, 2, 2, 2, 2059, 2060, 7, 70, 2, 2, 2060, 2061, 7, 72, 2, 2, 2061, 2062, 7, 85, 2, 2, 2062, 400, 3, 2, 2, 2, 2063, 2064, 7, 86, 2, 2, 2064, 2065, 7, 84, 2, 2, 2065, 2066, 7, 87, 2, 2, 2066, 2067, 7, 80, 2, 2, 2067, 2068, 7, 69, 2, 2, 2068, 2069, 7, 67, 2, 2, 2069, 2070, 7, 86, 2, 2, 2070, 2071, 7, 71, 2, 2, 2071, 402, 3, 2, 2, 2, 2072, 2073, 7, 67, 2, 2, 2073, 2074, 7, 80, 2, 2, 2074, 2075, 7, 67, 2, 2, 2075, 2076, 7, 78, 2, 2, 2076, 2077, 7, 91, 2, 2, 2077, 2078, 7, 92, 2, 2, 2078, 2079, 7, 71, 2, 2, 2079, 404, 3, 2, 2, 2, 2080, 2081, 7, 69, 2, 2, 2081, 2082, 7, 81, 2, 2, 2082, 2083, 7, 79, 2, 2, 2083, 2084, 7, 82, 2, 2, 2084, 2085, 7, 87, 2, 2, 2085, 2086, 7, 86, 2, 2, 2086, 2087, 7, 71, 2, 2, 2087, 406, 3, 2, 2, 2, 2088, 2089, 7, 78, 2, 2, 2089, 2090, 7, 75, 2, 2, 2090, 2091, 7, 85, 2, 2, 2091, 2092, 7, 86, 2, 2, 2092, 408, 3, 2, 2, 2, 2093, 2094, 7, 85, 2, 2, 2094, 2095, 7, 86, 2, 2, 2095, 2096, 7, 67, 2, 2, 2096, 2097, 7, 86, 2, 2, 2097, 2098, 7, 75, 2, 2, 2098, 2099, 7, 85, 2, 2, 2099, 2100, 7, 86, 2, 2, 2100, 2101, 7, 75, 2, 2, 2101, 2102, 7, 69, 2, 2, 2102, 2103, 7, 85, 2, 2, 2103, 410, 3, 2, 2, 2, 2104, 2105, 7, 82, 2, 2, 2105, 2106, 7, 67, 2, 2, 2106, 2107, 7, 84, 2, 2, 2107, 2108, 7, 86, 2, 2, 2108, 2109, 7, 75, 2, 2, 2109, 2110, 7, 86, 2, 2, 2110, 2111, 7, 75, 2, 2, 2111, 2112, 7, 81, 2, 2, 2112, 2113, 7, 80, 2, 2, 2113, 2114, 7, 71, 2, 2, 2114, 2115, 7, 70, 2, 2, 2115, 412, 3, 2, 2, 2, 2116, 2117, 7, 71, 2, 2, 2117, 2118, 7, 90, 2, 2, 2118, 2119, 7, 86, 2, 2, 2119, 2120, 7, 71, 2, 2, 2120, 2121, 7, 84, 2, 2, 2121, 2122, 7, 80, 2, 2, 2122, 2123, 7, 67, 2, 2, 2123, 2124, 7, 78, 2, 2, 2124, 414, 3, 2, 2, 2, 2125, 2126, 7, 70, 2, 2, 2126, 2127, 7, 71, 2, 2, 2127, 2128, 7, 72, 2, 2, 2128, 2129, 7, 75, 2, 2, 2129, 2130, 7, 80, 2, 2, 2130, 2131, 7, 71, 2, 2, 2131, 2132, 7, 70, 2, 2, 2132, 416, 3, 2, 2, 2, 2133, 2134, 7, 84, 2, 2, 2134, 2135, 7, 71, 2, 2, 2135, 2136, 7, 88, 2, 2, 2136, 2137, 7, 81, 2, 2, 2137, 2138, 7, 77, 2, 2, 2138, 2139, 7, 71, 2, 2, 2139, 418, 3, 2, 2, 2, 2140, 2141, 7, 73, 2, 2, 2141, 2142, 7, 84, 2, 2, 2142, 2143, 7, 67, 2, 2, 2143, 2144, 7, 80, 2, 2, 2144, 2145, 7, 86, 2, 2, 2145, 420, 3, 2, 2, 2, 2146, 2147, 7, 78, 2, 2, 2147, 2148, 7, 81, 2, 2, 2148, 2149, 7, 69, 2, 2, 2149, 2150, 7, 77, 2, 2, 2150, 422, 3, 2, 2, 2, 2151, 2152, 7, 87, 2, 2, 2152, 2153, 7, 80, 2, 2, 2153, 2154, 7, 78, 2, 2, 2154, 2155, 7, 81, 2, 2, 2155, 2156, 7, 69, 2, 2, 2156, 2157, 7, 77, 2, 2, 2157, 424, 3, 2, 2, 2, 2158, 2159, 7, 79, 2, 2, 2159, 2160, 7, 85, 2, 2, 2160, 2161, 7, 69, 2, 2, 2161, 2162, 7, 77, 2, 2, 2162, 426, 3, 2, 2, 2, 2163, 2164, 7, 84, 2, 2, 2164, 2165, 7, 71, 2, 2, 2165, 2166, 7, 82, 2, 2, 2166, 2167, 7, 67, 2, 2, 2167, 2168, 7, 75, 2, 2, 2168, 2169, 7, 84, 2, 2, 2169, 428, 3, 2, 2, 2, 2170, 2171, 7, 84, 2, 2, 2171, 2172, 7, 71, 2, 2, 2172, 2173, 7, 69, 2, 2, 2173, 2174, 7, 81, 2, 2, 2174, 2175, 7, 88, 2, 2, 2175, 2176, 7, 71, 2, 2, 2176, 2177, 7, 84, 2, 2, 2177, 430, 3, 2, 2, 2, 2178, 2179, 7, 71, 2, 2, 2179, 2180, 7, 90, 2, 2, 2180, 2181, 7, 82, 2, 2, 2181, 2182, 7, 81, 2, 2, 2182, 2183, 7, 84, 2, 2, 2183, 2184, 7, 86, 2, 2, 2184, 432, 3, 2, 2, 2, 2185, 2186, 7, 75, 2, 2, 2186, 2187, 7, 79, 2, 2, 2187, 2188, 7, 82, 2, 2, 2188, 2189, 7, 81, 2, 2, 2189, 2190, 7, 84, 2, 2, 2190, 2191, 7, 86, 2, 2, 2191, 434, 3, 2, 2, 2, 2192, 2193, 7, 78, 2, 2, 2193, 2194, 7, 81, 2, 2, 2194, 2195, 7, 67, 2, 2, 2195, 2196, 7, 70, 2, 2, 2196, 436, 3, 2, 2, 2, 2197, 2198, 7, 84, 2, 2, 2198, 2199, 7, 81, 2, 2, 2199, 2200, 7, 78, 2, 2, 2200, 2201, 7, 71, 2, 2, 2201, 438, 3, 2, 2, 2, 2202, 2203, 7, 84, 2, 2, 2203, 2204, 7, 81, 2, 2, 2204, 2205, 7, 78, 2, 2, 2205, 2206, 7, 71, 2, 2, 2206, 2207, 7, 85, 2, 2, 2207, 440, 3, 2, 2, 2, 2208, 2209, 7, 69, 2, 2, 2209, 2210, 7, 81, 2, 2, 2210, 2211, 7, 79, 2, 2, 2211, 2212, 7, 82, 2, 2, 2212, 2213, 7, 67, 2, 2, 2213, 2214, 7, 69, 2, 2, 2214, 2215, 7, 86, 2, 2, 2215, 2216, 7, 75, 2, 2, 2216, 2217, 7, 81, 2, 2, 2217, 2218, 7, 80, 2, 2, 2218, 2219, 7, 85, 2, 2, 2219, 442, 3, 2, 2, 2, 2220, 2221, 7, 82, 2, 2, 2221, 2222, 7, 84, 2, 2, 2222, 2223, 7, 75, 2, 2, 2223, 2224, 7, 80, 2, 2, 2224, 2225, 7, 69, 2, 2, 2225, 2226, 7, 75, 2, 2, 2226, 2227, 7, 82, 2, 2, 2227, 2228, 7, 67, 2, 2, 2228, 2229, 7, 78, 2, 2, 2229, 2230, 7, 85, 2, 2, 2230, 444, 3, 2, 2, 2, 2231, 2232, 7, 86, 2, 2, 2232, 2233, 7, 84, 2, 2, 2233, 2234, 7, 67, 2, 2, 2234, 2235, 7, 80, 2, 2, 2235, 2236, 7, 85, 2, 2, 2236, 2237, 7, 67, 2, 2, 2237, 2238, 7, 69, 2, 2, 2238, 2239, 7, 86, 2, 2, 2239, 2240, 7, 75, 2, 2, 2240, 2241, 7, 81, 2, 2, 2241, 2242, 7, 80, 2, 2, 2242, 2243, 7, 85, 2, 2, 2243, 446, 3, 2, 2, 2, 2244, 2245, 7, 75, 2, 2, 2245, 2246, 7, 80, 2, 2, 2246, 2247, 7, 70, 2, 2, 2247, 2248, 7, 71, 2, 2, 2248, 2249, 7, 90, 2, 2, 2249, 448, 3, 2, 2, 2, 2250, 2251, 7, 75, 2, 2, 2251, 2252, 7, 80, 2, 2, 2252, 2253, 7, 70, 2, 2, 2253, 2254, 7, 71, 2, 2, 2254, 2255, 7, 90, 2, 2, 2255, 2256, 7, 71, 2, 2, 2256, 2257, 7, 85, 2, 2, 2257, 450, 3, 2, 2, 2, 2258, 2259, 7, 78, 2, 2, 2259, 2260, 7, 81, 2, 2, 2260, 2261, 7, 69, 2, 2, 2261, 2262, 7, 77, 2, 2, 2262, 2263, 7, 85, 2, 2, 2263, 452, 3, 2, 2, 2, 2264, 2265, 7, 81, 2, 2, 2265, 2266, 7, 82, 2, 2, 2266, 2267, 7, 86, 2, 2, 2267, 2268, 7, 75, 2, 2, 2268, 2269, 7, 81, 2, 2, 2269, 2270, 7, 80, 2, 2, 2270, 454, 3, 2, 2, 2, 2271, 2272, 7, 67, 2, 2, 2272, 2273, 7, 80, 2, 2, 2273, 2274, 7, 86, 2, 2, 2274, 2275, 7, 75, 2, 2, 2275, 456, 3, 2, 2, 2, 2276, 2277, 7, 78, 2, 2, 2277, 2278, 7, 81, 2, 2, 2278, 2279, 7, 69, 2, 2, 2279, 2280, 7, 67, 2, 2, 2280, 2281, 7, 78, 2, 2, 2281, 458, 3, 2, 2, 2, 2282, 2283, 7, 75, 2, 2, 2283, 2284, 7, 80, 2, 2, 2284, 2285, 7, 82, 2, 2, 2285, 2286, 7, 67, 2, 2, 2286, 2287, 7, 86, 2, 2, 2287, 2288, 7, 74, 2, 2, 2288, 460, 3, 2, 2, 2, 2289, 2290, 7, 89, 2, 2, 2290, 2291, 7, 67, 2, 2, 2291, 2292, 7, 86, 2, 2, 2292, 2293, 7, 71, 2, 2, 2293, 2294, 7, 84, 2, 2, 2294, 2295, 7, 79, 2, 2, 2295, 2296, 7, 67, 2, 2, 2296, 2297, 7, 84, 2, 2, 2297, 2298, 7, 77, 2, 2, 2298, 462, 3, 2, 2, 2, 2299, 2300, 7, 87, 2, 2, 2300, 2301, 7, 80, 2, 2, 2301, 2302, 7, 80, 2, 2, 2302, 2303, 7, 71, 2, 2, 2303, 2304, 7, 85, 2, 2, 2304, 2305, 7, 86, 2, 2, 2305, 464, 3, 2, 2, 2, 2306, 2307, 7, 79, 2, 2, 2307, 2308, 7, 67, 2, 2, 2308, 2309, 7, 86, 2, 2, 2309, 2310, 7, 69, 2, 2, 2310, 2311, 7, 74, 2, 2, 2311, 2312, 7, 97, 2, 2, 2312, 2313, 7, 84, 2, 2, 2313, 2314, 7, 71, 2, 2, 2314, 2315, 7, 69, 2, 2, 2315, 2316, 7, 81, 2, 2, 2316, 2317, 7, 73, 2, 2, 2317, 2318, 7, 80, 2, 2, 2318, 2319, 7, 75, 2, 2, 2319, 2320, 7, 92, 2, 2, 2320, 2321, 7, 71, 2, 2, 2321, 466, 3, 2, 2, 2, 2322, 2323, 7, 79, 2, 2, 2323, 2324, 7, 71, 2, 2, 2324, 2325, 7, 67, 2, 2, 2325, 2326, 7, 85, 2, 2, 2326, 2327, 7, 87, 2, 2, 2327, 2328, 7, 84, 2, 2, 2328, 2329, 7, 71, 2, 2, 2329, 2330, 7, 85, 2, 2, 2330, 468, 3, 2, 2, 2, 2331, 2332, 7, 81, 2, 2, 2332, 2333, 7, 80, 2, 2, 2333, 2334, 7, 71, 2, 2, 2334, 470, 3, 2, 2, 2, 2335, 2336, 7, 82, 2, 2, 2336, 2337, 7, 71, 2, 2, 2337, 2338, 7, 84, 2, 2, 2338, 472, 3, 2, 2, 2, 2339, 2340, 7, 79, 2, 2, 2340, 2341, 7, 67, 2, 2, 2341, 2342, 7, 86, 2, 2, 2342, 2343, 7, 69, 2, 2, 2343, 2344, 7, 74, 2, 2, 2344, 474, 3, 2, 2, 2, 2345, 2346, 7, 85, 2, 2, 2346, 2347, 7, 77, 2, 2, 2347, 2348, 7, 75, 2, 2, 2348, 2349, 7, 82, 2, 2, 2349, 2350, 7, 51, 2, 2, 2350, 476, 3, 2, 2, 2, 2351, 2352, 7, 80, 2, 2, 2352, 2353, 7, 71, 2, 2, 2353, 2354, 7, 90, 2, 2, 2354, 2355, 7, 86, 2, 2, 2355, 478, 3, 2, 2, 2, 2356, 2357, 7, 82, 2, 2, 2357, 2358, 7, 67, 2, 2, 2358, 2359, 7, 85, 2, 2, 2359, 2360, 7, 86, 2, 2, 2360, 480, 3, 2, 2, 2, 2361, 2362, 7, 82, 2, 2, 2362, 2363, 7, 67, 2, 2, 2363, 2364, 7, 86, 2, 2, 2364, 2365, 7, 86, 2, 2, 2365, 2366, 7, 71, 2, 2, 2366, 2367, 7, 84, 2, 2, 2367, 2368, 7, 80, 2, 2, 2368, 482, 3, 2, 2, 2, 2369, 2370, 7, 89, 2, 2, 2370, 2371, 7, 75, 2, 2, 2371, 2372, 7, 86, 2, 2, 2372, 2373, 7, 74, 2, 2, 2373, 2374, 7, 75, 2, 2, 2374, 2375, 7, 80, 2, 2, 2375, 484, 3, 2, 2, 2, 2376, 2377, 7, 70, 2, 2, 2377, 2378, 7, 71, 2, 2, 2378, 2379, 7, 72, 2, 2, 2379, 2380, 7, 75, 2, 2, 2380, 2381, 7, 80, 2, 2, 2381, 2382, 7, 71, 2, 2, 2382, 486, 3, 2, 2, 2, 2383, 2384, 7, 68, 2, 2, 2384, 2385, 7, 75, 2, 2, 2385, 2386, 7, 73, 2, 2, 2386, 2387, 7, 75, 2, 2, 2387, 2388, 7, 80, 2, 2, 2388, 2389, 7, 86, 2, 2, 2389, 2390, 7, 97, 2, 2, 2390, 2391, 7, 78, 2, 2, 2391, 2392, 7, 75, 2, 2, 2392, 2393, 7, 86, 2, 2, 2393, 2394, 7, 71, 2, 2, 2394, 2395, 7, 84, 2, 2, 2395, 2396, 7, 67, 2, 2, 2396, 2397, 7, 78, 2, 2, 2397, 488, 3, 2, 2, 2, 2398, 2399, 7, 85, 2, 2, 2399, 2400, 7, 79, 2, 2, 2400, 2401, 7, 67, 2, 2, 2401, 2402, 7, 78, 2, 2, 2402, 2403, 7, 78, 2, 2, 2403, 2404, 7, 75, 2, 2, 2404, 2405, 7, 80, 2, 2, 2405, 2406, 7, 86, 2, 2, 2406, 2407, 7, 97, 2, 2, 2407, 2408, 7, 78, 2, 2, 2408, 2409, 7, 75, 2, 2, 2409, 2410, 7, 86, 2, 2, 2410, 2411, 7, 71, 2, 2, 2411, 2412, 7, 84, 2, 2, 2412, 2413, 7, 67, 2, 2, 2413, 2414, 7, 78, 2, 2, 2414, 490, 3, 2, 2, 2, 2415, 2416, 7, 86, 2, 2, 2416, 2417, 7, 75, 2, 2, 2417, 2418, 7, 80, 2, 2, 2418, 2419, 7, 91, 2, 2, 2419, 2420, 7, 75, 2, 2, 2420, 2421, 7, 80, 2, 2, 2421, 2422, 7, 86, 2, 2, 2422, 2423, 7, 97, 2, 2, 2423, 2424, 7, 78, 2, 2, 2424, 2425, 7, 75, 2, 2, 2425, 2426, 7, 86, 2, 2, 2426, 2427, 7, 71, 2, 2, 2427, 2428, 7, 84, 2, 2, 2428, 2429, 7, 67, 2, 2, 2429, 2430, 7, 78, 2, 2, 2430, 492, 3, 2, 2, 2, 2431, 2432, 7, 75, 2, 2, 2432, 2433, 7, 80, 2, 2, 2433, 2434, 7, 86, 2, 2, 2434, 2435, 7, 71, 2, 2, 2435, 2436, 7, 73, 2, 2, 2436, 2437, 7, 71, 2, 2, 2437, 2438, 7, 84, 2, 2, 2438, 2439, 7, 97, 2, 2, 2439, 2440, 7, 88, 2, 2, 2440, 2441, 7, 67, 2, 2, 2441, 2442, 7, 78, 2, 2, 2442, 2443, 7, 87, 2, 2, 2443, 2444, 7, 71, 2, 2, 2444, 494, 3, 2, 2, 2, 2445, 2446, 7, 70, 2, 2, 2446, 2447, 7, 71, 2, 2, 2447, 2448, 7, 69, 2, 2, 2448, 2449, 7, 75, 2, 2, 2449, 2450, 7, 79, 2, 2, 2450, 2451, 7, 67, 2, 2, 2451, 2452, 7, 78, 2, 2, 2452, 2453, 7, 97, 2, 2, 2453, 2454, 7, 88, 2, 2, 2454, 2455, 7, 67, 2, 2, 2455, 2456, 7, 78, 2, 2, 2456, 2457, 7, 87, 2, 2, 2457, 2458, 7, 71, 2, 2, 2458, 496, 3, 2, 2, 2, 2459, 2460, 7, 70, 2, 2, 2460, 2461, 7, 81, 2, 2, 2461, 2462, 7, 87, 2, 2, 2462, 2463, 7, 68, 2, 2, 2463, 2464, 7, 78, 2, 2, 2464, 2465, 7, 71, 2, 2, 2465, 2466, 7, 97, 2, 2, 2466, 2467, 7, 78, 2, 2, 2467, 2468, 7, 75, 2, 2, 2468, 2469, 7, 86, 2, 2, 2469, 2470, 7, 71, 2, 2, 2470, 2471, 7, 84, 2, 2, 2471, 2472, 7, 67, 2, 2, 2472, 2473, 7, 78, 2, 2, 2473, 498, 3, 2, 2, 2, 2474, 2475, 7, 68, 2, 2, 2475, 2476, 7, 75, 2, 2, 2476, 2477, 7, 73, 2, 2, 2477, 2478, 7, 70, 2, 2, 2478, 2479, 7, 71, 2, 2, 2479, 2480, 7, 69, 2, 2, 2480, 2481, 7, 75, 2, 2, 2481, 2482, 7, 79, 2, 2, 2482, 2483, 7, 67, 2, 2, 2483, 2484, 7, 78, 2, 2, 2484, 2485, 7, 97, 2, 2, 2485, 2486, 7, 78, 2, 2, 2486, 2487, 7, 75, 2, 2, 2487, 2488, 7, 86, 2, 2, 2488, 2489, 7, 71, 2, 2, 2489, 2490, 7, 84, 2, 2, 2490, 2491, 7, 67, 2, 2, 2491, 2492, 7, 78, 2, 2, 2492, 500, 3, 2, 2, 2, 2493, 2494, 7, 75, 2, 2, 2494, 2495, 7, 70, 2, 2, 2495, 2496, 7, 71, 2, 2, 2496, 2497, 7, 80, 2, 2, 2497, 2498, 7, 86, 2, 2, 2498, 2499, 7, 75, 2, 2, 2499, 2500, 7, 72, 2, 2, 2500, 2501, 7, 75, 2, 2, 2501, 2502, 7, 71, 2, 2, 2502, 2503, 7, 84, 2, 2, 2503, 502, 3, 2, 2, 2, 2504, 2505, 7, 68, 2, 2, 2505, 2506, 7, 67, 2, 2, 2506, 2507, 7, 69, 2, 2, 2507, 2508, 7, 77, 2, 2, 2508, 2509, 7, 83, 2, 2, 2509, 2510, 7, 87, 2, 2, 2510, 2511, 7, 81, 2, 2, 2511, 2512, 7, 86, 2, 2, 2512, 2513, 7, 71, 2, 2, 2513, 2514, 7, 70, 2, 2, 2514, 2515, 7, 97, 2, 2, 2515, 2516, 7, 75, 2, 2, 2516, 2517, 7, 70, 2, 2, 2517, 2518, 7, 71, 2, 2, 2518, 2519, 7, 80, 2, 2, 2519, 2520, 7, 86, 2, 2, 2520, 2521, 7, 75, 2, 2, 2521, 2522, 7, 72, 2, 2, 2522, 2523, 7, 75, 2, 2, 2523, 2524, 7, 71, 2, 2, 2524, 2525, 7, 84, 2, 2, 2525, 504, 3, 2, 2, 2, 2526, 2527, 7, 85, 2, 2, 2527, 2528, 7, 75, 2, 2, 2528, 2529, 7, 79, 2, 2, 2529, 2530, 7, 82, 2, 2, 2530, 2531, 7, 78, 2, 2, 2531, 2532, 7, 71, 2, 2, 2532, 2533, 7, 97, 2, 2, 2533, 2534, 7, 69, 2, 2, 2534, 2535, 7, 81, 2, 2, 2535, 2536, 7, 79, 2, 2, 2536, 2537, 7, 79, 2, 2, 2537, 2538, 7, 71, 2, 2, 2538, 2539, 7, 80, 2, 2, 2539, 2540, 7, 86, 2, 2, 2540, 506, 3, 2, 2, 2, 2541, 2542, 7, 68, 2, 2, 2542, 2543, 7, 84, 2, 2, 2543, 2544, 7, 67, 2, 2, 2544, 2545, 7, 69, 2, 2, 2545, 2546, 7, 77, 2, 2, 2546, 2547, 7, 71, 2, 2, 2547, 2548, 7, 86, 2, 2, 2548, 2549, 7, 71, 2, 2, 2549, 2550, 7, 70, 2, 2, 2550, 2551, 7, 97, 2, 2, 2551, 2552, 7, 71, 2, 2, 2552, 2553, 7, 79, 2, 2, 2553, 2554, 7, 82, 2, 2, 2554, 2555, 7, 86, 2, 2, 2555, 2556, 7, 91, 2, 2, 2556, 2557, 7, 97, 2, 2, 2557, 2558, 7, 69, 2, 2, 2558, 2559, 7, 81, 2, 2, 2559, 2560, 7, 79, 2, 2, 2560, 2561, 7, 79, 2, 2, 2561, 2562, 7, 71, 2, 2, 2562, 2563, 7, 80, 2, 2, 2563, 2564, 7, 86, 2, 2, 2564, 508, 3, 2, 2, 2, 2565, 2566, 7, 68, 2, 2, 2566, 2567, 7, 84, 2, 2, 2567, 2568, 7, 67, 2, 2, 2568, 2569, 7, 69, 2, 2, 2569, 2570, 7, 77, 2, 2, 2570, 2571, 7, 71, 2, 2, 2571, 2572, 7, 86, 2, 2, 2572, 2573, 7, 71, 2, 2, 2573, 2574, 7, 70, 2, 2, 2574, 2575, 7, 97, 2, 2, 2575, 2576, 7, 69, 2, 2, 2576, 2577, 7, 81, 2, 2, 2577, 2578, 7, 79, 2, 2, 2578, 2579, 7, 79, 2, 2, 2579, 2580, 7, 71, 2, 2, 2580, 2581, 7, 80, 2, 2, 2581, 2582, 7, 86, 2, 2, 2582, 510, 3, 2, 2, 2, 2583, 2584, 7, 89, 2, 2, 2584, 2585, 7, 85, 2, 2, 2585, 512, 3, 2, 2, 2, 2586, 2587, 7, 87, 2, 2, 2587, 2588, 7, 80, 2, 2, 2588, 2589, 7, 84, 2, 2, 2589, 2590, 7, 71, 2, 2, 2590, 2591, 7, 69, 2, 2, 2591, 2592, 7, 81, 2, 2, 2592, 2593, 7, 73, 2, 2, 2593, 2594, 7, 80, 2, 2, 2594, 2595, 7, 75, 2, 2, 2595, 2596, 7, 92, 2, 2, 2596, 2597, 7, 71, 2, 2, 2597, 2598, 7, 70, 2, 2, 2598, 514, 3, 2, 2, 2, 2599, 2601, 7, 98, 2, 2, 2600, 2602, 10, 4, 2, 2, 2601, 2600, 3, 2, 2, 2, 2602, 2603, 3, 2, 2, 2, 2603, 2601, 3, 2, 2, 2, 2603, 2604, 3, 2, 2, 2, 2604, 2605, 3, 2, 2, 2, 2605, 2606, 7, 98, 2, 2, 2606, 516, 3, 2, 2, 2, 2607, 2609, 7, 36, 2, 2, 2608, 2610, 10, 5, 2, 2, 2609, 2608, 3, 2, 2, 2, 2610, 2611, 3, 2, 2, 2, 2611, 2609, 3, 2, 2, 2, 2611, 2612, 3, 2, 2, 2, 2612, 2613, 3, 2, 2, 2, 2613, 2614, 7, 36, 2, 2, 2614, 518, 3, 2, 2, 2, 2615, 2616, 7, 48, 2, 2, 2616, 2617, 5, 625, 313, 2, 2617, 520, 3, 2, 2, 2, 2618, 2619, 5, 625, 313, 2, 2619, 522, 3, 2, 2, 2, 2620, 2621, 7, 85, 2, 2, 2621, 2622, 7, 91, 2, 2, 2622, 2623, 7, 85, 2, 2, 2623, 2624, 7, 86, 2, 2, 2624, 2625, 7, 71, 2, 2, 2625, 2626, 7, 79, 2, 2, 2626, 524, 3, 2, 2, 2, 2627, 2628, 7, 85, 2, 2, 2628, 2629, 7, 86, 2, 2, 2629, 2630, 7, 84, 2, 2, 2630, 2631, 7, 75, 2, 2, 2631, 2632, 7, 80, 2, 2, 2632, 2633, 7, 73, 2, 2, 2633, 526, 3, 2, 2, 2, 2634, 2635, 7, 67, 2, 2, 2635, 2636, 7, 84, 2, 2, 2636, 2637, 7, 84, 2, 2, 2637, 2638, 7, 67, 2, 2, 2638, 2639, 7, 91, 2, 2, 2639, 528, 3, 2, 2, 2, 2640, 2641, 7, 79, 2, 2, 2641, 2642, 7, 67, 2, 2, 2642, 2643, 7, 82, 2, 2, 2643, 530, 3, 2, 2, 2, 2644, 2645, 7, 69, 2, 2, 2645, 2646, 7, 74, 2, 2, 2646, 2647, 7, 67, 2, 2, 2647, 2648, 7, 84, 2, 2, 2648, 532, 3, 2, 2, 2, 2649, 2650, 7, 88, 2, 2, 2650, 2651, 7, 67, 2, 2, 2651, 2652, 7, 84, 2, 2, 2652, 2653, 7, 69, 2, 2, 2653, 2654, 7, 74, 2, 2, 2654, 2655, 7, 67, 2, 2, 2655, 2656, 7, 84, 2, 2, 2656, 534, 3, 2, 2, 2, 2657, 2658, 7, 68, 2, 2, 2658, 2659, 7, 75, 2, 2, 2659, 2660, 7, 80, 2, 2, 2660, 2661, 7, 67, 2, 2, 2661, 2662, 7, 84, 2, 2, 2662, 2663, 7, 91, 2, 2, 2663, 536, 3, 2, 2, 2, 2664, 2665, 7, 88, 2, 2, 2665, 2666, 7, 67, 2, 2, 2666, 2667, 7, 84, 2, 2, 2667, 2668, 7, 68, 2, 2, 2668, 2669, 7, 75, 2, 2, 2669, 2670, 7, 80, 2, 2, 2670, 2671, 7, 67, 2, 2, 2671, 2672, 7, 84, 2, 2, 2672, 2673, 7, 91, 2, 2, 2673, 538, 3, 2, 2, 2, 2674, 2675, 7, 68, 2, 2, 2675, 2676, 7, 91, 2, 2, 2676, 2677, 7, 86, 2, 2, 2677, 2678, 7, 71, 2, 2, 2678, 2679, 7, 85, 2, 2, 2679, 540, 3, 2, 2, 2, 2680, 2681, 7, 70, 2, 2, 2681, 2682, 7, 71, 2, 2, 2682, 2683, 7, 69, 2, 2, 2683, 2684, 7, 75, 2, 2, 2684, 2685, 7, 79, 2, 2, 2685, 2686, 7, 67, 2, 2, 2686, 2687, 7, 78, 2, 2, 2687, 542, 3, 2, 2, 2, 2688, 2689, 7, 86, 2, 2, 2689, 2690, 7, 75, 2, 2, 2690, 2691, 7, 80, 2, 2, 2691, 2692, 7, 91, 2, 2, 2692, 2693, 7, 75, 2, 2, 2693, 2694, 7, 80, 2, 2, 2694, 2695, 7, 86, 2, 2, 2695, 544, 3, 2, 2, 2, 2696, 2697, 7, 85, 2, 2, 2697, 2698, 7, 79, 2, 2, 2698, 2699, 7, 67, 2, 2, 2699, 2700, 7, 78, 2, 2, 2700, 2701, 7, 78, 2, 2, 2701, 2702, 7, 75, 2, 2, 2702, 2703, 7, 80, 2, 2, 2703, 2704, 7, 86, 2, 2, 2704, 546, 3, 2, 2, 2, 2705, 2706, 7, 75, 2, 2, 2706, 2707, 7, 80, 2, 2, 2707, 2708, 7, 86, 2, 2, 2708, 548, 3, 2, 2, 2, 2709, 2710, 7, 68, 2, 2, 2710, 2711, 7, 75, 2, 2, 2711, 2712, 7, 73, 2, 2, 2712, 2713, 7, 75, 2, 2, 2713, 2714, 7, 80, 2, 2, 2714, 2715, 7, 86, 2, 2, 2715, 550, 3, 2, 2, 2, 2716, 2717, 7, 72, 2, 2, 2717, 2718, 7, 78, 2, 2, 2718, 2719, 7, 81, 2, 2, 2719, 2720, 7, 67, 2, 2, 2720, 2721, 7, 86, 2, 2, 2721, 552, 3, 2, 2, 2, 2722, 2723, 7, 70, 2, 2, 2723, 2724, 7, 81, 2, 2, 2724, 2725, 7, 87, 2, 2, 2725, 2726, 7, 68, 2, 2, 2726, 2727, 7, 78, 2, 2, 2727, 2728, 7, 71, 2, 2, 2728, 554, 3, 2, 2, 2, 2729, 2730, 7, 70, 2, 2, 2730, 2731, 7, 67, 2, 2, 2731, 2732, 7, 86, 2, 2, 2732, 2733, 7, 71, 2, 2, 2733, 556, 3, 2, 2, 2, 2734, 2735, 7, 86, 2, 2, 2735, 2736, 7, 75, 2, 2, 2736, 2737, 7, 79, 2, 2, 2737, 2738, 7, 71, 2, 2, 2738, 558, 3, 2, 2, 2, 2739, 2740, 7, 86, 2, 2, 2740, 2741, 7, 75, 2, 2, 2741, 2742, 7, 79, 2, 2, 2742, 2743, 7, 71, 2, 2, 2743, 2744, 7, 85, 2, 2, 2744, 2745, 7, 86, 2, 2, 2745, 2746, 7, 67, 2, 2, 2746, 2747, 7, 79, 2, 2, 2747, 2748, 7, 82, 2, 2, 2748, 560, 3, 2, 2, 2, 2749, 2750, 7, 79, 2, 2, 2750, 2751, 7, 87, 2, 2, 2751, 2752, 7, 78, 2, 2, 2752, 2753, 7, 86, 2, 2, 2753, 2754, 7, 75, 2, 2, 2754, 2755, 7, 85, 2, 2, 2755, 2756, 7, 71, 2, 2, 2756, 2757, 7, 86, 2, 2, 2757, 562, 3, 2, 2, 2, 2758, 2759, 7, 68, 2, 2, 2759, 2760, 7, 81, 2, 2, 2760, 2761, 7, 81, 2, 2, 2761, 2762, 7, 78, 2, 2, 2762, 2763, 7, 71, 2, 2, 2763, 2764, 7, 67, 2, 2, 2764, 2765, 7, 80, 2, 2, 2765, 564, 3, 2, 2, 2, 2766, 2767, 7, 84, 2, 2, 2767, 2768, 7, 67, 2, 2, 2768, 2769, 7, 89, 2, 2, 2769, 566, 3, 2, 2, 2, 2770, 2771, 7, 84, 2, 2, 2771, 2772, 7, 81, 2, 2, 2772, 2773, 7, 89, 2, 2, 2773, 568, 3, 2, 2, 2, 2774, 2775, 7, 80, 2, 2, 2775, 2776, 7, 87, 2, 2, 2776, 2777, 7, 78, 2, 2, 2777, 2778, 7, 78, 2, 2, 2778, 570, 3, 2, 2, 2, 2779, 2780, 7, 63, 2, 2, 2780, 572, 3, 2, 2, 2, 2781, 2782, 7, 64, 2, 2, 2782, 574, 3, 2, 2, 2, 2783, 2784, 7, 62, 2, 2, 2784, 576, 3, 2, 2, 2, 2785, 2786, 7, 35, 2, 2, 2786, 578, 3, 2, 2, 2, 2787, 2788, 7, 128, 2, 2, 2788, 580, 3, 2, 2, 2, 2789, 2790, 7, 126, 2, 2, 2790, 582, 3, 2, 2, 2, 2791, 2792, 7, 40, 2, 2, 2792, 584, 3, 2, 2, 2, 2793, 2794, 7, 96, 2, 2, 2794, 586, 3, 2, 2, 2, 2795, 2796, 7, 48, 2, 2, 2796, 588, 3, 2, 2, 2, 2797, 2798, 7, 42, 2, 2, 2798, 590, 3, 2, 2, 2, 2799, 2800, 7, 43, 2, 2, 2800, 592, 3, 2, 2, 2, 2801, 2802, 7, 46, 2, 2, 2802, 594, 3, 2, 2, 2, 2803, 2804, 7, 61, 2, 2, 2804, 596, 3, 2, 2, 2, 2805, 2806, 7, 66, 2, 2, 2806, 598, 3, 2, 2, 2, 2807, 2808, 7, 50, 2, 2, 2808, 600, 3, 2, 2, 2, 2809, 2810, 7, 51, 2, 2, 2810, 602, 3, 2, 2, 2, 2811, 2812, 7, 52, 2, 2, 2812, 604, 3, 2, 2, 2, 2813, 2814, 7, 41, 2, 2, 2814, 606, 3, 2, 2, 2, 2815, 2816, 7, 36, 2, 2, 2816, 608, 3, 2, 2, 2, 2817, 2818, 7, 98, 2, 2, 2818, 610, 3, 2, 2, 2, 2819, 2820, 7, 60, 2, 2, 2820, 612, 3, 2, 2, 2, 2821, 2822, 7, 44, 2, 2, 2822, 614, 3, 2, 2, 2, 2823, 2827, 5, 629, 315, 2, 2824, 2827, 5, 631, 316, 2, 2825, 2827, 5, 635, 318, 2, 2826, 2823, 3, 2, 2, 2, 2826, 2824, 3, 2, 2, 2, 2826, 2825, 3, 2, 2, 2, 2827, 616, 3, 2, 2, 2, 2828, 2830, 5, 627, 314, 2, 2829, 2828, 3, 2, 2, 2, 2830, 2831, 3, 2, 2, 2, 2831, 2829, 3, 2, 2, 2, 2831, 2832, 3, 2, 2, 2, 2832, 618, 3, 2, 2, 2, 2833, 2835, 5, 627, 314, 2, 2834, 2833, 3, 2, 2, 2, 2835, 2836, 3, 2, 2, 2, 2836, 2834, 3, 2, 2, 2, 2836, 2837, 3, 2, 2, 2, 2837, 2839, 3, 2, 2, 2, 2838, 2834, 3, 2, 2, 2, 2838, 2839, 3, 2, 2, 2, 2839, 2840, 3, 2, 2, 2, 2840, 2842, 7, 48, 2, 2, 2841, 2843, 5, 627, 314, 2, 2842, 2841, 3, 2, 2, 2, 2843, 2844, 3, 2, 2, 2, 2844, 2842, 3, 2, 2, 2, 2844, 2845, 3, 2, 2, 2, 2845, 2877, 3, 2, 2, 2, 2846, 2848, 5, 627, 314, 2, 2847, 2846, 3, 2, 2, 2, 2848, 2849, 3, 2, 2, 2, 2849, 2847, 3, 2, 2, 2, 2849, 2850, 3, 2, 2, 2, 2850, 2851, 3, 2, 2, 2, 2851, 2852, 7, 48, 2, 2, 2852, 2853, 5, 623, 312, 2, 2853, 2877, 3, 2, 2, 2, 2854, 2856, 5, 627, 314, 2, 2855, 2854, 3, 2, 2, 2, 2856, 2857, 3, 2, 2, 2, 2857, 2855, 3, 2, 2, 2, 2857, 2858, 3, 2, 2, 2, 2858, 2860, 3, 2, 2, 2, 2859, 2855, 3, 2, 2, 2, 2859, 2860, 3, 2, 2, 2, 2860, 2861, 3, 2, 2, 2, 2861, 2863, 7, 48, 2, 2, 2862, 2864, 5, 627, 314, 2, 2863, 2862, 3, 2, 2, 2, 2864, 2865, 3, 2, 2, 2, 2865, 2863, 3, 2, 2, 2, 2865, 2866, 3, 2, 2, 2, 2866, 2867, 3, 2, 2, 2, 2867, 2868, 5, 623, 312, 2, 2868, 2877, 3, 2, 2, 2, 2869, 2871, 5, 627, 314, 2, 2870, 2869, 3, 2, 2, 2, 2871, 2872, 3, 2, 2, 2, 2872, 2870, 3, 2, 2, 2, 2872, 2873, 3, 2, 2, 2, 2873, 2874, 3, 2, 2, 2, 2874, 2875, 5, 623, 312, 2, 2875, 2877, 3, 2, 2, 2, 2876, 2838, 3, 2, 2, 2, 2876, 2847, 3, 2, 2, 2, 2876, 2859, 3, 2, 2, 2, 2876, 2870, 3, 2, 2, 2, 2877, 620, 3, 2, 2, 2, 2878, 2879, 5, 633, 317, 2, 2879, 622, 3, 2, 2, 2, 2880, 2882, 7, 71, 2, 2, 2881, 2883, 9, 6, 2, 2, 2882, 2881, 3, 2, 2, 2, 2882, 2883, 3, 2, 2, 2, 2883, 2885, 3, 2, 2, 2, 2884, 2886, 5, 627, 314, 2, 2885, 2884, 3, 2, 2, 2, 2886, 2887, 3, 2, 2, 2, 2887, 2885, 3, 2, 2, 2, 2887, 2888, 3, 2, 2, 2, 2888, 624, 3, 2, 2, 2, 2889, 2891, 9, 7, 2, 2, 2890, 2889, 3, 2, 2, 2, 2891, 2894, 3, 2, 2, 2, 2892, 2893, 3, 2, 2, 2, 2892, 2890, 3, 2, 2, 2, 2893, 2896, 3, 2, 2, 2, 2894, 2892, 3, 2, 2, 2, 2895, 2897, 9, 8, 2, 2, 2896, 2895, 3, 2, 2, 2, 2897, 2898, 3, 2, 2, 2, 2898, 2899, 3, 2, 2, 2, 2898, 2896, 3, 2, 2, 2, 2899, 2903, 3, 2, 2, 2, 2900, 2902, 9, 7, 2, 2, 2901, 2900, 3, 2, 2, 2, 2902, 2905, 3, 2, 2, 2, 2903, 2901, 3, 2, 2, 2, 2903, 2904, 3, 2, 2, 2, 2904, 626, 3, 2, 2, 2, 2905, 2903, 3, 2, 2, 2, 2906, 2907, 9, 9, 2, 2, 2907, 628, 3, 2, 2, 2, 2908, 2916, 7, 36, 2, 2, 2909, 2910, 7, 94, 2, 2, 2910, 2915, 11, 2, 2, 2, 2911, 2912, 7, 36, 2, 2, 2912, 2915, 7, 36, 2, 2, 2913, 2915, 10, 10, 2, 2, 2914, 2909, 3, 2, 2, 2, 2914, 2911, 3, 2, 2, 2, 2914, 2913, 3, 2, 2, 2, 2915, 2918, 3, 2, 2, 2, 2916, 2914, 3, 2, 2, 2, 2916, 2917, 3, 2, 2, 2, 2917, 2919, 3, 2, 2, 2, 2918, 2916, 3, 2, 2, 2, 2919, 2920, 7, 36, 2, 2, 2920, 630, 3, 2, 2, 2, 2921, 2929, 7, 41, 2, 2, 2922, 2923, 7, 94, 2, 2, 2923, 2928, 11, 2, 2, 2, 2924, 2925, 7, 41, 2, 2, 2925, 2928, 7, 41, 2, 2, 2926, 2928, 10, 11, 2, 2, 2927, 2922, 3, 2, 2, 2, 2927, 2924, 3, 2, 2, 2, 2927, 2926, 3, 2, 2, 2, 2928, 2931, 3, 2, 2, 2, 2929, 2927, 3, 2, 2, 2, 2929, 2930, 3, 2, 2, 2, 2930, 2932, 3, 2, 2, 2, 2931, 2929, 3, 2, 2, 2, 2932, 2933, 7, 41, 2, 2, 2933, 632, 3, 2, 2, 2, 2934, 2935, 7, 68, 2, 2, 2935, 2937, 7, 41, 2, 2, 2936, 2938, 9, 12, 2, 2, 2937, 2936, 3, 2, 2, 2, 2938, 2939, 3, 2, 2, 2, 2939, 2937, 3, 2, 2, 2, 2939, 2940, 3, 2, 2, 2, 2940, 2941, 3, 2, 2, 2, 2941, 2942, 7, 41, 2, 2, 2942, 634, 3, 2, 2, 2, 2943, 2951, 7, 98, 2, 2, 2944, 2945, 7, 94, 2, 2, 2945, 2950, 11, 2, 2, 2, 2946, 2947, 7, 98, 2, 2, 2947, 2950, 7, 98, 2, 2, 2948, 2950, 10, 13, 2, 2, 2949, 2944, 3, 2, 2, 2, 2949, 2946, 3, 2, 2, 2, 2949, 2948, 3, 2, 2, 2, 2950, 2953, 3, 2, 2, 2, 2951, 2949, 3, 2, 2, 2, 2951, 2952, 3, 2, 2, 2, 2952, 2954, 3, 2, 2, 2, 2953, 2951, 3, 2, 2, 2, 2954, 2955, 7, 98, 2, 2, 2955, 636, 3, 2, 2, 2, 38, 2, 640, 651, 664, 676, 681, 685, 689, 695, 699, 701, 2603, 2611, 2826, 2831, 2836, 2838, 2844, 2849, 2857, 2859, 2865, 2872, 2876, 2882, 2887, 2892, 2898, 2903, 2914, 2916, 2927, 2929, 2939, 2949, 2951, 4, 2, 3, 2, 2, 4, 2] \ No newline at end of file diff --git a/src/lib/flinksql/FlinkSqlLexer.js b/src/lib/flinksql/FlinkSqlLexer.js index 04bd4c3..97633bb 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\u0133\u0b00\b\u0001\u0004\u0002\t\u0002\u0004\u0003\t\u0003\u0004", + "\u0002\u0138\u0b8c\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", @@ -78,334 +78,358 @@ var serializedATN = ["\u0003\u608b\ua72a\u8133\ub9ed\u417c\u3be7\u7786\u5964", "\u0126\u0004\u0127\t\u0127\u0004\u0128\t\u0128\u0004\u0129\t\u0129\u0004", "\u012a\t\u012a\u0004\u012b\t\u012b\u0004\u012c\t\u012c\u0004\u012d\t", "\u012d\u0004\u012e\t\u012e\u0004\u012f\t\u012f\u0004\u0130\t\u0130\u0004", - "\u0131\t\u0131\u0004\u0132\t\u0132\u0004\u0133\t\u0133\u0003\u0002\u0006", - "\u0002\u0269\n\u0002\r\u0002\u000e\u0002\u026a\u0003\u0002\u0003\u0002", - "\u0003\u0003\u0003\u0003\u0003\u0003\u0003\u0003\u0003\u0003\u0006\u0003", - "\u0274\n\u0003\r\u0003\u000e\u0003\u0275\u0003\u0003\u0003\u0003\u0003", - "\u0003\u0003\u0003\u0003\u0003\u0003\u0004\u0003\u0004\u0003\u0004\u0003", - "\u0004\u0007\u0004\u0281\n\u0004\f\u0004\u000e\u0004\u0284\u000b\u0004", - "\u0003\u0004\u0003\u0004\u0003\u0004\u0003\u0004\u0003\u0004\u0003\u0005", - "\u0003\u0005\u0003\u0005\u0003\u0005\u0005\u0005\u028f\n\u0005\u0003", - "\u0005\u0007\u0005\u0292\n\u0005\f\u0005\u000e\u0005\u0295\u000b\u0005", - "\u0003\u0005\u0005\u0005\u0298\n\u0005\u0003\u0005\u0003\u0005\u0005", - "\u0005\u029c\n\u0005\u0003\u0005\u0003\u0005\u0003\u0005\u0003\u0005", - "\u0005\u0005\u02a2\n\u0005\u0003\u0005\u0003\u0005\u0005\u0005\u02a6", - "\n\u0005\u0005\u0005\u02a8\n\u0005\u0003\u0005\u0003\u0005\u0003\u0006", + "\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\u0003\u0003", + "\u0006\u0003\u028a\n\u0003\r\u0003\u000e\u0003\u028b\u0003\u0003\u0003", + "\u0003\u0003\u0003\u0003\u0003\u0003\u0003\u0003\u0004\u0003\u0004\u0003", + "\u0004\u0003\u0004\u0007\u0004\u0297\n\u0004\f\u0004\u000e\u0004\u029a", + "\u000b\u0004\u0003\u0004\u0003\u0004\u0003\u0004\u0003\u0004\u0003\u0004", + "\u0003\u0005\u0003\u0005\u0003\u0005\u0003\u0005\u0005\u0005\u02a5\n", + "\u0005\u0003\u0005\u0007\u0005\u02a8\n\u0005\f\u0005\u000e\u0005\u02ab", + "\u000b\u0005\u0003\u0005\u0005\u0005\u02ae\n\u0005\u0003\u0005\u0003", + "\u0005\u0005\u0005\u02b2\n\u0005\u0003\u0005\u0003\u0005\u0003\u0005", + "\u0003\u0005\u0005\u0005\u02b8\n\u0005\u0003\u0005\u0003\u0005\u0005", + "\u0005\u02bc\n\u0005\u0005\u0005\u02be\n\u0005\u0003\u0005\u0003\u0005", "\u0003\u0006\u0003\u0006\u0003\u0006\u0003\u0006\u0003\u0006\u0003\u0006", - "\u0003\u0007\u0003\u0007\u0003\u0007\u0003\u0007\u0003\u0007\u0003\b", - "\u0003\b\u0003\b\u0003\b\u0003\t\u0003\t\u0003\t\u0003\n\u0003\n\u0003", - "\n\u0003\n\u0003\u000b\u0003\u000b\u0003\u000b\u0003\u000b\u0003\f\u0003", - "\f\u0003\f\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\u000e\u0003\u000e\u0003\u000e\u0003\u000f\u0003\u000f\u0003\u000f", - "\u0003\u0010\u0003\u0010\u0003\u0010\u0003\u0010\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\u0013\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\u0015\u0003\u0015\u0003\u0015\u0003\u0015", - "\u0003\u0015\u0003\u0015\u0003\u0015\u0003\u0016\u0003\u0016\u0003\u0016", - "\u0003\u0016\u0003\u0016\u0003\u0016\u0003\u0017\u0003\u0017\u0003\u0017", - "\u0003\u0018\u0003\u0018\u0003\u0018\u0003\u0019\u0003\u0019\u0003\u0019", - "\u0003\u0019\u0003\u001a\u0003\u001a\u0003\u001a\u0003\u001b\u0003\u001b", - "\u0003\u001b\u0003\u001b\u0003\u001c\u0003\u001c\u0003\u001c\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\u001e", - "\u0003\u001e\u0003\u001e\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\u00031\u0003", - "2\u00032\u00032\u00032\u00032\u00033\u00033\u00033\u00033\u00033\u0003", - "4\u00034\u00034\u00034\u00034\u00034\u00035\u00035\u00035\u00035\u0003", - "5\u00036\u00036\u00036\u00036\u00036\u00036\u00036\u00036\u00037\u0003", - "7\u00037\u00038\u00038\u00038\u00038\u00038\u00038\u00039\u00039\u0003", - "9\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@\u0003A\u0003", - "A\u0003A\u0003A\u0003A\u0003A\u0003A\u0003A\u0003A\u0003A\u0003B\u0003", - "B\u0003B\u0003B\u0003B\u0003B\u0003B\u0003B\u0003C\u0003C\u0003C\u0003", - "C\u0003C\u0003C\u0003D\u0003D\u0003D\u0003D\u0003D\u0003D\u0003E\u0003", - "E\u0003E\u0003E\u0003E\u0003F\u0003F\u0003F\u0003F\u0003F\u0003G\u0003", - "G\u0003G\u0003G\u0003G\u0003G\u0003G\u0003H\u0003H\u0003H\u0003H\u0003", - "H\u0003H\u0003H\u0003I\u0003I\u0003I\u0003I\u0003I\u0003I\u0003J\u0003", - "J\u0003J\u0003J\u0003J\u0003J\u0003J\u0003J\u0003J\u0003J\u0003K\u0003", - "K\u0003K\u0003K\u0003K\u0003L\u0003L\u0003L\u0003L\u0003L\u0003L\u0003", - "L\u0003L\u0003M\u0003M\u0003M\u0003M\u0003M\u0003M\u0003M\u0003N\u0003", - "N\u0003N\u0003N\u0003N\u0003N\u0003N\u0003O\u0003O\u0003O\u0003O\u0003", - "O\u0003P\u0003P\u0003P\u0003P\u0003P\u0003P\u0003P\u0003P\u0003P\u0003", - "Q\u0003Q\u0003Q\u0003Q\u0003Q\u0003Q\u0003Q\u0003Q\u0003R\u0003R\u0003", - "R\u0003R\u0003R\u0003R\u0003R\u0003S\u0003S\u0003S\u0003S\u0003S\u0003", - "S\u0003S\u0003S\u0003T\u0003T\u0003T\u0003T\u0003T\u0003T\u0003T\u0003", - "T\u0003U\u0003U\u0003U\u0003U\u0003U\u0003V\u0003V\u0003V\u0003V\u0003", - "V\u0003W\u0003W\u0003W\u0003W\u0003W\u0003X\u0003X\u0003X\u0003X\u0003", - "X\u0003X\u0003X\u0003Y\u0003Y\u0003Y\u0003Y\u0003Y\u0003Y\u0003Y\u0003", - "Y\u0003Z\u0003Z\u0003Z\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`\u0003a\u0003a\u0003a\u0003a\u0003a\u0003a\u0003a\u0003", - "a\u0003a\u0003b\u0003b\u0003b\u0003b\u0003b\u0003b\u0003b\u0003b\u0003", - "b\u0003b\u0003c\u0003c\u0003c\u0003d\u0003d\u0003d\u0003d\u0003d\u0003", - "d\u0003d\u0003d\u0003d\u0003d\u0003d\u0003d\u0003e\u0003e\u0003e\u0003", - "e\u0003e\u0003e\u0003e\u0003e\u0003e\u0003f\u0003f\u0003f\u0003f\u0003", - "f\u0003f\u0003g\u0003g\u0003g\u0003g\u0003g\u0003g\u0003g\u0003h\u0003", - "h\u0003h\u0003h\u0003h\u0003h\u0003h\u0003i\u0003i\u0003i\u0003i\u0003", - "i\u0003i\u0003i\u0003i\u0003j\u0003j\u0003j\u0003j\u0003k\u0003k\u0003", - "k\u0003k\u0003k\u0003k\u0003l\u0003l\u0003l\u0003l\u0003l\u0003m\u0003", - "m\u0003m\u0003m\u0003m\u0003m\u0003n\u0003n\u0003n\u0003n\u0003n\u0003", - "n\u0003n\u0003n\u0003n\u0003n\u0003n\u0003n\u0003o\u0003o\u0003o\u0003", - "o\u0003o\u0003o\u0003o\u0003p\u0003p\u0003p\u0003p\u0003p\u0003p\u0003", - "p\u0003p\u0003p\u0003q\u0003q\u0003q\u0003q\u0003q\u0003q\u0003r\u0003", - "r\u0003r\u0003r\u0003r\u0003r\u0003r\u0003s\u0003s\u0003s\u0003s\u0003", - "s\u0003t\u0003t\u0003t\u0003t\u0003t\u0003t\u0003t\u0003t\u0003u\u0003", - "u\u0003u\u0003u\u0003u\u0003u\u0003u\u0003u\u0003u\u0003v\u0003v\u0003", - "v\u0003w\u0003w\u0003w\u0003w\u0003w\u0003w\u0003w\u0003w\u0003w\u0003", - "x\u0003x\u0003x\u0003x\u0003x\u0003x\u0003x\u0003x\u0003y\u0003y\u0003", - "y\u0003z\u0003z\u0003z\u0003z\u0003z\u0003{\u0003{\u0003{\u0003{\u0003", - "|\u0003|\u0003|\u0003|\u0003|\u0003}\u0003}\u0003}\u0003~\u0003~\u0003", - "~\u0003~\u0003\u007f\u0003\u007f\u0003\u007f\u0003\u0080\u0003\u0080", - "\u0003\u0080\u0003\u0080\u0003\u0081\u0003\u0081\u0003\u0081\u0003\u0081", - "\u0003\u0081\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\u0083\u0003\u0083\u0003\u0083\u0003\u0084\u0003\u0084", - "\u0003\u0084\u0003\u0084\u0003\u0084\u0003\u0084\u0003\u0085\u0003\u0085", - "\u0003\u0085\u0003\u0085\u0003\u0085\u0003\u0085\u0003\u0085\u0003\u0085", - "\u0003\u0086\u0003\u0086\u0003\u0086\u0003\u0086\u0003\u0087\u0003\u0087", - "\u0003\u0087\u0003\u0087\u0003\u0087\u0003\u0087\u0003\u0088\u0003\u0088", - "\u0003\u0088\u0003\u0088\u0003\u0088\u0003\u0088\u0003\u0088\u0003\u0088", - "\u0003\u0088\u0003\u0088\u0003\u0089\u0003\u0089\u0003\u0089\u0003\u0089", - "\u0003\u0089\u0003\u008a\u0003\u008a\u0003\u008a\u0003\u008a\u0003\u008a", - "\u0003\u008a\u0003\u008a\u0003\u008a\u0003\u008a\u0003\u008a\u0003\u008a", - "\u0003\u008a\u0003\u008b\u0003\u008b\u0003\u008b\u0003\u008b\u0003\u008c", - "\u0003\u008c\u0003\u008c\u0003\u008c\u0003\u008c\u0003\u008c\u0003\u008c", - "\u0003\u008c\u0003\u008c\u0003\u008c\u0003\u008c\u0003\u008d\u0003\u008d", - "\u0003\u008d\u0003\u008d\u0003\u008d\u0003\u008d\u0003\u008d\u0003\u008e", - "\u0003\u008e\u0003\u008e\u0003\u008e\u0003\u008f\u0003\u008f\u0003\u008f", - "\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\u0092\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\u0094", - "\u0003\u0094\u0003\u0094\u0003\u0095\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\u0098\u0003\u0098\u0003\u0098", - "\u0003\u0098\u0003\u0098\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\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\u009a\u0003\u009a\u0003\u009a\u0003\u009b\u0003\u009b\u0003\u009b", - "\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\u009d\u0003\u009d\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\u009e\u0003\u009e\u0003\u009e\u0003\u009e\u0003\u009e", - "\u0003\u009f\u0003\u009f\u0003\u009f\u0003\u009f\u0003\u009f\u0003\u009f", - "\u0003\u00a0\u0003\u00a0\u0003\u00a0\u0003\u00a0\u0003\u00a0\u0003\u00a1", - "\u0003\u00a1\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\u00a3\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\u00a4\u0003\u00a4\u0003\u00a5\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\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\u00a9\u0003\u00a9\u0003\u00a9\u0003\u00a9\u0003\u00a9", - "\u0003\u00a9\u0003\u00a9\u0003\u00a9\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\u00ab\u0003\u00ab\u0003\u00ab", - "\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\u00ad\u0003\u00ad\u0003\u00ae", - "\u0003\u00ae\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\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\u00b0\u0003\u00b1\u0003\u00b1\u0003\u00b1", - "\u0003\u00b1\u0003\u00b1\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\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\u00b5\u0003\u00b5\u0003\u00b5\u0003\u00b5", - "\u0003\u00b5\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\u00b7\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\u00b9\u0003\u00ba\u0003\u00ba\u0003\u00ba\u0003\u00ba", - "\u0003\u00ba\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\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\u00bd\u0003\u00bd", - "\u0003\u00bd\u0003\u00bd\u0003\u00bd\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\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\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\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\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\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\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\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\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\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\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\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\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\u00e1\u0003\u00e2", - "\u0003\u00e2\u0003\u00e2\u0003\u00e2\u0003\u00e2\u0003\u00e2\u0003\u00e3", - "\u0003\u00e3\u0003\u00e3\u0003\u00e3\u0003\u00e3\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\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\u00e9", - "\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\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\u00f3\u0003\u00f3\u0003\u00f3\u0003\u00f3\u0003\u00f4\u0003\u00f4", - "\u0003\u00f4\u0003\u00f4\u0003\u00f4\u0003\u00f4\u0003\u00f4\u0003\u00f4", - "\u0003\u00f4\u0003\u00f4\u0003\u00f4\u0003\u00f4\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\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\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\u00f8\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\u00f8\u0003\u00f9\u0003\u00f9\u0003\u00f9\u0003\u00f9", - "\u0003\u00f9\u0003\u00f9\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\u00fa\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\u00fb\u0003\u00fc", - "\u0003\u00fc\u0003\u00fc\u0003\u00fc\u0003\u00fc\u0003\u00fc\u0003\u00fc", - "\u0003\u00fc\u0003\u00fc\u0003\u00fc\u0003\u00fc\u0003\u00fc\u0003\u00fc", - "\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\u00fd\u0003\u00fd\u0003\u00fd\u0003\u00fd\u0003\u00fd\u0003\u00fd", - "\u0003\u00fe\u0003\u00fe\u0003\u00fe\u0003\u00fe\u0003\u00fe\u0003\u00fe", - "\u0003\u00fe\u0003\u00fe\u0003\u00fe\u0003\u00fe\u0003\u00fe\u0003\u00fe", - "\u0003\u00fe\u0003\u00fe\u0003\u00fe\u0003\u00fe\u0003\u00fe\u0003\u00fe", - "\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\u00ff\u0003\u00ff\u0003\u00ff\u0003\u00ff\u0003\u00ff\u0003\u00ff", - "\u0003\u00ff\u0003\u00ff\u0003\u00ff\u0003\u00ff\u0003\u00ff\u0003\u00ff", - "\u0003\u0100\u0003\u0100\u0003\u0100\u0003\u0101\u0003\u0101\u0003\u0101", - "\u0003\u0101\u0003\u0101\u0003\u0101\u0003\u0101\u0003\u0101\u0003\u0101", - "\u0003\u0101\u0003\u0101\u0003\u0101\u0003\u0101\u0003\u0102\u0003\u0102", - "\u0006\u0102\u0a14\n\u0102\r\u0102\u000e\u0102\u0a15\u0003\u0102\u0003", - "\u0102\u0003\u0103\u0003\u0103\u0006\u0103\u0a1c\n\u0103\r\u0103\u000e", - "\u0103\u0a1d\u0003\u0103\u0003\u0103\u0003\u0104\u0003\u0104\u0003\u0104", - "\u0003\u0105\u0003\u0105\u0003\u0106\u0003\u0106\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\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\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\u010d\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\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\u0111\u0003\u0111\u0003\u0111\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\u0113", - "\u0003\u0113\u0003\u0113\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\u0116\u0003\u0116\u0003\u0116", - "\u0003\u0116\u0003\u0116\u0003\u0117\u0003\u0117\u0003\u0117\u0003\u0117", - "\u0003\u0117\u0003\u0118\u0003\u0118\u0003\u0118\u0003\u0118\u0003\u0118", - "\u0003\u0118\u0003\u0118\u0003\u0118\u0003\u0118\u0003\u0118\u0003\u0119", - "\u0003\u0119\u0003\u0119\u0003\u0119\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\u011b\u0003\u011b", - "\u0003\u011b\u0003\u011b\u0003\u011c\u0003\u011c\u0003\u011c\u0003\u011c", - "\u0003\u011d\u0003\u011d\u0003\u011d\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", - "\u0007\u0133\u0af1\n\u0133\f\u0133\u000e\u0133\u0af4\u000b\u0133\u0003", - "\u0133\u0006\u0133\u0af7\n\u0133\r\u0133\u000e\u0133\u0af8\u0003\u0133", - "\u0007\u0133\u0afc\n\u0133\f\u0133\u000e\u0133\u0aff\u000b\u0133\u0006", - "\u0275\u0282\u0af2\u0af8\u0002\u0134\u0003\u0003\u0005\u0004\u0007\u0005", + "\u0003\u0006\u0003\u0007\u0003\u0007\u0003\u0007\u0003\u0007\u0003\u0007", + "\u0003\b\u0003\b\u0003\b\u0003\b\u0003\t\u0003\t\u0003\t\u0003\n\u0003", + "\n\u0003\n\u0003\n\u0003\u000b\u0003\u000b\u0003\u000b\u0003\u000b\u0003", + "\f\u0003\f\u0003\f\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\u000e\u0003\u000e\u0003\u000e\u0003\u000f\u0003\u000f\u0003", + "\u000f\u0003\u0010\u0003\u0010\u0003\u0010\u0003\u0010\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\u0013\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\u0015\u0003\u0015\u0003\u0015\u0003", + "\u0015\u0003\u0015\u0003\u0015\u0003\u0015\u0003\u0016\u0003\u0016\u0003", + "\u0016\u0003\u0016\u0003\u0016\u0003\u0016\u0003\u0017\u0003\u0017\u0003", + "\u0017\u0003\u0018\u0003\u0018\u0003\u0018\u0003\u0019\u0003\u0019\u0003", + "\u0019\u0003\u0019\u0003\u001a\u0003\u001a\u0003\u001a\u0003\u001b\u0003", + "\u001b\u0003\u001b\u0003\u001b\u0003\u001c\u0003\u001c\u0003\u001c\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", + "\u001e\u0003\u001e\u0003\u001e\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\u0003", + "0\u00030\u00030\u00030\u00030\u00031\u00031\u00031\u00031\u00031\u0003", + "1\u00032\u00032\u00032\u00032\u00032\u00033\u00033\u00033\u00033\u0003", + "3\u00034\u00034\u00034\u00034\u00034\u00034\u00035\u00035\u00035\u0003", + "5\u00035\u00036\u00036\u00036\u00036\u00036\u00036\u00036\u00036\u0003", + "7\u00037\u00037\u00038\u00038\u00038\u00038\u00038\u00038\u00039\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", + "A\u0003A\u0003A\u0003A\u0003A\u0003A\u0003A\u0003A\u0003A\u0003A\u0003", + "B\u0003B\u0003B\u0003B\u0003B\u0003B\u0003B\u0003B\u0003C\u0003C\u0003", + "C\u0003C\u0003C\u0003C\u0003D\u0003D\u0003D\u0003D\u0003D\u0003D\u0003", + "E\u0003E\u0003E\u0003E\u0003E\u0003F\u0003F\u0003F\u0003F\u0003F\u0003", + "G\u0003G\u0003G\u0003G\u0003G\u0003G\u0003G\u0003H\u0003H\u0003H\u0003", + "H\u0003H\u0003H\u0003H\u0003I\u0003I\u0003I\u0003I\u0003I\u0003I\u0003", + "J\u0003J\u0003J\u0003J\u0003J\u0003J\u0003J\u0003J\u0003J\u0003J\u0003", + "K\u0003K\u0003K\u0003K\u0003K\u0003L\u0003L\u0003L\u0003L\u0003L\u0003", + "L\u0003L\u0003L\u0003M\u0003M\u0003M\u0003M\u0003M\u0003M\u0003M\u0003", + "N\u0003N\u0003N\u0003N\u0003N\u0003N\u0003N\u0003O\u0003O\u0003O\u0003", + "O\u0003O\u0003P\u0003P\u0003P\u0003P\u0003P\u0003P\u0003P\u0003P\u0003", + "P\u0003Q\u0003Q\u0003Q\u0003Q\u0003Q\u0003Q\u0003Q\u0003Q\u0003R\u0003", + "R\u0003R\u0003R\u0003R\u0003R\u0003R\u0003S\u0003S\u0003S\u0003S\u0003", + "S\u0003S\u0003S\u0003S\u0003T\u0003T\u0003T\u0003T\u0003T\u0003T\u0003", + "T\u0003T\u0003U\u0003U\u0003U\u0003U\u0003U\u0003V\u0003V\u0003V\u0003", + "V\u0003V\u0003W\u0003W\u0003W\u0003W\u0003W\u0003X\u0003X\u0003X\u0003", + "X\u0003X\u0003X\u0003X\u0003Y\u0003Y\u0003Y\u0003Y\u0003Y\u0003Y\u0003", + "Y\u0003Y\u0003Z\u0003Z\u0003Z\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`\u0003a\u0003a\u0003a\u0003a\u0003a\u0003a\u0003", + "a\u0003a\u0003a\u0003b\u0003b\u0003b\u0003b\u0003b\u0003b\u0003b\u0003", + "b\u0003b\u0003b\u0003c\u0003c\u0003c\u0003d\u0003d\u0003d\u0003d\u0003", + "d\u0003d\u0003d\u0003d\u0003d\u0003d\u0003d\u0003d\u0003e\u0003e\u0003", + "e\u0003e\u0003e\u0003e\u0003e\u0003e\u0003e\u0003f\u0003f\u0003f\u0003", + "f\u0003f\u0003f\u0003g\u0003g\u0003g\u0003g\u0003g\u0003g\u0003g\u0003", + "h\u0003h\u0003h\u0003h\u0003h\u0003h\u0003h\u0003i\u0003i\u0003i\u0003", + "i\u0003i\u0003i\u0003i\u0003i\u0003j\u0003j\u0003j\u0003j\u0003k\u0003", + "k\u0003k\u0003k\u0003k\u0003k\u0003l\u0003l\u0003l\u0003l\u0003l\u0003", + "m\u0003m\u0003m\u0003m\u0003m\u0003m\u0003n\u0003n\u0003n\u0003n\u0003", + "n\u0003n\u0003n\u0003n\u0003n\u0003n\u0003n\u0003n\u0003o\u0003o\u0003", + "o\u0003o\u0003o\u0003o\u0003o\u0003p\u0003p\u0003p\u0003p\u0003p\u0003", + "p\u0003p\u0003p\u0003p\u0003q\u0003q\u0003q\u0003q\u0003q\u0003q\u0003", + "r\u0003r\u0003r\u0003r\u0003r\u0003r\u0003r\u0003s\u0003s\u0003s\u0003", + "s\u0003s\u0003t\u0003t\u0003t\u0003t\u0003t\u0003t\u0003t\u0003t\u0003", + "u\u0003u\u0003u\u0003u\u0003u\u0003u\u0003u\u0003u\u0003u\u0003v\u0003", + "v\u0003v\u0003w\u0003w\u0003w\u0003w\u0003w\u0003w\u0003w\u0003w\u0003", + "w\u0003x\u0003x\u0003x\u0003x\u0003x\u0003x\u0003x\u0003x\u0003y\u0003", + "y\u0003y\u0003z\u0003z\u0003z\u0003z\u0003z\u0003{\u0003{\u0003{\u0003", + "{\u0003|\u0003|\u0003|\u0003|\u0003|\u0003}\u0003}\u0003}\u0003~\u0003", + "~\u0003~\u0003~\u0003\u007f\u0003\u007f\u0003\u007f\u0003\u0080\u0003", + "\u0080\u0003\u0080\u0003\u0080\u0003\u0081\u0003\u0081\u0003\u0081\u0003", + "\u0081\u0003\u0081\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\u0083\u0003\u0083\u0003\u0083\u0003\u0084\u0003", + "\u0084\u0003\u0084\u0003\u0084\u0003\u0084\u0003\u0084\u0003\u0085\u0003", + "\u0085\u0003\u0085\u0003\u0085\u0003\u0085\u0003\u0085\u0003\u0085\u0003", + "\u0085\u0003\u0086\u0003\u0086\u0003\u0086\u0003\u0086\u0003\u0087\u0003", + "\u0087\u0003\u0087\u0003\u0087\u0003\u0087\u0003\u0087\u0003\u0088\u0003", + "\u0088\u0003\u0088\u0003\u0088\u0003\u0088\u0003\u0088\u0003\u0088\u0003", + "\u0088\u0003\u0088\u0003\u0088\u0003\u0089\u0003\u0089\u0003\u0089\u0003", + "\u0089\u0003\u0089\u0003\u008a\u0003\u008a\u0003\u008a\u0003\u008a\u0003", + "\u008a\u0003\u008a\u0003\u008a\u0003\u008a\u0003\u008a\u0003\u008a\u0003", + "\u008a\u0003\u008a\u0003\u008b\u0003\u008b\u0003\u008b\u0003\u008b\u0003", + "\u008c\u0003\u008c\u0003\u008c\u0003\u008c\u0003\u008c\u0003\u008c\u0003", + "\u008c\u0003\u008c\u0003\u008c\u0003\u008c\u0003\u008c\u0003\u008d\u0003", + "\u008d\u0003\u008d\u0003\u008d\u0003\u008d\u0003\u008d\u0003\u008d\u0003", + "\u008e\u0003\u008e\u0003\u008e\u0003\u008e\u0003\u008f\u0003\u008f\u0003", + "\u008f\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\u0092\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", + "\u0094\u0003\u0094\u0003\u0094\u0003\u0095\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\u0098\u0003\u0098\u0003", + "\u0098\u0003\u0098\u0003\u0098\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\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\u009a\u0003\u009a\u0003\u009a\u0003\u009b\u0003\u009b\u0003", + "\u009b\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\u009d\u0003\u009d\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\u009e\u0003\u009e\u0003\u009e\u0003\u009e\u0003", + "\u009e\u0003\u009f\u0003\u009f\u0003\u009f\u0003\u009f\u0003\u009f\u0003", + "\u009f\u0003\u00a0\u0003\u00a0\u0003\u00a0\u0003\u00a0\u0003\u00a0\u0003", + "\u00a1\u0003\u00a1\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\u00a3\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\u00a4\u0003\u00a4\u0003\u00a5\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", + "\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\u00a9\u0003\u00a9\u0003\u00a9\u0003\u00a9\u0003", + "\u00a9\u0003\u00a9\u0003\u00a9\u0003\u00a9\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\u00ab\u0003\u00ab\u0003", + "\u00ab\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\u00ad\u0003\u00ad\u0003", + "\u00ae\u0003\u00ae\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\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\u00b0\u0003\u00b1\u0003\u00b1\u0003", + "\u00b1\u0003\u00b1\u0003\u00b1\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", + "\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\u00b5\u0003\u00b5\u0003\u00b5\u0003", + "\u00b5\u0003\u00b5\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\u00b7\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\u00b9\u0003\u00ba\u0003\u00ba\u0003\u00ba\u0003", + "\u00ba\u0003\u00ba\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\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\u00bd\u0003", + "\u00bd\u0003\u00bd\u0003\u00bd\u0003\u00bd\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\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\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", + "\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", + "\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\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\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\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", + "\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\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\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\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\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\u00e1\u0003", + "\u00e2\u0003\u00e2\u0003\u00e2\u0003\u00e2\u0003\u00e2\u0003\u00e2\u0003", + "\u00e3\u0003\u00e3\u0003\u00e3\u0003\u00e3\u0003\u00e3\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\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", + "\u00e9\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\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\u00f3\u0003\u00f3\u0003\u00f3\u0003\u00f3\u0003\u00f4\u0003", + "\u00f4\u0003\u00f4\u0003\u00f4\u0003\u00f4\u0003\u00f4\u0003\u00f4\u0003", + "\u00f4\u0003\u00f4\u0003\u00f4\u0003\u00f4\u0003\u00f4\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", + "\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\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\u00f8\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\u00f8\u0003\u00f9\u0003\u00f9\u0003\u00f9\u0003", + "\u00f9\u0003\u00f9\u0003\u00f9\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\u00fa\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\u00fb\u0003", + "\u00fc\u0003\u00fc\u0003\u00fc\u0003\u00fc\u0003\u00fc\u0003\u00fc\u0003", + "\u00fc\u0003\u00fc\u0003\u00fc\u0003\u00fc\u0003\u00fc\u0003\u00fc\u0003", + "\u00fc\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\u00fd\u0003\u00fd\u0003\u00fd\u0003\u00fd\u0003\u00fd\u0003", + "\u00fd\u0003\u00fe\u0003\u00fe\u0003\u00fe\u0003\u00fe\u0003\u00fe\u0003", + "\u00fe\u0003\u00fe\u0003\u00fe\u0003\u00fe\u0003\u00fe\u0003\u00fe\u0003", + "\u00fe\u0003\u00fe\u0003\u00fe\u0003\u00fe\u0003\u00fe\u0003\u00fe\u0003", + "\u00fe\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\u00ff\u0003\u00ff\u0003\u00ff\u0003\u00ff\u0003\u00ff\u0003", + "\u00ff\u0003\u00ff\u0003\u00ff\u0003\u00ff\u0003\u00ff\u0003\u00ff\u0003", + "\u00ff\u0003\u0100\u0003\u0100\u0003\u0100\u0003\u0101\u0003\u0101\u0003", + "\u0101\u0003\u0101\u0003\u0101\u0003\u0101\u0003\u0101\u0003\u0101\u0003", + "\u0101\u0003\u0101\u0003\u0101\u0003\u0101\u0003\u0101\u0003\u0102\u0003", + "\u0102\u0006\u0102\u0a2a\n\u0102\r\u0102\u000e\u0102\u0a2b\u0003\u0102", + "\u0003\u0102\u0003\u0103\u0003\u0103\u0006\u0103\u0a32\n\u0103\r\u0103", + "\u000e\u0103\u0a33\u0003\u0103\u0003\u0103\u0003\u0104\u0003\u0104\u0003", + "\u0104\u0003\u0105\u0003\u0105\u0003\u0106\u0003\u0106\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\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\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\u010d\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\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\u0111\u0003\u0111\u0003\u0111\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", + "\u0113\u0003\u0113\u0003\u0113\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\u0116\u0003\u0116\u0003", + "\u0116\u0003\u0116\u0003\u0116\u0003\u0117\u0003\u0117\u0003\u0117\u0003", + "\u0117\u0003\u0117\u0003\u0118\u0003\u0118\u0003\u0118\u0003\u0118\u0003", + "\u0118\u0003\u0118\u0003\u0118\u0003\u0118\u0003\u0118\u0003\u0118\u0003", + "\u0119\u0003\u0119\u0003\u0119\u0003\u0119\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\u011b\u0003", + "\u011b\u0003\u011b\u0003\u011b\u0003\u011c\u0003\u011c\u0003\u011c\u0003", + "\u011c\u0003\u011d\u0003\u011d\u0003\u011d\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\u0005\u0134\u0b0b", + "\n\u0134\u0003\u0135\u0006\u0135\u0b0e\n\u0135\r\u0135\u000e\u0135\u0b0f", + "\u0003\u0136\u0006\u0136\u0b13\n\u0136\r\u0136\u000e\u0136\u0b14\u0005", + "\u0136\u0b17\n\u0136\u0003\u0136\u0003\u0136\u0006\u0136\u0b1b\n\u0136", + "\r\u0136\u000e\u0136\u0b1c\u0003\u0136\u0006\u0136\u0b20\n\u0136\r\u0136", + "\u000e\u0136\u0b21\u0003\u0136\u0003\u0136\u0003\u0136\u0003\u0136\u0006", + "\u0136\u0b28\n\u0136\r\u0136\u000e\u0136\u0b29\u0005\u0136\u0b2c\n\u0136", + "\u0003\u0136\u0003\u0136\u0006\u0136\u0b30\n\u0136\r\u0136\u000e\u0136", + "\u0b31\u0003\u0136\u0003\u0136\u0003\u0136\u0006\u0136\u0b37\n\u0136", + "\r\u0136\u000e\u0136\u0b38\u0003\u0136\u0003\u0136\u0005\u0136\u0b3d", + "\n\u0136\u0003\u0137\u0003\u0137\u0003\u0138\u0003\u0138\u0005\u0138", + "\u0b43\n\u0138\u0003\u0138\u0006\u0138\u0b46\n\u0138\r\u0138\u000e\u0138", + "\u0b47\u0003\u0139\u0007\u0139\u0b4b\n\u0139\f\u0139\u000e\u0139\u0b4e", + "\u000b\u0139\u0003\u0139\u0006\u0139\u0b51\n\u0139\r\u0139\u000e\u0139", + "\u0b52\u0003\u0139\u0007\u0139\u0b56\n\u0139\f\u0139\u000e\u0139\u0b59", + "\u000b\u0139\u0003\u013a\u0003\u013a\u0003\u013b\u0003\u013b\u0003\u013b", + "\u0003\u013b\u0003\u013b\u0003\u013b\u0007\u013b\u0b63\n\u013b\f\u013b", + "\u000e\u013b\u0b66\u000b\u013b\u0003\u013b\u0003\u013b\u0003\u013c\u0003", + "\u013c\u0003\u013c\u0003\u013c\u0003\u013c\u0003\u013c\u0007\u013c\u0b70", + "\n\u013c\f\u013c\u000e\u013c\u0b73\u000b\u013c\u0003\u013c\u0003\u013c", + "\u0003\u013d\u0003\u013d\u0003\u013d\u0006\u013d\u0b7a\n\u013d\r\u013d", + "\u000e\u013d\u0b7b\u0003\u013d\u0003\u013d\u0003\u013e\u0003\u013e\u0003", + "\u013e\u0003\u013e\u0003\u013e\u0003\u013e\u0007\u013e\u0b86\n\u013e", + "\f\u013e\u000e\u013e\u0b89\u000b\u013e\u0003\u013e\u0003\u013e\u0006", + "\u028b\u0298\u0b4c\u0b52\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", @@ -446,1348 +470,1431 @@ var serializedATN = ["\u0003\u608b\ua72a\u8133\ub9ed\u417c\u3be7\u7786\u5964", "\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\u0002\u0003\u0002\b\u0005", - "\u0002\u000b\f\u000f\u000f\"\"\u0004\u0002\f\f\u000f\u000f\u0003\u0002", - "bb\u0003\u0002$$\u0006\u00022;C\\aac|\u0005\u0002C\\aac|\u0002\u0b0d", - "\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\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\u0002", - "S\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\u0002a\u0003\u0002\u0002\u0002\u0002c\u0003\u0002\u0002\u0002", - "\u0002e\u0003\u0002\u0002\u0002\u0002g\u0003\u0002\u0002\u0002\u0002", - "i\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\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\u0003\u0268\u0003\u0002\u0002\u0002\u0005", - "\u026e\u0003\u0002\u0002\u0002\u0007\u027c\u0003\u0002\u0002\u0002\t", - "\u02a7\u0003\u0002\u0002\u0002\u000b\u02ab\u0003\u0002\u0002\u0002\r", - "\u02b2\u0003\u0002\u0002\u0002\u000f\u02b7\u0003\u0002\u0002\u0002\u0011", - "\u02bb\u0003\u0002\u0002\u0002\u0013\u02be\u0003\u0002\u0002\u0002\u0015", - "\u02c2\u0003\u0002\u0002\u0002\u0017\u02c6\u0003\u0002\u0002\u0002\u0019", - "\u02cf\u0003\u0002\u0002\u0002\u001b\u02d5\u0003\u0002\u0002\u0002\u001d", - "\u02db\u0003\u0002\u0002\u0002\u001f\u02de\u0003\u0002\u0002\u0002!", - "\u02e7\u0003\u0002\u0002\u0002#\u02ec\u0003\u0002\u0002\u0002%\u02f1", - "\u0003\u0002\u0002\u0002\'\u02f8\u0003\u0002\u0002\u0002)\u02fe\u0003", - "\u0002\u0002\u0002+\u0305\u0003\u0002\u0002\u0002-\u030b\u0003\u0002", - "\u0002\u0002/\u030e\u0003\u0002\u0002\u00021\u0311\u0003\u0002\u0002", - "\u00023\u0315\u0003\u0002\u0002\u00025\u0318\u0003\u0002\u0002\u0002", - "7\u031c\u0003\u0002\u0002\u00029\u031f\u0003\u0002\u0002\u0002;\u0326", - "\u0003\u0002\u0002\u0002=\u032e\u0003\u0002\u0002\u0002?\u0333\u0003", - "\u0002\u0002\u0002A\u0339\u0003\u0002\u0002\u0002C\u033c\u0003\u0002", - "\u0002\u0002E\u0341\u0003\u0002\u0002\u0002G\u0347\u0003\u0002\u0002", - "\u0002I\u034d\u0003\u0002\u0002\u0002K\u0351\u0003\u0002\u0002\u0002", - "M\u0356\u0003\u0002\u0002\u0002O\u035a\u0003\u0002\u0002\u0002Q\u0363", - "\u0003\u0002\u0002\u0002S\u0368\u0003\u0002\u0002\u0002U\u036d\u0003", - "\u0002\u0002\u0002W\u0372\u0003\u0002\u0002\u0002Y\u0377\u0003\u0002", - "\u0002\u0002[\u037b\u0003\u0002\u0002\u0002]\u0380\u0003\u0002\u0002", - "\u0002_\u0386\u0003\u0002\u0002\u0002a\u038c\u0003\u0002\u0002\u0002", - "c\u0392\u0003\u0002\u0002\u0002e\u0397\u0003\u0002\u0002\u0002g\u039c", - "\u0003\u0002\u0002\u0002i\u03a2\u0003\u0002\u0002\u0002k\u03a7\u0003", - "\u0002\u0002\u0002m\u03af\u0003\u0002\u0002\u0002o\u03b2\u0003\u0002", - "\u0002\u0002q\u03b8\u0003\u0002\u0002\u0002s\u03c0\u0003\u0002\u0002", - "\u0002u\u03c7\u0003\u0002\u0002\u0002w\u03cc\u0003\u0002\u0002\u0002", - "y\u03d6\u0003\u0002\u0002\u0002{\u03dc\u0003\u0002\u0002\u0002}\u03e1", - "\u0003\u0002\u0002\u0002\u007f\u03eb\u0003\u0002\u0002\u0002\u0081\u03f5", - "\u0003\u0002\u0002\u0002\u0083\u03ff\u0003\u0002\u0002\u0002\u0085\u0407", - "\u0003\u0002\u0002\u0002\u0087\u040d\u0003\u0002\u0002\u0002\u0089\u0413", - "\u0003\u0002\u0002\u0002\u008b\u0418\u0003\u0002\u0002\u0002\u008d\u041d", - "\u0003\u0002\u0002\u0002\u008f\u0424\u0003\u0002\u0002\u0002\u0091\u042b", - "\u0003\u0002\u0002\u0002\u0093\u0431\u0003\u0002\u0002\u0002\u0095\u043b", - "\u0003\u0002\u0002\u0002\u0097\u0440\u0003\u0002\u0002\u0002\u0099\u0448", - "\u0003\u0002\u0002\u0002\u009b\u044f\u0003\u0002\u0002\u0002\u009d\u0456", - "\u0003\u0002\u0002\u0002\u009f\u045b\u0003\u0002\u0002\u0002\u00a1\u0464", - "\u0003\u0002\u0002\u0002\u00a3\u046c\u0003\u0002\u0002\u0002\u00a5\u0473", - "\u0003\u0002\u0002\u0002\u00a7\u047b\u0003\u0002\u0002\u0002\u00a9\u0483", - "\u0003\u0002\u0002\u0002\u00ab\u0488\u0003\u0002\u0002\u0002\u00ad\u048d", - "\u0003\u0002\u0002\u0002\u00af\u0492\u0003\u0002\u0002\u0002\u00b1\u0499", - "\u0003\u0002\u0002\u0002\u00b3\u04a1\u0003\u0002\u0002\u0002\u00b5\u04a8", - "\u0003\u0002\u0002\u0002\u00b7\u04ac\u0003\u0002\u0002\u0002\u00b9\u04b7", - "\u0003\u0002\u0002\u0002\u00bb\u04c1\u0003\u0002\u0002\u0002\u00bd\u04c6", - "\u0003\u0002\u0002\u0002\u00bf\u04cc\u0003\u0002\u0002\u0002\u00c1\u04d3", - "\u0003\u0002\u0002\u0002\u00c3\u04dc\u0003\u0002\u0002\u0002\u00c5\u04e6", - "\u0003\u0002\u0002\u0002\u00c7\u04e9\u0003\u0002\u0002\u0002\u00c9\u04f5", - "\u0003\u0002\u0002\u0002\u00cb\u04fe\u0003\u0002\u0002\u0002\u00cd\u0504", - "\u0003\u0002\u0002\u0002\u00cf\u050b\u0003\u0002\u0002\u0002\u00d1\u0512", - "\u0003\u0002\u0002\u0002\u00d3\u051a\u0003\u0002\u0002\u0002\u00d5\u051e", - "\u0003\u0002\u0002\u0002\u00d7\u0524\u0003\u0002\u0002\u0002\u00d9\u0529", - "\u0003\u0002\u0002\u0002\u00db\u052f\u0003\u0002\u0002\u0002\u00dd\u053b", - "\u0003\u0002\u0002\u0002\u00df\u0542\u0003\u0002\u0002\u0002\u00e1\u054b", - "\u0003\u0002\u0002\u0002\u00e3\u0551\u0003\u0002\u0002\u0002\u00e5\u0558", - "\u0003\u0002\u0002\u0002\u00e7\u055d\u0003\u0002\u0002\u0002\u00e9\u0565", - "\u0003\u0002\u0002\u0002\u00eb\u056e\u0003\u0002\u0002\u0002\u00ed\u0571", - "\u0003\u0002\u0002\u0002\u00ef\u057a\u0003\u0002\u0002\u0002\u00f1\u0582", - "\u0003\u0002\u0002\u0002\u00f3\u0585\u0003\u0002\u0002\u0002\u00f5\u058a", - "\u0003\u0002\u0002\u0002\u00f7\u058e\u0003\u0002\u0002\u0002\u00f9\u0593", - "\u0003\u0002\u0002\u0002\u00fb\u0596\u0003\u0002\u0002\u0002\u00fd\u059a", - "\u0003\u0002\u0002\u0002\u00ff\u059d\u0003\u0002\u0002\u0002\u0101\u05a1", - "\u0003\u0002\u0002\u0002\u0103\u05a6\u0003\u0002\u0002\u0002\u0105\u05ac", - "\u0003\u0002\u0002\u0002\u0107\u05b5\u0003\u0002\u0002\u0002\u0109\u05bb", - "\u0003\u0002\u0002\u0002\u010b\u05c3\u0003\u0002\u0002\u0002\u010d\u05c7", - "\u0003\u0002\u0002\u0002\u010f\u05cd\u0003\u0002\u0002\u0002\u0111\u05d7", - "\u0003\u0002\u0002\u0002\u0113\u05dc\u0003\u0002\u0002\u0002\u0115\u05e8", - "\u0003\u0002\u0002\u0002\u0117\u05ec\u0003\u0002\u0002\u0002\u0119\u05f7", - "\u0003\u0002\u0002\u0002\u011b\u05fe\u0003\u0002\u0002\u0002\u011d\u0602", - "\u0003\u0002\u0002\u0002\u011f\u0605\u0003\u0002\u0002\u0002\u0121\u060a", - "\u0003\u0002\u0002\u0002\u0123\u0612\u0003\u0002\u0002\u0002\u0125\u061d", - "\u0003\u0002\u0002\u0002\u0127\u0627\u0003\u0002\u0002\u0002\u0129\u0631", - "\u0003\u0002\u0002\u0002\u012b\u0638\u0003\u0002\u0002\u0002\u012d\u063e", - "\u0003\u0002\u0002\u0002\u012f\u0644\u0003\u0002\u0002\u0002\u0131\u0654", - "\u0003\u0002\u0002\u0002\u0133\u0661\u0003\u0002\u0002\u0002\u0135\u066e", - "\u0003\u0002\u0002\u0002\u0137\u0678\u0003\u0002\u0002\u0002\u0139\u067f", - "\u0003\u0002\u0002\u0002\u013b\u068a\u0003\u0002\u0002\u0002\u013d\u0695", - "\u0003\u0002\u0002\u0002\u013f\u069b\u0003\u0002\u0002\u0002\u0141\u06a0", - "\u0003\u0002\u0002\u0002\u0143\u06a8\u0003\u0002\u0002\u0002\u0145\u06ae", - "\u0003\u0002\u0002\u0002\u0147\u06b8\u0003\u0002\u0002\u0002\u0149\u06c1", - "\u0003\u0002\u0002\u0002\u014b\u06ca\u0003\u0002\u0002\u0002\u014d\u06d2", - "\u0003\u0002\u0002\u0002\u014f\u06d8\u0003\u0002\u0002\u0002\u0151\u06de", - "\u0003\u0002\u0002\u0002\u0153\u06e6\u0003\u0002\u0002\u0002\u0155\u06eb", - "\u0003\u0002\u0002\u0002\u0157\u06f5\u0003\u0002\u0002\u0002\u0159\u06fc", - "\u0003\u0002\u0002\u0002\u015b\u0706\u0003\u0002\u0002\u0002\u015d\u070e", - "\u0003\u0002\u0002\u0002\u015f\u0714\u0003\u0002\u0002\u0002\u0161\u0722", - "\u0003\u0002\u0002\u0002\u0163\u072f\u0003\u0002\u0002\u0002\u0165\u0737", - "\u0003\u0002\u0002\u0002\u0167\u073e\u0003\u0002\u0002\u0002\u0169\u0745", - "\u0003\u0002\u0002\u0002\u016b\u0751\u0003\u0002\u0002\u0002\u016d\u075a", - "\u0003\u0002\u0002\u0002\u016f\u0763\u0003\u0002\u0002\u0002\u0171\u076b", - "\u0003\u0002\u0002\u0002\u0173\u0775\u0003\u0002\u0002\u0002\u0175\u0780", - "\u0003\u0002\u0002\u0002\u0177\u0786\u0003\u0002\u0002\u0002\u0179\u078e", - "\u0003\u0002\u0002\u0002\u017b\u079a\u0003\u0002\u0002\u0002\u017d\u07a1", - "\u0003\u0002\u0002\u0002\u017f\u07a9\u0003\u0002\u0002\u0002\u0181\u07b2", - "\u0003\u0002\u0002\u0002\u0183\u07bc\u0003\u0002\u0002\u0002\u0185\u07c3", - "\u0003\u0002\u0002\u0002\u0187\u07c9\u0003\u0002\u0002\u0002\u0189\u07d5", - "\u0003\u0002\u0002\u0002\u018b\u07e2\u0003\u0002\u0002\u0002\u018d\u07eb", - "\u0003\u0002\u0002\u0002\u018f\u07f5\u0003\u0002\u0002\u0002\u0191\u07f9", - "\u0003\u0002\u0002\u0002\u0193\u0802\u0003\u0002\u0002\u0002\u0195\u080a", - "\u0003\u0002\u0002\u0002\u0197\u0812\u0003\u0002\u0002\u0002\u0199\u0817", - "\u0003\u0002\u0002\u0002\u019b\u0822\u0003\u0002\u0002\u0002\u019d\u082e", - "\u0003\u0002\u0002\u0002\u019f\u0837\u0003\u0002\u0002\u0002\u01a1\u083f", - "\u0003\u0002\u0002\u0002\u01a3\u0846\u0003\u0002\u0002\u0002\u01a5\u084c", - "\u0003\u0002\u0002\u0002\u01a7\u0851\u0003\u0002\u0002\u0002\u01a9\u0858", - "\u0003\u0002\u0002\u0002\u01ab\u085d\u0003\u0002\u0002\u0002\u01ad\u0864", - "\u0003\u0002\u0002\u0002\u01af\u086c\u0003\u0002\u0002\u0002\u01b1\u0873", - "\u0003\u0002\u0002\u0002\u01b3\u087a\u0003\u0002\u0002\u0002\u01b5\u087f", - "\u0003\u0002\u0002\u0002\u01b7\u0884\u0003\u0002\u0002\u0002\u01b9\u088a", - "\u0003\u0002\u0002\u0002\u01bb\u0896\u0003\u0002\u0002\u0002\u01bd\u08a1", - "\u0003\u0002\u0002\u0002\u01bf\u08ae\u0003\u0002\u0002\u0002\u01c1\u08b4", - "\u0003\u0002\u0002\u0002\u01c3\u08bc\u0003\u0002\u0002\u0002\u01c5\u08c2", - "\u0003\u0002\u0002\u0002\u01c7\u08c9\u0003\u0002\u0002\u0002\u01c9\u08ce", - "\u0003\u0002\u0002\u0002\u01cb\u08d4\u0003\u0002\u0002\u0002\u01cd\u08db", - "\u0003\u0002\u0002\u0002\u01cf\u08e5\u0003\u0002\u0002\u0002\u01d1\u08ec", - "\u0003\u0002\u0002\u0002\u01d3\u08fc\u0003\u0002\u0002\u0002\u01d5\u0905", - "\u0003\u0002\u0002\u0002\u01d7\u0909\u0003\u0002\u0002\u0002\u01d9\u090d", - "\u0003\u0002\u0002\u0002\u01db\u0913\u0003\u0002\u0002\u0002\u01dd\u0919", - "\u0003\u0002\u0002\u0002\u01df\u091e\u0003\u0002\u0002\u0002\u01e1\u0923", - "\u0003\u0002\u0002\u0002\u01e3\u092b\u0003\u0002\u0002\u0002\u01e5\u0932", - "\u0003\u0002\u0002\u0002\u01e7\u0939\u0003\u0002\u0002\u0002\u01e9\u0948", - "\u0003\u0002\u0002\u0002\u01eb\u0959\u0003\u0002\u0002\u0002\u01ed\u0969", - "\u0003\u0002\u0002\u0002\u01ef\u0977\u0003\u0002\u0002\u0002\u01f1\u0985", - "\u0003\u0002\u0002\u0002\u01f3\u0994\u0003\u0002\u0002\u0002\u01f5\u09a7", - "\u0003\u0002\u0002\u0002\u01f7\u09b2\u0003\u0002\u0002\u0002\u01f9\u09c8", - "\u0003\u0002\u0002\u0002\u01fb\u09d7\u0003\u0002\u0002\u0002\u01fd\u09ef", - "\u0003\u0002\u0002\u0002\u01ff\u0a01\u0003\u0002\u0002\u0002\u0201\u0a04", - "\u0003\u0002\u0002\u0002\u0203\u0a11\u0003\u0002\u0002\u0002\u0205\u0a19", - "\u0003\u0002\u0002\u0002\u0207\u0a21\u0003\u0002\u0002\u0002\u0209\u0a24", - "\u0003\u0002\u0002\u0002\u020b\u0a26\u0003\u0002\u0002\u0002\u020d\u0a2d", - "\u0003\u0002\u0002\u0002\u020f\u0a34\u0003\u0002\u0002\u0002\u0211\u0a3a", - "\u0003\u0002\u0002\u0002\u0213\u0a3e\u0003\u0002\u0002\u0002\u0215\u0a43", - "\u0003\u0002\u0002\u0002\u0217\u0a4b\u0003\u0002\u0002\u0002\u0219\u0a52", - "\u0003\u0002\u0002\u0002\u021b\u0a5c\u0003\u0002\u0002\u0002\u021d\u0a62", - "\u0003\u0002\u0002\u0002\u021f\u0a6a\u0003\u0002\u0002\u0002\u0221\u0a72", - "\u0003\u0002\u0002\u0002\u0223\u0a7b\u0003\u0002\u0002\u0002\u0225\u0a7f", - "\u0003\u0002\u0002\u0002\u0227\u0a86\u0003\u0002\u0002\u0002\u0229\u0a8c", - "\u0003\u0002\u0002\u0002\u022b\u0a93\u0003\u0002\u0002\u0002\u022d\u0a98", - "\u0003\u0002\u0002\u0002\u022f\u0a9d\u0003\u0002\u0002\u0002\u0231\u0aa7", - "\u0003\u0002\u0002\u0002\u0233\u0ab0\u0003\u0002\u0002\u0002\u0235\u0ab8", - "\u0003\u0002\u0002\u0002\u0237\u0abc\u0003\u0002\u0002\u0002\u0239\u0ac0", - "\u0003\u0002\u0002\u0002\u023b\u0ac5\u0003\u0002\u0002\u0002\u023d\u0ac7", - "\u0003\u0002\u0002\u0002\u023f\u0ac9\u0003\u0002\u0002\u0002\u0241\u0acb", - "\u0003\u0002\u0002\u0002\u0243\u0acd\u0003\u0002\u0002\u0002\u0245\u0acf", - "\u0003\u0002\u0002\u0002\u0247\u0ad1\u0003\u0002\u0002\u0002\u0249\u0ad3", - "\u0003\u0002\u0002\u0002\u024b\u0ad5\u0003\u0002\u0002\u0002\u024d\u0ad7", - "\u0003\u0002\u0002\u0002\u024f\u0ad9\u0003\u0002\u0002\u0002\u0251\u0adb", - "\u0003\u0002\u0002\u0002\u0253\u0add\u0003\u0002\u0002\u0002\u0255\u0adf", - "\u0003\u0002\u0002\u0002\u0257\u0ae1\u0003\u0002\u0002\u0002\u0259\u0ae3", - "\u0003\u0002\u0002\u0002\u025b\u0ae5\u0003\u0002\u0002\u0002\u025d\u0ae7", - "\u0003\u0002\u0002\u0002\u025f\u0ae9\u0003\u0002\u0002\u0002\u0261\u0aeb", - "\u0003\u0002\u0002\u0002\u0263\u0aed\u0003\u0002\u0002\u0002\u0265\u0af2", - "\u0003\u0002\u0002\u0002\u0267\u0269\t\u0002\u0002\u0002\u0268\u0267", - "\u0003\u0002\u0002\u0002\u0269\u026a\u0003\u0002\u0002\u0002\u026a\u0268", - "\u0003\u0002\u0002\u0002\u026a\u026b\u0003\u0002\u0002\u0002\u026b\u026c", - "\u0003\u0002\u0002\u0002\u026c\u026d\b\u0002\u0002\u0002\u026d\u0004", - "\u0003\u0002\u0002\u0002\u026e\u026f\u00071\u0002\u0002\u026f\u0270", - "\u0007,\u0002\u0002\u0270\u0271\u0007#\u0002\u0002\u0271\u0273\u0003", - "\u0002\u0002\u0002\u0272\u0274\u000b\u0002\u0002\u0002\u0273\u0272\u0003", - "\u0002\u0002\u0002\u0274\u0275\u0003\u0002\u0002\u0002\u0275\u0276\u0003", - "\u0002\u0002\u0002\u0275\u0273\u0003\u0002\u0002\u0002\u0276\u0277\u0003", - "\u0002\u0002\u0002\u0277\u0278\u0007,\u0002\u0002\u0278\u0279\u0007", - "1\u0002\u0002\u0279\u027a\u0003\u0002\u0002\u0002\u027a\u027b\b\u0003", - "\u0003\u0002\u027b\u0006\u0003\u0002\u0002\u0002\u027c\u027d\u00071", - "\u0002\u0002\u027d\u027e\u0007,\u0002\u0002\u027e\u0282\u0003\u0002", - "\u0002\u0002\u027f\u0281\u000b\u0002\u0002\u0002\u0280\u027f\u0003\u0002", - "\u0002\u0002\u0281\u0284\u0003\u0002\u0002\u0002\u0282\u0283\u0003\u0002", - "\u0002\u0002\u0282\u0280\u0003\u0002\u0002\u0002\u0283\u0285\u0003\u0002", - "\u0002\u0002\u0284\u0282\u0003\u0002\u0002\u0002\u0285\u0286\u0007,", - "\u0002\u0002\u0286\u0287\u00071\u0002\u0002\u0287\u0288\u0003\u0002", - "\u0002\u0002\u0288\u0289\b\u0004\u0002\u0002\u0289\b\u0003\u0002\u0002", - "\u0002\u028a\u028b\u0007/\u0002\u0002\u028b\u028c\u0007/\u0002\u0002", - "\u028c\u028f\u0007\"\u0002\u0002\u028d\u028f\u0007%\u0002\u0002\u028e", - "\u028a\u0003\u0002\u0002\u0002\u028e\u028d\u0003\u0002\u0002\u0002\u028f", - "\u0293\u0003\u0002\u0002\u0002\u0290\u0292\n\u0003\u0002\u0002\u0291", - "\u0290\u0003\u0002\u0002\u0002\u0292\u0295\u0003\u0002\u0002\u0002\u0293", - "\u0291\u0003\u0002\u0002\u0002\u0293\u0294\u0003\u0002\u0002\u0002\u0294", - "\u029b\u0003\u0002\u0002\u0002\u0295\u0293\u0003\u0002\u0002\u0002\u0296", - "\u0298\u0007\u000f\u0002\u0002\u0297\u0296\u0003\u0002\u0002\u0002\u0297", - "\u0298\u0003\u0002\u0002\u0002\u0298\u0299\u0003\u0002\u0002\u0002\u0299", - "\u029c\u0007\f\u0002\u0002\u029a\u029c\u0007\u0002\u0002\u0003\u029b", - "\u0297\u0003\u0002\u0002\u0002\u029b\u029a\u0003\u0002\u0002\u0002\u029c", - "\u02a8\u0003\u0002\u0002\u0002\u029d\u029e\u0007/\u0002\u0002\u029e", - "\u029f\u0007/\u0002\u0002\u029f\u02a5\u0003\u0002\u0002\u0002\u02a0", - "\u02a2\u0007\u000f\u0002\u0002\u02a1\u02a0\u0003\u0002\u0002\u0002\u02a1", - "\u02a2\u0003\u0002\u0002\u0002\u02a2\u02a3\u0003\u0002\u0002\u0002\u02a3", - "\u02a6\u0007\f\u0002\u0002\u02a4\u02a6\u0007\u0002\u0002\u0003\u02a5", - "\u02a1\u0003\u0002\u0002\u0002\u02a5\u02a4\u0003\u0002\u0002\u0002\u02a6", - "\u02a8\u0003\u0002\u0002\u0002\u02a7\u028e\u0003\u0002\u0002\u0002\u02a7", - "\u029d\u0003\u0002\u0002\u0002\u02a8\u02a9\u0003\u0002\u0002\u0002\u02a9", - "\u02aa\b\u0005\u0002\u0002\u02aa\n\u0003\u0002\u0002\u0002\u02ab\u02ac", - "\u0007U\u0002\u0002\u02ac\u02ad\u0007G\u0002\u0002\u02ad\u02ae\u0007", - "N\u0002\u0002\u02ae\u02af\u0007G\u0002\u0002\u02af\u02b0\u0007E\u0002", - "\u0002\u02b0\u02b1\u0007V\u0002\u0002\u02b1\f\u0003\u0002\u0002\u0002", - "\u02b2\u02b3\u0007H\u0002\u0002\u02b3\u02b4\u0007T\u0002\u0002\u02b4", - "\u02b5\u0007Q\u0002\u0002\u02b5\u02b6\u0007O\u0002\u0002\u02b6\u000e", - "\u0003\u0002\u0002\u0002\u02b7\u02b8\u0007C\u0002\u0002\u02b8\u02b9", - "\u0007F\u0002\u0002\u02b9\u02ba\u0007F\u0002\u0002\u02ba\u0010\u0003", - "\u0002\u0002\u0002\u02bb\u02bc\u0007C\u0002\u0002\u02bc\u02bd\u0007", - "U\u0002\u0002\u02bd\u0012\u0003\u0002\u0002\u0002\u02be\u02bf\u0007", - "C\u0002\u0002\u02bf\u02c0\u0007N\u0002\u0002\u02c0\u02c1\u0007N\u0002", - "\u0002\u02c1\u0014\u0003\u0002\u0002\u0002\u02c2\u02c3\u0007C\u0002", - "\u0002\u02c3\u02c4\u0007P\u0002\u0002\u02c4\u02c5\u0007[\u0002\u0002", - "\u02c5\u0016\u0003\u0002\u0002\u0002\u02c6\u02c7\u0007F\u0002\u0002", - "\u02c7\u02c8\u0007K\u0002\u0002\u02c8\u02c9\u0007U\u0002\u0002\u02c9", - "\u02ca\u0007V\u0002\u0002\u02ca\u02cb\u0007K\u0002\u0002\u02cb\u02cc", - "\u0007P\u0002\u0002\u02cc\u02cd\u0007E\u0002\u0002\u02cd\u02ce\u0007", - "V\u0002\u0002\u02ce\u0018\u0003\u0002\u0002\u0002\u02cf\u02d0\u0007", - "Y\u0002\u0002\u02d0\u02d1\u0007J\u0002\u0002\u02d1\u02d2\u0007G\u0002", - "\u0002\u02d2\u02d3\u0007T\u0002\u0002\u02d3\u02d4\u0007G\u0002\u0002", - "\u02d4\u001a\u0003\u0002\u0002\u0002\u02d5\u02d6\u0007I\u0002\u0002", - "\u02d6\u02d7\u0007T\u0002\u0002\u02d7\u02d8\u0007Q\u0002\u0002\u02d8", - "\u02d9\u0007W\u0002\u0002\u02d9\u02da\u0007R\u0002\u0002\u02da\u001c", - "\u0003\u0002\u0002\u0002\u02db\u02dc\u0007D\u0002\u0002\u02dc\u02dd", - "\u0007[\u0002\u0002\u02dd\u001e\u0003\u0002\u0002\u0002\u02de\u02df", - "\u0007I\u0002\u0002\u02df\u02e0\u0007T\u0002\u0002\u02e0\u02e1\u0007", - "Q\u0002\u0002\u02e1\u02e2\u0007W\u0002\u0002\u02e2\u02e3\u0007R\u0002", - "\u0002\u02e3\u02e4\u0007K\u0002\u0002\u02e4\u02e5\u0007P\u0002\u0002", - "\u02e5\u02e6\u0007I\u0002\u0002\u02e6 \u0003\u0002\u0002\u0002\u02e7", - "\u02e8\u0007U\u0002\u0002\u02e8\u02e9\u0007G\u0002\u0002\u02e9\u02ea", - "\u0007V\u0002\u0002\u02ea\u02eb\u0007U\u0002\u0002\u02eb\"\u0003\u0002", - "\u0002\u0002\u02ec\u02ed\u0007E\u0002\u0002\u02ed\u02ee\u0007W\u0002", - "\u0002\u02ee\u02ef\u0007D\u0002\u0002\u02ef\u02f0\u0007G\u0002\u0002", - "\u02f0$\u0003\u0002\u0002\u0002\u02f1\u02f2\u0007T\u0002\u0002\u02f2", - "\u02f3\u0007Q\u0002\u0002\u02f3\u02f4\u0007N\u0002\u0002\u02f4\u02f5", - "\u0007N\u0002\u0002\u02f5\u02f6\u0007W\u0002\u0002\u02f6\u02f7\u0007", - "R\u0002\u0002\u02f7&\u0003\u0002\u0002\u0002\u02f8\u02f9\u0007Q\u0002", - "\u0002\u02f9\u02fa\u0007T\u0002\u0002\u02fa\u02fb\u0007F\u0002\u0002", - "\u02fb\u02fc\u0007G\u0002\u0002\u02fc\u02fd\u0007T\u0002\u0002\u02fd", - "(\u0003\u0002\u0002\u0002\u02fe\u02ff\u0007J\u0002\u0002\u02ff\u0300", - "\u0007C\u0002\u0002\u0300\u0301\u0007X\u0002\u0002\u0301\u0302\u0007", - "K\u0002\u0002\u0302\u0303\u0007P\u0002\u0002\u0303\u0304\u0007I\u0002", - "\u0002\u0304*\u0003\u0002\u0002\u0002\u0305\u0306\u0007N\u0002\u0002", - "\u0306\u0307\u0007K\u0002\u0002\u0307\u0308\u0007O\u0002\u0002\u0308", - "\u0309\u0007K\u0002\u0002\u0309\u030a\u0007V\u0002\u0002\u030a,\u0003", - "\u0002\u0002\u0002\u030b\u030c\u0007C\u0002\u0002\u030c\u030d\u0007", - "V\u0002\u0002\u030d.\u0003\u0002\u0002\u0002\u030e\u030f\u0007Q\u0002", - "\u0002\u030f\u0310\u0007T\u0002\u0002\u03100\u0003\u0002\u0002\u0002", - "\u0311\u0312\u0007C\u0002\u0002\u0312\u0313\u0007P\u0002\u0002\u0313", - "\u0314\u0007F\u0002\u0002\u03142\u0003\u0002\u0002\u0002\u0315\u0316", - "\u0007K\u0002\u0002\u0316\u0317\u0007P\u0002\u0002\u03174\u0003\u0002", - "\u0002\u0002\u0318\u0319\u0007P\u0002\u0002\u0319\u031a\u0007Q\u0002", - "\u0002\u031a\u031b\u0007V\u0002\u0002\u031b6\u0003\u0002\u0002\u0002", - "\u031c\u031d\u0007P\u0002\u0002\u031d\u031e\u0007Q\u0002\u0002\u031e", - "8\u0003\u0002\u0002\u0002\u031f\u0320\u0007G\u0002\u0002\u0320\u0321", - "\u0007Z\u0002\u0002\u0321\u0322\u0007K\u0002\u0002\u0322\u0323\u0007", - "U\u0002\u0002\u0323\u0324\u0007V\u0002\u0002\u0324\u0325\u0007U\u0002", - "\u0002\u0325:\u0003\u0002\u0002\u0002\u0326\u0327\u0007D\u0002\u0002", - "\u0327\u0328\u0007G\u0002\u0002\u0328\u0329\u0007V\u0002\u0002\u0329", - "\u032a\u0007Y\u0002\u0002\u032a\u032b\u0007G\u0002\u0002\u032b\u032c", - "\u0007G\u0002\u0002\u032c\u032d\u0007P\u0002\u0002\u032d<\u0003\u0002", - "\u0002\u0002\u032e\u032f\u0007N\u0002\u0002\u032f\u0330\u0007K\u0002", - "\u0002\u0330\u0331\u0007M\u0002\u0002\u0331\u0332\u0007G\u0002\u0002", - "\u0332>\u0003\u0002\u0002\u0002\u0333\u0334\u0007T\u0002\u0002\u0334", - "\u0335\u0007N\u0002\u0002\u0335\u0336\u0007K\u0002\u0002\u0336\u0337", - "\u0007M\u0002\u0002\u0337\u0338\u0007G\u0002\u0002\u0338@\u0003\u0002", - "\u0002\u0002\u0339\u033a\u0007K\u0002\u0002\u033a\u033b\u0007U\u0002", - "\u0002\u033bB\u0003\u0002\u0002\u0002\u033c\u033d\u0007V\u0002\u0002", - "\u033d\u033e\u0007T\u0002\u0002\u033e\u033f\u0007W\u0002\u0002\u033f", - "\u0340\u0007G\u0002\u0002\u0340D\u0003\u0002\u0002\u0002\u0341\u0342", - "\u0007H\u0002\u0002\u0342\u0343\u0007C\u0002\u0002\u0343\u0344\u0007", - "N\u0002\u0002\u0344\u0345\u0007U\u0002\u0002\u0345\u0346\u0007G\u0002", - "\u0002\u0346F\u0003\u0002\u0002\u0002\u0347\u0348\u0007P\u0002\u0002", - "\u0348\u0349\u0007W\u0002\u0002\u0349\u034a\u0007N\u0002\u0002\u034a", - "\u034b\u0007N\u0002\u0002\u034b\u034c\u0007U\u0002\u0002\u034cH\u0003", - "\u0002\u0002\u0002\u034d\u034e\u0007C\u0002\u0002\u034e\u034f\u0007", - "U\u0002\u0002\u034f\u0350\u0007E\u0002\u0002\u0350J\u0003\u0002\u0002", - "\u0002\u0351\u0352\u0007F\u0002\u0002\u0352\u0353\u0007G\u0002\u0002", - "\u0353\u0354\u0007U\u0002\u0002\u0354\u0355\u0007E\u0002\u0002\u0355", - "L\u0003\u0002\u0002\u0002\u0356\u0357\u0007H\u0002\u0002\u0357\u0358", - "\u0007Q\u0002\u0002\u0358\u0359\u0007T\u0002\u0002\u0359N\u0003\u0002", - "\u0002\u0002\u035a\u035b\u0007K\u0002\u0002\u035b\u035c\u0007P\u0002", - "\u0002\u035c\u035d\u0007V\u0002\u0002\u035d\u035e\u0007G\u0002\u0002", - "\u035e\u035f\u0007T\u0002\u0002\u035f\u0360\u0007X\u0002\u0002\u0360", - "\u0361\u0007C\u0002\u0002\u0361\u0362\u0007N\u0002\u0002\u0362P\u0003", - "\u0002\u0002\u0002\u0363\u0364\u0007E\u0002\u0002\u0364\u0365\u0007", - "C\u0002\u0002\u0365\u0366\u0007U\u0002\u0002\u0366\u0367\u0007G\u0002", - "\u0002\u0367R\u0003\u0002\u0002\u0002\u0368\u0369\u0007Y\u0002\u0002", - "\u0369\u036a\u0007J\u0002\u0002\u036a\u036b\u0007G\u0002\u0002\u036b", - "\u036c\u0007P\u0002\u0002\u036cT\u0003\u0002\u0002\u0002\u036d\u036e", - "\u0007V\u0002\u0002\u036e\u036f\u0007J\u0002\u0002\u036f\u0370\u0007", - "G\u0002\u0002\u0370\u0371\u0007P\u0002\u0002\u0371V\u0003\u0002\u0002", - "\u0002\u0372\u0373\u0007G\u0002\u0002\u0373\u0374\u0007N\u0002\u0002", - "\u0374\u0375\u0007U\u0002\u0002\u0375\u0376\u0007G\u0002\u0002\u0376", - "X\u0003\u0002\u0002\u0002\u0377\u0378\u0007G\u0002\u0002\u0378\u0379", - "\u0007P\u0002\u0002\u0379\u037a\u0007F\u0002\u0002\u037aZ\u0003\u0002", - "\u0002\u0002\u037b\u037c\u0007L\u0002\u0002\u037c\u037d\u0007Q\u0002", - "\u0002\u037d\u037e\u0007K\u0002\u0002\u037e\u037f\u0007P\u0002\u0002", - "\u037f\\\u0003\u0002\u0002\u0002\u0380\u0381\u0007E\u0002\u0002\u0381", - "\u0382\u0007T\u0002\u0002\u0382\u0383\u0007Q\u0002\u0002\u0383\u0384", - "\u0007U\u0002\u0002\u0384\u0385\u0007U\u0002\u0002\u0385^\u0003\u0002", - "\u0002\u0002\u0386\u0387\u0007Q\u0002\u0002\u0387\u0388\u0007W\u0002", - "\u0002\u0388\u0389\u0007V\u0002\u0002\u0389\u038a\u0007G\u0002\u0002", - "\u038a\u038b\u0007T\u0002\u0002\u038b`\u0003\u0002\u0002\u0002\u038c", - "\u038d\u0007K\u0002\u0002\u038d\u038e\u0007P\u0002\u0002\u038e\u038f", - "\u0007P\u0002\u0002\u038f\u0390\u0007G\u0002\u0002\u0390\u0391\u0007", - "T\u0002\u0002\u0391b\u0003\u0002\u0002\u0002\u0392\u0393\u0007N\u0002", - "\u0002\u0393\u0394\u0007G\u0002\u0002\u0394\u0395\u0007H\u0002\u0002", - "\u0395\u0396\u0007V\u0002\u0002\u0396d\u0003\u0002\u0002\u0002\u0397", - "\u0398\u0007U\u0002\u0002\u0398\u0399\u0007G\u0002\u0002\u0399\u039a", - "\u0007O\u0002\u0002\u039a\u039b\u0007K\u0002\u0002\u039bf\u0003\u0002", - "\u0002\u0002\u039c\u039d\u0007T\u0002\u0002\u039d\u039e\u0007K\u0002", - "\u0002\u039e\u039f\u0007I\u0002\u0002\u039f\u03a0\u0007J\u0002\u0002", - "\u03a0\u03a1\u0007V\u0002\u0002\u03a1h\u0003\u0002\u0002\u0002\u03a2", - "\u03a3\u0007H\u0002\u0002\u03a3\u03a4\u0007W\u0002\u0002\u03a4\u03a5", - "\u0007N\u0002\u0002\u03a5\u03a6\u0007N\u0002\u0002\u03a6j\u0003\u0002", - "\u0002\u0002\u03a7\u03a8\u0007P\u0002\u0002\u03a8\u03a9\u0007C\u0002", - "\u0002\u03a9\u03aa\u0007V\u0002\u0002\u03aa\u03ab\u0007W\u0002\u0002", - "\u03ab\u03ac\u0007T\u0002\u0002\u03ac\u03ad\u0007C\u0002\u0002\u03ad", - "\u03ae\u0007N\u0002\u0002\u03ael\u0003\u0002\u0002\u0002\u03af\u03b0", - "\u0007Q\u0002\u0002\u03b0\u03b1\u0007P\u0002\u0002\u03b1n\u0003\u0002", - "\u0002\u0002\u03b2\u03b3\u0007R\u0002\u0002\u03b3\u03b4\u0007K\u0002", - "\u0002\u03b4\u03b5\u0007X\u0002\u0002\u03b5\u03b6\u0007Q\u0002\u0002", - "\u03b6\u03b7\u0007V\u0002\u0002\u03b7p\u0003\u0002\u0002\u0002\u03b8", - "\u03b9\u0007N\u0002\u0002\u03b9\u03ba\u0007C\u0002\u0002\u03ba\u03bb", - "\u0007V\u0002\u0002\u03bb\u03bc\u0007G\u0002\u0002\u03bc\u03bd\u0007", - "T\u0002\u0002\u03bd\u03be\u0007C\u0002\u0002\u03be\u03bf\u0007N\u0002", - "\u0002\u03bfr\u0003\u0002\u0002\u0002\u03c0\u03c1\u0007Y\u0002\u0002", - "\u03c1\u03c2\u0007K\u0002\u0002\u03c2\u03c3\u0007P\u0002\u0002\u03c3", - "\u03c4\u0007F\u0002\u0002\u03c4\u03c5\u0007Q\u0002\u0002\u03c5\u03c6", - "\u0007Y\u0002\u0002\u03c6t\u0003\u0002\u0002\u0002\u03c7\u03c8\u0007", - "Q\u0002\u0002\u03c8\u03c9\u0007X\u0002\u0002\u03c9\u03ca\u0007G\u0002", - "\u0002\u03ca\u03cb\u0007T\u0002\u0002\u03cbv\u0003\u0002\u0002\u0002", - "\u03cc\u03cd\u0007R\u0002\u0002\u03cd\u03ce\u0007C\u0002\u0002\u03ce", - "\u03cf\u0007T\u0002\u0002\u03cf\u03d0\u0007V\u0002\u0002\u03d0\u03d1", - "\u0007K\u0002\u0002\u03d1\u03d2\u0007V\u0002\u0002\u03d2\u03d3\u0007", - "K\u0002\u0002\u03d3\u03d4\u0007Q\u0002\u0002\u03d4\u03d5\u0007P\u0002", - "\u0002\u03d5x\u0003\u0002\u0002\u0002\u03d6\u03d7\u0007T\u0002\u0002", - "\u03d7\u03d8\u0007C\u0002\u0002\u03d8\u03d9\u0007P\u0002\u0002\u03d9", - "\u03da\u0007I\u0002\u0002\u03da\u03db\u0007G\u0002\u0002\u03dbz\u0003", - "\u0002\u0002\u0002\u03dc\u03dd\u0007T\u0002\u0002\u03dd\u03de\u0007", - "Q\u0002\u0002\u03de\u03df\u0007Y\u0002\u0002\u03df\u03e0\u0007U\u0002", - "\u0002\u03e0|\u0003\u0002\u0002\u0002\u03e1\u03e2\u0007W\u0002\u0002", - "\u03e2\u03e3\u0007P\u0002\u0002\u03e3\u03e4\u0007D\u0002\u0002\u03e4", - "\u03e5\u0007Q\u0002\u0002\u03e5\u03e6\u0007W\u0002\u0002\u03e6\u03e7", - "\u0007P\u0002\u0002\u03e7\u03e8\u0007F\u0002\u0002\u03e8\u03e9\u0007", - "G\u0002\u0002\u03e9\u03ea\u0007F\u0002\u0002\u03ea~\u0003\u0002\u0002", - "\u0002\u03eb\u03ec\u0007R\u0002\u0002\u03ec\u03ed\u0007T\u0002\u0002", - "\u03ed\u03ee\u0007G\u0002\u0002\u03ee\u03ef\u0007E\u0002\u0002\u03ef", - "\u03f0\u0007G\u0002\u0002\u03f0\u03f1\u0007F\u0002\u0002\u03f1\u03f2", - "\u0007K\u0002\u0002\u03f2\u03f3\u0007P\u0002\u0002\u03f3\u03f4\u0007", - "I\u0002\u0002\u03f4\u0080\u0003\u0002\u0002\u0002\u03f5\u03f6\u0007", - "H\u0002\u0002\u03f6\u03f7\u0007Q\u0002\u0002\u03f7\u03f8\u0007N\u0002", - "\u0002\u03f8\u03f9\u0007N\u0002\u0002\u03f9\u03fa\u0007Q\u0002\u0002", - "\u03fa\u03fb\u0007Y\u0002\u0002\u03fb\u03fc\u0007K\u0002\u0002\u03fc", - "\u03fd\u0007P\u0002\u0002\u03fd\u03fe\u0007I\u0002\u0002\u03fe\u0082", - "\u0003\u0002\u0002\u0002\u03ff\u0400\u0007E\u0002\u0002\u0400\u0401", - "\u0007W\u0002\u0002\u0401\u0402\u0007T\u0002\u0002\u0402\u0403\u0007", - "T\u0002\u0002\u0403\u0404\u0007G\u0002\u0002\u0404\u0405\u0007P\u0002", - "\u0002\u0405\u0406\u0007V\u0002\u0002\u0406\u0084\u0003\u0002\u0002", - "\u0002\u0407\u0408\u0007H\u0002\u0002\u0408\u0409\u0007K\u0002\u0002", - "\u0409\u040a\u0007T\u0002\u0002\u040a\u040b\u0007U\u0002\u0002\u040b", - "\u040c\u0007V\u0002\u0002\u040c\u0086\u0003\u0002\u0002\u0002\u040d", - "\u040e\u0007C\u0002\u0002\u040e\u040f\u0007H\u0002\u0002\u040f\u0410", - "\u0007V\u0002\u0002\u0410\u0411\u0007G\u0002\u0002\u0411\u0412\u0007", - "T\u0002\u0002\u0412\u0088\u0003\u0002\u0002\u0002\u0413\u0414\u0007", - "N\u0002\u0002\u0414\u0415\u0007C\u0002\u0002\u0415\u0416\u0007U\u0002", - "\u0002\u0416\u0417\u0007V\u0002\u0002\u0417\u008a\u0003\u0002\u0002", - "\u0002\u0418\u0419\u0007Y\u0002\u0002\u0419\u041a\u0007K\u0002\u0002", - "\u041a\u041b\u0007V\u0002\u0002\u041b\u041c\u0007J\u0002\u0002\u041c", - "\u008c\u0003\u0002\u0002\u0002\u041d\u041e\u0007X\u0002\u0002\u041e", - "\u041f\u0007C\u0002\u0002\u041f\u0420\u0007N\u0002\u0002\u0420\u0421", - "\u0007W\u0002\u0002\u0421\u0422\u0007G\u0002\u0002\u0422\u0423\u0007", - "U\u0002\u0002\u0423\u008e\u0003\u0002\u0002\u0002\u0424\u0425\u0007", - "E\u0002\u0002\u0425\u0426\u0007T\u0002\u0002\u0426\u0427\u0007G\u0002", - "\u0002\u0427\u0428\u0007C\u0002\u0002\u0428\u0429\u0007V\u0002\u0002", - "\u0429\u042a\u0007G\u0002\u0002\u042a\u0090\u0003\u0002\u0002\u0002", - "\u042b\u042c\u0007V\u0002\u0002\u042c\u042d\u0007C\u0002\u0002\u042d", - "\u042e\u0007D\u0002\u0002\u042e\u042f\u0007N\u0002\u0002\u042f\u0430", - "\u0007G\u0002\u0002\u0430\u0092\u0003\u0002\u0002\u0002\u0431\u0432", - "\u0007F\u0002\u0002\u0432\u0433\u0007K\u0002\u0002\u0433\u0434\u0007", - "T\u0002\u0002\u0434\u0435\u0007G\u0002\u0002\u0435\u0436\u0007E\u0002", - "\u0002\u0436\u0437\u0007V\u0002\u0002\u0437\u0438\u0007Q\u0002\u0002", - "\u0438\u0439\u0007T\u0002\u0002\u0439\u043a\u0007[\u0002\u0002\u043a", - "\u0094\u0003\u0002\u0002\u0002\u043b\u043c\u0007X\u0002\u0002\u043c", - "\u043d\u0007K\u0002\u0002\u043d\u043e\u0007G\u0002\u0002\u043e\u043f", - "\u0007Y\u0002\u0002\u043f\u0096\u0003\u0002\u0002\u0002\u0440\u0441", - "\u0007T\u0002\u0002\u0441\u0442\u0007G\u0002\u0002\u0442\u0443\u0007", - "R\u0002\u0002\u0443\u0444\u0007N\u0002\u0002\u0444\u0445\u0007C\u0002", - "\u0002\u0445\u0446\u0007E\u0002\u0002\u0446\u0447\u0007G\u0002\u0002", - "\u0447\u0098\u0003\u0002\u0002\u0002\u0448\u0449\u0007K\u0002\u0002", - "\u0449\u044a\u0007P\u0002\u0002\u044a\u044b\u0007U\u0002\u0002\u044b", - "\u044c\u0007G\u0002\u0002\u044c\u044d\u0007T\u0002\u0002\u044d\u044e", - "\u0007V\u0002\u0002\u044e\u009a\u0003\u0002\u0002\u0002\u044f\u0450", - "\u0007F\u0002\u0002\u0450\u0451\u0007G\u0002\u0002\u0451\u0452\u0007", - "N\u0002\u0002\u0452\u0453\u0007G\u0002\u0002\u0453\u0454\u0007V\u0002", - "\u0002\u0454\u0455\u0007G\u0002\u0002\u0455\u009c\u0003\u0002\u0002", - "\u0002\u0456\u0457\u0007K\u0002\u0002\u0457\u0458\u0007P\u0002\u0002", - "\u0458\u0459\u0007V\u0002\u0002\u0459\u045a\u0007Q\u0002\u0002\u045a", - "\u009e\u0003\u0002\u0002\u0002\u045b\u045c\u0007F\u0002\u0002\u045c", - "\u045d\u0007G\u0002\u0002\u045d\u045e\u0007U\u0002\u0002\u045e\u045f", - "\u0007E\u0002\u0002\u045f\u0460\u0007T\u0002\u0002\u0460\u0461\u0007", - "K\u0002\u0002\u0461\u0462\u0007D\u0002\u0002\u0462\u0463\u0007G\u0002", - "\u0002\u0463\u00a0\u0003\u0002\u0002\u0002\u0464\u0465\u0007G\u0002", - "\u0002\u0465\u0466\u0007Z\u0002\u0002\u0466\u0467\u0007R\u0002\u0002", - "\u0467\u0468\u0007N\u0002\u0002\u0468\u0469\u0007C\u0002\u0002\u0469", - "\u046a\u0007K\u0002\u0002\u046a\u046b\u0007P\u0002\u0002\u046b\u00a2", - "\u0003\u0002\u0002\u0002\u046c\u046d\u0007H\u0002\u0002\u046d\u046e", - "\u0007Q\u0002\u0002\u046e\u046f\u0007T\u0002\u0002\u046f\u0470\u0007", - "O\u0002\u0002\u0470\u0471\u0007C\u0002\u0002\u0471\u0472\u0007V\u0002", - "\u0002\u0472\u00a4\u0003\u0002\u0002\u0002\u0473\u0474\u0007N\u0002", - "\u0002\u0474\u0475\u0007Q\u0002\u0002\u0475\u0476\u0007I\u0002\u0002", - "\u0476\u0477\u0007K\u0002\u0002\u0477\u0478\u0007E\u0002\u0002\u0478", - "\u0479\u0007C\u0002\u0002\u0479\u047a\u0007N\u0002\u0002\u047a\u00a6", - "\u0003\u0002\u0002\u0002\u047b\u047c\u0007E\u0002\u0002\u047c\u047d", - "\u0007Q\u0002\u0002\u047d\u047e\u0007F\u0002\u0002\u047e\u047f\u0007", - "G\u0002\u0002\u047f\u0480\u0007I\u0002\u0002\u0480\u0481\u0007G\u0002", - "\u0002\u0481\u0482\u0007P\u0002\u0002\u0482\u00a8\u0003\u0002\u0002", - "\u0002\u0483\u0484\u0007E\u0002\u0002\u0484\u0485\u0007Q\u0002\u0002", - "\u0485\u0486\u0007U\u0002\u0002\u0486\u0487\u0007V\u0002\u0002\u0487", - "\u00aa\u0003\u0002\u0002\u0002\u0488\u0489\u0007E\u0002\u0002\u0489", - "\u048a\u0007C\u0002\u0002\u048a\u048b\u0007U\u0002\u0002\u048b\u048c", - "\u0007V\u0002\u0002\u048c\u00ac\u0003\u0002\u0002\u0002\u048d\u048e", - "\u0007U\u0002\u0002\u048e\u048f\u0007J\u0002\u0002\u048f\u0490\u0007", - "Q\u0002\u0002\u0490\u0491\u0007Y\u0002\u0002\u0491\u00ae\u0003\u0002", - "\u0002\u0002\u0492\u0493\u0007V\u0002\u0002\u0493\u0494\u0007C\u0002", - "\u0002\u0494\u0495\u0007D\u0002\u0002\u0495\u0496\u0007N\u0002\u0002", - "\u0496\u0497\u0007G\u0002\u0002\u0497\u0498\u0007U\u0002\u0002\u0498", - "\u00b0\u0003\u0002\u0002\u0002\u0499\u049a\u0007E\u0002\u0002\u049a", - "\u049b\u0007Q\u0002\u0002\u049b\u049c\u0007N\u0002\u0002\u049c\u049d", - "\u0007W\u0002\u0002\u049d\u049e\u0007O\u0002\u0002\u049e\u049f\u0007", - "P\u0002\u0002\u049f\u04a0\u0007U\u0002\u0002\u04a0\u00b2\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\u0007P\u0002\u0002\u04a7", - "\u00b4\u0003\u0002\u0002\u0002\u04a8\u04a9\u0007W\u0002\u0002\u04a9", - "\u04aa\u0007U\u0002\u0002\u04aa\u04ab\u0007G\u0002\u0002\u04ab\u00b6", - "\u0003\u0002\u0002\u0002\u04ac\u04ad\u0007R\u0002\u0002\u04ad\u04ae", - "\u0007C\u0002\u0002\u04ae\u04af\u0007T\u0002\u0002\u04af\u04b0\u0007", - "V\u0002\u0002\u04b0\u04b1\u0007K\u0002\u0002\u04b1\u04b2\u0007V\u0002", - "\u0002\u04b2\u04b3\u0007K\u0002\u0002\u04b3\u04b4\u0007Q\u0002\u0002", - "\u04b4\u04b5\u0007P\u0002\u0002\u04b5\u04b6\u0007U\u0002\u0002\u04b6", - "\u00b8\u0003\u0002\u0002\u0002\u04b7\u04b8\u0007H\u0002\u0002\u04b8", - "\u04b9\u0007W\u0002\u0002\u04b9\u04ba\u0007P\u0002\u0002\u04ba\u04bb", - "\u0007E\u0002\u0002\u04bb\u04bc\u0007V\u0002\u0002\u04bc\u04bd\u0007", - "K\u0002\u0002\u04bd\u04be\u0007Q\u0002\u0002\u04be\u04bf\u0007P\u0002", - "\u0002\u04bf\u04c0\u0007U\u0002\u0002\u04c0\u00ba\u0003\u0002\u0002", - "\u0002\u04c1\u04c2\u0007F\u0002\u0002\u04c2\u04c3\u0007T\u0002\u0002", - "\u04c3\u04c4\u0007Q\u0002\u0002\u04c4\u04c5\u0007R\u0002\u0002\u04c5", - "\u00bc\u0003\u0002\u0002\u0002\u04c6\u04c7\u0007W\u0002\u0002\u04c7", - "\u04c8\u0007P\u0002\u0002\u04c8\u04c9\u0007K\u0002\u0002\u04c9\u04ca", - "\u0007Q\u0002\u0002\u04ca\u04cb\u0007P\u0002\u0002\u04cb\u00be\u0003", - "\u0002\u0002\u0002\u04cc\u04cd\u0007G\u0002\u0002\u04cd\u04ce\u0007", - "Z\u0002\u0002\u04ce\u04cf\u0007E\u0002\u0002\u04cf\u04d0\u0007G\u0002", - "\u0002\u04d0\u04d1\u0007R\u0002\u0002\u04d1\u04d2\u0007V\u0002\u0002", - "\u04d2\u00c0\u0003\u0002\u0002\u0002\u04d3\u04d4\u0007U\u0002\u0002", - "\u04d4\u04d5\u0007G\u0002\u0002\u04d5\u04d6\u0007V\u0002\u0002\u04d6", - "\u04d7\u0007O\u0002\u0002\u04d7\u04d8\u0007K\u0002\u0002\u04d8\u04d9", - "\u0007P\u0002\u0002\u04d9\u04da\u0007W\u0002\u0002\u04da\u04db\u0007", - "U\u0002\u0002\u04db\u00c2\u0003\u0002\u0002\u0002\u04dc\u04dd\u0007", - "K\u0002\u0002\u04dd\u04de\u0007P\u0002\u0002\u04de\u04df\u0007V\u0002", - "\u0002\u04df\u04e0\u0007G\u0002\u0002\u04e0\u04e1\u0007T\u0002\u0002", - "\u04e1\u04e2\u0007U\u0002\u0002\u04e2\u04e3\u0007G\u0002\u0002\u04e3", - "\u04e4\u0007E\u0002\u0002\u04e4\u04e5\u0007V\u0002\u0002\u04e5\u00c4", - "\u0003\u0002\u0002\u0002\u04e6\u04e7\u0007V\u0002\u0002\u04e7\u04e8", - "\u0007Q\u0002\u0002\u04e8\u00c6\u0003\u0002\u0002\u0002\u04e9\u04ea", - "\u0007V\u0002\u0002\u04ea\u04eb\u0007C\u0002\u0002\u04eb\u04ec\u0007", - "D\u0002\u0002\u04ec\u04ed\u0007N\u0002\u0002\u04ed\u04ee\u0007G\u0002", - "\u0002\u04ee\u04ef\u0007U\u0002\u0002\u04ef\u04f0\u0007C\u0002\u0002", - "\u04f0\u04f1\u0007O\u0002\u0002\u04f1\u04f2\u0007R\u0002\u0002\u04f2", - "\u04f3\u0007N\u0002\u0002\u04f3\u04f4\u0007G\u0002\u0002\u04f4\u00c8", - "\u0003\u0002\u0002\u0002\u04f5\u04f6\u0007U\u0002\u0002\u04f6\u04f7", - "\u0007V\u0002\u0002\u04f7\u04f8\u0007T\u0002\u0002\u04f8\u04f9\u0007", - "C\u0002\u0002\u04f9\u04fa\u0007V\u0002\u0002\u04fa\u04fb\u0007K\u0002", - "\u0002\u04fb\u04fc\u0007H\u0002\u0002\u04fc\u04fd\u0007[\u0002\u0002", - "\u04fd\u00ca\u0003\u0002\u0002\u0002\u04fe\u04ff\u0007C\u0002\u0002", - "\u04ff\u0500\u0007N\u0002\u0002\u0500\u0501\u0007V\u0002\u0002\u0501", - "\u0502\u0007G\u0002\u0002\u0502\u0503\u0007T\u0002\u0002\u0503\u00cc", - "\u0003\u0002\u0002\u0002\u0504\u0505\u0007T\u0002\u0002\u0505\u0506", - "\u0007G\u0002\u0002\u0506\u0507\u0007P\u0002\u0002\u0507\u0508\u0007", - "C\u0002\u0002\u0508\u0509\u0007O\u0002\u0002\u0509\u050a\u0007G\u0002", - "\u0002\u050a\u00ce\u0003\u0002\u0002\u0002\u050b\u050c\u0007U\u0002", - "\u0002\u050c\u050d\u0007V\u0002\u0002\u050d\u050e\u0007T\u0002\u0002", - "\u050e\u050f\u0007W\u0002\u0002\u050f\u0510\u0007E\u0002\u0002\u0510", - "\u0511\u0007V\u0002\u0002\u0511\u00d0\u0003\u0002\u0002\u0002\u0512", - "\u0513\u0007E\u0002\u0002\u0513\u0514\u0007Q\u0002\u0002\u0514\u0515", - "\u0007O\u0002\u0002\u0515\u0516\u0007O\u0002\u0002\u0516\u0517\u0007", - "G\u0002\u0002\u0517\u0518\u0007P\u0002\u0002\u0518\u0519\u0007V\u0002", - "\u0002\u0519\u00d2\u0003\u0002\u0002\u0002\u051a\u051b\u0007U\u0002", - "\u0002\u051b\u051c\u0007G\u0002\u0002\u051c\u051d\u0007V\u0002\u0002", - "\u051d\u00d4\u0003\u0002\u0002\u0002\u051e\u051f\u0007T\u0002\u0002", - "\u051f\u0520\u0007G\u0002\u0002\u0520\u0521\u0007U\u0002\u0002\u0521", - "\u0522\u0007G\u0002\u0002\u0522\u0523\u0007V\u0002\u0002\u0523\u00d6", - "\u0003\u0002\u0002\u0002\u0524\u0525\u0007F\u0002\u0002\u0525\u0526", - "\u0007C\u0002\u0002\u0526\u0527\u0007V\u0002\u0002\u0527\u0528\u0007", - "C\u0002\u0002\u0528\u00d8\u0003\u0002\u0002\u0002\u0529\u052a\u0007", - "U\u0002\u0002\u052a\u052b\u0007V\u0002\u0002\u052b\u052c\u0007C\u0002", - "\u0002\u052c\u052d\u0007T\u0002\u0002\u052d\u052e\u0007V\u0002\u0002", - "\u052e\u00da\u0003\u0002\u0002\u0002\u052f\u0530\u0007V\u0002\u0002", - "\u0530\u0531\u0007T\u0002\u0002\u0531\u0532\u0007C\u0002\u0002\u0532", - "\u0533\u0007P\u0002\u0002\u0533\u0534\u0007U\u0002\u0002\u0534\u0535", - "\u0007C\u0002\u0002\u0535\u0536\u0007E\u0002\u0002\u0536\u0537\u0007", - "V\u0002\u0002\u0537\u0538\u0007K\u0002\u0002\u0538\u0539\u0007Q\u0002", - "\u0002\u0539\u053a\u0007P\u0002\u0002\u053a\u00dc\u0003\u0002\u0002", - "\u0002\u053b\u053c\u0007E\u0002\u0002\u053c\u053d\u0007Q\u0002\u0002", - "\u053d\u053e\u0007O\u0002\u0002\u053e\u053f\u0007O\u0002\u0002\u053f", - "\u0540\u0007K\u0002\u0002\u0540\u0541\u0007V\u0002\u0002\u0541\u00de", - "\u0003\u0002\u0002\u0002\u0542\u0543\u0007T\u0002\u0002\u0543\u0544", - "\u0007Q\u0002\u0002\u0544\u0545\u0007N\u0002\u0002\u0545\u0546\u0007", - "N\u0002\u0002\u0546\u0547\u0007D\u0002\u0002\u0547\u0548\u0007C\u0002", - "\u0002\u0548\u0549\u0007E\u0002\u0002\u0549\u054a\u0007M\u0002\u0002", - "\u054a\u00e0\u0003\u0002\u0002\u0002\u054b\u054c\u0007O\u0002\u0002", - "\u054c\u054d\u0007C\u0002\u0002\u054d\u054e\u0007E\u0002\u0002\u054e", - "\u054f\u0007T\u0002\u0002\u054f\u0550\u0007Q\u0002\u0002\u0550\u00e2", - "\u0003\u0002\u0002\u0002\u0551\u0552\u0007K\u0002\u0002\u0552\u0553", - "\u0007I\u0002\u0002\u0553\u0554\u0007P\u0002\u0002\u0554\u0555\u0007", - "Q\u0002\u0002\u0555\u0556\u0007T\u0002\u0002\u0556\u0557\u0007G\u0002", - "\u0002\u0557\u00e4\u0003\u0002\u0002\u0002\u0558\u0559\u0007D\u0002", - "\u0002\u0559\u055a\u0007Q\u0002\u0002\u055a\u055b\u0007V\u0002\u0002", - "\u055b\u055c\u0007J\u0002\u0002\u055c\u00e6\u0003\u0002\u0002\u0002", - "\u055d\u055e\u0007N\u0002\u0002\u055e\u055f\u0007G\u0002\u0002\u055f", - "\u0560\u0007C\u0002\u0002\u0560\u0561\u0007F\u0002\u0002\u0561\u0562", - "\u0007K\u0002\u0002\u0562\u0563\u0007P\u0002\u0002\u0563\u0564\u0007", - "I\u0002\u0002\u0564\u00e8\u0003\u0002\u0002\u0002\u0565\u0566\u0007", - "V\u0002\u0002\u0566\u0567\u0007T\u0002\u0002\u0567\u0568\u0007C\u0002", - "\u0002\u0568\u0569\u0007K\u0002\u0002\u0569\u056a\u0007N\u0002\u0002", - "\u056a\u056b\u0007K\u0002\u0002\u056b\u056c\u0007P\u0002\u0002\u056c", - "\u056d\u0007I\u0002\u0002\u056d\u00ea\u0003\u0002\u0002\u0002\u056e", - "\u056f\u0007K\u0002\u0002\u056f\u0570\u0007H\u0002\u0002\u0570\u00ec", - "\u0003\u0002\u0002\u0002\u0571\u0572\u0007R\u0002\u0002\u0572\u0573", - "\u0007Q\u0002\u0002\u0573\u0574\u0007U\u0002\u0002\u0574\u0575\u0007", - "K\u0002\u0002\u0575\u0576\u0007V\u0002\u0002\u0576\u0577\u0007K\u0002", - "\u0002\u0577\u0578\u0007Q\u0002\u0002\u0578\u0579\u0007P\u0002\u0002", - "\u0579\u00ee\u0003\u0002\u0002\u0002\u057a\u057b\u0007G\u0002\u0002", - "\u057b\u057c\u0007Z\u0002\u0002\u057c\u057d\u0007V\u0002\u0002\u057d", - "\u057e\u0007T\u0002\u0002\u057e\u057f\u0007C\u0002\u0002\u057f\u0580", - "\u0007E\u0002\u0002\u0580\u0581\u0007V\u0002\u0002\u0581\u00f0\u0003", - "\u0002\u0002\u0002\u0582\u0583\u0007G\u0002\u0002\u0583\u0584\u0007", - "S\u0002\u0002\u0584\u00f2\u0003\u0002\u0002\u0002\u0585\u0586\u0007", - "P\u0002\u0002\u0586\u0587\u0007U\u0002\u0002\u0587\u0588\u0007G\u0002", - "\u0002\u0588\u0589\u0007S\u0002\u0002\u0589\u00f4\u0003\u0002\u0002", - "\u0002\u058a\u058b\u0007P\u0002\u0002\u058b\u058c\u0007G\u0002\u0002", - "\u058c\u058d\u0007S\u0002\u0002\u058d\u00f6\u0003\u0002\u0002\u0002", - "\u058e\u058f\u0007P\u0002\u0002\u058f\u0590\u0007G\u0002\u0002\u0590", - "\u0591\u0007S\u0002\u0002\u0591\u0592\u0007L\u0002\u0002\u0592\u00f8", - "\u0003\u0002\u0002\u0002\u0593\u0594\u0007N\u0002\u0002\u0594\u0595", - "\u0007V\u0002\u0002\u0595\u00fa\u0003\u0002\u0002\u0002\u0596\u0597", - "\u0007N\u0002\u0002\u0597\u0598\u0007V\u0002\u0002\u0598\u0599\u0007", - "G\u0002\u0002\u0599\u00fc\u0003\u0002\u0002\u0002\u059a\u059b\u0007", - "I\u0002\u0002\u059b\u059c\u0007V\u0002\u0002\u059c\u00fe\u0003\u0002", - "\u0002\u0002\u059d\u059e\u0007I\u0002\u0002\u059e\u059f\u0007V\u0002", - "\u0002\u059f\u05a0\u0007G\u0002\u0002\u05a0\u0100\u0003\u0002\u0002", - "\u0002\u05a1\u05a2\u0007R\u0002\u0002\u05a2\u05a3\u0007N\u0002\u0002", - "\u05a3\u05a4\u0007W\u0002\u0002\u05a4\u05a5\u0007U\u0002\u0002\u05a5", - "\u0102\u0003\u0002\u0002\u0002\u05a6\u05a7\u0007O\u0002\u0002\u05a7", - "\u05a8\u0007K\u0002\u0002\u05a8\u05a9\u0007P\u0002\u0002\u05a9\u05aa", - "\u0007W\u0002\u0002\u05aa\u05ab\u0007U\u0002\u0002\u05ab\u0104\u0003", - "\u0002\u0002\u0002\u05ac\u05ad\u0007C\u0002\u0002\u05ad\u05ae\u0007", - "U\u0002\u0002\u05ae\u05af\u0007V\u0002\u0002\u05af\u05b0\u0007G\u0002", - "\u0002\u05b0\u05b1\u0007T\u0002\u0002\u05b1\u05b2\u0007K\u0002\u0002", - "\u05b2\u05b3\u0007U\u0002\u0002\u05b3\u05b4\u0007M\u0002\u0002\u05b4", - "\u0106\u0003\u0002\u0002\u0002\u05b5\u05b6\u0007U\u0002\u0002\u05b6", - "\u05b7\u0007N\u0002\u0002\u05b7\u05b8\u0007C\u0002\u0002\u05b8\u05b9", - "\u0007U\u0002\u0002\u05b9\u05ba\u0007J\u0002\u0002\u05ba\u0108\u0003", - "\u0002\u0002\u0002\u05bb\u05bc\u0007R\u0002\u0002\u05bc\u05bd\u0007", - "G\u0002\u0002\u05bd\u05be\u0007T\u0002\u0002\u05be\u05bf\u0007E\u0002", - "\u0002\u05bf\u05c0\u0007G\u0002\u0002\u05c0\u05c1\u0007P\u0002\u0002", - "\u05c1\u05c2\u0007V\u0002\u0002\u05c2\u010a\u0003\u0002\u0002\u0002", - "\u05c3\u05c4\u0007F\u0002\u0002\u05c4\u05c5\u0007K\u0002\u0002\u05c5", - "\u05c6\u0007X\u0002\u0002\u05c6\u010c\u0003\u0002\u0002\u0002\u05c7", - "\u05c8\u0007V\u0002\u0002\u05c8\u05c9\u0007K\u0002\u0002\u05c9\u05ca", - "\u0007N\u0002\u0002\u05ca\u05cb\u0007F\u0002\u0002\u05cb\u05cc\u0007", - "G\u0002\u0002\u05cc\u010e\u0003\u0002\u0002\u0002\u05cd\u05ce\u0007", - "C\u0002\u0002\u05ce\u05cf\u0007O\u0002\u0002\u05cf\u05d0\u0007R\u0002", - "\u0002\u05d0\u05d1\u0007G\u0002\u0002\u05d1\u05d2\u0007T\u0002\u0002", - "\u05d2\u05d3\u0007U\u0002\u0002\u05d3\u05d4\u0007C\u0002\u0002\u05d4", - "\u05d5\u0007P\u0002\u0002\u05d5\u05d6\u0007F\u0002\u0002\u05d6\u0110", - "\u0003\u0002\u0002\u0002\u05d7\u05d8\u0007R\u0002\u0002\u05d8\u05d9", - "\u0007K\u0002\u0002\u05d9\u05da\u0007R\u0002\u0002\u05da\u05db\u0007", - "G\u0002\u0002\u05db\u0112\u0003\u0002\u0002\u0002\u05dc\u05dd\u0007", - "E\u0002\u0002\u05dd\u05de\u0007Q\u0002\u0002\u05de\u05df\u0007P\u0002", - "\u0002\u05df\u05e0\u0007E\u0002\u0002\u05e0\u05e1\u0007C\u0002\u0002", - "\u05e1\u05e2\u0007V\u0002\u0002\u05e2\u05e3\u0007a\u0002\u0002\u05e3", - "\u05e4\u0007R\u0002\u0002\u05e4\u05e5\u0007K\u0002\u0002\u05e5\u05e6", - "\u0007R\u0002\u0002\u05e6\u05e7\u0007G\u0002\u0002\u05e7\u0114\u0003", - "\u0002\u0002\u0002\u05e8\u05e9\u0007J\u0002\u0002\u05e9\u05ea\u0007", - "C\u0002\u0002\u05ea\u05eb\u0007V\u0002\u0002\u05eb\u0116\u0003\u0002", - "\u0002\u0002\u05ec\u05ed\u0007R\u0002\u0002\u05ed\u05ee\u0007G\u0002", - "\u0002\u05ee\u05ef\u0007T\u0002\u0002\u05ef\u05f0\u0007E\u0002\u0002", - "\u05f0\u05f1\u0007G\u0002\u0002\u05f1\u05f2\u0007P\u0002\u0002\u05f2", - "\u05f3\u0007V\u0002\u0002\u05f3\u05f4\u0007N\u0002\u0002\u05f4\u05f5", - "\u0007K\u0002\u0002\u05f5\u05f6\u0007V\u0002\u0002\u05f6\u0118\u0003", - "\u0002\u0002\u0002\u05f7\u05f8\u0007D\u0002\u0002\u05f8\u05f9\u0007", - "W\u0002\u0002\u05f9\u05fa\u0007E\u0002\u0002\u05fa\u05fb\u0007M\u0002", - "\u0002\u05fb\u05fc\u0007G\u0002\u0002\u05fc\u05fd\u0007V\u0002\u0002", - "\u05fd\u011a\u0003\u0002\u0002\u0002\u05fe\u05ff\u0007Q\u0002\u0002", - "\u05ff\u0600\u0007W\u0002\u0002\u0600\u0601\u0007V\u0002\u0002\u0601", - "\u011c\u0003\u0002\u0002\u0002\u0602\u0603\u0007Q\u0002\u0002\u0603", - "\u0604\u0007H\u0002\u0002\u0604\u011e\u0003\u0002\u0002\u0002\u0605", - "\u0606\u0007U\u0002\u0002\u0606\u0607\u0007Q\u0002\u0002\u0607\u0608", - "\u0007T\u0002\u0002\u0608\u0609\u0007V\u0002\u0002\u0609\u0120\u0003", - "\u0002\u0002\u0002\u060a\u060b\u0007E\u0002\u0002\u060b\u060c\u0007", - "N\u0002\u0002\u060c\u060d\u0007W\u0002\u0002\u060d\u060e\u0007U\u0002", - "\u0002\u060e\u060f\u0007V\u0002\u0002\u060f\u0610\u0007G\u0002\u0002", - "\u0610\u0611\u0007T\u0002\u0002\u0611\u0122\u0003\u0002\u0002\u0002", - "\u0612\u0613\u0007F\u0002\u0002\u0613\u0614\u0007K\u0002\u0002\u0614", - "\u0615\u0007U\u0002\u0002\u0615\u0616\u0007V\u0002\u0002\u0616\u0617", - "\u0007T\u0002\u0002\u0617\u0618\u0007K\u0002\u0002\u0618\u0619\u0007", - "D\u0002\u0002\u0619\u061a\u0007W\u0002\u0002\u061a\u061b\u0007V\u0002", - "\u0002\u061b\u061c\u0007G\u0002\u0002\u061c\u0124\u0003\u0002\u0002", - "\u0002\u061d\u061e\u0007Q\u0002\u0002\u061e\u061f\u0007X\u0002\u0002", - "\u061f\u0620\u0007G\u0002\u0002\u0620\u0621\u0007T\u0002\u0002\u0621", - "\u0622\u0007Y\u0002\u0002\u0622\u0623\u0007T\u0002\u0002\u0623\u0624", - "\u0007K\u0002\u0002\u0624\u0625\u0007V\u0002\u0002\u0625\u0626\u0007", - "G\u0002\u0002\u0626\u0126\u0003\u0002\u0002\u0002\u0627\u0628\u0007", - "V\u0002\u0002\u0628\u0629\u0007T\u0002\u0002\u0629\u062a\u0007C\u0002", - "\u0002\u062a\u062b\u0007P\u0002\u0002\u062b\u062c\u0007U\u0002\u0002", - "\u062c\u062d\u0007H\u0002\u0002\u062d\u062e\u0007Q\u0002\u0002\u062e", - "\u062f\u0007T\u0002\u0002\u062f\u0630\u0007O\u0002\u0002\u0630\u0128", - "\u0003\u0002\u0002\u0002\u0631\u0632\u0007T\u0002\u0002\u0632\u0633", - "\u0007G\u0002\u0002\u0633\u0634\u0007F\u0002\u0002\u0634\u0635\u0007", - "W\u0002\u0002\u0635\u0636\u0007E\u0002\u0002\u0636\u0637\u0007G\u0002", - "\u0002\u0637\u012a\u0003\u0002\u0002\u0002\u0638\u0639\u0007W\u0002", - "\u0002\u0639\u063a\u0007U\u0002\u0002\u063a\u063b\u0007K\u0002\u0002", - "\u063b\u063c\u0007P\u0002\u0002\u063c\u063d\u0007I\u0002\u0002\u063d", - "\u012c\u0003\u0002\u0002\u0002\u063e\u063f\u0007U\u0002\u0002\u063f", - "\u0640\u0007G\u0002\u0002\u0640\u0641\u0007T\u0002\u0002\u0641\u0642", - "\u0007F\u0002\u0002\u0642\u0643\u0007G\u0002\u0002\u0643\u012e\u0003", - "\u0002\u0002\u0002\u0644\u0645\u0007U\u0002\u0002\u0645\u0646\u0007", - "G\u0002\u0002\u0646\u0647\u0007T\u0002\u0002\u0647\u0648\u0007F\u0002", - "\u0002\u0648\u0649\u0007G\u0002\u0002\u0649\u064a\u0007R\u0002\u0002", - "\u064a\u064b\u0007T\u0002\u0002\u064b\u064c\u0007Q\u0002\u0002\u064c", - "\u064d\u0007R\u0002\u0002\u064d\u064e\u0007G\u0002\u0002\u064e\u064f", - "\u0007T\u0002\u0002\u064f\u0650\u0007V\u0002\u0002\u0650\u0651\u0007", - "K\u0002\u0002\u0651\u0652\u0007G\u0002\u0002\u0652\u0653\u0007U\u0002", - "\u0002\u0653\u0130\u0003\u0002\u0002\u0002\u0654\u0655\u0007T\u0002", - "\u0002\u0655\u0656\u0007G\u0002\u0002\u0656\u0657\u0007E\u0002\u0002", - "\u0657\u0658\u0007Q\u0002\u0002\u0658\u0659\u0007T\u0002\u0002\u0659", - "\u065a\u0007F\u0002\u0002\u065a\u065b\u0007T\u0002\u0002\u065b\u065c", - "\u0007G\u0002\u0002\u065c\u065d\u0007C\u0002\u0002\u065d\u065e\u0007", - "F\u0002\u0002\u065e\u065f\u0007G\u0002\u0002\u065f\u0660\u0007T\u0002", - "\u0002\u0660\u0132\u0003\u0002\u0002\u0002\u0661\u0662\u0007T\u0002", - "\u0002\u0662\u0663\u0007G\u0002\u0002\u0663\u0664\u0007E\u0002\u0002", - "\u0664\u0665\u0007Q\u0002\u0002\u0665\u0666\u0007T\u0002\u0002\u0666", - "\u0667\u0007F\u0002\u0002\u0667\u0668\u0007Y\u0002\u0002\u0668\u0669", - "\u0007T\u0002\u0002\u0669\u066a\u0007K\u0002\u0002\u066a\u066b\u0007", - "V\u0002\u0002\u066b\u066c\u0007G\u0002\u0002\u066c\u066d\u0007T\u0002", - "\u0002\u066d\u0134\u0003\u0002\u0002\u0002\u066e\u066f\u0007F\u0002", - "\u0002\u066f\u0670\u0007G\u0002\u0002\u0670\u0671\u0007N\u0002\u0002", - "\u0671\u0672\u0007K\u0002\u0002\u0672\u0673\u0007O\u0002\u0002\u0673", - "\u0674\u0007K\u0002\u0002\u0674\u0675\u0007V\u0002\u0002\u0675\u0676", - "\u0007G\u0002\u0002\u0676\u0677\u0007F\u0002\u0002\u0677\u0136\u0003", - "\u0002\u0002\u0002\u0678\u0679\u0007H\u0002\u0002\u0679\u067a\u0007", - "K\u0002\u0002\u067a\u067b\u0007G\u0002\u0002\u067b\u067c\u0007N\u0002", - "\u0002\u067c\u067d\u0007F\u0002\u0002\u067d\u067e\u0007U\u0002\u0002", - "\u067e\u0138\u0003\u0002\u0002\u0002\u067f\u0680\u0007V\u0002\u0002", - "\u0680\u0681\u0007G\u0002\u0002\u0681\u0682\u0007T\u0002\u0002\u0682", - "\u0683\u0007O\u0002\u0002\u0683\u0684\u0007K\u0002\u0002\u0684\u0685", - "\u0007P\u0002\u0002\u0685\u0686\u0007C\u0002\u0002\u0686\u0687\u0007", - "V\u0002\u0002\u0687\u0688\u0007G\u0002\u0002\u0688\u0689\u0007F\u0002", - "\u0002\u0689\u013a\u0003\u0002\u0002\u0002\u068a\u068b\u0007E\u0002", - "\u0002\u068b\u068c\u0007Q\u0002\u0002\u068c\u068d\u0007N\u0002\u0002", - "\u068d\u068e\u0007N\u0002\u0002\u068e\u068f\u0007G\u0002\u0002\u068f", - "\u0690\u0007E\u0002\u0002\u0690\u0691\u0007V\u0002\u0002\u0691\u0692", - "\u0007K\u0002\u0002\u0692\u0693\u0007Q\u0002\u0002\u0693\u0694\u0007", - "P\u0002\u0002\u0694\u013c\u0003\u0002\u0002\u0002\u0695\u0696\u0007", - "K\u0002\u0002\u0696\u0697\u0007V\u0002\u0002\u0697\u0698\u0007G\u0002", - "\u0002\u0698\u0699\u0007O\u0002\u0002\u0699\u069a\u0007U\u0002\u0002", - "\u069a\u013e\u0003\u0002\u0002\u0002\u069b\u069c\u0007M\u0002\u0002", - "\u069c\u069d\u0007G\u0002\u0002\u069d\u069e\u0007[\u0002\u0002\u069e", - "\u069f\u0007U\u0002\u0002\u069f\u0140\u0003\u0002\u0002\u0002\u06a0", - "\u06a1\u0007G\u0002\u0002\u06a1\u06a2\u0007U\u0002\u0002\u06a2\u06a3", - "\u0007E\u0002\u0002\u06a3\u06a4\u0007C\u0002\u0002\u06a4\u06a5\u0007", - "R\u0002\u0002\u06a5\u06a6\u0007G\u0002\u0002\u06a6\u06a7\u0007F\u0002", - "\u0002\u06a7\u0142\u0003\u0002\u0002\u0002\u06a8\u06a9\u0007N\u0002", - "\u0002\u06a9\u06aa\u0007K\u0002\u0002\u06aa\u06ab\u0007P\u0002\u0002", - "\u06ab\u06ac\u0007G\u0002\u0002\u06ac\u06ad\u0007U\u0002\u0002\u06ad", - "\u0144\u0003\u0002\u0002\u0002\u06ae\u06af\u0007U\u0002\u0002\u06af", - "\u06b0\u0007G\u0002\u0002\u06b0\u06b1\u0007R\u0002\u0002\u06b1\u06b2", - "\u0007C\u0002\u0002\u06b2\u06b3\u0007T\u0002\u0002\u06b3\u06b4\u0007", - "C\u0002\u0002\u06b4\u06b5\u0007V\u0002\u0002\u06b5\u06b6\u0007G\u0002", - "\u0002\u06b6\u06b7\u0007F\u0002\u0002\u06b7\u0146\u0003\u0002\u0002", - "\u0002\u06b8\u06b9\u0007H\u0002\u0002\u06b9\u06ba\u0007W\u0002\u0002", - "\u06ba\u06bb\u0007P\u0002\u0002\u06bb\u06bc\u0007E\u0002\u0002\u06bc", - "\u06bd\u0007V\u0002\u0002\u06bd\u06be\u0007K\u0002\u0002\u06be\u06bf", - "\u0007Q\u0002\u0002\u06bf\u06c0\u0007P\u0002\u0002\u06c0\u0148\u0003", - "\u0002\u0002\u0002\u06c1\u06c2\u0007G\u0002\u0002\u06c2\u06c3\u0007", - "Z\u0002\u0002\u06c3\u06c4\u0007V\u0002\u0002\u06c4\u06c5\u0007G\u0002", - "\u0002\u06c5\u06c6\u0007P\u0002\u0002\u06c6\u06c7\u0007F\u0002\u0002", - "\u06c7\u06c8\u0007G\u0002\u0002\u06c8\u06c9\u0007F\u0002\u0002\u06c9", - "\u014a\u0003\u0002\u0002\u0002\u06ca\u06cb\u0007T\u0002\u0002\u06cb", - "\u06cc\u0007G\u0002\u0002\u06cc\u06cd\u0007H\u0002\u0002\u06cd\u06ce", - "\u0007T\u0002\u0002\u06ce\u06cf\u0007G\u0002\u0002\u06cf\u06d0\u0007", - "U\u0002\u0002\u06d0\u06d1\u0007J\u0002\u0002\u06d1\u014c\u0003\u0002", - "\u0002\u0002\u06d2\u06d3\u0007E\u0002\u0002\u06d3\u06d4\u0007N\u0002", - "\u0002\u06d4\u06d5\u0007G\u0002\u0002\u06d5\u06d6\u0007C\u0002\u0002", - "\u06d6\u06d7\u0007T\u0002\u0002\u06d7\u014e\u0003\u0002\u0002\u0002", - "\u06d8\u06d9\u0007E\u0002\u0002\u06d9\u06da\u0007C\u0002\u0002\u06da", - "\u06db\u0007E\u0002\u0002\u06db\u06dc\u0007J\u0002\u0002\u06dc\u06dd", - "\u0007G\u0002\u0002\u06dd\u0150\u0003\u0002\u0002\u0002\u06de\u06df", - "\u0007W\u0002\u0002\u06df\u06e0\u0007P\u0002\u0002\u06e0\u06e1\u0007", - "E\u0002\u0002\u06e1\u06e2\u0007C\u0002\u0002\u06e2\u06e3\u0007E\u0002", - "\u0002\u06e3\u06e4\u0007J\u0002\u0002\u06e4\u06e5\u0007G\u0002\u0002", - "\u06e5\u0152\u0003\u0002\u0002\u0002\u06e6\u06e7\u0007N\u0002\u0002", - "\u06e7\u06e8\u0007C\u0002\u0002\u06e8\u06e9\u0007\\\u0002\u0002\u06e9", - "\u06ea\u0007[\u0002\u0002\u06ea\u0154\u0003\u0002\u0002\u0002\u06eb", - "\u06ec\u0007H\u0002\u0002\u06ec\u06ed\u0007Q\u0002\u0002\u06ed\u06ee", - "\u0007T\u0002\u0002\u06ee\u06ef\u0007O\u0002\u0002\u06ef\u06f0\u0007", - "C\u0002\u0002\u06f0\u06f1\u0007V\u0002\u0002\u06f1\u06f2\u0007V\u0002", - "\u0002\u06f2\u06f3\u0007G\u0002\u0002\u06f3\u06f4\u0007F\u0002\u0002", - "\u06f4\u0156\u0003\u0002\u0002\u0002\u06f5\u06f6\u0007I\u0002\u0002", - "\u06f6\u06f7\u0007N\u0002\u0002\u06f7\u06f8\u0007Q\u0002\u0002\u06f8", - "\u06f9\u0007D\u0002\u0002\u06f9\u06fa\u0007C\u0002\u0002\u06fa\u06fb", - "\u0007N\u0002\u0002\u06fb\u0158\u0003\u0002\u0002\u0002\u06fc\u06fd", - "\u0007V\u0002\u0002\u06fd\u06fe\u0007G\u0002\u0002\u06fe\u06ff\u0007", - "O\u0002\u0002\u06ff\u0700\u0007R\u0002\u0002\u0700\u0701\u0007Q\u0002", - "\u0002\u0701\u0702\u0007T\u0002\u0002\u0702\u0703\u0007C\u0002\u0002", - "\u0703\u0704\u0007T\u0002\u0002\u0704\u0705\u0007[\u0002\u0002\u0705", - "\u015a\u0003\u0002\u0002\u0002\u0706\u0707\u0007Q\u0002\u0002\u0707", - "\u0708\u0007R\u0002\u0002\u0708\u0709\u0007V\u0002\u0002\u0709\u070a", - "\u0007K\u0002\u0002\u070a\u070b\u0007Q\u0002\u0002\u070b\u070c\u0007", - "P\u0002\u0002\u070c\u070d\u0007U\u0002\u0002\u070d\u015c\u0003\u0002", - "\u0002\u0002\u070e\u070f\u0007W\u0002\u0002\u070f\u0710\u0007P\u0002", - "\u0002\u0710\u0711\u0007U\u0002\u0002\u0711\u0712\u0007G\u0002\u0002", - "\u0712\u0713\u0007V\u0002\u0002\u0713\u015e\u0003\u0002\u0002\u0002", - "\u0714\u0715\u0007V\u0002\u0002\u0715\u0716\u0007D\u0002\u0002\u0716", - "\u0717\u0007N\u0002\u0002\u0717\u0718\u0007R\u0002\u0002\u0718\u0719", - "\u0007T\u0002\u0002\u0719\u071a\u0007Q\u0002\u0002\u071a\u071b\u0007", - "R\u0002\u0002\u071b\u071c\u0007G\u0002\u0002\u071c\u071d\u0007T\u0002", - "\u0002\u071d\u071e\u0007V\u0002\u0002\u071e\u071f\u0007K\u0002\u0002", - "\u071f\u0720\u0007G\u0002\u0002\u0720\u0721\u0007U\u0002\u0002\u0721", - "\u0160\u0003\u0002\u0002\u0002\u0722\u0723\u0007F\u0002\u0002\u0723", - "\u0724\u0007D\u0002\u0002\u0724\u0725\u0007R\u0002\u0002\u0725\u0726", - "\u0007T\u0002\u0002\u0726\u0727\u0007Q\u0002\u0002\u0727\u0728\u0007", - "R\u0002\u0002\u0728\u0729\u0007G\u0002\u0002\u0729\u072a\u0007T\u0002", - "\u0002\u072a\u072b\u0007V\u0002\u0002\u072b\u072c\u0007K\u0002\u0002", - "\u072c\u072d\u0007G\u0002\u0002\u072d\u072e\u0007U\u0002\u0002\u072e", - "\u0162\u0003\u0002\u0002\u0002\u072f\u0730\u0007D\u0002\u0002\u0730", - "\u0731\u0007W\u0002\u0002\u0731\u0732\u0007E\u0002\u0002\u0732\u0733", - "\u0007M\u0002\u0002\u0733\u0734\u0007G\u0002\u0002\u0734\u0735\u0007", - "V\u0002\u0002\u0735\u0736\u0007U\u0002\u0002\u0736\u0164\u0003\u0002", - "\u0002\u0002\u0737\u0738\u0007U\u0002\u0002\u0738\u0739\u0007M\u0002", - "\u0002\u0739\u073a\u0007G\u0002\u0002\u073a\u073b\u0007Y\u0002\u0002", - "\u073b\u073c\u0007G\u0002\u0002\u073c\u073d\u0007F\u0002\u0002\u073d", - "\u0166\u0003\u0002\u0002\u0002\u073e\u073f\u0007U\u0002\u0002\u073f", - "\u0740\u0007V\u0002\u0002\u0740\u0741\u0007Q\u0002\u0002\u0741\u0742", - "\u0007T\u0002\u0002\u0742\u0743\u0007G\u0002\u0002\u0743\u0744\u0007", - "F\u0002\u0002\u0744\u0168\u0003\u0002\u0002\u0002\u0745\u0746\u0007", - "F\u0002\u0002\u0746\u0747\u0007K\u0002\u0002\u0747\u0748\u0007T\u0002", - "\u0002\u0748\u0749\u0007G\u0002\u0002\u0749\u074a\u0007E\u0002\u0002", - "\u074a\u074b\u0007V\u0002\u0002\u074b\u074c\u0007Q\u0002\u0002\u074c", - "\u074d\u0007T\u0002\u0002\u074d\u074e\u0007K\u0002\u0002\u074e\u074f", - "\u0007G\u0002\u0002\u074f\u0750\u0007U\u0002\u0002\u0750\u016a\u0003", - "\u0002\u0002\u0002\u0751\u0752\u0007N\u0002\u0002\u0752\u0753\u0007", - "Q\u0002\u0002\u0753\u0754\u0007E\u0002\u0002\u0754\u0755\u0007C\u0002", - "\u0002\u0755\u0756\u0007V\u0002\u0002\u0756\u0757\u0007K\u0002\u0002", - "\u0757\u0758\u0007Q\u0002\u0002\u0758\u0759\u0007P\u0002\u0002\u0759", - "\u016c\u0003\u0002\u0002\u0002\u075a\u075b\u0007G\u0002\u0002\u075b", - "\u075c\u0007Z\u0002\u0002\u075c\u075d\u0007E\u0002\u0002\u075d\u075e", - "\u0007J\u0002\u0002\u075e\u075f\u0007C\u0002\u0002\u075f\u0760\u0007", - "P\u0002\u0002\u0760\u0761\u0007I\u0002\u0002\u0761\u0762\u0007G\u0002", - "\u0002\u0762\u016e\u0003\u0002\u0002\u0002\u0763\u0764\u0007C\u0002", - "\u0002\u0764\u0765\u0007T\u0002\u0002\u0765\u0766\u0007E\u0002\u0002", - "\u0766\u0767\u0007J\u0002\u0002\u0767\u0768\u0007K\u0002\u0002\u0768", - "\u0769\u0007X\u0002\u0002\u0769\u076a\u0007G\u0002\u0002\u076a\u0170", - "\u0003\u0002\u0002\u0002\u076b\u076c\u0007W\u0002\u0002\u076c\u076d", - "\u0007P\u0002\u0002\u076d\u076e\u0007C\u0002\u0002\u076e\u076f\u0007", - "T\u0002\u0002\u076f\u0770\u0007E\u0002\u0002\u0770\u0771\u0007J\u0002", - "\u0002\u0771\u0772\u0007K\u0002\u0002\u0772\u0773\u0007X\u0002\u0002", - "\u0773\u0774\u0007G\u0002\u0002\u0774\u0172\u0003\u0002\u0002\u0002", - "\u0775\u0776\u0007H\u0002\u0002\u0776\u0777\u0007K\u0002\u0002\u0777", - "\u0778\u0007N\u0002\u0002\u0778\u0779\u0007G\u0002\u0002\u0779\u077a", - "\u0007H\u0002\u0002\u077a\u077b\u0007Q\u0002\u0002\u077b\u077c\u0007", - "T\u0002\u0002\u077c\u077d\u0007O\u0002\u0002\u077d\u077e\u0007C\u0002", - "\u0002\u077e\u077f\u0007V\u0002\u0002\u077f\u0174\u0003\u0002\u0002", - "\u0002\u0780\u0781\u0007V\u0002\u0002\u0781\u0782\u0007Q\u0002\u0002", - "\u0782\u0783\u0007W\u0002\u0002\u0783\u0784\u0007E\u0002\u0002\u0784", - "\u0785\u0007J\u0002\u0002\u0785\u0176\u0003\u0002\u0002\u0002\u0786", - "\u0787\u0007E\u0002\u0002\u0787\u0788\u0007Q\u0002\u0002\u0788\u0789", - "\u0007O\u0002\u0002\u0789\u078a\u0007R\u0002\u0002\u078a\u078b\u0007", - "C\u0002\u0002\u078b\u078c\u0007E\u0002\u0002\u078c\u078d\u0007V\u0002", - "\u0002\u078d\u0178\u0003\u0002\u0002\u0002\u078e\u078f\u0007E\u0002", - "\u0002\u078f\u0790\u0007Q\u0002\u0002\u0790\u0791\u0007P\u0002\u0002", - "\u0791\u0792\u0007E\u0002\u0002\u0792\u0793\u0007C\u0002\u0002\u0793", - "\u0794\u0007V\u0002\u0002\u0794\u0795\u0007G\u0002\u0002\u0795\u0796", - "\u0007P\u0002\u0002\u0796\u0797\u0007C\u0002\u0002\u0797\u0798\u0007", - "V\u0002\u0002\u0798\u0799\u0007G\u0002\u0002\u0799\u017a\u0003\u0002", - "\u0002\u0002\u079a\u079b\u0007E\u0002\u0002\u079b\u079c\u0007J\u0002", - "\u0002\u079c\u079d\u0007C\u0002\u0002\u079d\u079e\u0007P\u0002\u0002", - "\u079e\u079f\u0007I\u0002\u0002\u079f\u07a0\u0007G\u0002\u0002\u07a0", - "\u017c\u0003\u0002\u0002\u0002\u07a1\u07a2\u0007E\u0002\u0002\u07a2", - "\u07a3\u0007C\u0002\u0002\u07a3\u07a4\u0007U\u0002\u0002\u07a4\u07a5", - "\u0007E\u0002\u0002\u07a5\u07a6\u0007C\u0002\u0002\u07a6\u07a7\u0007", - "F\u0002\u0002\u07a7\u07a8\u0007G\u0002\u0002\u07a8\u017e\u0003\u0002", - "\u0002\u0002\u07a9\u07aa\u0007T\u0002\u0002\u07aa\u07ab\u0007G\u0002", - "\u0002\u07ab\u07ac\u0007U\u0002\u0002\u07ac\u07ad\u0007V\u0002\u0002", - "\u07ad\u07ae\u0007T\u0002\u0002\u07ae\u07af\u0007K\u0002\u0002\u07af", - "\u07b0\u0007E\u0002\u0002\u07b0\u07b1\u0007V\u0002\u0002\u07b1\u0180", - "\u0003\u0002\u0002\u0002\u07b2\u07b3\u0007E\u0002\u0002\u07b3\u07b4", - "\u0007N\u0002\u0002\u07b4\u07b5\u0007W\u0002\u0002\u07b5\u07b6\u0007", - "U\u0002\u0002\u07b6\u07b7\u0007V\u0002\u0002\u07b7\u07b8\u0007G\u0002", - "\u0002\u07b8\u07b9\u0007T\u0002\u0002\u07b9\u07ba\u0007G\u0002\u0002", - "\u07ba\u07bb\u0007F\u0002\u0002\u07bb\u0182\u0003\u0002\u0002\u0002", - "\u07bc\u07bd\u0007U\u0002\u0002\u07bd\u07be\u0007Q\u0002\u0002\u07be", - "\u07bf\u0007T\u0002\u0002\u07bf\u07c0\u0007V\u0002\u0002\u07c0\u07c1", - "\u0007G\u0002\u0002\u07c1\u07c2\u0007F\u0002\u0002\u07c2\u0184\u0003", - "\u0002\u0002\u0002\u07c3\u07c4\u0007R\u0002\u0002\u07c4\u07c5\u0007", - "W\u0002\u0002\u07c5\u07c6\u0007T\u0002\u0002\u07c6\u07c7\u0007I\u0002", - "\u0002\u07c7\u07c8\u0007G\u0002\u0002\u07c8\u0186\u0003\u0002\u0002", - "\u0002\u07c9\u07ca\u0007K\u0002\u0002\u07ca\u07cb\u0007P\u0002\u0002", - "\u07cb\u07cc\u0007R\u0002\u0002\u07cc\u07cd\u0007W\u0002\u0002\u07cd", - "\u07ce\u0007V\u0002\u0002\u07ce\u07cf\u0007H\u0002\u0002\u07cf\u07d0", - "\u0007Q\u0002\u0002\u07d0\u07d1\u0007T\u0002\u0002\u07d1\u07d2\u0007", - "O\u0002\u0002\u07d2\u07d3\u0007C\u0002\u0002\u07d3\u07d4\u0007V\u0002", - "\u0002\u07d4\u0188\u0003\u0002\u0002\u0002\u07d5\u07d6\u0007Q\u0002", - "\u0002\u07d6\u07d7\u0007W\u0002\u0002\u07d7\u07d8\u0007V\u0002\u0002", - "\u07d8\u07d9\u0007R\u0002\u0002\u07d9\u07da\u0007W\u0002\u0002\u07da", - "\u07db\u0007V\u0002\u0002\u07db\u07dc\u0007H\u0002\u0002\u07dc\u07dd", - "\u0007Q\u0002\u0002\u07dd\u07de\u0007T\u0002\u0002\u07de\u07df\u0007", - "O\u0002\u0002\u07df\u07e0\u0007C\u0002\u0002\u07e0\u07e1\u0007V\u0002", - "\u0002\u07e1\u018a\u0003\u0002\u0002\u0002\u07e2\u07e3\u0007F\u0002", - "\u0002\u07e3\u07e4\u0007C\u0002\u0002\u07e4\u07e5\u0007V\u0002\u0002", - "\u07e5\u07e6\u0007C\u0002\u0002\u07e6\u07e7\u0007D\u0002\u0002\u07e7", - "\u07e8\u0007C\u0002\u0002\u07e8\u07e9\u0007U\u0002\u0002\u07e9\u07ea", - "\u0007G\u0002\u0002\u07ea\u018c\u0003\u0002\u0002\u0002\u07eb\u07ec", - "\u0007F\u0002\u0002\u07ec\u07ed\u0007C\u0002\u0002\u07ed\u07ee\u0007", - "V\u0002\u0002\u07ee\u07ef\u0007C\u0002\u0002\u07ef\u07f0\u0007D\u0002", - "\u0002\u07f0\u07f1\u0007C\u0002\u0002\u07f1\u07f2\u0007U\u0002\u0002", - "\u07f2\u07f3\u0007G\u0002\u0002\u07f3\u07f4\u0007U\u0002\u0002\u07f4", - "\u018e\u0003\u0002\u0002\u0002\u07f5\u07f6\u0007F\u0002\u0002\u07f6", - "\u07f7\u0007H\u0002\u0002\u07f7\u07f8\u0007U\u0002\u0002\u07f8\u0190", - "\u0003\u0002\u0002\u0002\u07f9\u07fa\u0007V\u0002\u0002\u07fa\u07fb", - "\u0007T\u0002\u0002\u07fb\u07fc\u0007W\u0002\u0002\u07fc\u07fd\u0007", - "P\u0002\u0002\u07fd\u07fe\u0007E\u0002\u0002\u07fe\u07ff\u0007C\u0002", - "\u0002\u07ff\u0800\u0007V\u0002\u0002\u0800\u0801\u0007G\u0002\u0002", - "\u0801\u0192\u0003\u0002\u0002\u0002\u0802\u0803\u0007C\u0002\u0002", - "\u0803\u0804\u0007P\u0002\u0002\u0804\u0805\u0007C\u0002\u0002\u0805", - "\u0806\u0007N\u0002\u0002\u0806\u0807\u0007[\u0002\u0002\u0807\u0808", - "\u0007\\\u0002\u0002\u0808\u0809\u0007G\u0002\u0002\u0809\u0194\u0003", - "\u0002\u0002\u0002\u080a\u080b\u0007E\u0002\u0002\u080b\u080c\u0007", - "Q\u0002\u0002\u080c\u080d\u0007O\u0002\u0002\u080d\u080e\u0007R\u0002", - "\u0002\u080e\u080f\u0007W\u0002\u0002\u080f\u0810\u0007V\u0002\u0002", - "\u0810\u0811\u0007G\u0002\u0002\u0811\u0196\u0003\u0002\u0002\u0002", - "\u0812\u0813\u0007N\u0002\u0002\u0813\u0814\u0007K\u0002\u0002\u0814", - "\u0815\u0007U\u0002\u0002\u0815\u0816\u0007V\u0002\u0002\u0816\u0198", - "\u0003\u0002\u0002\u0002\u0817\u0818\u0007U\u0002\u0002\u0818\u0819", - "\u0007V\u0002\u0002\u0819\u081a\u0007C\u0002\u0002\u081a\u081b\u0007", - "V\u0002\u0002\u081b\u081c\u0007K\u0002\u0002\u081c\u081d\u0007U\u0002", - "\u0002\u081d\u081e\u0007V\u0002\u0002\u081e\u081f\u0007K\u0002\u0002", - "\u081f\u0820\u0007E\u0002\u0002\u0820\u0821\u0007U\u0002\u0002\u0821", - "\u019a\u0003\u0002\u0002\u0002\u0822\u0823\u0007R\u0002\u0002\u0823", - "\u0824\u0007C\u0002\u0002\u0824\u0825\u0007T\u0002\u0002\u0825\u0826", - "\u0007V\u0002\u0002\u0826\u0827\u0007K\u0002\u0002\u0827\u0828\u0007", - "V\u0002\u0002\u0828\u0829\u0007K\u0002\u0002\u0829\u082a\u0007Q\u0002", - "\u0002\u082a\u082b\u0007P\u0002\u0002\u082b\u082c\u0007G\u0002\u0002", - "\u082c\u082d\u0007F\u0002\u0002\u082d\u019c\u0003\u0002\u0002\u0002", - "\u082e\u082f\u0007G\u0002\u0002\u082f\u0830\u0007Z\u0002\u0002\u0830", - "\u0831\u0007V\u0002\u0002\u0831\u0832\u0007G\u0002\u0002\u0832\u0833", - "\u0007T\u0002\u0002\u0833\u0834\u0007P\u0002\u0002\u0834\u0835\u0007", - "C\u0002\u0002\u0835\u0836\u0007N\u0002\u0002\u0836\u019e\u0003\u0002", - "\u0002\u0002\u0837\u0838\u0007F\u0002\u0002\u0838\u0839\u0007G\u0002", - "\u0002\u0839\u083a\u0007H\u0002\u0002\u083a\u083b\u0007K\u0002\u0002", - "\u083b\u083c\u0007P\u0002\u0002\u083c\u083d\u0007G\u0002\u0002\u083d", - "\u083e\u0007F\u0002\u0002\u083e\u01a0\u0003\u0002\u0002\u0002\u083f", - "\u0840\u0007T\u0002\u0002\u0840\u0841\u0007G\u0002\u0002\u0841\u0842", - "\u0007X\u0002\u0002\u0842\u0843\u0007Q\u0002\u0002\u0843\u0844\u0007", - "M\u0002\u0002\u0844\u0845\u0007G\u0002\u0002\u0845\u01a2\u0003\u0002", - "\u0002\u0002\u0846\u0847\u0007I\u0002\u0002\u0847\u0848\u0007T\u0002", - "\u0002\u0848\u0849\u0007C\u0002\u0002\u0849\u084a\u0007P\u0002\u0002", - "\u084a\u084b\u0007V\u0002\u0002\u084b\u01a4\u0003\u0002\u0002\u0002", - "\u084c\u084d\u0007N\u0002\u0002\u084d\u084e\u0007Q\u0002\u0002\u084e", - "\u084f\u0007E\u0002\u0002\u084f\u0850\u0007M\u0002\u0002\u0850\u01a6", - "\u0003\u0002\u0002\u0002\u0851\u0852\u0007W\u0002\u0002\u0852\u0853", - "\u0007P\u0002\u0002\u0853\u0854\u0007N\u0002\u0002\u0854\u0855\u0007", - "Q\u0002\u0002\u0855\u0856\u0007E\u0002\u0002\u0856\u0857\u0007M\u0002", - "\u0002\u0857\u01a8\u0003\u0002\u0002\u0002\u0858\u0859\u0007O\u0002", - "\u0002\u0859\u085a\u0007U\u0002\u0002\u085a\u085b\u0007E\u0002\u0002", - "\u085b\u085c\u0007M\u0002\u0002\u085c\u01aa\u0003\u0002\u0002\u0002", - "\u085d\u085e\u0007T\u0002\u0002\u085e\u085f\u0007G\u0002\u0002\u085f", - "\u0860\u0007R\u0002\u0002\u0860\u0861\u0007C\u0002\u0002\u0861\u0862", - "\u0007K\u0002\u0002\u0862\u0863\u0007T\u0002\u0002\u0863\u01ac\u0003", - "\u0002\u0002\u0002\u0864\u0865\u0007T\u0002\u0002\u0865\u0866\u0007", - "G\u0002\u0002\u0866\u0867\u0007E\u0002\u0002\u0867\u0868\u0007Q\u0002", - "\u0002\u0868\u0869\u0007X\u0002\u0002\u0869\u086a\u0007G\u0002\u0002", - "\u086a\u086b\u0007T\u0002\u0002\u086b\u01ae\u0003\u0002\u0002\u0002", - "\u086c\u086d\u0007G\u0002\u0002\u086d\u086e\u0007Z\u0002\u0002\u086e", - "\u086f\u0007R\u0002\u0002\u086f\u0870\u0007Q\u0002\u0002\u0870\u0871", - "\u0007T\u0002\u0002\u0871\u0872\u0007V\u0002\u0002\u0872\u01b0\u0003", - "\u0002\u0002\u0002\u0873\u0874\u0007K\u0002\u0002\u0874\u0875\u0007", - "O\u0002\u0002\u0875\u0876\u0007R\u0002\u0002\u0876\u0877\u0007Q\u0002", - "\u0002\u0877\u0878\u0007T\u0002\u0002\u0878\u0879\u0007V\u0002\u0002", - "\u0879\u01b2\u0003\u0002\u0002\u0002\u087a\u087b\u0007N\u0002\u0002", - "\u087b\u087c\u0007Q\u0002\u0002\u087c\u087d\u0007C\u0002\u0002\u087d", - "\u087e\u0007F\u0002\u0002\u087e\u01b4\u0003\u0002\u0002\u0002\u087f", - "\u0880\u0007T\u0002\u0002\u0880\u0881\u0007Q\u0002\u0002\u0881\u0882", - "\u0007N\u0002\u0002\u0882\u0883\u0007G\u0002\u0002\u0883\u01b6\u0003", - "\u0002\u0002\u0002\u0884\u0885\u0007T\u0002\u0002\u0885\u0886\u0007", - "Q\u0002\u0002\u0886\u0887\u0007N\u0002\u0002\u0887\u0888\u0007G\u0002", - "\u0002\u0888\u0889\u0007U\u0002\u0002\u0889\u01b8\u0003\u0002\u0002", - "\u0002\u088a\u088b\u0007E\u0002\u0002\u088b\u088c\u0007Q\u0002\u0002", - "\u088c\u088d\u0007O\u0002\u0002\u088d\u088e\u0007R\u0002\u0002\u088e", - "\u088f\u0007C\u0002\u0002\u088f\u0890\u0007E\u0002\u0002\u0890\u0891", - "\u0007V\u0002\u0002\u0891\u0892\u0007K\u0002\u0002\u0892\u0893\u0007", - "Q\u0002\u0002\u0893\u0894\u0007P\u0002\u0002\u0894\u0895\u0007U\u0002", - "\u0002\u0895\u01ba\u0003\u0002\u0002\u0002\u0896\u0897\u0007R\u0002", - "\u0002\u0897\u0898\u0007T\u0002\u0002\u0898\u0899\u0007K\u0002\u0002", - "\u0899\u089a\u0007P\u0002\u0002\u089a\u089b\u0007E\u0002\u0002\u089b", - "\u089c\u0007K\u0002\u0002\u089c\u089d\u0007R\u0002\u0002\u089d\u089e", - "\u0007C\u0002\u0002\u089e\u089f\u0007N\u0002\u0002\u089f\u08a0\u0007", - "U\u0002\u0002\u08a0\u01bc\u0003\u0002\u0002\u0002\u08a1\u08a2\u0007", - "V\u0002\u0002\u08a2\u08a3\u0007T\u0002\u0002\u08a3\u08a4\u0007C\u0002", - "\u0002\u08a4\u08a5\u0007P\u0002\u0002\u08a5\u08a6\u0007U\u0002\u0002", - "\u08a6\u08a7\u0007C\u0002\u0002\u08a7\u08a8\u0007E\u0002\u0002\u08a8", - "\u08a9\u0007V\u0002\u0002\u08a9\u08aa\u0007K\u0002\u0002\u08aa\u08ab", - "\u0007Q\u0002\u0002\u08ab\u08ac\u0007P\u0002\u0002\u08ac\u08ad\u0007", - "U\u0002\u0002\u08ad\u01be\u0003\u0002\u0002\u0002\u08ae\u08af\u0007", - "K\u0002\u0002\u08af\u08b0\u0007P\u0002\u0002\u08b0\u08b1\u0007F\u0002", - "\u0002\u08b1\u08b2\u0007G\u0002\u0002\u08b2\u08b3\u0007Z\u0002\u0002", - "\u08b3\u01c0\u0003\u0002\u0002\u0002\u08b4\u08b5\u0007K\u0002\u0002", - "\u08b5\u08b6\u0007P\u0002\u0002\u08b6\u08b7\u0007F\u0002\u0002\u08b7", - "\u08b8\u0007G\u0002\u0002\u08b8\u08b9\u0007Z\u0002\u0002\u08b9\u08ba", - "\u0007G\u0002\u0002\u08ba\u08bb\u0007U\u0002\u0002\u08bb\u01c2\u0003", - "\u0002\u0002\u0002\u08bc\u08bd\u0007N\u0002\u0002\u08bd\u08be\u0007", - "Q\u0002\u0002\u08be\u08bf\u0007E\u0002\u0002\u08bf\u08c0\u0007M\u0002", - "\u0002\u08c0\u08c1\u0007U\u0002\u0002\u08c1\u01c4\u0003\u0002\u0002", - "\u0002\u08c2\u08c3\u0007Q\u0002\u0002\u08c3\u08c4\u0007R\u0002\u0002", - "\u08c4\u08c5\u0007V\u0002\u0002\u08c5\u08c6\u0007K\u0002\u0002\u08c6", - "\u08c7\u0007Q\u0002\u0002\u08c7\u08c8\u0007P\u0002\u0002\u08c8\u01c6", - "\u0003\u0002\u0002\u0002\u08c9\u08ca\u0007C\u0002\u0002\u08ca\u08cb", - "\u0007P\u0002\u0002\u08cb\u08cc\u0007V\u0002\u0002\u08cc\u08cd\u0007", - "K\u0002\u0002\u08cd\u01c8\u0003\u0002\u0002\u0002\u08ce\u08cf\u0007", - "N\u0002\u0002\u08cf\u08d0\u0007Q\u0002\u0002\u08d0\u08d1\u0007E\u0002", - "\u0002\u08d1\u08d2\u0007C\u0002\u0002\u08d2\u08d3\u0007N\u0002\u0002", - "\u08d3\u01ca\u0003\u0002\u0002\u0002\u08d4\u08d5\u0007K\u0002\u0002", - "\u08d5\u08d6\u0007P\u0002\u0002\u08d6\u08d7\u0007R\u0002\u0002\u08d7", - "\u08d8\u0007C\u0002\u0002\u08d8\u08d9\u0007V\u0002\u0002\u08d9\u08da", - "\u0007J\u0002\u0002\u08da\u01cc\u0003\u0002\u0002\u0002\u08db\u08dc", - "\u0007Y\u0002\u0002\u08dc\u08dd\u0007C\u0002\u0002\u08dd\u08de\u0007", - "V\u0002\u0002\u08de\u08df\u0007G\u0002\u0002\u08df\u08e0\u0007T\u0002", - "\u0002\u08e0\u08e1\u0007O\u0002\u0002\u08e1\u08e2\u0007C\u0002\u0002", - "\u08e2\u08e3\u0007T\u0002\u0002\u08e3\u08e4\u0007M\u0002\u0002\u08e4", - "\u01ce\u0003\u0002\u0002\u0002\u08e5\u08e6\u0007W\u0002\u0002\u08e6", - "\u08e7\u0007P\u0002\u0002\u08e7\u08e8\u0007P\u0002\u0002\u08e8\u08e9", - "\u0007G\u0002\u0002\u08e9\u08ea\u0007U\u0002\u0002\u08ea\u08eb\u0007", - "V\u0002\u0002\u08eb\u01d0\u0003\u0002\u0002\u0002\u08ec\u08ed\u0007", - "O\u0002\u0002\u08ed\u08ee\u0007C\u0002\u0002\u08ee\u08ef\u0007V\u0002", - "\u0002\u08ef\u08f0\u0007E\u0002\u0002\u08f0\u08f1\u0007J\u0002\u0002", - "\u08f1\u08f2\u0007a\u0002\u0002\u08f2\u08f3\u0007T\u0002\u0002\u08f3", - "\u08f4\u0007G\u0002\u0002\u08f4\u08f5\u0007E\u0002\u0002\u08f5\u08f6", - "\u0007Q\u0002\u0002\u08f6\u08f7\u0007I\u0002\u0002\u08f7\u08f8\u0007", - "P\u0002\u0002\u08f8\u08f9\u0007K\u0002\u0002\u08f9\u08fa\u0007\\\u0002", - "\u0002\u08fa\u08fb\u0007G\u0002\u0002\u08fb\u01d2\u0003\u0002\u0002", - "\u0002\u08fc\u08fd\u0007O\u0002\u0002\u08fd\u08fe\u0007G\u0002\u0002", - "\u08fe\u08ff\u0007C\u0002\u0002\u08ff\u0900\u0007U\u0002\u0002\u0900", - "\u0901\u0007W\u0002\u0002\u0901\u0902\u0007T\u0002\u0002\u0902\u0903", - "\u0007G\u0002\u0002\u0903\u0904\u0007U\u0002\u0002\u0904\u01d4\u0003", - "\u0002\u0002\u0002\u0905\u0906\u0007Q\u0002\u0002\u0906\u0907\u0007", - "P\u0002\u0002\u0907\u0908\u0007G\u0002\u0002\u0908\u01d6\u0003\u0002", - "\u0002\u0002\u0909\u090a\u0007R\u0002\u0002\u090a\u090b\u0007G\u0002", - "\u0002\u090b\u090c\u0007T\u0002\u0002\u090c\u01d8\u0003\u0002\u0002", - "\u0002\u090d\u090e\u0007O\u0002\u0002\u090e\u090f\u0007C\u0002\u0002", - "\u090f\u0910\u0007V\u0002\u0002\u0910\u0911\u0007E\u0002\u0002\u0911", - "\u0912\u0007J\u0002\u0002\u0912\u01da\u0003\u0002\u0002\u0002\u0913", - "\u0914\u0007U\u0002\u0002\u0914\u0915\u0007M\u0002\u0002\u0915\u0916", - "\u0007K\u0002\u0002\u0916\u0917\u0007R\u0002\u0002\u0917\u0918\u0007", - "3\u0002\u0002\u0918\u01dc\u0003\u0002\u0002\u0002\u0919\u091a\u0007", - "P\u0002\u0002\u091a\u091b\u0007G\u0002\u0002\u091b\u091c\u0007Z\u0002", - "\u0002\u091c\u091d\u0007V\u0002\u0002\u091d\u01de\u0003\u0002\u0002", - "\u0002\u091e\u091f\u0007R\u0002\u0002\u091f\u0920\u0007C\u0002\u0002", - "\u0920\u0921\u0007U\u0002\u0002\u0921\u0922\u0007V\u0002\u0002\u0922", - "\u01e0\u0003\u0002\u0002\u0002\u0923\u0924\u0007R\u0002\u0002\u0924", - "\u0925\u0007C\u0002\u0002\u0925\u0926\u0007V\u0002\u0002\u0926\u0927", - "\u0007V\u0002\u0002\u0927\u0928\u0007G\u0002\u0002\u0928\u0929\u0007", - "T\u0002\u0002\u0929\u092a\u0007P\u0002\u0002\u092a\u01e2\u0003\u0002", - "\u0002\u0002\u092b\u092c\u0007Y\u0002\u0002\u092c\u092d\u0007K\u0002", - "\u0002\u092d\u092e\u0007V\u0002\u0002\u092e\u092f\u0007J\u0002\u0002", - "\u092f\u0930\u0007K\u0002\u0002\u0930\u0931\u0007P\u0002\u0002\u0931", - "\u01e4\u0003\u0002\u0002\u0002\u0932\u0933\u0007F\u0002\u0002\u0933", - "\u0934\u0007G\u0002\u0002\u0934\u0935\u0007H\u0002\u0002\u0935\u0936", - "\u0007K\u0002\u0002\u0936\u0937\u0007P\u0002\u0002\u0937\u0938\u0007", - "G\u0002\u0002\u0938\u01e6\u0003\u0002\u0002\u0002\u0939\u093a\u0007", - "D\u0002\u0002\u093a\u093b\u0007K\u0002\u0002\u093b\u093c\u0007I\u0002", - "\u0002\u093c\u093d\u0007K\u0002\u0002\u093d\u093e\u0007P\u0002\u0002", - "\u093e\u093f\u0007V\u0002\u0002\u093f\u0940\u0007a\u0002\u0002\u0940", - "\u0941\u0007N\u0002\u0002\u0941\u0942\u0007K\u0002\u0002\u0942\u0943", - "\u0007V\u0002\u0002\u0943\u0944\u0007G\u0002\u0002\u0944\u0945\u0007", - "T\u0002\u0002\u0945\u0946\u0007C\u0002\u0002\u0946\u0947\u0007N\u0002", - "\u0002\u0947\u01e8\u0003\u0002\u0002\u0002\u0948\u0949\u0007U\u0002", - "\u0002\u0949\u094a\u0007O\u0002\u0002\u094a\u094b\u0007C\u0002\u0002", - "\u094b\u094c\u0007N\u0002\u0002\u094c\u094d\u0007N\u0002\u0002\u094d", - "\u094e\u0007K\u0002\u0002\u094e\u094f\u0007P\u0002\u0002\u094f\u0950", - "\u0007V\u0002\u0002\u0950\u0951\u0007a\u0002\u0002\u0951\u0952\u0007", - "N\u0002\u0002\u0952\u0953\u0007K\u0002\u0002\u0953\u0954\u0007V\u0002", - "\u0002\u0954\u0955\u0007G\u0002\u0002\u0955\u0956\u0007T\u0002\u0002", - "\u0956\u0957\u0007C\u0002\u0002\u0957\u0958\u0007N\u0002\u0002\u0958", - "\u01ea\u0003\u0002\u0002\u0002\u0959\u095a\u0007V\u0002\u0002\u095a", - "\u095b\u0007K\u0002\u0002\u095b\u095c\u0007P\u0002\u0002\u095c\u095d", - "\u0007[\u0002\u0002\u095d\u095e\u0007K\u0002\u0002\u095e\u095f\u0007", - "P\u0002\u0002\u095f\u0960\u0007V\u0002\u0002\u0960\u0961\u0007a\u0002", - "\u0002\u0961\u0962\u0007N\u0002\u0002\u0962\u0963\u0007K\u0002\u0002", - "\u0963\u0964\u0007V\u0002\u0002\u0964\u0965\u0007G\u0002\u0002\u0965", - "\u0966\u0007T\u0002\u0002\u0966\u0967\u0007C\u0002\u0002\u0967\u0968", - "\u0007N\u0002\u0002\u0968\u01ec\u0003\u0002\u0002\u0002\u0969\u096a", - "\u0007K\u0002\u0002\u096a\u096b\u0007P\u0002\u0002\u096b\u096c\u0007", - "V\u0002\u0002\u096c\u096d\u0007G\u0002\u0002\u096d\u096e\u0007I\u0002", - "\u0002\u096e\u096f\u0007G\u0002\u0002\u096f\u0970\u0007T\u0002\u0002", - "\u0970\u0971\u0007a\u0002\u0002\u0971\u0972\u0007X\u0002\u0002\u0972", - "\u0973\u0007C\u0002\u0002\u0973\u0974\u0007N\u0002\u0002\u0974\u0975", - "\u0007W\u0002\u0002\u0975\u0976\u0007G\u0002\u0002\u0976\u01ee\u0003", - "\u0002\u0002\u0002\u0977\u0978\u0007F\u0002\u0002\u0978\u0979\u0007", - "G\u0002\u0002\u0979\u097a\u0007E\u0002\u0002\u097a\u097b\u0007K\u0002", - "\u0002\u097b\u097c\u0007O\u0002\u0002\u097c\u097d\u0007C\u0002\u0002", - "\u097d\u097e\u0007N\u0002\u0002\u097e\u097f\u0007a\u0002\u0002\u097f", - "\u0980\u0007X\u0002\u0002\u0980\u0981\u0007C\u0002\u0002\u0981\u0982", - "\u0007N\u0002\u0002\u0982\u0983\u0007W\u0002\u0002\u0983\u0984\u0007", - "G\u0002\u0002\u0984\u01f0\u0003\u0002\u0002\u0002\u0985\u0986\u0007", - "F\u0002\u0002\u0986\u0987\u0007Q\u0002\u0002\u0987\u0988\u0007W\u0002", - "\u0002\u0988\u0989\u0007D\u0002\u0002\u0989\u098a\u0007N\u0002\u0002", - "\u098a\u098b\u0007G\u0002\u0002\u098b\u098c\u0007a\u0002\u0002\u098c", - "\u098d\u0007N\u0002\u0002\u098d\u098e\u0007K\u0002\u0002\u098e\u098f", - "\u0007V\u0002\u0002\u098f\u0990\u0007G\u0002\u0002\u0990\u0991\u0007", - "T\u0002\u0002\u0991\u0992\u0007C\u0002\u0002\u0992\u0993\u0007N\u0002", - "\u0002\u0993\u01f2\u0003\u0002\u0002\u0002\u0994\u0995\u0007D\u0002", - "\u0002\u0995\u0996\u0007K\u0002\u0002\u0996\u0997\u0007I\u0002\u0002", - "\u0997\u0998\u0007F\u0002\u0002\u0998\u0999\u0007G\u0002\u0002\u0999", - "\u099a\u0007E\u0002\u0002\u099a\u099b\u0007K\u0002\u0002\u099b\u099c", - "\u0007O\u0002\u0002\u099c\u099d\u0007C\u0002\u0002\u099d\u099e\u0007", - "N\u0002\u0002\u099e\u099f\u0007a\u0002\u0002\u099f\u09a0\u0007N\u0002", - "\u0002\u09a0\u09a1\u0007K\u0002\u0002\u09a1\u09a2\u0007V\u0002\u0002", - "\u09a2\u09a3\u0007G\u0002\u0002\u09a3\u09a4\u0007T\u0002\u0002\u09a4", - "\u09a5\u0007C\u0002\u0002\u09a5\u09a6\u0007N\u0002\u0002\u09a6\u01f4", - "\u0003\u0002\u0002\u0002\u09a7\u09a8\u0007K\u0002\u0002\u09a8\u09a9", - "\u0007F\u0002\u0002\u09a9\u09aa\u0007G\u0002\u0002\u09aa\u09ab\u0007", - "P\u0002\u0002\u09ab\u09ac\u0007V\u0002\u0002\u09ac\u09ad\u0007K\u0002", - "\u0002\u09ad\u09ae\u0007H\u0002\u0002\u09ae\u09af\u0007K\u0002\u0002", - "\u09af\u09b0\u0007G\u0002\u0002\u09b0\u09b1\u0007T\u0002\u0002\u09b1", - "\u01f6\u0003\u0002\u0002\u0002\u09b2\u09b3\u0007D\u0002\u0002\u09b3", - "\u09b4\u0007C\u0002\u0002\u09b4\u09b5\u0007E\u0002\u0002\u09b5\u09b6", - "\u0007M\u0002\u0002\u09b6\u09b7\u0007S\u0002\u0002\u09b7\u09b8\u0007", - "W\u0002\u0002\u09b8\u09b9\u0007Q\u0002\u0002\u09b9\u09ba\u0007V\u0002", - "\u0002\u09ba\u09bb\u0007G\u0002\u0002\u09bb\u09bc\u0007F\u0002\u0002", - "\u09bc\u09bd\u0007a\u0002\u0002\u09bd\u09be\u0007K\u0002\u0002\u09be", - "\u09bf\u0007F\u0002\u0002\u09bf\u09c0\u0007G\u0002\u0002\u09c0\u09c1", - "\u0007P\u0002\u0002\u09c1\u09c2\u0007V\u0002\u0002\u09c2\u09c3\u0007", - "K\u0002\u0002\u09c3\u09c4\u0007H\u0002\u0002\u09c4\u09c5\u0007K\u0002", - "\u0002\u09c5\u09c6\u0007G\u0002\u0002\u09c6\u09c7\u0007T\u0002\u0002", - "\u09c7\u01f8\u0003\u0002\u0002\u0002\u09c8\u09c9\u0007U\u0002\u0002", - "\u09c9\u09ca\u0007K\u0002\u0002\u09ca\u09cb\u0007O\u0002\u0002\u09cb", - "\u09cc\u0007R\u0002\u0002\u09cc\u09cd\u0007N\u0002\u0002\u09cd\u09ce", - "\u0007G\u0002\u0002\u09ce\u09cf\u0007a\u0002\u0002\u09cf\u09d0\u0007", - "E\u0002\u0002\u09d0\u09d1\u0007Q\u0002\u0002\u09d1\u09d2\u0007O\u0002", - "\u0002\u09d2\u09d3\u0007O\u0002\u0002\u09d3\u09d4\u0007G\u0002\u0002", - "\u09d4\u09d5\u0007P\u0002\u0002\u09d5\u09d6\u0007V\u0002\u0002\u09d6", - "\u01fa\u0003\u0002\u0002\u0002\u09d7\u09d8\u0007D\u0002\u0002\u09d8", - "\u09d9\u0007T\u0002\u0002\u09d9\u09da\u0007C\u0002\u0002\u09da\u09db", - "\u0007E\u0002\u0002\u09db\u09dc\u0007M\u0002\u0002\u09dc\u09dd\u0007", - "G\u0002\u0002\u09dd\u09de\u0007V\u0002\u0002\u09de\u09df\u0007G\u0002", - "\u0002\u09df\u09e0\u0007F\u0002\u0002\u09e0\u09e1\u0007a\u0002\u0002", - "\u09e1\u09e2\u0007G\u0002\u0002\u09e2\u09e3\u0007O\u0002\u0002\u09e3", - "\u09e4\u0007R\u0002\u0002\u09e4\u09e5\u0007V\u0002\u0002\u09e5\u09e6", - "\u0007[\u0002\u0002\u09e6\u09e7\u0007a\u0002\u0002\u09e7\u09e8\u0007", - "E\u0002\u0002\u09e8\u09e9\u0007Q\u0002\u0002\u09e9\u09ea\u0007O\u0002", - "\u0002\u09ea\u09eb\u0007O\u0002\u0002\u09eb\u09ec\u0007G\u0002\u0002", - "\u09ec\u09ed\u0007P\u0002\u0002\u09ed\u09ee\u0007V\u0002\u0002\u09ee", - "\u01fc\u0003\u0002\u0002\u0002\u09ef\u09f0\u0007D\u0002\u0002\u09f0", - "\u09f1\u0007T\u0002\u0002\u09f1\u09f2\u0007C\u0002\u0002\u09f2\u09f3", - "\u0007E\u0002\u0002\u09f3\u09f4\u0007M\u0002\u0002\u09f4\u09f5\u0007", - "G\u0002\u0002\u09f5\u09f6\u0007V\u0002\u0002\u09f6\u09f7\u0007G\u0002", - "\u0002\u09f7\u09f8\u0007F\u0002\u0002\u09f8\u09f9\u0007a\u0002\u0002", - "\u09f9\u09fa\u0007E\u0002\u0002\u09fa\u09fb\u0007Q\u0002\u0002\u09fb", - "\u09fc\u0007O\u0002\u0002\u09fc\u09fd\u0007O\u0002\u0002\u09fd\u09fe", - "\u0007G\u0002\u0002\u09fe\u09ff\u0007P\u0002\u0002\u09ff\u0a00\u0007", - "V\u0002\u0002\u0a00\u01fe\u0003\u0002\u0002\u0002\u0a01\u0a02\u0007", - "Y\u0002\u0002\u0a02\u0a03\u0007U\u0002\u0002\u0a03\u0200\u0003\u0002", - "\u0002\u0002\u0a04\u0a05\u0007W\u0002\u0002\u0a05\u0a06\u0007P\u0002", - "\u0002\u0a06\u0a07\u0007T\u0002\u0002\u0a07\u0a08\u0007G\u0002\u0002", - "\u0a08\u0a09\u0007E\u0002\u0002\u0a09\u0a0a\u0007Q\u0002\u0002\u0a0a", - "\u0a0b\u0007I\u0002\u0002\u0a0b\u0a0c\u0007P\u0002\u0002\u0a0c\u0a0d", - "\u0007K\u0002\u0002\u0a0d\u0a0e\u0007\\\u0002\u0002\u0a0e\u0a0f\u0007", - "G\u0002\u0002\u0a0f\u0a10\u0007F\u0002\u0002\u0a10\u0202\u0003\u0002", - "\u0002\u0002\u0a11\u0a13\u0007b\u0002\u0002\u0a12\u0a14\n\u0004\u0002", - "\u0002\u0a13\u0a12\u0003\u0002\u0002\u0002\u0a14\u0a15\u0003\u0002\u0002", - "\u0002\u0a15\u0a13\u0003\u0002\u0002\u0002\u0a15\u0a16\u0003\u0002\u0002", - "\u0002\u0a16\u0a17\u0003\u0002\u0002\u0002\u0a17\u0a18\u0007b\u0002", - "\u0002\u0a18\u0204\u0003\u0002\u0002\u0002\u0a19\u0a1b\u0007$\u0002", - "\u0002\u0a1a\u0a1c\n\u0005\u0002\u0002\u0a1b\u0a1a\u0003\u0002\u0002", - "\u0002\u0a1c\u0a1d\u0003\u0002\u0002\u0002\u0a1d\u0a1b\u0003\u0002\u0002", - "\u0002\u0a1d\u0a1e\u0003\u0002\u0002\u0002\u0a1e\u0a1f\u0003\u0002\u0002", - "\u0002\u0a1f\u0a20\u0007$\u0002\u0002\u0a20\u0206\u0003\u0002\u0002", - "\u0002\u0a21\u0a22\u00070\u0002\u0002\u0a22\u0a23\u0005\u0265\u0133", - "\u0002\u0a23\u0208\u0003\u0002\u0002\u0002\u0a24\u0a25\u0005\u0265\u0133", - "\u0002\u0a25\u020a\u0003\u0002\u0002\u0002\u0a26\u0a27\u0007U\u0002", - "\u0002\u0a27\u0a28\u0007[\u0002\u0002\u0a28\u0a29\u0007U\u0002\u0002", - "\u0a29\u0a2a\u0007V\u0002\u0002\u0a2a\u0a2b\u0007G\u0002\u0002\u0a2b", - "\u0a2c\u0007O\u0002\u0002\u0a2c\u020c\u0003\u0002\u0002\u0002\u0a2d", - "\u0a2e\u0007U\u0002\u0002\u0a2e\u0a2f\u0007V\u0002\u0002\u0a2f\u0a30", - "\u0007T\u0002\u0002\u0a30\u0a31\u0007K\u0002\u0002\u0a31\u0a32\u0007", - "P\u0002\u0002\u0a32\u0a33\u0007I\u0002\u0002\u0a33\u020e\u0003\u0002", - "\u0002\u0002\u0a34\u0a35\u0007C\u0002\u0002\u0a35\u0a36\u0007T\u0002", - "\u0002\u0a36\u0a37\u0007T\u0002\u0002\u0a37\u0a38\u0007C\u0002\u0002", - "\u0a38\u0a39\u0007[\u0002\u0002\u0a39\u0210\u0003\u0002\u0002\u0002", - "\u0a3a\u0a3b\u0007O\u0002\u0002\u0a3b\u0a3c\u0007C\u0002\u0002\u0a3c", - "\u0a3d\u0007R\u0002\u0002\u0a3d\u0212\u0003\u0002\u0002\u0002\u0a3e", - "\u0a3f\u0007E\u0002\u0002\u0a3f\u0a40\u0007J\u0002\u0002\u0a40\u0a41", - "\u0007C\u0002\u0002\u0a41\u0a42\u0007T\u0002\u0002\u0a42\u0214\u0003", - "\u0002\u0002\u0002\u0a43\u0a44\u0007X\u0002\u0002\u0a44\u0a45\u0007", - "C\u0002\u0002\u0a45\u0a46\u0007T\u0002\u0002\u0a46\u0a47\u0007E\u0002", - "\u0002\u0a47\u0a48\u0007J\u0002\u0002\u0a48\u0a49\u0007C\u0002\u0002", - "\u0a49\u0a4a\u0007T\u0002\u0002\u0a4a\u0216\u0003\u0002\u0002\u0002", - "\u0a4b\u0a4c\u0007D\u0002\u0002\u0a4c\u0a4d\u0007K\u0002\u0002\u0a4d", - "\u0a4e\u0007P\u0002\u0002\u0a4e\u0a4f\u0007C\u0002\u0002\u0a4f\u0a50", - "\u0007T\u0002\u0002\u0a50\u0a51\u0007[\u0002\u0002\u0a51\u0218\u0003", - "\u0002\u0002\u0002\u0a52\u0a53\u0007X\u0002\u0002\u0a53\u0a54\u0007", - "C\u0002\u0002\u0a54\u0a55\u0007T\u0002\u0002\u0a55\u0a56\u0007D\u0002", - "\u0002\u0a56\u0a57\u0007K\u0002\u0002\u0a57\u0a58\u0007P\u0002\u0002", - "\u0a58\u0a59\u0007C\u0002\u0002\u0a59\u0a5a\u0007T\u0002\u0002\u0a5a", - "\u0a5b\u0007[\u0002\u0002\u0a5b\u021a\u0003\u0002\u0002\u0002\u0a5c", - "\u0a5d\u0007D\u0002\u0002\u0a5d\u0a5e\u0007[\u0002\u0002\u0a5e\u0a5f", - "\u0007V\u0002\u0002\u0a5f\u0a60\u0007G\u0002\u0002\u0a60\u0a61\u0007", - "U\u0002\u0002\u0a61\u021c\u0003\u0002\u0002\u0002\u0a62\u0a63\u0007", - "F\u0002\u0002\u0a63\u0a64\u0007G\u0002\u0002\u0a64\u0a65\u0007E\u0002", - "\u0002\u0a65\u0a66\u0007K\u0002\u0002\u0a66\u0a67\u0007O\u0002\u0002", - "\u0a67\u0a68\u0007C\u0002\u0002\u0a68\u0a69\u0007N\u0002\u0002\u0a69", - "\u021e\u0003\u0002\u0002\u0002\u0a6a\u0a6b\u0007V\u0002\u0002\u0a6b", - "\u0a6c\u0007K\u0002\u0002\u0a6c\u0a6d\u0007P\u0002\u0002\u0a6d\u0a6e", - "\u0007[\u0002\u0002\u0a6e\u0a6f\u0007K\u0002\u0002\u0a6f\u0a70\u0007", - "P\u0002\u0002\u0a70\u0a71\u0007V\u0002\u0002\u0a71\u0220\u0003\u0002", - "\u0002\u0002\u0a72\u0a73\u0007U\u0002\u0002\u0a73\u0a74\u0007O\u0002", - "\u0002\u0a74\u0a75\u0007C\u0002\u0002\u0a75\u0a76\u0007N\u0002\u0002", - "\u0a76\u0a77\u0007N\u0002\u0002\u0a77\u0a78\u0007K\u0002\u0002\u0a78", - "\u0a79\u0007P\u0002\u0002\u0a79\u0a7a\u0007V\u0002\u0002\u0a7a\u0222", - "\u0003\u0002\u0002\u0002\u0a7b\u0a7c\u0007K\u0002\u0002\u0a7c\u0a7d", - "\u0007P\u0002\u0002\u0a7d\u0a7e\u0007V\u0002\u0002\u0a7e\u0224\u0003", - "\u0002\u0002\u0002\u0a7f\u0a80\u0007D\u0002\u0002\u0a80\u0a81\u0007", - "K\u0002\u0002\u0a81\u0a82\u0007I\u0002\u0002\u0a82\u0a83\u0007K\u0002", - "\u0002\u0a83\u0a84\u0007P\u0002\u0002\u0a84\u0a85\u0007V\u0002\u0002", - "\u0a85\u0226\u0003\u0002\u0002\u0002\u0a86\u0a87\u0007H\u0002\u0002", - "\u0a87\u0a88\u0007N\u0002\u0002\u0a88\u0a89\u0007Q\u0002\u0002\u0a89", - "\u0a8a\u0007C\u0002\u0002\u0a8a\u0a8b\u0007V\u0002\u0002\u0a8b\u0228", - "\u0003\u0002\u0002\u0002\u0a8c\u0a8d\u0007F\u0002\u0002\u0a8d\u0a8e", - "\u0007Q\u0002\u0002\u0a8e\u0a8f\u0007W\u0002\u0002\u0a8f\u0a90\u0007", - "D\u0002\u0002\u0a90\u0a91\u0007N\u0002\u0002\u0a91\u0a92\u0007G\u0002", - "\u0002\u0a92\u022a\u0003\u0002\u0002\u0002\u0a93\u0a94\u0007F\u0002", - "\u0002\u0a94\u0a95\u0007C\u0002\u0002\u0a95\u0a96\u0007V\u0002\u0002", - "\u0a96\u0a97\u0007G\u0002\u0002\u0a97\u022c\u0003\u0002\u0002\u0002", - "\u0a98\u0a99\u0007V\u0002\u0002\u0a99\u0a9a\u0007K\u0002\u0002\u0a9a", - "\u0a9b\u0007O\u0002\u0002\u0a9b\u0a9c\u0007G\u0002\u0002\u0a9c\u022e", - "\u0003\u0002\u0002\u0002\u0a9d\u0a9e\u0007V\u0002\u0002\u0a9e\u0a9f", - "\u0007K\u0002\u0002\u0a9f\u0aa0\u0007O\u0002\u0002\u0aa0\u0aa1\u0007", - "G\u0002\u0002\u0aa1\u0aa2\u0007U\u0002\u0002\u0aa2\u0aa3\u0007V\u0002", - "\u0002\u0aa3\u0aa4\u0007C\u0002\u0002\u0aa4\u0aa5\u0007O\u0002\u0002", - "\u0aa5\u0aa6\u0007R\u0002\u0002\u0aa6\u0230\u0003\u0002\u0002\u0002", - "\u0aa7\u0aa8\u0007O\u0002\u0002\u0aa8\u0aa9\u0007W\u0002\u0002\u0aa9", - "\u0aaa\u0007N\u0002\u0002\u0aaa\u0aab\u0007V\u0002\u0002\u0aab\u0aac", - "\u0007K\u0002\u0002\u0aac\u0aad\u0007U\u0002\u0002\u0aad\u0aae\u0007", - "G\u0002\u0002\u0aae\u0aaf\u0007V\u0002\u0002\u0aaf\u0232\u0003\u0002", - "\u0002\u0002\u0ab0\u0ab1\u0007D\u0002\u0002\u0ab1\u0ab2\u0007Q\u0002", - "\u0002\u0ab2\u0ab3\u0007Q\u0002\u0002\u0ab3\u0ab4\u0007N\u0002\u0002", - "\u0ab4\u0ab5\u0007G\u0002\u0002\u0ab5\u0ab6\u0007C\u0002\u0002\u0ab6", - "\u0ab7\u0007P\u0002\u0002\u0ab7\u0234\u0003\u0002\u0002\u0002\u0ab8", - "\u0ab9\u0007T\u0002\u0002\u0ab9\u0aba\u0007C\u0002\u0002\u0aba\u0abb", - "\u0007Y\u0002\u0002\u0abb\u0236\u0003\u0002\u0002\u0002\u0abc\u0abd", - "\u0007T\u0002\u0002\u0abd\u0abe\u0007Q\u0002\u0002\u0abe\u0abf\u0007", - "Y\u0002\u0002\u0abf\u0238\u0003\u0002\u0002\u0002\u0ac0\u0ac1\u0007", - "P\u0002\u0002\u0ac1\u0ac2\u0007W\u0002\u0002\u0ac2\u0ac3\u0007N\u0002", - "\u0002\u0ac3\u0ac4\u0007N\u0002\u0002\u0ac4\u023a\u0003\u0002\u0002", - "\u0002\u0ac5\u0ac6\u0007?\u0002\u0002\u0ac6\u023c\u0003\u0002\u0002", - "\u0002\u0ac7\u0ac8\u0007@\u0002\u0002\u0ac8\u023e\u0003\u0002\u0002", - "\u0002\u0ac9\u0aca\u0007>\u0002\u0002\u0aca\u0240\u0003\u0002\u0002", - "\u0002\u0acb\u0acc\u0007#\u0002\u0002\u0acc\u0242\u0003\u0002\u0002", - "\u0002\u0acd\u0ace\u0007\u0080\u0002\u0002\u0ace\u0244\u0003\u0002\u0002", - "\u0002\u0acf\u0ad0\u0007~\u0002\u0002\u0ad0\u0246\u0003\u0002\u0002", - "\u0002\u0ad1\u0ad2\u0007(\u0002\u0002\u0ad2\u0248\u0003\u0002\u0002", - "\u0002\u0ad3\u0ad4\u0007`\u0002\u0002\u0ad4\u024a\u0003\u0002\u0002", - "\u0002\u0ad5\u0ad6\u00070\u0002\u0002\u0ad6\u024c\u0003\u0002\u0002", - "\u0002\u0ad7\u0ad8\u0007*\u0002\u0002\u0ad8\u024e\u0003\u0002\u0002", - "\u0002\u0ad9\u0ada\u0007+\u0002\u0002\u0ada\u0250\u0003\u0002\u0002", - "\u0002\u0adb\u0adc\u0007.\u0002\u0002\u0adc\u0252\u0003\u0002\u0002", - "\u0002\u0add\u0ade\u0007=\u0002\u0002\u0ade\u0254\u0003\u0002\u0002", - "\u0002\u0adf\u0ae0\u0007B\u0002\u0002\u0ae0\u0256\u0003\u0002\u0002", - "\u0002\u0ae1\u0ae2\u00072\u0002\u0002\u0ae2\u0258\u0003\u0002\u0002", - "\u0002\u0ae3\u0ae4\u00073\u0002\u0002\u0ae4\u025a\u0003\u0002\u0002", - "\u0002\u0ae5\u0ae6\u00074\u0002\u0002\u0ae6\u025c\u0003\u0002\u0002", - "\u0002\u0ae7\u0ae8\u0007)\u0002\u0002\u0ae8\u025e\u0003\u0002\u0002", - "\u0002\u0ae9\u0aea\u0007$\u0002\u0002\u0aea\u0260\u0003\u0002\u0002", - "\u0002\u0aeb\u0aec\u0007b\u0002\u0002\u0aec\u0262\u0003\u0002\u0002", - "\u0002\u0aed\u0aee\u0007<\u0002\u0002\u0aee\u0264\u0003\u0002\u0002", - "\u0002\u0aef\u0af1\t\u0006\u0002\u0002\u0af0\u0aef\u0003\u0002\u0002", - "\u0002\u0af1\u0af4\u0003\u0002\u0002\u0002\u0af2\u0af3\u0003\u0002\u0002", - "\u0002\u0af2\u0af0\u0003\u0002\u0002\u0002\u0af3\u0af6\u0003\u0002\u0002", - "\u0002\u0af4\u0af2\u0003\u0002\u0002\u0002\u0af5\u0af7\t\u0007\u0002", - "\u0002\u0af6\u0af5\u0003\u0002\u0002\u0002\u0af7\u0af8\u0003\u0002\u0002", - "\u0002\u0af8\u0af9\u0003\u0002\u0002\u0002\u0af8\u0af6\u0003\u0002\u0002", - "\u0002\u0af9\u0afd\u0003\u0002\u0002\u0002\u0afa\u0afc\t\u0006\u0002", - "\u0002\u0afb\u0afa\u0003\u0002\u0002\u0002\u0afc\u0aff\u0003\u0002\u0002", - "\u0002\u0afd\u0afb\u0003\u0002\u0002\u0002\u0afd\u0afe\u0003\u0002\u0002", - "\u0002\u0afe\u0266\u0003\u0002\u0002\u0002\u0aff\u0afd\u0003\u0002\u0002", - "\u0002\u0012\u0002\u026a\u0275\u0282\u028e\u0293\u0297\u029b\u02a1\u02a5", - "\u02a7\u0a15\u0a1d\u0af2\u0af8\u0afd\u0004\u0002\u0003\u0002\u0002\u0004", - "\u0002"].join(""); + "\u025f\u0131\u0261\u0132\u0263\u0133\u0265\u0134\u0267\u0135\u0269\u0136", + "\u026b\u0137\u026d\u0138\u026f\u0002\u0271\u0002\u0273\u0002\u0275\u0002", + "\u0277\u0002\u0279\u0002\u027b\u0002\u0003\u0002\u000e\u0005\u0002\u000b", + "\f\u000f\u000f\"\"\u0004\u0002\f\f\u000f\u000f\u0003\u0002bb\u0003\u0002", + "$$\u0004\u0002--//\u0006\u00022;C\\aac|\u0005\u0002C\\aac|\u0003\u0002", + "2;\u0004\u0002$$^^\u0004\u0002))^^\u0003\u000223\u0004\u0002^^bb\u0002", + "\u0bad\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\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_\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\u0002", + "m\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\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", + "\u0003\u027e\u0003\u0002\u0002\u0002\u0005\u0284\u0003\u0002\u0002\u0002", + "\u0007\u0292\u0003\u0002\u0002\u0002\t\u02bd\u0003\u0002\u0002\u0002", + "\u000b\u02c1\u0003\u0002\u0002\u0002\r\u02c8\u0003\u0002\u0002\u0002", + "\u000f\u02cd\u0003\u0002\u0002\u0002\u0011\u02d1\u0003\u0002\u0002\u0002", + "\u0013\u02d4\u0003\u0002\u0002\u0002\u0015\u02d8\u0003\u0002\u0002\u0002", + "\u0017\u02dc\u0003\u0002\u0002\u0002\u0019\u02e5\u0003\u0002\u0002\u0002", + "\u001b\u02eb\u0003\u0002\u0002\u0002\u001d\u02f1\u0003\u0002\u0002\u0002", + "\u001f\u02f4\u0003\u0002\u0002\u0002!\u02fd\u0003\u0002\u0002\u0002", + "#\u0302\u0003\u0002\u0002\u0002%\u0307\u0003\u0002\u0002\u0002\'\u030e", + "\u0003\u0002\u0002\u0002)\u0314\u0003\u0002\u0002\u0002+\u031b\u0003", + "\u0002\u0002\u0002-\u0321\u0003\u0002\u0002\u0002/\u0324\u0003\u0002", + "\u0002\u00021\u0327\u0003\u0002\u0002\u00023\u032b\u0003\u0002\u0002", + "\u00025\u032e\u0003\u0002\u0002\u00027\u0332\u0003\u0002\u0002\u0002", + "9\u0335\u0003\u0002\u0002\u0002;\u033c\u0003\u0002\u0002\u0002=\u0344", + "\u0003\u0002\u0002\u0002?\u0349\u0003\u0002\u0002\u0002A\u034f\u0003", + "\u0002\u0002\u0002C\u0352\u0003\u0002\u0002\u0002E\u0357\u0003\u0002", + "\u0002\u0002G\u035d\u0003\u0002\u0002\u0002I\u0363\u0003\u0002\u0002", + "\u0002K\u0367\u0003\u0002\u0002\u0002M\u036c\u0003\u0002\u0002\u0002", + "O\u0370\u0003\u0002\u0002\u0002Q\u0379\u0003\u0002\u0002\u0002S\u037e", + "\u0003\u0002\u0002\u0002U\u0383\u0003\u0002\u0002\u0002W\u0388\u0003", + "\u0002\u0002\u0002Y\u038d\u0003\u0002\u0002\u0002[\u0391\u0003\u0002", + "\u0002\u0002]\u0396\u0003\u0002\u0002\u0002_\u039c\u0003\u0002\u0002", + "\u0002a\u03a2\u0003\u0002\u0002\u0002c\u03a8\u0003\u0002\u0002\u0002", + "e\u03ad\u0003\u0002\u0002\u0002g\u03b2\u0003\u0002\u0002\u0002i\u03b8", + "\u0003\u0002\u0002\u0002k\u03bd\u0003\u0002\u0002\u0002m\u03c5\u0003", + "\u0002\u0002\u0002o\u03c8\u0003\u0002\u0002\u0002q\u03ce\u0003\u0002", + "\u0002\u0002s\u03d6\u0003\u0002\u0002\u0002u\u03dd\u0003\u0002\u0002", + "\u0002w\u03e2\u0003\u0002\u0002\u0002y\u03ec\u0003\u0002\u0002\u0002", + "{\u03f2\u0003\u0002\u0002\u0002}\u03f7\u0003\u0002\u0002\u0002\u007f", + "\u0401\u0003\u0002\u0002\u0002\u0081\u040b\u0003\u0002\u0002\u0002\u0083", + "\u0415\u0003\u0002\u0002\u0002\u0085\u041d\u0003\u0002\u0002\u0002\u0087", + "\u0423\u0003\u0002\u0002\u0002\u0089\u0429\u0003\u0002\u0002\u0002\u008b", + "\u042e\u0003\u0002\u0002\u0002\u008d\u0433\u0003\u0002\u0002\u0002\u008f", + "\u043a\u0003\u0002\u0002\u0002\u0091\u0441\u0003\u0002\u0002\u0002\u0093", + "\u0447\u0003\u0002\u0002\u0002\u0095\u0451\u0003\u0002\u0002\u0002\u0097", + "\u0456\u0003\u0002\u0002\u0002\u0099\u045e\u0003\u0002\u0002\u0002\u009b", + "\u0465\u0003\u0002\u0002\u0002\u009d\u046c\u0003\u0002\u0002\u0002\u009f", + "\u0471\u0003\u0002\u0002\u0002\u00a1\u047a\u0003\u0002\u0002\u0002\u00a3", + "\u0482\u0003\u0002\u0002\u0002\u00a5\u0489\u0003\u0002\u0002\u0002\u00a7", + "\u0491\u0003\u0002\u0002\u0002\u00a9\u0499\u0003\u0002\u0002\u0002\u00ab", + "\u049e\u0003\u0002\u0002\u0002\u00ad\u04a3\u0003\u0002\u0002\u0002\u00af", + "\u04a8\u0003\u0002\u0002\u0002\u00b1\u04af\u0003\u0002\u0002\u0002\u00b3", + "\u04b7\u0003\u0002\u0002\u0002\u00b5\u04be\u0003\u0002\u0002\u0002\u00b7", + "\u04c2\u0003\u0002\u0002\u0002\u00b9\u04cd\u0003\u0002\u0002\u0002\u00bb", + "\u04d7\u0003\u0002\u0002\u0002\u00bd\u04dc\u0003\u0002\u0002\u0002\u00bf", + "\u04e2\u0003\u0002\u0002\u0002\u00c1\u04e9\u0003\u0002\u0002\u0002\u00c3", + "\u04f2\u0003\u0002\u0002\u0002\u00c5\u04fc\u0003\u0002\u0002\u0002\u00c7", + "\u04ff\u0003\u0002\u0002\u0002\u00c9\u050b\u0003\u0002\u0002\u0002\u00cb", + "\u0514\u0003\u0002\u0002\u0002\u00cd\u051a\u0003\u0002\u0002\u0002\u00cf", + "\u0521\u0003\u0002\u0002\u0002\u00d1\u0528\u0003\u0002\u0002\u0002\u00d3", + "\u0530\u0003\u0002\u0002\u0002\u00d5\u0534\u0003\u0002\u0002\u0002\u00d7", + "\u053a\u0003\u0002\u0002\u0002\u00d9\u053f\u0003\u0002\u0002\u0002\u00db", + "\u0545\u0003\u0002\u0002\u0002\u00dd\u0551\u0003\u0002\u0002\u0002\u00df", + "\u0558\u0003\u0002\u0002\u0002\u00e1\u0561\u0003\u0002\u0002\u0002\u00e3", + "\u0567\u0003\u0002\u0002\u0002\u00e5\u056e\u0003\u0002\u0002\u0002\u00e7", + "\u0573\u0003\u0002\u0002\u0002\u00e9\u057b\u0003\u0002\u0002\u0002\u00eb", + "\u0584\u0003\u0002\u0002\u0002\u00ed\u0587\u0003\u0002\u0002\u0002\u00ef", + "\u0590\u0003\u0002\u0002\u0002\u00f1\u0598\u0003\u0002\u0002\u0002\u00f3", + "\u059b\u0003\u0002\u0002\u0002\u00f5\u05a0\u0003\u0002\u0002\u0002\u00f7", + "\u05a4\u0003\u0002\u0002\u0002\u00f9\u05a9\u0003\u0002\u0002\u0002\u00fb", + "\u05ac\u0003\u0002\u0002\u0002\u00fd\u05b0\u0003\u0002\u0002\u0002\u00ff", + "\u05b3\u0003\u0002\u0002\u0002\u0101\u05b7\u0003\u0002\u0002\u0002\u0103", + "\u05bc\u0003\u0002\u0002\u0002\u0105\u05c2\u0003\u0002\u0002\u0002\u0107", + "\u05cb\u0003\u0002\u0002\u0002\u0109\u05d1\u0003\u0002\u0002\u0002\u010b", + "\u05d9\u0003\u0002\u0002\u0002\u010d\u05dd\u0003\u0002\u0002\u0002\u010f", + "\u05e3\u0003\u0002\u0002\u0002\u0111\u05ed\u0003\u0002\u0002\u0002\u0113", + "\u05f2\u0003\u0002\u0002\u0002\u0115\u05fe\u0003\u0002\u0002\u0002\u0117", + "\u0602\u0003\u0002\u0002\u0002\u0119\u060d\u0003\u0002\u0002\u0002\u011b", + "\u0614\u0003\u0002\u0002\u0002\u011d\u0618\u0003\u0002\u0002\u0002\u011f", + "\u061b\u0003\u0002\u0002\u0002\u0121\u0620\u0003\u0002\u0002\u0002\u0123", + "\u0628\u0003\u0002\u0002\u0002\u0125\u0633\u0003\u0002\u0002\u0002\u0127", + "\u063d\u0003\u0002\u0002\u0002\u0129\u0647\u0003\u0002\u0002\u0002\u012b", + "\u064e\u0003\u0002\u0002\u0002\u012d\u0654\u0003\u0002\u0002\u0002\u012f", + "\u065a\u0003\u0002\u0002\u0002\u0131\u066a\u0003\u0002\u0002\u0002\u0133", + "\u0677\u0003\u0002\u0002\u0002\u0135\u0684\u0003\u0002\u0002\u0002\u0137", + "\u068e\u0003\u0002\u0002\u0002\u0139\u0695\u0003\u0002\u0002\u0002\u013b", + "\u06a0\u0003\u0002\u0002\u0002\u013d\u06ab\u0003\u0002\u0002\u0002\u013f", + "\u06b1\u0003\u0002\u0002\u0002\u0141\u06b6\u0003\u0002\u0002\u0002\u0143", + "\u06be\u0003\u0002\u0002\u0002\u0145\u06c4\u0003\u0002\u0002\u0002\u0147", + "\u06ce\u0003\u0002\u0002\u0002\u0149\u06d7\u0003\u0002\u0002\u0002\u014b", + "\u06e0\u0003\u0002\u0002\u0002\u014d\u06e8\u0003\u0002\u0002\u0002\u014f", + "\u06ee\u0003\u0002\u0002\u0002\u0151\u06f4\u0003\u0002\u0002\u0002\u0153", + "\u06fc\u0003\u0002\u0002\u0002\u0155\u0701\u0003\u0002\u0002\u0002\u0157", + "\u070b\u0003\u0002\u0002\u0002\u0159\u0712\u0003\u0002\u0002\u0002\u015b", + "\u071c\u0003\u0002\u0002\u0002\u015d\u0724\u0003\u0002\u0002\u0002\u015f", + "\u072a\u0003\u0002\u0002\u0002\u0161\u0738\u0003\u0002\u0002\u0002\u0163", + "\u0745\u0003\u0002\u0002\u0002\u0165\u074d\u0003\u0002\u0002\u0002\u0167", + "\u0754\u0003\u0002\u0002\u0002\u0169\u075b\u0003\u0002\u0002\u0002\u016b", + "\u0767\u0003\u0002\u0002\u0002\u016d\u0770\u0003\u0002\u0002\u0002\u016f", + "\u0779\u0003\u0002\u0002\u0002\u0171\u0781\u0003\u0002\u0002\u0002\u0173", + "\u078b\u0003\u0002\u0002\u0002\u0175\u0796\u0003\u0002\u0002\u0002\u0177", + "\u079c\u0003\u0002\u0002\u0002\u0179\u07a4\u0003\u0002\u0002\u0002\u017b", + "\u07b0\u0003\u0002\u0002\u0002\u017d\u07b7\u0003\u0002\u0002\u0002\u017f", + "\u07bf\u0003\u0002\u0002\u0002\u0181\u07c8\u0003\u0002\u0002\u0002\u0183", + "\u07d2\u0003\u0002\u0002\u0002\u0185\u07d9\u0003\u0002\u0002\u0002\u0187", + "\u07df\u0003\u0002\u0002\u0002\u0189\u07eb\u0003\u0002\u0002\u0002\u018b", + "\u07f8\u0003\u0002\u0002\u0002\u018d\u0801\u0003\u0002\u0002\u0002\u018f", + "\u080b\u0003\u0002\u0002\u0002\u0191\u080f\u0003\u0002\u0002\u0002\u0193", + "\u0818\u0003\u0002\u0002\u0002\u0195\u0820\u0003\u0002\u0002\u0002\u0197", + "\u0828\u0003\u0002\u0002\u0002\u0199\u082d\u0003\u0002\u0002\u0002\u019b", + "\u0838\u0003\u0002\u0002\u0002\u019d\u0844\u0003\u0002\u0002\u0002\u019f", + "\u084d\u0003\u0002\u0002\u0002\u01a1\u0855\u0003\u0002\u0002\u0002\u01a3", + "\u085c\u0003\u0002\u0002\u0002\u01a5\u0862\u0003\u0002\u0002\u0002\u01a7", + "\u0867\u0003\u0002\u0002\u0002\u01a9\u086e\u0003\u0002\u0002\u0002\u01ab", + "\u0873\u0003\u0002\u0002\u0002\u01ad\u087a\u0003\u0002\u0002\u0002\u01af", + "\u0882\u0003\u0002\u0002\u0002\u01b1\u0889\u0003\u0002\u0002\u0002\u01b3", + "\u0890\u0003\u0002\u0002\u0002\u01b5\u0895\u0003\u0002\u0002\u0002\u01b7", + "\u089a\u0003\u0002\u0002\u0002\u01b9\u08a0\u0003\u0002\u0002\u0002\u01bb", + "\u08ac\u0003\u0002\u0002\u0002\u01bd\u08b7\u0003\u0002\u0002\u0002\u01bf", + "\u08c4\u0003\u0002\u0002\u0002\u01c1\u08ca\u0003\u0002\u0002\u0002\u01c3", + "\u08d2\u0003\u0002\u0002\u0002\u01c5\u08d8\u0003\u0002\u0002\u0002\u01c7", + "\u08df\u0003\u0002\u0002\u0002\u01c9\u08e4\u0003\u0002\u0002\u0002\u01cb", + "\u08ea\u0003\u0002\u0002\u0002\u01cd\u08f1\u0003\u0002\u0002\u0002\u01cf", + "\u08fb\u0003\u0002\u0002\u0002\u01d1\u0902\u0003\u0002\u0002\u0002\u01d3", + "\u0912\u0003\u0002\u0002\u0002\u01d5\u091b\u0003\u0002\u0002\u0002\u01d7", + "\u091f\u0003\u0002\u0002\u0002\u01d9\u0923\u0003\u0002\u0002\u0002\u01db", + "\u0929\u0003\u0002\u0002\u0002\u01dd\u092f\u0003\u0002\u0002\u0002\u01df", + "\u0934\u0003\u0002\u0002\u0002\u01e1\u0939\u0003\u0002\u0002\u0002\u01e3", + "\u0941\u0003\u0002\u0002\u0002\u01e5\u0948\u0003\u0002\u0002\u0002\u01e7", + "\u094f\u0003\u0002\u0002\u0002\u01e9\u095e\u0003\u0002\u0002\u0002\u01eb", + "\u096f\u0003\u0002\u0002\u0002\u01ed\u097f\u0003\u0002\u0002\u0002\u01ef", + "\u098d\u0003\u0002\u0002\u0002\u01f1\u099b\u0003\u0002\u0002\u0002\u01f3", + "\u09aa\u0003\u0002\u0002\u0002\u01f5\u09bd\u0003\u0002\u0002\u0002\u01f7", + "\u09c8\u0003\u0002\u0002\u0002\u01f9\u09de\u0003\u0002\u0002\u0002\u01fb", + "\u09ed\u0003\u0002\u0002\u0002\u01fd\u0a05\u0003\u0002\u0002\u0002\u01ff", + "\u0a17\u0003\u0002\u0002\u0002\u0201\u0a1a\u0003\u0002\u0002\u0002\u0203", + "\u0a27\u0003\u0002\u0002\u0002\u0205\u0a2f\u0003\u0002\u0002\u0002\u0207", + "\u0a37\u0003\u0002\u0002\u0002\u0209\u0a3a\u0003\u0002\u0002\u0002\u020b", + "\u0a3c\u0003\u0002\u0002\u0002\u020d\u0a43\u0003\u0002\u0002\u0002\u020f", + "\u0a4a\u0003\u0002\u0002\u0002\u0211\u0a50\u0003\u0002\u0002\u0002\u0213", + "\u0a54\u0003\u0002\u0002\u0002\u0215\u0a59\u0003\u0002\u0002\u0002\u0217", + "\u0a61\u0003\u0002\u0002\u0002\u0219\u0a68\u0003\u0002\u0002\u0002\u021b", + "\u0a72\u0003\u0002\u0002\u0002\u021d\u0a78\u0003\u0002\u0002\u0002\u021f", + "\u0a80\u0003\u0002\u0002\u0002\u0221\u0a88\u0003\u0002\u0002\u0002\u0223", + "\u0a91\u0003\u0002\u0002\u0002\u0225\u0a95\u0003\u0002\u0002\u0002\u0227", + "\u0a9c\u0003\u0002\u0002\u0002\u0229\u0aa2\u0003\u0002\u0002\u0002\u022b", + "\u0aa9\u0003\u0002\u0002\u0002\u022d\u0aae\u0003\u0002\u0002\u0002\u022f", + "\u0ab3\u0003\u0002\u0002\u0002\u0231\u0abd\u0003\u0002\u0002\u0002\u0233", + "\u0ac6\u0003\u0002\u0002\u0002\u0235\u0ace\u0003\u0002\u0002\u0002\u0237", + "\u0ad2\u0003\u0002\u0002\u0002\u0239\u0ad6\u0003\u0002\u0002\u0002\u023b", + "\u0adb\u0003\u0002\u0002\u0002\u023d\u0add\u0003\u0002\u0002\u0002\u023f", + "\u0adf\u0003\u0002\u0002\u0002\u0241\u0ae1\u0003\u0002\u0002\u0002\u0243", + "\u0ae3\u0003\u0002\u0002\u0002\u0245\u0ae5\u0003\u0002\u0002\u0002\u0247", + "\u0ae7\u0003\u0002\u0002\u0002\u0249\u0ae9\u0003\u0002\u0002\u0002\u024b", + "\u0aeb\u0003\u0002\u0002\u0002\u024d\u0aed\u0003\u0002\u0002\u0002\u024f", + "\u0aef\u0003\u0002\u0002\u0002\u0251\u0af1\u0003\u0002\u0002\u0002\u0253", + "\u0af3\u0003\u0002\u0002\u0002\u0255\u0af5\u0003\u0002\u0002\u0002\u0257", + "\u0af7\u0003\u0002\u0002\u0002\u0259\u0af9\u0003\u0002\u0002\u0002\u025b", + "\u0afb\u0003\u0002\u0002\u0002\u025d\u0afd\u0003\u0002\u0002\u0002\u025f", + "\u0aff\u0003\u0002\u0002\u0002\u0261\u0b01\u0003\u0002\u0002\u0002\u0263", + "\u0b03\u0003\u0002\u0002\u0002\u0265\u0b05\u0003\u0002\u0002\u0002\u0267", + "\u0b0a\u0003\u0002\u0002\u0002\u0269\u0b0d\u0003\u0002\u0002\u0002\u026b", + "\u0b3c\u0003\u0002\u0002\u0002\u026d\u0b3e\u0003\u0002\u0002\u0002\u026f", + "\u0b40\u0003\u0002\u0002\u0002\u0271\u0b4c\u0003\u0002\u0002\u0002\u0273", + "\u0b5a\u0003\u0002\u0002\u0002\u0275\u0b5c\u0003\u0002\u0002\u0002\u0277", + "\u0b69\u0003\u0002\u0002\u0002\u0279\u0b76\u0003\u0002\u0002\u0002\u027b", + "\u0b7f\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\u0287\u0007#\u0002\u0002\u0287\u0289", + "\u0003\u0002\u0002\u0002\u0288\u028a\u000b\u0002\u0002\u0002\u0289\u0288", + "\u0003\u0002\u0002\u0002\u028a\u028b\u0003\u0002\u0002\u0002\u028b\u028c", + "\u0003\u0002\u0002\u0002\u028b\u0289\u0003\u0002\u0002\u0002\u028c\u028d", + "\u0003\u0002\u0002\u0002\u028d\u028e\u0007,\u0002\u0002\u028e\u028f", + "\u00071\u0002\u0002\u028f\u0290\u0003\u0002\u0002\u0002\u0290\u0291", + "\b\u0003\u0003\u0002\u0291\u0006\u0003\u0002\u0002\u0002\u0292\u0293", + "\u00071\u0002\u0002\u0293\u0294\u0007,\u0002\u0002\u0294\u0298\u0003", + "\u0002\u0002\u0002\u0295\u0297\u000b\u0002\u0002\u0002\u0296\u0295\u0003", + "\u0002\u0002\u0002\u0297\u029a\u0003\u0002\u0002\u0002\u0298\u0299\u0003", + "\u0002\u0002\u0002\u0298\u0296\u0003\u0002\u0002\u0002\u0299\u029b\u0003", + "\u0002\u0002\u0002\u029a\u0298\u0003\u0002\u0002\u0002\u029b\u029c\u0007", + ",\u0002\u0002\u029c\u029d\u00071\u0002\u0002\u029d\u029e\u0003\u0002", + "\u0002\u0002\u029e\u029f\b\u0004\u0002\u0002\u029f\b\u0003\u0002\u0002", + "\u0002\u02a0\u02a1\u0007/\u0002\u0002\u02a1\u02a2\u0007/\u0002\u0002", + "\u02a2\u02a5\u0007\"\u0002\u0002\u02a3\u02a5\u0007%\u0002\u0002\u02a4", + "\u02a0\u0003\u0002\u0002\u0002\u02a4\u02a3\u0003\u0002\u0002\u0002\u02a5", + "\u02a9\u0003\u0002\u0002\u0002\u02a6\u02a8\n\u0003\u0002\u0002\u02a7", + "\u02a6\u0003\u0002\u0002\u0002\u02a8\u02ab\u0003\u0002\u0002\u0002\u02a9", + "\u02a7\u0003\u0002\u0002\u0002\u02a9\u02aa\u0003\u0002\u0002\u0002\u02aa", + "\u02b1\u0003\u0002\u0002\u0002\u02ab\u02a9\u0003\u0002\u0002\u0002\u02ac", + "\u02ae\u0007\u000f\u0002\u0002\u02ad\u02ac\u0003\u0002\u0002\u0002\u02ad", + "\u02ae\u0003\u0002\u0002\u0002\u02ae\u02af\u0003\u0002\u0002\u0002\u02af", + "\u02b2\u0007\f\u0002\u0002\u02b0\u02b2\u0007\u0002\u0002\u0003\u02b1", + "\u02ad\u0003\u0002\u0002\u0002\u02b1\u02b0\u0003\u0002\u0002\u0002\u02b2", + "\u02be\u0003\u0002\u0002\u0002\u02b3\u02b4\u0007/\u0002\u0002\u02b4", + "\u02b5\u0007/\u0002\u0002\u02b5\u02bb\u0003\u0002\u0002\u0002\u02b6", + "\u02b8\u0007\u000f\u0002\u0002\u02b7\u02b6\u0003\u0002\u0002\u0002\u02b7", + "\u02b8\u0003\u0002\u0002\u0002\u02b8\u02b9\u0003\u0002\u0002\u0002\u02b9", + "\u02bc\u0007\f\u0002\u0002\u02ba\u02bc\u0007\u0002\u0002\u0003\u02bb", + "\u02b7\u0003\u0002\u0002\u0002\u02bb\u02ba\u0003\u0002\u0002\u0002\u02bc", + "\u02be\u0003\u0002\u0002\u0002\u02bd\u02a4\u0003\u0002\u0002\u0002\u02bd", + "\u02b3\u0003\u0002\u0002\u0002\u02be\u02bf\u0003\u0002\u0002\u0002\u02bf", + "\u02c0\b\u0005\u0002\u0002\u02c0\n\u0003\u0002\u0002\u0002\u02c1\u02c2", + "\u0007U\u0002\u0002\u02c2\u02c3\u0007G\u0002\u0002\u02c3\u02c4\u0007", + "N\u0002\u0002\u02c4\u02c5\u0007G\u0002\u0002\u02c5\u02c6\u0007E\u0002", + "\u0002\u02c6\u02c7\u0007V\u0002\u0002\u02c7\f\u0003\u0002\u0002\u0002", + "\u02c8\u02c9\u0007H\u0002\u0002\u02c9\u02ca\u0007T\u0002\u0002\u02ca", + "\u02cb\u0007Q\u0002\u0002\u02cb\u02cc\u0007O\u0002\u0002\u02cc\u000e", + "\u0003\u0002\u0002\u0002\u02cd\u02ce\u0007C\u0002\u0002\u02ce\u02cf", + "\u0007F\u0002\u0002\u02cf\u02d0\u0007F\u0002\u0002\u02d0\u0010\u0003", + "\u0002\u0002\u0002\u02d1\u02d2\u0007C\u0002\u0002\u02d2\u02d3\u0007", + "U\u0002\u0002\u02d3\u0012\u0003\u0002\u0002\u0002\u02d4\u02d5\u0007", + "C\u0002\u0002\u02d5\u02d6\u0007N\u0002\u0002\u02d6\u02d7\u0007N\u0002", + "\u0002\u02d7\u0014\u0003\u0002\u0002\u0002\u02d8\u02d9\u0007C\u0002", + "\u0002\u02d9\u02da\u0007P\u0002\u0002\u02da\u02db\u0007[\u0002\u0002", + "\u02db\u0016\u0003\u0002\u0002\u0002\u02dc\u02dd\u0007F\u0002\u0002", + "\u02dd\u02de\u0007K\u0002\u0002\u02de\u02df\u0007U\u0002\u0002\u02df", + "\u02e0\u0007V\u0002\u0002\u02e0\u02e1\u0007K\u0002\u0002\u02e1\u02e2", + "\u0007P\u0002\u0002\u02e2\u02e3\u0007E\u0002\u0002\u02e3\u02e4\u0007", + "V\u0002\u0002\u02e4\u0018\u0003\u0002\u0002\u0002\u02e5\u02e6\u0007", + "Y\u0002\u0002\u02e6\u02e7\u0007J\u0002\u0002\u02e7\u02e8\u0007G\u0002", + "\u0002\u02e8\u02e9\u0007T\u0002\u0002\u02e9\u02ea\u0007G\u0002\u0002", + "\u02ea\u001a\u0003\u0002\u0002\u0002\u02eb\u02ec\u0007I\u0002\u0002", + "\u02ec\u02ed\u0007T\u0002\u0002\u02ed\u02ee\u0007Q\u0002\u0002\u02ee", + "\u02ef\u0007W\u0002\u0002\u02ef\u02f0\u0007R\u0002\u0002\u02f0\u001c", + "\u0003\u0002\u0002\u0002\u02f1\u02f2\u0007D\u0002\u0002\u02f2\u02f3", + "\u0007[\u0002\u0002\u02f3\u001e\u0003\u0002\u0002\u0002\u02f4\u02f5", + "\u0007I\u0002\u0002\u02f5\u02f6\u0007T\u0002\u0002\u02f6\u02f7\u0007", + "Q\u0002\u0002\u02f7\u02f8\u0007W\u0002\u0002\u02f8\u02f9\u0007R\u0002", + "\u0002\u02f9\u02fa\u0007K\u0002\u0002\u02fa\u02fb\u0007P\u0002\u0002", + "\u02fb\u02fc\u0007I\u0002\u0002\u02fc \u0003\u0002\u0002\u0002\u02fd", + "\u02fe\u0007U\u0002\u0002\u02fe\u02ff\u0007G\u0002\u0002\u02ff\u0300", + "\u0007V\u0002\u0002\u0300\u0301\u0007U\u0002\u0002\u0301\"\u0003\u0002", + "\u0002\u0002\u0302\u0303\u0007E\u0002\u0002\u0303\u0304\u0007W\u0002", + "\u0002\u0304\u0305\u0007D\u0002\u0002\u0305\u0306\u0007G\u0002\u0002", + "\u0306$\u0003\u0002\u0002\u0002\u0307\u0308\u0007T\u0002\u0002\u0308", + "\u0309\u0007Q\u0002\u0002\u0309\u030a\u0007N\u0002\u0002\u030a\u030b", + "\u0007N\u0002\u0002\u030b\u030c\u0007W\u0002\u0002\u030c\u030d\u0007", + "R\u0002\u0002\u030d&\u0003\u0002\u0002\u0002\u030e\u030f\u0007Q\u0002", + "\u0002\u030f\u0310\u0007T\u0002\u0002\u0310\u0311\u0007F\u0002\u0002", + "\u0311\u0312\u0007G\u0002\u0002\u0312\u0313\u0007T\u0002\u0002\u0313", + "(\u0003\u0002\u0002\u0002\u0314\u0315\u0007J\u0002\u0002\u0315\u0316", + "\u0007C\u0002\u0002\u0316\u0317\u0007X\u0002\u0002\u0317\u0318\u0007", + "K\u0002\u0002\u0318\u0319\u0007P\u0002\u0002\u0319\u031a\u0007I\u0002", + "\u0002\u031a*\u0003\u0002\u0002\u0002\u031b\u031c\u0007N\u0002\u0002", + "\u031c\u031d\u0007K\u0002\u0002\u031d\u031e\u0007O\u0002\u0002\u031e", + "\u031f\u0007K\u0002\u0002\u031f\u0320\u0007V\u0002\u0002\u0320,\u0003", + "\u0002\u0002\u0002\u0321\u0322\u0007C\u0002\u0002\u0322\u0323\u0007", + "V\u0002\u0002\u0323.\u0003\u0002\u0002\u0002\u0324\u0325\u0007Q\u0002", + "\u0002\u0325\u0326\u0007T\u0002\u0002\u03260\u0003\u0002\u0002\u0002", + "\u0327\u0328\u0007C\u0002\u0002\u0328\u0329\u0007P\u0002\u0002\u0329", + "\u032a\u0007F\u0002\u0002\u032a2\u0003\u0002\u0002\u0002\u032b\u032c", + "\u0007K\u0002\u0002\u032c\u032d\u0007P\u0002\u0002\u032d4\u0003\u0002", + "\u0002\u0002\u032e\u032f\u0007P\u0002\u0002\u032f\u0330\u0007Q\u0002", + "\u0002\u0330\u0331\u0007V\u0002\u0002\u03316\u0003\u0002\u0002\u0002", + "\u0332\u0333\u0007P\u0002\u0002\u0333\u0334\u0007Q\u0002\u0002\u0334", + "8\u0003\u0002\u0002\u0002\u0335\u0336\u0007G\u0002\u0002\u0336\u0337", + "\u0007Z\u0002\u0002\u0337\u0338\u0007K\u0002\u0002\u0338\u0339\u0007", + "U\u0002\u0002\u0339\u033a\u0007V\u0002\u0002\u033a\u033b\u0007U\u0002", + "\u0002\u033b:\u0003\u0002\u0002\u0002\u033c\u033d\u0007D\u0002\u0002", + "\u033d\u033e\u0007G\u0002\u0002\u033e\u033f\u0007V\u0002\u0002\u033f", + "\u0340\u0007Y\u0002\u0002\u0340\u0341\u0007G\u0002\u0002\u0341\u0342", + "\u0007G\u0002\u0002\u0342\u0343\u0007P\u0002\u0002\u0343<\u0003\u0002", + "\u0002\u0002\u0344\u0345\u0007N\u0002\u0002\u0345\u0346\u0007K\u0002", + "\u0002\u0346\u0347\u0007M\u0002\u0002\u0347\u0348\u0007G\u0002\u0002", + "\u0348>\u0003\u0002\u0002\u0002\u0349\u034a\u0007T\u0002\u0002\u034a", + "\u034b\u0007N\u0002\u0002\u034b\u034c\u0007K\u0002\u0002\u034c\u034d", + "\u0007M\u0002\u0002\u034d\u034e\u0007G\u0002\u0002\u034e@\u0003\u0002", + "\u0002\u0002\u034f\u0350\u0007K\u0002\u0002\u0350\u0351\u0007U\u0002", + "\u0002\u0351B\u0003\u0002\u0002\u0002\u0352\u0353\u0007V\u0002\u0002", + "\u0353\u0354\u0007T\u0002\u0002\u0354\u0355\u0007W\u0002\u0002\u0355", + "\u0356\u0007G\u0002\u0002\u0356D\u0003\u0002\u0002\u0002\u0357\u0358", + "\u0007H\u0002\u0002\u0358\u0359\u0007C\u0002\u0002\u0359\u035a\u0007", + "N\u0002\u0002\u035a\u035b\u0007U\u0002\u0002\u035b\u035c\u0007G\u0002", + "\u0002\u035cF\u0003\u0002\u0002\u0002\u035d\u035e\u0007P\u0002\u0002", + "\u035e\u035f\u0007W\u0002\u0002\u035f\u0360\u0007N\u0002\u0002\u0360", + "\u0361\u0007N\u0002\u0002\u0361\u0362\u0007U\u0002\u0002\u0362H\u0003", + "\u0002\u0002\u0002\u0363\u0364\u0007C\u0002\u0002\u0364\u0365\u0007", + "U\u0002\u0002\u0365\u0366\u0007E\u0002\u0002\u0366J\u0003\u0002\u0002", + "\u0002\u0367\u0368\u0007F\u0002\u0002\u0368\u0369\u0007G\u0002\u0002", + "\u0369\u036a\u0007U\u0002\u0002\u036a\u036b\u0007E\u0002\u0002\u036b", + "L\u0003\u0002\u0002\u0002\u036c\u036d\u0007H\u0002\u0002\u036d\u036e", + "\u0007Q\u0002\u0002\u036e\u036f\u0007T\u0002\u0002\u036fN\u0003\u0002", + "\u0002\u0002\u0370\u0371\u0007K\u0002\u0002\u0371\u0372\u0007P\u0002", + "\u0002\u0372\u0373\u0007V\u0002\u0002\u0373\u0374\u0007G\u0002\u0002", + "\u0374\u0375\u0007T\u0002\u0002\u0375\u0376\u0007X\u0002\u0002\u0376", + "\u0377\u0007C\u0002\u0002\u0377\u0378\u0007N\u0002\u0002\u0378P\u0003", + "\u0002\u0002\u0002\u0379\u037a\u0007E\u0002\u0002\u037a\u037b\u0007", + "C\u0002\u0002\u037b\u037c\u0007U\u0002\u0002\u037c\u037d\u0007G\u0002", + "\u0002\u037dR\u0003\u0002\u0002\u0002\u037e\u037f\u0007Y\u0002\u0002", + "\u037f\u0380\u0007J\u0002\u0002\u0380\u0381\u0007G\u0002\u0002\u0381", + "\u0382\u0007P\u0002\u0002\u0382T\u0003\u0002\u0002\u0002\u0383\u0384", + "\u0007V\u0002\u0002\u0384\u0385\u0007J\u0002\u0002\u0385\u0386\u0007", + "G\u0002\u0002\u0386\u0387\u0007P\u0002\u0002\u0387V\u0003\u0002\u0002", + "\u0002\u0388\u0389\u0007G\u0002\u0002\u0389\u038a\u0007N\u0002\u0002", + "\u038a\u038b\u0007U\u0002\u0002\u038b\u038c\u0007G\u0002\u0002\u038c", + "X\u0003\u0002\u0002\u0002\u038d\u038e\u0007G\u0002\u0002\u038e\u038f", + "\u0007P\u0002\u0002\u038f\u0390\u0007F\u0002\u0002\u0390Z\u0003\u0002", + "\u0002\u0002\u0391\u0392\u0007L\u0002\u0002\u0392\u0393\u0007Q\u0002", + "\u0002\u0393\u0394\u0007K\u0002\u0002\u0394\u0395\u0007P\u0002\u0002", + "\u0395\\\u0003\u0002\u0002\u0002\u0396\u0397\u0007E\u0002\u0002\u0397", + "\u0398\u0007T\u0002\u0002\u0398\u0399\u0007Q\u0002\u0002\u0399\u039a", + "\u0007U\u0002\u0002\u039a\u039b\u0007U\u0002\u0002\u039b^\u0003\u0002", + "\u0002\u0002\u039c\u039d\u0007Q\u0002\u0002\u039d\u039e\u0007W\u0002", + "\u0002\u039e\u039f\u0007V\u0002\u0002\u039f\u03a0\u0007G\u0002\u0002", + "\u03a0\u03a1\u0007T\u0002\u0002\u03a1`\u0003\u0002\u0002\u0002\u03a2", + "\u03a3\u0007K\u0002\u0002\u03a3\u03a4\u0007P\u0002\u0002\u03a4\u03a5", + "\u0007P\u0002\u0002\u03a5\u03a6\u0007G\u0002\u0002\u03a6\u03a7\u0007", + "T\u0002\u0002\u03a7b\u0003\u0002\u0002\u0002\u03a8\u03a9\u0007N\u0002", + "\u0002\u03a9\u03aa\u0007G\u0002\u0002\u03aa\u03ab\u0007H\u0002\u0002", + "\u03ab\u03ac\u0007V\u0002\u0002\u03acd\u0003\u0002\u0002\u0002\u03ad", + "\u03ae\u0007U\u0002\u0002\u03ae\u03af\u0007G\u0002\u0002\u03af\u03b0", + "\u0007O\u0002\u0002\u03b0\u03b1\u0007K\u0002\u0002\u03b1f\u0003\u0002", + "\u0002\u0002\u03b2\u03b3\u0007T\u0002\u0002\u03b3\u03b4\u0007K\u0002", + "\u0002\u03b4\u03b5\u0007I\u0002\u0002\u03b5\u03b6\u0007J\u0002\u0002", + "\u03b6\u03b7\u0007V\u0002\u0002\u03b7h\u0003\u0002\u0002\u0002\u03b8", + "\u03b9\u0007H\u0002\u0002\u03b9\u03ba\u0007W\u0002\u0002\u03ba\u03bb", + "\u0007N\u0002\u0002\u03bb\u03bc\u0007N\u0002\u0002\u03bcj\u0003\u0002", + "\u0002\u0002\u03bd\u03be\u0007P\u0002\u0002\u03be\u03bf\u0007C\u0002", + "\u0002\u03bf\u03c0\u0007V\u0002\u0002\u03c0\u03c1\u0007W\u0002\u0002", + "\u03c1\u03c2\u0007T\u0002\u0002\u03c2\u03c3\u0007C\u0002\u0002\u03c3", + "\u03c4\u0007N\u0002\u0002\u03c4l\u0003\u0002\u0002\u0002\u03c5\u03c6", + "\u0007Q\u0002\u0002\u03c6\u03c7\u0007P\u0002\u0002\u03c7n\u0003\u0002", + "\u0002\u0002\u03c8\u03c9\u0007R\u0002\u0002\u03c9\u03ca\u0007K\u0002", + "\u0002\u03ca\u03cb\u0007X\u0002\u0002\u03cb\u03cc\u0007Q\u0002\u0002", + "\u03cc\u03cd\u0007V\u0002\u0002\u03cdp\u0003\u0002\u0002\u0002\u03ce", + "\u03cf\u0007N\u0002\u0002\u03cf\u03d0\u0007C\u0002\u0002\u03d0\u03d1", + "\u0007V\u0002\u0002\u03d1\u03d2\u0007G\u0002\u0002\u03d2\u03d3\u0007", + "T\u0002\u0002\u03d3\u03d4\u0007C\u0002\u0002\u03d4\u03d5\u0007N\u0002", + "\u0002\u03d5r\u0003\u0002\u0002\u0002\u03d6\u03d7\u0007Y\u0002\u0002", + "\u03d7\u03d8\u0007K\u0002\u0002\u03d8\u03d9\u0007P\u0002\u0002\u03d9", + "\u03da\u0007F\u0002\u0002\u03da\u03db\u0007Q\u0002\u0002\u03db\u03dc", + "\u0007Y\u0002\u0002\u03dct\u0003\u0002\u0002\u0002\u03dd\u03de\u0007", + "Q\u0002\u0002\u03de\u03df\u0007X\u0002\u0002\u03df\u03e0\u0007G\u0002", + "\u0002\u03e0\u03e1\u0007T\u0002\u0002\u03e1v\u0003\u0002\u0002\u0002", + "\u03e2\u03e3\u0007R\u0002\u0002\u03e3\u03e4\u0007C\u0002\u0002\u03e4", + "\u03e5\u0007T\u0002\u0002\u03e5\u03e6\u0007V\u0002\u0002\u03e6\u03e7", + "\u0007K\u0002\u0002\u03e7\u03e8\u0007V\u0002\u0002\u03e8\u03e9\u0007", + "K\u0002\u0002\u03e9\u03ea\u0007Q\u0002\u0002\u03ea\u03eb\u0007P\u0002", + "\u0002\u03ebx\u0003\u0002\u0002\u0002\u03ec\u03ed\u0007T\u0002\u0002", + "\u03ed\u03ee\u0007C\u0002\u0002\u03ee\u03ef\u0007P\u0002\u0002\u03ef", + "\u03f0\u0007I\u0002\u0002\u03f0\u03f1\u0007G\u0002\u0002\u03f1z\u0003", + "\u0002\u0002\u0002\u03f2\u03f3\u0007T\u0002\u0002\u03f3\u03f4\u0007", + "Q\u0002\u0002\u03f4\u03f5\u0007Y\u0002\u0002\u03f5\u03f6\u0007U\u0002", + "\u0002\u03f6|\u0003\u0002\u0002\u0002\u03f7\u03f8\u0007W\u0002\u0002", + "\u03f8\u03f9\u0007P\u0002\u0002\u03f9\u03fa\u0007D\u0002\u0002\u03fa", + "\u03fb\u0007Q\u0002\u0002\u03fb\u03fc\u0007W\u0002\u0002\u03fc\u03fd", + "\u0007P\u0002\u0002\u03fd\u03fe\u0007F\u0002\u0002\u03fe\u03ff\u0007", + "G\u0002\u0002\u03ff\u0400\u0007F\u0002\u0002\u0400~\u0003\u0002\u0002", + "\u0002\u0401\u0402\u0007R\u0002\u0002\u0402\u0403\u0007T\u0002\u0002", + "\u0403\u0404\u0007G\u0002\u0002\u0404\u0405\u0007E\u0002\u0002\u0405", + "\u0406\u0007G\u0002\u0002\u0406\u0407\u0007F\u0002\u0002\u0407\u0408", + "\u0007K\u0002\u0002\u0408\u0409\u0007P\u0002\u0002\u0409\u040a\u0007", + "I\u0002\u0002\u040a\u0080\u0003\u0002\u0002\u0002\u040b\u040c\u0007", + "H\u0002\u0002\u040c\u040d\u0007Q\u0002\u0002\u040d\u040e\u0007N\u0002", + "\u0002\u040e\u040f\u0007N\u0002\u0002\u040f\u0410\u0007Q\u0002\u0002", + "\u0410\u0411\u0007Y\u0002\u0002\u0411\u0412\u0007K\u0002\u0002\u0412", + "\u0413\u0007P\u0002\u0002\u0413\u0414\u0007I\u0002\u0002\u0414\u0082", + "\u0003\u0002\u0002\u0002\u0415\u0416\u0007E\u0002\u0002\u0416\u0417", + "\u0007W\u0002\u0002\u0417\u0418\u0007T\u0002\u0002\u0418\u0419\u0007", + "T\u0002\u0002\u0419\u041a\u0007G\u0002\u0002\u041a\u041b\u0007P\u0002", + "\u0002\u041b\u041c\u0007V\u0002\u0002\u041c\u0084\u0003\u0002\u0002", + "\u0002\u041d\u041e\u0007H\u0002\u0002\u041e\u041f\u0007K\u0002\u0002", + "\u041f\u0420\u0007T\u0002\u0002\u0420\u0421\u0007U\u0002\u0002\u0421", + "\u0422\u0007V\u0002\u0002\u0422\u0086\u0003\u0002\u0002\u0002\u0423", + "\u0424\u0007C\u0002\u0002\u0424\u0425\u0007H\u0002\u0002\u0425\u0426", + "\u0007V\u0002\u0002\u0426\u0427\u0007G\u0002\u0002\u0427\u0428\u0007", + "T\u0002\u0002\u0428\u0088\u0003\u0002\u0002\u0002\u0429\u042a\u0007", + "N\u0002\u0002\u042a\u042b\u0007C\u0002\u0002\u042b\u042c\u0007U\u0002", + "\u0002\u042c\u042d\u0007V\u0002\u0002\u042d\u008a\u0003\u0002\u0002", + "\u0002\u042e\u042f\u0007Y\u0002\u0002\u042f\u0430\u0007K\u0002\u0002", + "\u0430\u0431\u0007V\u0002\u0002\u0431\u0432\u0007J\u0002\u0002\u0432", + "\u008c\u0003\u0002\u0002\u0002\u0433\u0434\u0007X\u0002\u0002\u0434", + "\u0435\u0007C\u0002\u0002\u0435\u0436\u0007N\u0002\u0002\u0436\u0437", + "\u0007W\u0002\u0002\u0437\u0438\u0007G\u0002\u0002\u0438\u0439\u0007", + "U\u0002\u0002\u0439\u008e\u0003\u0002\u0002\u0002\u043a\u043b\u0007", + "E\u0002\u0002\u043b\u043c\u0007T\u0002\u0002\u043c\u043d\u0007G\u0002", + "\u0002\u043d\u043e\u0007C\u0002\u0002\u043e\u043f\u0007V\u0002\u0002", + "\u043f\u0440\u0007G\u0002\u0002\u0440\u0090\u0003\u0002\u0002\u0002", + "\u0441\u0442\u0007V\u0002\u0002\u0442\u0443\u0007C\u0002\u0002\u0443", + "\u0444\u0007D\u0002\u0002\u0444\u0445\u0007N\u0002\u0002\u0445\u0446", + "\u0007G\u0002\u0002\u0446\u0092\u0003\u0002\u0002\u0002\u0447\u0448", + "\u0007F\u0002\u0002\u0448\u0449\u0007K\u0002\u0002\u0449\u044a\u0007", + "T\u0002\u0002\u044a\u044b\u0007G\u0002\u0002\u044b\u044c\u0007E\u0002", + "\u0002\u044c\u044d\u0007V\u0002\u0002\u044d\u044e\u0007Q\u0002\u0002", + "\u044e\u044f\u0007T\u0002\u0002\u044f\u0450\u0007[\u0002\u0002\u0450", + "\u0094\u0003\u0002\u0002\u0002\u0451\u0452\u0007X\u0002\u0002\u0452", + "\u0453\u0007K\u0002\u0002\u0453\u0454\u0007G\u0002\u0002\u0454\u0455", + "\u0007Y\u0002\u0002\u0455\u0096\u0003\u0002\u0002\u0002\u0456\u0457", + "\u0007T\u0002\u0002\u0457\u0458\u0007G\u0002\u0002\u0458\u0459\u0007", + "R\u0002\u0002\u0459\u045a\u0007N\u0002\u0002\u045a\u045b\u0007C\u0002", + "\u0002\u045b\u045c\u0007E\u0002\u0002\u045c\u045d\u0007G\u0002\u0002", + "\u045d\u0098\u0003\u0002\u0002\u0002\u045e\u045f\u0007K\u0002\u0002", + "\u045f\u0460\u0007P\u0002\u0002\u0460\u0461\u0007U\u0002\u0002\u0461", + "\u0462\u0007G\u0002\u0002\u0462\u0463\u0007T\u0002\u0002\u0463\u0464", + "\u0007V\u0002\u0002\u0464\u009a\u0003\u0002\u0002\u0002\u0465\u0466", + "\u0007F\u0002\u0002\u0466\u0467\u0007G\u0002\u0002\u0467\u0468\u0007", + "N\u0002\u0002\u0468\u0469\u0007G\u0002\u0002\u0469\u046a\u0007V\u0002", + "\u0002\u046a\u046b\u0007G\u0002\u0002\u046b\u009c\u0003\u0002\u0002", + "\u0002\u046c\u046d\u0007K\u0002\u0002\u046d\u046e\u0007P\u0002\u0002", + "\u046e\u046f\u0007V\u0002\u0002\u046f\u0470\u0007Q\u0002\u0002\u0470", + "\u009e\u0003\u0002\u0002\u0002\u0471\u0472\u0007F\u0002\u0002\u0472", + "\u0473\u0007G\u0002\u0002\u0473\u0474\u0007U\u0002\u0002\u0474\u0475", + "\u0007E\u0002\u0002\u0475\u0476\u0007T\u0002\u0002\u0476\u0477\u0007", + "K\u0002\u0002\u0477\u0478\u0007D\u0002\u0002\u0478\u0479\u0007G\u0002", + "\u0002\u0479\u00a0\u0003\u0002\u0002\u0002\u047a\u047b\u0007G\u0002", + "\u0002\u047b\u047c\u0007Z\u0002\u0002\u047c\u047d\u0007R\u0002\u0002", + "\u047d\u047e\u0007N\u0002\u0002\u047e\u047f\u0007C\u0002\u0002\u047f", + "\u0480\u0007K\u0002\u0002\u0480\u0481\u0007P\u0002\u0002\u0481\u00a2", + "\u0003\u0002\u0002\u0002\u0482\u0483\u0007H\u0002\u0002\u0483\u0484", + "\u0007Q\u0002\u0002\u0484\u0485\u0007T\u0002\u0002\u0485\u0486\u0007", + "O\u0002\u0002\u0486\u0487\u0007C\u0002\u0002\u0487\u0488\u0007V\u0002", + "\u0002\u0488\u00a4\u0003\u0002\u0002\u0002\u0489\u048a\u0007N\u0002", + "\u0002\u048a\u048b\u0007Q\u0002\u0002\u048b\u048c\u0007I\u0002\u0002", + "\u048c\u048d\u0007K\u0002\u0002\u048d\u048e\u0007E\u0002\u0002\u048e", + "\u048f\u0007C\u0002\u0002\u048f\u0490\u0007N\u0002\u0002\u0490\u00a6", + "\u0003\u0002\u0002\u0002\u0491\u0492\u0007E\u0002\u0002\u0492\u0493", + "\u0007Q\u0002\u0002\u0493\u0494\u0007F\u0002\u0002\u0494\u0495\u0007", + "G\u0002\u0002\u0495\u0496\u0007I\u0002\u0002\u0496\u0497\u0007G\u0002", + "\u0002\u0497\u0498\u0007P\u0002\u0002\u0498\u00a8\u0003\u0002\u0002", + "\u0002\u0499\u049a\u0007E\u0002\u0002\u049a\u049b\u0007Q\u0002\u0002", + "\u049b\u049c\u0007U\u0002\u0002\u049c\u049d\u0007V\u0002\u0002\u049d", + "\u00aa\u0003\u0002\u0002\u0002\u049e\u049f\u0007E\u0002\u0002\u049f", + "\u04a0\u0007C\u0002\u0002\u04a0\u04a1\u0007U\u0002\u0002\u04a1\u04a2", + "\u0007V\u0002\u0002\u04a2\u00ac\u0003\u0002\u0002\u0002\u04a3\u04a4", + "\u0007U\u0002\u0002\u04a4\u04a5\u0007J\u0002\u0002\u04a5\u04a6\u0007", + "Q\u0002\u0002\u04a6\u04a7\u0007Y\u0002\u0002\u04a7\u00ae\u0003\u0002", + "\u0002\u0002\u04a8\u04a9\u0007V\u0002\u0002\u04a9\u04aa\u0007C\u0002", + "\u0002\u04aa\u04ab\u0007D\u0002\u0002\u04ab\u04ac\u0007N\u0002\u0002", + "\u04ac\u04ad\u0007G\u0002\u0002\u04ad\u04ae\u0007U\u0002\u0002\u04ae", + "\u00b0\u0003\u0002\u0002\u0002\u04af\u04b0\u0007E\u0002\u0002\u04b0", + "\u04b1\u0007Q\u0002\u0002\u04b1\u04b2\u0007N\u0002\u0002\u04b2\u04b3", + "\u0007W\u0002\u0002\u04b3\u04b4\u0007O\u0002\u0002\u04b4\u04b5\u0007", + "P\u0002\u0002\u04b5\u04b6\u0007U\u0002\u0002\u04b6\u00b2\u0003\u0002", + "\u0002\u0002\u04b7\u04b8\u0007E\u0002\u0002\u04b8\u04b9\u0007Q\u0002", + "\u0002\u04b9\u04ba\u0007N\u0002\u0002\u04ba\u04bb\u0007W\u0002\u0002", + "\u04bb\u04bc\u0007O\u0002\u0002\u04bc\u04bd\u0007P\u0002\u0002\u04bd", + "\u00b4\u0003\u0002\u0002\u0002\u04be\u04bf\u0007W\u0002\u0002\u04bf", + "\u04c0\u0007U\u0002\u0002\u04c0\u04c1\u0007G\u0002\u0002\u04c1\u00b6", + "\u0003\u0002\u0002\u0002\u04c2\u04c3\u0007R\u0002\u0002\u04c3\u04c4", + "\u0007C\u0002\u0002\u04c4\u04c5\u0007T\u0002\u0002\u04c5\u04c6\u0007", + "V\u0002\u0002\u04c6\u04c7\u0007K\u0002\u0002\u04c7\u04c8\u0007V\u0002", + "\u0002\u04c8\u04c9\u0007K\u0002\u0002\u04c9\u04ca\u0007Q\u0002\u0002", + "\u04ca\u04cb\u0007P\u0002\u0002\u04cb\u04cc\u0007U\u0002\u0002\u04cc", + "\u00b8\u0003\u0002\u0002\u0002\u04cd\u04ce\u0007H\u0002\u0002\u04ce", + "\u04cf\u0007W\u0002\u0002\u04cf\u04d0\u0007P\u0002\u0002\u04d0\u04d1", + "\u0007E\u0002\u0002\u04d1\u04d2\u0007V\u0002\u0002\u04d2\u04d3\u0007", + "K\u0002\u0002\u04d3\u04d4\u0007Q\u0002\u0002\u04d4\u04d5\u0007P\u0002", + "\u0002\u04d5\u04d6\u0007U\u0002\u0002\u04d6\u00ba\u0003\u0002\u0002", + "\u0002\u04d7\u04d8\u0007F\u0002\u0002\u04d8\u04d9\u0007T\u0002\u0002", + "\u04d9\u04da\u0007Q\u0002\u0002\u04da\u04db\u0007R\u0002\u0002\u04db", + "\u00bc\u0003\u0002\u0002\u0002\u04dc\u04dd\u0007W\u0002\u0002\u04dd", + "\u04de\u0007P\u0002\u0002\u04de\u04df\u0007K\u0002\u0002\u04df\u04e0", + "\u0007Q\u0002\u0002\u04e0\u04e1\u0007P\u0002\u0002\u04e1\u00be\u0003", + "\u0002\u0002\u0002\u04e2\u04e3\u0007G\u0002\u0002\u04e3\u04e4\u0007", + "Z\u0002\u0002\u04e4\u04e5\u0007E\u0002\u0002\u04e5\u04e6\u0007G\u0002", + "\u0002\u04e6\u04e7\u0007R\u0002\u0002\u04e7\u04e8\u0007V\u0002\u0002", + "\u04e8\u00c0\u0003\u0002\u0002\u0002\u04e9\u04ea\u0007U\u0002\u0002", + "\u04ea\u04eb\u0007G\u0002\u0002\u04eb\u04ec\u0007V\u0002\u0002\u04ec", + "\u04ed\u0007O\u0002\u0002\u04ed\u04ee\u0007K\u0002\u0002\u04ee\u04ef", + "\u0007P\u0002\u0002\u04ef\u04f0\u0007W\u0002\u0002\u04f0\u04f1\u0007", + "U\u0002\u0002\u04f1\u00c2\u0003\u0002\u0002\u0002\u04f2\u04f3\u0007", + "K\u0002\u0002\u04f3\u04f4\u0007P\u0002\u0002\u04f4\u04f5\u0007V\u0002", + "\u0002\u04f5\u04f6\u0007G\u0002\u0002\u04f6\u04f7\u0007T\u0002\u0002", + "\u04f7\u04f8\u0007U\u0002\u0002\u04f8\u04f9\u0007G\u0002\u0002\u04f9", + "\u04fa\u0007E\u0002\u0002\u04fa\u04fb\u0007V\u0002\u0002\u04fb\u00c4", + "\u0003\u0002\u0002\u0002\u04fc\u04fd\u0007V\u0002\u0002\u04fd\u04fe", + "\u0007Q\u0002\u0002\u04fe\u00c6\u0003\u0002\u0002\u0002\u04ff\u0500", + "\u0007V\u0002\u0002\u0500\u0501\u0007C\u0002\u0002\u0501\u0502\u0007", + "D\u0002\u0002\u0502\u0503\u0007N\u0002\u0002\u0503\u0504\u0007G\u0002", + "\u0002\u0504\u0505\u0007U\u0002\u0002\u0505\u0506\u0007C\u0002\u0002", + "\u0506\u0507\u0007O\u0002\u0002\u0507\u0508\u0007R\u0002\u0002\u0508", + "\u0509\u0007N\u0002\u0002\u0509\u050a\u0007G\u0002\u0002\u050a\u00c8", + "\u0003\u0002\u0002\u0002\u050b\u050c\u0007U\u0002\u0002\u050c\u050d", + "\u0007V\u0002\u0002\u050d\u050e\u0007T\u0002\u0002\u050e\u050f\u0007", + "C\u0002\u0002\u050f\u0510\u0007V\u0002\u0002\u0510\u0511\u0007K\u0002", + "\u0002\u0511\u0512\u0007H\u0002\u0002\u0512\u0513\u0007[\u0002\u0002", + "\u0513\u00ca\u0003\u0002\u0002\u0002\u0514\u0515\u0007C\u0002\u0002", + "\u0515\u0516\u0007N\u0002\u0002\u0516\u0517\u0007V\u0002\u0002\u0517", + "\u0518\u0007G\u0002\u0002\u0518\u0519\u0007T\u0002\u0002\u0519\u00cc", + "\u0003\u0002\u0002\u0002\u051a\u051b\u0007T\u0002\u0002\u051b\u051c", + "\u0007G\u0002\u0002\u051c\u051d\u0007P\u0002\u0002\u051d\u051e\u0007", + "C\u0002\u0002\u051e\u051f\u0007O\u0002\u0002\u051f\u0520\u0007G\u0002", + "\u0002\u0520\u00ce\u0003\u0002\u0002\u0002\u0521\u0522\u0007U\u0002", + "\u0002\u0522\u0523\u0007V\u0002\u0002\u0523\u0524\u0007T\u0002\u0002", + "\u0524\u0525\u0007W\u0002\u0002\u0525\u0526\u0007E\u0002\u0002\u0526", + "\u0527\u0007V\u0002\u0002\u0527\u00d0\u0003\u0002\u0002\u0002\u0528", + "\u0529\u0007E\u0002\u0002\u0529\u052a\u0007Q\u0002\u0002\u052a\u052b", + "\u0007O\u0002\u0002\u052b\u052c\u0007O\u0002\u0002\u052c\u052d\u0007", + "G\u0002\u0002\u052d\u052e\u0007P\u0002\u0002\u052e\u052f\u0007V\u0002", + "\u0002\u052f\u00d2\u0003\u0002\u0002\u0002\u0530\u0531\u0007U\u0002", + "\u0002\u0531\u0532\u0007G\u0002\u0002\u0532\u0533\u0007V\u0002\u0002", + "\u0533\u00d4\u0003\u0002\u0002\u0002\u0534\u0535\u0007T\u0002\u0002", + "\u0535\u0536\u0007G\u0002\u0002\u0536\u0537\u0007U\u0002\u0002\u0537", + "\u0538\u0007G\u0002\u0002\u0538\u0539\u0007V\u0002\u0002\u0539\u00d6", + "\u0003\u0002\u0002\u0002\u053a\u053b\u0007F\u0002\u0002\u053b\u053c", + "\u0007C\u0002\u0002\u053c\u053d\u0007V\u0002\u0002\u053d\u053e\u0007", + "C\u0002\u0002\u053e\u00d8\u0003\u0002\u0002\u0002\u053f\u0540\u0007", + "U\u0002\u0002\u0540\u0541\u0007V\u0002\u0002\u0541\u0542\u0007C\u0002", + "\u0002\u0542\u0543\u0007T\u0002\u0002\u0543\u0544\u0007V\u0002\u0002", + "\u0544\u00da\u0003\u0002\u0002\u0002\u0545\u0546\u0007V\u0002\u0002", + "\u0546\u0547\u0007T\u0002\u0002\u0547\u0548\u0007C\u0002\u0002\u0548", + "\u0549\u0007P\u0002\u0002\u0549\u054a\u0007U\u0002\u0002\u054a\u054b", + "\u0007C\u0002\u0002\u054b\u054c\u0007E\u0002\u0002\u054c\u054d\u0007", + "V\u0002\u0002\u054d\u054e\u0007K\u0002\u0002\u054e\u054f\u0007Q\u0002", + "\u0002\u054f\u0550\u0007P\u0002\u0002\u0550\u00dc\u0003\u0002\u0002", + "\u0002\u0551\u0552\u0007E\u0002\u0002\u0552\u0553\u0007Q\u0002\u0002", + "\u0553\u0554\u0007O\u0002\u0002\u0554\u0555\u0007O\u0002\u0002\u0555", + "\u0556\u0007K\u0002\u0002\u0556\u0557\u0007V\u0002\u0002\u0557\u00de", + "\u0003\u0002\u0002\u0002\u0558\u0559\u0007T\u0002\u0002\u0559\u055a", + "\u0007Q\u0002\u0002\u055a\u055b\u0007N\u0002\u0002\u055b\u055c\u0007", + "N\u0002\u0002\u055c\u055d\u0007D\u0002\u0002\u055d\u055e\u0007C\u0002", + "\u0002\u055e\u055f\u0007E\u0002\u0002\u055f\u0560\u0007M\u0002\u0002", + "\u0560\u00e0\u0003\u0002\u0002\u0002\u0561\u0562\u0007O\u0002\u0002", + "\u0562\u0563\u0007C\u0002\u0002\u0563\u0564\u0007E\u0002\u0002\u0564", + "\u0565\u0007T\u0002\u0002\u0565\u0566\u0007Q\u0002\u0002\u0566\u00e2", + "\u0003\u0002\u0002\u0002\u0567\u0568\u0007K\u0002\u0002\u0568\u0569", + "\u0007I\u0002\u0002\u0569\u056a\u0007P\u0002\u0002\u056a\u056b\u0007", + "Q\u0002\u0002\u056b\u056c\u0007T\u0002\u0002\u056c\u056d\u0007G\u0002", + "\u0002\u056d\u00e4\u0003\u0002\u0002\u0002\u056e\u056f\u0007D\u0002", + "\u0002\u056f\u0570\u0007Q\u0002\u0002\u0570\u0571\u0007V\u0002\u0002", + "\u0571\u0572\u0007J\u0002\u0002\u0572\u00e6\u0003\u0002\u0002\u0002", + "\u0573\u0574\u0007N\u0002\u0002\u0574\u0575\u0007G\u0002\u0002\u0575", + "\u0576\u0007C\u0002\u0002\u0576\u0577\u0007F\u0002\u0002\u0577\u0578", + "\u0007K\u0002\u0002\u0578\u0579\u0007P\u0002\u0002\u0579\u057a\u0007", + "I\u0002\u0002\u057a\u00e8\u0003\u0002\u0002\u0002\u057b\u057c\u0007", + "V\u0002\u0002\u057c\u057d\u0007T\u0002\u0002\u057d\u057e\u0007C\u0002", + "\u0002\u057e\u057f\u0007K\u0002\u0002\u057f\u0580\u0007N\u0002\u0002", + "\u0580\u0581\u0007K\u0002\u0002\u0581\u0582\u0007P\u0002\u0002\u0582", + "\u0583\u0007I\u0002\u0002\u0583\u00ea\u0003\u0002\u0002\u0002\u0584", + "\u0585\u0007K\u0002\u0002\u0585\u0586\u0007H\u0002\u0002\u0586\u00ec", + "\u0003\u0002\u0002\u0002\u0587\u0588\u0007R\u0002\u0002\u0588\u0589", + "\u0007Q\u0002\u0002\u0589\u058a\u0007U\u0002\u0002\u058a\u058b\u0007", + "K\u0002\u0002\u058b\u058c\u0007V\u0002\u0002\u058c\u058d\u0007K\u0002", + "\u0002\u058d\u058e\u0007Q\u0002\u0002\u058e\u058f\u0007P\u0002\u0002", + "\u058f\u00ee\u0003\u0002\u0002\u0002\u0590\u0591\u0007G\u0002\u0002", + "\u0591\u0592\u0007Z\u0002\u0002\u0592\u0593\u0007V\u0002\u0002\u0593", + "\u0594\u0007T\u0002\u0002\u0594\u0595\u0007C\u0002\u0002\u0595\u0596", + "\u0007E\u0002\u0002\u0596\u0597\u0007V\u0002\u0002\u0597\u00f0\u0003", + "\u0002\u0002\u0002\u0598\u0599\u0007G\u0002\u0002\u0599\u059a\u0007", + "S\u0002\u0002\u059a\u00f2\u0003\u0002\u0002\u0002\u059b\u059c\u0007", + "P\u0002\u0002\u059c\u059d\u0007U\u0002\u0002\u059d\u059e\u0007G\u0002", + "\u0002\u059e\u059f\u0007S\u0002\u0002\u059f\u00f4\u0003\u0002\u0002", + "\u0002\u05a0\u05a1\u0007P\u0002\u0002\u05a1\u05a2\u0007G\u0002\u0002", + "\u05a2\u05a3\u0007S\u0002\u0002\u05a3\u00f6\u0003\u0002\u0002\u0002", + "\u05a4\u05a5\u0007P\u0002\u0002\u05a5\u05a6\u0007G\u0002\u0002\u05a6", + "\u05a7\u0007S\u0002\u0002\u05a7\u05a8\u0007L\u0002\u0002\u05a8\u00f8", + "\u0003\u0002\u0002\u0002\u05a9\u05aa\u0007N\u0002\u0002\u05aa\u05ab", + "\u0007V\u0002\u0002\u05ab\u00fa\u0003\u0002\u0002\u0002\u05ac\u05ad", + "\u0007N\u0002\u0002\u05ad\u05ae\u0007V\u0002\u0002\u05ae\u05af\u0007", + "G\u0002\u0002\u05af\u00fc\u0003\u0002\u0002\u0002\u05b0\u05b1\u0007", + "I\u0002\u0002\u05b1\u05b2\u0007V\u0002\u0002\u05b2\u00fe\u0003\u0002", + "\u0002\u0002\u05b3\u05b4\u0007I\u0002\u0002\u05b4\u05b5\u0007V\u0002", + "\u0002\u05b5\u05b6\u0007G\u0002\u0002\u05b6\u0100\u0003\u0002\u0002", + "\u0002\u05b7\u05b8\u0007R\u0002\u0002\u05b8\u05b9\u0007N\u0002\u0002", + "\u05b9\u05ba\u0007W\u0002\u0002\u05ba\u05bb\u0007U\u0002\u0002\u05bb", + "\u0102\u0003\u0002\u0002\u0002\u05bc\u05bd\u0007O\u0002\u0002\u05bd", + "\u05be\u0007K\u0002\u0002\u05be\u05bf\u0007P\u0002\u0002\u05bf\u05c0", + "\u0007W\u0002\u0002\u05c0\u05c1\u0007U\u0002\u0002\u05c1\u0104\u0003", + "\u0002\u0002\u0002\u05c2\u05c3\u0007C\u0002\u0002\u05c3\u05c4\u0007", + "U\u0002\u0002\u05c4\u05c5\u0007V\u0002\u0002\u05c5\u05c6\u0007G\u0002", + "\u0002\u05c6\u05c7\u0007T\u0002\u0002\u05c7\u05c8\u0007K\u0002\u0002", + "\u05c8\u05c9\u0007U\u0002\u0002\u05c9\u05ca\u0007M\u0002\u0002\u05ca", + "\u0106\u0003\u0002\u0002\u0002\u05cb\u05cc\u0007U\u0002\u0002\u05cc", + "\u05cd\u0007N\u0002\u0002\u05cd\u05ce\u0007C\u0002\u0002\u05ce\u05cf", + "\u0007U\u0002\u0002\u05cf\u05d0\u0007J\u0002\u0002\u05d0\u0108\u0003", + "\u0002\u0002\u0002\u05d1\u05d2\u0007R\u0002\u0002\u05d2\u05d3\u0007", + "G\u0002\u0002\u05d3\u05d4\u0007T\u0002\u0002\u05d4\u05d5\u0007E\u0002", + "\u0002\u05d5\u05d6\u0007G\u0002\u0002\u05d6\u05d7\u0007P\u0002\u0002", + "\u05d7\u05d8\u0007V\u0002\u0002\u05d8\u010a\u0003\u0002\u0002\u0002", + "\u05d9\u05da\u0007F\u0002\u0002\u05da\u05db\u0007K\u0002\u0002\u05db", + "\u05dc\u0007X\u0002\u0002\u05dc\u010c\u0003\u0002\u0002\u0002\u05dd", + "\u05de\u0007V\u0002\u0002\u05de\u05df\u0007K\u0002\u0002\u05df\u05e0", + "\u0007N\u0002\u0002\u05e0\u05e1\u0007F\u0002\u0002\u05e1\u05e2\u0007", + "G\u0002\u0002\u05e2\u010e\u0003\u0002\u0002\u0002\u05e3\u05e4\u0007", + "C\u0002\u0002\u05e4\u05e5\u0007O\u0002\u0002\u05e5\u05e6\u0007R\u0002", + "\u0002\u05e6\u05e7\u0007G\u0002\u0002\u05e7\u05e8\u0007T\u0002\u0002", + "\u05e8\u05e9\u0007U\u0002\u0002\u05e9\u05ea\u0007C\u0002\u0002\u05ea", + "\u05eb\u0007P\u0002\u0002\u05eb\u05ec\u0007F\u0002\u0002\u05ec\u0110", + "\u0003\u0002\u0002\u0002\u05ed\u05ee\u0007R\u0002\u0002\u05ee\u05ef", + "\u0007K\u0002\u0002\u05ef\u05f0\u0007R\u0002\u0002\u05f0\u05f1\u0007", + "G\u0002\u0002\u05f1\u0112\u0003\u0002\u0002\u0002\u05f2\u05f3\u0007", + "E\u0002\u0002\u05f3\u05f4\u0007Q\u0002\u0002\u05f4\u05f5\u0007P\u0002", + "\u0002\u05f5\u05f6\u0007E\u0002\u0002\u05f6\u05f7\u0007C\u0002\u0002", + "\u05f7\u05f8\u0007V\u0002\u0002\u05f8\u05f9\u0007a\u0002\u0002\u05f9", + "\u05fa\u0007R\u0002\u0002\u05fa\u05fb\u0007K\u0002\u0002\u05fb\u05fc", + "\u0007R\u0002\u0002\u05fc\u05fd\u0007G\u0002\u0002\u05fd\u0114\u0003", + "\u0002\u0002\u0002\u05fe\u05ff\u0007J\u0002\u0002\u05ff\u0600\u0007", + "C\u0002\u0002\u0600\u0601\u0007V\u0002\u0002\u0601\u0116\u0003\u0002", + "\u0002\u0002\u0602\u0603\u0007R\u0002\u0002\u0603\u0604\u0007G\u0002", + "\u0002\u0604\u0605\u0007T\u0002\u0002\u0605\u0606\u0007E\u0002\u0002", + "\u0606\u0607\u0007G\u0002\u0002\u0607\u0608\u0007P\u0002\u0002\u0608", + "\u0609\u0007V\u0002\u0002\u0609\u060a\u0007N\u0002\u0002\u060a\u060b", + "\u0007K\u0002\u0002\u060b\u060c\u0007V\u0002\u0002\u060c\u0118\u0003", + "\u0002\u0002\u0002\u060d\u060e\u0007D\u0002\u0002\u060e\u060f\u0007", + "W\u0002\u0002\u060f\u0610\u0007E\u0002\u0002\u0610\u0611\u0007M\u0002", + "\u0002\u0611\u0612\u0007G\u0002\u0002\u0612\u0613\u0007V\u0002\u0002", + "\u0613\u011a\u0003\u0002\u0002\u0002\u0614\u0615\u0007Q\u0002\u0002", + "\u0615\u0616\u0007W\u0002\u0002\u0616\u0617\u0007V\u0002\u0002\u0617", + "\u011c\u0003\u0002\u0002\u0002\u0618\u0619\u0007Q\u0002\u0002\u0619", + "\u061a\u0007H\u0002\u0002\u061a\u011e\u0003\u0002\u0002\u0002\u061b", + "\u061c\u0007U\u0002\u0002\u061c\u061d\u0007Q\u0002\u0002\u061d\u061e", + "\u0007T\u0002\u0002\u061e\u061f\u0007V\u0002\u0002\u061f\u0120\u0003", + "\u0002\u0002\u0002\u0620\u0621\u0007E\u0002\u0002\u0621\u0622\u0007", + "N\u0002\u0002\u0622\u0623\u0007W\u0002\u0002\u0623\u0624\u0007U\u0002", + "\u0002\u0624\u0625\u0007V\u0002\u0002\u0625\u0626\u0007G\u0002\u0002", + "\u0626\u0627\u0007T\u0002\u0002\u0627\u0122\u0003\u0002\u0002\u0002", + "\u0628\u0629\u0007F\u0002\u0002\u0629\u062a\u0007K\u0002\u0002\u062a", + "\u062b\u0007U\u0002\u0002\u062b\u062c\u0007V\u0002\u0002\u062c\u062d", + "\u0007T\u0002\u0002\u062d\u062e\u0007K\u0002\u0002\u062e\u062f\u0007", + "D\u0002\u0002\u062f\u0630\u0007W\u0002\u0002\u0630\u0631\u0007V\u0002", + "\u0002\u0631\u0632\u0007G\u0002\u0002\u0632\u0124\u0003\u0002\u0002", + "\u0002\u0633\u0634\u0007Q\u0002\u0002\u0634\u0635\u0007X\u0002\u0002", + "\u0635\u0636\u0007G\u0002\u0002\u0636\u0637\u0007T\u0002\u0002\u0637", + "\u0638\u0007Y\u0002\u0002\u0638\u0639\u0007T\u0002\u0002\u0639\u063a", + "\u0007K\u0002\u0002\u063a\u063b\u0007V\u0002\u0002\u063b\u063c\u0007", + "G\u0002\u0002\u063c\u0126\u0003\u0002\u0002\u0002\u063d\u063e\u0007", + "V\u0002\u0002\u063e\u063f\u0007T\u0002\u0002\u063f\u0640\u0007C\u0002", + "\u0002\u0640\u0641\u0007P\u0002\u0002\u0641\u0642\u0007U\u0002\u0002", + "\u0642\u0643\u0007H\u0002\u0002\u0643\u0644\u0007Q\u0002\u0002\u0644", + "\u0645\u0007T\u0002\u0002\u0645\u0646\u0007O\u0002\u0002\u0646\u0128", + "\u0003\u0002\u0002\u0002\u0647\u0648\u0007T\u0002\u0002\u0648\u0649", + "\u0007G\u0002\u0002\u0649\u064a\u0007F\u0002\u0002\u064a\u064b\u0007", + "W\u0002\u0002\u064b\u064c\u0007E\u0002\u0002\u064c\u064d\u0007G\u0002", + "\u0002\u064d\u012a\u0003\u0002\u0002\u0002\u064e\u064f\u0007W\u0002", + "\u0002\u064f\u0650\u0007U\u0002\u0002\u0650\u0651\u0007K\u0002\u0002", + "\u0651\u0652\u0007P\u0002\u0002\u0652\u0653\u0007I\u0002\u0002\u0653", + "\u012c\u0003\u0002\u0002\u0002\u0654\u0655\u0007U\u0002\u0002\u0655", + "\u0656\u0007G\u0002\u0002\u0656\u0657\u0007T\u0002\u0002\u0657\u0658", + "\u0007F\u0002\u0002\u0658\u0659\u0007G\u0002\u0002\u0659\u012e\u0003", + "\u0002\u0002\u0002\u065a\u065b\u0007U\u0002\u0002\u065b\u065c\u0007", + "G\u0002\u0002\u065c\u065d\u0007T\u0002\u0002\u065d\u065e\u0007F\u0002", + "\u0002\u065e\u065f\u0007G\u0002\u0002\u065f\u0660\u0007R\u0002\u0002", + "\u0660\u0661\u0007T\u0002\u0002\u0661\u0662\u0007Q\u0002\u0002\u0662", + "\u0663\u0007R\u0002\u0002\u0663\u0664\u0007G\u0002\u0002\u0664\u0665", + "\u0007T\u0002\u0002\u0665\u0666\u0007V\u0002\u0002\u0666\u0667\u0007", + "K\u0002\u0002\u0667\u0668\u0007G\u0002\u0002\u0668\u0669\u0007U\u0002", + "\u0002\u0669\u0130\u0003\u0002\u0002\u0002\u066a\u066b\u0007T\u0002", + "\u0002\u066b\u066c\u0007G\u0002\u0002\u066c\u066d\u0007E\u0002\u0002", + "\u066d\u066e\u0007Q\u0002\u0002\u066e\u066f\u0007T\u0002\u0002\u066f", + "\u0670\u0007F\u0002\u0002\u0670\u0671\u0007T\u0002\u0002\u0671\u0672", + "\u0007G\u0002\u0002\u0672\u0673\u0007C\u0002\u0002\u0673\u0674\u0007", + "F\u0002\u0002\u0674\u0675\u0007G\u0002\u0002\u0675\u0676\u0007T\u0002", + "\u0002\u0676\u0132\u0003\u0002\u0002\u0002\u0677\u0678\u0007T\u0002", + "\u0002\u0678\u0679\u0007G\u0002\u0002\u0679\u067a\u0007E\u0002\u0002", + "\u067a\u067b\u0007Q\u0002\u0002\u067b\u067c\u0007T\u0002\u0002\u067c", + "\u067d\u0007F\u0002\u0002\u067d\u067e\u0007Y\u0002\u0002\u067e\u067f", + "\u0007T\u0002\u0002\u067f\u0680\u0007K\u0002\u0002\u0680\u0681\u0007", + "V\u0002\u0002\u0681\u0682\u0007G\u0002\u0002\u0682\u0683\u0007T\u0002", + "\u0002\u0683\u0134\u0003\u0002\u0002\u0002\u0684\u0685\u0007F\u0002", + "\u0002\u0685\u0686\u0007G\u0002\u0002\u0686\u0687\u0007N\u0002\u0002", + "\u0687\u0688\u0007K\u0002\u0002\u0688\u0689\u0007O\u0002\u0002\u0689", + "\u068a\u0007K\u0002\u0002\u068a\u068b\u0007V\u0002\u0002\u068b\u068c", + "\u0007G\u0002\u0002\u068c\u068d\u0007F\u0002\u0002\u068d\u0136\u0003", + "\u0002\u0002\u0002\u068e\u068f\u0007H\u0002\u0002\u068f\u0690\u0007", + "K\u0002\u0002\u0690\u0691\u0007G\u0002\u0002\u0691\u0692\u0007N\u0002", + "\u0002\u0692\u0693\u0007F\u0002\u0002\u0693\u0694\u0007U\u0002\u0002", + "\u0694\u0138\u0003\u0002\u0002\u0002\u0695\u0696\u0007V\u0002\u0002", + "\u0696\u0697\u0007G\u0002\u0002\u0697\u0698\u0007T\u0002\u0002\u0698", + "\u0699\u0007O\u0002\u0002\u0699\u069a\u0007K\u0002\u0002\u069a\u069b", + "\u0007P\u0002\u0002\u069b\u069c\u0007C\u0002\u0002\u069c\u069d\u0007", + "V\u0002\u0002\u069d\u069e\u0007G\u0002\u0002\u069e\u069f\u0007F\u0002", + "\u0002\u069f\u013a\u0003\u0002\u0002\u0002\u06a0\u06a1\u0007E\u0002", + "\u0002\u06a1\u06a2\u0007Q\u0002\u0002\u06a2\u06a3\u0007N\u0002\u0002", + "\u06a3\u06a4\u0007N\u0002\u0002\u06a4\u06a5\u0007G\u0002\u0002\u06a5", + "\u06a6\u0007E\u0002\u0002\u06a6\u06a7\u0007V\u0002\u0002\u06a7\u06a8", + "\u0007K\u0002\u0002\u06a8\u06a9\u0007Q\u0002\u0002\u06a9\u06aa\u0007", + "P\u0002\u0002\u06aa\u013c\u0003\u0002\u0002\u0002\u06ab\u06ac\u0007", + "K\u0002\u0002\u06ac\u06ad\u0007V\u0002\u0002\u06ad\u06ae\u0007G\u0002", + "\u0002\u06ae\u06af\u0007O\u0002\u0002\u06af\u06b0\u0007U\u0002\u0002", + "\u06b0\u013e\u0003\u0002\u0002\u0002\u06b1\u06b2\u0007M\u0002\u0002", + "\u06b2\u06b3\u0007G\u0002\u0002\u06b3\u06b4\u0007[\u0002\u0002\u06b4", + "\u06b5\u0007U\u0002\u0002\u06b5\u0140\u0003\u0002\u0002\u0002\u06b6", + "\u06b7\u0007G\u0002\u0002\u06b7\u06b8\u0007U\u0002\u0002\u06b8\u06b9", + "\u0007E\u0002\u0002\u06b9\u06ba\u0007C\u0002\u0002\u06ba\u06bb\u0007", + "R\u0002\u0002\u06bb\u06bc\u0007G\u0002\u0002\u06bc\u06bd\u0007F\u0002", + "\u0002\u06bd\u0142\u0003\u0002\u0002\u0002\u06be\u06bf\u0007N\u0002", + "\u0002\u06bf\u06c0\u0007K\u0002\u0002\u06c0\u06c1\u0007P\u0002\u0002", + "\u06c1\u06c2\u0007G\u0002\u0002\u06c2\u06c3\u0007U\u0002\u0002\u06c3", + "\u0144\u0003\u0002\u0002\u0002\u06c4\u06c5\u0007U\u0002\u0002\u06c5", + "\u06c6\u0007G\u0002\u0002\u06c6\u06c7\u0007R\u0002\u0002\u06c7\u06c8", + "\u0007C\u0002\u0002\u06c8\u06c9\u0007T\u0002\u0002\u06c9\u06ca\u0007", + "C\u0002\u0002\u06ca\u06cb\u0007V\u0002\u0002\u06cb\u06cc\u0007G\u0002", + "\u0002\u06cc\u06cd\u0007F\u0002\u0002\u06cd\u0146\u0003\u0002\u0002", + "\u0002\u06ce\u06cf\u0007H\u0002\u0002\u06cf\u06d0\u0007W\u0002\u0002", + "\u06d0\u06d1\u0007P\u0002\u0002\u06d1\u06d2\u0007E\u0002\u0002\u06d2", + "\u06d3\u0007V\u0002\u0002\u06d3\u06d4\u0007K\u0002\u0002\u06d4\u06d5", + "\u0007Q\u0002\u0002\u06d5\u06d6\u0007P\u0002\u0002\u06d6\u0148\u0003", + "\u0002\u0002\u0002\u06d7\u06d8\u0007G\u0002\u0002\u06d8\u06d9\u0007", + "Z\u0002\u0002\u06d9\u06da\u0007V\u0002\u0002\u06da\u06db\u0007G\u0002", + "\u0002\u06db\u06dc\u0007P\u0002\u0002\u06dc\u06dd\u0007F\u0002\u0002", + "\u06dd\u06de\u0007G\u0002\u0002\u06de\u06df\u0007F\u0002\u0002\u06df", + "\u014a\u0003\u0002\u0002\u0002\u06e0\u06e1\u0007T\u0002\u0002\u06e1", + "\u06e2\u0007G\u0002\u0002\u06e2\u06e3\u0007H\u0002\u0002\u06e3\u06e4", + "\u0007T\u0002\u0002\u06e4\u06e5\u0007G\u0002\u0002\u06e5\u06e6\u0007", + "U\u0002\u0002\u06e6\u06e7\u0007J\u0002\u0002\u06e7\u014c\u0003\u0002", + "\u0002\u0002\u06e8\u06e9\u0007E\u0002\u0002\u06e9\u06ea\u0007N\u0002", + "\u0002\u06ea\u06eb\u0007G\u0002\u0002\u06eb\u06ec\u0007C\u0002\u0002", + "\u06ec\u06ed\u0007T\u0002\u0002\u06ed\u014e\u0003\u0002\u0002\u0002", + "\u06ee\u06ef\u0007E\u0002\u0002\u06ef\u06f0\u0007C\u0002\u0002\u06f0", + "\u06f1\u0007E\u0002\u0002\u06f1\u06f2\u0007J\u0002\u0002\u06f2\u06f3", + "\u0007G\u0002\u0002\u06f3\u0150\u0003\u0002\u0002\u0002\u06f4\u06f5", + "\u0007W\u0002\u0002\u06f5\u06f6\u0007P\u0002\u0002\u06f6\u06f7\u0007", + "E\u0002\u0002\u06f7\u06f8\u0007C\u0002\u0002\u06f8\u06f9\u0007E\u0002", + "\u0002\u06f9\u06fa\u0007J\u0002\u0002\u06fa\u06fb\u0007G\u0002\u0002", + "\u06fb\u0152\u0003\u0002\u0002\u0002\u06fc\u06fd\u0007N\u0002\u0002", + "\u06fd\u06fe\u0007C\u0002\u0002\u06fe\u06ff\u0007\\\u0002\u0002\u06ff", + "\u0700\u0007[\u0002\u0002\u0700\u0154\u0003\u0002\u0002\u0002\u0701", + "\u0702\u0007H\u0002\u0002\u0702\u0703\u0007Q\u0002\u0002\u0703\u0704", + "\u0007T\u0002\u0002\u0704\u0705\u0007O\u0002\u0002\u0705\u0706\u0007", + "C\u0002\u0002\u0706\u0707\u0007V\u0002\u0002\u0707\u0708\u0007V\u0002", + "\u0002\u0708\u0709\u0007G\u0002\u0002\u0709\u070a\u0007F\u0002\u0002", + "\u070a\u0156\u0003\u0002\u0002\u0002\u070b\u070c\u0007I\u0002\u0002", + "\u070c\u070d\u0007N\u0002\u0002\u070d\u070e\u0007Q\u0002\u0002\u070e", + "\u070f\u0007D\u0002\u0002\u070f\u0710\u0007C\u0002\u0002\u0710\u0711", + "\u0007N\u0002\u0002\u0711\u0158\u0003\u0002\u0002\u0002\u0712\u0713", + "\u0007V\u0002\u0002\u0713\u0714\u0007G\u0002\u0002\u0714\u0715\u0007", + "O\u0002\u0002\u0715\u0716\u0007R\u0002\u0002\u0716\u0717\u0007Q\u0002", + "\u0002\u0717\u0718\u0007T\u0002\u0002\u0718\u0719\u0007C\u0002\u0002", + "\u0719\u071a\u0007T\u0002\u0002\u071a\u071b\u0007[\u0002\u0002\u071b", + "\u015a\u0003\u0002\u0002\u0002\u071c\u071d\u0007Q\u0002\u0002\u071d", + "\u071e\u0007R\u0002\u0002\u071e\u071f\u0007V\u0002\u0002\u071f\u0720", + "\u0007K\u0002\u0002\u0720\u0721\u0007Q\u0002\u0002\u0721\u0722\u0007", + "P\u0002\u0002\u0722\u0723\u0007U\u0002\u0002\u0723\u015c\u0003\u0002", + "\u0002\u0002\u0724\u0725\u0007W\u0002\u0002\u0725\u0726\u0007P\u0002", + "\u0002\u0726\u0727\u0007U\u0002\u0002\u0727\u0728\u0007G\u0002\u0002", + "\u0728\u0729\u0007V\u0002\u0002\u0729\u015e\u0003\u0002\u0002\u0002", + "\u072a\u072b\u0007V\u0002\u0002\u072b\u072c\u0007D\u0002\u0002\u072c", + "\u072d\u0007N\u0002\u0002\u072d\u072e\u0007R\u0002\u0002\u072e\u072f", + "\u0007T\u0002\u0002\u072f\u0730\u0007Q\u0002\u0002\u0730\u0731\u0007", + "R\u0002\u0002\u0731\u0732\u0007G\u0002\u0002\u0732\u0733\u0007T\u0002", + "\u0002\u0733\u0734\u0007V\u0002\u0002\u0734\u0735\u0007K\u0002\u0002", + "\u0735\u0736\u0007G\u0002\u0002\u0736\u0737\u0007U\u0002\u0002\u0737", + "\u0160\u0003\u0002\u0002\u0002\u0738\u0739\u0007F\u0002\u0002\u0739", + "\u073a\u0007D\u0002\u0002\u073a\u073b\u0007R\u0002\u0002\u073b\u073c", + "\u0007T\u0002\u0002\u073c\u073d\u0007Q\u0002\u0002\u073d\u073e\u0007", + "R\u0002\u0002\u073e\u073f\u0007G\u0002\u0002\u073f\u0740\u0007T\u0002", + "\u0002\u0740\u0741\u0007V\u0002\u0002\u0741\u0742\u0007K\u0002\u0002", + "\u0742\u0743\u0007G\u0002\u0002\u0743\u0744\u0007U\u0002\u0002\u0744", + "\u0162\u0003\u0002\u0002\u0002\u0745\u0746\u0007D\u0002\u0002\u0746", + "\u0747\u0007W\u0002\u0002\u0747\u0748\u0007E\u0002\u0002\u0748\u0749", + "\u0007M\u0002\u0002\u0749\u074a\u0007G\u0002\u0002\u074a\u074b\u0007", + "V\u0002\u0002\u074b\u074c\u0007U\u0002\u0002\u074c\u0164\u0003\u0002", + "\u0002\u0002\u074d\u074e\u0007U\u0002\u0002\u074e\u074f\u0007M\u0002", + "\u0002\u074f\u0750\u0007G\u0002\u0002\u0750\u0751\u0007Y\u0002\u0002", + "\u0751\u0752\u0007G\u0002\u0002\u0752\u0753\u0007F\u0002\u0002\u0753", + "\u0166\u0003\u0002\u0002\u0002\u0754\u0755\u0007U\u0002\u0002\u0755", + "\u0756\u0007V\u0002\u0002\u0756\u0757\u0007Q\u0002\u0002\u0757\u0758", + "\u0007T\u0002\u0002\u0758\u0759\u0007G\u0002\u0002\u0759\u075a\u0007", + "F\u0002\u0002\u075a\u0168\u0003\u0002\u0002\u0002\u075b\u075c\u0007", + "F\u0002\u0002\u075c\u075d\u0007K\u0002\u0002\u075d\u075e\u0007T\u0002", + "\u0002\u075e\u075f\u0007G\u0002\u0002\u075f\u0760\u0007E\u0002\u0002", + "\u0760\u0761\u0007V\u0002\u0002\u0761\u0762\u0007Q\u0002\u0002\u0762", + "\u0763\u0007T\u0002\u0002\u0763\u0764\u0007K\u0002\u0002\u0764\u0765", + "\u0007G\u0002\u0002\u0765\u0766\u0007U\u0002\u0002\u0766\u016a\u0003", + "\u0002\u0002\u0002\u0767\u0768\u0007N\u0002\u0002\u0768\u0769\u0007", + "Q\u0002\u0002\u0769\u076a\u0007E\u0002\u0002\u076a\u076b\u0007C\u0002", + "\u0002\u076b\u076c\u0007V\u0002\u0002\u076c\u076d\u0007K\u0002\u0002", + "\u076d\u076e\u0007Q\u0002\u0002\u076e\u076f\u0007P\u0002\u0002\u076f", + "\u016c\u0003\u0002\u0002\u0002\u0770\u0771\u0007G\u0002\u0002\u0771", + "\u0772\u0007Z\u0002\u0002\u0772\u0773\u0007E\u0002\u0002\u0773\u0774", + "\u0007J\u0002\u0002\u0774\u0775\u0007C\u0002\u0002\u0775\u0776\u0007", + "P\u0002\u0002\u0776\u0777\u0007I\u0002\u0002\u0777\u0778\u0007G\u0002", + "\u0002\u0778\u016e\u0003\u0002\u0002\u0002\u0779\u077a\u0007C\u0002", + "\u0002\u077a\u077b\u0007T\u0002\u0002\u077b\u077c\u0007E\u0002\u0002", + "\u077c\u077d\u0007J\u0002\u0002\u077d\u077e\u0007K\u0002\u0002\u077e", + "\u077f\u0007X\u0002\u0002\u077f\u0780\u0007G\u0002\u0002\u0780\u0170", + "\u0003\u0002\u0002\u0002\u0781\u0782\u0007W\u0002\u0002\u0782\u0783", + "\u0007P\u0002\u0002\u0783\u0784\u0007C\u0002\u0002\u0784\u0785\u0007", + "T\u0002\u0002\u0785\u0786\u0007E\u0002\u0002\u0786\u0787\u0007J\u0002", + "\u0002\u0787\u0788\u0007K\u0002\u0002\u0788\u0789\u0007X\u0002\u0002", + "\u0789\u078a\u0007G\u0002\u0002\u078a\u0172\u0003\u0002\u0002\u0002", + "\u078b\u078c\u0007H\u0002\u0002\u078c\u078d\u0007K\u0002\u0002\u078d", + "\u078e\u0007N\u0002\u0002\u078e\u078f\u0007G\u0002\u0002\u078f\u0790", + "\u0007H\u0002\u0002\u0790\u0791\u0007Q\u0002\u0002\u0791\u0792\u0007", + "T\u0002\u0002\u0792\u0793\u0007O\u0002\u0002\u0793\u0794\u0007C\u0002", + "\u0002\u0794\u0795\u0007V\u0002\u0002\u0795\u0174\u0003\u0002\u0002", + "\u0002\u0796\u0797\u0007V\u0002\u0002\u0797\u0798\u0007Q\u0002\u0002", + "\u0798\u0799\u0007W\u0002\u0002\u0799\u079a\u0007E\u0002\u0002\u079a", + "\u079b\u0007J\u0002\u0002\u079b\u0176\u0003\u0002\u0002\u0002\u079c", + "\u079d\u0007E\u0002\u0002\u079d\u079e\u0007Q\u0002\u0002\u079e\u079f", + "\u0007O\u0002\u0002\u079f\u07a0\u0007R\u0002\u0002\u07a0\u07a1\u0007", + "C\u0002\u0002\u07a1\u07a2\u0007E\u0002\u0002\u07a2\u07a3\u0007V\u0002", + "\u0002\u07a3\u0178\u0003\u0002\u0002\u0002\u07a4\u07a5\u0007E\u0002", + "\u0002\u07a5\u07a6\u0007Q\u0002\u0002\u07a6\u07a7\u0007P\u0002\u0002", + "\u07a7\u07a8\u0007E\u0002\u0002\u07a8\u07a9\u0007C\u0002\u0002\u07a9", + "\u07aa\u0007V\u0002\u0002\u07aa\u07ab\u0007G\u0002\u0002\u07ab\u07ac", + "\u0007P\u0002\u0002\u07ac\u07ad\u0007C\u0002\u0002\u07ad\u07ae\u0007", + "V\u0002\u0002\u07ae\u07af\u0007G\u0002\u0002\u07af\u017a\u0003\u0002", + "\u0002\u0002\u07b0\u07b1\u0007E\u0002\u0002\u07b1\u07b2\u0007J\u0002", + "\u0002\u07b2\u07b3\u0007C\u0002\u0002\u07b3\u07b4\u0007P\u0002\u0002", + "\u07b4\u07b5\u0007I\u0002\u0002\u07b5\u07b6\u0007G\u0002\u0002\u07b6", + "\u017c\u0003\u0002\u0002\u0002\u07b7\u07b8\u0007E\u0002\u0002\u07b8", + "\u07b9\u0007C\u0002\u0002\u07b9\u07ba\u0007U\u0002\u0002\u07ba\u07bb", + "\u0007E\u0002\u0002\u07bb\u07bc\u0007C\u0002\u0002\u07bc\u07bd\u0007", + "F\u0002\u0002\u07bd\u07be\u0007G\u0002\u0002\u07be\u017e\u0003\u0002", + "\u0002\u0002\u07bf\u07c0\u0007T\u0002\u0002\u07c0\u07c1\u0007G\u0002", + "\u0002\u07c1\u07c2\u0007U\u0002\u0002\u07c2\u07c3\u0007V\u0002\u0002", + "\u07c3\u07c4\u0007T\u0002\u0002\u07c4\u07c5\u0007K\u0002\u0002\u07c5", + "\u07c6\u0007E\u0002\u0002\u07c6\u07c7\u0007V\u0002\u0002\u07c7\u0180", + "\u0003\u0002\u0002\u0002\u07c8\u07c9\u0007E\u0002\u0002\u07c9\u07ca", + "\u0007N\u0002\u0002\u07ca\u07cb\u0007W\u0002\u0002\u07cb\u07cc\u0007", + "U\u0002\u0002\u07cc\u07cd\u0007V\u0002\u0002\u07cd\u07ce\u0007G\u0002", + "\u0002\u07ce\u07cf\u0007T\u0002\u0002\u07cf\u07d0\u0007G\u0002\u0002", + "\u07d0\u07d1\u0007F\u0002\u0002\u07d1\u0182\u0003\u0002\u0002\u0002", + "\u07d2\u07d3\u0007U\u0002\u0002\u07d3\u07d4\u0007Q\u0002\u0002\u07d4", + "\u07d5\u0007T\u0002\u0002\u07d5\u07d6\u0007V\u0002\u0002\u07d6\u07d7", + "\u0007G\u0002\u0002\u07d7\u07d8\u0007F\u0002\u0002\u07d8\u0184\u0003", + "\u0002\u0002\u0002\u07d9\u07da\u0007R\u0002\u0002\u07da\u07db\u0007", + "W\u0002\u0002\u07db\u07dc\u0007T\u0002\u0002\u07dc\u07dd\u0007I\u0002", + "\u0002\u07dd\u07de\u0007G\u0002\u0002\u07de\u0186\u0003\u0002\u0002", + "\u0002\u07df\u07e0\u0007K\u0002\u0002\u07e0\u07e1\u0007P\u0002\u0002", + "\u07e1\u07e2\u0007R\u0002\u0002\u07e2\u07e3\u0007W\u0002\u0002\u07e3", + "\u07e4\u0007V\u0002\u0002\u07e4\u07e5\u0007H\u0002\u0002\u07e5\u07e6", + "\u0007Q\u0002\u0002\u07e6\u07e7\u0007T\u0002\u0002\u07e7\u07e8\u0007", + "O\u0002\u0002\u07e8\u07e9\u0007C\u0002\u0002\u07e9\u07ea\u0007V\u0002", + "\u0002\u07ea\u0188\u0003\u0002\u0002\u0002\u07eb\u07ec\u0007Q\u0002", + "\u0002\u07ec\u07ed\u0007W\u0002\u0002\u07ed\u07ee\u0007V\u0002\u0002", + "\u07ee\u07ef\u0007R\u0002\u0002\u07ef\u07f0\u0007W\u0002\u0002\u07f0", + "\u07f1\u0007V\u0002\u0002\u07f1\u07f2\u0007H\u0002\u0002\u07f2\u07f3", + "\u0007Q\u0002\u0002\u07f3\u07f4\u0007T\u0002\u0002\u07f4\u07f5\u0007", + "O\u0002\u0002\u07f5\u07f6\u0007C\u0002\u0002\u07f6\u07f7\u0007V\u0002", + "\u0002\u07f7\u018a\u0003\u0002\u0002\u0002\u07f8\u07f9\u0007F\u0002", + "\u0002\u07f9\u07fa\u0007C\u0002\u0002\u07fa\u07fb\u0007V\u0002\u0002", + "\u07fb\u07fc\u0007C\u0002\u0002\u07fc\u07fd\u0007D\u0002\u0002\u07fd", + "\u07fe\u0007C\u0002\u0002\u07fe\u07ff\u0007U\u0002\u0002\u07ff\u0800", + "\u0007G\u0002\u0002\u0800\u018c\u0003\u0002\u0002\u0002\u0801\u0802", + "\u0007F\u0002\u0002\u0802\u0803\u0007C\u0002\u0002\u0803\u0804\u0007", + "V\u0002\u0002\u0804\u0805\u0007C\u0002\u0002\u0805\u0806\u0007D\u0002", + "\u0002\u0806\u0807\u0007C\u0002\u0002\u0807\u0808\u0007U\u0002\u0002", + "\u0808\u0809\u0007G\u0002\u0002\u0809\u080a\u0007U\u0002\u0002\u080a", + "\u018e\u0003\u0002\u0002\u0002\u080b\u080c\u0007F\u0002\u0002\u080c", + "\u080d\u0007H\u0002\u0002\u080d\u080e\u0007U\u0002\u0002\u080e\u0190", + "\u0003\u0002\u0002\u0002\u080f\u0810\u0007V\u0002\u0002\u0810\u0811", + "\u0007T\u0002\u0002\u0811\u0812\u0007W\u0002\u0002\u0812\u0813\u0007", + "P\u0002\u0002\u0813\u0814\u0007E\u0002\u0002\u0814\u0815\u0007C\u0002", + "\u0002\u0815\u0816\u0007V\u0002\u0002\u0816\u0817\u0007G\u0002\u0002", + "\u0817\u0192\u0003\u0002\u0002\u0002\u0818\u0819\u0007C\u0002\u0002", + "\u0819\u081a\u0007P\u0002\u0002\u081a\u081b\u0007C\u0002\u0002\u081b", + "\u081c\u0007N\u0002\u0002\u081c\u081d\u0007[\u0002\u0002\u081d\u081e", + "\u0007\\\u0002\u0002\u081e\u081f\u0007G\u0002\u0002\u081f\u0194\u0003", + "\u0002\u0002\u0002\u0820\u0821\u0007E\u0002\u0002\u0821\u0822\u0007", + "Q\u0002\u0002\u0822\u0823\u0007O\u0002\u0002\u0823\u0824\u0007R\u0002", + "\u0002\u0824\u0825\u0007W\u0002\u0002\u0825\u0826\u0007V\u0002\u0002", + "\u0826\u0827\u0007G\u0002\u0002\u0827\u0196\u0003\u0002\u0002\u0002", + "\u0828\u0829\u0007N\u0002\u0002\u0829\u082a\u0007K\u0002\u0002\u082a", + "\u082b\u0007U\u0002\u0002\u082b\u082c\u0007V\u0002\u0002\u082c\u0198", + "\u0003\u0002\u0002\u0002\u082d\u082e\u0007U\u0002\u0002\u082e\u082f", + "\u0007V\u0002\u0002\u082f\u0830\u0007C\u0002\u0002\u0830\u0831\u0007", + "V\u0002\u0002\u0831\u0832\u0007K\u0002\u0002\u0832\u0833\u0007U\u0002", + "\u0002\u0833\u0834\u0007V\u0002\u0002\u0834\u0835\u0007K\u0002\u0002", + "\u0835\u0836\u0007E\u0002\u0002\u0836\u0837\u0007U\u0002\u0002\u0837", + "\u019a\u0003\u0002\u0002\u0002\u0838\u0839\u0007R\u0002\u0002\u0839", + "\u083a\u0007C\u0002\u0002\u083a\u083b\u0007T\u0002\u0002\u083b\u083c", + "\u0007V\u0002\u0002\u083c\u083d\u0007K\u0002\u0002\u083d\u083e\u0007", + "V\u0002\u0002\u083e\u083f\u0007K\u0002\u0002\u083f\u0840\u0007Q\u0002", + "\u0002\u0840\u0841\u0007P\u0002\u0002\u0841\u0842\u0007G\u0002\u0002", + "\u0842\u0843\u0007F\u0002\u0002\u0843\u019c\u0003\u0002\u0002\u0002", + "\u0844\u0845\u0007G\u0002\u0002\u0845\u0846\u0007Z\u0002\u0002\u0846", + "\u0847\u0007V\u0002\u0002\u0847\u0848\u0007G\u0002\u0002\u0848\u0849", + "\u0007T\u0002\u0002\u0849\u084a\u0007P\u0002\u0002\u084a\u084b\u0007", + "C\u0002\u0002\u084b\u084c\u0007N\u0002\u0002\u084c\u019e\u0003\u0002", + "\u0002\u0002\u084d\u084e\u0007F\u0002\u0002\u084e\u084f\u0007G\u0002", + "\u0002\u084f\u0850\u0007H\u0002\u0002\u0850\u0851\u0007K\u0002\u0002", + "\u0851\u0852\u0007P\u0002\u0002\u0852\u0853\u0007G\u0002\u0002\u0853", + "\u0854\u0007F\u0002\u0002\u0854\u01a0\u0003\u0002\u0002\u0002\u0855", + "\u0856\u0007T\u0002\u0002\u0856\u0857\u0007G\u0002\u0002\u0857\u0858", + "\u0007X\u0002\u0002\u0858\u0859\u0007Q\u0002\u0002\u0859\u085a\u0007", + "M\u0002\u0002\u085a\u085b\u0007G\u0002\u0002\u085b\u01a2\u0003\u0002", + "\u0002\u0002\u085c\u085d\u0007I\u0002\u0002\u085d\u085e\u0007T\u0002", + "\u0002\u085e\u085f\u0007C\u0002\u0002\u085f\u0860\u0007P\u0002\u0002", + "\u0860\u0861\u0007V\u0002\u0002\u0861\u01a4\u0003\u0002\u0002\u0002", + "\u0862\u0863\u0007N\u0002\u0002\u0863\u0864\u0007Q\u0002\u0002\u0864", + "\u0865\u0007E\u0002\u0002\u0865\u0866\u0007M\u0002\u0002\u0866\u01a6", + "\u0003\u0002\u0002\u0002\u0867\u0868\u0007W\u0002\u0002\u0868\u0869", + "\u0007P\u0002\u0002\u0869\u086a\u0007N\u0002\u0002\u086a\u086b\u0007", + "Q\u0002\u0002\u086b\u086c\u0007E\u0002\u0002\u086c\u086d\u0007M\u0002", + "\u0002\u086d\u01a8\u0003\u0002\u0002\u0002\u086e\u086f\u0007O\u0002", + "\u0002\u086f\u0870\u0007U\u0002\u0002\u0870\u0871\u0007E\u0002\u0002", + "\u0871\u0872\u0007M\u0002\u0002\u0872\u01aa\u0003\u0002\u0002\u0002", + "\u0873\u0874\u0007T\u0002\u0002\u0874\u0875\u0007G\u0002\u0002\u0875", + "\u0876\u0007R\u0002\u0002\u0876\u0877\u0007C\u0002\u0002\u0877\u0878", + "\u0007K\u0002\u0002\u0878\u0879\u0007T\u0002\u0002\u0879\u01ac\u0003", + "\u0002\u0002\u0002\u087a\u087b\u0007T\u0002\u0002\u087b\u087c\u0007", + "G\u0002\u0002\u087c\u087d\u0007E\u0002\u0002\u087d\u087e\u0007Q\u0002", + "\u0002\u087e\u087f\u0007X\u0002\u0002\u087f\u0880\u0007G\u0002\u0002", + "\u0880\u0881\u0007T\u0002\u0002\u0881\u01ae\u0003\u0002\u0002\u0002", + "\u0882\u0883\u0007G\u0002\u0002\u0883\u0884\u0007Z\u0002\u0002\u0884", + "\u0885\u0007R\u0002\u0002\u0885\u0886\u0007Q\u0002\u0002\u0886\u0887", + "\u0007T\u0002\u0002\u0887\u0888\u0007V\u0002\u0002\u0888\u01b0\u0003", + "\u0002\u0002\u0002\u0889\u088a\u0007K\u0002\u0002\u088a\u088b\u0007", + "O\u0002\u0002\u088b\u088c\u0007R\u0002\u0002\u088c\u088d\u0007Q\u0002", + "\u0002\u088d\u088e\u0007T\u0002\u0002\u088e\u088f\u0007V\u0002\u0002", + "\u088f\u01b2\u0003\u0002\u0002\u0002\u0890\u0891\u0007N\u0002\u0002", + "\u0891\u0892\u0007Q\u0002\u0002\u0892\u0893\u0007C\u0002\u0002\u0893", + "\u0894\u0007F\u0002\u0002\u0894\u01b4\u0003\u0002\u0002\u0002\u0895", + "\u0896\u0007T\u0002\u0002\u0896\u0897\u0007Q\u0002\u0002\u0897\u0898", + "\u0007N\u0002\u0002\u0898\u0899\u0007G\u0002\u0002\u0899\u01b6\u0003", + "\u0002\u0002\u0002\u089a\u089b\u0007T\u0002\u0002\u089b\u089c\u0007", + "Q\u0002\u0002\u089c\u089d\u0007N\u0002\u0002\u089d\u089e\u0007G\u0002", + "\u0002\u089e\u089f\u0007U\u0002\u0002\u089f\u01b8\u0003\u0002\u0002", + "\u0002\u08a0\u08a1\u0007E\u0002\u0002\u08a1\u08a2\u0007Q\u0002\u0002", + "\u08a2\u08a3\u0007O\u0002\u0002\u08a3\u08a4\u0007R\u0002\u0002\u08a4", + "\u08a5\u0007C\u0002\u0002\u08a5\u08a6\u0007E\u0002\u0002\u08a6\u08a7", + "\u0007V\u0002\u0002\u08a7\u08a8\u0007K\u0002\u0002\u08a8\u08a9\u0007", + "Q\u0002\u0002\u08a9\u08aa\u0007P\u0002\u0002\u08aa\u08ab\u0007U\u0002", + "\u0002\u08ab\u01ba\u0003\u0002\u0002\u0002\u08ac\u08ad\u0007R\u0002", + "\u0002\u08ad\u08ae\u0007T\u0002\u0002\u08ae\u08af\u0007K\u0002\u0002", + "\u08af\u08b0\u0007P\u0002\u0002\u08b0\u08b1\u0007E\u0002\u0002\u08b1", + "\u08b2\u0007K\u0002\u0002\u08b2\u08b3\u0007R\u0002\u0002\u08b3\u08b4", + "\u0007C\u0002\u0002\u08b4\u08b5\u0007N\u0002\u0002\u08b5\u08b6\u0007", + "U\u0002\u0002\u08b6\u01bc\u0003\u0002\u0002\u0002\u08b7\u08b8\u0007", + "V\u0002\u0002\u08b8\u08b9\u0007T\u0002\u0002\u08b9\u08ba\u0007C\u0002", + "\u0002\u08ba\u08bb\u0007P\u0002\u0002\u08bb\u08bc\u0007U\u0002\u0002", + "\u08bc\u08bd\u0007C\u0002\u0002\u08bd\u08be\u0007E\u0002\u0002\u08be", + "\u08bf\u0007V\u0002\u0002\u08bf\u08c0\u0007K\u0002\u0002\u08c0\u08c1", + "\u0007Q\u0002\u0002\u08c1\u08c2\u0007P\u0002\u0002\u08c2\u08c3\u0007", + "U\u0002\u0002\u08c3\u01be\u0003\u0002\u0002\u0002\u08c4\u08c5\u0007", + "K\u0002\u0002\u08c5\u08c6\u0007P\u0002\u0002\u08c6\u08c7\u0007F\u0002", + "\u0002\u08c7\u08c8\u0007G\u0002\u0002\u08c8\u08c9\u0007Z\u0002\u0002", + "\u08c9\u01c0\u0003\u0002\u0002\u0002\u08ca\u08cb\u0007K\u0002\u0002", + "\u08cb\u08cc\u0007P\u0002\u0002\u08cc\u08cd\u0007F\u0002\u0002\u08cd", + "\u08ce\u0007G\u0002\u0002\u08ce\u08cf\u0007Z\u0002\u0002\u08cf\u08d0", + "\u0007G\u0002\u0002\u08d0\u08d1\u0007U\u0002\u0002\u08d1\u01c2\u0003", + "\u0002\u0002\u0002\u08d2\u08d3\u0007N\u0002\u0002\u08d3\u08d4\u0007", + "Q\u0002\u0002\u08d4\u08d5\u0007E\u0002\u0002\u08d5\u08d6\u0007M\u0002", + "\u0002\u08d6\u08d7\u0007U\u0002\u0002\u08d7\u01c4\u0003\u0002\u0002", + "\u0002\u08d8\u08d9\u0007Q\u0002\u0002\u08d9\u08da\u0007R\u0002\u0002", + "\u08da\u08db\u0007V\u0002\u0002\u08db\u08dc\u0007K\u0002\u0002\u08dc", + "\u08dd\u0007Q\u0002\u0002\u08dd\u08de\u0007P\u0002\u0002\u08de\u01c6", + "\u0003\u0002\u0002\u0002\u08df\u08e0\u0007C\u0002\u0002\u08e0\u08e1", + "\u0007P\u0002\u0002\u08e1\u08e2\u0007V\u0002\u0002\u08e2\u08e3\u0007", + "K\u0002\u0002\u08e3\u01c8\u0003\u0002\u0002\u0002\u08e4\u08e5\u0007", + "N\u0002\u0002\u08e5\u08e6\u0007Q\u0002\u0002\u08e6\u08e7\u0007E\u0002", + "\u0002\u08e7\u08e8\u0007C\u0002\u0002\u08e8\u08e9\u0007N\u0002\u0002", + "\u08e9\u01ca\u0003\u0002\u0002\u0002\u08ea\u08eb\u0007K\u0002\u0002", + "\u08eb\u08ec\u0007P\u0002\u0002\u08ec\u08ed\u0007R\u0002\u0002\u08ed", + "\u08ee\u0007C\u0002\u0002\u08ee\u08ef\u0007V\u0002\u0002\u08ef\u08f0", + "\u0007J\u0002\u0002\u08f0\u01cc\u0003\u0002\u0002\u0002\u08f1\u08f2", + "\u0007Y\u0002\u0002\u08f2\u08f3\u0007C\u0002\u0002\u08f3\u08f4\u0007", + "V\u0002\u0002\u08f4\u08f5\u0007G\u0002\u0002\u08f5\u08f6\u0007T\u0002", + "\u0002\u08f6\u08f7\u0007O\u0002\u0002\u08f7\u08f8\u0007C\u0002\u0002", + "\u08f8\u08f9\u0007T\u0002\u0002\u08f9\u08fa\u0007M\u0002\u0002\u08fa", + "\u01ce\u0003\u0002\u0002\u0002\u08fb\u08fc\u0007W\u0002\u0002\u08fc", + "\u08fd\u0007P\u0002\u0002\u08fd\u08fe\u0007P\u0002\u0002\u08fe\u08ff", + "\u0007G\u0002\u0002\u08ff\u0900\u0007U\u0002\u0002\u0900\u0901\u0007", + "V\u0002\u0002\u0901\u01d0\u0003\u0002\u0002\u0002\u0902\u0903\u0007", + "O\u0002\u0002\u0903\u0904\u0007C\u0002\u0002\u0904\u0905\u0007V\u0002", + "\u0002\u0905\u0906\u0007E\u0002\u0002\u0906\u0907\u0007J\u0002\u0002", + "\u0907\u0908\u0007a\u0002\u0002\u0908\u0909\u0007T\u0002\u0002\u0909", + "\u090a\u0007G\u0002\u0002\u090a\u090b\u0007E\u0002\u0002\u090b\u090c", + "\u0007Q\u0002\u0002\u090c\u090d\u0007I\u0002\u0002\u090d\u090e\u0007", + "P\u0002\u0002\u090e\u090f\u0007K\u0002\u0002\u090f\u0910\u0007\\\u0002", + "\u0002\u0910\u0911\u0007G\u0002\u0002\u0911\u01d2\u0003\u0002\u0002", + "\u0002\u0912\u0913\u0007O\u0002\u0002\u0913\u0914\u0007G\u0002\u0002", + "\u0914\u0915\u0007C\u0002\u0002\u0915\u0916\u0007U\u0002\u0002\u0916", + "\u0917\u0007W\u0002\u0002\u0917\u0918\u0007T\u0002\u0002\u0918\u0919", + "\u0007G\u0002\u0002\u0919\u091a\u0007U\u0002\u0002\u091a\u01d4\u0003", + "\u0002\u0002\u0002\u091b\u091c\u0007Q\u0002\u0002\u091c\u091d\u0007", + "P\u0002\u0002\u091d\u091e\u0007G\u0002\u0002\u091e\u01d6\u0003\u0002", + "\u0002\u0002\u091f\u0920\u0007R\u0002\u0002\u0920\u0921\u0007G\u0002", + "\u0002\u0921\u0922\u0007T\u0002\u0002\u0922\u01d8\u0003\u0002\u0002", + "\u0002\u0923\u0924\u0007O\u0002\u0002\u0924\u0925\u0007C\u0002\u0002", + "\u0925\u0926\u0007V\u0002\u0002\u0926\u0927\u0007E\u0002\u0002\u0927", + "\u0928\u0007J\u0002\u0002\u0928\u01da\u0003\u0002\u0002\u0002\u0929", + "\u092a\u0007U\u0002\u0002\u092a\u092b\u0007M\u0002\u0002\u092b\u092c", + "\u0007K\u0002\u0002\u092c\u092d\u0007R\u0002\u0002\u092d\u092e\u0007", + "3\u0002\u0002\u092e\u01dc\u0003\u0002\u0002\u0002\u092f\u0930\u0007", + "P\u0002\u0002\u0930\u0931\u0007G\u0002\u0002\u0931\u0932\u0007Z\u0002", + "\u0002\u0932\u0933\u0007V\u0002\u0002\u0933\u01de\u0003\u0002\u0002", + "\u0002\u0934\u0935\u0007R\u0002\u0002\u0935\u0936\u0007C\u0002\u0002", + "\u0936\u0937\u0007U\u0002\u0002\u0937\u0938\u0007V\u0002\u0002\u0938", + "\u01e0\u0003\u0002\u0002\u0002\u0939\u093a\u0007R\u0002\u0002\u093a", + "\u093b\u0007C\u0002\u0002\u093b\u093c\u0007V\u0002\u0002\u093c\u093d", + "\u0007V\u0002\u0002\u093d\u093e\u0007G\u0002\u0002\u093e\u093f\u0007", + "T\u0002\u0002\u093f\u0940\u0007P\u0002\u0002\u0940\u01e2\u0003\u0002", + "\u0002\u0002\u0941\u0942\u0007Y\u0002\u0002\u0942\u0943\u0007K\u0002", + "\u0002\u0943\u0944\u0007V\u0002\u0002\u0944\u0945\u0007J\u0002\u0002", + "\u0945\u0946\u0007K\u0002\u0002\u0946\u0947\u0007P\u0002\u0002\u0947", + "\u01e4\u0003\u0002\u0002\u0002\u0948\u0949\u0007F\u0002\u0002\u0949", + "\u094a\u0007G\u0002\u0002\u094a\u094b\u0007H\u0002\u0002\u094b\u094c", + "\u0007K\u0002\u0002\u094c\u094d\u0007P\u0002\u0002\u094d\u094e\u0007", + "G\u0002\u0002\u094e\u01e6\u0003\u0002\u0002\u0002\u094f\u0950\u0007", + "D\u0002\u0002\u0950\u0951\u0007K\u0002\u0002\u0951\u0952\u0007I\u0002", + "\u0002\u0952\u0953\u0007K\u0002\u0002\u0953\u0954\u0007P\u0002\u0002", + "\u0954\u0955\u0007V\u0002\u0002\u0955\u0956\u0007a\u0002\u0002\u0956", + "\u0957\u0007N\u0002\u0002\u0957\u0958\u0007K\u0002\u0002\u0958\u0959", + "\u0007V\u0002\u0002\u0959\u095a\u0007G\u0002\u0002\u095a\u095b\u0007", + "T\u0002\u0002\u095b\u095c\u0007C\u0002\u0002\u095c\u095d\u0007N\u0002", + "\u0002\u095d\u01e8\u0003\u0002\u0002\u0002\u095e\u095f\u0007U\u0002", + "\u0002\u095f\u0960\u0007O\u0002\u0002\u0960\u0961\u0007C\u0002\u0002", + "\u0961\u0962\u0007N\u0002\u0002\u0962\u0963\u0007N\u0002\u0002\u0963", + "\u0964\u0007K\u0002\u0002\u0964\u0965\u0007P\u0002\u0002\u0965\u0966", + "\u0007V\u0002\u0002\u0966\u0967\u0007a\u0002\u0002\u0967\u0968\u0007", + "N\u0002\u0002\u0968\u0969\u0007K\u0002\u0002\u0969\u096a\u0007V\u0002", + "\u0002\u096a\u096b\u0007G\u0002\u0002\u096b\u096c\u0007T\u0002\u0002", + "\u096c\u096d\u0007C\u0002\u0002\u096d\u096e\u0007N\u0002\u0002\u096e", + "\u01ea\u0003\u0002\u0002\u0002\u096f\u0970\u0007V\u0002\u0002\u0970", + "\u0971\u0007K\u0002\u0002\u0971\u0972\u0007P\u0002\u0002\u0972\u0973", + "\u0007[\u0002\u0002\u0973\u0974\u0007K\u0002\u0002\u0974\u0975\u0007", + "P\u0002\u0002\u0975\u0976\u0007V\u0002\u0002\u0976\u0977\u0007a\u0002", + "\u0002\u0977\u0978\u0007N\u0002\u0002\u0978\u0979\u0007K\u0002\u0002", + "\u0979\u097a\u0007V\u0002\u0002\u097a\u097b\u0007G\u0002\u0002\u097b", + "\u097c\u0007T\u0002\u0002\u097c\u097d\u0007C\u0002\u0002\u097d\u097e", + "\u0007N\u0002\u0002\u097e\u01ec\u0003\u0002\u0002\u0002\u097f\u0980", + "\u0007K\u0002\u0002\u0980\u0981\u0007P\u0002\u0002\u0981\u0982\u0007", + "V\u0002\u0002\u0982\u0983\u0007G\u0002\u0002\u0983\u0984\u0007I\u0002", + "\u0002\u0984\u0985\u0007G\u0002\u0002\u0985\u0986\u0007T\u0002\u0002", + "\u0986\u0987\u0007a\u0002\u0002\u0987\u0988\u0007X\u0002\u0002\u0988", + "\u0989\u0007C\u0002\u0002\u0989\u098a\u0007N\u0002\u0002\u098a\u098b", + "\u0007W\u0002\u0002\u098b\u098c\u0007G\u0002\u0002\u098c\u01ee\u0003", + "\u0002\u0002\u0002\u098d\u098e\u0007F\u0002\u0002\u098e\u098f\u0007", + "G\u0002\u0002\u098f\u0990\u0007E\u0002\u0002\u0990\u0991\u0007K\u0002", + "\u0002\u0991\u0992\u0007O\u0002\u0002\u0992\u0993\u0007C\u0002\u0002", + "\u0993\u0994\u0007N\u0002\u0002\u0994\u0995\u0007a\u0002\u0002\u0995", + "\u0996\u0007X\u0002\u0002\u0996\u0997\u0007C\u0002\u0002\u0997\u0998", + "\u0007N\u0002\u0002\u0998\u0999\u0007W\u0002\u0002\u0999\u099a\u0007", + "G\u0002\u0002\u099a\u01f0\u0003\u0002\u0002\u0002\u099b\u099c\u0007", + "F\u0002\u0002\u099c\u099d\u0007Q\u0002\u0002\u099d\u099e\u0007W\u0002", + "\u0002\u099e\u099f\u0007D\u0002\u0002\u099f\u09a0\u0007N\u0002\u0002", + "\u09a0\u09a1\u0007G\u0002\u0002\u09a1\u09a2\u0007a\u0002\u0002\u09a2", + "\u09a3\u0007N\u0002\u0002\u09a3\u09a4\u0007K\u0002\u0002\u09a4\u09a5", + "\u0007V\u0002\u0002\u09a5\u09a6\u0007G\u0002\u0002\u09a6\u09a7\u0007", + "T\u0002\u0002\u09a7\u09a8\u0007C\u0002\u0002\u09a8\u09a9\u0007N\u0002", + "\u0002\u09a9\u01f2\u0003\u0002\u0002\u0002\u09aa\u09ab\u0007D\u0002", + "\u0002\u09ab\u09ac\u0007K\u0002\u0002\u09ac\u09ad\u0007I\u0002\u0002", + "\u09ad\u09ae\u0007F\u0002\u0002\u09ae\u09af\u0007G\u0002\u0002\u09af", + "\u09b0\u0007E\u0002\u0002\u09b0\u09b1\u0007K\u0002\u0002\u09b1\u09b2", + "\u0007O\u0002\u0002\u09b2\u09b3\u0007C\u0002\u0002\u09b3\u09b4\u0007", + "N\u0002\u0002\u09b4\u09b5\u0007a\u0002\u0002\u09b5\u09b6\u0007N\u0002", + "\u0002\u09b6\u09b7\u0007K\u0002\u0002\u09b7\u09b8\u0007V\u0002\u0002", + "\u09b8\u09b9\u0007G\u0002\u0002\u09b9\u09ba\u0007T\u0002\u0002\u09ba", + "\u09bb\u0007C\u0002\u0002\u09bb\u09bc\u0007N\u0002\u0002\u09bc\u01f4", + "\u0003\u0002\u0002\u0002\u09bd\u09be\u0007K\u0002\u0002\u09be\u09bf", + "\u0007F\u0002\u0002\u09bf\u09c0\u0007G\u0002\u0002\u09c0\u09c1\u0007", + "P\u0002\u0002\u09c1\u09c2\u0007V\u0002\u0002\u09c2\u09c3\u0007K\u0002", + "\u0002\u09c3\u09c4\u0007H\u0002\u0002\u09c4\u09c5\u0007K\u0002\u0002", + "\u09c5\u09c6\u0007G\u0002\u0002\u09c6\u09c7\u0007T\u0002\u0002\u09c7", + "\u01f6\u0003\u0002\u0002\u0002\u09c8\u09c9\u0007D\u0002\u0002\u09c9", + "\u09ca\u0007C\u0002\u0002\u09ca\u09cb\u0007E\u0002\u0002\u09cb\u09cc", + "\u0007M\u0002\u0002\u09cc\u09cd\u0007S\u0002\u0002\u09cd\u09ce\u0007", + "W\u0002\u0002\u09ce\u09cf\u0007Q\u0002\u0002\u09cf\u09d0\u0007V\u0002", + "\u0002\u09d0\u09d1\u0007G\u0002\u0002\u09d1\u09d2\u0007F\u0002\u0002", + "\u09d2\u09d3\u0007a\u0002\u0002\u09d3\u09d4\u0007K\u0002\u0002\u09d4", + "\u09d5\u0007F\u0002\u0002\u09d5\u09d6\u0007G\u0002\u0002\u09d6\u09d7", + "\u0007P\u0002\u0002\u09d7\u09d8\u0007V\u0002\u0002\u09d8\u09d9\u0007", + "K\u0002\u0002\u09d9\u09da\u0007H\u0002\u0002\u09da\u09db\u0007K\u0002", + "\u0002\u09db\u09dc\u0007G\u0002\u0002\u09dc\u09dd\u0007T\u0002\u0002", + "\u09dd\u01f8\u0003\u0002\u0002\u0002\u09de\u09df\u0007U\u0002\u0002", + "\u09df\u09e0\u0007K\u0002\u0002\u09e0\u09e1\u0007O\u0002\u0002\u09e1", + "\u09e2\u0007R\u0002\u0002\u09e2\u09e3\u0007N\u0002\u0002\u09e3\u09e4", + "\u0007G\u0002\u0002\u09e4\u09e5\u0007a\u0002\u0002\u09e5\u09e6\u0007", + "E\u0002\u0002\u09e6\u09e7\u0007Q\u0002\u0002\u09e7\u09e8\u0007O\u0002", + "\u0002\u09e8\u09e9\u0007O\u0002\u0002\u09e9\u09ea\u0007G\u0002\u0002", + "\u09ea\u09eb\u0007P\u0002\u0002\u09eb\u09ec\u0007V\u0002\u0002\u09ec", + "\u01fa\u0003\u0002\u0002\u0002\u09ed\u09ee\u0007D\u0002\u0002\u09ee", + "\u09ef\u0007T\u0002\u0002\u09ef\u09f0\u0007C\u0002\u0002\u09f0\u09f1", + "\u0007E\u0002\u0002\u09f1\u09f2\u0007M\u0002\u0002\u09f2\u09f3\u0007", + "G\u0002\u0002\u09f3\u09f4\u0007V\u0002\u0002\u09f4\u09f5\u0007G\u0002", + "\u0002\u09f5\u09f6\u0007F\u0002\u0002\u09f6\u09f7\u0007a\u0002\u0002", + "\u09f7\u09f8\u0007G\u0002\u0002\u09f8\u09f9\u0007O\u0002\u0002\u09f9", + "\u09fa\u0007R\u0002\u0002\u09fa\u09fb\u0007V\u0002\u0002\u09fb\u09fc", + "\u0007[\u0002\u0002\u09fc\u09fd\u0007a\u0002\u0002\u09fd\u09fe\u0007", + "E\u0002\u0002\u09fe\u09ff\u0007Q\u0002\u0002\u09ff\u0a00\u0007O\u0002", + "\u0002\u0a00\u0a01\u0007O\u0002\u0002\u0a01\u0a02\u0007G\u0002\u0002", + "\u0a02\u0a03\u0007P\u0002\u0002\u0a03\u0a04\u0007V\u0002\u0002\u0a04", + "\u01fc\u0003\u0002\u0002\u0002\u0a05\u0a06\u0007D\u0002\u0002\u0a06", + "\u0a07\u0007T\u0002\u0002\u0a07\u0a08\u0007C\u0002\u0002\u0a08\u0a09", + "\u0007E\u0002\u0002\u0a09\u0a0a\u0007M\u0002\u0002\u0a0a\u0a0b\u0007", + "G\u0002\u0002\u0a0b\u0a0c\u0007V\u0002\u0002\u0a0c\u0a0d\u0007G\u0002", + "\u0002\u0a0d\u0a0e\u0007F\u0002\u0002\u0a0e\u0a0f\u0007a\u0002\u0002", + "\u0a0f\u0a10\u0007E\u0002\u0002\u0a10\u0a11\u0007Q\u0002\u0002\u0a11", + "\u0a12\u0007O\u0002\u0002\u0a12\u0a13\u0007O\u0002\u0002\u0a13\u0a14", + "\u0007G\u0002\u0002\u0a14\u0a15\u0007P\u0002\u0002\u0a15\u0a16\u0007", + "V\u0002\u0002\u0a16\u01fe\u0003\u0002\u0002\u0002\u0a17\u0a18\u0007", + "Y\u0002\u0002\u0a18\u0a19\u0007U\u0002\u0002\u0a19\u0200\u0003\u0002", + "\u0002\u0002\u0a1a\u0a1b\u0007W\u0002\u0002\u0a1b\u0a1c\u0007P\u0002", + "\u0002\u0a1c\u0a1d\u0007T\u0002\u0002\u0a1d\u0a1e\u0007G\u0002\u0002", + "\u0a1e\u0a1f\u0007E\u0002\u0002\u0a1f\u0a20\u0007Q\u0002\u0002\u0a20", + "\u0a21\u0007I\u0002\u0002\u0a21\u0a22\u0007P\u0002\u0002\u0a22\u0a23", + "\u0007K\u0002\u0002\u0a23\u0a24\u0007\\\u0002\u0002\u0a24\u0a25\u0007", + "G\u0002\u0002\u0a25\u0a26\u0007F\u0002\u0002\u0a26\u0202\u0003\u0002", + "\u0002\u0002\u0a27\u0a29\u0007b\u0002\u0002\u0a28\u0a2a\n\u0004\u0002", + "\u0002\u0a29\u0a28\u0003\u0002\u0002\u0002\u0a2a\u0a2b\u0003\u0002\u0002", + "\u0002\u0a2b\u0a29\u0003\u0002\u0002\u0002\u0a2b\u0a2c\u0003\u0002\u0002", + "\u0002\u0a2c\u0a2d\u0003\u0002\u0002\u0002\u0a2d\u0a2e\u0007b\u0002", + "\u0002\u0a2e\u0204\u0003\u0002\u0002\u0002\u0a2f\u0a31\u0007$\u0002", + "\u0002\u0a30\u0a32\n\u0005\u0002\u0002\u0a31\u0a30\u0003\u0002\u0002", + "\u0002\u0a32\u0a33\u0003\u0002\u0002\u0002\u0a33\u0a31\u0003\u0002\u0002", + "\u0002\u0a33\u0a34\u0003\u0002\u0002\u0002\u0a34\u0a35\u0003\u0002\u0002", + "\u0002\u0a35\u0a36\u0007$\u0002\u0002\u0a36\u0206\u0003\u0002\u0002", + "\u0002\u0a37\u0a38\u00070\u0002\u0002\u0a38\u0a39\u0005\u0271\u0139", + "\u0002\u0a39\u0208\u0003\u0002\u0002\u0002\u0a3a\u0a3b\u0005\u0271\u0139", + "\u0002\u0a3b\u020a\u0003\u0002\u0002\u0002\u0a3c\u0a3d\u0007U\u0002", + "\u0002\u0a3d\u0a3e\u0007[\u0002\u0002\u0a3e\u0a3f\u0007U\u0002\u0002", + "\u0a3f\u0a40\u0007V\u0002\u0002\u0a40\u0a41\u0007G\u0002\u0002\u0a41", + "\u0a42\u0007O\u0002\u0002\u0a42\u020c\u0003\u0002\u0002\u0002\u0a43", + "\u0a44\u0007U\u0002\u0002\u0a44\u0a45\u0007V\u0002\u0002\u0a45\u0a46", + "\u0007T\u0002\u0002\u0a46\u0a47\u0007K\u0002\u0002\u0a47\u0a48\u0007", + "P\u0002\u0002\u0a48\u0a49\u0007I\u0002\u0002\u0a49\u020e\u0003\u0002", + "\u0002\u0002\u0a4a\u0a4b\u0007C\u0002\u0002\u0a4b\u0a4c\u0007T\u0002", + "\u0002\u0a4c\u0a4d\u0007T\u0002\u0002\u0a4d\u0a4e\u0007C\u0002\u0002", + "\u0a4e\u0a4f\u0007[\u0002\u0002\u0a4f\u0210\u0003\u0002\u0002\u0002", + "\u0a50\u0a51\u0007O\u0002\u0002\u0a51\u0a52\u0007C\u0002\u0002\u0a52", + "\u0a53\u0007R\u0002\u0002\u0a53\u0212\u0003\u0002\u0002\u0002\u0a54", + "\u0a55\u0007E\u0002\u0002\u0a55\u0a56\u0007J\u0002\u0002\u0a56\u0a57", + "\u0007C\u0002\u0002\u0a57\u0a58\u0007T\u0002\u0002\u0a58\u0214\u0003", + "\u0002\u0002\u0002\u0a59\u0a5a\u0007X\u0002\u0002\u0a5a\u0a5b\u0007", + "C\u0002\u0002\u0a5b\u0a5c\u0007T\u0002\u0002\u0a5c\u0a5d\u0007E\u0002", + "\u0002\u0a5d\u0a5e\u0007J\u0002\u0002\u0a5e\u0a5f\u0007C\u0002\u0002", + "\u0a5f\u0a60\u0007T\u0002\u0002\u0a60\u0216\u0003\u0002\u0002\u0002", + "\u0a61\u0a62\u0007D\u0002\u0002\u0a62\u0a63\u0007K\u0002\u0002\u0a63", + "\u0a64\u0007P\u0002\u0002\u0a64\u0a65\u0007C\u0002\u0002\u0a65\u0a66", + "\u0007T\u0002\u0002\u0a66\u0a67\u0007[\u0002\u0002\u0a67\u0218\u0003", + "\u0002\u0002\u0002\u0a68\u0a69\u0007X\u0002\u0002\u0a69\u0a6a\u0007", + "C\u0002\u0002\u0a6a\u0a6b\u0007T\u0002\u0002\u0a6b\u0a6c\u0007D\u0002", + "\u0002\u0a6c\u0a6d\u0007K\u0002\u0002\u0a6d\u0a6e\u0007P\u0002\u0002", + "\u0a6e\u0a6f\u0007C\u0002\u0002\u0a6f\u0a70\u0007T\u0002\u0002\u0a70", + "\u0a71\u0007[\u0002\u0002\u0a71\u021a\u0003\u0002\u0002\u0002\u0a72", + "\u0a73\u0007D\u0002\u0002\u0a73\u0a74\u0007[\u0002\u0002\u0a74\u0a75", + "\u0007V\u0002\u0002\u0a75\u0a76\u0007G\u0002\u0002\u0a76\u0a77\u0007", + "U\u0002\u0002\u0a77\u021c\u0003\u0002\u0002\u0002\u0a78\u0a79\u0007", + "F\u0002\u0002\u0a79\u0a7a\u0007G\u0002\u0002\u0a7a\u0a7b\u0007E\u0002", + "\u0002\u0a7b\u0a7c\u0007K\u0002\u0002\u0a7c\u0a7d\u0007O\u0002\u0002", + "\u0a7d\u0a7e\u0007C\u0002\u0002\u0a7e\u0a7f\u0007N\u0002\u0002\u0a7f", + "\u021e\u0003\u0002\u0002\u0002\u0a80\u0a81\u0007V\u0002\u0002\u0a81", + "\u0a82\u0007K\u0002\u0002\u0a82\u0a83\u0007P\u0002\u0002\u0a83\u0a84", + "\u0007[\u0002\u0002\u0a84\u0a85\u0007K\u0002\u0002\u0a85\u0a86\u0007", + "P\u0002\u0002\u0a86\u0a87\u0007V\u0002\u0002\u0a87\u0220\u0003\u0002", + "\u0002\u0002\u0a88\u0a89\u0007U\u0002\u0002\u0a89\u0a8a\u0007O\u0002", + "\u0002\u0a8a\u0a8b\u0007C\u0002\u0002\u0a8b\u0a8c\u0007N\u0002\u0002", + "\u0a8c\u0a8d\u0007N\u0002\u0002\u0a8d\u0a8e\u0007K\u0002\u0002\u0a8e", + "\u0a8f\u0007P\u0002\u0002\u0a8f\u0a90\u0007V\u0002\u0002\u0a90\u0222", + "\u0003\u0002\u0002\u0002\u0a91\u0a92\u0007K\u0002\u0002\u0a92\u0a93", + "\u0007P\u0002\u0002\u0a93\u0a94\u0007V\u0002\u0002\u0a94\u0224\u0003", + "\u0002\u0002\u0002\u0a95\u0a96\u0007D\u0002\u0002\u0a96\u0a97\u0007", + "K\u0002\u0002\u0a97\u0a98\u0007I\u0002\u0002\u0a98\u0a99\u0007K\u0002", + "\u0002\u0a99\u0a9a\u0007P\u0002\u0002\u0a9a\u0a9b\u0007V\u0002\u0002", + "\u0a9b\u0226\u0003\u0002\u0002\u0002\u0a9c\u0a9d\u0007H\u0002\u0002", + "\u0a9d\u0a9e\u0007N\u0002\u0002\u0a9e\u0a9f\u0007Q\u0002\u0002\u0a9f", + "\u0aa0\u0007C\u0002\u0002\u0aa0\u0aa1\u0007V\u0002\u0002\u0aa1\u0228", + "\u0003\u0002\u0002\u0002\u0aa2\u0aa3\u0007F\u0002\u0002\u0aa3\u0aa4", + "\u0007Q\u0002\u0002\u0aa4\u0aa5\u0007W\u0002\u0002\u0aa5\u0aa6\u0007", + "D\u0002\u0002\u0aa6\u0aa7\u0007N\u0002\u0002\u0aa7\u0aa8\u0007G\u0002", + "\u0002\u0aa8\u022a\u0003\u0002\u0002\u0002\u0aa9\u0aaa\u0007F\u0002", + "\u0002\u0aaa\u0aab\u0007C\u0002\u0002\u0aab\u0aac\u0007V\u0002\u0002", + "\u0aac\u0aad\u0007G\u0002\u0002\u0aad\u022c\u0003\u0002\u0002\u0002", + "\u0aae\u0aaf\u0007V\u0002\u0002\u0aaf\u0ab0\u0007K\u0002\u0002\u0ab0", + "\u0ab1\u0007O\u0002\u0002\u0ab1\u0ab2\u0007G\u0002\u0002\u0ab2\u022e", + "\u0003\u0002\u0002\u0002\u0ab3\u0ab4\u0007V\u0002\u0002\u0ab4\u0ab5", + "\u0007K\u0002\u0002\u0ab5\u0ab6\u0007O\u0002\u0002\u0ab6\u0ab7\u0007", + "G\u0002\u0002\u0ab7\u0ab8\u0007U\u0002\u0002\u0ab8\u0ab9\u0007V\u0002", + "\u0002\u0ab9\u0aba\u0007C\u0002\u0002\u0aba\u0abb\u0007O\u0002\u0002", + "\u0abb\u0abc\u0007R\u0002\u0002\u0abc\u0230\u0003\u0002\u0002\u0002", + "\u0abd\u0abe\u0007O\u0002\u0002\u0abe\u0abf\u0007W\u0002\u0002\u0abf", + "\u0ac0\u0007N\u0002\u0002\u0ac0\u0ac1\u0007V\u0002\u0002\u0ac1\u0ac2", + "\u0007K\u0002\u0002\u0ac2\u0ac3\u0007U\u0002\u0002\u0ac3\u0ac4\u0007", + "G\u0002\u0002\u0ac4\u0ac5\u0007V\u0002\u0002\u0ac5\u0232\u0003\u0002", + "\u0002\u0002\u0ac6\u0ac7\u0007D\u0002\u0002\u0ac7\u0ac8\u0007Q\u0002", + "\u0002\u0ac8\u0ac9\u0007Q\u0002\u0002\u0ac9\u0aca\u0007N\u0002\u0002", + "\u0aca\u0acb\u0007G\u0002\u0002\u0acb\u0acc\u0007C\u0002\u0002\u0acc", + "\u0acd\u0007P\u0002\u0002\u0acd\u0234\u0003\u0002\u0002\u0002\u0ace", + "\u0acf\u0007T\u0002\u0002\u0acf\u0ad0\u0007C\u0002\u0002\u0ad0\u0ad1", + "\u0007Y\u0002\u0002\u0ad1\u0236\u0003\u0002\u0002\u0002\u0ad2\u0ad3", + "\u0007T\u0002\u0002\u0ad3\u0ad4\u0007Q\u0002\u0002\u0ad4\u0ad5\u0007", + "Y\u0002\u0002\u0ad5\u0238\u0003\u0002\u0002\u0002\u0ad6\u0ad7\u0007", + "P\u0002\u0002\u0ad7\u0ad8\u0007W\u0002\u0002\u0ad8\u0ad9\u0007N\u0002", + "\u0002\u0ad9\u0ada\u0007N\u0002\u0002\u0ada\u023a\u0003\u0002\u0002", + "\u0002\u0adb\u0adc\u0007?\u0002\u0002\u0adc\u023c\u0003\u0002\u0002", + "\u0002\u0add\u0ade\u0007@\u0002\u0002\u0ade\u023e\u0003\u0002\u0002", + "\u0002\u0adf\u0ae0\u0007>\u0002\u0002\u0ae0\u0240\u0003\u0002\u0002", + "\u0002\u0ae1\u0ae2\u0007#\u0002\u0002\u0ae2\u0242\u0003\u0002\u0002", + "\u0002\u0ae3\u0ae4\u0007\u0080\u0002\u0002\u0ae4\u0244\u0003\u0002\u0002", + "\u0002\u0ae5\u0ae6\u0007~\u0002\u0002\u0ae6\u0246\u0003\u0002\u0002", + "\u0002\u0ae7\u0ae8\u0007(\u0002\u0002\u0ae8\u0248\u0003\u0002\u0002", + "\u0002\u0ae9\u0aea\u0007`\u0002\u0002\u0aea\u024a\u0003\u0002\u0002", + "\u0002\u0aeb\u0aec\u00070\u0002\u0002\u0aec\u024c\u0003\u0002\u0002", + "\u0002\u0aed\u0aee\u0007*\u0002\u0002\u0aee\u024e\u0003\u0002\u0002", + "\u0002\u0aef\u0af0\u0007+\u0002\u0002\u0af0\u0250\u0003\u0002\u0002", + "\u0002\u0af1\u0af2\u0007.\u0002\u0002\u0af2\u0252\u0003\u0002\u0002", + "\u0002\u0af3\u0af4\u0007=\u0002\u0002\u0af4\u0254\u0003\u0002\u0002", + "\u0002\u0af5\u0af6\u0007B\u0002\u0002\u0af6\u0256\u0003\u0002\u0002", + "\u0002\u0af7\u0af8\u00072\u0002\u0002\u0af8\u0258\u0003\u0002\u0002", + "\u0002\u0af9\u0afa\u00073\u0002\u0002\u0afa\u025a\u0003\u0002\u0002", + "\u0002\u0afb\u0afc\u00074\u0002\u0002\u0afc\u025c\u0003\u0002\u0002", + "\u0002\u0afd\u0afe\u0007)\u0002\u0002\u0afe\u025e\u0003\u0002\u0002", + "\u0002\u0aff\u0b00\u0007$\u0002\u0002\u0b00\u0260\u0003\u0002\u0002", + "\u0002\u0b01\u0b02\u0007b\u0002\u0002\u0b02\u0262\u0003\u0002\u0002", + "\u0002\u0b03\u0b04\u0007<\u0002\u0002\u0b04\u0264\u0003\u0002\u0002", + "\u0002\u0b05\u0b06\u0007,\u0002\u0002\u0b06\u0266\u0003\u0002\u0002", + "\u0002\u0b07\u0b0b\u0005\u0275\u013b\u0002\u0b08\u0b0b\u0005\u0277\u013c", + "\u0002\u0b09\u0b0b\u0005\u027b\u013e\u0002\u0b0a\u0b07\u0003\u0002\u0002", + "\u0002\u0b0a\u0b08\u0003\u0002\u0002\u0002\u0b0a\u0b09\u0003\u0002\u0002", + "\u0002\u0b0b\u0268\u0003\u0002\u0002\u0002\u0b0c\u0b0e\u0005\u0273\u013a", + "\u0002\u0b0d\u0b0c\u0003\u0002\u0002\u0002\u0b0e\u0b0f\u0003\u0002\u0002", + "\u0002\u0b0f\u0b0d\u0003\u0002\u0002\u0002\u0b0f\u0b10\u0003\u0002\u0002", + "\u0002\u0b10\u026a\u0003\u0002\u0002\u0002\u0b11\u0b13\u0005\u0273\u013a", + "\u0002\u0b12\u0b11\u0003\u0002\u0002\u0002\u0b13\u0b14\u0003\u0002\u0002", + "\u0002\u0b14\u0b12\u0003\u0002\u0002\u0002\u0b14\u0b15\u0003\u0002\u0002", + "\u0002\u0b15\u0b17\u0003\u0002\u0002\u0002\u0b16\u0b12\u0003\u0002\u0002", + "\u0002\u0b16\u0b17\u0003\u0002\u0002\u0002\u0b17\u0b18\u0003\u0002\u0002", + "\u0002\u0b18\u0b1a\u00070\u0002\u0002\u0b19\u0b1b\u0005\u0273\u013a", + "\u0002\u0b1a\u0b19\u0003\u0002\u0002\u0002\u0b1b\u0b1c\u0003\u0002\u0002", + "\u0002\u0b1c\u0b1a\u0003\u0002\u0002\u0002\u0b1c\u0b1d\u0003\u0002\u0002", + "\u0002\u0b1d\u0b3d\u0003\u0002\u0002\u0002\u0b1e\u0b20\u0005\u0273\u013a", + "\u0002\u0b1f\u0b1e\u0003\u0002\u0002\u0002\u0b20\u0b21\u0003\u0002\u0002", + "\u0002\u0b21\u0b1f\u0003\u0002\u0002\u0002\u0b21\u0b22\u0003\u0002\u0002", + "\u0002\u0b22\u0b23\u0003\u0002\u0002\u0002\u0b23\u0b24\u00070\u0002", + "\u0002\u0b24\u0b25\u0005\u026f\u0138\u0002\u0b25\u0b3d\u0003\u0002\u0002", + "\u0002\u0b26\u0b28\u0005\u0273\u013a\u0002\u0b27\u0b26\u0003\u0002\u0002", + "\u0002\u0b28\u0b29\u0003\u0002\u0002\u0002\u0b29\u0b27\u0003\u0002\u0002", + "\u0002\u0b29\u0b2a\u0003\u0002\u0002\u0002\u0b2a\u0b2c\u0003\u0002\u0002", + "\u0002\u0b2b\u0b27\u0003\u0002\u0002\u0002\u0b2b\u0b2c\u0003\u0002\u0002", + "\u0002\u0b2c\u0b2d\u0003\u0002\u0002\u0002\u0b2d\u0b2f\u00070\u0002", + "\u0002\u0b2e\u0b30\u0005\u0273\u013a\u0002\u0b2f\u0b2e\u0003\u0002\u0002", + "\u0002\u0b30\u0b31\u0003\u0002\u0002\u0002\u0b31\u0b2f\u0003\u0002\u0002", + "\u0002\u0b31\u0b32\u0003\u0002\u0002\u0002\u0b32\u0b33\u0003\u0002\u0002", + "\u0002\u0b33\u0b34\u0005\u026f\u0138\u0002\u0b34\u0b3d\u0003\u0002\u0002", + "\u0002\u0b35\u0b37\u0005\u0273\u013a\u0002\u0b36\u0b35\u0003\u0002\u0002", + "\u0002\u0b37\u0b38\u0003\u0002\u0002\u0002\u0b38\u0b36\u0003\u0002\u0002", + "\u0002\u0b38\u0b39\u0003\u0002\u0002\u0002\u0b39\u0b3a\u0003\u0002\u0002", + "\u0002\u0b3a\u0b3b\u0005\u026f\u0138\u0002\u0b3b\u0b3d\u0003\u0002\u0002", + "\u0002\u0b3c\u0b16\u0003\u0002\u0002\u0002\u0b3c\u0b1f\u0003\u0002\u0002", + "\u0002\u0b3c\u0b2b\u0003\u0002\u0002\u0002\u0b3c\u0b36\u0003\u0002\u0002", + "\u0002\u0b3d\u026c\u0003\u0002\u0002\u0002\u0b3e\u0b3f\u0005\u0279\u013d", + "\u0002\u0b3f\u026e\u0003\u0002\u0002\u0002\u0b40\u0b42\u0007G\u0002", + "\u0002\u0b41\u0b43\t\u0006\u0002\u0002\u0b42\u0b41\u0003\u0002\u0002", + "\u0002\u0b42\u0b43\u0003\u0002\u0002\u0002\u0b43\u0b45\u0003\u0002\u0002", + "\u0002\u0b44\u0b46\u0005\u0273\u013a\u0002\u0b45\u0b44\u0003\u0002\u0002", + "\u0002\u0b46\u0b47\u0003\u0002\u0002\u0002\u0b47\u0b45\u0003\u0002\u0002", + "\u0002\u0b47\u0b48\u0003\u0002\u0002\u0002\u0b48\u0270\u0003\u0002\u0002", + "\u0002\u0b49\u0b4b\t\u0007\u0002\u0002\u0b4a\u0b49\u0003\u0002\u0002", + "\u0002\u0b4b\u0b4e\u0003\u0002\u0002\u0002\u0b4c\u0b4d\u0003\u0002\u0002", + "\u0002\u0b4c\u0b4a\u0003\u0002\u0002\u0002\u0b4d\u0b50\u0003\u0002\u0002", + "\u0002\u0b4e\u0b4c\u0003\u0002\u0002\u0002\u0b4f\u0b51\t\b\u0002\u0002", + "\u0b50\u0b4f\u0003\u0002\u0002\u0002\u0b51\u0b52\u0003\u0002\u0002\u0002", + "\u0b52\u0b53\u0003\u0002\u0002\u0002\u0b52\u0b50\u0003\u0002\u0002\u0002", + "\u0b53\u0b57\u0003\u0002\u0002\u0002\u0b54\u0b56\t\u0007\u0002\u0002", + "\u0b55\u0b54\u0003\u0002\u0002\u0002\u0b56\u0b59\u0003\u0002\u0002\u0002", + "\u0b57\u0b55\u0003\u0002\u0002\u0002\u0b57\u0b58\u0003\u0002\u0002\u0002", + "\u0b58\u0272\u0003\u0002\u0002\u0002\u0b59\u0b57\u0003\u0002\u0002\u0002", + "\u0b5a\u0b5b\t\t\u0002\u0002\u0b5b\u0274\u0003\u0002\u0002\u0002\u0b5c", + "\u0b64\u0007$\u0002\u0002\u0b5d\u0b5e\u0007^\u0002\u0002\u0b5e\u0b63", + "\u000b\u0002\u0002\u0002\u0b5f\u0b60\u0007$\u0002\u0002\u0b60\u0b63", + "\u0007$\u0002\u0002\u0b61\u0b63\n\n\u0002\u0002\u0b62\u0b5d\u0003\u0002", + "\u0002\u0002\u0b62\u0b5f\u0003\u0002\u0002\u0002\u0b62\u0b61\u0003\u0002", + "\u0002\u0002\u0b63\u0b66\u0003\u0002\u0002\u0002\u0b64\u0b62\u0003\u0002", + "\u0002\u0002\u0b64\u0b65\u0003\u0002\u0002\u0002\u0b65\u0b67\u0003\u0002", + "\u0002\u0002\u0b66\u0b64\u0003\u0002\u0002\u0002\u0b67\u0b68\u0007$", + "\u0002\u0002\u0b68\u0276\u0003\u0002\u0002\u0002\u0b69\u0b71\u0007)", + "\u0002\u0002\u0b6a\u0b6b\u0007^\u0002\u0002\u0b6b\u0b70\u000b\u0002", + "\u0002\u0002\u0b6c\u0b6d\u0007)\u0002\u0002\u0b6d\u0b70\u0007)\u0002", + "\u0002\u0b6e\u0b70\n\u000b\u0002\u0002\u0b6f\u0b6a\u0003\u0002\u0002", + "\u0002\u0b6f\u0b6c\u0003\u0002\u0002\u0002\u0b6f\u0b6e\u0003\u0002\u0002", + "\u0002\u0b70\u0b73\u0003\u0002\u0002\u0002\u0b71\u0b6f\u0003\u0002\u0002", + "\u0002\u0b71\u0b72\u0003\u0002\u0002\u0002\u0b72\u0b74\u0003\u0002\u0002", + "\u0002\u0b73\u0b71\u0003\u0002\u0002\u0002\u0b74\u0b75\u0007)\u0002", + "\u0002\u0b75\u0278\u0003\u0002\u0002\u0002\u0b76\u0b77\u0007D\u0002", + "\u0002\u0b77\u0b79\u0007)\u0002\u0002\u0b78\u0b7a\t\f\u0002\u0002\u0b79", + "\u0b78\u0003\u0002\u0002\u0002\u0b7a\u0b7b\u0003\u0002\u0002\u0002\u0b7b", + "\u0b79\u0003\u0002\u0002\u0002\u0b7b\u0b7c\u0003\u0002\u0002\u0002\u0b7c", + "\u0b7d\u0003\u0002\u0002\u0002\u0b7d\u0b7e\u0007)\u0002\u0002\u0b7e", + "\u027a\u0003\u0002\u0002\u0002\u0b7f\u0b87\u0007b\u0002\u0002\u0b80", + "\u0b81\u0007^\u0002\u0002\u0b81\u0b86\u000b\u0002\u0002\u0002\u0b82", + "\u0b83\u0007b\u0002\u0002\u0b83\u0b86\u0007b\u0002\u0002\u0b84\u0b86", + "\n\r\u0002\u0002\u0b85\u0b80\u0003\u0002\u0002\u0002\u0b85\u0b82\u0003", + "\u0002\u0002\u0002\u0b85\u0b84\u0003\u0002\u0002\u0002\u0b86\u0b89\u0003", + "\u0002\u0002\u0002\u0b87\u0b85\u0003\u0002\u0002\u0002\u0b87\u0b88\u0003", + "\u0002\u0002\u0002\u0b88\u0b8a\u0003\u0002\u0002\u0002\u0b89\u0b87\u0003", + "\u0002\u0002\u0002\u0b8a\u0b8b\u0007b\u0002\u0002\u0b8b\u027c\u0003", + "\u0002\u0002\u0002&\u0002\u0280\u028b\u0298\u02a4\u02a9\u02ad\u02b1", + "\u02b7\u02bb\u02bd\u0a2b\u0a33\u0b0a\u0b0f\u0b14\u0b16\u0b1c\u0b21\u0b29", + "\u0b2b\u0b31\u0b38\u0b3c\u0b42\u0b47\u0b4c\u0b52\u0b57\u0b62\u0b64\u0b6f", + "\u0b71\u0b7b\u0b85\u0b87\u0004\u0002\u0003\u0002\u0002\u0004\u0002"].join(""); var atn = new antlr4.atn.ATNDeserializer().deserialize(serializedATN); @@ -2115,6 +2222,11 @@ FlinkSqlLexer.SINGLE_QUOTE_SYMB = 302; FlinkSqlLexer.DOUBLE_QUOTE_SYMB = 303; FlinkSqlLexer.REVERSE_QUOTE_SYMB = 304; FlinkSqlLexer.COLON_SYMB = 305; +FlinkSqlLexer.ASTERISK_SIGN = 306; +FlinkSqlLexer.STRING_LITERAL = 307; +FlinkSqlLexer.DECIMAL_LITERAL = 308; +FlinkSqlLexer.REAL_LITERAL = 309; +FlinkSqlLexer.BIT_STRING = 310; FlinkSqlLexer.MYSQLCOMMENT = 2; @@ -2221,7 +2333,8 @@ FlinkSqlLexer.prototype.literalNames = [ null, null, null, null, null, "'SELECT' "'>'", "'<'", "'!'", "'~'", "'|'", "'&'", "'^'", "'.'", "'('", "')'", "','", "';'", "'@'", "'0'", "'1'", - "'2'", "'''", "'\"'", "'`'", "':'" ]; + "'2'", "'''", "'\"'", "'`'", "':'", + "'*'" ]; FlinkSqlLexer.prototype.symbolicNames = [ null, "SPACE", "SPEC_MYSQL_COMMENT", "COMMENT_INPUT", "LINE_COMMENT", @@ -2316,7 +2429,9 @@ FlinkSqlLexer.prototype.symbolicNames = [ null, "SPACE", "SPEC_MYSQL_COMMENT", "ZERO_DECIMAL", "ONE_DECIMAL", "TWO_DECIMAL", "SINGLE_QUOTE_SYMB", "DOUBLE_QUOTE_SYMB", "REVERSE_QUOTE_SYMB", - "COLON_SYMB" ]; + "COLON_SYMB", "ASTERISK_SIGN", + "STRING_LITERAL", "DECIMAL_LITERAL", + "REAL_LITERAL", "BIT_STRING" ]; FlinkSqlLexer.prototype.ruleNames = [ "SPACE", "SPEC_MYSQL_COMMENT", "COMMENT_INPUT", "LINE_COMMENT", "SELECT", "FROM", @@ -2402,7 +2517,11 @@ FlinkSqlLexer.prototype.ruleNames = [ "SPACE", "SPEC_MYSQL_COMMENT", "COMMENT_IN "AT_SIGN", "ZERO_DECIMAL", "ONE_DECIMAL", "TWO_DECIMAL", "SINGLE_QUOTE_SYMB", "DOUBLE_QUOTE_SYMB", "REVERSE_QUOTE_SYMB", - "COLON_SYMB", "ID_LITERAL" ]; + "COLON_SYMB", "ASTERISK_SIGN", "STRING_LITERAL", + "DECIMAL_LITERAL", "REAL_LITERAL", + "BIT_STRING", "EXPONENT_NUM_PART", + "ID_LITERAL", "DEC_DIGIT", "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 3161b0f..11f12e9 100644 --- a/src/lib/flinksql/FlinkSqlLexer.tokens +++ b/src/lib/flinksql/FlinkSqlLexer.tokens @@ -303,6 +303,11 @@ SINGLE_QUOTE_SYMB=302 DOUBLE_QUOTE_SYMB=303 REVERSE_QUOTE_SYMB=304 COLON_SYMB=305 +ASTERISK_SIGN=306 +STRING_LITERAL=307 +DECIMAL_LITERAL=308 +REAL_LITERAL=309 +BIT_STRING=310 'SELECT'=5 'FROM'=6 'ADD'=7 @@ -600,3 +605,4 @@ COLON_SYMB=305 '"'=303 '`'=304 ':'=305 +'*'=306 diff --git a/src/lib/flinksql/FlinkSqlParser.interp b/src/lib/flinksql/FlinkSqlParser.interp index 644d34f..a86bc3f 100644 --- a/src/lib/flinksql/FlinkSqlParser.interp +++ b/src/lib/flinksql/FlinkSqlParser.interp @@ -1,9 +1,9 @@ token literal names: null +'.' +'*' ',' -null -null -null +'!' 'SELECT' 'FROM' 'ADD' @@ -284,17 +284,17 @@ null 'RAW' 'ROW' 'NULL' -'=' -'>' -'<' -'!' -'~' -'|' -'&' -'^' -'.' -'(' -')' +null +null +null +null +null +null +null +null +null +null +null null ';' '@' @@ -305,27 +305,33 @@ null '"' '`' ':' +null +null +null +null +null +null token symbolic names: null null -SPEC_MYSQL_COMMENT -COMMENT_INPUT -LINE_COMMENT -SELECT -FROM -ADD -AS -ALL -ANY -DISTINCT -WHERE -GROUP -BY -GROUPING -SETS -CUBE -ROLLUP +null +null +null +null +null +null +null +null +null +null +null +null +null +null +null +null +null ORDER HAVING LIMIT @@ -613,6 +619,12 @@ SINGLE_QUOTE_SYMB DOUBLE_QUOTE_SYMB REVERSE_QUOTE_SYMB COLON_SYMB +ASTERISK_SIGN +STRING_LITERAL +DECIMAL_LITERAL +REAL_LITERAL +BIT_STRING +DEC_DIGIT rule names: program @@ -641,18 +653,52 @@ dropTable dropDatabase dropView dropFunction +queryStatement +selectStatements selectStatement +projectItemDefinition +tableExpression +tableReference +matchRecognize +tablePrimary +dynamicTableOptions +joinCondition +booleanExpression +groupItemDefinition +selectWithoutFromDefinition +projectItem +queryOrderByDefinition +orderItemDefition +queryLimitDefinition +countDefinition +queryOffsetDefinition +queryFetchDefinition insertStatement insertPartitionDefinition valuesDefinition valuesRowDefinition +allValueDifinition uidList uid withOption ifNotExists ifExists keyValueDefinition +expressions +expression +predicate +expressionAtom +logicalOperator +comparisonOperator +bitOperator +mathOperator +unaryOperator +fullColumnName +constant +stringLiteral +decimalLiteral +booleanLiteral atn: -[3, 24715, 42794, 33075, 47597, 16764, 15335, 30598, 22884, 3, 307, 324, 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, 3, 2, 3, 2, 3, 2, 3, 3, 3, 3, 3, 3, 3, 4, 3, 4, 3, 4, 3, 4, 7, 4, 87, 10, 4, 12, 4, 14, 4, 90, 11, 4, 3, 5, 3, 5, 5, 5, 94, 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, 5, 7, 109, 10, 7, 3, 8, 3, 8, 5, 8, 113, 10, 8, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 7, 9, 122, 10, 9, 12, 9, 14, 9, 125, 11, 9, 3, 9, 3, 9, 5, 9, 129, 10, 9, 3, 9, 3, 9, 3, 10, 3, 10, 3, 10, 3, 11, 3, 11, 3, 12, 3, 12, 3, 13, 3, 13, 3, 13, 3, 13, 3, 14, 3, 14, 3, 14, 7, 14, 147, 10, 14, 12, 14, 14, 14, 150, 11, 14, 3, 15, 3, 15, 3, 16, 3, 16, 3, 16, 5, 16, 157, 10, 16, 3, 16, 3, 16, 3, 16, 3, 17, 3, 17, 5, 17, 164, 10, 17, 3, 17, 3, 17, 5, 17, 168, 10, 17, 3, 17, 3, 17, 3, 17, 3, 17, 3, 18, 3, 18, 3, 19, 3, 19, 3, 19, 3, 19, 3, 19, 5, 19, 181, 10, 19, 3, 20, 3, 20, 3, 20, 3, 20, 3, 21, 3, 21, 3, 21, 3, 21, 3, 21, 7, 21, 192, 10, 21, 12, 21, 14, 21, 195, 11, 21, 3, 21, 3, 21, 3, 22, 3, 22, 3, 22, 3, 22, 3, 22, 3, 23, 3, 23, 3, 24, 3, 24, 3, 24, 5, 24, 209, 10, 24, 3, 24, 3, 24, 3, 25, 3, 25, 3, 25, 5, 25, 216, 10, 25, 3, 25, 3, 25, 5, 25, 220, 10, 25, 3, 26, 3, 26, 5, 26, 224, 10, 26, 3, 26, 3, 26, 5, 26, 228, 10, 26, 3, 26, 3, 26, 3, 27, 3, 27, 3, 27, 3, 27, 5, 27, 236, 10, 27, 3, 27, 3, 27, 5, 27, 240, 10, 27, 3, 27, 3, 27, 3, 28, 3, 28, 3, 29, 3, 29, 3, 29, 3, 29, 5, 29, 250, 10, 29, 3, 29, 3, 29, 5, 29, 254, 10, 29, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 7, 30, 261, 10, 30, 12, 30, 14, 30, 264, 11, 30, 3, 30, 3, 30, 3, 31, 3, 31, 3, 31, 3, 31, 7, 31, 272, 10, 31, 12, 31, 14, 31, 275, 11, 31, 3, 32, 3, 32, 7, 32, 279, 10, 32, 12, 32, 14, 32, 282, 11, 32, 3, 32, 3, 32, 3, 33, 3, 33, 3, 33, 7, 33, 289, 10, 33, 12, 33, 14, 33, 292, 11, 33, 3, 34, 3, 34, 7, 34, 296, 10, 34, 12, 34, 14, 34, 299, 11, 34, 3, 35, 3, 35, 3, 35, 3, 35, 3, 35, 7, 35, 306, 10, 35, 12, 35, 14, 35, 309, 11, 35, 3, 35, 3, 35, 3, 36, 3, 36, 3, 36, 3, 36, 3, 37, 3, 37, 3, 37, 3, 38, 3, 38, 3, 38, 3, 38, 3, 38, 4, 280, 297, 2, 39, 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, 2, 5, 3, 2, 264, 286, 3, 2, 192, 193, 4, 2, 80, 80, 148, 148, 2, 324, 2, 76, 3, 2, 2, 2, 4, 79, 3, 2, 2, 2, 6, 88, 3, 2, 2, 2, 8, 93, 3, 2, 2, 2, 10, 95, 3, 2, 2, 2, 12, 108, 3, 2, 2, 2, 14, 112, 3, 2, 2, 2, 16, 114, 3, 2, 2, 2, 18, 132, 3, 2, 2, 2, 20, 135, 3, 2, 2, 2, 22, 137, 3, 2, 2, 2, 24, 139, 3, 2, 2, 2, 26, 143, 3, 2, 2, 2, 28, 151, 3, 2, 2, 2, 30, 153, 3, 2, 2, 2, 32, 161, 3, 2, 2, 2, 34, 173, 3, 2, 2, 2, 36, 175, 3, 2, 2, 2, 38, 182, 3, 2, 2, 2, 40, 186, 3, 2, 2, 2, 42, 198, 3, 2, 2, 2, 44, 203, 3, 2, 2, 2, 46, 205, 3, 2, 2, 2, 48, 212, 3, 2, 2, 2, 50, 221, 3, 2, 2, 2, 52, 231, 3, 2, 2, 2, 54, 243, 3, 2, 2, 2, 56, 245, 3, 2, 2, 2, 58, 255, 3, 2, 2, 2, 60, 267, 3, 2, 2, 2, 62, 276, 3, 2, 2, 2, 64, 285, 3, 2, 2, 2, 66, 293, 3, 2, 2, 2, 68, 300, 3, 2, 2, 2, 70, 312, 3, 2, 2, 2, 72, 316, 3, 2, 2, 2, 74, 319, 3, 2, 2, 2, 76, 77, 5, 4, 3, 2, 77, 78, 7, 2, 2, 3, 78, 3, 3, 2, 2, 2, 79, 80, 5, 6, 4, 2, 80, 81, 7, 2, 2, 3, 81, 5, 3, 2, 2, 2, 82, 83, 5, 8, 5, 2, 83, 84, 7, 299, 2, 2, 84, 87, 3, 2, 2, 2, 85, 87, 5, 10, 6, 2, 86, 82, 3, 2, 2, 2, 86, 85, 3, 2, 2, 2, 87, 90, 3, 2, 2, 2, 88, 86, 3, 2, 2, 2, 88, 89, 3, 2, 2, 2, 89, 7, 3, 2, 2, 2, 90, 88, 3, 2, 2, 2, 91, 94, 5, 12, 7, 2, 92, 94, 5, 14, 8, 2, 93, 91, 3, 2, 2, 2, 93, 92, 3, 2, 2, 2, 94, 9, 3, 2, 2, 2, 95, 96, 7, 299, 2, 2, 96, 11, 3, 2, 2, 2, 97, 109, 5, 16, 9, 2, 98, 109, 5, 30, 16, 2, 99, 109, 5, 32, 17, 2, 100, 109, 5, 34, 18, 2, 101, 109, 5, 36, 19, 2, 102, 109, 5, 42, 22, 2, 103, 109, 5, 44, 23, 2, 104, 109, 5, 46, 24, 2, 105, 109, 5, 48, 25, 2, 106, 109, 5, 50, 26, 2, 107, 109, 5, 52, 27, 2, 108, 97, 3, 2, 2, 2, 108, 98, 3, 2, 2, 2, 108, 99, 3, 2, 2, 2, 108, 100, 3, 2, 2, 2, 108, 101, 3, 2, 2, 2, 108, 102, 3, 2, 2, 2, 108, 103, 3, 2, 2, 2, 108, 104, 3, 2, 2, 2, 108, 105, 3, 2, 2, 2, 108, 106, 3, 2, 2, 2, 108, 107, 3, 2, 2, 2, 109, 13, 3, 2, 2, 2, 110, 113, 5, 54, 28, 2, 111, 113, 5, 56, 29, 2, 112, 110, 3, 2, 2, 2, 112, 111, 3, 2, 2, 2, 113, 15, 3, 2, 2, 2, 114, 115, 7, 73, 2, 2, 115, 116, 7, 74, 2, 2, 116, 117, 5, 66, 34, 2, 117, 118, 7, 296, 2, 2, 118, 123, 5, 18, 10, 2, 119, 120, 7, 298, 2, 2, 120, 122, 5, 18, 10, 2, 121, 119, 3, 2, 2, 2, 122, 125, 3, 2, 2, 2, 123, 121, 3, 2, 2, 2, 123, 124, 3, 2, 2, 2, 124, 126, 3, 2, 2, 2, 125, 123, 3, 2, 2, 2, 126, 128, 7, 297, 2, 2, 127, 129, 5, 24, 13, 2, 128, 127, 3, 2, 2, 2, 128, 129, 3, 2, 2, 2, 129, 130, 3, 2, 2, 2, 130, 131, 5, 68, 35, 2, 131, 17, 3, 2, 2, 2, 132, 133, 5, 20, 11, 2, 133, 134, 5, 22, 12, 2, 134, 19, 3, 2, 2, 2, 135, 136, 7, 262, 2, 2, 136, 21, 3, 2, 2, 2, 137, 138, 9, 2, 2, 2, 138, 23, 3, 2, 2, 2, 139, 140, 7, 207, 2, 2, 140, 141, 7, 16, 2, 2, 141, 142, 5, 26, 14, 2, 142, 25, 3, 2, 2, 2, 143, 148, 5, 28, 15, 2, 144, 145, 7, 298, 2, 2, 145, 147, 5, 28, 15, 2, 146, 144, 3, 2, 2, 2, 147, 150, 3, 2, 2, 2, 148, 146, 3, 2, 2, 2, 148, 149, 3, 2, 2, 2, 149, 27, 3, 2, 2, 2, 150, 148, 3, 2, 2, 2, 151, 152, 7, 262, 2, 2, 152, 29, 3, 2, 2, 2, 153, 154, 7, 73, 2, 2, 154, 156, 7, 199, 2, 2, 155, 157, 5, 70, 36, 2, 156, 155, 3, 2, 2, 2, 156, 157, 3, 2, 2, 2, 157, 158, 3, 2, 2, 2, 158, 159, 5, 66, 34, 2, 159, 160, 5, 68, 35, 2, 160, 31, 3, 2, 2, 2, 161, 163, 7, 73, 2, 2, 162, 164, 7, 174, 2, 2, 163, 162, 3, 2, 2, 2, 163, 164, 3, 2, 2, 2, 164, 165, 3, 2, 2, 2, 165, 167, 7, 76, 2, 2, 166, 168, 5, 70, 36, 2, 167, 166, 3, 2, 2, 2, 167, 168, 3, 2, 2, 2, 168, 169, 3, 2, 2, 2, 169, 170, 5, 66, 34, 2, 170, 171, 7, 10, 2, 2, 171, 172, 5, 54, 28, 2, 172, 33, 3, 2, 2, 2, 173, 174, 3, 2, 2, 2, 174, 35, 3, 2, 2, 2, 175, 176, 7, 103, 2, 2, 176, 177, 7, 74, 2, 2, 177, 180, 5, 66, 34, 2, 178, 181, 5, 38, 20, 2, 179, 181, 5, 40, 21, 2, 180, 178, 3, 2, 2, 2, 180, 179, 3, 2, 2, 2, 181, 37, 3, 2, 2, 2, 182, 183, 7, 104, 2, 2, 183, 184, 7, 100, 2, 2, 184, 185, 5, 66, 34, 2, 185, 39, 3, 2, 2, 2, 186, 187, 7, 107, 2, 2, 187, 188, 7, 296, 2, 2, 188, 193, 5, 74, 38, 2, 189, 190, 7, 298, 2, 2, 190, 192, 5, 74, 38, 2, 191, 189, 3, 2, 2, 2, 192, 195, 3, 2, 2, 2, 193, 191, 3, 2, 2, 2, 193, 194, 3, 2, 2, 2, 194, 196, 3, 2, 2, 2, 195, 193, 3, 2, 2, 2, 196, 197, 7, 297, 2, 2, 197, 41, 3, 2, 2, 2, 198, 199, 7, 103, 2, 2, 199, 200, 7, 199, 2, 2, 200, 201, 5, 66, 34, 2, 201, 202, 5, 40, 21, 2, 202, 43, 3, 2, 2, 2, 203, 204, 3, 2, 2, 2, 204, 45, 3, 2, 2, 2, 205, 206, 7, 95, 2, 2, 206, 208, 7, 74, 2, 2, 207, 209, 5, 72, 37, 2, 208, 207, 3, 2, 2, 2, 208, 209, 3, 2, 2, 2, 209, 210, 3, 2, 2, 2, 210, 211, 5, 66, 34, 2, 211, 47, 3, 2, 2, 2, 212, 213, 7, 95, 2, 2, 213, 215, 7, 199, 2, 2, 214, 216, 5, 72, 37, 2, 215, 214, 3, 2, 2, 2, 215, 216, 3, 2, 2, 2, 216, 217, 3, 2, 2, 2, 217, 219, 5, 66, 34, 2, 218, 220, 9, 3, 2, 2, 219, 218, 3, 2, 2, 2, 219, 220, 3, 2, 2, 2, 220, 49, 3, 2, 2, 2, 221, 223, 7, 95, 2, 2, 222, 224, 7, 174, 2, 2, 223, 222, 3, 2, 2, 2, 223, 224, 3, 2, 2, 2, 224, 225, 3, 2, 2, 2, 225, 227, 7, 76, 2, 2, 226, 228, 5, 72, 37, 2, 227, 226, 3, 2, 2, 2, 227, 228, 3, 2, 2, 2, 228, 229, 3, 2, 2, 2, 229, 230, 5, 66, 34, 2, 230, 51, 3, 2, 2, 2, 231, 235, 7, 95, 2, 2, 232, 236, 7, 174, 2, 2, 233, 234, 7, 174, 2, 2, 234, 236, 7, 263, 2, 2, 235, 232, 3, 2, 2, 2, 235, 233, 3, 2, 2, 2, 235, 236, 3, 2, 2, 2, 236, 237, 3, 2, 2, 2, 237, 239, 7, 165, 2, 2, 238, 240, 5, 72, 37, 2, 239, 238, 3, 2, 2, 2, 239, 240, 3, 2, 2, 2, 240, 241, 3, 2, 2, 2, 241, 242, 5, 66, 34, 2, 242, 53, 3, 2, 2, 2, 243, 244, 3, 2, 2, 2, 244, 55, 3, 2, 2, 2, 245, 246, 7, 78, 2, 2, 246, 247, 9, 4, 2, 2, 247, 253, 5, 66, 34, 2, 248, 250, 5, 58, 30, 2, 249, 248, 3, 2, 2, 2, 249, 250, 3, 2, 2, 2, 250, 251, 3, 2, 2, 2, 251, 254, 5, 54, 28, 2, 252, 254, 5, 60, 31, 2, 253, 249, 3, 2, 2, 2, 253, 252, 3, 2, 2, 2, 254, 57, 3, 2, 2, 2, 255, 256, 7, 61, 2, 2, 256, 257, 7, 296, 2, 2, 257, 262, 5, 74, 38, 2, 258, 259, 7, 298, 2, 2, 259, 261, 5, 74, 38, 2, 260, 258, 3, 2, 2, 2, 261, 264, 3, 2, 2, 2, 262, 260, 3, 2, 2, 2, 262, 263, 3, 2, 2, 2, 263, 265, 3, 2, 2, 2, 264, 262, 3, 2, 2, 2, 265, 266, 7, 297, 2, 2, 266, 59, 3, 2, 2, 2, 267, 268, 7, 72, 2, 2, 268, 273, 5, 62, 32, 2, 269, 270, 7, 298, 2, 2, 270, 272, 5, 62, 32, 2, 271, 269, 3, 2, 2, 2, 272, 275, 3, 2, 2, 2, 273, 271, 3, 2, 2, 2, 273, 274, 3, 2, 2, 2, 274, 61, 3, 2, 2, 2, 275, 273, 3, 2, 2, 2, 276, 280, 7, 296, 2, 2, 277, 279, 11, 2, 2, 2, 278, 277, 3, 2, 2, 2, 279, 282, 3, 2, 2, 2, 280, 281, 3, 2, 2, 2, 280, 278, 3, 2, 2, 2, 281, 283, 3, 2, 2, 2, 282, 280, 3, 2, 2, 2, 283, 284, 7, 297, 2, 2, 284, 63, 3, 2, 2, 2, 285, 290, 5, 66, 34, 2, 286, 287, 7, 3, 2, 2, 287, 289, 5, 66, 34, 2, 288, 286, 3, 2, 2, 2, 289, 292, 3, 2, 2, 2, 290, 288, 3, 2, 2, 2, 290, 291, 3, 2, 2, 2, 291, 65, 3, 2, 2, 2, 292, 290, 3, 2, 2, 2, 293, 297, 7, 262, 2, 2, 294, 296, 7, 261, 2, 2, 295, 294, 3, 2, 2, 2, 296, 299, 3, 2, 2, 2, 297, 298, 3, 2, 2, 2, 297, 295, 3, 2, 2, 2, 298, 67, 3, 2, 2, 2, 299, 297, 3, 2, 2, 2, 300, 301, 7, 71, 2, 2, 301, 302, 7, 296, 2, 2, 302, 307, 5, 74, 38, 2, 303, 304, 7, 298, 2, 2, 304, 306, 5, 74, 38, 2, 305, 303, 3, 2, 2, 2, 306, 309, 3, 2, 2, 2, 307, 305, 3, 2, 2, 2, 307, 308, 3, 2, 2, 2, 308, 310, 3, 2, 2, 2, 309, 307, 3, 2, 2, 2, 310, 311, 7, 297, 2, 2, 311, 69, 3, 2, 2, 2, 312, 313, 7, 119, 2, 2, 313, 314, 7, 28, 2, 2, 314, 315, 7, 30, 2, 2, 315, 71, 3, 2, 2, 2, 316, 317, 7, 119, 2, 2, 317, 318, 7, 30, 2, 2, 318, 73, 3, 2, 2, 2, 319, 320, 7, 260, 2, 2, 320, 321, 7, 287, 2, 2, 321, 322, 7, 260, 2, 2, 322, 75, 3, 2, 2, 2, 30, 86, 88, 93, 108, 112, 123, 128, 148, 156, 163, 167, 180, 193, 208, 215, 219, 223, 227, 235, 239, 249, 253, 262, 273, 280, 290, 297, 307] \ No newline at end of file +[3, 24715, 42794, 33075, 47597, 16764, 15335, 30598, 22884, 3, 313, 860, 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, 3, 2, 3, 2, 3, 2, 3, 3, 3, 3, 3, 3, 3, 4, 3, 4, 3, 4, 3, 4, 7, 4, 155, 10, 4, 12, 4, 14, 4, 158, 11, 4, 3, 5, 3, 5, 5, 5, 162, 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, 5, 7, 177, 10, 7, 3, 8, 3, 8, 5, 8, 181, 10, 8, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 7, 9, 190, 10, 9, 12, 9, 14, 9, 193, 11, 9, 3, 9, 3, 9, 5, 9, 197, 10, 9, 3, 9, 3, 9, 3, 10, 3, 10, 3, 10, 3, 11, 3, 11, 3, 12, 3, 12, 3, 13, 3, 13, 3, 13, 3, 13, 3, 14, 3, 14, 3, 14, 7, 14, 215, 10, 14, 12, 14, 14, 14, 218, 11, 14, 3, 15, 3, 15, 3, 16, 3, 16, 3, 16, 5, 16, 225, 10, 16, 3, 16, 3, 16, 3, 16, 3, 17, 3, 17, 5, 17, 232, 10, 17, 3, 17, 3, 17, 5, 17, 236, 10, 17, 3, 17, 3, 17, 3, 17, 3, 17, 3, 18, 3, 18, 3, 19, 3, 19, 3, 19, 3, 19, 3, 19, 5, 19, 249, 10, 19, 3, 20, 3, 20, 3, 20, 3, 20, 3, 21, 3, 21, 3, 21, 3, 21, 3, 21, 7, 21, 260, 10, 21, 12, 21, 14, 21, 263, 11, 21, 3, 21, 3, 21, 3, 22, 3, 22, 3, 22, 3, 22, 3, 22, 3, 23, 3, 23, 3, 24, 3, 24, 3, 24, 5, 24, 277, 10, 24, 3, 24, 3, 24, 3, 25, 3, 25, 3, 25, 5, 25, 284, 10, 25, 3, 25, 3, 25, 5, 25, 288, 10, 25, 3, 26, 3, 26, 5, 26, 292, 10, 26, 3, 26, 3, 26, 5, 26, 296, 10, 26, 3, 26, 3, 26, 3, 27, 3, 27, 3, 27, 3, 27, 5, 27, 304, 10, 27, 3, 27, 3, 27, 5, 27, 308, 10, 27, 3, 27, 3, 27, 3, 28, 3, 28, 3, 28, 5, 28, 315, 10, 28, 3, 28, 5, 28, 318, 10, 28, 3, 28, 5, 28, 321, 10, 28, 3, 28, 5, 28, 324, 10, 28, 5, 28, 326, 10, 28, 3, 29, 3, 29, 5, 29, 330, 10, 29, 3, 30, 3, 30, 5, 30, 334, 10, 30, 3, 30, 3, 30, 3, 30, 3, 30, 7, 30, 340, 10, 30, 12, 30, 14, 30, 343, 11, 30, 5, 30, 345, 10, 30, 3, 30, 3, 30, 3, 30, 3, 30, 5, 30, 351, 10, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 7, 30, 358, 10, 30, 12, 30, 14, 30, 361, 11, 30, 3, 30, 3, 30, 5, 30, 365, 10, 30, 3, 31, 3, 31, 5, 31, 369, 10, 31, 3, 31, 5, 31, 372, 10, 31, 3, 31, 3, 31, 3, 31, 3, 31, 5, 31, 378, 10, 31, 3, 32, 3, 32, 3, 32, 3, 32, 7, 32, 384, 10, 32, 12, 32, 14, 32, 387, 11, 32, 3, 32, 3, 32, 5, 32, 391, 10, 32, 3, 32, 5, 32, 394, 10, 32, 3, 32, 3, 32, 3, 32, 5, 32, 399, 10, 32, 7, 32, 401, 10, 32, 12, 32, 14, 32, 404, 11, 32, 3, 33, 3, 33, 5, 33, 408, 10, 33, 3, 33, 5, 33, 411, 10, 33, 3, 33, 3, 33, 3, 33, 3, 33, 3, 33, 7, 33, 418, 10, 33, 12, 33, 14, 33, 421, 11, 33, 3, 33, 3, 33, 5, 33, 425, 10, 33, 5, 33, 427, 10, 33, 3, 34, 3, 34, 3, 35, 5, 35, 432, 10, 35, 3, 35, 3, 35, 5, 35, 436, 10, 35, 3, 35, 3, 35, 3, 35, 3, 35, 3, 35, 3, 35, 3, 35, 3, 35, 7, 35, 446, 10, 35, 12, 35, 14, 35, 449, 11, 35, 3, 35, 3, 35, 3, 35, 3, 35, 3, 35, 3, 35, 3, 35, 3, 35, 5, 35, 459, 10, 35, 3, 36, 3, 36, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 7, 37, 470, 10, 37, 12, 37, 14, 37, 473, 11, 37, 3, 37, 3, 37, 5, 37, 477, 10, 37, 3, 38, 3, 38, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 7, 39, 488, 10, 39, 12, 39, 14, 39, 491, 11, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 7, 39, 500, 10, 39, 12, 39, 14, 39, 503, 11, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 7, 39, 512, 10, 39, 12, 39, 14, 39, 515, 11, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 7, 39, 525, 10, 39, 12, 39, 14, 39, 528, 11, 39, 3, 39, 3, 39, 5, 39, 532, 10, 39, 3, 40, 3, 40, 5, 40, 536, 10, 40, 3, 40, 3, 40, 3, 40, 3, 40, 7, 40, 542, 10, 40, 12, 40, 14, 40, 545, 11, 40, 5, 40, 547, 10, 40, 3, 41, 3, 41, 5, 41, 551, 10, 41, 3, 41, 5, 41, 554, 10, 41, 3, 41, 3, 41, 3, 41, 3, 41, 5, 41, 560, 10, 41, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 7, 42, 567, 10, 42, 12, 42, 14, 42, 570, 11, 42, 3, 43, 3, 43, 3, 43, 3, 44, 3, 44, 3, 44, 5, 44, 578, 10, 44, 3, 45, 3, 45, 3, 46, 3, 46, 3, 47, 3, 47, 3, 48, 3, 48, 3, 48, 3, 48, 5, 48, 590, 10, 48, 3, 48, 3, 48, 5, 48, 594, 10, 48, 3, 49, 3, 49, 3, 49, 3, 49, 3, 49, 7, 49, 601, 10, 49, 12, 49, 14, 49, 604, 11, 49, 3, 49, 3, 49, 3, 50, 3, 50, 3, 50, 3, 50, 7, 50, 612, 10, 50, 12, 50, 14, 50, 615, 11, 50, 3, 51, 3, 51, 3, 51, 3, 51, 7, 51, 621, 10, 51, 12, 51, 14, 51, 624, 11, 51, 3, 51, 3, 51, 3, 52, 3, 52, 3, 52, 3, 52, 5, 52, 632, 10, 52, 3, 53, 3, 53, 3, 53, 7, 53, 637, 10, 53, 12, 53, 14, 53, 640, 11, 53, 3, 54, 3, 54, 7, 54, 644, 10, 54, 12, 54, 14, 54, 647, 11, 54, 3, 55, 3, 55, 3, 55, 3, 55, 3, 55, 7, 55, 654, 10, 55, 12, 55, 14, 55, 657, 11, 55, 3, 55, 3, 55, 3, 56, 3, 56, 3, 56, 3, 56, 3, 57, 3, 57, 3, 57, 3, 58, 3, 58, 3, 58, 3, 58, 3, 59, 3, 59, 3, 59, 7, 59, 675, 10, 59, 12, 59, 14, 59, 678, 11, 59, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 5, 60, 686, 10, 60, 3, 60, 3, 60, 3, 60, 5, 60, 691, 10, 60, 3, 60, 3, 60, 3, 60, 3, 60, 7, 60, 697, 10, 60, 12, 60, 14, 60, 700, 11, 60, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 5, 61, 711, 10, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 5, 61, 720, 10, 61, 3, 61, 3, 61, 3, 61, 3, 61, 5, 61, 726, 10, 61, 3, 61, 3, 61, 3, 61, 3, 61, 5, 61, 732, 10, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 7, 61, 743, 10, 61, 12, 61, 14, 61, 746, 11, 61, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 7, 62, 760, 10, 62, 12, 62, 14, 62, 763, 11, 62, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 6, 62, 772, 10, 62, 13, 62, 14, 62, 773, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 5, 62, 787, 10, 62, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 7, 62, 797, 10, 62, 12, 62, 14, 62, 800, 11, 62, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 5, 63, 808, 10, 63, 3, 64, 3, 64, 3, 64, 3, 64, 3, 64, 3, 64, 3, 64, 3, 64, 3, 64, 3, 64, 3, 64, 3, 64, 3, 64, 3, 64, 5, 64, 824, 10, 64, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 5, 65, 833, 10, 65, 3, 66, 3, 66, 3, 67, 3, 67, 3, 68, 3, 68, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 5, 69, 849, 10, 69, 3, 69, 5, 69, 852, 10, 69, 3, 70, 3, 70, 3, 71, 3, 71, 3, 72, 3, 72, 3, 72, 3, 645, 6, 62, 118, 120, 122, 73, 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, 2, 14, 3, 2, 264, 286, 3, 2, 192, 193, 4, 2, 11, 11, 13, 13, 4, 2, 51, 51, 53, 54, 3, 2, 38, 39, 4, 2, 80, 80, 148, 148, 4, 2, 6, 6, 28, 28, 3, 2, 35, 36, 3, 2, 11, 12, 5, 2, 4, 4, 15, 19, 135, 135, 6, 2, 6, 6, 17, 18, 20, 20, 28, 28, 4, 2, 301, 303, 310, 310, 2, 924, 2, 144, 3, 2, 2, 2, 4, 147, 3, 2, 2, 2, 6, 156, 3, 2, 2, 2, 8, 161, 3, 2, 2, 2, 10, 163, 3, 2, 2, 2, 12, 176, 3, 2, 2, 2, 14, 180, 3, 2, 2, 2, 16, 182, 3, 2, 2, 2, 18, 200, 3, 2, 2, 2, 20, 203, 3, 2, 2, 2, 22, 205, 3, 2, 2, 2, 24, 207, 3, 2, 2, 2, 26, 211, 3, 2, 2, 2, 28, 219, 3, 2, 2, 2, 30, 221, 3, 2, 2, 2, 32, 229, 3, 2, 2, 2, 34, 241, 3, 2, 2, 2, 36, 243, 3, 2, 2, 2, 38, 250, 3, 2, 2, 2, 40, 254, 3, 2, 2, 2, 42, 266, 3, 2, 2, 2, 44, 271, 3, 2, 2, 2, 46, 273, 3, 2, 2, 2, 48, 280, 3, 2, 2, 2, 50, 289, 3, 2, 2, 2, 52, 299, 3, 2, 2, 2, 54, 325, 3, 2, 2, 2, 56, 329, 3, 2, 2, 2, 58, 331, 3, 2, 2, 2, 60, 377, 3, 2, 2, 2, 62, 379, 3, 2, 2, 2, 64, 405, 3, 2, 2, 2, 66, 428, 3, 2, 2, 2, 68, 458, 3, 2, 2, 2, 70, 460, 3, 2, 2, 2, 72, 476, 3, 2, 2, 2, 74, 478, 3, 2, 2, 2, 76, 531, 3, 2, 2, 2, 78, 533, 3, 2, 2, 2, 80, 559, 3, 2, 2, 2, 82, 561, 3, 2, 2, 2, 84, 571, 3, 2, 2, 2, 86, 574, 3, 2, 2, 2, 88, 579, 3, 2, 2, 2, 90, 581, 3, 2, 2, 2, 92, 583, 3, 2, 2, 2, 94, 585, 3, 2, 2, 2, 96, 595, 3, 2, 2, 2, 98, 607, 3, 2, 2, 2, 100, 616, 3, 2, 2, 2, 102, 631, 3, 2, 2, 2, 104, 633, 3, 2, 2, 2, 106, 641, 3, 2, 2, 2, 108, 648, 3, 2, 2, 2, 110, 660, 3, 2, 2, 2, 112, 664, 3, 2, 2, 2, 114, 667, 3, 2, 2, 2, 116, 671, 3, 2, 2, 2, 118, 690, 3, 2, 2, 2, 120, 701, 3, 2, 2, 2, 122, 786, 3, 2, 2, 2, 124, 807, 3, 2, 2, 2, 126, 823, 3, 2, 2, 2, 128, 832, 3, 2, 2, 2, 130, 834, 3, 2, 2, 2, 132, 836, 3, 2, 2, 2, 134, 838, 3, 2, 2, 2, 136, 851, 3, 2, 2, 2, 138, 853, 3, 2, 2, 2, 140, 855, 3, 2, 2, 2, 142, 857, 3, 2, 2, 2, 144, 145, 5, 4, 3, 2, 145, 146, 7, 2, 2, 3, 146, 3, 3, 2, 2, 2, 147, 148, 5, 6, 4, 2, 148, 149, 7, 2, 2, 3, 149, 5, 3, 2, 2, 2, 150, 151, 5, 8, 5, 2, 151, 152, 7, 299, 2, 2, 152, 155, 3, 2, 2, 2, 153, 155, 5, 10, 6, 2, 154, 150, 3, 2, 2, 2, 154, 153, 3, 2, 2, 2, 155, 158, 3, 2, 2, 2, 156, 154, 3, 2, 2, 2, 156, 157, 3, 2, 2, 2, 157, 7, 3, 2, 2, 2, 158, 156, 3, 2, 2, 2, 159, 162, 5, 12, 7, 2, 160, 162, 5, 14, 8, 2, 161, 159, 3, 2, 2, 2, 161, 160, 3, 2, 2, 2, 162, 9, 3, 2, 2, 2, 163, 164, 7, 299, 2, 2, 164, 11, 3, 2, 2, 2, 165, 177, 5, 16, 9, 2, 166, 177, 5, 30, 16, 2, 167, 177, 5, 32, 17, 2, 168, 177, 5, 34, 18, 2, 169, 177, 5, 36, 19, 2, 170, 177, 5, 42, 22, 2, 171, 177, 5, 44, 23, 2, 172, 177, 5, 46, 24, 2, 173, 177, 5, 48, 25, 2, 174, 177, 5, 50, 26, 2, 175, 177, 5, 52, 27, 2, 176, 165, 3, 2, 2, 2, 176, 166, 3, 2, 2, 2, 176, 167, 3, 2, 2, 2, 176, 168, 3, 2, 2, 2, 176, 169, 3, 2, 2, 2, 176, 170, 3, 2, 2, 2, 176, 171, 3, 2, 2, 2, 176, 172, 3, 2, 2, 2, 176, 173, 3, 2, 2, 2, 176, 174, 3, 2, 2, 2, 176, 175, 3, 2, 2, 2, 177, 13, 3, 2, 2, 2, 178, 181, 5, 54, 28, 2, 179, 181, 5, 94, 48, 2, 180, 178, 3, 2, 2, 2, 180, 179, 3, 2, 2, 2, 181, 15, 3, 2, 2, 2, 182, 183, 7, 73, 2, 2, 183, 184, 7, 74, 2, 2, 184, 185, 5, 106, 54, 2, 185, 186, 7, 296, 2, 2, 186, 191, 5, 18, 10, 2, 187, 188, 7, 298, 2, 2, 188, 190, 5, 18, 10, 2, 189, 187, 3, 2, 2, 2, 190, 193, 3, 2, 2, 2, 191, 189, 3, 2, 2, 2, 191, 192, 3, 2, 2, 2, 192, 194, 3, 2, 2, 2, 193, 191, 3, 2, 2, 2, 194, 196, 7, 297, 2, 2, 195, 197, 5, 24, 13, 2, 196, 195, 3, 2, 2, 2, 196, 197, 3, 2, 2, 2, 197, 198, 3, 2, 2, 2, 198, 199, 5, 108, 55, 2, 199, 17, 3, 2, 2, 2, 200, 201, 5, 20, 11, 2, 201, 202, 5, 22, 12, 2, 202, 19, 3, 2, 2, 2, 203, 204, 7, 262, 2, 2, 204, 21, 3, 2, 2, 2, 205, 206, 9, 2, 2, 2, 206, 23, 3, 2, 2, 2, 207, 208, 7, 207, 2, 2, 208, 209, 7, 16, 2, 2, 209, 210, 5, 26, 14, 2, 210, 25, 3, 2, 2, 2, 211, 216, 5, 28, 15, 2, 212, 213, 7, 298, 2, 2, 213, 215, 5, 28, 15, 2, 214, 212, 3, 2, 2, 2, 215, 218, 3, 2, 2, 2, 216, 214, 3, 2, 2, 2, 216, 217, 3, 2, 2, 2, 217, 27, 3, 2, 2, 2, 218, 216, 3, 2, 2, 2, 219, 220, 7, 262, 2, 2, 220, 29, 3, 2, 2, 2, 221, 222, 7, 73, 2, 2, 222, 224, 7, 199, 2, 2, 223, 225, 5, 110, 56, 2, 224, 223, 3, 2, 2, 2, 224, 225, 3, 2, 2, 2, 225, 226, 3, 2, 2, 2, 226, 227, 5, 106, 54, 2, 227, 228, 5, 108, 55, 2, 228, 31, 3, 2, 2, 2, 229, 231, 7, 73, 2, 2, 230, 232, 7, 174, 2, 2, 231, 230, 3, 2, 2, 2, 231, 232, 3, 2, 2, 2, 232, 233, 3, 2, 2, 2, 233, 235, 7, 76, 2, 2, 234, 236, 5, 110, 56, 2, 235, 234, 3, 2, 2, 2, 235, 236, 3, 2, 2, 2, 236, 237, 3, 2, 2, 2, 237, 238, 5, 106, 54, 2, 238, 239, 7, 10, 2, 2, 239, 240, 5, 58, 30, 2, 240, 33, 3, 2, 2, 2, 241, 242, 3, 2, 2, 2, 242, 35, 3, 2, 2, 2, 243, 244, 7, 103, 2, 2, 244, 245, 7, 74, 2, 2, 245, 248, 5, 106, 54, 2, 246, 249, 5, 38, 20, 2, 247, 249, 5, 40, 21, 2, 248, 246, 3, 2, 2, 2, 248, 247, 3, 2, 2, 2, 249, 37, 3, 2, 2, 2, 250, 251, 7, 104, 2, 2, 251, 252, 7, 100, 2, 2, 252, 253, 5, 106, 54, 2, 253, 39, 3, 2, 2, 2, 254, 255, 7, 107, 2, 2, 255, 256, 7, 296, 2, 2, 256, 261, 5, 114, 58, 2, 257, 258, 7, 298, 2, 2, 258, 260, 5, 114, 58, 2, 259, 257, 3, 2, 2, 2, 260, 263, 3, 2, 2, 2, 261, 259, 3, 2, 2, 2, 261, 262, 3, 2, 2, 2, 262, 264, 3, 2, 2, 2, 263, 261, 3, 2, 2, 2, 264, 265, 7, 297, 2, 2, 265, 41, 3, 2, 2, 2, 266, 267, 7, 103, 2, 2, 267, 268, 7, 199, 2, 2, 268, 269, 5, 106, 54, 2, 269, 270, 5, 40, 21, 2, 270, 43, 3, 2, 2, 2, 271, 272, 3, 2, 2, 2, 272, 45, 3, 2, 2, 2, 273, 274, 7, 95, 2, 2, 274, 276, 7, 74, 2, 2, 275, 277, 5, 112, 57, 2, 276, 275, 3, 2, 2, 2, 276, 277, 3, 2, 2, 2, 277, 278, 3, 2, 2, 2, 278, 279, 5, 106, 54, 2, 279, 47, 3, 2, 2, 2, 280, 281, 7, 95, 2, 2, 281, 283, 7, 199, 2, 2, 282, 284, 5, 112, 57, 2, 283, 282, 3, 2, 2, 2, 283, 284, 3, 2, 2, 2, 284, 285, 3, 2, 2, 2, 285, 287, 5, 106, 54, 2, 286, 288, 9, 3, 2, 2, 287, 286, 3, 2, 2, 2, 287, 288, 3, 2, 2, 2, 288, 49, 3, 2, 2, 2, 289, 291, 7, 95, 2, 2, 290, 292, 7, 174, 2, 2, 291, 290, 3, 2, 2, 2, 291, 292, 3, 2, 2, 2, 292, 293, 3, 2, 2, 2, 293, 295, 7, 76, 2, 2, 294, 296, 5, 112, 57, 2, 295, 294, 3, 2, 2, 2, 295, 296, 3, 2, 2, 2, 296, 297, 3, 2, 2, 2, 297, 298, 5, 106, 54, 2, 298, 51, 3, 2, 2, 2, 299, 303, 7, 95, 2, 2, 300, 304, 7, 174, 2, 2, 301, 302, 7, 174, 2, 2, 302, 304, 7, 263, 2, 2, 303, 300, 3, 2, 2, 2, 303, 301, 3, 2, 2, 2, 303, 304, 3, 2, 2, 2, 304, 305, 3, 2, 2, 2, 305, 307, 7, 165, 2, 2, 306, 308, 5, 112, 57, 2, 307, 306, 3, 2, 2, 2, 307, 308, 3, 2, 2, 2, 308, 309, 3, 2, 2, 2, 309, 310, 5, 106, 54, 2, 310, 53, 3, 2, 2, 2, 311, 326, 5, 98, 50, 2, 312, 314, 5, 56, 29, 2, 313, 315, 5, 82, 42, 2, 314, 313, 3, 2, 2, 2, 314, 315, 3, 2, 2, 2, 315, 317, 3, 2, 2, 2, 316, 318, 5, 86, 44, 2, 317, 316, 3, 2, 2, 2, 317, 318, 3, 2, 2, 2, 318, 320, 3, 2, 2, 2, 319, 321, 5, 90, 46, 2, 320, 319, 3, 2, 2, 2, 320, 321, 3, 2, 2, 2, 321, 323, 3, 2, 2, 2, 322, 324, 5, 92, 47, 2, 323, 322, 3, 2, 2, 2, 323, 324, 3, 2, 2, 2, 324, 326, 3, 2, 2, 2, 325, 311, 3, 2, 2, 2, 325, 312, 3, 2, 2, 2, 326, 55, 3, 2, 2, 2, 327, 330, 5, 58, 30, 2, 328, 330, 5, 78, 40, 2, 329, 327, 3, 2, 2, 2, 329, 328, 3, 2, 2, 2, 330, 57, 3, 2, 2, 2, 331, 333, 7, 7, 2, 2, 332, 334, 9, 4, 2, 2, 333, 332, 3, 2, 2, 2, 333, 334, 3, 2, 2, 2, 334, 344, 3, 2, 2, 2, 335, 345, 7, 308, 2, 2, 336, 341, 5, 60, 31, 2, 337, 338, 7, 298, 2, 2, 338, 340, 5, 60, 31, 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, 345, 3, 2, 2, 2, 343, 341, 3, 2, 2, 2, 344, 335, 3, 2, 2, 2, 344, 336, 3, 2, 2, 2, 345, 346, 3, 2, 2, 2, 346, 347, 7, 8, 2, 2, 347, 350, 5, 62, 32, 2, 348, 349, 7, 14, 2, 2, 349, 351, 5, 118, 60, 2, 350, 348, 3, 2, 2, 2, 350, 351, 3, 2, 2, 2, 351, 352, 3, 2, 2, 2, 352, 353, 7, 15, 2, 2, 353, 354, 7, 16, 2, 2, 354, 359, 5, 76, 39, 2, 355, 356, 7, 298, 2, 2, 356, 358, 5, 76, 39, 2, 357, 355, 3, 2, 2, 2, 358, 361, 3, 2, 2, 2, 359, 357, 3, 2, 2, 2, 359, 360, 3, 2, 2, 2, 360, 364, 3, 2, 2, 2, 361, 359, 3, 2, 2, 2, 362, 363, 7, 22, 2, 2, 363, 365, 5, 118, 60, 2, 364, 362, 3, 2, 2, 2, 364, 365, 3, 2, 2, 2, 365, 59, 3, 2, 2, 2, 366, 371, 5, 118, 60, 2, 367, 369, 7, 10, 2, 2, 368, 367, 3, 2, 2, 2, 368, 369, 3, 2, 2, 2, 369, 370, 3, 2, 2, 2, 370, 372, 5, 106, 54, 2, 371, 368, 3, 2, 2, 2, 371, 372, 3, 2, 2, 2, 372, 378, 3, 2, 2, 2, 373, 374, 5, 106, 54, 2, 374, 375, 7, 3, 2, 2, 375, 376, 7, 4, 2, 2, 376, 378, 3, 2, 2, 2, 377, 366, 3, 2, 2, 2, 377, 373, 3, 2, 2, 2, 378, 61, 3, 2, 2, 2, 379, 380, 8, 32, 1, 2, 380, 385, 5, 64, 33, 2, 381, 382, 7, 298, 2, 2, 382, 384, 5, 64, 33, 2, 383, 381, 3, 2, 2, 2, 384, 387, 3, 2, 2, 2, 385, 383, 3, 2, 2, 2, 385, 386, 3, 2, 2, 2, 386, 402, 3, 2, 2, 2, 387, 385, 3, 2, 2, 2, 388, 390, 12, 3, 2, 2, 389, 391, 7, 55, 2, 2, 390, 389, 3, 2, 2, 2, 390, 391, 3, 2, 2, 2, 391, 393, 3, 2, 2, 2, 392, 394, 9, 5, 2, 2, 393, 392, 3, 2, 2, 2, 393, 394, 3, 2, 2, 2, 394, 395, 3, 2, 2, 2, 395, 396, 7, 47, 2, 2, 396, 398, 5, 62, 32, 2, 397, 399, 5, 72, 37, 2, 398, 397, 3, 2, 2, 2, 398, 399, 3, 2, 2, 2, 399, 401, 3, 2, 2, 2, 400, 388, 3, 2, 2, 2, 401, 404, 3, 2, 2, 2, 402, 400, 3, 2, 2, 2, 402, 403, 3, 2, 2, 2, 403, 63, 3, 2, 2, 2, 404, 402, 3, 2, 2, 2, 405, 407, 5, 68, 35, 2, 406, 408, 5, 66, 34, 2, 407, 406, 3, 2, 2, 2, 407, 408, 3, 2, 2, 2, 408, 426, 3, 2, 2, 2, 409, 411, 7, 10, 2, 2, 410, 409, 3, 2, 2, 2, 410, 411, 3, 2, 2, 2, 411, 412, 3, 2, 2, 2, 412, 424, 5, 106, 54, 2, 413, 414, 7, 296, 2, 2, 414, 419, 5, 106, 54, 2, 415, 416, 7, 298, 2, 2, 416, 418, 5, 106, 54, 2, 417, 415, 3, 2, 2, 2, 418, 421, 3, 2, 2, 2, 419, 417, 3, 2, 2, 2, 419, 420, 3, 2, 2, 2, 420, 422, 3, 2, 2, 2, 421, 419, 3, 2, 2, 2, 422, 423, 7, 297, 2, 2, 423, 425, 3, 2, 2, 2, 424, 413, 3, 2, 2, 2, 424, 425, 3, 2, 2, 2, 425, 427, 3, 2, 2, 2, 426, 410, 3, 2, 2, 2, 426, 427, 3, 2, 2, 2, 427, 65, 3, 2, 2, 2, 428, 429, 3, 2, 2, 2, 429, 67, 3, 2, 2, 2, 430, 432, 7, 74, 2, 2, 431, 430, 3, 2, 2, 2, 431, 432, 3, 2, 2, 2, 432, 433, 3, 2, 2, 2, 433, 435, 5, 106, 54, 2, 434, 436, 5, 70, 36, 2, 435, 434, 3, 2, 2, 2, 435, 436, 3, 2, 2, 2, 436, 459, 3, 2, 2, 2, 437, 438, 7, 58, 2, 2, 438, 439, 7, 74, 2, 2, 439, 440, 7, 296, 2, 2, 440, 441, 5, 106, 54, 2, 441, 442, 7, 296, 2, 2, 442, 447, 5, 118, 60, 2, 443, 444, 7, 298, 2, 2, 444, 446, 5, 118, 60, 2, 445, 443, 3, 2, 2, 2, 446, 449, 3, 2, 2, 2, 447, 445, 3, 2, 2, 2, 447, 448, 3, 2, 2, 2, 448, 450, 3, 2, 2, 2, 449, 447, 3, 2, 2, 2, 450, 451, 7, 297, 2, 2, 451, 452, 7, 297, 2, 2, 452, 459, 3, 2, 2, 2, 453, 454, 7, 233, 2, 2, 454, 455, 7, 296, 2, 2, 455, 456, 5, 118, 60, 2, 456, 457, 7, 297, 2, 2, 457, 459, 3, 2, 2, 2, 458, 431, 3, 2, 2, 2, 458, 437, 3, 2, 2, 2, 458, 453, 3, 2, 2, 2, 459, 69, 3, 2, 2, 2, 460, 461, 3, 2, 2, 2, 461, 71, 3, 2, 2, 2, 462, 463, 7, 56, 2, 2, 463, 477, 5, 74, 38, 2, 464, 465, 7, 151, 2, 2, 465, 466, 7, 296, 2, 2, 466, 471, 5, 106, 54, 2, 467, 468, 7, 298, 2, 2, 468, 470, 5, 106, 54, 2, 469, 467, 3, 2, 2, 2, 470, 473, 3, 2, 2, 2, 471, 469, 3, 2, 2, 2, 471, 472, 3, 2, 2, 2, 472, 474, 3, 2, 2, 2, 473, 471, 3, 2, 2, 2, 474, 475, 7, 297, 2, 2, 475, 477, 3, 2, 2, 2, 476, 462, 3, 2, 2, 2, 476, 464, 3, 2, 2, 2, 477, 73, 3, 2, 2, 2, 478, 479, 3, 2, 2, 2, 479, 75, 3, 2, 2, 2, 480, 532, 5, 118, 60, 2, 481, 482, 7, 296, 2, 2, 482, 532, 7, 297, 2, 2, 483, 484, 7, 296, 2, 2, 484, 489, 5, 118, 60, 2, 485, 486, 7, 298, 2, 2, 486, 488, 5, 118, 60, 2, 487, 485, 3, 2, 2, 2, 488, 491, 3, 2, 2, 2, 489, 487, 3, 2, 2, 2, 489, 490, 3, 2, 2, 2, 490, 492, 3, 2, 2, 2, 491, 489, 3, 2, 2, 2, 492, 493, 7, 297, 2, 2, 493, 532, 3, 2, 2, 2, 494, 495, 7, 19, 2, 2, 495, 496, 7, 296, 2, 2, 496, 501, 5, 118, 60, 2, 497, 498, 7, 298, 2, 2, 498, 500, 5, 118, 60, 2, 499, 497, 3, 2, 2, 2, 500, 503, 3, 2, 2, 2, 501, 499, 3, 2, 2, 2, 501, 502, 3, 2, 2, 2, 502, 504, 3, 2, 2, 2, 503, 501, 3, 2, 2, 2, 504, 505, 7, 297, 2, 2, 505, 532, 3, 2, 2, 2, 506, 507, 7, 20, 2, 2, 507, 508, 7, 296, 2, 2, 508, 513, 5, 118, 60, 2, 509, 510, 7, 298, 2, 2, 510, 512, 5, 118, 60, 2, 511, 509, 3, 2, 2, 2, 512, 515, 3, 2, 2, 2, 513, 511, 3, 2, 2, 2, 513, 514, 3, 2, 2, 2, 514, 516, 3, 2, 2, 2, 515, 513, 3, 2, 2, 2, 516, 517, 7, 297, 2, 2, 517, 532, 3, 2, 2, 2, 518, 519, 7, 17, 2, 2, 519, 520, 7, 18, 2, 2, 520, 521, 7, 296, 2, 2, 521, 526, 5, 76, 39, 2, 522, 523, 7, 298, 2, 2, 523, 525, 5, 76, 39, 2, 524, 522, 3, 2, 2, 2, 525, 528, 3, 2, 2, 2, 526, 524, 3, 2, 2, 2, 526, 527, 3, 2, 2, 2, 527, 529, 3, 2, 2, 2, 528, 526, 3, 2, 2, 2, 529, 530, 7, 297, 2, 2, 530, 532, 3, 2, 2, 2, 531, 480, 3, 2, 2, 2, 531, 481, 3, 2, 2, 2, 531, 483, 3, 2, 2, 2, 531, 494, 3, 2, 2, 2, 531, 506, 3, 2, 2, 2, 531, 518, 3, 2, 2, 2, 532, 77, 3, 2, 2, 2, 533, 535, 7, 7, 2, 2, 534, 536, 9, 4, 2, 2, 535, 534, 3, 2, 2, 2, 535, 536, 3, 2, 2, 2, 536, 546, 3, 2, 2, 2, 537, 547, 7, 308, 2, 2, 538, 543, 5, 80, 41, 2, 539, 540, 7, 298, 2, 2, 540, 542, 5, 80, 41, 2, 541, 539, 3, 2, 2, 2, 542, 545, 3, 2, 2, 2, 543, 541, 3, 2, 2, 2, 543, 544, 3, 2, 2, 2, 544, 547, 3, 2, 2, 2, 545, 543, 3, 2, 2, 2, 546, 537, 3, 2, 2, 2, 546, 538, 3, 2, 2, 2, 547, 79, 3, 2, 2, 2, 548, 553, 5, 118, 60, 2, 549, 551, 7, 10, 2, 2, 550, 549, 3, 2, 2, 2, 550, 551, 3, 2, 2, 2, 551, 552, 3, 2, 2, 2, 552, 554, 5, 106, 54, 2, 553, 550, 3, 2, 2, 2, 553, 554, 3, 2, 2, 2, 554, 560, 3, 2, 2, 2, 555, 556, 5, 106, 54, 2, 556, 557, 7, 3, 2, 2, 557, 558, 7, 4, 2, 2, 558, 560, 3, 2, 2, 2, 559, 548, 3, 2, 2, 2, 559, 555, 3, 2, 2, 2, 560, 81, 3, 2, 2, 2, 561, 562, 7, 21, 2, 2, 562, 563, 7, 16, 2, 2, 563, 568, 5, 84, 43, 2, 564, 565, 7, 298, 2, 2, 565, 567, 5, 84, 43, 2, 566, 564, 3, 2, 2, 2, 567, 570, 3, 2, 2, 2, 568, 566, 3, 2, 2, 2, 568, 569, 3, 2, 2, 2, 569, 83, 3, 2, 2, 2, 570, 568, 3, 2, 2, 2, 571, 572, 5, 118, 60, 2, 572, 573, 9, 6, 2, 2, 573, 85, 3, 2, 2, 2, 574, 577, 7, 23, 2, 2, 575, 578, 5, 88, 45, 2, 576, 578, 7, 11, 2, 2, 577, 575, 3, 2, 2, 2, 577, 576, 3, 2, 2, 2, 578, 87, 3, 2, 2, 2, 579, 580, 3, 2, 2, 2, 580, 89, 3, 2, 2, 2, 581, 582, 3, 2, 2, 2, 582, 91, 3, 2, 2, 2, 583, 584, 3, 2, 2, 2, 584, 93, 3, 2, 2, 2, 585, 586, 7, 78, 2, 2, 586, 587, 9, 7, 2, 2, 587, 593, 5, 106, 54, 2, 588, 590, 5, 96, 49, 2, 589, 588, 3, 2, 2, 2, 589, 590, 3, 2, 2, 2, 590, 591, 3, 2, 2, 2, 591, 594, 5, 58, 30, 2, 592, 594, 5, 98, 50, 2, 593, 589, 3, 2, 2, 2, 593, 592, 3, 2, 2, 2, 594, 95, 3, 2, 2, 2, 595, 596, 7, 61, 2, 2, 596, 597, 7, 296, 2, 2, 597, 602, 5, 114, 58, 2, 598, 599, 7, 298, 2, 2, 599, 601, 5, 114, 58, 2, 600, 598, 3, 2, 2, 2, 601, 604, 3, 2, 2, 2, 602, 600, 3, 2, 2, 2, 602, 603, 3, 2, 2, 2, 603, 605, 3, 2, 2, 2, 604, 602, 3, 2, 2, 2, 605, 606, 7, 297, 2, 2, 606, 97, 3, 2, 2, 2, 607, 608, 7, 72, 2, 2, 608, 613, 5, 100, 51, 2, 609, 610, 7, 298, 2, 2, 610, 612, 5, 100, 51, 2, 611, 609, 3, 2, 2, 2, 612, 615, 3, 2, 2, 2, 613, 611, 3, 2, 2, 2, 613, 614, 3, 2, 2, 2, 614, 99, 3, 2, 2, 2, 615, 613, 3, 2, 2, 2, 616, 617, 7, 296, 2, 2, 617, 622, 5, 102, 52, 2, 618, 619, 7, 298, 2, 2, 619, 621, 5, 102, 52, 2, 620, 618, 3, 2, 2, 2, 621, 624, 3, 2, 2, 2, 622, 620, 3, 2, 2, 2, 622, 623, 3, 2, 2, 2, 623, 625, 3, 2, 2, 2, 624, 622, 3, 2, 2, 2, 625, 626, 7, 297, 2, 2, 626, 101, 3, 2, 2, 2, 627, 632, 5, 138, 70, 2, 628, 632, 5, 142, 72, 2, 629, 632, 7, 313, 2, 2, 630, 632, 7, 286, 2, 2, 631, 627, 3, 2, 2, 2, 631, 628, 3, 2, 2, 2, 631, 629, 3, 2, 2, 2, 631, 630, 3, 2, 2, 2, 632, 103, 3, 2, 2, 2, 633, 638, 5, 106, 54, 2, 634, 635, 7, 5, 2, 2, 635, 637, 5, 106, 54, 2, 636, 634, 3, 2, 2, 2, 637, 640, 3, 2, 2, 2, 638, 636, 3, 2, 2, 2, 638, 639, 3, 2, 2, 2, 639, 105, 3, 2, 2, 2, 640, 638, 3, 2, 2, 2, 641, 645, 7, 262, 2, 2, 642, 644, 7, 261, 2, 2, 643, 642, 3, 2, 2, 2, 644, 647, 3, 2, 2, 2, 645, 646, 3, 2, 2, 2, 645, 643, 3, 2, 2, 2, 646, 107, 3, 2, 2, 2, 647, 645, 3, 2, 2, 2, 648, 649, 7, 71, 2, 2, 649, 650, 7, 296, 2, 2, 650, 655, 5, 114, 58, 2, 651, 652, 7, 298, 2, 2, 652, 654, 5, 114, 58, 2, 653, 651, 3, 2, 2, 2, 654, 657, 3, 2, 2, 2, 655, 653, 3, 2, 2, 2, 655, 656, 3, 2, 2, 2, 656, 658, 3, 2, 2, 2, 657, 655, 3, 2, 2, 2, 658, 659, 7, 297, 2, 2, 659, 109, 3, 2, 2, 2, 660, 661, 7, 119, 2, 2, 661, 662, 7, 28, 2, 2, 662, 663, 7, 30, 2, 2, 663, 111, 3, 2, 2, 2, 664, 665, 7, 119, 2, 2, 665, 666, 7, 30, 2, 2, 666, 113, 3, 2, 2, 2, 667, 668, 7, 260, 2, 2, 668, 669, 7, 287, 2, 2, 669, 670, 7, 260, 2, 2, 670, 115, 3, 2, 2, 2, 671, 676, 5, 118, 60, 2, 672, 673, 7, 5, 2, 2, 673, 675, 5, 118, 60, 2, 674, 672, 3, 2, 2, 2, 675, 678, 3, 2, 2, 2, 676, 674, 3, 2, 2, 2, 676, 677, 3, 2, 2, 2, 677, 117, 3, 2, 2, 2, 678, 676, 3, 2, 2, 2, 679, 680, 8, 60, 1, 2, 680, 681, 9, 8, 2, 2, 681, 691, 5, 118, 60, 6, 682, 683, 5, 120, 61, 2, 683, 685, 7, 34, 2, 2, 684, 686, 7, 28, 2, 2, 685, 684, 3, 2, 2, 2, 685, 686, 3, 2, 2, 2, 686, 687, 3, 2, 2, 2, 687, 688, 9, 9, 2, 2, 688, 691, 3, 2, 2, 2, 689, 691, 5, 120, 61, 2, 690, 679, 3, 2, 2, 2, 690, 682, 3, 2, 2, 2, 690, 689, 3, 2, 2, 2, 691, 698, 3, 2, 2, 2, 692, 693, 12, 5, 2, 2, 693, 694, 5, 124, 63, 2, 694, 695, 5, 118, 60, 6, 695, 697, 3, 2, 2, 2, 696, 692, 3, 2, 2, 2, 697, 700, 3, 2, 2, 2, 698, 696, 3, 2, 2, 2, 698, 699, 3, 2, 2, 2, 699, 119, 3, 2, 2, 2, 700, 698, 3, 2, 2, 2, 701, 702, 8, 61, 1, 2, 702, 703, 5, 122, 62, 2, 703, 744, 3, 2, 2, 2, 704, 705, 12, 7, 2, 2, 705, 706, 5, 126, 64, 2, 706, 707, 5, 120, 61, 8, 707, 743, 3, 2, 2, 2, 708, 710, 12, 5, 2, 2, 709, 711, 7, 28, 2, 2, 710, 709, 3, 2, 2, 2, 710, 711, 3, 2, 2, 2, 711, 712, 3, 2, 2, 2, 712, 713, 7, 31, 2, 2, 713, 714, 5, 120, 61, 2, 714, 715, 7, 26, 2, 2, 715, 716, 5, 120, 61, 6, 716, 743, 3, 2, 2, 2, 717, 719, 12, 4, 2, 2, 718, 720, 7, 28, 2, 2, 719, 718, 3, 2, 2, 2, 719, 720, 3, 2, 2, 2, 720, 721, 3, 2, 2, 2, 721, 722, 7, 32, 2, 2, 722, 743, 5, 120, 61, 5, 723, 725, 12, 8, 2, 2, 724, 726, 7, 28, 2, 2, 725, 724, 3, 2, 2, 2, 725, 726, 3, 2, 2, 2, 726, 727, 3, 2, 2, 2, 727, 728, 7, 27, 2, 2, 728, 731, 7, 7, 2, 2, 729, 732, 5, 58, 30, 2, 730, 732, 5, 116, 59, 2, 731, 729, 3, 2, 2, 2, 731, 730, 3, 2, 2, 2, 732, 733, 3, 2, 2, 2, 733, 734, 7, 8, 2, 2, 734, 743, 3, 2, 2, 2, 735, 736, 12, 6, 2, 2, 736, 737, 5, 126, 64, 2, 737, 738, 9, 10, 2, 2, 738, 739, 7, 7, 2, 2, 739, 740, 5, 58, 30, 2, 740, 741, 7, 8, 2, 2, 741, 743, 3, 2, 2, 2, 742, 704, 3, 2, 2, 2, 742, 708, 3, 2, 2, 2, 742, 717, 3, 2, 2, 2, 742, 723, 3, 2, 2, 2, 742, 735, 3, 2, 2, 2, 743, 746, 3, 2, 2, 2, 744, 742, 3, 2, 2, 2, 744, 745, 3, 2, 2, 2, 745, 121, 3, 2, 2, 2, 746, 744, 3, 2, 2, 2, 747, 748, 8, 62, 1, 2, 748, 787, 5, 136, 69, 2, 749, 787, 5, 134, 68, 2, 750, 751, 5, 132, 67, 2, 751, 752, 5, 122, 62, 10, 752, 787, 3, 2, 2, 2, 753, 754, 7, 269, 2, 2, 754, 787, 5, 122, 62, 9, 755, 756, 7, 7, 2, 2, 756, 761, 5, 118, 60, 2, 757, 758, 7, 5, 2, 2, 758, 760, 5, 118, 60, 2, 759, 757, 3, 2, 2, 2, 760, 763, 3, 2, 2, 2, 761, 759, 3, 2, 2, 2, 761, 762, 3, 2, 2, 2, 762, 764, 3, 2, 2, 2, 763, 761, 3, 2, 2, 2, 764, 765, 7, 8, 2, 2, 765, 787, 3, 2, 2, 2, 766, 767, 7, 285, 2, 2, 767, 768, 7, 7, 2, 2, 768, 771, 5, 118, 60, 2, 769, 770, 7, 5, 2, 2, 770, 772, 5, 118, 60, 2, 771, 769, 3, 2, 2, 2, 772, 773, 3, 2, 2, 2, 773, 771, 3, 2, 2, 2, 773, 774, 3, 2, 2, 2, 774, 775, 3, 2, 2, 2, 775, 776, 7, 8, 2, 2, 776, 787, 3, 2, 2, 2, 777, 778, 7, 30, 2, 2, 778, 779, 7, 7, 2, 2, 779, 780, 5, 58, 30, 2, 780, 781, 7, 8, 2, 2, 781, 787, 3, 2, 2, 2, 782, 783, 7, 7, 2, 2, 783, 784, 5, 58, 30, 2, 784, 785, 7, 8, 2, 2, 785, 787, 3, 2, 2, 2, 786, 747, 3, 2, 2, 2, 786, 749, 3, 2, 2, 2, 786, 750, 3, 2, 2, 2, 786, 753, 3, 2, 2, 2, 786, 755, 3, 2, 2, 2, 786, 766, 3, 2, 2, 2, 786, 777, 3, 2, 2, 2, 786, 782, 3, 2, 2, 2, 787, 798, 3, 2, 2, 2, 788, 789, 12, 4, 2, 2, 789, 790, 5, 128, 65, 2, 790, 791, 5, 122, 62, 5, 791, 797, 3, 2, 2, 2, 792, 793, 12, 3, 2, 2, 793, 794, 5, 130, 66, 2, 794, 795, 5, 122, 62, 4, 795, 797, 3, 2, 2, 2, 796, 788, 3, 2, 2, 2, 796, 792, 3, 2, 2, 2, 797, 800, 3, 2, 2, 2, 798, 796, 3, 2, 2, 2, 798, 799, 3, 2, 2, 2, 799, 123, 3, 2, 2, 2, 800, 798, 3, 2, 2, 2, 801, 808, 7, 26, 2, 2, 802, 803, 7, 9, 2, 2, 803, 808, 7, 9, 2, 2, 804, 808, 7, 25, 2, 2, 805, 806, 7, 10, 2, 2, 806, 808, 7, 10, 2, 2, 807, 801, 3, 2, 2, 2, 807, 802, 3, 2, 2, 2, 807, 804, 3, 2, 2, 2, 807, 805, 3, 2, 2, 2, 808, 125, 3, 2, 2, 2, 809, 824, 7, 11, 2, 2, 810, 824, 7, 12, 2, 2, 811, 824, 7, 13, 2, 2, 812, 813, 7, 13, 2, 2, 813, 824, 7, 11, 2, 2, 814, 815, 7, 12, 2, 2, 815, 824, 7, 11, 2, 2, 816, 817, 7, 13, 2, 2, 817, 824, 7, 12, 2, 2, 818, 819, 7, 6, 2, 2, 819, 824, 7, 11, 2, 2, 820, 821, 7, 13, 2, 2, 821, 822, 7, 11, 2, 2, 822, 824, 7, 12, 2, 2, 823, 809, 3, 2, 2, 2, 823, 810, 3, 2, 2, 2, 823, 811, 3, 2, 2, 2, 823, 812, 3, 2, 2, 2, 823, 814, 3, 2, 2, 2, 823, 816, 3, 2, 2, 2, 823, 818, 3, 2, 2, 2, 823, 820, 3, 2, 2, 2, 824, 127, 3, 2, 2, 2, 825, 826, 7, 13, 2, 2, 826, 833, 7, 13, 2, 2, 827, 828, 7, 12, 2, 2, 828, 833, 7, 12, 2, 2, 829, 833, 7, 9, 2, 2, 830, 833, 7, 14, 2, 2, 831, 833, 7, 10, 2, 2, 832, 825, 3, 2, 2, 2, 832, 827, 3, 2, 2, 2, 832, 829, 3, 2, 2, 2, 832, 830, 3, 2, 2, 2, 832, 831, 3, 2, 2, 2, 833, 129, 3, 2, 2, 2, 834, 835, 9, 11, 2, 2, 835, 131, 3, 2, 2, 2, 836, 837, 9, 12, 2, 2, 837, 133, 3, 2, 2, 2, 838, 839, 5, 106, 54, 2, 839, 135, 3, 2, 2, 2, 840, 852, 5, 138, 70, 2, 841, 852, 5, 140, 71, 2, 842, 843, 7, 18, 2, 2, 843, 852, 5, 140, 71, 2, 844, 852, 5, 142, 72, 2, 845, 852, 7, 311, 2, 2, 846, 852, 7, 312, 2, 2, 847, 849, 7, 28, 2, 2, 848, 847, 3, 2, 2, 2, 848, 849, 3, 2, 2, 2, 849, 850, 3, 2, 2, 2, 850, 852, 7, 286, 2, 2, 851, 840, 3, 2, 2, 2, 851, 841, 3, 2, 2, 2, 851, 842, 3, 2, 2, 2, 851, 844, 3, 2, 2, 2, 851, 845, 3, 2, 2, 2, 851, 846, 3, 2, 2, 2, 851, 848, 3, 2, 2, 2, 852, 137, 3, 2, 2, 2, 853, 854, 7, 309, 2, 2, 854, 139, 3, 2, 2, 2, 855, 856, 9, 13, 2, 2, 856, 141, 3, 2, 2, 2, 857, 858, 9, 9, 2, 2, 858, 143, 3, 2, 2, 2, 95, 154, 156, 161, 176, 180, 191, 196, 216, 224, 231, 235, 248, 261, 276, 283, 287, 291, 295, 303, 307, 314, 317, 320, 323, 325, 329, 333, 341, 344, 350, 359, 364, 368, 371, 377, 385, 390, 393, 398, 402, 407, 410, 419, 424, 426, 431, 435, 447, 458, 471, 476, 489, 501, 513, 526, 531, 535, 543, 546, 550, 553, 559, 568, 577, 589, 593, 602, 613, 622, 631, 638, 645, 655, 676, 685, 690, 698, 710, 719, 725, 731, 742, 744, 761, 773, 786, 796, 798, 807, 823, 832, 848, 851] \ No newline at end of file diff --git a/src/lib/flinksql/FlinkSqlParser.tokens b/src/lib/flinksql/FlinkSqlParser.tokens index 00c03dc..4c91485 100644 --- a/src/lib/flinksql/FlinkSqlParser.tokens +++ b/src/lib/flinksql/FlinkSqlParser.tokens @@ -1,4 +1,21 @@ T__0=1 +T__1=2 +T__2=3 +T__3=4 +T__4=5 +T__5=6 +T__6=7 +T__7=8 +T__8=9 +T__9=10 +T__10=11 +T__11=12 +T__12=13 +T__13=14 +T__14=15 +T__15=16 +T__16=17 +T__17=18 SPACE=1 SPEC_MYSQL_COMMENT=2 COMMENT_INPUT=3 @@ -304,7 +321,30 @@ SINGLE_QUOTE_SYMB=302 DOUBLE_QUOTE_SYMB=303 REVERSE_QUOTE_SYMB=304 COLON_SYMB=305 -','=1 +ASTERISK_SIGN=306 +STRING_LITERAL=307 +DECIMAL_LITERAL=308 +REAL_LITERAL=309 +BIT_STRING=310 +DEC_DIGIT=311 +'.'=1 +'*'=2 +','=3 +'!'=4 +'('=5 +')'=6 +'&'=7 +'|'=8 +'='=9 +'>'=10 +'<'=11 +'^'=12 +'/'=13 +'%'=14 +'+'=15 +'-'=16 +'--'=17 +'~'=18 'SELECT'=5 'FROM'=6 'ADD'=7 @@ -581,17 +621,6 @@ COLON_SYMB=305 'RAW'=282 'ROW'=283 'NULL'=284 -'='=285 -'>'=286 -'<'=287 -'!'=288 -'~'=289 -'|'=290 -'&'=291 -'^'=292 -'.'=293 -'('=294 -')'=295 ';'=297 '@'=298 '0'=299 diff --git a/src/lib/flinksql/FlinkSqlParserLexer.interp b/src/lib/flinksql/FlinkSqlParserLexer.interp index 91e16af..f70abb6 100644 --- a/src/lib/flinksql/FlinkSqlParserLexer.interp +++ b/src/lib/flinksql/FlinkSqlParserLexer.interp @@ -1,13 +1,64 @@ token literal names: null +'.' +'*' ',' +'!' +'(' +')' +'&' +'|' +'=' +'>' +'<' +'^' +'/' +'%' +'+' +'-' +'--' +'~' token symbolic names: null null +null +null +null +null +null +null +null +null +null +null +null +null +null +null +null +null +null rule names: T__0 +T__1 +T__2 +T__3 +T__4 +T__5 +T__6 +T__7 +T__8 +T__9 +T__10 +T__11 +T__12 +T__13 +T__14 +T__15 +T__16 +T__17 channel names: DEFAULT_TOKEN_CHANNEL @@ -17,4 +68,4 @@ mode names: DEFAULT_MODE atn: -[3, 24715, 42794, 33075, 47597, 16764, 15335, 30598, 22884, 2, 3, 7, 8, 1, 4, 2, 9, 2, 3, 2, 3, 2, 2, 2, 3, 3, 3, 3, 2, 2, 2, 6, 2, 3, 3, 2, 2, 2, 3, 5, 3, 2, 2, 2, 5, 6, 7, 46, 2, 2, 6, 4, 3, 2, 2, 2, 3, 2, 2] \ No newline at end of file +[3, 24715, 42794, 33075, 47597, 16764, 15335, 30598, 22884, 2, 20, 76, 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, 3, 2, 3, 2, 3, 3, 3, 3, 3, 4, 3, 4, 3, 5, 3, 5, 3, 6, 3, 6, 3, 7, 3, 7, 3, 8, 3, 8, 3, 9, 3, 9, 3, 10, 3, 10, 3, 11, 3, 11, 3, 12, 3, 12, 3, 13, 3, 13, 3, 14, 3, 14, 3, 15, 3, 15, 3, 16, 3, 16, 3, 17, 3, 17, 3, 18, 3, 18, 3, 18, 3, 19, 3, 19, 2, 2, 20, 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, 3, 2, 2, 2, 75, 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, 3, 39, 3, 2, 2, 2, 5, 41, 3, 2, 2, 2, 7, 43, 3, 2, 2, 2, 9, 45, 3, 2, 2, 2, 11, 47, 3, 2, 2, 2, 13, 49, 3, 2, 2, 2, 15, 51, 3, 2, 2, 2, 17, 53, 3, 2, 2, 2, 19, 55, 3, 2, 2, 2, 21, 57, 3, 2, 2, 2, 23, 59, 3, 2, 2, 2, 25, 61, 3, 2, 2, 2, 27, 63, 3, 2, 2, 2, 29, 65, 3, 2, 2, 2, 31, 67, 3, 2, 2, 2, 33, 69, 3, 2, 2, 2, 35, 71, 3, 2, 2, 2, 37, 74, 3, 2, 2, 2, 39, 40, 7, 48, 2, 2, 40, 4, 3, 2, 2, 2, 41, 42, 7, 44, 2, 2, 42, 6, 3, 2, 2, 2, 43, 44, 7, 46, 2, 2, 44, 8, 3, 2, 2, 2, 45, 46, 7, 35, 2, 2, 46, 10, 3, 2, 2, 2, 47, 48, 7, 42, 2, 2, 48, 12, 3, 2, 2, 2, 49, 50, 7, 43, 2, 2, 50, 14, 3, 2, 2, 2, 51, 52, 7, 40, 2, 2, 52, 16, 3, 2, 2, 2, 53, 54, 7, 126, 2, 2, 54, 18, 3, 2, 2, 2, 55, 56, 7, 63, 2, 2, 56, 20, 3, 2, 2, 2, 57, 58, 7, 64, 2, 2, 58, 22, 3, 2, 2, 2, 59, 60, 7, 62, 2, 2, 60, 24, 3, 2, 2, 2, 61, 62, 7, 96, 2, 2, 62, 26, 3, 2, 2, 2, 63, 64, 7, 49, 2, 2, 64, 28, 3, 2, 2, 2, 65, 66, 7, 39, 2, 2, 66, 30, 3, 2, 2, 2, 67, 68, 7, 45, 2, 2, 68, 32, 3, 2, 2, 2, 69, 70, 7, 47, 2, 2, 70, 34, 3, 2, 2, 2, 71, 72, 7, 47, 2, 2, 72, 73, 7, 47, 2, 2, 73, 36, 3, 2, 2, 2, 74, 75, 7, 128, 2, 2, 75, 38, 3, 2, 2, 2, 3, 2, 2] \ No newline at end of file diff --git a/src/lib/flinksql/FlinkSqlParserLexer.js b/src/lib/flinksql/FlinkSqlParserLexer.js index 77e20a6..06371ec 100644 --- a/src/lib/flinksql/FlinkSqlParserLexer.js +++ b/src/lib/flinksql/FlinkSqlParserLexer.js @@ -5,11 +5,51 @@ var antlr4 = require('antlr4/index'); var serializedATN = ["\u0003\u608b\ua72a\u8133\ub9ed\u417c\u3be7\u7786\u5964", - "\u0002\u0003\u0007\b\u0001\u0004\u0002\t\u0002\u0003\u0002\u0003\u0002", - "\u0002\u0002\u0003\u0003\u0003\u0003\u0002\u0002\u0002\u0006\u0002\u0003", - "\u0003\u0002\u0002\u0002\u0003\u0005\u0003\u0002\u0002\u0002\u0005\u0006", - "\u0007.\u0002\u0002\u0006\u0004\u0003\u0002\u0002\u0002\u0003\u0002", - "\u0002"].join(""); + "\u0002\u0014L\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", + "\t\u0010\u0004\u0011\t\u0011\u0004\u0012\t\u0012\u0004\u0013\t\u0013", + "\u0003\u0002\u0003\u0002\u0003\u0003\u0003\u0003\u0003\u0004\u0003\u0004", + "\u0003\u0005\u0003\u0005\u0003\u0006\u0003\u0006\u0003\u0007\u0003\u0007", + "\u0003\b\u0003\b\u0003\t\u0003\t\u0003\n\u0003\n\u0003\u000b\u0003\u000b", + "\u0003\f\u0003\f\u0003\r\u0003\r\u0003\u000e\u0003\u000e\u0003\u000f", + "\u0003\u000f\u0003\u0010\u0003\u0010\u0003\u0011\u0003\u0011\u0003\u0012", + "\u0003\u0012\u0003\u0012\u0003\u0013\u0003\u0013\u0002\u0002\u0014\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\u0003\u0002\u0002\u0002K\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\u0003\'\u0003\u0002\u0002", + "\u0002\u0005)\u0003\u0002\u0002\u0002\u0007+\u0003\u0002\u0002\u0002", + "\t-\u0003\u0002\u0002\u0002\u000b/\u0003\u0002\u0002\u0002\r1\u0003", + "\u0002\u0002\u0002\u000f3\u0003\u0002\u0002\u0002\u00115\u0003\u0002", + "\u0002\u0002\u00137\u0003\u0002\u0002\u0002\u00159\u0003\u0002\u0002", + "\u0002\u0017;\u0003\u0002\u0002\u0002\u0019=\u0003\u0002\u0002\u0002", + "\u001b?\u0003\u0002\u0002\u0002\u001dA\u0003\u0002\u0002\u0002\u001f", + "C\u0003\u0002\u0002\u0002!E\u0003\u0002\u0002\u0002#G\u0003\u0002\u0002", + "\u0002%J\u0003\u0002\u0002\u0002\'(\u00070\u0002\u0002(\u0004\u0003", + "\u0002\u0002\u0002)*\u0007,\u0002\u0002*\u0006\u0003\u0002\u0002\u0002", + "+,\u0007.\u0002\u0002,\b\u0003\u0002\u0002\u0002-.\u0007#\u0002\u0002", + ".\n\u0003\u0002\u0002\u0002/0\u0007*\u0002\u00020\f\u0003\u0002\u0002", + "\u000212\u0007+\u0002\u00022\u000e\u0003\u0002\u0002\u000234\u0007(", + "\u0002\u00024\u0010\u0003\u0002\u0002\u000256\u0007~\u0002\u00026\u0012", + "\u0003\u0002\u0002\u000278\u0007?\u0002\u00028\u0014\u0003\u0002\u0002", + "\u00029:\u0007@\u0002\u0002:\u0016\u0003\u0002\u0002\u0002;<\u0007>", + "\u0002\u0002<\u0018\u0003\u0002\u0002\u0002=>\u0007`\u0002\u0002>\u001a", + "\u0003\u0002\u0002\u0002?@\u00071\u0002\u0002@\u001c\u0003\u0002\u0002", + "\u0002AB\u0007\'\u0002\u0002B\u001e\u0003\u0002\u0002\u0002CD\u0007", + "-\u0002\u0002D \u0003\u0002\u0002\u0002EF\u0007/\u0002\u0002F\"\u0003", + "\u0002\u0002\u0002GH\u0007/\u0002\u0002HI\u0007/\u0002\u0002I$\u0003", + "\u0002\u0002\u0002JK\u0007\u0080\u0002\u0002K&\u0003\u0002\u0002\u0002", + "\u0003\u0002\u0002"].join(""); var atn = new antlr4.atn.ATNDeserializer().deserialize(serializedATN); @@ -33,16 +73,41 @@ Object.defineProperty(FlinkSqlParserLexer.prototype, "atn", { FlinkSqlParserLexer.EOF = antlr4.Token.EOF; FlinkSqlParserLexer.T__0 = 1; +FlinkSqlParserLexer.T__1 = 2; +FlinkSqlParserLexer.T__2 = 3; +FlinkSqlParserLexer.T__3 = 4; +FlinkSqlParserLexer.T__4 = 5; +FlinkSqlParserLexer.T__5 = 6; +FlinkSqlParserLexer.T__6 = 7; +FlinkSqlParserLexer.T__7 = 8; +FlinkSqlParserLexer.T__8 = 9; +FlinkSqlParserLexer.T__9 = 10; +FlinkSqlParserLexer.T__10 = 11; +FlinkSqlParserLexer.T__11 = 12; +FlinkSqlParserLexer.T__12 = 13; +FlinkSqlParserLexer.T__13 = 14; +FlinkSqlParserLexer.T__14 = 15; +FlinkSqlParserLexer.T__15 = 16; +FlinkSqlParserLexer.T__16 = 17; +FlinkSqlParserLexer.T__17 = 18; FlinkSqlParserLexer.prototype.channelNames = [ "DEFAULT_TOKEN_CHANNEL", "HIDDEN" ]; FlinkSqlParserLexer.prototype.modeNames = [ "DEFAULT_MODE" ]; -FlinkSqlParserLexer.prototype.literalNames = [ null, "','" ]; +FlinkSqlParserLexer.prototype.literalNames = [ null, "'.'", "'*'", "','", + "'!'", "'('", "')'", "'&'", + "'|'", "'='", "'>'", "'<'", + "'^'", "'/'", "'%'", "'+'", + "'-'", "'--'", "'~'" ]; FlinkSqlParserLexer.prototype.symbolicNames = [ ]; -FlinkSqlParserLexer.prototype.ruleNames = [ "T__0" ]; +FlinkSqlParserLexer.prototype.ruleNames = [ "T__0", "T__1", "T__2", "T__3", + "T__4", "T__5", "T__6", "T__7", + "T__8", "T__9", "T__10", "T__11", + "T__12", "T__13", "T__14", "T__15", + "T__16", "T__17" ]; FlinkSqlParserLexer.prototype.grammarFileName = "FlinkSqlParser.g4"; diff --git a/src/lib/flinksql/FlinkSqlParserLexer.tokens b/src/lib/flinksql/FlinkSqlParserLexer.tokens index c7c68e9..079828a 100644 --- a/src/lib/flinksql/FlinkSqlParserLexer.tokens +++ b/src/lib/flinksql/FlinkSqlParserLexer.tokens @@ -1,2 +1,36 @@ T__0=1 -','=1 +T__1=2 +T__2=3 +T__3=4 +T__4=5 +T__5=6 +T__6=7 +T__7=8 +T__8=9 +T__9=10 +T__10=11 +T__11=12 +T__12=13 +T__13=14 +T__14=15 +T__15=16 +T__16=17 +T__17=18 +'.'=1 +'*'=2 +','=3 +'!'=4 +'('=5 +')'=6 +'&'=7 +'|'=8 +'='=9 +'>'=10 +'<'=11 +'^'=12 +'/'=13 +'%'=14 +'+'=15 +'-'=16 +'--'=17 +'~'=18 diff --git a/src/lib/flinksql/FlinkSqlParserListener.js b/src/lib/flinksql/FlinkSqlParserListener.js index 6084e29..b488e6c 100644 --- a/src/lib/flinksql/FlinkSqlParserListener.js +++ b/src/lib/flinksql/FlinkSqlParserListener.js @@ -245,6 +245,24 @@ FlinkSqlParserListener.prototype.exitDropFunction = function(ctx) { }; +// Enter a parse tree produced by FlinkSqlParserParser#queryStatement. +FlinkSqlParserListener.prototype.enterQueryStatement = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParserParser#queryStatement. +FlinkSqlParserListener.prototype.exitQueryStatement = function(ctx) { +}; + + +// Enter a parse tree produced by FlinkSqlParserParser#selectStatements. +FlinkSqlParserListener.prototype.enterSelectStatements = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParserParser#selectStatements. +FlinkSqlParserListener.prototype.exitSelectStatements = function(ctx) { +}; + + // Enter a parse tree produced by FlinkSqlParserParser#selectStatement. FlinkSqlParserListener.prototype.enterSelectStatement = function(ctx) { }; @@ -254,6 +272,159 @@ FlinkSqlParserListener.prototype.exitSelectStatement = function(ctx) { }; +// Enter a parse tree produced by FlinkSqlParserParser#projectItemDefinition. +FlinkSqlParserListener.prototype.enterProjectItemDefinition = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParserParser#projectItemDefinition. +FlinkSqlParserListener.prototype.exitProjectItemDefinition = function(ctx) { +}; + + +// Enter a parse tree produced by FlinkSqlParserParser#tableExpression. +FlinkSqlParserListener.prototype.enterTableExpression = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParserParser#tableExpression. +FlinkSqlParserListener.prototype.exitTableExpression = function(ctx) { +}; + + +// Enter a parse tree produced by FlinkSqlParserParser#tableReference. +FlinkSqlParserListener.prototype.enterTableReference = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParserParser#tableReference. +FlinkSqlParserListener.prototype.exitTableReference = function(ctx) { +}; + + +// Enter a parse tree produced by FlinkSqlParserParser#matchRecognize. +FlinkSqlParserListener.prototype.enterMatchRecognize = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParserParser#matchRecognize. +FlinkSqlParserListener.prototype.exitMatchRecognize = function(ctx) { +}; + + +// Enter a parse tree produced by FlinkSqlParserParser#tablePrimary. +FlinkSqlParserListener.prototype.enterTablePrimary = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParserParser#tablePrimary. +FlinkSqlParserListener.prototype.exitTablePrimary = function(ctx) { +}; + + +// Enter a parse tree produced by FlinkSqlParserParser#dynamicTableOptions. +FlinkSqlParserListener.prototype.enterDynamicTableOptions = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParserParser#dynamicTableOptions. +FlinkSqlParserListener.prototype.exitDynamicTableOptions = function(ctx) { +}; + + +// Enter a parse tree produced by FlinkSqlParserParser#joinCondition. +FlinkSqlParserListener.prototype.enterJoinCondition = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParserParser#joinCondition. +FlinkSqlParserListener.prototype.exitJoinCondition = function(ctx) { +}; + + +// Enter a parse tree produced by FlinkSqlParserParser#booleanExpression. +FlinkSqlParserListener.prototype.enterBooleanExpression = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParserParser#booleanExpression. +FlinkSqlParserListener.prototype.exitBooleanExpression = function(ctx) { +}; + + +// Enter a parse tree produced by FlinkSqlParserParser#groupItemDefinition. +FlinkSqlParserListener.prototype.enterGroupItemDefinition = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParserParser#groupItemDefinition. +FlinkSqlParserListener.prototype.exitGroupItemDefinition = function(ctx) { +}; + + +// Enter a parse tree produced by FlinkSqlParserParser#selectWithoutFromDefinition. +FlinkSqlParserListener.prototype.enterSelectWithoutFromDefinition = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParserParser#selectWithoutFromDefinition. +FlinkSqlParserListener.prototype.exitSelectWithoutFromDefinition = function(ctx) { +}; + + +// Enter a parse tree produced by FlinkSqlParserParser#projectItem. +FlinkSqlParserListener.prototype.enterProjectItem = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParserParser#projectItem. +FlinkSqlParserListener.prototype.exitProjectItem = function(ctx) { +}; + + +// Enter a parse tree produced by FlinkSqlParserParser#queryOrderByDefinition. +FlinkSqlParserListener.prototype.enterQueryOrderByDefinition = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParserParser#queryOrderByDefinition. +FlinkSqlParserListener.prototype.exitQueryOrderByDefinition = function(ctx) { +}; + + +// Enter a parse tree produced by FlinkSqlParserParser#orderItemDefition. +FlinkSqlParserListener.prototype.enterOrderItemDefition = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParserParser#orderItemDefition. +FlinkSqlParserListener.prototype.exitOrderItemDefition = function(ctx) { +}; + + +// Enter a parse tree produced by FlinkSqlParserParser#queryLimitDefinition. +FlinkSqlParserListener.prototype.enterQueryLimitDefinition = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParserParser#queryLimitDefinition. +FlinkSqlParserListener.prototype.exitQueryLimitDefinition = function(ctx) { +}; + + +// Enter a parse tree produced by FlinkSqlParserParser#countDefinition. +FlinkSqlParserListener.prototype.enterCountDefinition = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParserParser#countDefinition. +FlinkSqlParserListener.prototype.exitCountDefinition = function(ctx) { +}; + + +// Enter a parse tree produced by FlinkSqlParserParser#queryOffsetDefinition. +FlinkSqlParserListener.prototype.enterQueryOffsetDefinition = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParserParser#queryOffsetDefinition. +FlinkSqlParserListener.prototype.exitQueryOffsetDefinition = function(ctx) { +}; + + +// Enter a parse tree produced by FlinkSqlParserParser#queryFetchDefinition. +FlinkSqlParserListener.prototype.enterQueryFetchDefinition = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParserParser#queryFetchDefinition. +FlinkSqlParserListener.prototype.exitQueryFetchDefinition = function(ctx) { +}; + + // Enter a parse tree produced by FlinkSqlParserParser#insertStatement. FlinkSqlParserListener.prototype.enterInsertStatement = function(ctx) { }; @@ -290,6 +461,15 @@ FlinkSqlParserListener.prototype.exitValuesRowDefinition = function(ctx) { }; +// Enter a parse tree produced by FlinkSqlParserParser#allValueDifinition. +FlinkSqlParserListener.prototype.enterAllValueDifinition = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParserParser#allValueDifinition. +FlinkSqlParserListener.prototype.exitAllValueDifinition = function(ctx) { +}; + + // Enter a parse tree produced by FlinkSqlParserParser#uidList. FlinkSqlParserListener.prototype.enterUidList = function(ctx) { }; @@ -344,5 +524,284 @@ FlinkSqlParserListener.prototype.exitKeyValueDefinition = function(ctx) { }; +// Enter a parse tree produced by FlinkSqlParserParser#expressions. +FlinkSqlParserListener.prototype.enterExpressions = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParserParser#expressions. +FlinkSqlParserListener.prototype.exitExpressions = function(ctx) { +}; + + +// Enter a parse tree produced by FlinkSqlParserParser#isExpression. +FlinkSqlParserListener.prototype.enterIsExpression = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParserParser#isExpression. +FlinkSqlParserListener.prototype.exitIsExpression = function(ctx) { +}; + + +// Enter a parse tree produced by FlinkSqlParserParser#notExpression. +FlinkSqlParserListener.prototype.enterNotExpression = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParserParser#notExpression. +FlinkSqlParserListener.prototype.exitNotExpression = function(ctx) { +}; + + +// Enter a parse tree produced by FlinkSqlParserParser#logicalExpression. +FlinkSqlParserListener.prototype.enterLogicalExpression = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParserParser#logicalExpression. +FlinkSqlParserListener.prototype.exitLogicalExpression = function(ctx) { +}; + + +// Enter a parse tree produced by FlinkSqlParserParser#predicateExpression. +FlinkSqlParserListener.prototype.enterPredicateExpression = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParserParser#predicateExpression. +FlinkSqlParserListener.prototype.exitPredicateExpression = function(ctx) { +}; + + +// Enter a parse tree produced by FlinkSqlParserParser#expressionAtomPredicate. +FlinkSqlParserListener.prototype.enterExpressionAtomPredicate = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParserParser#expressionAtomPredicate. +FlinkSqlParserListener.prototype.exitExpressionAtomPredicate = function(ctx) { +}; + + +// Enter a parse tree produced by FlinkSqlParserParser#inPredicate. +FlinkSqlParserListener.prototype.enterInPredicate = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParserParser#inPredicate. +FlinkSqlParserListener.prototype.exitInPredicate = function(ctx) { +}; + + +// Enter a parse tree produced by FlinkSqlParserParser#subqueryComparasionPredicate. +FlinkSqlParserListener.prototype.enterSubqueryComparasionPredicate = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParserParser#subqueryComparasionPredicate. +FlinkSqlParserListener.prototype.exitSubqueryComparasionPredicate = function(ctx) { +}; + + +// Enter a parse tree produced by FlinkSqlParserParser#betweenPredicate. +FlinkSqlParserListener.prototype.enterBetweenPredicate = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParserParser#betweenPredicate. +FlinkSqlParserListener.prototype.exitBetweenPredicate = function(ctx) { +}; + + +// Enter a parse tree produced by FlinkSqlParserParser#binaryComparasionPredicate. +FlinkSqlParserListener.prototype.enterBinaryComparasionPredicate = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParserParser#binaryComparasionPredicate. +FlinkSqlParserListener.prototype.exitBinaryComparasionPredicate = function(ctx) { +}; + + +// Enter a parse tree produced by FlinkSqlParserParser#likePredicate. +FlinkSqlParserListener.prototype.enterLikePredicate = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParserParser#likePredicate. +FlinkSqlParserListener.prototype.exitLikePredicate = function(ctx) { +}; + + +// Enter a parse tree produced by FlinkSqlParserParser#unaryExpressionAtom. +FlinkSqlParserListener.prototype.enterUnaryExpressionAtom = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParserParser#unaryExpressionAtom. +FlinkSqlParserListener.prototype.exitUnaryExpressionAtom = function(ctx) { +}; + + +// Enter a parse tree produced by FlinkSqlParserParser#subqueryExpessionAtom. +FlinkSqlParserListener.prototype.enterSubqueryExpessionAtom = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParserParser#subqueryExpessionAtom. +FlinkSqlParserListener.prototype.exitSubqueryExpessionAtom = function(ctx) { +}; + + +// Enter a parse tree produced by FlinkSqlParserParser#existsExpessionAtom. +FlinkSqlParserListener.prototype.enterExistsExpessionAtom = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParserParser#existsExpessionAtom. +FlinkSqlParserListener.prototype.exitExistsExpessionAtom = function(ctx) { +}; + + +// Enter a parse tree produced by FlinkSqlParserParser#constantExpressionAtom. +FlinkSqlParserListener.prototype.enterConstantExpressionAtom = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParserParser#constantExpressionAtom. +FlinkSqlParserListener.prototype.exitConstantExpressionAtom = function(ctx) { +}; + + +// Enter a parse tree produced by FlinkSqlParserParser#binaryExpressionAtom. +FlinkSqlParserListener.prototype.enterBinaryExpressionAtom = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParserParser#binaryExpressionAtom. +FlinkSqlParserListener.prototype.exitBinaryExpressionAtom = function(ctx) { +}; + + +// Enter a parse tree produced by FlinkSqlParserParser#fullColumnNameExpressionAtom. +FlinkSqlParserListener.prototype.enterFullColumnNameExpressionAtom = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParserParser#fullColumnNameExpressionAtom. +FlinkSqlParserListener.prototype.exitFullColumnNameExpressionAtom = function(ctx) { +}; + + +// Enter a parse tree produced by FlinkSqlParserParser#bitExpressionAtom. +FlinkSqlParserListener.prototype.enterBitExpressionAtom = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParserParser#bitExpressionAtom. +FlinkSqlParserListener.prototype.exitBitExpressionAtom = function(ctx) { +}; + + +// Enter a parse tree produced by FlinkSqlParserParser#nestedExpressionAtom. +FlinkSqlParserListener.prototype.enterNestedExpressionAtom = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParserParser#nestedExpressionAtom. +FlinkSqlParserListener.prototype.exitNestedExpressionAtom = function(ctx) { +}; + + +// Enter a parse tree produced by FlinkSqlParserParser#nestedRowExpressionAtom. +FlinkSqlParserListener.prototype.enterNestedRowExpressionAtom = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParserParser#nestedRowExpressionAtom. +FlinkSqlParserListener.prototype.exitNestedRowExpressionAtom = function(ctx) { +}; + + +// Enter a parse tree produced by FlinkSqlParserParser#mathExpressionAtom. +FlinkSqlParserListener.prototype.enterMathExpressionAtom = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParserParser#mathExpressionAtom. +FlinkSqlParserListener.prototype.exitMathExpressionAtom = function(ctx) { +}; + + +// Enter a parse tree produced by FlinkSqlParserParser#logicalOperator. +FlinkSqlParserListener.prototype.enterLogicalOperator = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParserParser#logicalOperator. +FlinkSqlParserListener.prototype.exitLogicalOperator = function(ctx) { +}; + + +// Enter a parse tree produced by FlinkSqlParserParser#comparisonOperator. +FlinkSqlParserListener.prototype.enterComparisonOperator = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParserParser#comparisonOperator. +FlinkSqlParserListener.prototype.exitComparisonOperator = function(ctx) { +}; + + +// Enter a parse tree produced by FlinkSqlParserParser#bitOperator. +FlinkSqlParserListener.prototype.enterBitOperator = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParserParser#bitOperator. +FlinkSqlParserListener.prototype.exitBitOperator = function(ctx) { +}; + + +// Enter a parse tree produced by FlinkSqlParserParser#mathOperator. +FlinkSqlParserListener.prototype.enterMathOperator = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParserParser#mathOperator. +FlinkSqlParserListener.prototype.exitMathOperator = function(ctx) { +}; + + +// Enter a parse tree produced by FlinkSqlParserParser#unaryOperator. +FlinkSqlParserListener.prototype.enterUnaryOperator = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParserParser#unaryOperator. +FlinkSqlParserListener.prototype.exitUnaryOperator = function(ctx) { +}; + + +// Enter a parse tree produced by FlinkSqlParserParser#fullColumnName. +FlinkSqlParserListener.prototype.enterFullColumnName = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParserParser#fullColumnName. +FlinkSqlParserListener.prototype.exitFullColumnName = function(ctx) { +}; + + +// Enter a parse tree produced by FlinkSqlParserParser#constant. +FlinkSqlParserListener.prototype.enterConstant = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParserParser#constant. +FlinkSqlParserListener.prototype.exitConstant = function(ctx) { +}; + + +// Enter a parse tree produced by FlinkSqlParserParser#stringLiteral. +FlinkSqlParserListener.prototype.enterStringLiteral = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParserParser#stringLiteral. +FlinkSqlParserListener.prototype.exitStringLiteral = function(ctx) { +}; + + +// Enter a parse tree produced by FlinkSqlParserParser#decimalLiteral. +FlinkSqlParserListener.prototype.enterDecimalLiteral = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParserParser#decimalLiteral. +FlinkSqlParserListener.prototype.exitDecimalLiteral = function(ctx) { +}; + + +// Enter a parse tree produced by FlinkSqlParserParser#booleanLiteral. +FlinkSqlParserListener.prototype.enterBooleanLiteral = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParserParser#booleanLiteral. +FlinkSqlParserListener.prototype.exitBooleanLiteral = function(ctx) { +}; + + exports.FlinkSqlParserListener = FlinkSqlParserListener; \ No newline at end of file diff --git a/src/lib/flinksql/FlinkSqlParserParser.js b/src/lib/flinksql/FlinkSqlParserParser.js index 63e66bc..e712cc0 100644 --- a/src/lib/flinksql/FlinkSqlParserParser.js +++ b/src/lib/flinksql/FlinkSqlParserParser.js @@ -8,7 +8,7 @@ var grammarFileName = "FlinkSqlParser.g4"; var serializedATN = ["\u0003\u608b\ua72a\u8133\ub9ed\u417c\u3be7\u7786\u5964", - "\u0003\u0133\u0144\u0004\u0002\t\u0002\u0004\u0003\t\u0003\u0004\u0004", + "\u0003\u0139\u035c\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", @@ -17,196 +17,563 @@ var serializedATN = ["\u0003\u608b\ua72a\u8133\ub9ed\u417c\u3be7\u7786\u5964", "\u0004\u0018\t\u0018\u0004\u0019\t\u0019\u0004\u001a\t\u001a\u0004\u001b", "\t\u001b\u0004\u001c\t\u001c\u0004\u001d\t\u001d\u0004\u001e\t\u001e", "\u0004\u001f\t\u001f\u0004 \t \u0004!\t!\u0004\"\t\"\u0004#\t#\u0004", - "$\t$\u0004%\t%\u0004&\t&\u0003\u0002\u0003\u0002\u0003\u0002\u0003\u0003", - "\u0003\u0003\u0003\u0003\u0003\u0004\u0003\u0004\u0003\u0004\u0003\u0004", - "\u0007\u0004W\n\u0004\f\u0004\u000e\u0004Z\u000b\u0004\u0003\u0005\u0003", - "\u0005\u0005\u0005^\n\u0005\u0003\u0006\u0003\u0006\u0003\u0007\u0003", + "$\t$\u0004%\t%\u0004&\t&\u0004\'\t\'\u0004(\t(\u0004)\t)\u0004*\t*\u0004", + "+\t+\u0004,\t,\u0004-\t-\u0004.\t.\u0004/\t/\u00040\t0\u00041\t1\u0004", + "2\t2\u00043\t3\u00044\t4\u00045\t5\u00046\t6\u00047\t7\u00048\t8\u0004", + "9\t9\u0004:\t:\u0004;\t;\u0004<\t<\u0004=\t=\u0004>\t>\u0004?\t?\u0004", + "@\t@\u0004A\tA\u0004B\tB\u0004C\tC\u0004D\tD\u0004E\tE\u0004F\tF\u0004", + "G\tG\u0004H\tH\u0003\u0002\u0003\u0002\u0003\u0002\u0003\u0003\u0003", + "\u0003\u0003\u0003\u0003\u0004\u0003\u0004\u0003\u0004\u0003\u0004\u0007", + "\u0004\u009b\n\u0004\f\u0004\u000e\u0004\u009e\u000b\u0004\u0003\u0005", + "\u0003\u0005\u0005\u0005\u00a2\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\u0005\u0007m\n\u0007\u0003", - "\b\u0003\b\u0005\bq\n\b\u0003\t\u0003\t\u0003\t\u0003\t\u0003\t\u0003", - "\t\u0003\t\u0007\tz\n\t\f\t\u000e\t}\u000b\t\u0003\t\u0003\t\u0005\t", - "\u0081\n\t\u0003\t\u0003\t\u0003\n\u0003\n\u0003\n\u0003\u000b\u0003", - "\u000b\u0003\f\u0003\f\u0003\r\u0003\r\u0003\r\u0003\r\u0003\u000e\u0003", - "\u000e\u0003\u000e\u0007\u000e\u0093\n\u000e\f\u000e\u000e\u000e\u0096", - "\u000b\u000e\u0003\u000f\u0003\u000f\u0003\u0010\u0003\u0010\u0003\u0010", - "\u0005\u0010\u009d\n\u0010\u0003\u0010\u0003\u0010\u0003\u0010\u0003", - "\u0011\u0003\u0011\u0005\u0011\u00a4\n\u0011\u0003\u0011\u0003\u0011", - "\u0005\u0011\u00a8\n\u0011\u0003\u0011\u0003\u0011\u0003\u0011\u0003", - "\u0011\u0003\u0012\u0003\u0012\u0003\u0013\u0003\u0013\u0003\u0013\u0003", - "\u0013\u0003\u0013\u0005\u0013\u00b5\n\u0013\u0003\u0014\u0003\u0014", - "\u0003\u0014\u0003\u0014\u0003\u0015\u0003\u0015\u0003\u0015\u0003\u0015", - "\u0003\u0015\u0007\u0015\u00c0\n\u0015\f\u0015\u000e\u0015\u00c3\u000b", - "\u0015\u0003\u0015\u0003\u0015\u0003\u0016\u0003\u0016\u0003\u0016\u0003", - "\u0016\u0003\u0016\u0003\u0017\u0003\u0017\u0003\u0018\u0003\u0018\u0003", - "\u0018\u0005\u0018\u00d1\n\u0018\u0003\u0018\u0003\u0018\u0003\u0019", - "\u0003\u0019\u0003\u0019\u0005\u0019\u00d8\n\u0019\u0003\u0019\u0003", - "\u0019\u0005\u0019\u00dc\n\u0019\u0003\u001a\u0003\u001a\u0005\u001a", - "\u00e0\n\u001a\u0003\u001a\u0003\u001a\u0005\u001a\u00e4\n\u001a\u0003", - "\u001a\u0003\u001a\u0003\u001b\u0003\u001b\u0003\u001b\u0003\u001b\u0005", - "\u001b\u00ec\n\u001b\u0003\u001b\u0003\u001b\u0005\u001b\u00f0\n\u001b", - "\u0003\u001b\u0003\u001b\u0003\u001c\u0003\u001c\u0003\u001d\u0003\u001d", - "\u0003\u001d\u0003\u001d\u0005\u001d\u00fa\n\u001d\u0003\u001d\u0003", - "\u001d\u0005\u001d\u00fe\n\u001d\u0003\u001e\u0003\u001e\u0003\u001e", - "\u0003\u001e\u0003\u001e\u0007\u001e\u0105\n\u001e\f\u001e\u000e\u001e", - "\u0108\u000b\u001e\u0003\u001e\u0003\u001e\u0003\u001f\u0003\u001f\u0003", - "\u001f\u0003\u001f\u0007\u001f\u0110\n\u001f\f\u001f\u000e\u001f\u0113", - "\u000b\u001f\u0003 \u0003 \u0007 \u0117\n \f \u000e \u011a\u000b \u0003", - " \u0003 \u0003!\u0003!\u0003!\u0007!\u0121\n!\f!\u000e!\u0124\u000b", - "!\u0003\"\u0003\"\u0007\"\u0128\n\"\f\"\u000e\"\u012b\u000b\"\u0003", - "#\u0003#\u0003#\u0003#\u0003#\u0007#\u0132\n#\f#\u000e#\u0135\u000b", - "#\u0003#\u0003#\u0003$\u0003$\u0003$\u0003$\u0003%\u0003%\u0003%\u0003", - "&\u0003&\u0003&\u0003&\u0003&\u0004\u0118\u0129\u0002\'\u0002\u0004", - "\u0006\b\n\f\u000e\u0010\u0012\u0014\u0016\u0018\u001a\u001c\u001e ", - "\"$&(*,.02468:<>@BDFHJ\u0002\u0005\u0003\u0002\u0108\u011e\u0003\u0002", - "\u00c0\u00c1\u0004\u0002PP\u0094\u0094\u0002\u0144\u0002L\u0003\u0002", - "\u0002\u0002\u0004O\u0003\u0002\u0002\u0002\u0006X\u0003\u0002\u0002", - "\u0002\b]\u0003\u0002\u0002\u0002\n_\u0003\u0002\u0002\u0002\fl\u0003", - "\u0002\u0002\u0002\u000ep\u0003\u0002\u0002\u0002\u0010r\u0003\u0002", - "\u0002\u0002\u0012\u0084\u0003\u0002\u0002\u0002\u0014\u0087\u0003\u0002", - "\u0002\u0002\u0016\u0089\u0003\u0002\u0002\u0002\u0018\u008b\u0003\u0002", - "\u0002\u0002\u001a\u008f\u0003\u0002\u0002\u0002\u001c\u0097\u0003\u0002", - "\u0002\u0002\u001e\u0099\u0003\u0002\u0002\u0002 \u00a1\u0003\u0002", - "\u0002\u0002\"\u00ad\u0003\u0002\u0002\u0002$\u00af\u0003\u0002\u0002", - "\u0002&\u00b6\u0003\u0002\u0002\u0002(\u00ba\u0003\u0002\u0002\u0002", - "*\u00c6\u0003\u0002\u0002\u0002,\u00cb\u0003\u0002\u0002\u0002.\u00cd", - "\u0003\u0002\u0002\u00020\u00d4\u0003\u0002\u0002\u00022\u00dd\u0003", - "\u0002\u0002\u00024\u00e7\u0003\u0002\u0002\u00026\u00f3\u0003\u0002", - "\u0002\u00028\u00f5\u0003\u0002\u0002\u0002:\u00ff\u0003\u0002\u0002", - "\u0002<\u010b\u0003\u0002\u0002\u0002>\u0114\u0003\u0002\u0002\u0002", - "@\u011d\u0003\u0002\u0002\u0002B\u0125\u0003\u0002\u0002\u0002D\u012c", - "\u0003\u0002\u0002\u0002F\u0138\u0003\u0002\u0002\u0002H\u013c\u0003", - "\u0002\u0002\u0002J\u013f\u0003\u0002\u0002\u0002LM\u0005\u0004\u0003", - "\u0002MN\u0007\u0002\u0002\u0003N\u0003\u0003\u0002\u0002\u0002OP\u0005", - "\u0006\u0004\u0002PQ\u0007\u0002\u0002\u0003Q\u0005\u0003\u0002\u0002", - "\u0002RS\u0005\b\u0005\u0002ST\u0007\u012b\u0002\u0002TW\u0003\u0002", - "\u0002\u0002UW\u0005\n\u0006\u0002VR\u0003\u0002\u0002\u0002VU\u0003", - "\u0002\u0002\u0002WZ\u0003\u0002\u0002\u0002XV\u0003\u0002\u0002\u0002", - "XY\u0003\u0002\u0002\u0002Y\u0007\u0003\u0002\u0002\u0002ZX\u0003\u0002", - "\u0002\u0002[^\u0005\f\u0007\u0002\\^\u0005\u000e\b\u0002][\u0003\u0002", - "\u0002\u0002]\\\u0003\u0002\u0002\u0002^\t\u0003\u0002\u0002\u0002_", - "`\u0007\u012b\u0002\u0002`\u000b\u0003\u0002\u0002\u0002am\u0005\u0010", - "\t\u0002bm\u0005\u001e\u0010\u0002cm\u0005 \u0011\u0002dm\u0005\"\u0012", - "\u0002em\u0005$\u0013\u0002fm\u0005*\u0016\u0002gm\u0005,\u0017\u0002", - "hm\u0005.\u0018\u0002im\u00050\u0019\u0002jm\u00052\u001a\u0002km\u0005", - "4\u001b\u0002la\u0003\u0002\u0002\u0002lb\u0003\u0002\u0002\u0002lc", - "\u0003\u0002\u0002\u0002ld\u0003\u0002\u0002\u0002le\u0003\u0002\u0002", - "\u0002lf\u0003\u0002\u0002\u0002lg\u0003\u0002\u0002\u0002lh\u0003\u0002", - "\u0002\u0002li\u0003\u0002\u0002\u0002lj\u0003\u0002\u0002\u0002lk\u0003", - "\u0002\u0002\u0002m\r\u0003\u0002\u0002\u0002nq\u00056\u001c\u0002o", - "q\u00058\u001d\u0002pn\u0003\u0002\u0002\u0002po\u0003\u0002\u0002\u0002", - "q\u000f\u0003\u0002\u0002\u0002rs\u0007I\u0002\u0002st\u0007J\u0002", - "\u0002tu\u0005B\"\u0002uv\u0007\u0128\u0002\u0002v{\u0005\u0012\n\u0002", - "wx\u0007\u012a\u0002\u0002xz\u0005\u0012\n\u0002yw\u0003\u0002\u0002", - "\u0002z}\u0003\u0002\u0002\u0002{y\u0003\u0002\u0002\u0002{|\u0003\u0002", - "\u0002\u0002|~\u0003\u0002\u0002\u0002}{\u0003\u0002\u0002\u0002~\u0080", - "\u0007\u0129\u0002\u0002\u007f\u0081\u0005\u0018\r\u0002\u0080\u007f", - "\u0003\u0002\u0002\u0002\u0080\u0081\u0003\u0002\u0002\u0002\u0081\u0082", - "\u0003\u0002\u0002\u0002\u0082\u0083\u0005D#\u0002\u0083\u0011\u0003", - "\u0002\u0002\u0002\u0084\u0085\u0005\u0014\u000b\u0002\u0085\u0086\u0005", - "\u0016\f\u0002\u0086\u0013\u0003\u0002\u0002\u0002\u0087\u0088\u0007", - "\u0106\u0002\u0002\u0088\u0015\u0003\u0002\u0002\u0002\u0089\u008a\t", - "\u0002\u0002\u0002\u008a\u0017\u0003\u0002\u0002\u0002\u008b\u008c\u0007", - "\u00cf\u0002\u0002\u008c\u008d\u0007\u0010\u0002\u0002\u008d\u008e\u0005", - "\u001a\u000e\u0002\u008e\u0019\u0003\u0002\u0002\u0002\u008f\u0094\u0005", - "\u001c\u000f\u0002\u0090\u0091\u0007\u012a\u0002\u0002\u0091\u0093\u0005", - "\u001c\u000f\u0002\u0092\u0090\u0003\u0002\u0002\u0002\u0093\u0096\u0003", - "\u0002\u0002\u0002\u0094\u0092\u0003\u0002\u0002\u0002\u0094\u0095\u0003", - "\u0002\u0002\u0002\u0095\u001b\u0003\u0002\u0002\u0002\u0096\u0094\u0003", - "\u0002\u0002\u0002\u0097\u0098\u0007\u0106\u0002\u0002\u0098\u001d\u0003", - "\u0002\u0002\u0002\u0099\u009a\u0007I\u0002\u0002\u009a\u009c\u0007", - "\u00c7\u0002\u0002\u009b\u009d\u0005F$\u0002\u009c\u009b\u0003\u0002", - "\u0002\u0002\u009c\u009d\u0003\u0002\u0002\u0002\u009d\u009e\u0003\u0002", - "\u0002\u0002\u009e\u009f\u0005B\"\u0002\u009f\u00a0\u0005D#\u0002\u00a0", - "\u001f\u0003\u0002\u0002\u0002\u00a1\u00a3\u0007I\u0002\u0002\u00a2", - "\u00a4\u0007\u00ae\u0002\u0002\u00a3\u00a2\u0003\u0002\u0002\u0002\u00a3", - "\u00a4\u0003\u0002\u0002\u0002\u00a4\u00a5\u0003\u0002\u0002\u0002\u00a5", - "\u00a7\u0007L\u0002\u0002\u00a6\u00a8\u0005F$\u0002\u00a7\u00a6\u0003", - "\u0002\u0002\u0002\u00a7\u00a8\u0003\u0002\u0002\u0002\u00a8\u00a9\u0003", - "\u0002\u0002\u0002\u00a9\u00aa\u0005B\"\u0002\u00aa\u00ab\u0007\n\u0002", - "\u0002\u00ab\u00ac\u00056\u001c\u0002\u00ac!\u0003\u0002\u0002\u0002", - "\u00ad\u00ae\u0003\u0002\u0002\u0002\u00ae#\u0003\u0002\u0002\u0002", - "\u00af\u00b0\u0007g\u0002\u0002\u00b0\u00b1\u0007J\u0002\u0002\u00b1", - "\u00b4\u0005B\"\u0002\u00b2\u00b5\u0005&\u0014\u0002\u00b3\u00b5\u0005", - "(\u0015\u0002\u00b4\u00b2\u0003\u0002\u0002\u0002\u00b4\u00b3\u0003", - "\u0002\u0002\u0002\u00b5%\u0003\u0002\u0002\u0002\u00b6\u00b7\u0007", - "h\u0002\u0002\u00b7\u00b8\u0007d\u0002\u0002\u00b8\u00b9\u0005B\"\u0002", - "\u00b9\'\u0003\u0002\u0002\u0002\u00ba\u00bb\u0007k\u0002\u0002\u00bb", - "\u00bc\u0007\u0128\u0002\u0002\u00bc\u00c1\u0005J&\u0002\u00bd\u00be", - "\u0007\u012a\u0002\u0002\u00be\u00c0\u0005J&\u0002\u00bf\u00bd\u0003", - "\u0002\u0002\u0002\u00c0\u00c3\u0003\u0002\u0002\u0002\u00c1\u00bf\u0003", - "\u0002\u0002\u0002\u00c1\u00c2\u0003\u0002\u0002\u0002\u00c2\u00c4\u0003", - "\u0002\u0002\u0002\u00c3\u00c1\u0003\u0002\u0002\u0002\u00c4\u00c5\u0007", - "\u0129\u0002\u0002\u00c5)\u0003\u0002\u0002\u0002\u00c6\u00c7\u0007", - "g\u0002\u0002\u00c7\u00c8\u0007\u00c7\u0002\u0002\u00c8\u00c9\u0005", - "B\"\u0002\u00c9\u00ca\u0005(\u0015\u0002\u00ca+\u0003\u0002\u0002\u0002", - "\u00cb\u00cc\u0003\u0002\u0002\u0002\u00cc-\u0003\u0002\u0002\u0002", - "\u00cd\u00ce\u0007_\u0002\u0002\u00ce\u00d0\u0007J\u0002\u0002\u00cf", - "\u00d1\u0005H%\u0002\u00d0\u00cf\u0003\u0002\u0002\u0002\u00d0\u00d1", - "\u0003\u0002\u0002\u0002\u00d1\u00d2\u0003\u0002\u0002\u0002\u00d2\u00d3", - "\u0005B\"\u0002\u00d3/\u0003\u0002\u0002\u0002\u00d4\u00d5\u0007_\u0002", - "\u0002\u00d5\u00d7\u0007\u00c7\u0002\u0002\u00d6\u00d8\u0005H%\u0002", - "\u00d7\u00d6\u0003\u0002\u0002\u0002\u00d7\u00d8\u0003\u0002\u0002\u0002", - "\u00d8\u00d9\u0003\u0002\u0002\u0002\u00d9\u00db\u0005B\"\u0002\u00da", - "\u00dc\t\u0003\u0002\u0002\u00db\u00da\u0003\u0002\u0002\u0002\u00db", - "\u00dc\u0003\u0002\u0002\u0002\u00dc1\u0003\u0002\u0002\u0002\u00dd", - "\u00df\u0007_\u0002\u0002\u00de\u00e0\u0007\u00ae\u0002\u0002\u00df", - "\u00de\u0003\u0002\u0002\u0002\u00df\u00e0\u0003\u0002\u0002\u0002\u00e0", - "\u00e1\u0003\u0002\u0002\u0002\u00e1\u00e3\u0007L\u0002\u0002\u00e2", - "\u00e4\u0005H%\u0002\u00e3\u00e2\u0003\u0002\u0002\u0002\u00e3\u00e4", - "\u0003\u0002\u0002\u0002\u00e4\u00e5\u0003\u0002\u0002\u0002\u00e5\u00e6", - "\u0005B\"\u0002\u00e63\u0003\u0002\u0002\u0002\u00e7\u00eb\u0007_\u0002", - "\u0002\u00e8\u00ec\u0007\u00ae\u0002\u0002\u00e9\u00ea\u0007\u00ae\u0002", - "\u0002\u00ea\u00ec\u0007\u0107\u0002\u0002\u00eb\u00e8\u0003\u0002\u0002", - "\u0002\u00eb\u00e9\u0003\u0002\u0002\u0002\u00eb\u00ec\u0003\u0002\u0002", - "\u0002\u00ec\u00ed\u0003\u0002\u0002\u0002\u00ed\u00ef\u0007\u00a5\u0002", - "\u0002\u00ee\u00f0\u0005H%\u0002\u00ef\u00ee\u0003\u0002\u0002\u0002", - "\u00ef\u00f0\u0003\u0002\u0002\u0002\u00f0\u00f1\u0003\u0002\u0002\u0002", - "\u00f1\u00f2\u0005B\"\u0002\u00f25\u0003\u0002\u0002\u0002\u00f3\u00f4", - "\u0003\u0002\u0002\u0002\u00f47\u0003\u0002\u0002\u0002\u00f5\u00f6", - "\u0007N\u0002\u0002\u00f6\u00f7\t\u0004\u0002\u0002\u00f7\u00fd\u0005", - "B\"\u0002\u00f8\u00fa\u0005:\u001e\u0002\u00f9\u00f8\u0003\u0002\u0002", - "\u0002\u00f9\u00fa\u0003\u0002\u0002\u0002\u00fa\u00fb\u0003\u0002\u0002", - "\u0002\u00fb\u00fe\u00056\u001c\u0002\u00fc\u00fe\u0005<\u001f\u0002", - "\u00fd\u00f9\u0003\u0002\u0002\u0002\u00fd\u00fc\u0003\u0002\u0002\u0002", - "\u00fe9\u0003\u0002\u0002\u0002\u00ff\u0100\u0007=\u0002\u0002\u0100", - "\u0101\u0007\u0128\u0002\u0002\u0101\u0106\u0005J&\u0002\u0102\u0103", - "\u0007\u012a\u0002\u0002\u0103\u0105\u0005J&\u0002\u0104\u0102\u0003", - "\u0002\u0002\u0002\u0105\u0108\u0003\u0002\u0002\u0002\u0106\u0104\u0003", - "\u0002\u0002\u0002\u0106\u0107\u0003\u0002\u0002\u0002\u0107\u0109\u0003", - "\u0002\u0002\u0002\u0108\u0106\u0003\u0002\u0002\u0002\u0109\u010a\u0007", - "\u0129\u0002\u0002\u010a;\u0003\u0002\u0002\u0002\u010b\u010c\u0007", - "H\u0002\u0002\u010c\u0111\u0005> \u0002\u010d\u010e\u0007\u012a\u0002", - "\u0002\u010e\u0110\u0005> \u0002\u010f\u010d\u0003\u0002\u0002\u0002", - "\u0110\u0113\u0003\u0002\u0002\u0002\u0111\u010f\u0003\u0002\u0002\u0002", - "\u0111\u0112\u0003\u0002\u0002\u0002\u0112=\u0003\u0002\u0002\u0002", - "\u0113\u0111\u0003\u0002\u0002\u0002\u0114\u0118\u0007\u0128\u0002\u0002", - "\u0115\u0117\u000b\u0002\u0002\u0002\u0116\u0115\u0003\u0002\u0002\u0002", - "\u0117\u011a\u0003\u0002\u0002\u0002\u0118\u0119\u0003\u0002\u0002\u0002", - "\u0118\u0116\u0003\u0002\u0002\u0002\u0119\u011b\u0003\u0002\u0002\u0002", - "\u011a\u0118\u0003\u0002\u0002\u0002\u011b\u011c\u0007\u0129\u0002\u0002", - "\u011c?\u0003\u0002\u0002\u0002\u011d\u0122\u0005B\"\u0002\u011e\u011f", - "\u0007\u0003\u0002\u0002\u011f\u0121\u0005B\"\u0002\u0120\u011e\u0003", - "\u0002\u0002\u0002\u0121\u0124\u0003\u0002\u0002\u0002\u0122\u0120\u0003", - "\u0002\u0002\u0002\u0122\u0123\u0003\u0002\u0002\u0002\u0123A\u0003", - "\u0002\u0002\u0002\u0124\u0122\u0003\u0002\u0002\u0002\u0125\u0129\u0007", - "\u0106\u0002\u0002\u0126\u0128\u0007\u0105\u0002\u0002\u0127\u0126\u0003", - "\u0002\u0002\u0002\u0128\u012b\u0003\u0002\u0002\u0002\u0129\u012a\u0003", - "\u0002\u0002\u0002\u0129\u0127\u0003\u0002\u0002\u0002\u012aC\u0003", - "\u0002\u0002\u0002\u012b\u0129\u0003\u0002\u0002\u0002\u012c\u012d\u0007", - "G\u0002\u0002\u012d\u012e\u0007\u0128\u0002\u0002\u012e\u0133\u0005", - "J&\u0002\u012f\u0130\u0007\u012a\u0002\u0002\u0130\u0132\u0005J&\u0002", - "\u0131\u012f\u0003\u0002\u0002\u0002\u0132\u0135\u0003\u0002\u0002\u0002", - "\u0133\u0131\u0003\u0002\u0002\u0002\u0133\u0134\u0003\u0002\u0002\u0002", - "\u0134\u0136\u0003\u0002\u0002\u0002\u0135\u0133\u0003\u0002\u0002\u0002", - "\u0136\u0137\u0007\u0129\u0002\u0002\u0137E\u0003\u0002\u0002\u0002", - "\u0138\u0139\u0007w\u0002\u0002\u0139\u013a\u0007\u001c\u0002\u0002", - "\u013a\u013b\u0007\u001e\u0002\u0002\u013bG\u0003\u0002\u0002\u0002", - "\u013c\u013d\u0007w\u0002\u0002\u013d\u013e\u0007\u001e\u0002\u0002", - "\u013eI\u0003\u0002\u0002\u0002\u013f\u0140\u0007\u0104\u0002\u0002", - "\u0140\u0141\u0007\u011f\u0002\u0002\u0141\u0142\u0007\u0104\u0002\u0002", - "\u0142K\u0003\u0002\u0002\u0002\u001eVX]lp{\u0080\u0094\u009c\u00a3", - "\u00a7\u00b4\u00c1\u00d0\u00d7\u00db\u00df\u00e3\u00eb\u00ef\u00f9\u00fd", - "\u0106\u0111\u0118\u0122\u0129\u0133"].join(""); + "\u0007\u0003\u0007\u0003\u0007\u0003\u0007\u0003\u0007\u0005\u0007\u00b1", + "\n\u0007\u0003\b\u0003\b\u0005\b\u00b5\n\b\u0003\t\u0003\t\u0003\t\u0003", + "\t\u0003\t\u0003\t\u0003\t\u0007\t\u00be\n\t\f\t\u000e\t\u00c1\u000b", + "\t\u0003\t\u0003\t\u0005\t\u00c5\n\t\u0003\t\u0003\t\u0003\n\u0003\n", + "\u0003\n\u0003\u000b\u0003\u000b\u0003\f\u0003\f\u0003\r\u0003\r\u0003", + "\r\u0003\r\u0003\u000e\u0003\u000e\u0003\u000e\u0007\u000e\u00d7\n\u000e", + "\f\u000e\u000e\u000e\u00da\u000b\u000e\u0003\u000f\u0003\u000f\u0003", + "\u0010\u0003\u0010\u0003\u0010\u0005\u0010\u00e1\n\u0010\u0003\u0010", + "\u0003\u0010\u0003\u0010\u0003\u0011\u0003\u0011\u0005\u0011\u00e8\n", + "\u0011\u0003\u0011\u0003\u0011\u0005\u0011\u00ec\n\u0011\u0003\u0011", + "\u0003\u0011\u0003\u0011\u0003\u0011\u0003\u0012\u0003\u0012\u0003\u0013", + "\u0003\u0013\u0003\u0013\u0003\u0013\u0003\u0013\u0005\u0013\u00f9\n", + "\u0013\u0003\u0014\u0003\u0014\u0003\u0014\u0003\u0014\u0003\u0015\u0003", + "\u0015\u0003\u0015\u0003\u0015\u0003\u0015\u0007\u0015\u0104\n\u0015", + "\f\u0015\u000e\u0015\u0107\u000b\u0015\u0003\u0015\u0003\u0015\u0003", + "\u0016\u0003\u0016\u0003\u0016\u0003\u0016\u0003\u0016\u0003\u0017\u0003", + "\u0017\u0003\u0018\u0003\u0018\u0003\u0018\u0005\u0018\u0115\n\u0018", + "\u0003\u0018\u0003\u0018\u0003\u0019\u0003\u0019\u0003\u0019\u0005\u0019", + "\u011c\n\u0019\u0003\u0019\u0003\u0019\u0005\u0019\u0120\n\u0019\u0003", + "\u001a\u0003\u001a\u0005\u001a\u0124\n\u001a\u0003\u001a\u0003\u001a", + "\u0005\u001a\u0128\n\u001a\u0003\u001a\u0003\u001a\u0003\u001b\u0003", + "\u001b\u0003\u001b\u0003\u001b\u0005\u001b\u0130\n\u001b\u0003\u001b", + "\u0003\u001b\u0005\u001b\u0134\n\u001b\u0003\u001b\u0003\u001b\u0003", + "\u001c\u0003\u001c\u0003\u001c\u0005\u001c\u013b\n\u001c\u0003\u001c", + "\u0005\u001c\u013e\n\u001c\u0003\u001c\u0005\u001c\u0141\n\u001c\u0003", + "\u001c\u0005\u001c\u0144\n\u001c\u0005\u001c\u0146\n\u001c\u0003\u001d", + "\u0003\u001d\u0005\u001d\u014a\n\u001d\u0003\u001e\u0003\u001e\u0005", + "\u001e\u014e\n\u001e\u0003\u001e\u0003\u001e\u0003\u001e\u0003\u001e", + "\u0007\u001e\u0154\n\u001e\f\u001e\u000e\u001e\u0157\u000b\u001e\u0005", + "\u001e\u0159\n\u001e\u0003\u001e\u0003\u001e\u0003\u001e\u0003\u001e", + "\u0005\u001e\u015f\n\u001e\u0003\u001e\u0003\u001e\u0003\u001e\u0003", + "\u001e\u0003\u001e\u0007\u001e\u0166\n\u001e\f\u001e\u000e\u001e\u0169", + "\u000b\u001e\u0003\u001e\u0003\u001e\u0005\u001e\u016d\n\u001e\u0003", + "\u001f\u0003\u001f\u0005\u001f\u0171\n\u001f\u0003\u001f\u0005\u001f", + "\u0174\n\u001f\u0003\u001f\u0003\u001f\u0003\u001f\u0003\u001f\u0005", + "\u001f\u017a\n\u001f\u0003 \u0003 \u0003 \u0003 \u0007 \u0180\n \f ", + "\u000e \u0183\u000b \u0003 \u0003 \u0005 \u0187\n \u0003 \u0005 \u018a", + "\n \u0003 \u0003 \u0003 \u0005 \u018f\n \u0007 \u0191\n \f \u000e \u0194", + "\u000b \u0003!\u0003!\u0005!\u0198\n!\u0003!\u0005!\u019b\n!\u0003!", + "\u0003!\u0003!\u0003!\u0003!\u0007!\u01a2\n!\f!\u000e!\u01a5\u000b!", + "\u0003!\u0003!\u0005!\u01a9\n!\u0005!\u01ab\n!\u0003\"\u0003\"\u0003", + "#\u0005#\u01b0\n#\u0003#\u0003#\u0005#\u01b4\n#\u0003#\u0003#\u0003", + "#\u0003#\u0003#\u0003#\u0003#\u0003#\u0007#\u01be\n#\f#\u000e#\u01c1", + "\u000b#\u0003#\u0003#\u0003#\u0003#\u0003#\u0003#\u0003#\u0003#\u0005", + "#\u01cb\n#\u0003$\u0003$\u0003%\u0003%\u0003%\u0003%\u0003%\u0003%\u0003", + "%\u0007%\u01d6\n%\f%\u000e%\u01d9\u000b%\u0003%\u0003%\u0005%\u01dd", + "\n%\u0003&\u0003&\u0003\'\u0003\'\u0003\'\u0003\'\u0003\'\u0003\'\u0003", + "\'\u0007\'\u01e8\n\'\f\'\u000e\'\u01eb\u000b\'\u0003\'\u0003\'\u0003", + "\'\u0003\'\u0003\'\u0003\'\u0003\'\u0007\'\u01f4\n\'\f\'\u000e\'\u01f7", + "\u000b\'\u0003\'\u0003\'\u0003\'\u0003\'\u0003\'\u0003\'\u0003\'\u0007", + "\'\u0200\n\'\f\'\u000e\'\u0203\u000b\'\u0003\'\u0003\'\u0003\'\u0003", + "\'\u0003\'\u0003\'\u0003\'\u0003\'\u0007\'\u020d\n\'\f\'\u000e\'\u0210", + "\u000b\'\u0003\'\u0003\'\u0005\'\u0214\n\'\u0003(\u0003(\u0005(\u0218", + "\n(\u0003(\u0003(\u0003(\u0003(\u0007(\u021e\n(\f(\u000e(\u0221\u000b", + "(\u0005(\u0223\n(\u0003)\u0003)\u0005)\u0227\n)\u0003)\u0005)\u022a", + "\n)\u0003)\u0003)\u0003)\u0003)\u0005)\u0230\n)\u0003*\u0003*\u0003", + "*\u0003*\u0003*\u0007*\u0237\n*\f*\u000e*\u023a\u000b*\u0003+\u0003", + "+\u0003+\u0003,\u0003,\u0003,\u0005,\u0242\n,\u0003-\u0003-\u0003.\u0003", + ".\u0003/\u0003/\u00030\u00030\u00030\u00030\u00050\u024e\n0\u00030\u0003", + "0\u00050\u0252\n0\u00031\u00031\u00031\u00031\u00031\u00071\u0259\n", + "1\f1\u000e1\u025c\u000b1\u00031\u00031\u00032\u00032\u00032\u00032\u0007", + "2\u0264\n2\f2\u000e2\u0267\u000b2\u00033\u00033\u00033\u00033\u0007", + "3\u026d\n3\f3\u000e3\u0270\u000b3\u00033\u00033\u00034\u00034\u0003", + "4\u00034\u00054\u0278\n4\u00035\u00035\u00035\u00075\u027d\n5\f5\u000e", + "5\u0280\u000b5\u00036\u00036\u00076\u0284\n6\f6\u000e6\u0287\u000b6", + "\u00037\u00037\u00037\u00037\u00037\u00077\u028e\n7\f7\u000e7\u0291", + "\u000b7\u00037\u00037\u00038\u00038\u00038\u00038\u00039\u00039\u0003", + "9\u0003:\u0003:\u0003:\u0003:\u0003;\u0003;\u0003;\u0007;\u02a3\n;\f", + ";\u000e;\u02a6\u000b;\u0003<\u0003<\u0003<\u0003<\u0003<\u0003<\u0005", + "<\u02ae\n<\u0003<\u0003<\u0003<\u0005<\u02b3\n<\u0003<\u0003<\u0003", + "<\u0003<\u0007<\u02b9\n<\f<\u000e<\u02bc\u000b<\u0003=\u0003=\u0003", + "=\u0003=\u0003=\u0003=\u0003=\u0003=\u0003=\u0005=\u02c7\n=\u0003=\u0003", + "=\u0003=\u0003=\u0003=\u0003=\u0003=\u0005=\u02d0\n=\u0003=\u0003=\u0003", + "=\u0003=\u0005=\u02d6\n=\u0003=\u0003=\u0003=\u0003=\u0005=\u02dc\n", + "=\u0003=\u0003=\u0003=\u0003=\u0003=\u0003=\u0003=\u0003=\u0003=\u0007", + "=\u02e7\n=\f=\u000e=\u02ea\u000b=\u0003>\u0003>\u0003>\u0003>\u0003", + ">\u0003>\u0003>\u0003>\u0003>\u0003>\u0003>\u0003>\u0007>\u02f8\n>\f", + ">\u000e>\u02fb\u000b>\u0003>\u0003>\u0003>\u0003>\u0003>\u0003>\u0003", + ">\u0006>\u0304\n>\r>\u000e>\u0305\u0003>\u0003>\u0003>\u0003>\u0003", + ">\u0003>\u0003>\u0003>\u0003>\u0003>\u0003>\u0005>\u0313\n>\u0003>\u0003", + ">\u0003>\u0003>\u0003>\u0003>\u0003>\u0003>\u0007>\u031d\n>\f>\u000e", + ">\u0320\u000b>\u0003?\u0003?\u0003?\u0003?\u0003?\u0003?\u0005?\u0328", + "\n?\u0003@\u0003@\u0003@\u0003@\u0003@\u0003@\u0003@\u0003@\u0003@\u0003", + "@\u0003@\u0003@\u0003@\u0003@\u0005@\u0338\n@\u0003A\u0003A\u0003A\u0003", + "A\u0003A\u0003A\u0003A\u0005A\u0341\nA\u0003B\u0003B\u0003C\u0003C\u0003", + "D\u0003D\u0003E\u0003E\u0003E\u0003E\u0003E\u0003E\u0003E\u0003E\u0005", + "E\u0351\nE\u0003E\u0005E\u0354\nE\u0003F\u0003F\u0003G\u0003G\u0003", + "H\u0003H\u0003H\u0003\u0285\u0006>vxzI\u0002\u0004\u0006\b\n\f\u000e", + "\u0010\u0012\u0014\u0016\u0018\u001a\u001c\u001e \"$&(*,.02468:<>@B", + "DFHJLNPRTVXZ\\^`bdfhjlnprtvxz|~\u0080\u0082\u0084\u0086\u0088\u008a", + "\u008c\u008e\u0002\u000e\u0003\u0002\u0108\u011e\u0003\u0002\u00c0\u00c1", + "\u0004\u0002\u000b\u000b\r\r\u0004\u00023356\u0003\u0002&\'\u0004\u0002", + "PP\u0094\u0094\u0004\u0002\u0006\u0006\u001c\u001c\u0003\u0002#$\u0003", + "\u0002\u000b\f\u0005\u0002\u0004\u0004\u000f\u0013\u0087\u0087\u0006", + "\u0002\u0006\u0006\u0011\u0012\u0014\u0014\u001c\u001c\u0004\u0002\u012d", + "\u012f\u0136\u0136\u0002\u039c\u0002\u0090\u0003\u0002\u0002\u0002\u0004", + "\u0093\u0003\u0002\u0002\u0002\u0006\u009c\u0003\u0002\u0002\u0002\b", + "\u00a1\u0003\u0002\u0002\u0002\n\u00a3\u0003\u0002\u0002\u0002\f\u00b0", + "\u0003\u0002\u0002\u0002\u000e\u00b4\u0003\u0002\u0002\u0002\u0010\u00b6", + "\u0003\u0002\u0002\u0002\u0012\u00c8\u0003\u0002\u0002\u0002\u0014\u00cb", + "\u0003\u0002\u0002\u0002\u0016\u00cd\u0003\u0002\u0002\u0002\u0018\u00cf", + "\u0003\u0002\u0002\u0002\u001a\u00d3\u0003\u0002\u0002\u0002\u001c\u00db", + "\u0003\u0002\u0002\u0002\u001e\u00dd\u0003\u0002\u0002\u0002 \u00e5", + "\u0003\u0002\u0002\u0002\"\u00f1\u0003\u0002\u0002\u0002$\u00f3\u0003", + "\u0002\u0002\u0002&\u00fa\u0003\u0002\u0002\u0002(\u00fe\u0003\u0002", + "\u0002\u0002*\u010a\u0003\u0002\u0002\u0002,\u010f\u0003\u0002\u0002", + "\u0002.\u0111\u0003\u0002\u0002\u00020\u0118\u0003\u0002\u0002\u0002", + "2\u0121\u0003\u0002\u0002\u00024\u012b\u0003\u0002\u0002\u00026\u0145", + "\u0003\u0002\u0002\u00028\u0149\u0003\u0002\u0002\u0002:\u014b\u0003", + "\u0002\u0002\u0002<\u0179\u0003\u0002\u0002\u0002>\u017b\u0003\u0002", + "\u0002\u0002@\u0195\u0003\u0002\u0002\u0002B\u01ac\u0003\u0002\u0002", + "\u0002D\u01ca\u0003\u0002\u0002\u0002F\u01cc\u0003\u0002\u0002\u0002", + "H\u01dc\u0003\u0002\u0002\u0002J\u01de\u0003\u0002\u0002\u0002L\u0213", + "\u0003\u0002\u0002\u0002N\u0215\u0003\u0002\u0002\u0002P\u022f\u0003", + "\u0002\u0002\u0002R\u0231\u0003\u0002\u0002\u0002T\u023b\u0003\u0002", + "\u0002\u0002V\u023e\u0003\u0002\u0002\u0002X\u0243\u0003\u0002\u0002", + "\u0002Z\u0245\u0003\u0002\u0002\u0002\\\u0247\u0003\u0002\u0002\u0002", + "^\u0249\u0003\u0002\u0002\u0002`\u0253\u0003\u0002\u0002\u0002b\u025f", + "\u0003\u0002\u0002\u0002d\u0268\u0003\u0002\u0002\u0002f\u0277\u0003", + "\u0002\u0002\u0002h\u0279\u0003\u0002\u0002\u0002j\u0281\u0003\u0002", + "\u0002\u0002l\u0288\u0003\u0002\u0002\u0002n\u0294\u0003\u0002\u0002", + "\u0002p\u0298\u0003\u0002\u0002\u0002r\u029b\u0003\u0002\u0002\u0002", + "t\u029f\u0003\u0002\u0002\u0002v\u02b2\u0003\u0002\u0002\u0002x\u02bd", + "\u0003\u0002\u0002\u0002z\u0312\u0003\u0002\u0002\u0002|\u0327\u0003", + "\u0002\u0002\u0002~\u0337\u0003\u0002\u0002\u0002\u0080\u0340\u0003", + "\u0002\u0002\u0002\u0082\u0342\u0003\u0002\u0002\u0002\u0084\u0344\u0003", + "\u0002\u0002\u0002\u0086\u0346\u0003\u0002\u0002\u0002\u0088\u0353\u0003", + "\u0002\u0002\u0002\u008a\u0355\u0003\u0002\u0002\u0002\u008c\u0357\u0003", + "\u0002\u0002\u0002\u008e\u0359\u0003\u0002\u0002\u0002\u0090\u0091\u0005", + "\u0004\u0003\u0002\u0091\u0092\u0007\u0002\u0002\u0003\u0092\u0003\u0003", + "\u0002\u0002\u0002\u0093\u0094\u0005\u0006\u0004\u0002\u0094\u0095\u0007", + "\u0002\u0002\u0003\u0095\u0005\u0003\u0002\u0002\u0002\u0096\u0097\u0005", + "\b\u0005\u0002\u0097\u0098\u0007\u012b\u0002\u0002\u0098\u009b\u0003", + "\u0002\u0002\u0002\u0099\u009b\u0005\n\u0006\u0002\u009a\u0096\u0003", + "\u0002\u0002\u0002\u009a\u0099\u0003\u0002\u0002\u0002\u009b\u009e\u0003", + "\u0002\u0002\u0002\u009c\u009a\u0003\u0002\u0002\u0002\u009c\u009d\u0003", + "\u0002\u0002\u0002\u009d\u0007\u0003\u0002\u0002\u0002\u009e\u009c\u0003", + "\u0002\u0002\u0002\u009f\u00a2\u0005\f\u0007\u0002\u00a0\u00a2\u0005", + "\u000e\b\u0002\u00a1\u009f\u0003\u0002\u0002\u0002\u00a1\u00a0\u0003", + "\u0002\u0002\u0002\u00a2\t\u0003\u0002\u0002\u0002\u00a3\u00a4\u0007", + "\u012b\u0002\u0002\u00a4\u000b\u0003\u0002\u0002\u0002\u00a5\u00b1\u0005", + "\u0010\t\u0002\u00a6\u00b1\u0005\u001e\u0010\u0002\u00a7\u00b1\u0005", + " \u0011\u0002\u00a8\u00b1\u0005\"\u0012\u0002\u00a9\u00b1\u0005$\u0013", + "\u0002\u00aa\u00b1\u0005*\u0016\u0002\u00ab\u00b1\u0005,\u0017\u0002", + "\u00ac\u00b1\u0005.\u0018\u0002\u00ad\u00b1\u00050\u0019\u0002\u00ae", + "\u00b1\u00052\u001a\u0002\u00af\u00b1\u00054\u001b\u0002\u00b0\u00a5", + "\u0003\u0002\u0002\u0002\u00b0\u00a6\u0003\u0002\u0002\u0002\u00b0\u00a7", + "\u0003\u0002\u0002\u0002\u00b0\u00a8\u0003\u0002\u0002\u0002\u00b0\u00a9", + "\u0003\u0002\u0002\u0002\u00b0\u00aa\u0003\u0002\u0002\u0002\u00b0\u00ab", + "\u0003\u0002\u0002\u0002\u00b0\u00ac\u0003\u0002\u0002\u0002\u00b0\u00ad", + "\u0003\u0002\u0002\u0002\u00b0\u00ae\u0003\u0002\u0002\u0002\u00b0\u00af", + "\u0003\u0002\u0002\u0002\u00b1\r\u0003\u0002\u0002\u0002\u00b2\u00b5", + "\u00056\u001c\u0002\u00b3\u00b5\u0005^0\u0002\u00b4\u00b2\u0003\u0002", + "\u0002\u0002\u00b4\u00b3\u0003\u0002\u0002\u0002\u00b5\u000f\u0003\u0002", + "\u0002\u0002\u00b6\u00b7\u0007I\u0002\u0002\u00b7\u00b8\u0007J\u0002", + "\u0002\u00b8\u00b9\u0005j6\u0002\u00b9\u00ba\u0007\u0128\u0002\u0002", + "\u00ba\u00bf\u0005\u0012\n\u0002\u00bb\u00bc\u0007\u012a\u0002\u0002", + "\u00bc\u00be\u0005\u0012\n\u0002\u00bd\u00bb\u0003\u0002\u0002\u0002", + "\u00be\u00c1\u0003\u0002\u0002\u0002\u00bf\u00bd\u0003\u0002\u0002\u0002", + "\u00bf\u00c0\u0003\u0002\u0002\u0002\u00c0\u00c2\u0003\u0002\u0002\u0002", + "\u00c1\u00bf\u0003\u0002\u0002\u0002\u00c2\u00c4\u0007\u0129\u0002\u0002", + "\u00c3\u00c5\u0005\u0018\r\u0002\u00c4\u00c3\u0003\u0002\u0002\u0002", + "\u00c4\u00c5\u0003\u0002\u0002\u0002\u00c5\u00c6\u0003\u0002\u0002\u0002", + "\u00c6\u00c7\u0005l7\u0002\u00c7\u0011\u0003\u0002\u0002\u0002\u00c8", + "\u00c9\u0005\u0014\u000b\u0002\u00c9\u00ca\u0005\u0016\f\u0002\u00ca", + "\u0013\u0003\u0002\u0002\u0002\u00cb\u00cc\u0007\u0106\u0002\u0002\u00cc", + "\u0015\u0003\u0002\u0002\u0002\u00cd\u00ce\t\u0002\u0002\u0002\u00ce", + "\u0017\u0003\u0002\u0002\u0002\u00cf\u00d0\u0007\u00cf\u0002\u0002\u00d0", + "\u00d1\u0007\u0010\u0002\u0002\u00d1\u00d2\u0005\u001a\u000e\u0002\u00d2", + "\u0019\u0003\u0002\u0002\u0002\u00d3\u00d8\u0005\u001c\u000f\u0002\u00d4", + "\u00d5\u0007\u012a\u0002\u0002\u00d5\u00d7\u0005\u001c\u000f\u0002\u00d6", + "\u00d4\u0003\u0002\u0002\u0002\u00d7\u00da\u0003\u0002\u0002\u0002\u00d8", + "\u00d6\u0003\u0002\u0002\u0002\u00d8\u00d9\u0003\u0002\u0002\u0002\u00d9", + "\u001b\u0003\u0002\u0002\u0002\u00da\u00d8\u0003\u0002\u0002\u0002\u00db", + "\u00dc\u0007\u0106\u0002\u0002\u00dc\u001d\u0003\u0002\u0002\u0002\u00dd", + "\u00de\u0007I\u0002\u0002\u00de\u00e0\u0007\u00c7\u0002\u0002\u00df", + "\u00e1\u0005n8\u0002\u00e0\u00df\u0003\u0002\u0002\u0002\u00e0\u00e1", + "\u0003\u0002\u0002\u0002\u00e1\u00e2\u0003\u0002\u0002\u0002\u00e2\u00e3", + "\u0005j6\u0002\u00e3\u00e4\u0005l7\u0002\u00e4\u001f\u0003\u0002\u0002", + "\u0002\u00e5\u00e7\u0007I\u0002\u0002\u00e6\u00e8\u0007\u00ae\u0002", + "\u0002\u00e7\u00e6\u0003\u0002\u0002\u0002\u00e7\u00e8\u0003\u0002\u0002", + "\u0002\u00e8\u00e9\u0003\u0002\u0002\u0002\u00e9\u00eb\u0007L\u0002", + "\u0002\u00ea\u00ec\u0005n8\u0002\u00eb\u00ea\u0003\u0002\u0002\u0002", + "\u00eb\u00ec\u0003\u0002\u0002\u0002\u00ec\u00ed\u0003\u0002\u0002\u0002", + "\u00ed\u00ee\u0005j6\u0002\u00ee\u00ef\u0007\n\u0002\u0002\u00ef\u00f0", + "\u0005:\u001e\u0002\u00f0!\u0003\u0002\u0002\u0002\u00f1\u00f2\u0003", + "\u0002\u0002\u0002\u00f2#\u0003\u0002\u0002\u0002\u00f3\u00f4\u0007", + "g\u0002\u0002\u00f4\u00f5\u0007J\u0002\u0002\u00f5\u00f8\u0005j6\u0002", + "\u00f6\u00f9\u0005&\u0014\u0002\u00f7\u00f9\u0005(\u0015\u0002\u00f8", + "\u00f6\u0003\u0002\u0002\u0002\u00f8\u00f7\u0003\u0002\u0002\u0002\u00f9", + "%\u0003\u0002\u0002\u0002\u00fa\u00fb\u0007h\u0002\u0002\u00fb\u00fc", + "\u0007d\u0002\u0002\u00fc\u00fd\u0005j6\u0002\u00fd\'\u0003\u0002\u0002", + "\u0002\u00fe\u00ff\u0007k\u0002\u0002\u00ff\u0100\u0007\u0128\u0002", + "\u0002\u0100\u0105\u0005r:\u0002\u0101\u0102\u0007\u012a\u0002\u0002", + "\u0102\u0104\u0005r:\u0002\u0103\u0101\u0003\u0002\u0002\u0002\u0104", + "\u0107\u0003\u0002\u0002\u0002\u0105\u0103\u0003\u0002\u0002\u0002\u0105", + "\u0106\u0003\u0002\u0002\u0002\u0106\u0108\u0003\u0002\u0002\u0002\u0107", + "\u0105\u0003\u0002\u0002\u0002\u0108\u0109\u0007\u0129\u0002\u0002\u0109", + ")\u0003\u0002\u0002\u0002\u010a\u010b\u0007g\u0002\u0002\u010b\u010c", + "\u0007\u00c7\u0002\u0002\u010c\u010d\u0005j6\u0002\u010d\u010e\u0005", + "(\u0015\u0002\u010e+\u0003\u0002\u0002\u0002\u010f\u0110\u0003\u0002", + "\u0002\u0002\u0110-\u0003\u0002\u0002\u0002\u0111\u0112\u0007_\u0002", + "\u0002\u0112\u0114\u0007J\u0002\u0002\u0113\u0115\u0005p9\u0002\u0114", + "\u0113\u0003\u0002\u0002\u0002\u0114\u0115\u0003\u0002\u0002\u0002\u0115", + "\u0116\u0003\u0002\u0002\u0002\u0116\u0117\u0005j6\u0002\u0117/\u0003", + "\u0002\u0002\u0002\u0118\u0119\u0007_\u0002\u0002\u0119\u011b\u0007", + "\u00c7\u0002\u0002\u011a\u011c\u0005p9\u0002\u011b\u011a\u0003\u0002", + "\u0002\u0002\u011b\u011c\u0003\u0002\u0002\u0002\u011c\u011d\u0003\u0002", + "\u0002\u0002\u011d\u011f\u0005j6\u0002\u011e\u0120\t\u0003\u0002\u0002", + "\u011f\u011e\u0003\u0002\u0002\u0002\u011f\u0120\u0003\u0002\u0002\u0002", + "\u01201\u0003\u0002\u0002\u0002\u0121\u0123\u0007_\u0002\u0002\u0122", + "\u0124\u0007\u00ae\u0002\u0002\u0123\u0122\u0003\u0002\u0002\u0002\u0123", + "\u0124\u0003\u0002\u0002\u0002\u0124\u0125\u0003\u0002\u0002\u0002\u0125", + "\u0127\u0007L\u0002\u0002\u0126\u0128\u0005p9\u0002\u0127\u0126\u0003", + "\u0002\u0002\u0002\u0127\u0128\u0003\u0002\u0002\u0002\u0128\u0129\u0003", + "\u0002\u0002\u0002\u0129\u012a\u0005j6\u0002\u012a3\u0003\u0002\u0002", + "\u0002\u012b\u012f\u0007_\u0002\u0002\u012c\u0130\u0007\u00ae\u0002", + "\u0002\u012d\u012e\u0007\u00ae\u0002\u0002\u012e\u0130\u0007\u0107\u0002", + "\u0002\u012f\u012c\u0003\u0002\u0002\u0002\u012f\u012d\u0003\u0002\u0002", + "\u0002\u012f\u0130\u0003\u0002\u0002\u0002\u0130\u0131\u0003\u0002\u0002", + "\u0002\u0131\u0133\u0007\u00a5\u0002\u0002\u0132\u0134\u0005p9\u0002", + "\u0133\u0132\u0003\u0002\u0002\u0002\u0133\u0134\u0003\u0002\u0002\u0002", + "\u0134\u0135\u0003\u0002\u0002\u0002\u0135\u0136\u0005j6\u0002\u0136", + "5\u0003\u0002\u0002\u0002\u0137\u0146\u0005b2\u0002\u0138\u013a\u0005", + "8\u001d\u0002\u0139\u013b\u0005R*\u0002\u013a\u0139\u0003\u0002\u0002", + "\u0002\u013a\u013b\u0003\u0002\u0002\u0002\u013b\u013d\u0003\u0002\u0002", + "\u0002\u013c\u013e\u0005V,\u0002\u013d\u013c\u0003\u0002\u0002\u0002", + "\u013d\u013e\u0003\u0002\u0002\u0002\u013e\u0140\u0003\u0002\u0002\u0002", + "\u013f\u0141\u0005Z.\u0002\u0140\u013f\u0003\u0002\u0002\u0002\u0140", + "\u0141\u0003\u0002\u0002\u0002\u0141\u0143\u0003\u0002\u0002\u0002\u0142", + "\u0144\u0005\\/\u0002\u0143\u0142\u0003\u0002\u0002\u0002\u0143\u0144", + "\u0003\u0002\u0002\u0002\u0144\u0146\u0003\u0002\u0002\u0002\u0145\u0137", + "\u0003\u0002\u0002\u0002\u0145\u0138\u0003\u0002\u0002\u0002\u01467", + "\u0003\u0002\u0002\u0002\u0147\u014a\u0005:\u001e\u0002\u0148\u014a", + "\u0005N(\u0002\u0149\u0147\u0003\u0002\u0002\u0002\u0149\u0148\u0003", + "\u0002\u0002\u0002\u014a9\u0003\u0002\u0002\u0002\u014b\u014d\u0007", + "\u0007\u0002\u0002\u014c\u014e\t\u0004\u0002\u0002\u014d\u014c\u0003", + "\u0002\u0002\u0002\u014d\u014e\u0003\u0002\u0002\u0002\u014e\u0158\u0003", + "\u0002\u0002\u0002\u014f\u0159\u0007\u0134\u0002\u0002\u0150\u0155\u0005", + "<\u001f\u0002\u0151\u0152\u0007\u012a\u0002\u0002\u0152\u0154\u0005", + "<\u001f\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\u0159\u0003\u0002\u0002\u0002\u0157\u0155\u0003", + "\u0002\u0002\u0002\u0158\u014f\u0003\u0002\u0002\u0002\u0158\u0150\u0003", + "\u0002\u0002\u0002\u0159\u015a\u0003\u0002\u0002\u0002\u015a\u015b\u0007", + "\b\u0002\u0002\u015b\u015e\u0005> \u0002\u015c\u015d\u0007\u000e\u0002", + "\u0002\u015d\u015f\u0005v<\u0002\u015e\u015c\u0003\u0002\u0002\u0002", + "\u015e\u015f\u0003\u0002\u0002\u0002\u015f\u0160\u0003\u0002\u0002\u0002", + "\u0160\u0161\u0007\u000f\u0002\u0002\u0161\u0162\u0007\u0010\u0002\u0002", + "\u0162\u0167\u0005L\'\u0002\u0163\u0164\u0007\u012a\u0002\u0002\u0164", + "\u0166\u0005L\'\u0002\u0165\u0163\u0003\u0002\u0002\u0002\u0166\u0169", + "\u0003\u0002\u0002\u0002\u0167\u0165\u0003\u0002\u0002\u0002\u0167\u0168", + "\u0003\u0002\u0002\u0002\u0168\u016c\u0003\u0002\u0002\u0002\u0169\u0167", + "\u0003\u0002\u0002\u0002\u016a\u016b\u0007\u0016\u0002\u0002\u016b\u016d", + "\u0005v<\u0002\u016c\u016a\u0003\u0002\u0002\u0002\u016c\u016d\u0003", + "\u0002\u0002\u0002\u016d;\u0003\u0002\u0002\u0002\u016e\u0173\u0005", + "v<\u0002\u016f\u0171\u0007\n\u0002\u0002\u0170\u016f\u0003\u0002\u0002", + "\u0002\u0170\u0171\u0003\u0002\u0002\u0002\u0171\u0172\u0003\u0002\u0002", + "\u0002\u0172\u0174\u0005j6\u0002\u0173\u0170\u0003\u0002\u0002\u0002", + "\u0173\u0174\u0003\u0002\u0002\u0002\u0174\u017a\u0003\u0002\u0002\u0002", + "\u0175\u0176\u0005j6\u0002\u0176\u0177\u0007\u0003\u0002\u0002\u0177", + "\u0178\u0007\u0004\u0002\u0002\u0178\u017a\u0003\u0002\u0002\u0002\u0179", + "\u016e\u0003\u0002\u0002\u0002\u0179\u0175\u0003\u0002\u0002\u0002\u017a", + "=\u0003\u0002\u0002\u0002\u017b\u017c\b \u0001\u0002\u017c\u0181\u0005", + "@!\u0002\u017d\u017e\u0007\u012a\u0002\u0002\u017e\u0180\u0005@!\u0002", + "\u017f\u017d\u0003\u0002\u0002\u0002\u0180\u0183\u0003\u0002\u0002\u0002", + "\u0181\u017f\u0003\u0002\u0002\u0002\u0181\u0182\u0003\u0002\u0002\u0002", + "\u0182\u0192\u0003\u0002\u0002\u0002\u0183\u0181\u0003\u0002\u0002\u0002", + "\u0184\u0186\f\u0003\u0002\u0002\u0185\u0187\u00077\u0002\u0002\u0186", + "\u0185\u0003\u0002\u0002\u0002\u0186\u0187\u0003\u0002\u0002\u0002\u0187", + "\u0189\u0003\u0002\u0002\u0002\u0188\u018a\t\u0005\u0002\u0002\u0189", + "\u0188\u0003\u0002\u0002\u0002\u0189\u018a\u0003\u0002\u0002\u0002\u018a", + "\u018b\u0003\u0002\u0002\u0002\u018b\u018c\u0007/\u0002\u0002\u018c", + "\u018e\u0005> \u0002\u018d\u018f\u0005H%\u0002\u018e\u018d\u0003\u0002", + "\u0002\u0002\u018e\u018f\u0003\u0002\u0002\u0002\u018f\u0191\u0003\u0002", + "\u0002\u0002\u0190\u0184\u0003\u0002\u0002\u0002\u0191\u0194\u0003\u0002", + "\u0002\u0002\u0192\u0190\u0003\u0002\u0002\u0002\u0192\u0193\u0003\u0002", + "\u0002\u0002\u0193?\u0003\u0002\u0002\u0002\u0194\u0192\u0003\u0002", + "\u0002\u0002\u0195\u0197\u0005D#\u0002\u0196\u0198\u0005B\"\u0002\u0197", + "\u0196\u0003\u0002\u0002\u0002\u0197\u0198\u0003\u0002\u0002\u0002\u0198", + "\u01aa\u0003\u0002\u0002\u0002\u0199\u019b\u0007\n\u0002\u0002\u019a", + "\u0199\u0003\u0002\u0002\u0002\u019a\u019b\u0003\u0002\u0002\u0002\u019b", + "\u019c\u0003\u0002\u0002\u0002\u019c\u01a8\u0005j6\u0002\u019d\u019e", + "\u0007\u0128\u0002\u0002\u019e\u01a3\u0005j6\u0002\u019f\u01a0\u0007", + "\u012a\u0002\u0002\u01a0\u01a2\u0005j6\u0002\u01a1\u019f\u0003\u0002", + "\u0002\u0002\u01a2\u01a5\u0003\u0002\u0002\u0002\u01a3\u01a1\u0003\u0002", + "\u0002\u0002\u01a3\u01a4\u0003\u0002\u0002\u0002\u01a4\u01a6\u0003\u0002", + "\u0002\u0002\u01a5\u01a3\u0003\u0002\u0002\u0002\u01a6\u01a7\u0007\u0129", + "\u0002\u0002\u01a7\u01a9\u0003\u0002\u0002\u0002\u01a8\u019d\u0003\u0002", + "\u0002\u0002\u01a8\u01a9\u0003\u0002\u0002\u0002\u01a9\u01ab\u0003\u0002", + "\u0002\u0002\u01aa\u019a\u0003\u0002\u0002\u0002\u01aa\u01ab\u0003\u0002", + "\u0002\u0002\u01abA\u0003\u0002\u0002\u0002\u01ac\u01ad\u0003\u0002", + "\u0002\u0002\u01adC\u0003\u0002\u0002\u0002\u01ae\u01b0\u0007J\u0002", + "\u0002\u01af\u01ae\u0003\u0002\u0002\u0002\u01af\u01b0\u0003\u0002\u0002", + "\u0002\u01b0\u01b1\u0003\u0002\u0002\u0002\u01b1\u01b3\u0005j6\u0002", + "\u01b2\u01b4\u0005F$\u0002\u01b3\u01b2\u0003\u0002\u0002\u0002\u01b3", + "\u01b4\u0003\u0002\u0002\u0002\u01b4\u01cb\u0003\u0002\u0002\u0002\u01b5", + "\u01b6\u0007:\u0002\u0002\u01b6\u01b7\u0007J\u0002\u0002\u01b7\u01b8", + "\u0007\u0128\u0002\u0002\u01b8\u01b9\u0005j6\u0002\u01b9\u01ba\u0007", + "\u0128\u0002\u0002\u01ba\u01bf\u0005v<\u0002\u01bb\u01bc\u0007\u012a", + "\u0002\u0002\u01bc\u01be\u0005v<\u0002\u01bd\u01bb\u0003\u0002\u0002", + "\u0002\u01be\u01c1\u0003\u0002\u0002\u0002\u01bf\u01bd\u0003\u0002\u0002", + "\u0002\u01bf\u01c0\u0003\u0002\u0002\u0002\u01c0\u01c2\u0003\u0002\u0002", + "\u0002\u01c1\u01bf\u0003\u0002\u0002\u0002\u01c2\u01c3\u0007\u0129\u0002", + "\u0002\u01c3\u01c4\u0007\u0129\u0002\u0002\u01c4\u01cb\u0003\u0002\u0002", + "\u0002\u01c5\u01c6\u0007\u00e9\u0002\u0002\u01c6\u01c7\u0007\u0128\u0002", + "\u0002\u01c7\u01c8\u0005v<\u0002\u01c8\u01c9\u0007\u0129\u0002\u0002", + "\u01c9\u01cb\u0003\u0002\u0002\u0002\u01ca\u01af\u0003\u0002\u0002\u0002", + "\u01ca\u01b5\u0003\u0002\u0002\u0002\u01ca\u01c5\u0003\u0002\u0002\u0002", + "\u01cbE\u0003\u0002\u0002\u0002\u01cc\u01cd\u0003\u0002\u0002\u0002", + "\u01cdG\u0003\u0002\u0002\u0002\u01ce\u01cf\u00078\u0002\u0002\u01cf", + "\u01dd\u0005J&\u0002\u01d0\u01d1\u0007\u0097\u0002\u0002\u01d1\u01d2", + "\u0007\u0128\u0002\u0002\u01d2\u01d7\u0005j6\u0002\u01d3\u01d4\u0007", + "\u012a\u0002\u0002\u01d4\u01d6\u0005j6\u0002\u01d5\u01d3\u0003\u0002", + "\u0002\u0002\u01d6\u01d9\u0003\u0002\u0002\u0002\u01d7\u01d5\u0003\u0002", + "\u0002\u0002\u01d7\u01d8\u0003\u0002\u0002\u0002\u01d8\u01da\u0003\u0002", + "\u0002\u0002\u01d9\u01d7\u0003\u0002\u0002\u0002\u01da\u01db\u0007\u0129", + "\u0002\u0002\u01db\u01dd\u0003\u0002\u0002\u0002\u01dc\u01ce\u0003\u0002", + "\u0002\u0002\u01dc\u01d0\u0003\u0002\u0002\u0002\u01ddI\u0003\u0002", + "\u0002\u0002\u01de\u01df\u0003\u0002\u0002\u0002\u01dfK\u0003\u0002", + "\u0002\u0002\u01e0\u0214\u0005v<\u0002\u01e1\u01e2\u0007\u0128\u0002", + "\u0002\u01e2\u0214\u0007\u0129\u0002\u0002\u01e3\u01e4\u0007\u0128\u0002", + "\u0002\u01e4\u01e9\u0005v<\u0002\u01e5\u01e6\u0007\u012a\u0002\u0002", + "\u01e6\u01e8\u0005v<\u0002\u01e7\u01e5\u0003\u0002\u0002\u0002\u01e8", + "\u01eb\u0003\u0002\u0002\u0002\u01e9\u01e7\u0003\u0002\u0002\u0002\u01e9", + "\u01ea\u0003\u0002\u0002\u0002\u01ea\u01ec\u0003\u0002\u0002\u0002\u01eb", + "\u01e9\u0003\u0002\u0002\u0002\u01ec\u01ed\u0007\u0129\u0002\u0002\u01ed", + "\u0214\u0003\u0002\u0002\u0002\u01ee\u01ef\u0007\u0013\u0002\u0002\u01ef", + "\u01f0\u0007\u0128\u0002\u0002\u01f0\u01f5\u0005v<\u0002\u01f1\u01f2", + "\u0007\u012a\u0002\u0002\u01f2\u01f4\u0005v<\u0002\u01f3\u01f1\u0003", + "\u0002\u0002\u0002\u01f4\u01f7\u0003\u0002\u0002\u0002\u01f5\u01f3\u0003", + "\u0002\u0002\u0002\u01f5\u01f6\u0003\u0002\u0002\u0002\u01f6\u01f8\u0003", + "\u0002\u0002\u0002\u01f7\u01f5\u0003\u0002\u0002\u0002\u01f8\u01f9\u0007", + "\u0129\u0002\u0002\u01f9\u0214\u0003\u0002\u0002\u0002\u01fa\u01fb\u0007", + "\u0014\u0002\u0002\u01fb\u01fc\u0007\u0128\u0002\u0002\u01fc\u0201\u0005", + "v<\u0002\u01fd\u01fe\u0007\u012a\u0002\u0002\u01fe\u0200\u0005v<\u0002", + "\u01ff\u01fd\u0003\u0002\u0002\u0002\u0200\u0203\u0003\u0002\u0002\u0002", + "\u0201\u01ff\u0003\u0002\u0002\u0002\u0201\u0202\u0003\u0002\u0002\u0002", + "\u0202\u0204\u0003\u0002\u0002\u0002\u0203\u0201\u0003\u0002\u0002\u0002", + "\u0204\u0205\u0007\u0129\u0002\u0002\u0205\u0214\u0003\u0002\u0002\u0002", + "\u0206\u0207\u0007\u0011\u0002\u0002\u0207\u0208\u0007\u0012\u0002\u0002", + "\u0208\u0209\u0007\u0128\u0002\u0002\u0209\u020e\u0005L\'\u0002\u020a", + "\u020b\u0007\u012a\u0002\u0002\u020b\u020d\u0005L\'\u0002\u020c\u020a", + "\u0003\u0002\u0002\u0002\u020d\u0210\u0003\u0002\u0002\u0002\u020e\u020c", + "\u0003\u0002\u0002\u0002\u020e\u020f\u0003\u0002\u0002\u0002\u020f\u0211", + "\u0003\u0002\u0002\u0002\u0210\u020e\u0003\u0002\u0002\u0002\u0211\u0212", + "\u0007\u0129\u0002\u0002\u0212\u0214\u0003\u0002\u0002\u0002\u0213\u01e0", + "\u0003\u0002\u0002\u0002\u0213\u01e1\u0003\u0002\u0002\u0002\u0213\u01e3", + "\u0003\u0002\u0002\u0002\u0213\u01ee\u0003\u0002\u0002\u0002\u0213\u01fa", + "\u0003\u0002\u0002\u0002\u0213\u0206\u0003\u0002\u0002\u0002\u0214M", + "\u0003\u0002\u0002\u0002\u0215\u0217\u0007\u0007\u0002\u0002\u0216\u0218", + "\t\u0004\u0002\u0002\u0217\u0216\u0003\u0002\u0002\u0002\u0217\u0218", + "\u0003\u0002\u0002\u0002\u0218\u0222\u0003\u0002\u0002\u0002\u0219\u0223", + "\u0007\u0134\u0002\u0002\u021a\u021f\u0005P)\u0002\u021b\u021c\u0007", + "\u012a\u0002\u0002\u021c\u021e\u0005P)\u0002\u021d\u021b\u0003\u0002", + "\u0002\u0002\u021e\u0221\u0003\u0002\u0002\u0002\u021f\u021d\u0003\u0002", + "\u0002\u0002\u021f\u0220\u0003\u0002\u0002\u0002\u0220\u0223\u0003\u0002", + "\u0002\u0002\u0221\u021f\u0003\u0002\u0002\u0002\u0222\u0219\u0003\u0002", + "\u0002\u0002\u0222\u021a\u0003\u0002\u0002\u0002\u0223O\u0003\u0002", + "\u0002\u0002\u0224\u0229\u0005v<\u0002\u0225\u0227\u0007\n\u0002\u0002", + "\u0226\u0225\u0003\u0002\u0002\u0002\u0226\u0227\u0003\u0002\u0002\u0002", + "\u0227\u0228\u0003\u0002\u0002\u0002\u0228\u022a\u0005j6\u0002\u0229", + "\u0226\u0003\u0002\u0002\u0002\u0229\u022a\u0003\u0002\u0002\u0002\u022a", + "\u0230\u0003\u0002\u0002\u0002\u022b\u022c\u0005j6\u0002\u022c\u022d", + "\u0007\u0003\u0002\u0002\u022d\u022e\u0007\u0004\u0002\u0002\u022e\u0230", + "\u0003\u0002\u0002\u0002\u022f\u0224\u0003\u0002\u0002\u0002\u022f\u022b", + "\u0003\u0002\u0002\u0002\u0230Q\u0003\u0002\u0002\u0002\u0231\u0232", + "\u0007\u0015\u0002\u0002\u0232\u0233\u0007\u0010\u0002\u0002\u0233\u0238", + "\u0005T+\u0002\u0234\u0235\u0007\u012a\u0002\u0002\u0235\u0237\u0005", + "T+\u0002\u0236\u0234\u0003\u0002\u0002\u0002\u0237\u023a\u0003\u0002", + "\u0002\u0002\u0238\u0236\u0003\u0002\u0002\u0002\u0238\u0239\u0003\u0002", + "\u0002\u0002\u0239S\u0003\u0002\u0002\u0002\u023a\u0238\u0003\u0002", + "\u0002\u0002\u023b\u023c\u0005v<\u0002\u023c\u023d\t\u0006\u0002\u0002", + "\u023dU\u0003\u0002\u0002\u0002\u023e\u0241\u0007\u0017\u0002\u0002", + "\u023f\u0242\u0005X-\u0002\u0240\u0242\u0007\u000b\u0002\u0002\u0241", + "\u023f\u0003\u0002\u0002\u0002\u0241\u0240\u0003\u0002\u0002\u0002\u0242", + "W\u0003\u0002\u0002\u0002\u0243\u0244\u0003\u0002\u0002\u0002\u0244", + "Y\u0003\u0002\u0002\u0002\u0245\u0246\u0003\u0002\u0002\u0002\u0246", + "[\u0003\u0002\u0002\u0002\u0247\u0248\u0003\u0002\u0002\u0002\u0248", + "]\u0003\u0002\u0002\u0002\u0249\u024a\u0007N\u0002\u0002\u024a\u024b", + "\t\u0007\u0002\u0002\u024b\u0251\u0005j6\u0002\u024c\u024e\u0005`1\u0002", + "\u024d\u024c\u0003\u0002\u0002\u0002\u024d\u024e\u0003\u0002\u0002\u0002", + "\u024e\u024f\u0003\u0002\u0002\u0002\u024f\u0252\u0005:\u001e\u0002", + "\u0250\u0252\u0005b2\u0002\u0251\u024d\u0003\u0002\u0002\u0002\u0251", + "\u0250\u0003\u0002\u0002\u0002\u0252_\u0003\u0002\u0002\u0002\u0253", + "\u0254\u0007=\u0002\u0002\u0254\u0255\u0007\u0128\u0002\u0002\u0255", + "\u025a\u0005r:\u0002\u0256\u0257\u0007\u012a\u0002\u0002\u0257\u0259", + "\u0005r:\u0002\u0258\u0256\u0003\u0002\u0002\u0002\u0259\u025c\u0003", + "\u0002\u0002\u0002\u025a\u0258\u0003\u0002\u0002\u0002\u025a\u025b\u0003", + "\u0002\u0002\u0002\u025b\u025d\u0003\u0002\u0002\u0002\u025c\u025a\u0003", + "\u0002\u0002\u0002\u025d\u025e\u0007\u0129\u0002\u0002\u025ea\u0003", + "\u0002\u0002\u0002\u025f\u0260\u0007H\u0002\u0002\u0260\u0265\u0005", + "d3\u0002\u0261\u0262\u0007\u012a\u0002\u0002\u0262\u0264\u0005d3\u0002", + "\u0263\u0261\u0003\u0002\u0002\u0002\u0264\u0267\u0003\u0002\u0002\u0002", + "\u0265\u0263\u0003\u0002\u0002\u0002\u0265\u0266\u0003\u0002\u0002\u0002", + "\u0266c\u0003\u0002\u0002\u0002\u0267\u0265\u0003\u0002\u0002\u0002", + "\u0268\u0269\u0007\u0128\u0002\u0002\u0269\u026e\u0005f4\u0002\u026a", + "\u026b\u0007\u012a\u0002\u0002\u026b\u026d\u0005f4\u0002\u026c\u026a", + "\u0003\u0002\u0002\u0002\u026d\u0270\u0003\u0002\u0002\u0002\u026e\u026c", + "\u0003\u0002\u0002\u0002\u026e\u026f\u0003\u0002\u0002\u0002\u026f\u0271", + "\u0003\u0002\u0002\u0002\u0270\u026e\u0003\u0002\u0002\u0002\u0271\u0272", + "\u0007\u0129\u0002\u0002\u0272e\u0003\u0002\u0002\u0002\u0273\u0278", + "\u0005\u008aF\u0002\u0274\u0278\u0005\u008eH\u0002\u0275\u0278\u0007", + "\u0139\u0002\u0002\u0276\u0278\u0007\u011e\u0002\u0002\u0277\u0273\u0003", + "\u0002\u0002\u0002\u0277\u0274\u0003\u0002\u0002\u0002\u0277\u0275\u0003", + "\u0002\u0002\u0002\u0277\u0276\u0003\u0002\u0002\u0002\u0278g\u0003", + "\u0002\u0002\u0002\u0279\u027e\u0005j6\u0002\u027a\u027b\u0007\u0005", + "\u0002\u0002\u027b\u027d\u0005j6\u0002\u027c\u027a\u0003\u0002\u0002", + "\u0002\u027d\u0280\u0003\u0002\u0002\u0002\u027e\u027c\u0003\u0002\u0002", + "\u0002\u027e\u027f\u0003\u0002\u0002\u0002\u027fi\u0003\u0002\u0002", + "\u0002\u0280\u027e\u0003\u0002\u0002\u0002\u0281\u0285\u0007\u0106\u0002", + "\u0002\u0282\u0284\u0007\u0105\u0002\u0002\u0283\u0282\u0003\u0002\u0002", + "\u0002\u0284\u0287\u0003\u0002\u0002\u0002\u0285\u0286\u0003\u0002\u0002", + "\u0002\u0285\u0283\u0003\u0002\u0002\u0002\u0286k\u0003\u0002\u0002", + "\u0002\u0287\u0285\u0003\u0002\u0002\u0002\u0288\u0289\u0007G\u0002", + "\u0002\u0289\u028a\u0007\u0128\u0002\u0002\u028a\u028f\u0005r:\u0002", + "\u028b\u028c\u0007\u012a\u0002\u0002\u028c\u028e\u0005r:\u0002\u028d", + "\u028b\u0003\u0002\u0002\u0002\u028e\u0291\u0003\u0002\u0002\u0002\u028f", + "\u028d\u0003\u0002\u0002\u0002\u028f\u0290\u0003\u0002\u0002\u0002\u0290", + "\u0292\u0003\u0002\u0002\u0002\u0291\u028f\u0003\u0002\u0002\u0002\u0292", + "\u0293\u0007\u0129\u0002\u0002\u0293m\u0003\u0002\u0002\u0002\u0294", + "\u0295\u0007w\u0002\u0002\u0295\u0296\u0007\u001c\u0002\u0002\u0296", + "\u0297\u0007\u001e\u0002\u0002\u0297o\u0003\u0002\u0002\u0002\u0298", + "\u0299\u0007w\u0002\u0002\u0299\u029a\u0007\u001e\u0002\u0002\u029a", + "q\u0003\u0002\u0002\u0002\u029b\u029c\u0007\u0104\u0002\u0002\u029c", + "\u029d\u0007\u011f\u0002\u0002\u029d\u029e\u0007\u0104\u0002\u0002\u029e", + "s\u0003\u0002\u0002\u0002\u029f\u02a4\u0005v<\u0002\u02a0\u02a1\u0007", + "\u0005\u0002\u0002\u02a1\u02a3\u0005v<\u0002\u02a2\u02a0\u0003\u0002", + "\u0002\u0002\u02a3\u02a6\u0003\u0002\u0002\u0002\u02a4\u02a2\u0003\u0002", + "\u0002\u0002\u02a4\u02a5\u0003\u0002\u0002\u0002\u02a5u\u0003\u0002", + "\u0002\u0002\u02a6\u02a4\u0003\u0002\u0002\u0002\u02a7\u02a8\b<\u0001", + "\u0002\u02a8\u02a9\t\b\u0002\u0002\u02a9\u02b3\u0005v<\u0006\u02aa\u02ab", + "\u0005x=\u0002\u02ab\u02ad\u0007\"\u0002\u0002\u02ac\u02ae\u0007\u001c", + "\u0002\u0002\u02ad\u02ac\u0003\u0002\u0002\u0002\u02ad\u02ae\u0003\u0002", + "\u0002\u0002\u02ae\u02af\u0003\u0002\u0002\u0002\u02af\u02b0\t\t\u0002", + "\u0002\u02b0\u02b3\u0003\u0002\u0002\u0002\u02b1\u02b3\u0005x=\u0002", + "\u02b2\u02a7\u0003\u0002\u0002\u0002\u02b2\u02aa\u0003\u0002\u0002\u0002", + "\u02b2\u02b1\u0003\u0002\u0002\u0002\u02b3\u02ba\u0003\u0002\u0002\u0002", + "\u02b4\u02b5\f\u0005\u0002\u0002\u02b5\u02b6\u0005|?\u0002\u02b6\u02b7", + "\u0005v<\u0006\u02b7\u02b9\u0003\u0002\u0002\u0002\u02b8\u02b4\u0003", + "\u0002\u0002\u0002\u02b9\u02bc\u0003\u0002\u0002\u0002\u02ba\u02b8\u0003", + "\u0002\u0002\u0002\u02ba\u02bb\u0003\u0002\u0002\u0002\u02bbw\u0003", + "\u0002\u0002\u0002\u02bc\u02ba\u0003\u0002\u0002\u0002\u02bd\u02be\b", + "=\u0001\u0002\u02be\u02bf\u0005z>\u0002\u02bf\u02e8\u0003\u0002\u0002", + "\u0002\u02c0\u02c1\f\u0007\u0002\u0002\u02c1\u02c2\u0005~@\u0002\u02c2", + "\u02c3\u0005x=\b\u02c3\u02e7\u0003\u0002\u0002\u0002\u02c4\u02c6\f\u0005", + "\u0002\u0002\u02c5\u02c7\u0007\u001c\u0002\u0002\u02c6\u02c5\u0003\u0002", + "\u0002\u0002\u02c6\u02c7\u0003\u0002\u0002\u0002\u02c7\u02c8\u0003\u0002", + "\u0002\u0002\u02c8\u02c9\u0007\u001f\u0002\u0002\u02c9\u02ca\u0005x", + "=\u0002\u02ca\u02cb\u0007\u001a\u0002\u0002\u02cb\u02cc\u0005x=\u0006", + "\u02cc\u02e7\u0003\u0002\u0002\u0002\u02cd\u02cf\f\u0004\u0002\u0002", + "\u02ce\u02d0\u0007\u001c\u0002\u0002\u02cf\u02ce\u0003\u0002\u0002\u0002", + "\u02cf\u02d0\u0003\u0002\u0002\u0002\u02d0\u02d1\u0003\u0002\u0002\u0002", + "\u02d1\u02d2\u0007 \u0002\u0002\u02d2\u02e7\u0005x=\u0005\u02d3\u02d5", + "\f\b\u0002\u0002\u02d4\u02d6\u0007\u001c\u0002\u0002\u02d5\u02d4\u0003", + "\u0002\u0002\u0002\u02d5\u02d6\u0003\u0002\u0002\u0002\u02d6\u02d7\u0003", + "\u0002\u0002\u0002\u02d7\u02d8\u0007\u001b\u0002\u0002\u02d8\u02db\u0007", + "\u0007\u0002\u0002\u02d9\u02dc\u0005:\u001e\u0002\u02da\u02dc\u0005", + "t;\u0002\u02db\u02d9\u0003\u0002\u0002\u0002\u02db\u02da\u0003\u0002", + "\u0002\u0002\u02dc\u02dd\u0003\u0002\u0002\u0002\u02dd\u02de\u0007\b", + "\u0002\u0002\u02de\u02e7\u0003\u0002\u0002\u0002\u02df\u02e0\f\u0006", + "\u0002\u0002\u02e0\u02e1\u0005~@\u0002\u02e1\u02e2\t\n\u0002\u0002\u02e2", + "\u02e3\u0007\u0007\u0002\u0002\u02e3\u02e4\u0005:\u001e\u0002\u02e4", + "\u02e5\u0007\b\u0002\u0002\u02e5\u02e7\u0003\u0002\u0002\u0002\u02e6", + "\u02c0\u0003\u0002\u0002\u0002\u02e6\u02c4\u0003\u0002\u0002\u0002\u02e6", + "\u02cd\u0003\u0002\u0002\u0002\u02e6\u02d3\u0003\u0002\u0002\u0002\u02e6", + "\u02df\u0003\u0002\u0002\u0002\u02e7\u02ea\u0003\u0002\u0002\u0002\u02e8", + "\u02e6\u0003\u0002\u0002\u0002\u02e8\u02e9\u0003\u0002\u0002\u0002\u02e9", + "y\u0003\u0002\u0002\u0002\u02ea\u02e8\u0003\u0002\u0002\u0002\u02eb", + "\u02ec\b>\u0001\u0002\u02ec\u0313\u0005\u0088E\u0002\u02ed\u0313\u0005", + "\u0086D\u0002\u02ee\u02ef\u0005\u0084C\u0002\u02ef\u02f0\u0005z>\n\u02f0", + "\u0313\u0003\u0002\u0002\u0002\u02f1\u02f2\u0007\u010d\u0002\u0002\u02f2", + "\u0313\u0005z>\t\u02f3\u02f4\u0007\u0007\u0002\u0002\u02f4\u02f9\u0005", + "v<\u0002\u02f5\u02f6\u0007\u0005\u0002\u0002\u02f6\u02f8\u0005v<\u0002", + "\u02f7\u02f5\u0003\u0002\u0002\u0002\u02f8\u02fb\u0003\u0002\u0002\u0002", + "\u02f9\u02f7\u0003\u0002\u0002\u0002\u02f9\u02fa\u0003\u0002\u0002\u0002", + "\u02fa\u02fc\u0003\u0002\u0002\u0002\u02fb\u02f9\u0003\u0002\u0002\u0002", + "\u02fc\u02fd\u0007\b\u0002\u0002\u02fd\u0313\u0003\u0002\u0002\u0002", + "\u02fe\u02ff\u0007\u011d\u0002\u0002\u02ff\u0300\u0007\u0007\u0002\u0002", + "\u0300\u0303\u0005v<\u0002\u0301\u0302\u0007\u0005\u0002\u0002\u0302", + "\u0304\u0005v<\u0002\u0303\u0301\u0003\u0002\u0002\u0002\u0304\u0305", + "\u0003\u0002\u0002\u0002\u0305\u0303\u0003\u0002\u0002\u0002\u0305\u0306", + "\u0003\u0002\u0002\u0002\u0306\u0307\u0003\u0002\u0002\u0002\u0307\u0308", + "\u0007\b\u0002\u0002\u0308\u0313\u0003\u0002\u0002\u0002\u0309\u030a", + "\u0007\u001e\u0002\u0002\u030a\u030b\u0007\u0007\u0002\u0002\u030b\u030c", + "\u0005:\u001e\u0002\u030c\u030d\u0007\b\u0002\u0002\u030d\u0313\u0003", + "\u0002\u0002\u0002\u030e\u030f\u0007\u0007\u0002\u0002\u030f\u0310\u0005", + ":\u001e\u0002\u0310\u0311\u0007\b\u0002\u0002\u0311\u0313\u0003\u0002", + "\u0002\u0002\u0312\u02eb\u0003\u0002\u0002\u0002\u0312\u02ed\u0003\u0002", + "\u0002\u0002\u0312\u02ee\u0003\u0002\u0002\u0002\u0312\u02f1\u0003\u0002", + "\u0002\u0002\u0312\u02f3\u0003\u0002\u0002\u0002\u0312\u02fe\u0003\u0002", + "\u0002\u0002\u0312\u0309\u0003\u0002\u0002\u0002\u0312\u030e\u0003\u0002", + "\u0002\u0002\u0313\u031e\u0003\u0002\u0002\u0002\u0314\u0315\f\u0004", + "\u0002\u0002\u0315\u0316\u0005\u0080A\u0002\u0316\u0317\u0005z>\u0005", + "\u0317\u031d\u0003\u0002\u0002\u0002\u0318\u0319\f\u0003\u0002\u0002", + "\u0319\u031a\u0005\u0082B\u0002\u031a\u031b\u0005z>\u0004\u031b\u031d", + "\u0003\u0002\u0002\u0002\u031c\u0314\u0003\u0002\u0002\u0002\u031c\u0318", + "\u0003\u0002\u0002\u0002\u031d\u0320\u0003\u0002\u0002\u0002\u031e\u031c", + "\u0003\u0002\u0002\u0002\u031e\u031f\u0003\u0002\u0002\u0002\u031f{", + "\u0003\u0002\u0002\u0002\u0320\u031e\u0003\u0002\u0002\u0002\u0321\u0328", + "\u0007\u001a\u0002\u0002\u0322\u0323\u0007\t\u0002\u0002\u0323\u0328", + "\u0007\t\u0002\u0002\u0324\u0328\u0007\u0019\u0002\u0002\u0325\u0326", + "\u0007\n\u0002\u0002\u0326\u0328\u0007\n\u0002\u0002\u0327\u0321\u0003", + "\u0002\u0002\u0002\u0327\u0322\u0003\u0002\u0002\u0002\u0327\u0324\u0003", + "\u0002\u0002\u0002\u0327\u0325\u0003\u0002\u0002\u0002\u0328}\u0003", + "\u0002\u0002\u0002\u0329\u0338\u0007\u000b\u0002\u0002\u032a\u0338\u0007", + "\f\u0002\u0002\u032b\u0338\u0007\r\u0002\u0002\u032c\u032d\u0007\r\u0002", + "\u0002\u032d\u0338\u0007\u000b\u0002\u0002\u032e\u032f\u0007\f\u0002", + "\u0002\u032f\u0338\u0007\u000b\u0002\u0002\u0330\u0331\u0007\r\u0002", + "\u0002\u0331\u0338\u0007\f\u0002\u0002\u0332\u0333\u0007\u0006\u0002", + "\u0002\u0333\u0338\u0007\u000b\u0002\u0002\u0334\u0335\u0007\r\u0002", + "\u0002\u0335\u0336\u0007\u000b\u0002\u0002\u0336\u0338\u0007\f\u0002", + "\u0002\u0337\u0329\u0003\u0002\u0002\u0002\u0337\u032a\u0003\u0002\u0002", + "\u0002\u0337\u032b\u0003\u0002\u0002\u0002\u0337\u032c\u0003\u0002\u0002", + "\u0002\u0337\u032e\u0003\u0002\u0002\u0002\u0337\u0330\u0003\u0002\u0002", + "\u0002\u0337\u0332\u0003\u0002\u0002\u0002\u0337\u0334\u0003\u0002\u0002", + "\u0002\u0338\u007f\u0003\u0002\u0002\u0002\u0339\u033a\u0007\r\u0002", + "\u0002\u033a\u0341\u0007\r\u0002\u0002\u033b\u033c\u0007\f\u0002\u0002", + "\u033c\u0341\u0007\f\u0002\u0002\u033d\u0341\u0007\t\u0002\u0002\u033e", + "\u0341\u0007\u000e\u0002\u0002\u033f\u0341\u0007\n\u0002\u0002\u0340", + "\u0339\u0003\u0002\u0002\u0002\u0340\u033b\u0003\u0002\u0002\u0002\u0340", + "\u033d\u0003\u0002\u0002\u0002\u0340\u033e\u0003\u0002\u0002\u0002\u0340", + "\u033f\u0003\u0002\u0002\u0002\u0341\u0081\u0003\u0002\u0002\u0002\u0342", + "\u0343\t\u000b\u0002\u0002\u0343\u0083\u0003\u0002\u0002\u0002\u0344", + "\u0345\t\f\u0002\u0002\u0345\u0085\u0003\u0002\u0002\u0002\u0346\u0347", + "\u0005j6\u0002\u0347\u0087\u0003\u0002\u0002\u0002\u0348\u0354\u0005", + "\u008aF\u0002\u0349\u0354\u0005\u008cG\u0002\u034a\u034b\u0007\u0012", + "\u0002\u0002\u034b\u0354\u0005\u008cG\u0002\u034c\u0354\u0005\u008e", + "H\u0002\u034d\u0354\u0007\u0137\u0002\u0002\u034e\u0354\u0007\u0138", + "\u0002\u0002\u034f\u0351\u0007\u001c\u0002\u0002\u0350\u034f\u0003\u0002", + "\u0002\u0002\u0350\u0351\u0003\u0002\u0002\u0002\u0351\u0352\u0003\u0002", + "\u0002\u0002\u0352\u0354\u0007\u011e\u0002\u0002\u0353\u0348\u0003\u0002", + "\u0002\u0002\u0353\u0349\u0003\u0002\u0002\u0002\u0353\u034a\u0003\u0002", + "\u0002\u0002\u0353\u034c\u0003\u0002\u0002\u0002\u0353\u034d\u0003\u0002", + "\u0002\u0002\u0353\u034e\u0003\u0002\u0002\u0002\u0353\u0350\u0003\u0002", + "\u0002\u0002\u0354\u0089\u0003\u0002\u0002\u0002\u0355\u0356\u0007\u0135", + "\u0002\u0002\u0356\u008b\u0003\u0002\u0002\u0002\u0357\u0358\t\r\u0002", + "\u0002\u0358\u008d\u0003\u0002\u0002\u0002\u0359\u035a\t\t\u0002\u0002", + "\u035a\u008f\u0003\u0002\u0002\u0002_\u009a\u009c\u00a1\u00b0\u00b4", + "\u00bf\u00c4\u00d8\u00e0\u00e7\u00eb\u00f8\u0105\u0114\u011b\u011f\u0123", + "\u0127\u012f\u0133\u013a\u013d\u0140\u0143\u0145\u0149\u014d\u0155\u0158", + "\u015e\u0167\u016c\u0170\u0173\u0179\u0181\u0186\u0189\u018e\u0192\u0197", + "\u019a\u01a3\u01a8\u01aa\u01af\u01b3\u01bf\u01ca\u01d7\u01dc\u01e9\u01f5", + "\u0201\u020e\u0213\u0217\u021f\u0222\u0226\u0229\u022f\u0238\u0241\u024d", + "\u0251\u025a\u0265\u026e\u0277\u027e\u0285\u028f\u02a4\u02ad\u02b2\u02ba", + "\u02c6\u02cf\u02d5\u02db\u02e6\u02e8\u02f9\u0305\u0312\u031c\u031e\u0327", + "\u0337\u0340\u0350\u0353"].join(""); var atn = new antlr4.atn.ATNDeserializer().deserialize(serializedATN); @@ -215,7 +582,7 @@ var decisionsToDFA = atn.decisionToState.map( function(ds, index) { return new a var sharedContextCache = new antlr4.PredictionContextCache(); -var literalNames = [ null, "','", null, null, null, "'SELECT'", "'FROM'", +var literalNames = [ null, "'.'", "'*'", "','", "'!'", "'SELECT'", "'FROM'", "'ADD'", "'AS'", "'ALL'", "'ANY'", "'DISTINCT'", "'WHERE'", "'GROUP'", "'BY'", "'GROUPING'", "'SETS'", "'CUBE'", "'ROLLUP'", "'ORDER'", "'HAVING'", "'LIMIT'", "'AT'", @@ -275,43 +642,41 @@ var literalNames = [ null, "','", null, null, null, "'SELECT'", "'FROM'", "'BINARY'", "'VARBINARY'", "'BYTES'", "'DECIMAL'", "'TINYINT'", "'SMALLINT'", "'INT'", "'BIGINT'", "'FLOAT'", "'DOUBLE'", "'DATE'", "'TIME'", "'TIMESTAMP'", "'MULTISET'", - "'BOOLEAN'", "'RAW'", "'ROW'", "'NULL'", "'='", "'>'", - "'<'", "'!'", "'~'", "'|'", "'&'", "'^'", "'.'", "'('", - "')'", null, "';'", "'@'", "'0'", "'1'", "'2'", "'''", - "'\"'", "'`'", "':'" ]; + "'BOOLEAN'", "'RAW'", "'ROW'", "'NULL'", null, null, + null, null, null, null, null, null, null, null, null, + null, "';'", "'@'", "'0'", "'1'", "'2'", "'''", "'\"'", + "'`'", "':'" ]; -var symbolicNames = [ null, null, "SPEC_MYSQL_COMMENT", "COMMENT_INPUT", - "LINE_COMMENT", "SELECT", "FROM", "ADD", "AS", "ALL", - "ANY", "DISTINCT", "WHERE", "GROUP", "BY", "GROUPING", - "SETS", "CUBE", "ROLLUP", "ORDER", "HAVING", "LIMIT", - "AT", "OR", "AND", "IN", "NOT", "NO", "EXISTS", "BETWEEN", - "LIKE", "RLIKE", "IS", "TRUE", "FALSE", "NULLS", "ASC", - "DESC", "FOR", "INTERVAL", "CASE", "WHEN", "THEN", - "ELSE", "END", "JOIN", "CROSS", "OUTER", "INNER", - "LEFT", "SEMI", "RIGHT", "FULL", "NATURAL", "ON", - "PIVOT", "LATERAL", "WINDOW", "OVER", "PARTITION", - "RANGE", "ROWS", "UNBOUNDED", "PRECEDING", "FOLLOWING", - "CURRENT", "FIRST", "AFTER", "LAST", "WITH", "VALUES", - "CREATE", "TABLE", "DIRECTORY", "VIEW", "REPLACE", - "INSERT", "DELETE", "INTO", "DESCRIBE", "EXPLAIN", - "FORMAT", "LOGICAL", "CODEGEN", "COST", "CAST", "SHOW", - "TABLES", "COLUMNS", "COLUMN", "USE", "PARTITIONS", - "FUNCTIONS", "DROP", "UNION", "EXCEPT", "SETMINUS", - "INTERSECT", "TO", "TABLESAMPLE", "STRATIFY", "ALTER", - "RENAME", "STRUCT", "COMMENT", "SET", "RESET", "DATA", - "START", "TRANSACTION", "COMMIT", "ROLLBACK", "MACRO", - "IGNORE", "BOTH", "LEADING", "TRAILING", "IF", "POSITION", - "EXTRACT", "EQ", "NSEQ", "NEQ", "NEQJ", "LT", "LTE", - "GT", "GTE", "PLUS", "MINUS", "ASTERISK", "SLASH", - "PERCENT", "DIV", "TILDE", "AMPERSAND", "PIPE", "CONCAT_PIPE", - "HAT", "PERCENTLIT", "BUCKET", "OUT", "OF", "SORT", - "CLUSTER", "DISTRIBUTE", "OVERWRITE", "TRANSFORM", - "REDUCE", "USING", "SERDE", "SERDEPROPERTIES", "RECORDREADER", - "RECORDWRITER", "DELIMITED", "FIELDS", "TERMINATED", - "COLLECTION", "ITEMS", "KEYS", "ESCAPED", "LINES", - "SEPARATED", "FUNCTION", "EXTENDED", "REFRESH", "CLEAR", - "CACHE", "UNCACHE", "LAZY", "FORMATTED", "GLOBAL", - "TEMPORARY", "OPTIONS", "UNSET", "TBLPROPERTIES", +var symbolicNames = [ null, null, null, null, null, null, null, null, null, + null, null, null, null, null, null, null, null, null, + null, "ORDER", "HAVING", "LIMIT", "AT", "OR", "AND", + "IN", "NOT", "NO", "EXISTS", "BETWEEN", "LIKE", "RLIKE", + "IS", "TRUE", "FALSE", "NULLS", "ASC", "DESC", "FOR", + "INTERVAL", "CASE", "WHEN", "THEN", "ELSE", "END", + "JOIN", "CROSS", "OUTER", "INNER", "LEFT", "SEMI", + "RIGHT", "FULL", "NATURAL", "ON", "PIVOT", "LATERAL", + "WINDOW", "OVER", "PARTITION", "RANGE", "ROWS", "UNBOUNDED", + "PRECEDING", "FOLLOWING", "CURRENT", "FIRST", "AFTER", + "LAST", "WITH", "VALUES", "CREATE", "TABLE", "DIRECTORY", + "VIEW", "REPLACE", "INSERT", "DELETE", "INTO", "DESCRIBE", + "EXPLAIN", "FORMAT", "LOGICAL", "CODEGEN", "COST", + "CAST", "SHOW", "TABLES", "COLUMNS", "COLUMN", "USE", + "PARTITIONS", "FUNCTIONS", "DROP", "UNION", "EXCEPT", + "SETMINUS", "INTERSECT", "TO", "TABLESAMPLE", "STRATIFY", + "ALTER", "RENAME", "STRUCT", "COMMENT", "SET", "RESET", + "DATA", "START", "TRANSACTION", "COMMIT", "ROLLBACK", + "MACRO", "IGNORE", "BOTH", "LEADING", "TRAILING", + "IF", "POSITION", "EXTRACT", "EQ", "NSEQ", "NEQ", + "NEQJ", "LT", "LTE", "GT", "GTE", "PLUS", "MINUS", + "ASTERISK", "SLASH", "PERCENT", "DIV", "TILDE", "AMPERSAND", + "PIPE", "CONCAT_PIPE", "HAT", "PERCENTLIT", "BUCKET", + "OUT", "OF", "SORT", "CLUSTER", "DISTRIBUTE", "OVERWRITE", + "TRANSFORM", "REDUCE", "USING", "SERDE", "SERDEPROPERTIES", + "RECORDREADER", "RECORDWRITER", "DELIMITED", "FIELDS", + "TERMINATED", "COLLECTION", "ITEMS", "KEYS", "ESCAPED", + "LINES", "SEPARATED", "FUNCTION", "EXTENDED", "REFRESH", + "CLEAR", "CACHE", "UNCACHE", "LAZY", "FORMATTED", + "GLOBAL", "TEMPORARY", "OPTIONS", "UNSET", "TBLPROPERTIES", "DBPROPERTIES", "BUCKETS", "SKEWED", "STORED", "DIRECTORIES", "LOCATION", "EXCHANGE", "ARCHIVE", "UNARCHIVE", "FILEFORMAT", "TOUCH", "COMPACT", "CONCATENATE", "CHANGE", "CASCADE", @@ -339,7 +704,9 @@ var symbolicNames = [ null, null, "SPEC_MYSQL_COMMENT", "COMMENT_INPUT", "BIT_OR_OP", "BIT_AND_OP", "BIT_XOR_OP", "DOT", "LR_BRACKET", "RR_BRACKET", "COMMA", "SEMICOLON", "AT_SIGN", "ZERO_DECIMAL", "ONE_DECIMAL", "TWO_DECIMAL", "SINGLE_QUOTE_SYMB", - "DOUBLE_QUOTE_SYMB", "REVERSE_QUOTE_SYMB", "COLON_SYMB" ]; + "DOUBLE_QUOTE_SYMB", "REVERSE_QUOTE_SYMB", "COLON_SYMB", + "ASTERISK_SIGN", "STRING_LITERAL", "DECIMAL_LITERAL", + "REAL_LITERAL", "BIT_STRING", "DEC_DIGIT" ]; var ruleNames = [ "program", "statement", "sqlStatements", "sqlStatement", "emptyStatement", "ddlStatement", "dmlStatement", "createTable", @@ -348,10 +715,20 @@ var ruleNames = [ "program", "statement", "sqlStatements", "sqlStatement", "createDatabase", "createView", "createFunction", "alterTable", "renameDefinition", "setKeyValueDefinition", "alterDatabase", "alterFunction", "dropTable", "dropDatabase", "dropView", - "dropFunction", "selectStatement", "insertStatement", + "dropFunction", "queryStatement", "selectStatements", + "selectStatement", "projectItemDefinition", "tableExpression", + "tableReference", "matchRecognize", "tablePrimary", "dynamicTableOptions", + "joinCondition", "booleanExpression", "groupItemDefinition", + "selectWithoutFromDefinition", "projectItem", "queryOrderByDefinition", + "orderItemDefition", "queryLimitDefinition", "countDefinition", + "queryOffsetDefinition", "queryFetchDefinition", "insertStatement", "insertPartitionDefinition", "valuesDefinition", "valuesRowDefinition", - "uidList", "uid", "withOption", "ifNotExists", "ifExists", - "keyValueDefinition" ]; + "allValueDifinition", "uidList", "uid", "withOption", + "ifNotExists", "ifExists", "keyValueDefinition", "expressions", + "expression", "predicate", "expressionAtom", "logicalOperator", + "comparisonOperator", "bitOperator", "mathOperator", + "unaryOperator", "fullColumnName", "constant", "stringLiteral", + "decimalLiteral", "booleanLiteral" ]; function FlinkSqlParserParser (input) { antlr4.Parser.call(this, input); @@ -373,6 +750,23 @@ Object.defineProperty(FlinkSqlParserParser.prototype, "atn", { FlinkSqlParserParser.EOF = antlr4.Token.EOF; FlinkSqlParserParser.T__0 = 1; +FlinkSqlParserParser.T__1 = 2; +FlinkSqlParserParser.T__2 = 3; +FlinkSqlParserParser.T__3 = 4; +FlinkSqlParserParser.T__4 = 5; +FlinkSqlParserParser.T__5 = 6; +FlinkSqlParserParser.T__6 = 7; +FlinkSqlParserParser.T__7 = 8; +FlinkSqlParserParser.T__8 = 9; +FlinkSqlParserParser.T__9 = 10; +FlinkSqlParserParser.T__10 = 11; +FlinkSqlParserParser.T__11 = 12; +FlinkSqlParserParser.T__12 = 13; +FlinkSqlParserParser.T__13 = 14; +FlinkSqlParserParser.T__14 = 15; +FlinkSqlParserParser.T__15 = 16; +FlinkSqlParserParser.T__16 = 17; +FlinkSqlParserParser.T__17 = 18; FlinkSqlParserParser.SPACE = 1; FlinkSqlParserParser.SPEC_MYSQL_COMMENT = 2; FlinkSqlParserParser.COMMENT_INPUT = 3; @@ -678,6 +1072,12 @@ FlinkSqlParserParser.SINGLE_QUOTE_SYMB = 302; FlinkSqlParserParser.DOUBLE_QUOTE_SYMB = 303; FlinkSqlParserParser.REVERSE_QUOTE_SYMB = 304; FlinkSqlParserParser.COLON_SYMB = 305; +FlinkSqlParserParser.ASTERISK_SIGN = 306; +FlinkSqlParserParser.STRING_LITERAL = 307; +FlinkSqlParserParser.DECIMAL_LITERAL = 308; +FlinkSqlParserParser.REAL_LITERAL = 309; +FlinkSqlParserParser.BIT_STRING = 310; +FlinkSqlParserParser.DEC_DIGIT = 311; FlinkSqlParserParser.RULE_program = 0; FlinkSqlParserParser.RULE_statement = 1; @@ -705,17 +1105,51 @@ FlinkSqlParserParser.RULE_dropTable = 22; FlinkSqlParserParser.RULE_dropDatabase = 23; FlinkSqlParserParser.RULE_dropView = 24; FlinkSqlParserParser.RULE_dropFunction = 25; -FlinkSqlParserParser.RULE_selectStatement = 26; -FlinkSqlParserParser.RULE_insertStatement = 27; -FlinkSqlParserParser.RULE_insertPartitionDefinition = 28; -FlinkSqlParserParser.RULE_valuesDefinition = 29; -FlinkSqlParserParser.RULE_valuesRowDefinition = 30; -FlinkSqlParserParser.RULE_uidList = 31; -FlinkSqlParserParser.RULE_uid = 32; -FlinkSqlParserParser.RULE_withOption = 33; -FlinkSqlParserParser.RULE_ifNotExists = 34; -FlinkSqlParserParser.RULE_ifExists = 35; -FlinkSqlParserParser.RULE_keyValueDefinition = 36; +FlinkSqlParserParser.RULE_queryStatement = 26; +FlinkSqlParserParser.RULE_selectStatements = 27; +FlinkSqlParserParser.RULE_selectStatement = 28; +FlinkSqlParserParser.RULE_projectItemDefinition = 29; +FlinkSqlParserParser.RULE_tableExpression = 30; +FlinkSqlParserParser.RULE_tableReference = 31; +FlinkSqlParserParser.RULE_matchRecognize = 32; +FlinkSqlParserParser.RULE_tablePrimary = 33; +FlinkSqlParserParser.RULE_dynamicTableOptions = 34; +FlinkSqlParserParser.RULE_joinCondition = 35; +FlinkSqlParserParser.RULE_booleanExpression = 36; +FlinkSqlParserParser.RULE_groupItemDefinition = 37; +FlinkSqlParserParser.RULE_selectWithoutFromDefinition = 38; +FlinkSqlParserParser.RULE_projectItem = 39; +FlinkSqlParserParser.RULE_queryOrderByDefinition = 40; +FlinkSqlParserParser.RULE_orderItemDefition = 41; +FlinkSqlParserParser.RULE_queryLimitDefinition = 42; +FlinkSqlParserParser.RULE_countDefinition = 43; +FlinkSqlParserParser.RULE_queryOffsetDefinition = 44; +FlinkSqlParserParser.RULE_queryFetchDefinition = 45; +FlinkSqlParserParser.RULE_insertStatement = 46; +FlinkSqlParserParser.RULE_insertPartitionDefinition = 47; +FlinkSqlParserParser.RULE_valuesDefinition = 48; +FlinkSqlParserParser.RULE_valuesRowDefinition = 49; +FlinkSqlParserParser.RULE_allValueDifinition = 50; +FlinkSqlParserParser.RULE_uidList = 51; +FlinkSqlParserParser.RULE_uid = 52; +FlinkSqlParserParser.RULE_withOption = 53; +FlinkSqlParserParser.RULE_ifNotExists = 54; +FlinkSqlParserParser.RULE_ifExists = 55; +FlinkSqlParserParser.RULE_keyValueDefinition = 56; +FlinkSqlParserParser.RULE_expressions = 57; +FlinkSqlParserParser.RULE_expression = 58; +FlinkSqlParserParser.RULE_predicate = 59; +FlinkSqlParserParser.RULE_expressionAtom = 60; +FlinkSqlParserParser.RULE_logicalOperator = 61; +FlinkSqlParserParser.RULE_comparisonOperator = 62; +FlinkSqlParserParser.RULE_bitOperator = 63; +FlinkSqlParserParser.RULE_mathOperator = 64; +FlinkSqlParserParser.RULE_unaryOperator = 65; +FlinkSqlParserParser.RULE_fullColumnName = 66; +FlinkSqlParserParser.RULE_constant = 67; +FlinkSqlParserParser.RULE_stringLiteral = 68; +FlinkSqlParserParser.RULE_decimalLiteral = 69; +FlinkSqlParserParser.RULE_booleanLiteral = 70; function ProgramContext(parser, parent, invokingState) { @@ -773,9 +1207,9 @@ FlinkSqlParserParser.prototype.program = function() { this.enterRule(localctx, 0, FlinkSqlParserParser.RULE_program); try { this.enterOuterAlt(localctx, 1); - this.state = 74; + this.state = 142; this.statement(); - this.state = 75; + this.state = 143; this.match(FlinkSqlParserParser.EOF); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -847,9 +1281,9 @@ FlinkSqlParserParser.prototype.statement = function() { this.enterRule(localctx, 2, FlinkSqlParserParser.RULE_statement); try { this.enterOuterAlt(localctx, 1); - this.state = 77; + this.state = 145; this.sqlStatements(); - this.state = 78; + this.state = 146; this.match(FlinkSqlParserParser.EOF); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -948,28 +1382,28 @@ FlinkSqlParserParser.prototype.sqlStatements = function() { var _la = 0; // Token type try { this.enterOuterAlt(localctx, 1); - this.state = 86; + this.state = 154; this._errHandler.sync(this); _la = this._input.LA(1); - while(((((_la - 71)) & ~0x1f) == 0 && ((1 << (_la - 71)) & ((1 << (FlinkSqlParserParser.CREATE - 71)) | (1 << (FlinkSqlParserParser.INSERT - 71)) | (1 << (FlinkSqlParserParser.DROP - 71)) | (1 << (FlinkSqlParserParser.ALTER - 71)))) !== 0) || _la===FlinkSqlParserParser.SEMICOLON) { - this.state = 84; + while(_la===FlinkSqlParserParser.T__4 || ((((_la - 70)) & ~0x1f) == 0 && ((1 << (_la - 70)) & ((1 << (FlinkSqlParserParser.VALUES - 70)) | (1 << (FlinkSqlParserParser.CREATE - 70)) | (1 << (FlinkSqlParserParser.INSERT - 70)) | (1 << (FlinkSqlParserParser.DROP - 70)) | (1 << (FlinkSqlParserParser.ALTER - 70)))) !== 0) || _la===FlinkSqlParserParser.SEMICOLON) { + this.state = 152; this._errHandler.sync(this); var la_ = this._interp.adaptivePredict(this._input,0,this._ctx); switch(la_) { case 1: - this.state = 80; + this.state = 148; this.sqlStatement(); - this.state = 81; + this.state = 149; this.match(FlinkSqlParserParser.SEMICOLON); break; case 2: - this.state = 83; + this.state = 151; this.emptyStatement(); break; } - this.state = 88; + this.state = 156; this._errHandler.sync(this); _la = this._input.LA(1); } @@ -1042,22 +1476,26 @@ FlinkSqlParserParser.prototype.sqlStatement = function() { var localctx = new SqlStatementContext(this, this._ctx, this.state); this.enterRule(localctx, 6, FlinkSqlParserParser.RULE_sqlStatement); try { - this.state = 91; + this.state = 159; this._errHandler.sync(this); - var la_ = this._interp.adaptivePredict(this._input,2,this._ctx); - switch(la_) { - case 1: + switch(this._input.LA(1)) { + case FlinkSqlParserParser.CREATE: + case FlinkSqlParserParser.DROP: + case FlinkSqlParserParser.ALTER: + case FlinkSqlParserParser.SEMICOLON: this.enterOuterAlt(localctx, 1); - this.state = 89; + this.state = 157; this.ddlStatement(); break; - - case 2: + case FlinkSqlParserParser.T__4: + case FlinkSqlParserParser.VALUES: + case FlinkSqlParserParser.INSERT: this.enterOuterAlt(localctx, 2); - this.state = 90; + this.state = 158; this.dmlStatement(); break; - + default: + throw new antlr4.error.NoViableAltException(this); } } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -1125,7 +1563,7 @@ FlinkSqlParserParser.prototype.emptyStatement = function() { this.enterRule(localctx, 8, FlinkSqlParserParser.RULE_emptyStatement); try { this.enterOuterAlt(localctx, 1); - this.state = 93; + this.state = 161; this.match(FlinkSqlParserParser.SEMICOLON); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -1232,73 +1670,73 @@ FlinkSqlParserParser.prototype.ddlStatement = function() { var localctx = new DdlStatementContext(this, this._ctx, this.state); this.enterRule(localctx, 10, FlinkSqlParserParser.RULE_ddlStatement); try { - this.state = 106; + this.state = 174; this._errHandler.sync(this); var la_ = this._interp.adaptivePredict(this._input,3,this._ctx); switch(la_) { case 1: this.enterOuterAlt(localctx, 1); - this.state = 95; + this.state = 163; this.createTable(); break; case 2: this.enterOuterAlt(localctx, 2); - this.state = 96; + this.state = 164; this.createDatabase(); break; case 3: this.enterOuterAlt(localctx, 3); - this.state = 97; + this.state = 165; this.createView(); break; case 4: this.enterOuterAlt(localctx, 4); - this.state = 98; + this.state = 166; this.createFunction(); break; case 5: this.enterOuterAlt(localctx, 5); - this.state = 99; + this.state = 167; this.alterTable(); break; case 6: this.enterOuterAlt(localctx, 6); - this.state = 100; + this.state = 168; this.alterDatabase(); break; case 7: this.enterOuterAlt(localctx, 7); - this.state = 101; + this.state = 169; this.alterFunction(); break; case 8: this.enterOuterAlt(localctx, 8); - this.state = 102; + this.state = 170; this.dropTable(); break; case 9: this.enterOuterAlt(localctx, 9); - this.state = 103; + this.state = 171; this.dropDatabase(); break; case 10: this.enterOuterAlt(localctx, 10); - this.state = 104; + this.state = 172; this.dropView(); break; case 11: this.enterOuterAlt(localctx, 11); - this.state = 105; + this.state = 173; this.dropFunction(); break; @@ -1334,8 +1772,8 @@ function DmlStatementContext(parser, parent, invokingState) { DmlStatementContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); DmlStatementContext.prototype.constructor = DmlStatementContext; -DmlStatementContext.prototype.selectStatement = function() { - return this.getTypedRuleContext(SelectStatementContext,0); +DmlStatementContext.prototype.queryStatement = function() { + return this.getTypedRuleContext(QueryStatementContext,0); }; DmlStatementContext.prototype.insertStatement = function() { @@ -1372,17 +1810,18 @@ FlinkSqlParserParser.prototype.dmlStatement = function() { var localctx = new DmlStatementContext(this, this._ctx, this.state); this.enterRule(localctx, 12, FlinkSqlParserParser.RULE_dmlStatement); try { - this.state = 110; + this.state = 178; this._errHandler.sync(this); switch(this._input.LA(1)) { - case FlinkSqlParserParser.SEMICOLON: + case FlinkSqlParserParser.T__4: + case FlinkSqlParserParser.VALUES: this.enterOuterAlt(localctx, 1); - this.state = 108; - this.selectStatement(); + this.state = 176; + this.queryStatement(); break; case FlinkSqlParserParser.INSERT: this.enterOuterAlt(localctx, 2); - this.state = 109; + this.state = 177; this.insertStatement(); break; default: @@ -1502,39 +1941,39 @@ FlinkSqlParserParser.prototype.createTable = function() { var _la = 0; // Token type try { this.enterOuterAlt(localctx, 1); - this.state = 112; + this.state = 180; this.match(FlinkSqlParserParser.CREATE); - this.state = 113; + this.state = 181; this.match(FlinkSqlParserParser.TABLE); - this.state = 114; + this.state = 182; this.uid(); - this.state = 115; + this.state = 183; this.match(FlinkSqlParserParser.LR_BRACKET); - this.state = 116; + this.state = 184; this.columnOptionDefinition(); - this.state = 121; + this.state = 189; this._errHandler.sync(this); _la = this._input.LA(1); while(_la===FlinkSqlParserParser.COMMA) { - this.state = 117; + this.state = 185; this.match(FlinkSqlParserParser.COMMA); - this.state = 118; + this.state = 186; this.columnOptionDefinition(); - this.state = 123; + this.state = 191; this._errHandler.sync(this); _la = this._input.LA(1); } - this.state = 124; + this.state = 192; this.match(FlinkSqlParserParser.RR_BRACKET); - this.state = 126; + this.state = 194; this._errHandler.sync(this); _la = this._input.LA(1); if(_la===FlinkSqlParserParser.PARTITIONED) { - this.state = 125; + this.state = 193; this.partitionDefinition(); } - this.state = 128; + this.state = 196; this.withOption(); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -1606,9 +2045,9 @@ FlinkSqlParserParser.prototype.columnOptionDefinition = function() { this.enterRule(localctx, 16, FlinkSqlParserParser.RULE_columnOptionDefinition); try { this.enterOuterAlt(localctx, 1); - this.state = 130; + this.state = 198; this.columnName(); - this.state = 131; + this.state = 199; this.columnType(); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -1676,7 +2115,7 @@ FlinkSqlParserParser.prototype.columnName = function() { this.enterRule(localctx, 18, FlinkSqlParserParser.RULE_columnName); try { this.enterOuterAlt(localctx, 1); - this.state = 133; + this.state = 201; this.match(FlinkSqlParserParser.ID); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -1833,7 +2272,7 @@ FlinkSqlParserParser.prototype.columnType = function() { var _la = 0; // Token type try { this.enterOuterAlt(localctx, 1); - this.state = 135; + this.state = 203; _la = this._input.LA(1); if(!(((((_la - 262)) & ~0x1f) == 0 && ((1 << (_la - 262)) & ((1 << (FlinkSqlParserParser.STRING - 262)) | (1 << (FlinkSqlParserParser.ARRAY - 262)) | (1 << (FlinkSqlParserParser.MAP - 262)) | (1 << (FlinkSqlParserParser.CHAR - 262)) | (1 << (FlinkSqlParserParser.VARCHAR - 262)) | (1 << (FlinkSqlParserParser.BINARY - 262)) | (1 << (FlinkSqlParserParser.VARBINARY - 262)) | (1 << (FlinkSqlParserParser.BYTES - 262)) | (1 << (FlinkSqlParserParser.DECIMAL - 262)) | (1 << (FlinkSqlParserParser.TINYINT - 262)) | (1 << (FlinkSqlParserParser.SMALLINT - 262)) | (1 << (FlinkSqlParserParser.INT - 262)) | (1 << (FlinkSqlParserParser.BIGINT - 262)) | (1 << (FlinkSqlParserParser.FLOAT - 262)) | (1 << (FlinkSqlParserParser.DOUBLE - 262)) | (1 << (FlinkSqlParserParser.DATE - 262)) | (1 << (FlinkSqlParserParser.TIME - 262)) | (1 << (FlinkSqlParserParser.TIMESTAMP - 262)) | (1 << (FlinkSqlParserParser.MULTISET - 262)) | (1 << (FlinkSqlParserParser.BOOLEAN - 262)) | (1 << (FlinkSqlParserParser.RAW - 262)) | (1 << (FlinkSqlParserParser.ROW - 262)) | (1 << (FlinkSqlParserParser.NULL - 262)))) !== 0))) { this._errHandler.recoverInline(this); @@ -1916,11 +2355,11 @@ FlinkSqlParserParser.prototype.partitionDefinition = function() { this.enterRule(localctx, 22, FlinkSqlParserParser.RULE_partitionDefinition); try { this.enterOuterAlt(localctx, 1); - this.state = 137; + this.state = 205; this.match(FlinkSqlParserParser.PARTITIONED); - this.state = 138; - this.match(FlinkSqlParserParser.BY); - this.state = 139; + this.state = 206; + this.match(FlinkSqlParserParser.T__13); + this.state = 207; this.partitionColumnDefinition(); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -2008,17 +2447,17 @@ FlinkSqlParserParser.prototype.partitionColumnDefinition = function() { var _la = 0; // Token type try { this.enterOuterAlt(localctx, 1); - this.state = 141; + this.state = 209; this.partitionColumnName(); - this.state = 146; + this.state = 214; this._errHandler.sync(this); _la = this._input.LA(1); while(_la===FlinkSqlParserParser.COMMA) { - this.state = 142; + this.state = 210; this.match(FlinkSqlParserParser.COMMA); - this.state = 143; + this.state = 211; this.partitionColumnName(); - this.state = 148; + this.state = 216; this._errHandler.sync(this); _la = this._input.LA(1); } @@ -2088,7 +2527,7 @@ FlinkSqlParserParser.prototype.partitionColumnName = function() { this.enterRule(localctx, 26, FlinkSqlParserParser.RULE_partitionColumnName); try { this.enterOuterAlt(localctx, 1); - this.state = 149; + this.state = 217; this.match(FlinkSqlParserParser.ID); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -2173,21 +2612,21 @@ FlinkSqlParserParser.prototype.createDatabase = function() { var _la = 0; // Token type try { this.enterOuterAlt(localctx, 1); - this.state = 151; + this.state = 219; this.match(FlinkSqlParserParser.CREATE); - this.state = 152; + this.state = 220; this.match(FlinkSqlParserParser.DATABASE); - this.state = 154; + this.state = 222; this._errHandler.sync(this); _la = this._input.LA(1); if(_la===FlinkSqlParserParser.IF) { - this.state = 153; + this.state = 221; this.ifNotExists(); } - this.state = 156; + this.state = 224; this.uid(); - this.state = 157; + this.state = 225; this.withOption(); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -2280,31 +2719,31 @@ FlinkSqlParserParser.prototype.createView = function() { var _la = 0; // Token type try { this.enterOuterAlt(localctx, 1); - this.state = 159; + this.state = 227; this.match(FlinkSqlParserParser.CREATE); - this.state = 161; + this.state = 229; this._errHandler.sync(this); _la = this._input.LA(1); if(_la===FlinkSqlParserParser.TEMPORARY) { - this.state = 160; + this.state = 228; this.match(FlinkSqlParserParser.TEMPORARY); } - this.state = 163; + this.state = 231; this.match(FlinkSqlParserParser.VIEW); - this.state = 165; + this.state = 233; this._errHandler.sync(this); _la = this._input.LA(1); if(_la===FlinkSqlParserParser.IF) { - this.state = 164; + this.state = 232; this.ifNotExists(); } - this.state = 167; + this.state = 235; this.uid(); - this.state = 168; - this.match(FlinkSqlParserParser.AS); - this.state = 169; + this.state = 236; + this.match(FlinkSqlParserParser.T__7); + this.state = 237; this.selectStatement(); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -2452,21 +2891,21 @@ FlinkSqlParserParser.prototype.alterTable = function() { this.enterRule(localctx, 34, FlinkSqlParserParser.RULE_alterTable); try { this.enterOuterAlt(localctx, 1); - this.state = 173; + this.state = 241; this.match(FlinkSqlParserParser.ALTER); - this.state = 174; + this.state = 242; this.match(FlinkSqlParserParser.TABLE); - this.state = 175; + this.state = 243; this.uid(); - this.state = 178; + this.state = 246; this._errHandler.sync(this); switch(this._input.LA(1)) { case FlinkSqlParserParser.RENAME: - this.state = 176; + this.state = 244; this.renameDefinition(); break; case FlinkSqlParserParser.SET: - this.state = 177; + this.state = 245; this.setKeyValueDefinition(); break; default: @@ -2546,11 +2985,11 @@ FlinkSqlParserParser.prototype.renameDefinition = function() { this.enterRule(localctx, 36, FlinkSqlParserParser.RULE_renameDefinition); try { this.enterOuterAlt(localctx, 1); - this.state = 180; + this.state = 248; this.match(FlinkSqlParserParser.RENAME); - this.state = 181; + this.state = 249; this.match(FlinkSqlParserParser.TO); - this.state = 182; + this.state = 250; this.uid(); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -2650,25 +3089,25 @@ FlinkSqlParserParser.prototype.setKeyValueDefinition = function() { var _la = 0; // Token type try { this.enterOuterAlt(localctx, 1); - this.state = 184; + this.state = 252; this.match(FlinkSqlParserParser.SET); - this.state = 185; + this.state = 253; this.match(FlinkSqlParserParser.LR_BRACKET); - this.state = 186; + this.state = 254; this.keyValueDefinition(); - this.state = 191; + this.state = 259; this._errHandler.sync(this); _la = this._input.LA(1); while(_la===FlinkSqlParserParser.COMMA) { - this.state = 187; + this.state = 255; this.match(FlinkSqlParserParser.COMMA); - this.state = 188; + this.state = 256; this.keyValueDefinition(); - this.state = 193; + this.state = 261; this._errHandler.sync(this); _la = this._input.LA(1); } - this.state = 194; + this.state = 262; this.match(FlinkSqlParserParser.RR_BRACKET); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -2748,13 +3187,13 @@ FlinkSqlParserParser.prototype.alterDatabase = function() { this.enterRule(localctx, 40, FlinkSqlParserParser.RULE_alterDatabase); try { this.enterOuterAlt(localctx, 1); - this.state = 196; + this.state = 264; this.match(FlinkSqlParserParser.ALTER); - this.state = 197; + this.state = 265; this.match(FlinkSqlParserParser.DATABASE); - this.state = 198; + this.state = 266; this.uid(); - this.state = 199; + this.state = 267; this.setKeyValueDefinition(); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -2899,19 +3338,19 @@ FlinkSqlParserParser.prototype.dropTable = function() { var _la = 0; // Token type try { this.enterOuterAlt(localctx, 1); - this.state = 203; + this.state = 271; this.match(FlinkSqlParserParser.DROP); - this.state = 204; + this.state = 272; this.match(FlinkSqlParserParser.TABLE); - this.state = 206; + this.state = 274; this._errHandler.sync(this); _la = this._input.LA(1); if(_la===FlinkSqlParserParser.IF) { - this.state = 205; + this.state = 273; this.ifExists(); } - this.state = 208; + this.state = 276; this.uid(); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -3001,25 +3440,25 @@ FlinkSqlParserParser.prototype.dropDatabase = function() { var _la = 0; // Token type try { this.enterOuterAlt(localctx, 1); - this.state = 210; + this.state = 278; this.match(FlinkSqlParserParser.DROP); - this.state = 211; + this.state = 279; this.match(FlinkSqlParserParser.DATABASE); - this.state = 213; + this.state = 281; this._errHandler.sync(this); _la = this._input.LA(1); if(_la===FlinkSqlParserParser.IF) { - this.state = 212; + this.state = 280; this.ifExists(); } - this.state = 215; + this.state = 283; this.uid(); - this.state = 217; + this.state = 285; this._errHandler.sync(this); _la = this._input.LA(1); if(_la===FlinkSqlParserParser.CASCADE || _la===FlinkSqlParserParser.RESTRICT) { - this.state = 216; + this.state = 284; localctx.dropType = this._input.LT(1); _la = this._input.LA(1); if(!(_la===FlinkSqlParserParser.CASCADE || _la===FlinkSqlParserParser.RESTRICT)) { @@ -3114,27 +3553,27 @@ FlinkSqlParserParser.prototype.dropView = function() { var _la = 0; // Token type try { this.enterOuterAlt(localctx, 1); - this.state = 219; + this.state = 287; this.match(FlinkSqlParserParser.DROP); - this.state = 221; + this.state = 289; this._errHandler.sync(this); _la = this._input.LA(1); if(_la===FlinkSqlParserParser.TEMPORARY) { - this.state = 220; + this.state = 288; this.match(FlinkSqlParserParser.TEMPORARY); } - this.state = 223; + this.state = 291; this.match(FlinkSqlParserParser.VIEW); - this.state = 225; + this.state = 293; this._errHandler.sync(this); _la = this._input.LA(1); if(_la===FlinkSqlParserParser.IF) { - this.state = 224; + this.state = 292; this.ifExists(); } - this.state = 227; + this.state = 295; this.uid(); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -3223,33 +3662,33 @@ FlinkSqlParserParser.prototype.dropFunction = function() { var _la = 0; // Token type try { this.enterOuterAlt(localctx, 1); - this.state = 229; + this.state = 297; this.match(FlinkSqlParserParser.DROP); - this.state = 233; + this.state = 301; this._errHandler.sync(this); var la_ = this._interp.adaptivePredict(this._input,18,this._ctx); if(la_===1) { - this.state = 230; + this.state = 298; this.match(FlinkSqlParserParser.TEMPORARY); } else if(la_===2) { - this.state = 231; + this.state = 299; this.match(FlinkSqlParserParser.TEMPORARY); - this.state = 232; + this.state = 300; this.match(FlinkSqlParserParser.SYSTEM); } - this.state = 235; + this.state = 303; this.match(FlinkSqlParserParser.FUNCTION); - this.state = 237; + this.state = 305; this._errHandler.sync(this); _la = this._input.LA(1); if(_la===FlinkSqlParserParser.IF) { - this.state = 236; + this.state = 304; this.ifExists(); } - this.state = 239; + this.state = 307; this.uid(); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -3266,6 +3705,226 @@ FlinkSqlParserParser.prototype.dropFunction = function() { }; +function QueryStatementContext(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 = FlinkSqlParserParser.RULE_queryStatement; + return this; +} + +QueryStatementContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +QueryStatementContext.prototype.constructor = QueryStatementContext; + +QueryStatementContext.prototype.valuesDefinition = function() { + return this.getTypedRuleContext(ValuesDefinitionContext,0); +}; + +QueryStatementContext.prototype.selectStatements = function() { + return this.getTypedRuleContext(SelectStatementsContext,0); +}; + +QueryStatementContext.prototype.queryOrderByDefinition = function() { + return this.getTypedRuleContext(QueryOrderByDefinitionContext,0); +}; + +QueryStatementContext.prototype.queryLimitDefinition = function() { + return this.getTypedRuleContext(QueryLimitDefinitionContext,0); +}; + +QueryStatementContext.prototype.queryOffsetDefinition = function() { + return this.getTypedRuleContext(QueryOffsetDefinitionContext,0); +}; + +QueryStatementContext.prototype.queryFetchDefinition = function() { + return this.getTypedRuleContext(QueryFetchDefinitionContext,0); +}; + +QueryStatementContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterQueryStatement(this); + } +}; + +QueryStatementContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitQueryStatement(this); + } +}; + +QueryStatementContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitQueryStatement(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +FlinkSqlParserParser.QueryStatementContext = QueryStatementContext; + +FlinkSqlParserParser.prototype.queryStatement = function() { + + var localctx = new QueryStatementContext(this, this._ctx, this.state); + this.enterRule(localctx, 52, FlinkSqlParserParser.RULE_queryStatement); + var _la = 0; // Token type + try { + this.state = 323; + this._errHandler.sync(this); + switch(this._input.LA(1)) { + case FlinkSqlParserParser.VALUES: + this.enterOuterAlt(localctx, 1); + this.state = 309; + this.valuesDefinition(); + break; + case FlinkSqlParserParser.T__4: + this.enterOuterAlt(localctx, 2); + this.state = 310; + this.selectStatements(); + this.state = 312; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===FlinkSqlParserParser.ORDER) { + this.state = 311; + this.queryOrderByDefinition(); + } + + this.state = 315; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===FlinkSqlParserParser.LIMIT) { + this.state = 314; + this.queryLimitDefinition(); + } + + this.state = 318; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,22,this._ctx); + if(la_===1) { + this.state = 317; + this.queryOffsetDefinition(); + + } + this.state = 321; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,23,this._ctx); + if(la_===1) { + this.state = 320; + this.queryFetchDefinition(); + + } + break; + default: + throw new antlr4.error.NoViableAltException(this); + } + } 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 SelectStatementsContext(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 = FlinkSqlParserParser.RULE_selectStatements; + return this; +} + +SelectStatementsContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +SelectStatementsContext.prototype.constructor = SelectStatementsContext; + +SelectStatementsContext.prototype.selectStatement = function() { + return this.getTypedRuleContext(SelectStatementContext,0); +}; + +SelectStatementsContext.prototype.selectWithoutFromDefinition = function() { + return this.getTypedRuleContext(SelectWithoutFromDefinitionContext,0); +}; + +SelectStatementsContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterSelectStatements(this); + } +}; + +SelectStatementsContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitSelectStatements(this); + } +}; + +SelectStatementsContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitSelectStatements(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +FlinkSqlParserParser.SelectStatementsContext = SelectStatementsContext; + +FlinkSqlParserParser.prototype.selectStatements = function() { + + var localctx = new SelectStatementsContext(this, this._ctx, this.state); + this.enterRule(localctx, 54, FlinkSqlParserParser.RULE_selectStatements); + try { + this.state = 327; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,25,this._ctx); + switch(la_) { + case 1: + this.enterOuterAlt(localctx, 1); + this.state = 325; + this.selectStatement(); + break; + + case 2: + this.enterOuterAlt(localctx, 2); + this.state = 326; + this.selectWithoutFromDefinition(); + 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 SelectStatementContext(parser, parent, invokingState) { if(parent===undefined) { parent = null; @@ -3282,6 +3941,90 @@ function SelectStatementContext(parser, parent, invokingState) { SelectStatementContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); SelectStatementContext.prototype.constructor = SelectStatementContext; +SelectStatementContext.prototype.SELECT = function() { + return this.getToken(FlinkSqlParserParser.SELECT, 0); +}; + +SelectStatementContext.prototype.FROM = function() { + return this.getToken(FlinkSqlParserParser.FROM, 0); +}; + +SelectStatementContext.prototype.tableExpression = function() { + return this.getTypedRuleContext(TableExpressionContext,0); +}; + +SelectStatementContext.prototype.ASTERISK_SIGN = function() { + return this.getToken(FlinkSqlParserParser.ASTERISK_SIGN, 0); +}; + +SelectStatementContext.prototype.projectItemDefinition = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(ProjectItemDefinitionContext); + } else { + return this.getTypedRuleContext(ProjectItemDefinitionContext,i); + } +}; + +SelectStatementContext.prototype.GROUP = function() { + return this.getToken(FlinkSqlParserParser.GROUP, 0); +}; + +SelectStatementContext.prototype.BY = function() { + return this.getToken(FlinkSqlParserParser.BY, 0); +}; + +SelectStatementContext.prototype.groupItemDefinition = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(GroupItemDefinitionContext); + } else { + return this.getTypedRuleContext(GroupItemDefinitionContext,i); + } +}; + +SelectStatementContext.prototype.WHERE = function() { + return this.getToken(FlinkSqlParserParser.WHERE, 0); +}; + +SelectStatementContext.prototype.expression = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(ExpressionContext); + } else { + return this.getTypedRuleContext(ExpressionContext,i); + } +}; + +SelectStatementContext.prototype.HAVING = function() { + return this.getToken(FlinkSqlParserParser.HAVING, 0); +}; + +SelectStatementContext.prototype.ALL = function() { + return this.getToken(FlinkSqlParserParser.ALL, 0); +}; + +SelectStatementContext.prototype.DISTINCT = function() { + return this.getToken(FlinkSqlParserParser.DISTINCT, 0); +}; + +SelectStatementContext.prototype.COMMA = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTokens(FlinkSqlParserParser.COMMA); + } else { + return this.getToken(FlinkSqlParserParser.COMMA, i); + } +}; + SelectStatementContext.prototype.enterRule = function(listener) { if(listener instanceof FlinkSqlParserListener ) { @@ -3311,7 +4054,2098 @@ FlinkSqlParserParser.SelectStatementContext = SelectStatementContext; FlinkSqlParserParser.prototype.selectStatement = function() { var localctx = new SelectStatementContext(this, this._ctx, this.state); - this.enterRule(localctx, 52, FlinkSqlParserParser.RULE_selectStatement); + this.enterRule(localctx, 56, FlinkSqlParserParser.RULE_selectStatement); + var _la = 0; // Token type + try { + this.enterOuterAlt(localctx, 1); + this.state = 329; + this.match(FlinkSqlParserParser.T__4); + this.state = 331; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===FlinkSqlParserParser.T__8 || _la===FlinkSqlParserParser.T__10) { + this.state = 330; + _la = this._input.LA(1); + if(!(_la===FlinkSqlParserParser.T__8 || _la===FlinkSqlParserParser.T__10)) { + this._errHandler.recoverInline(this); + } + else { + this._errHandler.reportMatch(this); + this.consume(); + } + } + + this.state = 342; + this._errHandler.sync(this); + switch(this._input.LA(1)) { + case FlinkSqlParserParser.ASTERISK_SIGN: + this.state = 333; + this.match(FlinkSqlParserParser.ASTERISK_SIGN); + break; + case FlinkSqlParserParser.T__3: + case FlinkSqlParserParser.T__4: + case FlinkSqlParserParser.T__14: + case FlinkSqlParserParser.T__15: + case FlinkSqlParserParser.T__17: + case FlinkSqlParserParser.NOT: + case FlinkSqlParserParser.EXISTS: + case FlinkSqlParserParser.TRUE: + case FlinkSqlParserParser.FALSE: + case FlinkSqlParserParser.ID: + case FlinkSqlParserParser.BINARY: + case FlinkSqlParserParser.ROW: + case FlinkSqlParserParser.NULL: + case FlinkSqlParserParser.ZERO_DECIMAL: + case FlinkSqlParserParser.ONE_DECIMAL: + case FlinkSqlParserParser.TWO_DECIMAL: + case FlinkSqlParserParser.STRING_LITERAL: + case FlinkSqlParserParser.DECIMAL_LITERAL: + case FlinkSqlParserParser.REAL_LITERAL: + case FlinkSqlParserParser.BIT_STRING: + this.state = 334; + this.projectItemDefinition(); + this.state = 339; + this._errHandler.sync(this); + _la = this._input.LA(1); + while(_la===FlinkSqlParserParser.COMMA) { + this.state = 335; + this.match(FlinkSqlParserParser.COMMA); + this.state = 336; + this.projectItemDefinition(); + this.state = 341; + this._errHandler.sync(this); + _la = this._input.LA(1); + } + break; + default: + throw new antlr4.error.NoViableAltException(this); + } + this.state = 344; + this.match(FlinkSqlParserParser.T__5); + this.state = 345; + this.tableExpression(0); + this.state = 348; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===FlinkSqlParserParser.T__11) { + this.state = 346; + this.match(FlinkSqlParserParser.T__11); + this.state = 347; + this.expression(0); + } + + this.state = 350; + this.match(FlinkSqlParserParser.T__12); + this.state = 351; + this.match(FlinkSqlParserParser.T__13); + this.state = 352; + this.groupItemDefinition(); + this.state = 357; + this._errHandler.sync(this); + _la = this._input.LA(1); + while(_la===FlinkSqlParserParser.COMMA) { + this.state = 353; + this.match(FlinkSqlParserParser.COMMA); + this.state = 354; + this.groupItemDefinition(); + this.state = 359; + this._errHandler.sync(this); + _la = this._input.LA(1); + } + this.state = 362; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===FlinkSqlParserParser.HAVING) { + this.state = 360; + this.match(FlinkSqlParserParser.HAVING); + this.state = 361; + this.expression(0); + } + + } 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 ProjectItemDefinitionContext(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 = FlinkSqlParserParser.RULE_projectItemDefinition; + return this; +} + +ProjectItemDefinitionContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +ProjectItemDefinitionContext.prototype.constructor = ProjectItemDefinitionContext; + +ProjectItemDefinitionContext.prototype.expression = function() { + return this.getTypedRuleContext(ExpressionContext,0); +}; + +ProjectItemDefinitionContext.prototype.uid = function() { + return this.getTypedRuleContext(UidContext,0); +}; + +ProjectItemDefinitionContext.prototype.AS = function() { + return this.getToken(FlinkSqlParserParser.AS, 0); +}; + +ProjectItemDefinitionContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterProjectItemDefinition(this); + } +}; + +ProjectItemDefinitionContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitProjectItemDefinition(this); + } +}; + +ProjectItemDefinitionContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitProjectItemDefinition(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +FlinkSqlParserParser.ProjectItemDefinitionContext = ProjectItemDefinitionContext; + +FlinkSqlParserParser.prototype.projectItemDefinition = function() { + + var localctx = new ProjectItemDefinitionContext(this, this._ctx, this.state); + this.enterRule(localctx, 58, FlinkSqlParserParser.RULE_projectItemDefinition); + var _la = 0; // Token type + try { + this.state = 375; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,34,this._ctx); + switch(la_) { + case 1: + this.enterOuterAlt(localctx, 1); + this.state = 364; + this.expression(0); + this.state = 369; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===FlinkSqlParserParser.T__7 || _la===FlinkSqlParserParser.ID) { + this.state = 366; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===FlinkSqlParserParser.T__7) { + this.state = 365; + this.match(FlinkSqlParserParser.T__7); + } + + this.state = 368; + this.uid(); + } + + break; + + case 2: + this.enterOuterAlt(localctx, 2); + this.state = 371; + this.uid(); + this.state = 372; + this.match(FlinkSqlParserParser.T__0); + this.state = 373; + this.match(FlinkSqlParserParser.T__1); + 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 TableExpressionContext(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 = FlinkSqlParserParser.RULE_tableExpression; + return this; +} + +TableExpressionContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +TableExpressionContext.prototype.constructor = TableExpressionContext; + +TableExpressionContext.prototype.tableReference = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(TableReferenceContext); + } else { + return this.getTypedRuleContext(TableReferenceContext,i); + } +}; + +TableExpressionContext.prototype.COMMA = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTokens(FlinkSqlParserParser.COMMA); + } else { + return this.getToken(FlinkSqlParserParser.COMMA, i); + } +}; + + +TableExpressionContext.prototype.tableExpression = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(TableExpressionContext); + } else { + return this.getTypedRuleContext(TableExpressionContext,i); + } +}; + +TableExpressionContext.prototype.JOIN = function() { + return this.getToken(FlinkSqlParserParser.JOIN, 0); +}; + +TableExpressionContext.prototype.NATURAL = function() { + return this.getToken(FlinkSqlParserParser.NATURAL, 0); +}; + +TableExpressionContext.prototype.joinCondition = function() { + return this.getTypedRuleContext(JoinConditionContext,0); +}; + +TableExpressionContext.prototype.LEFT = function() { + return this.getToken(FlinkSqlParserParser.LEFT, 0); +}; + +TableExpressionContext.prototype.RIGHT = function() { + return this.getToken(FlinkSqlParserParser.RIGHT, 0); +}; + +TableExpressionContext.prototype.FULL = function() { + return this.getToken(FlinkSqlParserParser.FULL, 0); +}; + +TableExpressionContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterTableExpression(this); + } +}; + +TableExpressionContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitTableExpression(this); + } +}; + +TableExpressionContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitTableExpression(this); + } else { + return visitor.visitChildren(this); + } +}; + + + +FlinkSqlParserParser.prototype.tableExpression = function(_p) { + if(_p===undefined) { + _p = 0; + } + var _parentctx = this._ctx; + var _parentState = this.state; + var localctx = new TableExpressionContext(this, this._ctx, _parentState); + var _prevctx = localctx; + var _startState = 60; + this.enterRecursionRule(localctx, 60, FlinkSqlParserParser.RULE_tableExpression, _p); + var _la = 0; // Token type + try { + this.enterOuterAlt(localctx, 1); + this.state = 378; + this.tableReference(); + this.state = 383; + this._errHandler.sync(this); + var _alt = this._interp.adaptivePredict(this._input,35,this._ctx) + while(_alt!=2 && _alt!=antlr4.atn.ATN.INVALID_ALT_NUMBER) { + if(_alt===1) { + this.state = 379; + this.match(FlinkSqlParserParser.COMMA); + this.state = 380; + this.tableReference(); + } + this.state = 385; + this._errHandler.sync(this); + _alt = this._interp.adaptivePredict(this._input,35,this._ctx); + } + + this._ctx.stop = this._input.LT(-1); + this.state = 400; + this._errHandler.sync(this); + var _alt = this._interp.adaptivePredict(this._input,39,this._ctx) + while(_alt!=2 && _alt!=antlr4.atn.ATN.INVALID_ALT_NUMBER) { + if(_alt===1) { + if(this._parseListeners!==null) { + this.triggerExitRuleEvent(); + } + _prevctx = localctx; + localctx = new TableExpressionContext(this, _parentctx, _parentState); + this.pushNewRecursionContext(localctx, _startState, FlinkSqlParserParser.RULE_tableExpression); + this.state = 386; + if (!( this.precpred(this._ctx, 1))) { + throw new antlr4.error.FailedPredicateException(this, "this.precpred(this._ctx, 1)"); + } + this.state = 388; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===FlinkSqlParserParser.NATURAL) { + this.state = 387; + this.match(FlinkSqlParserParser.NATURAL); + } + + this.state = 391; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(((((_la - 49)) & ~0x1f) == 0 && ((1 << (_la - 49)) & ((1 << (FlinkSqlParserParser.LEFT - 49)) | (1 << (FlinkSqlParserParser.RIGHT - 49)) | (1 << (FlinkSqlParserParser.FULL - 49)))) !== 0)) { + this.state = 390; + _la = this._input.LA(1); + if(!(((((_la - 49)) & ~0x1f) == 0 && ((1 << (_la - 49)) & ((1 << (FlinkSqlParserParser.LEFT - 49)) | (1 << (FlinkSqlParserParser.RIGHT - 49)) | (1 << (FlinkSqlParserParser.FULL - 49)))) !== 0))) { + this._errHandler.recoverInline(this); + } + else { + this._errHandler.reportMatch(this); + this.consume(); + } + } + + this.state = 393; + this.match(FlinkSqlParserParser.JOIN); + this.state = 394; + this.tableExpression(0); + this.state = 396; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,38,this._ctx); + if(la_===1) { + this.state = 395; + this.joinCondition(); + + } + } + this.state = 402; + this._errHandler.sync(this); + _alt = this._interp.adaptivePredict(this._input,39,this._ctx); + } + + } catch( error) { + if(error instanceof antlr4.error.RecognitionException) { + localctx.exception = error; + this._errHandler.reportError(this, error); + this._errHandler.recover(this, error); + } else { + throw error; + } + } finally { + this.unrollRecursionContexts(_parentctx) + } + return localctx; +}; + + +function TableReferenceContext(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 = FlinkSqlParserParser.RULE_tableReference; + return this; +} + +TableReferenceContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +TableReferenceContext.prototype.constructor = TableReferenceContext; + +TableReferenceContext.prototype.tablePrimary = function() { + return this.getTypedRuleContext(TablePrimaryContext,0); +}; + +TableReferenceContext.prototype.matchRecognize = function() { + return this.getTypedRuleContext(MatchRecognizeContext,0); +}; + +TableReferenceContext.prototype.uid = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(UidContext); + } else { + return this.getTypedRuleContext(UidContext,i); + } +}; + +TableReferenceContext.prototype.AS = function() { + return this.getToken(FlinkSqlParserParser.AS, 0); +}; + +TableReferenceContext.prototype.LR_BRACKET = function() { + return this.getToken(FlinkSqlParserParser.LR_BRACKET, 0); +}; + +TableReferenceContext.prototype.RR_BRACKET = function() { + return this.getToken(FlinkSqlParserParser.RR_BRACKET, 0); +}; + +TableReferenceContext.prototype.COMMA = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTokens(FlinkSqlParserParser.COMMA); + } else { + return this.getToken(FlinkSqlParserParser.COMMA, i); + } +}; + + +TableReferenceContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterTableReference(this); + } +}; + +TableReferenceContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitTableReference(this); + } +}; + +TableReferenceContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitTableReference(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +FlinkSqlParserParser.TableReferenceContext = TableReferenceContext; + +FlinkSqlParserParser.prototype.tableReference = function() { + + var localctx = new TableReferenceContext(this, this._ctx, this.state); + this.enterRule(localctx, 62, FlinkSqlParserParser.RULE_tableReference); + var _la = 0; // Token type + try { + this.enterOuterAlt(localctx, 1); + this.state = 403; + this.tablePrimary(); + this.state = 405; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,40,this._ctx); + if(la_===1) { + this.state = 404; + this.matchRecognize(); + + } + this.state = 424; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,44,this._ctx); + if(la_===1) { + this.state = 408; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===FlinkSqlParserParser.T__7) { + this.state = 407; + this.match(FlinkSqlParserParser.T__7); + } + + this.state = 410; + this.uid(); + this.state = 422; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,43,this._ctx); + if(la_===1) { + this.state = 411; + this.match(FlinkSqlParserParser.LR_BRACKET); + this.state = 412; + this.uid(); + this.state = 417; + this._errHandler.sync(this); + _la = this._input.LA(1); + while(_la===FlinkSqlParserParser.COMMA) { + this.state = 413; + this.match(FlinkSqlParserParser.COMMA); + this.state = 414; + this.uid(); + this.state = 419; + this._errHandler.sync(this); + _la = this._input.LA(1); + } + this.state = 420; + this.match(FlinkSqlParserParser.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 MatchRecognizeContext(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 = FlinkSqlParserParser.RULE_matchRecognize; + return this; +} + +MatchRecognizeContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +MatchRecognizeContext.prototype.constructor = MatchRecognizeContext; + + +MatchRecognizeContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterMatchRecognize(this); + } +}; + +MatchRecognizeContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitMatchRecognize(this); + } +}; + +MatchRecognizeContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitMatchRecognize(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +FlinkSqlParserParser.MatchRecognizeContext = MatchRecognizeContext; + +FlinkSqlParserParser.prototype.matchRecognize = function() { + + var localctx = new MatchRecognizeContext(this, this._ctx, this.state); + this.enterRule(localctx, 64, FlinkSqlParserParser.RULE_matchRecognize); + try { + this.enterOuterAlt(localctx, 1); + + } 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 TablePrimaryContext(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 = FlinkSqlParserParser.RULE_tablePrimary; + return this; +} + +TablePrimaryContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +TablePrimaryContext.prototype.constructor = TablePrimaryContext; + +TablePrimaryContext.prototype.uid = function() { + return this.getTypedRuleContext(UidContext,0); +}; + +TablePrimaryContext.prototype.TABLE = function() { + return this.getToken(FlinkSqlParserParser.TABLE, 0); +}; + +TablePrimaryContext.prototype.dynamicTableOptions = function() { + return this.getTypedRuleContext(DynamicTableOptionsContext,0); +}; + +TablePrimaryContext.prototype.LATERAL = function() { + return this.getToken(FlinkSqlParserParser.LATERAL, 0); +}; + +TablePrimaryContext.prototype.LR_BRACKET = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTokens(FlinkSqlParserParser.LR_BRACKET); + } else { + return this.getToken(FlinkSqlParserParser.LR_BRACKET, i); + } +}; + + +TablePrimaryContext.prototype.expression = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(ExpressionContext); + } else { + return this.getTypedRuleContext(ExpressionContext,i); + } +}; + +TablePrimaryContext.prototype.RR_BRACKET = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTokens(FlinkSqlParserParser.RR_BRACKET); + } else { + return this.getToken(FlinkSqlParserParser.RR_BRACKET, i); + } +}; + + +TablePrimaryContext.prototype.COMMA = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTokens(FlinkSqlParserParser.COMMA); + } else { + return this.getToken(FlinkSqlParserParser.COMMA, i); + } +}; + + +TablePrimaryContext.prototype.UNNEST = function() { + return this.getToken(FlinkSqlParserParser.UNNEST, 0); +}; + +TablePrimaryContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterTablePrimary(this); + } +}; + +TablePrimaryContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitTablePrimary(this); + } +}; + +TablePrimaryContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitTablePrimary(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +FlinkSqlParserParser.TablePrimaryContext = TablePrimaryContext; + +FlinkSqlParserParser.prototype.tablePrimary = function() { + + var localctx = new TablePrimaryContext(this, this._ctx, this.state); + this.enterRule(localctx, 66, FlinkSqlParserParser.RULE_tablePrimary); + var _la = 0; // Token type + try { + this.state = 456; + this._errHandler.sync(this); + switch(this._input.LA(1)) { + case FlinkSqlParserParser.TABLE: + case FlinkSqlParserParser.ID: + this.enterOuterAlt(localctx, 1); + this.state = 429; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===FlinkSqlParserParser.TABLE) { + this.state = 428; + this.match(FlinkSqlParserParser.TABLE); + } + + this.state = 431; + this.uid(); + this.state = 433; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,46,this._ctx); + if(la_===1) { + this.state = 432; + this.dynamicTableOptions(); + + } + break; + case FlinkSqlParserParser.LATERAL: + this.enterOuterAlt(localctx, 2); + this.state = 435; + this.match(FlinkSqlParserParser.LATERAL); + this.state = 436; + this.match(FlinkSqlParserParser.TABLE); + this.state = 437; + this.match(FlinkSqlParserParser.LR_BRACKET); + this.state = 438; + this.uid(); + this.state = 439; + this.match(FlinkSqlParserParser.LR_BRACKET); + this.state = 440; + this.expression(0); + this.state = 445; + this._errHandler.sync(this); + _la = this._input.LA(1); + while(_la===FlinkSqlParserParser.COMMA) { + this.state = 441; + this.match(FlinkSqlParserParser.COMMA); + this.state = 442; + this.expression(0); + this.state = 447; + this._errHandler.sync(this); + _la = this._input.LA(1); + } + this.state = 448; + this.match(FlinkSqlParserParser.RR_BRACKET); + this.state = 449; + this.match(FlinkSqlParserParser.RR_BRACKET); + break; + case FlinkSqlParserParser.UNNEST: + this.enterOuterAlt(localctx, 3); + this.state = 451; + this.match(FlinkSqlParserParser.UNNEST); + this.state = 452; + this.match(FlinkSqlParserParser.LR_BRACKET); + this.state = 453; + this.expression(0); + this.state = 454; + this.match(FlinkSqlParserParser.RR_BRACKET); + break; + default: + throw new antlr4.error.NoViableAltException(this); + } + } 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 DynamicTableOptionsContext(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 = FlinkSqlParserParser.RULE_dynamicTableOptions; + return this; +} + +DynamicTableOptionsContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +DynamicTableOptionsContext.prototype.constructor = DynamicTableOptionsContext; + + +DynamicTableOptionsContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterDynamicTableOptions(this); + } +}; + +DynamicTableOptionsContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitDynamicTableOptions(this); + } +}; + +DynamicTableOptionsContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitDynamicTableOptions(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +FlinkSqlParserParser.DynamicTableOptionsContext = DynamicTableOptionsContext; + +FlinkSqlParserParser.prototype.dynamicTableOptions = function() { + + var localctx = new DynamicTableOptionsContext(this, this._ctx, this.state); + this.enterRule(localctx, 68, FlinkSqlParserParser.RULE_dynamicTableOptions); + try { + this.enterOuterAlt(localctx, 1); + + } 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 JoinConditionContext(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 = FlinkSqlParserParser.RULE_joinCondition; + return this; +} + +JoinConditionContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +JoinConditionContext.prototype.constructor = JoinConditionContext; + +JoinConditionContext.prototype.ON = function() { + return this.getToken(FlinkSqlParserParser.ON, 0); +}; + +JoinConditionContext.prototype.booleanExpression = function() { + return this.getTypedRuleContext(BooleanExpressionContext,0); +}; + +JoinConditionContext.prototype.USING = function() { + return this.getToken(FlinkSqlParserParser.USING, 0); +}; + +JoinConditionContext.prototype.LR_BRACKET = function() { + return this.getToken(FlinkSqlParserParser.LR_BRACKET, 0); +}; + +JoinConditionContext.prototype.uid = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(UidContext); + } else { + return this.getTypedRuleContext(UidContext,i); + } +}; + +JoinConditionContext.prototype.RR_BRACKET = function() { + return this.getToken(FlinkSqlParserParser.RR_BRACKET, 0); +}; + +JoinConditionContext.prototype.COMMA = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTokens(FlinkSqlParserParser.COMMA); + } else { + return this.getToken(FlinkSqlParserParser.COMMA, i); + } +}; + + +JoinConditionContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterJoinCondition(this); + } +}; + +JoinConditionContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitJoinCondition(this); + } +}; + +JoinConditionContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitJoinCondition(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +FlinkSqlParserParser.JoinConditionContext = JoinConditionContext; + +FlinkSqlParserParser.prototype.joinCondition = function() { + + var localctx = new JoinConditionContext(this, this._ctx, this.state); + this.enterRule(localctx, 70, FlinkSqlParserParser.RULE_joinCondition); + var _la = 0; // Token type + try { + this.state = 474; + this._errHandler.sync(this); + switch(this._input.LA(1)) { + case FlinkSqlParserParser.ON: + this.enterOuterAlt(localctx, 1); + this.state = 460; + this.match(FlinkSqlParserParser.ON); + this.state = 461; + this.booleanExpression(); + break; + case FlinkSqlParserParser.USING: + this.enterOuterAlt(localctx, 2); + this.state = 462; + this.match(FlinkSqlParserParser.USING); + this.state = 463; + this.match(FlinkSqlParserParser.LR_BRACKET); + this.state = 464; + this.uid(); + this.state = 469; + this._errHandler.sync(this); + _la = this._input.LA(1); + while(_la===FlinkSqlParserParser.COMMA) { + this.state = 465; + this.match(FlinkSqlParserParser.COMMA); + this.state = 466; + this.uid(); + this.state = 471; + this._errHandler.sync(this); + _la = this._input.LA(1); + } + this.state = 472; + this.match(FlinkSqlParserParser.RR_BRACKET); + break; + default: + throw new antlr4.error.NoViableAltException(this); + } + } 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 BooleanExpressionContext(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 = FlinkSqlParserParser.RULE_booleanExpression; + return this; +} + +BooleanExpressionContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +BooleanExpressionContext.prototype.constructor = BooleanExpressionContext; + + +BooleanExpressionContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterBooleanExpression(this); + } +}; + +BooleanExpressionContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitBooleanExpression(this); + } +}; + +BooleanExpressionContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitBooleanExpression(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +FlinkSqlParserParser.BooleanExpressionContext = BooleanExpressionContext; + +FlinkSqlParserParser.prototype.booleanExpression = function() { + + var localctx = new BooleanExpressionContext(this, this._ctx, this.state); + this.enterRule(localctx, 72, FlinkSqlParserParser.RULE_booleanExpression); + try { + this.enterOuterAlt(localctx, 1); + + } 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 GroupItemDefinitionContext(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 = FlinkSqlParserParser.RULE_groupItemDefinition; + return this; +} + +GroupItemDefinitionContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +GroupItemDefinitionContext.prototype.constructor = GroupItemDefinitionContext; + +GroupItemDefinitionContext.prototype.expression = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(ExpressionContext); + } else { + return this.getTypedRuleContext(ExpressionContext,i); + } +}; + +GroupItemDefinitionContext.prototype.LR_BRACKET = function() { + return this.getToken(FlinkSqlParserParser.LR_BRACKET, 0); +}; + +GroupItemDefinitionContext.prototype.RR_BRACKET = function() { + return this.getToken(FlinkSqlParserParser.RR_BRACKET, 0); +}; + +GroupItemDefinitionContext.prototype.COMMA = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTokens(FlinkSqlParserParser.COMMA); + } else { + return this.getToken(FlinkSqlParserParser.COMMA, i); + } +}; + + +GroupItemDefinitionContext.prototype.CUBE = function() { + return this.getToken(FlinkSqlParserParser.CUBE, 0); +}; + +GroupItemDefinitionContext.prototype.ROLLUP = function() { + return this.getToken(FlinkSqlParserParser.ROLLUP, 0); +}; + +GroupItemDefinitionContext.prototype.GROUPING = function() { + return this.getToken(FlinkSqlParserParser.GROUPING, 0); +}; + +GroupItemDefinitionContext.prototype.SETS = function() { + return this.getToken(FlinkSqlParserParser.SETS, 0); +}; + +GroupItemDefinitionContext.prototype.groupItemDefinition = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(GroupItemDefinitionContext); + } else { + return this.getTypedRuleContext(GroupItemDefinitionContext,i); + } +}; + +GroupItemDefinitionContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterGroupItemDefinition(this); + } +}; + +GroupItemDefinitionContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitGroupItemDefinition(this); + } +}; + +GroupItemDefinitionContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitGroupItemDefinition(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +FlinkSqlParserParser.GroupItemDefinitionContext = GroupItemDefinitionContext; + +FlinkSqlParserParser.prototype.groupItemDefinition = function() { + + var localctx = new GroupItemDefinitionContext(this, this._ctx, this.state); + this.enterRule(localctx, 74, FlinkSqlParserParser.RULE_groupItemDefinition); + var _la = 0; // Token type + try { + this.state = 529; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,55,this._ctx); + switch(la_) { + case 1: + this.enterOuterAlt(localctx, 1); + this.state = 478; + this.expression(0); + break; + + case 2: + this.enterOuterAlt(localctx, 2); + this.state = 479; + this.match(FlinkSqlParserParser.LR_BRACKET); + this.state = 480; + this.match(FlinkSqlParserParser.RR_BRACKET); + break; + + case 3: + this.enterOuterAlt(localctx, 3); + this.state = 481; + this.match(FlinkSqlParserParser.LR_BRACKET); + this.state = 482; + this.expression(0); + this.state = 487; + this._errHandler.sync(this); + _la = this._input.LA(1); + while(_la===FlinkSqlParserParser.COMMA) { + this.state = 483; + this.match(FlinkSqlParserParser.COMMA); + this.state = 484; + this.expression(0); + this.state = 489; + this._errHandler.sync(this); + _la = this._input.LA(1); + } + this.state = 490; + this.match(FlinkSqlParserParser.RR_BRACKET); + break; + + case 4: + this.enterOuterAlt(localctx, 4); + this.state = 492; + this.match(FlinkSqlParserParser.T__16); + this.state = 493; + this.match(FlinkSqlParserParser.LR_BRACKET); + this.state = 494; + this.expression(0); + this.state = 499; + this._errHandler.sync(this); + _la = this._input.LA(1); + while(_la===FlinkSqlParserParser.COMMA) { + this.state = 495; + this.match(FlinkSqlParserParser.COMMA); + this.state = 496; + this.expression(0); + this.state = 501; + this._errHandler.sync(this); + _la = this._input.LA(1); + } + this.state = 502; + this.match(FlinkSqlParserParser.RR_BRACKET); + break; + + case 5: + this.enterOuterAlt(localctx, 5); + this.state = 504; + this.match(FlinkSqlParserParser.T__17); + this.state = 505; + this.match(FlinkSqlParserParser.LR_BRACKET); + this.state = 506; + this.expression(0); + this.state = 511; + this._errHandler.sync(this); + _la = this._input.LA(1); + while(_la===FlinkSqlParserParser.COMMA) { + this.state = 507; + this.match(FlinkSqlParserParser.COMMA); + this.state = 508; + this.expression(0); + this.state = 513; + this._errHandler.sync(this); + _la = this._input.LA(1); + } + this.state = 514; + this.match(FlinkSqlParserParser.RR_BRACKET); + break; + + case 6: + this.enterOuterAlt(localctx, 6); + this.state = 516; + this.match(FlinkSqlParserParser.T__14); + this.state = 517; + this.match(FlinkSqlParserParser.T__15); + this.state = 518; + this.match(FlinkSqlParserParser.LR_BRACKET); + this.state = 519; + this.groupItemDefinition(); + this.state = 524; + this._errHandler.sync(this); + _la = this._input.LA(1); + while(_la===FlinkSqlParserParser.COMMA) { + this.state = 520; + this.match(FlinkSqlParserParser.COMMA); + this.state = 521; + this.groupItemDefinition(); + this.state = 526; + this._errHandler.sync(this); + _la = this._input.LA(1); + } + this.state = 527; + this.match(FlinkSqlParserParser.RR_BRACKET); + 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 SelectWithoutFromDefinitionContext(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 = FlinkSqlParserParser.RULE_selectWithoutFromDefinition; + return this; +} + +SelectWithoutFromDefinitionContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +SelectWithoutFromDefinitionContext.prototype.constructor = SelectWithoutFromDefinitionContext; + +SelectWithoutFromDefinitionContext.prototype.SELECT = function() { + return this.getToken(FlinkSqlParserParser.SELECT, 0); +}; + +SelectWithoutFromDefinitionContext.prototype.ASTERISK_SIGN = function() { + return this.getToken(FlinkSqlParserParser.ASTERISK_SIGN, 0); +}; + +SelectWithoutFromDefinitionContext.prototype.projectItem = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(ProjectItemContext); + } else { + return this.getTypedRuleContext(ProjectItemContext,i); + } +}; + +SelectWithoutFromDefinitionContext.prototype.ALL = function() { + return this.getToken(FlinkSqlParserParser.ALL, 0); +}; + +SelectWithoutFromDefinitionContext.prototype.DISTINCT = function() { + return this.getToken(FlinkSqlParserParser.DISTINCT, 0); +}; + +SelectWithoutFromDefinitionContext.prototype.COMMA = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTokens(FlinkSqlParserParser.COMMA); + } else { + return this.getToken(FlinkSqlParserParser.COMMA, i); + } +}; + + +SelectWithoutFromDefinitionContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterSelectWithoutFromDefinition(this); + } +}; + +SelectWithoutFromDefinitionContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitSelectWithoutFromDefinition(this); + } +}; + +SelectWithoutFromDefinitionContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitSelectWithoutFromDefinition(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +FlinkSqlParserParser.SelectWithoutFromDefinitionContext = SelectWithoutFromDefinitionContext; + +FlinkSqlParserParser.prototype.selectWithoutFromDefinition = function() { + + var localctx = new SelectWithoutFromDefinitionContext(this, this._ctx, this.state); + this.enterRule(localctx, 76, FlinkSqlParserParser.RULE_selectWithoutFromDefinition); + var _la = 0; // Token type + try { + this.enterOuterAlt(localctx, 1); + this.state = 531; + this.match(FlinkSqlParserParser.T__4); + this.state = 533; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===FlinkSqlParserParser.T__8 || _la===FlinkSqlParserParser.T__10) { + this.state = 532; + _la = this._input.LA(1); + if(!(_la===FlinkSqlParserParser.T__8 || _la===FlinkSqlParserParser.T__10)) { + this._errHandler.recoverInline(this); + } + else { + this._errHandler.reportMatch(this); + this.consume(); + } + } + + this.state = 544; + this._errHandler.sync(this); + switch(this._input.LA(1)) { + case FlinkSqlParserParser.ASTERISK_SIGN: + this.state = 535; + this.match(FlinkSqlParserParser.ASTERISK_SIGN); + break; + case FlinkSqlParserParser.T__3: + case FlinkSqlParserParser.T__4: + case FlinkSqlParserParser.T__14: + case FlinkSqlParserParser.T__15: + case FlinkSqlParserParser.T__17: + case FlinkSqlParserParser.NOT: + case FlinkSqlParserParser.EXISTS: + case FlinkSqlParserParser.TRUE: + case FlinkSqlParserParser.FALSE: + case FlinkSqlParserParser.ID: + case FlinkSqlParserParser.BINARY: + case FlinkSqlParserParser.ROW: + case FlinkSqlParserParser.NULL: + case FlinkSqlParserParser.ZERO_DECIMAL: + case FlinkSqlParserParser.ONE_DECIMAL: + case FlinkSqlParserParser.TWO_DECIMAL: + case FlinkSqlParserParser.STRING_LITERAL: + case FlinkSqlParserParser.DECIMAL_LITERAL: + case FlinkSqlParserParser.REAL_LITERAL: + case FlinkSqlParserParser.BIT_STRING: + this.state = 536; + this.projectItem(); + this.state = 541; + this._errHandler.sync(this); + _la = this._input.LA(1); + while(_la===FlinkSqlParserParser.COMMA) { + this.state = 537; + this.match(FlinkSqlParserParser.COMMA); + this.state = 538; + this.projectItem(); + this.state = 543; + this._errHandler.sync(this); + _la = this._input.LA(1); + } + break; + default: + throw new antlr4.error.NoViableAltException(this); + } + } 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 ProjectItemContext(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 = FlinkSqlParserParser.RULE_projectItem; + return this; +} + +ProjectItemContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +ProjectItemContext.prototype.constructor = ProjectItemContext; + +ProjectItemContext.prototype.expression = function() { + return this.getTypedRuleContext(ExpressionContext,0); +}; + +ProjectItemContext.prototype.uid = function() { + return this.getTypedRuleContext(UidContext,0); +}; + +ProjectItemContext.prototype.AS = function() { + return this.getToken(FlinkSqlParserParser.AS, 0); +}; + +ProjectItemContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterProjectItem(this); + } +}; + +ProjectItemContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitProjectItem(this); + } +}; + +ProjectItemContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitProjectItem(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +FlinkSqlParserParser.ProjectItemContext = ProjectItemContext; + +FlinkSqlParserParser.prototype.projectItem = function() { + + var localctx = new ProjectItemContext(this, this._ctx, this.state); + this.enterRule(localctx, 78, FlinkSqlParserParser.RULE_projectItem); + var _la = 0; // Token type + try { + this.state = 557; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,61,this._ctx); + switch(la_) { + case 1: + this.enterOuterAlt(localctx, 1); + this.state = 546; + this.expression(0); + this.state = 551; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===FlinkSqlParserParser.T__7 || _la===FlinkSqlParserParser.ID) { + this.state = 548; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===FlinkSqlParserParser.T__7) { + this.state = 547; + this.match(FlinkSqlParserParser.T__7); + } + + this.state = 550; + this.uid(); + } + + break; + + case 2: + this.enterOuterAlt(localctx, 2); + this.state = 553; + this.uid(); + this.state = 554; + this.match(FlinkSqlParserParser.T__0); + this.state = 555; + this.match(FlinkSqlParserParser.T__1); + 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 QueryOrderByDefinitionContext(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 = FlinkSqlParserParser.RULE_queryOrderByDefinition; + return this; +} + +QueryOrderByDefinitionContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +QueryOrderByDefinitionContext.prototype.constructor = QueryOrderByDefinitionContext; + +QueryOrderByDefinitionContext.prototype.ORDER = function() { + return this.getToken(FlinkSqlParserParser.ORDER, 0); +}; + +QueryOrderByDefinitionContext.prototype.BY = function() { + return this.getToken(FlinkSqlParserParser.BY, 0); +}; + +QueryOrderByDefinitionContext.prototype.orderItemDefition = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(OrderItemDefitionContext); + } else { + return this.getTypedRuleContext(OrderItemDefitionContext,i); + } +}; + +QueryOrderByDefinitionContext.prototype.COMMA = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTokens(FlinkSqlParserParser.COMMA); + } else { + return this.getToken(FlinkSqlParserParser.COMMA, i); + } +}; + + +QueryOrderByDefinitionContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterQueryOrderByDefinition(this); + } +}; + +QueryOrderByDefinitionContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitQueryOrderByDefinition(this); + } +}; + +QueryOrderByDefinitionContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitQueryOrderByDefinition(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +FlinkSqlParserParser.QueryOrderByDefinitionContext = QueryOrderByDefinitionContext; + +FlinkSqlParserParser.prototype.queryOrderByDefinition = function() { + + var localctx = new QueryOrderByDefinitionContext(this, this._ctx, this.state); + this.enterRule(localctx, 80, FlinkSqlParserParser.RULE_queryOrderByDefinition); + var _la = 0; // Token type + try { + this.enterOuterAlt(localctx, 1); + this.state = 559; + this.match(FlinkSqlParserParser.ORDER); + this.state = 560; + this.match(FlinkSqlParserParser.T__13); + this.state = 561; + this.orderItemDefition(); + this.state = 566; + this._errHandler.sync(this); + _la = this._input.LA(1); + while(_la===FlinkSqlParserParser.COMMA) { + this.state = 562; + this.match(FlinkSqlParserParser.COMMA); + this.state = 563; + this.orderItemDefition(); + this.state = 568; + this._errHandler.sync(this); + _la = this._input.LA(1); + } + } 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 OrderItemDefitionContext(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 = FlinkSqlParserParser.RULE_orderItemDefition; + return this; +} + +OrderItemDefitionContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +OrderItemDefitionContext.prototype.constructor = OrderItemDefitionContext; + +OrderItemDefitionContext.prototype.expression = function() { + return this.getTypedRuleContext(ExpressionContext,0); +}; + +OrderItemDefitionContext.prototype.ASC = function() { + return this.getToken(FlinkSqlParserParser.ASC, 0); +}; + +OrderItemDefitionContext.prototype.DESC = function() { + return this.getToken(FlinkSqlParserParser.DESC, 0); +}; + +OrderItemDefitionContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterOrderItemDefition(this); + } +}; + +OrderItemDefitionContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitOrderItemDefition(this); + } +}; + +OrderItemDefitionContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitOrderItemDefition(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +FlinkSqlParserParser.OrderItemDefitionContext = OrderItemDefitionContext; + +FlinkSqlParserParser.prototype.orderItemDefition = function() { + + var localctx = new OrderItemDefitionContext(this, this._ctx, this.state); + this.enterRule(localctx, 82, FlinkSqlParserParser.RULE_orderItemDefition); + var _la = 0; // Token type + try { + this.enterOuterAlt(localctx, 1); + this.state = 569; + this.expression(0); + this.state = 570; + _la = this._input.LA(1); + if(!(_la===FlinkSqlParserParser.ASC || _la===FlinkSqlParserParser.DESC)) { + this._errHandler.recoverInline(this); + } + else { + this._errHandler.reportMatch(this); + this.consume(); + } + } 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 QueryLimitDefinitionContext(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 = FlinkSqlParserParser.RULE_queryLimitDefinition; + return this; +} + +QueryLimitDefinitionContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +QueryLimitDefinitionContext.prototype.constructor = QueryLimitDefinitionContext; + +QueryLimitDefinitionContext.prototype.LIMIT = function() { + return this.getToken(FlinkSqlParserParser.LIMIT, 0); +}; + +QueryLimitDefinitionContext.prototype.countDefinition = function() { + return this.getTypedRuleContext(CountDefinitionContext,0); +}; + +QueryLimitDefinitionContext.prototype.ALL = function() { + return this.getToken(FlinkSqlParserParser.ALL, 0); +}; + +QueryLimitDefinitionContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterQueryLimitDefinition(this); + } +}; + +QueryLimitDefinitionContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitQueryLimitDefinition(this); + } +}; + +QueryLimitDefinitionContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitQueryLimitDefinition(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +FlinkSqlParserParser.QueryLimitDefinitionContext = QueryLimitDefinitionContext; + +FlinkSqlParserParser.prototype.queryLimitDefinition = function() { + + var localctx = new QueryLimitDefinitionContext(this, this._ctx, this.state); + this.enterRule(localctx, 84, FlinkSqlParserParser.RULE_queryLimitDefinition); + try { + this.enterOuterAlt(localctx, 1); + this.state = 572; + this.match(FlinkSqlParserParser.LIMIT); + this.state = 575; + this._errHandler.sync(this); + switch(this._input.LA(1)) { + case FlinkSqlParserParser.SEMICOLON: + this.state = 573; + this.countDefinition(); + break; + case FlinkSqlParserParser.T__8: + this.state = 574; + this.match(FlinkSqlParserParser.T__8); + break; + default: + throw new antlr4.error.NoViableAltException(this); + } + } 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 CountDefinitionContext(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 = FlinkSqlParserParser.RULE_countDefinition; + return this; +} + +CountDefinitionContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +CountDefinitionContext.prototype.constructor = CountDefinitionContext; + + +CountDefinitionContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterCountDefinition(this); + } +}; + +CountDefinitionContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitCountDefinition(this); + } +}; + +CountDefinitionContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitCountDefinition(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +FlinkSqlParserParser.CountDefinitionContext = CountDefinitionContext; + +FlinkSqlParserParser.prototype.countDefinition = function() { + + var localctx = new CountDefinitionContext(this, this._ctx, this.state); + this.enterRule(localctx, 86, FlinkSqlParserParser.RULE_countDefinition); + try { + this.enterOuterAlt(localctx, 1); + + } 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 QueryOffsetDefinitionContext(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 = FlinkSqlParserParser.RULE_queryOffsetDefinition; + return this; +} + +QueryOffsetDefinitionContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +QueryOffsetDefinitionContext.prototype.constructor = QueryOffsetDefinitionContext; + + +QueryOffsetDefinitionContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterQueryOffsetDefinition(this); + } +}; + +QueryOffsetDefinitionContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitQueryOffsetDefinition(this); + } +}; + +QueryOffsetDefinitionContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitQueryOffsetDefinition(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +FlinkSqlParserParser.QueryOffsetDefinitionContext = QueryOffsetDefinitionContext; + +FlinkSqlParserParser.prototype.queryOffsetDefinition = function() { + + var localctx = new QueryOffsetDefinitionContext(this, this._ctx, this.state); + this.enterRule(localctx, 88, FlinkSqlParserParser.RULE_queryOffsetDefinition); + try { + this.enterOuterAlt(localctx, 1); + + } 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 QueryFetchDefinitionContext(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 = FlinkSqlParserParser.RULE_queryFetchDefinition; + return this; +} + +QueryFetchDefinitionContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +QueryFetchDefinitionContext.prototype.constructor = QueryFetchDefinitionContext; + + +QueryFetchDefinitionContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterQueryFetchDefinition(this); + } +}; + +QueryFetchDefinitionContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitQueryFetchDefinition(this); + } +}; + +QueryFetchDefinitionContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitQueryFetchDefinition(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +FlinkSqlParserParser.QueryFetchDefinitionContext = QueryFetchDefinitionContext; + +FlinkSqlParserParser.prototype.queryFetchDefinition = function() { + + var localctx = new QueryFetchDefinitionContext(this, this._ctx, this.state); + this.enterRule(localctx, 90, FlinkSqlParserParser.RULE_queryFetchDefinition); try { this.enterOuterAlt(localctx, 1); @@ -3402,13 +6236,13 @@ FlinkSqlParserParser.InsertStatementContext = InsertStatementContext; FlinkSqlParserParser.prototype.insertStatement = function() { var localctx = new InsertStatementContext(this, this._ctx, this.state); - this.enterRule(localctx, 54, FlinkSqlParserParser.RULE_insertStatement); + this.enterRule(localctx, 92, FlinkSqlParserParser.RULE_insertStatement); var _la = 0; // Token type try { this.enterOuterAlt(localctx, 1); - this.state = 243; + this.state = 583; this.match(FlinkSqlParserParser.INSERT); - this.state = 244; + this.state = 584; _la = this._input.LA(1); if(!(_la===FlinkSqlParserParser.INTO || _la===FlinkSqlParserParser.OVERWRITE)) { this._errHandler.recoverInline(this); @@ -3417,26 +6251,26 @@ FlinkSqlParserParser.prototype.insertStatement = function() { this._errHandler.reportMatch(this); this.consume(); } - this.state = 245; + this.state = 585; this.uid(); - this.state = 251; + this.state = 591; this._errHandler.sync(this); switch(this._input.LA(1)) { + case FlinkSqlParserParser.T__4: case FlinkSqlParserParser.PARTITION: - case FlinkSqlParserParser.SEMICOLON: - this.state = 247; + this.state = 587; this._errHandler.sync(this); _la = this._input.LA(1); if(_la===FlinkSqlParserParser.PARTITION) { - this.state = 246; + this.state = 586; this.insertPartitionDefinition(); } - this.state = 249; + this.state = 589; this.selectStatement(); break; case FlinkSqlParserParser.VALUES: - this.state = 250; + this.state = 590; this.valuesDefinition(); break; default: @@ -3536,29 +6370,29 @@ FlinkSqlParserParser.InsertPartitionDefinitionContext = InsertPartitionDefinitio FlinkSqlParserParser.prototype.insertPartitionDefinition = function() { var localctx = new InsertPartitionDefinitionContext(this, this._ctx, this.state); - this.enterRule(localctx, 56, FlinkSqlParserParser.RULE_insertPartitionDefinition); + this.enterRule(localctx, 94, FlinkSqlParserParser.RULE_insertPartitionDefinition); var _la = 0; // Token type try { this.enterOuterAlt(localctx, 1); - this.state = 253; + this.state = 593; this.match(FlinkSqlParserParser.PARTITION); - this.state = 254; + this.state = 594; this.match(FlinkSqlParserParser.LR_BRACKET); - this.state = 255; + this.state = 595; this.keyValueDefinition(); - this.state = 260; + this.state = 600; this._errHandler.sync(this); _la = this._input.LA(1); while(_la===FlinkSqlParserParser.COMMA) { - this.state = 256; + this.state = 596; this.match(FlinkSqlParserParser.COMMA); - this.state = 257; + this.state = 597; this.keyValueDefinition(); - this.state = 262; + this.state = 602; this._errHandler.sync(this); _la = this._input.LA(1); } - this.state = 263; + this.state = 603; this.match(FlinkSqlParserParser.RR_BRACKET); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -3646,23 +6480,23 @@ FlinkSqlParserParser.ValuesDefinitionContext = ValuesDefinitionContext; FlinkSqlParserParser.prototype.valuesDefinition = function() { var localctx = new ValuesDefinitionContext(this, this._ctx, this.state); - this.enterRule(localctx, 58, FlinkSqlParserParser.RULE_valuesDefinition); + this.enterRule(localctx, 96, FlinkSqlParserParser.RULE_valuesDefinition); var _la = 0; // Token type try { this.enterOuterAlt(localctx, 1); - this.state = 265; + this.state = 605; this.match(FlinkSqlParserParser.VALUES); - this.state = 266; + this.state = 606; this.valuesRowDefinition(); - this.state = 271; + this.state = 611; this._errHandler.sync(this); _la = this._input.LA(1); while(_la===FlinkSqlParserParser.COMMA) { - this.state = 267; + this.state = 607; this.match(FlinkSqlParserParser.COMMA); - this.state = 268; + this.state = 608; this.valuesRowDefinition(); - this.state = 273; + this.state = 613; this._errHandler.sync(this); _la = this._input.LA(1); } @@ -3701,10 +6535,33 @@ ValuesRowDefinitionContext.prototype.LR_BRACKET = function() { return this.getToken(FlinkSqlParserParser.LR_BRACKET, 0); }; +ValuesRowDefinitionContext.prototype.allValueDifinition = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(AllValueDifinitionContext); + } else { + return this.getTypedRuleContext(AllValueDifinitionContext,i); + } +}; + ValuesRowDefinitionContext.prototype.RR_BRACKET = function() { return this.getToken(FlinkSqlParserParser.RR_BRACKET, 0); }; +ValuesRowDefinitionContext.prototype.COMMA = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTokens(FlinkSqlParserParser.COMMA); + } else { + return this.getToken(FlinkSqlParserParser.COMMA, i); + } +}; + + ValuesRowDefinitionContext.prototype.enterRule = function(listener) { if(listener instanceof FlinkSqlParserListener ) { listener.enterValuesRowDefinition(this); @@ -3733,25 +6590,27 @@ FlinkSqlParserParser.ValuesRowDefinitionContext = ValuesRowDefinitionContext; FlinkSqlParserParser.prototype.valuesRowDefinition = function() { var localctx = new ValuesRowDefinitionContext(this, this._ctx, this.state); - this.enterRule(localctx, 60, FlinkSqlParserParser.RULE_valuesRowDefinition); + this.enterRule(localctx, 98, FlinkSqlParserParser.RULE_valuesRowDefinition); + var _la = 0; // Token type try { this.enterOuterAlt(localctx, 1); - this.state = 274; + this.state = 614; this.match(FlinkSqlParserParser.LR_BRACKET); - this.state = 278; + this.state = 615; + this.allValueDifinition(); + this.state = 620; this._errHandler.sync(this); - var _alt = this._interp.adaptivePredict(this._input,24,this._ctx) - while(_alt!=1 && _alt!=antlr4.atn.ATN.INVALID_ALT_NUMBER) { - if(_alt===1+1) { - this.state = 275; - this.matchWildcard(); - } - this.state = 280; + _la = this._input.LA(1); + while(_la===FlinkSqlParserParser.COMMA) { + this.state = 616; + this.match(FlinkSqlParserParser.COMMA); + this.state = 617; + this.allValueDifinition(); + this.state = 622; this._errHandler.sync(this); - _alt = this._interp.adaptivePredict(this._input,24,this._ctx); + _la = this._input.LA(1); } - - this.state = 281; + this.state = 623; this.match(FlinkSqlParserParser.RR_BRACKET); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -3768,6 +6627,110 @@ FlinkSqlParserParser.prototype.valuesRowDefinition = function() { }; +function AllValueDifinitionContext(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 = FlinkSqlParserParser.RULE_allValueDifinition; + return this; +} + +AllValueDifinitionContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +AllValueDifinitionContext.prototype.constructor = AllValueDifinitionContext; + +AllValueDifinitionContext.prototype.stringLiteral = function() { + return this.getTypedRuleContext(StringLiteralContext,0); +}; + +AllValueDifinitionContext.prototype.booleanLiteral = function() { + return this.getTypedRuleContext(BooleanLiteralContext,0); +}; + +AllValueDifinitionContext.prototype.DEC_DIGIT = function() { + return this.getToken(FlinkSqlParserParser.DEC_DIGIT, 0); +}; + +AllValueDifinitionContext.prototype.NULL = function() { + return this.getToken(FlinkSqlParserParser.NULL, 0); +}; + +AllValueDifinitionContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterAllValueDifinition(this); + } +}; + +AllValueDifinitionContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitAllValueDifinition(this); + } +}; + +AllValueDifinitionContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitAllValueDifinition(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +FlinkSqlParserParser.AllValueDifinitionContext = AllValueDifinitionContext; + +FlinkSqlParserParser.prototype.allValueDifinition = function() { + + var localctx = new AllValueDifinitionContext(this, this._ctx, this.state); + this.enterRule(localctx, 100, FlinkSqlParserParser.RULE_allValueDifinition); + try { + this.state = 629; + this._errHandler.sync(this); + switch(this._input.LA(1)) { + case FlinkSqlParserParser.STRING_LITERAL: + this.enterOuterAlt(localctx, 1); + this.state = 625; + this.stringLiteral(); + break; + case FlinkSqlParserParser.TRUE: + case FlinkSqlParserParser.FALSE: + this.enterOuterAlt(localctx, 2); + this.state = 626; + this.booleanLiteral(); + break; + case FlinkSqlParserParser.DEC_DIGIT: + this.enterOuterAlt(localctx, 3); + this.state = 627; + this.match(FlinkSqlParserParser.DEC_DIGIT); + break; + case FlinkSqlParserParser.NULL: + this.enterOuterAlt(localctx, 4); + this.state = 628; + this.match(FlinkSqlParserParser.NULL); + break; + default: + throw new antlr4.error.NoViableAltException(this); + } + } 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 UidListContext(parser, parent, invokingState) { if(parent===undefined) { parent = null; @@ -3823,21 +6786,21 @@ FlinkSqlParserParser.UidListContext = UidListContext; FlinkSqlParserParser.prototype.uidList = function() { var localctx = new UidListContext(this, this._ctx, this.state); - this.enterRule(localctx, 62, FlinkSqlParserParser.RULE_uidList); + this.enterRule(localctx, 102, FlinkSqlParserParser.RULE_uidList); var _la = 0; // Token type try { this.enterOuterAlt(localctx, 1); - this.state = 283; + this.state = 631; this.uid(); - this.state = 288; + this.state = 636; this._errHandler.sync(this); _la = this._input.LA(1); - while(_la===FlinkSqlParserParser.T__0) { - this.state = 284; - this.match(FlinkSqlParserParser.T__0); - this.state = 285; + while(_la===FlinkSqlParserParser.T__2) { + this.state = 632; + this.match(FlinkSqlParserParser.T__2); + this.state = 633; this.uid(); - this.state = 290; + this.state = 638; this._errHandler.sync(this); _la = this._input.LA(1); } @@ -3916,22 +6879,22 @@ FlinkSqlParserParser.UidContext = UidContext; FlinkSqlParserParser.prototype.uid = function() { var localctx = new UidContext(this, this._ctx, this.state); - this.enterRule(localctx, 64, FlinkSqlParserParser.RULE_uid); + this.enterRule(localctx, 104, FlinkSqlParserParser.RULE_uid); try { this.enterOuterAlt(localctx, 1); - this.state = 291; + this.state = 639; this.match(FlinkSqlParserParser.ID); - this.state = 295; + this.state = 643; this._errHandler.sync(this); - var _alt = this._interp.adaptivePredict(this._input,26,this._ctx) + var _alt = this._interp.adaptivePredict(this._input,71,this._ctx) while(_alt!=1 && _alt!=antlr4.atn.ATN.INVALID_ALT_NUMBER) { if(_alt===1+1) { - this.state = 292; + this.state = 640; this.match(FlinkSqlParserParser.DOT_ID); } - this.state = 297; + this.state = 645; this._errHandler.sync(this); - _alt = this._interp.adaptivePredict(this._input,26,this._ctx); + _alt = this._interp.adaptivePredict(this._input,71,this._ctx); } } catch (re) { @@ -4028,29 +6991,29 @@ FlinkSqlParserParser.WithOptionContext = WithOptionContext; FlinkSqlParserParser.prototype.withOption = function() { var localctx = new WithOptionContext(this, this._ctx, this.state); - this.enterRule(localctx, 66, FlinkSqlParserParser.RULE_withOption); + this.enterRule(localctx, 106, FlinkSqlParserParser.RULE_withOption); var _la = 0; // Token type try { this.enterOuterAlt(localctx, 1); - this.state = 298; + this.state = 646; this.match(FlinkSqlParserParser.WITH); - this.state = 299; + this.state = 647; this.match(FlinkSqlParserParser.LR_BRACKET); - this.state = 300; + this.state = 648; this.keyValueDefinition(); - this.state = 305; + this.state = 653; this._errHandler.sync(this); _la = this._input.LA(1); while(_la===FlinkSqlParserParser.COMMA) { - this.state = 301; + this.state = 649; this.match(FlinkSqlParserParser.COMMA); - this.state = 302; + this.state = 650; this.keyValueDefinition(); - this.state = 307; + this.state = 655; this._errHandler.sync(this); _la = this._input.LA(1); } - this.state = 308; + this.state = 656; this.match(FlinkSqlParserParser.RR_BRACKET); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -4123,14 +7086,14 @@ FlinkSqlParserParser.IfNotExistsContext = IfNotExistsContext; FlinkSqlParserParser.prototype.ifNotExists = function() { var localctx = new IfNotExistsContext(this, this._ctx, this.state); - this.enterRule(localctx, 68, FlinkSqlParserParser.RULE_ifNotExists); + this.enterRule(localctx, 108, FlinkSqlParserParser.RULE_ifNotExists); try { this.enterOuterAlt(localctx, 1); - this.state = 310; + this.state = 658; this.match(FlinkSqlParserParser.IF); - this.state = 311; + this.state = 659; this.match(FlinkSqlParserParser.NOT); - this.state = 312; + this.state = 660; this.match(FlinkSqlParserParser.EXISTS); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -4199,12 +7162,12 @@ FlinkSqlParserParser.IfExistsContext = IfExistsContext; FlinkSqlParserParser.prototype.ifExists = function() { var localctx = new IfExistsContext(this, this._ctx, this.state); - this.enterRule(localctx, 70, FlinkSqlParserParser.RULE_ifExists); + this.enterRule(localctx, 110, FlinkSqlParserParser.RULE_ifExists); try { this.enterOuterAlt(localctx, 1); - this.state = 314; + this.state = 662; this.match(FlinkSqlParserParser.IF); - this.state = 315; + this.state = 663; this.match(FlinkSqlParserParser.EXISTS); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -4281,14 +7244,14 @@ FlinkSqlParserParser.KeyValueDefinitionContext = KeyValueDefinitionContext; FlinkSqlParserParser.prototype.keyValueDefinition = function() { var localctx = new KeyValueDefinitionContext(this, this._ctx, this.state); - this.enterRule(localctx, 72, FlinkSqlParserParser.RULE_keyValueDefinition); + this.enterRule(localctx, 112, FlinkSqlParserParser.RULE_keyValueDefinition); try { this.enterOuterAlt(localctx, 1); - this.state = 317; + this.state = 665; this.match(FlinkSqlParserParser.DOUBLE_QUOTE_ID); - this.state = 318; + this.state = 666; this.match(FlinkSqlParserParser.EQUAL_SYMBOL); - this.state = 319; + this.state = 667; this.match(FlinkSqlParserParser.DOUBLE_QUOTE_ID); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -4305,4 +7268,2506 @@ FlinkSqlParserParser.prototype.keyValueDefinition = function() { }; +function ExpressionsContext(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 = FlinkSqlParserParser.RULE_expressions; + return this; +} + +ExpressionsContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +ExpressionsContext.prototype.constructor = ExpressionsContext; + +ExpressionsContext.prototype.expression = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(ExpressionContext); + } else { + return this.getTypedRuleContext(ExpressionContext,i); + } +}; + +ExpressionsContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterExpressions(this); + } +}; + +ExpressionsContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitExpressions(this); + } +}; + +ExpressionsContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitExpressions(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +FlinkSqlParserParser.ExpressionsContext = ExpressionsContext; + +FlinkSqlParserParser.prototype.expressions = function() { + + var localctx = new ExpressionsContext(this, this._ctx, this.state); + this.enterRule(localctx, 114, FlinkSqlParserParser.RULE_expressions); + var _la = 0; // Token type + try { + this.enterOuterAlt(localctx, 1); + this.state = 669; + this.expression(0); + this.state = 674; + this._errHandler.sync(this); + _la = this._input.LA(1); + while(_la===FlinkSqlParserParser.T__2) { + this.state = 670; + this.match(FlinkSqlParserParser.T__2); + this.state = 671; + this.expression(0); + this.state = 676; + this._errHandler.sync(this); + _la = this._input.LA(1); + } + } 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 ExpressionContext(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 = FlinkSqlParserParser.RULE_expression; + return this; +} + +ExpressionContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +ExpressionContext.prototype.constructor = ExpressionContext; + + + +ExpressionContext.prototype.copyFrom = function(ctx) { + antlr4.ParserRuleContext.prototype.copyFrom.call(this, ctx); +}; + +function IsExpressionContext(parser, ctx) { + ExpressionContext.call(this, parser); + this.testValue = null; // Token; + ExpressionContext.prototype.copyFrom.call(this, ctx); + return this; +} + +IsExpressionContext.prototype = Object.create(ExpressionContext.prototype); +IsExpressionContext.prototype.constructor = IsExpressionContext; + +FlinkSqlParserParser.IsExpressionContext = IsExpressionContext; + +IsExpressionContext.prototype.predicate = function() { + return this.getTypedRuleContext(PredicateContext,0); +}; + +IsExpressionContext.prototype.IS = function() { + return this.getToken(FlinkSqlParserParser.IS, 0); +}; + +IsExpressionContext.prototype.TRUE = function() { + return this.getToken(FlinkSqlParserParser.TRUE, 0); +}; + +IsExpressionContext.prototype.FALSE = function() { + return this.getToken(FlinkSqlParserParser.FALSE, 0); +}; + +IsExpressionContext.prototype.NOT = function() { + return this.getToken(FlinkSqlParserParser.NOT, 0); +}; +IsExpressionContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterIsExpression(this); + } +}; + +IsExpressionContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitIsExpression(this); + } +}; + +IsExpressionContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitIsExpression(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function NotExpressionContext(parser, ctx) { + ExpressionContext.call(this, parser); + this.notOperator = null; // Token; + ExpressionContext.prototype.copyFrom.call(this, ctx); + return this; +} + +NotExpressionContext.prototype = Object.create(ExpressionContext.prototype); +NotExpressionContext.prototype.constructor = NotExpressionContext; + +FlinkSqlParserParser.NotExpressionContext = NotExpressionContext; + +NotExpressionContext.prototype.expression = function() { + return this.getTypedRuleContext(ExpressionContext,0); +}; + +NotExpressionContext.prototype.NOT = function() { + return this.getToken(FlinkSqlParserParser.NOT, 0); +}; +NotExpressionContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterNotExpression(this); + } +}; + +NotExpressionContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitNotExpression(this); + } +}; + +NotExpressionContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitNotExpression(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function LogicalExpressionContext(parser, ctx) { + ExpressionContext.call(this, parser); + ExpressionContext.prototype.copyFrom.call(this, ctx); + return this; +} + +LogicalExpressionContext.prototype = Object.create(ExpressionContext.prototype); +LogicalExpressionContext.prototype.constructor = LogicalExpressionContext; + +FlinkSqlParserParser.LogicalExpressionContext = LogicalExpressionContext; + +LogicalExpressionContext.prototype.expression = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(ExpressionContext); + } else { + return this.getTypedRuleContext(ExpressionContext,i); + } +}; + +LogicalExpressionContext.prototype.logicalOperator = function() { + return this.getTypedRuleContext(LogicalOperatorContext,0); +}; +LogicalExpressionContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterLogicalExpression(this); + } +}; + +LogicalExpressionContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitLogicalExpression(this); + } +}; + +LogicalExpressionContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitLogicalExpression(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function PredicateExpressionContext(parser, ctx) { + ExpressionContext.call(this, parser); + ExpressionContext.prototype.copyFrom.call(this, ctx); + return this; +} + +PredicateExpressionContext.prototype = Object.create(ExpressionContext.prototype); +PredicateExpressionContext.prototype.constructor = PredicateExpressionContext; + +FlinkSqlParserParser.PredicateExpressionContext = PredicateExpressionContext; + +PredicateExpressionContext.prototype.predicate = function() { + return this.getTypedRuleContext(PredicateContext,0); +}; +PredicateExpressionContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterPredicateExpression(this); + } +}; + +PredicateExpressionContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitPredicateExpression(this); + } +}; + +PredicateExpressionContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitPredicateExpression(this); + } else { + return visitor.visitChildren(this); + } +}; + + + +FlinkSqlParserParser.prototype.expression = function(_p) { + if(_p===undefined) { + _p = 0; + } + var _parentctx = this._ctx; + var _parentState = this.state; + var localctx = new ExpressionContext(this, this._ctx, _parentState); + var _prevctx = localctx; + var _startState = 116; + this.enterRecursionRule(localctx, 116, FlinkSqlParserParser.RULE_expression, _p); + var _la = 0; // Token type + try { + this.enterOuterAlt(localctx, 1); + this.state = 688; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,75,this._ctx); + switch(la_) { + case 1: + localctx = new NotExpressionContext(this, localctx); + this._ctx = localctx; + _prevctx = localctx; + + this.state = 678; + localctx.notOperator = this._input.LT(1); + _la = this._input.LA(1); + if(!(_la===FlinkSqlParserParser.T__3 || _la===FlinkSqlParserParser.NOT)) { + localctx.notOperator = this._errHandler.recoverInline(this); + } + else { + this._errHandler.reportMatch(this); + this.consume(); + } + this.state = 679; + this.expression(4); + break; + + case 2: + localctx = new IsExpressionContext(this, localctx); + this._ctx = localctx; + _prevctx = localctx; + this.state = 680; + this.predicate(0); + this.state = 681; + this.match(FlinkSqlParserParser.IS); + this.state = 683; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===FlinkSqlParserParser.NOT) { + this.state = 682; + this.match(FlinkSqlParserParser.NOT); + } + + this.state = 685; + localctx.testValue = this._input.LT(1); + _la = this._input.LA(1); + if(!(_la===FlinkSqlParserParser.TRUE || _la===FlinkSqlParserParser.FALSE)) { + localctx.testValue = this._errHandler.recoverInline(this); + } + else { + this._errHandler.reportMatch(this); + this.consume(); + } + break; + + case 3: + localctx = new PredicateExpressionContext(this, localctx); + this._ctx = localctx; + _prevctx = localctx; + this.state = 687; + this.predicate(0); + break; + + } + this._ctx.stop = this._input.LT(-1); + this.state = 696; + this._errHandler.sync(this); + var _alt = this._interp.adaptivePredict(this._input,76,this._ctx) + while(_alt!=2 && _alt!=antlr4.atn.ATN.INVALID_ALT_NUMBER) { + if(_alt===1) { + if(this._parseListeners!==null) { + this.triggerExitRuleEvent(); + } + _prevctx = localctx; + localctx = new LogicalExpressionContext(this, new ExpressionContext(this, _parentctx, _parentState)); + this.pushNewRecursionContext(localctx, _startState, FlinkSqlParserParser.RULE_expression); + this.state = 690; + if (!( this.precpred(this._ctx, 3))) { + throw new antlr4.error.FailedPredicateException(this, "this.precpred(this._ctx, 3)"); + } + this.state = 691; + this.logicalOperator(); + this.state = 692; + this.expression(4); + } + this.state = 698; + this._errHandler.sync(this); + _alt = this._interp.adaptivePredict(this._input,76,this._ctx); + } + + } catch( error) { + if(error instanceof antlr4.error.RecognitionException) { + localctx.exception = error; + this._errHandler.reportError(this, error); + this._errHandler.recover(this, error); + } else { + throw error; + } + } finally { + this.unrollRecursionContexts(_parentctx) + } + return localctx; +}; + + +function PredicateContext(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 = FlinkSqlParserParser.RULE_predicate; + return this; +} + +PredicateContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +PredicateContext.prototype.constructor = PredicateContext; + + + +PredicateContext.prototype.copyFrom = function(ctx) { + antlr4.ParserRuleContext.prototype.copyFrom.call(this, ctx); +}; + +function ExpressionAtomPredicateContext(parser, ctx) { + PredicateContext.call(this, parser); + PredicateContext.prototype.copyFrom.call(this, ctx); + return this; +} + +ExpressionAtomPredicateContext.prototype = Object.create(PredicateContext.prototype); +ExpressionAtomPredicateContext.prototype.constructor = ExpressionAtomPredicateContext; + +FlinkSqlParserParser.ExpressionAtomPredicateContext = ExpressionAtomPredicateContext; + +ExpressionAtomPredicateContext.prototype.expressionAtom = function() { + return this.getTypedRuleContext(ExpressionAtomContext,0); +}; +ExpressionAtomPredicateContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterExpressionAtomPredicate(this); + } +}; + +ExpressionAtomPredicateContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitExpressionAtomPredicate(this); + } +}; + +ExpressionAtomPredicateContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitExpressionAtomPredicate(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function InPredicateContext(parser, ctx) { + PredicateContext.call(this, parser); + PredicateContext.prototype.copyFrom.call(this, ctx); + return this; +} + +InPredicateContext.prototype = Object.create(PredicateContext.prototype); +InPredicateContext.prototype.constructor = InPredicateContext; + +FlinkSqlParserParser.InPredicateContext = InPredicateContext; + +InPredicateContext.prototype.predicate = function() { + return this.getTypedRuleContext(PredicateContext,0); +}; + +InPredicateContext.prototype.IN = function() { + return this.getToken(FlinkSqlParserParser.IN, 0); +}; + +InPredicateContext.prototype.selectStatement = function() { + return this.getTypedRuleContext(SelectStatementContext,0); +}; + +InPredicateContext.prototype.expressions = function() { + return this.getTypedRuleContext(ExpressionsContext,0); +}; + +InPredicateContext.prototype.NOT = function() { + return this.getToken(FlinkSqlParserParser.NOT, 0); +}; +InPredicateContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterInPredicate(this); + } +}; + +InPredicateContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitInPredicate(this); + } +}; + +InPredicateContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitInPredicate(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function SubqueryComparasionPredicateContext(parser, ctx) { + PredicateContext.call(this, parser); + this.quantifier = null; // Token; + PredicateContext.prototype.copyFrom.call(this, ctx); + return this; +} + +SubqueryComparasionPredicateContext.prototype = Object.create(PredicateContext.prototype); +SubqueryComparasionPredicateContext.prototype.constructor = SubqueryComparasionPredicateContext; + +FlinkSqlParserParser.SubqueryComparasionPredicateContext = SubqueryComparasionPredicateContext; + +SubqueryComparasionPredicateContext.prototype.predicate = function() { + return this.getTypedRuleContext(PredicateContext,0); +}; + +SubqueryComparasionPredicateContext.prototype.comparisonOperator = function() { + return this.getTypedRuleContext(ComparisonOperatorContext,0); +}; + +SubqueryComparasionPredicateContext.prototype.selectStatement = function() { + return this.getTypedRuleContext(SelectStatementContext,0); +}; + +SubqueryComparasionPredicateContext.prototype.ALL = function() { + return this.getToken(FlinkSqlParserParser.ALL, 0); +}; + +SubqueryComparasionPredicateContext.prototype.ANY = function() { + return this.getToken(FlinkSqlParserParser.ANY, 0); +}; +SubqueryComparasionPredicateContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterSubqueryComparasionPredicate(this); + } +}; + +SubqueryComparasionPredicateContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitSubqueryComparasionPredicate(this); + } +}; + +SubqueryComparasionPredicateContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitSubqueryComparasionPredicate(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function BetweenPredicateContext(parser, ctx) { + PredicateContext.call(this, parser); + PredicateContext.prototype.copyFrom.call(this, ctx); + return this; +} + +BetweenPredicateContext.prototype = Object.create(PredicateContext.prototype); +BetweenPredicateContext.prototype.constructor = BetweenPredicateContext; + +FlinkSqlParserParser.BetweenPredicateContext = BetweenPredicateContext; + +BetweenPredicateContext.prototype.predicate = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(PredicateContext); + } else { + return this.getTypedRuleContext(PredicateContext,i); + } +}; + +BetweenPredicateContext.prototype.BETWEEN = function() { + return this.getToken(FlinkSqlParserParser.BETWEEN, 0); +}; + +BetweenPredicateContext.prototype.AND = function() { + return this.getToken(FlinkSqlParserParser.AND, 0); +}; + +BetweenPredicateContext.prototype.NOT = function() { + return this.getToken(FlinkSqlParserParser.NOT, 0); +}; +BetweenPredicateContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterBetweenPredicate(this); + } +}; + +BetweenPredicateContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitBetweenPredicate(this); + } +}; + +BetweenPredicateContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitBetweenPredicate(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function BinaryComparasionPredicateContext(parser, ctx) { + PredicateContext.call(this, parser); + this.left = null; // PredicateContext; + this.right = null; // PredicateContext; + PredicateContext.prototype.copyFrom.call(this, ctx); + return this; +} + +BinaryComparasionPredicateContext.prototype = Object.create(PredicateContext.prototype); +BinaryComparasionPredicateContext.prototype.constructor = BinaryComparasionPredicateContext; + +FlinkSqlParserParser.BinaryComparasionPredicateContext = BinaryComparasionPredicateContext; + +BinaryComparasionPredicateContext.prototype.comparisonOperator = function() { + return this.getTypedRuleContext(ComparisonOperatorContext,0); +}; + +BinaryComparasionPredicateContext.prototype.predicate = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(PredicateContext); + } else { + return this.getTypedRuleContext(PredicateContext,i); + } +}; +BinaryComparasionPredicateContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterBinaryComparasionPredicate(this); + } +}; + +BinaryComparasionPredicateContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitBinaryComparasionPredicate(this); + } +}; + +BinaryComparasionPredicateContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitBinaryComparasionPredicate(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function LikePredicateContext(parser, ctx) { + PredicateContext.call(this, parser); + PredicateContext.prototype.copyFrom.call(this, ctx); + return this; +} + +LikePredicateContext.prototype = Object.create(PredicateContext.prototype); +LikePredicateContext.prototype.constructor = LikePredicateContext; + +FlinkSqlParserParser.LikePredicateContext = LikePredicateContext; + +LikePredicateContext.prototype.predicate = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(PredicateContext); + } else { + return this.getTypedRuleContext(PredicateContext,i); + } +}; + +LikePredicateContext.prototype.LIKE = function() { + return this.getToken(FlinkSqlParserParser.LIKE, 0); +}; + +LikePredicateContext.prototype.NOT = function() { + return this.getToken(FlinkSqlParserParser.NOT, 0); +}; +LikePredicateContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterLikePredicate(this); + } +}; + +LikePredicateContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitLikePredicate(this); + } +}; + +LikePredicateContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitLikePredicate(this); + } else { + return visitor.visitChildren(this); + } +}; + + + +FlinkSqlParserParser.prototype.predicate = function(_p) { + if(_p===undefined) { + _p = 0; + } + var _parentctx = this._ctx; + var _parentState = this.state; + var localctx = new PredicateContext(this, this._ctx, _parentState); + var _prevctx = localctx; + var _startState = 118; + this.enterRecursionRule(localctx, 118, FlinkSqlParserParser.RULE_predicate, _p); + var _la = 0; // Token type + try { + this.enterOuterAlt(localctx, 1); + localctx = new ExpressionAtomPredicateContext(this, localctx); + this._ctx = localctx; + _prevctx = localctx; + + this.state = 700; + this.expressionAtom(0); + this._ctx.stop = this._input.LT(-1); + this.state = 742; + this._errHandler.sync(this); + var _alt = this._interp.adaptivePredict(this._input,82,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 = 740; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,81,this._ctx); + switch(la_) { + case 1: + localctx = new BinaryComparasionPredicateContext(this, new PredicateContext(this, _parentctx, _parentState)); + localctx.left = _prevctx; + this.pushNewRecursionContext(localctx, _startState, FlinkSqlParserParser.RULE_predicate); + this.state = 702; + if (!( this.precpred(this._ctx, 5))) { + throw new antlr4.error.FailedPredicateException(this, "this.precpred(this._ctx, 5)"); + } + this.state = 703; + this.comparisonOperator(); + this.state = 704; + localctx.right = this.predicate(6); + break; + + case 2: + localctx = new BetweenPredicateContext(this, new PredicateContext(this, _parentctx, _parentState)); + this.pushNewRecursionContext(localctx, _startState, FlinkSqlParserParser.RULE_predicate); + this.state = 706; + if (!( this.precpred(this._ctx, 3))) { + throw new antlr4.error.FailedPredicateException(this, "this.precpred(this._ctx, 3)"); + } + this.state = 708; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===FlinkSqlParserParser.NOT) { + this.state = 707; + this.match(FlinkSqlParserParser.NOT); + } + + this.state = 710; + this.match(FlinkSqlParserParser.BETWEEN); + this.state = 711; + this.predicate(0); + this.state = 712; + this.match(FlinkSqlParserParser.AND); + this.state = 713; + this.predicate(4); + break; + + case 3: + localctx = new LikePredicateContext(this, new PredicateContext(this, _parentctx, _parentState)); + this.pushNewRecursionContext(localctx, _startState, FlinkSqlParserParser.RULE_predicate); + this.state = 715; + if (!( this.precpred(this._ctx, 2))) { + throw new antlr4.error.FailedPredicateException(this, "this.precpred(this._ctx, 2)"); + } + this.state = 717; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===FlinkSqlParserParser.NOT) { + this.state = 716; + this.match(FlinkSqlParserParser.NOT); + } + + this.state = 719; + this.match(FlinkSqlParserParser.LIKE); + this.state = 720; + this.predicate(3); + break; + + case 4: + localctx = new InPredicateContext(this, new PredicateContext(this, _parentctx, _parentState)); + this.pushNewRecursionContext(localctx, _startState, FlinkSqlParserParser.RULE_predicate); + this.state = 721; + if (!( this.precpred(this._ctx, 6))) { + throw new antlr4.error.FailedPredicateException(this, "this.precpred(this._ctx, 6)"); + } + this.state = 723; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===FlinkSqlParserParser.NOT) { + this.state = 722; + this.match(FlinkSqlParserParser.NOT); + } + + this.state = 725; + this.match(FlinkSqlParserParser.IN); + this.state = 726; + this.match(FlinkSqlParserParser.T__4); + this.state = 729; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,80,this._ctx); + switch(la_) { + case 1: + this.state = 727; + this.selectStatement(); + break; + + case 2: + this.state = 728; + this.expressions(); + break; + + } + this.state = 731; + this.match(FlinkSqlParserParser.T__5); + break; + + case 5: + localctx = new SubqueryComparasionPredicateContext(this, new PredicateContext(this, _parentctx, _parentState)); + this.pushNewRecursionContext(localctx, _startState, FlinkSqlParserParser.RULE_predicate); + this.state = 733; + if (!( this.precpred(this._ctx, 4))) { + throw new antlr4.error.FailedPredicateException(this, "this.precpred(this._ctx, 4)"); + } + this.state = 734; + this.comparisonOperator(); + this.state = 735; + localctx.quantifier = this._input.LT(1); + _la = this._input.LA(1); + if(!(_la===FlinkSqlParserParser.T__8 || _la===FlinkSqlParserParser.T__9)) { + localctx.quantifier = this._errHandler.recoverInline(this); + } + else { + this._errHandler.reportMatch(this); + this.consume(); + } + this.state = 736; + this.match(FlinkSqlParserParser.T__4); + this.state = 737; + this.selectStatement(); + this.state = 738; + this.match(FlinkSqlParserParser.T__5); + break; + + } + } + this.state = 744; + this._errHandler.sync(this); + _alt = this._interp.adaptivePredict(this._input,82,this._ctx); + } + + } catch( error) { + if(error instanceof antlr4.error.RecognitionException) { + localctx.exception = error; + this._errHandler.reportError(this, error); + this._errHandler.recover(this, error); + } else { + throw error; + } + } finally { + this.unrollRecursionContexts(_parentctx) + } + return localctx; +}; + + +function ExpressionAtomContext(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 = FlinkSqlParserParser.RULE_expressionAtom; + return this; +} + +ExpressionAtomContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +ExpressionAtomContext.prototype.constructor = ExpressionAtomContext; + + + +ExpressionAtomContext.prototype.copyFrom = function(ctx) { + antlr4.ParserRuleContext.prototype.copyFrom.call(this, ctx); +}; + +function UnaryExpressionAtomContext(parser, ctx) { + ExpressionAtomContext.call(this, parser); + ExpressionAtomContext.prototype.copyFrom.call(this, ctx); + return this; +} + +UnaryExpressionAtomContext.prototype = Object.create(ExpressionAtomContext.prototype); +UnaryExpressionAtomContext.prototype.constructor = UnaryExpressionAtomContext; + +FlinkSqlParserParser.UnaryExpressionAtomContext = UnaryExpressionAtomContext; + +UnaryExpressionAtomContext.prototype.unaryOperator = function() { + return this.getTypedRuleContext(UnaryOperatorContext,0); +}; + +UnaryExpressionAtomContext.prototype.expressionAtom = function() { + return this.getTypedRuleContext(ExpressionAtomContext,0); +}; +UnaryExpressionAtomContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterUnaryExpressionAtom(this); + } +}; + +UnaryExpressionAtomContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitUnaryExpressionAtom(this); + } +}; + +UnaryExpressionAtomContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitUnaryExpressionAtom(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function SubqueryExpessionAtomContext(parser, ctx) { + ExpressionAtomContext.call(this, parser); + ExpressionAtomContext.prototype.copyFrom.call(this, ctx); + return this; +} + +SubqueryExpessionAtomContext.prototype = Object.create(ExpressionAtomContext.prototype); +SubqueryExpessionAtomContext.prototype.constructor = SubqueryExpessionAtomContext; + +FlinkSqlParserParser.SubqueryExpessionAtomContext = SubqueryExpessionAtomContext; + +SubqueryExpessionAtomContext.prototype.selectStatement = function() { + return this.getTypedRuleContext(SelectStatementContext,0); +}; +SubqueryExpessionAtomContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterSubqueryExpessionAtom(this); + } +}; + +SubqueryExpessionAtomContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitSubqueryExpessionAtom(this); + } +}; + +SubqueryExpessionAtomContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitSubqueryExpessionAtom(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function ExistsExpessionAtomContext(parser, ctx) { + ExpressionAtomContext.call(this, parser); + ExpressionAtomContext.prototype.copyFrom.call(this, ctx); + return this; +} + +ExistsExpessionAtomContext.prototype = Object.create(ExpressionAtomContext.prototype); +ExistsExpessionAtomContext.prototype.constructor = ExistsExpessionAtomContext; + +FlinkSqlParserParser.ExistsExpessionAtomContext = ExistsExpessionAtomContext; + +ExistsExpessionAtomContext.prototype.EXISTS = function() { + return this.getToken(FlinkSqlParserParser.EXISTS, 0); +}; + +ExistsExpessionAtomContext.prototype.selectStatement = function() { + return this.getTypedRuleContext(SelectStatementContext,0); +}; +ExistsExpessionAtomContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterExistsExpessionAtom(this); + } +}; + +ExistsExpessionAtomContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitExistsExpessionAtom(this); + } +}; + +ExistsExpessionAtomContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitExistsExpessionAtom(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function ConstantExpressionAtomContext(parser, ctx) { + ExpressionAtomContext.call(this, parser); + ExpressionAtomContext.prototype.copyFrom.call(this, ctx); + return this; +} + +ConstantExpressionAtomContext.prototype = Object.create(ExpressionAtomContext.prototype); +ConstantExpressionAtomContext.prototype.constructor = ConstantExpressionAtomContext; + +FlinkSqlParserParser.ConstantExpressionAtomContext = ConstantExpressionAtomContext; + +ConstantExpressionAtomContext.prototype.constant = function() { + return this.getTypedRuleContext(ConstantContext,0); +}; +ConstantExpressionAtomContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterConstantExpressionAtom(this); + } +}; + +ConstantExpressionAtomContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitConstantExpressionAtom(this); + } +}; + +ConstantExpressionAtomContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitConstantExpressionAtom(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function BinaryExpressionAtomContext(parser, ctx) { + ExpressionAtomContext.call(this, parser); + ExpressionAtomContext.prototype.copyFrom.call(this, ctx); + return this; +} + +BinaryExpressionAtomContext.prototype = Object.create(ExpressionAtomContext.prototype); +BinaryExpressionAtomContext.prototype.constructor = BinaryExpressionAtomContext; + +FlinkSqlParserParser.BinaryExpressionAtomContext = BinaryExpressionAtomContext; + +BinaryExpressionAtomContext.prototype.BINARY = function() { + return this.getToken(FlinkSqlParserParser.BINARY, 0); +}; + +BinaryExpressionAtomContext.prototype.expressionAtom = function() { + return this.getTypedRuleContext(ExpressionAtomContext,0); +}; +BinaryExpressionAtomContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterBinaryExpressionAtom(this); + } +}; + +BinaryExpressionAtomContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitBinaryExpressionAtom(this); + } +}; + +BinaryExpressionAtomContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitBinaryExpressionAtom(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function FullColumnNameExpressionAtomContext(parser, ctx) { + ExpressionAtomContext.call(this, parser); + ExpressionAtomContext.prototype.copyFrom.call(this, ctx); + return this; +} + +FullColumnNameExpressionAtomContext.prototype = Object.create(ExpressionAtomContext.prototype); +FullColumnNameExpressionAtomContext.prototype.constructor = FullColumnNameExpressionAtomContext; + +FlinkSqlParserParser.FullColumnNameExpressionAtomContext = FullColumnNameExpressionAtomContext; + +FullColumnNameExpressionAtomContext.prototype.fullColumnName = function() { + return this.getTypedRuleContext(FullColumnNameContext,0); +}; +FullColumnNameExpressionAtomContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterFullColumnNameExpressionAtom(this); + } +}; + +FullColumnNameExpressionAtomContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitFullColumnNameExpressionAtom(this); + } +}; + +FullColumnNameExpressionAtomContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitFullColumnNameExpressionAtom(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function BitExpressionAtomContext(parser, ctx) { + ExpressionAtomContext.call(this, parser); + this.left = null; // ExpressionAtomContext; + this.right = null; // ExpressionAtomContext; + ExpressionAtomContext.prototype.copyFrom.call(this, ctx); + return this; +} + +BitExpressionAtomContext.prototype = Object.create(ExpressionAtomContext.prototype); +BitExpressionAtomContext.prototype.constructor = BitExpressionAtomContext; + +FlinkSqlParserParser.BitExpressionAtomContext = BitExpressionAtomContext; + +BitExpressionAtomContext.prototype.bitOperator = function() { + return this.getTypedRuleContext(BitOperatorContext,0); +}; + +BitExpressionAtomContext.prototype.expressionAtom = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(ExpressionAtomContext); + } else { + return this.getTypedRuleContext(ExpressionAtomContext,i); + } +}; +BitExpressionAtomContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterBitExpressionAtom(this); + } +}; + +BitExpressionAtomContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitBitExpressionAtom(this); + } +}; + +BitExpressionAtomContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitBitExpressionAtom(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function NestedExpressionAtomContext(parser, ctx) { + ExpressionAtomContext.call(this, parser); + ExpressionAtomContext.prototype.copyFrom.call(this, ctx); + return this; +} + +NestedExpressionAtomContext.prototype = Object.create(ExpressionAtomContext.prototype); +NestedExpressionAtomContext.prototype.constructor = NestedExpressionAtomContext; + +FlinkSqlParserParser.NestedExpressionAtomContext = NestedExpressionAtomContext; + +NestedExpressionAtomContext.prototype.expression = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(ExpressionContext); + } else { + return this.getTypedRuleContext(ExpressionContext,i); + } +}; +NestedExpressionAtomContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterNestedExpressionAtom(this); + } +}; + +NestedExpressionAtomContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitNestedExpressionAtom(this); + } +}; + +NestedExpressionAtomContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitNestedExpressionAtom(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function NestedRowExpressionAtomContext(parser, ctx) { + ExpressionAtomContext.call(this, parser); + ExpressionAtomContext.prototype.copyFrom.call(this, ctx); + return this; +} + +NestedRowExpressionAtomContext.prototype = Object.create(ExpressionAtomContext.prototype); +NestedRowExpressionAtomContext.prototype.constructor = NestedRowExpressionAtomContext; + +FlinkSqlParserParser.NestedRowExpressionAtomContext = NestedRowExpressionAtomContext; + +NestedRowExpressionAtomContext.prototype.ROW = function() { + return this.getToken(FlinkSqlParserParser.ROW, 0); +}; + +NestedRowExpressionAtomContext.prototype.expression = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(ExpressionContext); + } else { + return this.getTypedRuleContext(ExpressionContext,i); + } +}; +NestedRowExpressionAtomContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterNestedRowExpressionAtom(this); + } +}; + +NestedRowExpressionAtomContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitNestedRowExpressionAtom(this); + } +}; + +NestedRowExpressionAtomContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitNestedRowExpressionAtom(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function MathExpressionAtomContext(parser, ctx) { + ExpressionAtomContext.call(this, parser); + this.left = null; // ExpressionAtomContext; + this.right = null; // ExpressionAtomContext; + ExpressionAtomContext.prototype.copyFrom.call(this, ctx); + return this; +} + +MathExpressionAtomContext.prototype = Object.create(ExpressionAtomContext.prototype); +MathExpressionAtomContext.prototype.constructor = MathExpressionAtomContext; + +FlinkSqlParserParser.MathExpressionAtomContext = MathExpressionAtomContext; + +MathExpressionAtomContext.prototype.mathOperator = function() { + return this.getTypedRuleContext(MathOperatorContext,0); +}; + +MathExpressionAtomContext.prototype.expressionAtom = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(ExpressionAtomContext); + } else { + return this.getTypedRuleContext(ExpressionAtomContext,i); + } +}; +MathExpressionAtomContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterMathExpressionAtom(this); + } +}; + +MathExpressionAtomContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitMathExpressionAtom(this); + } +}; + +MathExpressionAtomContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitMathExpressionAtom(this); + } else { + return visitor.visitChildren(this); + } +}; + + + +FlinkSqlParserParser.prototype.expressionAtom = function(_p) { + if(_p===undefined) { + _p = 0; + } + var _parentctx = this._ctx; + var _parentState = this.state; + var localctx = new ExpressionAtomContext(this, this._ctx, _parentState); + var _prevctx = localctx; + var _startState = 120; + this.enterRecursionRule(localctx, 120, FlinkSqlParserParser.RULE_expressionAtom, _p); + var _la = 0; // Token type + try { + this.enterOuterAlt(localctx, 1); + this.state = 784; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,85,this._ctx); + switch(la_) { + case 1: + localctx = new ConstantExpressionAtomContext(this, localctx); + this._ctx = localctx; + _prevctx = localctx; + + this.state = 746; + this.constant(); + break; + + case 2: + localctx = new FullColumnNameExpressionAtomContext(this, localctx); + this._ctx = localctx; + _prevctx = localctx; + this.state = 747; + this.fullColumnName(); + break; + + case 3: + localctx = new UnaryExpressionAtomContext(this, localctx); + this._ctx = localctx; + _prevctx = localctx; + this.state = 748; + this.unaryOperator(); + this.state = 749; + this.expressionAtom(8); + break; + + case 4: + localctx = new BinaryExpressionAtomContext(this, localctx); + this._ctx = localctx; + _prevctx = localctx; + this.state = 751; + this.match(FlinkSqlParserParser.BINARY); + this.state = 752; + this.expressionAtom(7); + break; + + case 5: + localctx = new NestedExpressionAtomContext(this, localctx); + this._ctx = localctx; + _prevctx = localctx; + this.state = 753; + this.match(FlinkSqlParserParser.T__4); + this.state = 754; + this.expression(0); + this.state = 759; + this._errHandler.sync(this); + _la = this._input.LA(1); + while(_la===FlinkSqlParserParser.T__2) { + this.state = 755; + this.match(FlinkSqlParserParser.T__2); + this.state = 756; + this.expression(0); + this.state = 761; + this._errHandler.sync(this); + _la = this._input.LA(1); + } + this.state = 762; + this.match(FlinkSqlParserParser.T__5); + break; + + case 6: + localctx = new NestedRowExpressionAtomContext(this, localctx); + this._ctx = localctx; + _prevctx = localctx; + this.state = 764; + this.match(FlinkSqlParserParser.ROW); + this.state = 765; + this.match(FlinkSqlParserParser.T__4); + this.state = 766; + this.expression(0); + this.state = 769; + this._errHandler.sync(this); + _la = this._input.LA(1); + do { + this.state = 767; + this.match(FlinkSqlParserParser.T__2); + this.state = 768; + this.expression(0); + this.state = 771; + this._errHandler.sync(this); + _la = this._input.LA(1); + } while(_la===FlinkSqlParserParser.T__2); + this.state = 773; + this.match(FlinkSqlParserParser.T__5); + break; + + case 7: + localctx = new ExistsExpessionAtomContext(this, localctx); + this._ctx = localctx; + _prevctx = localctx; + this.state = 775; + this.match(FlinkSqlParserParser.EXISTS); + this.state = 776; + this.match(FlinkSqlParserParser.T__4); + this.state = 777; + this.selectStatement(); + this.state = 778; + this.match(FlinkSqlParserParser.T__5); + break; + + case 8: + localctx = new SubqueryExpessionAtomContext(this, localctx); + this._ctx = localctx; + _prevctx = localctx; + this.state = 780; + this.match(FlinkSqlParserParser.T__4); + this.state = 781; + this.selectStatement(); + this.state = 782; + this.match(FlinkSqlParserParser.T__5); + break; + + } + this._ctx.stop = this._input.LT(-1); + this.state = 796; + this._errHandler.sync(this); + var _alt = this._interp.adaptivePredict(this._input,87,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 = 794; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,86,this._ctx); + switch(la_) { + case 1: + localctx = new BitExpressionAtomContext(this, new ExpressionAtomContext(this, _parentctx, _parentState)); + localctx.left = _prevctx; + this.pushNewRecursionContext(localctx, _startState, FlinkSqlParserParser.RULE_expressionAtom); + this.state = 786; + if (!( this.precpred(this._ctx, 2))) { + throw new antlr4.error.FailedPredicateException(this, "this.precpred(this._ctx, 2)"); + } + this.state = 787; + this.bitOperator(); + this.state = 788; + localctx.right = this.expressionAtom(3); + break; + + case 2: + localctx = new MathExpressionAtomContext(this, new ExpressionAtomContext(this, _parentctx, _parentState)); + localctx.left = _prevctx; + this.pushNewRecursionContext(localctx, _startState, FlinkSqlParserParser.RULE_expressionAtom); + this.state = 790; + if (!( this.precpred(this._ctx, 1))) { + throw new antlr4.error.FailedPredicateException(this, "this.precpred(this._ctx, 1)"); + } + this.state = 791; + this.mathOperator(); + this.state = 792; + localctx.right = this.expressionAtom(2); + break; + + } + } + this.state = 798; + this._errHandler.sync(this); + _alt = this._interp.adaptivePredict(this._input,87,this._ctx); + } + + } catch( error) { + if(error instanceof antlr4.error.RecognitionException) { + localctx.exception = error; + this._errHandler.reportError(this, error); + this._errHandler.recover(this, error); + } else { + throw error; + } + } finally { + this.unrollRecursionContexts(_parentctx) + } + return localctx; +}; + + +function LogicalOperatorContext(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 = FlinkSqlParserParser.RULE_logicalOperator; + return this; +} + +LogicalOperatorContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +LogicalOperatorContext.prototype.constructor = LogicalOperatorContext; + +LogicalOperatorContext.prototype.AND = function() { + return this.getToken(FlinkSqlParserParser.AND, 0); +}; + +LogicalOperatorContext.prototype.OR = function() { + return this.getToken(FlinkSqlParserParser.OR, 0); +}; + +LogicalOperatorContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterLogicalOperator(this); + } +}; + +LogicalOperatorContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitLogicalOperator(this); + } +}; + +LogicalOperatorContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitLogicalOperator(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +FlinkSqlParserParser.LogicalOperatorContext = LogicalOperatorContext; + +FlinkSqlParserParser.prototype.logicalOperator = function() { + + var localctx = new LogicalOperatorContext(this, this._ctx, this.state); + this.enterRule(localctx, 122, FlinkSqlParserParser.RULE_logicalOperator); + try { + this.state = 805; + this._errHandler.sync(this); + switch(this._input.LA(1)) { + case FlinkSqlParserParser.AND: + this.enterOuterAlt(localctx, 1); + this.state = 799; + this.match(FlinkSqlParserParser.AND); + break; + case FlinkSqlParserParser.T__6: + this.enterOuterAlt(localctx, 2); + this.state = 800; + this.match(FlinkSqlParserParser.T__6); + this.state = 801; + this.match(FlinkSqlParserParser.T__6); + break; + case FlinkSqlParserParser.OR: + this.enterOuterAlt(localctx, 3); + this.state = 802; + this.match(FlinkSqlParserParser.OR); + break; + case FlinkSqlParserParser.T__7: + this.enterOuterAlt(localctx, 4); + this.state = 803; + this.match(FlinkSqlParserParser.T__7); + this.state = 804; + this.match(FlinkSqlParserParser.T__7); + break; + default: + throw new antlr4.error.NoViableAltException(this); + } + } 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 ComparisonOperatorContext(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 = FlinkSqlParserParser.RULE_comparisonOperator; + return this; +} + +ComparisonOperatorContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +ComparisonOperatorContext.prototype.constructor = ComparisonOperatorContext; + + +ComparisonOperatorContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterComparisonOperator(this); + } +}; + +ComparisonOperatorContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitComparisonOperator(this); + } +}; + +ComparisonOperatorContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitComparisonOperator(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +FlinkSqlParserParser.ComparisonOperatorContext = ComparisonOperatorContext; + +FlinkSqlParserParser.prototype.comparisonOperator = function() { + + var localctx = new ComparisonOperatorContext(this, this._ctx, this.state); + this.enterRule(localctx, 124, FlinkSqlParserParser.RULE_comparisonOperator); + try { + this.state = 821; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,89,this._ctx); + switch(la_) { + case 1: + this.enterOuterAlt(localctx, 1); + this.state = 807; + this.match(FlinkSqlParserParser.T__8); + break; + + case 2: + this.enterOuterAlt(localctx, 2); + this.state = 808; + this.match(FlinkSqlParserParser.T__9); + break; + + case 3: + this.enterOuterAlt(localctx, 3); + this.state = 809; + this.match(FlinkSqlParserParser.T__10); + break; + + case 4: + this.enterOuterAlt(localctx, 4); + this.state = 810; + this.match(FlinkSqlParserParser.T__10); + this.state = 811; + this.match(FlinkSqlParserParser.T__8); + break; + + case 5: + this.enterOuterAlt(localctx, 5); + this.state = 812; + this.match(FlinkSqlParserParser.T__9); + this.state = 813; + this.match(FlinkSqlParserParser.T__8); + break; + + case 6: + this.enterOuterAlt(localctx, 6); + this.state = 814; + this.match(FlinkSqlParserParser.T__10); + this.state = 815; + this.match(FlinkSqlParserParser.T__9); + break; + + case 7: + this.enterOuterAlt(localctx, 7); + this.state = 816; + this.match(FlinkSqlParserParser.T__3); + this.state = 817; + this.match(FlinkSqlParserParser.T__8); + break; + + case 8: + this.enterOuterAlt(localctx, 8); + this.state = 818; + this.match(FlinkSqlParserParser.T__10); + this.state = 819; + this.match(FlinkSqlParserParser.T__8); + this.state = 820; + this.match(FlinkSqlParserParser.T__9); + 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 BitOperatorContext(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 = FlinkSqlParserParser.RULE_bitOperator; + return this; +} + +BitOperatorContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +BitOperatorContext.prototype.constructor = BitOperatorContext; + + +BitOperatorContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterBitOperator(this); + } +}; + +BitOperatorContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitBitOperator(this); + } +}; + +BitOperatorContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitBitOperator(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +FlinkSqlParserParser.BitOperatorContext = BitOperatorContext; + +FlinkSqlParserParser.prototype.bitOperator = function() { + + var localctx = new BitOperatorContext(this, this._ctx, this.state); + this.enterRule(localctx, 126, FlinkSqlParserParser.RULE_bitOperator); + try { + this.state = 830; + this._errHandler.sync(this); + switch(this._input.LA(1)) { + case FlinkSqlParserParser.T__10: + this.enterOuterAlt(localctx, 1); + this.state = 823; + this.match(FlinkSqlParserParser.T__10); + this.state = 824; + this.match(FlinkSqlParserParser.T__10); + break; + case FlinkSqlParserParser.T__9: + this.enterOuterAlt(localctx, 2); + this.state = 825; + this.match(FlinkSqlParserParser.T__9); + this.state = 826; + this.match(FlinkSqlParserParser.T__9); + break; + case FlinkSqlParserParser.T__6: + this.enterOuterAlt(localctx, 3); + this.state = 827; + this.match(FlinkSqlParserParser.T__6); + break; + case FlinkSqlParserParser.T__11: + this.enterOuterAlt(localctx, 4); + this.state = 828; + this.match(FlinkSqlParserParser.T__11); + break; + case FlinkSqlParserParser.T__7: + this.enterOuterAlt(localctx, 5); + this.state = 829; + this.match(FlinkSqlParserParser.T__7); + break; + default: + throw new antlr4.error.NoViableAltException(this); + } + } 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 MathOperatorContext(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 = FlinkSqlParserParser.RULE_mathOperator; + return this; +} + +MathOperatorContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +MathOperatorContext.prototype.constructor = MathOperatorContext; + +MathOperatorContext.prototype.DIV = function() { + return this.getToken(FlinkSqlParserParser.DIV, 0); +}; + +MathOperatorContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterMathOperator(this); + } +}; + +MathOperatorContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitMathOperator(this); + } +}; + +MathOperatorContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitMathOperator(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +FlinkSqlParserParser.MathOperatorContext = MathOperatorContext; + +FlinkSqlParserParser.prototype.mathOperator = function() { + + var localctx = new MathOperatorContext(this, this._ctx, this.state); + this.enterRule(localctx, 128, FlinkSqlParserParser.RULE_mathOperator); + var _la = 0; // Token type + try { + this.enterOuterAlt(localctx, 1); + this.state = 832; + _la = this._input.LA(1); + if(!((((_la) & ~0x1f) == 0 && ((1 << _la) & ((1 << FlinkSqlParserParser.T__1) | (1 << FlinkSqlParserParser.T__12) | (1 << FlinkSqlParserParser.T__13) | (1 << FlinkSqlParserParser.T__14) | (1 << FlinkSqlParserParser.T__15) | (1 << FlinkSqlParserParser.T__16))) !== 0) || _la===FlinkSqlParserParser.DIV)) { + this._errHandler.recoverInline(this); + } + else { + this._errHandler.reportMatch(this); + this.consume(); + } + } 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 UnaryOperatorContext(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 = FlinkSqlParserParser.RULE_unaryOperator; + return this; +} + +UnaryOperatorContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +UnaryOperatorContext.prototype.constructor = UnaryOperatorContext; + +UnaryOperatorContext.prototype.NOT = function() { + return this.getToken(FlinkSqlParserParser.NOT, 0); +}; + +UnaryOperatorContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterUnaryOperator(this); + } +}; + +UnaryOperatorContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitUnaryOperator(this); + } +}; + +UnaryOperatorContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitUnaryOperator(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +FlinkSqlParserParser.UnaryOperatorContext = UnaryOperatorContext; + +FlinkSqlParserParser.prototype.unaryOperator = function() { + + var localctx = new UnaryOperatorContext(this, this._ctx, this.state); + this.enterRule(localctx, 130, FlinkSqlParserParser.RULE_unaryOperator); + var _la = 0; // Token type + try { + this.enterOuterAlt(localctx, 1); + this.state = 834; + _la = this._input.LA(1); + if(!((((_la) & ~0x1f) == 0 && ((1 << _la) & ((1 << FlinkSqlParserParser.T__3) | (1 << FlinkSqlParserParser.T__14) | (1 << FlinkSqlParserParser.T__15) | (1 << FlinkSqlParserParser.T__17) | (1 << FlinkSqlParserParser.NOT))) !== 0))) { + this._errHandler.recoverInline(this); + } + else { + this._errHandler.reportMatch(this); + this.consume(); + } + } 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 FullColumnNameContext(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 = FlinkSqlParserParser.RULE_fullColumnName; + return this; +} + +FullColumnNameContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +FullColumnNameContext.prototype.constructor = FullColumnNameContext; + +FullColumnNameContext.prototype.uid = function() { + return this.getTypedRuleContext(UidContext,0); +}; + +FullColumnNameContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterFullColumnName(this); + } +}; + +FullColumnNameContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitFullColumnName(this); + } +}; + +FullColumnNameContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitFullColumnName(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +FlinkSqlParserParser.FullColumnNameContext = FullColumnNameContext; + +FlinkSqlParserParser.prototype.fullColumnName = function() { + + var localctx = new FullColumnNameContext(this, this._ctx, this.state); + this.enterRule(localctx, 132, FlinkSqlParserParser.RULE_fullColumnName); + try { + this.enterOuterAlt(localctx, 1); + this.state = 836; + this.uid(); + } 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 ConstantContext(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 = FlinkSqlParserParser.RULE_constant; + return this; +} + +ConstantContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +ConstantContext.prototype.constructor = ConstantContext; + +ConstantContext.prototype.stringLiteral = function() { + return this.getTypedRuleContext(StringLiteralContext,0); +}; + +ConstantContext.prototype.decimalLiteral = function() { + return this.getTypedRuleContext(DecimalLiteralContext,0); +}; + +ConstantContext.prototype.booleanLiteral = function() { + return this.getTypedRuleContext(BooleanLiteralContext,0); +}; + +ConstantContext.prototype.REAL_LITERAL = function() { + return this.getToken(FlinkSqlParserParser.REAL_LITERAL, 0); +}; + +ConstantContext.prototype.BIT_STRING = function() { + return this.getToken(FlinkSqlParserParser.BIT_STRING, 0); +}; + +ConstantContext.prototype.NULL = function() { + return this.getToken(FlinkSqlParserParser.NULL, 0); +}; + +ConstantContext.prototype.NOT = function() { + return this.getToken(FlinkSqlParserParser.NOT, 0); +}; + +ConstantContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterConstant(this); + } +}; + +ConstantContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitConstant(this); + } +}; + +ConstantContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitConstant(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +FlinkSqlParserParser.ConstantContext = ConstantContext; + +FlinkSqlParserParser.prototype.constant = function() { + + var localctx = new ConstantContext(this, this._ctx, this.state); + this.enterRule(localctx, 134, FlinkSqlParserParser.RULE_constant); + var _la = 0; // Token type + try { + this.state = 849; + this._errHandler.sync(this); + switch(this._input.LA(1)) { + case FlinkSqlParserParser.STRING_LITERAL: + this.enterOuterAlt(localctx, 1); + this.state = 838; + this.stringLiteral(); + break; + case FlinkSqlParserParser.ZERO_DECIMAL: + case FlinkSqlParserParser.ONE_DECIMAL: + case FlinkSqlParserParser.TWO_DECIMAL: + case FlinkSqlParserParser.DECIMAL_LITERAL: + this.enterOuterAlt(localctx, 2); + this.state = 839; + this.decimalLiteral(); + break; + case FlinkSqlParserParser.T__15: + this.enterOuterAlt(localctx, 3); + this.state = 840; + this.match(FlinkSqlParserParser.T__15); + this.state = 841; + this.decimalLiteral(); + break; + case FlinkSqlParserParser.TRUE: + case FlinkSqlParserParser.FALSE: + this.enterOuterAlt(localctx, 4); + this.state = 842; + this.booleanLiteral(); + break; + case FlinkSqlParserParser.REAL_LITERAL: + this.enterOuterAlt(localctx, 5); + this.state = 843; + this.match(FlinkSqlParserParser.REAL_LITERAL); + break; + case FlinkSqlParserParser.BIT_STRING: + this.enterOuterAlt(localctx, 6); + this.state = 844; + this.match(FlinkSqlParserParser.BIT_STRING); + break; + case FlinkSqlParserParser.NOT: + case FlinkSqlParserParser.NULL: + this.enterOuterAlt(localctx, 7); + this.state = 846; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===FlinkSqlParserParser.NOT) { + this.state = 845; + this.match(FlinkSqlParserParser.NOT); + } + + this.state = 848; + this.match(FlinkSqlParserParser.NULL); + break; + default: + throw new antlr4.error.NoViableAltException(this); + } + } 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 StringLiteralContext(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 = FlinkSqlParserParser.RULE_stringLiteral; + return this; +} + +StringLiteralContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +StringLiteralContext.prototype.constructor = StringLiteralContext; + +StringLiteralContext.prototype.STRING_LITERAL = function() { + return this.getToken(FlinkSqlParserParser.STRING_LITERAL, 0); +}; + +StringLiteralContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterStringLiteral(this); + } +}; + +StringLiteralContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitStringLiteral(this); + } +}; + +StringLiteralContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitStringLiteral(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +FlinkSqlParserParser.StringLiteralContext = StringLiteralContext; + +FlinkSqlParserParser.prototype.stringLiteral = function() { + + var localctx = new StringLiteralContext(this, this._ctx, this.state); + this.enterRule(localctx, 136, FlinkSqlParserParser.RULE_stringLiteral); + try { + this.enterOuterAlt(localctx, 1); + this.state = 851; + this.match(FlinkSqlParserParser.STRING_LITERAL); + } 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 DecimalLiteralContext(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 = FlinkSqlParserParser.RULE_decimalLiteral; + return this; +} + +DecimalLiteralContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +DecimalLiteralContext.prototype.constructor = DecimalLiteralContext; + +DecimalLiteralContext.prototype.DECIMAL_LITERAL = function() { + return this.getToken(FlinkSqlParserParser.DECIMAL_LITERAL, 0); +}; + +DecimalLiteralContext.prototype.ZERO_DECIMAL = function() { + return this.getToken(FlinkSqlParserParser.ZERO_DECIMAL, 0); +}; + +DecimalLiteralContext.prototype.ONE_DECIMAL = function() { + return this.getToken(FlinkSqlParserParser.ONE_DECIMAL, 0); +}; + +DecimalLiteralContext.prototype.TWO_DECIMAL = function() { + return this.getToken(FlinkSqlParserParser.TWO_DECIMAL, 0); +}; + +DecimalLiteralContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterDecimalLiteral(this); + } +}; + +DecimalLiteralContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitDecimalLiteral(this); + } +}; + +DecimalLiteralContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitDecimalLiteral(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +FlinkSqlParserParser.DecimalLiteralContext = DecimalLiteralContext; + +FlinkSqlParserParser.prototype.decimalLiteral = function() { + + var localctx = new DecimalLiteralContext(this, this._ctx, this.state); + this.enterRule(localctx, 138, FlinkSqlParserParser.RULE_decimalLiteral); + var _la = 0; // Token type + try { + this.enterOuterAlt(localctx, 1); + this.state = 853; + _la = this._input.LA(1); + if(!(((((_la - 299)) & ~0x1f) == 0 && ((1 << (_la - 299)) & ((1 << (FlinkSqlParserParser.ZERO_DECIMAL - 299)) | (1 << (FlinkSqlParserParser.ONE_DECIMAL - 299)) | (1 << (FlinkSqlParserParser.TWO_DECIMAL - 299)) | (1 << (FlinkSqlParserParser.DECIMAL_LITERAL - 299)))) !== 0))) { + this._errHandler.recoverInline(this); + } + else { + this._errHandler.reportMatch(this); + this.consume(); + } + } 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 BooleanLiteralContext(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 = FlinkSqlParserParser.RULE_booleanLiteral; + return this; +} + +BooleanLiteralContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +BooleanLiteralContext.prototype.constructor = BooleanLiteralContext; + +BooleanLiteralContext.prototype.TRUE = function() { + return this.getToken(FlinkSqlParserParser.TRUE, 0); +}; + +BooleanLiteralContext.prototype.FALSE = function() { + return this.getToken(FlinkSqlParserParser.FALSE, 0); +}; + +BooleanLiteralContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterBooleanLiteral(this); + } +}; + +BooleanLiteralContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitBooleanLiteral(this); + } +}; + +BooleanLiteralContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitBooleanLiteral(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +FlinkSqlParserParser.BooleanLiteralContext = BooleanLiteralContext; + +FlinkSqlParserParser.prototype.booleanLiteral = function() { + + var localctx = new BooleanLiteralContext(this, this._ctx, this.state); + this.enterRule(localctx, 140, FlinkSqlParserParser.RULE_booleanLiteral); + var _la = 0; // Token type + try { + this.enterOuterAlt(localctx, 1); + this.state = 855; + _la = this._input.LA(1); + if(!(_la===FlinkSqlParserParser.TRUE || _la===FlinkSqlParserParser.FALSE)) { + this._errHandler.recoverInline(this); + } + else { + this._errHandler.reportMatch(this); + this.consume(); + } + } 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; +}; + + +FlinkSqlParserParser.prototype.sempred = function(localctx, ruleIndex, predIndex) { + switch(ruleIndex) { + case 30: + return this.tableExpression_sempred(localctx, predIndex); + case 58: + return this.expression_sempred(localctx, predIndex); + case 59: + return this.predicate_sempred(localctx, predIndex); + case 60: + return this.expressionAtom_sempred(localctx, predIndex); + default: + throw "No predicate with index:" + ruleIndex; + } +}; + +FlinkSqlParserParser.prototype.tableExpression_sempred = function(localctx, predIndex) { + switch(predIndex) { + case 0: + return this.precpred(this._ctx, 1); + default: + throw "No predicate with index:" + predIndex; + } +}; + +FlinkSqlParserParser.prototype.expression_sempred = function(localctx, predIndex) { + switch(predIndex) { + case 1: + return this.precpred(this._ctx, 3); + default: + throw "No predicate with index:" + predIndex; + } +}; + +FlinkSqlParserParser.prototype.predicate_sempred = function(localctx, predIndex) { + switch(predIndex) { + case 2: + return this.precpred(this._ctx, 5); + case 3: + return this.precpred(this._ctx, 3); + case 4: + return this.precpred(this._ctx, 2); + case 5: + return this.precpred(this._ctx, 6); + case 6: + return this.precpred(this._ctx, 4); + default: + throw "No predicate with index:" + predIndex; + } +}; + +FlinkSqlParserParser.prototype.expressionAtom_sempred = function(localctx, predIndex) { + switch(predIndex) { + case 7: + return this.precpred(this._ctx, 2); + case 8: + return this.precpred(this._ctx, 1); + default: + throw "No predicate with index:" + predIndex; + } +}; + + exports.FlinkSqlParserParser = FlinkSqlParserParser; diff --git a/src/lib/flinksql/FlinkSqlParserVisitor.js b/src/lib/flinksql/FlinkSqlParserVisitor.js index 0073559..8f5d982 100644 --- a/src/lib/flinksql/FlinkSqlParserVisitor.js +++ b/src/lib/flinksql/FlinkSqlParserVisitor.js @@ -168,12 +168,126 @@ FlinkSqlParserVisitor.prototype.visitDropFunction = function(ctx) { }; +// Visit a parse tree produced by FlinkSqlParserParser#queryStatement. +FlinkSqlParserVisitor.prototype.visitQueryStatement = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by FlinkSqlParserParser#selectStatements. +FlinkSqlParserVisitor.prototype.visitSelectStatements = function(ctx) { + return this.visitChildren(ctx); +}; + + // Visit a parse tree produced by FlinkSqlParserParser#selectStatement. FlinkSqlParserVisitor.prototype.visitSelectStatement = function(ctx) { return this.visitChildren(ctx); }; +// Visit a parse tree produced by FlinkSqlParserParser#projectItemDefinition. +FlinkSqlParserVisitor.prototype.visitProjectItemDefinition = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by FlinkSqlParserParser#tableExpression. +FlinkSqlParserVisitor.prototype.visitTableExpression = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by FlinkSqlParserParser#tableReference. +FlinkSqlParserVisitor.prototype.visitTableReference = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by FlinkSqlParserParser#matchRecognize. +FlinkSqlParserVisitor.prototype.visitMatchRecognize = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by FlinkSqlParserParser#tablePrimary. +FlinkSqlParserVisitor.prototype.visitTablePrimary = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by FlinkSqlParserParser#dynamicTableOptions. +FlinkSqlParserVisitor.prototype.visitDynamicTableOptions = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by FlinkSqlParserParser#joinCondition. +FlinkSqlParserVisitor.prototype.visitJoinCondition = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by FlinkSqlParserParser#booleanExpression. +FlinkSqlParserVisitor.prototype.visitBooleanExpression = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by FlinkSqlParserParser#groupItemDefinition. +FlinkSqlParserVisitor.prototype.visitGroupItemDefinition = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by FlinkSqlParserParser#selectWithoutFromDefinition. +FlinkSqlParserVisitor.prototype.visitSelectWithoutFromDefinition = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by FlinkSqlParserParser#projectItem. +FlinkSqlParserVisitor.prototype.visitProjectItem = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by FlinkSqlParserParser#queryOrderByDefinition. +FlinkSqlParserVisitor.prototype.visitQueryOrderByDefinition = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by FlinkSqlParserParser#orderItemDefition. +FlinkSqlParserVisitor.prototype.visitOrderItemDefition = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by FlinkSqlParserParser#queryLimitDefinition. +FlinkSqlParserVisitor.prototype.visitQueryLimitDefinition = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by FlinkSqlParserParser#countDefinition. +FlinkSqlParserVisitor.prototype.visitCountDefinition = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by FlinkSqlParserParser#queryOffsetDefinition. +FlinkSqlParserVisitor.prototype.visitQueryOffsetDefinition = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by FlinkSqlParserParser#queryFetchDefinition. +FlinkSqlParserVisitor.prototype.visitQueryFetchDefinition = function(ctx) { + return this.visitChildren(ctx); +}; + + // Visit a parse tree produced by FlinkSqlParserParser#insertStatement. FlinkSqlParserVisitor.prototype.visitInsertStatement = function(ctx) { return this.visitChildren(ctx); @@ -198,6 +312,12 @@ FlinkSqlParserVisitor.prototype.visitValuesRowDefinition = function(ctx) { }; +// Visit a parse tree produced by FlinkSqlParserParser#allValueDifinition. +FlinkSqlParserVisitor.prototype.visitAllValueDifinition = function(ctx) { + return this.visitChildren(ctx); +}; + + // Visit a parse tree produced by FlinkSqlParserParser#uidList. FlinkSqlParserVisitor.prototype.visitUidList = function(ctx) { return this.visitChildren(ctx); @@ -234,5 +354,191 @@ FlinkSqlParserVisitor.prototype.visitKeyValueDefinition = function(ctx) { }; +// Visit a parse tree produced by FlinkSqlParserParser#expressions. +FlinkSqlParserVisitor.prototype.visitExpressions = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by FlinkSqlParserParser#isExpression. +FlinkSqlParserVisitor.prototype.visitIsExpression = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by FlinkSqlParserParser#notExpression. +FlinkSqlParserVisitor.prototype.visitNotExpression = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by FlinkSqlParserParser#logicalExpression. +FlinkSqlParserVisitor.prototype.visitLogicalExpression = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by FlinkSqlParserParser#predicateExpression. +FlinkSqlParserVisitor.prototype.visitPredicateExpression = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by FlinkSqlParserParser#expressionAtomPredicate. +FlinkSqlParserVisitor.prototype.visitExpressionAtomPredicate = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by FlinkSqlParserParser#inPredicate. +FlinkSqlParserVisitor.prototype.visitInPredicate = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by FlinkSqlParserParser#subqueryComparasionPredicate. +FlinkSqlParserVisitor.prototype.visitSubqueryComparasionPredicate = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by FlinkSqlParserParser#betweenPredicate. +FlinkSqlParserVisitor.prototype.visitBetweenPredicate = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by FlinkSqlParserParser#binaryComparasionPredicate. +FlinkSqlParserVisitor.prototype.visitBinaryComparasionPredicate = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by FlinkSqlParserParser#likePredicate. +FlinkSqlParserVisitor.prototype.visitLikePredicate = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by FlinkSqlParserParser#unaryExpressionAtom. +FlinkSqlParserVisitor.prototype.visitUnaryExpressionAtom = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by FlinkSqlParserParser#subqueryExpessionAtom. +FlinkSqlParserVisitor.prototype.visitSubqueryExpessionAtom = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by FlinkSqlParserParser#existsExpessionAtom. +FlinkSqlParserVisitor.prototype.visitExistsExpessionAtom = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by FlinkSqlParserParser#constantExpressionAtom. +FlinkSqlParserVisitor.prototype.visitConstantExpressionAtom = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by FlinkSqlParserParser#binaryExpressionAtom. +FlinkSqlParserVisitor.prototype.visitBinaryExpressionAtom = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by FlinkSqlParserParser#fullColumnNameExpressionAtom. +FlinkSqlParserVisitor.prototype.visitFullColumnNameExpressionAtom = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by FlinkSqlParserParser#bitExpressionAtom. +FlinkSqlParserVisitor.prototype.visitBitExpressionAtom = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by FlinkSqlParserParser#nestedExpressionAtom. +FlinkSqlParserVisitor.prototype.visitNestedExpressionAtom = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by FlinkSqlParserParser#nestedRowExpressionAtom. +FlinkSqlParserVisitor.prototype.visitNestedRowExpressionAtom = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by FlinkSqlParserParser#mathExpressionAtom. +FlinkSqlParserVisitor.prototype.visitMathExpressionAtom = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by FlinkSqlParserParser#logicalOperator. +FlinkSqlParserVisitor.prototype.visitLogicalOperator = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by FlinkSqlParserParser#comparisonOperator. +FlinkSqlParserVisitor.prototype.visitComparisonOperator = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by FlinkSqlParserParser#bitOperator. +FlinkSqlParserVisitor.prototype.visitBitOperator = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by FlinkSqlParserParser#mathOperator. +FlinkSqlParserVisitor.prototype.visitMathOperator = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by FlinkSqlParserParser#unaryOperator. +FlinkSqlParserVisitor.prototype.visitUnaryOperator = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by FlinkSqlParserParser#fullColumnName. +FlinkSqlParserVisitor.prototype.visitFullColumnName = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by FlinkSqlParserParser#constant. +FlinkSqlParserVisitor.prototype.visitConstant = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by FlinkSqlParserParser#stringLiteral. +FlinkSqlParserVisitor.prototype.visitStringLiteral = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by FlinkSqlParserParser#decimalLiteral. +FlinkSqlParserVisitor.prototype.visitDecimalLiteral = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by FlinkSqlParserParser#booleanLiteral. +FlinkSqlParserVisitor.prototype.visitBooleanLiteral = function(ctx) { + return this.visitChildren(ctx); +}; + + exports.FlinkSqlParserVisitor = FlinkSqlParserVisitor; \ No newline at end of file diff --git a/test/parser/flinksql/syntax.test.ts b/test/parser/flinksql/syntax.test.ts index 40de220..bde5113 100644 --- a/test/parser/flinksql/syntax.test.ts +++ b/test/parser/flinksql/syntax.test.ts @@ -69,4 +69,10 @@ describe('FlinkSQL Syntax Tests', () => { const result = parser.validate(sql); expect(result.length).toBe(0); }); + test('Test simple Select Statement', () => { + const sql = ` SELECT product, amount FROM Orders;`; + const result = parser.validate(sql); + console.log(result); + expect(result.length).toBe(0); + }); });