diff --git a/src/grammar/flinksql/FlinkSqlLexer.g4 b/src/grammar/flinksql/FlinkSqlLexer.g4 deleted file mode 100644 index 9f5e5b1..0000000 --- a/src/grammar/flinksql/FlinkSqlLexer.g4 +++ /dev/null @@ -1,355 +0,0 @@ -lexer grammar FlinkSqlLexer; - -channels { MYSQLCOMMENT } - -// SKIP - -SPACE: [ \t\r\n]+ -> channel(HIDDEN); -SPEC_MYSQL_COMMENT: '/*!' .+? '*/' -> channel(MYSQLCOMMENT); -COMMENT_INPUT: '/*' .*? '*/' -> channel(HIDDEN); -LINE_COMMENT: ( - ('-- ' | '#') ~[\r\n]* ('\r'? '\n' | EOF) - | '--' ('\r'? '\n' | EOF) - ) -> channel(HIDDEN); - - -// Common Keywords - -SELECT: 'SELECT'; -FROM: 'FROM'; -ADD: 'ADD'; -AS: 'AS'; -ALL: 'ALL'; -ANY: 'ANY'; -DISTINCT: 'DISTINCT'; -WHERE: 'WHERE'; -GROUP: 'GROUP'; -BY: 'BY'; -GROUPING: 'GROUPING'; -SETS: 'SETS'; -CUBE: 'CUBE'; -ROLLUP: 'ROLLUP'; -ORDER: 'ORDER'; -HAVING: 'HAVING'; -LIMIT: 'LIMIT'; -AT: 'AT'; -OR: 'OR'; -AND: 'AND'; -IN: 'IN'; -NOT: 'NOT'; -NO: 'NO'; -EXISTS: 'EXISTS'; -BETWEEN: 'BETWEEN'; -LIKE: 'LIKE'; -RLIKE: 'RLIKE'; -IS: 'IS'; -TRUE: 'TRUE'; -FALSE: 'FALSE'; -NULLS: 'NULLS'; -ASC: 'ASC'; -DESC: 'DESC'; -FOR: 'FOR'; -INTERVAL: 'INTERVAL'; -CASE: 'CASE'; -WHEN: 'WHEN'; -THEN: 'THEN'; -ELSE: 'ELSE'; -END: 'END'; -JOIN: 'JOIN'; -CROSS: 'CROSS'; -OUTER: 'OUTER'; -INNER: 'INNER'; -LEFT: 'LEFT'; -SEMI: 'SEMI'; -RIGHT: 'RIGHT'; -FULL: 'FULL'; -NATURAL: 'NATURAL'; -ON: 'ON'; -PIVOT: 'PIVOT'; -LATERAL: 'LATERAL'; -WINDOW: 'WINDOW'; -OVER: 'OVER'; -PARTITION: 'PARTITION'; -RANGE: 'RANGE'; -ROWS: 'ROWS'; -UNBOUNDED: 'UNBOUNDED'; -PRECEDING: 'PRECEDING'; -FOLLOWING: 'FOLLOWING'; -CURRENT: 'CURRENT'; -FIRST: 'FIRST'; -AFTER: 'AFTER'; -LAST: 'LAST'; -WITH: 'WITH'; -VALUES: 'VALUES'; -CREATE: 'CREATE'; -TABLE: 'TABLE'; -DIRECTORY: 'DIRECTORY'; -VIEW: 'VIEW'; -REPLACE: 'REPLACE'; -INSERT: 'INSERT'; -DELETE: 'DELETE'; -INTO: 'INTO'; -DESCRIBE: 'DESCRIBE'; -EXPLAIN: 'EXPLAIN'; -FORMAT: 'FORMAT'; -LOGICAL: 'LOGICAL'; -CODEGEN: 'CODEGEN'; -COST: 'COST'; -CAST: 'CAST'; -SHOW: 'SHOW'; -TABLES: 'TABLES'; -COLUMNS: 'COLUMNS'; -COLUMN: 'COLUMN'; -USE: 'USE'; -PARTITIONS: 'PARTITIONS'; -FUNCTIONS: 'FUNCTIONS'; -DROP: 'DROP'; -UNION: 'UNION'; -EXCEPT: 'EXCEPT'; -SETMINUS: 'SETMINUS'; -INTERSECT: 'INTERSECT'; -TO: 'TO'; -TABLESAMPLE: 'TABLESAMPLE'; -STRATIFY: 'STRATIFY'; -ALTER: 'ALTER'; -RENAME: 'RENAME'; -STRUCT: 'STRUCT'; -COMMENT: 'COMMENT'; -SET: 'SET'; -RESET: 'RESET'; -DATA: 'DATA'; -START: 'START'; -TRANSACTION: 'TRANSACTION'; -COMMIT: 'COMMIT'; -ROLLBACK: 'ROLLBACK'; -MACRO: 'MACRO'; -IGNORE: 'IGNORE'; -BOTH: 'BOTH'; -LEADING: 'LEADING'; -TRAILING: 'TRAILING'; -IF: 'IF'; -POSITION: 'POSITION'; -EXTRACT: 'EXTRACT'; -EQ: 'EQ'; -NSEQ: 'NSEQ'; -NEQ: 'NEQ'; -NEQJ: 'NEQJ'; -LT: 'LT'; -LTE: 'LTE'; -GT: 'GT'; -GTE: 'GTE'; -PLUS: 'PLUS'; -MINUS: 'MINUS'; -ASTERISK: 'ASTERISK'; -SLASH: 'SLASH'; -PERCENT: 'PERCENT'; -DIV: 'DIV'; -TILDE: 'TILDE'; -AMPERSAND: 'AMPERSAND'; -PIPE: 'PIPE'; -CONCAT_PIPE: 'CONCAT_PIPE'; -HAT: 'HAT'; -PERCENTLIT: 'PERCENTLIT'; -BUCKET: 'BUCKET'; -OUT: 'OUT'; -OF: 'OF'; -SORT: 'SORT'; -CLUSTER: 'CLUSTER'; -DISTRIBUTE: 'DISTRIBUTE'; -OVERWRITE: 'OVERWRITE'; -TRANSFORM: 'TRANSFORM'; -REDUCE: 'REDUCE'; -USING: 'USING'; -SERDE: 'SERDE'; -SERDEPROPERTIES: 'SERDEPROPERTIES'; -RECORDREADER: 'RECORDREADER'; -RECORDWRITER: 'RECORDWRITER'; -DELIMITED: 'DELIMITED'; -FIELDS: 'FIELDS'; -TERMINATED: 'TERMINATED'; -COLLECTION: 'COLLECTION'; -ITEMS: 'ITEMS'; -KEYS: 'KEYS'; -ESCAPED: 'ESCAPED'; -LINES: 'LINES'; -SEPARATED: 'SEPARATED'; -FUNCTION: 'FUNCTION'; -EXTENDED: 'EXTENDED'; -REFRESH: 'REFRESH'; -CLEAR: 'CLEAR'; -CACHE: 'CACHE'; -UNCACHE: 'UNCACHE'; -LAZY: 'LAZY'; -FORMATTED: 'FORMATTED'; -GLOBAL: 'GLOBAL'; -TEMPORARY: 'TEMPORARY'; -OPTIONS: 'OPTIONS'; -UNSET: 'UNSET'; -TBLPROPERTIES: 'TBLPROPERTIES'; -DBPROPERTIES: 'DBPROPERTIES'; -BUCKETS: 'BUCKETS'; -SKEWED: 'SKEWED'; -STORED: 'STORED'; -DIRECTORIES: 'DIRECTORIES'; -LOCATION: 'LOCATION'; -EXCHANGE: 'EXCHANGE'; -ARCHIVE: 'ARCHIVE'; -UNARCHIVE: 'UNARCHIVE'; -FILEFORMAT: 'FILEFORMAT'; -TOUCH: 'TOUCH'; -COMPACT: 'COMPACT'; -CONCATENATE: 'CONCATENATE'; -CHANGE: 'CHANGE'; -CASCADE: 'CASCADE'; -RESTRICT: 'RESTRICT'; -CLUSTERED: 'CLUSTERED'; -SORTED: 'SORTED'; -PURGE: 'PURGE'; -INPUTFORMAT: 'INPUTFORMAT'; -OUTPUTFORMAT: 'OUTPUTFORMAT'; -DATABASE: 'DATABASE'; -DATABASES: 'DATABASES'; -DFS: 'DFS'; -TRUNCATE: 'TRUNCATE'; -ANALYZE: 'ANALYZE'; -COMPUTE: 'COMPUTE'; -LIST: 'LIST'; -STATISTICS: 'STATISTICS'; -PARTITIONED: 'PARTITIONED'; -EXTERNAL: 'EXTERNAL'; -DEFINED: 'DEFINED'; -REVOKE: 'REVOKE'; -GRANT: 'GRANT'; -LOCK: 'LOCK'; -UNLOCK: 'UNLOCK'; -MSCK: 'MSCK'; -REPAIR: 'REPAIR'; -RECOVER: 'RECOVER'; -EXPORT: 'EXPORT'; -IMPORT: 'IMPORT'; -LOAD: 'LOAD'; -ROLE: 'ROLE'; -ROLES: 'ROLES'; -COMPACTIONS: 'COMPACTIONS'; -PRINCIPALS: 'PRINCIPALS'; -TRANSACTIONS: 'TRANSACTIONS'; -INDEX: 'INDEX'; -INDEXES: 'INDEXES'; -LOCKS: 'LOCKS'; -OPTION: 'OPTION'; -ANTI: 'ANTI'; -LOCAL: 'LOCAL'; -INPATH: 'INPATH'; -WATERMARK: 'WATERMARK'; -UNNEST: 'UNNEST'; -MATCH_RECOGNIZE: 'MATCH_RECOGNIZE'; -MEASURES: 'MEASURES'; -ONE: 'ONE'; -PER: 'PER'; -MATCH: 'MATCH'; -SKIP1: 'SKIP1'; -NEXT: 'NEXT'; -PAST: 'PAST'; -PATTERN: 'PATTERN'; -WITHIN: 'WITHIN'; -DEFINE: 'DEFINE'; -BIGINT_LITERAL: 'BIGINT_LITERAL'; -SMALLINT_LITERAL: 'SMALLINT_LITERAL'; -TINYINT_LITERAL: 'TINYINT_LITERAL'; -INTEGER_VALUE: 'INTEGER_VALUE'; -DECIMAL_VALUE: 'DECIMAL_VALUE'; -DOUBLE_LITERAL: 'DOUBLE_LITERAL'; -BIGDECIMAL_LITERAL: 'BIGDECIMAL_LITERAL'; -IDENTIFIER: 'IDENTIFIER'; -BACKQUOTED_IDENTIFIER: 'BACKQUOTED_IDENTIFIER'; -SIMPLE_COMMENT: 'SIMPLE_COMMENT'; -BRACKETED_EMPTY_COMMENT: 'BRACKETED_EMPTY_COMMENT'; -BRACKETED_COMMENT: 'BRACKETED_COMMENT'; -WS: 'WS'; -UNRECOGNIZED: 'UNRECOGNIZED'; -REVERSE_QUOTE_ID: '`' ~'`'+ '`'; -DOUBLE_QUOTE_ID: '"' ~'"'+ '"'; -DOT_ID: '.' ID_LITERAL; -ID: ID_LITERAL; -SYSTEM: 'SYSTEM'; - - -// DATA TYPE Keywords - -STRING: 'STRING'; -ARRAY: 'ARRAY'; -MAP: 'MAP'; -CHAR: 'CHAR'; -VARCHAR: 'VARCHAR'; -BINARY: 'BINARY'; -VARBINARY: 'VARBINARY'; -BYTES: 'BYTES'; -DECIMAL: 'DECIMAL'; -TINYINT: 'TINYINT'; -SMALLINT: 'SMALLINT'; -INT: 'INT'; -BIGINT: 'BIGINT'; -FLOAT: 'FLOAT'; -DOUBLE: 'DOUBLE'; -DATE: 'DATE'; -TIME: 'TIME'; -TIMESTAMP: 'TIMESTAMP'; -MULTISET: 'MULTISET'; -BOOLEAN: 'BOOLEAN'; -RAW: 'RAW'; -ROW: 'ROW'; -NULL: 'NULL'; - - -// Operators. Comparation - -EQUAL_SYMBOL: '='; -GREATER_SYMBOL: '>'; -LESS_SYMBOL: '<'; -EXCLAMATION_SYMBOL: '!'; - - -// Operators. Bit - -BIT_NOT_OP: '~'; -BIT_OR_OP: '|'; -BIT_AND_OP: '&'; -BIT_XOR_OP: '^'; - - -// Constructors symbols - -DOT: '.'; -LS_BRACKET: '['; -RS_BRACKET: ']'; -LR_BRACKET: '('; -RR_BRACKET: ')'; -COMMA: ','; -SEMICOLON: ';'; -AT_SIGN: '@'; -ZERO_DECIMAL: '0'; -ONE_DECIMAL: '1'; -TWO_DECIMAL: '2'; -SINGLE_QUOTE_SYMB: '\''; -DOUBLE_QUOTE_SYMB: '"'; -REVERSE_QUOTE_SYMB: '`'; -COLON_SYMB: ':'; -ASTERISK_SIGN: '*'; -UNDERLINE_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; -IDENTIFIER_BASE: (DEC_LETTER | DEC_DIGIT | UNDERLINE_SIGN)+; - -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 DEC_LETTER: [A-Za-z]; -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 4738f76..60823a5 100644 --- a/src/grammar/flinksql/FlinkSqlParser.g4 +++ b/src/grammar/flinksql/FlinkSqlParser.g4 @@ -1,6 +1,7 @@ grammar FlinkSqlParser; -options { tokenVocab=FlinkSqlLexer; } +// import FlinkSqlLexer; +// options { tokenVocab=FlinkSqlLexer; } program: statement EOF; @@ -51,11 +52,11 @@ columnName ; columnType - : CHAR | VARCHAR | STRING | BINARY | VARBINARY | BYTES + : typeName=(CHAR | VARCHAR | STRING | BINARY | VARBINARY | BYTES | DECIMAL | TINYINT | SMALLINT | INT | BIGINT | FLOAT | DOUBLE | DATE | TIME | TIMESTAMP | ARRAY | MAP | MULTISET | ROW - | BOOLEAN | RAW | NULL + | BOOLEAN | RAW | NULL) ; partitionDefinition @@ -232,7 +233,7 @@ primaryExpression | POSITION '(' substr=valueExpression IN str=valueExpression ')' #position | constant #constantDefault | ASTERISK #star - // | qualifiedName '.' ASTERISK #star + // | qualifiedName '.' ASTERISK #star // | '(' namedExpression (',' namedExpression)+ ')' #rowConstructor // | '(' query ')' #subqueryExpression // | functionName '(' (setQuantifier? argument+=expression (',' argument+=expression)*)? ')' @@ -321,11 +322,11 @@ bitOperator ; mathOperator - : '*' | '/' | '%' | DIV | '+' | '-' | '--' + : '*' | SLASH_SIGN | PENCENT_SIGN | DIV | '+' | '-' | DOUBLE_HYPNEN_SIGN ; unaryOperator - : '!' | '~' | '+' | '-' | NOT + : '!' | '~' | ADD_SIGN | '-' | NOT ; fullColumnName @@ -335,7 +336,7 @@ fullColumnName constant : stringLiteral // 引号包含的字符串 | decimalLiteral // 整数 - | '-' decimalLiteral // 负整数 + | HYPNEN_SIGN decimalLiteral // 负整数 | booleanLiteral // 布尔值 | REAL_LITERAL // 小数 | BIT_STRING @@ -357,3 +358,365 @@ setQuantifier : DISTINCT | ALL ; + + +/* +lexer grammar +*/ + + +// SKIP + +SPACE: [ \t\r\n]+ -> channel(HIDDEN); +COMMENT_INPUT: '/*' .*? '*/' -> channel(HIDDEN); +LINE_COMMENT: ( + ('-- ' | '#') ~[\r\n]* ('\r'? '\n' | EOF) + | '--' ('\r'? '\n' | EOF) + ) -> channel(HIDDEN); + + +// Common Keywords + +SELECT: 'SELECT'; +FROM: 'FROM'; +ADD: 'ADD'; +AS: 'AS'; +ALL: 'ALL'; +ANY: 'ANY'; +DISTINCT: 'DISTINCT'; +WHERE: 'WHERE'; +GROUP: 'GROUP'; +BY: 'BY'; +GROUPING: 'GROUPING'; +SETS: 'SETS'; +CUBE: 'CUBE'; +ROLLUP: 'ROLLUP'; +ORDER: 'ORDER'; +HAVING: 'HAVING'; +LIMIT: 'LIMIT'; +AT: 'AT'; +OR: 'OR'; +AND: 'AND'; +IN: 'IN'; +NOT: 'NOT'; +NO: 'NO'; +EXISTS: 'EXISTS'; +BETWEEN: 'BETWEEN'; +LIKE: 'LIKE'; +RLIKE: 'RLIKE'; +IS: 'IS'; +TRUE: 'TRUE'; +FALSE: 'FALSE'; +NULLS: 'NULLS'; +ASC: 'ASC'; +DESC: 'DESC'; +FOR: 'FOR'; +INTERVAL: 'INTERVAL'; +CASE: 'CASE'; +WHEN: 'WHEN'; +THEN: 'THEN'; +ELSE: 'ELSE'; +END: 'END'; +JOIN: 'JOIN'; +CROSS: 'CROSS'; +OUTER: 'OUTER'; +INNER: 'INNER'; +LEFT: 'LEFT'; +SEMI: 'SEMI'; +RIGHT: 'RIGHT'; +FULL: 'FULL'; +NATURAL: 'NATURAL'; +ON: 'ON'; +PIVOT: 'PIVOT'; +LATERAL: 'LATERAL'; +WINDOW: 'WINDOW'; +OVER: 'OVER'; +PARTITION: 'PARTITION'; +RANGE: 'RANGE'; +ROWS: 'ROWS'; +UNBOUNDED: 'UNBOUNDED'; +PRECEDING: 'PRECEDING'; +FOLLOWING: 'FOLLOWING'; +CURRENT: 'CURRENT'; +FIRST: 'FIRST'; +AFTER: 'AFTER'; +LAST: 'LAST'; +WITH: 'WITH'; +VALUES: 'VALUES'; +CREATE: 'CREATE'; +TABLE: 'TABLE'; +DIRECTORY: 'DIRECTORY'; +VIEW: 'VIEW'; +REPLACE: 'REPLACE'; +INSERT: 'INSERT'; +DELETE: 'DELETE'; +INTO: 'INTO'; +DESCRIBE: 'DESCRIBE'; +EXPLAIN: 'EXPLAIN'; +FORMAT: 'FORMAT'; +LOGICAL: 'LOGICAL'; +CODEGEN: 'CODEGEN'; +COST: 'COST'; +CAST: 'CAST'; +SHOW: 'SHOW'; +TABLES: 'TABLES'; +COLUMNS: 'COLUMNS'; +COLUMN: 'COLUMN'; +USE: 'USE'; +PARTITIONS: 'PARTITIONS'; +FUNCTIONS: 'FUNCTIONS'; +DROP: 'DROP'; +UNION: 'UNION'; +EXCEPT: 'EXCEPT'; +SETMINUS: 'SETMINUS'; +INTERSECT: 'INTERSECT'; +TO: 'TO'; +TABLESAMPLE: 'TABLESAMPLE'; +STRATIFY: 'STRATIFY'; +ALTER: 'ALTER'; +RENAME: 'RENAME'; +STRUCT: 'STRUCT'; +COMMENT: 'COMMENT'; +SET: 'SET'; +RESET: 'RESET'; +DATA: 'DATA'; +START: 'START'; +TRANSACTION: 'TRANSACTION'; +COMMIT: 'COMMIT'; +ROLLBACK: 'ROLLBACK'; +MACRO: 'MACRO'; +IGNORE: 'IGNORE'; +BOTH: 'BOTH'; +LEADING: 'LEADING'; +TRAILING: 'TRAILING'; +IF: 'IF'; +POSITION: 'POSITION'; +EXTRACT: 'EXTRACT'; +EQ: 'EQ'; +NSEQ: 'NSEQ'; +NEQ: 'NEQ'; +NEQJ: 'NEQJ'; +LT: 'LT'; +LTE: 'LTE'; +GT: 'GT'; +GTE: 'GTE'; +PLUS: 'PLUS'; +MINUS: 'MINUS'; +ASTERISK: 'ASTERISK'; +SLASH: 'SLASH'; +PERCENT: 'PERCENT'; +DIV: 'DIV'; +TILDE: 'TILDE'; +AMPERSAND: 'AMPERSAND'; +PIPE: 'PIPE'; +CONCAT_PIPE: 'CONCAT_PIPE'; +HAT: 'HAT'; +PERCENTLIT: 'PERCENTLIT'; +BUCKET: 'BUCKET'; +OUT: 'OUT'; +OF: 'OF'; +SORT: 'SORT'; +CLUSTER: 'CLUSTER'; +DISTRIBUTE: 'DISTRIBUTE'; +OVERWRITE: 'OVERWRITE'; +TRANSFORM: 'TRANSFORM'; +REDUCE: 'REDUCE'; +USING: 'USING'; +SERDE: 'SERDE'; +SERDEPROPERTIES: 'SERDEPROPERTIES'; +RECORDREADER: 'RECORDREADER'; +RECORDWRITER: 'RECORDWRITER'; +DELIMITED: 'DELIMITED'; +FIELDS: 'FIELDS'; +TERMINATED: 'TERMINATED'; +COLLECTION: 'COLLECTION'; +ITEMS: 'ITEMS'; +KEYS: 'KEYS'; +ESCAPED: 'ESCAPED'; +LINES: 'LINES'; +SEPARATED: 'SEPARATED'; +FUNCTION: 'FUNCTION'; +EXTENDED: 'EXTENDED'; +REFRESH: 'REFRESH'; +CLEAR: 'CLEAR'; +CACHE: 'CACHE'; +UNCACHE: 'UNCACHE'; +LAZY: 'LAZY'; +FORMATTED: 'FORMATTED'; +GLOBAL: 'GLOBAL'; +TEMPORARY: 'TEMPORARY'; +OPTIONS: 'OPTIONS'; +UNSET: 'UNSET'; +TBLPROPERTIES: 'TBLPROPERTIES'; +DBPROPERTIES: 'DBPROPERTIES'; +BUCKETS: 'BUCKETS'; +SKEWED: 'SKEWED'; +STORED: 'STORED'; +DIRECTORIES: 'DIRECTORIES'; +LOCATION: 'LOCATION'; +EXCHANGE: 'EXCHANGE'; +ARCHIVE: 'ARCHIVE'; +UNARCHIVE: 'UNARCHIVE'; +FILEFORMAT: 'FILEFORMAT'; +TOUCH: 'TOUCH'; +COMPACT: 'COMPACT'; +CONCATENATE: 'CONCATENATE'; +CHANGE: 'CHANGE'; +CASCADE: 'CASCADE'; +RESTRICT: 'RESTRICT'; +CLUSTERED: 'CLUSTERED'; +SORTED: 'SORTED'; +PURGE: 'PURGE'; +INPUTFORMAT: 'INPUTFORMAT'; +OUTPUTFORMAT: 'OUTPUTFORMAT'; +DATABASE: 'DATABASE'; +DATABASES: 'DATABASES'; +DFS: 'DFS'; +TRUNCATE: 'TRUNCATE'; +ANALYZE: 'ANALYZE'; +COMPUTE: 'COMPUTE'; +LIST: 'LIST'; +STATISTICS: 'STATISTICS'; +PARTITIONED: 'PARTITIONED'; +EXTERNAL: 'EXTERNAL'; +DEFINED: 'DEFINED'; +REVOKE: 'REVOKE'; +GRANT: 'GRANT'; +LOCK: 'LOCK'; +UNLOCK: 'UNLOCK'; +MSCK: 'MSCK'; +REPAIR: 'REPAIR'; +RECOVER: 'RECOVER'; +EXPORT: 'EXPORT'; +IMPORT: 'IMPORT'; +LOAD: 'LOAD'; +ROLE: 'ROLE'; +ROLES: 'ROLES'; +COMPACTIONS: 'COMPACTIONS'; +PRINCIPALS: 'PRINCIPALS'; +TRANSACTIONS: 'TRANSACTIONS'; +INDEX: 'INDEX'; +INDEXES: 'INDEXES'; +LOCKS: 'LOCKS'; +OPTION: 'OPTION'; +ANTI: 'ANTI'; +LOCAL: 'LOCAL'; +INPATH: 'INPATH'; +WATERMARK: 'WATERMARK'; +UNNEST: 'UNNEST'; +MATCH_RECOGNIZE: 'MATCH_RECOGNIZE'; +MEASURES: 'MEASURES'; +ONE: 'ONE'; +PER: 'PER'; +MATCH: 'MATCH'; +SKIP1: 'SKIP1'; +NEXT: 'NEXT'; +PAST: 'PAST'; +PATTERN: 'PATTERN'; +WITHIN: 'WITHIN'; +DEFINE: 'DEFINE'; +BIGINT_LITERAL: 'BIGINT_LITERAL'; +SMALLINT_LITERAL: 'SMALLINT_LITERAL'; +TINYINT_LITERAL: 'TINYINT_LITERAL'; +INTEGER_VALUE: 'INTEGER_VALUE'; +DECIMAL_VALUE: 'DECIMAL_VALUE'; +DOUBLE_LITERAL: 'DOUBLE_LITERAL'; +BIGDECIMAL_LITERAL: 'BIGDECIMAL_LITERAL'; +IDENTIFIER: 'IDENTIFIER'; +BACKQUOTED_IDENTIFIER: 'BACKQUOTED_IDENTIFIER'; +SIMPLE_COMMENT: 'SIMPLE_COMMENT'; +BRACKETED_EMPTY_COMMENT: 'BRACKETED_EMPTY_COMMENT'; +BRACKETED_COMMENT: 'BRACKETED_COMMENT'; +WS: 'WS'; +UNRECOGNIZED: 'UNRECOGNIZED'; +REVERSE_QUOTE_ID: '`' ~'`'+ '`'; +DOUBLE_QUOTE_ID: '"' ~'"'+ '"'; +DOT_ID: '.' ID_LITERAL; +ID: ID_LITERAL; +SYSTEM: 'SYSTEM'; + + +// DATA TYPE Keywords + +STRING: 'STRING'; +ARRAY: 'ARRAY'; +MAP: 'MAP'; +CHAR: 'CHAR'; +VARCHAR: 'VARCHAR'; +BINARY: 'BINARY'; +VARBINARY: 'VARBINARY'; +BYTES: 'BYTES'; +DECIMAL: 'DECIMAL'; +TINYINT: 'TINYINT'; +SMALLINT: 'SMALLINT'; +INT: 'INT'; +BIGINT: 'BIGINT'; +FLOAT: 'FLOAT'; +DOUBLE: 'DOUBLE'; +DATE: 'DATE'; +TIME: 'TIME'; +TIMESTAMP: 'TIMESTAMP'; +MULTISET: 'MULTISET'; +BOOLEAN: 'BOOLEAN'; +RAW: 'RAW'; +ROW: 'ROW'; +NULL: 'NULL'; + + +// Operators. Comparation + +EQUAL_SYMBOL: '='; +GREATER_SYMBOL: '>'; +LESS_SYMBOL: '<'; +EXCLAMATION_SYMBOL: '!'; + + +// Operators. Bit + +BIT_NOT_OP: '~'; +BIT_OR_OP: '|'; +BIT_AND_OP: '&'; +BIT_XOR_OP: '^'; + + +// Constructors symbols + +DOT: '.'; +LS_BRACKET: '['; +RS_BRACKET: ']'; +LR_BRACKET: '('; +RR_BRACKET: ')'; +COMMA: ','; +SEMICOLON: ';'; +AT_SIGN: '@'; +ZERO_DECIMAL: '0'; +ONE_DECIMAL: '1'; +TWO_DECIMAL: '2'; +SINGLE_QUOTE_SYMB: '\''; +DOUBLE_QUOTE_SYMB: '"'; +REVERSE_QUOTE_SYMB: '`'; +COLON_SYMB: ':'; +ASTERISK_SIGN: '*'; +UNDERLINE_SIGN: '_'; +HYPNEN_SIGN: '-'; +ADD_SIGN: '+'; +PENCENT_SIGN: '%'; +DOUBLE_HYPNEN_SIGN: '--'; +SLASH_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; +IDENTIFIER_BASE: (DEC_LETTER | DEC_DIGIT | UNDERLINE_SIGN)+; + +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 DEC_LETTER: [A-Za-z]; +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/lib/flinksql/FlinkSqlLexer.interp b/src/lib/flinksql/FlinkSqlLexer.interp index 73b85f6..ff72ac6 100644 --- a/src/lib/flinksql/FlinkSqlLexer.interp +++ b/src/lib/flinksql/FlinkSqlLexer.interp @@ -293,6 +293,8 @@ null '&' '^' '.' +'[' +']' '(' ')' ',' @@ -306,6 +308,13 @@ null '`' ':' '*' +'_' +'-' +'+' +'%' +'--' +'/' +null null null null @@ -606,6 +615,8 @@ BIT_OR_OP BIT_AND_OP BIT_XOR_OP DOT +LS_BRACKET +RS_BRACKET LR_BRACKET RR_BRACKET COMMA @@ -619,10 +630,17 @@ DOUBLE_QUOTE_SYMB REVERSE_QUOTE_SYMB COLON_SYMB ASTERISK_SIGN +UNDERLINE_SIGN +HYPNEN_SIGN +ADD_SIGN +PENCENT_SIGN +DOUBLE_HYPNEN_SIGN +SLASH_SIGN STRING_LITERAL DECIMAL_LITERAL REAL_LITERAL BIT_STRING +IDENTIFIER_BASE rule names: SPACE @@ -918,6 +936,8 @@ BIT_OR_OP BIT_AND_OP BIT_XOR_OP DOT +LS_BRACKET +RS_BRACKET LR_BRACKET RR_BRACKET COMMA @@ -931,13 +951,21 @@ DOUBLE_QUOTE_SYMB REVERSE_QUOTE_SYMB COLON_SYMB ASTERISK_SIGN +UNDERLINE_SIGN +HYPNEN_SIGN +ADD_SIGN +PENCENT_SIGN +DOUBLE_HYPNEN_SIGN +SLASH_SIGN STRING_LITERAL DECIMAL_LITERAL REAL_LITERAL BIT_STRING +IDENTIFIER_BASE EXPONENT_NUM_PART ID_LITERAL DEC_DIGIT +DEC_LETTER DQUOTA_STRING SQUOTA_STRING BIT_STRING_L @@ -954,4 +982,4 @@ mode names: DEFAULT_MODE atn: -[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 +[3, 24715, 42794, 33075, 47597, 16764, 15335, 30598, 22884, 2, 321, 3002, 8, 1, 4, 2, 9, 2, 4, 3, 9, 3, 4, 4, 9, 4, 4, 5, 9, 5, 4, 6, 9, 6, 4, 7, 9, 7, 4, 8, 9, 8, 4, 9, 9, 9, 4, 10, 9, 10, 4, 11, 9, 11, 4, 12, 9, 12, 4, 13, 9, 13, 4, 14, 9, 14, 4, 15, 9, 15, 4, 16, 9, 16, 4, 17, 9, 17, 4, 18, 9, 18, 4, 19, 9, 19, 4, 20, 9, 20, 4, 21, 9, 21, 4, 22, 9, 22, 4, 23, 9, 23, 4, 24, 9, 24, 4, 25, 9, 25, 4, 26, 9, 26, 4, 27, 9, 27, 4, 28, 9, 28, 4, 29, 9, 29, 4, 30, 9, 30, 4, 31, 9, 31, 4, 32, 9, 32, 4, 33, 9, 33, 4, 34, 9, 34, 4, 35, 9, 35, 4, 36, 9, 36, 4, 37, 9, 37, 4, 38, 9, 38, 4, 39, 9, 39, 4, 40, 9, 40, 4, 41, 9, 41, 4, 42, 9, 42, 4, 43, 9, 43, 4, 44, 9, 44, 4, 45, 9, 45, 4, 46, 9, 46, 4, 47, 9, 47, 4, 48, 9, 48, 4, 49, 9, 49, 4, 50, 9, 50, 4, 51, 9, 51, 4, 52, 9, 52, 4, 53, 9, 53, 4, 54, 9, 54, 4, 55, 9, 55, 4, 56, 9, 56, 4, 57, 9, 57, 4, 58, 9, 58, 4, 59, 9, 59, 4, 60, 9, 60, 4, 61, 9, 61, 4, 62, 9, 62, 4, 63, 9, 63, 4, 64, 9, 64, 4, 65, 9, 65, 4, 66, 9, 66, 4, 67, 9, 67, 4, 68, 9, 68, 4, 69, 9, 69, 4, 70, 9, 70, 4, 71, 9, 71, 4, 72, 9, 72, 4, 73, 9, 73, 4, 74, 9, 74, 4, 75, 9, 75, 4, 76, 9, 76, 4, 77, 9, 77, 4, 78, 9, 78, 4, 79, 9, 79, 4, 80, 9, 80, 4, 81, 9, 81, 4, 82, 9, 82, 4, 83, 9, 83, 4, 84, 9, 84, 4, 85, 9, 85, 4, 86, 9, 86, 4, 87, 9, 87, 4, 88, 9, 88, 4, 89, 9, 89, 4, 90, 9, 90, 4, 91, 9, 91, 4, 92, 9, 92, 4, 93, 9, 93, 4, 94, 9, 94, 4, 95, 9, 95, 4, 96, 9, 96, 4, 97, 9, 97, 4, 98, 9, 98, 4, 99, 9, 99, 4, 100, 9, 100, 4, 101, 9, 101, 4, 102, 9, 102, 4, 103, 9, 103, 4, 104, 9, 104, 4, 105, 9, 105, 4, 106, 9, 106, 4, 107, 9, 107, 4, 108, 9, 108, 4, 109, 9, 109, 4, 110, 9, 110, 4, 111, 9, 111, 4, 112, 9, 112, 4, 113, 9, 113, 4, 114, 9, 114, 4, 115, 9, 115, 4, 116, 9, 116, 4, 117, 9, 117, 4, 118, 9, 118, 4, 119, 9, 119, 4, 120, 9, 120, 4, 121, 9, 121, 4, 122, 9, 122, 4, 123, 9, 123, 4, 124, 9, 124, 4, 125, 9, 125, 4, 126, 9, 126, 4, 127, 9, 127, 4, 128, 9, 128, 4, 129, 9, 129, 4, 130, 9, 130, 4, 131, 9, 131, 4, 132, 9, 132, 4, 133, 9, 133, 4, 134, 9, 134, 4, 135, 9, 135, 4, 136, 9, 136, 4, 137, 9, 137, 4, 138, 9, 138, 4, 139, 9, 139, 4, 140, 9, 140, 4, 141, 9, 141, 4, 142, 9, 142, 4, 143, 9, 143, 4, 144, 9, 144, 4, 145, 9, 145, 4, 146, 9, 146, 4, 147, 9, 147, 4, 148, 9, 148, 4, 149, 9, 149, 4, 150, 9, 150, 4, 151, 9, 151, 4, 152, 9, 152, 4, 153, 9, 153, 4, 154, 9, 154, 4, 155, 9, 155, 4, 156, 9, 156, 4, 157, 9, 157, 4, 158, 9, 158, 4, 159, 9, 159, 4, 160, 9, 160, 4, 161, 9, 161, 4, 162, 9, 162, 4, 163, 9, 163, 4, 164, 9, 164, 4, 165, 9, 165, 4, 166, 9, 166, 4, 167, 9, 167, 4, 168, 9, 168, 4, 169, 9, 169, 4, 170, 9, 170, 4, 171, 9, 171, 4, 172, 9, 172, 4, 173, 9, 173, 4, 174, 9, 174, 4, 175, 9, 175, 4, 176, 9, 176, 4, 177, 9, 177, 4, 178, 9, 178, 4, 179, 9, 179, 4, 180, 9, 180, 4, 181, 9, 181, 4, 182, 9, 182, 4, 183, 9, 183, 4, 184, 9, 184, 4, 185, 9, 185, 4, 186, 9, 186, 4, 187, 9, 187, 4, 188, 9, 188, 4, 189, 9, 189, 4, 190, 9, 190, 4, 191, 9, 191, 4, 192, 9, 192, 4, 193, 9, 193, 4, 194, 9, 194, 4, 195, 9, 195, 4, 196, 9, 196, 4, 197, 9, 197, 4, 198, 9, 198, 4, 199, 9, 199, 4, 200, 9, 200, 4, 201, 9, 201, 4, 202, 9, 202, 4, 203, 9, 203, 4, 204, 9, 204, 4, 205, 9, 205, 4, 206, 9, 206, 4, 207, 9, 207, 4, 208, 9, 208, 4, 209, 9, 209, 4, 210, 9, 210, 4, 211, 9, 211, 4, 212, 9, 212, 4, 213, 9, 213, 4, 214, 9, 214, 4, 215, 9, 215, 4, 216, 9, 216, 4, 217, 9, 217, 4, 218, 9, 218, 4, 219, 9, 219, 4, 220, 9, 220, 4, 221, 9, 221, 4, 222, 9, 222, 4, 223, 9, 223, 4, 224, 9, 224, 4, 225, 9, 225, 4, 226, 9, 226, 4, 227, 9, 227, 4, 228, 9, 228, 4, 229, 9, 229, 4, 230, 9, 230, 4, 231, 9, 231, 4, 232, 9, 232, 4, 233, 9, 233, 4, 234, 9, 234, 4, 235, 9, 235, 4, 236, 9, 236, 4, 237, 9, 237, 4, 238, 9, 238, 4, 239, 9, 239, 4, 240, 9, 240, 4, 241, 9, 241, 4, 242, 9, 242, 4, 243, 9, 243, 4, 244, 9, 244, 4, 245, 9, 245, 4, 246, 9, 246, 4, 247, 9, 247, 4, 248, 9, 248, 4, 249, 9, 249, 4, 250, 9, 250, 4, 251, 9, 251, 4, 252, 9, 252, 4, 253, 9, 253, 4, 254, 9, 254, 4, 255, 9, 255, 4, 256, 9, 256, 4, 257, 9, 257, 4, 258, 9, 258, 4, 259, 9, 259, 4, 260, 9, 260, 4, 261, 9, 261, 4, 262, 9, 262, 4, 263, 9, 263, 4, 264, 9, 264, 4, 265, 9, 265, 4, 266, 9, 266, 4, 267, 9, 267, 4, 268, 9, 268, 4, 269, 9, 269, 4, 270, 9, 270, 4, 271, 9, 271, 4, 272, 9, 272, 4, 273, 9, 273, 4, 274, 9, 274, 4, 275, 9, 275, 4, 276, 9, 276, 4, 277, 9, 277, 4, 278, 9, 278, 4, 279, 9, 279, 4, 280, 9, 280, 4, 281, 9, 281, 4, 282, 9, 282, 4, 283, 9, 283, 4, 284, 9, 284, 4, 285, 9, 285, 4, 286, 9, 286, 4, 287, 9, 287, 4, 288, 9, 288, 4, 289, 9, 289, 4, 290, 9, 290, 4, 291, 9, 291, 4, 292, 9, 292, 4, 293, 9, 293, 4, 294, 9, 294, 4, 295, 9, 295, 4, 296, 9, 296, 4, 297, 9, 297, 4, 298, 9, 298, 4, 299, 9, 299, 4, 300, 9, 300, 4, 301, 9, 301, 4, 302, 9, 302, 4, 303, 9, 303, 4, 304, 9, 304, 4, 305, 9, 305, 4, 306, 9, 306, 4, 307, 9, 307, 4, 308, 9, 308, 4, 309, 9, 309, 4, 310, 9, 310, 4, 311, 9, 311, 4, 312, 9, 312, 4, 313, 9, 313, 4, 314, 9, 314, 4, 315, 9, 315, 4, 316, 9, 316, 4, 317, 9, 317, 4, 318, 9, 318, 4, 319, 9, 319, 4, 320, 9, 320, 4, 321, 9, 321, 4, 322, 9, 322, 4, 323, 9, 323, 4, 324, 9, 324, 4, 325, 9, 325, 4, 326, 9, 326, 4, 327, 9, 327, 4, 328, 9, 328, 3, 2, 6, 2, 659, 10, 2, 13, 2, 14, 2, 660, 3, 2, 3, 2, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 6, 3, 670, 10, 3, 13, 3, 14, 3, 671, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 4, 3, 4, 3, 4, 3, 4, 7, 4, 683, 10, 4, 12, 4, 14, 4, 686, 11, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 5, 3, 5, 3, 5, 3, 5, 5, 5, 697, 10, 5, 3, 5, 7, 5, 700, 10, 5, 12, 5, 14, 5, 703, 11, 5, 3, 5, 5, 5, 706, 10, 5, 3, 5, 3, 5, 5, 5, 710, 10, 5, 3, 5, 3, 5, 3, 5, 3, 5, 5, 5, 716, 10, 5, 3, 5, 3, 5, 5, 5, 720, 10, 5, 5, 5, 722, 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, 2622, 10, 258, 13, 258, 14, 258, 2623, 3, 258, 3, 258, 3, 259, 3, 259, 6, 259, 2630, 10, 259, 13, 259, 14, 259, 2631, 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, 309, 3, 309, 3, 310, 3, 310, 3, 311, 3, 311, 3, 312, 3, 312, 3, 313, 3, 313, 3, 314, 3, 314, 3, 314, 3, 315, 3, 315, 3, 316, 3, 316, 3, 316, 5, 316, 2864, 10, 316, 3, 317, 6, 317, 2867, 10, 317, 13, 317, 14, 317, 2868, 3, 318, 6, 318, 2872, 10, 318, 13, 318, 14, 318, 2873, 5, 318, 2876, 10, 318, 3, 318, 3, 318, 6, 318, 2880, 10, 318, 13, 318, 14, 318, 2881, 3, 318, 6, 318, 2885, 10, 318, 13, 318, 14, 318, 2886, 3, 318, 3, 318, 3, 318, 3, 318, 6, 318, 2893, 10, 318, 13, 318, 14, 318, 2894, 5, 318, 2897, 10, 318, 3, 318, 3, 318, 6, 318, 2901, 10, 318, 13, 318, 14, 318, 2902, 3, 318, 3, 318, 3, 318, 6, 318, 2908, 10, 318, 13, 318, 14, 318, 2909, 3, 318, 3, 318, 5, 318, 2914, 10, 318, 3, 319, 3, 319, 3, 320, 3, 320, 3, 320, 6, 320, 2921, 10, 320, 13, 320, 14, 320, 2922, 3, 321, 3, 321, 5, 321, 2927, 10, 321, 3, 321, 6, 321, 2930, 10, 321, 13, 321, 14, 321, 2931, 3, 322, 7, 322, 2935, 10, 322, 12, 322, 14, 322, 2938, 11, 322, 3, 322, 6, 322, 2941, 10, 322, 13, 322, 14, 322, 2942, 3, 322, 7, 322, 2946, 10, 322, 12, 322, 14, 322, 2949, 11, 322, 3, 323, 3, 323, 3, 324, 3, 324, 3, 325, 3, 325, 3, 325, 3, 325, 3, 325, 3, 325, 7, 325, 2961, 10, 325, 12, 325, 14, 325, 2964, 11, 325, 3, 325, 3, 325, 3, 326, 3, 326, 3, 326, 3, 326, 3, 326, 3, 326, 7, 326, 2974, 10, 326, 12, 326, 14, 326, 2977, 11, 326, 3, 326, 3, 326, 3, 327, 3, 327, 3, 327, 6, 327, 2984, 10, 327, 13, 327, 14, 327, 2985, 3, 327, 3, 327, 3, 328, 3, 328, 3, 328, 3, 328, 3, 328, 3, 328, 7, 328, 2996, 10, 328, 12, 328, 14, 328, 2999, 11, 328, 3, 328, 3, 328, 6, 671, 684, 2936, 2942, 2, 329, 3, 3, 5, 4, 7, 5, 9, 6, 11, 7, 13, 8, 15, 9, 17, 10, 19, 11, 21, 12, 23, 13, 25, 14, 27, 15, 29, 16, 31, 17, 33, 18, 35, 19, 37, 20, 39, 21, 41, 22, 43, 23, 45, 24, 47, 25, 49, 26, 51, 27, 53, 28, 55, 29, 57, 30, 59, 31, 61, 32, 63, 33, 65, 34, 67, 35, 69, 36, 71, 37, 73, 38, 75, 39, 77, 40, 79, 41, 81, 42, 83, 43, 85, 44, 87, 45, 89, 46, 91, 47, 93, 48, 95, 49, 97, 50, 99, 51, 101, 52, 103, 53, 105, 54, 107, 55, 109, 56, 111, 57, 113, 58, 115, 59, 117, 60, 119, 61, 121, 62, 123, 63, 125, 64, 127, 65, 129, 66, 131, 67, 133, 68, 135, 69, 137, 70, 139, 71, 141, 72, 143, 73, 145, 74, 147, 75, 149, 76, 151, 77, 153, 78, 155, 79, 157, 80, 159, 81, 161, 82, 163, 83, 165, 84, 167, 85, 169, 86, 171, 87, 173, 88, 175, 89, 177, 90, 179, 91, 181, 92, 183, 93, 185, 94, 187, 95, 189, 96, 191, 97, 193, 98, 195, 99, 197, 100, 199, 101, 201, 102, 203, 103, 205, 104, 207, 105, 209, 106, 211, 107, 213, 108, 215, 109, 217, 110, 219, 111, 221, 112, 223, 113, 225, 114, 227, 115, 229, 116, 231, 117, 233, 118, 235, 119, 237, 120, 239, 121, 241, 122, 243, 123, 245, 124, 247, 125, 249, 126, 251, 127, 253, 128, 255, 129, 257, 130, 259, 131, 261, 132, 263, 133, 265, 134, 267, 135, 269, 136, 271, 137, 273, 138, 275, 139, 277, 140, 279, 141, 281, 142, 283, 143, 285, 144, 287, 145, 289, 146, 291, 147, 293, 148, 295, 149, 297, 150, 299, 151, 301, 152, 303, 153, 305, 154, 307, 155, 309, 156, 311, 157, 313, 158, 315, 159, 317, 160, 319, 161, 321, 162, 323, 163, 325, 164, 327, 165, 329, 166, 331, 167, 333, 168, 335, 169, 337, 170, 339, 171, 341, 172, 343, 173, 345, 174, 347, 175, 349, 176, 351, 177, 353, 178, 355, 179, 357, 180, 359, 181, 361, 182, 363, 183, 365, 184, 367, 185, 369, 186, 371, 187, 373, 188, 375, 189, 377, 190, 379, 191, 381, 192, 383, 193, 385, 194, 387, 195, 389, 196, 391, 197, 393, 198, 395, 199, 397, 200, 399, 201, 401, 202, 403, 203, 405, 204, 407, 205, 409, 206, 411, 207, 413, 208, 415, 209, 417, 210, 419, 211, 421, 212, 423, 213, 425, 214, 427, 215, 429, 216, 431, 217, 433, 218, 435, 219, 437, 220, 439, 221, 441, 222, 443, 223, 445, 224, 447, 225, 449, 226, 451, 227, 453, 228, 455, 229, 457, 230, 459, 231, 461, 232, 463, 233, 465, 234, 467, 235, 469, 236, 471, 237, 473, 238, 475, 239, 477, 240, 479, 241, 481, 242, 483, 243, 485, 244, 487, 245, 489, 246, 491, 247, 493, 248, 495, 249, 497, 250, 499, 251, 501, 252, 503, 253, 505, 254, 507, 255, 509, 256, 511, 257, 513, 258, 515, 259, 517, 260, 519, 261, 521, 262, 523, 263, 525, 264, 527, 265, 529, 266, 531, 267, 533, 268, 535, 269, 537, 270, 539, 271, 541, 272, 543, 273, 545, 274, 547, 275, 549, 276, 551, 277, 553, 278, 555, 279, 557, 280, 559, 281, 561, 282, 563, 283, 565, 284, 567, 285, 569, 286, 571, 287, 573, 288, 575, 289, 577, 290, 579, 291, 581, 292, 583, 293, 585, 294, 587, 295, 589, 296, 591, 297, 593, 298, 595, 299, 597, 300, 599, 301, 601, 302, 603, 303, 605, 304, 607, 305, 609, 306, 611, 307, 613, 308, 615, 309, 617, 310, 619, 311, 621, 312, 623, 313, 625, 314, 627, 315, 629, 316, 631, 317, 633, 318, 635, 319, 637, 320, 639, 321, 641, 2, 643, 2, 645, 2, 647, 2, 649, 2, 651, 2, 653, 2, 655, 2, 3, 2, 15, 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, 67, 92, 99, 124, 4, 2, 36, 36, 94, 94, 4, 2, 41, 41, 94, 94, 3, 2, 50, 51, 4, 2, 94, 94, 98, 98, 2, 3037, 2, 3, 3, 2, 2, 2, 2, 5, 3, 2, 2, 2, 2, 7, 3, 2, 2, 2, 2, 9, 3, 2, 2, 2, 2, 11, 3, 2, 2, 2, 2, 13, 3, 2, 2, 2, 2, 15, 3, 2, 2, 2, 2, 17, 3, 2, 2, 2, 2, 19, 3, 2, 2, 2, 2, 21, 3, 2, 2, 2, 2, 23, 3, 2, 2, 2, 2, 25, 3, 2, 2, 2, 2, 27, 3, 2, 2, 2, 2, 29, 3, 2, 2, 2, 2, 31, 3, 2, 2, 2, 2, 33, 3, 2, 2, 2, 2, 35, 3, 2, 2, 2, 2, 37, 3, 2, 2, 2, 2, 39, 3, 2, 2, 2, 2, 41, 3, 2, 2, 2, 2, 43, 3, 2, 2, 2, 2, 45, 3, 2, 2, 2, 2, 47, 3, 2, 2, 2, 2, 49, 3, 2, 2, 2, 2, 51, 3, 2, 2, 2, 2, 53, 3, 2, 2, 2, 2, 55, 3, 2, 2, 2, 2, 57, 3, 2, 2, 2, 2, 59, 3, 2, 2, 2, 2, 61, 3, 2, 2, 2, 2, 63, 3, 2, 2, 2, 2, 65, 3, 2, 2, 2, 2, 67, 3, 2, 2, 2, 2, 69, 3, 2, 2, 2, 2, 71, 3, 2, 2, 2, 2, 73, 3, 2, 2, 2, 2, 75, 3, 2, 2, 2, 2, 77, 3, 2, 2, 2, 2, 79, 3, 2, 2, 2, 2, 81, 3, 2, 2, 2, 2, 83, 3, 2, 2, 2, 2, 85, 3, 2, 2, 2, 2, 87, 3, 2, 2, 2, 2, 89, 3, 2, 2, 2, 2, 91, 3, 2, 2, 2, 2, 93, 3, 2, 2, 2, 2, 95, 3, 2, 2, 2, 2, 97, 3, 2, 2, 2, 2, 99, 3, 2, 2, 2, 2, 101, 3, 2, 2, 2, 2, 103, 3, 2, 2, 2, 2, 105, 3, 2, 2, 2, 2, 107, 3, 2, 2, 2, 2, 109, 3, 2, 2, 2, 2, 111, 3, 2, 2, 2, 2, 113, 3, 2, 2, 2, 2, 115, 3, 2, 2, 2, 2, 117, 3, 2, 2, 2, 2, 119, 3, 2, 2, 2, 2, 121, 3, 2, 2, 2, 2, 123, 3, 2, 2, 2, 2, 125, 3, 2, 2, 2, 2, 127, 3, 2, 2, 2, 2, 129, 3, 2, 2, 2, 2, 131, 3, 2, 2, 2, 2, 133, 3, 2, 2, 2, 2, 135, 3, 2, 2, 2, 2, 137, 3, 2, 2, 2, 2, 139, 3, 2, 2, 2, 2, 141, 3, 2, 2, 2, 2, 143, 3, 2, 2, 2, 2, 145, 3, 2, 2, 2, 2, 147, 3, 2, 2, 2, 2, 149, 3, 2, 2, 2, 2, 151, 3, 2, 2, 2, 2, 153, 3, 2, 2, 2, 2, 155, 3, 2, 2, 2, 2, 157, 3, 2, 2, 2, 2, 159, 3, 2, 2, 2, 2, 161, 3, 2, 2, 2, 2, 163, 3, 2, 2, 2, 2, 165, 3, 2, 2, 2, 2, 167, 3, 2, 2, 2, 2, 169, 3, 2, 2, 2, 2, 171, 3, 2, 2, 2, 2, 173, 3, 2, 2, 2, 2, 175, 3, 2, 2, 2, 2, 177, 3, 2, 2, 2, 2, 179, 3, 2, 2, 2, 2, 181, 3, 2, 2, 2, 2, 183, 3, 2, 2, 2, 2, 185, 3, 2, 2, 2, 2, 187, 3, 2, 2, 2, 2, 189, 3, 2, 2, 2, 2, 191, 3, 2, 2, 2, 2, 193, 3, 2, 2, 2, 2, 195, 3, 2, 2, 2, 2, 197, 3, 2, 2, 2, 2, 199, 3, 2, 2, 2, 2, 201, 3, 2, 2, 2, 2, 203, 3, 2, 2, 2, 2, 205, 3, 2, 2, 2, 2, 207, 3, 2, 2, 2, 2, 209, 3, 2, 2, 2, 2, 211, 3, 2, 2, 2, 2, 213, 3, 2, 2, 2, 2, 215, 3, 2, 2, 2, 2, 217, 3, 2, 2, 2, 2, 219, 3, 2, 2, 2, 2, 221, 3, 2, 2, 2, 2, 223, 3, 2, 2, 2, 2, 225, 3, 2, 2, 2, 2, 227, 3, 2, 2, 2, 2, 229, 3, 2, 2, 2, 2, 231, 3, 2, 2, 2, 2, 233, 3, 2, 2, 2, 2, 235, 3, 2, 2, 2, 2, 237, 3, 2, 2, 2, 2, 239, 3, 2, 2, 2, 2, 241, 3, 2, 2, 2, 2, 243, 3, 2, 2, 2, 2, 245, 3, 2, 2, 2, 2, 247, 3, 2, 2, 2, 2, 249, 3, 2, 2, 2, 2, 251, 3, 2, 2, 2, 2, 253, 3, 2, 2, 2, 2, 255, 3, 2, 2, 2, 2, 257, 3, 2, 2, 2, 2, 259, 3, 2, 2, 2, 2, 261, 3, 2, 2, 2, 2, 263, 3, 2, 2, 2, 2, 265, 3, 2, 2, 2, 2, 267, 3, 2, 2, 2, 2, 269, 3, 2, 2, 2, 2, 271, 3, 2, 2, 2, 2, 273, 3, 2, 2, 2, 2, 275, 3, 2, 2, 2, 2, 277, 3, 2, 2, 2, 2, 279, 3, 2, 2, 2, 2, 281, 3, 2, 2, 2, 2, 283, 3, 2, 2, 2, 2, 285, 3, 2, 2, 2, 2, 287, 3, 2, 2, 2, 2, 289, 3, 2, 2, 2, 2, 291, 3, 2, 2, 2, 2, 293, 3, 2, 2, 2, 2, 295, 3, 2, 2, 2, 2, 297, 3, 2, 2, 2, 2, 299, 3, 2, 2, 2, 2, 301, 3, 2, 2, 2, 2, 303, 3, 2, 2, 2, 2, 305, 3, 2, 2, 2, 2, 307, 3, 2, 2, 2, 2, 309, 3, 2, 2, 2, 2, 311, 3, 2, 2, 2, 2, 313, 3, 2, 2, 2, 2, 315, 3, 2, 2, 2, 2, 317, 3, 2, 2, 2, 2, 319, 3, 2, 2, 2, 2, 321, 3, 2, 2, 2, 2, 323, 3, 2, 2, 2, 2, 325, 3, 2, 2, 2, 2, 327, 3, 2, 2, 2, 2, 329, 3, 2, 2, 2, 2, 331, 3, 2, 2, 2, 2, 333, 3, 2, 2, 2, 2, 335, 3, 2, 2, 2, 2, 337, 3, 2, 2, 2, 2, 339, 3, 2, 2, 2, 2, 341, 3, 2, 2, 2, 2, 343, 3, 2, 2, 2, 2, 345, 3, 2, 2, 2, 2, 347, 3, 2, 2, 2, 2, 349, 3, 2, 2, 2, 2, 351, 3, 2, 2, 2, 2, 353, 3, 2, 2, 2, 2, 355, 3, 2, 2, 2, 2, 357, 3, 2, 2, 2, 2, 359, 3, 2, 2, 2, 2, 361, 3, 2, 2, 2, 2, 363, 3, 2, 2, 2, 2, 365, 3, 2, 2, 2, 2, 367, 3, 2, 2, 2, 2, 369, 3, 2, 2, 2, 2, 371, 3, 2, 2, 2, 2, 373, 3, 2, 2, 2, 2, 375, 3, 2, 2, 2, 2, 377, 3, 2, 2, 2, 2, 379, 3, 2, 2, 2, 2, 381, 3, 2, 2, 2, 2, 383, 3, 2, 2, 2, 2, 385, 3, 2, 2, 2, 2, 387, 3, 2, 2, 2, 2, 389, 3, 2, 2, 2, 2, 391, 3, 2, 2, 2, 2, 393, 3, 2, 2, 2, 2, 395, 3, 2, 2, 2, 2, 397, 3, 2, 2, 2, 2, 399, 3, 2, 2, 2, 2, 401, 3, 2, 2, 2, 2, 403, 3, 2, 2, 2, 2, 405, 3, 2, 2, 2, 2, 407, 3, 2, 2, 2, 2, 409, 3, 2, 2, 2, 2, 411, 3, 2, 2, 2, 2, 413, 3, 2, 2, 2, 2, 415, 3, 2, 2, 2, 2, 417, 3, 2, 2, 2, 2, 419, 3, 2, 2, 2, 2, 421, 3, 2, 2, 2, 2, 423, 3, 2, 2, 2, 2, 425, 3, 2, 2, 2, 2, 427, 3, 2, 2, 2, 2, 429, 3, 2, 2, 2, 2, 431, 3, 2, 2, 2, 2, 433, 3, 2, 2, 2, 2, 435, 3, 2, 2, 2, 2, 437, 3, 2, 2, 2, 2, 439, 3, 2, 2, 2, 2, 441, 3, 2, 2, 2, 2, 443, 3, 2, 2, 2, 2, 445, 3, 2, 2, 2, 2, 447, 3, 2, 2, 2, 2, 449, 3, 2, 2, 2, 2, 451, 3, 2, 2, 2, 2, 453, 3, 2, 2, 2, 2, 455, 3, 2, 2, 2, 2, 457, 3, 2, 2, 2, 2, 459, 3, 2, 2, 2, 2, 461, 3, 2, 2, 2, 2, 463, 3, 2, 2, 2, 2, 465, 3, 2, 2, 2, 2, 467, 3, 2, 2, 2, 2, 469, 3, 2, 2, 2, 2, 471, 3, 2, 2, 2, 2, 473, 3, 2, 2, 2, 2, 475, 3, 2, 2, 2, 2, 477, 3, 2, 2, 2, 2, 479, 3, 2, 2, 2, 2, 481, 3, 2, 2, 2, 2, 483, 3, 2, 2, 2, 2, 485, 3, 2, 2, 2, 2, 487, 3, 2, 2, 2, 2, 489, 3, 2, 2, 2, 2, 491, 3, 2, 2, 2, 2, 493, 3, 2, 2, 2, 2, 495, 3, 2, 2, 2, 2, 497, 3, 2, 2, 2, 2, 499, 3, 2, 2, 2, 2, 501, 3, 2, 2, 2, 2, 503, 3, 2, 2, 2, 2, 505, 3, 2, 2, 2, 2, 507, 3, 2, 2, 2, 2, 509, 3, 2, 2, 2, 2, 511, 3, 2, 2, 2, 2, 513, 3, 2, 2, 2, 2, 515, 3, 2, 2, 2, 2, 517, 3, 2, 2, 2, 2, 519, 3, 2, 2, 2, 2, 521, 3, 2, 2, 2, 2, 523, 3, 2, 2, 2, 2, 525, 3, 2, 2, 2, 2, 527, 3, 2, 2, 2, 2, 529, 3, 2, 2, 2, 2, 531, 3, 2, 2, 2, 2, 533, 3, 2, 2, 2, 2, 535, 3, 2, 2, 2, 2, 537, 3, 2, 2, 2, 2, 539, 3, 2, 2, 2, 2, 541, 3, 2, 2, 2, 2, 543, 3, 2, 2, 2, 2, 545, 3, 2, 2, 2, 2, 547, 3, 2, 2, 2, 2, 549, 3, 2, 2, 2, 2, 551, 3, 2, 2, 2, 2, 553, 3, 2, 2, 2, 2, 555, 3, 2, 2, 2, 2, 557, 3, 2, 2, 2, 2, 559, 3, 2, 2, 2, 2, 561, 3, 2, 2, 2, 2, 563, 3, 2, 2, 2, 2, 565, 3, 2, 2, 2, 2, 567, 3, 2, 2, 2, 2, 569, 3, 2, 2, 2, 2, 571, 3, 2, 2, 2, 2, 573, 3, 2, 2, 2, 2, 575, 3, 2, 2, 2, 2, 577, 3, 2, 2, 2, 2, 579, 3, 2, 2, 2, 2, 581, 3, 2, 2, 2, 2, 583, 3, 2, 2, 2, 2, 585, 3, 2, 2, 2, 2, 587, 3, 2, 2, 2, 2, 589, 3, 2, 2, 2, 2, 591, 3, 2, 2, 2, 2, 593, 3, 2, 2, 2, 2, 595, 3, 2, 2, 2, 2, 597, 3, 2, 2, 2, 2, 599, 3, 2, 2, 2, 2, 601, 3, 2, 2, 2, 2, 603, 3, 2, 2, 2, 2, 605, 3, 2, 2, 2, 2, 607, 3, 2, 2, 2, 2, 609, 3, 2, 2, 2, 2, 611, 3, 2, 2, 2, 2, 613, 3, 2, 2, 2, 2, 615, 3, 2, 2, 2, 2, 617, 3, 2, 2, 2, 2, 619, 3, 2, 2, 2, 2, 621, 3, 2, 2, 2, 2, 623, 3, 2, 2, 2, 2, 625, 3, 2, 2, 2, 2, 627, 3, 2, 2, 2, 2, 629, 3, 2, 2, 2, 2, 631, 3, 2, 2, 2, 2, 633, 3, 2, 2, 2, 2, 635, 3, 2, 2, 2, 2, 637, 3, 2, 2, 2, 2, 639, 3, 2, 2, 2, 3, 658, 3, 2, 2, 2, 5, 664, 3, 2, 2, 2, 7, 678, 3, 2, 2, 2, 9, 721, 3, 2, 2, 2, 11, 725, 3, 2, 2, 2, 13, 732, 3, 2, 2, 2, 15, 737, 3, 2, 2, 2, 17, 741, 3, 2, 2, 2, 19, 744, 3, 2, 2, 2, 21, 748, 3, 2, 2, 2, 23, 752, 3, 2, 2, 2, 25, 761, 3, 2, 2, 2, 27, 767, 3, 2, 2, 2, 29, 773, 3, 2, 2, 2, 31, 776, 3, 2, 2, 2, 33, 785, 3, 2, 2, 2, 35, 790, 3, 2, 2, 2, 37, 795, 3, 2, 2, 2, 39, 802, 3, 2, 2, 2, 41, 808, 3, 2, 2, 2, 43, 815, 3, 2, 2, 2, 45, 821, 3, 2, 2, 2, 47, 824, 3, 2, 2, 2, 49, 827, 3, 2, 2, 2, 51, 831, 3, 2, 2, 2, 53, 834, 3, 2, 2, 2, 55, 838, 3, 2, 2, 2, 57, 841, 3, 2, 2, 2, 59, 848, 3, 2, 2, 2, 61, 856, 3, 2, 2, 2, 63, 861, 3, 2, 2, 2, 65, 867, 3, 2, 2, 2, 67, 870, 3, 2, 2, 2, 69, 875, 3, 2, 2, 2, 71, 881, 3, 2, 2, 2, 73, 887, 3, 2, 2, 2, 75, 891, 3, 2, 2, 2, 77, 896, 3, 2, 2, 2, 79, 900, 3, 2, 2, 2, 81, 909, 3, 2, 2, 2, 83, 914, 3, 2, 2, 2, 85, 919, 3, 2, 2, 2, 87, 924, 3, 2, 2, 2, 89, 929, 3, 2, 2, 2, 91, 933, 3, 2, 2, 2, 93, 938, 3, 2, 2, 2, 95, 944, 3, 2, 2, 2, 97, 950, 3, 2, 2, 2, 99, 956, 3, 2, 2, 2, 101, 961, 3, 2, 2, 2, 103, 966, 3, 2, 2, 2, 105, 972, 3, 2, 2, 2, 107, 977, 3, 2, 2, 2, 109, 985, 3, 2, 2, 2, 111, 988, 3, 2, 2, 2, 113, 994, 3, 2, 2, 2, 115, 1002, 3, 2, 2, 2, 117, 1009, 3, 2, 2, 2, 119, 1014, 3, 2, 2, 2, 121, 1024, 3, 2, 2, 2, 123, 1030, 3, 2, 2, 2, 125, 1035, 3, 2, 2, 2, 127, 1045, 3, 2, 2, 2, 129, 1055, 3, 2, 2, 2, 131, 1065, 3, 2, 2, 2, 133, 1073, 3, 2, 2, 2, 135, 1079, 3, 2, 2, 2, 137, 1085, 3, 2, 2, 2, 139, 1090, 3, 2, 2, 2, 141, 1095, 3, 2, 2, 2, 143, 1102, 3, 2, 2, 2, 145, 1109, 3, 2, 2, 2, 147, 1115, 3, 2, 2, 2, 149, 1125, 3, 2, 2, 2, 151, 1130, 3, 2, 2, 2, 153, 1138, 3, 2, 2, 2, 155, 1145, 3, 2, 2, 2, 157, 1152, 3, 2, 2, 2, 159, 1157, 3, 2, 2, 2, 161, 1166, 3, 2, 2, 2, 163, 1174, 3, 2, 2, 2, 165, 1181, 3, 2, 2, 2, 167, 1189, 3, 2, 2, 2, 169, 1197, 3, 2, 2, 2, 171, 1202, 3, 2, 2, 2, 173, 1207, 3, 2, 2, 2, 175, 1212, 3, 2, 2, 2, 177, 1219, 3, 2, 2, 2, 179, 1227, 3, 2, 2, 2, 181, 1234, 3, 2, 2, 2, 183, 1238, 3, 2, 2, 2, 185, 1249, 3, 2, 2, 2, 187, 1259, 3, 2, 2, 2, 189, 1264, 3, 2, 2, 2, 191, 1270, 3, 2, 2, 2, 193, 1277, 3, 2, 2, 2, 195, 1286, 3, 2, 2, 2, 197, 1296, 3, 2, 2, 2, 199, 1299, 3, 2, 2, 2, 201, 1311, 3, 2, 2, 2, 203, 1320, 3, 2, 2, 2, 205, 1326, 3, 2, 2, 2, 207, 1333, 3, 2, 2, 2, 209, 1340, 3, 2, 2, 2, 211, 1348, 3, 2, 2, 2, 213, 1352, 3, 2, 2, 2, 215, 1358, 3, 2, 2, 2, 217, 1363, 3, 2, 2, 2, 219, 1369, 3, 2, 2, 2, 221, 1381, 3, 2, 2, 2, 223, 1388, 3, 2, 2, 2, 225, 1397, 3, 2, 2, 2, 227, 1403, 3, 2, 2, 2, 229, 1410, 3, 2, 2, 2, 231, 1415, 3, 2, 2, 2, 233, 1423, 3, 2, 2, 2, 235, 1432, 3, 2, 2, 2, 237, 1435, 3, 2, 2, 2, 239, 1444, 3, 2, 2, 2, 241, 1452, 3, 2, 2, 2, 243, 1455, 3, 2, 2, 2, 245, 1460, 3, 2, 2, 2, 247, 1464, 3, 2, 2, 2, 249, 1469, 3, 2, 2, 2, 251, 1472, 3, 2, 2, 2, 253, 1476, 3, 2, 2, 2, 255, 1479, 3, 2, 2, 2, 257, 1483, 3, 2, 2, 2, 259, 1488, 3, 2, 2, 2, 261, 1494, 3, 2, 2, 2, 263, 1503, 3, 2, 2, 2, 265, 1509, 3, 2, 2, 2, 267, 1517, 3, 2, 2, 2, 269, 1521, 3, 2, 2, 2, 271, 1527, 3, 2, 2, 2, 273, 1537, 3, 2, 2, 2, 275, 1542, 3, 2, 2, 2, 277, 1554, 3, 2, 2, 2, 279, 1558, 3, 2, 2, 2, 281, 1569, 3, 2, 2, 2, 283, 1576, 3, 2, 2, 2, 285, 1580, 3, 2, 2, 2, 287, 1583, 3, 2, 2, 2, 289, 1588, 3, 2, 2, 2, 291, 1596, 3, 2, 2, 2, 293, 1607, 3, 2, 2, 2, 295, 1617, 3, 2, 2, 2, 297, 1627, 3, 2, 2, 2, 299, 1634, 3, 2, 2, 2, 301, 1640, 3, 2, 2, 2, 303, 1646, 3, 2, 2, 2, 305, 1662, 3, 2, 2, 2, 307, 1675, 3, 2, 2, 2, 309, 1688, 3, 2, 2, 2, 311, 1698, 3, 2, 2, 2, 313, 1705, 3, 2, 2, 2, 315, 1716, 3, 2, 2, 2, 317, 1727, 3, 2, 2, 2, 319, 1733, 3, 2, 2, 2, 321, 1738, 3, 2, 2, 2, 323, 1746, 3, 2, 2, 2, 325, 1752, 3, 2, 2, 2, 327, 1762, 3, 2, 2, 2, 329, 1771, 3, 2, 2, 2, 331, 1780, 3, 2, 2, 2, 333, 1788, 3, 2, 2, 2, 335, 1794, 3, 2, 2, 2, 337, 1800, 3, 2, 2, 2, 339, 1808, 3, 2, 2, 2, 341, 1813, 3, 2, 2, 2, 343, 1823, 3, 2, 2, 2, 345, 1830, 3, 2, 2, 2, 347, 1840, 3, 2, 2, 2, 349, 1848, 3, 2, 2, 2, 351, 1854, 3, 2, 2, 2, 353, 1868, 3, 2, 2, 2, 355, 1881, 3, 2, 2, 2, 357, 1889, 3, 2, 2, 2, 359, 1896, 3, 2, 2, 2, 361, 1903, 3, 2, 2, 2, 363, 1915, 3, 2, 2, 2, 365, 1924, 3, 2, 2, 2, 367, 1933, 3, 2, 2, 2, 369, 1941, 3, 2, 2, 2, 371, 1951, 3, 2, 2, 2, 373, 1962, 3, 2, 2, 2, 375, 1968, 3, 2, 2, 2, 377, 1976, 3, 2, 2, 2, 379, 1988, 3, 2, 2, 2, 381, 1995, 3, 2, 2, 2, 383, 2003, 3, 2, 2, 2, 385, 2012, 3, 2, 2, 2, 387, 2022, 3, 2, 2, 2, 389, 2029, 3, 2, 2, 2, 391, 2035, 3, 2, 2, 2, 393, 2047, 3, 2, 2, 2, 395, 2060, 3, 2, 2, 2, 397, 2069, 3, 2, 2, 2, 399, 2079, 3, 2, 2, 2, 401, 2083, 3, 2, 2, 2, 403, 2092, 3, 2, 2, 2, 405, 2100, 3, 2, 2, 2, 407, 2108, 3, 2, 2, 2, 409, 2113, 3, 2, 2, 2, 411, 2124, 3, 2, 2, 2, 413, 2136, 3, 2, 2, 2, 415, 2145, 3, 2, 2, 2, 417, 2153, 3, 2, 2, 2, 419, 2160, 3, 2, 2, 2, 421, 2166, 3, 2, 2, 2, 423, 2171, 3, 2, 2, 2, 425, 2178, 3, 2, 2, 2, 427, 2183, 3, 2, 2, 2, 429, 2190, 3, 2, 2, 2, 431, 2198, 3, 2, 2, 2, 433, 2205, 3, 2, 2, 2, 435, 2212, 3, 2, 2, 2, 437, 2217, 3, 2, 2, 2, 439, 2222, 3, 2, 2, 2, 441, 2228, 3, 2, 2, 2, 443, 2240, 3, 2, 2, 2, 445, 2251, 3, 2, 2, 2, 447, 2264, 3, 2, 2, 2, 449, 2270, 3, 2, 2, 2, 451, 2278, 3, 2, 2, 2, 453, 2284, 3, 2, 2, 2, 455, 2291, 3, 2, 2, 2, 457, 2296, 3, 2, 2, 2, 459, 2302, 3, 2, 2, 2, 461, 2309, 3, 2, 2, 2, 463, 2319, 3, 2, 2, 2, 465, 2326, 3, 2, 2, 2, 467, 2342, 3, 2, 2, 2, 469, 2351, 3, 2, 2, 2, 471, 2355, 3, 2, 2, 2, 473, 2359, 3, 2, 2, 2, 475, 2365, 3, 2, 2, 2, 477, 2371, 3, 2, 2, 2, 479, 2376, 3, 2, 2, 2, 481, 2381, 3, 2, 2, 2, 483, 2389, 3, 2, 2, 2, 485, 2396, 3, 2, 2, 2, 487, 2403, 3, 2, 2, 2, 489, 2418, 3, 2, 2, 2, 491, 2435, 3, 2, 2, 2, 493, 2451, 3, 2, 2, 2, 495, 2465, 3, 2, 2, 2, 497, 2479, 3, 2, 2, 2, 499, 2494, 3, 2, 2, 2, 501, 2513, 3, 2, 2, 2, 503, 2524, 3, 2, 2, 2, 505, 2546, 3, 2, 2, 2, 507, 2561, 3, 2, 2, 2, 509, 2585, 3, 2, 2, 2, 511, 2603, 3, 2, 2, 2, 513, 2606, 3, 2, 2, 2, 515, 2619, 3, 2, 2, 2, 517, 2627, 3, 2, 2, 2, 519, 2635, 3, 2, 2, 2, 521, 2638, 3, 2, 2, 2, 523, 2640, 3, 2, 2, 2, 525, 2647, 3, 2, 2, 2, 527, 2654, 3, 2, 2, 2, 529, 2660, 3, 2, 2, 2, 531, 2664, 3, 2, 2, 2, 533, 2669, 3, 2, 2, 2, 535, 2677, 3, 2, 2, 2, 537, 2684, 3, 2, 2, 2, 539, 2694, 3, 2, 2, 2, 541, 2700, 3, 2, 2, 2, 543, 2708, 3, 2, 2, 2, 545, 2716, 3, 2, 2, 2, 547, 2725, 3, 2, 2, 2, 549, 2729, 3, 2, 2, 2, 551, 2736, 3, 2, 2, 2, 553, 2742, 3, 2, 2, 2, 555, 2749, 3, 2, 2, 2, 557, 2754, 3, 2, 2, 2, 559, 2759, 3, 2, 2, 2, 561, 2769, 3, 2, 2, 2, 563, 2778, 3, 2, 2, 2, 565, 2786, 3, 2, 2, 2, 567, 2790, 3, 2, 2, 2, 569, 2794, 3, 2, 2, 2, 571, 2799, 3, 2, 2, 2, 573, 2801, 3, 2, 2, 2, 575, 2803, 3, 2, 2, 2, 577, 2805, 3, 2, 2, 2, 579, 2807, 3, 2, 2, 2, 581, 2809, 3, 2, 2, 2, 583, 2811, 3, 2, 2, 2, 585, 2813, 3, 2, 2, 2, 587, 2815, 3, 2, 2, 2, 589, 2817, 3, 2, 2, 2, 591, 2819, 3, 2, 2, 2, 593, 2821, 3, 2, 2, 2, 595, 2823, 3, 2, 2, 2, 597, 2825, 3, 2, 2, 2, 599, 2827, 3, 2, 2, 2, 601, 2829, 3, 2, 2, 2, 603, 2831, 3, 2, 2, 2, 605, 2833, 3, 2, 2, 2, 607, 2835, 3, 2, 2, 2, 609, 2837, 3, 2, 2, 2, 611, 2839, 3, 2, 2, 2, 613, 2841, 3, 2, 2, 2, 615, 2843, 3, 2, 2, 2, 617, 2845, 3, 2, 2, 2, 619, 2847, 3, 2, 2, 2, 621, 2849, 3, 2, 2, 2, 623, 2851, 3, 2, 2, 2, 625, 2853, 3, 2, 2, 2, 627, 2855, 3, 2, 2, 2, 629, 2858, 3, 2, 2, 2, 631, 2863, 3, 2, 2, 2, 633, 2866, 3, 2, 2, 2, 635, 2913, 3, 2, 2, 2, 637, 2915, 3, 2, 2, 2, 639, 2920, 3, 2, 2, 2, 641, 2924, 3, 2, 2, 2, 643, 2936, 3, 2, 2, 2, 645, 2950, 3, 2, 2, 2, 647, 2952, 3, 2, 2, 2, 649, 2954, 3, 2, 2, 2, 651, 2967, 3, 2, 2, 2, 653, 2980, 3, 2, 2, 2, 655, 2989, 3, 2, 2, 2, 657, 659, 9, 2, 2, 2, 658, 657, 3, 2, 2, 2, 659, 660, 3, 2, 2, 2, 660, 658, 3, 2, 2, 2, 660, 661, 3, 2, 2, 2, 661, 662, 3, 2, 2, 2, 662, 663, 8, 2, 2, 2, 663, 4, 3, 2, 2, 2, 664, 665, 7, 49, 2, 2, 665, 666, 7, 44, 2, 2, 666, 667, 7, 35, 2, 2, 667, 669, 3, 2, 2, 2, 668, 670, 11, 2, 2, 2, 669, 668, 3, 2, 2, 2, 670, 671, 3, 2, 2, 2, 671, 672, 3, 2, 2, 2, 671, 669, 3, 2, 2, 2, 672, 673, 3, 2, 2, 2, 673, 674, 7, 44, 2, 2, 674, 675, 7, 49, 2, 2, 675, 676, 3, 2, 2, 2, 676, 677, 8, 3, 3, 2, 677, 6, 3, 2, 2, 2, 678, 679, 7, 49, 2, 2, 679, 680, 7, 44, 2, 2, 680, 684, 3, 2, 2, 2, 681, 683, 11, 2, 2, 2, 682, 681, 3, 2, 2, 2, 683, 686, 3, 2, 2, 2, 684, 685, 3, 2, 2, 2, 684, 682, 3, 2, 2, 2, 685, 687, 3, 2, 2, 2, 686, 684, 3, 2, 2, 2, 687, 688, 7, 44, 2, 2, 688, 689, 7, 49, 2, 2, 689, 690, 3, 2, 2, 2, 690, 691, 8, 4, 2, 2, 691, 8, 3, 2, 2, 2, 692, 693, 7, 47, 2, 2, 693, 694, 7, 47, 2, 2, 694, 697, 7, 34, 2, 2, 695, 697, 7, 37, 2, 2, 696, 692, 3, 2, 2, 2, 696, 695, 3, 2, 2, 2, 697, 701, 3, 2, 2, 2, 698, 700, 10, 3, 2, 2, 699, 698, 3, 2, 2, 2, 700, 703, 3, 2, 2, 2, 701, 699, 3, 2, 2, 2, 701, 702, 3, 2, 2, 2, 702, 709, 3, 2, 2, 2, 703, 701, 3, 2, 2, 2, 704, 706, 7, 15, 2, 2, 705, 704, 3, 2, 2, 2, 705, 706, 3, 2, 2, 2, 706, 707, 3, 2, 2, 2, 707, 710, 7, 12, 2, 2, 708, 710, 7, 2, 2, 3, 709, 705, 3, 2, 2, 2, 709, 708, 3, 2, 2, 2, 710, 722, 3, 2, 2, 2, 711, 712, 7, 47, 2, 2, 712, 713, 7, 47, 2, 2, 713, 719, 3, 2, 2, 2, 714, 716, 7, 15, 2, 2, 715, 714, 3, 2, 2, 2, 715, 716, 3, 2, 2, 2, 716, 717, 3, 2, 2, 2, 717, 720, 7, 12, 2, 2, 718, 720, 7, 2, 2, 3, 719, 715, 3, 2, 2, 2, 719, 718, 3, 2, 2, 2, 720, 722, 3, 2, 2, 2, 721, 696, 3, 2, 2, 2, 721, 711, 3, 2, 2, 2, 722, 723, 3, 2, 2, 2, 723, 724, 8, 5, 2, 2, 724, 10, 3, 2, 2, 2, 725, 726, 7, 85, 2, 2, 726, 727, 7, 71, 2, 2, 727, 728, 7, 78, 2, 2, 728, 729, 7, 71, 2, 2, 729, 730, 7, 69, 2, 2, 730, 731, 7, 86, 2, 2, 731, 12, 3, 2, 2, 2, 732, 733, 7, 72, 2, 2, 733, 734, 7, 84, 2, 2, 734, 735, 7, 81, 2, 2, 735, 736, 7, 79, 2, 2, 736, 14, 3, 2, 2, 2, 737, 738, 7, 67, 2, 2, 738, 739, 7, 70, 2, 2, 739, 740, 7, 70, 2, 2, 740, 16, 3, 2, 2, 2, 741, 742, 7, 67, 2, 2, 742, 743, 7, 85, 2, 2, 743, 18, 3, 2, 2, 2, 744, 745, 7, 67, 2, 2, 745, 746, 7, 78, 2, 2, 746, 747, 7, 78, 2, 2, 747, 20, 3, 2, 2, 2, 748, 749, 7, 67, 2, 2, 749, 750, 7, 80, 2, 2, 750, 751, 7, 91, 2, 2, 751, 22, 3, 2, 2, 2, 752, 753, 7, 70, 2, 2, 753, 754, 7, 75, 2, 2, 754, 755, 7, 85, 2, 2, 755, 756, 7, 86, 2, 2, 756, 757, 7, 75, 2, 2, 757, 758, 7, 80, 2, 2, 758, 759, 7, 69, 2, 2, 759, 760, 7, 86, 2, 2, 760, 24, 3, 2, 2, 2, 761, 762, 7, 89, 2, 2, 762, 763, 7, 74, 2, 2, 763, 764, 7, 71, 2, 2, 764, 765, 7, 84, 2, 2, 765, 766, 7, 71, 2, 2, 766, 26, 3, 2, 2, 2, 767, 768, 7, 73, 2, 2, 768, 769, 7, 84, 2, 2, 769, 770, 7, 81, 2, 2, 770, 771, 7, 87, 2, 2, 771, 772, 7, 82, 2, 2, 772, 28, 3, 2, 2, 2, 773, 774, 7, 68, 2, 2, 774, 775, 7, 91, 2, 2, 775, 30, 3, 2, 2, 2, 776, 777, 7, 73, 2, 2, 777, 778, 7, 84, 2, 2, 778, 779, 7, 81, 2, 2, 779, 780, 7, 87, 2, 2, 780, 781, 7, 82, 2, 2, 781, 782, 7, 75, 2, 2, 782, 783, 7, 80, 2, 2, 783, 784, 7, 73, 2, 2, 784, 32, 3, 2, 2, 2, 785, 786, 7, 85, 2, 2, 786, 787, 7, 71, 2, 2, 787, 788, 7, 86, 2, 2, 788, 789, 7, 85, 2, 2, 789, 34, 3, 2, 2, 2, 790, 791, 7, 69, 2, 2, 791, 792, 7, 87, 2, 2, 792, 793, 7, 68, 2, 2, 793, 794, 7, 71, 2, 2, 794, 36, 3, 2, 2, 2, 795, 796, 7, 84, 2, 2, 796, 797, 7, 81, 2, 2, 797, 798, 7, 78, 2, 2, 798, 799, 7, 78, 2, 2, 799, 800, 7, 87, 2, 2, 800, 801, 7, 82, 2, 2, 801, 38, 3, 2, 2, 2, 802, 803, 7, 81, 2, 2, 803, 804, 7, 84, 2, 2, 804, 805, 7, 70, 2, 2, 805, 806, 7, 71, 2, 2, 806, 807, 7, 84, 2, 2, 807, 40, 3, 2, 2, 2, 808, 809, 7, 74, 2, 2, 809, 810, 7, 67, 2, 2, 810, 811, 7, 88, 2, 2, 811, 812, 7, 75, 2, 2, 812, 813, 7, 80, 2, 2, 813, 814, 7, 73, 2, 2, 814, 42, 3, 2, 2, 2, 815, 816, 7, 78, 2, 2, 816, 817, 7, 75, 2, 2, 817, 818, 7, 79, 2, 2, 818, 819, 7, 75, 2, 2, 819, 820, 7, 86, 2, 2, 820, 44, 3, 2, 2, 2, 821, 822, 7, 67, 2, 2, 822, 823, 7, 86, 2, 2, 823, 46, 3, 2, 2, 2, 824, 825, 7, 81, 2, 2, 825, 826, 7, 84, 2, 2, 826, 48, 3, 2, 2, 2, 827, 828, 7, 67, 2, 2, 828, 829, 7, 80, 2, 2, 829, 830, 7, 70, 2, 2, 830, 50, 3, 2, 2, 2, 831, 832, 7, 75, 2, 2, 832, 833, 7, 80, 2, 2, 833, 52, 3, 2, 2, 2, 834, 835, 7, 80, 2, 2, 835, 836, 7, 81, 2, 2, 836, 837, 7, 86, 2, 2, 837, 54, 3, 2, 2, 2, 838, 839, 7, 80, 2, 2, 839, 840, 7, 81, 2, 2, 840, 56, 3, 2, 2, 2, 841, 842, 7, 71, 2, 2, 842, 843, 7, 90, 2, 2, 843, 844, 7, 75, 2, 2, 844, 845, 7, 85, 2, 2, 845, 846, 7, 86, 2, 2, 846, 847, 7, 85, 2, 2, 847, 58, 3, 2, 2, 2, 848, 849, 7, 68, 2, 2, 849, 850, 7, 71, 2, 2, 850, 851, 7, 86, 2, 2, 851, 852, 7, 89, 2, 2, 852, 853, 7, 71, 2, 2, 853, 854, 7, 71, 2, 2, 854, 855, 7, 80, 2, 2, 855, 60, 3, 2, 2, 2, 856, 857, 7, 78, 2, 2, 857, 858, 7, 75, 2, 2, 858, 859, 7, 77, 2, 2, 859, 860, 7, 71, 2, 2, 860, 62, 3, 2, 2, 2, 861, 862, 7, 84, 2, 2, 862, 863, 7, 78, 2, 2, 863, 864, 7, 75, 2, 2, 864, 865, 7, 77, 2, 2, 865, 866, 7, 71, 2, 2, 866, 64, 3, 2, 2, 2, 867, 868, 7, 75, 2, 2, 868, 869, 7, 85, 2, 2, 869, 66, 3, 2, 2, 2, 870, 871, 7, 86, 2, 2, 871, 872, 7, 84, 2, 2, 872, 873, 7, 87, 2, 2, 873, 874, 7, 71, 2, 2, 874, 68, 3, 2, 2, 2, 875, 876, 7, 72, 2, 2, 876, 877, 7, 67, 2, 2, 877, 878, 7, 78, 2, 2, 878, 879, 7, 85, 2, 2, 879, 880, 7, 71, 2, 2, 880, 70, 3, 2, 2, 2, 881, 882, 7, 80, 2, 2, 882, 883, 7, 87, 2, 2, 883, 884, 7, 78, 2, 2, 884, 885, 7, 78, 2, 2, 885, 886, 7, 85, 2, 2, 886, 72, 3, 2, 2, 2, 887, 888, 7, 67, 2, 2, 888, 889, 7, 85, 2, 2, 889, 890, 7, 69, 2, 2, 890, 74, 3, 2, 2, 2, 891, 892, 7, 70, 2, 2, 892, 893, 7, 71, 2, 2, 893, 894, 7, 85, 2, 2, 894, 895, 7, 69, 2, 2, 895, 76, 3, 2, 2, 2, 896, 897, 7, 72, 2, 2, 897, 898, 7, 81, 2, 2, 898, 899, 7, 84, 2, 2, 899, 78, 3, 2, 2, 2, 900, 901, 7, 75, 2, 2, 901, 902, 7, 80, 2, 2, 902, 903, 7, 86, 2, 2, 903, 904, 7, 71, 2, 2, 904, 905, 7, 84, 2, 2, 905, 906, 7, 88, 2, 2, 906, 907, 7, 67, 2, 2, 907, 908, 7, 78, 2, 2, 908, 80, 3, 2, 2, 2, 909, 910, 7, 69, 2, 2, 910, 911, 7, 67, 2, 2, 911, 912, 7, 85, 2, 2, 912, 913, 7, 71, 2, 2, 913, 82, 3, 2, 2, 2, 914, 915, 7, 89, 2, 2, 915, 916, 7, 74, 2, 2, 916, 917, 7, 71, 2, 2, 917, 918, 7, 80, 2, 2, 918, 84, 3, 2, 2, 2, 919, 920, 7, 86, 2, 2, 920, 921, 7, 74, 2, 2, 921, 922, 7, 71, 2, 2, 922, 923, 7, 80, 2, 2, 923, 86, 3, 2, 2, 2, 924, 925, 7, 71, 2, 2, 925, 926, 7, 78, 2, 2, 926, 927, 7, 85, 2, 2, 927, 928, 7, 71, 2, 2, 928, 88, 3, 2, 2, 2, 929, 930, 7, 71, 2, 2, 930, 931, 7, 80, 2, 2, 931, 932, 7, 70, 2, 2, 932, 90, 3, 2, 2, 2, 933, 934, 7, 76, 2, 2, 934, 935, 7, 81, 2, 2, 935, 936, 7, 75, 2, 2, 936, 937, 7, 80, 2, 2, 937, 92, 3, 2, 2, 2, 938, 939, 7, 69, 2, 2, 939, 940, 7, 84, 2, 2, 940, 941, 7, 81, 2, 2, 941, 942, 7, 85, 2, 2, 942, 943, 7, 85, 2, 2, 943, 94, 3, 2, 2, 2, 944, 945, 7, 81, 2, 2, 945, 946, 7, 87, 2, 2, 946, 947, 7, 86, 2, 2, 947, 948, 7, 71, 2, 2, 948, 949, 7, 84, 2, 2, 949, 96, 3, 2, 2, 2, 950, 951, 7, 75, 2, 2, 951, 952, 7, 80, 2, 2, 952, 953, 7, 80, 2, 2, 953, 954, 7, 71, 2, 2, 954, 955, 7, 84, 2, 2, 955, 98, 3, 2, 2, 2, 956, 957, 7, 78, 2, 2, 957, 958, 7, 71, 2, 2, 958, 959, 7, 72, 2, 2, 959, 960, 7, 86, 2, 2, 960, 100, 3, 2, 2, 2, 961, 962, 7, 85, 2, 2, 962, 963, 7, 71, 2, 2, 963, 964, 7, 79, 2, 2, 964, 965, 7, 75, 2, 2, 965, 102, 3, 2, 2, 2, 966, 967, 7, 84, 2, 2, 967, 968, 7, 75, 2, 2, 968, 969, 7, 73, 2, 2, 969, 970, 7, 74, 2, 2, 970, 971, 7, 86, 2, 2, 971, 104, 3, 2, 2, 2, 972, 973, 7, 72, 2, 2, 973, 974, 7, 87, 2, 2, 974, 975, 7, 78, 2, 2, 975, 976, 7, 78, 2, 2, 976, 106, 3, 2, 2, 2, 977, 978, 7, 80, 2, 2, 978, 979, 7, 67, 2, 2, 979, 980, 7, 86, 2, 2, 980, 981, 7, 87, 2, 2, 981, 982, 7, 84, 2, 2, 982, 983, 7, 67, 2, 2, 983, 984, 7, 78, 2, 2, 984, 108, 3, 2, 2, 2, 985, 986, 7, 81, 2, 2, 986, 987, 7, 80, 2, 2, 987, 110, 3, 2, 2, 2, 988, 989, 7, 82, 2, 2, 989, 990, 7, 75, 2, 2, 990, 991, 7, 88, 2, 2, 991, 992, 7, 81, 2, 2, 992, 993, 7, 86, 2, 2, 993, 112, 3, 2, 2, 2, 994, 995, 7, 78, 2, 2, 995, 996, 7, 67, 2, 2, 996, 997, 7, 86, 2, 2, 997, 998, 7, 71, 2, 2, 998, 999, 7, 84, 2, 2, 999, 1000, 7, 67, 2, 2, 1000, 1001, 7, 78, 2, 2, 1001, 114, 3, 2, 2, 2, 1002, 1003, 7, 89, 2, 2, 1003, 1004, 7, 75, 2, 2, 1004, 1005, 7, 80, 2, 2, 1005, 1006, 7, 70, 2, 2, 1006, 1007, 7, 81, 2, 2, 1007, 1008, 7, 89, 2, 2, 1008, 116, 3, 2, 2, 2, 1009, 1010, 7, 81, 2, 2, 1010, 1011, 7, 88, 2, 2, 1011, 1012, 7, 71, 2, 2, 1012, 1013, 7, 84, 2, 2, 1013, 118, 3, 2, 2, 2, 1014, 1015, 7, 82, 2, 2, 1015, 1016, 7, 67, 2, 2, 1016, 1017, 7, 84, 2, 2, 1017, 1018, 7, 86, 2, 2, 1018, 1019, 7, 75, 2, 2, 1019, 1020, 7, 86, 2, 2, 1020, 1021, 7, 75, 2, 2, 1021, 1022, 7, 81, 2, 2, 1022, 1023, 7, 80, 2, 2, 1023, 120, 3, 2, 2, 2, 1024, 1025, 7, 84, 2, 2, 1025, 1026, 7, 67, 2, 2, 1026, 1027, 7, 80, 2, 2, 1027, 1028, 7, 73, 2, 2, 1028, 1029, 7, 71, 2, 2, 1029, 122, 3, 2, 2, 2, 1030, 1031, 7, 84, 2, 2, 1031, 1032, 7, 81, 2, 2, 1032, 1033, 7, 89, 2, 2, 1033, 1034, 7, 85, 2, 2, 1034, 124, 3, 2, 2, 2, 1035, 1036, 7, 87, 2, 2, 1036, 1037, 7, 80, 2, 2, 1037, 1038, 7, 68, 2, 2, 1038, 1039, 7, 81, 2, 2, 1039, 1040, 7, 87, 2, 2, 1040, 1041, 7, 80, 2, 2, 1041, 1042, 7, 70, 2, 2, 1042, 1043, 7, 71, 2, 2, 1043, 1044, 7, 70, 2, 2, 1044, 126, 3, 2, 2, 2, 1045, 1046, 7, 82, 2, 2, 1046, 1047, 7, 84, 2, 2, 1047, 1048, 7, 71, 2, 2, 1048, 1049, 7, 69, 2, 2, 1049, 1050, 7, 71, 2, 2, 1050, 1051, 7, 70, 2, 2, 1051, 1052, 7, 75, 2, 2, 1052, 1053, 7, 80, 2, 2, 1053, 1054, 7, 73, 2, 2, 1054, 128, 3, 2, 2, 2, 1055, 1056, 7, 72, 2, 2, 1056, 1057, 7, 81, 2, 2, 1057, 1058, 7, 78, 2, 2, 1058, 1059, 7, 78, 2, 2, 1059, 1060, 7, 81, 2, 2, 1060, 1061, 7, 89, 2, 2, 1061, 1062, 7, 75, 2, 2, 1062, 1063, 7, 80, 2, 2, 1063, 1064, 7, 73, 2, 2, 1064, 130, 3, 2, 2, 2, 1065, 1066, 7, 69, 2, 2, 1066, 1067, 7, 87, 2, 2, 1067, 1068, 7, 84, 2, 2, 1068, 1069, 7, 84, 2, 2, 1069, 1070, 7, 71, 2, 2, 1070, 1071, 7, 80, 2, 2, 1071, 1072, 7, 86, 2, 2, 1072, 132, 3, 2, 2, 2, 1073, 1074, 7, 72, 2, 2, 1074, 1075, 7, 75, 2, 2, 1075, 1076, 7, 84, 2, 2, 1076, 1077, 7, 85, 2, 2, 1077, 1078, 7, 86, 2, 2, 1078, 134, 3, 2, 2, 2, 1079, 1080, 7, 67, 2, 2, 1080, 1081, 7, 72, 2, 2, 1081, 1082, 7, 86, 2, 2, 1082, 1083, 7, 71, 2, 2, 1083, 1084, 7, 84, 2, 2, 1084, 136, 3, 2, 2, 2, 1085, 1086, 7, 78, 2, 2, 1086, 1087, 7, 67, 2, 2, 1087, 1088, 7, 85, 2, 2, 1088, 1089, 7, 86, 2, 2, 1089, 138, 3, 2, 2, 2, 1090, 1091, 7, 89, 2, 2, 1091, 1092, 7, 75, 2, 2, 1092, 1093, 7, 86, 2, 2, 1093, 1094, 7, 74, 2, 2, 1094, 140, 3, 2, 2, 2, 1095, 1096, 7, 88, 2, 2, 1096, 1097, 7, 67, 2, 2, 1097, 1098, 7, 78, 2, 2, 1098, 1099, 7, 87, 2, 2, 1099, 1100, 7, 71, 2, 2, 1100, 1101, 7, 85, 2, 2, 1101, 142, 3, 2, 2, 2, 1102, 1103, 7, 69, 2, 2, 1103, 1104, 7, 84, 2, 2, 1104, 1105, 7, 71, 2, 2, 1105, 1106, 7, 67, 2, 2, 1106, 1107, 7, 86, 2, 2, 1107, 1108, 7, 71, 2, 2, 1108, 144, 3, 2, 2, 2, 1109, 1110, 7, 86, 2, 2, 1110, 1111, 7, 67, 2, 2, 1111, 1112, 7, 68, 2, 2, 1112, 1113, 7, 78, 2, 2, 1113, 1114, 7, 71, 2, 2, 1114, 146, 3, 2, 2, 2, 1115, 1116, 7, 70, 2, 2, 1116, 1117, 7, 75, 2, 2, 1117, 1118, 7, 84, 2, 2, 1118, 1119, 7, 71, 2, 2, 1119, 1120, 7, 69, 2, 2, 1120, 1121, 7, 86, 2, 2, 1121, 1122, 7, 81, 2, 2, 1122, 1123, 7, 84, 2, 2, 1123, 1124, 7, 91, 2, 2, 1124, 148, 3, 2, 2, 2, 1125, 1126, 7, 88, 2, 2, 1126, 1127, 7, 75, 2, 2, 1127, 1128, 7, 71, 2, 2, 1128, 1129, 7, 89, 2, 2, 1129, 150, 3, 2, 2, 2, 1130, 1131, 7, 84, 2, 2, 1131, 1132, 7, 71, 2, 2, 1132, 1133, 7, 82, 2, 2, 1133, 1134, 7, 78, 2, 2, 1134, 1135, 7, 67, 2, 2, 1135, 1136, 7, 69, 2, 2, 1136, 1137, 7, 71, 2, 2, 1137, 152, 3, 2, 2, 2, 1138, 1139, 7, 75, 2, 2, 1139, 1140, 7, 80, 2, 2, 1140, 1141, 7, 85, 2, 2, 1141, 1142, 7, 71, 2, 2, 1142, 1143, 7, 84, 2, 2, 1143, 1144, 7, 86, 2, 2, 1144, 154, 3, 2, 2, 2, 1145, 1146, 7, 70, 2, 2, 1146, 1147, 7, 71, 2, 2, 1147, 1148, 7, 78, 2, 2, 1148, 1149, 7, 71, 2, 2, 1149, 1150, 7, 86, 2, 2, 1150, 1151, 7, 71, 2, 2, 1151, 156, 3, 2, 2, 2, 1152, 1153, 7, 75, 2, 2, 1153, 1154, 7, 80, 2, 2, 1154, 1155, 7, 86, 2, 2, 1155, 1156, 7, 81, 2, 2, 1156, 158, 3, 2, 2, 2, 1157, 1158, 7, 70, 2, 2, 1158, 1159, 7, 71, 2, 2, 1159, 1160, 7, 85, 2, 2, 1160, 1161, 7, 69, 2, 2, 1161, 1162, 7, 84, 2, 2, 1162, 1163, 7, 75, 2, 2, 1163, 1164, 7, 68, 2, 2, 1164, 1165, 7, 71, 2, 2, 1165, 160, 3, 2, 2, 2, 1166, 1167, 7, 71, 2, 2, 1167, 1168, 7, 90, 2, 2, 1168, 1169, 7, 82, 2, 2, 1169, 1170, 7, 78, 2, 2, 1170, 1171, 7, 67, 2, 2, 1171, 1172, 7, 75, 2, 2, 1172, 1173, 7, 80, 2, 2, 1173, 162, 3, 2, 2, 2, 1174, 1175, 7, 72, 2, 2, 1175, 1176, 7, 81, 2, 2, 1176, 1177, 7, 84, 2, 2, 1177, 1178, 7, 79, 2, 2, 1178, 1179, 7, 67, 2, 2, 1179, 1180, 7, 86, 2, 2, 1180, 164, 3, 2, 2, 2, 1181, 1182, 7, 78, 2, 2, 1182, 1183, 7, 81, 2, 2, 1183, 1184, 7, 73, 2, 2, 1184, 1185, 7, 75, 2, 2, 1185, 1186, 7, 69, 2, 2, 1186, 1187, 7, 67, 2, 2, 1187, 1188, 7, 78, 2, 2, 1188, 166, 3, 2, 2, 2, 1189, 1190, 7, 69, 2, 2, 1190, 1191, 7, 81, 2, 2, 1191, 1192, 7, 70, 2, 2, 1192, 1193, 7, 71, 2, 2, 1193, 1194, 7, 73, 2, 2, 1194, 1195, 7, 71, 2, 2, 1195, 1196, 7, 80, 2, 2, 1196, 168, 3, 2, 2, 2, 1197, 1198, 7, 69, 2, 2, 1198, 1199, 7, 81, 2, 2, 1199, 1200, 7, 85, 2, 2, 1200, 1201, 7, 86, 2, 2, 1201, 170, 3, 2, 2, 2, 1202, 1203, 7, 69, 2, 2, 1203, 1204, 7, 67, 2, 2, 1204, 1205, 7, 85, 2, 2, 1205, 1206, 7, 86, 2, 2, 1206, 172, 3, 2, 2, 2, 1207, 1208, 7, 85, 2, 2, 1208, 1209, 7, 74, 2, 2, 1209, 1210, 7, 81, 2, 2, 1210, 1211, 7, 89, 2, 2, 1211, 174, 3, 2, 2, 2, 1212, 1213, 7, 86, 2, 2, 1213, 1214, 7, 67, 2, 2, 1214, 1215, 7, 68, 2, 2, 1215, 1216, 7, 78, 2, 2, 1216, 1217, 7, 71, 2, 2, 1217, 1218, 7, 85, 2, 2, 1218, 176, 3, 2, 2, 2, 1219, 1220, 7, 69, 2, 2, 1220, 1221, 7, 81, 2, 2, 1221, 1222, 7, 78, 2, 2, 1222, 1223, 7, 87, 2, 2, 1223, 1224, 7, 79, 2, 2, 1224, 1225, 7, 80, 2, 2, 1225, 1226, 7, 85, 2, 2, 1226, 178, 3, 2, 2, 2, 1227, 1228, 7, 69, 2, 2, 1228, 1229, 7, 81, 2, 2, 1229, 1230, 7, 78, 2, 2, 1230, 1231, 7, 87, 2, 2, 1231, 1232, 7, 79, 2, 2, 1232, 1233, 7, 80, 2, 2, 1233, 180, 3, 2, 2, 2, 1234, 1235, 7, 87, 2, 2, 1235, 1236, 7, 85, 2, 2, 1236, 1237, 7, 71, 2, 2, 1237, 182, 3, 2, 2, 2, 1238, 1239, 7, 82, 2, 2, 1239, 1240, 7, 67, 2, 2, 1240, 1241, 7, 84, 2, 2, 1241, 1242, 7, 86, 2, 2, 1242, 1243, 7, 75, 2, 2, 1243, 1244, 7, 86, 2, 2, 1244, 1245, 7, 75, 2, 2, 1245, 1246, 7, 81, 2, 2, 1246, 1247, 7, 80, 2, 2, 1247, 1248, 7, 85, 2, 2, 1248, 184, 3, 2, 2, 2, 1249, 1250, 7, 72, 2, 2, 1250, 1251, 7, 87, 2, 2, 1251, 1252, 7, 80, 2, 2, 1252, 1253, 7, 69, 2, 2, 1253, 1254, 7, 86, 2, 2, 1254, 1255, 7, 75, 2, 2, 1255, 1256, 7, 81, 2, 2, 1256, 1257, 7, 80, 2, 2, 1257, 1258, 7, 85, 2, 2, 1258, 186, 3, 2, 2, 2, 1259, 1260, 7, 70, 2, 2, 1260, 1261, 7, 84, 2, 2, 1261, 1262, 7, 81, 2, 2, 1262, 1263, 7, 82, 2, 2, 1263, 188, 3, 2, 2, 2, 1264, 1265, 7, 87, 2, 2, 1265, 1266, 7, 80, 2, 2, 1266, 1267, 7, 75, 2, 2, 1267, 1268, 7, 81, 2, 2, 1268, 1269, 7, 80, 2, 2, 1269, 190, 3, 2, 2, 2, 1270, 1271, 7, 71, 2, 2, 1271, 1272, 7, 90, 2, 2, 1272, 1273, 7, 69, 2, 2, 1273, 1274, 7, 71, 2, 2, 1274, 1275, 7, 82, 2, 2, 1275, 1276, 7, 86, 2, 2, 1276, 192, 3, 2, 2, 2, 1277, 1278, 7, 85, 2, 2, 1278, 1279, 7, 71, 2, 2, 1279, 1280, 7, 86, 2, 2, 1280, 1281, 7, 79, 2, 2, 1281, 1282, 7, 75, 2, 2, 1282, 1283, 7, 80, 2, 2, 1283, 1284, 7, 87, 2, 2, 1284, 1285, 7, 85, 2, 2, 1285, 194, 3, 2, 2, 2, 1286, 1287, 7, 75, 2, 2, 1287, 1288, 7, 80, 2, 2, 1288, 1289, 7, 86, 2, 2, 1289, 1290, 7, 71, 2, 2, 1290, 1291, 7, 84, 2, 2, 1291, 1292, 7, 85, 2, 2, 1292, 1293, 7, 71, 2, 2, 1293, 1294, 7, 69, 2, 2, 1294, 1295, 7, 86, 2, 2, 1295, 196, 3, 2, 2, 2, 1296, 1297, 7, 86, 2, 2, 1297, 1298, 7, 81, 2, 2, 1298, 198, 3, 2, 2, 2, 1299, 1300, 7, 86, 2, 2, 1300, 1301, 7, 67, 2, 2, 1301, 1302, 7, 68, 2, 2, 1302, 1303, 7, 78, 2, 2, 1303, 1304, 7, 71, 2, 2, 1304, 1305, 7, 85, 2, 2, 1305, 1306, 7, 67, 2, 2, 1306, 1307, 7, 79, 2, 2, 1307, 1308, 7, 82, 2, 2, 1308, 1309, 7, 78, 2, 2, 1309, 1310, 7, 71, 2, 2, 1310, 200, 3, 2, 2, 2, 1311, 1312, 7, 85, 2, 2, 1312, 1313, 7, 86, 2, 2, 1313, 1314, 7, 84, 2, 2, 1314, 1315, 7, 67, 2, 2, 1315, 1316, 7, 86, 2, 2, 1316, 1317, 7, 75, 2, 2, 1317, 1318, 7, 72, 2, 2, 1318, 1319, 7, 91, 2, 2, 1319, 202, 3, 2, 2, 2, 1320, 1321, 7, 67, 2, 2, 1321, 1322, 7, 78, 2, 2, 1322, 1323, 7, 86, 2, 2, 1323, 1324, 7, 71, 2, 2, 1324, 1325, 7, 84, 2, 2, 1325, 204, 3, 2, 2, 2, 1326, 1327, 7, 84, 2, 2, 1327, 1328, 7, 71, 2, 2, 1328, 1329, 7, 80, 2, 2, 1329, 1330, 7, 67, 2, 2, 1330, 1331, 7, 79, 2, 2, 1331, 1332, 7, 71, 2, 2, 1332, 206, 3, 2, 2, 2, 1333, 1334, 7, 85, 2, 2, 1334, 1335, 7, 86, 2, 2, 1335, 1336, 7, 84, 2, 2, 1336, 1337, 7, 87, 2, 2, 1337, 1338, 7, 69, 2, 2, 1338, 1339, 7, 86, 2, 2, 1339, 208, 3, 2, 2, 2, 1340, 1341, 7, 69, 2, 2, 1341, 1342, 7, 81, 2, 2, 1342, 1343, 7, 79, 2, 2, 1343, 1344, 7, 79, 2, 2, 1344, 1345, 7, 71, 2, 2, 1345, 1346, 7, 80, 2, 2, 1346, 1347, 7, 86, 2, 2, 1347, 210, 3, 2, 2, 2, 1348, 1349, 7, 85, 2, 2, 1349, 1350, 7, 71, 2, 2, 1350, 1351, 7, 86, 2, 2, 1351, 212, 3, 2, 2, 2, 1352, 1353, 7, 84, 2, 2, 1353, 1354, 7, 71, 2, 2, 1354, 1355, 7, 85, 2, 2, 1355, 1356, 7, 71, 2, 2, 1356, 1357, 7, 86, 2, 2, 1357, 214, 3, 2, 2, 2, 1358, 1359, 7, 70, 2, 2, 1359, 1360, 7, 67, 2, 2, 1360, 1361, 7, 86, 2, 2, 1361, 1362, 7, 67, 2, 2, 1362, 216, 3, 2, 2, 2, 1363, 1364, 7, 85, 2, 2, 1364, 1365, 7, 86, 2, 2, 1365, 1366, 7, 67, 2, 2, 1366, 1367, 7, 84, 2, 2, 1367, 1368, 7, 86, 2, 2, 1368, 218, 3, 2, 2, 2, 1369, 1370, 7, 86, 2, 2, 1370, 1371, 7, 84, 2, 2, 1371, 1372, 7, 67, 2, 2, 1372, 1373, 7, 80, 2, 2, 1373, 1374, 7, 85, 2, 2, 1374, 1375, 7, 67, 2, 2, 1375, 1376, 7, 69, 2, 2, 1376, 1377, 7, 86, 2, 2, 1377, 1378, 7, 75, 2, 2, 1378, 1379, 7, 81, 2, 2, 1379, 1380, 7, 80, 2, 2, 1380, 220, 3, 2, 2, 2, 1381, 1382, 7, 69, 2, 2, 1382, 1383, 7, 81, 2, 2, 1383, 1384, 7, 79, 2, 2, 1384, 1385, 7, 79, 2, 2, 1385, 1386, 7, 75, 2, 2, 1386, 1387, 7, 86, 2, 2, 1387, 222, 3, 2, 2, 2, 1388, 1389, 7, 84, 2, 2, 1389, 1390, 7, 81, 2, 2, 1390, 1391, 7, 78, 2, 2, 1391, 1392, 7, 78, 2, 2, 1392, 1393, 7, 68, 2, 2, 1393, 1394, 7, 67, 2, 2, 1394, 1395, 7, 69, 2, 2, 1395, 1396, 7, 77, 2, 2, 1396, 224, 3, 2, 2, 2, 1397, 1398, 7, 79, 2, 2, 1398, 1399, 7, 67, 2, 2, 1399, 1400, 7, 69, 2, 2, 1400, 1401, 7, 84, 2, 2, 1401, 1402, 7, 81, 2, 2, 1402, 226, 3, 2, 2, 2, 1403, 1404, 7, 75, 2, 2, 1404, 1405, 7, 73, 2, 2, 1405, 1406, 7, 80, 2, 2, 1406, 1407, 7, 81, 2, 2, 1407, 1408, 7, 84, 2, 2, 1408, 1409, 7, 71, 2, 2, 1409, 228, 3, 2, 2, 2, 1410, 1411, 7, 68, 2, 2, 1411, 1412, 7, 81, 2, 2, 1412, 1413, 7, 86, 2, 2, 1413, 1414, 7, 74, 2, 2, 1414, 230, 3, 2, 2, 2, 1415, 1416, 7, 78, 2, 2, 1416, 1417, 7, 71, 2, 2, 1417, 1418, 7, 67, 2, 2, 1418, 1419, 7, 70, 2, 2, 1419, 1420, 7, 75, 2, 2, 1420, 1421, 7, 80, 2, 2, 1421, 1422, 7, 73, 2, 2, 1422, 232, 3, 2, 2, 2, 1423, 1424, 7, 86, 2, 2, 1424, 1425, 7, 84, 2, 2, 1425, 1426, 7, 67, 2, 2, 1426, 1427, 7, 75, 2, 2, 1427, 1428, 7, 78, 2, 2, 1428, 1429, 7, 75, 2, 2, 1429, 1430, 7, 80, 2, 2, 1430, 1431, 7, 73, 2, 2, 1431, 234, 3, 2, 2, 2, 1432, 1433, 7, 75, 2, 2, 1433, 1434, 7, 72, 2, 2, 1434, 236, 3, 2, 2, 2, 1435, 1436, 7, 82, 2, 2, 1436, 1437, 7, 81, 2, 2, 1437, 1438, 7, 85, 2, 2, 1438, 1439, 7, 75, 2, 2, 1439, 1440, 7, 86, 2, 2, 1440, 1441, 7, 75, 2, 2, 1441, 1442, 7, 81, 2, 2, 1442, 1443, 7, 80, 2, 2, 1443, 238, 3, 2, 2, 2, 1444, 1445, 7, 71, 2, 2, 1445, 1446, 7, 90, 2, 2, 1446, 1447, 7, 86, 2, 2, 1447, 1448, 7, 84, 2, 2, 1448, 1449, 7, 67, 2, 2, 1449, 1450, 7, 69, 2, 2, 1450, 1451, 7, 86, 2, 2, 1451, 240, 3, 2, 2, 2, 1452, 1453, 7, 71, 2, 2, 1453, 1454, 7, 83, 2, 2, 1454, 242, 3, 2, 2, 2, 1455, 1456, 7, 80, 2, 2, 1456, 1457, 7, 85, 2, 2, 1457, 1458, 7, 71, 2, 2, 1458, 1459, 7, 83, 2, 2, 1459, 244, 3, 2, 2, 2, 1460, 1461, 7, 80, 2, 2, 1461, 1462, 7, 71, 2, 2, 1462, 1463, 7, 83, 2, 2, 1463, 246, 3, 2, 2, 2, 1464, 1465, 7, 80, 2, 2, 1465, 1466, 7, 71, 2, 2, 1466, 1467, 7, 83, 2, 2, 1467, 1468, 7, 76, 2, 2, 1468, 248, 3, 2, 2, 2, 1469, 1470, 7, 78, 2, 2, 1470, 1471, 7, 86, 2, 2, 1471, 250, 3, 2, 2, 2, 1472, 1473, 7, 78, 2, 2, 1473, 1474, 7, 86, 2, 2, 1474, 1475, 7, 71, 2, 2, 1475, 252, 3, 2, 2, 2, 1476, 1477, 7, 73, 2, 2, 1477, 1478, 7, 86, 2, 2, 1478, 254, 3, 2, 2, 2, 1479, 1480, 7, 73, 2, 2, 1480, 1481, 7, 86, 2, 2, 1481, 1482, 7, 71, 2, 2, 1482, 256, 3, 2, 2, 2, 1483, 1484, 7, 82, 2, 2, 1484, 1485, 7, 78, 2, 2, 1485, 1486, 7, 87, 2, 2, 1486, 1487, 7, 85, 2, 2, 1487, 258, 3, 2, 2, 2, 1488, 1489, 7, 79, 2, 2, 1489, 1490, 7, 75, 2, 2, 1490, 1491, 7, 80, 2, 2, 1491, 1492, 7, 87, 2, 2, 1492, 1493, 7, 85, 2, 2, 1493, 260, 3, 2, 2, 2, 1494, 1495, 7, 67, 2, 2, 1495, 1496, 7, 85, 2, 2, 1496, 1497, 7, 86, 2, 2, 1497, 1498, 7, 71, 2, 2, 1498, 1499, 7, 84, 2, 2, 1499, 1500, 7, 75, 2, 2, 1500, 1501, 7, 85, 2, 2, 1501, 1502, 7, 77, 2, 2, 1502, 262, 3, 2, 2, 2, 1503, 1504, 7, 85, 2, 2, 1504, 1505, 7, 78, 2, 2, 1505, 1506, 7, 67, 2, 2, 1506, 1507, 7, 85, 2, 2, 1507, 1508, 7, 74, 2, 2, 1508, 264, 3, 2, 2, 2, 1509, 1510, 7, 82, 2, 2, 1510, 1511, 7, 71, 2, 2, 1511, 1512, 7, 84, 2, 2, 1512, 1513, 7, 69, 2, 2, 1513, 1514, 7, 71, 2, 2, 1514, 1515, 7, 80, 2, 2, 1515, 1516, 7, 86, 2, 2, 1516, 266, 3, 2, 2, 2, 1517, 1518, 7, 70, 2, 2, 1518, 1519, 7, 75, 2, 2, 1519, 1520, 7, 88, 2, 2, 1520, 268, 3, 2, 2, 2, 1521, 1522, 7, 86, 2, 2, 1522, 1523, 7, 75, 2, 2, 1523, 1524, 7, 78, 2, 2, 1524, 1525, 7, 70, 2, 2, 1525, 1526, 7, 71, 2, 2, 1526, 270, 3, 2, 2, 2, 1527, 1528, 7, 67, 2, 2, 1528, 1529, 7, 79, 2, 2, 1529, 1530, 7, 82, 2, 2, 1530, 1531, 7, 71, 2, 2, 1531, 1532, 7, 84, 2, 2, 1532, 1533, 7, 85, 2, 2, 1533, 1534, 7, 67, 2, 2, 1534, 1535, 7, 80, 2, 2, 1535, 1536, 7, 70, 2, 2, 1536, 272, 3, 2, 2, 2, 1537, 1538, 7, 82, 2, 2, 1538, 1539, 7, 75, 2, 2, 1539, 1540, 7, 82, 2, 2, 1540, 1541, 7, 71, 2, 2, 1541, 274, 3, 2, 2, 2, 1542, 1543, 7, 69, 2, 2, 1543, 1544, 7, 81, 2, 2, 1544, 1545, 7, 80, 2, 2, 1545, 1546, 7, 69, 2, 2, 1546, 1547, 7, 67, 2, 2, 1547, 1548, 7, 86, 2, 2, 1548, 1549, 7, 97, 2, 2, 1549, 1550, 7, 82, 2, 2, 1550, 1551, 7, 75, 2, 2, 1551, 1552, 7, 82, 2, 2, 1552, 1553, 7, 71, 2, 2, 1553, 276, 3, 2, 2, 2, 1554, 1555, 7, 74, 2, 2, 1555, 1556, 7, 67, 2, 2, 1556, 1557, 7, 86, 2, 2, 1557, 278, 3, 2, 2, 2, 1558, 1559, 7, 82, 2, 2, 1559, 1560, 7, 71, 2, 2, 1560, 1561, 7, 84, 2, 2, 1561, 1562, 7, 69, 2, 2, 1562, 1563, 7, 71, 2, 2, 1563, 1564, 7, 80, 2, 2, 1564, 1565, 7, 86, 2, 2, 1565, 1566, 7, 78, 2, 2, 1566, 1567, 7, 75, 2, 2, 1567, 1568, 7, 86, 2, 2, 1568, 280, 3, 2, 2, 2, 1569, 1570, 7, 68, 2, 2, 1570, 1571, 7, 87, 2, 2, 1571, 1572, 7, 69, 2, 2, 1572, 1573, 7, 77, 2, 2, 1573, 1574, 7, 71, 2, 2, 1574, 1575, 7, 86, 2, 2, 1575, 282, 3, 2, 2, 2, 1576, 1577, 7, 81, 2, 2, 1577, 1578, 7, 87, 2, 2, 1578, 1579, 7, 86, 2, 2, 1579, 284, 3, 2, 2, 2, 1580, 1581, 7, 81, 2, 2, 1581, 1582, 7, 72, 2, 2, 1582, 286, 3, 2, 2, 2, 1583, 1584, 7, 85, 2, 2, 1584, 1585, 7, 81, 2, 2, 1585, 1586, 7, 84, 2, 2, 1586, 1587, 7, 86, 2, 2, 1587, 288, 3, 2, 2, 2, 1588, 1589, 7, 69, 2, 2, 1589, 1590, 7, 78, 2, 2, 1590, 1591, 7, 87, 2, 2, 1591, 1592, 7, 85, 2, 2, 1592, 1593, 7, 86, 2, 2, 1593, 1594, 7, 71, 2, 2, 1594, 1595, 7, 84, 2, 2, 1595, 290, 3, 2, 2, 2, 1596, 1597, 7, 70, 2, 2, 1597, 1598, 7, 75, 2, 2, 1598, 1599, 7, 85, 2, 2, 1599, 1600, 7, 86, 2, 2, 1600, 1601, 7, 84, 2, 2, 1601, 1602, 7, 75, 2, 2, 1602, 1603, 7, 68, 2, 2, 1603, 1604, 7, 87, 2, 2, 1604, 1605, 7, 86, 2, 2, 1605, 1606, 7, 71, 2, 2, 1606, 292, 3, 2, 2, 2, 1607, 1608, 7, 81, 2, 2, 1608, 1609, 7, 88, 2, 2, 1609, 1610, 7, 71, 2, 2, 1610, 1611, 7, 84, 2, 2, 1611, 1612, 7, 89, 2, 2, 1612, 1613, 7, 84, 2, 2, 1613, 1614, 7, 75, 2, 2, 1614, 1615, 7, 86, 2, 2, 1615, 1616, 7, 71, 2, 2, 1616, 294, 3, 2, 2, 2, 1617, 1618, 7, 86, 2, 2, 1618, 1619, 7, 84, 2, 2, 1619, 1620, 7, 67, 2, 2, 1620, 1621, 7, 80, 2, 2, 1621, 1622, 7, 85, 2, 2, 1622, 1623, 7, 72, 2, 2, 1623, 1624, 7, 81, 2, 2, 1624, 1625, 7, 84, 2, 2, 1625, 1626, 7, 79, 2, 2, 1626, 296, 3, 2, 2, 2, 1627, 1628, 7, 84, 2, 2, 1628, 1629, 7, 71, 2, 2, 1629, 1630, 7, 70, 2, 2, 1630, 1631, 7, 87, 2, 2, 1631, 1632, 7, 69, 2, 2, 1632, 1633, 7, 71, 2, 2, 1633, 298, 3, 2, 2, 2, 1634, 1635, 7, 87, 2, 2, 1635, 1636, 7, 85, 2, 2, 1636, 1637, 7, 75, 2, 2, 1637, 1638, 7, 80, 2, 2, 1638, 1639, 7, 73, 2, 2, 1639, 300, 3, 2, 2, 2, 1640, 1641, 7, 85, 2, 2, 1641, 1642, 7, 71, 2, 2, 1642, 1643, 7, 84, 2, 2, 1643, 1644, 7, 70, 2, 2, 1644, 1645, 7, 71, 2, 2, 1645, 302, 3, 2, 2, 2, 1646, 1647, 7, 85, 2, 2, 1647, 1648, 7, 71, 2, 2, 1648, 1649, 7, 84, 2, 2, 1649, 1650, 7, 70, 2, 2, 1650, 1651, 7, 71, 2, 2, 1651, 1652, 7, 82, 2, 2, 1652, 1653, 7, 84, 2, 2, 1653, 1654, 7, 81, 2, 2, 1654, 1655, 7, 82, 2, 2, 1655, 1656, 7, 71, 2, 2, 1656, 1657, 7, 84, 2, 2, 1657, 1658, 7, 86, 2, 2, 1658, 1659, 7, 75, 2, 2, 1659, 1660, 7, 71, 2, 2, 1660, 1661, 7, 85, 2, 2, 1661, 304, 3, 2, 2, 2, 1662, 1663, 7, 84, 2, 2, 1663, 1664, 7, 71, 2, 2, 1664, 1665, 7, 69, 2, 2, 1665, 1666, 7, 81, 2, 2, 1666, 1667, 7, 84, 2, 2, 1667, 1668, 7, 70, 2, 2, 1668, 1669, 7, 84, 2, 2, 1669, 1670, 7, 71, 2, 2, 1670, 1671, 7, 67, 2, 2, 1671, 1672, 7, 70, 2, 2, 1672, 1673, 7, 71, 2, 2, 1673, 1674, 7, 84, 2, 2, 1674, 306, 3, 2, 2, 2, 1675, 1676, 7, 84, 2, 2, 1676, 1677, 7, 71, 2, 2, 1677, 1678, 7, 69, 2, 2, 1678, 1679, 7, 81, 2, 2, 1679, 1680, 7, 84, 2, 2, 1680, 1681, 7, 70, 2, 2, 1681, 1682, 7, 89, 2, 2, 1682, 1683, 7, 84, 2, 2, 1683, 1684, 7, 75, 2, 2, 1684, 1685, 7, 86, 2, 2, 1685, 1686, 7, 71, 2, 2, 1686, 1687, 7, 84, 2, 2, 1687, 308, 3, 2, 2, 2, 1688, 1689, 7, 70, 2, 2, 1689, 1690, 7, 71, 2, 2, 1690, 1691, 7, 78, 2, 2, 1691, 1692, 7, 75, 2, 2, 1692, 1693, 7, 79, 2, 2, 1693, 1694, 7, 75, 2, 2, 1694, 1695, 7, 86, 2, 2, 1695, 1696, 7, 71, 2, 2, 1696, 1697, 7, 70, 2, 2, 1697, 310, 3, 2, 2, 2, 1698, 1699, 7, 72, 2, 2, 1699, 1700, 7, 75, 2, 2, 1700, 1701, 7, 71, 2, 2, 1701, 1702, 7, 78, 2, 2, 1702, 1703, 7, 70, 2, 2, 1703, 1704, 7, 85, 2, 2, 1704, 312, 3, 2, 2, 2, 1705, 1706, 7, 86, 2, 2, 1706, 1707, 7, 71, 2, 2, 1707, 1708, 7, 84, 2, 2, 1708, 1709, 7, 79, 2, 2, 1709, 1710, 7, 75, 2, 2, 1710, 1711, 7, 80, 2, 2, 1711, 1712, 7, 67, 2, 2, 1712, 1713, 7, 86, 2, 2, 1713, 1714, 7, 71, 2, 2, 1714, 1715, 7, 70, 2, 2, 1715, 314, 3, 2, 2, 2, 1716, 1717, 7, 69, 2, 2, 1717, 1718, 7, 81, 2, 2, 1718, 1719, 7, 78, 2, 2, 1719, 1720, 7, 78, 2, 2, 1720, 1721, 7, 71, 2, 2, 1721, 1722, 7, 69, 2, 2, 1722, 1723, 7, 86, 2, 2, 1723, 1724, 7, 75, 2, 2, 1724, 1725, 7, 81, 2, 2, 1725, 1726, 7, 80, 2, 2, 1726, 316, 3, 2, 2, 2, 1727, 1728, 7, 75, 2, 2, 1728, 1729, 7, 86, 2, 2, 1729, 1730, 7, 71, 2, 2, 1730, 1731, 7, 79, 2, 2, 1731, 1732, 7, 85, 2, 2, 1732, 318, 3, 2, 2, 2, 1733, 1734, 7, 77, 2, 2, 1734, 1735, 7, 71, 2, 2, 1735, 1736, 7, 91, 2, 2, 1736, 1737, 7, 85, 2, 2, 1737, 320, 3, 2, 2, 2, 1738, 1739, 7, 71, 2, 2, 1739, 1740, 7, 85, 2, 2, 1740, 1741, 7, 69, 2, 2, 1741, 1742, 7, 67, 2, 2, 1742, 1743, 7, 82, 2, 2, 1743, 1744, 7, 71, 2, 2, 1744, 1745, 7, 70, 2, 2, 1745, 322, 3, 2, 2, 2, 1746, 1747, 7, 78, 2, 2, 1747, 1748, 7, 75, 2, 2, 1748, 1749, 7, 80, 2, 2, 1749, 1750, 7, 71, 2, 2, 1750, 1751, 7, 85, 2, 2, 1751, 324, 3, 2, 2, 2, 1752, 1753, 7, 85, 2, 2, 1753, 1754, 7, 71, 2, 2, 1754, 1755, 7, 82, 2, 2, 1755, 1756, 7, 67, 2, 2, 1756, 1757, 7, 84, 2, 2, 1757, 1758, 7, 67, 2, 2, 1758, 1759, 7, 86, 2, 2, 1759, 1760, 7, 71, 2, 2, 1760, 1761, 7, 70, 2, 2, 1761, 326, 3, 2, 2, 2, 1762, 1763, 7, 72, 2, 2, 1763, 1764, 7, 87, 2, 2, 1764, 1765, 7, 80, 2, 2, 1765, 1766, 7, 69, 2, 2, 1766, 1767, 7, 86, 2, 2, 1767, 1768, 7, 75, 2, 2, 1768, 1769, 7, 81, 2, 2, 1769, 1770, 7, 80, 2, 2, 1770, 328, 3, 2, 2, 2, 1771, 1772, 7, 71, 2, 2, 1772, 1773, 7, 90, 2, 2, 1773, 1774, 7, 86, 2, 2, 1774, 1775, 7, 71, 2, 2, 1775, 1776, 7, 80, 2, 2, 1776, 1777, 7, 70, 2, 2, 1777, 1778, 7, 71, 2, 2, 1778, 1779, 7, 70, 2, 2, 1779, 330, 3, 2, 2, 2, 1780, 1781, 7, 84, 2, 2, 1781, 1782, 7, 71, 2, 2, 1782, 1783, 7, 72, 2, 2, 1783, 1784, 7, 84, 2, 2, 1784, 1785, 7, 71, 2, 2, 1785, 1786, 7, 85, 2, 2, 1786, 1787, 7, 74, 2, 2, 1787, 332, 3, 2, 2, 2, 1788, 1789, 7, 69, 2, 2, 1789, 1790, 7, 78, 2, 2, 1790, 1791, 7, 71, 2, 2, 1791, 1792, 7, 67, 2, 2, 1792, 1793, 7, 84, 2, 2, 1793, 334, 3, 2, 2, 2, 1794, 1795, 7, 69, 2, 2, 1795, 1796, 7, 67, 2, 2, 1796, 1797, 7, 69, 2, 2, 1797, 1798, 7, 74, 2, 2, 1798, 1799, 7, 71, 2, 2, 1799, 336, 3, 2, 2, 2, 1800, 1801, 7, 87, 2, 2, 1801, 1802, 7, 80, 2, 2, 1802, 1803, 7, 69, 2, 2, 1803, 1804, 7, 67, 2, 2, 1804, 1805, 7, 69, 2, 2, 1805, 1806, 7, 74, 2, 2, 1806, 1807, 7, 71, 2, 2, 1807, 338, 3, 2, 2, 2, 1808, 1809, 7, 78, 2, 2, 1809, 1810, 7, 67, 2, 2, 1810, 1811, 7, 92, 2, 2, 1811, 1812, 7, 91, 2, 2, 1812, 340, 3, 2, 2, 2, 1813, 1814, 7, 72, 2, 2, 1814, 1815, 7, 81, 2, 2, 1815, 1816, 7, 84, 2, 2, 1816, 1817, 7, 79, 2, 2, 1817, 1818, 7, 67, 2, 2, 1818, 1819, 7, 86, 2, 2, 1819, 1820, 7, 86, 2, 2, 1820, 1821, 7, 71, 2, 2, 1821, 1822, 7, 70, 2, 2, 1822, 342, 3, 2, 2, 2, 1823, 1824, 7, 73, 2, 2, 1824, 1825, 7, 78, 2, 2, 1825, 1826, 7, 81, 2, 2, 1826, 1827, 7, 68, 2, 2, 1827, 1828, 7, 67, 2, 2, 1828, 1829, 7, 78, 2, 2, 1829, 344, 3, 2, 2, 2, 1830, 1831, 7, 86, 2, 2, 1831, 1832, 7, 71, 2, 2, 1832, 1833, 7, 79, 2, 2, 1833, 1834, 7, 82, 2, 2, 1834, 1835, 7, 81, 2, 2, 1835, 1836, 7, 84, 2, 2, 1836, 1837, 7, 67, 2, 2, 1837, 1838, 7, 84, 2, 2, 1838, 1839, 7, 91, 2, 2, 1839, 346, 3, 2, 2, 2, 1840, 1841, 7, 81, 2, 2, 1841, 1842, 7, 82, 2, 2, 1842, 1843, 7, 86, 2, 2, 1843, 1844, 7, 75, 2, 2, 1844, 1845, 7, 81, 2, 2, 1845, 1846, 7, 80, 2, 2, 1846, 1847, 7, 85, 2, 2, 1847, 348, 3, 2, 2, 2, 1848, 1849, 7, 87, 2, 2, 1849, 1850, 7, 80, 2, 2, 1850, 1851, 7, 85, 2, 2, 1851, 1852, 7, 71, 2, 2, 1852, 1853, 7, 86, 2, 2, 1853, 350, 3, 2, 2, 2, 1854, 1855, 7, 86, 2, 2, 1855, 1856, 7, 68, 2, 2, 1856, 1857, 7, 78, 2, 2, 1857, 1858, 7, 82, 2, 2, 1858, 1859, 7, 84, 2, 2, 1859, 1860, 7, 81, 2, 2, 1860, 1861, 7, 82, 2, 2, 1861, 1862, 7, 71, 2, 2, 1862, 1863, 7, 84, 2, 2, 1863, 1864, 7, 86, 2, 2, 1864, 1865, 7, 75, 2, 2, 1865, 1866, 7, 71, 2, 2, 1866, 1867, 7, 85, 2, 2, 1867, 352, 3, 2, 2, 2, 1868, 1869, 7, 70, 2, 2, 1869, 1870, 7, 68, 2, 2, 1870, 1871, 7, 82, 2, 2, 1871, 1872, 7, 84, 2, 2, 1872, 1873, 7, 81, 2, 2, 1873, 1874, 7, 82, 2, 2, 1874, 1875, 7, 71, 2, 2, 1875, 1876, 7, 84, 2, 2, 1876, 1877, 7, 86, 2, 2, 1877, 1878, 7, 75, 2, 2, 1878, 1879, 7, 71, 2, 2, 1879, 1880, 7, 85, 2, 2, 1880, 354, 3, 2, 2, 2, 1881, 1882, 7, 68, 2, 2, 1882, 1883, 7, 87, 2, 2, 1883, 1884, 7, 69, 2, 2, 1884, 1885, 7, 77, 2, 2, 1885, 1886, 7, 71, 2, 2, 1886, 1887, 7, 86, 2, 2, 1887, 1888, 7, 85, 2, 2, 1888, 356, 3, 2, 2, 2, 1889, 1890, 7, 85, 2, 2, 1890, 1891, 7, 77, 2, 2, 1891, 1892, 7, 71, 2, 2, 1892, 1893, 7, 89, 2, 2, 1893, 1894, 7, 71, 2, 2, 1894, 1895, 7, 70, 2, 2, 1895, 358, 3, 2, 2, 2, 1896, 1897, 7, 85, 2, 2, 1897, 1898, 7, 86, 2, 2, 1898, 1899, 7, 81, 2, 2, 1899, 1900, 7, 84, 2, 2, 1900, 1901, 7, 71, 2, 2, 1901, 1902, 7, 70, 2, 2, 1902, 360, 3, 2, 2, 2, 1903, 1904, 7, 70, 2, 2, 1904, 1905, 7, 75, 2, 2, 1905, 1906, 7, 84, 2, 2, 1906, 1907, 7, 71, 2, 2, 1907, 1908, 7, 69, 2, 2, 1908, 1909, 7, 86, 2, 2, 1909, 1910, 7, 81, 2, 2, 1910, 1911, 7, 84, 2, 2, 1911, 1912, 7, 75, 2, 2, 1912, 1913, 7, 71, 2, 2, 1913, 1914, 7, 85, 2, 2, 1914, 362, 3, 2, 2, 2, 1915, 1916, 7, 78, 2, 2, 1916, 1917, 7, 81, 2, 2, 1917, 1918, 7, 69, 2, 2, 1918, 1919, 7, 67, 2, 2, 1919, 1920, 7, 86, 2, 2, 1920, 1921, 7, 75, 2, 2, 1921, 1922, 7, 81, 2, 2, 1922, 1923, 7, 80, 2, 2, 1923, 364, 3, 2, 2, 2, 1924, 1925, 7, 71, 2, 2, 1925, 1926, 7, 90, 2, 2, 1926, 1927, 7, 69, 2, 2, 1927, 1928, 7, 74, 2, 2, 1928, 1929, 7, 67, 2, 2, 1929, 1930, 7, 80, 2, 2, 1930, 1931, 7, 73, 2, 2, 1931, 1932, 7, 71, 2, 2, 1932, 366, 3, 2, 2, 2, 1933, 1934, 7, 67, 2, 2, 1934, 1935, 7, 84, 2, 2, 1935, 1936, 7, 69, 2, 2, 1936, 1937, 7, 74, 2, 2, 1937, 1938, 7, 75, 2, 2, 1938, 1939, 7, 88, 2, 2, 1939, 1940, 7, 71, 2, 2, 1940, 368, 3, 2, 2, 2, 1941, 1942, 7, 87, 2, 2, 1942, 1943, 7, 80, 2, 2, 1943, 1944, 7, 67, 2, 2, 1944, 1945, 7, 84, 2, 2, 1945, 1946, 7, 69, 2, 2, 1946, 1947, 7, 74, 2, 2, 1947, 1948, 7, 75, 2, 2, 1948, 1949, 7, 88, 2, 2, 1949, 1950, 7, 71, 2, 2, 1950, 370, 3, 2, 2, 2, 1951, 1952, 7, 72, 2, 2, 1952, 1953, 7, 75, 2, 2, 1953, 1954, 7, 78, 2, 2, 1954, 1955, 7, 71, 2, 2, 1955, 1956, 7, 72, 2, 2, 1956, 1957, 7, 81, 2, 2, 1957, 1958, 7, 84, 2, 2, 1958, 1959, 7, 79, 2, 2, 1959, 1960, 7, 67, 2, 2, 1960, 1961, 7, 86, 2, 2, 1961, 372, 3, 2, 2, 2, 1962, 1963, 7, 86, 2, 2, 1963, 1964, 7, 81, 2, 2, 1964, 1965, 7, 87, 2, 2, 1965, 1966, 7, 69, 2, 2, 1966, 1967, 7, 74, 2, 2, 1967, 374, 3, 2, 2, 2, 1968, 1969, 7, 69, 2, 2, 1969, 1970, 7, 81, 2, 2, 1970, 1971, 7, 79, 2, 2, 1971, 1972, 7, 82, 2, 2, 1972, 1973, 7, 67, 2, 2, 1973, 1974, 7, 69, 2, 2, 1974, 1975, 7, 86, 2, 2, 1975, 376, 3, 2, 2, 2, 1976, 1977, 7, 69, 2, 2, 1977, 1978, 7, 81, 2, 2, 1978, 1979, 7, 80, 2, 2, 1979, 1980, 7, 69, 2, 2, 1980, 1981, 7, 67, 2, 2, 1981, 1982, 7, 86, 2, 2, 1982, 1983, 7, 71, 2, 2, 1983, 1984, 7, 80, 2, 2, 1984, 1985, 7, 67, 2, 2, 1985, 1986, 7, 86, 2, 2, 1986, 1987, 7, 71, 2, 2, 1987, 378, 3, 2, 2, 2, 1988, 1989, 7, 69, 2, 2, 1989, 1990, 7, 74, 2, 2, 1990, 1991, 7, 67, 2, 2, 1991, 1992, 7, 80, 2, 2, 1992, 1993, 7, 73, 2, 2, 1993, 1994, 7, 71, 2, 2, 1994, 380, 3, 2, 2, 2, 1995, 1996, 7, 69, 2, 2, 1996, 1997, 7, 67, 2, 2, 1997, 1998, 7, 85, 2, 2, 1998, 1999, 7, 69, 2, 2, 1999, 2000, 7, 67, 2, 2, 2000, 2001, 7, 70, 2, 2, 2001, 2002, 7, 71, 2, 2, 2002, 382, 3, 2, 2, 2, 2003, 2004, 7, 84, 2, 2, 2004, 2005, 7, 71, 2, 2, 2005, 2006, 7, 85, 2, 2, 2006, 2007, 7, 86, 2, 2, 2007, 2008, 7, 84, 2, 2, 2008, 2009, 7, 75, 2, 2, 2009, 2010, 7, 69, 2, 2, 2010, 2011, 7, 86, 2, 2, 2011, 384, 3, 2, 2, 2, 2012, 2013, 7, 69, 2, 2, 2013, 2014, 7, 78, 2, 2, 2014, 2015, 7, 87, 2, 2, 2015, 2016, 7, 85, 2, 2, 2016, 2017, 7, 86, 2, 2, 2017, 2018, 7, 71, 2, 2, 2018, 2019, 7, 84, 2, 2, 2019, 2020, 7, 71, 2, 2, 2020, 2021, 7, 70, 2, 2, 2021, 386, 3, 2, 2, 2, 2022, 2023, 7, 85, 2, 2, 2023, 2024, 7, 81, 2, 2, 2024, 2025, 7, 84, 2, 2, 2025, 2026, 7, 86, 2, 2, 2026, 2027, 7, 71, 2, 2, 2027, 2028, 7, 70, 2, 2, 2028, 388, 3, 2, 2, 2, 2029, 2030, 7, 82, 2, 2, 2030, 2031, 7, 87, 2, 2, 2031, 2032, 7, 84, 2, 2, 2032, 2033, 7, 73, 2, 2, 2033, 2034, 7, 71, 2, 2, 2034, 390, 3, 2, 2, 2, 2035, 2036, 7, 75, 2, 2, 2036, 2037, 7, 80, 2, 2, 2037, 2038, 7, 82, 2, 2, 2038, 2039, 7, 87, 2, 2, 2039, 2040, 7, 86, 2, 2, 2040, 2041, 7, 72, 2, 2, 2041, 2042, 7, 81, 2, 2, 2042, 2043, 7, 84, 2, 2, 2043, 2044, 7, 79, 2, 2, 2044, 2045, 7, 67, 2, 2, 2045, 2046, 7, 86, 2, 2, 2046, 392, 3, 2, 2, 2, 2047, 2048, 7, 81, 2, 2, 2048, 2049, 7, 87, 2, 2, 2049, 2050, 7, 86, 2, 2, 2050, 2051, 7, 82, 2, 2, 2051, 2052, 7, 87, 2, 2, 2052, 2053, 7, 86, 2, 2, 2053, 2054, 7, 72, 2, 2, 2054, 2055, 7, 81, 2, 2, 2055, 2056, 7, 84, 2, 2, 2056, 2057, 7, 79, 2, 2, 2057, 2058, 7, 67, 2, 2, 2058, 2059, 7, 86, 2, 2, 2059, 394, 3, 2, 2, 2, 2060, 2061, 7, 70, 2, 2, 2061, 2062, 7, 67, 2, 2, 2062, 2063, 7, 86, 2, 2, 2063, 2064, 7, 67, 2, 2, 2064, 2065, 7, 68, 2, 2, 2065, 2066, 7, 67, 2, 2, 2066, 2067, 7, 85, 2, 2, 2067, 2068, 7, 71, 2, 2, 2068, 396, 3, 2, 2, 2, 2069, 2070, 7, 70, 2, 2, 2070, 2071, 7, 67, 2, 2, 2071, 2072, 7, 86, 2, 2, 2072, 2073, 7, 67, 2, 2, 2073, 2074, 7, 68, 2, 2, 2074, 2075, 7, 67, 2, 2, 2075, 2076, 7, 85, 2, 2, 2076, 2077, 7, 71, 2, 2, 2077, 2078, 7, 85, 2, 2, 2078, 398, 3, 2, 2, 2, 2079, 2080, 7, 70, 2, 2, 2080, 2081, 7, 72, 2, 2, 2081, 2082, 7, 85, 2, 2, 2082, 400, 3, 2, 2, 2, 2083, 2084, 7, 86, 2, 2, 2084, 2085, 7, 84, 2, 2, 2085, 2086, 7, 87, 2, 2, 2086, 2087, 7, 80, 2, 2, 2087, 2088, 7, 69, 2, 2, 2088, 2089, 7, 67, 2, 2, 2089, 2090, 7, 86, 2, 2, 2090, 2091, 7, 71, 2, 2, 2091, 402, 3, 2, 2, 2, 2092, 2093, 7, 67, 2, 2, 2093, 2094, 7, 80, 2, 2, 2094, 2095, 7, 67, 2, 2, 2095, 2096, 7, 78, 2, 2, 2096, 2097, 7, 91, 2, 2, 2097, 2098, 7, 92, 2, 2, 2098, 2099, 7, 71, 2, 2, 2099, 404, 3, 2, 2, 2, 2100, 2101, 7, 69, 2, 2, 2101, 2102, 7, 81, 2, 2, 2102, 2103, 7, 79, 2, 2, 2103, 2104, 7, 82, 2, 2, 2104, 2105, 7, 87, 2, 2, 2105, 2106, 7, 86, 2, 2, 2106, 2107, 7, 71, 2, 2, 2107, 406, 3, 2, 2, 2, 2108, 2109, 7, 78, 2, 2, 2109, 2110, 7, 75, 2, 2, 2110, 2111, 7, 85, 2, 2, 2111, 2112, 7, 86, 2, 2, 2112, 408, 3, 2, 2, 2, 2113, 2114, 7, 85, 2, 2, 2114, 2115, 7, 86, 2, 2, 2115, 2116, 7, 67, 2, 2, 2116, 2117, 7, 86, 2, 2, 2117, 2118, 7, 75, 2, 2, 2118, 2119, 7, 85, 2, 2, 2119, 2120, 7, 86, 2, 2, 2120, 2121, 7, 75, 2, 2, 2121, 2122, 7, 69, 2, 2, 2122, 2123, 7, 85, 2, 2, 2123, 410, 3, 2, 2, 2, 2124, 2125, 7, 82, 2, 2, 2125, 2126, 7, 67, 2, 2, 2126, 2127, 7, 84, 2, 2, 2127, 2128, 7, 86, 2, 2, 2128, 2129, 7, 75, 2, 2, 2129, 2130, 7, 86, 2, 2, 2130, 2131, 7, 75, 2, 2, 2131, 2132, 7, 81, 2, 2, 2132, 2133, 7, 80, 2, 2, 2133, 2134, 7, 71, 2, 2, 2134, 2135, 7, 70, 2, 2, 2135, 412, 3, 2, 2, 2, 2136, 2137, 7, 71, 2, 2, 2137, 2138, 7, 90, 2, 2, 2138, 2139, 7, 86, 2, 2, 2139, 2140, 7, 71, 2, 2, 2140, 2141, 7, 84, 2, 2, 2141, 2142, 7, 80, 2, 2, 2142, 2143, 7, 67, 2, 2, 2143, 2144, 7, 78, 2, 2, 2144, 414, 3, 2, 2, 2, 2145, 2146, 7, 70, 2, 2, 2146, 2147, 7, 71, 2, 2, 2147, 2148, 7, 72, 2, 2, 2148, 2149, 7, 75, 2, 2, 2149, 2150, 7, 80, 2, 2, 2150, 2151, 7, 71, 2, 2, 2151, 2152, 7, 70, 2, 2, 2152, 416, 3, 2, 2, 2, 2153, 2154, 7, 84, 2, 2, 2154, 2155, 7, 71, 2, 2, 2155, 2156, 7, 88, 2, 2, 2156, 2157, 7, 81, 2, 2, 2157, 2158, 7, 77, 2, 2, 2158, 2159, 7, 71, 2, 2, 2159, 418, 3, 2, 2, 2, 2160, 2161, 7, 73, 2, 2, 2161, 2162, 7, 84, 2, 2, 2162, 2163, 7, 67, 2, 2, 2163, 2164, 7, 80, 2, 2, 2164, 2165, 7, 86, 2, 2, 2165, 420, 3, 2, 2, 2, 2166, 2167, 7, 78, 2, 2, 2167, 2168, 7, 81, 2, 2, 2168, 2169, 7, 69, 2, 2, 2169, 2170, 7, 77, 2, 2, 2170, 422, 3, 2, 2, 2, 2171, 2172, 7, 87, 2, 2, 2172, 2173, 7, 80, 2, 2, 2173, 2174, 7, 78, 2, 2, 2174, 2175, 7, 81, 2, 2, 2175, 2176, 7, 69, 2, 2, 2176, 2177, 7, 77, 2, 2, 2177, 424, 3, 2, 2, 2, 2178, 2179, 7, 79, 2, 2, 2179, 2180, 7, 85, 2, 2, 2180, 2181, 7, 69, 2, 2, 2181, 2182, 7, 77, 2, 2, 2182, 426, 3, 2, 2, 2, 2183, 2184, 7, 84, 2, 2, 2184, 2185, 7, 71, 2, 2, 2185, 2186, 7, 82, 2, 2, 2186, 2187, 7, 67, 2, 2, 2187, 2188, 7, 75, 2, 2, 2188, 2189, 7, 84, 2, 2, 2189, 428, 3, 2, 2, 2, 2190, 2191, 7, 84, 2, 2, 2191, 2192, 7, 71, 2, 2, 2192, 2193, 7, 69, 2, 2, 2193, 2194, 7, 81, 2, 2, 2194, 2195, 7, 88, 2, 2, 2195, 2196, 7, 71, 2, 2, 2196, 2197, 7, 84, 2, 2, 2197, 430, 3, 2, 2, 2, 2198, 2199, 7, 71, 2, 2, 2199, 2200, 7, 90, 2, 2, 2200, 2201, 7, 82, 2, 2, 2201, 2202, 7, 81, 2, 2, 2202, 2203, 7, 84, 2, 2, 2203, 2204, 7, 86, 2, 2, 2204, 432, 3, 2, 2, 2, 2205, 2206, 7, 75, 2, 2, 2206, 2207, 7, 79, 2, 2, 2207, 2208, 7, 82, 2, 2, 2208, 2209, 7, 81, 2, 2, 2209, 2210, 7, 84, 2, 2, 2210, 2211, 7, 86, 2, 2, 2211, 434, 3, 2, 2, 2, 2212, 2213, 7, 78, 2, 2, 2213, 2214, 7, 81, 2, 2, 2214, 2215, 7, 67, 2, 2, 2215, 2216, 7, 70, 2, 2, 2216, 436, 3, 2, 2, 2, 2217, 2218, 7, 84, 2, 2, 2218, 2219, 7, 81, 2, 2, 2219, 2220, 7, 78, 2, 2, 2220, 2221, 7, 71, 2, 2, 2221, 438, 3, 2, 2, 2, 2222, 2223, 7, 84, 2, 2, 2223, 2224, 7, 81, 2, 2, 2224, 2225, 7, 78, 2, 2, 2225, 2226, 7, 71, 2, 2, 2226, 2227, 7, 85, 2, 2, 2227, 440, 3, 2, 2, 2, 2228, 2229, 7, 69, 2, 2, 2229, 2230, 7, 81, 2, 2, 2230, 2231, 7, 79, 2, 2, 2231, 2232, 7, 82, 2, 2, 2232, 2233, 7, 67, 2, 2, 2233, 2234, 7, 69, 2, 2, 2234, 2235, 7, 86, 2, 2, 2235, 2236, 7, 75, 2, 2, 2236, 2237, 7, 81, 2, 2, 2237, 2238, 7, 80, 2, 2, 2238, 2239, 7, 85, 2, 2, 2239, 442, 3, 2, 2, 2, 2240, 2241, 7, 82, 2, 2, 2241, 2242, 7, 84, 2, 2, 2242, 2243, 7, 75, 2, 2, 2243, 2244, 7, 80, 2, 2, 2244, 2245, 7, 69, 2, 2, 2245, 2246, 7, 75, 2, 2, 2246, 2247, 7, 82, 2, 2, 2247, 2248, 7, 67, 2, 2, 2248, 2249, 7, 78, 2, 2, 2249, 2250, 7, 85, 2, 2, 2250, 444, 3, 2, 2, 2, 2251, 2252, 7, 86, 2, 2, 2252, 2253, 7, 84, 2, 2, 2253, 2254, 7, 67, 2, 2, 2254, 2255, 7, 80, 2, 2, 2255, 2256, 7, 85, 2, 2, 2256, 2257, 7, 67, 2, 2, 2257, 2258, 7, 69, 2, 2, 2258, 2259, 7, 86, 2, 2, 2259, 2260, 7, 75, 2, 2, 2260, 2261, 7, 81, 2, 2, 2261, 2262, 7, 80, 2, 2, 2262, 2263, 7, 85, 2, 2, 2263, 446, 3, 2, 2, 2, 2264, 2265, 7, 75, 2, 2, 2265, 2266, 7, 80, 2, 2, 2266, 2267, 7, 70, 2, 2, 2267, 2268, 7, 71, 2, 2, 2268, 2269, 7, 90, 2, 2, 2269, 448, 3, 2, 2, 2, 2270, 2271, 7, 75, 2, 2, 2271, 2272, 7, 80, 2, 2, 2272, 2273, 7, 70, 2, 2, 2273, 2274, 7, 71, 2, 2, 2274, 2275, 7, 90, 2, 2, 2275, 2276, 7, 71, 2, 2, 2276, 2277, 7, 85, 2, 2, 2277, 450, 3, 2, 2, 2, 2278, 2279, 7, 78, 2, 2, 2279, 2280, 7, 81, 2, 2, 2280, 2281, 7, 69, 2, 2, 2281, 2282, 7, 77, 2, 2, 2282, 2283, 7, 85, 2, 2, 2283, 452, 3, 2, 2, 2, 2284, 2285, 7, 81, 2, 2, 2285, 2286, 7, 82, 2, 2, 2286, 2287, 7, 86, 2, 2, 2287, 2288, 7, 75, 2, 2, 2288, 2289, 7, 81, 2, 2, 2289, 2290, 7, 80, 2, 2, 2290, 454, 3, 2, 2, 2, 2291, 2292, 7, 67, 2, 2, 2292, 2293, 7, 80, 2, 2, 2293, 2294, 7, 86, 2, 2, 2294, 2295, 7, 75, 2, 2, 2295, 456, 3, 2, 2, 2, 2296, 2297, 7, 78, 2, 2, 2297, 2298, 7, 81, 2, 2, 2298, 2299, 7, 69, 2, 2, 2299, 2300, 7, 67, 2, 2, 2300, 2301, 7, 78, 2, 2, 2301, 458, 3, 2, 2, 2, 2302, 2303, 7, 75, 2, 2, 2303, 2304, 7, 80, 2, 2, 2304, 2305, 7, 82, 2, 2, 2305, 2306, 7, 67, 2, 2, 2306, 2307, 7, 86, 2, 2, 2307, 2308, 7, 74, 2, 2, 2308, 460, 3, 2, 2, 2, 2309, 2310, 7, 89, 2, 2, 2310, 2311, 7, 67, 2, 2, 2311, 2312, 7, 86, 2, 2, 2312, 2313, 7, 71, 2, 2, 2313, 2314, 7, 84, 2, 2, 2314, 2315, 7, 79, 2, 2, 2315, 2316, 7, 67, 2, 2, 2316, 2317, 7, 84, 2, 2, 2317, 2318, 7, 77, 2, 2, 2318, 462, 3, 2, 2, 2, 2319, 2320, 7, 87, 2, 2, 2320, 2321, 7, 80, 2, 2, 2321, 2322, 7, 80, 2, 2, 2322, 2323, 7, 71, 2, 2, 2323, 2324, 7, 85, 2, 2, 2324, 2325, 7, 86, 2, 2, 2325, 464, 3, 2, 2, 2, 2326, 2327, 7, 79, 2, 2, 2327, 2328, 7, 67, 2, 2, 2328, 2329, 7, 86, 2, 2, 2329, 2330, 7, 69, 2, 2, 2330, 2331, 7, 74, 2, 2, 2331, 2332, 7, 97, 2, 2, 2332, 2333, 7, 84, 2, 2, 2333, 2334, 7, 71, 2, 2, 2334, 2335, 7, 69, 2, 2, 2335, 2336, 7, 81, 2, 2, 2336, 2337, 7, 73, 2, 2, 2337, 2338, 7, 80, 2, 2, 2338, 2339, 7, 75, 2, 2, 2339, 2340, 7, 92, 2, 2, 2340, 2341, 7, 71, 2, 2, 2341, 466, 3, 2, 2, 2, 2342, 2343, 7, 79, 2, 2, 2343, 2344, 7, 71, 2, 2, 2344, 2345, 7, 67, 2, 2, 2345, 2346, 7, 85, 2, 2, 2346, 2347, 7, 87, 2, 2, 2347, 2348, 7, 84, 2, 2, 2348, 2349, 7, 71, 2, 2, 2349, 2350, 7, 85, 2, 2, 2350, 468, 3, 2, 2, 2, 2351, 2352, 7, 81, 2, 2, 2352, 2353, 7, 80, 2, 2, 2353, 2354, 7, 71, 2, 2, 2354, 470, 3, 2, 2, 2, 2355, 2356, 7, 82, 2, 2, 2356, 2357, 7, 71, 2, 2, 2357, 2358, 7, 84, 2, 2, 2358, 472, 3, 2, 2, 2, 2359, 2360, 7, 79, 2, 2, 2360, 2361, 7, 67, 2, 2, 2361, 2362, 7, 86, 2, 2, 2362, 2363, 7, 69, 2, 2, 2363, 2364, 7, 74, 2, 2, 2364, 474, 3, 2, 2, 2, 2365, 2366, 7, 85, 2, 2, 2366, 2367, 7, 77, 2, 2, 2367, 2368, 7, 75, 2, 2, 2368, 2369, 7, 82, 2, 2, 2369, 2370, 7, 51, 2, 2, 2370, 476, 3, 2, 2, 2, 2371, 2372, 7, 80, 2, 2, 2372, 2373, 7, 71, 2, 2, 2373, 2374, 7, 90, 2, 2, 2374, 2375, 7, 86, 2, 2, 2375, 478, 3, 2, 2, 2, 2376, 2377, 7, 82, 2, 2, 2377, 2378, 7, 67, 2, 2, 2378, 2379, 7, 85, 2, 2, 2379, 2380, 7, 86, 2, 2, 2380, 480, 3, 2, 2, 2, 2381, 2382, 7, 82, 2, 2, 2382, 2383, 7, 67, 2, 2, 2383, 2384, 7, 86, 2, 2, 2384, 2385, 7, 86, 2, 2, 2385, 2386, 7, 71, 2, 2, 2386, 2387, 7, 84, 2, 2, 2387, 2388, 7, 80, 2, 2, 2388, 482, 3, 2, 2, 2, 2389, 2390, 7, 89, 2, 2, 2390, 2391, 7, 75, 2, 2, 2391, 2392, 7, 86, 2, 2, 2392, 2393, 7, 74, 2, 2, 2393, 2394, 7, 75, 2, 2, 2394, 2395, 7, 80, 2, 2, 2395, 484, 3, 2, 2, 2, 2396, 2397, 7, 70, 2, 2, 2397, 2398, 7, 71, 2, 2, 2398, 2399, 7, 72, 2, 2, 2399, 2400, 7, 75, 2, 2, 2400, 2401, 7, 80, 2, 2, 2401, 2402, 7, 71, 2, 2, 2402, 486, 3, 2, 2, 2, 2403, 2404, 7, 68, 2, 2, 2404, 2405, 7, 75, 2, 2, 2405, 2406, 7, 73, 2, 2, 2406, 2407, 7, 75, 2, 2, 2407, 2408, 7, 80, 2, 2, 2408, 2409, 7, 86, 2, 2, 2409, 2410, 7, 97, 2, 2, 2410, 2411, 7, 78, 2, 2, 2411, 2412, 7, 75, 2, 2, 2412, 2413, 7, 86, 2, 2, 2413, 2414, 7, 71, 2, 2, 2414, 2415, 7, 84, 2, 2, 2415, 2416, 7, 67, 2, 2, 2416, 2417, 7, 78, 2, 2, 2417, 488, 3, 2, 2, 2, 2418, 2419, 7, 85, 2, 2, 2419, 2420, 7, 79, 2, 2, 2420, 2421, 7, 67, 2, 2, 2421, 2422, 7, 78, 2, 2, 2422, 2423, 7, 78, 2, 2, 2423, 2424, 7, 75, 2, 2, 2424, 2425, 7, 80, 2, 2, 2425, 2426, 7, 86, 2, 2, 2426, 2427, 7, 97, 2, 2, 2427, 2428, 7, 78, 2, 2, 2428, 2429, 7, 75, 2, 2, 2429, 2430, 7, 86, 2, 2, 2430, 2431, 7, 71, 2, 2, 2431, 2432, 7, 84, 2, 2, 2432, 2433, 7, 67, 2, 2, 2433, 2434, 7, 78, 2, 2, 2434, 490, 3, 2, 2, 2, 2435, 2436, 7, 86, 2, 2, 2436, 2437, 7, 75, 2, 2, 2437, 2438, 7, 80, 2, 2, 2438, 2439, 7, 91, 2, 2, 2439, 2440, 7, 75, 2, 2, 2440, 2441, 7, 80, 2, 2, 2441, 2442, 7, 86, 2, 2, 2442, 2443, 7, 97, 2, 2, 2443, 2444, 7, 78, 2, 2, 2444, 2445, 7, 75, 2, 2, 2445, 2446, 7, 86, 2, 2, 2446, 2447, 7, 71, 2, 2, 2447, 2448, 7, 84, 2, 2, 2448, 2449, 7, 67, 2, 2, 2449, 2450, 7, 78, 2, 2, 2450, 492, 3, 2, 2, 2, 2451, 2452, 7, 75, 2, 2, 2452, 2453, 7, 80, 2, 2, 2453, 2454, 7, 86, 2, 2, 2454, 2455, 7, 71, 2, 2, 2455, 2456, 7, 73, 2, 2, 2456, 2457, 7, 71, 2, 2, 2457, 2458, 7, 84, 2, 2, 2458, 2459, 7, 97, 2, 2, 2459, 2460, 7, 88, 2, 2, 2460, 2461, 7, 67, 2, 2, 2461, 2462, 7, 78, 2, 2, 2462, 2463, 7, 87, 2, 2, 2463, 2464, 7, 71, 2, 2, 2464, 494, 3, 2, 2, 2, 2465, 2466, 7, 70, 2, 2, 2466, 2467, 7, 71, 2, 2, 2467, 2468, 7, 69, 2, 2, 2468, 2469, 7, 75, 2, 2, 2469, 2470, 7, 79, 2, 2, 2470, 2471, 7, 67, 2, 2, 2471, 2472, 7, 78, 2, 2, 2472, 2473, 7, 97, 2, 2, 2473, 2474, 7, 88, 2, 2, 2474, 2475, 7, 67, 2, 2, 2475, 2476, 7, 78, 2, 2, 2476, 2477, 7, 87, 2, 2, 2477, 2478, 7, 71, 2, 2, 2478, 496, 3, 2, 2, 2, 2479, 2480, 7, 70, 2, 2, 2480, 2481, 7, 81, 2, 2, 2481, 2482, 7, 87, 2, 2, 2482, 2483, 7, 68, 2, 2, 2483, 2484, 7, 78, 2, 2, 2484, 2485, 7, 71, 2, 2, 2485, 2486, 7, 97, 2, 2, 2486, 2487, 7, 78, 2, 2, 2487, 2488, 7, 75, 2, 2, 2488, 2489, 7, 86, 2, 2, 2489, 2490, 7, 71, 2, 2, 2490, 2491, 7, 84, 2, 2, 2491, 2492, 7, 67, 2, 2, 2492, 2493, 7, 78, 2, 2, 2493, 498, 3, 2, 2, 2, 2494, 2495, 7, 68, 2, 2, 2495, 2496, 7, 75, 2, 2, 2496, 2497, 7, 73, 2, 2, 2497, 2498, 7, 70, 2, 2, 2498, 2499, 7, 71, 2, 2, 2499, 2500, 7, 69, 2, 2, 2500, 2501, 7, 75, 2, 2, 2501, 2502, 7, 79, 2, 2, 2502, 2503, 7, 67, 2, 2, 2503, 2504, 7, 78, 2, 2, 2504, 2505, 7, 97, 2, 2, 2505, 2506, 7, 78, 2, 2, 2506, 2507, 7, 75, 2, 2, 2507, 2508, 7, 86, 2, 2, 2508, 2509, 7, 71, 2, 2, 2509, 2510, 7, 84, 2, 2, 2510, 2511, 7, 67, 2, 2, 2511, 2512, 7, 78, 2, 2, 2512, 500, 3, 2, 2, 2, 2513, 2514, 7, 75, 2, 2, 2514, 2515, 7, 70, 2, 2, 2515, 2516, 7, 71, 2, 2, 2516, 2517, 7, 80, 2, 2, 2517, 2518, 7, 86, 2, 2, 2518, 2519, 7, 75, 2, 2, 2519, 2520, 7, 72, 2, 2, 2520, 2521, 7, 75, 2, 2, 2521, 2522, 7, 71, 2, 2, 2522, 2523, 7, 84, 2, 2, 2523, 502, 3, 2, 2, 2, 2524, 2525, 7, 68, 2, 2, 2525, 2526, 7, 67, 2, 2, 2526, 2527, 7, 69, 2, 2, 2527, 2528, 7, 77, 2, 2, 2528, 2529, 7, 83, 2, 2, 2529, 2530, 7, 87, 2, 2, 2530, 2531, 7, 81, 2, 2, 2531, 2532, 7, 86, 2, 2, 2532, 2533, 7, 71, 2, 2, 2533, 2534, 7, 70, 2, 2, 2534, 2535, 7, 97, 2, 2, 2535, 2536, 7, 75, 2, 2, 2536, 2537, 7, 70, 2, 2, 2537, 2538, 7, 71, 2, 2, 2538, 2539, 7, 80, 2, 2, 2539, 2540, 7, 86, 2, 2, 2540, 2541, 7, 75, 2, 2, 2541, 2542, 7, 72, 2, 2, 2542, 2543, 7, 75, 2, 2, 2543, 2544, 7, 71, 2, 2, 2544, 2545, 7, 84, 2, 2, 2545, 504, 3, 2, 2, 2, 2546, 2547, 7, 85, 2, 2, 2547, 2548, 7, 75, 2, 2, 2548, 2549, 7, 79, 2, 2, 2549, 2550, 7, 82, 2, 2, 2550, 2551, 7, 78, 2, 2, 2551, 2552, 7, 71, 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, 506, 3, 2, 2, 2, 2561, 2562, 7, 68, 2, 2, 2562, 2563, 7, 84, 2, 2, 2563, 2564, 7, 67, 2, 2, 2564, 2565, 7, 69, 2, 2, 2565, 2566, 7, 77, 2, 2, 2566, 2567, 7, 71, 2, 2, 2567, 2568, 7, 86, 2, 2, 2568, 2569, 7, 71, 2, 2, 2569, 2570, 7, 70, 2, 2, 2570, 2571, 7, 97, 2, 2, 2571, 2572, 7, 71, 2, 2, 2572, 2573, 7, 79, 2, 2, 2573, 2574, 7, 82, 2, 2, 2574, 2575, 7, 86, 2, 2, 2575, 2576, 7, 91, 2, 2, 2576, 2577, 7, 97, 2, 2, 2577, 2578, 7, 69, 2, 2, 2578, 2579, 7, 81, 2, 2, 2579, 2580, 7, 79, 2, 2, 2580, 2581, 7, 79, 2, 2, 2581, 2582, 7, 71, 2, 2, 2582, 2583, 7, 80, 2, 2, 2583, 2584, 7, 86, 2, 2, 2584, 508, 3, 2, 2, 2, 2585, 2586, 7, 68, 2, 2, 2586, 2587, 7, 84, 2, 2, 2587, 2588, 7, 67, 2, 2, 2588, 2589, 7, 69, 2, 2, 2589, 2590, 7, 77, 2, 2, 2590, 2591, 7, 71, 2, 2, 2591, 2592, 7, 86, 2, 2, 2592, 2593, 7, 71, 2, 2, 2593, 2594, 7, 70, 2, 2, 2594, 2595, 7, 97, 2, 2, 2595, 2596, 7, 69, 2, 2, 2596, 2597, 7, 81, 2, 2, 2597, 2598, 7, 79, 2, 2, 2598, 2599, 7, 79, 2, 2, 2599, 2600, 7, 71, 2, 2, 2600, 2601, 7, 80, 2, 2, 2601, 2602, 7, 86, 2, 2, 2602, 510, 3, 2, 2, 2, 2603, 2604, 7, 89, 2, 2, 2604, 2605, 7, 85, 2, 2, 2605, 512, 3, 2, 2, 2, 2606, 2607, 7, 87, 2, 2, 2607, 2608, 7, 80, 2, 2, 2608, 2609, 7, 84, 2, 2, 2609, 2610, 7, 71, 2, 2, 2610, 2611, 7, 69, 2, 2, 2611, 2612, 7, 81, 2, 2, 2612, 2613, 7, 73, 2, 2, 2613, 2614, 7, 80, 2, 2, 2614, 2615, 7, 75, 2, 2, 2615, 2616, 7, 92, 2, 2, 2616, 2617, 7, 71, 2, 2, 2617, 2618, 7, 70, 2, 2, 2618, 514, 3, 2, 2, 2, 2619, 2621, 7, 98, 2, 2, 2620, 2622, 10, 4, 2, 2, 2621, 2620, 3, 2, 2, 2, 2622, 2623, 3, 2, 2, 2, 2623, 2621, 3, 2, 2, 2, 2623, 2624, 3, 2, 2, 2, 2624, 2625, 3, 2, 2, 2, 2625, 2626, 7, 98, 2, 2, 2626, 516, 3, 2, 2, 2, 2627, 2629, 7, 36, 2, 2, 2628, 2630, 10, 5, 2, 2, 2629, 2628, 3, 2, 2, 2, 2630, 2631, 3, 2, 2, 2, 2631, 2629, 3, 2, 2, 2, 2631, 2632, 3, 2, 2, 2, 2632, 2633, 3, 2, 2, 2, 2633, 2634, 7, 36, 2, 2, 2634, 518, 3, 2, 2, 2, 2635, 2636, 7, 48, 2, 2, 2636, 2637, 5, 643, 322, 2, 2637, 520, 3, 2, 2, 2, 2638, 2639, 5, 643, 322, 2, 2639, 522, 3, 2, 2, 2, 2640, 2641, 7, 85, 2, 2, 2641, 2642, 7, 91, 2, 2, 2642, 2643, 7, 85, 2, 2, 2643, 2644, 7, 86, 2, 2, 2644, 2645, 7, 71, 2, 2, 2645, 2646, 7, 79, 2, 2, 2646, 524, 3, 2, 2, 2, 2647, 2648, 7, 85, 2, 2, 2648, 2649, 7, 86, 2, 2, 2649, 2650, 7, 84, 2, 2, 2650, 2651, 7, 75, 2, 2, 2651, 2652, 7, 80, 2, 2, 2652, 2653, 7, 73, 2, 2, 2653, 526, 3, 2, 2, 2, 2654, 2655, 7, 67, 2, 2, 2655, 2656, 7, 84, 2, 2, 2656, 2657, 7, 84, 2, 2, 2657, 2658, 7, 67, 2, 2, 2658, 2659, 7, 91, 2, 2, 2659, 528, 3, 2, 2, 2, 2660, 2661, 7, 79, 2, 2, 2661, 2662, 7, 67, 2, 2, 2662, 2663, 7, 82, 2, 2, 2663, 530, 3, 2, 2, 2, 2664, 2665, 7, 69, 2, 2, 2665, 2666, 7, 74, 2, 2, 2666, 2667, 7, 67, 2, 2, 2667, 2668, 7, 84, 2, 2, 2668, 532, 3, 2, 2, 2, 2669, 2670, 7, 88, 2, 2, 2670, 2671, 7, 67, 2, 2, 2671, 2672, 7, 84, 2, 2, 2672, 2673, 7, 69, 2, 2, 2673, 2674, 7, 74, 2, 2, 2674, 2675, 7, 67, 2, 2, 2675, 2676, 7, 84, 2, 2, 2676, 534, 3, 2, 2, 2, 2677, 2678, 7, 68, 2, 2, 2678, 2679, 7, 75, 2, 2, 2679, 2680, 7, 80, 2, 2, 2680, 2681, 7, 67, 2, 2, 2681, 2682, 7, 84, 2, 2, 2682, 2683, 7, 91, 2, 2, 2683, 536, 3, 2, 2, 2, 2684, 2685, 7, 88, 2, 2, 2685, 2686, 7, 67, 2, 2, 2686, 2687, 7, 84, 2, 2, 2687, 2688, 7, 68, 2, 2, 2688, 2689, 7, 75, 2, 2, 2689, 2690, 7, 80, 2, 2, 2690, 2691, 7, 67, 2, 2, 2691, 2692, 7, 84, 2, 2, 2692, 2693, 7, 91, 2, 2, 2693, 538, 3, 2, 2, 2, 2694, 2695, 7, 68, 2, 2, 2695, 2696, 7, 91, 2, 2, 2696, 2697, 7, 86, 2, 2, 2697, 2698, 7, 71, 2, 2, 2698, 2699, 7, 85, 2, 2, 2699, 540, 3, 2, 2, 2, 2700, 2701, 7, 70, 2, 2, 2701, 2702, 7, 71, 2, 2, 2702, 2703, 7, 69, 2, 2, 2703, 2704, 7, 75, 2, 2, 2704, 2705, 7, 79, 2, 2, 2705, 2706, 7, 67, 2, 2, 2706, 2707, 7, 78, 2, 2, 2707, 542, 3, 2, 2, 2, 2708, 2709, 7, 86, 2, 2, 2709, 2710, 7, 75, 2, 2, 2710, 2711, 7, 80, 2, 2, 2711, 2712, 7, 91, 2, 2, 2712, 2713, 7, 75, 2, 2, 2713, 2714, 7, 80, 2, 2, 2714, 2715, 7, 86, 2, 2, 2715, 544, 3, 2, 2, 2, 2716, 2717, 7, 85, 2, 2, 2717, 2718, 7, 79, 2, 2, 2718, 2719, 7, 67, 2, 2, 2719, 2720, 7, 78, 2, 2, 2720, 2721, 7, 78, 2, 2, 2721, 2722, 7, 75, 2, 2, 2722, 2723, 7, 80, 2, 2, 2723, 2724, 7, 86, 2, 2, 2724, 546, 3, 2, 2, 2, 2725, 2726, 7, 75, 2, 2, 2726, 2727, 7, 80, 2, 2, 2727, 2728, 7, 86, 2, 2, 2728, 548, 3, 2, 2, 2, 2729, 2730, 7, 68, 2, 2, 2730, 2731, 7, 75, 2, 2, 2731, 2732, 7, 73, 2, 2, 2732, 2733, 7, 75, 2, 2, 2733, 2734, 7, 80, 2, 2, 2734, 2735, 7, 86, 2, 2, 2735, 550, 3, 2, 2, 2, 2736, 2737, 7, 72, 2, 2, 2737, 2738, 7, 78, 2, 2, 2738, 2739, 7, 81, 2, 2, 2739, 2740, 7, 67, 2, 2, 2740, 2741, 7, 86, 2, 2, 2741, 552, 3, 2, 2, 2, 2742, 2743, 7, 70, 2, 2, 2743, 2744, 7, 81, 2, 2, 2744, 2745, 7, 87, 2, 2, 2745, 2746, 7, 68, 2, 2, 2746, 2747, 7, 78, 2, 2, 2747, 2748, 7, 71, 2, 2, 2748, 554, 3, 2, 2, 2, 2749, 2750, 7, 70, 2, 2, 2750, 2751, 7, 67, 2, 2, 2751, 2752, 7, 86, 2, 2, 2752, 2753, 7, 71, 2, 2, 2753, 556, 3, 2, 2, 2, 2754, 2755, 7, 86, 2, 2, 2755, 2756, 7, 75, 2, 2, 2756, 2757, 7, 79, 2, 2, 2757, 2758, 7, 71, 2, 2, 2758, 558, 3, 2, 2, 2, 2759, 2760, 7, 86, 2, 2, 2760, 2761, 7, 75, 2, 2, 2761, 2762, 7, 79, 2, 2, 2762, 2763, 7, 71, 2, 2, 2763, 2764, 7, 85, 2, 2, 2764, 2765, 7, 86, 2, 2, 2765, 2766, 7, 67, 2, 2, 2766, 2767, 7, 79, 2, 2, 2767, 2768, 7, 82, 2, 2, 2768, 560, 3, 2, 2, 2, 2769, 2770, 7, 79, 2, 2, 2770, 2771, 7, 87, 2, 2, 2771, 2772, 7, 78, 2, 2, 2772, 2773, 7, 86, 2, 2, 2773, 2774, 7, 75, 2, 2, 2774, 2775, 7, 85, 2, 2, 2775, 2776, 7, 71, 2, 2, 2776, 2777, 7, 86, 2, 2, 2777, 562, 3, 2, 2, 2, 2778, 2779, 7, 68, 2, 2, 2779, 2780, 7, 81, 2, 2, 2780, 2781, 7, 81, 2, 2, 2781, 2782, 7, 78, 2, 2, 2782, 2783, 7, 71, 2, 2, 2783, 2784, 7, 67, 2, 2, 2784, 2785, 7, 80, 2, 2, 2785, 564, 3, 2, 2, 2, 2786, 2787, 7, 84, 2, 2, 2787, 2788, 7, 67, 2, 2, 2788, 2789, 7, 89, 2, 2, 2789, 566, 3, 2, 2, 2, 2790, 2791, 7, 84, 2, 2, 2791, 2792, 7, 81, 2, 2, 2792, 2793, 7, 89, 2, 2, 2793, 568, 3, 2, 2, 2, 2794, 2795, 7, 80, 2, 2, 2795, 2796, 7, 87, 2, 2, 2796, 2797, 7, 78, 2, 2, 2797, 2798, 7, 78, 2, 2, 2798, 570, 3, 2, 2, 2, 2799, 2800, 7, 63, 2, 2, 2800, 572, 3, 2, 2, 2, 2801, 2802, 7, 64, 2, 2, 2802, 574, 3, 2, 2, 2, 2803, 2804, 7, 62, 2, 2, 2804, 576, 3, 2, 2, 2, 2805, 2806, 7, 35, 2, 2, 2806, 578, 3, 2, 2, 2, 2807, 2808, 7, 128, 2, 2, 2808, 580, 3, 2, 2, 2, 2809, 2810, 7, 126, 2, 2, 2810, 582, 3, 2, 2, 2, 2811, 2812, 7, 40, 2, 2, 2812, 584, 3, 2, 2, 2, 2813, 2814, 7, 96, 2, 2, 2814, 586, 3, 2, 2, 2, 2815, 2816, 7, 48, 2, 2, 2816, 588, 3, 2, 2, 2, 2817, 2818, 7, 93, 2, 2, 2818, 590, 3, 2, 2, 2, 2819, 2820, 7, 95, 2, 2, 2820, 592, 3, 2, 2, 2, 2821, 2822, 7, 42, 2, 2, 2822, 594, 3, 2, 2, 2, 2823, 2824, 7, 43, 2, 2, 2824, 596, 3, 2, 2, 2, 2825, 2826, 7, 46, 2, 2, 2826, 598, 3, 2, 2, 2, 2827, 2828, 7, 61, 2, 2, 2828, 600, 3, 2, 2, 2, 2829, 2830, 7, 66, 2, 2, 2830, 602, 3, 2, 2, 2, 2831, 2832, 7, 50, 2, 2, 2832, 604, 3, 2, 2, 2, 2833, 2834, 7, 51, 2, 2, 2834, 606, 3, 2, 2, 2, 2835, 2836, 7, 52, 2, 2, 2836, 608, 3, 2, 2, 2, 2837, 2838, 7, 41, 2, 2, 2838, 610, 3, 2, 2, 2, 2839, 2840, 7, 36, 2, 2, 2840, 612, 3, 2, 2, 2, 2841, 2842, 7, 98, 2, 2, 2842, 614, 3, 2, 2, 2, 2843, 2844, 7, 60, 2, 2, 2844, 616, 3, 2, 2, 2, 2845, 2846, 7, 44, 2, 2, 2846, 618, 3, 2, 2, 2, 2847, 2848, 7, 97, 2, 2, 2848, 620, 3, 2, 2, 2, 2849, 2850, 7, 47, 2, 2, 2850, 622, 3, 2, 2, 2, 2851, 2852, 7, 45, 2, 2, 2852, 624, 3, 2, 2, 2, 2853, 2854, 7, 39, 2, 2, 2854, 626, 3, 2, 2, 2, 2855, 2856, 7, 47, 2, 2, 2856, 2857, 7, 47, 2, 2, 2857, 628, 3, 2, 2, 2, 2858, 2859, 7, 49, 2, 2, 2859, 630, 3, 2, 2, 2, 2860, 2864, 5, 649, 325, 2, 2861, 2864, 5, 651, 326, 2, 2862, 2864, 5, 655, 328, 2, 2863, 2860, 3, 2, 2, 2, 2863, 2861, 3, 2, 2, 2, 2863, 2862, 3, 2, 2, 2, 2864, 632, 3, 2, 2, 2, 2865, 2867, 5, 645, 323, 2, 2866, 2865, 3, 2, 2, 2, 2867, 2868, 3, 2, 2, 2, 2868, 2866, 3, 2, 2, 2, 2868, 2869, 3, 2, 2, 2, 2869, 634, 3, 2, 2, 2, 2870, 2872, 5, 645, 323, 2, 2871, 2870, 3, 2, 2, 2, 2872, 2873, 3, 2, 2, 2, 2873, 2871, 3, 2, 2, 2, 2873, 2874, 3, 2, 2, 2, 2874, 2876, 3, 2, 2, 2, 2875, 2871, 3, 2, 2, 2, 2875, 2876, 3, 2, 2, 2, 2876, 2877, 3, 2, 2, 2, 2877, 2879, 7, 48, 2, 2, 2878, 2880, 5, 645, 323, 2, 2879, 2878, 3, 2, 2, 2, 2880, 2881, 3, 2, 2, 2, 2881, 2879, 3, 2, 2, 2, 2881, 2882, 3, 2, 2, 2, 2882, 2914, 3, 2, 2, 2, 2883, 2885, 5, 645, 323, 2, 2884, 2883, 3, 2, 2, 2, 2885, 2886, 3, 2, 2, 2, 2886, 2884, 3, 2, 2, 2, 2886, 2887, 3, 2, 2, 2, 2887, 2888, 3, 2, 2, 2, 2888, 2889, 7, 48, 2, 2, 2889, 2890, 5, 641, 321, 2, 2890, 2914, 3, 2, 2, 2, 2891, 2893, 5, 645, 323, 2, 2892, 2891, 3, 2, 2, 2, 2893, 2894, 3, 2, 2, 2, 2894, 2892, 3, 2, 2, 2, 2894, 2895, 3, 2, 2, 2, 2895, 2897, 3, 2, 2, 2, 2896, 2892, 3, 2, 2, 2, 2896, 2897, 3, 2, 2, 2, 2897, 2898, 3, 2, 2, 2, 2898, 2900, 7, 48, 2, 2, 2899, 2901, 5, 645, 323, 2, 2900, 2899, 3, 2, 2, 2, 2901, 2902, 3, 2, 2, 2, 2902, 2900, 3, 2, 2, 2, 2902, 2903, 3, 2, 2, 2, 2903, 2904, 3, 2, 2, 2, 2904, 2905, 5, 641, 321, 2, 2905, 2914, 3, 2, 2, 2, 2906, 2908, 5, 645, 323, 2, 2907, 2906, 3, 2, 2, 2, 2908, 2909, 3, 2, 2, 2, 2909, 2907, 3, 2, 2, 2, 2909, 2910, 3, 2, 2, 2, 2910, 2911, 3, 2, 2, 2, 2911, 2912, 5, 641, 321, 2, 2912, 2914, 3, 2, 2, 2, 2913, 2875, 3, 2, 2, 2, 2913, 2884, 3, 2, 2, 2, 2913, 2896, 3, 2, 2, 2, 2913, 2907, 3, 2, 2, 2, 2914, 636, 3, 2, 2, 2, 2915, 2916, 5, 653, 327, 2, 2916, 638, 3, 2, 2, 2, 2917, 2921, 5, 647, 324, 2, 2918, 2921, 5, 645, 323, 2, 2919, 2921, 5, 619, 310, 2, 2920, 2917, 3, 2, 2, 2, 2920, 2918, 3, 2, 2, 2, 2920, 2919, 3, 2, 2, 2, 2921, 2922, 3, 2, 2, 2, 2922, 2920, 3, 2, 2, 2, 2922, 2923, 3, 2, 2, 2, 2923, 640, 3, 2, 2, 2, 2924, 2926, 7, 71, 2, 2, 2925, 2927, 9, 6, 2, 2, 2926, 2925, 3, 2, 2, 2, 2926, 2927, 3, 2, 2, 2, 2927, 2929, 3, 2, 2, 2, 2928, 2930, 5, 645, 323, 2, 2929, 2928, 3, 2, 2, 2, 2930, 2931, 3, 2, 2, 2, 2931, 2929, 3, 2, 2, 2, 2931, 2932, 3, 2, 2, 2, 2932, 642, 3, 2, 2, 2, 2933, 2935, 9, 7, 2, 2, 2934, 2933, 3, 2, 2, 2, 2935, 2938, 3, 2, 2, 2, 2936, 2937, 3, 2, 2, 2, 2936, 2934, 3, 2, 2, 2, 2937, 2940, 3, 2, 2, 2, 2938, 2936, 3, 2, 2, 2, 2939, 2941, 9, 8, 2, 2, 2940, 2939, 3, 2, 2, 2, 2941, 2942, 3, 2, 2, 2, 2942, 2943, 3, 2, 2, 2, 2942, 2940, 3, 2, 2, 2, 2943, 2947, 3, 2, 2, 2, 2944, 2946, 9, 7, 2, 2, 2945, 2944, 3, 2, 2, 2, 2946, 2949, 3, 2, 2, 2, 2947, 2945, 3, 2, 2, 2, 2947, 2948, 3, 2, 2, 2, 2948, 644, 3, 2, 2, 2, 2949, 2947, 3, 2, 2, 2, 2950, 2951, 9, 9, 2, 2, 2951, 646, 3, 2, 2, 2, 2952, 2953, 9, 10, 2, 2, 2953, 648, 3, 2, 2, 2, 2954, 2962, 7, 36, 2, 2, 2955, 2956, 7, 94, 2, 2, 2956, 2961, 11, 2, 2, 2, 2957, 2958, 7, 36, 2, 2, 2958, 2961, 7, 36, 2, 2, 2959, 2961, 10, 11, 2, 2, 2960, 2955, 3, 2, 2, 2, 2960, 2957, 3, 2, 2, 2, 2960, 2959, 3, 2, 2, 2, 2961, 2964, 3, 2, 2, 2, 2962, 2960, 3, 2, 2, 2, 2962, 2963, 3, 2, 2, 2, 2963, 2965, 3, 2, 2, 2, 2964, 2962, 3, 2, 2, 2, 2965, 2966, 7, 36, 2, 2, 2966, 650, 3, 2, 2, 2, 2967, 2975, 7, 41, 2, 2, 2968, 2969, 7, 94, 2, 2, 2969, 2974, 11, 2, 2, 2, 2970, 2971, 7, 41, 2, 2, 2971, 2974, 7, 41, 2, 2, 2972, 2974, 10, 12, 2, 2, 2973, 2968, 3, 2, 2, 2, 2973, 2970, 3, 2, 2, 2, 2973, 2972, 3, 2, 2, 2, 2974, 2977, 3, 2, 2, 2, 2975, 2973, 3, 2, 2, 2, 2975, 2976, 3, 2, 2, 2, 2976, 2978, 3, 2, 2, 2, 2977, 2975, 3, 2, 2, 2, 2978, 2979, 7, 41, 2, 2, 2979, 652, 3, 2, 2, 2, 2980, 2981, 7, 68, 2, 2, 2981, 2983, 7, 41, 2, 2, 2982, 2984, 9, 13, 2, 2, 2983, 2982, 3, 2, 2, 2, 2984, 2985, 3, 2, 2, 2, 2985, 2983, 3, 2, 2, 2, 2985, 2986, 3, 2, 2, 2, 2986, 2987, 3, 2, 2, 2, 2987, 2988, 7, 41, 2, 2, 2988, 654, 3, 2, 2, 2, 2989, 2997, 7, 98, 2, 2, 2990, 2991, 7, 94, 2, 2, 2991, 2996, 11, 2, 2, 2, 2992, 2993, 7, 98, 2, 2, 2993, 2996, 7, 98, 2, 2, 2994, 2996, 10, 14, 2, 2, 2995, 2990, 3, 2, 2, 2, 2995, 2992, 3, 2, 2, 2, 2995, 2994, 3, 2, 2, 2, 2996, 2999, 3, 2, 2, 2, 2997, 2995, 3, 2, 2, 2, 2997, 2998, 3, 2, 2, 2, 2998, 3000, 3, 2, 2, 2, 2999, 2997, 3, 2, 2, 2, 3000, 3001, 7, 98, 2, 2, 3001, 656, 3, 2, 2, 2, 40, 2, 660, 671, 684, 696, 701, 705, 709, 715, 719, 721, 2623, 2631, 2863, 2868, 2873, 2875, 2881, 2886, 2894, 2896, 2902, 2909, 2913, 2920, 2922, 2926, 2931, 2936, 2942, 2947, 2960, 2962, 2973, 2975, 2985, 2995, 2997, 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 97633bb..ea41413 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\u0138\u0b8c\b\u0001\u0004\u0002\t\u0002\u0004\u0003\t\u0003\u0004", + "\u0002\u0141\u0bba\b\u0001\u0004\u0002\t\u0002\u0004\u0003\t\u0003\u0004", "\u0004\t\u0004\u0004\u0005\t\u0005\u0004\u0006\t\u0006\u0004\u0007\t", "\u0007\u0004\b\t\b\u0004\t\t\t\u0004\n\t\n\u0004\u000b\t\u000b\u0004", "\f\t\f\u0004\r\t\r\u0004\u000e\t\u000e\u0004\u000f\t\u000f\u0004\u0010", @@ -81,1820 +81,1853 @@ var serializedATN = ["\u0003\u608b\ua72a\u8133\ub9ed\u417c\u3be7\u7786\u5964", "\u0131\t\u0131\u0004\u0132\t\u0132\u0004\u0133\t\u0133\u0004\u0134\t", "\u0134\u0004\u0135\t\u0135\u0004\u0136\t\u0136\u0004\u0137\t\u0137\u0004", "\u0138\t\u0138\u0004\u0139\t\u0139\u0004\u013a\t\u013a\u0004\u013b\t", - "\u013b\u0004\u013c\t\u013c\u0004\u013d\t\u013d\u0004\u013e\t\u013e\u0003", - "\u0002\u0006\u0002\u027f\n\u0002\r\u0002\u000e\u0002\u0280\u0003\u0002", - "\u0003\u0002\u0003\u0003\u0003\u0003\u0003\u0003\u0003\u0003\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", + "\u013b\u0004\u013c\t\u013c\u0004\u013d\t\u013d\u0004\u013e\t\u013e\u0004", + "\u013f\t\u013f\u0004\u0140\t\u0140\u0004\u0141\t\u0141\u0004\u0142\t", + "\u0142\u0004\u0143\t\u0143\u0004\u0144\t\u0144\u0004\u0145\t\u0145\u0004", + "\u0146\t\u0146\u0004\u0147\t\u0147\u0004\u0148\t\u0148\u0003\u0002\u0006", + "\u0002\u0293\n\u0002\r\u0002\u000e\u0002\u0294\u0003\u0002\u0003\u0002", + "\u0003\u0003\u0003\u0003\u0003\u0003\u0003\u0003\u0003\u0003\u0006\u0003", + "\u029e\n\u0003\r\u0003\u000e\u0003\u029f\u0003\u0003\u0003\u0003\u0003", + "\u0003\u0003\u0003\u0003\u0003\u0003\u0004\u0003\u0004\u0003\u0004\u0003", + "\u0004\u0007\u0004\u02ab\n\u0004\f\u0004\u000e\u0004\u02ae\u000b\u0004", + "\u0003\u0004\u0003\u0004\u0003\u0004\u0003\u0004\u0003\u0004\u0003\u0005", + "\u0003\u0005\u0003\u0005\u0003\u0005\u0005\u0005\u02b9\n\u0005\u0003", + "\u0005\u0007\u0005\u02bc\n\u0005\f\u0005\u000e\u0005\u02bf\u000b\u0005", + "\u0003\u0005\u0005\u0005\u02c2\n\u0005\u0003\u0005\u0003\u0005\u0005", + "\u0005\u02c6\n\u0005\u0003\u0005\u0003\u0005\u0003\u0005\u0003\u0005", + "\u0005\u0005\u02cc\n\u0005\u0003\u0005\u0003\u0005\u0005\u0005\u02d0", + "\n\u0005\u0005\u0005\u02d2\n\u0005\u0003\u0005\u0003\u0005\u0003\u0006", "\u0003\u0006\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\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", - ";\u001f= ?!A\"C#E$G%I&K\'M(O)Q*S+U,W-Y.[/]0_1a2c3e4g5i6k7m8o9q:s;u<", - "w=y>{?}@\u007fA\u0081B\u0083C\u0085D\u0087E\u0089F\u008bG\u008dH\u008f", - "I\u0091J\u0093K\u0095L\u0097M\u0099N\u009bO\u009dP\u009fQ\u00a1R\u00a3", - "S\u00a5T\u00a7U\u00a9V\u00abW\u00adX\u00afY\u00b1Z\u00b3[\u00b5\\\u00b7", - "]\u00b9^\u00bb_\u00bd`\u00bfa\u00c1b\u00c3c\u00c5d\u00c7e\u00c9f\u00cb", - "g\u00cdh\u00cfi\u00d1j\u00d3k\u00d5l\u00d7m\u00d9n\u00dbo\u00ddp\u00df", - "q\u00e1r\u00e3s\u00e5t\u00e7u\u00e9v\u00ebw\u00edx\u00efy\u00f1z\u00f3", - "{\u00f5|\u00f7}\u00f9~\u00fb\u007f\u00fd\u0080\u00ff\u0081\u0101\u0082", - "\u0103\u0083\u0105\u0084\u0107\u0085\u0109\u0086\u010b\u0087\u010d\u0088", - "\u010f\u0089\u0111\u008a\u0113\u008b\u0115\u008c\u0117\u008d\u0119\u008e", - "\u011b\u008f\u011d\u0090\u011f\u0091\u0121\u0092\u0123\u0093\u0125\u0094", - "\u0127\u0095\u0129\u0096\u012b\u0097\u012d\u0098\u012f\u0099\u0131\u009a", - "\u0133\u009b\u0135\u009c\u0137\u009d\u0139\u009e\u013b\u009f\u013d\u00a0", - "\u013f\u00a1\u0141\u00a2\u0143\u00a3\u0145\u00a4\u0147\u00a5\u0149\u00a6", - "\u014b\u00a7\u014d\u00a8\u014f\u00a9\u0151\u00aa\u0153\u00ab\u0155\u00ac", - "\u0157\u00ad\u0159\u00ae\u015b\u00af\u015d\u00b0\u015f\u00b1\u0161\u00b2", - "\u0163\u00b3\u0165\u00b4\u0167\u00b5\u0169\u00b6\u016b\u00b7\u016d\u00b8", - "\u016f\u00b9\u0171\u00ba\u0173\u00bb\u0175\u00bc\u0177\u00bd\u0179\u00be", - "\u017b\u00bf\u017d\u00c0\u017f\u00c1\u0181\u00c2\u0183\u00c3\u0185\u00c4", - "\u0187\u00c5\u0189\u00c6\u018b\u00c7\u018d\u00c8\u018f\u00c9\u0191\u00ca", - "\u0193\u00cb\u0195\u00cc\u0197\u00cd\u0199\u00ce\u019b\u00cf\u019d\u00d0", - "\u019f\u00d1\u01a1\u00d2\u01a3\u00d3\u01a5\u00d4\u01a7\u00d5\u01a9\u00d6", - "\u01ab\u00d7\u01ad\u00d8\u01af\u00d9\u01b1\u00da\u01b3\u00db\u01b5\u00dc", - "\u01b7\u00dd\u01b9\u00de\u01bb\u00df\u01bd\u00e0\u01bf\u00e1\u01c1\u00e2", - "\u01c3\u00e3\u01c5\u00e4\u01c7\u00e5\u01c9\u00e6\u01cb\u00e7\u01cd\u00e8", - "\u01cf\u00e9\u01d1\u00ea\u01d3\u00eb\u01d5\u00ec\u01d7\u00ed\u01d9\u00ee", - "\u01db\u00ef\u01dd\u00f0\u01df\u00f1\u01e1\u00f2\u01e3\u00f3\u01e5\u00f4", - "\u01e7\u00f5\u01e9\u00f6\u01eb\u00f7\u01ed\u00f8\u01ef\u00f9\u01f1\u00fa", - "\u01f3\u00fb\u01f5\u00fc\u01f7\u00fd\u01f9\u00fe\u01fb\u00ff\u01fd\u0100", - "\u01ff\u0101\u0201\u0102\u0203\u0103\u0205\u0104\u0207\u0105\u0209\u0106", - "\u020b\u0107\u020d\u0108\u020f\u0109\u0211\u010a\u0213\u010b\u0215\u010c", - "\u0217\u010d\u0219\u010e\u021b\u010f\u021d\u0110\u021f\u0111\u0221\u0112", - "\u0223\u0113\u0225\u0114\u0227\u0115\u0229\u0116\u022b\u0117\u022d\u0118", - "\u022f\u0119\u0231\u011a\u0233\u011b\u0235\u011c\u0237\u011d\u0239\u011e", - "\u023b\u011f\u023d\u0120\u023f\u0121\u0241\u0122\u0243\u0123\u0245\u0124", - "\u0247\u0125\u0249\u0126\u024b\u0127\u024d\u0128\u024f\u0129\u0251\u012a", - "\u0253\u012b\u0255\u012c\u0257\u012d\u0259\u012e\u025b\u012f\u025d\u0130", - "\u025f\u0131\u0261\u0132\u0263\u0133\u0265\u0134\u0267\u0135\u0269\u0136", - "\u026b\u0137\u026d\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(""); + "\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\u0a3e\n\u0102\r\u0102\u000e\u0102\u0a3f\u0003\u0102\u0003", + "\u0102\u0003\u0103\u0003\u0103\u0006\u0103\u0a46\n\u0103\r\u0103\u000e", + "\u0103\u0a47\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\u0135\u0003\u0135\u0003\u0136", + "\u0003\u0136\u0003\u0137\u0003\u0137\u0003\u0138\u0003\u0138\u0003\u0139", + "\u0003\u0139\u0003\u013a\u0003\u013a\u0003\u013a\u0003\u013b\u0003\u013b", + "\u0003\u013c\u0003\u013c\u0003\u013c\u0005\u013c\u0b30\n\u013c\u0003", + "\u013d\u0006\u013d\u0b33\n\u013d\r\u013d\u000e\u013d\u0b34\u0003\u013e", + "\u0006\u013e\u0b38\n\u013e\r\u013e\u000e\u013e\u0b39\u0005\u013e\u0b3c", + "\n\u013e\u0003\u013e\u0003\u013e\u0006\u013e\u0b40\n\u013e\r\u013e\u000e", + "\u013e\u0b41\u0003\u013e\u0006\u013e\u0b45\n\u013e\r\u013e\u000e\u013e", + "\u0b46\u0003\u013e\u0003\u013e\u0003\u013e\u0003\u013e\u0006\u013e\u0b4d", + "\n\u013e\r\u013e\u000e\u013e\u0b4e\u0005\u013e\u0b51\n\u013e\u0003\u013e", + "\u0003\u013e\u0006\u013e\u0b55\n\u013e\r\u013e\u000e\u013e\u0b56\u0003", + "\u013e\u0003\u013e\u0003\u013e\u0006\u013e\u0b5c\n\u013e\r\u013e\u000e", + "\u013e\u0b5d\u0003\u013e\u0003\u013e\u0005\u013e\u0b62\n\u013e\u0003", + "\u013f\u0003\u013f\u0003\u0140\u0003\u0140\u0003\u0140\u0006\u0140\u0b69", + "\n\u0140\r\u0140\u000e\u0140\u0b6a\u0003\u0141\u0003\u0141\u0005\u0141", + "\u0b6f\n\u0141\u0003\u0141\u0006\u0141\u0b72\n\u0141\r\u0141\u000e\u0141", + "\u0b73\u0003\u0142\u0007\u0142\u0b77\n\u0142\f\u0142\u000e\u0142\u0b7a", + "\u000b\u0142\u0003\u0142\u0006\u0142\u0b7d\n\u0142\r\u0142\u000e\u0142", + "\u0b7e\u0003\u0142\u0007\u0142\u0b82\n\u0142\f\u0142\u000e\u0142\u0b85", + "\u000b\u0142\u0003\u0143\u0003\u0143\u0003\u0144\u0003\u0144\u0003\u0145", + "\u0003\u0145\u0003\u0145\u0003\u0145\u0003\u0145\u0003\u0145\u0007\u0145", + "\u0b91\n\u0145\f\u0145\u000e\u0145\u0b94\u000b\u0145\u0003\u0145\u0003", + "\u0145\u0003\u0146\u0003\u0146\u0003\u0146\u0003\u0146\u0003\u0146\u0003", + "\u0146\u0007\u0146\u0b9e\n\u0146\f\u0146\u000e\u0146\u0ba1\u000b\u0146", + "\u0003\u0146\u0003\u0146\u0003\u0147\u0003\u0147\u0003\u0147\u0006\u0147", + "\u0ba8\n\u0147\r\u0147\u000e\u0147\u0ba9\u0003\u0147\u0003\u0147\u0003", + "\u0148\u0003\u0148\u0003\u0148\u0003\u0148\u0003\u0148\u0003\u0148\u0007", + "\u0148\u0bb4\n\u0148\f\u0148\u000e\u0148\u0bb7\u000b\u0148\u0003\u0148", + "\u0003\u0148\u0006\u029f\u02ac\u0b78\u0b7e\u0002\u0149\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\u001c", + "7\u001d9\u001e;\u001f= ?!A\"C#E$G%I&K\'M(O)Q*S+U,W-Y.[/]0_1a2c3e4g5", + "i6k7m8o9q:s;u{?}@\u007fA\u0081B\u0083C\u0085D\u0087E\u0089F\u008b", + "G\u008dH\u008fI\u0091J\u0093K\u0095L\u0097M\u0099N\u009bO\u009dP\u009f", + "Q\u00a1R\u00a3S\u00a5T\u00a7U\u00a9V\u00abW\u00adX\u00afY\u00b1Z\u00b3", + "[\u00b5\\\u00b7]\u00b9^\u00bb_\u00bd`\u00bfa\u00c1b\u00c3c\u00c5d\u00c7", + "e\u00c9f\u00cbg\u00cdh\u00cfi\u00d1j\u00d3k\u00d5l\u00d7m\u00d9n\u00db", + "o\u00ddp\u00dfq\u00e1r\u00e3s\u00e5t\u00e7u\u00e9v\u00ebw\u00edx\u00ef", + "y\u00f1z\u00f3{\u00f5|\u00f7}\u00f9~\u00fb\u007f\u00fd\u0080\u00ff\u0081", + "\u0101\u0082\u0103\u0083\u0105\u0084\u0107\u0085\u0109\u0086\u010b\u0087", + "\u010d\u0088\u010f\u0089\u0111\u008a\u0113\u008b\u0115\u008c\u0117\u008d", + "\u0119\u008e\u011b\u008f\u011d\u0090\u011f\u0091\u0121\u0092\u0123\u0093", + "\u0125\u0094\u0127\u0095\u0129\u0096\u012b\u0097\u012d\u0098\u012f\u0099", + "\u0131\u009a\u0133\u009b\u0135\u009c\u0137\u009d\u0139\u009e\u013b\u009f", + "\u013d\u00a0\u013f\u00a1\u0141\u00a2\u0143\u00a3\u0145\u00a4\u0147\u00a5", + "\u0149\u00a6\u014b\u00a7\u014d\u00a8\u014f\u00a9\u0151\u00aa\u0153\u00ab", + "\u0155\u00ac\u0157\u00ad\u0159\u00ae\u015b\u00af\u015d\u00b0\u015f\u00b1", + "\u0161\u00b2\u0163\u00b3\u0165\u00b4\u0167\u00b5\u0169\u00b6\u016b\u00b7", + "\u016d\u00b8\u016f\u00b9\u0171\u00ba\u0173\u00bb\u0175\u00bc\u0177\u00bd", + "\u0179\u00be\u017b\u00bf\u017d\u00c0\u017f\u00c1\u0181\u00c2\u0183\u00c3", + "\u0185\u00c4\u0187\u00c5\u0189\u00c6\u018b\u00c7\u018d\u00c8\u018f\u00c9", + "\u0191\u00ca\u0193\u00cb\u0195\u00cc\u0197\u00cd\u0199\u00ce\u019b\u00cf", + "\u019d\u00d0\u019f\u00d1\u01a1\u00d2\u01a3\u00d3\u01a5\u00d4\u01a7\u00d5", + "\u01a9\u00d6\u01ab\u00d7\u01ad\u00d8\u01af\u00d9\u01b1\u00da\u01b3\u00db", + "\u01b5\u00dc\u01b7\u00dd\u01b9\u00de\u01bb\u00df\u01bd\u00e0\u01bf\u00e1", + "\u01c1\u00e2\u01c3\u00e3\u01c5\u00e4\u01c7\u00e5\u01c9\u00e6\u01cb\u00e7", + "\u01cd\u00e8\u01cf\u00e9\u01d1\u00ea\u01d3\u00eb\u01d5\u00ec\u01d7\u00ed", + "\u01d9\u00ee\u01db\u00ef\u01dd\u00f0\u01df\u00f1\u01e1\u00f2\u01e3\u00f3", + "\u01e5\u00f4\u01e7\u00f5\u01e9\u00f6\u01eb\u00f7\u01ed\u00f8\u01ef\u00f9", + "\u01f1\u00fa\u01f3\u00fb\u01f5\u00fc\u01f7\u00fd\u01f9\u00fe\u01fb\u00ff", + "\u01fd\u0100\u01ff\u0101\u0201\u0102\u0203\u0103\u0205\u0104\u0207\u0105", + "\u0209\u0106\u020b\u0107\u020d\u0108\u020f\u0109\u0211\u010a\u0213\u010b", + "\u0215\u010c\u0217\u010d\u0219\u010e\u021b\u010f\u021d\u0110\u021f\u0111", + "\u0221\u0112\u0223\u0113\u0225\u0114\u0227\u0115\u0229\u0116\u022b\u0117", + "\u022d\u0118\u022f\u0119\u0231\u011a\u0233\u011b\u0235\u011c\u0237\u011d", + "\u0239\u011e\u023b\u011f\u023d\u0120\u023f\u0121\u0241\u0122\u0243\u0123", + "\u0245\u0124\u0247\u0125\u0249\u0126\u024b\u0127\u024d\u0128\u024f\u0129", + "\u0251\u012a\u0253\u012b\u0255\u012c\u0257\u012d\u0259\u012e\u025b\u012f", + "\u025d\u0130\u025f\u0131\u0261\u0132\u0263\u0133\u0265\u0134\u0267\u0135", + "\u0269\u0136\u026b\u0137\u026d\u0138\u026f\u0139\u0271\u013a\u0273\u013b", + "\u0275\u013c\u0277\u013d\u0279\u013e\u027b\u013f\u027d\u0140\u027f\u0141", + "\u0281\u0002\u0283\u0002\u0285\u0002\u0287\u0002\u0289\u0002\u028b\u0002", + "\u028d\u0002\u028f\u0002\u0003\u0002\u000f\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\u00022;\u0004", + "\u0002C\\c|\u0004\u0002$$^^\u0004\u0002))^^\u0003\u000223\u0004\u0002", + "^^bb\u0002\u0bdd\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\u0002", + "3\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\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", + "_\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\u0002s\u0003\u0002\u0002\u0002\u0002", + "u\u0003\u0002\u0002\u0002\u0002w\u0003\u0002\u0002\u0002\u0002y\u0003", + "\u0002\u0002\u0002\u0002{\u0003\u0002\u0002\u0002\u0002}\u0003\u0002", + "\u0002\u0002\u0002\u007f\u0003\u0002\u0002\u0002\u0002\u0081\u0003\u0002", + "\u0002\u0002\u0002\u0083\u0003\u0002\u0002\u0002\u0002\u0085\u0003\u0002", + "\u0002\u0002\u0002\u0087\u0003\u0002\u0002\u0002\u0002\u0089\u0003\u0002", + "\u0002\u0002\u0002\u008b\u0003\u0002\u0002\u0002\u0002\u008d\u0003\u0002", + "\u0002\u0002\u0002\u008f\u0003\u0002\u0002\u0002\u0002\u0091\u0003\u0002", + "\u0002\u0002\u0002\u0093\u0003\u0002\u0002\u0002\u0002\u0095\u0003\u0002", + "\u0002\u0002\u0002\u0097\u0003\u0002\u0002\u0002\u0002\u0099\u0003\u0002", + "\u0002\u0002\u0002\u009b\u0003\u0002\u0002\u0002\u0002\u009d\u0003\u0002", + "\u0002\u0002\u0002\u009f\u0003\u0002\u0002\u0002\u0002\u00a1\u0003\u0002", + "\u0002\u0002\u0002\u00a3\u0003\u0002\u0002\u0002\u0002\u00a5\u0003\u0002", + "\u0002\u0002\u0002\u00a7\u0003\u0002\u0002\u0002\u0002\u00a9\u0003\u0002", + "\u0002\u0002\u0002\u00ab\u0003\u0002\u0002\u0002\u0002\u00ad\u0003\u0002", + "\u0002\u0002\u0002\u00af\u0003\u0002\u0002\u0002\u0002\u00b1\u0003\u0002", + "\u0002\u0002\u0002\u00b3\u0003\u0002\u0002\u0002\u0002\u00b5\u0003\u0002", + "\u0002\u0002\u0002\u00b7\u0003\u0002\u0002\u0002\u0002\u00b9\u0003\u0002", + "\u0002\u0002\u0002\u00bb\u0003\u0002\u0002\u0002\u0002\u00bd\u0003\u0002", + "\u0002\u0002\u0002\u00bf\u0003\u0002\u0002\u0002\u0002\u00c1\u0003\u0002", + "\u0002\u0002\u0002\u00c3\u0003\u0002\u0002\u0002\u0002\u00c5\u0003\u0002", + "\u0002\u0002\u0002\u00c7\u0003\u0002\u0002\u0002\u0002\u00c9\u0003\u0002", + "\u0002\u0002\u0002\u00cb\u0003\u0002\u0002\u0002\u0002\u00cd\u0003\u0002", + "\u0002\u0002\u0002\u00cf\u0003\u0002\u0002\u0002\u0002\u00d1\u0003\u0002", + "\u0002\u0002\u0002\u00d3\u0003\u0002\u0002\u0002\u0002\u00d5\u0003\u0002", + "\u0002\u0002\u0002\u00d7\u0003\u0002\u0002\u0002\u0002\u00d9\u0003\u0002", + "\u0002\u0002\u0002\u00db\u0003\u0002\u0002\u0002\u0002\u00dd\u0003\u0002", + "\u0002\u0002\u0002\u00df\u0003\u0002\u0002\u0002\u0002\u00e1\u0003\u0002", + "\u0002\u0002\u0002\u00e3\u0003\u0002\u0002\u0002\u0002\u00e5\u0003\u0002", + "\u0002\u0002\u0002\u00e7\u0003\u0002\u0002\u0002\u0002\u00e9\u0003\u0002", + "\u0002\u0002\u0002\u00eb\u0003\u0002\u0002\u0002\u0002\u00ed\u0003\u0002", + "\u0002\u0002\u0002\u00ef\u0003\u0002\u0002\u0002\u0002\u00f1\u0003\u0002", + "\u0002\u0002\u0002\u00f3\u0003\u0002\u0002\u0002\u0002\u00f5\u0003\u0002", + "\u0002\u0002\u0002\u00f7\u0003\u0002\u0002\u0002\u0002\u00f9\u0003\u0002", + "\u0002\u0002\u0002\u00fb\u0003\u0002\u0002\u0002\u0002\u00fd\u0003\u0002", + "\u0002\u0002\u0002\u00ff\u0003\u0002\u0002\u0002\u0002\u0101\u0003\u0002", + "\u0002\u0002\u0002\u0103\u0003\u0002\u0002\u0002\u0002\u0105\u0003\u0002", + "\u0002\u0002\u0002\u0107\u0003\u0002\u0002\u0002\u0002\u0109\u0003\u0002", + "\u0002\u0002\u0002\u010b\u0003\u0002\u0002\u0002\u0002\u010d\u0003\u0002", + "\u0002\u0002\u0002\u010f\u0003\u0002\u0002\u0002\u0002\u0111\u0003\u0002", + "\u0002\u0002\u0002\u0113\u0003\u0002\u0002\u0002\u0002\u0115\u0003\u0002", + "\u0002\u0002\u0002\u0117\u0003\u0002\u0002\u0002\u0002\u0119\u0003\u0002", + "\u0002\u0002\u0002\u011b\u0003\u0002\u0002\u0002\u0002\u011d\u0003\u0002", + "\u0002\u0002\u0002\u011f\u0003\u0002\u0002\u0002\u0002\u0121\u0003\u0002", + "\u0002\u0002\u0002\u0123\u0003\u0002\u0002\u0002\u0002\u0125\u0003\u0002", + "\u0002\u0002\u0002\u0127\u0003\u0002\u0002\u0002\u0002\u0129\u0003\u0002", + "\u0002\u0002\u0002\u012b\u0003\u0002\u0002\u0002\u0002\u012d\u0003\u0002", + "\u0002\u0002\u0002\u012f\u0003\u0002\u0002\u0002\u0002\u0131\u0003\u0002", + "\u0002\u0002\u0002\u0133\u0003\u0002\u0002\u0002\u0002\u0135\u0003\u0002", + "\u0002\u0002\u0002\u0137\u0003\u0002\u0002\u0002\u0002\u0139\u0003\u0002", + "\u0002\u0002\u0002\u013b\u0003\u0002\u0002\u0002\u0002\u013d\u0003\u0002", + "\u0002\u0002\u0002\u013f\u0003\u0002\u0002\u0002\u0002\u0141\u0003\u0002", + "\u0002\u0002\u0002\u0143\u0003\u0002\u0002\u0002\u0002\u0145\u0003\u0002", + "\u0002\u0002\u0002\u0147\u0003\u0002\u0002\u0002\u0002\u0149\u0003\u0002", + "\u0002\u0002\u0002\u014b\u0003\u0002\u0002\u0002\u0002\u014d\u0003\u0002", + "\u0002\u0002\u0002\u014f\u0003\u0002\u0002\u0002\u0002\u0151\u0003\u0002", + "\u0002\u0002\u0002\u0153\u0003\u0002\u0002\u0002\u0002\u0155\u0003\u0002", + "\u0002\u0002\u0002\u0157\u0003\u0002\u0002\u0002\u0002\u0159\u0003\u0002", + "\u0002\u0002\u0002\u015b\u0003\u0002\u0002\u0002\u0002\u015d\u0003\u0002", + "\u0002\u0002\u0002\u015f\u0003\u0002\u0002\u0002\u0002\u0161\u0003\u0002", + "\u0002\u0002\u0002\u0163\u0003\u0002\u0002\u0002\u0002\u0165\u0003\u0002", + "\u0002\u0002\u0002\u0167\u0003\u0002\u0002\u0002\u0002\u0169\u0003\u0002", + "\u0002\u0002\u0002\u016b\u0003\u0002\u0002\u0002\u0002\u016d\u0003\u0002", + "\u0002\u0002\u0002\u016f\u0003\u0002\u0002\u0002\u0002\u0171\u0003\u0002", + "\u0002\u0002\u0002\u0173\u0003\u0002\u0002\u0002\u0002\u0175\u0003\u0002", + "\u0002\u0002\u0002\u0177\u0003\u0002\u0002\u0002\u0002\u0179\u0003\u0002", + "\u0002\u0002\u0002\u017b\u0003\u0002\u0002\u0002\u0002\u017d\u0003\u0002", + "\u0002\u0002\u0002\u017f\u0003\u0002\u0002\u0002\u0002\u0181\u0003\u0002", + "\u0002\u0002\u0002\u0183\u0003\u0002\u0002\u0002\u0002\u0185\u0003\u0002", + "\u0002\u0002\u0002\u0187\u0003\u0002\u0002\u0002\u0002\u0189\u0003\u0002", + "\u0002\u0002\u0002\u018b\u0003\u0002\u0002\u0002\u0002\u018d\u0003\u0002", + "\u0002\u0002\u0002\u018f\u0003\u0002\u0002\u0002\u0002\u0191\u0003\u0002", + "\u0002\u0002\u0002\u0193\u0003\u0002\u0002\u0002\u0002\u0195\u0003\u0002", + "\u0002\u0002\u0002\u0197\u0003\u0002\u0002\u0002\u0002\u0199\u0003\u0002", + "\u0002\u0002\u0002\u019b\u0003\u0002\u0002\u0002\u0002\u019d\u0003\u0002", + "\u0002\u0002\u0002\u019f\u0003\u0002\u0002\u0002\u0002\u01a1\u0003\u0002", + "\u0002\u0002\u0002\u01a3\u0003\u0002\u0002\u0002\u0002\u01a5\u0003\u0002", + "\u0002\u0002\u0002\u01a7\u0003\u0002\u0002\u0002\u0002\u01a9\u0003\u0002", + "\u0002\u0002\u0002\u01ab\u0003\u0002\u0002\u0002\u0002\u01ad\u0003\u0002", + "\u0002\u0002\u0002\u01af\u0003\u0002\u0002\u0002\u0002\u01b1\u0003\u0002", + "\u0002\u0002\u0002\u01b3\u0003\u0002\u0002\u0002\u0002\u01b5\u0003\u0002", + "\u0002\u0002\u0002\u01b7\u0003\u0002\u0002\u0002\u0002\u01b9\u0003\u0002", + "\u0002\u0002\u0002\u01bb\u0003\u0002\u0002\u0002\u0002\u01bd\u0003\u0002", + "\u0002\u0002\u0002\u01bf\u0003\u0002\u0002\u0002\u0002\u01c1\u0003\u0002", + "\u0002\u0002\u0002\u01c3\u0003\u0002\u0002\u0002\u0002\u01c5\u0003\u0002", + "\u0002\u0002\u0002\u01c7\u0003\u0002\u0002\u0002\u0002\u01c9\u0003\u0002", + "\u0002\u0002\u0002\u01cb\u0003\u0002\u0002\u0002\u0002\u01cd\u0003\u0002", + "\u0002\u0002\u0002\u01cf\u0003\u0002\u0002\u0002\u0002\u01d1\u0003\u0002", + "\u0002\u0002\u0002\u01d3\u0003\u0002\u0002\u0002\u0002\u01d5\u0003\u0002", + "\u0002\u0002\u0002\u01d7\u0003\u0002\u0002\u0002\u0002\u01d9\u0003\u0002", + "\u0002\u0002\u0002\u01db\u0003\u0002\u0002\u0002\u0002\u01dd\u0003\u0002", + "\u0002\u0002\u0002\u01df\u0003\u0002\u0002\u0002\u0002\u01e1\u0003\u0002", + "\u0002\u0002\u0002\u01e3\u0003\u0002\u0002\u0002\u0002\u01e5\u0003\u0002", + "\u0002\u0002\u0002\u01e7\u0003\u0002\u0002\u0002\u0002\u01e9\u0003\u0002", + "\u0002\u0002\u0002\u01eb\u0003\u0002\u0002\u0002\u0002\u01ed\u0003\u0002", + "\u0002\u0002\u0002\u01ef\u0003\u0002\u0002\u0002\u0002\u01f1\u0003\u0002", + "\u0002\u0002\u0002\u01f3\u0003\u0002\u0002\u0002\u0002\u01f5\u0003\u0002", + "\u0002\u0002\u0002\u01f7\u0003\u0002\u0002\u0002\u0002\u01f9\u0003\u0002", + "\u0002\u0002\u0002\u01fb\u0003\u0002\u0002\u0002\u0002\u01fd\u0003\u0002", + "\u0002\u0002\u0002\u01ff\u0003\u0002\u0002\u0002\u0002\u0201\u0003\u0002", + "\u0002\u0002\u0002\u0203\u0003\u0002\u0002\u0002\u0002\u0205\u0003\u0002", + "\u0002\u0002\u0002\u0207\u0003\u0002\u0002\u0002\u0002\u0209\u0003\u0002", + "\u0002\u0002\u0002\u020b\u0003\u0002\u0002\u0002\u0002\u020d\u0003\u0002", + "\u0002\u0002\u0002\u020f\u0003\u0002\u0002\u0002\u0002\u0211\u0003\u0002", + "\u0002\u0002\u0002\u0213\u0003\u0002\u0002\u0002\u0002\u0215\u0003\u0002", + "\u0002\u0002\u0002\u0217\u0003\u0002\u0002\u0002\u0002\u0219\u0003\u0002", + "\u0002\u0002\u0002\u021b\u0003\u0002\u0002\u0002\u0002\u021d\u0003\u0002", + "\u0002\u0002\u0002\u021f\u0003\u0002\u0002\u0002\u0002\u0221\u0003\u0002", + "\u0002\u0002\u0002\u0223\u0003\u0002\u0002\u0002\u0002\u0225\u0003\u0002", + "\u0002\u0002\u0002\u0227\u0003\u0002\u0002\u0002\u0002\u0229\u0003\u0002", + "\u0002\u0002\u0002\u022b\u0003\u0002\u0002\u0002\u0002\u022d\u0003\u0002", + "\u0002\u0002\u0002\u022f\u0003\u0002\u0002\u0002\u0002\u0231\u0003\u0002", + "\u0002\u0002\u0002\u0233\u0003\u0002\u0002\u0002\u0002\u0235\u0003\u0002", + "\u0002\u0002\u0002\u0237\u0003\u0002\u0002\u0002\u0002\u0239\u0003\u0002", + "\u0002\u0002\u0002\u023b\u0003\u0002\u0002\u0002\u0002\u023d\u0003\u0002", + "\u0002\u0002\u0002\u023f\u0003\u0002\u0002\u0002\u0002\u0241\u0003\u0002", + "\u0002\u0002\u0002\u0243\u0003\u0002\u0002\u0002\u0002\u0245\u0003\u0002", + "\u0002\u0002\u0002\u0247\u0003\u0002\u0002\u0002\u0002\u0249\u0003\u0002", + "\u0002\u0002\u0002\u024b\u0003\u0002\u0002\u0002\u0002\u024d\u0003\u0002", + "\u0002\u0002\u0002\u024f\u0003\u0002\u0002\u0002\u0002\u0251\u0003\u0002", + "\u0002\u0002\u0002\u0253\u0003\u0002\u0002\u0002\u0002\u0255\u0003\u0002", + "\u0002\u0002\u0002\u0257\u0003\u0002\u0002\u0002\u0002\u0259\u0003\u0002", + "\u0002\u0002\u0002\u025b\u0003\u0002\u0002\u0002\u0002\u025d\u0003\u0002", + "\u0002\u0002\u0002\u025f\u0003\u0002\u0002\u0002\u0002\u0261\u0003\u0002", + "\u0002\u0002\u0002\u0263\u0003\u0002\u0002\u0002\u0002\u0265\u0003\u0002", + "\u0002\u0002\u0002\u0267\u0003\u0002\u0002\u0002\u0002\u0269\u0003\u0002", + "\u0002\u0002\u0002\u026b\u0003\u0002\u0002\u0002\u0002\u026d\u0003\u0002", + "\u0002\u0002\u0002\u026f\u0003\u0002\u0002\u0002\u0002\u0271\u0003\u0002", + "\u0002\u0002\u0002\u0273\u0003\u0002\u0002\u0002\u0002\u0275\u0003\u0002", + "\u0002\u0002\u0002\u0277\u0003\u0002\u0002\u0002\u0002\u0279\u0003\u0002", + "\u0002\u0002\u0002\u027b\u0003\u0002\u0002\u0002\u0002\u027d\u0003\u0002", + "\u0002\u0002\u0002\u027f\u0003\u0002\u0002\u0002\u0003\u0292\u0003\u0002", + "\u0002\u0002\u0005\u0298\u0003\u0002\u0002\u0002\u0007\u02a6\u0003\u0002", + "\u0002\u0002\t\u02d1\u0003\u0002\u0002\u0002\u000b\u02d5\u0003\u0002", + "\u0002\u0002\r\u02dc\u0003\u0002\u0002\u0002\u000f\u02e1\u0003\u0002", + "\u0002\u0002\u0011\u02e5\u0003\u0002\u0002\u0002\u0013\u02e8\u0003\u0002", + "\u0002\u0002\u0015\u02ec\u0003\u0002\u0002\u0002\u0017\u02f0\u0003\u0002", + "\u0002\u0002\u0019\u02f9\u0003\u0002\u0002\u0002\u001b\u02ff\u0003\u0002", + "\u0002\u0002\u001d\u0305\u0003\u0002\u0002\u0002\u001f\u0308\u0003\u0002", + "\u0002\u0002!\u0311\u0003\u0002\u0002\u0002#\u0316\u0003\u0002\u0002", + "\u0002%\u031b\u0003\u0002\u0002\u0002\'\u0322\u0003\u0002\u0002\u0002", + ")\u0328\u0003\u0002\u0002\u0002+\u032f\u0003\u0002\u0002\u0002-\u0335", + "\u0003\u0002\u0002\u0002/\u0338\u0003\u0002\u0002\u00021\u033b\u0003", + "\u0002\u0002\u00023\u033f\u0003\u0002\u0002\u00025\u0342\u0003\u0002", + "\u0002\u00027\u0346\u0003\u0002\u0002\u00029\u0349\u0003\u0002\u0002", + "\u0002;\u0350\u0003\u0002\u0002\u0002=\u0358\u0003\u0002\u0002\u0002", + "?\u035d\u0003\u0002\u0002\u0002A\u0363\u0003\u0002\u0002\u0002C\u0366", + "\u0003\u0002\u0002\u0002E\u036b\u0003\u0002\u0002\u0002G\u0371\u0003", + "\u0002\u0002\u0002I\u0377\u0003\u0002\u0002\u0002K\u037b\u0003\u0002", + "\u0002\u0002M\u0380\u0003\u0002\u0002\u0002O\u0384\u0003\u0002\u0002", + "\u0002Q\u038d\u0003\u0002\u0002\u0002S\u0392\u0003\u0002\u0002\u0002", + "U\u0397\u0003\u0002\u0002\u0002W\u039c\u0003\u0002\u0002\u0002Y\u03a1", + "\u0003\u0002\u0002\u0002[\u03a5\u0003\u0002\u0002\u0002]\u03aa\u0003", + "\u0002\u0002\u0002_\u03b0\u0003\u0002\u0002\u0002a\u03b6\u0003\u0002", + "\u0002\u0002c\u03bc\u0003\u0002\u0002\u0002e\u03c1\u0003\u0002\u0002", + "\u0002g\u03c6\u0003\u0002\u0002\u0002i\u03cc\u0003\u0002\u0002\u0002", + "k\u03d1\u0003\u0002\u0002\u0002m\u03d9\u0003\u0002\u0002\u0002o\u03dc", + "\u0003\u0002\u0002\u0002q\u03e2\u0003\u0002\u0002\u0002s\u03ea\u0003", + "\u0002\u0002\u0002u\u03f1\u0003\u0002\u0002\u0002w\u03f6\u0003\u0002", + "\u0002\u0002y\u0400\u0003\u0002\u0002\u0002{\u0406\u0003\u0002\u0002", + "\u0002}\u040b\u0003\u0002\u0002\u0002\u007f\u0415\u0003\u0002\u0002", + "\u0002\u0081\u041f\u0003\u0002\u0002\u0002\u0083\u0429\u0003\u0002\u0002", + "\u0002\u0085\u0431\u0003\u0002\u0002\u0002\u0087\u0437\u0003\u0002\u0002", + "\u0002\u0089\u043d\u0003\u0002\u0002\u0002\u008b\u0442\u0003\u0002\u0002", + "\u0002\u008d\u0447\u0003\u0002\u0002\u0002\u008f\u044e\u0003\u0002\u0002", + "\u0002\u0091\u0455\u0003\u0002\u0002\u0002\u0093\u045b\u0003\u0002\u0002", + "\u0002\u0095\u0465\u0003\u0002\u0002\u0002\u0097\u046a\u0003\u0002\u0002", + "\u0002\u0099\u0472\u0003\u0002\u0002\u0002\u009b\u0479\u0003\u0002\u0002", + "\u0002\u009d\u0480\u0003\u0002\u0002\u0002\u009f\u0485\u0003\u0002\u0002", + "\u0002\u00a1\u048e\u0003\u0002\u0002\u0002\u00a3\u0496\u0003\u0002\u0002", + "\u0002\u00a5\u049d\u0003\u0002\u0002\u0002\u00a7\u04a5\u0003\u0002\u0002", + "\u0002\u00a9\u04ad\u0003\u0002\u0002\u0002\u00ab\u04b2\u0003\u0002\u0002", + "\u0002\u00ad\u04b7\u0003\u0002\u0002\u0002\u00af\u04bc\u0003\u0002\u0002", + "\u0002\u00b1\u04c3\u0003\u0002\u0002\u0002\u00b3\u04cb\u0003\u0002\u0002", + "\u0002\u00b5\u04d2\u0003\u0002\u0002\u0002\u00b7\u04d6\u0003\u0002\u0002", + "\u0002\u00b9\u04e1\u0003\u0002\u0002\u0002\u00bb\u04eb\u0003\u0002\u0002", + "\u0002\u00bd\u04f0\u0003\u0002\u0002\u0002\u00bf\u04f6\u0003\u0002\u0002", + "\u0002\u00c1\u04fd\u0003\u0002\u0002\u0002\u00c3\u0506\u0003\u0002\u0002", + "\u0002\u00c5\u0510\u0003\u0002\u0002\u0002\u00c7\u0513\u0003\u0002\u0002", + "\u0002\u00c9\u051f\u0003\u0002\u0002\u0002\u00cb\u0528\u0003\u0002\u0002", + "\u0002\u00cd\u052e\u0003\u0002\u0002\u0002\u00cf\u0535\u0003\u0002\u0002", + "\u0002\u00d1\u053c\u0003\u0002\u0002\u0002\u00d3\u0544\u0003\u0002\u0002", + "\u0002\u00d5\u0548\u0003\u0002\u0002\u0002\u00d7\u054e\u0003\u0002\u0002", + "\u0002\u00d9\u0553\u0003\u0002\u0002\u0002\u00db\u0559\u0003\u0002\u0002", + "\u0002\u00dd\u0565\u0003\u0002\u0002\u0002\u00df\u056c\u0003\u0002\u0002", + "\u0002\u00e1\u0575\u0003\u0002\u0002\u0002\u00e3\u057b\u0003\u0002\u0002", + "\u0002\u00e5\u0582\u0003\u0002\u0002\u0002\u00e7\u0587\u0003\u0002\u0002", + "\u0002\u00e9\u058f\u0003\u0002\u0002\u0002\u00eb\u0598\u0003\u0002\u0002", + "\u0002\u00ed\u059b\u0003\u0002\u0002\u0002\u00ef\u05a4\u0003\u0002\u0002", + "\u0002\u00f1\u05ac\u0003\u0002\u0002\u0002\u00f3\u05af\u0003\u0002\u0002", + "\u0002\u00f5\u05b4\u0003\u0002\u0002\u0002\u00f7\u05b8\u0003\u0002\u0002", + "\u0002\u00f9\u05bd\u0003\u0002\u0002\u0002\u00fb\u05c0\u0003\u0002\u0002", + "\u0002\u00fd\u05c4\u0003\u0002\u0002\u0002\u00ff\u05c7\u0003\u0002\u0002", + "\u0002\u0101\u05cb\u0003\u0002\u0002\u0002\u0103\u05d0\u0003\u0002\u0002", + "\u0002\u0105\u05d6\u0003\u0002\u0002\u0002\u0107\u05df\u0003\u0002\u0002", + "\u0002\u0109\u05e5\u0003\u0002\u0002\u0002\u010b\u05ed\u0003\u0002\u0002", + "\u0002\u010d\u05f1\u0003\u0002\u0002\u0002\u010f\u05f7\u0003\u0002\u0002", + "\u0002\u0111\u0601\u0003\u0002\u0002\u0002\u0113\u0606\u0003\u0002\u0002", + "\u0002\u0115\u0612\u0003\u0002\u0002\u0002\u0117\u0616\u0003\u0002\u0002", + "\u0002\u0119\u0621\u0003\u0002\u0002\u0002\u011b\u0628\u0003\u0002\u0002", + "\u0002\u011d\u062c\u0003\u0002\u0002\u0002\u011f\u062f\u0003\u0002\u0002", + "\u0002\u0121\u0634\u0003\u0002\u0002\u0002\u0123\u063c\u0003\u0002\u0002", + "\u0002\u0125\u0647\u0003\u0002\u0002\u0002\u0127\u0651\u0003\u0002\u0002", + "\u0002\u0129\u065b\u0003\u0002\u0002\u0002\u012b\u0662\u0003\u0002\u0002", + "\u0002\u012d\u0668\u0003\u0002\u0002\u0002\u012f\u066e\u0003\u0002\u0002", + "\u0002\u0131\u067e\u0003\u0002\u0002\u0002\u0133\u068b\u0003\u0002\u0002", + "\u0002\u0135\u0698\u0003\u0002\u0002\u0002\u0137\u06a2\u0003\u0002\u0002", + "\u0002\u0139\u06a9\u0003\u0002\u0002\u0002\u013b\u06b4\u0003\u0002\u0002", + "\u0002\u013d\u06bf\u0003\u0002\u0002\u0002\u013f\u06c5\u0003\u0002\u0002", + "\u0002\u0141\u06ca\u0003\u0002\u0002\u0002\u0143\u06d2\u0003\u0002\u0002", + "\u0002\u0145\u06d8\u0003\u0002\u0002\u0002\u0147\u06e2\u0003\u0002\u0002", + "\u0002\u0149\u06eb\u0003\u0002\u0002\u0002\u014b\u06f4\u0003\u0002\u0002", + "\u0002\u014d\u06fc\u0003\u0002\u0002\u0002\u014f\u0702\u0003\u0002\u0002", + "\u0002\u0151\u0708\u0003\u0002\u0002\u0002\u0153\u0710\u0003\u0002\u0002", + "\u0002\u0155\u0715\u0003\u0002\u0002\u0002\u0157\u071f\u0003\u0002\u0002", + "\u0002\u0159\u0726\u0003\u0002\u0002\u0002\u015b\u0730\u0003\u0002\u0002", + "\u0002\u015d\u0738\u0003\u0002\u0002\u0002\u015f\u073e\u0003\u0002\u0002", + "\u0002\u0161\u074c\u0003\u0002\u0002\u0002\u0163\u0759\u0003\u0002\u0002", + "\u0002\u0165\u0761\u0003\u0002\u0002\u0002\u0167\u0768\u0003\u0002\u0002", + "\u0002\u0169\u076f\u0003\u0002\u0002\u0002\u016b\u077b\u0003\u0002\u0002", + "\u0002\u016d\u0784\u0003\u0002\u0002\u0002\u016f\u078d\u0003\u0002\u0002", + "\u0002\u0171\u0795\u0003\u0002\u0002\u0002\u0173\u079f\u0003\u0002\u0002", + "\u0002\u0175\u07aa\u0003\u0002\u0002\u0002\u0177\u07b0\u0003\u0002\u0002", + "\u0002\u0179\u07b8\u0003\u0002\u0002\u0002\u017b\u07c4\u0003\u0002\u0002", + "\u0002\u017d\u07cb\u0003\u0002\u0002\u0002\u017f\u07d3\u0003\u0002\u0002", + "\u0002\u0181\u07dc\u0003\u0002\u0002\u0002\u0183\u07e6\u0003\u0002\u0002", + "\u0002\u0185\u07ed\u0003\u0002\u0002\u0002\u0187\u07f3\u0003\u0002\u0002", + "\u0002\u0189\u07ff\u0003\u0002\u0002\u0002\u018b\u080c\u0003\u0002\u0002", + "\u0002\u018d\u0815\u0003\u0002\u0002\u0002\u018f\u081f\u0003\u0002\u0002", + "\u0002\u0191\u0823\u0003\u0002\u0002\u0002\u0193\u082c\u0003\u0002\u0002", + "\u0002\u0195\u0834\u0003\u0002\u0002\u0002\u0197\u083c\u0003\u0002\u0002", + "\u0002\u0199\u0841\u0003\u0002\u0002\u0002\u019b\u084c\u0003\u0002\u0002", + "\u0002\u019d\u0858\u0003\u0002\u0002\u0002\u019f\u0861\u0003\u0002\u0002", + "\u0002\u01a1\u0869\u0003\u0002\u0002\u0002\u01a3\u0870\u0003\u0002\u0002", + "\u0002\u01a5\u0876\u0003\u0002\u0002\u0002\u01a7\u087b\u0003\u0002\u0002", + "\u0002\u01a9\u0882\u0003\u0002\u0002\u0002\u01ab\u0887\u0003\u0002\u0002", + "\u0002\u01ad\u088e\u0003\u0002\u0002\u0002\u01af\u0896\u0003\u0002\u0002", + "\u0002\u01b1\u089d\u0003\u0002\u0002\u0002\u01b3\u08a4\u0003\u0002\u0002", + "\u0002\u01b5\u08a9\u0003\u0002\u0002\u0002\u01b7\u08ae\u0003\u0002\u0002", + "\u0002\u01b9\u08b4\u0003\u0002\u0002\u0002\u01bb\u08c0\u0003\u0002\u0002", + "\u0002\u01bd\u08cb\u0003\u0002\u0002\u0002\u01bf\u08d8\u0003\u0002\u0002", + "\u0002\u01c1\u08de\u0003\u0002\u0002\u0002\u01c3\u08e6\u0003\u0002\u0002", + "\u0002\u01c5\u08ec\u0003\u0002\u0002\u0002\u01c7\u08f3\u0003\u0002\u0002", + "\u0002\u01c9\u08f8\u0003\u0002\u0002\u0002\u01cb\u08fe\u0003\u0002\u0002", + "\u0002\u01cd\u0905\u0003\u0002\u0002\u0002\u01cf\u090f\u0003\u0002\u0002", + "\u0002\u01d1\u0916\u0003\u0002\u0002\u0002\u01d3\u0926\u0003\u0002\u0002", + "\u0002\u01d5\u092f\u0003\u0002\u0002\u0002\u01d7\u0933\u0003\u0002\u0002", + "\u0002\u01d9\u0937\u0003\u0002\u0002\u0002\u01db\u093d\u0003\u0002\u0002", + "\u0002\u01dd\u0943\u0003\u0002\u0002\u0002\u01df\u0948\u0003\u0002\u0002", + "\u0002\u01e1\u094d\u0003\u0002\u0002\u0002\u01e3\u0955\u0003\u0002\u0002", + "\u0002\u01e5\u095c\u0003\u0002\u0002\u0002\u01e7\u0963\u0003\u0002\u0002", + "\u0002\u01e9\u0972\u0003\u0002\u0002\u0002\u01eb\u0983\u0003\u0002\u0002", + "\u0002\u01ed\u0993\u0003\u0002\u0002\u0002\u01ef\u09a1\u0003\u0002\u0002", + "\u0002\u01f1\u09af\u0003\u0002\u0002\u0002\u01f3\u09be\u0003\u0002\u0002", + "\u0002\u01f5\u09d1\u0003\u0002\u0002\u0002\u01f7\u09dc\u0003\u0002\u0002", + "\u0002\u01f9\u09f2\u0003\u0002\u0002\u0002\u01fb\u0a01\u0003\u0002\u0002", + "\u0002\u01fd\u0a19\u0003\u0002\u0002\u0002\u01ff\u0a2b\u0003\u0002\u0002", + "\u0002\u0201\u0a2e\u0003\u0002\u0002\u0002\u0203\u0a3b\u0003\u0002\u0002", + "\u0002\u0205\u0a43\u0003\u0002\u0002\u0002\u0207\u0a4b\u0003\u0002\u0002", + "\u0002\u0209\u0a4e\u0003\u0002\u0002\u0002\u020b\u0a50\u0003\u0002\u0002", + "\u0002\u020d\u0a57\u0003\u0002\u0002\u0002\u020f\u0a5e\u0003\u0002\u0002", + "\u0002\u0211\u0a64\u0003\u0002\u0002\u0002\u0213\u0a68\u0003\u0002\u0002", + "\u0002\u0215\u0a6d\u0003\u0002\u0002\u0002\u0217\u0a75\u0003\u0002\u0002", + "\u0002\u0219\u0a7c\u0003\u0002\u0002\u0002\u021b\u0a86\u0003\u0002\u0002", + "\u0002\u021d\u0a8c\u0003\u0002\u0002\u0002\u021f\u0a94\u0003\u0002\u0002", + "\u0002\u0221\u0a9c\u0003\u0002\u0002\u0002\u0223\u0aa5\u0003\u0002\u0002", + "\u0002\u0225\u0aa9\u0003\u0002\u0002\u0002\u0227\u0ab0\u0003\u0002\u0002", + "\u0002\u0229\u0ab6\u0003\u0002\u0002\u0002\u022b\u0abd\u0003\u0002\u0002", + "\u0002\u022d\u0ac2\u0003\u0002\u0002\u0002\u022f\u0ac7\u0003\u0002\u0002", + "\u0002\u0231\u0ad1\u0003\u0002\u0002\u0002\u0233\u0ada\u0003\u0002\u0002", + "\u0002\u0235\u0ae2\u0003\u0002\u0002\u0002\u0237\u0ae6\u0003\u0002\u0002", + "\u0002\u0239\u0aea\u0003\u0002\u0002\u0002\u023b\u0aef\u0003\u0002\u0002", + "\u0002\u023d\u0af1\u0003\u0002\u0002\u0002\u023f\u0af3\u0003\u0002\u0002", + "\u0002\u0241\u0af5\u0003\u0002\u0002\u0002\u0243\u0af7\u0003\u0002\u0002", + "\u0002\u0245\u0af9\u0003\u0002\u0002\u0002\u0247\u0afb\u0003\u0002\u0002", + "\u0002\u0249\u0afd\u0003\u0002\u0002\u0002\u024b\u0aff\u0003\u0002\u0002", + "\u0002\u024d\u0b01\u0003\u0002\u0002\u0002\u024f\u0b03\u0003\u0002\u0002", + "\u0002\u0251\u0b05\u0003\u0002\u0002\u0002\u0253\u0b07\u0003\u0002\u0002", + "\u0002\u0255\u0b09\u0003\u0002\u0002\u0002\u0257\u0b0b\u0003\u0002\u0002", + "\u0002\u0259\u0b0d\u0003\u0002\u0002\u0002\u025b\u0b0f\u0003\u0002\u0002", + "\u0002\u025d\u0b11\u0003\u0002\u0002\u0002\u025f\u0b13\u0003\u0002\u0002", + "\u0002\u0261\u0b15\u0003\u0002\u0002\u0002\u0263\u0b17\u0003\u0002\u0002", + "\u0002\u0265\u0b19\u0003\u0002\u0002\u0002\u0267\u0b1b\u0003\u0002\u0002", + "\u0002\u0269\u0b1d\u0003\u0002\u0002\u0002\u026b\u0b1f\u0003\u0002\u0002", + "\u0002\u026d\u0b21\u0003\u0002\u0002\u0002\u026f\u0b23\u0003\u0002\u0002", + "\u0002\u0271\u0b25\u0003\u0002\u0002\u0002\u0273\u0b27\u0003\u0002\u0002", + "\u0002\u0275\u0b2a\u0003\u0002\u0002\u0002\u0277\u0b2f\u0003\u0002\u0002", + "\u0002\u0279\u0b32\u0003\u0002\u0002\u0002\u027b\u0b61\u0003\u0002\u0002", + "\u0002\u027d\u0b63\u0003\u0002\u0002\u0002\u027f\u0b68\u0003\u0002\u0002", + "\u0002\u0281\u0b6c\u0003\u0002\u0002\u0002\u0283\u0b78\u0003\u0002\u0002", + "\u0002\u0285\u0b86\u0003\u0002\u0002\u0002\u0287\u0b88\u0003\u0002\u0002", + "\u0002\u0289\u0b8a\u0003\u0002\u0002\u0002\u028b\u0b97\u0003\u0002\u0002", + "\u0002\u028d\u0ba4\u0003\u0002\u0002\u0002\u028f\u0bad\u0003\u0002\u0002", + "\u0002\u0291\u0293\t\u0002\u0002\u0002\u0292\u0291\u0003\u0002\u0002", + "\u0002\u0293\u0294\u0003\u0002\u0002\u0002\u0294\u0292\u0003\u0002\u0002", + "\u0002\u0294\u0295\u0003\u0002\u0002\u0002\u0295\u0296\u0003\u0002\u0002", + "\u0002\u0296\u0297\b\u0002\u0002\u0002\u0297\u0004\u0003\u0002\u0002", + "\u0002\u0298\u0299\u00071\u0002\u0002\u0299\u029a\u0007,\u0002\u0002", + "\u029a\u029b\u0007#\u0002\u0002\u029b\u029d\u0003\u0002\u0002\u0002", + "\u029c\u029e\u000b\u0002\u0002\u0002\u029d\u029c\u0003\u0002\u0002\u0002", + "\u029e\u029f\u0003\u0002\u0002\u0002\u029f\u02a0\u0003\u0002\u0002\u0002", + "\u029f\u029d\u0003\u0002\u0002\u0002\u02a0\u02a1\u0003\u0002\u0002\u0002", + "\u02a1\u02a2\u0007,\u0002\u0002\u02a2\u02a3\u00071\u0002\u0002\u02a3", + "\u02a4\u0003\u0002\u0002\u0002\u02a4\u02a5\b\u0003\u0003\u0002\u02a5", + "\u0006\u0003\u0002\u0002\u0002\u02a6\u02a7\u00071\u0002\u0002\u02a7", + "\u02a8\u0007,\u0002\u0002\u02a8\u02ac\u0003\u0002\u0002\u0002\u02a9", + "\u02ab\u000b\u0002\u0002\u0002\u02aa\u02a9\u0003\u0002\u0002\u0002\u02ab", + "\u02ae\u0003\u0002\u0002\u0002\u02ac\u02ad\u0003\u0002\u0002\u0002\u02ac", + "\u02aa\u0003\u0002\u0002\u0002\u02ad\u02af\u0003\u0002\u0002\u0002\u02ae", + "\u02ac\u0003\u0002\u0002\u0002\u02af\u02b0\u0007,\u0002\u0002\u02b0", + "\u02b1\u00071\u0002\u0002\u02b1\u02b2\u0003\u0002\u0002\u0002\u02b2", + "\u02b3\b\u0004\u0002\u0002\u02b3\b\u0003\u0002\u0002\u0002\u02b4\u02b5", + "\u0007/\u0002\u0002\u02b5\u02b6\u0007/\u0002\u0002\u02b6\u02b9\u0007", + "\"\u0002\u0002\u02b7\u02b9\u0007%\u0002\u0002\u02b8\u02b4\u0003\u0002", + "\u0002\u0002\u02b8\u02b7\u0003\u0002\u0002\u0002\u02b9\u02bd\u0003\u0002", + "\u0002\u0002\u02ba\u02bc\n\u0003\u0002\u0002\u02bb\u02ba\u0003\u0002", + "\u0002\u0002\u02bc\u02bf\u0003\u0002\u0002\u0002\u02bd\u02bb\u0003\u0002", + "\u0002\u0002\u02bd\u02be\u0003\u0002\u0002\u0002\u02be\u02c5\u0003\u0002", + "\u0002\u0002\u02bf\u02bd\u0003\u0002\u0002\u0002\u02c0\u02c2\u0007\u000f", + "\u0002\u0002\u02c1\u02c0\u0003\u0002\u0002\u0002\u02c1\u02c2\u0003\u0002", + "\u0002\u0002\u02c2\u02c3\u0003\u0002\u0002\u0002\u02c3\u02c6\u0007\f", + "\u0002\u0002\u02c4\u02c6\u0007\u0002\u0002\u0003\u02c5\u02c1\u0003\u0002", + "\u0002\u0002\u02c5\u02c4\u0003\u0002\u0002\u0002\u02c6\u02d2\u0003\u0002", + "\u0002\u0002\u02c7\u02c8\u0007/\u0002\u0002\u02c8\u02c9\u0007/\u0002", + "\u0002\u02c9\u02cf\u0003\u0002\u0002\u0002\u02ca\u02cc\u0007\u000f\u0002", + "\u0002\u02cb\u02ca\u0003\u0002\u0002\u0002\u02cb\u02cc\u0003\u0002\u0002", + "\u0002\u02cc\u02cd\u0003\u0002\u0002\u0002\u02cd\u02d0\u0007\f\u0002", + "\u0002\u02ce\u02d0\u0007\u0002\u0002\u0003\u02cf\u02cb\u0003\u0002\u0002", + "\u0002\u02cf\u02ce\u0003\u0002\u0002\u0002\u02d0\u02d2\u0003\u0002\u0002", + "\u0002\u02d1\u02b8\u0003\u0002\u0002\u0002\u02d1\u02c7\u0003\u0002\u0002", + "\u0002\u02d2\u02d3\u0003\u0002\u0002\u0002\u02d3\u02d4\b\u0005\u0002", + "\u0002\u02d4\n\u0003\u0002\u0002\u0002\u02d5\u02d6\u0007U\u0002\u0002", + "\u02d6\u02d7\u0007G\u0002\u0002\u02d7\u02d8\u0007N\u0002\u0002\u02d8", + "\u02d9\u0007G\u0002\u0002\u02d9\u02da\u0007E\u0002\u0002\u02da\u02db", + "\u0007V\u0002\u0002\u02db\f\u0003\u0002\u0002\u0002\u02dc\u02dd\u0007", + "H\u0002\u0002\u02dd\u02de\u0007T\u0002\u0002\u02de\u02df\u0007Q\u0002", + "\u0002\u02df\u02e0\u0007O\u0002\u0002\u02e0\u000e\u0003\u0002\u0002", + "\u0002\u02e1\u02e2\u0007C\u0002\u0002\u02e2\u02e3\u0007F\u0002\u0002", + "\u02e3\u02e4\u0007F\u0002\u0002\u02e4\u0010\u0003\u0002\u0002\u0002", + "\u02e5\u02e6\u0007C\u0002\u0002\u02e6\u02e7\u0007U\u0002\u0002\u02e7", + "\u0012\u0003\u0002\u0002\u0002\u02e8\u02e9\u0007C\u0002\u0002\u02e9", + "\u02ea\u0007N\u0002\u0002\u02ea\u02eb\u0007N\u0002\u0002\u02eb\u0014", + "\u0003\u0002\u0002\u0002\u02ec\u02ed\u0007C\u0002\u0002\u02ed\u02ee", + "\u0007P\u0002\u0002\u02ee\u02ef\u0007[\u0002\u0002\u02ef\u0016\u0003", + "\u0002\u0002\u0002\u02f0\u02f1\u0007F\u0002\u0002\u02f1\u02f2\u0007", + "K\u0002\u0002\u02f2\u02f3\u0007U\u0002\u0002\u02f3\u02f4\u0007V\u0002", + "\u0002\u02f4\u02f5\u0007K\u0002\u0002\u02f5\u02f6\u0007P\u0002\u0002", + "\u02f6\u02f7\u0007E\u0002\u0002\u02f7\u02f8\u0007V\u0002\u0002\u02f8", + "\u0018\u0003\u0002\u0002\u0002\u02f9\u02fa\u0007Y\u0002\u0002\u02fa", + "\u02fb\u0007J\u0002\u0002\u02fb\u02fc\u0007G\u0002\u0002\u02fc\u02fd", + "\u0007T\u0002\u0002\u02fd\u02fe\u0007G\u0002\u0002\u02fe\u001a\u0003", + "\u0002\u0002\u0002\u02ff\u0300\u0007I\u0002\u0002\u0300\u0301\u0007", + "T\u0002\u0002\u0301\u0302\u0007Q\u0002\u0002\u0302\u0303\u0007W\u0002", + "\u0002\u0303\u0304\u0007R\u0002\u0002\u0304\u001c\u0003\u0002\u0002", + "\u0002\u0305\u0306\u0007D\u0002\u0002\u0306\u0307\u0007[\u0002\u0002", + "\u0307\u001e\u0003\u0002\u0002\u0002\u0308\u0309\u0007I\u0002\u0002", + "\u0309\u030a\u0007T\u0002\u0002\u030a\u030b\u0007Q\u0002\u0002\u030b", + "\u030c\u0007W\u0002\u0002\u030c\u030d\u0007R\u0002\u0002\u030d\u030e", + "\u0007K\u0002\u0002\u030e\u030f\u0007P\u0002\u0002\u030f\u0310\u0007", + "I\u0002\u0002\u0310 \u0003\u0002\u0002\u0002\u0311\u0312\u0007U\u0002", + "\u0002\u0312\u0313\u0007G\u0002\u0002\u0313\u0314\u0007V\u0002\u0002", + "\u0314\u0315\u0007U\u0002\u0002\u0315\"\u0003\u0002\u0002\u0002\u0316", + "\u0317\u0007E\u0002\u0002\u0317\u0318\u0007W\u0002\u0002\u0318\u0319", + "\u0007D\u0002\u0002\u0319\u031a\u0007G\u0002\u0002\u031a$\u0003\u0002", + "\u0002\u0002\u031b\u031c\u0007T\u0002\u0002\u031c\u031d\u0007Q\u0002", + "\u0002\u031d\u031e\u0007N\u0002\u0002\u031e\u031f\u0007N\u0002\u0002", + "\u031f\u0320\u0007W\u0002\u0002\u0320\u0321\u0007R\u0002\u0002\u0321", + "&\u0003\u0002\u0002\u0002\u0322\u0323\u0007Q\u0002\u0002\u0323\u0324", + "\u0007T\u0002\u0002\u0324\u0325\u0007F\u0002\u0002\u0325\u0326\u0007", + "G\u0002\u0002\u0326\u0327\u0007T\u0002\u0002\u0327(\u0003\u0002\u0002", + "\u0002\u0328\u0329\u0007J\u0002\u0002\u0329\u032a\u0007C\u0002\u0002", + "\u032a\u032b\u0007X\u0002\u0002\u032b\u032c\u0007K\u0002\u0002\u032c", + "\u032d\u0007P\u0002\u0002\u032d\u032e\u0007I\u0002\u0002\u032e*\u0003", + "\u0002\u0002\u0002\u032f\u0330\u0007N\u0002\u0002\u0330\u0331\u0007", + "K\u0002\u0002\u0331\u0332\u0007O\u0002\u0002\u0332\u0333\u0007K\u0002", + "\u0002\u0333\u0334\u0007V\u0002\u0002\u0334,\u0003\u0002\u0002\u0002", + "\u0335\u0336\u0007C\u0002\u0002\u0336\u0337\u0007V\u0002\u0002\u0337", + ".\u0003\u0002\u0002\u0002\u0338\u0339\u0007Q\u0002\u0002\u0339\u033a", + "\u0007T\u0002\u0002\u033a0\u0003\u0002\u0002\u0002\u033b\u033c\u0007", + "C\u0002\u0002\u033c\u033d\u0007P\u0002\u0002\u033d\u033e\u0007F\u0002", + "\u0002\u033e2\u0003\u0002\u0002\u0002\u033f\u0340\u0007K\u0002\u0002", + "\u0340\u0341\u0007P\u0002\u0002\u03414\u0003\u0002\u0002\u0002\u0342", + "\u0343\u0007P\u0002\u0002\u0343\u0344\u0007Q\u0002\u0002\u0344\u0345", + "\u0007V\u0002\u0002\u03456\u0003\u0002\u0002\u0002\u0346\u0347\u0007", + "P\u0002\u0002\u0347\u0348\u0007Q\u0002\u0002\u03488\u0003\u0002\u0002", + "\u0002\u0349\u034a\u0007G\u0002\u0002\u034a\u034b\u0007Z\u0002\u0002", + "\u034b\u034c\u0007K\u0002\u0002\u034c\u034d\u0007U\u0002\u0002\u034d", + "\u034e\u0007V\u0002\u0002\u034e\u034f\u0007U\u0002\u0002\u034f:\u0003", + "\u0002\u0002\u0002\u0350\u0351\u0007D\u0002\u0002\u0351\u0352\u0007", + "G\u0002\u0002\u0352\u0353\u0007V\u0002\u0002\u0353\u0354\u0007Y\u0002", + "\u0002\u0354\u0355\u0007G\u0002\u0002\u0355\u0356\u0007G\u0002\u0002", + "\u0356\u0357\u0007P\u0002\u0002\u0357<\u0003\u0002\u0002\u0002\u0358", + "\u0359\u0007N\u0002\u0002\u0359\u035a\u0007K\u0002\u0002\u035a\u035b", + "\u0007M\u0002\u0002\u035b\u035c\u0007G\u0002\u0002\u035c>\u0003\u0002", + "\u0002\u0002\u035d\u035e\u0007T\u0002\u0002\u035e\u035f\u0007N\u0002", + "\u0002\u035f\u0360\u0007K\u0002\u0002\u0360\u0361\u0007M\u0002\u0002", + "\u0361\u0362\u0007G\u0002\u0002\u0362@\u0003\u0002\u0002\u0002\u0363", + "\u0364\u0007K\u0002\u0002\u0364\u0365\u0007U\u0002\u0002\u0365B\u0003", + "\u0002\u0002\u0002\u0366\u0367\u0007V\u0002\u0002\u0367\u0368\u0007", + "T\u0002\u0002\u0368\u0369\u0007W\u0002\u0002\u0369\u036a\u0007G\u0002", + "\u0002\u036aD\u0003\u0002\u0002\u0002\u036b\u036c\u0007H\u0002\u0002", + "\u036c\u036d\u0007C\u0002\u0002\u036d\u036e\u0007N\u0002\u0002\u036e", + "\u036f\u0007U\u0002\u0002\u036f\u0370\u0007G\u0002\u0002\u0370F\u0003", + "\u0002\u0002\u0002\u0371\u0372\u0007P\u0002\u0002\u0372\u0373\u0007", + "W\u0002\u0002\u0373\u0374\u0007N\u0002\u0002\u0374\u0375\u0007N\u0002", + "\u0002\u0375\u0376\u0007U\u0002\u0002\u0376H\u0003\u0002\u0002\u0002", + "\u0377\u0378\u0007C\u0002\u0002\u0378\u0379\u0007U\u0002\u0002\u0379", + "\u037a\u0007E\u0002\u0002\u037aJ\u0003\u0002\u0002\u0002\u037b\u037c", + "\u0007F\u0002\u0002\u037c\u037d\u0007G\u0002\u0002\u037d\u037e\u0007", + "U\u0002\u0002\u037e\u037f\u0007E\u0002\u0002\u037fL\u0003\u0002\u0002", + "\u0002\u0380\u0381\u0007H\u0002\u0002\u0381\u0382\u0007Q\u0002\u0002", + "\u0382\u0383\u0007T\u0002\u0002\u0383N\u0003\u0002\u0002\u0002\u0384", + "\u0385\u0007K\u0002\u0002\u0385\u0386\u0007P\u0002\u0002\u0386\u0387", + "\u0007V\u0002\u0002\u0387\u0388\u0007G\u0002\u0002\u0388\u0389\u0007", + "T\u0002\u0002\u0389\u038a\u0007X\u0002\u0002\u038a\u038b\u0007C\u0002", + "\u0002\u038b\u038c\u0007N\u0002\u0002\u038cP\u0003\u0002\u0002\u0002", + "\u038d\u038e\u0007E\u0002\u0002\u038e\u038f\u0007C\u0002\u0002\u038f", + "\u0390\u0007U\u0002\u0002\u0390\u0391\u0007G\u0002\u0002\u0391R\u0003", + "\u0002\u0002\u0002\u0392\u0393\u0007Y\u0002\u0002\u0393\u0394\u0007", + "J\u0002\u0002\u0394\u0395\u0007G\u0002\u0002\u0395\u0396\u0007P\u0002", + "\u0002\u0396T\u0003\u0002\u0002\u0002\u0397\u0398\u0007V\u0002\u0002", + "\u0398\u0399\u0007J\u0002\u0002\u0399\u039a\u0007G\u0002\u0002\u039a", + "\u039b\u0007P\u0002\u0002\u039bV\u0003\u0002\u0002\u0002\u039c\u039d", + "\u0007G\u0002\u0002\u039d\u039e\u0007N\u0002\u0002\u039e\u039f\u0007", + "U\u0002\u0002\u039f\u03a0\u0007G\u0002\u0002\u03a0X\u0003\u0002\u0002", + "\u0002\u03a1\u03a2\u0007G\u0002\u0002\u03a2\u03a3\u0007P\u0002\u0002", + "\u03a3\u03a4\u0007F\u0002\u0002\u03a4Z\u0003\u0002\u0002\u0002\u03a5", + "\u03a6\u0007L\u0002\u0002\u03a6\u03a7\u0007Q\u0002\u0002\u03a7\u03a8", + "\u0007K\u0002\u0002\u03a8\u03a9\u0007P\u0002\u0002\u03a9\\\u0003\u0002", + "\u0002\u0002\u03aa\u03ab\u0007E\u0002\u0002\u03ab\u03ac\u0007T\u0002", + "\u0002\u03ac\u03ad\u0007Q\u0002\u0002\u03ad\u03ae\u0007U\u0002\u0002", + "\u03ae\u03af\u0007U\u0002\u0002\u03af^\u0003\u0002\u0002\u0002\u03b0", + "\u03b1\u0007Q\u0002\u0002\u03b1\u03b2\u0007W\u0002\u0002\u03b2\u03b3", + "\u0007V\u0002\u0002\u03b3\u03b4\u0007G\u0002\u0002\u03b4\u03b5\u0007", + "T\u0002\u0002\u03b5`\u0003\u0002\u0002\u0002\u03b6\u03b7\u0007K\u0002", + "\u0002\u03b7\u03b8\u0007P\u0002\u0002\u03b8\u03b9\u0007P\u0002\u0002", + "\u03b9\u03ba\u0007G\u0002\u0002\u03ba\u03bb\u0007T\u0002\u0002\u03bb", + "b\u0003\u0002\u0002\u0002\u03bc\u03bd\u0007N\u0002\u0002\u03bd\u03be", + "\u0007G\u0002\u0002\u03be\u03bf\u0007H\u0002\u0002\u03bf\u03c0\u0007", + "V\u0002\u0002\u03c0d\u0003\u0002\u0002\u0002\u03c1\u03c2\u0007U\u0002", + "\u0002\u03c2\u03c3\u0007G\u0002\u0002\u03c3\u03c4\u0007O\u0002\u0002", + "\u03c4\u03c5\u0007K\u0002\u0002\u03c5f\u0003\u0002\u0002\u0002\u03c6", + "\u03c7\u0007T\u0002\u0002\u03c7\u03c8\u0007K\u0002\u0002\u03c8\u03c9", + "\u0007I\u0002\u0002\u03c9\u03ca\u0007J\u0002\u0002\u03ca\u03cb\u0007", + "V\u0002\u0002\u03cbh\u0003\u0002\u0002\u0002\u03cc\u03cd\u0007H\u0002", + "\u0002\u03cd\u03ce\u0007W\u0002\u0002\u03ce\u03cf\u0007N\u0002\u0002", + "\u03cf\u03d0\u0007N\u0002\u0002\u03d0j\u0003\u0002\u0002\u0002\u03d1", + "\u03d2\u0007P\u0002\u0002\u03d2\u03d3\u0007C\u0002\u0002\u03d3\u03d4", + "\u0007V\u0002\u0002\u03d4\u03d5\u0007W\u0002\u0002\u03d5\u03d6\u0007", + "T\u0002\u0002\u03d6\u03d7\u0007C\u0002\u0002\u03d7\u03d8\u0007N\u0002", + "\u0002\u03d8l\u0003\u0002\u0002\u0002\u03d9\u03da\u0007Q\u0002\u0002", + "\u03da\u03db\u0007P\u0002\u0002\u03dbn\u0003\u0002\u0002\u0002\u03dc", + "\u03dd\u0007R\u0002\u0002\u03dd\u03de\u0007K\u0002\u0002\u03de\u03df", + "\u0007X\u0002\u0002\u03df\u03e0\u0007Q\u0002\u0002\u03e0\u03e1\u0007", + "V\u0002\u0002\u03e1p\u0003\u0002\u0002\u0002\u03e2\u03e3\u0007N\u0002", + "\u0002\u03e3\u03e4\u0007C\u0002\u0002\u03e4\u03e5\u0007V\u0002\u0002", + "\u03e5\u03e6\u0007G\u0002\u0002\u03e6\u03e7\u0007T\u0002\u0002\u03e7", + "\u03e8\u0007C\u0002\u0002\u03e8\u03e9\u0007N\u0002\u0002\u03e9r\u0003", + "\u0002\u0002\u0002\u03ea\u03eb\u0007Y\u0002\u0002\u03eb\u03ec\u0007", + "K\u0002\u0002\u03ec\u03ed\u0007P\u0002\u0002\u03ed\u03ee\u0007F\u0002", + "\u0002\u03ee\u03ef\u0007Q\u0002\u0002\u03ef\u03f0\u0007Y\u0002\u0002", + "\u03f0t\u0003\u0002\u0002\u0002\u03f1\u03f2\u0007Q\u0002\u0002\u03f2", + "\u03f3\u0007X\u0002\u0002\u03f3\u03f4\u0007G\u0002\u0002\u03f4\u03f5", + "\u0007T\u0002\u0002\u03f5v\u0003\u0002\u0002\u0002\u03f6\u03f7\u0007", + "R\u0002\u0002\u03f7\u03f8\u0007C\u0002\u0002\u03f8\u03f9\u0007T\u0002", + "\u0002\u03f9\u03fa\u0007V\u0002\u0002\u03fa\u03fb\u0007K\u0002\u0002", + "\u03fb\u03fc\u0007V\u0002\u0002\u03fc\u03fd\u0007K\u0002\u0002\u03fd", + "\u03fe\u0007Q\u0002\u0002\u03fe\u03ff\u0007P\u0002\u0002\u03ffx\u0003", + "\u0002\u0002\u0002\u0400\u0401\u0007T\u0002\u0002\u0401\u0402\u0007", + "C\u0002\u0002\u0402\u0403\u0007P\u0002\u0002\u0403\u0404\u0007I\u0002", + "\u0002\u0404\u0405\u0007G\u0002\u0002\u0405z\u0003\u0002\u0002\u0002", + "\u0406\u0407\u0007T\u0002\u0002\u0407\u0408\u0007Q\u0002\u0002\u0408", + "\u0409\u0007Y\u0002\u0002\u0409\u040a\u0007U\u0002\u0002\u040a|\u0003", + "\u0002\u0002\u0002\u040b\u040c\u0007W\u0002\u0002\u040c\u040d\u0007", + "P\u0002\u0002\u040d\u040e\u0007D\u0002\u0002\u040e\u040f\u0007Q\u0002", + "\u0002\u040f\u0410\u0007W\u0002\u0002\u0410\u0411\u0007P\u0002\u0002", + "\u0411\u0412\u0007F\u0002\u0002\u0412\u0413\u0007G\u0002\u0002\u0413", + "\u0414\u0007F\u0002\u0002\u0414~\u0003\u0002\u0002\u0002\u0415\u0416", + "\u0007R\u0002\u0002\u0416\u0417\u0007T\u0002\u0002\u0417\u0418\u0007", + "G\u0002\u0002\u0418\u0419\u0007E\u0002\u0002\u0419\u041a\u0007G\u0002", + "\u0002\u041a\u041b\u0007F\u0002\u0002\u041b\u041c\u0007K\u0002\u0002", + "\u041c\u041d\u0007P\u0002\u0002\u041d\u041e\u0007I\u0002\u0002\u041e", + "\u0080\u0003\u0002\u0002\u0002\u041f\u0420\u0007H\u0002\u0002\u0420", + "\u0421\u0007Q\u0002\u0002\u0421\u0422\u0007N\u0002\u0002\u0422\u0423", + "\u0007N\u0002\u0002\u0423\u0424\u0007Q\u0002\u0002\u0424\u0425\u0007", + "Y\u0002\u0002\u0425\u0426\u0007K\u0002\u0002\u0426\u0427\u0007P\u0002", + "\u0002\u0427\u0428\u0007I\u0002\u0002\u0428\u0082\u0003\u0002\u0002", + "\u0002\u0429\u042a\u0007E\u0002\u0002\u042a\u042b\u0007W\u0002\u0002", + "\u042b\u042c\u0007T\u0002\u0002\u042c\u042d\u0007T\u0002\u0002\u042d", + "\u042e\u0007G\u0002\u0002\u042e\u042f\u0007P\u0002\u0002\u042f\u0430", + "\u0007V\u0002\u0002\u0430\u0084\u0003\u0002\u0002\u0002\u0431\u0432", + "\u0007H\u0002\u0002\u0432\u0433\u0007K\u0002\u0002\u0433\u0434\u0007", + "T\u0002\u0002\u0434\u0435\u0007U\u0002\u0002\u0435\u0436\u0007V\u0002", + "\u0002\u0436\u0086\u0003\u0002\u0002\u0002\u0437\u0438\u0007C\u0002", + "\u0002\u0438\u0439\u0007H\u0002\u0002\u0439\u043a\u0007V\u0002\u0002", + "\u043a\u043b\u0007G\u0002\u0002\u043b\u043c\u0007T\u0002\u0002\u043c", + "\u0088\u0003\u0002\u0002\u0002\u043d\u043e\u0007N\u0002\u0002\u043e", + "\u043f\u0007C\u0002\u0002\u043f\u0440\u0007U\u0002\u0002\u0440\u0441", + "\u0007V\u0002\u0002\u0441\u008a\u0003\u0002\u0002\u0002\u0442\u0443", + "\u0007Y\u0002\u0002\u0443\u0444\u0007K\u0002\u0002\u0444\u0445\u0007", + "V\u0002\u0002\u0445\u0446\u0007J\u0002\u0002\u0446\u008c\u0003\u0002", + "\u0002\u0002\u0447\u0448\u0007X\u0002\u0002\u0448\u0449\u0007C\u0002", + "\u0002\u0449\u044a\u0007N\u0002\u0002\u044a\u044b\u0007W\u0002\u0002", + "\u044b\u044c\u0007G\u0002\u0002\u044c\u044d\u0007U\u0002\u0002\u044d", + "\u008e\u0003\u0002\u0002\u0002\u044e\u044f\u0007E\u0002\u0002\u044f", + "\u0450\u0007T\u0002\u0002\u0450\u0451\u0007G\u0002\u0002\u0451\u0452", + "\u0007C\u0002\u0002\u0452\u0453\u0007V\u0002\u0002\u0453\u0454\u0007", + "G\u0002\u0002\u0454\u0090\u0003\u0002\u0002\u0002\u0455\u0456\u0007", + "V\u0002\u0002\u0456\u0457\u0007C\u0002\u0002\u0457\u0458\u0007D\u0002", + "\u0002\u0458\u0459\u0007N\u0002\u0002\u0459\u045a\u0007G\u0002\u0002", + "\u045a\u0092\u0003\u0002\u0002\u0002\u045b\u045c\u0007F\u0002\u0002", + "\u045c\u045d\u0007K\u0002\u0002\u045d\u045e\u0007T\u0002\u0002\u045e", + "\u045f\u0007G\u0002\u0002\u045f\u0460\u0007E\u0002\u0002\u0460\u0461", + "\u0007V\u0002\u0002\u0461\u0462\u0007Q\u0002\u0002\u0462\u0463\u0007", + "T\u0002\u0002\u0463\u0464\u0007[\u0002\u0002\u0464\u0094\u0003\u0002", + "\u0002\u0002\u0465\u0466\u0007X\u0002\u0002\u0466\u0467\u0007K\u0002", + "\u0002\u0467\u0468\u0007G\u0002\u0002\u0468\u0469\u0007Y\u0002\u0002", + "\u0469\u0096\u0003\u0002\u0002\u0002\u046a\u046b\u0007T\u0002\u0002", + "\u046b\u046c\u0007G\u0002\u0002\u046c\u046d\u0007R\u0002\u0002\u046d", + "\u046e\u0007N\u0002\u0002\u046e\u046f\u0007C\u0002\u0002\u046f\u0470", + "\u0007E\u0002\u0002\u0470\u0471\u0007G\u0002\u0002\u0471\u0098\u0003", + "\u0002\u0002\u0002\u0472\u0473\u0007K\u0002\u0002\u0473\u0474\u0007", + "P\u0002\u0002\u0474\u0475\u0007U\u0002\u0002\u0475\u0476\u0007G\u0002", + "\u0002\u0476\u0477\u0007T\u0002\u0002\u0477\u0478\u0007V\u0002\u0002", + "\u0478\u009a\u0003\u0002\u0002\u0002\u0479\u047a\u0007F\u0002\u0002", + "\u047a\u047b\u0007G\u0002\u0002\u047b\u047c\u0007N\u0002\u0002\u047c", + "\u047d\u0007G\u0002\u0002\u047d\u047e\u0007V\u0002\u0002\u047e\u047f", + "\u0007G\u0002\u0002\u047f\u009c\u0003\u0002\u0002\u0002\u0480\u0481", + "\u0007K\u0002\u0002\u0481\u0482\u0007P\u0002\u0002\u0482\u0483\u0007", + "V\u0002\u0002\u0483\u0484\u0007Q\u0002\u0002\u0484\u009e\u0003\u0002", + "\u0002\u0002\u0485\u0486\u0007F\u0002\u0002\u0486\u0487\u0007G\u0002", + "\u0002\u0487\u0488\u0007U\u0002\u0002\u0488\u0489\u0007E\u0002\u0002", + "\u0489\u048a\u0007T\u0002\u0002\u048a\u048b\u0007K\u0002\u0002\u048b", + "\u048c\u0007D\u0002\u0002\u048c\u048d\u0007G\u0002\u0002\u048d\u00a0", + "\u0003\u0002\u0002\u0002\u048e\u048f\u0007G\u0002\u0002\u048f\u0490", + "\u0007Z\u0002\u0002\u0490\u0491\u0007R\u0002\u0002\u0491\u0492\u0007", + "N\u0002\u0002\u0492\u0493\u0007C\u0002\u0002\u0493\u0494\u0007K\u0002", + "\u0002\u0494\u0495\u0007P\u0002\u0002\u0495\u00a2\u0003\u0002\u0002", + "\u0002\u0496\u0497\u0007H\u0002\u0002\u0497\u0498\u0007Q\u0002\u0002", + "\u0498\u0499\u0007T\u0002\u0002\u0499\u049a\u0007O\u0002\u0002\u049a", + "\u049b\u0007C\u0002\u0002\u049b\u049c\u0007V\u0002\u0002\u049c\u00a4", + "\u0003\u0002\u0002\u0002\u049d\u049e\u0007N\u0002\u0002\u049e\u049f", + "\u0007Q\u0002\u0002\u049f\u04a0\u0007I\u0002\u0002\u04a0\u04a1\u0007", + "K\u0002\u0002\u04a1\u04a2\u0007E\u0002\u0002\u04a2\u04a3\u0007C\u0002", + "\u0002\u04a3\u04a4\u0007N\u0002\u0002\u04a4\u00a6\u0003\u0002\u0002", + "\u0002\u04a5\u04a6\u0007E\u0002\u0002\u04a6\u04a7\u0007Q\u0002\u0002", + "\u04a7\u04a8\u0007F\u0002\u0002\u04a8\u04a9\u0007G\u0002\u0002\u04a9", + "\u04aa\u0007I\u0002\u0002\u04aa\u04ab\u0007G\u0002\u0002\u04ab\u04ac", + "\u0007P\u0002\u0002\u04ac\u00a8\u0003\u0002\u0002\u0002\u04ad\u04ae", + "\u0007E\u0002\u0002\u04ae\u04af\u0007Q\u0002\u0002\u04af\u04b0\u0007", + "U\u0002\u0002\u04b0\u04b1\u0007V\u0002\u0002\u04b1\u00aa\u0003\u0002", + "\u0002\u0002\u04b2\u04b3\u0007E\u0002\u0002\u04b3\u04b4\u0007C\u0002", + "\u0002\u04b4\u04b5\u0007U\u0002\u0002\u04b5\u04b6\u0007V\u0002\u0002", + "\u04b6\u00ac\u0003\u0002\u0002\u0002\u04b7\u04b8\u0007U\u0002\u0002", + "\u04b8\u04b9\u0007J\u0002\u0002\u04b9\u04ba\u0007Q\u0002\u0002\u04ba", + "\u04bb\u0007Y\u0002\u0002\u04bb\u00ae\u0003\u0002\u0002\u0002\u04bc", + "\u04bd\u0007V\u0002\u0002\u04bd\u04be\u0007C\u0002\u0002\u04be\u04bf", + "\u0007D\u0002\u0002\u04bf\u04c0\u0007N\u0002\u0002\u04c0\u04c1\u0007", + "G\u0002\u0002\u04c1\u04c2\u0007U\u0002\u0002\u04c2\u00b0\u0003\u0002", + "\u0002\u0002\u04c3\u04c4\u0007E\u0002\u0002\u04c4\u04c5\u0007Q\u0002", + "\u0002\u04c5\u04c6\u0007N\u0002\u0002\u04c6\u04c7\u0007W\u0002\u0002", + "\u04c7\u04c8\u0007O\u0002\u0002\u04c8\u04c9\u0007P\u0002\u0002\u04c9", + "\u04ca\u0007U\u0002\u0002\u04ca\u00b2\u0003\u0002\u0002\u0002\u04cb", + "\u04cc\u0007E\u0002\u0002\u04cc\u04cd\u0007Q\u0002\u0002\u04cd\u04ce", + "\u0007N\u0002\u0002\u04ce\u04cf\u0007W\u0002\u0002\u04cf\u04d0\u0007", + "O\u0002\u0002\u04d0\u04d1\u0007P\u0002\u0002\u04d1\u00b4\u0003\u0002", + "\u0002\u0002\u04d2\u04d3\u0007W\u0002\u0002\u04d3\u04d4\u0007U\u0002", + "\u0002\u04d4\u04d5\u0007G\u0002\u0002\u04d5\u00b6\u0003\u0002\u0002", + "\u0002\u04d6\u04d7\u0007R\u0002\u0002\u04d7\u04d8\u0007C\u0002\u0002", + "\u04d8\u04d9\u0007T\u0002\u0002\u04d9\u04da\u0007V\u0002\u0002\u04da", + "\u04db\u0007K\u0002\u0002\u04db\u04dc\u0007V\u0002\u0002\u04dc\u04dd", + "\u0007K\u0002\u0002\u04dd\u04de\u0007Q\u0002\u0002\u04de\u04df\u0007", + "P\u0002\u0002\u04df\u04e0\u0007U\u0002\u0002\u04e0\u00b8\u0003\u0002", + "\u0002\u0002\u04e1\u04e2\u0007H\u0002\u0002\u04e2\u04e3\u0007W\u0002", + "\u0002\u04e3\u04e4\u0007P\u0002\u0002\u04e4\u04e5\u0007E\u0002\u0002", + "\u04e5\u04e6\u0007V\u0002\u0002\u04e6\u04e7\u0007K\u0002\u0002\u04e7", + "\u04e8\u0007Q\u0002\u0002\u04e8\u04e9\u0007P\u0002\u0002\u04e9\u04ea", + "\u0007U\u0002\u0002\u04ea\u00ba\u0003\u0002\u0002\u0002\u04eb\u04ec", + "\u0007F\u0002\u0002\u04ec\u04ed\u0007T\u0002\u0002\u04ed\u04ee\u0007", + "Q\u0002\u0002\u04ee\u04ef\u0007R\u0002\u0002\u04ef\u00bc\u0003\u0002", + "\u0002\u0002\u04f0\u04f1\u0007W\u0002\u0002\u04f1\u04f2\u0007P\u0002", + "\u0002\u04f2\u04f3\u0007K\u0002\u0002\u04f3\u04f4\u0007Q\u0002\u0002", + "\u04f4\u04f5\u0007P\u0002\u0002\u04f5\u00be\u0003\u0002\u0002\u0002", + "\u04f6\u04f7\u0007G\u0002\u0002\u04f7\u04f8\u0007Z\u0002\u0002\u04f8", + "\u04f9\u0007E\u0002\u0002\u04f9\u04fa\u0007G\u0002\u0002\u04fa\u04fb", + "\u0007R\u0002\u0002\u04fb\u04fc\u0007V\u0002\u0002\u04fc\u00c0\u0003", + "\u0002\u0002\u0002\u04fd\u04fe\u0007U\u0002\u0002\u04fe\u04ff\u0007", + "G\u0002\u0002\u04ff\u0500\u0007V\u0002\u0002\u0500\u0501\u0007O\u0002", + "\u0002\u0501\u0502\u0007K\u0002\u0002\u0502\u0503\u0007P\u0002\u0002", + "\u0503\u0504\u0007W\u0002\u0002\u0504\u0505\u0007U\u0002\u0002\u0505", + "\u00c2\u0003\u0002\u0002\u0002\u0506\u0507\u0007K\u0002\u0002\u0507", + "\u0508\u0007P\u0002\u0002\u0508\u0509\u0007V\u0002\u0002\u0509\u050a", + "\u0007G\u0002\u0002\u050a\u050b\u0007T\u0002\u0002\u050b\u050c\u0007", + "U\u0002\u0002\u050c\u050d\u0007G\u0002\u0002\u050d\u050e\u0007E\u0002", + "\u0002\u050e\u050f\u0007V\u0002\u0002\u050f\u00c4\u0003\u0002\u0002", + "\u0002\u0510\u0511\u0007V\u0002\u0002\u0511\u0512\u0007Q\u0002\u0002", + "\u0512\u00c6\u0003\u0002\u0002\u0002\u0513\u0514\u0007V\u0002\u0002", + "\u0514\u0515\u0007C\u0002\u0002\u0515\u0516\u0007D\u0002\u0002\u0516", + "\u0517\u0007N\u0002\u0002\u0517\u0518\u0007G\u0002\u0002\u0518\u0519", + "\u0007U\u0002\u0002\u0519\u051a\u0007C\u0002\u0002\u051a\u051b\u0007", + "O\u0002\u0002\u051b\u051c\u0007R\u0002\u0002\u051c\u051d\u0007N\u0002", + "\u0002\u051d\u051e\u0007G\u0002\u0002\u051e\u00c8\u0003\u0002\u0002", + "\u0002\u051f\u0520\u0007U\u0002\u0002\u0520\u0521\u0007V\u0002\u0002", + "\u0521\u0522\u0007T\u0002\u0002\u0522\u0523\u0007C\u0002\u0002\u0523", + "\u0524\u0007V\u0002\u0002\u0524\u0525\u0007K\u0002\u0002\u0525\u0526", + "\u0007H\u0002\u0002\u0526\u0527\u0007[\u0002\u0002\u0527\u00ca\u0003", + "\u0002\u0002\u0002\u0528\u0529\u0007C\u0002\u0002\u0529\u052a\u0007", + "N\u0002\u0002\u052a\u052b\u0007V\u0002\u0002\u052b\u052c\u0007G\u0002", + "\u0002\u052c\u052d\u0007T\u0002\u0002\u052d\u00cc\u0003\u0002\u0002", + "\u0002\u052e\u052f\u0007T\u0002\u0002\u052f\u0530\u0007G\u0002\u0002", + "\u0530\u0531\u0007P\u0002\u0002\u0531\u0532\u0007C\u0002\u0002\u0532", + "\u0533\u0007O\u0002\u0002\u0533\u0534\u0007G\u0002\u0002\u0534\u00ce", + "\u0003\u0002\u0002\u0002\u0535\u0536\u0007U\u0002\u0002\u0536\u0537", + "\u0007V\u0002\u0002\u0537\u0538\u0007T\u0002\u0002\u0538\u0539\u0007", + "W\u0002\u0002\u0539\u053a\u0007E\u0002\u0002\u053a\u053b\u0007V\u0002", + "\u0002\u053b\u00d0\u0003\u0002\u0002\u0002\u053c\u053d\u0007E\u0002", + "\u0002\u053d\u053e\u0007Q\u0002\u0002\u053e\u053f\u0007O\u0002\u0002", + "\u053f\u0540\u0007O\u0002\u0002\u0540\u0541\u0007G\u0002\u0002\u0541", + "\u0542\u0007P\u0002\u0002\u0542\u0543\u0007V\u0002\u0002\u0543\u00d2", + "\u0003\u0002\u0002\u0002\u0544\u0545\u0007U\u0002\u0002\u0545\u0546", + "\u0007G\u0002\u0002\u0546\u0547\u0007V\u0002\u0002\u0547\u00d4\u0003", + "\u0002\u0002\u0002\u0548\u0549\u0007T\u0002\u0002\u0549\u054a\u0007", + "G\u0002\u0002\u054a\u054b\u0007U\u0002\u0002\u054b\u054c\u0007G\u0002", + "\u0002\u054c\u054d\u0007V\u0002\u0002\u054d\u00d6\u0003\u0002\u0002", + "\u0002\u054e\u054f\u0007F\u0002\u0002\u054f\u0550\u0007C\u0002\u0002", + "\u0550\u0551\u0007V\u0002\u0002\u0551\u0552\u0007C\u0002\u0002\u0552", + "\u00d8\u0003\u0002\u0002\u0002\u0553\u0554\u0007U\u0002\u0002\u0554", + "\u0555\u0007V\u0002\u0002\u0555\u0556\u0007C\u0002\u0002\u0556\u0557", + "\u0007T\u0002\u0002\u0557\u0558\u0007V\u0002\u0002\u0558\u00da\u0003", + "\u0002\u0002\u0002\u0559\u055a\u0007V\u0002\u0002\u055a\u055b\u0007", + "T\u0002\u0002\u055b\u055c\u0007C\u0002\u0002\u055c\u055d\u0007P\u0002", + "\u0002\u055d\u055e\u0007U\u0002\u0002\u055e\u055f\u0007C\u0002\u0002", + "\u055f\u0560\u0007E\u0002\u0002\u0560\u0561\u0007V\u0002\u0002\u0561", + "\u0562\u0007K\u0002\u0002\u0562\u0563\u0007Q\u0002\u0002\u0563\u0564", + "\u0007P\u0002\u0002\u0564\u00dc\u0003\u0002\u0002\u0002\u0565\u0566", + "\u0007E\u0002\u0002\u0566\u0567\u0007Q\u0002\u0002\u0567\u0568\u0007", + "O\u0002\u0002\u0568\u0569\u0007O\u0002\u0002\u0569\u056a\u0007K\u0002", + "\u0002\u056a\u056b\u0007V\u0002\u0002\u056b\u00de\u0003\u0002\u0002", + "\u0002\u056c\u056d\u0007T\u0002\u0002\u056d\u056e\u0007Q\u0002\u0002", + "\u056e\u056f\u0007N\u0002\u0002\u056f\u0570\u0007N\u0002\u0002\u0570", + "\u0571\u0007D\u0002\u0002\u0571\u0572\u0007C\u0002\u0002\u0572\u0573", + "\u0007E\u0002\u0002\u0573\u0574\u0007M\u0002\u0002\u0574\u00e0\u0003", + "\u0002\u0002\u0002\u0575\u0576\u0007O\u0002\u0002\u0576\u0577\u0007", + "C\u0002\u0002\u0577\u0578\u0007E\u0002\u0002\u0578\u0579\u0007T\u0002", + "\u0002\u0579\u057a\u0007Q\u0002\u0002\u057a\u00e2\u0003\u0002\u0002", + "\u0002\u057b\u057c\u0007K\u0002\u0002\u057c\u057d\u0007I\u0002\u0002", + "\u057d\u057e\u0007P\u0002\u0002\u057e\u057f\u0007Q\u0002\u0002\u057f", + "\u0580\u0007T\u0002\u0002\u0580\u0581\u0007G\u0002\u0002\u0581\u00e4", + "\u0003\u0002\u0002\u0002\u0582\u0583\u0007D\u0002\u0002\u0583\u0584", + "\u0007Q\u0002\u0002\u0584\u0585\u0007V\u0002\u0002\u0585\u0586\u0007", + "J\u0002\u0002\u0586\u00e6\u0003\u0002\u0002\u0002\u0587\u0588\u0007", + "N\u0002\u0002\u0588\u0589\u0007G\u0002\u0002\u0589\u058a\u0007C\u0002", + "\u0002\u058a\u058b\u0007F\u0002\u0002\u058b\u058c\u0007K\u0002\u0002", + "\u058c\u058d\u0007P\u0002\u0002\u058d\u058e\u0007I\u0002\u0002\u058e", + "\u00e8\u0003\u0002\u0002\u0002\u058f\u0590\u0007V\u0002\u0002\u0590", + "\u0591\u0007T\u0002\u0002\u0591\u0592\u0007C\u0002\u0002\u0592\u0593", + "\u0007K\u0002\u0002\u0593\u0594\u0007N\u0002\u0002\u0594\u0595\u0007", + "K\u0002\u0002\u0595\u0596\u0007P\u0002\u0002\u0596\u0597\u0007I\u0002", + "\u0002\u0597\u00ea\u0003\u0002\u0002\u0002\u0598\u0599\u0007K\u0002", + "\u0002\u0599\u059a\u0007H\u0002\u0002\u059a\u00ec\u0003\u0002\u0002", + "\u0002\u059b\u059c\u0007R\u0002\u0002\u059c\u059d\u0007Q\u0002\u0002", + "\u059d\u059e\u0007U\u0002\u0002\u059e\u059f\u0007K\u0002\u0002\u059f", + "\u05a0\u0007V\u0002\u0002\u05a0\u05a1\u0007K\u0002\u0002\u05a1\u05a2", + "\u0007Q\u0002\u0002\u05a2\u05a3\u0007P\u0002\u0002\u05a3\u00ee\u0003", + "\u0002\u0002\u0002\u05a4\u05a5\u0007G\u0002\u0002\u05a5\u05a6\u0007", + "Z\u0002\u0002\u05a6\u05a7\u0007V\u0002\u0002\u05a7\u05a8\u0007T\u0002", + "\u0002\u05a8\u05a9\u0007C\u0002\u0002\u05a9\u05aa\u0007E\u0002\u0002", + "\u05aa\u05ab\u0007V\u0002\u0002\u05ab\u00f0\u0003\u0002\u0002\u0002", + "\u05ac\u05ad\u0007G\u0002\u0002\u05ad\u05ae\u0007S\u0002\u0002\u05ae", + "\u00f2\u0003\u0002\u0002\u0002\u05af\u05b0\u0007P\u0002\u0002\u05b0", + "\u05b1\u0007U\u0002\u0002\u05b1\u05b2\u0007G\u0002\u0002\u05b2\u05b3", + "\u0007S\u0002\u0002\u05b3\u00f4\u0003\u0002\u0002\u0002\u05b4\u05b5", + "\u0007P\u0002\u0002\u05b5\u05b6\u0007G\u0002\u0002\u05b6\u05b7\u0007", + "S\u0002\u0002\u05b7\u00f6\u0003\u0002\u0002\u0002\u05b8\u05b9\u0007", + "P\u0002\u0002\u05b9\u05ba\u0007G\u0002\u0002\u05ba\u05bb\u0007S\u0002", + "\u0002\u05bb\u05bc\u0007L\u0002\u0002\u05bc\u00f8\u0003\u0002\u0002", + "\u0002\u05bd\u05be\u0007N\u0002\u0002\u05be\u05bf\u0007V\u0002\u0002", + "\u05bf\u00fa\u0003\u0002\u0002\u0002\u05c0\u05c1\u0007N\u0002\u0002", + "\u05c1\u05c2\u0007V\u0002\u0002\u05c2\u05c3\u0007G\u0002\u0002\u05c3", + "\u00fc\u0003\u0002\u0002\u0002\u05c4\u05c5\u0007I\u0002\u0002\u05c5", + "\u05c6\u0007V\u0002\u0002\u05c6\u00fe\u0003\u0002\u0002\u0002\u05c7", + "\u05c8\u0007I\u0002\u0002\u05c8\u05c9\u0007V\u0002\u0002\u05c9\u05ca", + "\u0007G\u0002\u0002\u05ca\u0100\u0003\u0002\u0002\u0002\u05cb\u05cc", + "\u0007R\u0002\u0002\u05cc\u05cd\u0007N\u0002\u0002\u05cd\u05ce\u0007", + "W\u0002\u0002\u05ce\u05cf\u0007U\u0002\u0002\u05cf\u0102\u0003\u0002", + "\u0002\u0002\u05d0\u05d1\u0007O\u0002\u0002\u05d1\u05d2\u0007K\u0002", + "\u0002\u05d2\u05d3\u0007P\u0002\u0002\u05d3\u05d4\u0007W\u0002\u0002", + "\u05d4\u05d5\u0007U\u0002\u0002\u05d5\u0104\u0003\u0002\u0002\u0002", + "\u05d6\u05d7\u0007C\u0002\u0002\u05d7\u05d8\u0007U\u0002\u0002\u05d8", + "\u05d9\u0007V\u0002\u0002\u05d9\u05da\u0007G\u0002\u0002\u05da\u05db", + "\u0007T\u0002\u0002\u05db\u05dc\u0007K\u0002\u0002\u05dc\u05dd\u0007", + "U\u0002\u0002\u05dd\u05de\u0007M\u0002\u0002\u05de\u0106\u0003\u0002", + "\u0002\u0002\u05df\u05e0\u0007U\u0002\u0002\u05e0\u05e1\u0007N\u0002", + "\u0002\u05e1\u05e2\u0007C\u0002\u0002\u05e2\u05e3\u0007U\u0002\u0002", + "\u05e3\u05e4\u0007J\u0002\u0002\u05e4\u0108\u0003\u0002\u0002\u0002", + "\u05e5\u05e6\u0007R\u0002\u0002\u05e6\u05e7\u0007G\u0002\u0002\u05e7", + "\u05e8\u0007T\u0002\u0002\u05e8\u05e9\u0007E\u0002\u0002\u05e9\u05ea", + "\u0007G\u0002\u0002\u05ea\u05eb\u0007P\u0002\u0002\u05eb\u05ec\u0007", + "V\u0002\u0002\u05ec\u010a\u0003\u0002\u0002\u0002\u05ed\u05ee\u0007", + "F\u0002\u0002\u05ee\u05ef\u0007K\u0002\u0002\u05ef\u05f0\u0007X\u0002", + "\u0002\u05f0\u010c\u0003\u0002\u0002\u0002\u05f1\u05f2\u0007V\u0002", + "\u0002\u05f2\u05f3\u0007K\u0002\u0002\u05f3\u05f4\u0007N\u0002\u0002", + "\u05f4\u05f5\u0007F\u0002\u0002\u05f5\u05f6\u0007G\u0002\u0002\u05f6", + "\u010e\u0003\u0002\u0002\u0002\u05f7\u05f8\u0007C\u0002\u0002\u05f8", + "\u05f9\u0007O\u0002\u0002\u05f9\u05fa\u0007R\u0002\u0002\u05fa\u05fb", + "\u0007G\u0002\u0002\u05fb\u05fc\u0007T\u0002\u0002\u05fc\u05fd\u0007", + "U\u0002\u0002\u05fd\u05fe\u0007C\u0002\u0002\u05fe\u05ff\u0007P\u0002", + "\u0002\u05ff\u0600\u0007F\u0002\u0002\u0600\u0110\u0003\u0002\u0002", + "\u0002\u0601\u0602\u0007R\u0002\u0002\u0602\u0603\u0007K\u0002\u0002", + "\u0603\u0604\u0007R\u0002\u0002\u0604\u0605\u0007G\u0002\u0002\u0605", + "\u0112\u0003\u0002\u0002\u0002\u0606\u0607\u0007E\u0002\u0002\u0607", + "\u0608\u0007Q\u0002\u0002\u0608\u0609\u0007P\u0002\u0002\u0609\u060a", + "\u0007E\u0002\u0002\u060a\u060b\u0007C\u0002\u0002\u060b\u060c\u0007", + "V\u0002\u0002\u060c\u060d\u0007a\u0002\u0002\u060d\u060e\u0007R\u0002", + "\u0002\u060e\u060f\u0007K\u0002\u0002\u060f\u0610\u0007R\u0002\u0002", + "\u0610\u0611\u0007G\u0002\u0002\u0611\u0114\u0003\u0002\u0002\u0002", + "\u0612\u0613\u0007J\u0002\u0002\u0613\u0614\u0007C\u0002\u0002\u0614", + "\u0615\u0007V\u0002\u0002\u0615\u0116\u0003\u0002\u0002\u0002\u0616", + "\u0617\u0007R\u0002\u0002\u0617\u0618\u0007G\u0002\u0002\u0618\u0619", + "\u0007T\u0002\u0002\u0619\u061a\u0007E\u0002\u0002\u061a\u061b\u0007", + "G\u0002\u0002\u061b\u061c\u0007P\u0002\u0002\u061c\u061d\u0007V\u0002", + "\u0002\u061d\u061e\u0007N\u0002\u0002\u061e\u061f\u0007K\u0002\u0002", + "\u061f\u0620\u0007V\u0002\u0002\u0620\u0118\u0003\u0002\u0002\u0002", + "\u0621\u0622\u0007D\u0002\u0002\u0622\u0623\u0007W\u0002\u0002\u0623", + "\u0624\u0007E\u0002\u0002\u0624\u0625\u0007M\u0002\u0002\u0625\u0626", + "\u0007G\u0002\u0002\u0626\u0627\u0007V\u0002\u0002\u0627\u011a\u0003", + "\u0002\u0002\u0002\u0628\u0629\u0007Q\u0002\u0002\u0629\u062a\u0007", + "W\u0002\u0002\u062a\u062b\u0007V\u0002\u0002\u062b\u011c\u0003\u0002", + "\u0002\u0002\u062c\u062d\u0007Q\u0002\u0002\u062d\u062e\u0007H\u0002", + "\u0002\u062e\u011e\u0003\u0002\u0002\u0002\u062f\u0630\u0007U\u0002", + "\u0002\u0630\u0631\u0007Q\u0002\u0002\u0631\u0632\u0007T\u0002\u0002", + "\u0632\u0633\u0007V\u0002\u0002\u0633\u0120\u0003\u0002\u0002\u0002", + "\u0634\u0635\u0007E\u0002\u0002\u0635\u0636\u0007N\u0002\u0002\u0636", + "\u0637\u0007W\u0002\u0002\u0637\u0638\u0007U\u0002\u0002\u0638\u0639", + "\u0007V\u0002\u0002\u0639\u063a\u0007G\u0002\u0002\u063a\u063b\u0007", + "T\u0002\u0002\u063b\u0122\u0003\u0002\u0002\u0002\u063c\u063d\u0007", + "F\u0002\u0002\u063d\u063e\u0007K\u0002\u0002\u063e\u063f\u0007U\u0002", + "\u0002\u063f\u0640\u0007V\u0002\u0002\u0640\u0641\u0007T\u0002\u0002", + "\u0641\u0642\u0007K\u0002\u0002\u0642\u0643\u0007D\u0002\u0002\u0643", + "\u0644\u0007W\u0002\u0002\u0644\u0645\u0007V\u0002\u0002\u0645\u0646", + "\u0007G\u0002\u0002\u0646\u0124\u0003\u0002\u0002\u0002\u0647\u0648", + "\u0007Q\u0002\u0002\u0648\u0649\u0007X\u0002\u0002\u0649\u064a\u0007", + "G\u0002\u0002\u064a\u064b\u0007T\u0002\u0002\u064b\u064c\u0007Y\u0002", + "\u0002\u064c\u064d\u0007T\u0002\u0002\u064d\u064e\u0007K\u0002\u0002", + "\u064e\u064f\u0007V\u0002\u0002\u064f\u0650\u0007G\u0002\u0002\u0650", + "\u0126\u0003\u0002\u0002\u0002\u0651\u0652\u0007V\u0002\u0002\u0652", + "\u0653\u0007T\u0002\u0002\u0653\u0654\u0007C\u0002\u0002\u0654\u0655", + "\u0007P\u0002\u0002\u0655\u0656\u0007U\u0002\u0002\u0656\u0657\u0007", + "H\u0002\u0002\u0657\u0658\u0007Q\u0002\u0002\u0658\u0659\u0007T\u0002", + "\u0002\u0659\u065a\u0007O\u0002\u0002\u065a\u0128\u0003\u0002\u0002", + "\u0002\u065b\u065c\u0007T\u0002\u0002\u065c\u065d\u0007G\u0002\u0002", + "\u065d\u065e\u0007F\u0002\u0002\u065e\u065f\u0007W\u0002\u0002\u065f", + "\u0660\u0007E\u0002\u0002\u0660\u0661\u0007G\u0002\u0002\u0661\u012a", + "\u0003\u0002\u0002\u0002\u0662\u0663\u0007W\u0002\u0002\u0663\u0664", + "\u0007U\u0002\u0002\u0664\u0665\u0007K\u0002\u0002\u0665\u0666\u0007", + "P\u0002\u0002\u0666\u0667\u0007I\u0002\u0002\u0667\u012c\u0003\u0002", + "\u0002\u0002\u0668\u0669\u0007U\u0002\u0002\u0669\u066a\u0007G\u0002", + "\u0002\u066a\u066b\u0007T\u0002\u0002\u066b\u066c\u0007F\u0002\u0002", + "\u066c\u066d\u0007G\u0002\u0002\u066d\u012e\u0003\u0002\u0002\u0002", + "\u066e\u066f\u0007U\u0002\u0002\u066f\u0670\u0007G\u0002\u0002\u0670", + "\u0671\u0007T\u0002\u0002\u0671\u0672\u0007F\u0002\u0002\u0672\u0673", + "\u0007G\u0002\u0002\u0673\u0674\u0007R\u0002\u0002\u0674\u0675\u0007", + "T\u0002\u0002\u0675\u0676\u0007Q\u0002\u0002\u0676\u0677\u0007R\u0002", + "\u0002\u0677\u0678\u0007G\u0002\u0002\u0678\u0679\u0007T\u0002\u0002", + "\u0679\u067a\u0007V\u0002\u0002\u067a\u067b\u0007K\u0002\u0002\u067b", + "\u067c\u0007G\u0002\u0002\u067c\u067d\u0007U\u0002\u0002\u067d\u0130", + "\u0003\u0002\u0002\u0002\u067e\u067f\u0007T\u0002\u0002\u067f\u0680", + "\u0007G\u0002\u0002\u0680\u0681\u0007E\u0002\u0002\u0681\u0682\u0007", + "Q\u0002\u0002\u0682\u0683\u0007T\u0002\u0002\u0683\u0684\u0007F\u0002", + "\u0002\u0684\u0685\u0007T\u0002\u0002\u0685\u0686\u0007G\u0002\u0002", + "\u0686\u0687\u0007C\u0002\u0002\u0687\u0688\u0007F\u0002\u0002\u0688", + "\u0689\u0007G\u0002\u0002\u0689\u068a\u0007T\u0002\u0002\u068a\u0132", + "\u0003\u0002\u0002\u0002\u068b\u068c\u0007T\u0002\u0002\u068c\u068d", + "\u0007G\u0002\u0002\u068d\u068e\u0007E\u0002\u0002\u068e\u068f\u0007", + "Q\u0002\u0002\u068f\u0690\u0007T\u0002\u0002\u0690\u0691\u0007F\u0002", + "\u0002\u0691\u0692\u0007Y\u0002\u0002\u0692\u0693\u0007T\u0002\u0002", + "\u0693\u0694\u0007K\u0002\u0002\u0694\u0695\u0007V\u0002\u0002\u0695", + "\u0696\u0007G\u0002\u0002\u0696\u0697\u0007T\u0002\u0002\u0697\u0134", + "\u0003\u0002\u0002\u0002\u0698\u0699\u0007F\u0002\u0002\u0699\u069a", + "\u0007G\u0002\u0002\u069a\u069b\u0007N\u0002\u0002\u069b\u069c\u0007", + "K\u0002\u0002\u069c\u069d\u0007O\u0002\u0002\u069d\u069e\u0007K\u0002", + "\u0002\u069e\u069f\u0007V\u0002\u0002\u069f\u06a0\u0007G\u0002\u0002", + "\u06a0\u06a1\u0007F\u0002\u0002\u06a1\u0136\u0003\u0002\u0002\u0002", + "\u06a2\u06a3\u0007H\u0002\u0002\u06a3\u06a4\u0007K\u0002\u0002\u06a4", + "\u06a5\u0007G\u0002\u0002\u06a5\u06a6\u0007N\u0002\u0002\u06a6\u06a7", + "\u0007F\u0002\u0002\u06a7\u06a8\u0007U\u0002\u0002\u06a8\u0138\u0003", + "\u0002\u0002\u0002\u06a9\u06aa\u0007V\u0002\u0002\u06aa\u06ab\u0007", + "G\u0002\u0002\u06ab\u06ac\u0007T\u0002\u0002\u06ac\u06ad\u0007O\u0002", + "\u0002\u06ad\u06ae\u0007K\u0002\u0002\u06ae\u06af\u0007P\u0002\u0002", + "\u06af\u06b0\u0007C\u0002\u0002\u06b0\u06b1\u0007V\u0002\u0002\u06b1", + "\u06b2\u0007G\u0002\u0002\u06b2\u06b3\u0007F\u0002\u0002\u06b3\u013a", + "\u0003\u0002\u0002\u0002\u06b4\u06b5\u0007E\u0002\u0002\u06b5\u06b6", + "\u0007Q\u0002\u0002\u06b6\u06b7\u0007N\u0002\u0002\u06b7\u06b8\u0007", + "N\u0002\u0002\u06b8\u06b9\u0007G\u0002\u0002\u06b9\u06ba\u0007E\u0002", + "\u0002\u06ba\u06bb\u0007V\u0002\u0002\u06bb\u06bc\u0007K\u0002\u0002", + "\u06bc\u06bd\u0007Q\u0002\u0002\u06bd\u06be\u0007P\u0002\u0002\u06be", + "\u013c\u0003\u0002\u0002\u0002\u06bf\u06c0\u0007K\u0002\u0002\u06c0", + "\u06c1\u0007V\u0002\u0002\u06c1\u06c2\u0007G\u0002\u0002\u06c2\u06c3", + "\u0007O\u0002\u0002\u06c3\u06c4\u0007U\u0002\u0002\u06c4\u013e\u0003", + "\u0002\u0002\u0002\u06c5\u06c6\u0007M\u0002\u0002\u06c6\u06c7\u0007", + "G\u0002\u0002\u06c7\u06c8\u0007[\u0002\u0002\u06c8\u06c9\u0007U\u0002", + "\u0002\u06c9\u0140\u0003\u0002\u0002\u0002\u06ca\u06cb\u0007G\u0002", + "\u0002\u06cb\u06cc\u0007U\u0002\u0002\u06cc\u06cd\u0007E\u0002\u0002", + "\u06cd\u06ce\u0007C\u0002\u0002\u06ce\u06cf\u0007R\u0002\u0002\u06cf", + "\u06d0\u0007G\u0002\u0002\u06d0\u06d1\u0007F\u0002\u0002\u06d1\u0142", + "\u0003\u0002\u0002\u0002\u06d2\u06d3\u0007N\u0002\u0002\u06d3\u06d4", + "\u0007K\u0002\u0002\u06d4\u06d5\u0007P\u0002\u0002\u06d5\u06d6\u0007", + "G\u0002\u0002\u06d6\u06d7\u0007U\u0002\u0002\u06d7\u0144\u0003\u0002", + "\u0002\u0002\u06d8\u06d9\u0007U\u0002\u0002\u06d9\u06da\u0007G\u0002", + "\u0002\u06da\u06db\u0007R\u0002\u0002\u06db\u06dc\u0007C\u0002\u0002", + "\u06dc\u06dd\u0007T\u0002\u0002\u06dd\u06de\u0007C\u0002\u0002\u06de", + "\u06df\u0007V\u0002\u0002\u06df\u06e0\u0007G\u0002\u0002\u06e0\u06e1", + "\u0007F\u0002\u0002\u06e1\u0146\u0003\u0002\u0002\u0002\u06e2\u06e3", + "\u0007H\u0002\u0002\u06e3\u06e4\u0007W\u0002\u0002\u06e4\u06e5\u0007", + "P\u0002\u0002\u06e5\u06e6\u0007E\u0002\u0002\u06e6\u06e7\u0007V\u0002", + "\u0002\u06e7\u06e8\u0007K\u0002\u0002\u06e8\u06e9\u0007Q\u0002\u0002", + "\u06e9\u06ea\u0007P\u0002\u0002\u06ea\u0148\u0003\u0002\u0002\u0002", + "\u06eb\u06ec\u0007G\u0002\u0002\u06ec\u06ed\u0007Z\u0002\u0002\u06ed", + "\u06ee\u0007V\u0002\u0002\u06ee\u06ef\u0007G\u0002\u0002\u06ef\u06f0", + "\u0007P\u0002\u0002\u06f0\u06f1\u0007F\u0002\u0002\u06f1\u06f2\u0007", + "G\u0002\u0002\u06f2\u06f3\u0007F\u0002\u0002\u06f3\u014a\u0003\u0002", + "\u0002\u0002\u06f4\u06f5\u0007T\u0002\u0002\u06f5\u06f6\u0007G\u0002", + "\u0002\u06f6\u06f7\u0007H\u0002\u0002\u06f7\u06f8\u0007T\u0002\u0002", + "\u06f8\u06f9\u0007G\u0002\u0002\u06f9\u06fa\u0007U\u0002\u0002\u06fa", + "\u06fb\u0007J\u0002\u0002\u06fb\u014c\u0003\u0002\u0002\u0002\u06fc", + "\u06fd\u0007E\u0002\u0002\u06fd\u06fe\u0007N\u0002\u0002\u06fe\u06ff", + "\u0007G\u0002\u0002\u06ff\u0700\u0007C\u0002\u0002\u0700\u0701\u0007", + "T\u0002\u0002\u0701\u014e\u0003\u0002\u0002\u0002\u0702\u0703\u0007", + "E\u0002\u0002\u0703\u0704\u0007C\u0002\u0002\u0704\u0705\u0007E\u0002", + "\u0002\u0705\u0706\u0007J\u0002\u0002\u0706\u0707\u0007G\u0002\u0002", + "\u0707\u0150\u0003\u0002\u0002\u0002\u0708\u0709\u0007W\u0002\u0002", + "\u0709\u070a\u0007P\u0002\u0002\u070a\u070b\u0007E\u0002\u0002\u070b", + "\u070c\u0007C\u0002\u0002\u070c\u070d\u0007E\u0002\u0002\u070d\u070e", + "\u0007J\u0002\u0002\u070e\u070f\u0007G\u0002\u0002\u070f\u0152\u0003", + "\u0002\u0002\u0002\u0710\u0711\u0007N\u0002\u0002\u0711\u0712\u0007", + "C\u0002\u0002\u0712\u0713\u0007\\\u0002\u0002\u0713\u0714\u0007[\u0002", + "\u0002\u0714\u0154\u0003\u0002\u0002\u0002\u0715\u0716\u0007H\u0002", + "\u0002\u0716\u0717\u0007Q\u0002\u0002\u0717\u0718\u0007T\u0002\u0002", + "\u0718\u0719\u0007O\u0002\u0002\u0719\u071a\u0007C\u0002\u0002\u071a", + "\u071b\u0007V\u0002\u0002\u071b\u071c\u0007V\u0002\u0002\u071c\u071d", + "\u0007G\u0002\u0002\u071d\u071e\u0007F\u0002\u0002\u071e\u0156\u0003", + "\u0002\u0002\u0002\u071f\u0720\u0007I\u0002\u0002\u0720\u0721\u0007", + "N\u0002\u0002\u0721\u0722\u0007Q\u0002\u0002\u0722\u0723\u0007D\u0002", + "\u0002\u0723\u0724\u0007C\u0002\u0002\u0724\u0725\u0007N\u0002\u0002", + "\u0725\u0158\u0003\u0002\u0002\u0002\u0726\u0727\u0007V\u0002\u0002", + "\u0727\u0728\u0007G\u0002\u0002\u0728\u0729\u0007O\u0002\u0002\u0729", + "\u072a\u0007R\u0002\u0002\u072a\u072b\u0007Q\u0002\u0002\u072b\u072c", + "\u0007T\u0002\u0002\u072c\u072d\u0007C\u0002\u0002\u072d\u072e\u0007", + "T\u0002\u0002\u072e\u072f\u0007[\u0002\u0002\u072f\u015a\u0003\u0002", + "\u0002\u0002\u0730\u0731\u0007Q\u0002\u0002\u0731\u0732\u0007R\u0002", + "\u0002\u0732\u0733\u0007V\u0002\u0002\u0733\u0734\u0007K\u0002\u0002", + "\u0734\u0735\u0007Q\u0002\u0002\u0735\u0736\u0007P\u0002\u0002\u0736", + "\u0737\u0007U\u0002\u0002\u0737\u015c\u0003\u0002\u0002\u0002\u0738", + "\u0739\u0007W\u0002\u0002\u0739\u073a\u0007P\u0002\u0002\u073a\u073b", + "\u0007U\u0002\u0002\u073b\u073c\u0007G\u0002\u0002\u073c\u073d\u0007", + "V\u0002\u0002\u073d\u015e\u0003\u0002\u0002\u0002\u073e\u073f\u0007", + "V\u0002\u0002\u073f\u0740\u0007D\u0002\u0002\u0740\u0741\u0007N\u0002", + "\u0002\u0741\u0742\u0007R\u0002\u0002\u0742\u0743\u0007T\u0002\u0002", + "\u0743\u0744\u0007Q\u0002\u0002\u0744\u0745\u0007R\u0002\u0002\u0745", + "\u0746\u0007G\u0002\u0002\u0746\u0747\u0007T\u0002\u0002\u0747\u0748", + "\u0007V\u0002\u0002\u0748\u0749\u0007K\u0002\u0002\u0749\u074a\u0007", + "G\u0002\u0002\u074a\u074b\u0007U\u0002\u0002\u074b\u0160\u0003\u0002", + "\u0002\u0002\u074c\u074d\u0007F\u0002\u0002\u074d\u074e\u0007D\u0002", + "\u0002\u074e\u074f\u0007R\u0002\u0002\u074f\u0750\u0007T\u0002\u0002", + "\u0750\u0751\u0007Q\u0002\u0002\u0751\u0752\u0007R\u0002\u0002\u0752", + "\u0753\u0007G\u0002\u0002\u0753\u0754\u0007T\u0002\u0002\u0754\u0755", + "\u0007V\u0002\u0002\u0755\u0756\u0007K\u0002\u0002\u0756\u0757\u0007", + "G\u0002\u0002\u0757\u0758\u0007U\u0002\u0002\u0758\u0162\u0003\u0002", + "\u0002\u0002\u0759\u075a\u0007D\u0002\u0002\u075a\u075b\u0007W\u0002", + "\u0002\u075b\u075c\u0007E\u0002\u0002\u075c\u075d\u0007M\u0002\u0002", + "\u075d\u075e\u0007G\u0002\u0002\u075e\u075f\u0007V\u0002\u0002\u075f", + "\u0760\u0007U\u0002\u0002\u0760\u0164\u0003\u0002\u0002\u0002\u0761", + "\u0762\u0007U\u0002\u0002\u0762\u0763\u0007M\u0002\u0002\u0763\u0764", + "\u0007G\u0002\u0002\u0764\u0765\u0007Y\u0002\u0002\u0765\u0766\u0007", + "G\u0002\u0002\u0766\u0767\u0007F\u0002\u0002\u0767\u0166\u0003\u0002", + "\u0002\u0002\u0768\u0769\u0007U\u0002\u0002\u0769\u076a\u0007V\u0002", + "\u0002\u076a\u076b\u0007Q\u0002\u0002\u076b\u076c\u0007T\u0002\u0002", + "\u076c\u076d\u0007G\u0002\u0002\u076d\u076e\u0007F\u0002\u0002\u076e", + "\u0168\u0003\u0002\u0002\u0002\u076f\u0770\u0007F\u0002\u0002\u0770", + "\u0771\u0007K\u0002\u0002\u0771\u0772\u0007T\u0002\u0002\u0772\u0773", + "\u0007G\u0002\u0002\u0773\u0774\u0007E\u0002\u0002\u0774\u0775\u0007", + "V\u0002\u0002\u0775\u0776\u0007Q\u0002\u0002\u0776\u0777\u0007T\u0002", + "\u0002\u0777\u0778\u0007K\u0002\u0002\u0778\u0779\u0007G\u0002\u0002", + "\u0779\u077a\u0007U\u0002\u0002\u077a\u016a\u0003\u0002\u0002\u0002", + "\u077b\u077c\u0007N\u0002\u0002\u077c\u077d\u0007Q\u0002\u0002\u077d", + "\u077e\u0007E\u0002\u0002\u077e\u077f\u0007C\u0002\u0002\u077f\u0780", + "\u0007V\u0002\u0002\u0780\u0781\u0007K\u0002\u0002\u0781\u0782\u0007", + "Q\u0002\u0002\u0782\u0783\u0007P\u0002\u0002\u0783\u016c\u0003\u0002", + "\u0002\u0002\u0784\u0785\u0007G\u0002\u0002\u0785\u0786\u0007Z\u0002", + "\u0002\u0786\u0787\u0007E\u0002\u0002\u0787\u0788\u0007J\u0002\u0002", + "\u0788\u0789\u0007C\u0002\u0002\u0789\u078a\u0007P\u0002\u0002\u078a", + "\u078b\u0007I\u0002\u0002\u078b\u078c\u0007G\u0002\u0002\u078c\u016e", + "\u0003\u0002\u0002\u0002\u078d\u078e\u0007C\u0002\u0002\u078e\u078f", + "\u0007T\u0002\u0002\u078f\u0790\u0007E\u0002\u0002\u0790\u0791\u0007", + "J\u0002\u0002\u0791\u0792\u0007K\u0002\u0002\u0792\u0793\u0007X\u0002", + "\u0002\u0793\u0794\u0007G\u0002\u0002\u0794\u0170\u0003\u0002\u0002", + "\u0002\u0795\u0796\u0007W\u0002\u0002\u0796\u0797\u0007P\u0002\u0002", + "\u0797\u0798\u0007C\u0002\u0002\u0798\u0799\u0007T\u0002\u0002\u0799", + "\u079a\u0007E\u0002\u0002\u079a\u079b\u0007J\u0002\u0002\u079b\u079c", + "\u0007K\u0002\u0002\u079c\u079d\u0007X\u0002\u0002\u079d\u079e\u0007", + "G\u0002\u0002\u079e\u0172\u0003\u0002\u0002\u0002\u079f\u07a0\u0007", + "H\u0002\u0002\u07a0\u07a1\u0007K\u0002\u0002\u07a1\u07a2\u0007N\u0002", + "\u0002\u07a2\u07a3\u0007G\u0002\u0002\u07a3\u07a4\u0007H\u0002\u0002", + "\u07a4\u07a5\u0007Q\u0002\u0002\u07a5\u07a6\u0007T\u0002\u0002\u07a6", + "\u07a7\u0007O\u0002\u0002\u07a7\u07a8\u0007C\u0002\u0002\u07a8\u07a9", + "\u0007V\u0002\u0002\u07a9\u0174\u0003\u0002\u0002\u0002\u07aa\u07ab", + "\u0007V\u0002\u0002\u07ab\u07ac\u0007Q\u0002\u0002\u07ac\u07ad\u0007", + "W\u0002\u0002\u07ad\u07ae\u0007E\u0002\u0002\u07ae\u07af\u0007J\u0002", + "\u0002\u07af\u0176\u0003\u0002\u0002\u0002\u07b0\u07b1\u0007E\u0002", + "\u0002\u07b1\u07b2\u0007Q\u0002\u0002\u07b2\u07b3\u0007O\u0002\u0002", + "\u07b3\u07b4\u0007R\u0002\u0002\u07b4\u07b5\u0007C\u0002\u0002\u07b5", + "\u07b6\u0007E\u0002\u0002\u07b6\u07b7\u0007V\u0002\u0002\u07b7\u0178", + "\u0003\u0002\u0002\u0002\u07b8\u07b9\u0007E\u0002\u0002\u07b9\u07ba", + "\u0007Q\u0002\u0002\u07ba\u07bb\u0007P\u0002\u0002\u07bb\u07bc\u0007", + "E\u0002\u0002\u07bc\u07bd\u0007C\u0002\u0002\u07bd\u07be\u0007V\u0002", + "\u0002\u07be\u07bf\u0007G\u0002\u0002\u07bf\u07c0\u0007P\u0002\u0002", + "\u07c0\u07c1\u0007C\u0002\u0002\u07c1\u07c2\u0007V\u0002\u0002\u07c2", + "\u07c3\u0007G\u0002\u0002\u07c3\u017a\u0003\u0002\u0002\u0002\u07c4", + "\u07c5\u0007E\u0002\u0002\u07c5\u07c6\u0007J\u0002\u0002\u07c6\u07c7", + "\u0007C\u0002\u0002\u07c7\u07c8\u0007P\u0002\u0002\u07c8\u07c9\u0007", + "I\u0002\u0002\u07c9\u07ca\u0007G\u0002\u0002\u07ca\u017c\u0003\u0002", + "\u0002\u0002\u07cb\u07cc\u0007E\u0002\u0002\u07cc\u07cd\u0007C\u0002", + "\u0002\u07cd\u07ce\u0007U\u0002\u0002\u07ce\u07cf\u0007E\u0002\u0002", + "\u07cf\u07d0\u0007C\u0002\u0002\u07d0\u07d1\u0007F\u0002\u0002\u07d1", + "\u07d2\u0007G\u0002\u0002\u07d2\u017e\u0003\u0002\u0002\u0002\u07d3", + "\u07d4\u0007T\u0002\u0002\u07d4\u07d5\u0007G\u0002\u0002\u07d5\u07d6", + "\u0007U\u0002\u0002\u07d6\u07d7\u0007V\u0002\u0002\u07d7\u07d8\u0007", + "T\u0002\u0002\u07d8\u07d9\u0007K\u0002\u0002\u07d9\u07da\u0007E\u0002", + "\u0002\u07da\u07db\u0007V\u0002\u0002\u07db\u0180\u0003\u0002\u0002", + "\u0002\u07dc\u07dd\u0007E\u0002\u0002\u07dd\u07de\u0007N\u0002\u0002", + "\u07de\u07df\u0007W\u0002\u0002\u07df\u07e0\u0007U\u0002\u0002\u07e0", + "\u07e1\u0007V\u0002\u0002\u07e1\u07e2\u0007G\u0002\u0002\u07e2\u07e3", + "\u0007T\u0002\u0002\u07e3\u07e4\u0007G\u0002\u0002\u07e4\u07e5\u0007", + "F\u0002\u0002\u07e5\u0182\u0003\u0002\u0002\u0002\u07e6\u07e7\u0007", + "U\u0002\u0002\u07e7\u07e8\u0007Q\u0002\u0002\u07e8\u07e9\u0007T\u0002", + "\u0002\u07e9\u07ea\u0007V\u0002\u0002\u07ea\u07eb\u0007G\u0002\u0002", + "\u07eb\u07ec\u0007F\u0002\u0002\u07ec\u0184\u0003\u0002\u0002\u0002", + "\u07ed\u07ee\u0007R\u0002\u0002\u07ee\u07ef\u0007W\u0002\u0002\u07ef", + "\u07f0\u0007T\u0002\u0002\u07f0\u07f1\u0007I\u0002\u0002\u07f1\u07f2", + "\u0007G\u0002\u0002\u07f2\u0186\u0003\u0002\u0002\u0002\u07f3\u07f4", + "\u0007K\u0002\u0002\u07f4\u07f5\u0007P\u0002\u0002\u07f5\u07f6\u0007", + "R\u0002\u0002\u07f6\u07f7\u0007W\u0002\u0002\u07f7\u07f8\u0007V\u0002", + "\u0002\u07f8\u07f9\u0007H\u0002\u0002\u07f9\u07fa\u0007Q\u0002\u0002", + "\u07fa\u07fb\u0007T\u0002\u0002\u07fb\u07fc\u0007O\u0002\u0002\u07fc", + "\u07fd\u0007C\u0002\u0002\u07fd\u07fe\u0007V\u0002\u0002\u07fe\u0188", + "\u0003\u0002\u0002\u0002\u07ff\u0800\u0007Q\u0002\u0002\u0800\u0801", + "\u0007W\u0002\u0002\u0801\u0802\u0007V\u0002\u0002\u0802\u0803\u0007", + "R\u0002\u0002\u0803\u0804\u0007W\u0002\u0002\u0804\u0805\u0007V\u0002", + "\u0002\u0805\u0806\u0007H\u0002\u0002\u0806\u0807\u0007Q\u0002\u0002", + "\u0807\u0808\u0007T\u0002\u0002\u0808\u0809\u0007O\u0002\u0002\u0809", + "\u080a\u0007C\u0002\u0002\u080a\u080b\u0007V\u0002\u0002\u080b\u018a", + "\u0003\u0002\u0002\u0002\u080c\u080d\u0007F\u0002\u0002\u080d\u080e", + "\u0007C\u0002\u0002\u080e\u080f\u0007V\u0002\u0002\u080f\u0810\u0007", + "C\u0002\u0002\u0810\u0811\u0007D\u0002\u0002\u0811\u0812\u0007C\u0002", + "\u0002\u0812\u0813\u0007U\u0002\u0002\u0813\u0814\u0007G\u0002\u0002", + "\u0814\u018c\u0003\u0002\u0002\u0002\u0815\u0816\u0007F\u0002\u0002", + "\u0816\u0817\u0007C\u0002\u0002\u0817\u0818\u0007V\u0002\u0002\u0818", + "\u0819\u0007C\u0002\u0002\u0819\u081a\u0007D\u0002\u0002\u081a\u081b", + "\u0007C\u0002\u0002\u081b\u081c\u0007U\u0002\u0002\u081c\u081d\u0007", + "G\u0002\u0002\u081d\u081e\u0007U\u0002\u0002\u081e\u018e\u0003\u0002", + "\u0002\u0002\u081f\u0820\u0007F\u0002\u0002\u0820\u0821\u0007H\u0002", + "\u0002\u0821\u0822\u0007U\u0002\u0002\u0822\u0190\u0003\u0002\u0002", + "\u0002\u0823\u0824\u0007V\u0002\u0002\u0824\u0825\u0007T\u0002\u0002", + "\u0825\u0826\u0007W\u0002\u0002\u0826\u0827\u0007P\u0002\u0002\u0827", + "\u0828\u0007E\u0002\u0002\u0828\u0829\u0007C\u0002\u0002\u0829\u082a", + "\u0007V\u0002\u0002\u082a\u082b\u0007G\u0002\u0002\u082b\u0192\u0003", + "\u0002\u0002\u0002\u082c\u082d\u0007C\u0002\u0002\u082d\u082e\u0007", + "P\u0002\u0002\u082e\u082f\u0007C\u0002\u0002\u082f\u0830\u0007N\u0002", + "\u0002\u0830\u0831\u0007[\u0002\u0002\u0831\u0832\u0007\\\u0002\u0002", + "\u0832\u0833\u0007G\u0002\u0002\u0833\u0194\u0003\u0002\u0002\u0002", + "\u0834\u0835\u0007E\u0002\u0002\u0835\u0836\u0007Q\u0002\u0002\u0836", + "\u0837\u0007O\u0002\u0002\u0837\u0838\u0007R\u0002\u0002\u0838\u0839", + "\u0007W\u0002\u0002\u0839\u083a\u0007V\u0002\u0002\u083a\u083b\u0007", + "G\u0002\u0002\u083b\u0196\u0003\u0002\u0002\u0002\u083c\u083d\u0007", + "N\u0002\u0002\u083d\u083e\u0007K\u0002\u0002\u083e\u083f\u0007U\u0002", + "\u0002\u083f\u0840\u0007V\u0002\u0002\u0840\u0198\u0003\u0002\u0002", + "\u0002\u0841\u0842\u0007U\u0002\u0002\u0842\u0843\u0007V\u0002\u0002", + "\u0843\u0844\u0007C\u0002\u0002\u0844\u0845\u0007V\u0002\u0002\u0845", + "\u0846\u0007K\u0002\u0002\u0846\u0847\u0007U\u0002\u0002\u0847\u0848", + "\u0007V\u0002\u0002\u0848\u0849\u0007K\u0002\u0002\u0849\u084a\u0007", + "E\u0002\u0002\u084a\u084b\u0007U\u0002\u0002\u084b\u019a\u0003\u0002", + "\u0002\u0002\u084c\u084d\u0007R\u0002\u0002\u084d\u084e\u0007C\u0002", + "\u0002\u084e\u084f\u0007T\u0002\u0002\u084f\u0850\u0007V\u0002\u0002", + "\u0850\u0851\u0007K\u0002\u0002\u0851\u0852\u0007V\u0002\u0002\u0852", + "\u0853\u0007K\u0002\u0002\u0853\u0854\u0007Q\u0002\u0002\u0854\u0855", + "\u0007P\u0002\u0002\u0855\u0856\u0007G\u0002\u0002\u0856\u0857\u0007", + "F\u0002\u0002\u0857\u019c\u0003\u0002\u0002\u0002\u0858\u0859\u0007", + "G\u0002\u0002\u0859\u085a\u0007Z\u0002\u0002\u085a\u085b\u0007V\u0002", + "\u0002\u085b\u085c\u0007G\u0002\u0002\u085c\u085d\u0007T\u0002\u0002", + "\u085d\u085e\u0007P\u0002\u0002\u085e\u085f\u0007C\u0002\u0002\u085f", + "\u0860\u0007N\u0002\u0002\u0860\u019e\u0003\u0002\u0002\u0002\u0861", + "\u0862\u0007F\u0002\u0002\u0862\u0863\u0007G\u0002\u0002\u0863\u0864", + "\u0007H\u0002\u0002\u0864\u0865\u0007K\u0002\u0002\u0865\u0866\u0007", + "P\u0002\u0002\u0866\u0867\u0007G\u0002\u0002\u0867\u0868\u0007F\u0002", + "\u0002\u0868\u01a0\u0003\u0002\u0002\u0002\u0869\u086a\u0007T\u0002", + "\u0002\u086a\u086b\u0007G\u0002\u0002\u086b\u086c\u0007X\u0002\u0002", + "\u086c\u086d\u0007Q\u0002\u0002\u086d\u086e\u0007M\u0002\u0002\u086e", + "\u086f\u0007G\u0002\u0002\u086f\u01a2\u0003\u0002\u0002\u0002\u0870", + "\u0871\u0007I\u0002\u0002\u0871\u0872\u0007T\u0002\u0002\u0872\u0873", + "\u0007C\u0002\u0002\u0873\u0874\u0007P\u0002\u0002\u0874\u0875\u0007", + "V\u0002\u0002\u0875\u01a4\u0003\u0002\u0002\u0002\u0876\u0877\u0007", + "N\u0002\u0002\u0877\u0878\u0007Q\u0002\u0002\u0878\u0879\u0007E\u0002", + "\u0002\u0879\u087a\u0007M\u0002\u0002\u087a\u01a6\u0003\u0002\u0002", + "\u0002\u087b\u087c\u0007W\u0002\u0002\u087c\u087d\u0007P\u0002\u0002", + "\u087d\u087e\u0007N\u0002\u0002\u087e\u087f\u0007Q\u0002\u0002\u087f", + "\u0880\u0007E\u0002\u0002\u0880\u0881\u0007M\u0002\u0002\u0881\u01a8", + "\u0003\u0002\u0002\u0002\u0882\u0883\u0007O\u0002\u0002\u0883\u0884", + "\u0007U\u0002\u0002\u0884\u0885\u0007E\u0002\u0002\u0885\u0886\u0007", + "M\u0002\u0002\u0886\u01aa\u0003\u0002\u0002\u0002\u0887\u0888\u0007", + "T\u0002\u0002\u0888\u0889\u0007G\u0002\u0002\u0889\u088a\u0007R\u0002", + "\u0002\u088a\u088b\u0007C\u0002\u0002\u088b\u088c\u0007K\u0002\u0002", + "\u088c\u088d\u0007T\u0002\u0002\u088d\u01ac\u0003\u0002\u0002\u0002", + "\u088e\u088f\u0007T\u0002\u0002\u088f\u0890\u0007G\u0002\u0002\u0890", + "\u0891\u0007E\u0002\u0002\u0891\u0892\u0007Q\u0002\u0002\u0892\u0893", + "\u0007X\u0002\u0002\u0893\u0894\u0007G\u0002\u0002\u0894\u0895\u0007", + "T\u0002\u0002\u0895\u01ae\u0003\u0002\u0002\u0002\u0896\u0897\u0007", + "G\u0002\u0002\u0897\u0898\u0007Z\u0002\u0002\u0898\u0899\u0007R\u0002", + "\u0002\u0899\u089a\u0007Q\u0002\u0002\u089a\u089b\u0007T\u0002\u0002", + "\u089b\u089c\u0007V\u0002\u0002\u089c\u01b0\u0003\u0002\u0002\u0002", + "\u089d\u089e\u0007K\u0002\u0002\u089e\u089f\u0007O\u0002\u0002\u089f", + "\u08a0\u0007R\u0002\u0002\u08a0\u08a1\u0007Q\u0002\u0002\u08a1\u08a2", + "\u0007T\u0002\u0002\u08a2\u08a3\u0007V\u0002\u0002\u08a3\u01b2\u0003", + "\u0002\u0002\u0002\u08a4\u08a5\u0007N\u0002\u0002\u08a5\u08a6\u0007", + "Q\u0002\u0002\u08a6\u08a7\u0007C\u0002\u0002\u08a7\u08a8\u0007F\u0002", + "\u0002\u08a8\u01b4\u0003\u0002\u0002\u0002\u08a9\u08aa\u0007T\u0002", + "\u0002\u08aa\u08ab\u0007Q\u0002\u0002\u08ab\u08ac\u0007N\u0002\u0002", + "\u08ac\u08ad\u0007G\u0002\u0002\u08ad\u01b6\u0003\u0002\u0002\u0002", + "\u08ae\u08af\u0007T\u0002\u0002\u08af\u08b0\u0007Q\u0002\u0002\u08b0", + "\u08b1\u0007N\u0002\u0002\u08b1\u08b2\u0007G\u0002\u0002\u08b2\u08b3", + "\u0007U\u0002\u0002\u08b3\u01b8\u0003\u0002\u0002\u0002\u08b4\u08b5", + "\u0007E\u0002\u0002\u08b5\u08b6\u0007Q\u0002\u0002\u08b6\u08b7\u0007", + "O\u0002\u0002\u08b7\u08b8\u0007R\u0002\u0002\u08b8\u08b9\u0007C\u0002", + "\u0002\u08b9\u08ba\u0007E\u0002\u0002\u08ba\u08bb\u0007V\u0002\u0002", + "\u08bb\u08bc\u0007K\u0002\u0002\u08bc\u08bd\u0007Q\u0002\u0002\u08bd", + "\u08be\u0007P\u0002\u0002\u08be\u08bf\u0007U\u0002\u0002\u08bf\u01ba", + "\u0003\u0002\u0002\u0002\u08c0\u08c1\u0007R\u0002\u0002\u08c1\u08c2", + "\u0007T\u0002\u0002\u08c2\u08c3\u0007K\u0002\u0002\u08c3\u08c4\u0007", + "P\u0002\u0002\u08c4\u08c5\u0007E\u0002\u0002\u08c5\u08c6\u0007K\u0002", + "\u0002\u08c6\u08c7\u0007R\u0002\u0002\u08c7\u08c8\u0007C\u0002\u0002", + "\u08c8\u08c9\u0007N\u0002\u0002\u08c9\u08ca\u0007U\u0002\u0002\u08ca", + "\u01bc\u0003\u0002\u0002\u0002\u08cb\u08cc\u0007V\u0002\u0002\u08cc", + "\u08cd\u0007T\u0002\u0002\u08cd\u08ce\u0007C\u0002\u0002\u08ce\u08cf", + "\u0007P\u0002\u0002\u08cf\u08d0\u0007U\u0002\u0002\u08d0\u08d1\u0007", + "C\u0002\u0002\u08d1\u08d2\u0007E\u0002\u0002\u08d2\u08d3\u0007V\u0002", + "\u0002\u08d3\u08d4\u0007K\u0002\u0002\u08d4\u08d5\u0007Q\u0002\u0002", + "\u08d5\u08d6\u0007P\u0002\u0002\u08d6\u08d7\u0007U\u0002\u0002\u08d7", + "\u01be\u0003\u0002\u0002\u0002\u08d8\u08d9\u0007K\u0002\u0002\u08d9", + "\u08da\u0007P\u0002\u0002\u08da\u08db\u0007F\u0002\u0002\u08db\u08dc", + "\u0007G\u0002\u0002\u08dc\u08dd\u0007Z\u0002\u0002\u08dd\u01c0\u0003", + "\u0002\u0002\u0002\u08de\u08df\u0007K\u0002\u0002\u08df\u08e0\u0007", + "P\u0002\u0002\u08e0\u08e1\u0007F\u0002\u0002\u08e1\u08e2\u0007G\u0002", + "\u0002\u08e2\u08e3\u0007Z\u0002\u0002\u08e3\u08e4\u0007G\u0002\u0002", + "\u08e4\u08e5\u0007U\u0002\u0002\u08e5\u01c2\u0003\u0002\u0002\u0002", + "\u08e6\u08e7\u0007N\u0002\u0002\u08e7\u08e8\u0007Q\u0002\u0002\u08e8", + "\u08e9\u0007E\u0002\u0002\u08e9\u08ea\u0007M\u0002\u0002\u08ea\u08eb", + "\u0007U\u0002\u0002\u08eb\u01c4\u0003\u0002\u0002\u0002\u08ec\u08ed", + "\u0007Q\u0002\u0002\u08ed\u08ee\u0007R\u0002\u0002\u08ee\u08ef\u0007", + "V\u0002\u0002\u08ef\u08f0\u0007K\u0002\u0002\u08f0\u08f1\u0007Q\u0002", + "\u0002\u08f1\u08f2\u0007P\u0002\u0002\u08f2\u01c6\u0003\u0002\u0002", + "\u0002\u08f3\u08f4\u0007C\u0002\u0002\u08f4\u08f5\u0007P\u0002\u0002", + "\u08f5\u08f6\u0007V\u0002\u0002\u08f6\u08f7\u0007K\u0002\u0002\u08f7", + "\u01c8\u0003\u0002\u0002\u0002\u08f8\u08f9\u0007N\u0002\u0002\u08f9", + "\u08fa\u0007Q\u0002\u0002\u08fa\u08fb\u0007E\u0002\u0002\u08fb\u08fc", + "\u0007C\u0002\u0002\u08fc\u08fd\u0007N\u0002\u0002\u08fd\u01ca\u0003", + "\u0002\u0002\u0002\u08fe\u08ff\u0007K\u0002\u0002\u08ff\u0900\u0007", + "P\u0002\u0002\u0900\u0901\u0007R\u0002\u0002\u0901\u0902\u0007C\u0002", + "\u0002\u0902\u0903\u0007V\u0002\u0002\u0903\u0904\u0007J\u0002\u0002", + "\u0904\u01cc\u0003\u0002\u0002\u0002\u0905\u0906\u0007Y\u0002\u0002", + "\u0906\u0907\u0007C\u0002\u0002\u0907\u0908\u0007V\u0002\u0002\u0908", + "\u0909\u0007G\u0002\u0002\u0909\u090a\u0007T\u0002\u0002\u090a\u090b", + "\u0007O\u0002\u0002\u090b\u090c\u0007C\u0002\u0002\u090c\u090d\u0007", + "T\u0002\u0002\u090d\u090e\u0007M\u0002\u0002\u090e\u01ce\u0003\u0002", + "\u0002\u0002\u090f\u0910\u0007W\u0002\u0002\u0910\u0911\u0007P\u0002", + "\u0002\u0911\u0912\u0007P\u0002\u0002\u0912\u0913\u0007G\u0002\u0002", + "\u0913\u0914\u0007U\u0002\u0002\u0914\u0915\u0007V\u0002\u0002\u0915", + "\u01d0\u0003\u0002\u0002\u0002\u0916\u0917\u0007O\u0002\u0002\u0917", + "\u0918\u0007C\u0002\u0002\u0918\u0919\u0007V\u0002\u0002\u0919\u091a", + "\u0007E\u0002\u0002\u091a\u091b\u0007J\u0002\u0002\u091b\u091c\u0007", + "a\u0002\u0002\u091c\u091d\u0007T\u0002\u0002\u091d\u091e\u0007G\u0002", + "\u0002\u091e\u091f\u0007E\u0002\u0002\u091f\u0920\u0007Q\u0002\u0002", + "\u0920\u0921\u0007I\u0002\u0002\u0921\u0922\u0007P\u0002\u0002\u0922", + "\u0923\u0007K\u0002\u0002\u0923\u0924\u0007\\\u0002\u0002\u0924\u0925", + "\u0007G\u0002\u0002\u0925\u01d2\u0003\u0002\u0002\u0002\u0926\u0927", + "\u0007O\u0002\u0002\u0927\u0928\u0007G\u0002\u0002\u0928\u0929\u0007", + "C\u0002\u0002\u0929\u092a\u0007U\u0002\u0002\u092a\u092b\u0007W\u0002", + "\u0002\u092b\u092c\u0007T\u0002\u0002\u092c\u092d\u0007G\u0002\u0002", + "\u092d\u092e\u0007U\u0002\u0002\u092e\u01d4\u0003\u0002\u0002\u0002", + "\u092f\u0930\u0007Q\u0002\u0002\u0930\u0931\u0007P\u0002\u0002\u0931", + "\u0932\u0007G\u0002\u0002\u0932\u01d6\u0003\u0002\u0002\u0002\u0933", + "\u0934\u0007R\u0002\u0002\u0934\u0935\u0007G\u0002\u0002\u0935\u0936", + "\u0007T\u0002\u0002\u0936\u01d8\u0003\u0002\u0002\u0002\u0937\u0938", + "\u0007O\u0002\u0002\u0938\u0939\u0007C\u0002\u0002\u0939\u093a\u0007", + "V\u0002\u0002\u093a\u093b\u0007E\u0002\u0002\u093b\u093c\u0007J\u0002", + "\u0002\u093c\u01da\u0003\u0002\u0002\u0002\u093d\u093e\u0007U\u0002", + "\u0002\u093e\u093f\u0007M\u0002\u0002\u093f\u0940\u0007K\u0002\u0002", + "\u0940\u0941\u0007R\u0002\u0002\u0941\u0942\u00073\u0002\u0002\u0942", + "\u01dc\u0003\u0002\u0002\u0002\u0943\u0944\u0007P\u0002\u0002\u0944", + "\u0945\u0007G\u0002\u0002\u0945\u0946\u0007Z\u0002\u0002\u0946\u0947", + "\u0007V\u0002\u0002\u0947\u01de\u0003\u0002\u0002\u0002\u0948\u0949", + "\u0007R\u0002\u0002\u0949\u094a\u0007C\u0002\u0002\u094a\u094b\u0007", + "U\u0002\u0002\u094b\u094c\u0007V\u0002\u0002\u094c\u01e0\u0003\u0002", + "\u0002\u0002\u094d\u094e\u0007R\u0002\u0002\u094e\u094f\u0007C\u0002", + "\u0002\u094f\u0950\u0007V\u0002\u0002\u0950\u0951\u0007V\u0002\u0002", + "\u0951\u0952\u0007G\u0002\u0002\u0952\u0953\u0007T\u0002\u0002\u0953", + "\u0954\u0007P\u0002\u0002\u0954\u01e2\u0003\u0002\u0002\u0002\u0955", + "\u0956\u0007Y\u0002\u0002\u0956\u0957\u0007K\u0002\u0002\u0957\u0958", + "\u0007V\u0002\u0002\u0958\u0959\u0007J\u0002\u0002\u0959\u095a\u0007", + "K\u0002\u0002\u095a\u095b\u0007P\u0002\u0002\u095b\u01e4\u0003\u0002", + "\u0002\u0002\u095c\u095d\u0007F\u0002\u0002\u095d\u095e\u0007G\u0002", + "\u0002\u095e\u095f\u0007H\u0002\u0002\u095f\u0960\u0007K\u0002\u0002", + "\u0960\u0961\u0007P\u0002\u0002\u0961\u0962\u0007G\u0002\u0002\u0962", + "\u01e6\u0003\u0002\u0002\u0002\u0963\u0964\u0007D\u0002\u0002\u0964", + "\u0965\u0007K\u0002\u0002\u0965\u0966\u0007I\u0002\u0002\u0966\u0967", + "\u0007K\u0002\u0002\u0967\u0968\u0007P\u0002\u0002\u0968\u0969\u0007", + "V\u0002\u0002\u0969\u096a\u0007a\u0002\u0002\u096a\u096b\u0007N\u0002", + "\u0002\u096b\u096c\u0007K\u0002\u0002\u096c\u096d\u0007V\u0002\u0002", + "\u096d\u096e\u0007G\u0002\u0002\u096e\u096f\u0007T\u0002\u0002\u096f", + "\u0970\u0007C\u0002\u0002\u0970\u0971\u0007N\u0002\u0002\u0971\u01e8", + "\u0003\u0002\u0002\u0002\u0972\u0973\u0007U\u0002\u0002\u0973\u0974", + "\u0007O\u0002\u0002\u0974\u0975\u0007C\u0002\u0002\u0975\u0976\u0007", + "N\u0002\u0002\u0976\u0977\u0007N\u0002\u0002\u0977\u0978\u0007K\u0002", + "\u0002\u0978\u0979\u0007P\u0002\u0002\u0979\u097a\u0007V\u0002\u0002", + "\u097a\u097b\u0007a\u0002\u0002\u097b\u097c\u0007N\u0002\u0002\u097c", + "\u097d\u0007K\u0002\u0002\u097d\u097e\u0007V\u0002\u0002\u097e\u097f", + "\u0007G\u0002\u0002\u097f\u0980\u0007T\u0002\u0002\u0980\u0981\u0007", + "C\u0002\u0002\u0981\u0982\u0007N\u0002\u0002\u0982\u01ea\u0003\u0002", + "\u0002\u0002\u0983\u0984\u0007V\u0002\u0002\u0984\u0985\u0007K\u0002", + "\u0002\u0985\u0986\u0007P\u0002\u0002\u0986\u0987\u0007[\u0002\u0002", + "\u0987\u0988\u0007K\u0002\u0002\u0988\u0989\u0007P\u0002\u0002\u0989", + "\u098a\u0007V\u0002\u0002\u098a\u098b\u0007a\u0002\u0002\u098b\u098c", + "\u0007N\u0002\u0002\u098c\u098d\u0007K\u0002\u0002\u098d\u098e\u0007", + "V\u0002\u0002\u098e\u098f\u0007G\u0002\u0002\u098f\u0990\u0007T\u0002", + "\u0002\u0990\u0991\u0007C\u0002\u0002\u0991\u0992\u0007N\u0002\u0002", + "\u0992\u01ec\u0003\u0002\u0002\u0002\u0993\u0994\u0007K\u0002\u0002", + "\u0994\u0995\u0007P\u0002\u0002\u0995\u0996\u0007V\u0002\u0002\u0996", + "\u0997\u0007G\u0002\u0002\u0997\u0998\u0007I\u0002\u0002\u0998\u0999", + "\u0007G\u0002\u0002\u0999\u099a\u0007T\u0002\u0002\u099a\u099b\u0007", + "a\u0002\u0002\u099b\u099c\u0007X\u0002\u0002\u099c\u099d\u0007C\u0002", + "\u0002\u099d\u099e\u0007N\u0002\u0002\u099e\u099f\u0007W\u0002\u0002", + "\u099f\u09a0\u0007G\u0002\u0002\u09a0\u01ee\u0003\u0002\u0002\u0002", + "\u09a1\u09a2\u0007F\u0002\u0002\u09a2\u09a3\u0007G\u0002\u0002\u09a3", + "\u09a4\u0007E\u0002\u0002\u09a4\u09a5\u0007K\u0002\u0002\u09a5\u09a6", + "\u0007O\u0002\u0002\u09a6\u09a7\u0007C\u0002\u0002\u09a7\u09a8\u0007", + "N\u0002\u0002\u09a8\u09a9\u0007a\u0002\u0002\u09a9\u09aa\u0007X\u0002", + "\u0002\u09aa\u09ab\u0007C\u0002\u0002\u09ab\u09ac\u0007N\u0002\u0002", + "\u09ac\u09ad\u0007W\u0002\u0002\u09ad\u09ae\u0007G\u0002\u0002\u09ae", + "\u01f0\u0003\u0002\u0002\u0002\u09af\u09b0\u0007F\u0002\u0002\u09b0", + "\u09b1\u0007Q\u0002\u0002\u09b1\u09b2\u0007W\u0002\u0002\u09b2\u09b3", + "\u0007D\u0002\u0002\u09b3\u09b4\u0007N\u0002\u0002\u09b4\u09b5\u0007", + "G\u0002\u0002\u09b5\u09b6\u0007a\u0002\u0002\u09b6\u09b7\u0007N\u0002", + "\u0002\u09b7\u09b8\u0007K\u0002\u0002\u09b8\u09b9\u0007V\u0002\u0002", + "\u09b9\u09ba\u0007G\u0002\u0002\u09ba\u09bb\u0007T\u0002\u0002\u09bb", + "\u09bc\u0007C\u0002\u0002\u09bc\u09bd\u0007N\u0002\u0002\u09bd\u01f2", + "\u0003\u0002\u0002\u0002\u09be\u09bf\u0007D\u0002\u0002\u09bf\u09c0", + "\u0007K\u0002\u0002\u09c0\u09c1\u0007I\u0002\u0002\u09c1\u09c2\u0007", + "F\u0002\u0002\u09c2\u09c3\u0007G\u0002\u0002\u09c3\u09c4\u0007E\u0002", + "\u0002\u09c4\u09c5\u0007K\u0002\u0002\u09c5\u09c6\u0007O\u0002\u0002", + "\u09c6\u09c7\u0007C\u0002\u0002\u09c7\u09c8\u0007N\u0002\u0002\u09c8", + "\u09c9\u0007a\u0002\u0002\u09c9\u09ca\u0007N\u0002\u0002\u09ca\u09cb", + "\u0007K\u0002\u0002\u09cb\u09cc\u0007V\u0002\u0002\u09cc\u09cd\u0007", + "G\u0002\u0002\u09cd\u09ce\u0007T\u0002\u0002\u09ce\u09cf\u0007C\u0002", + "\u0002\u09cf\u09d0\u0007N\u0002\u0002\u09d0\u01f4\u0003\u0002\u0002", + "\u0002\u09d1\u09d2\u0007K\u0002\u0002\u09d2\u09d3\u0007F\u0002\u0002", + "\u09d3\u09d4\u0007G\u0002\u0002\u09d4\u09d5\u0007P\u0002\u0002\u09d5", + "\u09d6\u0007V\u0002\u0002\u09d6\u09d7\u0007K\u0002\u0002\u09d7\u09d8", + "\u0007H\u0002\u0002\u09d8\u09d9\u0007K\u0002\u0002\u09d9\u09da\u0007", + "G\u0002\u0002\u09da\u09db\u0007T\u0002\u0002\u09db\u01f6\u0003\u0002", + "\u0002\u0002\u09dc\u09dd\u0007D\u0002\u0002\u09dd\u09de\u0007C\u0002", + "\u0002\u09de\u09df\u0007E\u0002\u0002\u09df\u09e0\u0007M\u0002\u0002", + "\u09e0\u09e1\u0007S\u0002\u0002\u09e1\u09e2\u0007W\u0002\u0002\u09e2", + "\u09e3\u0007Q\u0002\u0002\u09e3\u09e4\u0007V\u0002\u0002\u09e4\u09e5", + "\u0007G\u0002\u0002\u09e5\u09e6\u0007F\u0002\u0002\u09e6\u09e7\u0007", + "a\u0002\u0002\u09e7\u09e8\u0007K\u0002\u0002\u09e8\u09e9\u0007F\u0002", + "\u0002\u09e9\u09ea\u0007G\u0002\u0002\u09ea\u09eb\u0007P\u0002\u0002", + "\u09eb\u09ec\u0007V\u0002\u0002\u09ec\u09ed\u0007K\u0002\u0002\u09ed", + "\u09ee\u0007H\u0002\u0002\u09ee\u09ef\u0007K\u0002\u0002\u09ef\u09f0", + "\u0007G\u0002\u0002\u09f0\u09f1\u0007T\u0002\u0002\u09f1\u01f8\u0003", + "\u0002\u0002\u0002\u09f2\u09f3\u0007U\u0002\u0002\u09f3\u09f4\u0007", + "K\u0002\u0002\u09f4\u09f5\u0007O\u0002\u0002\u09f5\u09f6\u0007R\u0002", + "\u0002\u09f6\u09f7\u0007N\u0002\u0002\u09f7\u09f8\u0007G\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\u0007", + "P\u0002\u0002\u09ff\u0a00\u0007V\u0002\u0002\u0a00\u01fa\u0003\u0002", + "\u0002\u0002\u0a01\u0a02\u0007D\u0002\u0002\u0a02\u0a03\u0007T\u0002", + "\u0002\u0a03\u0a04\u0007C\u0002\u0002\u0a04\u0a05\u0007E\u0002\u0002", + "\u0a05\u0a06\u0007M\u0002\u0002\u0a06\u0a07\u0007G\u0002\u0002\u0a07", + "\u0a08\u0007V\u0002\u0002\u0a08\u0a09\u0007G\u0002\u0002\u0a09\u0a0a", + "\u0007F\u0002\u0002\u0a0a\u0a0b\u0007a\u0002\u0002\u0a0b\u0a0c\u0007", + "G\u0002\u0002\u0a0c\u0a0d\u0007O\u0002\u0002\u0a0d\u0a0e\u0007R\u0002", + "\u0002\u0a0e\u0a0f\u0007V\u0002\u0002\u0a0f\u0a10\u0007[\u0002\u0002", + "\u0a10\u0a11\u0007a\u0002\u0002\u0a11\u0a12\u0007E\u0002\u0002\u0a12", + "\u0a13\u0007Q\u0002\u0002\u0a13\u0a14\u0007O\u0002\u0002\u0a14\u0a15", + "\u0007O\u0002\u0002\u0a15\u0a16\u0007G\u0002\u0002\u0a16\u0a17\u0007", + "P\u0002\u0002\u0a17\u0a18\u0007V\u0002\u0002\u0a18\u01fc\u0003\u0002", + "\u0002\u0002\u0a19\u0a1a\u0007D\u0002\u0002\u0a1a\u0a1b\u0007T\u0002", + "\u0002\u0a1b\u0a1c\u0007C\u0002\u0002\u0a1c\u0a1d\u0007E\u0002\u0002", + "\u0a1d\u0a1e\u0007M\u0002\u0002\u0a1e\u0a1f\u0007G\u0002\u0002\u0a1f", + "\u0a20\u0007V\u0002\u0002\u0a20\u0a21\u0007G\u0002\u0002\u0a21\u0a22", + "\u0007F\u0002\u0002\u0a22\u0a23\u0007a\u0002\u0002\u0a23\u0a24\u0007", + "E\u0002\u0002\u0a24\u0a25\u0007Q\u0002\u0002\u0a25\u0a26\u0007O\u0002", + "\u0002\u0a26\u0a27\u0007O\u0002\u0002\u0a27\u0a28\u0007G\u0002\u0002", + "\u0a28\u0a29\u0007P\u0002\u0002\u0a29\u0a2a\u0007V\u0002\u0002\u0a2a", + "\u01fe\u0003\u0002\u0002\u0002\u0a2b\u0a2c\u0007Y\u0002\u0002\u0a2c", + "\u0a2d\u0007U\u0002\u0002\u0a2d\u0200\u0003\u0002\u0002\u0002\u0a2e", + "\u0a2f\u0007W\u0002\u0002\u0a2f\u0a30\u0007P\u0002\u0002\u0a30\u0a31", + "\u0007T\u0002\u0002\u0a31\u0a32\u0007G\u0002\u0002\u0a32\u0a33\u0007", + "E\u0002\u0002\u0a33\u0a34\u0007Q\u0002\u0002\u0a34\u0a35\u0007I\u0002", + "\u0002\u0a35\u0a36\u0007P\u0002\u0002\u0a36\u0a37\u0007K\u0002\u0002", + "\u0a37\u0a38\u0007\\\u0002\u0002\u0a38\u0a39\u0007G\u0002\u0002\u0a39", + "\u0a3a\u0007F\u0002\u0002\u0a3a\u0202\u0003\u0002\u0002\u0002\u0a3b", + "\u0a3d\u0007b\u0002\u0002\u0a3c\u0a3e\n\u0004\u0002\u0002\u0a3d\u0a3c", + "\u0003\u0002\u0002\u0002\u0a3e\u0a3f\u0003\u0002\u0002\u0002\u0a3f\u0a3d", + "\u0003\u0002\u0002\u0002\u0a3f\u0a40\u0003\u0002\u0002\u0002\u0a40\u0a41", + "\u0003\u0002\u0002\u0002\u0a41\u0a42\u0007b\u0002\u0002\u0a42\u0204", + "\u0003\u0002\u0002\u0002\u0a43\u0a45\u0007$\u0002\u0002\u0a44\u0a46", + "\n\u0005\u0002\u0002\u0a45\u0a44\u0003\u0002\u0002\u0002\u0a46\u0a47", + "\u0003\u0002\u0002\u0002\u0a47\u0a45\u0003\u0002\u0002\u0002\u0a47\u0a48", + "\u0003\u0002\u0002\u0002\u0a48\u0a49\u0003\u0002\u0002\u0002\u0a49\u0a4a", + "\u0007$\u0002\u0002\u0a4a\u0206\u0003\u0002\u0002\u0002\u0a4b\u0a4c", + "\u00070\u0002\u0002\u0a4c\u0a4d\u0005\u0283\u0142\u0002\u0a4d\u0208", + "\u0003\u0002\u0002\u0002\u0a4e\u0a4f\u0005\u0283\u0142\u0002\u0a4f\u020a", + "\u0003\u0002\u0002\u0002\u0a50\u0a51\u0007U\u0002\u0002\u0a51\u0a52", + "\u0007[\u0002\u0002\u0a52\u0a53\u0007U\u0002\u0002\u0a53\u0a54\u0007", + "V\u0002\u0002\u0a54\u0a55\u0007G\u0002\u0002\u0a55\u0a56\u0007O\u0002", + "\u0002\u0a56\u020c\u0003\u0002\u0002\u0002\u0a57\u0a58\u0007U\u0002", + "\u0002\u0a58\u0a59\u0007V\u0002\u0002\u0a59\u0a5a\u0007T\u0002\u0002", + "\u0a5a\u0a5b\u0007K\u0002\u0002\u0a5b\u0a5c\u0007P\u0002\u0002\u0a5c", + "\u0a5d\u0007I\u0002\u0002\u0a5d\u020e\u0003\u0002\u0002\u0002\u0a5e", + "\u0a5f\u0007C\u0002\u0002\u0a5f\u0a60\u0007T\u0002\u0002\u0a60\u0a61", + "\u0007T\u0002\u0002\u0a61\u0a62\u0007C\u0002\u0002\u0a62\u0a63\u0007", + "[\u0002\u0002\u0a63\u0210\u0003\u0002\u0002\u0002\u0a64\u0a65\u0007", + "O\u0002\u0002\u0a65\u0a66\u0007C\u0002\u0002\u0a66\u0a67\u0007R\u0002", + "\u0002\u0a67\u0212\u0003\u0002\u0002\u0002\u0a68\u0a69\u0007E\u0002", + "\u0002\u0a69\u0a6a\u0007J\u0002\u0002\u0a6a\u0a6b\u0007C\u0002\u0002", + "\u0a6b\u0a6c\u0007T\u0002\u0002\u0a6c\u0214\u0003\u0002\u0002\u0002", + "\u0a6d\u0a6e\u0007X\u0002\u0002\u0a6e\u0a6f\u0007C\u0002\u0002\u0a6f", + "\u0a70\u0007T\u0002\u0002\u0a70\u0a71\u0007E\u0002\u0002\u0a71\u0a72", + "\u0007J\u0002\u0002\u0a72\u0a73\u0007C\u0002\u0002\u0a73\u0a74\u0007", + "T\u0002\u0002\u0a74\u0216\u0003\u0002\u0002\u0002\u0a75\u0a76\u0007", + "D\u0002\u0002\u0a76\u0a77\u0007K\u0002\u0002\u0a77\u0a78\u0007P\u0002", + "\u0002\u0a78\u0a79\u0007C\u0002\u0002\u0a79\u0a7a\u0007T\u0002\u0002", + "\u0a7a\u0a7b\u0007[\u0002\u0002\u0a7b\u0218\u0003\u0002\u0002\u0002", + "\u0a7c\u0a7d\u0007X\u0002\u0002\u0a7d\u0a7e\u0007C\u0002\u0002\u0a7e", + "\u0a7f\u0007T\u0002\u0002\u0a7f\u0a80\u0007D\u0002\u0002\u0a80\u0a81", + "\u0007K\u0002\u0002\u0a81\u0a82\u0007P\u0002\u0002\u0a82\u0a83\u0007", + "C\u0002\u0002\u0a83\u0a84\u0007T\u0002\u0002\u0a84\u0a85\u0007[\u0002", + "\u0002\u0a85\u021a\u0003\u0002\u0002\u0002\u0a86\u0a87\u0007D\u0002", + "\u0002\u0a87\u0a88\u0007[\u0002\u0002\u0a88\u0a89\u0007V\u0002\u0002", + "\u0a89\u0a8a\u0007G\u0002\u0002\u0a8a\u0a8b\u0007U\u0002\u0002\u0a8b", + "\u021c\u0003\u0002\u0002\u0002\u0a8c\u0a8d\u0007F\u0002\u0002\u0a8d", + "\u0a8e\u0007G\u0002\u0002\u0a8e\u0a8f\u0007E\u0002\u0002\u0a8f\u0a90", + "\u0007K\u0002\u0002\u0a90\u0a91\u0007O\u0002\u0002\u0a91\u0a92\u0007", + "C\u0002\u0002\u0a92\u0a93\u0007N\u0002\u0002\u0a93\u021e\u0003\u0002", + "\u0002\u0002\u0a94\u0a95\u0007V\u0002\u0002\u0a95\u0a96\u0007K\u0002", + "\u0002\u0a96\u0a97\u0007P\u0002\u0002\u0a97\u0a98\u0007[\u0002\u0002", + "\u0a98\u0a99\u0007K\u0002\u0002\u0a99\u0a9a\u0007P\u0002\u0002\u0a9a", + "\u0a9b\u0007V\u0002\u0002\u0a9b\u0220\u0003\u0002\u0002\u0002\u0a9c", + "\u0a9d\u0007U\u0002\u0002\u0a9d\u0a9e\u0007O\u0002\u0002\u0a9e\u0a9f", + "\u0007C\u0002\u0002\u0a9f\u0aa0\u0007N\u0002\u0002\u0aa0\u0aa1\u0007", + "N\u0002\u0002\u0aa1\u0aa2\u0007K\u0002\u0002\u0aa2\u0aa3\u0007P\u0002", + "\u0002\u0aa3\u0aa4\u0007V\u0002\u0002\u0aa4\u0222\u0003\u0002\u0002", + "\u0002\u0aa5\u0aa6\u0007K\u0002\u0002\u0aa6\u0aa7\u0007P\u0002\u0002", + "\u0aa7\u0aa8\u0007V\u0002\u0002\u0aa8\u0224\u0003\u0002\u0002\u0002", + "\u0aa9\u0aaa\u0007D\u0002\u0002\u0aaa\u0aab\u0007K\u0002\u0002\u0aab", + "\u0aac\u0007I\u0002\u0002\u0aac\u0aad\u0007K\u0002\u0002\u0aad\u0aae", + "\u0007P\u0002\u0002\u0aae\u0aaf\u0007V\u0002\u0002\u0aaf\u0226\u0003", + "\u0002\u0002\u0002\u0ab0\u0ab1\u0007H\u0002\u0002\u0ab1\u0ab2\u0007", + "N\u0002\u0002\u0ab2\u0ab3\u0007Q\u0002\u0002\u0ab3\u0ab4\u0007C\u0002", + "\u0002\u0ab4\u0ab5\u0007V\u0002\u0002\u0ab5\u0228\u0003\u0002\u0002", + "\u0002\u0ab6\u0ab7\u0007F\u0002\u0002\u0ab7\u0ab8\u0007Q\u0002\u0002", + "\u0ab8\u0ab9\u0007W\u0002\u0002\u0ab9\u0aba\u0007D\u0002\u0002\u0aba", + "\u0abb\u0007N\u0002\u0002\u0abb\u0abc\u0007G\u0002\u0002\u0abc\u022a", + "\u0003\u0002\u0002\u0002\u0abd\u0abe\u0007F\u0002\u0002\u0abe\u0abf", + "\u0007C\u0002\u0002\u0abf\u0ac0\u0007V\u0002\u0002\u0ac0\u0ac1\u0007", + "G\u0002\u0002\u0ac1\u022c\u0003\u0002\u0002\u0002\u0ac2\u0ac3\u0007", + "V\u0002\u0002\u0ac3\u0ac4\u0007K\u0002\u0002\u0ac4\u0ac5\u0007O\u0002", + "\u0002\u0ac5\u0ac6\u0007G\u0002\u0002\u0ac6\u022e\u0003\u0002\u0002", + "\u0002\u0ac7\u0ac8\u0007V\u0002\u0002\u0ac8\u0ac9\u0007K\u0002\u0002", + "\u0ac9\u0aca\u0007O\u0002\u0002\u0aca\u0acb\u0007G\u0002\u0002\u0acb", + "\u0acc\u0007U\u0002\u0002\u0acc\u0acd\u0007V\u0002\u0002\u0acd\u0ace", + "\u0007C\u0002\u0002\u0ace\u0acf\u0007O\u0002\u0002\u0acf\u0ad0\u0007", + "R\u0002\u0002\u0ad0\u0230\u0003\u0002\u0002\u0002\u0ad1\u0ad2\u0007", + "O\u0002\u0002\u0ad2\u0ad3\u0007W\u0002\u0002\u0ad3\u0ad4\u0007N\u0002", + "\u0002\u0ad4\u0ad5\u0007V\u0002\u0002\u0ad5\u0ad6\u0007K\u0002\u0002", + "\u0ad6\u0ad7\u0007U\u0002\u0002\u0ad7\u0ad8\u0007G\u0002\u0002\u0ad8", + "\u0ad9\u0007V\u0002\u0002\u0ad9\u0232\u0003\u0002\u0002\u0002\u0ada", + "\u0adb\u0007D\u0002\u0002\u0adb\u0adc\u0007Q\u0002\u0002\u0adc\u0add", + "\u0007Q\u0002\u0002\u0add\u0ade\u0007N\u0002\u0002\u0ade\u0adf\u0007", + "G\u0002\u0002\u0adf\u0ae0\u0007C\u0002\u0002\u0ae0\u0ae1\u0007P\u0002", + "\u0002\u0ae1\u0234\u0003\u0002\u0002\u0002\u0ae2\u0ae3\u0007T\u0002", + "\u0002\u0ae3\u0ae4\u0007C\u0002\u0002\u0ae4\u0ae5\u0007Y\u0002\u0002", + "\u0ae5\u0236\u0003\u0002\u0002\u0002\u0ae6\u0ae7\u0007T\u0002\u0002", + "\u0ae7\u0ae8\u0007Q\u0002\u0002\u0ae8\u0ae9\u0007Y\u0002\u0002\u0ae9", + "\u0238\u0003\u0002\u0002\u0002\u0aea\u0aeb\u0007P\u0002\u0002\u0aeb", + "\u0aec\u0007W\u0002\u0002\u0aec\u0aed\u0007N\u0002\u0002\u0aed\u0aee", + "\u0007N\u0002\u0002\u0aee\u023a\u0003\u0002\u0002\u0002\u0aef\u0af0", + "\u0007?\u0002\u0002\u0af0\u023c\u0003\u0002\u0002\u0002\u0af1\u0af2", + "\u0007@\u0002\u0002\u0af2\u023e\u0003\u0002\u0002\u0002\u0af3\u0af4", + "\u0007>\u0002\u0002\u0af4\u0240\u0003\u0002\u0002\u0002\u0af5\u0af6", + "\u0007#\u0002\u0002\u0af6\u0242\u0003\u0002\u0002\u0002\u0af7\u0af8", + "\u0007\u0080\u0002\u0002\u0af8\u0244\u0003\u0002\u0002\u0002\u0af9\u0afa", + "\u0007~\u0002\u0002\u0afa\u0246\u0003\u0002\u0002\u0002\u0afb\u0afc", + "\u0007(\u0002\u0002\u0afc\u0248\u0003\u0002\u0002\u0002\u0afd\u0afe", + "\u0007`\u0002\u0002\u0afe\u024a\u0003\u0002\u0002\u0002\u0aff\u0b00", + "\u00070\u0002\u0002\u0b00\u024c\u0003\u0002\u0002\u0002\u0b01\u0b02", + "\u0007]\u0002\u0002\u0b02\u024e\u0003\u0002\u0002\u0002\u0b03\u0b04", + "\u0007_\u0002\u0002\u0b04\u0250\u0003\u0002\u0002\u0002\u0b05\u0b06", + "\u0007*\u0002\u0002\u0b06\u0252\u0003\u0002\u0002\u0002\u0b07\u0b08", + "\u0007+\u0002\u0002\u0b08\u0254\u0003\u0002\u0002\u0002\u0b09\u0b0a", + "\u0007.\u0002\u0002\u0b0a\u0256\u0003\u0002\u0002\u0002\u0b0b\u0b0c", + "\u0007=\u0002\u0002\u0b0c\u0258\u0003\u0002\u0002\u0002\u0b0d\u0b0e", + "\u0007B\u0002\u0002\u0b0e\u025a\u0003\u0002\u0002\u0002\u0b0f\u0b10", + "\u00072\u0002\u0002\u0b10\u025c\u0003\u0002\u0002\u0002\u0b11\u0b12", + "\u00073\u0002\u0002\u0b12\u025e\u0003\u0002\u0002\u0002\u0b13\u0b14", + "\u00074\u0002\u0002\u0b14\u0260\u0003\u0002\u0002\u0002\u0b15\u0b16", + "\u0007)\u0002\u0002\u0b16\u0262\u0003\u0002\u0002\u0002\u0b17\u0b18", + "\u0007$\u0002\u0002\u0b18\u0264\u0003\u0002\u0002\u0002\u0b19\u0b1a", + "\u0007b\u0002\u0002\u0b1a\u0266\u0003\u0002\u0002\u0002\u0b1b\u0b1c", + "\u0007<\u0002\u0002\u0b1c\u0268\u0003\u0002\u0002\u0002\u0b1d\u0b1e", + "\u0007,\u0002\u0002\u0b1e\u026a\u0003\u0002\u0002\u0002\u0b1f\u0b20", + "\u0007a\u0002\u0002\u0b20\u026c\u0003\u0002\u0002\u0002\u0b21\u0b22", + "\u0007/\u0002\u0002\u0b22\u026e\u0003\u0002\u0002\u0002\u0b23\u0b24", + "\u0007-\u0002\u0002\u0b24\u0270\u0003\u0002\u0002\u0002\u0b25\u0b26", + "\u0007\'\u0002\u0002\u0b26\u0272\u0003\u0002\u0002\u0002\u0b27\u0b28", + "\u0007/\u0002\u0002\u0b28\u0b29\u0007/\u0002\u0002\u0b29\u0274\u0003", + "\u0002\u0002\u0002\u0b2a\u0b2b\u00071\u0002\u0002\u0b2b\u0276\u0003", + "\u0002\u0002\u0002\u0b2c\u0b30\u0005\u0289\u0145\u0002\u0b2d\u0b30\u0005", + "\u028b\u0146\u0002\u0b2e\u0b30\u0005\u028f\u0148\u0002\u0b2f\u0b2c\u0003", + "\u0002\u0002\u0002\u0b2f\u0b2d\u0003\u0002\u0002\u0002\u0b2f\u0b2e\u0003", + "\u0002\u0002\u0002\u0b30\u0278\u0003\u0002\u0002\u0002\u0b31\u0b33\u0005", + "\u0285\u0143\u0002\u0b32\u0b31\u0003\u0002\u0002\u0002\u0b33\u0b34\u0003", + "\u0002\u0002\u0002\u0b34\u0b32\u0003\u0002\u0002\u0002\u0b34\u0b35\u0003", + "\u0002\u0002\u0002\u0b35\u027a\u0003\u0002\u0002\u0002\u0b36\u0b38\u0005", + "\u0285\u0143\u0002\u0b37\u0b36\u0003\u0002\u0002\u0002\u0b38\u0b39\u0003", + "\u0002\u0002\u0002\u0b39\u0b37\u0003\u0002\u0002\u0002\u0b39\u0b3a\u0003", + "\u0002\u0002\u0002\u0b3a\u0b3c\u0003\u0002\u0002\u0002\u0b3b\u0b37\u0003", + "\u0002\u0002\u0002\u0b3b\u0b3c\u0003\u0002\u0002\u0002\u0b3c\u0b3d\u0003", + "\u0002\u0002\u0002\u0b3d\u0b3f\u00070\u0002\u0002\u0b3e\u0b40\u0005", + "\u0285\u0143\u0002\u0b3f\u0b3e\u0003\u0002\u0002\u0002\u0b40\u0b41\u0003", + "\u0002\u0002\u0002\u0b41\u0b3f\u0003\u0002\u0002\u0002\u0b41\u0b42\u0003", + "\u0002\u0002\u0002\u0b42\u0b62\u0003\u0002\u0002\u0002\u0b43\u0b45\u0005", + "\u0285\u0143\u0002\u0b44\u0b43\u0003\u0002\u0002\u0002\u0b45\u0b46\u0003", + "\u0002\u0002\u0002\u0b46\u0b44\u0003\u0002\u0002\u0002\u0b46\u0b47\u0003", + "\u0002\u0002\u0002\u0b47\u0b48\u0003\u0002\u0002\u0002\u0b48\u0b49\u0007", + "0\u0002\u0002\u0b49\u0b4a\u0005\u0281\u0141\u0002\u0b4a\u0b62\u0003", + "\u0002\u0002\u0002\u0b4b\u0b4d\u0005\u0285\u0143\u0002\u0b4c\u0b4b\u0003", + "\u0002\u0002\u0002\u0b4d\u0b4e\u0003\u0002\u0002\u0002\u0b4e\u0b4c\u0003", + "\u0002\u0002\u0002\u0b4e\u0b4f\u0003\u0002\u0002\u0002\u0b4f\u0b51\u0003", + "\u0002\u0002\u0002\u0b50\u0b4c\u0003\u0002\u0002\u0002\u0b50\u0b51\u0003", + "\u0002\u0002\u0002\u0b51\u0b52\u0003\u0002\u0002\u0002\u0b52\u0b54\u0007", + "0\u0002\u0002\u0b53\u0b55\u0005\u0285\u0143\u0002\u0b54\u0b53\u0003", + "\u0002\u0002\u0002\u0b55\u0b56\u0003\u0002\u0002\u0002\u0b56\u0b54\u0003", + "\u0002\u0002\u0002\u0b56\u0b57\u0003\u0002\u0002\u0002\u0b57\u0b58\u0003", + "\u0002\u0002\u0002\u0b58\u0b59\u0005\u0281\u0141\u0002\u0b59\u0b62\u0003", + "\u0002\u0002\u0002\u0b5a\u0b5c\u0005\u0285\u0143\u0002\u0b5b\u0b5a\u0003", + "\u0002\u0002\u0002\u0b5c\u0b5d\u0003\u0002\u0002\u0002\u0b5d\u0b5b\u0003", + "\u0002\u0002\u0002\u0b5d\u0b5e\u0003\u0002\u0002\u0002\u0b5e\u0b5f\u0003", + "\u0002\u0002\u0002\u0b5f\u0b60\u0005\u0281\u0141\u0002\u0b60\u0b62\u0003", + "\u0002\u0002\u0002\u0b61\u0b3b\u0003\u0002\u0002\u0002\u0b61\u0b44\u0003", + "\u0002\u0002\u0002\u0b61\u0b50\u0003\u0002\u0002\u0002\u0b61\u0b5b\u0003", + "\u0002\u0002\u0002\u0b62\u027c\u0003\u0002\u0002\u0002\u0b63\u0b64\u0005", + "\u028d\u0147\u0002\u0b64\u027e\u0003\u0002\u0002\u0002\u0b65\u0b69\u0005", + "\u0287\u0144\u0002\u0b66\u0b69\u0005\u0285\u0143\u0002\u0b67\u0b69\u0005", + "\u026b\u0136\u0002\u0b68\u0b65\u0003\u0002\u0002\u0002\u0b68\u0b66\u0003", + "\u0002\u0002\u0002\u0b68\u0b67\u0003\u0002\u0002\u0002\u0b69\u0b6a\u0003", + "\u0002\u0002\u0002\u0b6a\u0b68\u0003\u0002\u0002\u0002\u0b6a\u0b6b\u0003", + "\u0002\u0002\u0002\u0b6b\u0280\u0003\u0002\u0002\u0002\u0b6c\u0b6e\u0007", + "G\u0002\u0002\u0b6d\u0b6f\t\u0006\u0002\u0002\u0b6e\u0b6d\u0003\u0002", + "\u0002\u0002\u0b6e\u0b6f\u0003\u0002\u0002\u0002\u0b6f\u0b71\u0003\u0002", + "\u0002\u0002\u0b70\u0b72\u0005\u0285\u0143\u0002\u0b71\u0b70\u0003\u0002", + "\u0002\u0002\u0b72\u0b73\u0003\u0002\u0002\u0002\u0b73\u0b71\u0003\u0002", + "\u0002\u0002\u0b73\u0b74\u0003\u0002\u0002\u0002\u0b74\u0282\u0003\u0002", + "\u0002\u0002\u0b75\u0b77\t\u0007\u0002\u0002\u0b76\u0b75\u0003\u0002", + "\u0002\u0002\u0b77\u0b7a\u0003\u0002\u0002\u0002\u0b78\u0b79\u0003\u0002", + "\u0002\u0002\u0b78\u0b76\u0003\u0002\u0002\u0002\u0b79\u0b7c\u0003\u0002", + "\u0002\u0002\u0b7a\u0b78\u0003\u0002\u0002\u0002\u0b7b\u0b7d\t\b\u0002", + "\u0002\u0b7c\u0b7b\u0003\u0002\u0002\u0002\u0b7d\u0b7e\u0003\u0002\u0002", + "\u0002\u0b7e\u0b7f\u0003\u0002\u0002\u0002\u0b7e\u0b7c\u0003\u0002\u0002", + "\u0002\u0b7f\u0b83\u0003\u0002\u0002\u0002\u0b80\u0b82\t\u0007\u0002", + "\u0002\u0b81\u0b80\u0003\u0002\u0002\u0002\u0b82\u0b85\u0003\u0002\u0002", + "\u0002\u0b83\u0b81\u0003\u0002\u0002\u0002\u0b83\u0b84\u0003\u0002\u0002", + "\u0002\u0b84\u0284\u0003\u0002\u0002\u0002\u0b85\u0b83\u0003\u0002\u0002", + "\u0002\u0b86\u0b87\t\t\u0002\u0002\u0b87\u0286\u0003\u0002\u0002\u0002", + "\u0b88\u0b89\t\n\u0002\u0002\u0b89\u0288\u0003\u0002\u0002\u0002\u0b8a", + "\u0b92\u0007$\u0002\u0002\u0b8b\u0b8c\u0007^\u0002\u0002\u0b8c\u0b91", + "\u000b\u0002\u0002\u0002\u0b8d\u0b8e\u0007$\u0002\u0002\u0b8e\u0b91", + "\u0007$\u0002\u0002\u0b8f\u0b91\n\u000b\u0002\u0002\u0b90\u0b8b\u0003", + "\u0002\u0002\u0002\u0b90\u0b8d\u0003\u0002\u0002\u0002\u0b90\u0b8f\u0003", + "\u0002\u0002\u0002\u0b91\u0b94\u0003\u0002\u0002\u0002\u0b92\u0b90\u0003", + "\u0002\u0002\u0002\u0b92\u0b93\u0003\u0002\u0002\u0002\u0b93\u0b95\u0003", + "\u0002\u0002\u0002\u0b94\u0b92\u0003\u0002\u0002\u0002\u0b95\u0b96\u0007", + "$\u0002\u0002\u0b96\u028a\u0003\u0002\u0002\u0002\u0b97\u0b9f\u0007", + ")\u0002\u0002\u0b98\u0b99\u0007^\u0002\u0002\u0b99\u0b9e\u000b\u0002", + "\u0002\u0002\u0b9a\u0b9b\u0007)\u0002\u0002\u0b9b\u0b9e\u0007)\u0002", + "\u0002\u0b9c\u0b9e\n\f\u0002\u0002\u0b9d\u0b98\u0003\u0002\u0002\u0002", + "\u0b9d\u0b9a\u0003\u0002\u0002\u0002\u0b9d\u0b9c\u0003\u0002\u0002\u0002", + "\u0b9e\u0ba1\u0003\u0002\u0002\u0002\u0b9f\u0b9d\u0003\u0002\u0002\u0002", + "\u0b9f\u0ba0\u0003\u0002\u0002\u0002\u0ba0\u0ba2\u0003\u0002\u0002\u0002", + "\u0ba1\u0b9f\u0003\u0002\u0002\u0002\u0ba2\u0ba3\u0007)\u0002\u0002", + "\u0ba3\u028c\u0003\u0002\u0002\u0002\u0ba4\u0ba5\u0007D\u0002\u0002", + "\u0ba5\u0ba7\u0007)\u0002\u0002\u0ba6\u0ba8\t\r\u0002\u0002\u0ba7\u0ba6", + "\u0003\u0002\u0002\u0002\u0ba8\u0ba9\u0003\u0002\u0002\u0002\u0ba9\u0ba7", + "\u0003\u0002\u0002\u0002\u0ba9\u0baa\u0003\u0002\u0002\u0002\u0baa\u0bab", + "\u0003\u0002\u0002\u0002\u0bab\u0bac\u0007)\u0002\u0002\u0bac\u028e", + "\u0003\u0002\u0002\u0002\u0bad\u0bb5\u0007b\u0002\u0002\u0bae\u0baf", + "\u0007^\u0002\u0002\u0baf\u0bb4\u000b\u0002\u0002\u0002\u0bb0\u0bb1", + "\u0007b\u0002\u0002\u0bb1\u0bb4\u0007b\u0002\u0002\u0bb2\u0bb4\n\u000e", + "\u0002\u0002\u0bb3\u0bae\u0003\u0002\u0002\u0002\u0bb3\u0bb0\u0003\u0002", + "\u0002\u0002\u0bb3\u0bb2\u0003\u0002\u0002\u0002\u0bb4\u0bb7\u0003\u0002", + "\u0002\u0002\u0bb5\u0bb3\u0003\u0002\u0002\u0002\u0bb5\u0bb6\u0003\u0002", + "\u0002\u0002\u0bb6\u0bb8\u0003\u0002\u0002\u0002\u0bb7\u0bb5\u0003\u0002", + "\u0002\u0002\u0bb8\u0bb9\u0007b\u0002\u0002\u0bb9\u0290\u0003\u0002", + "\u0002\u0002(\u0002\u0294\u029f\u02ac\u02b8\u02bd\u02c1\u02c5\u02cb", + "\u02cf\u02d1\u0a3f\u0a47\u0b2f\u0b34\u0b39\u0b3b\u0b41\u0b46\u0b4e\u0b50", + "\u0b56\u0b5d\u0b61\u0b68\u0b6a\u0b6e\u0b73\u0b78\u0b7e\u0b83\u0b90\u0b92", + "\u0b9d\u0b9f\u0ba9\u0bb3\u0bb5\u0004\u0002\u0003\u0002\u0002\u0004\u0002"].join(""); var atn = new antlr4.atn.ATNDeserializer().deserialize(serializedATN); @@ -2210,23 +2243,32 @@ FlinkSqlLexer.BIT_OR_OP = 290; FlinkSqlLexer.BIT_AND_OP = 291; FlinkSqlLexer.BIT_XOR_OP = 292; FlinkSqlLexer.DOT = 293; -FlinkSqlLexer.LR_BRACKET = 294; -FlinkSqlLexer.RR_BRACKET = 295; -FlinkSqlLexer.COMMA = 296; -FlinkSqlLexer.SEMICOLON = 297; -FlinkSqlLexer.AT_SIGN = 298; -FlinkSqlLexer.ZERO_DECIMAL = 299; -FlinkSqlLexer.ONE_DECIMAL = 300; -FlinkSqlLexer.TWO_DECIMAL = 301; -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.LS_BRACKET = 294; +FlinkSqlLexer.RS_BRACKET = 295; +FlinkSqlLexer.LR_BRACKET = 296; +FlinkSqlLexer.RR_BRACKET = 297; +FlinkSqlLexer.COMMA = 298; +FlinkSqlLexer.SEMICOLON = 299; +FlinkSqlLexer.AT_SIGN = 300; +FlinkSqlLexer.ZERO_DECIMAL = 301; +FlinkSqlLexer.ONE_DECIMAL = 302; +FlinkSqlLexer.TWO_DECIMAL = 303; +FlinkSqlLexer.SINGLE_QUOTE_SYMB = 304; +FlinkSqlLexer.DOUBLE_QUOTE_SYMB = 305; +FlinkSqlLexer.REVERSE_QUOTE_SYMB = 306; +FlinkSqlLexer.COLON_SYMB = 307; +FlinkSqlLexer.ASTERISK_SIGN = 308; +FlinkSqlLexer.UNDERLINE_SIGN = 309; +FlinkSqlLexer.HYPNEN_SIGN = 310; +FlinkSqlLexer.ADD_SIGN = 311; +FlinkSqlLexer.PENCENT_SIGN = 312; +FlinkSqlLexer.DOUBLE_HYPNEN_SIGN = 313; +FlinkSqlLexer.SLASH_SIGN = 314; +FlinkSqlLexer.STRING_LITERAL = 315; +FlinkSqlLexer.DECIMAL_LITERAL = 316; +FlinkSqlLexer.REAL_LITERAL = 317; +FlinkSqlLexer.BIT_STRING = 318; +FlinkSqlLexer.IDENTIFIER_BASE = 319; FlinkSqlLexer.MYSQLCOMMENT = 2; @@ -2331,10 +2373,11 @@ FlinkSqlLexer.prototype.literalNames = [ null, null, null, null, null, "'SELECT' "'TIMESTAMP'", "'MULTISET'", "'BOOLEAN'", "'RAW'", "'ROW'", "'NULL'", "'='", "'>'", "'<'", "'!'", "'~'", "'|'", - "'&'", "'^'", "'.'", "'('", "')'", - "','", "';'", "'@'", "'0'", "'1'", - "'2'", "'''", "'\"'", "'`'", "':'", - "'*'" ]; + "'&'", "'^'", "'.'", "'['", "']'", + "'('", "')'", "','", "';'", "'@'", + "'0'", "'1'", "'2'", "'''", "'\"'", + "'`'", "':'", "'*'", "'_'", "'-'", + "'+'", "'%'", "'--'", "'/'" ]; FlinkSqlLexer.prototype.symbolicNames = [ null, "SPACE", "SPEC_MYSQL_COMMENT", "COMMENT_INPUT", "LINE_COMMENT", @@ -2424,14 +2467,18 @@ FlinkSqlLexer.prototype.symbolicNames = [ null, "SPACE", "SPEC_MYSQL_COMMENT", "GREATER_SYMBOL", "LESS_SYMBOL", "EXCLAMATION_SYMBOL", "BIT_NOT_OP", "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", "ASTERISK_SIGN", + "DOT", "LS_BRACKET", "RS_BRACKET", + "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", + "ASTERISK_SIGN", "UNDERLINE_SIGN", + "HYPNEN_SIGN", "ADD_SIGN", "PENCENT_SIGN", + "DOUBLE_HYPNEN_SIGN", "SLASH_SIGN", "STRING_LITERAL", "DECIMAL_LITERAL", - "REAL_LITERAL", "BIT_STRING" ]; + "REAL_LITERAL", "BIT_STRING", + "IDENTIFIER_BASE" ]; FlinkSqlLexer.prototype.ruleNames = [ "SPACE", "SPEC_MYSQL_COMMENT", "COMMENT_INPUT", "LINE_COMMENT", "SELECT", "FROM", @@ -2512,15 +2559,18 @@ FlinkSqlLexer.prototype.ruleNames = [ "SPACE", "SPEC_MYSQL_COMMENT", "COMMENT_IN "BOOLEAN", "RAW", "ROW", "NULL", "EQUAL_SYMBOL", "GREATER_SYMBOL", "LESS_SYMBOL", "EXCLAMATION_SYMBOL", "BIT_NOT_OP", "BIT_OR_OP", "BIT_AND_OP", - "BIT_XOR_OP", "DOT", "LR_BRACKET", - "RR_BRACKET", "COMMA", "SEMICOLON", - "AT_SIGN", "ZERO_DECIMAL", "ONE_DECIMAL", - "TWO_DECIMAL", "SINGLE_QUOTE_SYMB", + "BIT_XOR_OP", "DOT", "LS_BRACKET", + "RS_BRACKET", "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", "ASTERISK_SIGN", "STRING_LITERAL", - "DECIMAL_LITERAL", "REAL_LITERAL", - "BIT_STRING", "EXPONENT_NUM_PART", - "ID_LITERAL", "DEC_DIGIT", "DQUOTA_STRING", + "COLON_SYMB", "ASTERISK_SIGN", "UNDERLINE_SIGN", + "HYPNEN_SIGN", "ADD_SIGN", "PENCENT_SIGN", + "DOUBLE_HYPNEN_SIGN", "SLASH_SIGN", + "STRING_LITERAL", "DECIMAL_LITERAL", + "REAL_LITERAL", "BIT_STRING", "IDENTIFIER_BASE", + "EXPONENT_NUM_PART", "ID_LITERAL", + "DEC_DIGIT", "DEC_LETTER", "DQUOTA_STRING", "SQUOTA_STRING", "BIT_STRING_L", "BQUOTA_STRING" ]; FlinkSqlLexer.prototype.grammarFileName = "FlinkSqlLexer.g4"; diff --git a/src/lib/flinksql/FlinkSqlLexer.tokens b/src/lib/flinksql/FlinkSqlLexer.tokens index 11f12e9..ab0f88e 100644 --- a/src/lib/flinksql/FlinkSqlLexer.tokens +++ b/src/lib/flinksql/FlinkSqlLexer.tokens @@ -291,23 +291,32 @@ BIT_OR_OP=290 BIT_AND_OP=291 BIT_XOR_OP=292 DOT=293 -LR_BRACKET=294 -RR_BRACKET=295 -COMMA=296 -SEMICOLON=297 -AT_SIGN=298 -ZERO_DECIMAL=299 -ONE_DECIMAL=300 -TWO_DECIMAL=301 -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 +LS_BRACKET=294 +RS_BRACKET=295 +LR_BRACKET=296 +RR_BRACKET=297 +COMMA=298 +SEMICOLON=299 +AT_SIGN=300 +ZERO_DECIMAL=301 +ONE_DECIMAL=302 +TWO_DECIMAL=303 +SINGLE_QUOTE_SYMB=304 +DOUBLE_QUOTE_SYMB=305 +REVERSE_QUOTE_SYMB=306 +COLON_SYMB=307 +ASTERISK_SIGN=308 +UNDERLINE_SIGN=309 +HYPNEN_SIGN=310 +ADD_SIGN=311 +PENCENT_SIGN=312 +DOUBLE_HYPNEN_SIGN=313 +SLASH_SIGN=314 +STRING_LITERAL=315 +DECIMAL_LITERAL=316 +REAL_LITERAL=317 +BIT_STRING=318 +IDENTIFIER_BASE=319 'SELECT'=5 'FROM'=6 'ADD'=7 @@ -593,16 +602,24 @@ BIT_STRING=310 '&'=291 '^'=292 '.'=293 -'('=294 -')'=295 -','=296 -';'=297 -'@'=298 -'0'=299 -'1'=300 -'2'=301 -'\''=302 -'"'=303 -'`'=304 -':'=305 -'*'=306 +'['=294 +']'=295 +'('=296 +')'=297 +','=298 +';'=299 +'@'=300 +'0'=301 +'1'=302 +'2'=303 +'\''=304 +'"'=305 +'`'=306 +':'=307 +'*'=308 +'_'=309 +'-'=310 +'+'=311 +'%'=312 +'--'=313 +'/'=314 diff --git a/src/lib/flinksql/FlinkSqlParser.interp b/src/lib/flinksql/FlinkSqlParser.interp index a86bc3f..ed2db09 100644 --- a/src/lib/flinksql/FlinkSqlParser.interp +++ b/src/lib/flinksql/FlinkSqlParser.interp @@ -1,9 +1,8 @@ token literal names: null -'.' -'*' -',' -'!' +null +null +null 'SELECT' 'FROM' 'ADD' @@ -284,18 +283,20 @@ null 'RAW' 'ROW' 'NULL' -null -null -null -null -null -null -null -null -null -null -null -null +'=' +'>' +'<' +'!' +'~' +'|' +'&' +'^' +'.' +'[' +']' +'(' +')' +',' ';' '@' '0' @@ -305,6 +306,13 @@ null '"' '`' ':' +'*' +'_' +'-' +'+' +'%' +'--' +'/' null null null @@ -314,24 +322,23 @@ null token symbolic names: null -null -null -null -null -null -null -null -null -null -null -null -null -null -null -null -null -null -null +SPACE +COMMENT_INPUT +LINE_COMMENT +SELECT +FROM +ADD +AS +ALL +ANY +DISTINCT +WHERE +GROUP +BY +GROUPING +SETS +CUBE +ROLLUP ORDER HAVING LIMIT @@ -607,6 +614,8 @@ BIT_OR_OP BIT_AND_OP BIT_XOR_OP DOT +LS_BRACKET +RS_BRACKET LR_BRACKET RR_BRACKET COMMA @@ -620,10 +629,17 @@ DOUBLE_QUOTE_SYMB REVERSE_QUOTE_SYMB COLON_SYMB ASTERISK_SIGN +UNDERLINE_SIGN +HYPNEN_SIGN +ADD_SIGN +PENCENT_SIGN +DOUBLE_HYPNEN_SIGN +SLASH_SIGN STRING_LITERAL DECIMAL_LITERAL REAL_LITERAL BIT_STRING +IDENTIFIER_BASE DEC_DIGIT rule names: @@ -653,41 +669,35 @@ 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 +queryStatement +selectStatement +projectItemDefinition +tableExpression +tableReference +tablePrimary +expression +booleanExpression +predicate +valueExpression +primaryExpression +tableAlias +identifierList +identifierSeq +identifier +strictIdentifier +quotedIdentifier +whenClause uidList uid withOption ifNotExists ifExists keyValueDefinition -expressions -expression -predicate -expressionAtom logicalOperator comparisonOperator bitOperator @@ -698,7 +708,8 @@ constant stringLiteral decimalLiteral booleanLiteral +setQuantifier atn: -[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 +[3, 24715, 42794, 33075, 47597, 16764, 15335, 30598, 22884, 3, 321, 724, 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, 3, 2, 3, 2, 3, 2, 3, 3, 3, 3, 3, 3, 3, 4, 3, 4, 3, 4, 3, 4, 7, 4, 145, 10, 4, 12, 4, 14, 4, 148, 11, 4, 3, 5, 3, 5, 5, 5, 152, 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, 167, 10, 7, 3, 8, 3, 8, 5, 8, 171, 10, 8, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 3, 9, 7, 9, 180, 10, 9, 12, 9, 14, 9, 183, 11, 9, 3, 9, 3, 9, 5, 9, 187, 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, 205, 10, 14, 12, 14, 14, 14, 208, 11, 14, 3, 15, 3, 15, 3, 16, 3, 16, 3, 16, 5, 16, 215, 10, 16, 3, 16, 3, 16, 3, 16, 3, 17, 3, 17, 5, 17, 222, 10, 17, 3, 17, 3, 17, 5, 17, 226, 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, 239, 10, 19, 3, 20, 3, 20, 3, 20, 3, 20, 3, 21, 3, 21, 3, 21, 3, 21, 3, 21, 7, 21, 250, 10, 21, 12, 21, 14, 21, 253, 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, 267, 10, 24, 3, 24, 3, 24, 3, 25, 3, 25, 3, 25, 5, 25, 274, 10, 25, 3, 25, 3, 25, 5, 25, 278, 10, 25, 3, 26, 3, 26, 5, 26, 282, 10, 26, 3, 26, 3, 26, 5, 26, 286, 10, 26, 3, 26, 3, 26, 3, 27, 3, 27, 3, 27, 3, 27, 5, 27, 294, 10, 27, 3, 27, 3, 27, 5, 27, 298, 10, 27, 3, 27, 3, 27, 3, 28, 3, 28, 3, 28, 3, 28, 5, 28, 306, 10, 28, 3, 28, 3, 28, 5, 28, 310, 10, 28, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 7, 29, 317, 10, 29, 12, 29, 14, 29, 320, 11, 29, 3, 29, 3, 29, 3, 30, 3, 30, 3, 30, 3, 30, 7, 30, 328, 10, 30, 12, 30, 14, 30, 331, 11, 30, 3, 31, 3, 31, 3, 31, 3, 31, 7, 31, 337, 10, 31, 12, 31, 14, 31, 340, 11, 31, 3, 31, 3, 31, 3, 32, 3, 32, 3, 32, 3, 32, 5, 32, 348, 10, 32, 3, 33, 3, 33, 3, 34, 3, 34, 5, 34, 354, 10, 34, 3, 34, 3, 34, 3, 34, 3, 34, 7, 34, 360, 10, 34, 12, 34, 14, 34, 363, 11, 34, 5, 34, 365, 10, 34, 3, 34, 3, 34, 3, 34, 3, 35, 3, 35, 5, 35, 372, 10, 35, 3, 35, 5, 35, 375, 10, 35, 3, 35, 3, 35, 3, 35, 3, 35, 5, 35, 381, 10, 35, 3, 36, 3, 36, 3, 36, 7, 36, 386, 10, 36, 12, 36, 14, 36, 389, 11, 36, 3, 37, 3, 37, 3, 37, 3, 38, 5, 38, 395, 10, 38, 3, 38, 3, 38, 3, 39, 3, 39, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 5, 40, 406, 10, 40, 5, 40, 408, 10, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 7, 40, 416, 10, 40, 12, 40, 14, 40, 419, 11, 40, 3, 41, 5, 41, 422, 10, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 5, 41, 430, 10, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 7, 41, 437, 10, 41, 12, 41, 14, 41, 440, 11, 41, 3, 41, 3, 41, 3, 41, 5, 41, 445, 10, 41, 3, 41, 3, 41, 3, 41, 5, 41, 450, 10, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 7, 41, 460, 10, 41, 12, 41, 14, 41, 463, 11, 41, 3, 41, 3, 41, 5, 41, 467, 10, 41, 3, 41, 5, 41, 470, 10, 41, 3, 41, 3, 41, 3, 41, 3, 41, 5, 41, 476, 10, 41, 3, 41, 3, 41, 3, 41, 5, 41, 481, 10, 41, 3, 41, 3, 41, 3, 41, 5, 41, 486, 10, 41, 3, 41, 3, 41, 3, 41, 5, 41, 491, 10, 41, 3, 42, 3, 42, 3, 42, 3, 42, 5, 42, 497, 10, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 7, 42, 518, 10, 42, 12, 42, 14, 42, 521, 11, 42, 3, 43, 3, 43, 3, 43, 6, 43, 526, 10, 43, 13, 43, 14, 43, 527, 3, 43, 3, 43, 5, 43, 532, 10, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 6, 43, 539, 10, 43, 13, 43, 14, 43, 540, 3, 43, 3, 43, 5, 43, 545, 10, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 5, 43, 554, 10, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 5, 43, 563, 10, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 5, 43, 580, 10, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 7, 43, 587, 10, 43, 12, 43, 14, 43, 590, 11, 43, 3, 44, 5, 44, 593, 10, 44, 3, 44, 3, 44, 5, 44, 597, 10, 44, 5, 44, 599, 10, 44, 3, 45, 3, 45, 3, 45, 3, 45, 3, 46, 3, 46, 3, 46, 7, 46, 608, 10, 46, 12, 46, 14, 46, 611, 11, 46, 3, 47, 3, 47, 3, 48, 3, 48, 5, 48, 617, 10, 48, 3, 49, 3, 49, 3, 50, 3, 50, 3, 50, 3, 50, 3, 50, 3, 51, 3, 51, 3, 51, 7, 51, 629, 10, 51, 12, 51, 14, 51, 632, 11, 51, 3, 52, 3, 52, 7, 52, 636, 10, 52, 12, 52, 14, 52, 639, 11, 52, 3, 53, 3, 53, 3, 53, 3, 53, 3, 53, 7, 53, 646, 10, 53, 12, 53, 14, 53, 649, 11, 53, 3, 53, 3, 53, 3, 54, 3, 54, 3, 54, 3, 54, 3, 55, 3, 55, 3, 55, 3, 56, 3, 56, 3, 56, 3, 56, 3, 57, 3, 57, 3, 57, 3, 57, 3, 57, 3, 57, 5, 57, 670, 10, 57, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 5, 58, 686, 10, 58, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 5, 59, 695, 10, 59, 3, 60, 3, 60, 3, 61, 3, 61, 3, 62, 3, 62, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 5, 63, 711, 10, 63, 3, 63, 5, 63, 714, 10, 63, 3, 64, 3, 64, 3, 65, 3, 65, 3, 66, 3, 66, 3, 67, 3, 67, 3, 67, 3, 637, 5, 78, 82, 84, 68, 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, 2, 14, 3, 2, 263, 285, 3, 2, 191, 192, 4, 2, 79, 79, 147, 147, 3, 2, 10, 11, 3, 2, 34, 35, 4, 2, 129, 130, 135, 135, 3, 2, 131, 134, 4, 2, 129, 130, 138, 138, 5, 2, 134, 134, 309, 309, 311, 315, 5, 2, 27, 27, 289, 290, 311, 312, 4, 2, 302, 304, 317, 317, 4, 2, 10, 10, 12, 12, 2, 775, 2, 134, 3, 2, 2, 2, 4, 137, 3, 2, 2, 2, 6, 146, 3, 2, 2, 2, 8, 151, 3, 2, 2, 2, 10, 153, 3, 2, 2, 2, 12, 166, 3, 2, 2, 2, 14, 170, 3, 2, 2, 2, 16, 172, 3, 2, 2, 2, 18, 190, 3, 2, 2, 2, 20, 193, 3, 2, 2, 2, 22, 195, 3, 2, 2, 2, 24, 197, 3, 2, 2, 2, 26, 201, 3, 2, 2, 2, 28, 209, 3, 2, 2, 2, 30, 211, 3, 2, 2, 2, 32, 219, 3, 2, 2, 2, 34, 231, 3, 2, 2, 2, 36, 233, 3, 2, 2, 2, 38, 240, 3, 2, 2, 2, 40, 244, 3, 2, 2, 2, 42, 256, 3, 2, 2, 2, 44, 261, 3, 2, 2, 2, 46, 263, 3, 2, 2, 2, 48, 270, 3, 2, 2, 2, 50, 279, 3, 2, 2, 2, 52, 289, 3, 2, 2, 2, 54, 301, 3, 2, 2, 2, 56, 311, 3, 2, 2, 2, 58, 323, 3, 2, 2, 2, 60, 332, 3, 2, 2, 2, 62, 347, 3, 2, 2, 2, 64, 349, 3, 2, 2, 2, 66, 351, 3, 2, 2, 2, 68, 380, 3, 2, 2, 2, 70, 382, 3, 2, 2, 2, 72, 390, 3, 2, 2, 2, 74, 394, 3, 2, 2, 2, 76, 398, 3, 2, 2, 2, 78, 407, 3, 2, 2, 2, 80, 490, 3, 2, 2, 2, 82, 496, 3, 2, 2, 2, 84, 579, 3, 2, 2, 2, 86, 598, 3, 2, 2, 2, 88, 600, 3, 2, 2, 2, 90, 604, 3, 2, 2, 2, 92, 612, 3, 2, 2, 2, 94, 616, 3, 2, 2, 2, 96, 618, 3, 2, 2, 2, 98, 620, 3, 2, 2, 2, 100, 625, 3, 2, 2, 2, 102, 633, 3, 2, 2, 2, 104, 640, 3, 2, 2, 2, 106, 652, 3, 2, 2, 2, 108, 656, 3, 2, 2, 2, 110, 659, 3, 2, 2, 2, 112, 669, 3, 2, 2, 2, 114, 685, 3, 2, 2, 2, 116, 694, 3, 2, 2, 2, 118, 696, 3, 2, 2, 2, 120, 698, 3, 2, 2, 2, 122, 700, 3, 2, 2, 2, 124, 713, 3, 2, 2, 2, 126, 715, 3, 2, 2, 2, 128, 717, 3, 2, 2, 2, 130, 719, 3, 2, 2, 2, 132, 721, 3, 2, 2, 2, 134, 135, 5, 4, 3, 2, 135, 136, 7, 2, 2, 3, 136, 3, 3, 2, 2, 2, 137, 138, 5, 6, 4, 2, 138, 139, 7, 2, 2, 3, 139, 5, 3, 2, 2, 2, 140, 141, 5, 8, 5, 2, 141, 142, 7, 300, 2, 2, 142, 145, 3, 2, 2, 2, 143, 145, 5, 10, 6, 2, 144, 140, 3, 2, 2, 2, 144, 143, 3, 2, 2, 2, 145, 148, 3, 2, 2, 2, 146, 144, 3, 2, 2, 2, 146, 147, 3, 2, 2, 2, 147, 7, 3, 2, 2, 2, 148, 146, 3, 2, 2, 2, 149, 152, 5, 12, 7, 2, 150, 152, 5, 14, 8, 2, 151, 149, 3, 2, 2, 2, 151, 150, 3, 2, 2, 2, 152, 9, 3, 2, 2, 2, 153, 154, 7, 300, 2, 2, 154, 11, 3, 2, 2, 2, 155, 167, 5, 16, 9, 2, 156, 167, 5, 30, 16, 2, 157, 167, 5, 32, 17, 2, 158, 167, 5, 34, 18, 2, 159, 167, 5, 36, 19, 2, 160, 167, 5, 42, 22, 2, 161, 167, 5, 44, 23, 2, 162, 167, 5, 46, 24, 2, 163, 167, 5, 48, 25, 2, 164, 167, 5, 50, 26, 2, 165, 167, 5, 52, 27, 2, 166, 155, 3, 2, 2, 2, 166, 156, 3, 2, 2, 2, 166, 157, 3, 2, 2, 2, 166, 158, 3, 2, 2, 2, 166, 159, 3, 2, 2, 2, 166, 160, 3, 2, 2, 2, 166, 161, 3, 2, 2, 2, 166, 162, 3, 2, 2, 2, 166, 163, 3, 2, 2, 2, 166, 164, 3, 2, 2, 2, 166, 165, 3, 2, 2, 2, 167, 13, 3, 2, 2, 2, 168, 171, 5, 64, 33, 2, 169, 171, 5, 54, 28, 2, 170, 168, 3, 2, 2, 2, 170, 169, 3, 2, 2, 2, 171, 15, 3, 2, 2, 2, 172, 173, 7, 72, 2, 2, 173, 174, 7, 73, 2, 2, 174, 175, 5, 102, 52, 2, 175, 176, 7, 297, 2, 2, 176, 181, 5, 18, 10, 2, 177, 178, 7, 299, 2, 2, 178, 180, 5, 18, 10, 2, 179, 177, 3, 2, 2, 2, 180, 183, 3, 2, 2, 2, 181, 179, 3, 2, 2, 2, 181, 182, 3, 2, 2, 2, 182, 184, 3, 2, 2, 2, 183, 181, 3, 2, 2, 2, 184, 186, 7, 298, 2, 2, 185, 187, 5, 24, 13, 2, 186, 185, 3, 2, 2, 2, 186, 187, 3, 2, 2, 2, 187, 188, 3, 2, 2, 2, 188, 189, 5, 104, 53, 2, 189, 17, 3, 2, 2, 2, 190, 191, 5, 20, 11, 2, 191, 192, 5, 22, 12, 2, 192, 19, 3, 2, 2, 2, 193, 194, 7, 261, 2, 2, 194, 21, 3, 2, 2, 2, 195, 196, 9, 2, 2, 2, 196, 23, 3, 2, 2, 2, 197, 198, 7, 206, 2, 2, 198, 199, 7, 15, 2, 2, 199, 200, 5, 26, 14, 2, 200, 25, 3, 2, 2, 2, 201, 206, 5, 28, 15, 2, 202, 203, 7, 299, 2, 2, 203, 205, 5, 28, 15, 2, 204, 202, 3, 2, 2, 2, 205, 208, 3, 2, 2, 2, 206, 204, 3, 2, 2, 2, 206, 207, 3, 2, 2, 2, 207, 27, 3, 2, 2, 2, 208, 206, 3, 2, 2, 2, 209, 210, 7, 261, 2, 2, 210, 29, 3, 2, 2, 2, 211, 212, 7, 72, 2, 2, 212, 214, 7, 198, 2, 2, 213, 215, 5, 106, 54, 2, 214, 213, 3, 2, 2, 2, 214, 215, 3, 2, 2, 2, 215, 216, 3, 2, 2, 2, 216, 217, 5, 102, 52, 2, 217, 218, 5, 104, 53, 2, 218, 31, 3, 2, 2, 2, 219, 221, 7, 72, 2, 2, 220, 222, 7, 173, 2, 2, 221, 220, 3, 2, 2, 2, 221, 222, 3, 2, 2, 2, 222, 223, 3, 2, 2, 2, 223, 225, 7, 75, 2, 2, 224, 226, 5, 106, 54, 2, 225, 224, 3, 2, 2, 2, 225, 226, 3, 2, 2, 2, 226, 227, 3, 2, 2, 2, 227, 228, 5, 102, 52, 2, 228, 229, 7, 9, 2, 2, 229, 230, 5, 66, 34, 2, 230, 33, 3, 2, 2, 2, 231, 232, 3, 2, 2, 2, 232, 35, 3, 2, 2, 2, 233, 234, 7, 102, 2, 2, 234, 235, 7, 73, 2, 2, 235, 238, 5, 102, 52, 2, 236, 239, 5, 38, 20, 2, 237, 239, 5, 40, 21, 2, 238, 236, 3, 2, 2, 2, 238, 237, 3, 2, 2, 2, 239, 37, 3, 2, 2, 2, 240, 241, 7, 103, 2, 2, 241, 242, 7, 99, 2, 2, 242, 243, 5, 102, 52, 2, 243, 39, 3, 2, 2, 2, 244, 245, 7, 106, 2, 2, 245, 246, 7, 297, 2, 2, 246, 251, 5, 110, 56, 2, 247, 248, 7, 299, 2, 2, 248, 250, 5, 110, 56, 2, 249, 247, 3, 2, 2, 2, 250, 253, 3, 2, 2, 2, 251, 249, 3, 2, 2, 2, 251, 252, 3, 2, 2, 2, 252, 254, 3, 2, 2, 2, 253, 251, 3, 2, 2, 2, 254, 255, 7, 298, 2, 2, 255, 41, 3, 2, 2, 2, 256, 257, 7, 102, 2, 2, 257, 258, 7, 198, 2, 2, 258, 259, 5, 102, 52, 2, 259, 260, 5, 40, 21, 2, 260, 43, 3, 2, 2, 2, 261, 262, 3, 2, 2, 2, 262, 45, 3, 2, 2, 2, 263, 264, 7, 94, 2, 2, 264, 266, 7, 73, 2, 2, 265, 267, 5, 108, 55, 2, 266, 265, 3, 2, 2, 2, 266, 267, 3, 2, 2, 2, 267, 268, 3, 2, 2, 2, 268, 269, 5, 102, 52, 2, 269, 47, 3, 2, 2, 2, 270, 271, 7, 94, 2, 2, 271, 273, 7, 198, 2, 2, 272, 274, 5, 108, 55, 2, 273, 272, 3, 2, 2, 2, 273, 274, 3, 2, 2, 2, 274, 275, 3, 2, 2, 2, 275, 277, 5, 102, 52, 2, 276, 278, 9, 3, 2, 2, 277, 276, 3, 2, 2, 2, 277, 278, 3, 2, 2, 2, 278, 49, 3, 2, 2, 2, 279, 281, 7, 94, 2, 2, 280, 282, 7, 173, 2, 2, 281, 280, 3, 2, 2, 2, 281, 282, 3, 2, 2, 2, 282, 283, 3, 2, 2, 2, 283, 285, 7, 75, 2, 2, 284, 286, 5, 108, 55, 2, 285, 284, 3, 2, 2, 2, 285, 286, 3, 2, 2, 2, 286, 287, 3, 2, 2, 2, 287, 288, 5, 102, 52, 2, 288, 51, 3, 2, 2, 2, 289, 293, 7, 94, 2, 2, 290, 294, 7, 173, 2, 2, 291, 292, 7, 173, 2, 2, 292, 294, 7, 262, 2, 2, 293, 290, 3, 2, 2, 2, 293, 291, 3, 2, 2, 2, 293, 294, 3, 2, 2, 2, 294, 295, 3, 2, 2, 2, 295, 297, 7, 164, 2, 2, 296, 298, 5, 108, 55, 2, 297, 296, 3, 2, 2, 2, 297, 298, 3, 2, 2, 2, 298, 299, 3, 2, 2, 2, 299, 300, 5, 102, 52, 2, 300, 53, 3, 2, 2, 2, 301, 302, 7, 77, 2, 2, 302, 303, 9, 4, 2, 2, 303, 309, 5, 102, 52, 2, 304, 306, 5, 56, 29, 2, 305, 304, 3, 2, 2, 2, 305, 306, 3, 2, 2, 2, 306, 307, 3, 2, 2, 2, 307, 310, 5, 66, 34, 2, 308, 310, 5, 58, 30, 2, 309, 305, 3, 2, 2, 2, 309, 308, 3, 2, 2, 2, 310, 55, 3, 2, 2, 2, 311, 312, 7, 60, 2, 2, 312, 313, 7, 297, 2, 2, 313, 318, 5, 110, 56, 2, 314, 315, 7, 299, 2, 2, 315, 317, 5, 110, 56, 2, 316, 314, 3, 2, 2, 2, 317, 320, 3, 2, 2, 2, 318, 316, 3, 2, 2, 2, 318, 319, 3, 2, 2, 2, 319, 321, 3, 2, 2, 2, 320, 318, 3, 2, 2, 2, 321, 322, 7, 298, 2, 2, 322, 57, 3, 2, 2, 2, 323, 324, 7, 71, 2, 2, 324, 329, 5, 60, 31, 2, 325, 326, 7, 299, 2, 2, 326, 328, 5, 60, 31, 2, 327, 325, 3, 2, 2, 2, 328, 331, 3, 2, 2, 2, 329, 327, 3, 2, 2, 2, 329, 330, 3, 2, 2, 2, 330, 59, 3, 2, 2, 2, 331, 329, 3, 2, 2, 2, 332, 333, 7, 297, 2, 2, 333, 338, 5, 62, 32, 2, 334, 335, 7, 299, 2, 2, 335, 337, 5, 62, 32, 2, 336, 334, 3, 2, 2, 2, 337, 340, 3, 2, 2, 2, 338, 336, 3, 2, 2, 2, 338, 339, 3, 2, 2, 2, 339, 341, 3, 2, 2, 2, 340, 338, 3, 2, 2, 2, 341, 342, 7, 298, 2, 2, 342, 61, 3, 2, 2, 2, 343, 348, 5, 126, 64, 2, 344, 348, 5, 130, 66, 2, 345, 348, 7, 321, 2, 2, 346, 348, 7, 285, 2, 2, 347, 343, 3, 2, 2, 2, 347, 344, 3, 2, 2, 2, 347, 345, 3, 2, 2, 2, 347, 346, 3, 2, 2, 2, 348, 63, 3, 2, 2, 2, 349, 350, 3, 2, 2, 2, 350, 65, 3, 2, 2, 2, 351, 353, 7, 6, 2, 2, 352, 354, 5, 132, 67, 2, 353, 352, 3, 2, 2, 2, 353, 354, 3, 2, 2, 2, 354, 364, 3, 2, 2, 2, 355, 365, 7, 309, 2, 2, 356, 361, 5, 68, 35, 2, 357, 358, 7, 299, 2, 2, 358, 360, 5, 68, 35, 2, 359, 357, 3, 2, 2, 2, 360, 363, 3, 2, 2, 2, 361, 359, 3, 2, 2, 2, 361, 362, 3, 2, 2, 2, 362, 365, 3, 2, 2, 2, 363, 361, 3, 2, 2, 2, 364, 355, 3, 2, 2, 2, 364, 356, 3, 2, 2, 2, 365, 366, 3, 2, 2, 2, 366, 367, 7, 7, 2, 2, 367, 368, 5, 70, 36, 2, 368, 67, 3, 2, 2, 2, 369, 374, 5, 76, 39, 2, 370, 372, 7, 9, 2, 2, 371, 370, 3, 2, 2, 2, 371, 372, 3, 2, 2, 2, 372, 373, 3, 2, 2, 2, 373, 375, 5, 102, 52, 2, 374, 371, 3, 2, 2, 2, 374, 375, 3, 2, 2, 2, 375, 381, 3, 2, 2, 2, 376, 377, 5, 102, 52, 2, 377, 378, 7, 294, 2, 2, 378, 379, 7, 309, 2, 2, 379, 381, 3, 2, 2, 2, 380, 369, 3, 2, 2, 2, 380, 376, 3, 2, 2, 2, 381, 69, 3, 2, 2, 2, 382, 387, 5, 72, 37, 2, 383, 384, 7, 299, 2, 2, 384, 386, 5, 72, 37, 2, 385, 383, 3, 2, 2, 2, 386, 389, 3, 2, 2, 2, 387, 385, 3, 2, 2, 2, 387, 388, 3, 2, 2, 2, 388, 71, 3, 2, 2, 2, 389, 387, 3, 2, 2, 2, 390, 391, 5, 74, 38, 2, 391, 392, 5, 86, 44, 2, 392, 73, 3, 2, 2, 2, 393, 395, 7, 73, 2, 2, 394, 393, 3, 2, 2, 2, 394, 395, 3, 2, 2, 2, 395, 396, 3, 2, 2, 2, 396, 397, 5, 102, 52, 2, 397, 75, 3, 2, 2, 2, 398, 399, 5, 78, 40, 2, 399, 77, 3, 2, 2, 2, 400, 401, 8, 40, 1, 2, 401, 402, 7, 27, 2, 2, 402, 408, 5, 78, 40, 6, 403, 405, 5, 82, 42, 2, 404, 406, 5, 80, 41, 2, 405, 404, 3, 2, 2, 2, 405, 406, 3, 2, 2, 2, 406, 408, 3, 2, 2, 2, 407, 400, 3, 2, 2, 2, 407, 403, 3, 2, 2, 2, 408, 417, 3, 2, 2, 2, 409, 410, 12, 4, 2, 2, 410, 411, 7, 25, 2, 2, 411, 416, 5, 78, 40, 5, 412, 413, 12, 3, 2, 2, 413, 414, 7, 24, 2, 2, 414, 416, 5, 78, 40, 4, 415, 409, 3, 2, 2, 2, 415, 412, 3, 2, 2, 2, 416, 419, 3, 2, 2, 2, 417, 415, 3, 2, 2, 2, 417, 418, 3, 2, 2, 2, 418, 79, 3, 2, 2, 2, 419, 417, 3, 2, 2, 2, 420, 422, 7, 27, 2, 2, 421, 420, 3, 2, 2, 2, 421, 422, 3, 2, 2, 2, 422, 423, 3, 2, 2, 2, 423, 424, 7, 30, 2, 2, 424, 425, 5, 82, 42, 2, 425, 426, 7, 25, 2, 2, 426, 427, 5, 82, 42, 2, 427, 491, 3, 2, 2, 2, 428, 430, 7, 27, 2, 2, 429, 428, 3, 2, 2, 2, 429, 430, 3, 2, 2, 2, 430, 431, 3, 2, 2, 2, 431, 432, 7, 26, 2, 2, 432, 433, 7, 297, 2, 2, 433, 438, 5, 76, 39, 2, 434, 435, 7, 299, 2, 2, 435, 437, 5, 76, 39, 2, 436, 434, 3, 2, 2, 2, 437, 440, 3, 2, 2, 2, 438, 436, 3, 2, 2, 2, 438, 439, 3, 2, 2, 2, 439, 441, 3, 2, 2, 2, 440, 438, 3, 2, 2, 2, 441, 442, 7, 298, 2, 2, 442, 491, 3, 2, 2, 2, 443, 445, 7, 27, 2, 2, 444, 443, 3, 2, 2, 2, 444, 445, 3, 2, 2, 2, 445, 446, 3, 2, 2, 2, 446, 447, 7, 32, 2, 2, 447, 491, 5, 82, 42, 2, 448, 450, 7, 27, 2, 2, 449, 448, 3, 2, 2, 2, 449, 450, 3, 2, 2, 2, 450, 451, 3, 2, 2, 2, 451, 452, 7, 31, 2, 2, 452, 466, 9, 5, 2, 2, 453, 454, 7, 297, 2, 2, 454, 467, 7, 298, 2, 2, 455, 456, 7, 297, 2, 2, 456, 461, 5, 76, 39, 2, 457, 458, 7, 299, 2, 2, 458, 460, 5, 76, 39, 2, 459, 457, 3, 2, 2, 2, 460, 463, 3, 2, 2, 2, 461, 459, 3, 2, 2, 2, 461, 462, 3, 2, 2, 2, 462, 464, 3, 2, 2, 2, 463, 461, 3, 2, 2, 2, 464, 465, 7, 298, 2, 2, 465, 467, 3, 2, 2, 2, 466, 453, 3, 2, 2, 2, 466, 455, 3, 2, 2, 2, 467, 491, 3, 2, 2, 2, 468, 470, 7, 27, 2, 2, 469, 468, 3, 2, 2, 2, 469, 470, 3, 2, 2, 2, 470, 471, 3, 2, 2, 2, 471, 472, 7, 31, 2, 2, 472, 491, 5, 82, 42, 2, 473, 475, 7, 33, 2, 2, 474, 476, 7, 27, 2, 2, 475, 474, 3, 2, 2, 2, 475, 476, 3, 2, 2, 2, 476, 477, 3, 2, 2, 2, 477, 491, 7, 285, 2, 2, 478, 480, 7, 33, 2, 2, 479, 481, 7, 27, 2, 2, 480, 479, 3, 2, 2, 2, 480, 481, 3, 2, 2, 2, 481, 482, 3, 2, 2, 2, 482, 491, 9, 6, 2, 2, 483, 485, 7, 33, 2, 2, 484, 486, 7, 27, 2, 2, 485, 484, 3, 2, 2, 2, 485, 486, 3, 2, 2, 2, 486, 487, 3, 2, 2, 2, 487, 488, 7, 12, 2, 2, 488, 489, 7, 7, 2, 2, 489, 491, 5, 82, 42, 2, 490, 421, 3, 2, 2, 2, 490, 429, 3, 2, 2, 2, 490, 444, 3, 2, 2, 2, 490, 449, 3, 2, 2, 2, 490, 469, 3, 2, 2, 2, 490, 473, 3, 2, 2, 2, 490, 478, 3, 2, 2, 2, 490, 483, 3, 2, 2, 2, 491, 81, 3, 2, 2, 2, 492, 493, 8, 42, 1, 2, 493, 497, 5, 84, 43, 2, 494, 495, 9, 7, 2, 2, 495, 497, 5, 82, 42, 9, 496, 492, 3, 2, 2, 2, 496, 494, 3, 2, 2, 2, 497, 519, 3, 2, 2, 2, 498, 499, 12, 8, 2, 2, 499, 500, 9, 8, 2, 2, 500, 518, 5, 82, 42, 9, 501, 502, 12, 7, 2, 2, 502, 503, 9, 9, 2, 2, 503, 518, 5, 82, 42, 8, 504, 505, 12, 6, 2, 2, 505, 506, 7, 136, 2, 2, 506, 518, 5, 82, 42, 7, 507, 508, 12, 5, 2, 2, 508, 509, 7, 139, 2, 2, 509, 518, 5, 82, 42, 6, 510, 511, 12, 4, 2, 2, 511, 512, 7, 137, 2, 2, 512, 518, 5, 82, 42, 5, 513, 514, 12, 3, 2, 2, 514, 515, 5, 114, 58, 2, 515, 516, 5, 82, 42, 4, 516, 518, 3, 2, 2, 2, 517, 498, 3, 2, 2, 2, 517, 501, 3, 2, 2, 2, 517, 504, 3, 2, 2, 2, 517, 507, 3, 2, 2, 2, 517, 510, 3, 2, 2, 2, 517, 513, 3, 2, 2, 2, 518, 521, 3, 2, 2, 2, 519, 517, 3, 2, 2, 2, 519, 520, 3, 2, 2, 2, 520, 83, 3, 2, 2, 2, 521, 519, 3, 2, 2, 2, 522, 523, 8, 43, 1, 2, 523, 525, 7, 41, 2, 2, 524, 526, 5, 98, 50, 2, 525, 524, 3, 2, 2, 2, 526, 527, 3, 2, 2, 2, 527, 525, 3, 2, 2, 2, 527, 528, 3, 2, 2, 2, 528, 531, 3, 2, 2, 2, 529, 530, 7, 44, 2, 2, 530, 532, 5, 76, 39, 2, 531, 529, 3, 2, 2, 2, 531, 532, 3, 2, 2, 2, 532, 533, 3, 2, 2, 2, 533, 534, 7, 45, 2, 2, 534, 580, 3, 2, 2, 2, 535, 536, 7, 41, 2, 2, 536, 538, 5, 76, 39, 2, 537, 539, 5, 98, 50, 2, 538, 537, 3, 2, 2, 2, 539, 540, 3, 2, 2, 2, 540, 538, 3, 2, 2, 2, 540, 541, 3, 2, 2, 2, 541, 544, 3, 2, 2, 2, 542, 543, 7, 44, 2, 2, 543, 545, 5, 76, 39, 2, 544, 542, 3, 2, 2, 2, 544, 545, 3, 2, 2, 2, 545, 546, 3, 2, 2, 2, 546, 547, 7, 45, 2, 2, 547, 580, 3, 2, 2, 2, 548, 549, 7, 67, 2, 2, 549, 550, 7, 297, 2, 2, 550, 553, 5, 76, 39, 2, 551, 552, 7, 114, 2, 2, 552, 554, 7, 36, 2, 2, 553, 551, 3, 2, 2, 2, 553, 554, 3, 2, 2, 2, 554, 555, 3, 2, 2, 2, 555, 556, 7, 298, 2, 2, 556, 580, 3, 2, 2, 2, 557, 558, 7, 69, 2, 2, 558, 559, 7, 297, 2, 2, 559, 562, 5, 76, 39, 2, 560, 561, 7, 114, 2, 2, 561, 563, 7, 36, 2, 2, 562, 560, 3, 2, 2, 2, 562, 563, 3, 2, 2, 2, 563, 564, 3, 2, 2, 2, 564, 565, 7, 298, 2, 2, 565, 580, 3, 2, 2, 2, 566, 567, 7, 119, 2, 2, 567, 568, 7, 297, 2, 2, 568, 569, 5, 82, 42, 2, 569, 570, 7, 26, 2, 2, 570, 571, 5, 82, 42, 2, 571, 572, 7, 298, 2, 2, 572, 580, 3, 2, 2, 2, 573, 580, 5, 124, 63, 2, 574, 580, 7, 131, 2, 2, 575, 576, 7, 297, 2, 2, 576, 577, 5, 76, 39, 2, 577, 578, 7, 298, 2, 2, 578, 580, 3, 2, 2, 2, 579, 522, 3, 2, 2, 2, 579, 535, 3, 2, 2, 2, 579, 548, 3, 2, 2, 2, 579, 557, 3, 2, 2, 2, 579, 566, 3, 2, 2, 2, 579, 573, 3, 2, 2, 2, 579, 574, 3, 2, 2, 2, 579, 575, 3, 2, 2, 2, 580, 588, 3, 2, 2, 2, 581, 582, 12, 4, 2, 2, 582, 583, 7, 295, 2, 2, 583, 584, 5, 82, 42, 2, 584, 585, 7, 296, 2, 2, 585, 587, 3, 2, 2, 2, 586, 581, 3, 2, 2, 2, 587, 590, 3, 2, 2, 2, 588, 586, 3, 2, 2, 2, 588, 589, 3, 2, 2, 2, 589, 85, 3, 2, 2, 2, 590, 588, 3, 2, 2, 2, 591, 593, 7, 9, 2, 2, 592, 591, 3, 2, 2, 2, 592, 593, 3, 2, 2, 2, 593, 594, 3, 2, 2, 2, 594, 596, 5, 94, 48, 2, 595, 597, 5, 88, 45, 2, 596, 595, 3, 2, 2, 2, 596, 597, 3, 2, 2, 2, 597, 599, 3, 2, 2, 2, 598, 592, 3, 2, 2, 2, 598, 599, 3, 2, 2, 2, 599, 87, 3, 2, 2, 2, 600, 601, 7, 297, 2, 2, 601, 602, 5, 90, 46, 2, 602, 603, 7, 298, 2, 2, 603, 89, 3, 2, 2, 2, 604, 609, 5, 92, 47, 2, 605, 606, 7, 299, 2, 2, 606, 608, 5, 92, 47, 2, 607, 605, 3, 2, 2, 2, 608, 611, 3, 2, 2, 2, 609, 607, 3, 2, 2, 2, 609, 610, 3, 2, 2, 2, 610, 91, 3, 2, 2, 2, 611, 609, 3, 2, 2, 2, 612, 613, 5, 94, 48, 2, 613, 93, 3, 2, 2, 2, 614, 617, 7, 320, 2, 2, 615, 617, 5, 96, 49, 2, 616, 614, 3, 2, 2, 2, 616, 615, 3, 2, 2, 2, 617, 95, 3, 2, 2, 2, 618, 619, 7, 316, 2, 2, 619, 97, 3, 2, 2, 2, 620, 621, 7, 42, 2, 2, 621, 622, 5, 76, 39, 2, 622, 623, 7, 43, 2, 2, 623, 624, 5, 76, 39, 2, 624, 99, 3, 2, 2, 2, 625, 630, 5, 102, 52, 2, 626, 627, 7, 299, 2, 2, 627, 629, 5, 102, 52, 2, 628, 626, 3, 2, 2, 2, 629, 632, 3, 2, 2, 2, 630, 628, 3, 2, 2, 2, 630, 631, 3, 2, 2, 2, 631, 101, 3, 2, 2, 2, 632, 630, 3, 2, 2, 2, 633, 637, 7, 261, 2, 2, 634, 636, 7, 260, 2, 2, 635, 634, 3, 2, 2, 2, 636, 639, 3, 2, 2, 2, 637, 638, 3, 2, 2, 2, 637, 635, 3, 2, 2, 2, 638, 103, 3, 2, 2, 2, 639, 637, 3, 2, 2, 2, 640, 641, 7, 70, 2, 2, 641, 642, 7, 297, 2, 2, 642, 647, 5, 110, 56, 2, 643, 644, 7, 299, 2, 2, 644, 646, 5, 110, 56, 2, 645, 643, 3, 2, 2, 2, 646, 649, 3, 2, 2, 2, 647, 645, 3, 2, 2, 2, 647, 648, 3, 2, 2, 2, 648, 650, 3, 2, 2, 2, 649, 647, 3, 2, 2, 2, 650, 651, 7, 298, 2, 2, 651, 105, 3, 2, 2, 2, 652, 653, 7, 118, 2, 2, 653, 654, 7, 27, 2, 2, 654, 655, 7, 29, 2, 2, 655, 107, 3, 2, 2, 2, 656, 657, 7, 118, 2, 2, 657, 658, 7, 29, 2, 2, 658, 109, 3, 2, 2, 2, 659, 660, 7, 259, 2, 2, 660, 661, 7, 286, 2, 2, 661, 662, 7, 259, 2, 2, 662, 111, 3, 2, 2, 2, 663, 670, 7, 25, 2, 2, 664, 665, 7, 292, 2, 2, 665, 670, 7, 292, 2, 2, 666, 670, 7, 24, 2, 2, 667, 668, 7, 291, 2, 2, 668, 670, 7, 291, 2, 2, 669, 663, 3, 2, 2, 2, 669, 664, 3, 2, 2, 2, 669, 666, 3, 2, 2, 2, 669, 667, 3, 2, 2, 2, 670, 113, 3, 2, 2, 2, 671, 686, 7, 286, 2, 2, 672, 686, 7, 287, 2, 2, 673, 686, 7, 288, 2, 2, 674, 675, 7, 288, 2, 2, 675, 686, 7, 286, 2, 2, 676, 677, 7, 287, 2, 2, 677, 686, 7, 286, 2, 2, 678, 679, 7, 288, 2, 2, 679, 686, 7, 287, 2, 2, 680, 681, 7, 289, 2, 2, 681, 686, 7, 286, 2, 2, 682, 683, 7, 288, 2, 2, 683, 684, 7, 286, 2, 2, 684, 686, 7, 287, 2, 2, 685, 671, 3, 2, 2, 2, 685, 672, 3, 2, 2, 2, 685, 673, 3, 2, 2, 2, 685, 674, 3, 2, 2, 2, 685, 676, 3, 2, 2, 2, 685, 678, 3, 2, 2, 2, 685, 680, 3, 2, 2, 2, 685, 682, 3, 2, 2, 2, 686, 115, 3, 2, 2, 2, 687, 688, 7, 288, 2, 2, 688, 695, 7, 288, 2, 2, 689, 690, 7, 287, 2, 2, 690, 695, 7, 287, 2, 2, 691, 695, 7, 292, 2, 2, 692, 695, 7, 293, 2, 2, 693, 695, 7, 291, 2, 2, 694, 687, 3, 2, 2, 2, 694, 689, 3, 2, 2, 2, 694, 691, 3, 2, 2, 2, 694, 692, 3, 2, 2, 2, 694, 693, 3, 2, 2, 2, 695, 117, 3, 2, 2, 2, 696, 697, 9, 10, 2, 2, 697, 119, 3, 2, 2, 2, 698, 699, 9, 11, 2, 2, 699, 121, 3, 2, 2, 2, 700, 701, 5, 102, 52, 2, 701, 123, 3, 2, 2, 2, 702, 714, 5, 126, 64, 2, 703, 714, 5, 128, 65, 2, 704, 705, 7, 311, 2, 2, 705, 714, 5, 128, 65, 2, 706, 714, 5, 130, 66, 2, 707, 714, 7, 318, 2, 2, 708, 714, 7, 319, 2, 2, 709, 711, 7, 27, 2, 2, 710, 709, 3, 2, 2, 2, 710, 711, 3, 2, 2, 2, 711, 712, 3, 2, 2, 2, 712, 714, 7, 285, 2, 2, 713, 702, 3, 2, 2, 2, 713, 703, 3, 2, 2, 2, 713, 704, 3, 2, 2, 2, 713, 706, 3, 2, 2, 2, 713, 707, 3, 2, 2, 2, 713, 708, 3, 2, 2, 2, 713, 710, 3, 2, 2, 2, 714, 125, 3, 2, 2, 2, 715, 716, 7, 316, 2, 2, 716, 127, 3, 2, 2, 2, 717, 718, 9, 12, 2, 2, 718, 129, 3, 2, 2, 2, 719, 720, 9, 6, 2, 2, 720, 131, 3, 2, 2, 2, 721, 722, 9, 13, 2, 2, 722, 133, 3, 2, 2, 2, 76, 144, 146, 151, 166, 170, 181, 186, 206, 214, 221, 225, 238, 251, 266, 273, 277, 281, 285, 293, 297, 305, 309, 318, 329, 338, 347, 353, 361, 364, 371, 374, 380, 387, 394, 405, 407, 415, 417, 421, 429, 438, 444, 449, 461, 466, 469, 475, 480, 485, 490, 496, 517, 519, 527, 531, 540, 544, 553, 562, 579, 588, 592, 596, 598, 609, 616, 630, 637, 647, 669, 685, 694, 710, 713] \ No newline at end of file diff --git a/src/lib/flinksql/FlinkSqlParser.js b/src/lib/flinksql/FlinkSqlParser.js index 466cb24..9a937d5 100644 --- a/src/lib/flinksql/FlinkSqlParser.js +++ b/src/lib/flinksql/FlinkSqlParser.js @@ -8,7 +8,7 @@ var grammarFileName = "FlinkSqlParser.g4"; var serializedATN = ["\u0003\u608b\ua72a\u8133\ub9ed\u417c\u3be7\u7786\u5964", - "\u0003\u0133\u013c\u0004\u0002\t\u0002\u0004\u0003\t\u0003\u0004\u0004", + "\u0003\u0142\u02d4\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,188 +17,471 @@ 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", - "\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\u0003\u0018\u0003\u0018\u0003\u0019\u0003\u0019\u0003\u0019\u0003", - "\u0019\u0003\u0019\u0005\u0019\u00d8\n\u0019\u0003\u001a\u0003\u001a", - "\u0005\u001a\u00dc\n\u001a\u0003\u001a\u0003\u001a\u0003\u001a\u0003", - "\u001a\u0003\u001b\u0003\u001b\u0003\u001b\u0003\u001b\u0005\u001b\u00e6", - "\n\u001b\u0003\u001b\u0003\u001b\u0003\u001b\u0003\u001b\u0003\u001c", - "\u0003\u001c\u0003\u001d\u0003\u001d\u0003\u001d\u0003\u001d\u0005\u001d", - "\u00f2\n\u001d\u0003\u001d\u0003\u001d\u0005\u001d\u00f6\n\u001d\u0003", - "\u001e\u0003\u001e\u0003\u001e\u0003\u001e\u0003\u001e\u0007\u001e\u00fd", - "\n\u001e\f\u001e\u000e\u001e\u0100\u000b\u001e\u0003\u001e\u0003\u001e", - "\u0003\u001f\u0003\u001f\u0003\u001f\u0003\u001f\u0007\u001f\u0108\n", - "\u001f\f\u001f\u000e\u001f\u010b\u000b\u001f\u0003 \u0003 \u0007 \u010f", - "\n \f \u000e \u0112\u000b \u0003 \u0003 \u0003!\u0003!\u0003!\u0007", - "!\u0119\n!\f!\u000e!\u011c\u000b!\u0003\"\u0003\"\u0007\"\u0120\n\"", - "\f\"\u000e\"\u0123\u000b\"\u0003#\u0003#\u0003#\u0003#\u0003#\u0007", - "#\u012a\n#\f#\u000e#\u012d\u000b#\u0003#\u0003#\u0003$\u0003$\u0003", - "$\u0003$\u0003%\u0003%\u0003%\u0003&\u0003&\u0003&\u0003&\u0003&\u0004", - "\u0110\u0121\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\u0138\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\u00d2\u0003", - "\u0002\u0002\u00022\u00d9\u0003\u0002\u0002\u00024\u00e1\u0003\u0002", - "\u0002\u00026\u00eb\u0003\u0002\u0002\u00028\u00ed\u0003\u0002\u0002", - "\u0002:\u00f7\u0003\u0002\u0002\u0002<\u0103\u0003\u0002\u0002\u0002", - ">\u010c\u0003\u0002\u0002\u0002@\u0115\u0003\u0002\u0002\u0002B\u011d", - "\u0003\u0002\u0002\u0002D\u0124\u0003\u0002\u0002\u0002F\u0130\u0003", - "\u0002\u0002\u0002H\u0134\u0003\u0002\u0002\u0002J\u0137\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\u0002V", - "R\u0003\u0002\u0002\u0002VU\u0003\u0002\u0002\u0002WZ\u0003\u0002\u0002", - "\u0002XV\u0003\u0002\u0002\u0002XY\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\u0002c", - "m\u0005 \u0011\u0002dm\u0005\"\u0012\u0002em\u0005$\u0013\u0002fm\u0005", - "*\u0016\u0002gm\u0005,\u0017\u0002hm\u0005.\u0018\u0002im\u00050\u0019", - "\u0002jm\u00052\u001a\u0002km\u00054\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\u0002", - "lj\u0003\u0002\u0002\u0002lk\u0003\u0002\u0002\u0002m\r\u0003\u0002", - "\u0002\u0002nq\u00056\u001c\u0002oq\u00058\u001d\u0002pn\u0003\u0002", - "\u0002\u0002po\u0003\u0002\u0002\u0002q\u000f\u0003\u0002\u0002\u0002", - "rs\u0007I\u0002\u0002st\u0007J\u0002\u0002tu\u0005B\"\u0002uv\u0007", - "\u0128\u0002\u0002v{\u0005\u0012\n\u0002wx\u0007\u012a\u0002\u0002x", - "z\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\u0007", - "g\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\u0007h\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\u0007g\u0002\u0002\u00c7\u00c8", - "\u0007\u00c7\u0002\u0002\u00c8\u00c9\u0005B\"\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\u00cf\u0007J\u0002\u0002\u00cf\u00d0\u0005H%\u0002\u00d0", - "\u00d1\u0005B\"\u0002\u00d1/\u0003\u0002\u0002\u0002\u00d2\u00d3\u0007", - "_\u0002\u0002\u00d3\u00d4\u0007\u00c7\u0002\u0002\u00d4\u00d5\u0005", - "H%\u0002\u00d5\u00d7\u0005B\"\u0002\u00d6\u00d8\t\u0003\u0002\u0002", - "\u00d7\u00d6\u0003\u0002\u0002\u0002\u00d7\u00d8\u0003\u0002\u0002\u0002", - "\u00d81\u0003\u0002\u0002\u0002\u00d9\u00db\u0007_\u0002\u0002\u00da", - "\u00dc\u0007\u00ae\u0002\u0002\u00db\u00da\u0003\u0002\u0002\u0002\u00db", - "\u00dc\u0003\u0002\u0002\u0002\u00dc\u00dd\u0003\u0002\u0002\u0002\u00dd", - "\u00de\u0007L\u0002\u0002\u00de\u00df\u0005H%\u0002\u00df\u00e0\u0005", - "B\"\u0002\u00e03\u0003\u0002\u0002\u0002\u00e1\u00e5\u0007_\u0002\u0002", - "\u00e2\u00e6\u0007\u00ae\u0002\u0002\u00e3\u00e4\u0007\u00ae\u0002\u0002", - "\u00e4\u00e6\u0007\u0107\u0002\u0002\u00e5\u00e2\u0003\u0002\u0002\u0002", - "\u00e5\u00e3\u0003\u0002\u0002\u0002\u00e5\u00e6\u0003\u0002\u0002\u0002", - "\u00e6\u00e7\u0003\u0002\u0002\u0002\u00e7\u00e8\u0007\u00a5\u0002\u0002", - "\u00e8\u00e9\u0005H%\u0002\u00e9\u00ea\u0005B\"\u0002\u00ea5\u0003\u0002", - "\u0002\u0002\u00eb\u00ec\u0003\u0002\u0002\u0002\u00ec7\u0003\u0002", - "\u0002\u0002\u00ed\u00ee\u0007N\u0002\u0002\u00ee\u00ef\t\u0004\u0002", - "\u0002\u00ef\u00f5\u0005B\"\u0002\u00f0\u00f2\u0005:\u001e\u0002\u00f1", - "\u00f0\u0003\u0002\u0002\u0002\u00f1\u00f2\u0003\u0002\u0002\u0002\u00f2", - "\u00f3\u0003\u0002\u0002\u0002\u00f3\u00f6\u00056\u001c\u0002\u00f4", - "\u00f6\u0005<\u001f\u0002\u00f5\u00f1\u0003\u0002\u0002\u0002\u00f5", - "\u00f4\u0003\u0002\u0002\u0002\u00f69\u0003\u0002\u0002\u0002\u00f7", - "\u00f8\u0007=\u0002\u0002\u00f8\u00f9\u0007\u0128\u0002\u0002\u00f9", - "\u00fe\u0005J&\u0002\u00fa\u00fb\u0007\u012a\u0002\u0002\u00fb\u00fd", - "\u0005J&\u0002\u00fc\u00fa\u0003\u0002\u0002\u0002\u00fd\u0100\u0003", - "\u0002\u0002\u0002\u00fe\u00fc\u0003\u0002\u0002\u0002\u00fe\u00ff\u0003", - "\u0002\u0002\u0002\u00ff\u0101\u0003\u0002\u0002\u0002\u0100\u00fe\u0003", - "\u0002\u0002\u0002\u0101\u0102\u0007\u0129\u0002\u0002\u0102;\u0003", - "\u0002\u0002\u0002\u0103\u0104\u0007H\u0002\u0002\u0104\u0109\u0005", - "> \u0002\u0105\u0106\u0007\u012a\u0002\u0002\u0106\u0108\u0005> \u0002", - "\u0107\u0105\u0003\u0002\u0002\u0002\u0108\u010b\u0003\u0002\u0002\u0002", - "\u0109\u0107\u0003\u0002\u0002\u0002\u0109\u010a\u0003\u0002\u0002\u0002", - "\u010a=\u0003\u0002\u0002\u0002\u010b\u0109\u0003\u0002\u0002\u0002", - "\u010c\u0110\u0007\u0128\u0002\u0002\u010d\u010f\u000b\u0002\u0002\u0002", - "\u010e\u010d\u0003\u0002\u0002\u0002\u010f\u0112\u0003\u0002\u0002\u0002", - "\u0110\u0111\u0003\u0002\u0002\u0002\u0110\u010e\u0003\u0002\u0002\u0002", - "\u0111\u0113\u0003\u0002\u0002\u0002\u0112\u0110\u0003\u0002\u0002\u0002", - "\u0113\u0114\u0007\u0129\u0002\u0002\u0114?\u0003\u0002\u0002\u0002", - "\u0115\u011a\u0005B\"\u0002\u0116\u0117\u0007\u012a\u0002\u0002\u0117", - "\u0119\u0005B\"\u0002\u0118\u0116\u0003\u0002\u0002\u0002\u0119\u011c", - "\u0003\u0002\u0002\u0002\u011a\u0118\u0003\u0002\u0002\u0002\u011a\u011b", - "\u0003\u0002\u0002\u0002\u011bA\u0003\u0002\u0002\u0002\u011c\u011a", - "\u0003\u0002\u0002\u0002\u011d\u0121\u0007\u0106\u0002\u0002\u011e\u0120", - "\u0007\u0105\u0002\u0002\u011f\u011e\u0003\u0002\u0002\u0002\u0120\u0123", - "\u0003\u0002\u0002\u0002\u0121\u0122\u0003\u0002\u0002\u0002\u0121\u011f", - "\u0003\u0002\u0002\u0002\u0122C\u0003\u0002\u0002\u0002\u0123\u0121", - "\u0003\u0002\u0002\u0002\u0124\u0125\u0007G\u0002\u0002\u0125\u0126", - "\u0007\u0128\u0002\u0002\u0126\u012b\u0005J&\u0002\u0127\u0128\u0007", - "\u012a\u0002\u0002\u0128\u012a\u0005J&\u0002\u0129\u0127\u0003\u0002", - "\u0002\u0002\u012a\u012d\u0003\u0002\u0002\u0002\u012b\u0129\u0003\u0002", - "\u0002\u0002\u012b\u012c\u0003\u0002\u0002\u0002\u012c\u012e\u0003\u0002", - "\u0002\u0002\u012d\u012b\u0003\u0002\u0002\u0002\u012e\u012f\u0007\u0129", - "\u0002\u0002\u012fE\u0003\u0002\u0002\u0002\u0130\u0131\u0007w\u0002", - "\u0002\u0131\u0132\u0007\u001c\u0002\u0002\u0132\u0133\u0007\u001e\u0002", - "\u0002\u0133G\u0003\u0002\u0002\u0002\u0134\u0135\u0007w\u0002\u0002", - "\u0135\u0136\u0007\u001e\u0002\u0002\u0136I\u0003\u0002\u0002\u0002", - "\u0137\u0138\u0007\u0104\u0002\u0002\u0138\u0139\u0007\u011f\u0002\u0002", - "\u0139\u013a\u0007\u0104\u0002\u0002\u013aK\u0003\u0002\u0002\u0002", - "\u001aVX]lp{\u0080\u0094\u009c\u00a3\u00a7\u00b4\u00c1\u00d7\u00db\u00e5", - "\u00f1\u00f5\u00fe\u0109\u0110\u011a\u0121\u012b"].join(""); + "$\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\u0003\u0002\u0003\u0002\u0003\u0002", + "\u0003\u0003\u0003\u0003\u0003\u0003\u0003\u0004\u0003\u0004\u0003\u0004", + "\u0003\u0004\u0007\u0004\u0091\n\u0004\f\u0004\u000e\u0004\u0094\u000b", + "\u0004\u0003\u0005\u0003\u0005\u0005\u0005\u0098\n\u0005\u0003\u0006", + "\u0003\u0006\u0003\u0007\u0003\u0007\u0003\u0007\u0003\u0007\u0003\u0007", + "\u0003\u0007\u0003\u0007\u0003\u0007\u0003\u0007\u0003\u0007\u0003\u0007", + "\u0005\u0007\u00a7\n\u0007\u0003\b\u0003\b\u0005\b\u00ab\n\b\u0003\t", + "\u0003\t\u0003\t\u0003\t\u0003\t\u0003\t\u0003\t\u0007\t\u00b4\n\t\f", + "\t\u000e\t\u00b7\u000b\t\u0003\t\u0003\t\u0005\t\u00bb\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\u00cd\n\u000e\f\u000e\u000e\u000e\u00d0\u000b\u000e\u0003\u000f", + "\u0003\u000f\u0003\u0010\u0003\u0010\u0003\u0010\u0005\u0010\u00d7\n", + "\u0010\u0003\u0010\u0003\u0010\u0003\u0010\u0003\u0011\u0003\u0011\u0005", + "\u0011\u00de\n\u0011\u0003\u0011\u0003\u0011\u0005\u0011\u00e2\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", + "\u00ef\n\u0013\u0003\u0014\u0003\u0014\u0003\u0014\u0003\u0014\u0003", + "\u0015\u0003\u0015\u0003\u0015\u0003\u0015\u0003\u0015\u0007\u0015\u00fa", + "\n\u0015\f\u0015\u000e\u0015\u00fd\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\u010b\n", + "\u0018\u0003\u0018\u0003\u0018\u0003\u0019\u0003\u0019\u0003\u0019\u0005", + "\u0019\u0112\n\u0019\u0003\u0019\u0003\u0019\u0005\u0019\u0116\n\u0019", + "\u0003\u001a\u0003\u001a\u0005\u001a\u011a\n\u001a\u0003\u001a\u0003", + "\u001a\u0005\u001a\u011e\n\u001a\u0003\u001a\u0003\u001a\u0003\u001b", + "\u0003\u001b\u0003\u001b\u0003\u001b\u0005\u001b\u0126\n\u001b\u0003", + "\u001b\u0003\u001b\u0005\u001b\u012a\n\u001b\u0003\u001b\u0003\u001b", + "\u0003\u001c\u0003\u001c\u0003\u001c\u0003\u001c\u0005\u001c\u0132\n", + "\u001c\u0003\u001c\u0003\u001c\u0005\u001c\u0136\n\u001c\u0003\u001d", + "\u0003\u001d\u0003\u001d\u0003\u001d\u0003\u001d\u0007\u001d\u013d\n", + "\u001d\f\u001d\u000e\u001d\u0140\u000b\u001d\u0003\u001d\u0003\u001d", + "\u0003\u001e\u0003\u001e\u0003\u001e\u0003\u001e\u0007\u001e\u0148\n", + "\u001e\f\u001e\u000e\u001e\u014b\u000b\u001e\u0003\u001f\u0003\u001f", + "\u0003\u001f\u0003\u001f\u0007\u001f\u0151\n\u001f\f\u001f\u000e\u001f", + "\u0154\u000b\u001f\u0003\u001f\u0003\u001f\u0003 \u0003 \u0003 \u0003", + " \u0005 \u015c\n \u0003!\u0003!\u0003\"\u0003\"\u0005\"\u0162\n\"\u0003", + "\"\u0003\"\u0003\"\u0003\"\u0007\"\u0168\n\"\f\"\u000e\"\u016b\u000b", + "\"\u0005\"\u016d\n\"\u0003\"\u0003\"\u0003\"\u0003#\u0003#\u0005#\u0174", + "\n#\u0003#\u0005#\u0177\n#\u0003#\u0003#\u0003#\u0003#\u0005#\u017d", + "\n#\u0003$\u0003$\u0003$\u0007$\u0182\n$\f$\u000e$\u0185\u000b$\u0003", + "%\u0003%\u0003%\u0003&\u0005&\u018b\n&\u0003&\u0003&\u0003\'\u0003\'", + "\u0003(\u0003(\u0003(\u0003(\u0003(\u0005(\u0196\n(\u0005(\u0198\n(", + "\u0003(\u0003(\u0003(\u0003(\u0003(\u0003(\u0007(\u01a0\n(\f(\u000e", + "(\u01a3\u000b(\u0003)\u0005)\u01a6\n)\u0003)\u0003)\u0003)\u0003)\u0003", + ")\u0003)\u0005)\u01ae\n)\u0003)\u0003)\u0003)\u0003)\u0003)\u0007)\u01b5", + "\n)\f)\u000e)\u01b8\u000b)\u0003)\u0003)\u0003)\u0005)\u01bd\n)\u0003", + ")\u0003)\u0003)\u0005)\u01c2\n)\u0003)\u0003)\u0003)\u0003)\u0003)\u0003", + ")\u0003)\u0003)\u0007)\u01cc\n)\f)\u000e)\u01cf\u000b)\u0003)\u0003", + ")\u0005)\u01d3\n)\u0003)\u0005)\u01d6\n)\u0003)\u0003)\u0003)\u0003", + ")\u0005)\u01dc\n)\u0003)\u0003)\u0003)\u0005)\u01e1\n)\u0003)\u0003", + ")\u0003)\u0005)\u01e6\n)\u0003)\u0003)\u0003)\u0005)\u01eb\n)\u0003", + "*\u0003*\u0003*\u0003*\u0005*\u01f1\n*\u0003*\u0003*\u0003*\u0003*\u0003", + "*\u0003*\u0003*\u0003*\u0003*\u0003*\u0003*\u0003*\u0003*\u0003*\u0003", + "*\u0003*\u0003*\u0003*\u0003*\u0007*\u0206\n*\f*\u000e*\u0209\u000b", + "*\u0003+\u0003+\u0003+\u0006+\u020e\n+\r+\u000e+\u020f\u0003+\u0003", + "+\u0005+\u0214\n+\u0003+\u0003+\u0003+\u0003+\u0003+\u0006+\u021b\n", + "+\r+\u000e+\u021c\u0003+\u0003+\u0005+\u0221\n+\u0003+\u0003+\u0003", + "+\u0003+\u0003+\u0003+\u0003+\u0005+\u022a\n+\u0003+\u0003+\u0003+\u0003", + "+\u0003+\u0003+\u0003+\u0005+\u0233\n+\u0003+\u0003+\u0003+\u0003+\u0003", + "+\u0003+\u0003+\u0003+\u0003+\u0003+\u0003+\u0003+\u0003+\u0003+\u0003", + "+\u0005+\u0244\n+\u0003+\u0003+\u0003+\u0003+\u0003+\u0007+\u024b\n", + "+\f+\u000e+\u024e\u000b+\u0003,\u0005,\u0251\n,\u0003,\u0003,\u0005", + ",\u0255\n,\u0005,\u0257\n,\u0003-\u0003-\u0003-\u0003-\u0003.\u0003", + ".\u0003.\u0007.\u0260\n.\f.\u000e.\u0263\u000b.\u0003/\u0003/\u0003", + "0\u00030\u00050\u0269\n0\u00031\u00031\u00032\u00032\u00032\u00032\u0003", + "2\u00033\u00033\u00033\u00073\u0275\n3\f3\u000e3\u0278\u000b3\u0003", + "4\u00034\u00074\u027c\n4\f4\u000e4\u027f\u000b4\u00035\u00035\u0003", + "5\u00035\u00035\u00075\u0286\n5\f5\u000e5\u0289\u000b5\u00035\u0003", + "5\u00036\u00036\u00036\u00036\u00037\u00037\u00037\u00038\u00038\u0003", + "8\u00038\u00039\u00039\u00039\u00039\u00039\u00039\u00059\u029e\n9\u0003", + ":\u0003:\u0003:\u0003:\u0003:\u0003:\u0003:\u0003:\u0003:\u0003:\u0003", + ":\u0003:\u0003:\u0003:\u0005:\u02ae\n:\u0003;\u0003;\u0003;\u0003;\u0003", + ";\u0003;\u0003;\u0005;\u02b7\n;\u0003<\u0003<\u0003=\u0003=\u0003>\u0003", + ">\u0003?\u0003?\u0003?\u0003?\u0003?\u0003?\u0003?\u0003?\u0005?\u02c7", + "\n?\u0003?\u0005?\u02ca\n?\u0003@\u0003@\u0003A\u0003A\u0003B\u0003", + "B\u0003C\u0003C\u0003C\u0003\u027d\u0005NRTD\u0002\u0004\u0006\b\n\f", + "\u000e\u0010\u0012\u0014\u0016\u0018\u001a\u001c\u001e \"$&(*,.0246", + "8:<>@BDFHJLNPRTVXZ\\^`bdfhjlnprtvxz|~\u0080\u0082\u0084\u0002\u000e", + "\u0003\u0002\u0108\u011e\u0003\u0002\u00c0\u00c1\u0004\u0002PP\u0094", + "\u0094\u0003\u0002\u000b\f\u0003\u0002#$\u0004\u0002\u0082\u0083\u0088", + "\u0088\u0003\u0002\u0084\u0087\u0004\u0002\u0082\u0083\u008b\u008b\u0005", + "\u0002\u0087\u0087\u0136\u0136\u0138\u013c\u0005\u0002\u001c\u001c\u0122", + "\u0123\u0138\u0139\u0004\u0002\u012f\u0131\u013e\u013e\u0004\u0002\u000b", + "\u000b\r\r\u0002\u0307\u0002\u0086\u0003\u0002\u0002\u0002\u0004\u0089", + "\u0003\u0002\u0002\u0002\u0006\u0092\u0003\u0002\u0002\u0002\b\u0097", + "\u0003\u0002\u0002\u0002\n\u0099\u0003\u0002\u0002\u0002\f\u00a6\u0003", + "\u0002\u0002\u0002\u000e\u00aa\u0003\u0002\u0002\u0002\u0010\u00ac\u0003", + "\u0002\u0002\u0002\u0012\u00be\u0003\u0002\u0002\u0002\u0014\u00c1\u0003", + "\u0002\u0002\u0002\u0016\u00c3\u0003\u0002\u0002\u0002\u0018\u00c5\u0003", + "\u0002\u0002\u0002\u001a\u00c9\u0003\u0002\u0002\u0002\u001c\u00d1\u0003", + "\u0002\u0002\u0002\u001e\u00d3\u0003\u0002\u0002\u0002 \u00db\u0003", + "\u0002\u0002\u0002\"\u00e7\u0003\u0002\u0002\u0002$\u00e9\u0003\u0002", + "\u0002\u0002&\u00f0\u0003\u0002\u0002\u0002(\u00f4\u0003\u0002\u0002", + "\u0002*\u0100\u0003\u0002\u0002\u0002,\u0105\u0003\u0002\u0002\u0002", + ".\u0107\u0003\u0002\u0002\u00020\u010e\u0003\u0002\u0002\u00022\u0117", + "\u0003\u0002\u0002\u00024\u0121\u0003\u0002\u0002\u00026\u012d\u0003", + "\u0002\u0002\u00028\u0137\u0003\u0002\u0002\u0002:\u0143\u0003\u0002", + "\u0002\u0002<\u014c\u0003\u0002\u0002\u0002>\u015b\u0003\u0002\u0002", + "\u0002@\u015d\u0003\u0002\u0002\u0002B\u015f\u0003\u0002\u0002\u0002", + "D\u017c\u0003\u0002\u0002\u0002F\u017e\u0003\u0002\u0002\u0002H\u0186", + "\u0003\u0002\u0002\u0002J\u018a\u0003\u0002\u0002\u0002L\u018e\u0003", + "\u0002\u0002\u0002N\u0197\u0003\u0002\u0002\u0002P\u01ea\u0003\u0002", + "\u0002\u0002R\u01f0\u0003\u0002\u0002\u0002T\u0243\u0003\u0002\u0002", + "\u0002V\u0256\u0003\u0002\u0002\u0002X\u0258\u0003\u0002\u0002\u0002", + "Z\u025c\u0003\u0002\u0002\u0002\\\u0264\u0003\u0002\u0002\u0002^\u0268", + "\u0003\u0002\u0002\u0002`\u026a\u0003\u0002\u0002\u0002b\u026c\u0003", + "\u0002\u0002\u0002d\u0271\u0003\u0002\u0002\u0002f\u0279\u0003\u0002", + "\u0002\u0002h\u0280\u0003\u0002\u0002\u0002j\u028c\u0003\u0002\u0002", + "\u0002l\u0290\u0003\u0002\u0002\u0002n\u0293\u0003\u0002\u0002\u0002", + "p\u029d\u0003\u0002\u0002\u0002r\u02ad\u0003\u0002\u0002\u0002t\u02b6", + "\u0003\u0002\u0002\u0002v\u02b8\u0003\u0002\u0002\u0002x\u02ba\u0003", + "\u0002\u0002\u0002z\u02bc\u0003\u0002\u0002\u0002|\u02c9\u0003\u0002", + "\u0002\u0002~\u02cb\u0003\u0002\u0002\u0002\u0080\u02cd\u0003\u0002", + "\u0002\u0002\u0082\u02cf\u0003\u0002\u0002\u0002\u0084\u02d1\u0003\u0002", + "\u0002\u0002\u0086\u0087\u0005\u0004\u0003\u0002\u0087\u0088\u0007\u0002", + "\u0002\u0003\u0088\u0003\u0003\u0002\u0002\u0002\u0089\u008a\u0005\u0006", + "\u0004\u0002\u008a\u008b\u0007\u0002\u0002\u0003\u008b\u0005\u0003\u0002", + "\u0002\u0002\u008c\u008d\u0005\b\u0005\u0002\u008d\u008e\u0007\u012d", + "\u0002\u0002\u008e\u0091\u0003\u0002\u0002\u0002\u008f\u0091\u0005\n", + "\u0006\u0002\u0090\u008c\u0003\u0002\u0002\u0002\u0090\u008f\u0003\u0002", + "\u0002\u0002\u0091\u0094\u0003\u0002\u0002\u0002\u0092\u0090\u0003\u0002", + "\u0002\u0002\u0092\u0093\u0003\u0002\u0002\u0002\u0093\u0007\u0003\u0002", + "\u0002\u0002\u0094\u0092\u0003\u0002\u0002\u0002\u0095\u0098\u0005\f", + "\u0007\u0002\u0096\u0098\u0005\u000e\b\u0002\u0097\u0095\u0003\u0002", + "\u0002\u0002\u0097\u0096\u0003\u0002\u0002\u0002\u0098\t\u0003\u0002", + "\u0002\u0002\u0099\u009a\u0007\u012d\u0002\u0002\u009a\u000b\u0003\u0002", + "\u0002\u0002\u009b\u00a7\u0005\u0010\t\u0002\u009c\u00a7\u0005\u001e", + "\u0010\u0002\u009d\u00a7\u0005 \u0011\u0002\u009e\u00a7\u0005\"\u0012", + "\u0002\u009f\u00a7\u0005$\u0013\u0002\u00a0\u00a7\u0005*\u0016\u0002", + "\u00a1\u00a7\u0005,\u0017\u0002\u00a2\u00a7\u0005.\u0018\u0002\u00a3", + "\u00a7\u00050\u0019\u0002\u00a4\u00a7\u00052\u001a\u0002\u00a5\u00a7", + "\u00054\u001b\u0002\u00a6\u009b\u0003\u0002\u0002\u0002\u00a6\u009c", + "\u0003\u0002\u0002\u0002\u00a6\u009d\u0003\u0002\u0002\u0002\u00a6\u009e", + "\u0003\u0002\u0002\u0002\u00a6\u009f\u0003\u0002\u0002\u0002\u00a6\u00a0", + "\u0003\u0002\u0002\u0002\u00a6\u00a1\u0003\u0002\u0002\u0002\u00a6\u00a2", + "\u0003\u0002\u0002\u0002\u00a6\u00a3\u0003\u0002\u0002\u0002\u00a6\u00a4", + "\u0003\u0002\u0002\u0002\u00a6\u00a5\u0003\u0002\u0002\u0002\u00a7\r", + "\u0003\u0002\u0002\u0002\u00a8\u00ab\u0005@!\u0002\u00a9\u00ab\u0005", + "6\u001c\u0002\u00aa\u00a8\u0003\u0002\u0002\u0002\u00aa\u00a9\u0003", + "\u0002\u0002\u0002\u00ab\u000f\u0003\u0002\u0002\u0002\u00ac\u00ad\u0007", + "I\u0002\u0002\u00ad\u00ae\u0007J\u0002\u0002\u00ae\u00af\u0005f4\u0002", + "\u00af\u00b0\u0007\u012a\u0002\u0002\u00b0\u00b5\u0005\u0012\n\u0002", + "\u00b1\u00b2\u0007\u012c\u0002\u0002\u00b2\u00b4\u0005\u0012\n\u0002", + "\u00b3\u00b1\u0003\u0002\u0002\u0002\u00b4\u00b7\u0003\u0002\u0002\u0002", + "\u00b5\u00b3\u0003\u0002\u0002\u0002\u00b5\u00b6\u0003\u0002\u0002\u0002", + "\u00b6\u00b8\u0003\u0002\u0002\u0002\u00b7\u00b5\u0003\u0002\u0002\u0002", + "\u00b8\u00ba\u0007\u012b\u0002\u0002\u00b9\u00bb\u0005\u0018\r\u0002", + "\u00ba\u00b9\u0003\u0002\u0002\u0002\u00ba\u00bb\u0003\u0002\u0002\u0002", + "\u00bb\u00bc\u0003\u0002\u0002\u0002\u00bc\u00bd\u0005h5\u0002\u00bd", + "\u0011\u0003\u0002\u0002\u0002\u00be\u00bf\u0005\u0014\u000b\u0002\u00bf", + "\u00c0\u0005\u0016\f\u0002\u00c0\u0013\u0003\u0002\u0002\u0002\u00c1", + "\u00c2\u0007\u0106\u0002\u0002\u00c2\u0015\u0003\u0002\u0002\u0002\u00c3", + "\u00c4\t\u0002\u0002\u0002\u00c4\u0017\u0003\u0002\u0002\u0002\u00c5", + "\u00c6\u0007\u00cf\u0002\u0002\u00c6\u00c7\u0007\u0010\u0002\u0002\u00c7", + "\u00c8\u0005\u001a\u000e\u0002\u00c8\u0019\u0003\u0002\u0002\u0002\u00c9", + "\u00ce\u0005\u001c\u000f\u0002\u00ca\u00cb\u0007\u012c\u0002\u0002\u00cb", + "\u00cd\u0005\u001c\u000f\u0002\u00cc\u00ca\u0003\u0002\u0002\u0002\u00cd", + "\u00d0\u0003\u0002\u0002\u0002\u00ce\u00cc\u0003\u0002\u0002\u0002\u00ce", + "\u00cf\u0003\u0002\u0002\u0002\u00cf\u001b\u0003\u0002\u0002\u0002\u00d0", + "\u00ce\u0003\u0002\u0002\u0002\u00d1\u00d2\u0007\u0106\u0002\u0002\u00d2", + "\u001d\u0003\u0002\u0002\u0002\u00d3\u00d4\u0007I\u0002\u0002\u00d4", + "\u00d6\u0007\u00c7\u0002\u0002\u00d5\u00d7\u0005j6\u0002\u00d6\u00d5", + "\u0003\u0002\u0002\u0002\u00d6\u00d7\u0003\u0002\u0002\u0002\u00d7\u00d8", + "\u0003\u0002\u0002\u0002\u00d8\u00d9\u0005f4\u0002\u00d9\u00da\u0005", + "h5\u0002\u00da\u001f\u0003\u0002\u0002\u0002\u00db\u00dd\u0007I\u0002", + "\u0002\u00dc\u00de\u0007\u00ae\u0002\u0002\u00dd\u00dc\u0003\u0002\u0002", + "\u0002\u00dd\u00de\u0003\u0002\u0002\u0002\u00de\u00df\u0003\u0002\u0002", + "\u0002\u00df\u00e1\u0007L\u0002\u0002\u00e0\u00e2\u0005j6\u0002\u00e1", + "\u00e0\u0003\u0002\u0002\u0002\u00e1\u00e2\u0003\u0002\u0002\u0002\u00e2", + "\u00e3\u0003\u0002\u0002\u0002\u00e3\u00e4\u0005f4\u0002\u00e4\u00e5", + "\u0007\n\u0002\u0002\u00e5\u00e6\u0005B\"\u0002\u00e6!\u0003\u0002\u0002", + "\u0002\u00e7\u00e8\u0003\u0002\u0002\u0002\u00e8#\u0003\u0002\u0002", + "\u0002\u00e9\u00ea\u0007g\u0002\u0002\u00ea\u00eb\u0007J\u0002\u0002", + "\u00eb\u00ee\u0005f4\u0002\u00ec\u00ef\u0005&\u0014\u0002\u00ed\u00ef", + "\u0005(\u0015\u0002\u00ee\u00ec\u0003\u0002\u0002\u0002\u00ee\u00ed", + "\u0003\u0002\u0002\u0002\u00ef%\u0003\u0002\u0002\u0002\u00f0\u00f1", + "\u0007h\u0002\u0002\u00f1\u00f2\u0007d\u0002\u0002\u00f2\u00f3\u0005", + "f4\u0002\u00f3\'\u0003\u0002\u0002\u0002\u00f4\u00f5\u0007k\u0002\u0002", + "\u00f5\u00f6\u0007\u012a\u0002\u0002\u00f6\u00fb\u0005n8\u0002\u00f7", + "\u00f8\u0007\u012c\u0002\u0002\u00f8\u00fa\u0005n8\u0002\u00f9\u00f7", + "\u0003\u0002\u0002\u0002\u00fa\u00fd\u0003\u0002\u0002\u0002\u00fb\u00f9", + "\u0003\u0002\u0002\u0002\u00fb\u00fc\u0003\u0002\u0002\u0002\u00fc\u00fe", + "\u0003\u0002\u0002\u0002\u00fd\u00fb\u0003\u0002\u0002\u0002\u00fe\u00ff", + "\u0007\u012b\u0002\u0002\u00ff)\u0003\u0002\u0002\u0002\u0100\u0101", + "\u0007g\u0002\u0002\u0101\u0102\u0007\u00c7\u0002\u0002\u0102\u0103", + "\u0005f4\u0002\u0103\u0104\u0005(\u0015\u0002\u0104+\u0003\u0002\u0002", + "\u0002\u0105\u0106\u0003\u0002\u0002\u0002\u0106-\u0003\u0002\u0002", + "\u0002\u0107\u0108\u0007_\u0002\u0002\u0108\u010a\u0007J\u0002\u0002", + "\u0109\u010b\u0005l7\u0002\u010a\u0109\u0003\u0002\u0002\u0002\u010a", + "\u010b\u0003\u0002\u0002\u0002\u010b\u010c\u0003\u0002\u0002\u0002\u010c", + "\u010d\u0005f4\u0002\u010d/\u0003\u0002\u0002\u0002\u010e\u010f\u0007", + "_\u0002\u0002\u010f\u0111\u0007\u00c7\u0002\u0002\u0110\u0112\u0005", + "l7\u0002\u0111\u0110\u0003\u0002\u0002\u0002\u0111\u0112\u0003\u0002", + "\u0002\u0002\u0112\u0113\u0003\u0002\u0002\u0002\u0113\u0115\u0005f", + "4\u0002\u0114\u0116\t\u0003\u0002\u0002\u0115\u0114\u0003\u0002\u0002", + "\u0002\u0115\u0116\u0003\u0002\u0002\u0002\u01161\u0003\u0002\u0002", + "\u0002\u0117\u0119\u0007_\u0002\u0002\u0118\u011a\u0007\u00ae\u0002", + "\u0002\u0119\u0118\u0003\u0002\u0002\u0002\u0119\u011a\u0003\u0002\u0002", + "\u0002\u011a\u011b\u0003\u0002\u0002\u0002\u011b\u011d\u0007L\u0002", + "\u0002\u011c\u011e\u0005l7\u0002\u011d\u011c\u0003\u0002\u0002\u0002", + "\u011d\u011e\u0003\u0002\u0002\u0002\u011e\u011f\u0003\u0002\u0002\u0002", + "\u011f\u0120\u0005f4\u0002\u01203\u0003\u0002\u0002\u0002\u0121\u0125", + "\u0007_\u0002\u0002\u0122\u0126\u0007\u00ae\u0002\u0002\u0123\u0124", + "\u0007\u00ae\u0002\u0002\u0124\u0126\u0007\u0107\u0002\u0002\u0125\u0122", + "\u0003\u0002\u0002\u0002\u0125\u0123\u0003\u0002\u0002\u0002\u0125\u0126", + "\u0003\u0002\u0002\u0002\u0126\u0127\u0003\u0002\u0002\u0002\u0127\u0129", + "\u0007\u00a5\u0002\u0002\u0128\u012a\u0005l7\u0002\u0129\u0128\u0003", + "\u0002\u0002\u0002\u0129\u012a\u0003\u0002\u0002\u0002\u012a\u012b\u0003", + "\u0002\u0002\u0002\u012b\u012c\u0005f4\u0002\u012c5\u0003\u0002\u0002", + "\u0002\u012d\u012e\u0007N\u0002\u0002\u012e\u012f\t\u0004\u0002\u0002", + "\u012f\u0135\u0005f4\u0002\u0130\u0132\u00058\u001d\u0002\u0131\u0130", + "\u0003\u0002\u0002\u0002\u0131\u0132\u0003\u0002\u0002\u0002\u0132\u0133", + "\u0003\u0002\u0002\u0002\u0133\u0136\u0005B\"\u0002\u0134\u0136\u0005", + ":\u001e\u0002\u0135\u0131\u0003\u0002\u0002\u0002\u0135\u0134\u0003", + "\u0002\u0002\u0002\u01367\u0003\u0002\u0002\u0002\u0137\u0138\u0007", + "=\u0002\u0002\u0138\u0139\u0007\u012a\u0002\u0002\u0139\u013e\u0005", + "n8\u0002\u013a\u013b\u0007\u012c\u0002\u0002\u013b\u013d\u0005n8\u0002", + "\u013c\u013a\u0003\u0002\u0002\u0002\u013d\u0140\u0003\u0002\u0002\u0002", + "\u013e\u013c\u0003\u0002\u0002\u0002\u013e\u013f\u0003\u0002\u0002\u0002", + "\u013f\u0141\u0003\u0002\u0002\u0002\u0140\u013e\u0003\u0002\u0002\u0002", + "\u0141\u0142\u0007\u012b\u0002\u0002\u01429\u0003\u0002\u0002\u0002", + "\u0143\u0144\u0007H\u0002\u0002\u0144\u0149\u0005<\u001f\u0002\u0145", + "\u0146\u0007\u012c\u0002\u0002\u0146\u0148\u0005<\u001f\u0002\u0147", + "\u0145\u0003\u0002\u0002\u0002\u0148\u014b\u0003\u0002\u0002\u0002\u0149", + "\u0147\u0003\u0002\u0002\u0002\u0149\u014a\u0003\u0002\u0002\u0002\u014a", + ";\u0003\u0002\u0002\u0002\u014b\u0149\u0003\u0002\u0002\u0002\u014c", + "\u014d\u0007\u012a\u0002\u0002\u014d\u0152\u0005> \u0002\u014e\u014f", + "\u0007\u012c\u0002\u0002\u014f\u0151\u0005> \u0002\u0150\u014e\u0003", + "\u0002\u0002\u0002\u0151\u0154\u0003\u0002\u0002\u0002\u0152\u0150\u0003", + "\u0002\u0002\u0002\u0152\u0153\u0003\u0002\u0002\u0002\u0153\u0155\u0003", + "\u0002\u0002\u0002\u0154\u0152\u0003\u0002\u0002\u0002\u0155\u0156\u0007", + "\u012b\u0002\u0002\u0156=\u0003\u0002\u0002\u0002\u0157\u015c\u0005", + "~@\u0002\u0158\u015c\u0005\u0082B\u0002\u0159\u015c\u0007\u0142\u0002", + "\u0002\u015a\u015c\u0007\u011e\u0002\u0002\u015b\u0157\u0003\u0002\u0002", + "\u0002\u015b\u0158\u0003\u0002\u0002\u0002\u015b\u0159\u0003\u0002\u0002", + "\u0002\u015b\u015a\u0003\u0002\u0002\u0002\u015c?\u0003\u0002\u0002", + "\u0002\u015d\u015e\u0003\u0002\u0002\u0002\u015eA\u0003\u0002\u0002", + "\u0002\u015f\u0161\u0007\u0007\u0002\u0002\u0160\u0162\u0005\u0084C", + "\u0002\u0161\u0160\u0003\u0002\u0002\u0002\u0161\u0162\u0003\u0002\u0002", + "\u0002\u0162\u016c\u0003\u0002\u0002\u0002\u0163\u016d\u0007\u0136\u0002", + "\u0002\u0164\u0169\u0005D#\u0002\u0165\u0166\u0007\u012c\u0002\u0002", + "\u0166\u0168\u0005D#\u0002\u0167\u0165\u0003\u0002\u0002\u0002\u0168", + "\u016b\u0003\u0002\u0002\u0002\u0169\u0167\u0003\u0002\u0002\u0002\u0169", + "\u016a\u0003\u0002\u0002\u0002\u016a\u016d\u0003\u0002\u0002\u0002\u016b", + "\u0169\u0003\u0002\u0002\u0002\u016c\u0163\u0003\u0002\u0002\u0002\u016c", + "\u0164\u0003\u0002\u0002\u0002\u016d\u016e\u0003\u0002\u0002\u0002\u016e", + "\u016f\u0007\b\u0002\u0002\u016f\u0170\u0005F$\u0002\u0170C\u0003\u0002", + "\u0002\u0002\u0171\u0176\u0005L\'\u0002\u0172\u0174\u0007\n\u0002\u0002", + "\u0173\u0172\u0003\u0002\u0002\u0002\u0173\u0174\u0003\u0002\u0002\u0002", + "\u0174\u0175\u0003\u0002\u0002\u0002\u0175\u0177\u0005f4\u0002\u0176", + "\u0173\u0003\u0002\u0002\u0002\u0176\u0177\u0003\u0002\u0002\u0002\u0177", + "\u017d\u0003\u0002\u0002\u0002\u0178\u0179\u0005f4\u0002\u0179\u017a", + "\u0007\u0127\u0002\u0002\u017a\u017b\u0007\u0136\u0002\u0002\u017b\u017d", + "\u0003\u0002\u0002\u0002\u017c\u0171\u0003\u0002\u0002\u0002\u017c\u0178", + "\u0003\u0002\u0002\u0002\u017dE\u0003\u0002\u0002\u0002\u017e\u0183", + "\u0005H%\u0002\u017f\u0180\u0007\u012c\u0002\u0002\u0180\u0182\u0005", + "H%\u0002\u0181\u017f\u0003\u0002\u0002\u0002\u0182\u0185\u0003\u0002", + "\u0002\u0002\u0183\u0181\u0003\u0002\u0002\u0002\u0183\u0184\u0003\u0002", + "\u0002\u0002\u0184G\u0003\u0002\u0002\u0002\u0185\u0183\u0003\u0002", + "\u0002\u0002\u0186\u0187\u0005J&\u0002\u0187\u0188\u0005V,\u0002\u0188", + "I\u0003\u0002\u0002\u0002\u0189\u018b\u0007J\u0002\u0002\u018a\u0189", + "\u0003\u0002\u0002\u0002\u018a\u018b\u0003\u0002\u0002\u0002\u018b\u018c", + "\u0003\u0002\u0002\u0002\u018c\u018d\u0005f4\u0002\u018dK\u0003\u0002", + "\u0002\u0002\u018e\u018f\u0005N(\u0002\u018fM\u0003\u0002\u0002\u0002", + "\u0190\u0191\b(\u0001\u0002\u0191\u0192\u0007\u001c\u0002\u0002\u0192", + "\u0198\u0005N(\u0006\u0193\u0195\u0005R*\u0002\u0194\u0196\u0005P)\u0002", + "\u0195\u0194\u0003\u0002\u0002\u0002\u0195\u0196\u0003\u0002\u0002\u0002", + "\u0196\u0198\u0003\u0002\u0002\u0002\u0197\u0190\u0003\u0002\u0002\u0002", + "\u0197\u0193\u0003\u0002\u0002\u0002\u0198\u01a1\u0003\u0002\u0002\u0002", + "\u0199\u019a\f\u0004\u0002\u0002\u019a\u019b\u0007\u001a\u0002\u0002", + "\u019b\u01a0\u0005N(\u0005\u019c\u019d\f\u0003\u0002\u0002\u019d\u019e", + "\u0007\u0019\u0002\u0002\u019e\u01a0\u0005N(\u0004\u019f\u0199\u0003", + "\u0002\u0002\u0002\u019f\u019c\u0003\u0002\u0002\u0002\u01a0\u01a3\u0003", + "\u0002\u0002\u0002\u01a1\u019f\u0003\u0002\u0002\u0002\u01a1\u01a2\u0003", + "\u0002\u0002\u0002\u01a2O\u0003\u0002\u0002\u0002\u01a3\u01a1\u0003", + "\u0002\u0002\u0002\u01a4\u01a6\u0007\u001c\u0002\u0002\u01a5\u01a4\u0003", + "\u0002\u0002\u0002\u01a5\u01a6\u0003\u0002\u0002\u0002\u01a6\u01a7\u0003", + "\u0002\u0002\u0002\u01a7\u01a8\u0007\u001f\u0002\u0002\u01a8\u01a9\u0005", + "R*\u0002\u01a9\u01aa\u0007\u001a\u0002\u0002\u01aa\u01ab\u0005R*\u0002", + "\u01ab\u01eb\u0003\u0002\u0002\u0002\u01ac\u01ae\u0007\u001c\u0002\u0002", + "\u01ad\u01ac\u0003\u0002\u0002\u0002\u01ad\u01ae\u0003\u0002\u0002\u0002", + "\u01ae\u01af\u0003\u0002\u0002\u0002\u01af\u01b0\u0007\u001b\u0002\u0002", + "\u01b0\u01b1\u0007\u012a\u0002\u0002\u01b1\u01b6\u0005L\'\u0002\u01b2", + "\u01b3\u0007\u012c\u0002\u0002\u01b3\u01b5\u0005L\'\u0002\u01b4\u01b2", + "\u0003\u0002\u0002\u0002\u01b5\u01b8\u0003\u0002\u0002\u0002\u01b6\u01b4", + "\u0003\u0002\u0002\u0002\u01b6\u01b7\u0003\u0002\u0002\u0002\u01b7\u01b9", + "\u0003\u0002\u0002\u0002\u01b8\u01b6\u0003\u0002\u0002\u0002\u01b9\u01ba", + "\u0007\u012b\u0002\u0002\u01ba\u01eb\u0003\u0002\u0002\u0002\u01bb\u01bd", + "\u0007\u001c\u0002\u0002\u01bc\u01bb\u0003\u0002\u0002\u0002\u01bc\u01bd", + "\u0003\u0002\u0002\u0002\u01bd\u01be\u0003\u0002\u0002\u0002\u01be\u01bf", + "\u0007!\u0002\u0002\u01bf\u01eb\u0005R*\u0002\u01c0\u01c2\u0007\u001c", + "\u0002\u0002\u01c1\u01c0\u0003\u0002\u0002\u0002\u01c1\u01c2\u0003\u0002", + "\u0002\u0002\u01c2\u01c3\u0003\u0002\u0002\u0002\u01c3\u01c4\u0007 ", + "\u0002\u0002\u01c4\u01d2\t\u0005\u0002\u0002\u01c5\u01c6\u0007\u012a", + "\u0002\u0002\u01c6\u01d3\u0007\u012b\u0002\u0002\u01c7\u01c8\u0007\u012a", + "\u0002\u0002\u01c8\u01cd\u0005L\'\u0002\u01c9\u01ca\u0007\u012c\u0002", + "\u0002\u01ca\u01cc\u0005L\'\u0002\u01cb\u01c9\u0003\u0002\u0002\u0002", + "\u01cc\u01cf\u0003\u0002\u0002\u0002\u01cd\u01cb\u0003\u0002\u0002\u0002", + "\u01cd\u01ce\u0003\u0002\u0002\u0002\u01ce\u01d0\u0003\u0002\u0002\u0002", + "\u01cf\u01cd\u0003\u0002\u0002\u0002\u01d0\u01d1\u0007\u012b\u0002\u0002", + "\u01d1\u01d3\u0003\u0002\u0002\u0002\u01d2\u01c5\u0003\u0002\u0002\u0002", + "\u01d2\u01c7\u0003\u0002\u0002\u0002\u01d3\u01eb\u0003\u0002\u0002\u0002", + "\u01d4\u01d6\u0007\u001c\u0002\u0002\u01d5\u01d4\u0003\u0002\u0002\u0002", + "\u01d5\u01d6\u0003\u0002\u0002\u0002\u01d6\u01d7\u0003\u0002\u0002\u0002", + "\u01d7\u01d8\u0007 \u0002\u0002\u01d8\u01eb\u0005R*\u0002\u01d9\u01db", + "\u0007\"\u0002\u0002\u01da\u01dc\u0007\u001c\u0002\u0002\u01db\u01da", + "\u0003\u0002\u0002\u0002\u01db\u01dc\u0003\u0002\u0002\u0002\u01dc\u01dd", + "\u0003\u0002\u0002\u0002\u01dd\u01eb\u0007\u011e\u0002\u0002\u01de\u01e0", + "\u0007\"\u0002\u0002\u01df\u01e1\u0007\u001c\u0002\u0002\u01e0\u01df", + "\u0003\u0002\u0002\u0002\u01e0\u01e1\u0003\u0002\u0002\u0002\u01e1\u01e2", + "\u0003\u0002\u0002\u0002\u01e2\u01eb\t\u0006\u0002\u0002\u01e3\u01e5", + "\u0007\"\u0002\u0002\u01e4\u01e6\u0007\u001c\u0002\u0002\u01e5\u01e4", + "\u0003\u0002\u0002\u0002\u01e5\u01e6\u0003\u0002\u0002\u0002\u01e6\u01e7", + "\u0003\u0002\u0002\u0002\u01e7\u01e8\u0007\r\u0002\u0002\u01e8\u01e9", + "\u0007\b\u0002\u0002\u01e9\u01eb\u0005R*\u0002\u01ea\u01a5\u0003\u0002", + "\u0002\u0002\u01ea\u01ad\u0003\u0002\u0002\u0002\u01ea\u01bc\u0003\u0002", + "\u0002\u0002\u01ea\u01c1\u0003\u0002\u0002\u0002\u01ea\u01d5\u0003\u0002", + "\u0002\u0002\u01ea\u01d9\u0003\u0002\u0002\u0002\u01ea\u01de\u0003\u0002", + "\u0002\u0002\u01ea\u01e3\u0003\u0002\u0002\u0002\u01ebQ\u0003\u0002", + "\u0002\u0002\u01ec\u01ed\b*\u0001\u0002\u01ed\u01f1\u0005T+\u0002\u01ee", + "\u01ef\t\u0007\u0002\u0002\u01ef\u01f1\u0005R*\t\u01f0\u01ec\u0003\u0002", + "\u0002\u0002\u01f0\u01ee\u0003\u0002\u0002\u0002\u01f1\u0207\u0003\u0002", + "\u0002\u0002\u01f2\u01f3\f\b\u0002\u0002\u01f3\u01f4\t\b\u0002\u0002", + "\u01f4\u0206\u0005R*\t\u01f5\u01f6\f\u0007\u0002\u0002\u01f6\u01f7\t", + "\t\u0002\u0002\u01f7\u0206\u0005R*\b\u01f8\u01f9\f\u0006\u0002\u0002", + "\u01f9\u01fa\u0007\u0089\u0002\u0002\u01fa\u0206\u0005R*\u0007\u01fb", + "\u01fc\f\u0005\u0002\u0002\u01fc\u01fd\u0007\u008c\u0002\u0002\u01fd", + "\u0206\u0005R*\u0006\u01fe\u01ff\f\u0004\u0002\u0002\u01ff\u0200\u0007", + "\u008a\u0002\u0002\u0200\u0206\u0005R*\u0005\u0201\u0202\f\u0003\u0002", + "\u0002\u0202\u0203\u0005r:\u0002\u0203\u0204\u0005R*\u0004\u0204\u0206", + "\u0003\u0002\u0002\u0002\u0205\u01f2\u0003\u0002\u0002\u0002\u0205\u01f5", + "\u0003\u0002\u0002\u0002\u0205\u01f8\u0003\u0002\u0002\u0002\u0205\u01fb", + "\u0003\u0002\u0002\u0002\u0205\u01fe\u0003\u0002\u0002\u0002\u0205\u0201", + "\u0003\u0002\u0002\u0002\u0206\u0209\u0003\u0002\u0002\u0002\u0207\u0205", + "\u0003\u0002\u0002\u0002\u0207\u0208\u0003\u0002\u0002\u0002\u0208S", + "\u0003\u0002\u0002\u0002\u0209\u0207\u0003\u0002\u0002\u0002\u020a\u020b", + "\b+\u0001\u0002\u020b\u020d\u0007*\u0002\u0002\u020c\u020e\u0005b2\u0002", + "\u020d\u020c\u0003\u0002\u0002\u0002\u020e\u020f\u0003\u0002\u0002\u0002", + "\u020f\u020d\u0003\u0002\u0002\u0002\u020f\u0210\u0003\u0002\u0002\u0002", + "\u0210\u0213\u0003\u0002\u0002\u0002\u0211\u0212\u0007-\u0002\u0002", + "\u0212\u0214\u0005L\'\u0002\u0213\u0211\u0003\u0002\u0002\u0002\u0213", + "\u0214\u0003\u0002\u0002\u0002\u0214\u0215\u0003\u0002\u0002\u0002\u0215", + "\u0216\u0007.\u0002\u0002\u0216\u0244\u0003\u0002\u0002\u0002\u0217", + "\u0218\u0007*\u0002\u0002\u0218\u021a\u0005L\'\u0002\u0219\u021b\u0005", + "b2\u0002\u021a\u0219\u0003\u0002\u0002\u0002\u021b\u021c\u0003\u0002", + "\u0002\u0002\u021c\u021a\u0003\u0002\u0002\u0002\u021c\u021d\u0003\u0002", + "\u0002\u0002\u021d\u0220\u0003\u0002\u0002\u0002\u021e\u021f\u0007-", + "\u0002\u0002\u021f\u0221\u0005L\'\u0002\u0220\u021e\u0003\u0002\u0002", + "\u0002\u0220\u0221\u0003\u0002\u0002\u0002\u0221\u0222\u0003\u0002\u0002", + "\u0002\u0222\u0223\u0007.\u0002\u0002\u0223\u0244\u0003\u0002\u0002", + "\u0002\u0224\u0225\u0007D\u0002\u0002\u0225\u0226\u0007\u012a\u0002", + "\u0002\u0226\u0229\u0005L\'\u0002\u0227\u0228\u0007s\u0002\u0002\u0228", + "\u022a\u0007%\u0002\u0002\u0229\u0227\u0003\u0002\u0002\u0002\u0229", + "\u022a\u0003\u0002\u0002\u0002\u022a\u022b\u0003\u0002\u0002\u0002\u022b", + "\u022c\u0007\u012b\u0002\u0002\u022c\u0244\u0003\u0002\u0002\u0002\u022d", + "\u022e\u0007F\u0002\u0002\u022e\u022f\u0007\u012a\u0002\u0002\u022f", + "\u0232\u0005L\'\u0002\u0230\u0231\u0007s\u0002\u0002\u0231\u0233\u0007", + "%\u0002\u0002\u0232\u0230\u0003\u0002\u0002\u0002\u0232\u0233\u0003", + "\u0002\u0002\u0002\u0233\u0234\u0003\u0002\u0002\u0002\u0234\u0235\u0007", + "\u012b\u0002\u0002\u0235\u0244\u0003\u0002\u0002\u0002\u0236\u0237\u0007", + "x\u0002\u0002\u0237\u0238\u0007\u012a\u0002\u0002\u0238\u0239\u0005", + "R*\u0002\u0239\u023a\u0007\u001b\u0002\u0002\u023a\u023b\u0005R*\u0002", + "\u023b\u023c\u0007\u012b\u0002\u0002\u023c\u0244\u0003\u0002\u0002\u0002", + "\u023d\u0244\u0005|?\u0002\u023e\u0244\u0007\u0084\u0002\u0002\u023f", + "\u0240\u0007\u012a\u0002\u0002\u0240\u0241\u0005L\'\u0002\u0241\u0242", + "\u0007\u012b\u0002\u0002\u0242\u0244\u0003\u0002\u0002\u0002\u0243\u020a", + "\u0003\u0002\u0002\u0002\u0243\u0217\u0003\u0002\u0002\u0002\u0243\u0224", + "\u0003\u0002\u0002\u0002\u0243\u022d\u0003\u0002\u0002\u0002\u0243\u0236", + "\u0003\u0002\u0002\u0002\u0243\u023d\u0003\u0002\u0002\u0002\u0243\u023e", + "\u0003\u0002\u0002\u0002\u0243\u023f\u0003\u0002\u0002\u0002\u0244\u024c", + "\u0003\u0002\u0002\u0002\u0245\u0246\f\u0004\u0002\u0002\u0246\u0247", + "\u0007\u0128\u0002\u0002\u0247\u0248\u0005R*\u0002\u0248\u0249\u0007", + "\u0129\u0002\u0002\u0249\u024b\u0003\u0002\u0002\u0002\u024a\u0245\u0003", + "\u0002\u0002\u0002\u024b\u024e\u0003\u0002\u0002\u0002\u024c\u024a\u0003", + "\u0002\u0002\u0002\u024c\u024d\u0003\u0002\u0002\u0002\u024dU\u0003", + "\u0002\u0002\u0002\u024e\u024c\u0003\u0002\u0002\u0002\u024f\u0251\u0007", + "\n\u0002\u0002\u0250\u024f\u0003\u0002\u0002\u0002\u0250\u0251\u0003", + "\u0002\u0002\u0002\u0251\u0252\u0003\u0002\u0002\u0002\u0252\u0254\u0005", + "^0\u0002\u0253\u0255\u0005X-\u0002\u0254\u0253\u0003\u0002\u0002\u0002", + "\u0254\u0255\u0003\u0002\u0002\u0002\u0255\u0257\u0003\u0002\u0002\u0002", + "\u0256\u0250\u0003\u0002\u0002\u0002\u0256\u0257\u0003\u0002\u0002\u0002", + "\u0257W\u0003\u0002\u0002\u0002\u0258\u0259\u0007\u012a\u0002\u0002", + "\u0259\u025a\u0005Z.\u0002\u025a\u025b\u0007\u012b\u0002\u0002\u025b", + "Y\u0003\u0002\u0002\u0002\u025c\u0261\u0005\\/\u0002\u025d\u025e\u0007", + "\u012c\u0002\u0002\u025e\u0260\u0005\\/\u0002\u025f\u025d\u0003\u0002", + "\u0002\u0002\u0260\u0263\u0003\u0002\u0002\u0002\u0261\u025f\u0003\u0002", + "\u0002\u0002\u0261\u0262\u0003\u0002\u0002\u0002\u0262[\u0003\u0002", + "\u0002\u0002\u0263\u0261\u0003\u0002\u0002\u0002\u0264\u0265\u0005^", + "0\u0002\u0265]\u0003\u0002\u0002\u0002\u0266\u0269\u0007\u0141\u0002", + "\u0002\u0267\u0269\u0005`1\u0002\u0268\u0266\u0003\u0002\u0002\u0002", + "\u0268\u0267\u0003\u0002\u0002\u0002\u0269_\u0003\u0002\u0002\u0002", + "\u026a\u026b\u0007\u013d\u0002\u0002\u026ba\u0003\u0002\u0002\u0002", + "\u026c\u026d\u0007+\u0002\u0002\u026d\u026e\u0005L\'\u0002\u026e\u026f", + "\u0007,\u0002\u0002\u026f\u0270\u0005L\'\u0002\u0270c\u0003\u0002\u0002", + "\u0002\u0271\u0276\u0005f4\u0002\u0272\u0273\u0007\u012c\u0002\u0002", + "\u0273\u0275\u0005f4\u0002\u0274\u0272\u0003\u0002\u0002\u0002\u0275", + "\u0278\u0003\u0002\u0002\u0002\u0276\u0274\u0003\u0002\u0002\u0002\u0276", + "\u0277\u0003\u0002\u0002\u0002\u0277e\u0003\u0002\u0002\u0002\u0278", + "\u0276\u0003\u0002\u0002\u0002\u0279\u027d\u0007\u0106\u0002\u0002\u027a", + "\u027c\u0007\u0105\u0002\u0002\u027b\u027a\u0003\u0002\u0002\u0002\u027c", + "\u027f\u0003\u0002\u0002\u0002\u027d\u027e\u0003\u0002\u0002\u0002\u027d", + "\u027b\u0003\u0002\u0002\u0002\u027eg\u0003\u0002\u0002\u0002\u027f", + "\u027d\u0003\u0002\u0002\u0002\u0280\u0281\u0007G\u0002\u0002\u0281", + "\u0282\u0007\u012a\u0002\u0002\u0282\u0287\u0005n8\u0002\u0283\u0284", + "\u0007\u012c\u0002\u0002\u0284\u0286\u0005n8\u0002\u0285\u0283\u0003", + "\u0002\u0002\u0002\u0286\u0289\u0003\u0002\u0002\u0002\u0287\u0285\u0003", + "\u0002\u0002\u0002\u0287\u0288\u0003\u0002\u0002\u0002\u0288\u028a\u0003", + "\u0002\u0002\u0002\u0289\u0287\u0003\u0002\u0002\u0002\u028a\u028b\u0007", + "\u012b\u0002\u0002\u028bi\u0003\u0002\u0002\u0002\u028c\u028d\u0007", + "w\u0002\u0002\u028d\u028e\u0007\u001c\u0002\u0002\u028e\u028f\u0007", + "\u001e\u0002\u0002\u028fk\u0003\u0002\u0002\u0002\u0290\u0291\u0007", + "w\u0002\u0002\u0291\u0292\u0007\u001e\u0002\u0002\u0292m\u0003\u0002", + "\u0002\u0002\u0293\u0294\u0007\u0104\u0002\u0002\u0294\u0295\u0007\u011f", + "\u0002\u0002\u0295\u0296\u0007\u0104\u0002\u0002\u0296o\u0003\u0002", + "\u0002\u0002\u0297\u029e\u0007\u001a\u0002\u0002\u0298\u0299\u0007\u0125", + "\u0002\u0002\u0299\u029e\u0007\u0125\u0002\u0002\u029a\u029e\u0007\u0019", + "\u0002\u0002\u029b\u029c\u0007\u0124\u0002\u0002\u029c\u029e\u0007\u0124", + "\u0002\u0002\u029d\u0297\u0003\u0002\u0002\u0002\u029d\u0298\u0003\u0002", + "\u0002\u0002\u029d\u029a\u0003\u0002\u0002\u0002\u029d\u029b\u0003\u0002", + "\u0002\u0002\u029eq\u0003\u0002\u0002\u0002\u029f\u02ae\u0007\u011f", + "\u0002\u0002\u02a0\u02ae\u0007\u0120\u0002\u0002\u02a1\u02ae\u0007\u0121", + "\u0002\u0002\u02a2\u02a3\u0007\u0121\u0002\u0002\u02a3\u02ae\u0007\u011f", + "\u0002\u0002\u02a4\u02a5\u0007\u0120\u0002\u0002\u02a5\u02ae\u0007\u011f", + "\u0002\u0002\u02a6\u02a7\u0007\u0121\u0002\u0002\u02a7\u02ae\u0007\u0120", + "\u0002\u0002\u02a8\u02a9\u0007\u0122\u0002\u0002\u02a9\u02ae\u0007\u011f", + "\u0002\u0002\u02aa\u02ab\u0007\u0121\u0002\u0002\u02ab\u02ac\u0007\u011f", + "\u0002\u0002\u02ac\u02ae\u0007\u0120\u0002\u0002\u02ad\u029f\u0003\u0002", + "\u0002\u0002\u02ad\u02a0\u0003\u0002\u0002\u0002\u02ad\u02a1\u0003\u0002", + "\u0002\u0002\u02ad\u02a2\u0003\u0002\u0002\u0002\u02ad\u02a4\u0003\u0002", + "\u0002\u0002\u02ad\u02a6\u0003\u0002\u0002\u0002\u02ad\u02a8\u0003\u0002", + "\u0002\u0002\u02ad\u02aa\u0003\u0002\u0002\u0002\u02aes\u0003\u0002", + "\u0002\u0002\u02af\u02b0\u0007\u0121\u0002\u0002\u02b0\u02b7\u0007\u0121", + "\u0002\u0002\u02b1\u02b2\u0007\u0120\u0002\u0002\u02b2\u02b7\u0007\u0120", + "\u0002\u0002\u02b3\u02b7\u0007\u0125\u0002\u0002\u02b4\u02b7\u0007\u0126", + "\u0002\u0002\u02b5\u02b7\u0007\u0124\u0002\u0002\u02b6\u02af\u0003\u0002", + "\u0002\u0002\u02b6\u02b1\u0003\u0002\u0002\u0002\u02b6\u02b3\u0003\u0002", + "\u0002\u0002\u02b6\u02b4\u0003\u0002\u0002\u0002\u02b6\u02b5\u0003\u0002", + "\u0002\u0002\u02b7u\u0003\u0002\u0002\u0002\u02b8\u02b9\t\n\u0002\u0002", + "\u02b9w\u0003\u0002\u0002\u0002\u02ba\u02bb\t\u000b\u0002\u0002\u02bb", + "y\u0003\u0002\u0002\u0002\u02bc\u02bd\u0005f4\u0002\u02bd{\u0003\u0002", + "\u0002\u0002\u02be\u02ca\u0005~@\u0002\u02bf\u02ca\u0005\u0080A\u0002", + "\u02c0\u02c1\u0007\u0138\u0002\u0002\u02c1\u02ca\u0005\u0080A\u0002", + "\u02c2\u02ca\u0005\u0082B\u0002\u02c3\u02ca\u0007\u013f\u0002\u0002", + "\u02c4\u02ca\u0007\u0140\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\u02ca\u0007\u011e\u0002\u0002", + "\u02c9\u02be\u0003\u0002\u0002\u0002\u02c9\u02bf\u0003\u0002\u0002\u0002", + "\u02c9\u02c0\u0003\u0002\u0002\u0002\u02c9\u02c2\u0003\u0002\u0002\u0002", + "\u02c9\u02c3\u0003\u0002\u0002\u0002\u02c9\u02c4\u0003\u0002\u0002\u0002", + "\u02c9\u02c6\u0003\u0002\u0002\u0002\u02ca}\u0003\u0002\u0002\u0002", + "\u02cb\u02cc\u0007\u013d\u0002\u0002\u02cc\u007f\u0003\u0002\u0002\u0002", + "\u02cd\u02ce\t\f\u0002\u0002\u02ce\u0081\u0003\u0002\u0002\u0002\u02cf", + "\u02d0\t\u0006\u0002\u0002\u02d0\u0083\u0003\u0002\u0002\u0002\u02d1", + "\u02d2\t\r\u0002\u0002\u02d2\u0085\u0003\u0002\u0002\u0002L\u0090\u0092", + "\u0097\u00a6\u00aa\u00b5\u00ba\u00ce\u00d6\u00dd\u00e1\u00ee\u00fb\u010a", + "\u0111\u0115\u0119\u011d\u0125\u0129\u0131\u0135\u013e\u0149\u0152\u015b", + "\u0161\u0169\u016c\u0173\u0176\u017c\u0183\u018a\u0195\u0197\u019f\u01a1", + "\u01a5\u01ad\u01b6\u01bc\u01c1\u01cd\u01d2\u01d5\u01db\u01e0\u01e5\u01ea", + "\u01f0\u0205\u0207\u020f\u0213\u021c\u0220\u0229\u0232\u0243\u024c\u0250", + "\u0254\u0256\u0261\u0268\u0276\u027d\u0287\u029d\u02ad\u02b6\u02c6\u02c9"].join(""); var atn = new antlr4.atn.ATNDeserializer().deserialize(serializedATN); @@ -268,9 +551,10 @@ var literalNames = [ null, null, null, null, null, "'SELECT'", "'FROM'", "'TINYINT'", "'SMALLINT'", "'INT'", "'BIGINT'", "'FLOAT'", "'DOUBLE'", "'DATE'", "'TIME'", "'TIMESTAMP'", "'MULTISET'", "'BOOLEAN'", "'RAW'", "'ROW'", "'NULL'", "'='", "'>'", - "'<'", "'!'", "'~'", "'|'", "'&'", "'^'", "'.'", "'('", - "')'", "','", "';'", "'@'", "'0'", "'1'", "'2'", "'''", - "'\"'", "'`'", "':'" ]; + "'<'", "'!'", "'~'", "'|'", "'&'", "'^'", "'.'", "'['", + "']'", "'('", "')'", "','", "';'", "'@'", "'0'", "'1'", + "'2'", "'''", "'\"'", "'`'", "':'", "'*'", "'_'", "'-'", + "'+'", "'%'", "'--'", "'/'" ]; var symbolicNames = [ null, "SPACE", "SPEC_MYSQL_COMMENT", "COMMENT_INPUT", "LINE_COMMENT", "SELECT", "FROM", "ADD", "AS", "ALL", @@ -328,10 +612,15 @@ var symbolicNames = [ null, "SPACE", "SPEC_MYSQL_COMMENT", "COMMENT_INPUT", "FLOAT", "DOUBLE", "DATE", "TIME", "TIMESTAMP", "MULTISET", "BOOLEAN", "RAW", "ROW", "NULL", "EQUAL_SYMBOL", "GREATER_SYMBOL", "LESS_SYMBOL", "EXCLAMATION_SYMBOL", "BIT_NOT_OP", - "BIT_OR_OP", "BIT_AND_OP", "BIT_XOR_OP", "DOT", "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" ]; + "BIT_OR_OP", "BIT_AND_OP", "BIT_XOR_OP", "DOT", "LS_BRACKET", + "RS_BRACKET", "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", "ASTERISK_SIGN", + "UNDERLINE_SIGN", "HYPNEN_SIGN", "ADD_SIGN", "PENCENT_SIGN", + "DOUBLE_HYPNEN_SIGN", "SLASH_SIGN", "STRING_LITERAL", + "DECIMAL_LITERAL", "REAL_LITERAL", "BIT_STRING", "IDENTIFIER_BASE", + "DEC_DIGIT" ]; var ruleNames = [ "program", "statement", "sqlStatements", "sqlStatement", "emptyStatement", "ddlStatement", "dmlStatement", "createTable", @@ -340,10 +629,18 @@ var ruleNames = [ "program", "statement", "sqlStatements", "sqlStatement", "createDatabase", "createView", "createFunction", "alterTable", "renameDefinition", "setKeyValueDefinition", "alterDatabase", "alterFunction", "dropTable", "dropDatabase", "dropView", - "dropFunction", "selectStatement", "insertStatement", - "insertPartitionDefinition", "valuesDefinition", "valuesRowDefinition", - "uidList", "uid", "withOption", "ifNotExists", "ifExists", - "keyValueDefinition" ]; + "dropFunction", "insertStatement", "insertPartitionDefinition", + "valuesDefinition", "valuesRowDefinition", "allValueDifinition", + "queryStatement", "selectStatement", "projectItemDefinition", + "tableExpression", "tableReference", "tablePrimary", + "expression", "booleanExpression", "predicate", "valueExpression", + "primaryExpression", "tableAlias", "identifierList", + "identifierSeq", "identifier", "strictIdentifier", "quotedIdentifier", + "whenClause", "uidList", "uid", "withOption", "ifNotExists", + "ifExists", "keyValueDefinition", "logicalOperator", + "comparisonOperator", "bitOperator", "mathOperator", + "unaryOperator", "fullColumnName", "constant", "stringLiteral", + "decimalLiteral", "booleanLiteral", "setQuantifier" ]; function FlinkSqlParser (input) { antlr4.Parser.call(this, input); @@ -657,18 +954,33 @@ FlinkSqlParser.BIT_OR_OP = 290; FlinkSqlParser.BIT_AND_OP = 291; FlinkSqlParser.BIT_XOR_OP = 292; FlinkSqlParser.DOT = 293; -FlinkSqlParser.LR_BRACKET = 294; -FlinkSqlParser.RR_BRACKET = 295; -FlinkSqlParser.COMMA = 296; -FlinkSqlParser.SEMICOLON = 297; -FlinkSqlParser.AT_SIGN = 298; -FlinkSqlParser.ZERO_DECIMAL = 299; -FlinkSqlParser.ONE_DECIMAL = 300; -FlinkSqlParser.TWO_DECIMAL = 301; -FlinkSqlParser.SINGLE_QUOTE_SYMB = 302; -FlinkSqlParser.DOUBLE_QUOTE_SYMB = 303; -FlinkSqlParser.REVERSE_QUOTE_SYMB = 304; -FlinkSqlParser.COLON_SYMB = 305; +FlinkSqlParser.LS_BRACKET = 294; +FlinkSqlParser.RS_BRACKET = 295; +FlinkSqlParser.LR_BRACKET = 296; +FlinkSqlParser.RR_BRACKET = 297; +FlinkSqlParser.COMMA = 298; +FlinkSqlParser.SEMICOLON = 299; +FlinkSqlParser.AT_SIGN = 300; +FlinkSqlParser.ZERO_DECIMAL = 301; +FlinkSqlParser.ONE_DECIMAL = 302; +FlinkSqlParser.TWO_DECIMAL = 303; +FlinkSqlParser.SINGLE_QUOTE_SYMB = 304; +FlinkSqlParser.DOUBLE_QUOTE_SYMB = 305; +FlinkSqlParser.REVERSE_QUOTE_SYMB = 306; +FlinkSqlParser.COLON_SYMB = 307; +FlinkSqlParser.ASTERISK_SIGN = 308; +FlinkSqlParser.UNDERLINE_SIGN = 309; +FlinkSqlParser.HYPNEN_SIGN = 310; +FlinkSqlParser.ADD_SIGN = 311; +FlinkSqlParser.PENCENT_SIGN = 312; +FlinkSqlParser.DOUBLE_HYPNEN_SIGN = 313; +FlinkSqlParser.SLASH_SIGN = 314; +FlinkSqlParser.STRING_LITERAL = 315; +FlinkSqlParser.DECIMAL_LITERAL = 316; +FlinkSqlParser.REAL_LITERAL = 317; +FlinkSqlParser.BIT_STRING = 318; +FlinkSqlParser.IDENTIFIER_BASE = 319; +FlinkSqlParser.DEC_DIGIT = 320; FlinkSqlParser.RULE_program = 0; FlinkSqlParser.RULE_statement = 1; @@ -696,17 +1008,46 @@ FlinkSqlParser.RULE_dropTable = 22; FlinkSqlParser.RULE_dropDatabase = 23; FlinkSqlParser.RULE_dropView = 24; FlinkSqlParser.RULE_dropFunction = 25; -FlinkSqlParser.RULE_selectStatement = 26; -FlinkSqlParser.RULE_insertStatement = 27; -FlinkSqlParser.RULE_insertPartitionDefinition = 28; -FlinkSqlParser.RULE_valuesDefinition = 29; -FlinkSqlParser.RULE_valuesRowDefinition = 30; -FlinkSqlParser.RULE_uidList = 31; -FlinkSqlParser.RULE_uid = 32; -FlinkSqlParser.RULE_withOption = 33; -FlinkSqlParser.RULE_ifNotExists = 34; -FlinkSqlParser.RULE_ifExists = 35; -FlinkSqlParser.RULE_keyValueDefinition = 36; +FlinkSqlParser.RULE_insertStatement = 26; +FlinkSqlParser.RULE_insertPartitionDefinition = 27; +FlinkSqlParser.RULE_valuesDefinition = 28; +FlinkSqlParser.RULE_valuesRowDefinition = 29; +FlinkSqlParser.RULE_allValueDifinition = 30; +FlinkSqlParser.RULE_queryStatement = 31; +FlinkSqlParser.RULE_selectStatement = 32; +FlinkSqlParser.RULE_projectItemDefinition = 33; +FlinkSqlParser.RULE_tableExpression = 34; +FlinkSqlParser.RULE_tableReference = 35; +FlinkSqlParser.RULE_tablePrimary = 36; +FlinkSqlParser.RULE_expression = 37; +FlinkSqlParser.RULE_booleanExpression = 38; +FlinkSqlParser.RULE_predicate = 39; +FlinkSqlParser.RULE_valueExpression = 40; +FlinkSqlParser.RULE_primaryExpression = 41; +FlinkSqlParser.RULE_tableAlias = 42; +FlinkSqlParser.RULE_identifierList = 43; +FlinkSqlParser.RULE_identifierSeq = 44; +FlinkSqlParser.RULE_identifier = 45; +FlinkSqlParser.RULE_strictIdentifier = 46; +FlinkSqlParser.RULE_quotedIdentifier = 47; +FlinkSqlParser.RULE_whenClause = 48; +FlinkSqlParser.RULE_uidList = 49; +FlinkSqlParser.RULE_uid = 50; +FlinkSqlParser.RULE_withOption = 51; +FlinkSqlParser.RULE_ifNotExists = 52; +FlinkSqlParser.RULE_ifExists = 53; +FlinkSqlParser.RULE_keyValueDefinition = 54; +FlinkSqlParser.RULE_logicalOperator = 55; +FlinkSqlParser.RULE_comparisonOperator = 56; +FlinkSqlParser.RULE_bitOperator = 57; +FlinkSqlParser.RULE_mathOperator = 58; +FlinkSqlParser.RULE_unaryOperator = 59; +FlinkSqlParser.RULE_fullColumnName = 60; +FlinkSqlParser.RULE_constant = 61; +FlinkSqlParser.RULE_stringLiteral = 62; +FlinkSqlParser.RULE_decimalLiteral = 63; +FlinkSqlParser.RULE_booleanLiteral = 64; +FlinkSqlParser.RULE_setQuantifier = 65; function ProgramContext(parser, parent, invokingState) { @@ -764,9 +1105,9 @@ FlinkSqlParser.prototype.program = function() { this.enterRule(localctx, 0, FlinkSqlParser.RULE_program); try { this.enterOuterAlt(localctx, 1); - this.state = 74; + this.state = 132; this.statement(); - this.state = 75; + this.state = 133; this.match(FlinkSqlParser.EOF); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -838,9 +1179,9 @@ FlinkSqlParser.prototype.statement = function() { this.enterRule(localctx, 2, FlinkSqlParser.RULE_statement); try { this.enterOuterAlt(localctx, 1); - this.state = 77; + this.state = 135; this.sqlStatements(); - this.state = 78; + this.state = 136; this.match(FlinkSqlParser.EOF); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -939,28 +1280,28 @@ FlinkSqlParser.prototype.sqlStatements = function() { var _la = 0; // Token type try { this.enterOuterAlt(localctx, 1); - this.state = 86; + this.state = 144; this._errHandler.sync(this); _la = this._input.LA(1); while(((((_la - 71)) & ~0x1f) == 0 && ((1 << (_la - 71)) & ((1 << (FlinkSqlParser.CREATE - 71)) | (1 << (FlinkSqlParser.INSERT - 71)) | (1 << (FlinkSqlParser.DROP - 71)) | (1 << (FlinkSqlParser.ALTER - 71)))) !== 0) || _la===FlinkSqlParser.SEMICOLON) { - this.state = 84; + this.state = 142; this._errHandler.sync(this); var la_ = this._interp.adaptivePredict(this._input,0,this._ctx); switch(la_) { case 1: - this.state = 80; + this.state = 138; this.sqlStatement(); - this.state = 81; + this.state = 139; this.match(FlinkSqlParser.SEMICOLON); break; case 2: - this.state = 83; + this.state = 141; this.emptyStatement(); break; } - this.state = 88; + this.state = 146; this._errHandler.sync(this); _la = this._input.LA(1); } @@ -1033,19 +1374,19 @@ FlinkSqlParser.prototype.sqlStatement = function() { var localctx = new SqlStatementContext(this, this._ctx, this.state); this.enterRule(localctx, 6, FlinkSqlParser.RULE_sqlStatement); try { - this.state = 91; + this.state = 149; this._errHandler.sync(this); var la_ = this._interp.adaptivePredict(this._input,2,this._ctx); switch(la_) { case 1: this.enterOuterAlt(localctx, 1); - this.state = 89; + this.state = 147; this.ddlStatement(); break; case 2: this.enterOuterAlt(localctx, 2); - this.state = 90; + this.state = 148; this.dmlStatement(); break; @@ -1116,7 +1457,7 @@ FlinkSqlParser.prototype.emptyStatement = function() { this.enterRule(localctx, 8, FlinkSqlParser.RULE_emptyStatement); try { this.enterOuterAlt(localctx, 1); - this.state = 93; + this.state = 151; this.match(FlinkSqlParser.SEMICOLON); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -1223,73 +1564,73 @@ FlinkSqlParser.prototype.ddlStatement = function() { var localctx = new DdlStatementContext(this, this._ctx, this.state); this.enterRule(localctx, 10, FlinkSqlParser.RULE_ddlStatement); try { - this.state = 106; + this.state = 164; 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 = 153; this.createTable(); break; case 2: this.enterOuterAlt(localctx, 2); - this.state = 96; + this.state = 154; this.createDatabase(); break; case 3: this.enterOuterAlt(localctx, 3); - this.state = 97; + this.state = 155; this.createView(); break; case 4: this.enterOuterAlt(localctx, 4); - this.state = 98; + this.state = 156; this.createFunction(); break; case 5: this.enterOuterAlt(localctx, 5); - this.state = 99; + this.state = 157; this.alterTable(); break; case 6: this.enterOuterAlt(localctx, 6); - this.state = 100; + this.state = 158; this.alterDatabase(); break; case 7: this.enterOuterAlt(localctx, 7); - this.state = 101; + this.state = 159; this.alterFunction(); break; case 8: this.enterOuterAlt(localctx, 8); - this.state = 102; + this.state = 160; this.dropTable(); break; case 9: this.enterOuterAlt(localctx, 9); - this.state = 103; + this.state = 161; this.dropDatabase(); break; case 10: this.enterOuterAlt(localctx, 10); - this.state = 104; + this.state = 162; this.dropView(); break; case 11: this.enterOuterAlt(localctx, 11); - this.state = 105; + this.state = 163; this.dropFunction(); break; @@ -1325,8 +1666,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() { @@ -1363,17 +1704,17 @@ FlinkSqlParser.prototype.dmlStatement = function() { var localctx = new DmlStatementContext(this, this._ctx, this.state); this.enterRule(localctx, 12, FlinkSqlParser.RULE_dmlStatement); try { - this.state = 110; + this.state = 168; this._errHandler.sync(this); switch(this._input.LA(1)) { case FlinkSqlParser.SEMICOLON: this.enterOuterAlt(localctx, 1); - this.state = 108; - this.selectStatement(); + this.state = 166; + this.queryStatement(); break; case FlinkSqlParser.INSERT: this.enterOuterAlt(localctx, 2); - this.state = 109; + this.state = 167; this.insertStatement(); break; default: @@ -1493,39 +1834,39 @@ FlinkSqlParser.prototype.createTable = function() { var _la = 0; // Token type try { this.enterOuterAlt(localctx, 1); - this.state = 112; + this.state = 170; this.match(FlinkSqlParser.CREATE); - this.state = 113; + this.state = 171; this.match(FlinkSqlParser.TABLE); - this.state = 114; + this.state = 172; this.uid(); - this.state = 115; + this.state = 173; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 116; + this.state = 174; this.columnOptionDefinition(); - this.state = 121; + this.state = 179; this._errHandler.sync(this); _la = this._input.LA(1); while(_la===FlinkSqlParser.COMMA) { - this.state = 117; + this.state = 175; this.match(FlinkSqlParser.COMMA); - this.state = 118; + this.state = 176; this.columnOptionDefinition(); - this.state = 123; + this.state = 181; this._errHandler.sync(this); _la = this._input.LA(1); } - this.state = 124; + this.state = 182; this.match(FlinkSqlParser.RR_BRACKET); - this.state = 126; + this.state = 184; this._errHandler.sync(this); _la = this._input.LA(1); if(_la===FlinkSqlParser.PARTITIONED) { - this.state = 125; + this.state = 183; this.partitionDefinition(); } - this.state = 128; + this.state = 186; this.withOption(); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -1597,9 +1938,9 @@ FlinkSqlParser.prototype.columnOptionDefinition = function() { this.enterRule(localctx, 16, FlinkSqlParser.RULE_columnOptionDefinition); try { this.enterOuterAlt(localctx, 1); - this.state = 130; + this.state = 188; this.columnName(); - this.state = 131; + this.state = 189; this.columnType(); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -1667,7 +2008,7 @@ FlinkSqlParser.prototype.columnName = function() { this.enterRule(localctx, 18, FlinkSqlParser.RULE_columnName); try { this.enterOuterAlt(localctx, 1); - this.state = 133; + this.state = 191; this.match(FlinkSqlParser.ID); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -1824,7 +2165,7 @@ FlinkSqlParser.prototype.columnType = function() { var _la = 0; // Token type try { this.enterOuterAlt(localctx, 1); - this.state = 135; + this.state = 193; _la = this._input.LA(1); if(!(((((_la - 262)) & ~0x1f) == 0 && ((1 << (_la - 262)) & ((1 << (FlinkSqlParser.STRING - 262)) | (1 << (FlinkSqlParser.ARRAY - 262)) | (1 << (FlinkSqlParser.MAP - 262)) | (1 << (FlinkSqlParser.CHAR - 262)) | (1 << (FlinkSqlParser.VARCHAR - 262)) | (1 << (FlinkSqlParser.BINARY - 262)) | (1 << (FlinkSqlParser.VARBINARY - 262)) | (1 << (FlinkSqlParser.BYTES - 262)) | (1 << (FlinkSqlParser.DECIMAL - 262)) | (1 << (FlinkSqlParser.TINYINT - 262)) | (1 << (FlinkSqlParser.SMALLINT - 262)) | (1 << (FlinkSqlParser.INT - 262)) | (1 << (FlinkSqlParser.BIGINT - 262)) | (1 << (FlinkSqlParser.FLOAT - 262)) | (1 << (FlinkSqlParser.DOUBLE - 262)) | (1 << (FlinkSqlParser.DATE - 262)) | (1 << (FlinkSqlParser.TIME - 262)) | (1 << (FlinkSqlParser.TIMESTAMP - 262)) | (1 << (FlinkSqlParser.MULTISET - 262)) | (1 << (FlinkSqlParser.BOOLEAN - 262)) | (1 << (FlinkSqlParser.RAW - 262)) | (1 << (FlinkSqlParser.ROW - 262)) | (1 << (FlinkSqlParser.NULL - 262)))) !== 0))) { this._errHandler.recoverInline(this); @@ -1907,11 +2248,11 @@ FlinkSqlParser.prototype.partitionDefinition = function() { this.enterRule(localctx, 22, FlinkSqlParser.RULE_partitionDefinition); try { this.enterOuterAlt(localctx, 1); - this.state = 137; + this.state = 195; this.match(FlinkSqlParser.PARTITIONED); - this.state = 138; + this.state = 196; this.match(FlinkSqlParser.BY); - this.state = 139; + this.state = 197; this.partitionColumnDefinition(); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -1999,17 +2340,17 @@ FlinkSqlParser.prototype.partitionColumnDefinition = function() { var _la = 0; // Token type try { this.enterOuterAlt(localctx, 1); - this.state = 141; + this.state = 199; this.partitionColumnName(); - this.state = 146; + this.state = 204; this._errHandler.sync(this); _la = this._input.LA(1); while(_la===FlinkSqlParser.COMMA) { - this.state = 142; + this.state = 200; this.match(FlinkSqlParser.COMMA); - this.state = 143; + this.state = 201; this.partitionColumnName(); - this.state = 148; + this.state = 206; this._errHandler.sync(this); _la = this._input.LA(1); } @@ -2079,7 +2420,7 @@ FlinkSqlParser.prototype.partitionColumnName = function() { this.enterRule(localctx, 26, FlinkSqlParser.RULE_partitionColumnName); try { this.enterOuterAlt(localctx, 1); - this.state = 149; + this.state = 207; this.match(FlinkSqlParser.ID); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -2164,21 +2505,21 @@ FlinkSqlParser.prototype.createDatabase = function() { var _la = 0; // Token type try { this.enterOuterAlt(localctx, 1); - this.state = 151; + this.state = 209; this.match(FlinkSqlParser.CREATE); - this.state = 152; + this.state = 210; this.match(FlinkSqlParser.DATABASE); - this.state = 154; + this.state = 212; this._errHandler.sync(this); _la = this._input.LA(1); if(_la===FlinkSqlParser.IF) { - this.state = 153; + this.state = 211; this.ifNotExists(); } - this.state = 156; + this.state = 214; this.uid(); - this.state = 157; + this.state = 215; this.withOption(); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -2271,31 +2612,31 @@ FlinkSqlParser.prototype.createView = function() { var _la = 0; // Token type try { this.enterOuterAlt(localctx, 1); - this.state = 159; + this.state = 217; this.match(FlinkSqlParser.CREATE); - this.state = 161; + this.state = 219; this._errHandler.sync(this); _la = this._input.LA(1); if(_la===FlinkSqlParser.TEMPORARY) { - this.state = 160; + this.state = 218; this.match(FlinkSqlParser.TEMPORARY); } - this.state = 163; + this.state = 221; this.match(FlinkSqlParser.VIEW); - this.state = 165; + this.state = 223; this._errHandler.sync(this); _la = this._input.LA(1); if(_la===FlinkSqlParser.IF) { - this.state = 164; + this.state = 222; this.ifNotExists(); } - this.state = 167; + this.state = 225; this.uid(); - this.state = 168; + this.state = 226; this.match(FlinkSqlParser.AS); - this.state = 169; + this.state = 227; this.selectStatement(); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -2443,21 +2784,21 @@ FlinkSqlParser.prototype.alterTable = function() { this.enterRule(localctx, 34, FlinkSqlParser.RULE_alterTable); try { this.enterOuterAlt(localctx, 1); - this.state = 173; + this.state = 231; this.match(FlinkSqlParser.ALTER); - this.state = 174; + this.state = 232; this.match(FlinkSqlParser.TABLE); - this.state = 175; + this.state = 233; this.uid(); - this.state = 178; + this.state = 236; this._errHandler.sync(this); switch(this._input.LA(1)) { case FlinkSqlParser.RENAME: - this.state = 176; + this.state = 234; this.renameDefinition(); break; case FlinkSqlParser.SET: - this.state = 177; + this.state = 235; this.setKeyValueDefinition(); break; default: @@ -2537,11 +2878,11 @@ FlinkSqlParser.prototype.renameDefinition = function() { this.enterRule(localctx, 36, FlinkSqlParser.RULE_renameDefinition); try { this.enterOuterAlt(localctx, 1); - this.state = 180; + this.state = 238; this.match(FlinkSqlParser.RENAME); - this.state = 181; + this.state = 239; this.match(FlinkSqlParser.TO); - this.state = 182; + this.state = 240; this.uid(); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -2641,25 +2982,25 @@ FlinkSqlParser.prototype.setKeyValueDefinition = function() { var _la = 0; // Token type try { this.enterOuterAlt(localctx, 1); - this.state = 184; + this.state = 242; this.match(FlinkSqlParser.SET); - this.state = 185; + this.state = 243; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 186; + this.state = 244; this.keyValueDefinition(); - this.state = 191; + this.state = 249; this._errHandler.sync(this); _la = this._input.LA(1); while(_la===FlinkSqlParser.COMMA) { - this.state = 187; + this.state = 245; this.match(FlinkSqlParser.COMMA); - this.state = 188; + this.state = 246; this.keyValueDefinition(); - this.state = 193; + this.state = 251; this._errHandler.sync(this); _la = this._input.LA(1); } - this.state = 194; + this.state = 252; this.match(FlinkSqlParser.RR_BRACKET); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -2739,13 +3080,13 @@ FlinkSqlParser.prototype.alterDatabase = function() { this.enterRule(localctx, 40, FlinkSqlParser.RULE_alterDatabase); try { this.enterOuterAlt(localctx, 1); - this.state = 196; + this.state = 254; this.match(FlinkSqlParser.ALTER); - this.state = 197; + this.state = 255; this.match(FlinkSqlParser.DATABASE); - this.state = 198; + this.state = 256; this.uid(); - this.state = 199; + this.state = 257; this.setKeyValueDefinition(); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -2850,14 +3191,14 @@ DropTableContext.prototype.TABLE = function() { return this.getToken(FlinkSqlParser.TABLE, 0); }; -DropTableContext.prototype.ifExists = function() { - return this.getTypedRuleContext(IfExistsContext,0); -}; - DropTableContext.prototype.uid = function() { return this.getTypedRuleContext(UidContext,0); }; +DropTableContext.prototype.ifExists = function() { + return this.getTypedRuleContext(IfExistsContext,0); +}; + DropTableContext.prototype.enterRule = function(listener) { if(listener instanceof FlinkSqlParserListener ) { listener.enterDropTable(this); @@ -2887,15 +3228,22 @@ FlinkSqlParser.prototype.dropTable = function() { var localctx = new DropTableContext(this, this._ctx, this.state); this.enterRule(localctx, 44, FlinkSqlParser.RULE_dropTable); + var _la = 0; // Token type try { this.enterOuterAlt(localctx, 1); - this.state = 203; + this.state = 261; this.match(FlinkSqlParser.DROP); - this.state = 204; + this.state = 262; this.match(FlinkSqlParser.TABLE); - this.state = 205; - this.ifExists(); - this.state = 206; + this.state = 264; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===FlinkSqlParser.IF) { + this.state = 263; + this.ifExists(); + } + + this.state = 266; this.uid(); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -2937,14 +3285,14 @@ DropDatabaseContext.prototype.DATABASE = function() { return this.getToken(FlinkSqlParser.DATABASE, 0); }; -DropDatabaseContext.prototype.ifExists = function() { - return this.getTypedRuleContext(IfExistsContext,0); -}; - DropDatabaseContext.prototype.uid = function() { return this.getTypedRuleContext(UidContext,0); }; +DropDatabaseContext.prototype.ifExists = function() { + return this.getTypedRuleContext(IfExistsContext,0); +}; + DropDatabaseContext.prototype.RESTRICT = function() { return this.getToken(FlinkSqlParser.RESTRICT, 0); }; @@ -2985,19 +3333,25 @@ FlinkSqlParser.prototype.dropDatabase = function() { var _la = 0; // Token type try { this.enterOuterAlt(localctx, 1); - this.state = 208; + this.state = 268; this.match(FlinkSqlParser.DROP); - this.state = 209; + this.state = 269; this.match(FlinkSqlParser.DATABASE); - this.state = 210; - this.ifExists(); - this.state = 211; + this.state = 271; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===FlinkSqlParser.IF) { + this.state = 270; + this.ifExists(); + } + + this.state = 273; this.uid(); - this.state = 213; + this.state = 275; this._errHandler.sync(this); _la = this._input.LA(1); if(_la===FlinkSqlParser.CASCADE || _la===FlinkSqlParser.RESTRICT) { - this.state = 212; + this.state = 274; localctx.dropType = this._input.LT(1); _la = this._input.LA(1); if(!(_la===FlinkSqlParser.CASCADE || _la===FlinkSqlParser.RESTRICT)) { @@ -3048,10 +3402,6 @@ DropViewContext.prototype.VIEW = function() { return this.getToken(FlinkSqlParser.VIEW, 0); }; -DropViewContext.prototype.ifExists = function() { - return this.getTypedRuleContext(IfExistsContext,0); -}; - DropViewContext.prototype.uid = function() { return this.getTypedRuleContext(UidContext,0); }; @@ -3060,6 +3410,10 @@ DropViewContext.prototype.TEMPORARY = function() { return this.getToken(FlinkSqlParser.TEMPORARY, 0); }; +DropViewContext.prototype.ifExists = function() { + return this.getTypedRuleContext(IfExistsContext,0); +}; + DropViewContext.prototype.enterRule = function(listener) { if(listener instanceof FlinkSqlParserListener ) { listener.enterDropView(this); @@ -3092,21 +3446,27 @@ FlinkSqlParser.prototype.dropView = function() { var _la = 0; // Token type try { this.enterOuterAlt(localctx, 1); - this.state = 215; + this.state = 277; this.match(FlinkSqlParser.DROP); - this.state = 217; + this.state = 279; this._errHandler.sync(this); _la = this._input.LA(1); if(_la===FlinkSqlParser.TEMPORARY) { - this.state = 216; + this.state = 278; this.match(FlinkSqlParser.TEMPORARY); } - this.state = 219; + this.state = 281; this.match(FlinkSqlParser.VIEW); - this.state = 220; - this.ifExists(); - this.state = 221; + this.state = 283; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===FlinkSqlParser.IF) { + this.state = 282; + this.ifExists(); + } + + this.state = 285; this.uid(); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -3147,10 +3507,6 @@ DropFunctionContext.prototype.FUNCTION = function() { return this.getToken(FlinkSqlParser.FUNCTION, 0); }; -DropFunctionContext.prototype.ifExists = function() { - return this.getTypedRuleContext(IfExistsContext,0); -}; - DropFunctionContext.prototype.uid = function() { return this.getTypedRuleContext(UidContext,0); }; @@ -3163,6 +3519,10 @@ DropFunctionContext.prototype.SYSTEM = function() { return this.getToken(FlinkSqlParser.SYSTEM, 0); }; +DropFunctionContext.prototype.ifExists = function() { + return this.getTypedRuleContext(IfExistsContext,0); +}; + DropFunctionContext.prototype.enterRule = function(listener) { if(listener instanceof FlinkSqlParserListener ) { listener.enterDropFunction(this); @@ -3192,29 +3552,36 @@ FlinkSqlParser.prototype.dropFunction = function() { var localctx = new DropFunctionContext(this, this._ctx, this.state); this.enterRule(localctx, 50, FlinkSqlParser.RULE_dropFunction); + var _la = 0; // Token type try { this.enterOuterAlt(localctx, 1); - this.state = 223; + this.state = 287; this.match(FlinkSqlParser.DROP); - this.state = 227; + this.state = 291; this._errHandler.sync(this); - var la_ = this._interp.adaptivePredict(this._input,15,this._ctx); + var la_ = this._interp.adaptivePredict(this._input,18,this._ctx); if(la_===1) { - this.state = 224; + this.state = 288; this.match(FlinkSqlParser.TEMPORARY); } else if(la_===2) { - this.state = 225; + this.state = 289; this.match(FlinkSqlParser.TEMPORARY); - this.state = 226; + this.state = 290; this.match(FlinkSqlParser.SYSTEM); } - this.state = 229; + this.state = 293; this.match(FlinkSqlParser.FUNCTION); - this.state = 230; - this.ifExists(); - this.state = 231; + this.state = 295; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===FlinkSqlParser.IF) { + this.state = 294; + this.ifExists(); + } + + this.state = 297; this.uid(); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -3231,70 +3598,6 @@ FlinkSqlParser.prototype.dropFunction = function() { }; -function SelectStatementContext(parser, parent, invokingState) { - if(parent===undefined) { - parent = null; - } - if(invokingState===undefined || invokingState===null) { - invokingState = -1; - } - antlr4.ParserRuleContext.call(this, parent, invokingState); - this.parser = parser; - this.ruleIndex = FlinkSqlParser.RULE_selectStatement; - return this; -} - -SelectStatementContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); -SelectStatementContext.prototype.constructor = SelectStatementContext; - - -SelectStatementContext.prototype.enterRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.enterSelectStatement(this); - } -}; - -SelectStatementContext.prototype.exitRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.exitSelectStatement(this); - } -}; - -SelectStatementContext.prototype.accept = function(visitor) { - if ( visitor instanceof FlinkSqlParserVisitor ) { - return visitor.visitSelectStatement(this); - } else { - return visitor.visitChildren(this); - } -}; - - - - -FlinkSqlParser.SelectStatementContext = SelectStatementContext; - -FlinkSqlParser.prototype.selectStatement = function() { - - var localctx = new SelectStatementContext(this, this._ctx, this.state); - this.enterRule(localctx, 52, FlinkSqlParser.RULE_selectStatement); - 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 InsertStatementContext(parser, parent, invokingState) { if(parent===undefined) { parent = null; @@ -3367,13 +3670,13 @@ FlinkSqlParser.InsertStatementContext = InsertStatementContext; FlinkSqlParser.prototype.insertStatement = function() { var localctx = new InsertStatementContext(this, this._ctx, this.state); - this.enterRule(localctx, 54, FlinkSqlParser.RULE_insertStatement); + this.enterRule(localctx, 52, FlinkSqlParser.RULE_insertStatement); var _la = 0; // Token type try { this.enterOuterAlt(localctx, 1); - this.state = 235; + this.state = 299; this.match(FlinkSqlParser.INSERT); - this.state = 236; + this.state = 300; _la = this._input.LA(1); if(!(_la===FlinkSqlParser.INTO || _la===FlinkSqlParser.OVERWRITE)) { this._errHandler.recoverInline(this); @@ -3382,26 +3685,26 @@ FlinkSqlParser.prototype.insertStatement = function() { this._errHandler.reportMatch(this); this.consume(); } - this.state = 237; + this.state = 301; this.uid(); - this.state = 243; + this.state = 307; this._errHandler.sync(this); switch(this._input.LA(1)) { + case FlinkSqlParser.SELECT: case FlinkSqlParser.PARTITION: - case FlinkSqlParser.SEMICOLON: - this.state = 239; + this.state = 303; this._errHandler.sync(this); _la = this._input.LA(1); if(_la===FlinkSqlParser.PARTITION) { - this.state = 238; + this.state = 302; this.insertPartitionDefinition(); } - this.state = 241; + this.state = 305; this.selectStatement(); break; case FlinkSqlParser.VALUES: - this.state = 242; + this.state = 306; this.valuesDefinition(); break; default: @@ -3501,29 +3804,29 @@ FlinkSqlParser.InsertPartitionDefinitionContext = InsertPartitionDefinitionConte FlinkSqlParser.prototype.insertPartitionDefinition = function() { var localctx = new InsertPartitionDefinitionContext(this, this._ctx, this.state); - this.enterRule(localctx, 56, FlinkSqlParser.RULE_insertPartitionDefinition); + this.enterRule(localctx, 54, FlinkSqlParser.RULE_insertPartitionDefinition); var _la = 0; // Token type try { this.enterOuterAlt(localctx, 1); - this.state = 245; + this.state = 309; this.match(FlinkSqlParser.PARTITION); - this.state = 246; + this.state = 310; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 247; + this.state = 311; this.keyValueDefinition(); - this.state = 252; + this.state = 316; this._errHandler.sync(this); _la = this._input.LA(1); while(_la===FlinkSqlParser.COMMA) { - this.state = 248; + this.state = 312; this.match(FlinkSqlParser.COMMA); - this.state = 249; + this.state = 313; this.keyValueDefinition(); - this.state = 254; + this.state = 318; this._errHandler.sync(this); _la = this._input.LA(1); } - this.state = 255; + this.state = 319; this.match(FlinkSqlParser.RR_BRACKET); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -3611,23 +3914,23 @@ FlinkSqlParser.ValuesDefinitionContext = ValuesDefinitionContext; FlinkSqlParser.prototype.valuesDefinition = function() { var localctx = new ValuesDefinitionContext(this, this._ctx, this.state); - this.enterRule(localctx, 58, FlinkSqlParser.RULE_valuesDefinition); + this.enterRule(localctx, 56, FlinkSqlParser.RULE_valuesDefinition); var _la = 0; // Token type try { this.enterOuterAlt(localctx, 1); - this.state = 257; + this.state = 321; this.match(FlinkSqlParser.VALUES); - this.state = 258; + this.state = 322; this.valuesRowDefinition(); - this.state = 263; + this.state = 327; this._errHandler.sync(this); _la = this._input.LA(1); while(_la===FlinkSqlParser.COMMA) { - this.state = 259; + this.state = 323; this.match(FlinkSqlParser.COMMA); - this.state = 260; + this.state = 324; this.valuesRowDefinition(); - this.state = 265; + this.state = 329; this._errHandler.sync(this); _la = this._input.LA(1); } @@ -3666,10 +3969,33 @@ ValuesRowDefinitionContext.prototype.LR_BRACKET = function() { return this.getToken(FlinkSqlParser.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(FlinkSqlParser.RR_BRACKET, 0); }; +ValuesRowDefinitionContext.prototype.COMMA = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTokens(FlinkSqlParser.COMMA); + } else { + return this.getToken(FlinkSqlParser.COMMA, i); + } +}; + + ValuesRowDefinitionContext.prototype.enterRule = function(listener) { if(listener instanceof FlinkSqlParserListener ) { listener.enterValuesRowDefinition(this); @@ -3698,25 +4024,2774 @@ FlinkSqlParser.ValuesRowDefinitionContext = ValuesRowDefinitionContext; FlinkSqlParser.prototype.valuesRowDefinition = function() { var localctx = new ValuesRowDefinitionContext(this, this._ctx, this.state); - this.enterRule(localctx, 60, FlinkSqlParser.RULE_valuesRowDefinition); + this.enterRule(localctx, 58, FlinkSqlParser.RULE_valuesRowDefinition); + var _la = 0; // Token type try { this.enterOuterAlt(localctx, 1); - this.state = 266; + this.state = 330; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 270; + this.state = 331; + this.allValueDifinition(); + this.state = 336; this._errHandler.sync(this); - var _alt = this._interp.adaptivePredict(this._input,20,this._ctx) - while(_alt!=1 && _alt!=antlr4.atn.ATN.INVALID_ALT_NUMBER) { - if(_alt===1+1) { - this.state = 267; - this.matchWildcard(); - } - this.state = 272; + _la = this._input.LA(1); + while(_la===FlinkSqlParser.COMMA) { + this.state = 332; + this.match(FlinkSqlParser.COMMA); + this.state = 333; + this.allValueDifinition(); + this.state = 338; this._errHandler.sync(this); - _alt = this._interp.adaptivePredict(this._input,20,this._ctx); + _la = this._input.LA(1); + } + this.state = 339; + this.match(FlinkSqlParser.RR_BRACKET); + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function 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 = FlinkSqlParser.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(FlinkSqlParser.DEC_DIGIT, 0); +}; + +AllValueDifinitionContext.prototype.NULL = function() { + return this.getToken(FlinkSqlParser.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); + } +}; + + + + +FlinkSqlParser.AllValueDifinitionContext = AllValueDifinitionContext; + +FlinkSqlParser.prototype.allValueDifinition = function() { + + var localctx = new AllValueDifinitionContext(this, this._ctx, this.state); + this.enterRule(localctx, 60, FlinkSqlParser.RULE_allValueDifinition); + try { + this.state = 345; + this._errHandler.sync(this); + switch(this._input.LA(1)) { + case FlinkSqlParser.STRING_LITERAL: + this.enterOuterAlt(localctx, 1); + this.state = 341; + this.stringLiteral(); + break; + case FlinkSqlParser.TRUE: + case FlinkSqlParser.FALSE: + this.enterOuterAlt(localctx, 2); + this.state = 342; + this.booleanLiteral(); + break; + case FlinkSqlParser.DEC_DIGIT: + this.enterOuterAlt(localctx, 3); + this.state = 343; + this.match(FlinkSqlParser.DEC_DIGIT); + break; + case FlinkSqlParser.NULL: + this.enterOuterAlt(localctx, 4); + this.state = 344; + this.match(FlinkSqlParser.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 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 = FlinkSqlParser.RULE_queryStatement; + return this; +} + +QueryStatementContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +QueryStatementContext.prototype.constructor = QueryStatementContext; + + +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); + } +}; + + + + +FlinkSqlParser.QueryStatementContext = QueryStatementContext; + +FlinkSqlParser.prototype.queryStatement = function() { + + var localctx = new QueryStatementContext(this, this._ctx, this.state); + this.enterRule(localctx, 62, FlinkSqlParser.RULE_queryStatement); + 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 SelectStatementContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = FlinkSqlParser.RULE_selectStatement; + return this; +} + +SelectStatementContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +SelectStatementContext.prototype.constructor = SelectStatementContext; + +SelectStatementContext.prototype.SELECT = function() { + return this.getToken(FlinkSqlParser.SELECT, 0); +}; + +SelectStatementContext.prototype.FROM = function() { + return this.getToken(FlinkSqlParser.FROM, 0); +}; + +SelectStatementContext.prototype.tableExpression = function() { + return this.getTypedRuleContext(TableExpressionContext,0); +}; + +SelectStatementContext.prototype.ASTERISK_SIGN = function() { + return this.getToken(FlinkSqlParser.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.setQuantifier = function() { + return this.getTypedRuleContext(SetQuantifierContext,0); +}; + +SelectStatementContext.prototype.COMMA = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTokens(FlinkSqlParser.COMMA); + } else { + return this.getToken(FlinkSqlParser.COMMA, i); + } +}; + + +SelectStatementContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterSelectStatement(this); + } +}; + +SelectStatementContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitSelectStatement(this); + } +}; + +SelectStatementContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitSelectStatement(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +FlinkSqlParser.SelectStatementContext = SelectStatementContext; + +FlinkSqlParser.prototype.selectStatement = function() { + + var localctx = new SelectStatementContext(this, this._ctx, this.state); + this.enterRule(localctx, 64, FlinkSqlParser.RULE_selectStatement); + var _la = 0; // Token type + try { + this.enterOuterAlt(localctx, 1); + this.state = 349; + this.match(FlinkSqlParser.SELECT); + this.state = 351; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===FlinkSqlParser.ALL || _la===FlinkSqlParser.DISTINCT) { + this.state = 350; + this.setQuantifier(); } - this.state = 273; + this.state = 362; + this._errHandler.sync(this); + switch(this._input.LA(1)) { + case FlinkSqlParser.ASTERISK_SIGN: + this.state = 353; + this.match(FlinkSqlParser.ASTERISK_SIGN); + break; + case FlinkSqlParser.NOT: + case FlinkSqlParser.TRUE: + case FlinkSqlParser.FALSE: + case FlinkSqlParser.CASE: + case FlinkSqlParser.FIRST: + case FlinkSqlParser.LAST: + case FlinkSqlParser.POSITION: + case FlinkSqlParser.PLUS: + case FlinkSqlParser.MINUS: + case FlinkSqlParser.ASTERISK: + case FlinkSqlParser.TILDE: + case FlinkSqlParser.ID: + case FlinkSqlParser.NULL: + case FlinkSqlParser.LR_BRACKET: + case FlinkSqlParser.ZERO_DECIMAL: + case FlinkSqlParser.ONE_DECIMAL: + case FlinkSqlParser.TWO_DECIMAL: + case FlinkSqlParser.HYPNEN_SIGN: + case FlinkSqlParser.STRING_LITERAL: + case FlinkSqlParser.DECIMAL_LITERAL: + case FlinkSqlParser.REAL_LITERAL: + case FlinkSqlParser.BIT_STRING: + this.state = 354; + this.projectItemDefinition(); + this.state = 359; + this._errHandler.sync(this); + _la = this._input.LA(1); + while(_la===FlinkSqlParser.COMMA) { + this.state = 355; + this.match(FlinkSqlParser.COMMA); + this.state = 356; + this.projectItemDefinition(); + this.state = 361; + this._errHandler.sync(this); + _la = this._input.LA(1); + } + break; + default: + throw new antlr4.error.NoViableAltException(this); + } + this.state = 364; + this.match(FlinkSqlParser.FROM); + this.state = 365; + this.tableExpression(); + } 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 = FlinkSqlParser.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(FlinkSqlParser.AS, 0); +}; + +ProjectItemDefinitionContext.prototype.DOT = function() { + return this.getToken(FlinkSqlParser.DOT, 0); +}; + +ProjectItemDefinitionContext.prototype.ASTERISK_SIGN = function() { + return this.getToken(FlinkSqlParser.ASTERISK_SIGN, 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); + } +}; + + + + +FlinkSqlParser.ProjectItemDefinitionContext = ProjectItemDefinitionContext; + +FlinkSqlParser.prototype.projectItemDefinition = function() { + + var localctx = new ProjectItemDefinitionContext(this, this._ctx, this.state); + this.enterRule(localctx, 66, FlinkSqlParser.RULE_projectItemDefinition); + var _la = 0; // Token type + try { + this.state = 378; + this._errHandler.sync(this); + switch(this._input.LA(1)) { + case FlinkSqlParser.NOT: + case FlinkSqlParser.TRUE: + case FlinkSqlParser.FALSE: + case FlinkSqlParser.CASE: + case FlinkSqlParser.FIRST: + case FlinkSqlParser.LAST: + case FlinkSqlParser.POSITION: + case FlinkSqlParser.PLUS: + case FlinkSqlParser.MINUS: + case FlinkSqlParser.ASTERISK: + case FlinkSqlParser.TILDE: + case FlinkSqlParser.NULL: + case FlinkSqlParser.LR_BRACKET: + case FlinkSqlParser.ZERO_DECIMAL: + case FlinkSqlParser.ONE_DECIMAL: + case FlinkSqlParser.TWO_DECIMAL: + case FlinkSqlParser.HYPNEN_SIGN: + case FlinkSqlParser.STRING_LITERAL: + case FlinkSqlParser.DECIMAL_LITERAL: + case FlinkSqlParser.REAL_LITERAL: + case FlinkSqlParser.BIT_STRING: + this.enterOuterAlt(localctx, 1); + this.state = 367; + this.expression(); + this.state = 372; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===FlinkSqlParser.AS || _la===FlinkSqlParser.ID) { + this.state = 369; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===FlinkSqlParser.AS) { + this.state = 368; + this.match(FlinkSqlParser.AS); + } + + this.state = 371; + this.uid(); + } + + break; + case FlinkSqlParser.ID: + this.enterOuterAlt(localctx, 2); + this.state = 374; + this.uid(); + this.state = 375; + this.match(FlinkSqlParser.DOT); + this.state = 376; + this.match(FlinkSqlParser.ASTERISK_SIGN); + 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 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 = FlinkSqlParser.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(FlinkSqlParser.COMMA); + } else { + return this.getToken(FlinkSqlParser.COMMA, i); + } +}; + + +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); + } +}; + + + + +FlinkSqlParser.TableExpressionContext = TableExpressionContext; + +FlinkSqlParser.prototype.tableExpression = function() { + + var localctx = new TableExpressionContext(this, this._ctx, this.state); + this.enterRule(localctx, 68, FlinkSqlParser.RULE_tableExpression); + var _la = 0; // Token type + try { + this.enterOuterAlt(localctx, 1); + this.state = 380; + this.tableReference(); + this.state = 385; + this._errHandler.sync(this); + _la = this._input.LA(1); + while(_la===FlinkSqlParser.COMMA) { + this.state = 381; + this.match(FlinkSqlParser.COMMA); + this.state = 382; + this.tableReference(); + this.state = 387; + 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 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 = FlinkSqlParser.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.tableAlias = function() { + return this.getTypedRuleContext(TableAliasContext,0); +}; + +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); + } +}; + + + + +FlinkSqlParser.TableReferenceContext = TableReferenceContext; + +FlinkSqlParser.prototype.tableReference = function() { + + var localctx = new TableReferenceContext(this, this._ctx, this.state); + this.enterRule(localctx, 70, FlinkSqlParser.RULE_tableReference); + try { + this.enterOuterAlt(localctx, 1); + this.state = 388; + this.tablePrimary(); + this.state = 389; + this.tableAlias(); + } 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 = FlinkSqlParser.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(FlinkSqlParser.TABLE, 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); + } +}; + + + + +FlinkSqlParser.TablePrimaryContext = TablePrimaryContext; + +FlinkSqlParser.prototype.tablePrimary = function() { + + var localctx = new TablePrimaryContext(this, this._ctx, this.state); + this.enterRule(localctx, 72, FlinkSqlParser.RULE_tablePrimary); + var _la = 0; // Token type + try { + this.enterOuterAlt(localctx, 1); + this.state = 392; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===FlinkSqlParser.TABLE) { + this.state = 391; + this.match(FlinkSqlParser.TABLE); + } + + this.state = 394; + 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 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 = FlinkSqlParser.RULE_expression; + return this; +} + +ExpressionContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +ExpressionContext.prototype.constructor = ExpressionContext; + +ExpressionContext.prototype.booleanExpression = function() { + return this.getTypedRuleContext(BooleanExpressionContext,0); +}; + +ExpressionContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterExpression(this); + } +}; + +ExpressionContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitExpression(this); + } +}; + +ExpressionContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitExpression(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +FlinkSqlParser.ExpressionContext = ExpressionContext; + +FlinkSqlParser.prototype.expression = function() { + + var localctx = new ExpressionContext(this, this._ctx, this.state); + this.enterRule(localctx, 74, FlinkSqlParser.RULE_expression); + try { + this.enterOuterAlt(localctx, 1); + this.state = 396; + this.booleanExpression(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 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 = FlinkSqlParser.RULE_booleanExpression; + return this; +} + +BooleanExpressionContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +BooleanExpressionContext.prototype.constructor = BooleanExpressionContext; + + + +BooleanExpressionContext.prototype.copyFrom = function(ctx) { + antlr4.ParserRuleContext.prototype.copyFrom.call(this, ctx); +}; + +function LogicalNotContext(parser, ctx) { + BooleanExpressionContext.call(this, parser); + BooleanExpressionContext.prototype.copyFrom.call(this, ctx); + return this; +} + +LogicalNotContext.prototype = Object.create(BooleanExpressionContext.prototype); +LogicalNotContext.prototype.constructor = LogicalNotContext; + +FlinkSqlParser.LogicalNotContext = LogicalNotContext; + +LogicalNotContext.prototype.NOT = function() { + return this.getToken(FlinkSqlParser.NOT, 0); +}; + +LogicalNotContext.prototype.booleanExpression = function() { + return this.getTypedRuleContext(BooleanExpressionContext,0); +}; +LogicalNotContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterLogicalNot(this); + } +}; + +LogicalNotContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitLogicalNot(this); + } +}; + +LogicalNotContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitLogicalNot(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function PredicatedContext(parser, ctx) { + BooleanExpressionContext.call(this, parser); + BooleanExpressionContext.prototype.copyFrom.call(this, ctx); + return this; +} + +PredicatedContext.prototype = Object.create(BooleanExpressionContext.prototype); +PredicatedContext.prototype.constructor = PredicatedContext; + +FlinkSqlParser.PredicatedContext = PredicatedContext; + +PredicatedContext.prototype.valueExpression = function() { + return this.getTypedRuleContext(ValueExpressionContext,0); +}; + +PredicatedContext.prototype.predicate = function() { + return this.getTypedRuleContext(PredicateContext,0); +}; +PredicatedContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterPredicated(this); + } +}; + +PredicatedContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitPredicated(this); + } +}; + +PredicatedContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitPredicated(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function LogicalBinaryContext(parser, ctx) { + BooleanExpressionContext.call(this, parser); + this.left = null; // BooleanExpressionContext; + this.operator = null; // Token; + this.right = null; // BooleanExpressionContext; + BooleanExpressionContext.prototype.copyFrom.call(this, ctx); + return this; +} + +LogicalBinaryContext.prototype = Object.create(BooleanExpressionContext.prototype); +LogicalBinaryContext.prototype.constructor = LogicalBinaryContext; + +FlinkSqlParser.LogicalBinaryContext = LogicalBinaryContext; + +LogicalBinaryContext.prototype.booleanExpression = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(BooleanExpressionContext); + } else { + return this.getTypedRuleContext(BooleanExpressionContext,i); + } +}; + +LogicalBinaryContext.prototype.AND = function() { + return this.getToken(FlinkSqlParser.AND, 0); +}; + +LogicalBinaryContext.prototype.OR = function() { + return this.getToken(FlinkSqlParser.OR, 0); +}; +LogicalBinaryContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterLogicalBinary(this); + } +}; + +LogicalBinaryContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitLogicalBinary(this); + } +}; + +LogicalBinaryContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitLogicalBinary(this); + } else { + return visitor.visitChildren(this); + } +}; + + + +FlinkSqlParser.prototype.booleanExpression = function(_p) { + if(_p===undefined) { + _p = 0; + } + var _parentctx = this._ctx; + var _parentState = this.state; + var localctx = new BooleanExpressionContext(this, this._ctx, _parentState); + var _prevctx = localctx; + var _startState = 76; + this.enterRecursionRule(localctx, 76, FlinkSqlParser.RULE_booleanExpression, _p); + try { + this.enterOuterAlt(localctx, 1); + this.state = 405; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,35,this._ctx); + switch(la_) { + case 1: + localctx = new LogicalNotContext(this, localctx); + this._ctx = localctx; + _prevctx = localctx; + + this.state = 399; + this.match(FlinkSqlParser.NOT); + this.state = 400; + this.booleanExpression(4); + break; + + case 2: + localctx = new PredicatedContext(this, localctx); + this._ctx = localctx; + _prevctx = localctx; + this.state = 401; + this.valueExpression(0); + this.state = 403; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,34,this._ctx); + if(la_===1) { + this.state = 402; + this.predicate(); + + } + break; + + } + this._ctx.stop = this._input.LT(-1); + this.state = 415; + this._errHandler.sync(this); + var _alt = this._interp.adaptivePredict(this._input,37,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 = 413; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,36,this._ctx); + switch(la_) { + case 1: + localctx = new LogicalBinaryContext(this, new BooleanExpressionContext(this, _parentctx, _parentState)); + localctx.left = _prevctx; + this.pushNewRecursionContext(localctx, _startState, FlinkSqlParser.RULE_booleanExpression); + this.state = 407; + if (!( this.precpred(this._ctx, 2))) { + throw new antlr4.error.FailedPredicateException(this, "this.precpred(this._ctx, 2)"); + } + this.state = 408; + localctx.operator = this.match(FlinkSqlParser.AND); + this.state = 409; + localctx.right = this.booleanExpression(3); + break; + + case 2: + localctx = new LogicalBinaryContext(this, new BooleanExpressionContext(this, _parentctx, _parentState)); + localctx.left = _prevctx; + this.pushNewRecursionContext(localctx, _startState, FlinkSqlParser.RULE_booleanExpression); + this.state = 410; + if (!( this.precpred(this._ctx, 1))) { + throw new antlr4.error.FailedPredicateException(this, "this.precpred(this._ctx, 1)"); + } + this.state = 411; + localctx.operator = this.match(FlinkSqlParser.OR); + this.state = 412; + localctx.right = this.booleanExpression(2); + break; + + } + } + this.state = 417; + this._errHandler.sync(this); + _alt = this._interp.adaptivePredict(this._input,37,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 = FlinkSqlParser.RULE_predicate; + this.kind = null; // Token + this.lower = null; // ValueExpressionContext + this.upper = null; // ValueExpressionContext + this.pattern = null; // ValueExpressionContext + this.quantifier = null; // Token + this.right = null; // ValueExpressionContext + return this; +} + +PredicateContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +PredicateContext.prototype.constructor = PredicateContext; + +PredicateContext.prototype.AND = function() { + return this.getToken(FlinkSqlParser.AND, 0); +}; + +PredicateContext.prototype.BETWEEN = function() { + return this.getToken(FlinkSqlParser.BETWEEN, 0); +}; + +PredicateContext.prototype.valueExpression = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(ValueExpressionContext); + } else { + return this.getTypedRuleContext(ValueExpressionContext,i); + } +}; + +PredicateContext.prototype.NOT = function() { + return this.getToken(FlinkSqlParser.NOT, 0); +}; + +PredicateContext.prototype.LR_BRACKET = function() { + return this.getToken(FlinkSqlParser.LR_BRACKET, 0); +}; + +PredicateContext.prototype.expression = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(ExpressionContext); + } else { + return this.getTypedRuleContext(ExpressionContext,i); + } +}; + +PredicateContext.prototype.RR_BRACKET = function() { + return this.getToken(FlinkSqlParser.RR_BRACKET, 0); +}; + +PredicateContext.prototype.IN = function() { + return this.getToken(FlinkSqlParser.IN, 0); +}; + +PredicateContext.prototype.COMMA = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTokens(FlinkSqlParser.COMMA); + } else { + return this.getToken(FlinkSqlParser.COMMA, i); + } +}; + + +PredicateContext.prototype.RLIKE = function() { + return this.getToken(FlinkSqlParser.RLIKE, 0); +}; + +PredicateContext.prototype.LIKE = function() { + return this.getToken(FlinkSqlParser.LIKE, 0); +}; + +PredicateContext.prototype.ANY = function() { + return this.getToken(FlinkSqlParser.ANY, 0); +}; + +PredicateContext.prototype.ALL = function() { + return this.getToken(FlinkSqlParser.ALL, 0); +}; + +PredicateContext.prototype.IS = function() { + return this.getToken(FlinkSqlParser.IS, 0); +}; + +PredicateContext.prototype.NULL = function() { + return this.getToken(FlinkSqlParser.NULL, 0); +}; + +PredicateContext.prototype.TRUE = function() { + return this.getToken(FlinkSqlParser.TRUE, 0); +}; + +PredicateContext.prototype.FALSE = function() { + return this.getToken(FlinkSqlParser.FALSE, 0); +}; + +PredicateContext.prototype.FROM = function() { + return this.getToken(FlinkSqlParser.FROM, 0); +}; + +PredicateContext.prototype.DISTINCT = function() { + return this.getToken(FlinkSqlParser.DISTINCT, 0); +}; + +PredicateContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterPredicate(this); + } +}; + +PredicateContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitPredicate(this); + } +}; + +PredicateContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitPredicate(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +FlinkSqlParser.PredicateContext = PredicateContext; + +FlinkSqlParser.prototype.predicate = function() { + + var localctx = new PredicateContext(this, this._ctx, this.state); + this.enterRule(localctx, 78, FlinkSqlParser.RULE_predicate); + var _la = 0; // Token type + try { + this.state = 488; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,49,this._ctx); + switch(la_) { + case 1: + this.enterOuterAlt(localctx, 1); + this.state = 419; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===FlinkSqlParser.NOT) { + this.state = 418; + this.match(FlinkSqlParser.NOT); + } + + this.state = 421; + localctx.kind = this.match(FlinkSqlParser.BETWEEN); + this.state = 422; + localctx.lower = this.valueExpression(0); + this.state = 423; + this.match(FlinkSqlParser.AND); + this.state = 424; + localctx.upper = this.valueExpression(0); + break; + + case 2: + this.enterOuterAlt(localctx, 2); + this.state = 427; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===FlinkSqlParser.NOT) { + this.state = 426; + this.match(FlinkSqlParser.NOT); + } + + this.state = 429; + localctx.kind = this.match(FlinkSqlParser.IN); + this.state = 430; + this.match(FlinkSqlParser.LR_BRACKET); + this.state = 431; + this.expression(); + this.state = 436; + this._errHandler.sync(this); + _la = this._input.LA(1); + while(_la===FlinkSqlParser.COMMA) { + this.state = 432; + this.match(FlinkSqlParser.COMMA); + this.state = 433; + this.expression(); + this.state = 438; + this._errHandler.sync(this); + _la = this._input.LA(1); + } + this.state = 439; + this.match(FlinkSqlParser.RR_BRACKET); + break; + + case 3: + this.enterOuterAlt(localctx, 3); + this.state = 442; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===FlinkSqlParser.NOT) { + this.state = 441; + this.match(FlinkSqlParser.NOT); + } + + this.state = 444; + localctx.kind = this.match(FlinkSqlParser.RLIKE); + this.state = 445; + localctx.pattern = this.valueExpression(0); + break; + + case 4: + this.enterOuterAlt(localctx, 4); + this.state = 447; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===FlinkSqlParser.NOT) { + this.state = 446; + this.match(FlinkSqlParser.NOT); + } + + this.state = 449; + localctx.kind = this.match(FlinkSqlParser.LIKE); + this.state = 450; + localctx.quantifier = this._input.LT(1); + _la = this._input.LA(1); + if(!(_la===FlinkSqlParser.ALL || _la===FlinkSqlParser.ANY)) { + localctx.quantifier = this._errHandler.recoverInline(this); + } + else { + this._errHandler.reportMatch(this); + this.consume(); + } + this.state = 464; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,44,this._ctx); + switch(la_) { + case 1: + this.state = 451; + this.match(FlinkSqlParser.LR_BRACKET); + this.state = 452; + this.match(FlinkSqlParser.RR_BRACKET); + break; + + case 2: + this.state = 453; + this.match(FlinkSqlParser.LR_BRACKET); + this.state = 454; + this.expression(); + this.state = 459; + this._errHandler.sync(this); + _la = this._input.LA(1); + while(_la===FlinkSqlParser.COMMA) { + this.state = 455; + this.match(FlinkSqlParser.COMMA); + this.state = 456; + this.expression(); + this.state = 461; + this._errHandler.sync(this); + _la = this._input.LA(1); + } + this.state = 462; + this.match(FlinkSqlParser.RR_BRACKET); + break; + + } + break; + + case 5: + this.enterOuterAlt(localctx, 5); + this.state = 467; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===FlinkSqlParser.NOT) { + this.state = 466; + this.match(FlinkSqlParser.NOT); + } + + this.state = 469; + localctx.kind = this.match(FlinkSqlParser.LIKE); + this.state = 470; + localctx.pattern = this.valueExpression(0); + break; + + case 6: + this.enterOuterAlt(localctx, 6); + this.state = 471; + this.match(FlinkSqlParser.IS); + this.state = 473; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===FlinkSqlParser.NOT) { + this.state = 472; + this.match(FlinkSqlParser.NOT); + } + + this.state = 475; + localctx.kind = this.match(FlinkSqlParser.NULL); + break; + + case 7: + this.enterOuterAlt(localctx, 7); + this.state = 476; + this.match(FlinkSqlParser.IS); + this.state = 478; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===FlinkSqlParser.NOT) { + this.state = 477; + this.match(FlinkSqlParser.NOT); + } + + this.state = 480; + localctx.kind = this._input.LT(1); + _la = this._input.LA(1); + if(!(_la===FlinkSqlParser.TRUE || _la===FlinkSqlParser.FALSE)) { + localctx.kind = this._errHandler.recoverInline(this); + } + else { + this._errHandler.reportMatch(this); + this.consume(); + } + break; + + case 8: + this.enterOuterAlt(localctx, 8); + this.state = 481; + this.match(FlinkSqlParser.IS); + this.state = 483; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===FlinkSqlParser.NOT) { + this.state = 482; + this.match(FlinkSqlParser.NOT); + } + + this.state = 485; + localctx.kind = this.match(FlinkSqlParser.DISTINCT); + this.state = 486; + this.match(FlinkSqlParser.FROM); + this.state = 487; + localctx.right = this.valueExpression(0); + 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 ValueExpressionContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = FlinkSqlParser.RULE_valueExpression; + return this; +} + +ValueExpressionContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +ValueExpressionContext.prototype.constructor = ValueExpressionContext; + + + +ValueExpressionContext.prototype.copyFrom = function(ctx) { + antlr4.ParserRuleContext.prototype.copyFrom.call(this, ctx); +}; + +function ValueExpressionDefaultContext(parser, ctx) { + ValueExpressionContext.call(this, parser); + ValueExpressionContext.prototype.copyFrom.call(this, ctx); + return this; +} + +ValueExpressionDefaultContext.prototype = Object.create(ValueExpressionContext.prototype); +ValueExpressionDefaultContext.prototype.constructor = ValueExpressionDefaultContext; + +FlinkSqlParser.ValueExpressionDefaultContext = ValueExpressionDefaultContext; + +ValueExpressionDefaultContext.prototype.primaryExpression = function() { + return this.getTypedRuleContext(PrimaryExpressionContext,0); +}; +ValueExpressionDefaultContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterValueExpressionDefault(this); + } +}; + +ValueExpressionDefaultContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitValueExpressionDefault(this); + } +}; + +ValueExpressionDefaultContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitValueExpressionDefault(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function ComparisonContext(parser, ctx) { + ValueExpressionContext.call(this, parser); + this.left = null; // ValueExpressionContext; + this.right = null; // ValueExpressionContext; + ValueExpressionContext.prototype.copyFrom.call(this, ctx); + return this; +} + +ComparisonContext.prototype = Object.create(ValueExpressionContext.prototype); +ComparisonContext.prototype.constructor = ComparisonContext; + +FlinkSqlParser.ComparisonContext = ComparisonContext; + +ComparisonContext.prototype.comparisonOperator = function() { + return this.getTypedRuleContext(ComparisonOperatorContext,0); +}; + +ComparisonContext.prototype.valueExpression = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(ValueExpressionContext); + } else { + return this.getTypedRuleContext(ValueExpressionContext,i); + } +}; +ComparisonContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterComparison(this); + } +}; + +ComparisonContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitComparison(this); + } +}; + +ComparisonContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitComparison(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function ArithmeticBinaryContext(parser, ctx) { + ValueExpressionContext.call(this, parser); + this.left = null; // ValueExpressionContext; + this.operator = null; // Token; + this.right = null; // ValueExpressionContext; + ValueExpressionContext.prototype.copyFrom.call(this, ctx); + return this; +} + +ArithmeticBinaryContext.prototype = Object.create(ValueExpressionContext.prototype); +ArithmeticBinaryContext.prototype.constructor = ArithmeticBinaryContext; + +FlinkSqlParser.ArithmeticBinaryContext = ArithmeticBinaryContext; + +ArithmeticBinaryContext.prototype.valueExpression = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(ValueExpressionContext); + } else { + return this.getTypedRuleContext(ValueExpressionContext,i); + } +}; + +ArithmeticBinaryContext.prototype.ASTERISK = function() { + return this.getToken(FlinkSqlParser.ASTERISK, 0); +}; + +ArithmeticBinaryContext.prototype.SLASH = function() { + return this.getToken(FlinkSqlParser.SLASH, 0); +}; + +ArithmeticBinaryContext.prototype.PERCENT = function() { + return this.getToken(FlinkSqlParser.PERCENT, 0); +}; + +ArithmeticBinaryContext.prototype.DIV = function() { + return this.getToken(FlinkSqlParser.DIV, 0); +}; + +ArithmeticBinaryContext.prototype.PLUS = function() { + return this.getToken(FlinkSqlParser.PLUS, 0); +}; + +ArithmeticBinaryContext.prototype.MINUS = function() { + return this.getToken(FlinkSqlParser.MINUS, 0); +}; + +ArithmeticBinaryContext.prototype.CONCAT_PIPE = function() { + return this.getToken(FlinkSqlParser.CONCAT_PIPE, 0); +}; + +ArithmeticBinaryContext.prototype.AMPERSAND = function() { + return this.getToken(FlinkSqlParser.AMPERSAND, 0); +}; + +ArithmeticBinaryContext.prototype.HAT = function() { + return this.getToken(FlinkSqlParser.HAT, 0); +}; + +ArithmeticBinaryContext.prototype.PIPE = function() { + return this.getToken(FlinkSqlParser.PIPE, 0); +}; +ArithmeticBinaryContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterArithmeticBinary(this); + } +}; + +ArithmeticBinaryContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitArithmeticBinary(this); + } +}; + +ArithmeticBinaryContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitArithmeticBinary(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function ArithmeticUnaryContext(parser, ctx) { + ValueExpressionContext.call(this, parser); + this.operator = null; // Token; + ValueExpressionContext.prototype.copyFrom.call(this, ctx); + return this; +} + +ArithmeticUnaryContext.prototype = Object.create(ValueExpressionContext.prototype); +ArithmeticUnaryContext.prototype.constructor = ArithmeticUnaryContext; + +FlinkSqlParser.ArithmeticUnaryContext = ArithmeticUnaryContext; + +ArithmeticUnaryContext.prototype.valueExpression = function() { + return this.getTypedRuleContext(ValueExpressionContext,0); +}; + +ArithmeticUnaryContext.prototype.MINUS = function() { + return this.getToken(FlinkSqlParser.MINUS, 0); +}; + +ArithmeticUnaryContext.prototype.PLUS = function() { + return this.getToken(FlinkSqlParser.PLUS, 0); +}; + +ArithmeticUnaryContext.prototype.TILDE = function() { + return this.getToken(FlinkSqlParser.TILDE, 0); +}; +ArithmeticUnaryContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterArithmeticUnary(this); + } +}; + +ArithmeticUnaryContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitArithmeticUnary(this); + } +}; + +ArithmeticUnaryContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitArithmeticUnary(this); + } else { + return visitor.visitChildren(this); + } +}; + + + +FlinkSqlParser.prototype.valueExpression = function(_p) { + if(_p===undefined) { + _p = 0; + } + var _parentctx = this._ctx; + var _parentState = this.state; + var localctx = new ValueExpressionContext(this, this._ctx, _parentState); + var _prevctx = localctx; + var _startState = 80; + this.enterRecursionRule(localctx, 80, FlinkSqlParser.RULE_valueExpression, _p); + var _la = 0; // Token type + try { + this.enterOuterAlt(localctx, 1); + this.state = 494; + this._errHandler.sync(this); + switch(this._input.LA(1)) { + case FlinkSqlParser.NOT: + case FlinkSqlParser.TRUE: + case FlinkSqlParser.FALSE: + case FlinkSqlParser.CASE: + case FlinkSqlParser.FIRST: + case FlinkSqlParser.LAST: + case FlinkSqlParser.POSITION: + case FlinkSqlParser.ASTERISK: + case FlinkSqlParser.NULL: + case FlinkSqlParser.LR_BRACKET: + case FlinkSqlParser.ZERO_DECIMAL: + case FlinkSqlParser.ONE_DECIMAL: + case FlinkSqlParser.TWO_DECIMAL: + case FlinkSqlParser.HYPNEN_SIGN: + case FlinkSqlParser.STRING_LITERAL: + case FlinkSqlParser.DECIMAL_LITERAL: + case FlinkSqlParser.REAL_LITERAL: + case FlinkSqlParser.BIT_STRING: + localctx = new ValueExpressionDefaultContext(this, localctx); + this._ctx = localctx; + _prevctx = localctx; + + this.state = 491; + this.primaryExpression(0); + break; + case FlinkSqlParser.PLUS: + case FlinkSqlParser.MINUS: + case FlinkSqlParser.TILDE: + localctx = new ArithmeticUnaryContext(this, localctx); + this._ctx = localctx; + _prevctx = localctx; + this.state = 492; + localctx.operator = this._input.LT(1); + _la = this._input.LA(1); + if(!(((((_la - 128)) & ~0x1f) == 0 && ((1 << (_la - 128)) & ((1 << (FlinkSqlParser.PLUS - 128)) | (1 << (FlinkSqlParser.MINUS - 128)) | (1 << (FlinkSqlParser.TILDE - 128)))) !== 0))) { + localctx.operator = this._errHandler.recoverInline(this); + } + else { + this._errHandler.reportMatch(this); + this.consume(); + } + this.state = 493; + this.valueExpression(7); + break; + default: + throw new antlr4.error.NoViableAltException(this); + } + this._ctx.stop = this._input.LT(-1); + this.state = 517; + this._errHandler.sync(this); + var _alt = this._interp.adaptivePredict(this._input,52,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 = 515; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,51,this._ctx); + switch(la_) { + case 1: + localctx = new ArithmeticBinaryContext(this, new ValueExpressionContext(this, _parentctx, _parentState)); + localctx.left = _prevctx; + this.pushNewRecursionContext(localctx, _startState, FlinkSqlParser.RULE_valueExpression); + this.state = 496; + if (!( this.precpred(this._ctx, 6))) { + throw new antlr4.error.FailedPredicateException(this, "this.precpred(this._ctx, 6)"); + } + this.state = 497; + localctx.operator = this._input.LT(1); + _la = this._input.LA(1); + if(!(((((_la - 130)) & ~0x1f) == 0 && ((1 << (_la - 130)) & ((1 << (FlinkSqlParser.ASTERISK - 130)) | (1 << (FlinkSqlParser.SLASH - 130)) | (1 << (FlinkSqlParser.PERCENT - 130)) | (1 << (FlinkSqlParser.DIV - 130)))) !== 0))) { + localctx.operator = this._errHandler.recoverInline(this); + } + else { + this._errHandler.reportMatch(this); + this.consume(); + } + this.state = 498; + localctx.right = this.valueExpression(7); + break; + + case 2: + localctx = new ArithmeticBinaryContext(this, new ValueExpressionContext(this, _parentctx, _parentState)); + localctx.left = _prevctx; + this.pushNewRecursionContext(localctx, _startState, FlinkSqlParser.RULE_valueExpression); + this.state = 499; + if (!( this.precpred(this._ctx, 5))) { + throw new antlr4.error.FailedPredicateException(this, "this.precpred(this._ctx, 5)"); + } + this.state = 500; + localctx.operator = this._input.LT(1); + _la = this._input.LA(1); + if(!(((((_la - 128)) & ~0x1f) == 0 && ((1 << (_la - 128)) & ((1 << (FlinkSqlParser.PLUS - 128)) | (1 << (FlinkSqlParser.MINUS - 128)) | (1 << (FlinkSqlParser.CONCAT_PIPE - 128)))) !== 0))) { + localctx.operator = this._errHandler.recoverInline(this); + } + else { + this._errHandler.reportMatch(this); + this.consume(); + } + this.state = 501; + localctx.right = this.valueExpression(6); + break; + + case 3: + localctx = new ArithmeticBinaryContext(this, new ValueExpressionContext(this, _parentctx, _parentState)); + localctx.left = _prevctx; + this.pushNewRecursionContext(localctx, _startState, FlinkSqlParser.RULE_valueExpression); + this.state = 502; + if (!( this.precpred(this._ctx, 4))) { + throw new antlr4.error.FailedPredicateException(this, "this.precpred(this._ctx, 4)"); + } + this.state = 503; + localctx.operator = this.match(FlinkSqlParser.AMPERSAND); + this.state = 504; + localctx.right = this.valueExpression(5); + break; + + case 4: + localctx = new ArithmeticBinaryContext(this, new ValueExpressionContext(this, _parentctx, _parentState)); + localctx.left = _prevctx; + this.pushNewRecursionContext(localctx, _startState, FlinkSqlParser.RULE_valueExpression); + this.state = 505; + if (!( this.precpred(this._ctx, 3))) { + throw new antlr4.error.FailedPredicateException(this, "this.precpred(this._ctx, 3)"); + } + this.state = 506; + localctx.operator = this.match(FlinkSqlParser.HAT); + this.state = 507; + localctx.right = this.valueExpression(4); + break; + + case 5: + localctx = new ArithmeticBinaryContext(this, new ValueExpressionContext(this, _parentctx, _parentState)); + localctx.left = _prevctx; + this.pushNewRecursionContext(localctx, _startState, FlinkSqlParser.RULE_valueExpression); + this.state = 508; + if (!( this.precpred(this._ctx, 2))) { + throw new antlr4.error.FailedPredicateException(this, "this.precpred(this._ctx, 2)"); + } + this.state = 509; + localctx.operator = this.match(FlinkSqlParser.PIPE); + this.state = 510; + localctx.right = this.valueExpression(3); + break; + + case 6: + localctx = new ComparisonContext(this, new ValueExpressionContext(this, _parentctx, _parentState)); + localctx.left = _prevctx; + this.pushNewRecursionContext(localctx, _startState, FlinkSqlParser.RULE_valueExpression); + this.state = 511; + if (!( this.precpred(this._ctx, 1))) { + throw new antlr4.error.FailedPredicateException(this, "this.precpred(this._ctx, 1)"); + } + this.state = 512; + this.comparisonOperator(); + this.state = 513; + localctx.right = this.valueExpression(2); + break; + + } + } + this.state = 519; + this._errHandler.sync(this); + _alt = this._interp.adaptivePredict(this._input,52,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 PrimaryExpressionContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = FlinkSqlParser.RULE_primaryExpression; + return this; +} + +PrimaryExpressionContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +PrimaryExpressionContext.prototype.constructor = PrimaryExpressionContext; + + + +PrimaryExpressionContext.prototype.copyFrom = function(ctx) { + antlr4.ParserRuleContext.prototype.copyFrom.call(this, ctx); +}; + +function SimpleCaseContext(parser, ctx) { + PrimaryExpressionContext.call(this, parser); + this.value = null; // ExpressionContext; + this.elseExpression = null; // ExpressionContext; + PrimaryExpressionContext.prototype.copyFrom.call(this, ctx); + return this; +} + +SimpleCaseContext.prototype = Object.create(PrimaryExpressionContext.prototype); +SimpleCaseContext.prototype.constructor = SimpleCaseContext; + +FlinkSqlParser.SimpleCaseContext = SimpleCaseContext; + +SimpleCaseContext.prototype.CASE = function() { + return this.getToken(FlinkSqlParser.CASE, 0); +}; + +SimpleCaseContext.prototype.END = function() { + return this.getToken(FlinkSqlParser.END, 0); +}; + +SimpleCaseContext.prototype.expression = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(ExpressionContext); + } else { + return this.getTypedRuleContext(ExpressionContext,i); + } +}; + +SimpleCaseContext.prototype.whenClause = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(WhenClauseContext); + } else { + return this.getTypedRuleContext(WhenClauseContext,i); + } +}; + +SimpleCaseContext.prototype.ELSE = function() { + return this.getToken(FlinkSqlParser.ELSE, 0); +}; +SimpleCaseContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterSimpleCase(this); + } +}; + +SimpleCaseContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitSimpleCase(this); + } +}; + +SimpleCaseContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitSimpleCase(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function ConstantDefaultContext(parser, ctx) { + PrimaryExpressionContext.call(this, parser); + PrimaryExpressionContext.prototype.copyFrom.call(this, ctx); + return this; +} + +ConstantDefaultContext.prototype = Object.create(PrimaryExpressionContext.prototype); +ConstantDefaultContext.prototype.constructor = ConstantDefaultContext; + +FlinkSqlParser.ConstantDefaultContext = ConstantDefaultContext; + +ConstantDefaultContext.prototype.constant = function() { + return this.getTypedRuleContext(ConstantContext,0); +}; +ConstantDefaultContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterConstantDefault(this); + } +}; + +ConstantDefaultContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitConstantDefault(this); + } +}; + +ConstantDefaultContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitConstantDefault(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function ParenthesizedExpressionContext(parser, ctx) { + PrimaryExpressionContext.call(this, parser); + PrimaryExpressionContext.prototype.copyFrom.call(this, ctx); + return this; +} + +ParenthesizedExpressionContext.prototype = Object.create(PrimaryExpressionContext.prototype); +ParenthesizedExpressionContext.prototype.constructor = ParenthesizedExpressionContext; + +FlinkSqlParser.ParenthesizedExpressionContext = ParenthesizedExpressionContext; + +ParenthesizedExpressionContext.prototype.LR_BRACKET = function() { + return this.getToken(FlinkSqlParser.LR_BRACKET, 0); +}; + +ParenthesizedExpressionContext.prototype.expression = function() { + return this.getTypedRuleContext(ExpressionContext,0); +}; + +ParenthesizedExpressionContext.prototype.RR_BRACKET = function() { + return this.getToken(FlinkSqlParser.RR_BRACKET, 0); +}; +ParenthesizedExpressionContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterParenthesizedExpression(this); + } +}; + +ParenthesizedExpressionContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitParenthesizedExpression(this); + } +}; + +ParenthesizedExpressionContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitParenthesizedExpression(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function LastContext(parser, ctx) { + PrimaryExpressionContext.call(this, parser); + PrimaryExpressionContext.prototype.copyFrom.call(this, ctx); + return this; +} + +LastContext.prototype = Object.create(PrimaryExpressionContext.prototype); +LastContext.prototype.constructor = LastContext; + +FlinkSqlParser.LastContext = LastContext; + +LastContext.prototype.LAST = function() { + return this.getToken(FlinkSqlParser.LAST, 0); +}; + +LastContext.prototype.LR_BRACKET = function() { + return this.getToken(FlinkSqlParser.LR_BRACKET, 0); +}; + +LastContext.prototype.expression = function() { + return this.getTypedRuleContext(ExpressionContext,0); +}; + +LastContext.prototype.RR_BRACKET = function() { + return this.getToken(FlinkSqlParser.RR_BRACKET, 0); +}; + +LastContext.prototype.IGNORE = function() { + return this.getToken(FlinkSqlParser.IGNORE, 0); +}; + +LastContext.prototype.NULLS = function() { + return this.getToken(FlinkSqlParser.NULLS, 0); +}; +LastContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterLast(this); + } +}; + +LastContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitLast(this); + } +}; + +LastContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitLast(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function StarContext(parser, ctx) { + PrimaryExpressionContext.call(this, parser); + PrimaryExpressionContext.prototype.copyFrom.call(this, ctx); + return this; +} + +StarContext.prototype = Object.create(PrimaryExpressionContext.prototype); +StarContext.prototype.constructor = StarContext; + +FlinkSqlParser.StarContext = StarContext; + +StarContext.prototype.ASTERISK = function() { + return this.getToken(FlinkSqlParser.ASTERISK, 0); +}; +StarContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterStar(this); + } +}; + +StarContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitStar(this); + } +}; + +StarContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitStar(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function SubscriptContext(parser, ctx) { + PrimaryExpressionContext.call(this, parser); + this.value = null; // PrimaryExpressionContext; + this.index = null; // ValueExpressionContext; + PrimaryExpressionContext.prototype.copyFrom.call(this, ctx); + return this; +} + +SubscriptContext.prototype = Object.create(PrimaryExpressionContext.prototype); +SubscriptContext.prototype.constructor = SubscriptContext; + +FlinkSqlParser.SubscriptContext = SubscriptContext; + +SubscriptContext.prototype.LS_BRACKET = function() { + return this.getToken(FlinkSqlParser.LS_BRACKET, 0); +}; + +SubscriptContext.prototype.RS_BRACKET = function() { + return this.getToken(FlinkSqlParser.RS_BRACKET, 0); +}; + +SubscriptContext.prototype.primaryExpression = function() { + return this.getTypedRuleContext(PrimaryExpressionContext,0); +}; + +SubscriptContext.prototype.valueExpression = function() { + return this.getTypedRuleContext(ValueExpressionContext,0); +}; +SubscriptContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterSubscript(this); + } +}; + +SubscriptContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitSubscript(this); + } +}; + +SubscriptContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitSubscript(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function SearchedCaseContext(parser, ctx) { + PrimaryExpressionContext.call(this, parser); + this.elseExpression = null; // ExpressionContext; + PrimaryExpressionContext.prototype.copyFrom.call(this, ctx); + return this; +} + +SearchedCaseContext.prototype = Object.create(PrimaryExpressionContext.prototype); +SearchedCaseContext.prototype.constructor = SearchedCaseContext; + +FlinkSqlParser.SearchedCaseContext = SearchedCaseContext; + +SearchedCaseContext.prototype.CASE = function() { + return this.getToken(FlinkSqlParser.CASE, 0); +}; + +SearchedCaseContext.prototype.END = function() { + return this.getToken(FlinkSqlParser.END, 0); +}; + +SearchedCaseContext.prototype.whenClause = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(WhenClauseContext); + } else { + return this.getTypedRuleContext(WhenClauseContext,i); + } +}; + +SearchedCaseContext.prototype.ELSE = function() { + return this.getToken(FlinkSqlParser.ELSE, 0); +}; + +SearchedCaseContext.prototype.expression = function() { + return this.getTypedRuleContext(ExpressionContext,0); +}; +SearchedCaseContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterSearchedCase(this); + } +}; + +SearchedCaseContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitSearchedCase(this); + } +}; + +SearchedCaseContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitSearchedCase(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function PositionContext(parser, ctx) { + PrimaryExpressionContext.call(this, parser); + this.substr = null; // ValueExpressionContext; + this.str = null; // ValueExpressionContext; + PrimaryExpressionContext.prototype.copyFrom.call(this, ctx); + return this; +} + +PositionContext.prototype = Object.create(PrimaryExpressionContext.prototype); +PositionContext.prototype.constructor = PositionContext; + +FlinkSqlParser.PositionContext = PositionContext; + +PositionContext.prototype.POSITION = function() { + return this.getToken(FlinkSqlParser.POSITION, 0); +}; + +PositionContext.prototype.LR_BRACKET = function() { + return this.getToken(FlinkSqlParser.LR_BRACKET, 0); +}; + +PositionContext.prototype.IN = function() { + return this.getToken(FlinkSqlParser.IN, 0); +}; + +PositionContext.prototype.RR_BRACKET = function() { + return this.getToken(FlinkSqlParser.RR_BRACKET, 0); +}; + +PositionContext.prototype.valueExpression = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(ValueExpressionContext); + } else { + return this.getTypedRuleContext(ValueExpressionContext,i); + } +}; +PositionContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterPosition(this); + } +}; + +PositionContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitPosition(this); + } +}; + +PositionContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitPosition(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function FirstContext(parser, ctx) { + PrimaryExpressionContext.call(this, parser); + PrimaryExpressionContext.prototype.copyFrom.call(this, ctx); + return this; +} + +FirstContext.prototype = Object.create(PrimaryExpressionContext.prototype); +FirstContext.prototype.constructor = FirstContext; + +FlinkSqlParser.FirstContext = FirstContext; + +FirstContext.prototype.FIRST = function() { + return this.getToken(FlinkSqlParser.FIRST, 0); +}; + +FirstContext.prototype.LR_BRACKET = function() { + return this.getToken(FlinkSqlParser.LR_BRACKET, 0); +}; + +FirstContext.prototype.expression = function() { + return this.getTypedRuleContext(ExpressionContext,0); +}; + +FirstContext.prototype.RR_BRACKET = function() { + return this.getToken(FlinkSqlParser.RR_BRACKET, 0); +}; + +FirstContext.prototype.IGNORE = function() { + return this.getToken(FlinkSqlParser.IGNORE, 0); +}; + +FirstContext.prototype.NULLS = function() { + return this.getToken(FlinkSqlParser.NULLS, 0); +}; +FirstContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterFirst(this); + } +}; + +FirstContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitFirst(this); + } +}; + +FirstContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitFirst(this); + } else { + return visitor.visitChildren(this); + } +}; + + + +FlinkSqlParser.prototype.primaryExpression = function(_p) { + if(_p===undefined) { + _p = 0; + } + var _parentctx = this._ctx; + var _parentState = this.state; + var localctx = new PrimaryExpressionContext(this, this._ctx, _parentState); + var _prevctx = localctx; + var _startState = 82; + this.enterRecursionRule(localctx, 82, FlinkSqlParser.RULE_primaryExpression, _p); + var _la = 0; // Token type + try { + this.enterOuterAlt(localctx, 1); + this.state = 577; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,59,this._ctx); + switch(la_) { + case 1: + localctx = new SearchedCaseContext(this, localctx); + this._ctx = localctx; + _prevctx = localctx; + + this.state = 521; + this.match(FlinkSqlParser.CASE); + this.state = 523; + this._errHandler.sync(this); + _la = this._input.LA(1); + do { + this.state = 522; + this.whenClause(); + this.state = 525; + this._errHandler.sync(this); + _la = this._input.LA(1); + } while(_la===FlinkSqlParser.WHEN); + this.state = 529; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===FlinkSqlParser.ELSE) { + this.state = 527; + this.match(FlinkSqlParser.ELSE); + this.state = 528; + localctx.elseExpression = this.expression(); + } + + this.state = 531; + this.match(FlinkSqlParser.END); + break; + + case 2: + localctx = new SimpleCaseContext(this, localctx); + this._ctx = localctx; + _prevctx = localctx; + this.state = 533; + this.match(FlinkSqlParser.CASE); + this.state = 534; + localctx.value = this.expression(); + this.state = 536; + this._errHandler.sync(this); + _la = this._input.LA(1); + do { + this.state = 535; + this.whenClause(); + this.state = 538; + this._errHandler.sync(this); + _la = this._input.LA(1); + } while(_la===FlinkSqlParser.WHEN); + this.state = 542; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===FlinkSqlParser.ELSE) { + this.state = 540; + this.match(FlinkSqlParser.ELSE); + this.state = 541; + localctx.elseExpression = this.expression(); + } + + this.state = 544; + this.match(FlinkSqlParser.END); + break; + + case 3: + localctx = new FirstContext(this, localctx); + this._ctx = localctx; + _prevctx = localctx; + this.state = 546; + this.match(FlinkSqlParser.FIRST); + this.state = 547; + this.match(FlinkSqlParser.LR_BRACKET); + this.state = 548; + this.expression(); + this.state = 551; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===FlinkSqlParser.IGNORE) { + this.state = 549; + this.match(FlinkSqlParser.IGNORE); + this.state = 550; + this.match(FlinkSqlParser.NULLS); + } + + this.state = 553; + this.match(FlinkSqlParser.RR_BRACKET); + break; + + case 4: + localctx = new LastContext(this, localctx); + this._ctx = localctx; + _prevctx = localctx; + this.state = 555; + this.match(FlinkSqlParser.LAST); + this.state = 556; + this.match(FlinkSqlParser.LR_BRACKET); + this.state = 557; + this.expression(); + this.state = 560; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===FlinkSqlParser.IGNORE) { + this.state = 558; + this.match(FlinkSqlParser.IGNORE); + this.state = 559; + this.match(FlinkSqlParser.NULLS); + } + + this.state = 562; + this.match(FlinkSqlParser.RR_BRACKET); + break; + + case 5: + localctx = new PositionContext(this, localctx); + this._ctx = localctx; + _prevctx = localctx; + this.state = 564; + this.match(FlinkSqlParser.POSITION); + this.state = 565; + this.match(FlinkSqlParser.LR_BRACKET); + this.state = 566; + localctx.substr = this.valueExpression(0); + this.state = 567; + this.match(FlinkSqlParser.IN); + this.state = 568; + localctx.str = this.valueExpression(0); + this.state = 569; + this.match(FlinkSqlParser.RR_BRACKET); + break; + + case 6: + localctx = new ConstantDefaultContext(this, localctx); + this._ctx = localctx; + _prevctx = localctx; + this.state = 571; + this.constant(); + break; + + case 7: + localctx = new StarContext(this, localctx); + this._ctx = localctx; + _prevctx = localctx; + this.state = 572; + this.match(FlinkSqlParser.ASTERISK); + break; + + case 8: + localctx = new ParenthesizedExpressionContext(this, localctx); + this._ctx = localctx; + _prevctx = localctx; + this.state = 573; + this.match(FlinkSqlParser.LR_BRACKET); + this.state = 574; + this.expression(); + this.state = 575; + this.match(FlinkSqlParser.RR_BRACKET); + break; + + } + this._ctx.stop = this._input.LT(-1); + this.state = 586; + this._errHandler.sync(this); + var _alt = this._interp.adaptivePredict(this._input,60,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 SubscriptContext(this, new PrimaryExpressionContext(this, _parentctx, _parentState)); + localctx.value = _prevctx; + this.pushNewRecursionContext(localctx, _startState, FlinkSqlParser.RULE_primaryExpression); + this.state = 579; + if (!( this.precpred(this._ctx, 2))) { + throw new antlr4.error.FailedPredicateException(this, "this.precpred(this._ctx, 2)"); + } + this.state = 580; + this.match(FlinkSqlParser.LS_BRACKET); + this.state = 581; + localctx.index = this.valueExpression(0); + this.state = 582; + this.match(FlinkSqlParser.RS_BRACKET); + } + this.state = 588; + this._errHandler.sync(this); + _alt = this._interp.adaptivePredict(this._input,60,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 TableAliasContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = FlinkSqlParser.RULE_tableAlias; + return this; +} + +TableAliasContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +TableAliasContext.prototype.constructor = TableAliasContext; + +TableAliasContext.prototype.strictIdentifier = function() { + return this.getTypedRuleContext(StrictIdentifierContext,0); +}; + +TableAliasContext.prototype.AS = function() { + return this.getToken(FlinkSqlParser.AS, 0); +}; + +TableAliasContext.prototype.identifierList = function() { + return this.getTypedRuleContext(IdentifierListContext,0); +}; + +TableAliasContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterTableAlias(this); + } +}; + +TableAliasContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitTableAlias(this); + } +}; + +TableAliasContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitTableAlias(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +FlinkSqlParser.TableAliasContext = TableAliasContext; + +FlinkSqlParser.prototype.tableAlias = function() { + + var localctx = new TableAliasContext(this, this._ctx, this.state); + this.enterRule(localctx, 84, FlinkSqlParser.RULE_tableAlias); + var _la = 0; // Token type + try { + this.enterOuterAlt(localctx, 1); + this.state = 596; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===FlinkSqlParser.AS || _la===FlinkSqlParser.STRING_LITERAL || _la===FlinkSqlParser.IDENTIFIER_BASE) { + this.state = 590; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===FlinkSqlParser.AS) { + this.state = 589; + this.match(FlinkSqlParser.AS); + } + + this.state = 592; + this.strictIdentifier(); + this.state = 594; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===FlinkSqlParser.LR_BRACKET) { + this.state = 593; + this.identifierList(); + } + + } + + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function IdentifierListContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = FlinkSqlParser.RULE_identifierList; + return this; +} + +IdentifierListContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +IdentifierListContext.prototype.constructor = IdentifierListContext; + +IdentifierListContext.prototype.LR_BRACKET = function() { + return this.getToken(FlinkSqlParser.LR_BRACKET, 0); +}; + +IdentifierListContext.prototype.identifierSeq = function() { + return this.getTypedRuleContext(IdentifierSeqContext,0); +}; + +IdentifierListContext.prototype.RR_BRACKET = function() { + return this.getToken(FlinkSqlParser.RR_BRACKET, 0); +}; + +IdentifierListContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterIdentifierList(this); + } +}; + +IdentifierListContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitIdentifierList(this); + } +}; + +IdentifierListContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitIdentifierList(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +FlinkSqlParser.IdentifierListContext = IdentifierListContext; + +FlinkSqlParser.prototype.identifierList = function() { + + var localctx = new IdentifierListContext(this, this._ctx, this.state); + this.enterRule(localctx, 86, FlinkSqlParser.RULE_identifierList); + try { + this.enterOuterAlt(localctx, 1); + this.state = 598; + this.match(FlinkSqlParser.LR_BRACKET); + this.state = 599; + this.identifierSeq(); + this.state = 600; this.match(FlinkSqlParser.RR_BRACKET); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -3733,6 +6808,467 @@ FlinkSqlParser.prototype.valuesRowDefinition = function() { }; +function IdentifierSeqContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = FlinkSqlParser.RULE_identifierSeq; + return this; +} + +IdentifierSeqContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +IdentifierSeqContext.prototype.constructor = IdentifierSeqContext; + +IdentifierSeqContext.prototype.identifier = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(IdentifierContext); + } else { + return this.getTypedRuleContext(IdentifierContext,i); + } +}; + +IdentifierSeqContext.prototype.COMMA = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTokens(FlinkSqlParser.COMMA); + } else { + return this.getToken(FlinkSqlParser.COMMA, i); + } +}; + + +IdentifierSeqContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterIdentifierSeq(this); + } +}; + +IdentifierSeqContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitIdentifierSeq(this); + } +}; + +IdentifierSeqContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitIdentifierSeq(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +FlinkSqlParser.IdentifierSeqContext = IdentifierSeqContext; + +FlinkSqlParser.prototype.identifierSeq = function() { + + var localctx = new IdentifierSeqContext(this, this._ctx, this.state); + this.enterRule(localctx, 88, FlinkSqlParser.RULE_identifierSeq); + var _la = 0; // Token type + try { + this.enterOuterAlt(localctx, 1); + this.state = 602; + this.identifier(); + this.state = 607; + this._errHandler.sync(this); + _la = this._input.LA(1); + while(_la===FlinkSqlParser.COMMA) { + this.state = 603; + this.match(FlinkSqlParser.COMMA); + this.state = 604; + this.identifier(); + this.state = 609; + 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 IdentifierContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = FlinkSqlParser.RULE_identifier; + return this; +} + +IdentifierContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +IdentifierContext.prototype.constructor = IdentifierContext; + +IdentifierContext.prototype.strictIdentifier = function() { + return this.getTypedRuleContext(StrictIdentifierContext,0); +}; + +IdentifierContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterIdentifier(this); + } +}; + +IdentifierContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitIdentifier(this); + } +}; + +IdentifierContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitIdentifier(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +FlinkSqlParser.IdentifierContext = IdentifierContext; + +FlinkSqlParser.prototype.identifier = function() { + + var localctx = new IdentifierContext(this, this._ctx, this.state); + this.enterRule(localctx, 90, FlinkSqlParser.RULE_identifier); + try { + this.enterOuterAlt(localctx, 1); + this.state = 610; + this.strictIdentifier(); + } 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 StrictIdentifierContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = FlinkSqlParser.RULE_strictIdentifier; + return this; +} + +StrictIdentifierContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +StrictIdentifierContext.prototype.constructor = StrictIdentifierContext; + + + +StrictIdentifierContext.prototype.copyFrom = function(ctx) { + antlr4.ParserRuleContext.prototype.copyFrom.call(this, ctx); +}; + + +function QuotedIdentifierAlternativeContext(parser, ctx) { + StrictIdentifierContext.call(this, parser); + StrictIdentifierContext.prototype.copyFrom.call(this, ctx); + return this; +} + +QuotedIdentifierAlternativeContext.prototype = Object.create(StrictIdentifierContext.prototype); +QuotedIdentifierAlternativeContext.prototype.constructor = QuotedIdentifierAlternativeContext; + +FlinkSqlParser.QuotedIdentifierAlternativeContext = QuotedIdentifierAlternativeContext; + +QuotedIdentifierAlternativeContext.prototype.quotedIdentifier = function() { + return this.getTypedRuleContext(QuotedIdentifierContext,0); +}; +QuotedIdentifierAlternativeContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterQuotedIdentifierAlternative(this); + } +}; + +QuotedIdentifierAlternativeContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitQuotedIdentifierAlternative(this); + } +}; + +QuotedIdentifierAlternativeContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitQuotedIdentifierAlternative(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function UnquotedIdentifierContext(parser, ctx) { + StrictIdentifierContext.call(this, parser); + StrictIdentifierContext.prototype.copyFrom.call(this, ctx); + return this; +} + +UnquotedIdentifierContext.prototype = Object.create(StrictIdentifierContext.prototype); +UnquotedIdentifierContext.prototype.constructor = UnquotedIdentifierContext; + +FlinkSqlParser.UnquotedIdentifierContext = UnquotedIdentifierContext; + +UnquotedIdentifierContext.prototype.IDENTIFIER_BASE = function() { + return this.getToken(FlinkSqlParser.IDENTIFIER_BASE, 0); +}; +UnquotedIdentifierContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterUnquotedIdentifier(this); + } +}; + +UnquotedIdentifierContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitUnquotedIdentifier(this); + } +}; + +UnquotedIdentifierContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitUnquotedIdentifier(this); + } else { + return visitor.visitChildren(this); + } +}; + + + +FlinkSqlParser.StrictIdentifierContext = StrictIdentifierContext; + +FlinkSqlParser.prototype.strictIdentifier = function() { + + var localctx = new StrictIdentifierContext(this, this._ctx, this.state); + this.enterRule(localctx, 92, FlinkSqlParser.RULE_strictIdentifier); + try { + this.state = 614; + this._errHandler.sync(this); + switch(this._input.LA(1)) { + case FlinkSqlParser.IDENTIFIER_BASE: + localctx = new UnquotedIdentifierContext(this, localctx); + this.enterOuterAlt(localctx, 1); + this.state = 612; + this.match(FlinkSqlParser.IDENTIFIER_BASE); + break; + case FlinkSqlParser.STRING_LITERAL: + localctx = new QuotedIdentifierAlternativeContext(this, localctx); + this.enterOuterAlt(localctx, 2); + this.state = 613; + this.quotedIdentifier(); + 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 QuotedIdentifierContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = FlinkSqlParser.RULE_quotedIdentifier; + return this; +} + +QuotedIdentifierContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +QuotedIdentifierContext.prototype.constructor = QuotedIdentifierContext; + +QuotedIdentifierContext.prototype.STRING_LITERAL = function() { + return this.getToken(FlinkSqlParser.STRING_LITERAL, 0); +}; + +QuotedIdentifierContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterQuotedIdentifier(this); + } +}; + +QuotedIdentifierContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitQuotedIdentifier(this); + } +}; + +QuotedIdentifierContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitQuotedIdentifier(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +FlinkSqlParser.QuotedIdentifierContext = QuotedIdentifierContext; + +FlinkSqlParser.prototype.quotedIdentifier = function() { + + var localctx = new QuotedIdentifierContext(this, this._ctx, this.state); + this.enterRule(localctx, 94, FlinkSqlParser.RULE_quotedIdentifier); + try { + this.enterOuterAlt(localctx, 1); + this.state = 616; + this.match(FlinkSqlParser.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 WhenClauseContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = FlinkSqlParser.RULE_whenClause; + this.condition = null; // ExpressionContext + this.result = null; // ExpressionContext + return this; +} + +WhenClauseContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +WhenClauseContext.prototype.constructor = WhenClauseContext; + +WhenClauseContext.prototype.WHEN = function() { + return this.getToken(FlinkSqlParser.WHEN, 0); +}; + +WhenClauseContext.prototype.THEN = function() { + return this.getToken(FlinkSqlParser.THEN, 0); +}; + +WhenClauseContext.prototype.expression = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(ExpressionContext); + } else { + return this.getTypedRuleContext(ExpressionContext,i); + } +}; + +WhenClauseContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterWhenClause(this); + } +}; + +WhenClauseContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitWhenClause(this); + } +}; + +WhenClauseContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitWhenClause(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +FlinkSqlParser.WhenClauseContext = WhenClauseContext; + +FlinkSqlParser.prototype.whenClause = function() { + + var localctx = new WhenClauseContext(this, this._ctx, this.state); + this.enterRule(localctx, 96, FlinkSqlParser.RULE_whenClause); + try { + this.enterOuterAlt(localctx, 1); + this.state = 618; + this.match(FlinkSqlParser.WHEN); + this.state = 619; + localctx.condition = this.expression(); + this.state = 620; + this.match(FlinkSqlParser.THEN); + this.state = 621; + localctx.result = this.expression(); + } 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; @@ -3800,21 +7336,21 @@ FlinkSqlParser.UidListContext = UidListContext; FlinkSqlParser.prototype.uidList = function() { var localctx = new UidListContext(this, this._ctx, this.state); - this.enterRule(localctx, 62, FlinkSqlParser.RULE_uidList); + this.enterRule(localctx, 98, FlinkSqlParser.RULE_uidList); var _la = 0; // Token type try { this.enterOuterAlt(localctx, 1); - this.state = 275; + this.state = 623; this.uid(); - this.state = 280; + this.state = 628; this._errHandler.sync(this); _la = this._input.LA(1); while(_la===FlinkSqlParser.COMMA) { - this.state = 276; + this.state = 624; this.match(FlinkSqlParser.COMMA); - this.state = 277; + this.state = 625; this.uid(); - this.state = 282; + this.state = 630; this._errHandler.sync(this); _la = this._input.LA(1); } @@ -3893,22 +7429,22 @@ FlinkSqlParser.UidContext = UidContext; FlinkSqlParser.prototype.uid = function() { var localctx = new UidContext(this, this._ctx, this.state); - this.enterRule(localctx, 64, FlinkSqlParser.RULE_uid); + this.enterRule(localctx, 100, FlinkSqlParser.RULE_uid); try { this.enterOuterAlt(localctx, 1); - this.state = 283; + this.state = 631; this.match(FlinkSqlParser.ID); - this.state = 287; + this.state = 635; this._errHandler.sync(this); - var _alt = this._interp.adaptivePredict(this._input,22,this._ctx) + var _alt = this._interp.adaptivePredict(this._input,67,this._ctx) while(_alt!=1 && _alt!=antlr4.atn.ATN.INVALID_ALT_NUMBER) { if(_alt===1+1) { - this.state = 284; + this.state = 632; this.match(FlinkSqlParser.DOT_ID); } - this.state = 289; + this.state = 637; this._errHandler.sync(this); - _alt = this._interp.adaptivePredict(this._input,22,this._ctx); + _alt = this._interp.adaptivePredict(this._input,67,this._ctx); } } catch (re) { @@ -4005,29 +7541,29 @@ FlinkSqlParser.WithOptionContext = WithOptionContext; FlinkSqlParser.prototype.withOption = function() { var localctx = new WithOptionContext(this, this._ctx, this.state); - this.enterRule(localctx, 66, FlinkSqlParser.RULE_withOption); + this.enterRule(localctx, 102, FlinkSqlParser.RULE_withOption); var _la = 0; // Token type try { this.enterOuterAlt(localctx, 1); - this.state = 290; + this.state = 638; this.match(FlinkSqlParser.WITH); - this.state = 291; + this.state = 639; this.match(FlinkSqlParser.LR_BRACKET); - this.state = 292; + this.state = 640; this.keyValueDefinition(); - this.state = 297; + this.state = 645; this._errHandler.sync(this); _la = this._input.LA(1); while(_la===FlinkSqlParser.COMMA) { - this.state = 293; + this.state = 641; this.match(FlinkSqlParser.COMMA); - this.state = 294; + this.state = 642; this.keyValueDefinition(); - this.state = 299; + this.state = 647; this._errHandler.sync(this); _la = this._input.LA(1); } - this.state = 300; + this.state = 648; this.match(FlinkSqlParser.RR_BRACKET); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -4100,14 +7636,14 @@ FlinkSqlParser.IfNotExistsContext = IfNotExistsContext; FlinkSqlParser.prototype.ifNotExists = function() { var localctx = new IfNotExistsContext(this, this._ctx, this.state); - this.enterRule(localctx, 68, FlinkSqlParser.RULE_ifNotExists); + this.enterRule(localctx, 104, FlinkSqlParser.RULE_ifNotExists); try { this.enterOuterAlt(localctx, 1); - this.state = 302; + this.state = 650; this.match(FlinkSqlParser.IF); - this.state = 303; + this.state = 651; this.match(FlinkSqlParser.NOT); - this.state = 304; + this.state = 652; this.match(FlinkSqlParser.EXISTS); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -4176,12 +7712,12 @@ FlinkSqlParser.IfExistsContext = IfExistsContext; FlinkSqlParser.prototype.ifExists = function() { var localctx = new IfExistsContext(this, this._ctx, this.state); - this.enterRule(localctx, 70, FlinkSqlParser.RULE_ifExists); + this.enterRule(localctx, 106, FlinkSqlParser.RULE_ifExists); try { this.enterOuterAlt(localctx, 1); - this.state = 306; + this.state = 654; this.match(FlinkSqlParser.IF); - this.state = 307; + this.state = 655; this.match(FlinkSqlParser.EXISTS); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -4258,14 +7794,14 @@ FlinkSqlParser.KeyValueDefinitionContext = KeyValueDefinitionContext; FlinkSqlParser.prototype.keyValueDefinition = function() { var localctx = new KeyValueDefinitionContext(this, this._ctx, this.state); - this.enterRule(localctx, 72, FlinkSqlParser.RULE_keyValueDefinition); + this.enterRule(localctx, 108, FlinkSqlParser.RULE_keyValueDefinition); try { this.enterOuterAlt(localctx, 1); - this.state = 309; + this.state = 657; this.match(FlinkSqlParser.DOUBLE_QUOTE_ID); - this.state = 310; + this.state = 658; this.match(FlinkSqlParser.EQUAL_SYMBOL); - this.state = 311; + this.state = 659; this.match(FlinkSqlParser.DOUBLE_QUOTE_ID); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -4282,4 +7818,1180 @@ FlinkSqlParser.prototype.keyValueDefinition = function() { }; +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 = FlinkSqlParser.RULE_logicalOperator; + return this; +} + +LogicalOperatorContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +LogicalOperatorContext.prototype.constructor = LogicalOperatorContext; + +LogicalOperatorContext.prototype.AND = function() { + return this.getToken(FlinkSqlParser.AND, 0); +}; + +LogicalOperatorContext.prototype.BIT_AND_OP = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTokens(FlinkSqlParser.BIT_AND_OP); + } else { + return this.getToken(FlinkSqlParser.BIT_AND_OP, i); + } +}; + + +LogicalOperatorContext.prototype.OR = function() { + return this.getToken(FlinkSqlParser.OR, 0); +}; + +LogicalOperatorContext.prototype.BIT_OR_OP = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTokens(FlinkSqlParser.BIT_OR_OP); + } else { + return this.getToken(FlinkSqlParser.BIT_OR_OP, i); + } +}; + + +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); + } +}; + + + + +FlinkSqlParser.LogicalOperatorContext = LogicalOperatorContext; + +FlinkSqlParser.prototype.logicalOperator = function() { + + var localctx = new LogicalOperatorContext(this, this._ctx, this.state); + this.enterRule(localctx, 110, FlinkSqlParser.RULE_logicalOperator); + try { + this.state = 667; + this._errHandler.sync(this); + switch(this._input.LA(1)) { + case FlinkSqlParser.AND: + this.enterOuterAlt(localctx, 1); + this.state = 661; + this.match(FlinkSqlParser.AND); + break; + case FlinkSqlParser.BIT_AND_OP: + this.enterOuterAlt(localctx, 2); + this.state = 662; + this.match(FlinkSqlParser.BIT_AND_OP); + this.state = 663; + this.match(FlinkSqlParser.BIT_AND_OP); + break; + case FlinkSqlParser.OR: + this.enterOuterAlt(localctx, 3); + this.state = 664; + this.match(FlinkSqlParser.OR); + break; + case FlinkSqlParser.BIT_OR_OP: + this.enterOuterAlt(localctx, 4); + this.state = 665; + this.match(FlinkSqlParser.BIT_OR_OP); + this.state = 666; + this.match(FlinkSqlParser.BIT_OR_OP); + 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 = FlinkSqlParser.RULE_comparisonOperator; + return this; +} + +ComparisonOperatorContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +ComparisonOperatorContext.prototype.constructor = ComparisonOperatorContext; + +ComparisonOperatorContext.prototype.EQUAL_SYMBOL = function() { + return this.getToken(FlinkSqlParser.EQUAL_SYMBOL, 0); +}; + +ComparisonOperatorContext.prototype.GREATER_SYMBOL = function() { + return this.getToken(FlinkSqlParser.GREATER_SYMBOL, 0); +}; + +ComparisonOperatorContext.prototype.LESS_SYMBOL = function() { + return this.getToken(FlinkSqlParser.LESS_SYMBOL, 0); +}; + +ComparisonOperatorContext.prototype.EXCLAMATION_SYMBOL = function() { + return this.getToken(FlinkSqlParser.EXCLAMATION_SYMBOL, 0); +}; + +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); + } +}; + + + + +FlinkSqlParser.ComparisonOperatorContext = ComparisonOperatorContext; + +FlinkSqlParser.prototype.comparisonOperator = function() { + + var localctx = new ComparisonOperatorContext(this, this._ctx, this.state); + this.enterRule(localctx, 112, FlinkSqlParser.RULE_comparisonOperator); + try { + this.state = 683; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,70,this._ctx); + switch(la_) { + case 1: + this.enterOuterAlt(localctx, 1); + this.state = 669; + this.match(FlinkSqlParser.EQUAL_SYMBOL); + break; + + case 2: + this.enterOuterAlt(localctx, 2); + this.state = 670; + this.match(FlinkSqlParser.GREATER_SYMBOL); + break; + + case 3: + this.enterOuterAlt(localctx, 3); + this.state = 671; + this.match(FlinkSqlParser.LESS_SYMBOL); + break; + + case 4: + this.enterOuterAlt(localctx, 4); + this.state = 672; + this.match(FlinkSqlParser.LESS_SYMBOL); + this.state = 673; + this.match(FlinkSqlParser.EQUAL_SYMBOL); + break; + + case 5: + this.enterOuterAlt(localctx, 5); + this.state = 674; + this.match(FlinkSqlParser.GREATER_SYMBOL); + this.state = 675; + this.match(FlinkSqlParser.EQUAL_SYMBOL); + break; + + case 6: + this.enterOuterAlt(localctx, 6); + this.state = 676; + this.match(FlinkSqlParser.LESS_SYMBOL); + this.state = 677; + this.match(FlinkSqlParser.GREATER_SYMBOL); + break; + + case 7: + this.enterOuterAlt(localctx, 7); + this.state = 678; + this.match(FlinkSqlParser.EXCLAMATION_SYMBOL); + this.state = 679; + this.match(FlinkSqlParser.EQUAL_SYMBOL); + break; + + case 8: + this.enterOuterAlt(localctx, 8); + this.state = 680; + this.match(FlinkSqlParser.LESS_SYMBOL); + this.state = 681; + this.match(FlinkSqlParser.EQUAL_SYMBOL); + this.state = 682; + this.match(FlinkSqlParser.GREATER_SYMBOL); + 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 = FlinkSqlParser.RULE_bitOperator; + return this; +} + +BitOperatorContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +BitOperatorContext.prototype.constructor = BitOperatorContext; + +BitOperatorContext.prototype.LESS_SYMBOL = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTokens(FlinkSqlParser.LESS_SYMBOL); + } else { + return this.getToken(FlinkSqlParser.LESS_SYMBOL, i); + } +}; + + +BitOperatorContext.prototype.GREATER_SYMBOL = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTokens(FlinkSqlParser.GREATER_SYMBOL); + } else { + return this.getToken(FlinkSqlParser.GREATER_SYMBOL, i); + } +}; + + +BitOperatorContext.prototype.BIT_AND_OP = function() { + return this.getToken(FlinkSqlParser.BIT_AND_OP, 0); +}; + +BitOperatorContext.prototype.BIT_XOR_OP = function() { + return this.getToken(FlinkSqlParser.BIT_XOR_OP, 0); +}; + +BitOperatorContext.prototype.BIT_OR_OP = function() { + return this.getToken(FlinkSqlParser.BIT_OR_OP, 0); +}; + +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); + } +}; + + + + +FlinkSqlParser.BitOperatorContext = BitOperatorContext; + +FlinkSqlParser.prototype.bitOperator = function() { + + var localctx = new BitOperatorContext(this, this._ctx, this.state); + this.enterRule(localctx, 114, FlinkSqlParser.RULE_bitOperator); + try { + this.state = 692; + this._errHandler.sync(this); + switch(this._input.LA(1)) { + case FlinkSqlParser.LESS_SYMBOL: + this.enterOuterAlt(localctx, 1); + this.state = 685; + this.match(FlinkSqlParser.LESS_SYMBOL); + this.state = 686; + this.match(FlinkSqlParser.LESS_SYMBOL); + break; + case FlinkSqlParser.GREATER_SYMBOL: + this.enterOuterAlt(localctx, 2); + this.state = 687; + this.match(FlinkSqlParser.GREATER_SYMBOL); + this.state = 688; + this.match(FlinkSqlParser.GREATER_SYMBOL); + break; + case FlinkSqlParser.BIT_AND_OP: + this.enterOuterAlt(localctx, 3); + this.state = 689; + this.match(FlinkSqlParser.BIT_AND_OP); + break; + case FlinkSqlParser.BIT_XOR_OP: + this.enterOuterAlt(localctx, 4); + this.state = 690; + this.match(FlinkSqlParser.BIT_XOR_OP); + break; + case FlinkSqlParser.BIT_OR_OP: + this.enterOuterAlt(localctx, 5); + this.state = 691; + this.match(FlinkSqlParser.BIT_OR_OP); + 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 = FlinkSqlParser.RULE_mathOperator; + return this; +} + +MathOperatorContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +MathOperatorContext.prototype.constructor = MathOperatorContext; + +MathOperatorContext.prototype.ASTERISK_SIGN = function() { + return this.getToken(FlinkSqlParser.ASTERISK_SIGN, 0); +}; + +MathOperatorContext.prototype.SLASH_SIGN = function() { + return this.getToken(FlinkSqlParser.SLASH_SIGN, 0); +}; + +MathOperatorContext.prototype.PENCENT_SIGN = function() { + return this.getToken(FlinkSqlParser.PENCENT_SIGN, 0); +}; + +MathOperatorContext.prototype.DIV = function() { + return this.getToken(FlinkSqlParser.DIV, 0); +}; + +MathOperatorContext.prototype.ADD_SIGN = function() { + return this.getToken(FlinkSqlParser.ADD_SIGN, 0); +}; + +MathOperatorContext.prototype.HYPNEN_SIGN = function() { + return this.getToken(FlinkSqlParser.HYPNEN_SIGN, 0); +}; + +MathOperatorContext.prototype.DOUBLE_HYPNEN_SIGN = function() { + return this.getToken(FlinkSqlParser.DOUBLE_HYPNEN_SIGN, 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); + } +}; + + + + +FlinkSqlParser.MathOperatorContext = MathOperatorContext; + +FlinkSqlParser.prototype.mathOperator = function() { + + var localctx = new MathOperatorContext(this, this._ctx, this.state); + this.enterRule(localctx, 116, FlinkSqlParser.RULE_mathOperator); + var _la = 0; // Token type + try { + this.enterOuterAlt(localctx, 1); + this.state = 694; + _la = this._input.LA(1); + if(!(_la===FlinkSqlParser.DIV || ((((_la - 308)) & ~0x1f) == 0 && ((1 << (_la - 308)) & ((1 << (FlinkSqlParser.ASTERISK_SIGN - 308)) | (1 << (FlinkSqlParser.HYPNEN_SIGN - 308)) | (1 << (FlinkSqlParser.ADD_SIGN - 308)) | (1 << (FlinkSqlParser.PENCENT_SIGN - 308)) | (1 << (FlinkSqlParser.DOUBLE_HYPNEN_SIGN - 308)) | (1 << (FlinkSqlParser.SLASH_SIGN - 308)))) !== 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 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 = FlinkSqlParser.RULE_unaryOperator; + return this; +} + +UnaryOperatorContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +UnaryOperatorContext.prototype.constructor = UnaryOperatorContext; + +UnaryOperatorContext.prototype.EXCLAMATION_SYMBOL = function() { + return this.getToken(FlinkSqlParser.EXCLAMATION_SYMBOL, 0); +}; + +UnaryOperatorContext.prototype.BIT_NOT_OP = function() { + return this.getToken(FlinkSqlParser.BIT_NOT_OP, 0); +}; + +UnaryOperatorContext.prototype.ADD_SIGN = function() { + return this.getToken(FlinkSqlParser.ADD_SIGN, 0); +}; + +UnaryOperatorContext.prototype.HYPNEN_SIGN = function() { + return this.getToken(FlinkSqlParser.HYPNEN_SIGN, 0); +}; + +UnaryOperatorContext.prototype.NOT = function() { + return this.getToken(FlinkSqlParser.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); + } +}; + + + + +FlinkSqlParser.UnaryOperatorContext = UnaryOperatorContext; + +FlinkSqlParser.prototype.unaryOperator = function() { + + var localctx = new UnaryOperatorContext(this, this._ctx, this.state); + this.enterRule(localctx, 118, FlinkSqlParser.RULE_unaryOperator); + var _la = 0; // Token type + try { + this.enterOuterAlt(localctx, 1); + this.state = 696; + _la = this._input.LA(1); + if(!(_la===FlinkSqlParser.NOT || ((((_la - 288)) & ~0x1f) == 0 && ((1 << (_la - 288)) & ((1 << (FlinkSqlParser.EXCLAMATION_SYMBOL - 288)) | (1 << (FlinkSqlParser.BIT_NOT_OP - 288)) | (1 << (FlinkSqlParser.HYPNEN_SIGN - 288)) | (1 << (FlinkSqlParser.ADD_SIGN - 288)))) !== 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 = FlinkSqlParser.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); + } +}; + + + + +FlinkSqlParser.FullColumnNameContext = FullColumnNameContext; + +FlinkSqlParser.prototype.fullColumnName = function() { + + var localctx = new FullColumnNameContext(this, this._ctx, this.state); + this.enterRule(localctx, 120, FlinkSqlParser.RULE_fullColumnName); + try { + this.enterOuterAlt(localctx, 1); + this.state = 698; + 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 = FlinkSqlParser.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.HYPNEN_SIGN = function() { + return this.getToken(FlinkSqlParser.HYPNEN_SIGN, 0); +}; + +ConstantContext.prototype.booleanLiteral = function() { + return this.getTypedRuleContext(BooleanLiteralContext,0); +}; + +ConstantContext.prototype.REAL_LITERAL = function() { + return this.getToken(FlinkSqlParser.REAL_LITERAL, 0); +}; + +ConstantContext.prototype.BIT_STRING = function() { + return this.getToken(FlinkSqlParser.BIT_STRING, 0); +}; + +ConstantContext.prototype.NULL = function() { + return this.getToken(FlinkSqlParser.NULL, 0); +}; + +ConstantContext.prototype.NOT = function() { + return this.getToken(FlinkSqlParser.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); + } +}; + + + + +FlinkSqlParser.ConstantContext = ConstantContext; + +FlinkSqlParser.prototype.constant = function() { + + var localctx = new ConstantContext(this, this._ctx, this.state); + this.enterRule(localctx, 122, FlinkSqlParser.RULE_constant); + var _la = 0; // Token type + try { + this.state = 711; + this._errHandler.sync(this); + switch(this._input.LA(1)) { + case FlinkSqlParser.STRING_LITERAL: + this.enterOuterAlt(localctx, 1); + this.state = 700; + this.stringLiteral(); + break; + case FlinkSqlParser.ZERO_DECIMAL: + case FlinkSqlParser.ONE_DECIMAL: + case FlinkSqlParser.TWO_DECIMAL: + case FlinkSqlParser.DECIMAL_LITERAL: + this.enterOuterAlt(localctx, 2); + this.state = 701; + this.decimalLiteral(); + break; + case FlinkSqlParser.HYPNEN_SIGN: + this.enterOuterAlt(localctx, 3); + this.state = 702; + this.match(FlinkSqlParser.HYPNEN_SIGN); + this.state = 703; + this.decimalLiteral(); + break; + case FlinkSqlParser.TRUE: + case FlinkSqlParser.FALSE: + this.enterOuterAlt(localctx, 4); + this.state = 704; + this.booleanLiteral(); + break; + case FlinkSqlParser.REAL_LITERAL: + this.enterOuterAlt(localctx, 5); + this.state = 705; + this.match(FlinkSqlParser.REAL_LITERAL); + break; + case FlinkSqlParser.BIT_STRING: + this.enterOuterAlt(localctx, 6); + this.state = 706; + this.match(FlinkSqlParser.BIT_STRING); + break; + case FlinkSqlParser.NOT: + case FlinkSqlParser.NULL: + this.enterOuterAlt(localctx, 7); + this.state = 708; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===FlinkSqlParser.NOT) { + this.state = 707; + this.match(FlinkSqlParser.NOT); + } + + this.state = 710; + this.match(FlinkSqlParser.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 = FlinkSqlParser.RULE_stringLiteral; + return this; +} + +StringLiteralContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +StringLiteralContext.prototype.constructor = StringLiteralContext; + +StringLiteralContext.prototype.STRING_LITERAL = function() { + return this.getToken(FlinkSqlParser.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); + } +}; + + + + +FlinkSqlParser.StringLiteralContext = StringLiteralContext; + +FlinkSqlParser.prototype.stringLiteral = function() { + + var localctx = new StringLiteralContext(this, this._ctx, this.state); + this.enterRule(localctx, 124, FlinkSqlParser.RULE_stringLiteral); + try { + this.enterOuterAlt(localctx, 1); + this.state = 713; + this.match(FlinkSqlParser.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 = FlinkSqlParser.RULE_decimalLiteral; + return this; +} + +DecimalLiteralContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +DecimalLiteralContext.prototype.constructor = DecimalLiteralContext; + +DecimalLiteralContext.prototype.DECIMAL_LITERAL = function() { + return this.getToken(FlinkSqlParser.DECIMAL_LITERAL, 0); +}; + +DecimalLiteralContext.prototype.ZERO_DECIMAL = function() { + return this.getToken(FlinkSqlParser.ZERO_DECIMAL, 0); +}; + +DecimalLiteralContext.prototype.ONE_DECIMAL = function() { + return this.getToken(FlinkSqlParser.ONE_DECIMAL, 0); +}; + +DecimalLiteralContext.prototype.TWO_DECIMAL = function() { + return this.getToken(FlinkSqlParser.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); + } +}; + + + + +FlinkSqlParser.DecimalLiteralContext = DecimalLiteralContext; + +FlinkSqlParser.prototype.decimalLiteral = function() { + + var localctx = new DecimalLiteralContext(this, this._ctx, this.state); + this.enterRule(localctx, 126, FlinkSqlParser.RULE_decimalLiteral); + var _la = 0; // Token type + try { + this.enterOuterAlt(localctx, 1); + this.state = 715; + _la = this._input.LA(1); + if(!(((((_la - 301)) & ~0x1f) == 0 && ((1 << (_la - 301)) & ((1 << (FlinkSqlParser.ZERO_DECIMAL - 301)) | (1 << (FlinkSqlParser.ONE_DECIMAL - 301)) | (1 << (FlinkSqlParser.TWO_DECIMAL - 301)) | (1 << (FlinkSqlParser.DECIMAL_LITERAL - 301)))) !== 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 = FlinkSqlParser.RULE_booleanLiteral; + return this; +} + +BooleanLiteralContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +BooleanLiteralContext.prototype.constructor = BooleanLiteralContext; + +BooleanLiteralContext.prototype.TRUE = function() { + return this.getToken(FlinkSqlParser.TRUE, 0); +}; + +BooleanLiteralContext.prototype.FALSE = function() { + return this.getToken(FlinkSqlParser.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); + } +}; + + + + +FlinkSqlParser.BooleanLiteralContext = BooleanLiteralContext; + +FlinkSqlParser.prototype.booleanLiteral = function() { + + var localctx = new BooleanLiteralContext(this, this._ctx, this.state); + this.enterRule(localctx, 128, FlinkSqlParser.RULE_booleanLiteral); + var _la = 0; // Token type + try { + this.enterOuterAlt(localctx, 1); + this.state = 717; + _la = this._input.LA(1); + if(!(_la===FlinkSqlParser.TRUE || _la===FlinkSqlParser.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; +}; + + +function SetQuantifierContext(parser, parent, invokingState) { + if(parent===undefined) { + parent = null; + } + if(invokingState===undefined || invokingState===null) { + invokingState = -1; + } + antlr4.ParserRuleContext.call(this, parent, invokingState); + this.parser = parser; + this.ruleIndex = FlinkSqlParser.RULE_setQuantifier; + return this; +} + +SetQuantifierContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +SetQuantifierContext.prototype.constructor = SetQuantifierContext; + +SetQuantifierContext.prototype.DISTINCT = function() { + return this.getToken(FlinkSqlParser.DISTINCT, 0); +}; + +SetQuantifierContext.prototype.ALL = function() { + return this.getToken(FlinkSqlParser.ALL, 0); +}; + +SetQuantifierContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterSetQuantifier(this); + } +}; + +SetQuantifierContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitSetQuantifier(this); + } +}; + +SetQuantifierContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitSetQuantifier(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +FlinkSqlParser.SetQuantifierContext = SetQuantifierContext; + +FlinkSqlParser.prototype.setQuantifier = function() { + + var localctx = new SetQuantifierContext(this, this._ctx, this.state); + this.enterRule(localctx, 130, FlinkSqlParser.RULE_setQuantifier); + var _la = 0; // Token type + try { + this.enterOuterAlt(localctx, 1); + this.state = 719; + _la = this._input.LA(1); + if(!(_la===FlinkSqlParser.ALL || _la===FlinkSqlParser.DISTINCT)) { + 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; +}; + + +FlinkSqlParser.prototype.sempred = function(localctx, ruleIndex, predIndex) { + switch(ruleIndex) { + case 38: + return this.booleanExpression_sempred(localctx, predIndex); + case 40: + return this.valueExpression_sempred(localctx, predIndex); + case 41: + return this.primaryExpression_sempred(localctx, predIndex); + default: + throw "No predicate with index:" + ruleIndex; + } +}; + +FlinkSqlParser.prototype.booleanExpression_sempred = function(localctx, predIndex) { + switch(predIndex) { + case 0: + return this.precpred(this._ctx, 2); + case 1: + return this.precpred(this._ctx, 1); + default: + throw "No predicate with index:" + predIndex; + } +}; + +FlinkSqlParser.prototype.valueExpression_sempred = function(localctx, predIndex) { + switch(predIndex) { + case 2: + return this.precpred(this._ctx, 6); + case 3: + return this.precpred(this._ctx, 5); + case 4: + return this.precpred(this._ctx, 4); + case 5: + return this.precpred(this._ctx, 3); + case 6: + return this.precpred(this._ctx, 2); + case 7: + return this.precpred(this._ctx, 1); + default: + throw "No predicate with index:" + predIndex; + } +}; + +FlinkSqlParser.prototype.primaryExpression_sempred = function(localctx, predIndex) { + switch(predIndex) { + case 8: + return this.precpred(this._ctx, 2); + default: + throw "No predicate with index:" + predIndex; + } +}; + + exports.FlinkSqlParser = FlinkSqlParser; diff --git a/src/lib/flinksql/FlinkSqlParser.tokens b/src/lib/flinksql/FlinkSqlParser.tokens index 4c91485..fff7bbe 100644 --- a/src/lib/flinksql/FlinkSqlParser.tokens +++ b/src/lib/flinksql/FlinkSqlParser.tokens @@ -1,632 +1,625 @@ -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 -LINE_COMMENT=4 -SELECT=5 -FROM=6 -ADD=7 -AS=8 -ALL=9 -ANY=10 -DISTINCT=11 -WHERE=12 -GROUP=13 -BY=14 -GROUPING=15 -SETS=16 -CUBE=17 -ROLLUP=18 -ORDER=19 -HAVING=20 -LIMIT=21 -AT=22 -OR=23 -AND=24 -IN=25 -NOT=26 -NO=27 -EXISTS=28 -BETWEEN=29 -LIKE=30 -RLIKE=31 -IS=32 -TRUE=33 -FALSE=34 -NULLS=35 -ASC=36 -DESC=37 -FOR=38 -INTERVAL=39 -CASE=40 -WHEN=41 -THEN=42 -ELSE=43 -END=44 -JOIN=45 -CROSS=46 -OUTER=47 -INNER=48 -LEFT=49 -SEMI=50 -RIGHT=51 -FULL=52 -NATURAL=53 -ON=54 -PIVOT=55 -LATERAL=56 -WINDOW=57 -OVER=58 -PARTITION=59 -RANGE=60 -ROWS=61 -UNBOUNDED=62 -PRECEDING=63 -FOLLOWING=64 -CURRENT=65 -FIRST=66 -AFTER=67 -LAST=68 -WITH=69 -VALUES=70 -CREATE=71 -TABLE=72 -DIRECTORY=73 -VIEW=74 -REPLACE=75 -INSERT=76 -DELETE=77 -INTO=78 -DESCRIBE=79 -EXPLAIN=80 -FORMAT=81 -LOGICAL=82 -CODEGEN=83 -COST=84 -CAST=85 -SHOW=86 -TABLES=87 -COLUMNS=88 -COLUMN=89 -USE=90 -PARTITIONS=91 -FUNCTIONS=92 -DROP=93 -UNION=94 -EXCEPT=95 -SETMINUS=96 -INTERSECT=97 -TO=98 -TABLESAMPLE=99 -STRATIFY=100 -ALTER=101 -RENAME=102 -STRUCT=103 -COMMENT=104 -SET=105 -RESET=106 -DATA=107 -START=108 -TRANSACTION=109 -COMMIT=110 -ROLLBACK=111 -MACRO=112 -IGNORE=113 -BOTH=114 -LEADING=115 -TRAILING=116 -IF=117 -POSITION=118 -EXTRACT=119 -EQ=120 -NSEQ=121 -NEQ=122 -NEQJ=123 -LT=124 -LTE=125 -GT=126 -GTE=127 -PLUS=128 -MINUS=129 -ASTERISK=130 -SLASH=131 -PERCENT=132 -DIV=133 -TILDE=134 -AMPERSAND=135 -PIPE=136 -CONCAT_PIPE=137 -HAT=138 -PERCENTLIT=139 -BUCKET=140 -OUT=141 -OF=142 -SORT=143 -CLUSTER=144 -DISTRIBUTE=145 -OVERWRITE=146 -TRANSFORM=147 -REDUCE=148 -USING=149 -SERDE=150 -SERDEPROPERTIES=151 -RECORDREADER=152 -RECORDWRITER=153 -DELIMITED=154 -FIELDS=155 -TERMINATED=156 -COLLECTION=157 -ITEMS=158 -KEYS=159 -ESCAPED=160 -LINES=161 -SEPARATED=162 -FUNCTION=163 -EXTENDED=164 -REFRESH=165 -CLEAR=166 -CACHE=167 -UNCACHE=168 -LAZY=169 -FORMATTED=170 -GLOBAL=171 -TEMPORARY=172 -OPTIONS=173 -UNSET=174 -TBLPROPERTIES=175 -DBPROPERTIES=176 -BUCKETS=177 -SKEWED=178 -STORED=179 -DIRECTORIES=180 -LOCATION=181 -EXCHANGE=182 -ARCHIVE=183 -UNARCHIVE=184 -FILEFORMAT=185 -TOUCH=186 -COMPACT=187 -CONCATENATE=188 -CHANGE=189 -CASCADE=190 -RESTRICT=191 -CLUSTERED=192 -SORTED=193 -PURGE=194 -INPUTFORMAT=195 -OUTPUTFORMAT=196 -DATABASE=197 -DATABASES=198 -DFS=199 -TRUNCATE=200 -ANALYZE=201 -COMPUTE=202 -LIST=203 -STATISTICS=204 -PARTITIONED=205 -EXTERNAL=206 -DEFINED=207 -REVOKE=208 -GRANT=209 -LOCK=210 -UNLOCK=211 -MSCK=212 -REPAIR=213 -RECOVER=214 -EXPORT=215 -IMPORT=216 -LOAD=217 -ROLE=218 -ROLES=219 -COMPACTIONS=220 -PRINCIPALS=221 -TRANSACTIONS=222 -INDEX=223 -INDEXES=224 -LOCKS=225 -OPTION=226 -ANTI=227 -LOCAL=228 -INPATH=229 -WATERMARK=230 -UNNEST=231 -MATCH_RECOGNIZE=232 -MEASURES=233 -ONE=234 -PER=235 -MATCH=236 -SKIP1=237 -NEXT=238 -PAST=239 -PATTERN=240 -WITHIN=241 -DEFINE=242 -BIGINT_LITERAL=243 -SMALLINT_LITERAL=244 -TINYINT_LITERAL=245 -INTEGER_VALUE=246 -DECIMAL_VALUE=247 -DOUBLE_LITERAL=248 -BIGDECIMAL_LITERAL=249 -IDENTIFIER=250 -BACKQUOTED_IDENTIFIER=251 -SIMPLE_COMMENT=252 -BRACKETED_EMPTY_COMMENT=253 -BRACKETED_COMMENT=254 -WS=255 -UNRECOGNIZED=256 -REVERSE_QUOTE_ID=257 -DOUBLE_QUOTE_ID=258 -DOT_ID=259 -ID=260 -SYSTEM=261 -STRING=262 -ARRAY=263 -MAP=264 -CHAR=265 -VARCHAR=266 -BINARY=267 -VARBINARY=268 -BYTES=269 -DECIMAL=270 -TINYINT=271 -SMALLINT=272 -INT=273 -BIGINT=274 -FLOAT=275 -DOUBLE=276 -DATE=277 -TIME=278 -TIMESTAMP=279 -MULTISET=280 -BOOLEAN=281 -RAW=282 -ROW=283 -NULL=284 -EQUAL_SYMBOL=285 -GREATER_SYMBOL=286 -LESS_SYMBOL=287 -EXCLAMATION_SYMBOL=288 -BIT_NOT_OP=289 -BIT_OR_OP=290 -BIT_AND_OP=291 -BIT_XOR_OP=292 -DOT=293 -LR_BRACKET=294 -RR_BRACKET=295 -COMMA=296 -SEMICOLON=297 -AT_SIGN=298 -ZERO_DECIMAL=299 -ONE_DECIMAL=300 -TWO_DECIMAL=301 -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 -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 -'AS'=8 -'ALL'=9 -'ANY'=10 -'DISTINCT'=11 -'WHERE'=12 -'GROUP'=13 -'BY'=14 -'GROUPING'=15 -'SETS'=16 -'CUBE'=17 -'ROLLUP'=18 -'ORDER'=19 -'HAVING'=20 -'LIMIT'=21 -'AT'=22 -'OR'=23 -'AND'=24 -'IN'=25 -'NOT'=26 -'NO'=27 -'EXISTS'=28 -'BETWEEN'=29 -'LIKE'=30 -'RLIKE'=31 -'IS'=32 -'TRUE'=33 -'FALSE'=34 -'NULLS'=35 -'ASC'=36 -'DESC'=37 -'FOR'=38 -'INTERVAL'=39 -'CASE'=40 -'WHEN'=41 -'THEN'=42 -'ELSE'=43 -'END'=44 -'JOIN'=45 -'CROSS'=46 -'OUTER'=47 -'INNER'=48 -'LEFT'=49 -'SEMI'=50 -'RIGHT'=51 -'FULL'=52 -'NATURAL'=53 -'ON'=54 -'PIVOT'=55 -'LATERAL'=56 -'WINDOW'=57 -'OVER'=58 -'PARTITION'=59 -'RANGE'=60 -'ROWS'=61 -'UNBOUNDED'=62 -'PRECEDING'=63 -'FOLLOWING'=64 -'CURRENT'=65 -'FIRST'=66 -'AFTER'=67 -'LAST'=68 -'WITH'=69 -'VALUES'=70 -'CREATE'=71 -'TABLE'=72 -'DIRECTORY'=73 -'VIEW'=74 -'REPLACE'=75 -'INSERT'=76 -'DELETE'=77 -'INTO'=78 -'DESCRIBE'=79 -'EXPLAIN'=80 -'FORMAT'=81 -'LOGICAL'=82 -'CODEGEN'=83 -'COST'=84 -'CAST'=85 -'SHOW'=86 -'TABLES'=87 -'COLUMNS'=88 -'COLUMN'=89 -'USE'=90 -'PARTITIONS'=91 -'FUNCTIONS'=92 -'DROP'=93 -'UNION'=94 -'EXCEPT'=95 -'SETMINUS'=96 -'INTERSECT'=97 -'TO'=98 -'TABLESAMPLE'=99 -'STRATIFY'=100 -'ALTER'=101 -'RENAME'=102 -'STRUCT'=103 -'COMMENT'=104 -'SET'=105 -'RESET'=106 -'DATA'=107 -'START'=108 -'TRANSACTION'=109 -'COMMIT'=110 -'ROLLBACK'=111 -'MACRO'=112 -'IGNORE'=113 -'BOTH'=114 -'LEADING'=115 -'TRAILING'=116 -'IF'=117 -'POSITION'=118 -'EXTRACT'=119 -'EQ'=120 -'NSEQ'=121 -'NEQ'=122 -'NEQJ'=123 -'LT'=124 -'LTE'=125 -'GT'=126 -'GTE'=127 -'PLUS'=128 -'MINUS'=129 -'ASTERISK'=130 -'SLASH'=131 -'PERCENT'=132 -'DIV'=133 -'TILDE'=134 -'AMPERSAND'=135 -'PIPE'=136 -'CONCAT_PIPE'=137 -'HAT'=138 -'PERCENTLIT'=139 -'BUCKET'=140 -'OUT'=141 -'OF'=142 -'SORT'=143 -'CLUSTER'=144 -'DISTRIBUTE'=145 -'OVERWRITE'=146 -'TRANSFORM'=147 -'REDUCE'=148 -'USING'=149 -'SERDE'=150 -'SERDEPROPERTIES'=151 -'RECORDREADER'=152 -'RECORDWRITER'=153 -'DELIMITED'=154 -'FIELDS'=155 -'TERMINATED'=156 -'COLLECTION'=157 -'ITEMS'=158 -'KEYS'=159 -'ESCAPED'=160 -'LINES'=161 -'SEPARATED'=162 -'FUNCTION'=163 -'EXTENDED'=164 -'REFRESH'=165 -'CLEAR'=166 -'CACHE'=167 -'UNCACHE'=168 -'LAZY'=169 -'FORMATTED'=170 -'GLOBAL'=171 -'TEMPORARY'=172 -'OPTIONS'=173 -'UNSET'=174 -'TBLPROPERTIES'=175 -'DBPROPERTIES'=176 -'BUCKETS'=177 -'SKEWED'=178 -'STORED'=179 -'DIRECTORIES'=180 -'LOCATION'=181 -'EXCHANGE'=182 -'ARCHIVE'=183 -'UNARCHIVE'=184 -'FILEFORMAT'=185 -'TOUCH'=186 -'COMPACT'=187 -'CONCATENATE'=188 -'CHANGE'=189 -'CASCADE'=190 -'RESTRICT'=191 -'CLUSTERED'=192 -'SORTED'=193 -'PURGE'=194 -'INPUTFORMAT'=195 -'OUTPUTFORMAT'=196 -'DATABASE'=197 -'DATABASES'=198 -'DFS'=199 -'TRUNCATE'=200 -'ANALYZE'=201 -'COMPUTE'=202 -'LIST'=203 -'STATISTICS'=204 -'PARTITIONED'=205 -'EXTERNAL'=206 -'DEFINED'=207 -'REVOKE'=208 -'GRANT'=209 -'LOCK'=210 -'UNLOCK'=211 -'MSCK'=212 -'REPAIR'=213 -'RECOVER'=214 -'EXPORT'=215 -'IMPORT'=216 -'LOAD'=217 -'ROLE'=218 -'ROLES'=219 -'COMPACTIONS'=220 -'PRINCIPALS'=221 -'TRANSACTIONS'=222 -'INDEX'=223 -'INDEXES'=224 -'LOCKS'=225 -'OPTION'=226 -'ANTI'=227 -'LOCAL'=228 -'INPATH'=229 -'WATERMARK'=230 -'UNNEST'=231 -'MATCH_RECOGNIZE'=232 -'MEASURES'=233 -'ONE'=234 -'PER'=235 -'MATCH'=236 -'SKIP1'=237 -'NEXT'=238 -'PAST'=239 -'PATTERN'=240 -'WITHIN'=241 -'DEFINE'=242 -'BIGINT_LITERAL'=243 -'SMALLINT_LITERAL'=244 -'TINYINT_LITERAL'=245 -'INTEGER_VALUE'=246 -'DECIMAL_VALUE'=247 -'DOUBLE_LITERAL'=248 -'BIGDECIMAL_LITERAL'=249 -'IDENTIFIER'=250 -'BACKQUOTED_IDENTIFIER'=251 -'SIMPLE_COMMENT'=252 -'BRACKETED_EMPTY_COMMENT'=253 -'BRACKETED_COMMENT'=254 -'WS'=255 -'UNRECOGNIZED'=256 -'SYSTEM'=261 -'STRING'=262 -'ARRAY'=263 -'MAP'=264 -'CHAR'=265 -'VARCHAR'=266 -'BINARY'=267 -'VARBINARY'=268 -'BYTES'=269 -'DECIMAL'=270 -'TINYINT'=271 -'SMALLINT'=272 -'INT'=273 -'BIGINT'=274 -'FLOAT'=275 -'DOUBLE'=276 -'DATE'=277 -'TIME'=278 -'TIMESTAMP'=279 -'MULTISET'=280 -'BOOLEAN'=281 -'RAW'=282 -'ROW'=283 -'NULL'=284 -';'=297 -'@'=298 -'0'=299 -'1'=300 -'2'=301 -'\''=302 -'"'=303 -'`'=304 -':'=305 +COMMENT_INPUT=2 +LINE_COMMENT=3 +SELECT=4 +FROM=5 +ADD=6 +AS=7 +ALL=8 +ANY=9 +DISTINCT=10 +WHERE=11 +GROUP=12 +BY=13 +GROUPING=14 +SETS=15 +CUBE=16 +ROLLUP=17 +ORDER=18 +HAVING=19 +LIMIT=20 +AT=21 +OR=22 +AND=23 +IN=24 +NOT=25 +NO=26 +EXISTS=27 +BETWEEN=28 +LIKE=29 +RLIKE=30 +IS=31 +TRUE=32 +FALSE=33 +NULLS=34 +ASC=35 +DESC=36 +FOR=37 +INTERVAL=38 +CASE=39 +WHEN=40 +THEN=41 +ELSE=42 +END=43 +JOIN=44 +CROSS=45 +OUTER=46 +INNER=47 +LEFT=48 +SEMI=49 +RIGHT=50 +FULL=51 +NATURAL=52 +ON=53 +PIVOT=54 +LATERAL=55 +WINDOW=56 +OVER=57 +PARTITION=58 +RANGE=59 +ROWS=60 +UNBOUNDED=61 +PRECEDING=62 +FOLLOWING=63 +CURRENT=64 +FIRST=65 +AFTER=66 +LAST=67 +WITH=68 +VALUES=69 +CREATE=70 +TABLE=71 +DIRECTORY=72 +VIEW=73 +REPLACE=74 +INSERT=75 +DELETE=76 +INTO=77 +DESCRIBE=78 +EXPLAIN=79 +FORMAT=80 +LOGICAL=81 +CODEGEN=82 +COST=83 +CAST=84 +SHOW=85 +TABLES=86 +COLUMNS=87 +COLUMN=88 +USE=89 +PARTITIONS=90 +FUNCTIONS=91 +DROP=92 +UNION=93 +EXCEPT=94 +SETMINUS=95 +INTERSECT=96 +TO=97 +TABLESAMPLE=98 +STRATIFY=99 +ALTER=100 +RENAME=101 +STRUCT=102 +COMMENT=103 +SET=104 +RESET=105 +DATA=106 +START=107 +TRANSACTION=108 +COMMIT=109 +ROLLBACK=110 +MACRO=111 +IGNORE=112 +BOTH=113 +LEADING=114 +TRAILING=115 +IF=116 +POSITION=117 +EXTRACT=118 +EQ=119 +NSEQ=120 +NEQ=121 +NEQJ=122 +LT=123 +LTE=124 +GT=125 +GTE=126 +PLUS=127 +MINUS=128 +ASTERISK=129 +SLASH=130 +PERCENT=131 +DIV=132 +TILDE=133 +AMPERSAND=134 +PIPE=135 +CONCAT_PIPE=136 +HAT=137 +PERCENTLIT=138 +BUCKET=139 +OUT=140 +OF=141 +SORT=142 +CLUSTER=143 +DISTRIBUTE=144 +OVERWRITE=145 +TRANSFORM=146 +REDUCE=147 +USING=148 +SERDE=149 +SERDEPROPERTIES=150 +RECORDREADER=151 +RECORDWRITER=152 +DELIMITED=153 +FIELDS=154 +TERMINATED=155 +COLLECTION=156 +ITEMS=157 +KEYS=158 +ESCAPED=159 +LINES=160 +SEPARATED=161 +FUNCTION=162 +EXTENDED=163 +REFRESH=164 +CLEAR=165 +CACHE=166 +UNCACHE=167 +LAZY=168 +FORMATTED=169 +GLOBAL=170 +TEMPORARY=171 +OPTIONS=172 +UNSET=173 +TBLPROPERTIES=174 +DBPROPERTIES=175 +BUCKETS=176 +SKEWED=177 +STORED=178 +DIRECTORIES=179 +LOCATION=180 +EXCHANGE=181 +ARCHIVE=182 +UNARCHIVE=183 +FILEFORMAT=184 +TOUCH=185 +COMPACT=186 +CONCATENATE=187 +CHANGE=188 +CASCADE=189 +RESTRICT=190 +CLUSTERED=191 +SORTED=192 +PURGE=193 +INPUTFORMAT=194 +OUTPUTFORMAT=195 +DATABASE=196 +DATABASES=197 +DFS=198 +TRUNCATE=199 +ANALYZE=200 +COMPUTE=201 +LIST=202 +STATISTICS=203 +PARTITIONED=204 +EXTERNAL=205 +DEFINED=206 +REVOKE=207 +GRANT=208 +LOCK=209 +UNLOCK=210 +MSCK=211 +REPAIR=212 +RECOVER=213 +EXPORT=214 +IMPORT=215 +LOAD=216 +ROLE=217 +ROLES=218 +COMPACTIONS=219 +PRINCIPALS=220 +TRANSACTIONS=221 +INDEX=222 +INDEXES=223 +LOCKS=224 +OPTION=225 +ANTI=226 +LOCAL=227 +INPATH=228 +WATERMARK=229 +UNNEST=230 +MATCH_RECOGNIZE=231 +MEASURES=232 +ONE=233 +PER=234 +MATCH=235 +SKIP1=236 +NEXT=237 +PAST=238 +PATTERN=239 +WITHIN=240 +DEFINE=241 +BIGINT_LITERAL=242 +SMALLINT_LITERAL=243 +TINYINT_LITERAL=244 +INTEGER_VALUE=245 +DECIMAL_VALUE=246 +DOUBLE_LITERAL=247 +BIGDECIMAL_LITERAL=248 +IDENTIFIER=249 +BACKQUOTED_IDENTIFIER=250 +SIMPLE_COMMENT=251 +BRACKETED_EMPTY_COMMENT=252 +BRACKETED_COMMENT=253 +WS=254 +UNRECOGNIZED=255 +REVERSE_QUOTE_ID=256 +DOUBLE_QUOTE_ID=257 +DOT_ID=258 +ID=259 +SYSTEM=260 +STRING=261 +ARRAY=262 +MAP=263 +CHAR=264 +VARCHAR=265 +BINARY=266 +VARBINARY=267 +BYTES=268 +DECIMAL=269 +TINYINT=270 +SMALLINT=271 +INT=272 +BIGINT=273 +FLOAT=274 +DOUBLE=275 +DATE=276 +TIME=277 +TIMESTAMP=278 +MULTISET=279 +BOOLEAN=280 +RAW=281 +ROW=282 +NULL=283 +EQUAL_SYMBOL=284 +GREATER_SYMBOL=285 +LESS_SYMBOL=286 +EXCLAMATION_SYMBOL=287 +BIT_NOT_OP=288 +BIT_OR_OP=289 +BIT_AND_OP=290 +BIT_XOR_OP=291 +DOT=292 +LS_BRACKET=293 +RS_BRACKET=294 +LR_BRACKET=295 +RR_BRACKET=296 +COMMA=297 +SEMICOLON=298 +AT_SIGN=299 +ZERO_DECIMAL=300 +ONE_DECIMAL=301 +TWO_DECIMAL=302 +SINGLE_QUOTE_SYMB=303 +DOUBLE_QUOTE_SYMB=304 +REVERSE_QUOTE_SYMB=305 +COLON_SYMB=306 +ASTERISK_SIGN=307 +UNDERLINE_SIGN=308 +HYPNEN_SIGN=309 +ADD_SIGN=310 +PENCENT_SIGN=311 +DOUBLE_HYPNEN_SIGN=312 +SLASH_SIGN=313 +STRING_LITERAL=314 +DECIMAL_LITERAL=315 +REAL_LITERAL=316 +BIT_STRING=317 +IDENTIFIER_BASE=318 +DEC_DIGIT=319 +'SELECT'=4 +'FROM'=5 +'ADD'=6 +'AS'=7 +'ALL'=8 +'ANY'=9 +'DISTINCT'=10 +'WHERE'=11 +'GROUP'=12 +'BY'=13 +'GROUPING'=14 +'SETS'=15 +'CUBE'=16 +'ROLLUP'=17 +'ORDER'=18 +'HAVING'=19 +'LIMIT'=20 +'AT'=21 +'OR'=22 +'AND'=23 +'IN'=24 +'NOT'=25 +'NO'=26 +'EXISTS'=27 +'BETWEEN'=28 +'LIKE'=29 +'RLIKE'=30 +'IS'=31 +'TRUE'=32 +'FALSE'=33 +'NULLS'=34 +'ASC'=35 +'DESC'=36 +'FOR'=37 +'INTERVAL'=38 +'CASE'=39 +'WHEN'=40 +'THEN'=41 +'ELSE'=42 +'END'=43 +'JOIN'=44 +'CROSS'=45 +'OUTER'=46 +'INNER'=47 +'LEFT'=48 +'SEMI'=49 +'RIGHT'=50 +'FULL'=51 +'NATURAL'=52 +'ON'=53 +'PIVOT'=54 +'LATERAL'=55 +'WINDOW'=56 +'OVER'=57 +'PARTITION'=58 +'RANGE'=59 +'ROWS'=60 +'UNBOUNDED'=61 +'PRECEDING'=62 +'FOLLOWING'=63 +'CURRENT'=64 +'FIRST'=65 +'AFTER'=66 +'LAST'=67 +'WITH'=68 +'VALUES'=69 +'CREATE'=70 +'TABLE'=71 +'DIRECTORY'=72 +'VIEW'=73 +'REPLACE'=74 +'INSERT'=75 +'DELETE'=76 +'INTO'=77 +'DESCRIBE'=78 +'EXPLAIN'=79 +'FORMAT'=80 +'LOGICAL'=81 +'CODEGEN'=82 +'COST'=83 +'CAST'=84 +'SHOW'=85 +'TABLES'=86 +'COLUMNS'=87 +'COLUMN'=88 +'USE'=89 +'PARTITIONS'=90 +'FUNCTIONS'=91 +'DROP'=92 +'UNION'=93 +'EXCEPT'=94 +'SETMINUS'=95 +'INTERSECT'=96 +'TO'=97 +'TABLESAMPLE'=98 +'STRATIFY'=99 +'ALTER'=100 +'RENAME'=101 +'STRUCT'=102 +'COMMENT'=103 +'SET'=104 +'RESET'=105 +'DATA'=106 +'START'=107 +'TRANSACTION'=108 +'COMMIT'=109 +'ROLLBACK'=110 +'MACRO'=111 +'IGNORE'=112 +'BOTH'=113 +'LEADING'=114 +'TRAILING'=115 +'IF'=116 +'POSITION'=117 +'EXTRACT'=118 +'EQ'=119 +'NSEQ'=120 +'NEQ'=121 +'NEQJ'=122 +'LT'=123 +'LTE'=124 +'GT'=125 +'GTE'=126 +'PLUS'=127 +'MINUS'=128 +'ASTERISK'=129 +'SLASH'=130 +'PERCENT'=131 +'DIV'=132 +'TILDE'=133 +'AMPERSAND'=134 +'PIPE'=135 +'CONCAT_PIPE'=136 +'HAT'=137 +'PERCENTLIT'=138 +'BUCKET'=139 +'OUT'=140 +'OF'=141 +'SORT'=142 +'CLUSTER'=143 +'DISTRIBUTE'=144 +'OVERWRITE'=145 +'TRANSFORM'=146 +'REDUCE'=147 +'USING'=148 +'SERDE'=149 +'SERDEPROPERTIES'=150 +'RECORDREADER'=151 +'RECORDWRITER'=152 +'DELIMITED'=153 +'FIELDS'=154 +'TERMINATED'=155 +'COLLECTION'=156 +'ITEMS'=157 +'KEYS'=158 +'ESCAPED'=159 +'LINES'=160 +'SEPARATED'=161 +'FUNCTION'=162 +'EXTENDED'=163 +'REFRESH'=164 +'CLEAR'=165 +'CACHE'=166 +'UNCACHE'=167 +'LAZY'=168 +'FORMATTED'=169 +'GLOBAL'=170 +'TEMPORARY'=171 +'OPTIONS'=172 +'UNSET'=173 +'TBLPROPERTIES'=174 +'DBPROPERTIES'=175 +'BUCKETS'=176 +'SKEWED'=177 +'STORED'=178 +'DIRECTORIES'=179 +'LOCATION'=180 +'EXCHANGE'=181 +'ARCHIVE'=182 +'UNARCHIVE'=183 +'FILEFORMAT'=184 +'TOUCH'=185 +'COMPACT'=186 +'CONCATENATE'=187 +'CHANGE'=188 +'CASCADE'=189 +'RESTRICT'=190 +'CLUSTERED'=191 +'SORTED'=192 +'PURGE'=193 +'INPUTFORMAT'=194 +'OUTPUTFORMAT'=195 +'DATABASE'=196 +'DATABASES'=197 +'DFS'=198 +'TRUNCATE'=199 +'ANALYZE'=200 +'COMPUTE'=201 +'LIST'=202 +'STATISTICS'=203 +'PARTITIONED'=204 +'EXTERNAL'=205 +'DEFINED'=206 +'REVOKE'=207 +'GRANT'=208 +'LOCK'=209 +'UNLOCK'=210 +'MSCK'=211 +'REPAIR'=212 +'RECOVER'=213 +'EXPORT'=214 +'IMPORT'=215 +'LOAD'=216 +'ROLE'=217 +'ROLES'=218 +'COMPACTIONS'=219 +'PRINCIPALS'=220 +'TRANSACTIONS'=221 +'INDEX'=222 +'INDEXES'=223 +'LOCKS'=224 +'OPTION'=225 +'ANTI'=226 +'LOCAL'=227 +'INPATH'=228 +'WATERMARK'=229 +'UNNEST'=230 +'MATCH_RECOGNIZE'=231 +'MEASURES'=232 +'ONE'=233 +'PER'=234 +'MATCH'=235 +'SKIP1'=236 +'NEXT'=237 +'PAST'=238 +'PATTERN'=239 +'WITHIN'=240 +'DEFINE'=241 +'BIGINT_LITERAL'=242 +'SMALLINT_LITERAL'=243 +'TINYINT_LITERAL'=244 +'INTEGER_VALUE'=245 +'DECIMAL_VALUE'=246 +'DOUBLE_LITERAL'=247 +'BIGDECIMAL_LITERAL'=248 +'IDENTIFIER'=249 +'BACKQUOTED_IDENTIFIER'=250 +'SIMPLE_COMMENT'=251 +'BRACKETED_EMPTY_COMMENT'=252 +'BRACKETED_COMMENT'=253 +'WS'=254 +'UNRECOGNIZED'=255 +'SYSTEM'=260 +'STRING'=261 +'ARRAY'=262 +'MAP'=263 +'CHAR'=264 +'VARCHAR'=265 +'BINARY'=266 +'VARBINARY'=267 +'BYTES'=268 +'DECIMAL'=269 +'TINYINT'=270 +'SMALLINT'=271 +'INT'=272 +'BIGINT'=273 +'FLOAT'=274 +'DOUBLE'=275 +'DATE'=276 +'TIME'=277 +'TIMESTAMP'=278 +'MULTISET'=279 +'BOOLEAN'=280 +'RAW'=281 +'ROW'=282 +'NULL'=283 +'='=284 +'>'=285 +'<'=286 +'!'=287 +'~'=288 +'|'=289 +'&'=290 +'^'=291 +'.'=292 +'['=293 +']'=294 +'('=295 +')'=296 +','=297 +';'=298 +'@'=299 +'0'=300 +'1'=301 +'2'=302 +'\''=303 +'"'=304 +'`'=305 +':'=306 +'*'=307 +'_'=308 +'-'=309 +'+'=310 +'%'=311 +'--'=312 +'/'=313 diff --git a/src/lib/flinksql/FlinkSqlParserLexer.interp b/src/lib/flinksql/FlinkSqlParserLexer.interp index f70abb6..15379a0 100644 --- a/src/lib/flinksql/FlinkSqlParserLexer.interp +++ b/src/lib/flinksql/FlinkSqlParserLexer.interp @@ -1,64 +1,972 @@ token literal names: null -'.' -'*' -',' -'!' -'(' -')' -'&' -'|' +null +null +null +'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' +'DBPROPERTIES' +'BUCKETS' +'SKEWED' +'STORED' +'DIRECTORIES' +'LOCATION' +'EXCHANGE' +'ARCHIVE' +'UNARCHIVE' +'FILEFORMAT' +'TOUCH' +'COMPACT' +'CONCATENATE' +'CHANGE' +'CASCADE' +'RESTRICT' +'CLUSTERED' +'SORTED' +'PURGE' +'INPUTFORMAT' +'OUTPUTFORMAT' +'DATABASE' +'DATABASES' +'DFS' +'TRUNCATE' +'ANALYZE' +'COMPUTE' +'LIST' +'STATISTICS' +'PARTITIONED' +'EXTERNAL' +'DEFINED' +'REVOKE' +'GRANT' +'LOCK' +'UNLOCK' +'MSCK' +'REPAIR' +'RECOVER' +'EXPORT' +'IMPORT' +'LOAD' +'ROLE' +'ROLES' +'COMPACTIONS' +'PRINCIPALS' +'TRANSACTIONS' +'INDEX' +'INDEXES' +'LOCKS' +'OPTION' +'ANTI' +'LOCAL' +'INPATH' +'WATERMARK' +'UNNEST' +'MATCH_RECOGNIZE' +'MEASURES' +'ONE' +'PER' +'MATCH' +'SKIP1' +'NEXT' +'PAST' +'PATTERN' +'WITHIN' +'DEFINE' +'BIGINT_LITERAL' +'SMALLINT_LITERAL' +'TINYINT_LITERAL' +'INTEGER_VALUE' +'DECIMAL_VALUE' +'DOUBLE_LITERAL' +'BIGDECIMAL_LITERAL' +'IDENTIFIER' +'BACKQUOTED_IDENTIFIER' +'SIMPLE_COMMENT' +'BRACKETED_EMPTY_COMMENT' +'BRACKETED_COMMENT' +'WS' +'UNRECOGNIZED' +null +null +null +null +'SYSTEM' +'STRING' +'ARRAY' +'MAP' +'CHAR' +'VARCHAR' +'BINARY' +'VARBINARY' +'BYTES' +'DECIMAL' +'TINYINT' +'SMALLINT' +'INT' +'BIGINT' +'FLOAT' +'DOUBLE' +'DATE' +'TIME' +'TIMESTAMP' +'MULTISET' +'BOOLEAN' +'RAW' +'ROW' +'NULL' '=' '>' '<' -'^' -'/' -'%' -'+' -'-' -'--' +'!' '~' +'|' +'&' +'^' +'.' +'[' +']' +'(' +')' +',' +';' +'@' +'0' +'1' +'2' +'\'' +'"' +'`' +':' +'*' +'_' +'-' +'+' +'%' +'--' +'/' +null +null +null +null +null token symbolic names: null -null -null -null -null -null -null -null -null -null -null -null -null -null -null -null -null -null -null +SPACE +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 +DBPROPERTIES +BUCKETS +SKEWED +STORED +DIRECTORIES +LOCATION +EXCHANGE +ARCHIVE +UNARCHIVE +FILEFORMAT +TOUCH +COMPACT +CONCATENATE +CHANGE +CASCADE +RESTRICT +CLUSTERED +SORTED +PURGE +INPUTFORMAT +OUTPUTFORMAT +DATABASE +DATABASES +DFS +TRUNCATE +ANALYZE +COMPUTE +LIST +STATISTICS +PARTITIONED +EXTERNAL +DEFINED +REVOKE +GRANT +LOCK +UNLOCK +MSCK +REPAIR +RECOVER +EXPORT +IMPORT +LOAD +ROLE +ROLES +COMPACTIONS +PRINCIPALS +TRANSACTIONS +INDEX +INDEXES +LOCKS +OPTION +ANTI +LOCAL +INPATH +WATERMARK +UNNEST +MATCH_RECOGNIZE +MEASURES +ONE +PER +MATCH +SKIP1 +NEXT +PAST +PATTERN +WITHIN +DEFINE +BIGINT_LITERAL +SMALLINT_LITERAL +TINYINT_LITERAL +INTEGER_VALUE +DECIMAL_VALUE +DOUBLE_LITERAL +BIGDECIMAL_LITERAL +IDENTIFIER +BACKQUOTED_IDENTIFIER +SIMPLE_COMMENT +BRACKETED_EMPTY_COMMENT +BRACKETED_COMMENT +WS +UNRECOGNIZED +REVERSE_QUOTE_ID +DOUBLE_QUOTE_ID +DOT_ID +ID +SYSTEM +STRING +ARRAY +MAP +CHAR +VARCHAR +BINARY +VARBINARY +BYTES +DECIMAL +TINYINT +SMALLINT +INT +BIGINT +FLOAT +DOUBLE +DATE +TIME +TIMESTAMP +MULTISET +BOOLEAN +RAW +ROW +NULL +EQUAL_SYMBOL +GREATER_SYMBOL +LESS_SYMBOL +EXCLAMATION_SYMBOL +BIT_NOT_OP +BIT_OR_OP +BIT_AND_OP +BIT_XOR_OP +DOT +LS_BRACKET +RS_BRACKET +LR_BRACKET +RR_BRACKET +COMMA +SEMICOLON +AT_SIGN +ZERO_DECIMAL +ONE_DECIMAL +TWO_DECIMAL +SINGLE_QUOTE_SYMB +DOUBLE_QUOTE_SYMB +REVERSE_QUOTE_SYMB +COLON_SYMB +ASTERISK_SIGN +UNDERLINE_SIGN +HYPNEN_SIGN +ADD_SIGN +PENCENT_SIGN +DOUBLE_HYPNEN_SIGN +SLASH_SIGN +STRING_LITERAL +DECIMAL_LITERAL +REAL_LITERAL +BIT_STRING +IDENTIFIER_BASE 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 +SPACE +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 +DBPROPERTIES +BUCKETS +SKEWED +STORED +DIRECTORIES +LOCATION +EXCHANGE +ARCHIVE +UNARCHIVE +FILEFORMAT +TOUCH +COMPACT +CONCATENATE +CHANGE +CASCADE +RESTRICT +CLUSTERED +SORTED +PURGE +INPUTFORMAT +OUTPUTFORMAT +DATABASE +DATABASES +DFS +TRUNCATE +ANALYZE +COMPUTE +LIST +STATISTICS +PARTITIONED +EXTERNAL +DEFINED +REVOKE +GRANT +LOCK +UNLOCK +MSCK +REPAIR +RECOVER +EXPORT +IMPORT +LOAD +ROLE +ROLES +COMPACTIONS +PRINCIPALS +TRANSACTIONS +INDEX +INDEXES +LOCKS +OPTION +ANTI +LOCAL +INPATH +WATERMARK +UNNEST +MATCH_RECOGNIZE +MEASURES +ONE +PER +MATCH +SKIP1 +NEXT +PAST +PATTERN +WITHIN +DEFINE +BIGINT_LITERAL +SMALLINT_LITERAL +TINYINT_LITERAL +INTEGER_VALUE +DECIMAL_VALUE +DOUBLE_LITERAL +BIGDECIMAL_LITERAL +IDENTIFIER +BACKQUOTED_IDENTIFIER +SIMPLE_COMMENT +BRACKETED_EMPTY_COMMENT +BRACKETED_COMMENT +WS +UNRECOGNIZED +REVERSE_QUOTE_ID +DOUBLE_QUOTE_ID +DOT_ID +ID +SYSTEM +STRING +ARRAY +MAP +CHAR +VARCHAR +BINARY +VARBINARY +BYTES +DECIMAL +TINYINT +SMALLINT +INT +BIGINT +FLOAT +DOUBLE +DATE +TIME +TIMESTAMP +MULTISET +BOOLEAN +RAW +ROW +NULL +EQUAL_SYMBOL +GREATER_SYMBOL +LESS_SYMBOL +EXCLAMATION_SYMBOL +BIT_NOT_OP +BIT_OR_OP +BIT_AND_OP +BIT_XOR_OP +DOT +LS_BRACKET +RS_BRACKET +LR_BRACKET +RR_BRACKET +COMMA +SEMICOLON +AT_SIGN +ZERO_DECIMAL +ONE_DECIMAL +TWO_DECIMAL +SINGLE_QUOTE_SYMB +DOUBLE_QUOTE_SYMB +REVERSE_QUOTE_SYMB +COLON_SYMB +ASTERISK_SIGN +UNDERLINE_SIGN +HYPNEN_SIGN +ADD_SIGN +PENCENT_SIGN +DOUBLE_HYPNEN_SIGN +SLASH_SIGN +STRING_LITERAL +DECIMAL_LITERAL +REAL_LITERAL +BIT_STRING +IDENTIFIER_BASE +EXPONENT_NUM_PART +ID_LITERAL +DEC_DIGIT +DEC_LETTER +DQUOTA_STRING +SQUOTA_STRING +BIT_STRING_L +BQUOTA_STRING channel names: DEFAULT_TOKEN_CHANNEL @@ -68,4 +976,4 @@ mode names: DEFAULT_MODE atn: -[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 +[3, 24715, 42794, 33075, 47597, 16764, 15335, 30598, 22884, 2, 320, 2986, 8, 1, 4, 2, 9, 2, 4, 3, 9, 3, 4, 4, 9, 4, 4, 5, 9, 5, 4, 6, 9, 6, 4, 7, 9, 7, 4, 8, 9, 8, 4, 9, 9, 9, 4, 10, 9, 10, 4, 11, 9, 11, 4, 12, 9, 12, 4, 13, 9, 13, 4, 14, 9, 14, 4, 15, 9, 15, 4, 16, 9, 16, 4, 17, 9, 17, 4, 18, 9, 18, 4, 19, 9, 19, 4, 20, 9, 20, 4, 21, 9, 21, 4, 22, 9, 22, 4, 23, 9, 23, 4, 24, 9, 24, 4, 25, 9, 25, 4, 26, 9, 26, 4, 27, 9, 27, 4, 28, 9, 28, 4, 29, 9, 29, 4, 30, 9, 30, 4, 31, 9, 31, 4, 32, 9, 32, 4, 33, 9, 33, 4, 34, 9, 34, 4, 35, 9, 35, 4, 36, 9, 36, 4, 37, 9, 37, 4, 38, 9, 38, 4, 39, 9, 39, 4, 40, 9, 40, 4, 41, 9, 41, 4, 42, 9, 42, 4, 43, 9, 43, 4, 44, 9, 44, 4, 45, 9, 45, 4, 46, 9, 46, 4, 47, 9, 47, 4, 48, 9, 48, 4, 49, 9, 49, 4, 50, 9, 50, 4, 51, 9, 51, 4, 52, 9, 52, 4, 53, 9, 53, 4, 54, 9, 54, 4, 55, 9, 55, 4, 56, 9, 56, 4, 57, 9, 57, 4, 58, 9, 58, 4, 59, 9, 59, 4, 60, 9, 60, 4, 61, 9, 61, 4, 62, 9, 62, 4, 63, 9, 63, 4, 64, 9, 64, 4, 65, 9, 65, 4, 66, 9, 66, 4, 67, 9, 67, 4, 68, 9, 68, 4, 69, 9, 69, 4, 70, 9, 70, 4, 71, 9, 71, 4, 72, 9, 72, 4, 73, 9, 73, 4, 74, 9, 74, 4, 75, 9, 75, 4, 76, 9, 76, 4, 77, 9, 77, 4, 78, 9, 78, 4, 79, 9, 79, 4, 80, 9, 80, 4, 81, 9, 81, 4, 82, 9, 82, 4, 83, 9, 83, 4, 84, 9, 84, 4, 85, 9, 85, 4, 86, 9, 86, 4, 87, 9, 87, 4, 88, 9, 88, 4, 89, 9, 89, 4, 90, 9, 90, 4, 91, 9, 91, 4, 92, 9, 92, 4, 93, 9, 93, 4, 94, 9, 94, 4, 95, 9, 95, 4, 96, 9, 96, 4, 97, 9, 97, 4, 98, 9, 98, 4, 99, 9, 99, 4, 100, 9, 100, 4, 101, 9, 101, 4, 102, 9, 102, 4, 103, 9, 103, 4, 104, 9, 104, 4, 105, 9, 105, 4, 106, 9, 106, 4, 107, 9, 107, 4, 108, 9, 108, 4, 109, 9, 109, 4, 110, 9, 110, 4, 111, 9, 111, 4, 112, 9, 112, 4, 113, 9, 113, 4, 114, 9, 114, 4, 115, 9, 115, 4, 116, 9, 116, 4, 117, 9, 117, 4, 118, 9, 118, 4, 119, 9, 119, 4, 120, 9, 120, 4, 121, 9, 121, 4, 122, 9, 122, 4, 123, 9, 123, 4, 124, 9, 124, 4, 125, 9, 125, 4, 126, 9, 126, 4, 127, 9, 127, 4, 128, 9, 128, 4, 129, 9, 129, 4, 130, 9, 130, 4, 131, 9, 131, 4, 132, 9, 132, 4, 133, 9, 133, 4, 134, 9, 134, 4, 135, 9, 135, 4, 136, 9, 136, 4, 137, 9, 137, 4, 138, 9, 138, 4, 139, 9, 139, 4, 140, 9, 140, 4, 141, 9, 141, 4, 142, 9, 142, 4, 143, 9, 143, 4, 144, 9, 144, 4, 145, 9, 145, 4, 146, 9, 146, 4, 147, 9, 147, 4, 148, 9, 148, 4, 149, 9, 149, 4, 150, 9, 150, 4, 151, 9, 151, 4, 152, 9, 152, 4, 153, 9, 153, 4, 154, 9, 154, 4, 155, 9, 155, 4, 156, 9, 156, 4, 157, 9, 157, 4, 158, 9, 158, 4, 159, 9, 159, 4, 160, 9, 160, 4, 161, 9, 161, 4, 162, 9, 162, 4, 163, 9, 163, 4, 164, 9, 164, 4, 165, 9, 165, 4, 166, 9, 166, 4, 167, 9, 167, 4, 168, 9, 168, 4, 169, 9, 169, 4, 170, 9, 170, 4, 171, 9, 171, 4, 172, 9, 172, 4, 173, 9, 173, 4, 174, 9, 174, 4, 175, 9, 175, 4, 176, 9, 176, 4, 177, 9, 177, 4, 178, 9, 178, 4, 179, 9, 179, 4, 180, 9, 180, 4, 181, 9, 181, 4, 182, 9, 182, 4, 183, 9, 183, 4, 184, 9, 184, 4, 185, 9, 185, 4, 186, 9, 186, 4, 187, 9, 187, 4, 188, 9, 188, 4, 189, 9, 189, 4, 190, 9, 190, 4, 191, 9, 191, 4, 192, 9, 192, 4, 193, 9, 193, 4, 194, 9, 194, 4, 195, 9, 195, 4, 196, 9, 196, 4, 197, 9, 197, 4, 198, 9, 198, 4, 199, 9, 199, 4, 200, 9, 200, 4, 201, 9, 201, 4, 202, 9, 202, 4, 203, 9, 203, 4, 204, 9, 204, 4, 205, 9, 205, 4, 206, 9, 206, 4, 207, 9, 207, 4, 208, 9, 208, 4, 209, 9, 209, 4, 210, 9, 210, 4, 211, 9, 211, 4, 212, 9, 212, 4, 213, 9, 213, 4, 214, 9, 214, 4, 215, 9, 215, 4, 216, 9, 216, 4, 217, 9, 217, 4, 218, 9, 218, 4, 219, 9, 219, 4, 220, 9, 220, 4, 221, 9, 221, 4, 222, 9, 222, 4, 223, 9, 223, 4, 224, 9, 224, 4, 225, 9, 225, 4, 226, 9, 226, 4, 227, 9, 227, 4, 228, 9, 228, 4, 229, 9, 229, 4, 230, 9, 230, 4, 231, 9, 231, 4, 232, 9, 232, 4, 233, 9, 233, 4, 234, 9, 234, 4, 235, 9, 235, 4, 236, 9, 236, 4, 237, 9, 237, 4, 238, 9, 238, 4, 239, 9, 239, 4, 240, 9, 240, 4, 241, 9, 241, 4, 242, 9, 242, 4, 243, 9, 243, 4, 244, 9, 244, 4, 245, 9, 245, 4, 246, 9, 246, 4, 247, 9, 247, 4, 248, 9, 248, 4, 249, 9, 249, 4, 250, 9, 250, 4, 251, 9, 251, 4, 252, 9, 252, 4, 253, 9, 253, 4, 254, 9, 254, 4, 255, 9, 255, 4, 256, 9, 256, 4, 257, 9, 257, 4, 258, 9, 258, 4, 259, 9, 259, 4, 260, 9, 260, 4, 261, 9, 261, 4, 262, 9, 262, 4, 263, 9, 263, 4, 264, 9, 264, 4, 265, 9, 265, 4, 266, 9, 266, 4, 267, 9, 267, 4, 268, 9, 268, 4, 269, 9, 269, 4, 270, 9, 270, 4, 271, 9, 271, 4, 272, 9, 272, 4, 273, 9, 273, 4, 274, 9, 274, 4, 275, 9, 275, 4, 276, 9, 276, 4, 277, 9, 277, 4, 278, 9, 278, 4, 279, 9, 279, 4, 280, 9, 280, 4, 281, 9, 281, 4, 282, 9, 282, 4, 283, 9, 283, 4, 284, 9, 284, 4, 285, 9, 285, 4, 286, 9, 286, 4, 287, 9, 287, 4, 288, 9, 288, 4, 289, 9, 289, 4, 290, 9, 290, 4, 291, 9, 291, 4, 292, 9, 292, 4, 293, 9, 293, 4, 294, 9, 294, 4, 295, 9, 295, 4, 296, 9, 296, 4, 297, 9, 297, 4, 298, 9, 298, 4, 299, 9, 299, 4, 300, 9, 300, 4, 301, 9, 301, 4, 302, 9, 302, 4, 303, 9, 303, 4, 304, 9, 304, 4, 305, 9, 305, 4, 306, 9, 306, 4, 307, 9, 307, 4, 308, 9, 308, 4, 309, 9, 309, 4, 310, 9, 310, 4, 311, 9, 311, 4, 312, 9, 312, 4, 313, 9, 313, 4, 314, 9, 314, 4, 315, 9, 315, 4, 316, 9, 316, 4, 317, 9, 317, 4, 318, 9, 318, 4, 319, 9, 319, 4, 320, 9, 320, 4, 321, 9, 321, 4, 322, 9, 322, 4, 323, 9, 323, 4, 324, 9, 324, 4, 325, 9, 325, 4, 326, 9, 326, 4, 327, 9, 327, 3, 2, 6, 2, 657, 10, 2, 13, 2, 14, 2, 658, 3, 2, 3, 2, 3, 3, 3, 3, 3, 3, 3, 3, 7, 3, 667, 10, 3, 12, 3, 14, 3, 670, 11, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 4, 3, 4, 3, 4, 3, 4, 5, 4, 681, 10, 4, 3, 4, 7, 4, 684, 10, 4, 12, 4, 14, 4, 687, 11, 4, 3, 4, 5, 4, 690, 10, 4, 3, 4, 3, 4, 5, 4, 694, 10, 4, 3, 4, 3, 4, 3, 4, 3, 4, 5, 4, 700, 10, 4, 3, 4, 3, 4, 5, 4, 704, 10, 4, 5, 4, 706, 10, 4, 3, 4, 3, 4, 3, 5, 3, 5, 3, 5, 3, 5, 3, 5, 3, 5, 3, 5, 3, 6, 3, 6, 3, 6, 3, 6, 3, 6, 3, 7, 3, 7, 3, 7, 3, 7, 3, 8, 3, 8, 3, 8, 3, 9, 3, 9, 3, 9, 3, 9, 3, 10, 3, 10, 3, 10, 3, 10, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 11, 3, 12, 3, 12, 3, 12, 3, 12, 3, 12, 3, 12, 3, 13, 3, 13, 3, 13, 3, 13, 3, 13, 3, 13, 3, 14, 3, 14, 3, 14, 3, 15, 3, 15, 3, 15, 3, 15, 3, 15, 3, 15, 3, 15, 3, 15, 3, 15, 3, 16, 3, 16, 3, 16, 3, 16, 3, 16, 3, 17, 3, 17, 3, 17, 3, 17, 3, 17, 3, 18, 3, 18, 3, 18, 3, 18, 3, 18, 3, 18, 3, 18, 3, 19, 3, 19, 3, 19, 3, 19, 3, 19, 3, 19, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 20, 3, 21, 3, 21, 3, 21, 3, 21, 3, 21, 3, 21, 3, 22, 3, 22, 3, 22, 3, 23, 3, 23, 3, 23, 3, 24, 3, 24, 3, 24, 3, 24, 3, 25, 3, 25, 3, 25, 3, 26, 3, 26, 3, 26, 3, 26, 3, 27, 3, 27, 3, 27, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 28, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 29, 3, 30, 3, 30, 3, 30, 3, 30, 3, 30, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 31, 3, 32, 3, 32, 3, 32, 3, 33, 3, 33, 3, 33, 3, 33, 3, 33, 3, 34, 3, 34, 3, 34, 3, 34, 3, 34, 3, 34, 3, 35, 3, 35, 3, 35, 3, 35, 3, 35, 3, 35, 3, 36, 3, 36, 3, 36, 3, 36, 3, 37, 3, 37, 3, 37, 3, 37, 3, 37, 3, 38, 3, 38, 3, 38, 3, 38, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 39, 3, 40, 3, 40, 3, 40, 3, 40, 3, 40, 3, 41, 3, 41, 3, 41, 3, 41, 3, 41, 3, 42, 3, 42, 3, 42, 3, 42, 3, 42, 3, 43, 3, 43, 3, 43, 3, 43, 3, 43, 3, 44, 3, 44, 3, 44, 3, 44, 3, 45, 3, 45, 3, 45, 3, 45, 3, 45, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 46, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 47, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 48, 3, 49, 3, 49, 3, 49, 3, 49, 3, 49, 3, 50, 3, 50, 3, 50, 3, 50, 3, 50, 3, 51, 3, 51, 3, 51, 3, 51, 3, 51, 3, 51, 3, 52, 3, 52, 3, 52, 3, 52, 3, 52, 3, 53, 3, 53, 3, 53, 3, 53, 3, 53, 3, 53, 3, 53, 3, 53, 3, 54, 3, 54, 3, 54, 3, 55, 3, 55, 3, 55, 3, 55, 3, 55, 3, 55, 3, 56, 3, 56, 3, 56, 3, 56, 3, 56, 3, 56, 3, 56, 3, 56, 3, 57, 3, 57, 3, 57, 3, 57, 3, 57, 3, 57, 3, 57, 3, 58, 3, 58, 3, 58, 3, 58, 3, 58, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 59, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 60, 3, 61, 3, 61, 3, 61, 3, 61, 3, 61, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 3, 62, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 63, 3, 64, 3, 64, 3, 64, 3, 64, 3, 64, 3, 64, 3, 64, 3, 64, 3, 64, 3, 64, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 65, 3, 66, 3, 66, 3, 66, 3, 66, 3, 66, 3, 66, 3, 67, 3, 67, 3, 67, 3, 67, 3, 67, 3, 67, 3, 68, 3, 68, 3, 68, 3, 68, 3, 68, 3, 69, 3, 69, 3, 69, 3, 69, 3, 69, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 70, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 71, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 3, 72, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 73, 3, 74, 3, 74, 3, 74, 3, 74, 3, 74, 3, 75, 3, 75, 3, 75, 3, 75, 3, 75, 3, 75, 3, 75, 3, 75, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 76, 3, 77, 3, 77, 3, 77, 3, 77, 3, 77, 3, 77, 3, 77, 3, 78, 3, 78, 3, 78, 3, 78, 3, 78, 3, 79, 3, 79, 3, 79, 3, 79, 3, 79, 3, 79, 3, 79, 3, 79, 3, 79, 3, 80, 3, 80, 3, 80, 3, 80, 3, 80, 3, 80, 3, 80, 3, 80, 3, 81, 3, 81, 3, 81, 3, 81, 3, 81, 3, 81, 3, 81, 3, 82, 3, 82, 3, 82, 3, 82, 3, 82, 3, 82, 3, 82, 3, 82, 3, 83, 3, 83, 3, 83, 3, 83, 3, 83, 3, 83, 3, 83, 3, 83, 3, 84, 3, 84, 3, 84, 3, 84, 3, 84, 3, 85, 3, 85, 3, 85, 3, 85, 3, 85, 3, 86, 3, 86, 3, 86, 3, 86, 3, 86, 3, 87, 3, 87, 3, 87, 3, 87, 3, 87, 3, 87, 3, 87, 3, 88, 3, 88, 3, 88, 3, 88, 3, 88, 3, 88, 3, 88, 3, 88, 3, 89, 3, 89, 3, 89, 3, 89, 3, 89, 3, 89, 3, 89, 3, 90, 3, 90, 3, 90, 3, 90, 3, 91, 3, 91, 3, 91, 3, 91, 3, 91, 3, 91, 3, 91, 3, 91, 3, 91, 3, 91, 3, 91, 3, 92, 3, 92, 3, 92, 3, 92, 3, 92, 3, 92, 3, 92, 3, 92, 3, 92, 3, 92, 3, 93, 3, 93, 3, 93, 3, 93, 3, 93, 3, 94, 3, 94, 3, 94, 3, 94, 3, 94, 3, 94, 3, 95, 3, 95, 3, 95, 3, 95, 3, 95, 3, 95, 3, 95, 3, 96, 3, 96, 3, 96, 3, 96, 3, 96, 3, 96, 3, 96, 3, 96, 3, 96, 3, 97, 3, 97, 3, 97, 3, 97, 3, 97, 3, 97, 3, 97, 3, 97, 3, 97, 3, 97, 3, 98, 3, 98, 3, 98, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 3, 99, 3, 100, 3, 100, 3, 100, 3, 100, 3, 100, 3, 100, 3, 100, 3, 100, 3, 100, 3, 101, 3, 101, 3, 101, 3, 101, 3, 101, 3, 101, 3, 102, 3, 102, 3, 102, 3, 102, 3, 102, 3, 102, 3, 102, 3, 103, 3, 103, 3, 103, 3, 103, 3, 103, 3, 103, 3, 103, 3, 104, 3, 104, 3, 104, 3, 104, 3, 104, 3, 104, 3, 104, 3, 104, 3, 105, 3, 105, 3, 105, 3, 105, 3, 106, 3, 106, 3, 106, 3, 106, 3, 106, 3, 106, 3, 107, 3, 107, 3, 107, 3, 107, 3, 107, 3, 108, 3, 108, 3, 108, 3, 108, 3, 108, 3, 108, 3, 109, 3, 109, 3, 109, 3, 109, 3, 109, 3, 109, 3, 109, 3, 109, 3, 109, 3, 109, 3, 109, 3, 109, 3, 110, 3, 110, 3, 110, 3, 110, 3, 110, 3, 110, 3, 110, 3, 111, 3, 111, 3, 111, 3, 111, 3, 111, 3, 111, 3, 111, 3, 111, 3, 111, 3, 112, 3, 112, 3, 112, 3, 112, 3, 112, 3, 112, 3, 113, 3, 113, 3, 113, 3, 113, 3, 113, 3, 113, 3, 113, 3, 114, 3, 114, 3, 114, 3, 114, 3, 114, 3, 115, 3, 115, 3, 115, 3, 115, 3, 115, 3, 115, 3, 115, 3, 115, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 116, 3, 117, 3, 117, 3, 117, 3, 118, 3, 118, 3, 118, 3, 118, 3, 118, 3, 118, 3, 118, 3, 118, 3, 118, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 119, 3, 120, 3, 120, 3, 120, 3, 121, 3, 121, 3, 121, 3, 121, 3, 121, 3, 122, 3, 122, 3, 122, 3, 122, 3, 123, 3, 123, 3, 123, 3, 123, 3, 123, 3, 124, 3, 124, 3, 124, 3, 125, 3, 125, 3, 125, 3, 125, 3, 126, 3, 126, 3, 126, 3, 127, 3, 127, 3, 127, 3, 127, 3, 128, 3, 128, 3, 128, 3, 128, 3, 128, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 129, 3, 130, 3, 130, 3, 130, 3, 130, 3, 130, 3, 130, 3, 130, 3, 130, 3, 130, 3, 131, 3, 131, 3, 131, 3, 131, 3, 131, 3, 131, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 132, 3, 133, 3, 133, 3, 133, 3, 133, 3, 134, 3, 134, 3, 134, 3, 134, 3, 134, 3, 134, 3, 135, 3, 135, 3, 135, 3, 135, 3, 135, 3, 135, 3, 135, 3, 135, 3, 135, 3, 135, 3, 136, 3, 136, 3, 136, 3, 136, 3, 136, 3, 137, 3, 137, 3, 137, 3, 137, 3, 137, 3, 137, 3, 137, 3, 137, 3, 137, 3, 137, 3, 137, 3, 137, 3, 138, 3, 138, 3, 138, 3, 138, 3, 139, 3, 139, 3, 139, 3, 139, 3, 139, 3, 139, 3, 139, 3, 139, 3, 139, 3, 139, 3, 139, 3, 140, 3, 140, 3, 140, 3, 140, 3, 140, 3, 140, 3, 140, 3, 141, 3, 141, 3, 141, 3, 141, 3, 142, 3, 142, 3, 142, 3, 143, 3, 143, 3, 143, 3, 143, 3, 143, 3, 144, 3, 144, 3, 144, 3, 144, 3, 144, 3, 144, 3, 144, 3, 144, 3, 145, 3, 145, 3, 145, 3, 145, 3, 145, 3, 145, 3, 145, 3, 145, 3, 145, 3, 145, 3, 145, 3, 146, 3, 146, 3, 146, 3, 146, 3, 146, 3, 146, 3, 146, 3, 146, 3, 146, 3, 146, 3, 147, 3, 147, 3, 147, 3, 147, 3, 147, 3, 147, 3, 147, 3, 147, 3, 147, 3, 147, 3, 148, 3, 148, 3, 148, 3, 148, 3, 148, 3, 148, 3, 148, 3, 149, 3, 149, 3, 149, 3, 149, 3, 149, 3, 149, 3, 150, 3, 150, 3, 150, 3, 150, 3, 150, 3, 150, 3, 151, 3, 151, 3, 151, 3, 151, 3, 151, 3, 151, 3, 151, 3, 151, 3, 151, 3, 151, 3, 151, 3, 151, 3, 151, 3, 151, 3, 151, 3, 151, 3, 152, 3, 152, 3, 152, 3, 152, 3, 152, 3, 152, 3, 152, 3, 152, 3, 152, 3, 152, 3, 152, 3, 152, 3, 152, 3, 153, 3, 153, 3, 153, 3, 153, 3, 153, 3, 153, 3, 153, 3, 153, 3, 153, 3, 153, 3, 153, 3, 153, 3, 153, 3, 154, 3, 154, 3, 154, 3, 154, 3, 154, 3, 154, 3, 154, 3, 154, 3, 154, 3, 154, 3, 155, 3, 155, 3, 155, 3, 155, 3, 155, 3, 155, 3, 155, 3, 156, 3, 156, 3, 156, 3, 156, 3, 156, 3, 156, 3, 156, 3, 156, 3, 156, 3, 156, 3, 156, 3, 157, 3, 157, 3, 157, 3, 157, 3, 157, 3, 157, 3, 157, 3, 157, 3, 157, 3, 157, 3, 157, 3, 158, 3, 158, 3, 158, 3, 158, 3, 158, 3, 158, 3, 159, 3, 159, 3, 159, 3, 159, 3, 159, 3, 160, 3, 160, 3, 160, 3, 160, 3, 160, 3, 160, 3, 160, 3, 160, 3, 161, 3, 161, 3, 161, 3, 161, 3, 161, 3, 161, 3, 162, 3, 162, 3, 162, 3, 162, 3, 162, 3, 162, 3, 162, 3, 162, 3, 162, 3, 162, 3, 163, 3, 163, 3, 163, 3, 163, 3, 163, 3, 163, 3, 163, 3, 163, 3, 163, 3, 164, 3, 164, 3, 164, 3, 164, 3, 164, 3, 164, 3, 164, 3, 164, 3, 164, 3, 165, 3, 165, 3, 165, 3, 165, 3, 165, 3, 165, 3, 165, 3, 165, 3, 166, 3, 166, 3, 166, 3, 166, 3, 166, 3, 166, 3, 167, 3, 167, 3, 167, 3, 167, 3, 167, 3, 167, 3, 168, 3, 168, 3, 168, 3, 168, 3, 168, 3, 168, 3, 168, 3, 168, 3, 169, 3, 169, 3, 169, 3, 169, 3, 169, 3, 170, 3, 170, 3, 170, 3, 170, 3, 170, 3, 170, 3, 170, 3, 170, 3, 170, 3, 170, 3, 171, 3, 171, 3, 171, 3, 171, 3, 171, 3, 171, 3, 171, 3, 172, 3, 172, 3, 172, 3, 172, 3, 172, 3, 172, 3, 172, 3, 172, 3, 172, 3, 172, 3, 173, 3, 173, 3, 173, 3, 173, 3, 173, 3, 173, 3, 173, 3, 173, 3, 174, 3, 174, 3, 174, 3, 174, 3, 174, 3, 174, 3, 175, 3, 175, 3, 175, 3, 175, 3, 175, 3, 175, 3, 175, 3, 175, 3, 175, 3, 175, 3, 175, 3, 175, 3, 175, 3, 175, 3, 176, 3, 176, 3, 176, 3, 176, 3, 176, 3, 176, 3, 176, 3, 176, 3, 176, 3, 176, 3, 176, 3, 176, 3, 176, 3, 177, 3, 177, 3, 177, 3, 177, 3, 177, 3, 177, 3, 177, 3, 177, 3, 178, 3, 178, 3, 178, 3, 178, 3, 178, 3, 178, 3, 178, 3, 179, 3, 179, 3, 179, 3, 179, 3, 179, 3, 179, 3, 179, 3, 180, 3, 180, 3, 180, 3, 180, 3, 180, 3, 180, 3, 180, 3, 180, 3, 180, 3, 180, 3, 180, 3, 180, 3, 181, 3, 181, 3, 181, 3, 181, 3, 181, 3, 181, 3, 181, 3, 181, 3, 181, 3, 182, 3, 182, 3, 182, 3, 182, 3, 182, 3, 182, 3, 182, 3, 182, 3, 182, 3, 183, 3, 183, 3, 183, 3, 183, 3, 183, 3, 183, 3, 183, 3, 183, 3, 184, 3, 184, 3, 184, 3, 184, 3, 184, 3, 184, 3, 184, 3, 184, 3, 184, 3, 184, 3, 185, 3, 185, 3, 185, 3, 185, 3, 185, 3, 185, 3, 185, 3, 185, 3, 185, 3, 185, 3, 185, 3, 186, 3, 186, 3, 186, 3, 186, 3, 186, 3, 186, 3, 187, 3, 187, 3, 187, 3, 187, 3, 187, 3, 187, 3, 187, 3, 187, 3, 188, 3, 188, 3, 188, 3, 188, 3, 188, 3, 188, 3, 188, 3, 188, 3, 188, 3, 188, 3, 188, 3, 188, 3, 189, 3, 189, 3, 189, 3, 189, 3, 189, 3, 189, 3, 189, 3, 190, 3, 190, 3, 190, 3, 190, 3, 190, 3, 190, 3, 190, 3, 190, 3, 191, 3, 191, 3, 191, 3, 191, 3, 191, 3, 191, 3, 191, 3, 191, 3, 191, 3, 192, 3, 192, 3, 192, 3, 192, 3, 192, 3, 192, 3, 192, 3, 192, 3, 192, 3, 192, 3, 193, 3, 193, 3, 193, 3, 193, 3, 193, 3, 193, 3, 193, 3, 194, 3, 194, 3, 194, 3, 194, 3, 194, 3, 194, 3, 195, 3, 195, 3, 195, 3, 195, 3, 195, 3, 195, 3, 195, 3, 195, 3, 195, 3, 195, 3, 195, 3, 195, 3, 196, 3, 196, 3, 196, 3, 196, 3, 196, 3, 196, 3, 196, 3, 196, 3, 196, 3, 196, 3, 196, 3, 196, 3, 196, 3, 197, 3, 197, 3, 197, 3, 197, 3, 197, 3, 197, 3, 197, 3, 197, 3, 197, 3, 198, 3, 198, 3, 198, 3, 198, 3, 198, 3, 198, 3, 198, 3, 198, 3, 198, 3, 198, 3, 199, 3, 199, 3, 199, 3, 199, 3, 200, 3, 200, 3, 200, 3, 200, 3, 200, 3, 200, 3, 200, 3, 200, 3, 200, 3, 201, 3, 201, 3, 201, 3, 201, 3, 201, 3, 201, 3, 201, 3, 201, 3, 202, 3, 202, 3, 202, 3, 202, 3, 202, 3, 202, 3, 202, 3, 202, 3, 203, 3, 203, 3, 203, 3, 203, 3, 203, 3, 204, 3, 204, 3, 204, 3, 204, 3, 204, 3, 204, 3, 204, 3, 204, 3, 204, 3, 204, 3, 204, 3, 205, 3, 205, 3, 205, 3, 205, 3, 205, 3, 205, 3, 205, 3, 205, 3, 205, 3, 205, 3, 205, 3, 205, 3, 206, 3, 206, 3, 206, 3, 206, 3, 206, 3, 206, 3, 206, 3, 206, 3, 206, 3, 207, 3, 207, 3, 207, 3, 207, 3, 207, 3, 207, 3, 207, 3, 207, 3, 208, 3, 208, 3, 208, 3, 208, 3, 208, 3, 208, 3, 208, 3, 209, 3, 209, 3, 209, 3, 209, 3, 209, 3, 209, 3, 210, 3, 210, 3, 210, 3, 210, 3, 210, 3, 211, 3, 211, 3, 211, 3, 211, 3, 211, 3, 211, 3, 211, 3, 212, 3, 212, 3, 212, 3, 212, 3, 212, 3, 213, 3, 213, 3, 213, 3, 213, 3, 213, 3, 213, 3, 213, 3, 214, 3, 214, 3, 214, 3, 214, 3, 214, 3, 214, 3, 214, 3, 214, 3, 215, 3, 215, 3, 215, 3, 215, 3, 215, 3, 215, 3, 215, 3, 216, 3, 216, 3, 216, 3, 216, 3, 216, 3, 216, 3, 216, 3, 217, 3, 217, 3, 217, 3, 217, 3, 217, 3, 218, 3, 218, 3, 218, 3, 218, 3, 218, 3, 219, 3, 219, 3, 219, 3, 219, 3, 219, 3, 219, 3, 220, 3, 220, 3, 220, 3, 220, 3, 220, 3, 220, 3, 220, 3, 220, 3, 220, 3, 220, 3, 220, 3, 220, 3, 221, 3, 221, 3, 221, 3, 221, 3, 221, 3, 221, 3, 221, 3, 221, 3, 221, 3, 221, 3, 221, 3, 222, 3, 222, 3, 222, 3, 222, 3, 222, 3, 222, 3, 222, 3, 222, 3, 222, 3, 222, 3, 222, 3, 222, 3, 222, 3, 223, 3, 223, 3, 223, 3, 223, 3, 223, 3, 223, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 224, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 225, 3, 226, 3, 226, 3, 226, 3, 226, 3, 226, 3, 226, 3, 226, 3, 227, 3, 227, 3, 227, 3, 227, 3, 227, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 228, 3, 229, 3, 229, 3, 229, 3, 229, 3, 229, 3, 229, 3, 229, 3, 230, 3, 230, 3, 230, 3, 230, 3, 230, 3, 230, 3, 230, 3, 230, 3, 230, 3, 230, 3, 231, 3, 231, 3, 231, 3, 231, 3, 231, 3, 231, 3, 231, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 232, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 233, 3, 234, 3, 234, 3, 234, 3, 234, 3, 235, 3, 235, 3, 235, 3, 235, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 236, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 237, 3, 238, 3, 238, 3, 238, 3, 238, 3, 238, 3, 239, 3, 239, 3, 239, 3, 239, 3, 239, 3, 240, 3, 240, 3, 240, 3, 240, 3, 240, 3, 240, 3, 240, 3, 240, 3, 241, 3, 241, 3, 241, 3, 241, 3, 241, 3, 241, 3, 241, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 242, 3, 243, 3, 243, 3, 243, 3, 243, 3, 243, 3, 243, 3, 243, 3, 243, 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, 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, 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, 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, 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, 251, 3, 251, 3, 251, 3, 251, 3, 251, 3, 251, 3, 251, 3, 251, 3, 251, 3, 251, 3, 251, 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, 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, 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, 255, 3, 255, 3, 255, 3, 256, 3, 256, 3, 256, 3, 256, 3, 256, 3, 256, 3, 256, 3, 256, 3, 256, 3, 256, 3, 256, 3, 256, 3, 256, 3, 257, 3, 257, 6, 257, 2606, 10, 257, 13, 257, 14, 257, 2607, 3, 257, 3, 257, 3, 258, 3, 258, 6, 258, 2614, 10, 258, 13, 258, 14, 258, 2615, 3, 258, 3, 258, 3, 259, 3, 259, 3, 259, 3, 260, 3, 260, 3, 261, 3, 261, 3, 261, 3, 261, 3, 261, 3, 261, 3, 261, 3, 262, 3, 262, 3, 262, 3, 262, 3, 262, 3, 262, 3, 262, 3, 263, 3, 263, 3, 263, 3, 263, 3, 263, 3, 263, 3, 264, 3, 264, 3, 264, 3, 264, 3, 265, 3, 265, 3, 265, 3, 265, 3, 265, 3, 266, 3, 266, 3, 266, 3, 266, 3, 266, 3, 266, 3, 266, 3, 266, 3, 267, 3, 267, 3, 267, 3, 267, 3, 267, 3, 267, 3, 267, 3, 268, 3, 268, 3, 268, 3, 268, 3, 268, 3, 268, 3, 268, 3, 268, 3, 268, 3, 268, 3, 269, 3, 269, 3, 269, 3, 269, 3, 269, 3, 269, 3, 270, 3, 270, 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, 272, 3, 273, 3, 273, 3, 273, 3, 273, 3, 274, 3, 274, 3, 274, 3, 274, 3, 274, 3, 274, 3, 274, 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, 276, 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, 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, 281, 3, 281, 3, 281, 3, 281, 3, 281, 3, 281, 3, 281, 3, 281, 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, 284, 3, 285, 3, 285, 3, 286, 3, 286, 3, 287, 3, 287, 3, 288, 3, 288, 3, 289, 3, 289, 3, 290, 3, 290, 3, 291, 3, 291, 3, 292, 3, 292, 3, 293, 3, 293, 3, 294, 3, 294, 3, 295, 3, 295, 3, 296, 3, 296, 3, 297, 3, 297, 3, 298, 3, 298, 3, 299, 3, 299, 3, 300, 3, 300, 3, 301, 3, 301, 3, 302, 3, 302, 3, 303, 3, 303, 3, 304, 3, 304, 3, 305, 3, 305, 3, 306, 3, 306, 3, 307, 3, 307, 3, 308, 3, 308, 3, 309, 3, 309, 3, 310, 3, 310, 3, 311, 3, 311, 3, 312, 3, 312, 3, 313, 3, 313, 3, 313, 3, 314, 3, 314, 3, 315, 3, 315, 3, 315, 5, 315, 2848, 10, 315, 3, 316, 6, 316, 2851, 10, 316, 13, 316, 14, 316, 2852, 3, 317, 6, 317, 2856, 10, 317, 13, 317, 14, 317, 2857, 5, 317, 2860, 10, 317, 3, 317, 3, 317, 6, 317, 2864, 10, 317, 13, 317, 14, 317, 2865, 3, 317, 6, 317, 2869, 10, 317, 13, 317, 14, 317, 2870, 3, 317, 3, 317, 3, 317, 3, 317, 6, 317, 2877, 10, 317, 13, 317, 14, 317, 2878, 5, 317, 2881, 10, 317, 3, 317, 3, 317, 6, 317, 2885, 10, 317, 13, 317, 14, 317, 2886, 3, 317, 3, 317, 3, 317, 6, 317, 2892, 10, 317, 13, 317, 14, 317, 2893, 3, 317, 3, 317, 5, 317, 2898, 10, 317, 3, 318, 3, 318, 3, 319, 3, 319, 3, 319, 6, 319, 2905, 10, 319, 13, 319, 14, 319, 2906, 3, 320, 3, 320, 5, 320, 2911, 10, 320, 3, 320, 6, 320, 2914, 10, 320, 13, 320, 14, 320, 2915, 3, 321, 7, 321, 2919, 10, 321, 12, 321, 14, 321, 2922, 11, 321, 3, 321, 6, 321, 2925, 10, 321, 13, 321, 14, 321, 2926, 3, 321, 7, 321, 2930, 10, 321, 12, 321, 14, 321, 2933, 11, 321, 3, 322, 3, 322, 3, 323, 3, 323, 3, 324, 3, 324, 3, 324, 3, 324, 3, 324, 3, 324, 7, 324, 2945, 10, 324, 12, 324, 14, 324, 2948, 11, 324, 3, 324, 3, 324, 3, 325, 3, 325, 3, 325, 3, 325, 3, 325, 3, 325, 7, 325, 2958, 10, 325, 12, 325, 14, 325, 2961, 11, 325, 3, 325, 3, 325, 3, 326, 3, 326, 3, 326, 6, 326, 2968, 10, 326, 13, 326, 14, 326, 2969, 3, 326, 3, 326, 3, 327, 3, 327, 3, 327, 3, 327, 3, 327, 3, 327, 7, 327, 2980, 10, 327, 12, 327, 14, 327, 2983, 11, 327, 3, 327, 3, 327, 5, 668, 2920, 2926, 2, 328, 3, 3, 5, 4, 7, 5, 9, 6, 11, 7, 13, 8, 15, 9, 17, 10, 19, 11, 21, 12, 23, 13, 25, 14, 27, 15, 29, 16, 31, 17, 33, 18, 35, 19, 37, 20, 39, 21, 41, 22, 43, 23, 45, 24, 47, 25, 49, 26, 51, 27, 53, 28, 55, 29, 57, 30, 59, 31, 61, 32, 63, 33, 65, 34, 67, 35, 69, 36, 71, 37, 73, 38, 75, 39, 77, 40, 79, 41, 81, 42, 83, 43, 85, 44, 87, 45, 89, 46, 91, 47, 93, 48, 95, 49, 97, 50, 99, 51, 101, 52, 103, 53, 105, 54, 107, 55, 109, 56, 111, 57, 113, 58, 115, 59, 117, 60, 119, 61, 121, 62, 123, 63, 125, 64, 127, 65, 129, 66, 131, 67, 133, 68, 135, 69, 137, 70, 139, 71, 141, 72, 143, 73, 145, 74, 147, 75, 149, 76, 151, 77, 153, 78, 155, 79, 157, 80, 159, 81, 161, 82, 163, 83, 165, 84, 167, 85, 169, 86, 171, 87, 173, 88, 175, 89, 177, 90, 179, 91, 181, 92, 183, 93, 185, 94, 187, 95, 189, 96, 191, 97, 193, 98, 195, 99, 197, 100, 199, 101, 201, 102, 203, 103, 205, 104, 207, 105, 209, 106, 211, 107, 213, 108, 215, 109, 217, 110, 219, 111, 221, 112, 223, 113, 225, 114, 227, 115, 229, 116, 231, 117, 233, 118, 235, 119, 237, 120, 239, 121, 241, 122, 243, 123, 245, 124, 247, 125, 249, 126, 251, 127, 253, 128, 255, 129, 257, 130, 259, 131, 261, 132, 263, 133, 265, 134, 267, 135, 269, 136, 271, 137, 273, 138, 275, 139, 277, 140, 279, 141, 281, 142, 283, 143, 285, 144, 287, 145, 289, 146, 291, 147, 293, 148, 295, 149, 297, 150, 299, 151, 301, 152, 303, 153, 305, 154, 307, 155, 309, 156, 311, 157, 313, 158, 315, 159, 317, 160, 319, 161, 321, 162, 323, 163, 325, 164, 327, 165, 329, 166, 331, 167, 333, 168, 335, 169, 337, 170, 339, 171, 341, 172, 343, 173, 345, 174, 347, 175, 349, 176, 351, 177, 353, 178, 355, 179, 357, 180, 359, 181, 361, 182, 363, 183, 365, 184, 367, 185, 369, 186, 371, 187, 373, 188, 375, 189, 377, 190, 379, 191, 381, 192, 383, 193, 385, 194, 387, 195, 389, 196, 391, 197, 393, 198, 395, 199, 397, 200, 399, 201, 401, 202, 403, 203, 405, 204, 407, 205, 409, 206, 411, 207, 413, 208, 415, 209, 417, 210, 419, 211, 421, 212, 423, 213, 425, 214, 427, 215, 429, 216, 431, 217, 433, 218, 435, 219, 437, 220, 439, 221, 441, 222, 443, 223, 445, 224, 447, 225, 449, 226, 451, 227, 453, 228, 455, 229, 457, 230, 459, 231, 461, 232, 463, 233, 465, 234, 467, 235, 469, 236, 471, 237, 473, 238, 475, 239, 477, 240, 479, 241, 481, 242, 483, 243, 485, 244, 487, 245, 489, 246, 491, 247, 493, 248, 495, 249, 497, 250, 499, 251, 501, 252, 503, 253, 505, 254, 507, 255, 509, 256, 511, 257, 513, 258, 515, 259, 517, 260, 519, 261, 521, 262, 523, 263, 525, 264, 527, 265, 529, 266, 531, 267, 533, 268, 535, 269, 537, 270, 539, 271, 541, 272, 543, 273, 545, 274, 547, 275, 549, 276, 551, 277, 553, 278, 555, 279, 557, 280, 559, 281, 561, 282, 563, 283, 565, 284, 567, 285, 569, 286, 571, 287, 573, 288, 575, 289, 577, 290, 579, 291, 581, 292, 583, 293, 585, 294, 587, 295, 589, 296, 591, 297, 593, 298, 595, 299, 597, 300, 599, 301, 601, 302, 603, 303, 605, 304, 607, 305, 609, 306, 611, 307, 613, 308, 615, 309, 617, 310, 619, 311, 621, 312, 623, 313, 625, 314, 627, 315, 629, 316, 631, 317, 633, 318, 635, 319, 637, 320, 639, 2, 641, 2, 643, 2, 645, 2, 647, 2, 649, 2, 651, 2, 653, 2, 3, 2, 15, 5, 2, 11, 12, 15, 15, 34, 34, 4, 2, 12, 12, 15, 15, 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, 67, 92, 99, 124, 4, 2, 36, 36, 94, 94, 4, 2, 41, 41, 94, 94, 3, 2, 50, 51, 4, 2, 94, 94, 98, 98, 2, 3020, 2, 3, 3, 2, 2, 2, 2, 5, 3, 2, 2, 2, 2, 7, 3, 2, 2, 2, 2, 9, 3, 2, 2, 2, 2, 11, 3, 2, 2, 2, 2, 13, 3, 2, 2, 2, 2, 15, 3, 2, 2, 2, 2, 17, 3, 2, 2, 2, 2, 19, 3, 2, 2, 2, 2, 21, 3, 2, 2, 2, 2, 23, 3, 2, 2, 2, 2, 25, 3, 2, 2, 2, 2, 27, 3, 2, 2, 2, 2, 29, 3, 2, 2, 2, 2, 31, 3, 2, 2, 2, 2, 33, 3, 2, 2, 2, 2, 35, 3, 2, 2, 2, 2, 37, 3, 2, 2, 2, 2, 39, 3, 2, 2, 2, 2, 41, 3, 2, 2, 2, 2, 43, 3, 2, 2, 2, 2, 45, 3, 2, 2, 2, 2, 47, 3, 2, 2, 2, 2, 49, 3, 2, 2, 2, 2, 51, 3, 2, 2, 2, 2, 53, 3, 2, 2, 2, 2, 55, 3, 2, 2, 2, 2, 57, 3, 2, 2, 2, 2, 59, 3, 2, 2, 2, 2, 61, 3, 2, 2, 2, 2, 63, 3, 2, 2, 2, 2, 65, 3, 2, 2, 2, 2, 67, 3, 2, 2, 2, 2, 69, 3, 2, 2, 2, 2, 71, 3, 2, 2, 2, 2, 73, 3, 2, 2, 2, 2, 75, 3, 2, 2, 2, 2, 77, 3, 2, 2, 2, 2, 79, 3, 2, 2, 2, 2, 81, 3, 2, 2, 2, 2, 83, 3, 2, 2, 2, 2, 85, 3, 2, 2, 2, 2, 87, 3, 2, 2, 2, 2, 89, 3, 2, 2, 2, 2, 91, 3, 2, 2, 2, 2, 93, 3, 2, 2, 2, 2, 95, 3, 2, 2, 2, 2, 97, 3, 2, 2, 2, 2, 99, 3, 2, 2, 2, 2, 101, 3, 2, 2, 2, 2, 103, 3, 2, 2, 2, 2, 105, 3, 2, 2, 2, 2, 107, 3, 2, 2, 2, 2, 109, 3, 2, 2, 2, 2, 111, 3, 2, 2, 2, 2, 113, 3, 2, 2, 2, 2, 115, 3, 2, 2, 2, 2, 117, 3, 2, 2, 2, 2, 119, 3, 2, 2, 2, 2, 121, 3, 2, 2, 2, 2, 123, 3, 2, 2, 2, 2, 125, 3, 2, 2, 2, 2, 127, 3, 2, 2, 2, 2, 129, 3, 2, 2, 2, 2, 131, 3, 2, 2, 2, 2, 133, 3, 2, 2, 2, 2, 135, 3, 2, 2, 2, 2, 137, 3, 2, 2, 2, 2, 139, 3, 2, 2, 2, 2, 141, 3, 2, 2, 2, 2, 143, 3, 2, 2, 2, 2, 145, 3, 2, 2, 2, 2, 147, 3, 2, 2, 2, 2, 149, 3, 2, 2, 2, 2, 151, 3, 2, 2, 2, 2, 153, 3, 2, 2, 2, 2, 155, 3, 2, 2, 2, 2, 157, 3, 2, 2, 2, 2, 159, 3, 2, 2, 2, 2, 161, 3, 2, 2, 2, 2, 163, 3, 2, 2, 2, 2, 165, 3, 2, 2, 2, 2, 167, 3, 2, 2, 2, 2, 169, 3, 2, 2, 2, 2, 171, 3, 2, 2, 2, 2, 173, 3, 2, 2, 2, 2, 175, 3, 2, 2, 2, 2, 177, 3, 2, 2, 2, 2, 179, 3, 2, 2, 2, 2, 181, 3, 2, 2, 2, 2, 183, 3, 2, 2, 2, 2, 185, 3, 2, 2, 2, 2, 187, 3, 2, 2, 2, 2, 189, 3, 2, 2, 2, 2, 191, 3, 2, 2, 2, 2, 193, 3, 2, 2, 2, 2, 195, 3, 2, 2, 2, 2, 197, 3, 2, 2, 2, 2, 199, 3, 2, 2, 2, 2, 201, 3, 2, 2, 2, 2, 203, 3, 2, 2, 2, 2, 205, 3, 2, 2, 2, 2, 207, 3, 2, 2, 2, 2, 209, 3, 2, 2, 2, 2, 211, 3, 2, 2, 2, 2, 213, 3, 2, 2, 2, 2, 215, 3, 2, 2, 2, 2, 217, 3, 2, 2, 2, 2, 219, 3, 2, 2, 2, 2, 221, 3, 2, 2, 2, 2, 223, 3, 2, 2, 2, 2, 225, 3, 2, 2, 2, 2, 227, 3, 2, 2, 2, 2, 229, 3, 2, 2, 2, 2, 231, 3, 2, 2, 2, 2, 233, 3, 2, 2, 2, 2, 235, 3, 2, 2, 2, 2, 237, 3, 2, 2, 2, 2, 239, 3, 2, 2, 2, 2, 241, 3, 2, 2, 2, 2, 243, 3, 2, 2, 2, 2, 245, 3, 2, 2, 2, 2, 247, 3, 2, 2, 2, 2, 249, 3, 2, 2, 2, 2, 251, 3, 2, 2, 2, 2, 253, 3, 2, 2, 2, 2, 255, 3, 2, 2, 2, 2, 257, 3, 2, 2, 2, 2, 259, 3, 2, 2, 2, 2, 261, 3, 2, 2, 2, 2, 263, 3, 2, 2, 2, 2, 265, 3, 2, 2, 2, 2, 267, 3, 2, 2, 2, 2, 269, 3, 2, 2, 2, 2, 271, 3, 2, 2, 2, 2, 273, 3, 2, 2, 2, 2, 275, 3, 2, 2, 2, 2, 277, 3, 2, 2, 2, 2, 279, 3, 2, 2, 2, 2, 281, 3, 2, 2, 2, 2, 283, 3, 2, 2, 2, 2, 285, 3, 2, 2, 2, 2, 287, 3, 2, 2, 2, 2, 289, 3, 2, 2, 2, 2, 291, 3, 2, 2, 2, 2, 293, 3, 2, 2, 2, 2, 295, 3, 2, 2, 2, 2, 297, 3, 2, 2, 2, 2, 299, 3, 2, 2, 2, 2, 301, 3, 2, 2, 2, 2, 303, 3, 2, 2, 2, 2, 305, 3, 2, 2, 2, 2, 307, 3, 2, 2, 2, 2, 309, 3, 2, 2, 2, 2, 311, 3, 2, 2, 2, 2, 313, 3, 2, 2, 2, 2, 315, 3, 2, 2, 2, 2, 317, 3, 2, 2, 2, 2, 319, 3, 2, 2, 2, 2, 321, 3, 2, 2, 2, 2, 323, 3, 2, 2, 2, 2, 325, 3, 2, 2, 2, 2, 327, 3, 2, 2, 2, 2, 329, 3, 2, 2, 2, 2, 331, 3, 2, 2, 2, 2, 333, 3, 2, 2, 2, 2, 335, 3, 2, 2, 2, 2, 337, 3, 2, 2, 2, 2, 339, 3, 2, 2, 2, 2, 341, 3, 2, 2, 2, 2, 343, 3, 2, 2, 2, 2, 345, 3, 2, 2, 2, 2, 347, 3, 2, 2, 2, 2, 349, 3, 2, 2, 2, 2, 351, 3, 2, 2, 2, 2, 353, 3, 2, 2, 2, 2, 355, 3, 2, 2, 2, 2, 357, 3, 2, 2, 2, 2, 359, 3, 2, 2, 2, 2, 361, 3, 2, 2, 2, 2, 363, 3, 2, 2, 2, 2, 365, 3, 2, 2, 2, 2, 367, 3, 2, 2, 2, 2, 369, 3, 2, 2, 2, 2, 371, 3, 2, 2, 2, 2, 373, 3, 2, 2, 2, 2, 375, 3, 2, 2, 2, 2, 377, 3, 2, 2, 2, 2, 379, 3, 2, 2, 2, 2, 381, 3, 2, 2, 2, 2, 383, 3, 2, 2, 2, 2, 385, 3, 2, 2, 2, 2, 387, 3, 2, 2, 2, 2, 389, 3, 2, 2, 2, 2, 391, 3, 2, 2, 2, 2, 393, 3, 2, 2, 2, 2, 395, 3, 2, 2, 2, 2, 397, 3, 2, 2, 2, 2, 399, 3, 2, 2, 2, 2, 401, 3, 2, 2, 2, 2, 403, 3, 2, 2, 2, 2, 405, 3, 2, 2, 2, 2, 407, 3, 2, 2, 2, 2, 409, 3, 2, 2, 2, 2, 411, 3, 2, 2, 2, 2, 413, 3, 2, 2, 2, 2, 415, 3, 2, 2, 2, 2, 417, 3, 2, 2, 2, 2, 419, 3, 2, 2, 2, 2, 421, 3, 2, 2, 2, 2, 423, 3, 2, 2, 2, 2, 425, 3, 2, 2, 2, 2, 427, 3, 2, 2, 2, 2, 429, 3, 2, 2, 2, 2, 431, 3, 2, 2, 2, 2, 433, 3, 2, 2, 2, 2, 435, 3, 2, 2, 2, 2, 437, 3, 2, 2, 2, 2, 439, 3, 2, 2, 2, 2, 441, 3, 2, 2, 2, 2, 443, 3, 2, 2, 2, 2, 445, 3, 2, 2, 2, 2, 447, 3, 2, 2, 2, 2, 449, 3, 2, 2, 2, 2, 451, 3, 2, 2, 2, 2, 453, 3, 2, 2, 2, 2, 455, 3, 2, 2, 2, 2, 457, 3, 2, 2, 2, 2, 459, 3, 2, 2, 2, 2, 461, 3, 2, 2, 2, 2, 463, 3, 2, 2, 2, 2, 465, 3, 2, 2, 2, 2, 467, 3, 2, 2, 2, 2, 469, 3, 2, 2, 2, 2, 471, 3, 2, 2, 2, 2, 473, 3, 2, 2, 2, 2, 475, 3, 2, 2, 2, 2, 477, 3, 2, 2, 2, 2, 479, 3, 2, 2, 2, 2, 481, 3, 2, 2, 2, 2, 483, 3, 2, 2, 2, 2, 485, 3, 2, 2, 2, 2, 487, 3, 2, 2, 2, 2, 489, 3, 2, 2, 2, 2, 491, 3, 2, 2, 2, 2, 493, 3, 2, 2, 2, 2, 495, 3, 2, 2, 2, 2, 497, 3, 2, 2, 2, 2, 499, 3, 2, 2, 2, 2, 501, 3, 2, 2, 2, 2, 503, 3, 2, 2, 2, 2, 505, 3, 2, 2, 2, 2, 507, 3, 2, 2, 2, 2, 509, 3, 2, 2, 2, 2, 511, 3, 2, 2, 2, 2, 513, 3, 2, 2, 2, 2, 515, 3, 2, 2, 2, 2, 517, 3, 2, 2, 2, 2, 519, 3, 2, 2, 2, 2, 521, 3, 2, 2, 2, 2, 523, 3, 2, 2, 2, 2, 525, 3, 2, 2, 2, 2, 527, 3, 2, 2, 2, 2, 529, 3, 2, 2, 2, 2, 531, 3, 2, 2, 2, 2, 533, 3, 2, 2, 2, 2, 535, 3, 2, 2, 2, 2, 537, 3, 2, 2, 2, 2, 539, 3, 2, 2, 2, 2, 541, 3, 2, 2, 2, 2, 543, 3, 2, 2, 2, 2, 545, 3, 2, 2, 2, 2, 547, 3, 2, 2, 2, 2, 549, 3, 2, 2, 2, 2, 551, 3, 2, 2, 2, 2, 553, 3, 2, 2, 2, 2, 555, 3, 2, 2, 2, 2, 557, 3, 2, 2, 2, 2, 559, 3, 2, 2, 2, 2, 561, 3, 2, 2, 2, 2, 563, 3, 2, 2, 2, 2, 565, 3, 2, 2, 2, 2, 567, 3, 2, 2, 2, 2, 569, 3, 2, 2, 2, 2, 571, 3, 2, 2, 2, 2, 573, 3, 2, 2, 2, 2, 575, 3, 2, 2, 2, 2, 577, 3, 2, 2, 2, 2, 579, 3, 2, 2, 2, 2, 581, 3, 2, 2, 2, 2, 583, 3, 2, 2, 2, 2, 585, 3, 2, 2, 2, 2, 587, 3, 2, 2, 2, 2, 589, 3, 2, 2, 2, 2, 591, 3, 2, 2, 2, 2, 593, 3, 2, 2, 2, 2, 595, 3, 2, 2, 2, 2, 597, 3, 2, 2, 2, 2, 599, 3, 2, 2, 2, 2, 601, 3, 2, 2, 2, 2, 603, 3, 2, 2, 2, 2, 605, 3, 2, 2, 2, 2, 607, 3, 2, 2, 2, 2, 609, 3, 2, 2, 2, 2, 611, 3, 2, 2, 2, 2, 613, 3, 2, 2, 2, 2, 615, 3, 2, 2, 2, 2, 617, 3, 2, 2, 2, 2, 619, 3, 2, 2, 2, 2, 621, 3, 2, 2, 2, 2, 623, 3, 2, 2, 2, 2, 625, 3, 2, 2, 2, 2, 627, 3, 2, 2, 2, 2, 629, 3, 2, 2, 2, 2, 631, 3, 2, 2, 2, 2, 633, 3, 2, 2, 2, 2, 635, 3, 2, 2, 2, 2, 637, 3, 2, 2, 2, 3, 656, 3, 2, 2, 2, 5, 662, 3, 2, 2, 2, 7, 705, 3, 2, 2, 2, 9, 709, 3, 2, 2, 2, 11, 716, 3, 2, 2, 2, 13, 721, 3, 2, 2, 2, 15, 725, 3, 2, 2, 2, 17, 728, 3, 2, 2, 2, 19, 732, 3, 2, 2, 2, 21, 736, 3, 2, 2, 2, 23, 745, 3, 2, 2, 2, 25, 751, 3, 2, 2, 2, 27, 757, 3, 2, 2, 2, 29, 760, 3, 2, 2, 2, 31, 769, 3, 2, 2, 2, 33, 774, 3, 2, 2, 2, 35, 779, 3, 2, 2, 2, 37, 786, 3, 2, 2, 2, 39, 792, 3, 2, 2, 2, 41, 799, 3, 2, 2, 2, 43, 805, 3, 2, 2, 2, 45, 808, 3, 2, 2, 2, 47, 811, 3, 2, 2, 2, 49, 815, 3, 2, 2, 2, 51, 818, 3, 2, 2, 2, 53, 822, 3, 2, 2, 2, 55, 825, 3, 2, 2, 2, 57, 832, 3, 2, 2, 2, 59, 840, 3, 2, 2, 2, 61, 845, 3, 2, 2, 2, 63, 851, 3, 2, 2, 2, 65, 854, 3, 2, 2, 2, 67, 859, 3, 2, 2, 2, 69, 865, 3, 2, 2, 2, 71, 871, 3, 2, 2, 2, 73, 875, 3, 2, 2, 2, 75, 880, 3, 2, 2, 2, 77, 884, 3, 2, 2, 2, 79, 893, 3, 2, 2, 2, 81, 898, 3, 2, 2, 2, 83, 903, 3, 2, 2, 2, 85, 908, 3, 2, 2, 2, 87, 913, 3, 2, 2, 2, 89, 917, 3, 2, 2, 2, 91, 922, 3, 2, 2, 2, 93, 928, 3, 2, 2, 2, 95, 934, 3, 2, 2, 2, 97, 940, 3, 2, 2, 2, 99, 945, 3, 2, 2, 2, 101, 950, 3, 2, 2, 2, 103, 956, 3, 2, 2, 2, 105, 961, 3, 2, 2, 2, 107, 969, 3, 2, 2, 2, 109, 972, 3, 2, 2, 2, 111, 978, 3, 2, 2, 2, 113, 986, 3, 2, 2, 2, 115, 993, 3, 2, 2, 2, 117, 998, 3, 2, 2, 2, 119, 1008, 3, 2, 2, 2, 121, 1014, 3, 2, 2, 2, 123, 1019, 3, 2, 2, 2, 125, 1029, 3, 2, 2, 2, 127, 1039, 3, 2, 2, 2, 129, 1049, 3, 2, 2, 2, 131, 1057, 3, 2, 2, 2, 133, 1063, 3, 2, 2, 2, 135, 1069, 3, 2, 2, 2, 137, 1074, 3, 2, 2, 2, 139, 1079, 3, 2, 2, 2, 141, 1086, 3, 2, 2, 2, 143, 1093, 3, 2, 2, 2, 145, 1099, 3, 2, 2, 2, 147, 1109, 3, 2, 2, 2, 149, 1114, 3, 2, 2, 2, 151, 1122, 3, 2, 2, 2, 153, 1129, 3, 2, 2, 2, 155, 1136, 3, 2, 2, 2, 157, 1141, 3, 2, 2, 2, 159, 1150, 3, 2, 2, 2, 161, 1158, 3, 2, 2, 2, 163, 1165, 3, 2, 2, 2, 165, 1173, 3, 2, 2, 2, 167, 1181, 3, 2, 2, 2, 169, 1186, 3, 2, 2, 2, 171, 1191, 3, 2, 2, 2, 173, 1196, 3, 2, 2, 2, 175, 1203, 3, 2, 2, 2, 177, 1211, 3, 2, 2, 2, 179, 1218, 3, 2, 2, 2, 181, 1222, 3, 2, 2, 2, 183, 1233, 3, 2, 2, 2, 185, 1243, 3, 2, 2, 2, 187, 1248, 3, 2, 2, 2, 189, 1254, 3, 2, 2, 2, 191, 1261, 3, 2, 2, 2, 193, 1270, 3, 2, 2, 2, 195, 1280, 3, 2, 2, 2, 197, 1283, 3, 2, 2, 2, 199, 1295, 3, 2, 2, 2, 201, 1304, 3, 2, 2, 2, 203, 1310, 3, 2, 2, 2, 205, 1317, 3, 2, 2, 2, 207, 1324, 3, 2, 2, 2, 209, 1332, 3, 2, 2, 2, 211, 1336, 3, 2, 2, 2, 213, 1342, 3, 2, 2, 2, 215, 1347, 3, 2, 2, 2, 217, 1353, 3, 2, 2, 2, 219, 1365, 3, 2, 2, 2, 221, 1372, 3, 2, 2, 2, 223, 1381, 3, 2, 2, 2, 225, 1387, 3, 2, 2, 2, 227, 1394, 3, 2, 2, 2, 229, 1399, 3, 2, 2, 2, 231, 1407, 3, 2, 2, 2, 233, 1416, 3, 2, 2, 2, 235, 1419, 3, 2, 2, 2, 237, 1428, 3, 2, 2, 2, 239, 1436, 3, 2, 2, 2, 241, 1439, 3, 2, 2, 2, 243, 1444, 3, 2, 2, 2, 245, 1448, 3, 2, 2, 2, 247, 1453, 3, 2, 2, 2, 249, 1456, 3, 2, 2, 2, 251, 1460, 3, 2, 2, 2, 253, 1463, 3, 2, 2, 2, 255, 1467, 3, 2, 2, 2, 257, 1472, 3, 2, 2, 2, 259, 1478, 3, 2, 2, 2, 261, 1487, 3, 2, 2, 2, 263, 1493, 3, 2, 2, 2, 265, 1501, 3, 2, 2, 2, 267, 1505, 3, 2, 2, 2, 269, 1511, 3, 2, 2, 2, 271, 1521, 3, 2, 2, 2, 273, 1526, 3, 2, 2, 2, 275, 1538, 3, 2, 2, 2, 277, 1542, 3, 2, 2, 2, 279, 1553, 3, 2, 2, 2, 281, 1560, 3, 2, 2, 2, 283, 1564, 3, 2, 2, 2, 285, 1567, 3, 2, 2, 2, 287, 1572, 3, 2, 2, 2, 289, 1580, 3, 2, 2, 2, 291, 1591, 3, 2, 2, 2, 293, 1601, 3, 2, 2, 2, 295, 1611, 3, 2, 2, 2, 297, 1618, 3, 2, 2, 2, 299, 1624, 3, 2, 2, 2, 301, 1630, 3, 2, 2, 2, 303, 1646, 3, 2, 2, 2, 305, 1659, 3, 2, 2, 2, 307, 1672, 3, 2, 2, 2, 309, 1682, 3, 2, 2, 2, 311, 1689, 3, 2, 2, 2, 313, 1700, 3, 2, 2, 2, 315, 1711, 3, 2, 2, 2, 317, 1717, 3, 2, 2, 2, 319, 1722, 3, 2, 2, 2, 321, 1730, 3, 2, 2, 2, 323, 1736, 3, 2, 2, 2, 325, 1746, 3, 2, 2, 2, 327, 1755, 3, 2, 2, 2, 329, 1764, 3, 2, 2, 2, 331, 1772, 3, 2, 2, 2, 333, 1778, 3, 2, 2, 2, 335, 1784, 3, 2, 2, 2, 337, 1792, 3, 2, 2, 2, 339, 1797, 3, 2, 2, 2, 341, 1807, 3, 2, 2, 2, 343, 1814, 3, 2, 2, 2, 345, 1824, 3, 2, 2, 2, 347, 1832, 3, 2, 2, 2, 349, 1838, 3, 2, 2, 2, 351, 1852, 3, 2, 2, 2, 353, 1865, 3, 2, 2, 2, 355, 1873, 3, 2, 2, 2, 357, 1880, 3, 2, 2, 2, 359, 1887, 3, 2, 2, 2, 361, 1899, 3, 2, 2, 2, 363, 1908, 3, 2, 2, 2, 365, 1917, 3, 2, 2, 2, 367, 1925, 3, 2, 2, 2, 369, 1935, 3, 2, 2, 2, 371, 1946, 3, 2, 2, 2, 373, 1952, 3, 2, 2, 2, 375, 1960, 3, 2, 2, 2, 377, 1972, 3, 2, 2, 2, 379, 1979, 3, 2, 2, 2, 381, 1987, 3, 2, 2, 2, 383, 1996, 3, 2, 2, 2, 385, 2006, 3, 2, 2, 2, 387, 2013, 3, 2, 2, 2, 389, 2019, 3, 2, 2, 2, 391, 2031, 3, 2, 2, 2, 393, 2044, 3, 2, 2, 2, 395, 2053, 3, 2, 2, 2, 397, 2063, 3, 2, 2, 2, 399, 2067, 3, 2, 2, 2, 401, 2076, 3, 2, 2, 2, 403, 2084, 3, 2, 2, 2, 405, 2092, 3, 2, 2, 2, 407, 2097, 3, 2, 2, 2, 409, 2108, 3, 2, 2, 2, 411, 2120, 3, 2, 2, 2, 413, 2129, 3, 2, 2, 2, 415, 2137, 3, 2, 2, 2, 417, 2144, 3, 2, 2, 2, 419, 2150, 3, 2, 2, 2, 421, 2155, 3, 2, 2, 2, 423, 2162, 3, 2, 2, 2, 425, 2167, 3, 2, 2, 2, 427, 2174, 3, 2, 2, 2, 429, 2182, 3, 2, 2, 2, 431, 2189, 3, 2, 2, 2, 433, 2196, 3, 2, 2, 2, 435, 2201, 3, 2, 2, 2, 437, 2206, 3, 2, 2, 2, 439, 2212, 3, 2, 2, 2, 441, 2224, 3, 2, 2, 2, 443, 2235, 3, 2, 2, 2, 445, 2248, 3, 2, 2, 2, 447, 2254, 3, 2, 2, 2, 449, 2262, 3, 2, 2, 2, 451, 2268, 3, 2, 2, 2, 453, 2275, 3, 2, 2, 2, 455, 2280, 3, 2, 2, 2, 457, 2286, 3, 2, 2, 2, 459, 2293, 3, 2, 2, 2, 461, 2303, 3, 2, 2, 2, 463, 2310, 3, 2, 2, 2, 465, 2326, 3, 2, 2, 2, 467, 2335, 3, 2, 2, 2, 469, 2339, 3, 2, 2, 2, 471, 2343, 3, 2, 2, 2, 473, 2349, 3, 2, 2, 2, 475, 2355, 3, 2, 2, 2, 477, 2360, 3, 2, 2, 2, 479, 2365, 3, 2, 2, 2, 481, 2373, 3, 2, 2, 2, 483, 2380, 3, 2, 2, 2, 485, 2387, 3, 2, 2, 2, 487, 2402, 3, 2, 2, 2, 489, 2419, 3, 2, 2, 2, 491, 2435, 3, 2, 2, 2, 493, 2449, 3, 2, 2, 2, 495, 2463, 3, 2, 2, 2, 497, 2478, 3, 2, 2, 2, 499, 2497, 3, 2, 2, 2, 501, 2508, 3, 2, 2, 2, 503, 2530, 3, 2, 2, 2, 505, 2545, 3, 2, 2, 2, 507, 2569, 3, 2, 2, 2, 509, 2587, 3, 2, 2, 2, 511, 2590, 3, 2, 2, 2, 513, 2603, 3, 2, 2, 2, 515, 2611, 3, 2, 2, 2, 517, 2619, 3, 2, 2, 2, 519, 2622, 3, 2, 2, 2, 521, 2624, 3, 2, 2, 2, 523, 2631, 3, 2, 2, 2, 525, 2638, 3, 2, 2, 2, 527, 2644, 3, 2, 2, 2, 529, 2648, 3, 2, 2, 2, 531, 2653, 3, 2, 2, 2, 533, 2661, 3, 2, 2, 2, 535, 2668, 3, 2, 2, 2, 537, 2678, 3, 2, 2, 2, 539, 2684, 3, 2, 2, 2, 541, 2692, 3, 2, 2, 2, 543, 2700, 3, 2, 2, 2, 545, 2709, 3, 2, 2, 2, 547, 2713, 3, 2, 2, 2, 549, 2720, 3, 2, 2, 2, 551, 2726, 3, 2, 2, 2, 553, 2733, 3, 2, 2, 2, 555, 2738, 3, 2, 2, 2, 557, 2743, 3, 2, 2, 2, 559, 2753, 3, 2, 2, 2, 561, 2762, 3, 2, 2, 2, 563, 2770, 3, 2, 2, 2, 565, 2774, 3, 2, 2, 2, 567, 2778, 3, 2, 2, 2, 569, 2783, 3, 2, 2, 2, 571, 2785, 3, 2, 2, 2, 573, 2787, 3, 2, 2, 2, 575, 2789, 3, 2, 2, 2, 577, 2791, 3, 2, 2, 2, 579, 2793, 3, 2, 2, 2, 581, 2795, 3, 2, 2, 2, 583, 2797, 3, 2, 2, 2, 585, 2799, 3, 2, 2, 2, 587, 2801, 3, 2, 2, 2, 589, 2803, 3, 2, 2, 2, 591, 2805, 3, 2, 2, 2, 593, 2807, 3, 2, 2, 2, 595, 2809, 3, 2, 2, 2, 597, 2811, 3, 2, 2, 2, 599, 2813, 3, 2, 2, 2, 601, 2815, 3, 2, 2, 2, 603, 2817, 3, 2, 2, 2, 605, 2819, 3, 2, 2, 2, 607, 2821, 3, 2, 2, 2, 609, 2823, 3, 2, 2, 2, 611, 2825, 3, 2, 2, 2, 613, 2827, 3, 2, 2, 2, 615, 2829, 3, 2, 2, 2, 617, 2831, 3, 2, 2, 2, 619, 2833, 3, 2, 2, 2, 621, 2835, 3, 2, 2, 2, 623, 2837, 3, 2, 2, 2, 625, 2839, 3, 2, 2, 2, 627, 2842, 3, 2, 2, 2, 629, 2847, 3, 2, 2, 2, 631, 2850, 3, 2, 2, 2, 633, 2897, 3, 2, 2, 2, 635, 2899, 3, 2, 2, 2, 637, 2904, 3, 2, 2, 2, 639, 2908, 3, 2, 2, 2, 641, 2920, 3, 2, 2, 2, 643, 2934, 3, 2, 2, 2, 645, 2936, 3, 2, 2, 2, 647, 2938, 3, 2, 2, 2, 649, 2951, 3, 2, 2, 2, 651, 2964, 3, 2, 2, 2, 653, 2973, 3, 2, 2, 2, 655, 657, 9, 2, 2, 2, 656, 655, 3, 2, 2, 2, 657, 658, 3, 2, 2, 2, 658, 656, 3, 2, 2, 2, 658, 659, 3, 2, 2, 2, 659, 660, 3, 2, 2, 2, 660, 661, 8, 2, 2, 2, 661, 4, 3, 2, 2, 2, 662, 663, 7, 49, 2, 2, 663, 664, 7, 44, 2, 2, 664, 668, 3, 2, 2, 2, 665, 667, 11, 2, 2, 2, 666, 665, 3, 2, 2, 2, 667, 670, 3, 2, 2, 2, 668, 669, 3, 2, 2, 2, 668, 666, 3, 2, 2, 2, 669, 671, 3, 2, 2, 2, 670, 668, 3, 2, 2, 2, 671, 672, 7, 44, 2, 2, 672, 673, 7, 49, 2, 2, 673, 674, 3, 2, 2, 2, 674, 675, 8, 3, 2, 2, 675, 6, 3, 2, 2, 2, 676, 677, 7, 47, 2, 2, 677, 678, 7, 47, 2, 2, 678, 681, 7, 34, 2, 2, 679, 681, 7, 37, 2, 2, 680, 676, 3, 2, 2, 2, 680, 679, 3, 2, 2, 2, 681, 685, 3, 2, 2, 2, 682, 684, 10, 3, 2, 2, 683, 682, 3, 2, 2, 2, 684, 687, 3, 2, 2, 2, 685, 683, 3, 2, 2, 2, 685, 686, 3, 2, 2, 2, 686, 693, 3, 2, 2, 2, 687, 685, 3, 2, 2, 2, 688, 690, 7, 15, 2, 2, 689, 688, 3, 2, 2, 2, 689, 690, 3, 2, 2, 2, 690, 691, 3, 2, 2, 2, 691, 694, 7, 12, 2, 2, 692, 694, 7, 2, 2, 3, 693, 689, 3, 2, 2, 2, 693, 692, 3, 2, 2, 2, 694, 706, 3, 2, 2, 2, 695, 696, 7, 47, 2, 2, 696, 697, 7, 47, 2, 2, 697, 703, 3, 2, 2, 2, 698, 700, 7, 15, 2, 2, 699, 698, 3, 2, 2, 2, 699, 700, 3, 2, 2, 2, 700, 701, 3, 2, 2, 2, 701, 704, 7, 12, 2, 2, 702, 704, 7, 2, 2, 3, 703, 699, 3, 2, 2, 2, 703, 702, 3, 2, 2, 2, 704, 706, 3, 2, 2, 2, 705, 680, 3, 2, 2, 2, 705, 695, 3, 2, 2, 2, 706, 707, 3, 2, 2, 2, 707, 708, 8, 4, 2, 2, 708, 8, 3, 2, 2, 2, 709, 710, 7, 85, 2, 2, 710, 711, 7, 71, 2, 2, 711, 712, 7, 78, 2, 2, 712, 713, 7, 71, 2, 2, 713, 714, 7, 69, 2, 2, 714, 715, 7, 86, 2, 2, 715, 10, 3, 2, 2, 2, 716, 717, 7, 72, 2, 2, 717, 718, 7, 84, 2, 2, 718, 719, 7, 81, 2, 2, 719, 720, 7, 79, 2, 2, 720, 12, 3, 2, 2, 2, 721, 722, 7, 67, 2, 2, 722, 723, 7, 70, 2, 2, 723, 724, 7, 70, 2, 2, 724, 14, 3, 2, 2, 2, 725, 726, 7, 67, 2, 2, 726, 727, 7, 85, 2, 2, 727, 16, 3, 2, 2, 2, 728, 729, 7, 67, 2, 2, 729, 730, 7, 78, 2, 2, 730, 731, 7, 78, 2, 2, 731, 18, 3, 2, 2, 2, 732, 733, 7, 67, 2, 2, 733, 734, 7, 80, 2, 2, 734, 735, 7, 91, 2, 2, 735, 20, 3, 2, 2, 2, 736, 737, 7, 70, 2, 2, 737, 738, 7, 75, 2, 2, 738, 739, 7, 85, 2, 2, 739, 740, 7, 86, 2, 2, 740, 741, 7, 75, 2, 2, 741, 742, 7, 80, 2, 2, 742, 743, 7, 69, 2, 2, 743, 744, 7, 86, 2, 2, 744, 22, 3, 2, 2, 2, 745, 746, 7, 89, 2, 2, 746, 747, 7, 74, 2, 2, 747, 748, 7, 71, 2, 2, 748, 749, 7, 84, 2, 2, 749, 750, 7, 71, 2, 2, 750, 24, 3, 2, 2, 2, 751, 752, 7, 73, 2, 2, 752, 753, 7, 84, 2, 2, 753, 754, 7, 81, 2, 2, 754, 755, 7, 87, 2, 2, 755, 756, 7, 82, 2, 2, 756, 26, 3, 2, 2, 2, 757, 758, 7, 68, 2, 2, 758, 759, 7, 91, 2, 2, 759, 28, 3, 2, 2, 2, 760, 761, 7, 73, 2, 2, 761, 762, 7, 84, 2, 2, 762, 763, 7, 81, 2, 2, 763, 764, 7, 87, 2, 2, 764, 765, 7, 82, 2, 2, 765, 766, 7, 75, 2, 2, 766, 767, 7, 80, 2, 2, 767, 768, 7, 73, 2, 2, 768, 30, 3, 2, 2, 2, 769, 770, 7, 85, 2, 2, 770, 771, 7, 71, 2, 2, 771, 772, 7, 86, 2, 2, 772, 773, 7, 85, 2, 2, 773, 32, 3, 2, 2, 2, 774, 775, 7, 69, 2, 2, 775, 776, 7, 87, 2, 2, 776, 777, 7, 68, 2, 2, 777, 778, 7, 71, 2, 2, 778, 34, 3, 2, 2, 2, 779, 780, 7, 84, 2, 2, 780, 781, 7, 81, 2, 2, 781, 782, 7, 78, 2, 2, 782, 783, 7, 78, 2, 2, 783, 784, 7, 87, 2, 2, 784, 785, 7, 82, 2, 2, 785, 36, 3, 2, 2, 2, 786, 787, 7, 81, 2, 2, 787, 788, 7, 84, 2, 2, 788, 789, 7, 70, 2, 2, 789, 790, 7, 71, 2, 2, 790, 791, 7, 84, 2, 2, 791, 38, 3, 2, 2, 2, 792, 793, 7, 74, 2, 2, 793, 794, 7, 67, 2, 2, 794, 795, 7, 88, 2, 2, 795, 796, 7, 75, 2, 2, 796, 797, 7, 80, 2, 2, 797, 798, 7, 73, 2, 2, 798, 40, 3, 2, 2, 2, 799, 800, 7, 78, 2, 2, 800, 801, 7, 75, 2, 2, 801, 802, 7, 79, 2, 2, 802, 803, 7, 75, 2, 2, 803, 804, 7, 86, 2, 2, 804, 42, 3, 2, 2, 2, 805, 806, 7, 67, 2, 2, 806, 807, 7, 86, 2, 2, 807, 44, 3, 2, 2, 2, 808, 809, 7, 81, 2, 2, 809, 810, 7, 84, 2, 2, 810, 46, 3, 2, 2, 2, 811, 812, 7, 67, 2, 2, 812, 813, 7, 80, 2, 2, 813, 814, 7, 70, 2, 2, 814, 48, 3, 2, 2, 2, 815, 816, 7, 75, 2, 2, 816, 817, 7, 80, 2, 2, 817, 50, 3, 2, 2, 2, 818, 819, 7, 80, 2, 2, 819, 820, 7, 81, 2, 2, 820, 821, 7, 86, 2, 2, 821, 52, 3, 2, 2, 2, 822, 823, 7, 80, 2, 2, 823, 824, 7, 81, 2, 2, 824, 54, 3, 2, 2, 2, 825, 826, 7, 71, 2, 2, 826, 827, 7, 90, 2, 2, 827, 828, 7, 75, 2, 2, 828, 829, 7, 85, 2, 2, 829, 830, 7, 86, 2, 2, 830, 831, 7, 85, 2, 2, 831, 56, 3, 2, 2, 2, 832, 833, 7, 68, 2, 2, 833, 834, 7, 71, 2, 2, 834, 835, 7, 86, 2, 2, 835, 836, 7, 89, 2, 2, 836, 837, 7, 71, 2, 2, 837, 838, 7, 71, 2, 2, 838, 839, 7, 80, 2, 2, 839, 58, 3, 2, 2, 2, 840, 841, 7, 78, 2, 2, 841, 842, 7, 75, 2, 2, 842, 843, 7, 77, 2, 2, 843, 844, 7, 71, 2, 2, 844, 60, 3, 2, 2, 2, 845, 846, 7, 84, 2, 2, 846, 847, 7, 78, 2, 2, 847, 848, 7, 75, 2, 2, 848, 849, 7, 77, 2, 2, 849, 850, 7, 71, 2, 2, 850, 62, 3, 2, 2, 2, 851, 852, 7, 75, 2, 2, 852, 853, 7, 85, 2, 2, 853, 64, 3, 2, 2, 2, 854, 855, 7, 86, 2, 2, 855, 856, 7, 84, 2, 2, 856, 857, 7, 87, 2, 2, 857, 858, 7, 71, 2, 2, 858, 66, 3, 2, 2, 2, 859, 860, 7, 72, 2, 2, 860, 861, 7, 67, 2, 2, 861, 862, 7, 78, 2, 2, 862, 863, 7, 85, 2, 2, 863, 864, 7, 71, 2, 2, 864, 68, 3, 2, 2, 2, 865, 866, 7, 80, 2, 2, 866, 867, 7, 87, 2, 2, 867, 868, 7, 78, 2, 2, 868, 869, 7, 78, 2, 2, 869, 870, 7, 85, 2, 2, 870, 70, 3, 2, 2, 2, 871, 872, 7, 67, 2, 2, 872, 873, 7, 85, 2, 2, 873, 874, 7, 69, 2, 2, 874, 72, 3, 2, 2, 2, 875, 876, 7, 70, 2, 2, 876, 877, 7, 71, 2, 2, 877, 878, 7, 85, 2, 2, 878, 879, 7, 69, 2, 2, 879, 74, 3, 2, 2, 2, 880, 881, 7, 72, 2, 2, 881, 882, 7, 81, 2, 2, 882, 883, 7, 84, 2, 2, 883, 76, 3, 2, 2, 2, 884, 885, 7, 75, 2, 2, 885, 886, 7, 80, 2, 2, 886, 887, 7, 86, 2, 2, 887, 888, 7, 71, 2, 2, 888, 889, 7, 84, 2, 2, 889, 890, 7, 88, 2, 2, 890, 891, 7, 67, 2, 2, 891, 892, 7, 78, 2, 2, 892, 78, 3, 2, 2, 2, 893, 894, 7, 69, 2, 2, 894, 895, 7, 67, 2, 2, 895, 896, 7, 85, 2, 2, 896, 897, 7, 71, 2, 2, 897, 80, 3, 2, 2, 2, 898, 899, 7, 89, 2, 2, 899, 900, 7, 74, 2, 2, 900, 901, 7, 71, 2, 2, 901, 902, 7, 80, 2, 2, 902, 82, 3, 2, 2, 2, 903, 904, 7, 86, 2, 2, 904, 905, 7, 74, 2, 2, 905, 906, 7, 71, 2, 2, 906, 907, 7, 80, 2, 2, 907, 84, 3, 2, 2, 2, 908, 909, 7, 71, 2, 2, 909, 910, 7, 78, 2, 2, 910, 911, 7, 85, 2, 2, 911, 912, 7, 71, 2, 2, 912, 86, 3, 2, 2, 2, 913, 914, 7, 71, 2, 2, 914, 915, 7, 80, 2, 2, 915, 916, 7, 70, 2, 2, 916, 88, 3, 2, 2, 2, 917, 918, 7, 76, 2, 2, 918, 919, 7, 81, 2, 2, 919, 920, 7, 75, 2, 2, 920, 921, 7, 80, 2, 2, 921, 90, 3, 2, 2, 2, 922, 923, 7, 69, 2, 2, 923, 924, 7, 84, 2, 2, 924, 925, 7, 81, 2, 2, 925, 926, 7, 85, 2, 2, 926, 927, 7, 85, 2, 2, 927, 92, 3, 2, 2, 2, 928, 929, 7, 81, 2, 2, 929, 930, 7, 87, 2, 2, 930, 931, 7, 86, 2, 2, 931, 932, 7, 71, 2, 2, 932, 933, 7, 84, 2, 2, 933, 94, 3, 2, 2, 2, 934, 935, 7, 75, 2, 2, 935, 936, 7, 80, 2, 2, 936, 937, 7, 80, 2, 2, 937, 938, 7, 71, 2, 2, 938, 939, 7, 84, 2, 2, 939, 96, 3, 2, 2, 2, 940, 941, 7, 78, 2, 2, 941, 942, 7, 71, 2, 2, 942, 943, 7, 72, 2, 2, 943, 944, 7, 86, 2, 2, 944, 98, 3, 2, 2, 2, 945, 946, 7, 85, 2, 2, 946, 947, 7, 71, 2, 2, 947, 948, 7, 79, 2, 2, 948, 949, 7, 75, 2, 2, 949, 100, 3, 2, 2, 2, 950, 951, 7, 84, 2, 2, 951, 952, 7, 75, 2, 2, 952, 953, 7, 73, 2, 2, 953, 954, 7, 74, 2, 2, 954, 955, 7, 86, 2, 2, 955, 102, 3, 2, 2, 2, 956, 957, 7, 72, 2, 2, 957, 958, 7, 87, 2, 2, 958, 959, 7, 78, 2, 2, 959, 960, 7, 78, 2, 2, 960, 104, 3, 2, 2, 2, 961, 962, 7, 80, 2, 2, 962, 963, 7, 67, 2, 2, 963, 964, 7, 86, 2, 2, 964, 965, 7, 87, 2, 2, 965, 966, 7, 84, 2, 2, 966, 967, 7, 67, 2, 2, 967, 968, 7, 78, 2, 2, 968, 106, 3, 2, 2, 2, 969, 970, 7, 81, 2, 2, 970, 971, 7, 80, 2, 2, 971, 108, 3, 2, 2, 2, 972, 973, 7, 82, 2, 2, 973, 974, 7, 75, 2, 2, 974, 975, 7, 88, 2, 2, 975, 976, 7, 81, 2, 2, 976, 977, 7, 86, 2, 2, 977, 110, 3, 2, 2, 2, 978, 979, 7, 78, 2, 2, 979, 980, 7, 67, 2, 2, 980, 981, 7, 86, 2, 2, 981, 982, 7, 71, 2, 2, 982, 983, 7, 84, 2, 2, 983, 984, 7, 67, 2, 2, 984, 985, 7, 78, 2, 2, 985, 112, 3, 2, 2, 2, 986, 987, 7, 89, 2, 2, 987, 988, 7, 75, 2, 2, 988, 989, 7, 80, 2, 2, 989, 990, 7, 70, 2, 2, 990, 991, 7, 81, 2, 2, 991, 992, 7, 89, 2, 2, 992, 114, 3, 2, 2, 2, 993, 994, 7, 81, 2, 2, 994, 995, 7, 88, 2, 2, 995, 996, 7, 71, 2, 2, 996, 997, 7, 84, 2, 2, 997, 116, 3, 2, 2, 2, 998, 999, 7, 82, 2, 2, 999, 1000, 7, 67, 2, 2, 1000, 1001, 7, 84, 2, 2, 1001, 1002, 7, 86, 2, 2, 1002, 1003, 7, 75, 2, 2, 1003, 1004, 7, 86, 2, 2, 1004, 1005, 7, 75, 2, 2, 1005, 1006, 7, 81, 2, 2, 1006, 1007, 7, 80, 2, 2, 1007, 118, 3, 2, 2, 2, 1008, 1009, 7, 84, 2, 2, 1009, 1010, 7, 67, 2, 2, 1010, 1011, 7, 80, 2, 2, 1011, 1012, 7, 73, 2, 2, 1012, 1013, 7, 71, 2, 2, 1013, 120, 3, 2, 2, 2, 1014, 1015, 7, 84, 2, 2, 1015, 1016, 7, 81, 2, 2, 1016, 1017, 7, 89, 2, 2, 1017, 1018, 7, 85, 2, 2, 1018, 122, 3, 2, 2, 2, 1019, 1020, 7, 87, 2, 2, 1020, 1021, 7, 80, 2, 2, 1021, 1022, 7, 68, 2, 2, 1022, 1023, 7, 81, 2, 2, 1023, 1024, 7, 87, 2, 2, 1024, 1025, 7, 80, 2, 2, 1025, 1026, 7, 70, 2, 2, 1026, 1027, 7, 71, 2, 2, 1027, 1028, 7, 70, 2, 2, 1028, 124, 3, 2, 2, 2, 1029, 1030, 7, 82, 2, 2, 1030, 1031, 7, 84, 2, 2, 1031, 1032, 7, 71, 2, 2, 1032, 1033, 7, 69, 2, 2, 1033, 1034, 7, 71, 2, 2, 1034, 1035, 7, 70, 2, 2, 1035, 1036, 7, 75, 2, 2, 1036, 1037, 7, 80, 2, 2, 1037, 1038, 7, 73, 2, 2, 1038, 126, 3, 2, 2, 2, 1039, 1040, 7, 72, 2, 2, 1040, 1041, 7, 81, 2, 2, 1041, 1042, 7, 78, 2, 2, 1042, 1043, 7, 78, 2, 2, 1043, 1044, 7, 81, 2, 2, 1044, 1045, 7, 89, 2, 2, 1045, 1046, 7, 75, 2, 2, 1046, 1047, 7, 80, 2, 2, 1047, 1048, 7, 73, 2, 2, 1048, 128, 3, 2, 2, 2, 1049, 1050, 7, 69, 2, 2, 1050, 1051, 7, 87, 2, 2, 1051, 1052, 7, 84, 2, 2, 1052, 1053, 7, 84, 2, 2, 1053, 1054, 7, 71, 2, 2, 1054, 1055, 7, 80, 2, 2, 1055, 1056, 7, 86, 2, 2, 1056, 130, 3, 2, 2, 2, 1057, 1058, 7, 72, 2, 2, 1058, 1059, 7, 75, 2, 2, 1059, 1060, 7, 84, 2, 2, 1060, 1061, 7, 85, 2, 2, 1061, 1062, 7, 86, 2, 2, 1062, 132, 3, 2, 2, 2, 1063, 1064, 7, 67, 2, 2, 1064, 1065, 7, 72, 2, 2, 1065, 1066, 7, 86, 2, 2, 1066, 1067, 7, 71, 2, 2, 1067, 1068, 7, 84, 2, 2, 1068, 134, 3, 2, 2, 2, 1069, 1070, 7, 78, 2, 2, 1070, 1071, 7, 67, 2, 2, 1071, 1072, 7, 85, 2, 2, 1072, 1073, 7, 86, 2, 2, 1073, 136, 3, 2, 2, 2, 1074, 1075, 7, 89, 2, 2, 1075, 1076, 7, 75, 2, 2, 1076, 1077, 7, 86, 2, 2, 1077, 1078, 7, 74, 2, 2, 1078, 138, 3, 2, 2, 2, 1079, 1080, 7, 88, 2, 2, 1080, 1081, 7, 67, 2, 2, 1081, 1082, 7, 78, 2, 2, 1082, 1083, 7, 87, 2, 2, 1083, 1084, 7, 71, 2, 2, 1084, 1085, 7, 85, 2, 2, 1085, 140, 3, 2, 2, 2, 1086, 1087, 7, 69, 2, 2, 1087, 1088, 7, 84, 2, 2, 1088, 1089, 7, 71, 2, 2, 1089, 1090, 7, 67, 2, 2, 1090, 1091, 7, 86, 2, 2, 1091, 1092, 7, 71, 2, 2, 1092, 142, 3, 2, 2, 2, 1093, 1094, 7, 86, 2, 2, 1094, 1095, 7, 67, 2, 2, 1095, 1096, 7, 68, 2, 2, 1096, 1097, 7, 78, 2, 2, 1097, 1098, 7, 71, 2, 2, 1098, 144, 3, 2, 2, 2, 1099, 1100, 7, 70, 2, 2, 1100, 1101, 7, 75, 2, 2, 1101, 1102, 7, 84, 2, 2, 1102, 1103, 7, 71, 2, 2, 1103, 1104, 7, 69, 2, 2, 1104, 1105, 7, 86, 2, 2, 1105, 1106, 7, 81, 2, 2, 1106, 1107, 7, 84, 2, 2, 1107, 1108, 7, 91, 2, 2, 1108, 146, 3, 2, 2, 2, 1109, 1110, 7, 88, 2, 2, 1110, 1111, 7, 75, 2, 2, 1111, 1112, 7, 71, 2, 2, 1112, 1113, 7, 89, 2, 2, 1113, 148, 3, 2, 2, 2, 1114, 1115, 7, 84, 2, 2, 1115, 1116, 7, 71, 2, 2, 1116, 1117, 7, 82, 2, 2, 1117, 1118, 7, 78, 2, 2, 1118, 1119, 7, 67, 2, 2, 1119, 1120, 7, 69, 2, 2, 1120, 1121, 7, 71, 2, 2, 1121, 150, 3, 2, 2, 2, 1122, 1123, 7, 75, 2, 2, 1123, 1124, 7, 80, 2, 2, 1124, 1125, 7, 85, 2, 2, 1125, 1126, 7, 71, 2, 2, 1126, 1127, 7, 84, 2, 2, 1127, 1128, 7, 86, 2, 2, 1128, 152, 3, 2, 2, 2, 1129, 1130, 7, 70, 2, 2, 1130, 1131, 7, 71, 2, 2, 1131, 1132, 7, 78, 2, 2, 1132, 1133, 7, 71, 2, 2, 1133, 1134, 7, 86, 2, 2, 1134, 1135, 7, 71, 2, 2, 1135, 154, 3, 2, 2, 2, 1136, 1137, 7, 75, 2, 2, 1137, 1138, 7, 80, 2, 2, 1138, 1139, 7, 86, 2, 2, 1139, 1140, 7, 81, 2, 2, 1140, 156, 3, 2, 2, 2, 1141, 1142, 7, 70, 2, 2, 1142, 1143, 7, 71, 2, 2, 1143, 1144, 7, 85, 2, 2, 1144, 1145, 7, 69, 2, 2, 1145, 1146, 7, 84, 2, 2, 1146, 1147, 7, 75, 2, 2, 1147, 1148, 7, 68, 2, 2, 1148, 1149, 7, 71, 2, 2, 1149, 158, 3, 2, 2, 2, 1150, 1151, 7, 71, 2, 2, 1151, 1152, 7, 90, 2, 2, 1152, 1153, 7, 82, 2, 2, 1153, 1154, 7, 78, 2, 2, 1154, 1155, 7, 67, 2, 2, 1155, 1156, 7, 75, 2, 2, 1156, 1157, 7, 80, 2, 2, 1157, 160, 3, 2, 2, 2, 1158, 1159, 7, 72, 2, 2, 1159, 1160, 7, 81, 2, 2, 1160, 1161, 7, 84, 2, 2, 1161, 1162, 7, 79, 2, 2, 1162, 1163, 7, 67, 2, 2, 1163, 1164, 7, 86, 2, 2, 1164, 162, 3, 2, 2, 2, 1165, 1166, 7, 78, 2, 2, 1166, 1167, 7, 81, 2, 2, 1167, 1168, 7, 73, 2, 2, 1168, 1169, 7, 75, 2, 2, 1169, 1170, 7, 69, 2, 2, 1170, 1171, 7, 67, 2, 2, 1171, 1172, 7, 78, 2, 2, 1172, 164, 3, 2, 2, 2, 1173, 1174, 7, 69, 2, 2, 1174, 1175, 7, 81, 2, 2, 1175, 1176, 7, 70, 2, 2, 1176, 1177, 7, 71, 2, 2, 1177, 1178, 7, 73, 2, 2, 1178, 1179, 7, 71, 2, 2, 1179, 1180, 7, 80, 2, 2, 1180, 166, 3, 2, 2, 2, 1181, 1182, 7, 69, 2, 2, 1182, 1183, 7, 81, 2, 2, 1183, 1184, 7, 85, 2, 2, 1184, 1185, 7, 86, 2, 2, 1185, 168, 3, 2, 2, 2, 1186, 1187, 7, 69, 2, 2, 1187, 1188, 7, 67, 2, 2, 1188, 1189, 7, 85, 2, 2, 1189, 1190, 7, 86, 2, 2, 1190, 170, 3, 2, 2, 2, 1191, 1192, 7, 85, 2, 2, 1192, 1193, 7, 74, 2, 2, 1193, 1194, 7, 81, 2, 2, 1194, 1195, 7, 89, 2, 2, 1195, 172, 3, 2, 2, 2, 1196, 1197, 7, 86, 2, 2, 1197, 1198, 7, 67, 2, 2, 1198, 1199, 7, 68, 2, 2, 1199, 1200, 7, 78, 2, 2, 1200, 1201, 7, 71, 2, 2, 1201, 1202, 7, 85, 2, 2, 1202, 174, 3, 2, 2, 2, 1203, 1204, 7, 69, 2, 2, 1204, 1205, 7, 81, 2, 2, 1205, 1206, 7, 78, 2, 2, 1206, 1207, 7, 87, 2, 2, 1207, 1208, 7, 79, 2, 2, 1208, 1209, 7, 80, 2, 2, 1209, 1210, 7, 85, 2, 2, 1210, 176, 3, 2, 2, 2, 1211, 1212, 7, 69, 2, 2, 1212, 1213, 7, 81, 2, 2, 1213, 1214, 7, 78, 2, 2, 1214, 1215, 7, 87, 2, 2, 1215, 1216, 7, 79, 2, 2, 1216, 1217, 7, 80, 2, 2, 1217, 178, 3, 2, 2, 2, 1218, 1219, 7, 87, 2, 2, 1219, 1220, 7, 85, 2, 2, 1220, 1221, 7, 71, 2, 2, 1221, 180, 3, 2, 2, 2, 1222, 1223, 7, 82, 2, 2, 1223, 1224, 7, 67, 2, 2, 1224, 1225, 7, 84, 2, 2, 1225, 1226, 7, 86, 2, 2, 1226, 1227, 7, 75, 2, 2, 1227, 1228, 7, 86, 2, 2, 1228, 1229, 7, 75, 2, 2, 1229, 1230, 7, 81, 2, 2, 1230, 1231, 7, 80, 2, 2, 1231, 1232, 7, 85, 2, 2, 1232, 182, 3, 2, 2, 2, 1233, 1234, 7, 72, 2, 2, 1234, 1235, 7, 87, 2, 2, 1235, 1236, 7, 80, 2, 2, 1236, 1237, 7, 69, 2, 2, 1237, 1238, 7, 86, 2, 2, 1238, 1239, 7, 75, 2, 2, 1239, 1240, 7, 81, 2, 2, 1240, 1241, 7, 80, 2, 2, 1241, 1242, 7, 85, 2, 2, 1242, 184, 3, 2, 2, 2, 1243, 1244, 7, 70, 2, 2, 1244, 1245, 7, 84, 2, 2, 1245, 1246, 7, 81, 2, 2, 1246, 1247, 7, 82, 2, 2, 1247, 186, 3, 2, 2, 2, 1248, 1249, 7, 87, 2, 2, 1249, 1250, 7, 80, 2, 2, 1250, 1251, 7, 75, 2, 2, 1251, 1252, 7, 81, 2, 2, 1252, 1253, 7, 80, 2, 2, 1253, 188, 3, 2, 2, 2, 1254, 1255, 7, 71, 2, 2, 1255, 1256, 7, 90, 2, 2, 1256, 1257, 7, 69, 2, 2, 1257, 1258, 7, 71, 2, 2, 1258, 1259, 7, 82, 2, 2, 1259, 1260, 7, 86, 2, 2, 1260, 190, 3, 2, 2, 2, 1261, 1262, 7, 85, 2, 2, 1262, 1263, 7, 71, 2, 2, 1263, 1264, 7, 86, 2, 2, 1264, 1265, 7, 79, 2, 2, 1265, 1266, 7, 75, 2, 2, 1266, 1267, 7, 80, 2, 2, 1267, 1268, 7, 87, 2, 2, 1268, 1269, 7, 85, 2, 2, 1269, 192, 3, 2, 2, 2, 1270, 1271, 7, 75, 2, 2, 1271, 1272, 7, 80, 2, 2, 1272, 1273, 7, 86, 2, 2, 1273, 1274, 7, 71, 2, 2, 1274, 1275, 7, 84, 2, 2, 1275, 1276, 7, 85, 2, 2, 1276, 1277, 7, 71, 2, 2, 1277, 1278, 7, 69, 2, 2, 1278, 1279, 7, 86, 2, 2, 1279, 194, 3, 2, 2, 2, 1280, 1281, 7, 86, 2, 2, 1281, 1282, 7, 81, 2, 2, 1282, 196, 3, 2, 2, 2, 1283, 1284, 7, 86, 2, 2, 1284, 1285, 7, 67, 2, 2, 1285, 1286, 7, 68, 2, 2, 1286, 1287, 7, 78, 2, 2, 1287, 1288, 7, 71, 2, 2, 1288, 1289, 7, 85, 2, 2, 1289, 1290, 7, 67, 2, 2, 1290, 1291, 7, 79, 2, 2, 1291, 1292, 7, 82, 2, 2, 1292, 1293, 7, 78, 2, 2, 1293, 1294, 7, 71, 2, 2, 1294, 198, 3, 2, 2, 2, 1295, 1296, 7, 85, 2, 2, 1296, 1297, 7, 86, 2, 2, 1297, 1298, 7, 84, 2, 2, 1298, 1299, 7, 67, 2, 2, 1299, 1300, 7, 86, 2, 2, 1300, 1301, 7, 75, 2, 2, 1301, 1302, 7, 72, 2, 2, 1302, 1303, 7, 91, 2, 2, 1303, 200, 3, 2, 2, 2, 1304, 1305, 7, 67, 2, 2, 1305, 1306, 7, 78, 2, 2, 1306, 1307, 7, 86, 2, 2, 1307, 1308, 7, 71, 2, 2, 1308, 1309, 7, 84, 2, 2, 1309, 202, 3, 2, 2, 2, 1310, 1311, 7, 84, 2, 2, 1311, 1312, 7, 71, 2, 2, 1312, 1313, 7, 80, 2, 2, 1313, 1314, 7, 67, 2, 2, 1314, 1315, 7, 79, 2, 2, 1315, 1316, 7, 71, 2, 2, 1316, 204, 3, 2, 2, 2, 1317, 1318, 7, 85, 2, 2, 1318, 1319, 7, 86, 2, 2, 1319, 1320, 7, 84, 2, 2, 1320, 1321, 7, 87, 2, 2, 1321, 1322, 7, 69, 2, 2, 1322, 1323, 7, 86, 2, 2, 1323, 206, 3, 2, 2, 2, 1324, 1325, 7, 69, 2, 2, 1325, 1326, 7, 81, 2, 2, 1326, 1327, 7, 79, 2, 2, 1327, 1328, 7, 79, 2, 2, 1328, 1329, 7, 71, 2, 2, 1329, 1330, 7, 80, 2, 2, 1330, 1331, 7, 86, 2, 2, 1331, 208, 3, 2, 2, 2, 1332, 1333, 7, 85, 2, 2, 1333, 1334, 7, 71, 2, 2, 1334, 1335, 7, 86, 2, 2, 1335, 210, 3, 2, 2, 2, 1336, 1337, 7, 84, 2, 2, 1337, 1338, 7, 71, 2, 2, 1338, 1339, 7, 85, 2, 2, 1339, 1340, 7, 71, 2, 2, 1340, 1341, 7, 86, 2, 2, 1341, 212, 3, 2, 2, 2, 1342, 1343, 7, 70, 2, 2, 1343, 1344, 7, 67, 2, 2, 1344, 1345, 7, 86, 2, 2, 1345, 1346, 7, 67, 2, 2, 1346, 214, 3, 2, 2, 2, 1347, 1348, 7, 85, 2, 2, 1348, 1349, 7, 86, 2, 2, 1349, 1350, 7, 67, 2, 2, 1350, 1351, 7, 84, 2, 2, 1351, 1352, 7, 86, 2, 2, 1352, 216, 3, 2, 2, 2, 1353, 1354, 7, 86, 2, 2, 1354, 1355, 7, 84, 2, 2, 1355, 1356, 7, 67, 2, 2, 1356, 1357, 7, 80, 2, 2, 1357, 1358, 7, 85, 2, 2, 1358, 1359, 7, 67, 2, 2, 1359, 1360, 7, 69, 2, 2, 1360, 1361, 7, 86, 2, 2, 1361, 1362, 7, 75, 2, 2, 1362, 1363, 7, 81, 2, 2, 1363, 1364, 7, 80, 2, 2, 1364, 218, 3, 2, 2, 2, 1365, 1366, 7, 69, 2, 2, 1366, 1367, 7, 81, 2, 2, 1367, 1368, 7, 79, 2, 2, 1368, 1369, 7, 79, 2, 2, 1369, 1370, 7, 75, 2, 2, 1370, 1371, 7, 86, 2, 2, 1371, 220, 3, 2, 2, 2, 1372, 1373, 7, 84, 2, 2, 1373, 1374, 7, 81, 2, 2, 1374, 1375, 7, 78, 2, 2, 1375, 1376, 7, 78, 2, 2, 1376, 1377, 7, 68, 2, 2, 1377, 1378, 7, 67, 2, 2, 1378, 1379, 7, 69, 2, 2, 1379, 1380, 7, 77, 2, 2, 1380, 222, 3, 2, 2, 2, 1381, 1382, 7, 79, 2, 2, 1382, 1383, 7, 67, 2, 2, 1383, 1384, 7, 69, 2, 2, 1384, 1385, 7, 84, 2, 2, 1385, 1386, 7, 81, 2, 2, 1386, 224, 3, 2, 2, 2, 1387, 1388, 7, 75, 2, 2, 1388, 1389, 7, 73, 2, 2, 1389, 1390, 7, 80, 2, 2, 1390, 1391, 7, 81, 2, 2, 1391, 1392, 7, 84, 2, 2, 1392, 1393, 7, 71, 2, 2, 1393, 226, 3, 2, 2, 2, 1394, 1395, 7, 68, 2, 2, 1395, 1396, 7, 81, 2, 2, 1396, 1397, 7, 86, 2, 2, 1397, 1398, 7, 74, 2, 2, 1398, 228, 3, 2, 2, 2, 1399, 1400, 7, 78, 2, 2, 1400, 1401, 7, 71, 2, 2, 1401, 1402, 7, 67, 2, 2, 1402, 1403, 7, 70, 2, 2, 1403, 1404, 7, 75, 2, 2, 1404, 1405, 7, 80, 2, 2, 1405, 1406, 7, 73, 2, 2, 1406, 230, 3, 2, 2, 2, 1407, 1408, 7, 86, 2, 2, 1408, 1409, 7, 84, 2, 2, 1409, 1410, 7, 67, 2, 2, 1410, 1411, 7, 75, 2, 2, 1411, 1412, 7, 78, 2, 2, 1412, 1413, 7, 75, 2, 2, 1413, 1414, 7, 80, 2, 2, 1414, 1415, 7, 73, 2, 2, 1415, 232, 3, 2, 2, 2, 1416, 1417, 7, 75, 2, 2, 1417, 1418, 7, 72, 2, 2, 1418, 234, 3, 2, 2, 2, 1419, 1420, 7, 82, 2, 2, 1420, 1421, 7, 81, 2, 2, 1421, 1422, 7, 85, 2, 2, 1422, 1423, 7, 75, 2, 2, 1423, 1424, 7, 86, 2, 2, 1424, 1425, 7, 75, 2, 2, 1425, 1426, 7, 81, 2, 2, 1426, 1427, 7, 80, 2, 2, 1427, 236, 3, 2, 2, 2, 1428, 1429, 7, 71, 2, 2, 1429, 1430, 7, 90, 2, 2, 1430, 1431, 7, 86, 2, 2, 1431, 1432, 7, 84, 2, 2, 1432, 1433, 7, 67, 2, 2, 1433, 1434, 7, 69, 2, 2, 1434, 1435, 7, 86, 2, 2, 1435, 238, 3, 2, 2, 2, 1436, 1437, 7, 71, 2, 2, 1437, 1438, 7, 83, 2, 2, 1438, 240, 3, 2, 2, 2, 1439, 1440, 7, 80, 2, 2, 1440, 1441, 7, 85, 2, 2, 1441, 1442, 7, 71, 2, 2, 1442, 1443, 7, 83, 2, 2, 1443, 242, 3, 2, 2, 2, 1444, 1445, 7, 80, 2, 2, 1445, 1446, 7, 71, 2, 2, 1446, 1447, 7, 83, 2, 2, 1447, 244, 3, 2, 2, 2, 1448, 1449, 7, 80, 2, 2, 1449, 1450, 7, 71, 2, 2, 1450, 1451, 7, 83, 2, 2, 1451, 1452, 7, 76, 2, 2, 1452, 246, 3, 2, 2, 2, 1453, 1454, 7, 78, 2, 2, 1454, 1455, 7, 86, 2, 2, 1455, 248, 3, 2, 2, 2, 1456, 1457, 7, 78, 2, 2, 1457, 1458, 7, 86, 2, 2, 1458, 1459, 7, 71, 2, 2, 1459, 250, 3, 2, 2, 2, 1460, 1461, 7, 73, 2, 2, 1461, 1462, 7, 86, 2, 2, 1462, 252, 3, 2, 2, 2, 1463, 1464, 7, 73, 2, 2, 1464, 1465, 7, 86, 2, 2, 1465, 1466, 7, 71, 2, 2, 1466, 254, 3, 2, 2, 2, 1467, 1468, 7, 82, 2, 2, 1468, 1469, 7, 78, 2, 2, 1469, 1470, 7, 87, 2, 2, 1470, 1471, 7, 85, 2, 2, 1471, 256, 3, 2, 2, 2, 1472, 1473, 7, 79, 2, 2, 1473, 1474, 7, 75, 2, 2, 1474, 1475, 7, 80, 2, 2, 1475, 1476, 7, 87, 2, 2, 1476, 1477, 7, 85, 2, 2, 1477, 258, 3, 2, 2, 2, 1478, 1479, 7, 67, 2, 2, 1479, 1480, 7, 85, 2, 2, 1480, 1481, 7, 86, 2, 2, 1481, 1482, 7, 71, 2, 2, 1482, 1483, 7, 84, 2, 2, 1483, 1484, 7, 75, 2, 2, 1484, 1485, 7, 85, 2, 2, 1485, 1486, 7, 77, 2, 2, 1486, 260, 3, 2, 2, 2, 1487, 1488, 7, 85, 2, 2, 1488, 1489, 7, 78, 2, 2, 1489, 1490, 7, 67, 2, 2, 1490, 1491, 7, 85, 2, 2, 1491, 1492, 7, 74, 2, 2, 1492, 262, 3, 2, 2, 2, 1493, 1494, 7, 82, 2, 2, 1494, 1495, 7, 71, 2, 2, 1495, 1496, 7, 84, 2, 2, 1496, 1497, 7, 69, 2, 2, 1497, 1498, 7, 71, 2, 2, 1498, 1499, 7, 80, 2, 2, 1499, 1500, 7, 86, 2, 2, 1500, 264, 3, 2, 2, 2, 1501, 1502, 7, 70, 2, 2, 1502, 1503, 7, 75, 2, 2, 1503, 1504, 7, 88, 2, 2, 1504, 266, 3, 2, 2, 2, 1505, 1506, 7, 86, 2, 2, 1506, 1507, 7, 75, 2, 2, 1507, 1508, 7, 78, 2, 2, 1508, 1509, 7, 70, 2, 2, 1509, 1510, 7, 71, 2, 2, 1510, 268, 3, 2, 2, 2, 1511, 1512, 7, 67, 2, 2, 1512, 1513, 7, 79, 2, 2, 1513, 1514, 7, 82, 2, 2, 1514, 1515, 7, 71, 2, 2, 1515, 1516, 7, 84, 2, 2, 1516, 1517, 7, 85, 2, 2, 1517, 1518, 7, 67, 2, 2, 1518, 1519, 7, 80, 2, 2, 1519, 1520, 7, 70, 2, 2, 1520, 270, 3, 2, 2, 2, 1521, 1522, 7, 82, 2, 2, 1522, 1523, 7, 75, 2, 2, 1523, 1524, 7, 82, 2, 2, 1524, 1525, 7, 71, 2, 2, 1525, 272, 3, 2, 2, 2, 1526, 1527, 7, 69, 2, 2, 1527, 1528, 7, 81, 2, 2, 1528, 1529, 7, 80, 2, 2, 1529, 1530, 7, 69, 2, 2, 1530, 1531, 7, 67, 2, 2, 1531, 1532, 7, 86, 2, 2, 1532, 1533, 7, 97, 2, 2, 1533, 1534, 7, 82, 2, 2, 1534, 1535, 7, 75, 2, 2, 1535, 1536, 7, 82, 2, 2, 1536, 1537, 7, 71, 2, 2, 1537, 274, 3, 2, 2, 2, 1538, 1539, 7, 74, 2, 2, 1539, 1540, 7, 67, 2, 2, 1540, 1541, 7, 86, 2, 2, 1541, 276, 3, 2, 2, 2, 1542, 1543, 7, 82, 2, 2, 1543, 1544, 7, 71, 2, 2, 1544, 1545, 7, 84, 2, 2, 1545, 1546, 7, 69, 2, 2, 1546, 1547, 7, 71, 2, 2, 1547, 1548, 7, 80, 2, 2, 1548, 1549, 7, 86, 2, 2, 1549, 1550, 7, 78, 2, 2, 1550, 1551, 7, 75, 2, 2, 1551, 1552, 7, 86, 2, 2, 1552, 278, 3, 2, 2, 2, 1553, 1554, 7, 68, 2, 2, 1554, 1555, 7, 87, 2, 2, 1555, 1556, 7, 69, 2, 2, 1556, 1557, 7, 77, 2, 2, 1557, 1558, 7, 71, 2, 2, 1558, 1559, 7, 86, 2, 2, 1559, 280, 3, 2, 2, 2, 1560, 1561, 7, 81, 2, 2, 1561, 1562, 7, 87, 2, 2, 1562, 1563, 7, 86, 2, 2, 1563, 282, 3, 2, 2, 2, 1564, 1565, 7, 81, 2, 2, 1565, 1566, 7, 72, 2, 2, 1566, 284, 3, 2, 2, 2, 1567, 1568, 7, 85, 2, 2, 1568, 1569, 7, 81, 2, 2, 1569, 1570, 7, 84, 2, 2, 1570, 1571, 7, 86, 2, 2, 1571, 286, 3, 2, 2, 2, 1572, 1573, 7, 69, 2, 2, 1573, 1574, 7, 78, 2, 2, 1574, 1575, 7, 87, 2, 2, 1575, 1576, 7, 85, 2, 2, 1576, 1577, 7, 86, 2, 2, 1577, 1578, 7, 71, 2, 2, 1578, 1579, 7, 84, 2, 2, 1579, 288, 3, 2, 2, 2, 1580, 1581, 7, 70, 2, 2, 1581, 1582, 7, 75, 2, 2, 1582, 1583, 7, 85, 2, 2, 1583, 1584, 7, 86, 2, 2, 1584, 1585, 7, 84, 2, 2, 1585, 1586, 7, 75, 2, 2, 1586, 1587, 7, 68, 2, 2, 1587, 1588, 7, 87, 2, 2, 1588, 1589, 7, 86, 2, 2, 1589, 1590, 7, 71, 2, 2, 1590, 290, 3, 2, 2, 2, 1591, 1592, 7, 81, 2, 2, 1592, 1593, 7, 88, 2, 2, 1593, 1594, 7, 71, 2, 2, 1594, 1595, 7, 84, 2, 2, 1595, 1596, 7, 89, 2, 2, 1596, 1597, 7, 84, 2, 2, 1597, 1598, 7, 75, 2, 2, 1598, 1599, 7, 86, 2, 2, 1599, 1600, 7, 71, 2, 2, 1600, 292, 3, 2, 2, 2, 1601, 1602, 7, 86, 2, 2, 1602, 1603, 7, 84, 2, 2, 1603, 1604, 7, 67, 2, 2, 1604, 1605, 7, 80, 2, 2, 1605, 1606, 7, 85, 2, 2, 1606, 1607, 7, 72, 2, 2, 1607, 1608, 7, 81, 2, 2, 1608, 1609, 7, 84, 2, 2, 1609, 1610, 7, 79, 2, 2, 1610, 294, 3, 2, 2, 2, 1611, 1612, 7, 84, 2, 2, 1612, 1613, 7, 71, 2, 2, 1613, 1614, 7, 70, 2, 2, 1614, 1615, 7, 87, 2, 2, 1615, 1616, 7, 69, 2, 2, 1616, 1617, 7, 71, 2, 2, 1617, 296, 3, 2, 2, 2, 1618, 1619, 7, 87, 2, 2, 1619, 1620, 7, 85, 2, 2, 1620, 1621, 7, 75, 2, 2, 1621, 1622, 7, 80, 2, 2, 1622, 1623, 7, 73, 2, 2, 1623, 298, 3, 2, 2, 2, 1624, 1625, 7, 85, 2, 2, 1625, 1626, 7, 71, 2, 2, 1626, 1627, 7, 84, 2, 2, 1627, 1628, 7, 70, 2, 2, 1628, 1629, 7, 71, 2, 2, 1629, 300, 3, 2, 2, 2, 1630, 1631, 7, 85, 2, 2, 1631, 1632, 7, 71, 2, 2, 1632, 1633, 7, 84, 2, 2, 1633, 1634, 7, 70, 2, 2, 1634, 1635, 7, 71, 2, 2, 1635, 1636, 7, 82, 2, 2, 1636, 1637, 7, 84, 2, 2, 1637, 1638, 7, 81, 2, 2, 1638, 1639, 7, 82, 2, 2, 1639, 1640, 7, 71, 2, 2, 1640, 1641, 7, 84, 2, 2, 1641, 1642, 7, 86, 2, 2, 1642, 1643, 7, 75, 2, 2, 1643, 1644, 7, 71, 2, 2, 1644, 1645, 7, 85, 2, 2, 1645, 302, 3, 2, 2, 2, 1646, 1647, 7, 84, 2, 2, 1647, 1648, 7, 71, 2, 2, 1648, 1649, 7, 69, 2, 2, 1649, 1650, 7, 81, 2, 2, 1650, 1651, 7, 84, 2, 2, 1651, 1652, 7, 70, 2, 2, 1652, 1653, 7, 84, 2, 2, 1653, 1654, 7, 71, 2, 2, 1654, 1655, 7, 67, 2, 2, 1655, 1656, 7, 70, 2, 2, 1656, 1657, 7, 71, 2, 2, 1657, 1658, 7, 84, 2, 2, 1658, 304, 3, 2, 2, 2, 1659, 1660, 7, 84, 2, 2, 1660, 1661, 7, 71, 2, 2, 1661, 1662, 7, 69, 2, 2, 1662, 1663, 7, 81, 2, 2, 1663, 1664, 7, 84, 2, 2, 1664, 1665, 7, 70, 2, 2, 1665, 1666, 7, 89, 2, 2, 1666, 1667, 7, 84, 2, 2, 1667, 1668, 7, 75, 2, 2, 1668, 1669, 7, 86, 2, 2, 1669, 1670, 7, 71, 2, 2, 1670, 1671, 7, 84, 2, 2, 1671, 306, 3, 2, 2, 2, 1672, 1673, 7, 70, 2, 2, 1673, 1674, 7, 71, 2, 2, 1674, 1675, 7, 78, 2, 2, 1675, 1676, 7, 75, 2, 2, 1676, 1677, 7, 79, 2, 2, 1677, 1678, 7, 75, 2, 2, 1678, 1679, 7, 86, 2, 2, 1679, 1680, 7, 71, 2, 2, 1680, 1681, 7, 70, 2, 2, 1681, 308, 3, 2, 2, 2, 1682, 1683, 7, 72, 2, 2, 1683, 1684, 7, 75, 2, 2, 1684, 1685, 7, 71, 2, 2, 1685, 1686, 7, 78, 2, 2, 1686, 1687, 7, 70, 2, 2, 1687, 1688, 7, 85, 2, 2, 1688, 310, 3, 2, 2, 2, 1689, 1690, 7, 86, 2, 2, 1690, 1691, 7, 71, 2, 2, 1691, 1692, 7, 84, 2, 2, 1692, 1693, 7, 79, 2, 2, 1693, 1694, 7, 75, 2, 2, 1694, 1695, 7, 80, 2, 2, 1695, 1696, 7, 67, 2, 2, 1696, 1697, 7, 86, 2, 2, 1697, 1698, 7, 71, 2, 2, 1698, 1699, 7, 70, 2, 2, 1699, 312, 3, 2, 2, 2, 1700, 1701, 7, 69, 2, 2, 1701, 1702, 7, 81, 2, 2, 1702, 1703, 7, 78, 2, 2, 1703, 1704, 7, 78, 2, 2, 1704, 1705, 7, 71, 2, 2, 1705, 1706, 7, 69, 2, 2, 1706, 1707, 7, 86, 2, 2, 1707, 1708, 7, 75, 2, 2, 1708, 1709, 7, 81, 2, 2, 1709, 1710, 7, 80, 2, 2, 1710, 314, 3, 2, 2, 2, 1711, 1712, 7, 75, 2, 2, 1712, 1713, 7, 86, 2, 2, 1713, 1714, 7, 71, 2, 2, 1714, 1715, 7, 79, 2, 2, 1715, 1716, 7, 85, 2, 2, 1716, 316, 3, 2, 2, 2, 1717, 1718, 7, 77, 2, 2, 1718, 1719, 7, 71, 2, 2, 1719, 1720, 7, 91, 2, 2, 1720, 1721, 7, 85, 2, 2, 1721, 318, 3, 2, 2, 2, 1722, 1723, 7, 71, 2, 2, 1723, 1724, 7, 85, 2, 2, 1724, 1725, 7, 69, 2, 2, 1725, 1726, 7, 67, 2, 2, 1726, 1727, 7, 82, 2, 2, 1727, 1728, 7, 71, 2, 2, 1728, 1729, 7, 70, 2, 2, 1729, 320, 3, 2, 2, 2, 1730, 1731, 7, 78, 2, 2, 1731, 1732, 7, 75, 2, 2, 1732, 1733, 7, 80, 2, 2, 1733, 1734, 7, 71, 2, 2, 1734, 1735, 7, 85, 2, 2, 1735, 322, 3, 2, 2, 2, 1736, 1737, 7, 85, 2, 2, 1737, 1738, 7, 71, 2, 2, 1738, 1739, 7, 82, 2, 2, 1739, 1740, 7, 67, 2, 2, 1740, 1741, 7, 84, 2, 2, 1741, 1742, 7, 67, 2, 2, 1742, 1743, 7, 86, 2, 2, 1743, 1744, 7, 71, 2, 2, 1744, 1745, 7, 70, 2, 2, 1745, 324, 3, 2, 2, 2, 1746, 1747, 7, 72, 2, 2, 1747, 1748, 7, 87, 2, 2, 1748, 1749, 7, 80, 2, 2, 1749, 1750, 7, 69, 2, 2, 1750, 1751, 7, 86, 2, 2, 1751, 1752, 7, 75, 2, 2, 1752, 1753, 7, 81, 2, 2, 1753, 1754, 7, 80, 2, 2, 1754, 326, 3, 2, 2, 2, 1755, 1756, 7, 71, 2, 2, 1756, 1757, 7, 90, 2, 2, 1757, 1758, 7, 86, 2, 2, 1758, 1759, 7, 71, 2, 2, 1759, 1760, 7, 80, 2, 2, 1760, 1761, 7, 70, 2, 2, 1761, 1762, 7, 71, 2, 2, 1762, 1763, 7, 70, 2, 2, 1763, 328, 3, 2, 2, 2, 1764, 1765, 7, 84, 2, 2, 1765, 1766, 7, 71, 2, 2, 1766, 1767, 7, 72, 2, 2, 1767, 1768, 7, 84, 2, 2, 1768, 1769, 7, 71, 2, 2, 1769, 1770, 7, 85, 2, 2, 1770, 1771, 7, 74, 2, 2, 1771, 330, 3, 2, 2, 2, 1772, 1773, 7, 69, 2, 2, 1773, 1774, 7, 78, 2, 2, 1774, 1775, 7, 71, 2, 2, 1775, 1776, 7, 67, 2, 2, 1776, 1777, 7, 84, 2, 2, 1777, 332, 3, 2, 2, 2, 1778, 1779, 7, 69, 2, 2, 1779, 1780, 7, 67, 2, 2, 1780, 1781, 7, 69, 2, 2, 1781, 1782, 7, 74, 2, 2, 1782, 1783, 7, 71, 2, 2, 1783, 334, 3, 2, 2, 2, 1784, 1785, 7, 87, 2, 2, 1785, 1786, 7, 80, 2, 2, 1786, 1787, 7, 69, 2, 2, 1787, 1788, 7, 67, 2, 2, 1788, 1789, 7, 69, 2, 2, 1789, 1790, 7, 74, 2, 2, 1790, 1791, 7, 71, 2, 2, 1791, 336, 3, 2, 2, 2, 1792, 1793, 7, 78, 2, 2, 1793, 1794, 7, 67, 2, 2, 1794, 1795, 7, 92, 2, 2, 1795, 1796, 7, 91, 2, 2, 1796, 338, 3, 2, 2, 2, 1797, 1798, 7, 72, 2, 2, 1798, 1799, 7, 81, 2, 2, 1799, 1800, 7, 84, 2, 2, 1800, 1801, 7, 79, 2, 2, 1801, 1802, 7, 67, 2, 2, 1802, 1803, 7, 86, 2, 2, 1803, 1804, 7, 86, 2, 2, 1804, 1805, 7, 71, 2, 2, 1805, 1806, 7, 70, 2, 2, 1806, 340, 3, 2, 2, 2, 1807, 1808, 7, 73, 2, 2, 1808, 1809, 7, 78, 2, 2, 1809, 1810, 7, 81, 2, 2, 1810, 1811, 7, 68, 2, 2, 1811, 1812, 7, 67, 2, 2, 1812, 1813, 7, 78, 2, 2, 1813, 342, 3, 2, 2, 2, 1814, 1815, 7, 86, 2, 2, 1815, 1816, 7, 71, 2, 2, 1816, 1817, 7, 79, 2, 2, 1817, 1818, 7, 82, 2, 2, 1818, 1819, 7, 81, 2, 2, 1819, 1820, 7, 84, 2, 2, 1820, 1821, 7, 67, 2, 2, 1821, 1822, 7, 84, 2, 2, 1822, 1823, 7, 91, 2, 2, 1823, 344, 3, 2, 2, 2, 1824, 1825, 7, 81, 2, 2, 1825, 1826, 7, 82, 2, 2, 1826, 1827, 7, 86, 2, 2, 1827, 1828, 7, 75, 2, 2, 1828, 1829, 7, 81, 2, 2, 1829, 1830, 7, 80, 2, 2, 1830, 1831, 7, 85, 2, 2, 1831, 346, 3, 2, 2, 2, 1832, 1833, 7, 87, 2, 2, 1833, 1834, 7, 80, 2, 2, 1834, 1835, 7, 85, 2, 2, 1835, 1836, 7, 71, 2, 2, 1836, 1837, 7, 86, 2, 2, 1837, 348, 3, 2, 2, 2, 1838, 1839, 7, 86, 2, 2, 1839, 1840, 7, 68, 2, 2, 1840, 1841, 7, 78, 2, 2, 1841, 1842, 7, 82, 2, 2, 1842, 1843, 7, 84, 2, 2, 1843, 1844, 7, 81, 2, 2, 1844, 1845, 7, 82, 2, 2, 1845, 1846, 7, 71, 2, 2, 1846, 1847, 7, 84, 2, 2, 1847, 1848, 7, 86, 2, 2, 1848, 1849, 7, 75, 2, 2, 1849, 1850, 7, 71, 2, 2, 1850, 1851, 7, 85, 2, 2, 1851, 350, 3, 2, 2, 2, 1852, 1853, 7, 70, 2, 2, 1853, 1854, 7, 68, 2, 2, 1854, 1855, 7, 82, 2, 2, 1855, 1856, 7, 84, 2, 2, 1856, 1857, 7, 81, 2, 2, 1857, 1858, 7, 82, 2, 2, 1858, 1859, 7, 71, 2, 2, 1859, 1860, 7, 84, 2, 2, 1860, 1861, 7, 86, 2, 2, 1861, 1862, 7, 75, 2, 2, 1862, 1863, 7, 71, 2, 2, 1863, 1864, 7, 85, 2, 2, 1864, 352, 3, 2, 2, 2, 1865, 1866, 7, 68, 2, 2, 1866, 1867, 7, 87, 2, 2, 1867, 1868, 7, 69, 2, 2, 1868, 1869, 7, 77, 2, 2, 1869, 1870, 7, 71, 2, 2, 1870, 1871, 7, 86, 2, 2, 1871, 1872, 7, 85, 2, 2, 1872, 354, 3, 2, 2, 2, 1873, 1874, 7, 85, 2, 2, 1874, 1875, 7, 77, 2, 2, 1875, 1876, 7, 71, 2, 2, 1876, 1877, 7, 89, 2, 2, 1877, 1878, 7, 71, 2, 2, 1878, 1879, 7, 70, 2, 2, 1879, 356, 3, 2, 2, 2, 1880, 1881, 7, 85, 2, 2, 1881, 1882, 7, 86, 2, 2, 1882, 1883, 7, 81, 2, 2, 1883, 1884, 7, 84, 2, 2, 1884, 1885, 7, 71, 2, 2, 1885, 1886, 7, 70, 2, 2, 1886, 358, 3, 2, 2, 2, 1887, 1888, 7, 70, 2, 2, 1888, 1889, 7, 75, 2, 2, 1889, 1890, 7, 84, 2, 2, 1890, 1891, 7, 71, 2, 2, 1891, 1892, 7, 69, 2, 2, 1892, 1893, 7, 86, 2, 2, 1893, 1894, 7, 81, 2, 2, 1894, 1895, 7, 84, 2, 2, 1895, 1896, 7, 75, 2, 2, 1896, 1897, 7, 71, 2, 2, 1897, 1898, 7, 85, 2, 2, 1898, 360, 3, 2, 2, 2, 1899, 1900, 7, 78, 2, 2, 1900, 1901, 7, 81, 2, 2, 1901, 1902, 7, 69, 2, 2, 1902, 1903, 7, 67, 2, 2, 1903, 1904, 7, 86, 2, 2, 1904, 1905, 7, 75, 2, 2, 1905, 1906, 7, 81, 2, 2, 1906, 1907, 7, 80, 2, 2, 1907, 362, 3, 2, 2, 2, 1908, 1909, 7, 71, 2, 2, 1909, 1910, 7, 90, 2, 2, 1910, 1911, 7, 69, 2, 2, 1911, 1912, 7, 74, 2, 2, 1912, 1913, 7, 67, 2, 2, 1913, 1914, 7, 80, 2, 2, 1914, 1915, 7, 73, 2, 2, 1915, 1916, 7, 71, 2, 2, 1916, 364, 3, 2, 2, 2, 1917, 1918, 7, 67, 2, 2, 1918, 1919, 7, 84, 2, 2, 1919, 1920, 7, 69, 2, 2, 1920, 1921, 7, 74, 2, 2, 1921, 1922, 7, 75, 2, 2, 1922, 1923, 7, 88, 2, 2, 1923, 1924, 7, 71, 2, 2, 1924, 366, 3, 2, 2, 2, 1925, 1926, 7, 87, 2, 2, 1926, 1927, 7, 80, 2, 2, 1927, 1928, 7, 67, 2, 2, 1928, 1929, 7, 84, 2, 2, 1929, 1930, 7, 69, 2, 2, 1930, 1931, 7, 74, 2, 2, 1931, 1932, 7, 75, 2, 2, 1932, 1933, 7, 88, 2, 2, 1933, 1934, 7, 71, 2, 2, 1934, 368, 3, 2, 2, 2, 1935, 1936, 7, 72, 2, 2, 1936, 1937, 7, 75, 2, 2, 1937, 1938, 7, 78, 2, 2, 1938, 1939, 7, 71, 2, 2, 1939, 1940, 7, 72, 2, 2, 1940, 1941, 7, 81, 2, 2, 1941, 1942, 7, 84, 2, 2, 1942, 1943, 7, 79, 2, 2, 1943, 1944, 7, 67, 2, 2, 1944, 1945, 7, 86, 2, 2, 1945, 370, 3, 2, 2, 2, 1946, 1947, 7, 86, 2, 2, 1947, 1948, 7, 81, 2, 2, 1948, 1949, 7, 87, 2, 2, 1949, 1950, 7, 69, 2, 2, 1950, 1951, 7, 74, 2, 2, 1951, 372, 3, 2, 2, 2, 1952, 1953, 7, 69, 2, 2, 1953, 1954, 7, 81, 2, 2, 1954, 1955, 7, 79, 2, 2, 1955, 1956, 7, 82, 2, 2, 1956, 1957, 7, 67, 2, 2, 1957, 1958, 7, 69, 2, 2, 1958, 1959, 7, 86, 2, 2, 1959, 374, 3, 2, 2, 2, 1960, 1961, 7, 69, 2, 2, 1961, 1962, 7, 81, 2, 2, 1962, 1963, 7, 80, 2, 2, 1963, 1964, 7, 69, 2, 2, 1964, 1965, 7, 67, 2, 2, 1965, 1966, 7, 86, 2, 2, 1966, 1967, 7, 71, 2, 2, 1967, 1968, 7, 80, 2, 2, 1968, 1969, 7, 67, 2, 2, 1969, 1970, 7, 86, 2, 2, 1970, 1971, 7, 71, 2, 2, 1971, 376, 3, 2, 2, 2, 1972, 1973, 7, 69, 2, 2, 1973, 1974, 7, 74, 2, 2, 1974, 1975, 7, 67, 2, 2, 1975, 1976, 7, 80, 2, 2, 1976, 1977, 7, 73, 2, 2, 1977, 1978, 7, 71, 2, 2, 1978, 378, 3, 2, 2, 2, 1979, 1980, 7, 69, 2, 2, 1980, 1981, 7, 67, 2, 2, 1981, 1982, 7, 85, 2, 2, 1982, 1983, 7, 69, 2, 2, 1983, 1984, 7, 67, 2, 2, 1984, 1985, 7, 70, 2, 2, 1985, 1986, 7, 71, 2, 2, 1986, 380, 3, 2, 2, 2, 1987, 1988, 7, 84, 2, 2, 1988, 1989, 7, 71, 2, 2, 1989, 1990, 7, 85, 2, 2, 1990, 1991, 7, 86, 2, 2, 1991, 1992, 7, 84, 2, 2, 1992, 1993, 7, 75, 2, 2, 1993, 1994, 7, 69, 2, 2, 1994, 1995, 7, 86, 2, 2, 1995, 382, 3, 2, 2, 2, 1996, 1997, 7, 69, 2, 2, 1997, 1998, 7, 78, 2, 2, 1998, 1999, 7, 87, 2, 2, 1999, 2000, 7, 85, 2, 2, 2000, 2001, 7, 86, 2, 2, 2001, 2002, 7, 71, 2, 2, 2002, 2003, 7, 84, 2, 2, 2003, 2004, 7, 71, 2, 2, 2004, 2005, 7, 70, 2, 2, 2005, 384, 3, 2, 2, 2, 2006, 2007, 7, 85, 2, 2, 2007, 2008, 7, 81, 2, 2, 2008, 2009, 7, 84, 2, 2, 2009, 2010, 7, 86, 2, 2, 2010, 2011, 7, 71, 2, 2, 2011, 2012, 7, 70, 2, 2, 2012, 386, 3, 2, 2, 2, 2013, 2014, 7, 82, 2, 2, 2014, 2015, 7, 87, 2, 2, 2015, 2016, 7, 84, 2, 2, 2016, 2017, 7, 73, 2, 2, 2017, 2018, 7, 71, 2, 2, 2018, 388, 3, 2, 2, 2, 2019, 2020, 7, 75, 2, 2, 2020, 2021, 7, 80, 2, 2, 2021, 2022, 7, 82, 2, 2, 2022, 2023, 7, 87, 2, 2, 2023, 2024, 7, 86, 2, 2, 2024, 2025, 7, 72, 2, 2, 2025, 2026, 7, 81, 2, 2, 2026, 2027, 7, 84, 2, 2, 2027, 2028, 7, 79, 2, 2, 2028, 2029, 7, 67, 2, 2, 2029, 2030, 7, 86, 2, 2, 2030, 390, 3, 2, 2, 2, 2031, 2032, 7, 81, 2, 2, 2032, 2033, 7, 87, 2, 2, 2033, 2034, 7, 86, 2, 2, 2034, 2035, 7, 82, 2, 2, 2035, 2036, 7, 87, 2, 2, 2036, 2037, 7, 86, 2, 2, 2037, 2038, 7, 72, 2, 2, 2038, 2039, 7, 81, 2, 2, 2039, 2040, 7, 84, 2, 2, 2040, 2041, 7, 79, 2, 2, 2041, 2042, 7, 67, 2, 2, 2042, 2043, 7, 86, 2, 2, 2043, 392, 3, 2, 2, 2, 2044, 2045, 7, 70, 2, 2, 2045, 2046, 7, 67, 2, 2, 2046, 2047, 7, 86, 2, 2, 2047, 2048, 7, 67, 2, 2, 2048, 2049, 7, 68, 2, 2, 2049, 2050, 7, 67, 2, 2, 2050, 2051, 7, 85, 2, 2, 2051, 2052, 7, 71, 2, 2, 2052, 394, 3, 2, 2, 2, 2053, 2054, 7, 70, 2, 2, 2054, 2055, 7, 67, 2, 2, 2055, 2056, 7, 86, 2, 2, 2056, 2057, 7, 67, 2, 2, 2057, 2058, 7, 68, 2, 2, 2058, 2059, 7, 67, 2, 2, 2059, 2060, 7, 85, 2, 2, 2060, 2061, 7, 71, 2, 2, 2061, 2062, 7, 85, 2, 2, 2062, 396, 3, 2, 2, 2, 2063, 2064, 7, 70, 2, 2, 2064, 2065, 7, 72, 2, 2, 2065, 2066, 7, 85, 2, 2, 2066, 398, 3, 2, 2, 2, 2067, 2068, 7, 86, 2, 2, 2068, 2069, 7, 84, 2, 2, 2069, 2070, 7, 87, 2, 2, 2070, 2071, 7, 80, 2, 2, 2071, 2072, 7, 69, 2, 2, 2072, 2073, 7, 67, 2, 2, 2073, 2074, 7, 86, 2, 2, 2074, 2075, 7, 71, 2, 2, 2075, 400, 3, 2, 2, 2, 2076, 2077, 7, 67, 2, 2, 2077, 2078, 7, 80, 2, 2, 2078, 2079, 7, 67, 2, 2, 2079, 2080, 7, 78, 2, 2, 2080, 2081, 7, 91, 2, 2, 2081, 2082, 7, 92, 2, 2, 2082, 2083, 7, 71, 2, 2, 2083, 402, 3, 2, 2, 2, 2084, 2085, 7, 69, 2, 2, 2085, 2086, 7, 81, 2, 2, 2086, 2087, 7, 79, 2, 2, 2087, 2088, 7, 82, 2, 2, 2088, 2089, 7, 87, 2, 2, 2089, 2090, 7, 86, 2, 2, 2090, 2091, 7, 71, 2, 2, 2091, 404, 3, 2, 2, 2, 2092, 2093, 7, 78, 2, 2, 2093, 2094, 7, 75, 2, 2, 2094, 2095, 7, 85, 2, 2, 2095, 2096, 7, 86, 2, 2, 2096, 406, 3, 2, 2, 2, 2097, 2098, 7, 85, 2, 2, 2098, 2099, 7, 86, 2, 2, 2099, 2100, 7, 67, 2, 2, 2100, 2101, 7, 86, 2, 2, 2101, 2102, 7, 75, 2, 2, 2102, 2103, 7, 85, 2, 2, 2103, 2104, 7, 86, 2, 2, 2104, 2105, 7, 75, 2, 2, 2105, 2106, 7, 69, 2, 2, 2106, 2107, 7, 85, 2, 2, 2107, 408, 3, 2, 2, 2, 2108, 2109, 7, 82, 2, 2, 2109, 2110, 7, 67, 2, 2, 2110, 2111, 7, 84, 2, 2, 2111, 2112, 7, 86, 2, 2, 2112, 2113, 7, 75, 2, 2, 2113, 2114, 7, 86, 2, 2, 2114, 2115, 7, 75, 2, 2, 2115, 2116, 7, 81, 2, 2, 2116, 2117, 7, 80, 2, 2, 2117, 2118, 7, 71, 2, 2, 2118, 2119, 7, 70, 2, 2, 2119, 410, 3, 2, 2, 2, 2120, 2121, 7, 71, 2, 2, 2121, 2122, 7, 90, 2, 2, 2122, 2123, 7, 86, 2, 2, 2123, 2124, 7, 71, 2, 2, 2124, 2125, 7, 84, 2, 2, 2125, 2126, 7, 80, 2, 2, 2126, 2127, 7, 67, 2, 2, 2127, 2128, 7, 78, 2, 2, 2128, 412, 3, 2, 2, 2, 2129, 2130, 7, 70, 2, 2, 2130, 2131, 7, 71, 2, 2, 2131, 2132, 7, 72, 2, 2, 2132, 2133, 7, 75, 2, 2, 2133, 2134, 7, 80, 2, 2, 2134, 2135, 7, 71, 2, 2, 2135, 2136, 7, 70, 2, 2, 2136, 414, 3, 2, 2, 2, 2137, 2138, 7, 84, 2, 2, 2138, 2139, 7, 71, 2, 2, 2139, 2140, 7, 88, 2, 2, 2140, 2141, 7, 81, 2, 2, 2141, 2142, 7, 77, 2, 2, 2142, 2143, 7, 71, 2, 2, 2143, 416, 3, 2, 2, 2, 2144, 2145, 7, 73, 2, 2, 2145, 2146, 7, 84, 2, 2, 2146, 2147, 7, 67, 2, 2, 2147, 2148, 7, 80, 2, 2, 2148, 2149, 7, 86, 2, 2, 2149, 418, 3, 2, 2, 2, 2150, 2151, 7, 78, 2, 2, 2151, 2152, 7, 81, 2, 2, 2152, 2153, 7, 69, 2, 2, 2153, 2154, 7, 77, 2, 2, 2154, 420, 3, 2, 2, 2, 2155, 2156, 7, 87, 2, 2, 2156, 2157, 7, 80, 2, 2, 2157, 2158, 7, 78, 2, 2, 2158, 2159, 7, 81, 2, 2, 2159, 2160, 7, 69, 2, 2, 2160, 2161, 7, 77, 2, 2, 2161, 422, 3, 2, 2, 2, 2162, 2163, 7, 79, 2, 2, 2163, 2164, 7, 85, 2, 2, 2164, 2165, 7, 69, 2, 2, 2165, 2166, 7, 77, 2, 2, 2166, 424, 3, 2, 2, 2, 2167, 2168, 7, 84, 2, 2, 2168, 2169, 7, 71, 2, 2, 2169, 2170, 7, 82, 2, 2, 2170, 2171, 7, 67, 2, 2, 2171, 2172, 7, 75, 2, 2, 2172, 2173, 7, 84, 2, 2, 2173, 426, 3, 2, 2, 2, 2174, 2175, 7, 84, 2, 2, 2175, 2176, 7, 71, 2, 2, 2176, 2177, 7, 69, 2, 2, 2177, 2178, 7, 81, 2, 2, 2178, 2179, 7, 88, 2, 2, 2179, 2180, 7, 71, 2, 2, 2180, 2181, 7, 84, 2, 2, 2181, 428, 3, 2, 2, 2, 2182, 2183, 7, 71, 2, 2, 2183, 2184, 7, 90, 2, 2, 2184, 2185, 7, 82, 2, 2, 2185, 2186, 7, 81, 2, 2, 2186, 2187, 7, 84, 2, 2, 2187, 2188, 7, 86, 2, 2, 2188, 430, 3, 2, 2, 2, 2189, 2190, 7, 75, 2, 2, 2190, 2191, 7, 79, 2, 2, 2191, 2192, 7, 82, 2, 2, 2192, 2193, 7, 81, 2, 2, 2193, 2194, 7, 84, 2, 2, 2194, 2195, 7, 86, 2, 2, 2195, 432, 3, 2, 2, 2, 2196, 2197, 7, 78, 2, 2, 2197, 2198, 7, 81, 2, 2, 2198, 2199, 7, 67, 2, 2, 2199, 2200, 7, 70, 2, 2, 2200, 434, 3, 2, 2, 2, 2201, 2202, 7, 84, 2, 2, 2202, 2203, 7, 81, 2, 2, 2203, 2204, 7, 78, 2, 2, 2204, 2205, 7, 71, 2, 2, 2205, 436, 3, 2, 2, 2, 2206, 2207, 7, 84, 2, 2, 2207, 2208, 7, 81, 2, 2, 2208, 2209, 7, 78, 2, 2, 2209, 2210, 7, 71, 2, 2, 2210, 2211, 7, 85, 2, 2, 2211, 438, 3, 2, 2, 2, 2212, 2213, 7, 69, 2, 2, 2213, 2214, 7, 81, 2, 2, 2214, 2215, 7, 79, 2, 2, 2215, 2216, 7, 82, 2, 2, 2216, 2217, 7, 67, 2, 2, 2217, 2218, 7, 69, 2, 2, 2218, 2219, 7, 86, 2, 2, 2219, 2220, 7, 75, 2, 2, 2220, 2221, 7, 81, 2, 2, 2221, 2222, 7, 80, 2, 2, 2222, 2223, 7, 85, 2, 2, 2223, 440, 3, 2, 2, 2, 2224, 2225, 7, 82, 2, 2, 2225, 2226, 7, 84, 2, 2, 2226, 2227, 7, 75, 2, 2, 2227, 2228, 7, 80, 2, 2, 2228, 2229, 7, 69, 2, 2, 2229, 2230, 7, 75, 2, 2, 2230, 2231, 7, 82, 2, 2, 2231, 2232, 7, 67, 2, 2, 2232, 2233, 7, 78, 2, 2, 2233, 2234, 7, 85, 2, 2, 2234, 442, 3, 2, 2, 2, 2235, 2236, 7, 86, 2, 2, 2236, 2237, 7, 84, 2, 2, 2237, 2238, 7, 67, 2, 2, 2238, 2239, 7, 80, 2, 2, 2239, 2240, 7, 85, 2, 2, 2240, 2241, 7, 67, 2, 2, 2241, 2242, 7, 69, 2, 2, 2242, 2243, 7, 86, 2, 2, 2243, 2244, 7, 75, 2, 2, 2244, 2245, 7, 81, 2, 2, 2245, 2246, 7, 80, 2, 2, 2246, 2247, 7, 85, 2, 2, 2247, 444, 3, 2, 2, 2, 2248, 2249, 7, 75, 2, 2, 2249, 2250, 7, 80, 2, 2, 2250, 2251, 7, 70, 2, 2, 2251, 2252, 7, 71, 2, 2, 2252, 2253, 7, 90, 2, 2, 2253, 446, 3, 2, 2, 2, 2254, 2255, 7, 75, 2, 2, 2255, 2256, 7, 80, 2, 2, 2256, 2257, 7, 70, 2, 2, 2257, 2258, 7, 71, 2, 2, 2258, 2259, 7, 90, 2, 2, 2259, 2260, 7, 71, 2, 2, 2260, 2261, 7, 85, 2, 2, 2261, 448, 3, 2, 2, 2, 2262, 2263, 7, 78, 2, 2, 2263, 2264, 7, 81, 2, 2, 2264, 2265, 7, 69, 2, 2, 2265, 2266, 7, 77, 2, 2, 2266, 2267, 7, 85, 2, 2, 2267, 450, 3, 2, 2, 2, 2268, 2269, 7, 81, 2, 2, 2269, 2270, 7, 82, 2, 2, 2270, 2271, 7, 86, 2, 2, 2271, 2272, 7, 75, 2, 2, 2272, 2273, 7, 81, 2, 2, 2273, 2274, 7, 80, 2, 2, 2274, 452, 3, 2, 2, 2, 2275, 2276, 7, 67, 2, 2, 2276, 2277, 7, 80, 2, 2, 2277, 2278, 7, 86, 2, 2, 2278, 2279, 7, 75, 2, 2, 2279, 454, 3, 2, 2, 2, 2280, 2281, 7, 78, 2, 2, 2281, 2282, 7, 81, 2, 2, 2282, 2283, 7, 69, 2, 2, 2283, 2284, 7, 67, 2, 2, 2284, 2285, 7, 78, 2, 2, 2285, 456, 3, 2, 2, 2, 2286, 2287, 7, 75, 2, 2, 2287, 2288, 7, 80, 2, 2, 2288, 2289, 7, 82, 2, 2, 2289, 2290, 7, 67, 2, 2, 2290, 2291, 7, 86, 2, 2, 2291, 2292, 7, 74, 2, 2, 2292, 458, 3, 2, 2, 2, 2293, 2294, 7, 89, 2, 2, 2294, 2295, 7, 67, 2, 2, 2295, 2296, 7, 86, 2, 2, 2296, 2297, 7, 71, 2, 2, 2297, 2298, 7, 84, 2, 2, 2298, 2299, 7, 79, 2, 2, 2299, 2300, 7, 67, 2, 2, 2300, 2301, 7, 84, 2, 2, 2301, 2302, 7, 77, 2, 2, 2302, 460, 3, 2, 2, 2, 2303, 2304, 7, 87, 2, 2, 2304, 2305, 7, 80, 2, 2, 2305, 2306, 7, 80, 2, 2, 2306, 2307, 7, 71, 2, 2, 2307, 2308, 7, 85, 2, 2, 2308, 2309, 7, 86, 2, 2, 2309, 462, 3, 2, 2, 2, 2310, 2311, 7, 79, 2, 2, 2311, 2312, 7, 67, 2, 2, 2312, 2313, 7, 86, 2, 2, 2313, 2314, 7, 69, 2, 2, 2314, 2315, 7, 74, 2, 2, 2315, 2316, 7, 97, 2, 2, 2316, 2317, 7, 84, 2, 2, 2317, 2318, 7, 71, 2, 2, 2318, 2319, 7, 69, 2, 2, 2319, 2320, 7, 81, 2, 2, 2320, 2321, 7, 73, 2, 2, 2321, 2322, 7, 80, 2, 2, 2322, 2323, 7, 75, 2, 2, 2323, 2324, 7, 92, 2, 2, 2324, 2325, 7, 71, 2, 2, 2325, 464, 3, 2, 2, 2, 2326, 2327, 7, 79, 2, 2, 2327, 2328, 7, 71, 2, 2, 2328, 2329, 7, 67, 2, 2, 2329, 2330, 7, 85, 2, 2, 2330, 2331, 7, 87, 2, 2, 2331, 2332, 7, 84, 2, 2, 2332, 2333, 7, 71, 2, 2, 2333, 2334, 7, 85, 2, 2, 2334, 466, 3, 2, 2, 2, 2335, 2336, 7, 81, 2, 2, 2336, 2337, 7, 80, 2, 2, 2337, 2338, 7, 71, 2, 2, 2338, 468, 3, 2, 2, 2, 2339, 2340, 7, 82, 2, 2, 2340, 2341, 7, 71, 2, 2, 2341, 2342, 7, 84, 2, 2, 2342, 470, 3, 2, 2, 2, 2343, 2344, 7, 79, 2, 2, 2344, 2345, 7, 67, 2, 2, 2345, 2346, 7, 86, 2, 2, 2346, 2347, 7, 69, 2, 2, 2347, 2348, 7, 74, 2, 2, 2348, 472, 3, 2, 2, 2, 2349, 2350, 7, 85, 2, 2, 2350, 2351, 7, 77, 2, 2, 2351, 2352, 7, 75, 2, 2, 2352, 2353, 7, 82, 2, 2, 2353, 2354, 7, 51, 2, 2, 2354, 474, 3, 2, 2, 2, 2355, 2356, 7, 80, 2, 2, 2356, 2357, 7, 71, 2, 2, 2357, 2358, 7, 90, 2, 2, 2358, 2359, 7, 86, 2, 2, 2359, 476, 3, 2, 2, 2, 2360, 2361, 7, 82, 2, 2, 2361, 2362, 7, 67, 2, 2, 2362, 2363, 7, 85, 2, 2, 2363, 2364, 7, 86, 2, 2, 2364, 478, 3, 2, 2, 2, 2365, 2366, 7, 82, 2, 2, 2366, 2367, 7, 67, 2, 2, 2367, 2368, 7, 86, 2, 2, 2368, 2369, 7, 86, 2, 2, 2369, 2370, 7, 71, 2, 2, 2370, 2371, 7, 84, 2, 2, 2371, 2372, 7, 80, 2, 2, 2372, 480, 3, 2, 2, 2, 2373, 2374, 7, 89, 2, 2, 2374, 2375, 7, 75, 2, 2, 2375, 2376, 7, 86, 2, 2, 2376, 2377, 7, 74, 2, 2, 2377, 2378, 7, 75, 2, 2, 2378, 2379, 7, 80, 2, 2, 2379, 482, 3, 2, 2, 2, 2380, 2381, 7, 70, 2, 2, 2381, 2382, 7, 71, 2, 2, 2382, 2383, 7, 72, 2, 2, 2383, 2384, 7, 75, 2, 2, 2384, 2385, 7, 80, 2, 2, 2385, 2386, 7, 71, 2, 2, 2386, 484, 3, 2, 2, 2, 2387, 2388, 7, 68, 2, 2, 2388, 2389, 7, 75, 2, 2, 2389, 2390, 7, 73, 2, 2, 2390, 2391, 7, 75, 2, 2, 2391, 2392, 7, 80, 2, 2, 2392, 2393, 7, 86, 2, 2, 2393, 2394, 7, 97, 2, 2, 2394, 2395, 7, 78, 2, 2, 2395, 2396, 7, 75, 2, 2, 2396, 2397, 7, 86, 2, 2, 2397, 2398, 7, 71, 2, 2, 2398, 2399, 7, 84, 2, 2, 2399, 2400, 7, 67, 2, 2, 2400, 2401, 7, 78, 2, 2, 2401, 486, 3, 2, 2, 2, 2402, 2403, 7, 85, 2, 2, 2403, 2404, 7, 79, 2, 2, 2404, 2405, 7, 67, 2, 2, 2405, 2406, 7, 78, 2, 2, 2406, 2407, 7, 78, 2, 2, 2407, 2408, 7, 75, 2, 2, 2408, 2409, 7, 80, 2, 2, 2409, 2410, 7, 86, 2, 2, 2410, 2411, 7, 97, 2, 2, 2411, 2412, 7, 78, 2, 2, 2412, 2413, 7, 75, 2, 2, 2413, 2414, 7, 86, 2, 2, 2414, 2415, 7, 71, 2, 2, 2415, 2416, 7, 84, 2, 2, 2416, 2417, 7, 67, 2, 2, 2417, 2418, 7, 78, 2, 2, 2418, 488, 3, 2, 2, 2, 2419, 2420, 7, 86, 2, 2, 2420, 2421, 7, 75, 2, 2, 2421, 2422, 7, 80, 2, 2, 2422, 2423, 7, 91, 2, 2, 2423, 2424, 7, 75, 2, 2, 2424, 2425, 7, 80, 2, 2, 2425, 2426, 7, 86, 2, 2, 2426, 2427, 7, 97, 2, 2, 2427, 2428, 7, 78, 2, 2, 2428, 2429, 7, 75, 2, 2, 2429, 2430, 7, 86, 2, 2, 2430, 2431, 7, 71, 2, 2, 2431, 2432, 7, 84, 2, 2, 2432, 2433, 7, 67, 2, 2, 2433, 2434, 7, 78, 2, 2, 2434, 490, 3, 2, 2, 2, 2435, 2436, 7, 75, 2, 2, 2436, 2437, 7, 80, 2, 2, 2437, 2438, 7, 86, 2, 2, 2438, 2439, 7, 71, 2, 2, 2439, 2440, 7, 73, 2, 2, 2440, 2441, 7, 71, 2, 2, 2441, 2442, 7, 84, 2, 2, 2442, 2443, 7, 97, 2, 2, 2443, 2444, 7, 88, 2, 2, 2444, 2445, 7, 67, 2, 2, 2445, 2446, 7, 78, 2, 2, 2446, 2447, 7, 87, 2, 2, 2447, 2448, 7, 71, 2, 2, 2448, 492, 3, 2, 2, 2, 2449, 2450, 7, 70, 2, 2, 2450, 2451, 7, 71, 2, 2, 2451, 2452, 7, 69, 2, 2, 2452, 2453, 7, 75, 2, 2, 2453, 2454, 7, 79, 2, 2, 2454, 2455, 7, 67, 2, 2, 2455, 2456, 7, 78, 2, 2, 2456, 2457, 7, 97, 2, 2, 2457, 2458, 7, 88, 2, 2, 2458, 2459, 7, 67, 2, 2, 2459, 2460, 7, 78, 2, 2, 2460, 2461, 7, 87, 2, 2, 2461, 2462, 7, 71, 2, 2, 2462, 494, 3, 2, 2, 2, 2463, 2464, 7, 70, 2, 2, 2464, 2465, 7, 81, 2, 2, 2465, 2466, 7, 87, 2, 2, 2466, 2467, 7, 68, 2, 2, 2467, 2468, 7, 78, 2, 2, 2468, 2469, 7, 71, 2, 2, 2469, 2470, 7, 97, 2, 2, 2470, 2471, 7, 78, 2, 2, 2471, 2472, 7, 75, 2, 2, 2472, 2473, 7, 86, 2, 2, 2473, 2474, 7, 71, 2, 2, 2474, 2475, 7, 84, 2, 2, 2475, 2476, 7, 67, 2, 2, 2476, 2477, 7, 78, 2, 2, 2477, 496, 3, 2, 2, 2, 2478, 2479, 7, 68, 2, 2, 2479, 2480, 7, 75, 2, 2, 2480, 2481, 7, 73, 2, 2, 2481, 2482, 7, 70, 2, 2, 2482, 2483, 7, 71, 2, 2, 2483, 2484, 7, 69, 2, 2, 2484, 2485, 7, 75, 2, 2, 2485, 2486, 7, 79, 2, 2, 2486, 2487, 7, 67, 2, 2, 2487, 2488, 7, 78, 2, 2, 2488, 2489, 7, 97, 2, 2, 2489, 2490, 7, 78, 2, 2, 2490, 2491, 7, 75, 2, 2, 2491, 2492, 7, 86, 2, 2, 2492, 2493, 7, 71, 2, 2, 2493, 2494, 7, 84, 2, 2, 2494, 2495, 7, 67, 2, 2, 2495, 2496, 7, 78, 2, 2, 2496, 498, 3, 2, 2, 2, 2497, 2498, 7, 75, 2, 2, 2498, 2499, 7, 70, 2, 2, 2499, 2500, 7, 71, 2, 2, 2500, 2501, 7, 80, 2, 2, 2501, 2502, 7, 86, 2, 2, 2502, 2503, 7, 75, 2, 2, 2503, 2504, 7, 72, 2, 2, 2504, 2505, 7, 75, 2, 2, 2505, 2506, 7, 71, 2, 2, 2506, 2507, 7, 84, 2, 2, 2507, 500, 3, 2, 2, 2, 2508, 2509, 7, 68, 2, 2, 2509, 2510, 7, 67, 2, 2, 2510, 2511, 7, 69, 2, 2, 2511, 2512, 7, 77, 2, 2, 2512, 2513, 7, 83, 2, 2, 2513, 2514, 7, 87, 2, 2, 2514, 2515, 7, 81, 2, 2, 2515, 2516, 7, 86, 2, 2, 2516, 2517, 7, 71, 2, 2, 2517, 2518, 7, 70, 2, 2, 2518, 2519, 7, 97, 2, 2, 2519, 2520, 7, 75, 2, 2, 2520, 2521, 7, 70, 2, 2, 2521, 2522, 7, 71, 2, 2, 2522, 2523, 7, 80, 2, 2, 2523, 2524, 7, 86, 2, 2, 2524, 2525, 7, 75, 2, 2, 2525, 2526, 7, 72, 2, 2, 2526, 2527, 7, 75, 2, 2, 2527, 2528, 7, 71, 2, 2, 2528, 2529, 7, 84, 2, 2, 2529, 502, 3, 2, 2, 2, 2530, 2531, 7, 85, 2, 2, 2531, 2532, 7, 75, 2, 2, 2532, 2533, 7, 79, 2, 2, 2533, 2534, 7, 82, 2, 2, 2534, 2535, 7, 78, 2, 2, 2535, 2536, 7, 71, 2, 2, 2536, 2537, 7, 97, 2, 2, 2537, 2538, 7, 69, 2, 2, 2538, 2539, 7, 81, 2, 2, 2539, 2540, 7, 79, 2, 2, 2540, 2541, 7, 79, 2, 2, 2541, 2542, 7, 71, 2, 2, 2542, 2543, 7, 80, 2, 2, 2543, 2544, 7, 86, 2, 2, 2544, 504, 3, 2, 2, 2, 2545, 2546, 7, 68, 2, 2, 2546, 2547, 7, 84, 2, 2, 2547, 2548, 7, 67, 2, 2, 2548, 2549, 7, 69, 2, 2, 2549, 2550, 7, 77, 2, 2, 2550, 2551, 7, 71, 2, 2, 2551, 2552, 7, 86, 2, 2, 2552, 2553, 7, 71, 2, 2, 2553, 2554, 7, 70, 2, 2, 2554, 2555, 7, 97, 2, 2, 2555, 2556, 7, 71, 2, 2, 2556, 2557, 7, 79, 2, 2, 2557, 2558, 7, 82, 2, 2, 2558, 2559, 7, 86, 2, 2, 2559, 2560, 7, 91, 2, 2, 2560, 2561, 7, 97, 2, 2, 2561, 2562, 7, 69, 2, 2, 2562, 2563, 7, 81, 2, 2, 2563, 2564, 7, 79, 2, 2, 2564, 2565, 7, 79, 2, 2, 2565, 2566, 7, 71, 2, 2, 2566, 2567, 7, 80, 2, 2, 2567, 2568, 7, 86, 2, 2, 2568, 506, 3, 2, 2, 2, 2569, 2570, 7, 68, 2, 2, 2570, 2571, 7, 84, 2, 2, 2571, 2572, 7, 67, 2, 2, 2572, 2573, 7, 69, 2, 2, 2573, 2574, 7, 77, 2, 2, 2574, 2575, 7, 71, 2, 2, 2575, 2576, 7, 86, 2, 2, 2576, 2577, 7, 71, 2, 2, 2577, 2578, 7, 70, 2, 2, 2578, 2579, 7, 97, 2, 2, 2579, 2580, 7, 69, 2, 2, 2580, 2581, 7, 81, 2, 2, 2581, 2582, 7, 79, 2, 2, 2582, 2583, 7, 79, 2, 2, 2583, 2584, 7, 71, 2, 2, 2584, 2585, 7, 80, 2, 2, 2585, 2586, 7, 86, 2, 2, 2586, 508, 3, 2, 2, 2, 2587, 2588, 7, 89, 2, 2, 2588, 2589, 7, 85, 2, 2, 2589, 510, 3, 2, 2, 2, 2590, 2591, 7, 87, 2, 2, 2591, 2592, 7, 80, 2, 2, 2592, 2593, 7, 84, 2, 2, 2593, 2594, 7, 71, 2, 2, 2594, 2595, 7, 69, 2, 2, 2595, 2596, 7, 81, 2, 2, 2596, 2597, 7, 73, 2, 2, 2597, 2598, 7, 80, 2, 2, 2598, 2599, 7, 75, 2, 2, 2599, 2600, 7, 92, 2, 2, 2600, 2601, 7, 71, 2, 2, 2601, 2602, 7, 70, 2, 2, 2602, 512, 3, 2, 2, 2, 2603, 2605, 7, 98, 2, 2, 2604, 2606, 10, 4, 2, 2, 2605, 2604, 3, 2, 2, 2, 2606, 2607, 3, 2, 2, 2, 2607, 2605, 3, 2, 2, 2, 2607, 2608, 3, 2, 2, 2, 2608, 2609, 3, 2, 2, 2, 2609, 2610, 7, 98, 2, 2, 2610, 514, 3, 2, 2, 2, 2611, 2613, 7, 36, 2, 2, 2612, 2614, 10, 5, 2, 2, 2613, 2612, 3, 2, 2, 2, 2614, 2615, 3, 2, 2, 2, 2615, 2613, 3, 2, 2, 2, 2615, 2616, 3, 2, 2, 2, 2616, 2617, 3, 2, 2, 2, 2617, 2618, 7, 36, 2, 2, 2618, 516, 3, 2, 2, 2, 2619, 2620, 7, 48, 2, 2, 2620, 2621, 5, 641, 321, 2, 2621, 518, 3, 2, 2, 2, 2622, 2623, 5, 641, 321, 2, 2623, 520, 3, 2, 2, 2, 2624, 2625, 7, 85, 2, 2, 2625, 2626, 7, 91, 2, 2, 2626, 2627, 7, 85, 2, 2, 2627, 2628, 7, 86, 2, 2, 2628, 2629, 7, 71, 2, 2, 2629, 2630, 7, 79, 2, 2, 2630, 522, 3, 2, 2, 2, 2631, 2632, 7, 85, 2, 2, 2632, 2633, 7, 86, 2, 2, 2633, 2634, 7, 84, 2, 2, 2634, 2635, 7, 75, 2, 2, 2635, 2636, 7, 80, 2, 2, 2636, 2637, 7, 73, 2, 2, 2637, 524, 3, 2, 2, 2, 2638, 2639, 7, 67, 2, 2, 2639, 2640, 7, 84, 2, 2, 2640, 2641, 7, 84, 2, 2, 2641, 2642, 7, 67, 2, 2, 2642, 2643, 7, 91, 2, 2, 2643, 526, 3, 2, 2, 2, 2644, 2645, 7, 79, 2, 2, 2645, 2646, 7, 67, 2, 2, 2646, 2647, 7, 82, 2, 2, 2647, 528, 3, 2, 2, 2, 2648, 2649, 7, 69, 2, 2, 2649, 2650, 7, 74, 2, 2, 2650, 2651, 7, 67, 2, 2, 2651, 2652, 7, 84, 2, 2, 2652, 530, 3, 2, 2, 2, 2653, 2654, 7, 88, 2, 2, 2654, 2655, 7, 67, 2, 2, 2655, 2656, 7, 84, 2, 2, 2656, 2657, 7, 69, 2, 2, 2657, 2658, 7, 74, 2, 2, 2658, 2659, 7, 67, 2, 2, 2659, 2660, 7, 84, 2, 2, 2660, 532, 3, 2, 2, 2, 2661, 2662, 7, 68, 2, 2, 2662, 2663, 7, 75, 2, 2, 2663, 2664, 7, 80, 2, 2, 2664, 2665, 7, 67, 2, 2, 2665, 2666, 7, 84, 2, 2, 2666, 2667, 7, 91, 2, 2, 2667, 534, 3, 2, 2, 2, 2668, 2669, 7, 88, 2, 2, 2669, 2670, 7, 67, 2, 2, 2670, 2671, 7, 84, 2, 2, 2671, 2672, 7, 68, 2, 2, 2672, 2673, 7, 75, 2, 2, 2673, 2674, 7, 80, 2, 2, 2674, 2675, 7, 67, 2, 2, 2675, 2676, 7, 84, 2, 2, 2676, 2677, 7, 91, 2, 2, 2677, 536, 3, 2, 2, 2, 2678, 2679, 7, 68, 2, 2, 2679, 2680, 7, 91, 2, 2, 2680, 2681, 7, 86, 2, 2, 2681, 2682, 7, 71, 2, 2, 2682, 2683, 7, 85, 2, 2, 2683, 538, 3, 2, 2, 2, 2684, 2685, 7, 70, 2, 2, 2685, 2686, 7, 71, 2, 2, 2686, 2687, 7, 69, 2, 2, 2687, 2688, 7, 75, 2, 2, 2688, 2689, 7, 79, 2, 2, 2689, 2690, 7, 67, 2, 2, 2690, 2691, 7, 78, 2, 2, 2691, 540, 3, 2, 2, 2, 2692, 2693, 7, 86, 2, 2, 2693, 2694, 7, 75, 2, 2, 2694, 2695, 7, 80, 2, 2, 2695, 2696, 7, 91, 2, 2, 2696, 2697, 7, 75, 2, 2, 2697, 2698, 7, 80, 2, 2, 2698, 2699, 7, 86, 2, 2, 2699, 542, 3, 2, 2, 2, 2700, 2701, 7, 85, 2, 2, 2701, 2702, 7, 79, 2, 2, 2702, 2703, 7, 67, 2, 2, 2703, 2704, 7, 78, 2, 2, 2704, 2705, 7, 78, 2, 2, 2705, 2706, 7, 75, 2, 2, 2706, 2707, 7, 80, 2, 2, 2707, 2708, 7, 86, 2, 2, 2708, 544, 3, 2, 2, 2, 2709, 2710, 7, 75, 2, 2, 2710, 2711, 7, 80, 2, 2, 2711, 2712, 7, 86, 2, 2, 2712, 546, 3, 2, 2, 2, 2713, 2714, 7, 68, 2, 2, 2714, 2715, 7, 75, 2, 2, 2715, 2716, 7, 73, 2, 2, 2716, 2717, 7, 75, 2, 2, 2717, 2718, 7, 80, 2, 2, 2718, 2719, 7, 86, 2, 2, 2719, 548, 3, 2, 2, 2, 2720, 2721, 7, 72, 2, 2, 2721, 2722, 7, 78, 2, 2, 2722, 2723, 7, 81, 2, 2, 2723, 2724, 7, 67, 2, 2, 2724, 2725, 7, 86, 2, 2, 2725, 550, 3, 2, 2, 2, 2726, 2727, 7, 70, 2, 2, 2727, 2728, 7, 81, 2, 2, 2728, 2729, 7, 87, 2, 2, 2729, 2730, 7, 68, 2, 2, 2730, 2731, 7, 78, 2, 2, 2731, 2732, 7, 71, 2, 2, 2732, 552, 3, 2, 2, 2, 2733, 2734, 7, 70, 2, 2, 2734, 2735, 7, 67, 2, 2, 2735, 2736, 7, 86, 2, 2, 2736, 2737, 7, 71, 2, 2, 2737, 554, 3, 2, 2, 2, 2738, 2739, 7, 86, 2, 2, 2739, 2740, 7, 75, 2, 2, 2740, 2741, 7, 79, 2, 2, 2741, 2742, 7, 71, 2, 2, 2742, 556, 3, 2, 2, 2, 2743, 2744, 7, 86, 2, 2, 2744, 2745, 7, 75, 2, 2, 2745, 2746, 7, 79, 2, 2, 2746, 2747, 7, 71, 2, 2, 2747, 2748, 7, 85, 2, 2, 2748, 2749, 7, 86, 2, 2, 2749, 2750, 7, 67, 2, 2, 2750, 2751, 7, 79, 2, 2, 2751, 2752, 7, 82, 2, 2, 2752, 558, 3, 2, 2, 2, 2753, 2754, 7, 79, 2, 2, 2754, 2755, 7, 87, 2, 2, 2755, 2756, 7, 78, 2, 2, 2756, 2757, 7, 86, 2, 2, 2757, 2758, 7, 75, 2, 2, 2758, 2759, 7, 85, 2, 2, 2759, 2760, 7, 71, 2, 2, 2760, 2761, 7, 86, 2, 2, 2761, 560, 3, 2, 2, 2, 2762, 2763, 7, 68, 2, 2, 2763, 2764, 7, 81, 2, 2, 2764, 2765, 7, 81, 2, 2, 2765, 2766, 7, 78, 2, 2, 2766, 2767, 7, 71, 2, 2, 2767, 2768, 7, 67, 2, 2, 2768, 2769, 7, 80, 2, 2, 2769, 562, 3, 2, 2, 2, 2770, 2771, 7, 84, 2, 2, 2771, 2772, 7, 67, 2, 2, 2772, 2773, 7, 89, 2, 2, 2773, 564, 3, 2, 2, 2, 2774, 2775, 7, 84, 2, 2, 2775, 2776, 7, 81, 2, 2, 2776, 2777, 7, 89, 2, 2, 2777, 566, 3, 2, 2, 2, 2778, 2779, 7, 80, 2, 2, 2779, 2780, 7, 87, 2, 2, 2780, 2781, 7, 78, 2, 2, 2781, 2782, 7, 78, 2, 2, 2782, 568, 3, 2, 2, 2, 2783, 2784, 7, 63, 2, 2, 2784, 570, 3, 2, 2, 2, 2785, 2786, 7, 64, 2, 2, 2786, 572, 3, 2, 2, 2, 2787, 2788, 7, 62, 2, 2, 2788, 574, 3, 2, 2, 2, 2789, 2790, 7, 35, 2, 2, 2790, 576, 3, 2, 2, 2, 2791, 2792, 7, 128, 2, 2, 2792, 578, 3, 2, 2, 2, 2793, 2794, 7, 126, 2, 2, 2794, 580, 3, 2, 2, 2, 2795, 2796, 7, 40, 2, 2, 2796, 582, 3, 2, 2, 2, 2797, 2798, 7, 96, 2, 2, 2798, 584, 3, 2, 2, 2, 2799, 2800, 7, 48, 2, 2, 2800, 586, 3, 2, 2, 2, 2801, 2802, 7, 93, 2, 2, 2802, 588, 3, 2, 2, 2, 2803, 2804, 7, 95, 2, 2, 2804, 590, 3, 2, 2, 2, 2805, 2806, 7, 42, 2, 2, 2806, 592, 3, 2, 2, 2, 2807, 2808, 7, 43, 2, 2, 2808, 594, 3, 2, 2, 2, 2809, 2810, 7, 46, 2, 2, 2810, 596, 3, 2, 2, 2, 2811, 2812, 7, 61, 2, 2, 2812, 598, 3, 2, 2, 2, 2813, 2814, 7, 66, 2, 2, 2814, 600, 3, 2, 2, 2, 2815, 2816, 7, 50, 2, 2, 2816, 602, 3, 2, 2, 2, 2817, 2818, 7, 51, 2, 2, 2818, 604, 3, 2, 2, 2, 2819, 2820, 7, 52, 2, 2, 2820, 606, 3, 2, 2, 2, 2821, 2822, 7, 41, 2, 2, 2822, 608, 3, 2, 2, 2, 2823, 2824, 7, 36, 2, 2, 2824, 610, 3, 2, 2, 2, 2825, 2826, 7, 98, 2, 2, 2826, 612, 3, 2, 2, 2, 2827, 2828, 7, 60, 2, 2, 2828, 614, 3, 2, 2, 2, 2829, 2830, 7, 44, 2, 2, 2830, 616, 3, 2, 2, 2, 2831, 2832, 7, 97, 2, 2, 2832, 618, 3, 2, 2, 2, 2833, 2834, 7, 47, 2, 2, 2834, 620, 3, 2, 2, 2, 2835, 2836, 7, 45, 2, 2, 2836, 622, 3, 2, 2, 2, 2837, 2838, 7, 39, 2, 2, 2838, 624, 3, 2, 2, 2, 2839, 2840, 7, 47, 2, 2, 2840, 2841, 7, 47, 2, 2, 2841, 626, 3, 2, 2, 2, 2842, 2843, 7, 49, 2, 2, 2843, 628, 3, 2, 2, 2, 2844, 2848, 5, 647, 324, 2, 2845, 2848, 5, 649, 325, 2, 2846, 2848, 5, 653, 327, 2, 2847, 2844, 3, 2, 2, 2, 2847, 2845, 3, 2, 2, 2, 2847, 2846, 3, 2, 2, 2, 2848, 630, 3, 2, 2, 2, 2849, 2851, 5, 643, 322, 2, 2850, 2849, 3, 2, 2, 2, 2851, 2852, 3, 2, 2, 2, 2852, 2850, 3, 2, 2, 2, 2852, 2853, 3, 2, 2, 2, 2853, 632, 3, 2, 2, 2, 2854, 2856, 5, 643, 322, 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, 643, 322, 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, 2898, 3, 2, 2, 2, 2867, 2869, 5, 643, 322, 2, 2868, 2867, 3, 2, 2, 2, 2869, 2870, 3, 2, 2, 2, 2870, 2868, 3, 2, 2, 2, 2870, 2871, 3, 2, 2, 2, 2871, 2872, 3, 2, 2, 2, 2872, 2873, 7, 48, 2, 2, 2873, 2874, 5, 639, 320, 2, 2874, 2898, 3, 2, 2, 2, 2875, 2877, 5, 643, 322, 2, 2876, 2875, 3, 2, 2, 2, 2877, 2878, 3, 2, 2, 2, 2878, 2876, 3, 2, 2, 2, 2878, 2879, 3, 2, 2, 2, 2879, 2881, 3, 2, 2, 2, 2880, 2876, 3, 2, 2, 2, 2880, 2881, 3, 2, 2, 2, 2881, 2882, 3, 2, 2, 2, 2882, 2884, 7, 48, 2, 2, 2883, 2885, 5, 643, 322, 2, 2884, 2883, 3, 2, 2, 2, 2885, 2886, 3, 2, 2, 2, 2886, 2884, 3, 2, 2, 2, 2886, 2887, 3, 2, 2, 2, 2887, 2888, 3, 2, 2, 2, 2888, 2889, 5, 639, 320, 2, 2889, 2898, 3, 2, 2, 2, 2890, 2892, 5, 643, 322, 2, 2891, 2890, 3, 2, 2, 2, 2892, 2893, 3, 2, 2, 2, 2893, 2891, 3, 2, 2, 2, 2893, 2894, 3, 2, 2, 2, 2894, 2895, 3, 2, 2, 2, 2895, 2896, 5, 639, 320, 2, 2896, 2898, 3, 2, 2, 2, 2897, 2859, 3, 2, 2, 2, 2897, 2868, 3, 2, 2, 2, 2897, 2880, 3, 2, 2, 2, 2897, 2891, 3, 2, 2, 2, 2898, 634, 3, 2, 2, 2, 2899, 2900, 5, 651, 326, 2, 2900, 636, 3, 2, 2, 2, 2901, 2905, 5, 645, 323, 2, 2902, 2905, 5, 643, 322, 2, 2903, 2905, 5, 617, 309, 2, 2904, 2901, 3, 2, 2, 2, 2904, 2902, 3, 2, 2, 2, 2904, 2903, 3, 2, 2, 2, 2905, 2906, 3, 2, 2, 2, 2906, 2904, 3, 2, 2, 2, 2906, 2907, 3, 2, 2, 2, 2907, 638, 3, 2, 2, 2, 2908, 2910, 7, 71, 2, 2, 2909, 2911, 9, 6, 2, 2, 2910, 2909, 3, 2, 2, 2, 2910, 2911, 3, 2, 2, 2, 2911, 2913, 3, 2, 2, 2, 2912, 2914, 5, 643, 322, 2, 2913, 2912, 3, 2, 2, 2, 2914, 2915, 3, 2, 2, 2, 2915, 2913, 3, 2, 2, 2, 2915, 2916, 3, 2, 2, 2, 2916, 640, 3, 2, 2, 2, 2917, 2919, 9, 7, 2, 2, 2918, 2917, 3, 2, 2, 2, 2919, 2922, 3, 2, 2, 2, 2920, 2921, 3, 2, 2, 2, 2920, 2918, 3, 2, 2, 2, 2921, 2924, 3, 2, 2, 2, 2922, 2920, 3, 2, 2, 2, 2923, 2925, 9, 8, 2, 2, 2924, 2923, 3, 2, 2, 2, 2925, 2926, 3, 2, 2, 2, 2926, 2927, 3, 2, 2, 2, 2926, 2924, 3, 2, 2, 2, 2927, 2931, 3, 2, 2, 2, 2928, 2930, 9, 7, 2, 2, 2929, 2928, 3, 2, 2, 2, 2930, 2933, 3, 2, 2, 2, 2931, 2929, 3, 2, 2, 2, 2931, 2932, 3, 2, 2, 2, 2932, 642, 3, 2, 2, 2, 2933, 2931, 3, 2, 2, 2, 2934, 2935, 9, 9, 2, 2, 2935, 644, 3, 2, 2, 2, 2936, 2937, 9, 10, 2, 2, 2937, 646, 3, 2, 2, 2, 2938, 2946, 7, 36, 2, 2, 2939, 2940, 7, 94, 2, 2, 2940, 2945, 11, 2, 2, 2, 2941, 2942, 7, 36, 2, 2, 2942, 2945, 7, 36, 2, 2, 2943, 2945, 10, 11, 2, 2, 2944, 2939, 3, 2, 2, 2, 2944, 2941, 3, 2, 2, 2, 2944, 2943, 3, 2, 2, 2, 2945, 2948, 3, 2, 2, 2, 2946, 2944, 3, 2, 2, 2, 2946, 2947, 3, 2, 2, 2, 2947, 2949, 3, 2, 2, 2, 2948, 2946, 3, 2, 2, 2, 2949, 2950, 7, 36, 2, 2, 2950, 648, 3, 2, 2, 2, 2951, 2959, 7, 41, 2, 2, 2952, 2953, 7, 94, 2, 2, 2953, 2958, 11, 2, 2, 2, 2954, 2955, 7, 41, 2, 2, 2955, 2958, 7, 41, 2, 2, 2956, 2958, 10, 12, 2, 2, 2957, 2952, 3, 2, 2, 2, 2957, 2954, 3, 2, 2, 2, 2957, 2956, 3, 2, 2, 2, 2958, 2961, 3, 2, 2, 2, 2959, 2957, 3, 2, 2, 2, 2959, 2960, 3, 2, 2, 2, 2960, 2962, 3, 2, 2, 2, 2961, 2959, 3, 2, 2, 2, 2962, 2963, 7, 41, 2, 2, 2963, 650, 3, 2, 2, 2, 2964, 2965, 7, 68, 2, 2, 2965, 2967, 7, 41, 2, 2, 2966, 2968, 9, 13, 2, 2, 2967, 2966, 3, 2, 2, 2, 2968, 2969, 3, 2, 2, 2, 2969, 2967, 3, 2, 2, 2, 2969, 2970, 3, 2, 2, 2, 2970, 2971, 3, 2, 2, 2, 2971, 2972, 7, 41, 2, 2, 2972, 652, 3, 2, 2, 2, 2973, 2981, 7, 98, 2, 2, 2974, 2975, 7, 94, 2, 2, 2975, 2980, 11, 2, 2, 2, 2976, 2977, 7, 98, 2, 2, 2977, 2980, 7, 98, 2, 2, 2978, 2980, 10, 14, 2, 2, 2979, 2974, 3, 2, 2, 2, 2979, 2976, 3, 2, 2, 2, 2979, 2978, 3, 2, 2, 2, 2980, 2983, 3, 2, 2, 2, 2981, 2979, 3, 2, 2, 2, 2981, 2982, 3, 2, 2, 2, 2982, 2984, 3, 2, 2, 2, 2983, 2981, 3, 2, 2, 2, 2984, 2985, 7, 98, 2, 2, 2985, 654, 3, 2, 2, 2, 39, 2, 658, 668, 680, 685, 689, 693, 699, 703, 705, 2607, 2615, 2847, 2852, 2857, 2859, 2865, 2870, 2878, 2880, 2886, 2893, 2897, 2904, 2906, 2910, 2915, 2920, 2926, 2931, 2944, 2946, 2957, 2959, 2969, 2979, 2981, 3, 2, 3, 2] \ No newline at end of file diff --git a/src/lib/flinksql/FlinkSqlParserLexer.js b/src/lib/flinksql/FlinkSqlParserLexer.js index 06371ec..26838e3 100644 --- a/src/lib/flinksql/FlinkSqlParserLexer.js +++ b/src/lib/flinksql/FlinkSqlParserLexer.js @@ -5,51 +5,1918 @@ var antlr4 = require('antlr4/index'); var serializedATN = ["\u0003\u608b\ua72a\u8133\ub9ed\u417c\u3be7\u7786\u5964", - "\u0002\u0014L\b\u0001\u0004\u0002\t\u0002\u0004\u0003\t\u0003\u0004", + "\u0002\u0140\u0baa\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(""); + "\u0004\u0014\t\u0014\u0004\u0015\t\u0015\u0004\u0016\t\u0016\u0004\u0017", + "\t\u0017\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&\u0004\'\t\'\u0004(\t(\u0004)\t)\u0004", + "*\t*\u0004+\t+\u0004,\t,\u0004-\t-\u0004.\t.\u0004/\t/\u00040\t0\u0004", + "1\t1\u00042\t2\u00043\t3\u00044\t4\u00045\t5\u00046\t6\u00047\t7\u0004", + "8\t8\u00049\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\u0004", + "F\tF\u0004G\tG\u0004H\tH\u0004I\tI\u0004J\tJ\u0004K\tK\u0004L\tL\u0004", + "M\tM\u0004N\tN\u0004O\tO\u0004P\tP\u0004Q\tQ\u0004R\tR\u0004S\tS\u0004", + "T\tT\u0004U\tU\u0004V\tV\u0004W\tW\u0004X\tX\u0004Y\tY\u0004Z\tZ\u0004", + "[\t[\u0004\\\t\\\u0004]\t]\u0004^\t^\u0004_\t_\u0004`\t`\u0004a\ta\u0004", + "b\tb\u0004c\tc\u0004d\td\u0004e\te\u0004f\tf\u0004g\tg\u0004h\th\u0004", + "i\ti\u0004j\tj\u0004k\tk\u0004l\tl\u0004m\tm\u0004n\tn\u0004o\to\u0004", + "p\tp\u0004q\tq\u0004r\tr\u0004s\ts\u0004t\tt\u0004u\tu\u0004v\tv\u0004", + "w\tw\u0004x\tx\u0004y\ty\u0004z\tz\u0004{\t{\u0004|\t|\u0004}\t}\u0004", + "~\t~\u0004\u007f\t\u007f\u0004\u0080\t\u0080\u0004\u0081\t\u0081\u0004", + "\u0082\t\u0082\u0004\u0083\t\u0083\u0004\u0084\t\u0084\u0004\u0085\t", + "\u0085\u0004\u0086\t\u0086\u0004\u0087\t\u0087\u0004\u0088\t\u0088\u0004", + "\u0089\t\u0089\u0004\u008a\t\u008a\u0004\u008b\t\u008b\u0004\u008c\t", + "\u008c\u0004\u008d\t\u008d\u0004\u008e\t\u008e\u0004\u008f\t\u008f\u0004", + "\u0090\t\u0090\u0004\u0091\t\u0091\u0004\u0092\t\u0092\u0004\u0093\t", + "\u0093\u0004\u0094\t\u0094\u0004\u0095\t\u0095\u0004\u0096\t\u0096\u0004", + "\u0097\t\u0097\u0004\u0098\t\u0098\u0004\u0099\t\u0099\u0004\u009a\t", + "\u009a\u0004\u009b\t\u009b\u0004\u009c\t\u009c\u0004\u009d\t\u009d\u0004", + "\u009e\t\u009e\u0004\u009f\t\u009f\u0004\u00a0\t\u00a0\u0004\u00a1\t", + "\u00a1\u0004\u00a2\t\u00a2\u0004\u00a3\t\u00a3\u0004\u00a4\t\u00a4\u0004", + "\u00a5\t\u00a5\u0004\u00a6\t\u00a6\u0004\u00a7\t\u00a7\u0004\u00a8\t", + "\u00a8\u0004\u00a9\t\u00a9\u0004\u00aa\t\u00aa\u0004\u00ab\t\u00ab\u0004", + "\u00ac\t\u00ac\u0004\u00ad\t\u00ad\u0004\u00ae\t\u00ae\u0004\u00af\t", + "\u00af\u0004\u00b0\t\u00b0\u0004\u00b1\t\u00b1\u0004\u00b2\t\u00b2\u0004", + "\u00b3\t\u00b3\u0004\u00b4\t\u00b4\u0004\u00b5\t\u00b5\u0004\u00b6\t", + "\u00b6\u0004\u00b7\t\u00b7\u0004\u00b8\t\u00b8\u0004\u00b9\t\u00b9\u0004", + "\u00ba\t\u00ba\u0004\u00bb\t\u00bb\u0004\u00bc\t\u00bc\u0004\u00bd\t", + "\u00bd\u0004\u00be\t\u00be\u0004\u00bf\t\u00bf\u0004\u00c0\t\u00c0\u0004", + "\u00c1\t\u00c1\u0004\u00c2\t\u00c2\u0004\u00c3\t\u00c3\u0004\u00c4\t", + "\u00c4\u0004\u00c5\t\u00c5\u0004\u00c6\t\u00c6\u0004\u00c7\t\u00c7\u0004", + "\u00c8\t\u00c8\u0004\u00c9\t\u00c9\u0004\u00ca\t\u00ca\u0004\u00cb\t", + "\u00cb\u0004\u00cc\t\u00cc\u0004\u00cd\t\u00cd\u0004\u00ce\t\u00ce\u0004", + "\u00cf\t\u00cf\u0004\u00d0\t\u00d0\u0004\u00d1\t\u00d1\u0004\u00d2\t", + "\u00d2\u0004\u00d3\t\u00d3\u0004\u00d4\t\u00d4\u0004\u00d5\t\u00d5\u0004", + "\u00d6\t\u00d6\u0004\u00d7\t\u00d7\u0004\u00d8\t\u00d8\u0004\u00d9\t", + "\u00d9\u0004\u00da\t\u00da\u0004\u00db\t\u00db\u0004\u00dc\t\u00dc\u0004", + "\u00dd\t\u00dd\u0004\u00de\t\u00de\u0004\u00df\t\u00df\u0004\u00e0\t", + "\u00e0\u0004\u00e1\t\u00e1\u0004\u00e2\t\u00e2\u0004\u00e3\t\u00e3\u0004", + "\u00e4\t\u00e4\u0004\u00e5\t\u00e5\u0004\u00e6\t\u00e6\u0004\u00e7\t", + "\u00e7\u0004\u00e8\t\u00e8\u0004\u00e9\t\u00e9\u0004\u00ea\t\u00ea\u0004", + "\u00eb\t\u00eb\u0004\u00ec\t\u00ec\u0004\u00ed\t\u00ed\u0004\u00ee\t", + "\u00ee\u0004\u00ef\t\u00ef\u0004\u00f0\t\u00f0\u0004\u00f1\t\u00f1\u0004", + "\u00f2\t\u00f2\u0004\u00f3\t\u00f3\u0004\u00f4\t\u00f4\u0004\u00f5\t", + "\u00f5\u0004\u00f6\t\u00f6\u0004\u00f7\t\u00f7\u0004\u00f8\t\u00f8\u0004", + "\u00f9\t\u00f9\u0004\u00fa\t\u00fa\u0004\u00fb\t\u00fb\u0004\u00fc\t", + "\u00fc\u0004\u00fd\t\u00fd\u0004\u00fe\t\u00fe\u0004\u00ff\t\u00ff\u0004", + "\u0100\t\u0100\u0004\u0101\t\u0101\u0004\u0102\t\u0102\u0004\u0103\t", + "\u0103\u0004\u0104\t\u0104\u0004\u0105\t\u0105\u0004\u0106\t\u0106\u0004", + "\u0107\t\u0107\u0004\u0108\t\u0108\u0004\u0109\t\u0109\u0004\u010a\t", + "\u010a\u0004\u010b\t\u010b\u0004\u010c\t\u010c\u0004\u010d\t\u010d\u0004", + "\u010e\t\u010e\u0004\u010f\t\u010f\u0004\u0110\t\u0110\u0004\u0111\t", + "\u0111\u0004\u0112\t\u0112\u0004\u0113\t\u0113\u0004\u0114\t\u0114\u0004", + "\u0115\t\u0115\u0004\u0116\t\u0116\u0004\u0117\t\u0117\u0004\u0118\t", + "\u0118\u0004\u0119\t\u0119\u0004\u011a\t\u011a\u0004\u011b\t\u011b\u0004", + "\u011c\t\u011c\u0004\u011d\t\u011d\u0004\u011e\t\u011e\u0004\u011f\t", + "\u011f\u0004\u0120\t\u0120\u0004\u0121\t\u0121\u0004\u0122\t\u0122\u0004", + "\u0123\t\u0123\u0004\u0124\t\u0124\u0004\u0125\t\u0125\u0004\u0126\t", + "\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\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\u0004", + "\u013f\t\u013f\u0004\u0140\t\u0140\u0004\u0141\t\u0141\u0004\u0142\t", + "\u0142\u0004\u0143\t\u0143\u0004\u0144\t\u0144\u0004\u0145\t\u0145\u0004", + "\u0146\t\u0146\u0004\u0147\t\u0147\u0003\u0002\u0006\u0002\u0291\n\u0002", + "\r\u0002\u000e\u0002\u0292\u0003\u0002\u0003\u0002\u0003\u0003\u0003", + "\u0003\u0003\u0003\u0003\u0003\u0007\u0003\u029b\n\u0003\f\u0003\u000e", + "\u0003\u029e\u000b\u0003\u0003\u0003\u0003\u0003\u0003\u0003\u0003\u0003", + "\u0003\u0003\u0003\u0004\u0003\u0004\u0003\u0004\u0003\u0004\u0005\u0004", + "\u02a9\n\u0004\u0003\u0004\u0007\u0004\u02ac\n\u0004\f\u0004\u000e\u0004", + "\u02af\u000b\u0004\u0003\u0004\u0005\u0004\u02b2\n\u0004\u0003\u0004", + "\u0003\u0004\u0005\u0004\u02b6\n\u0004\u0003\u0004\u0003\u0004\u0003", + "\u0004\u0003\u0004\u0005\u0004\u02bc\n\u0004\u0003\u0004\u0003\u0004", + "\u0005\u0004\u02c0\n\u0004\u0005\u0004\u02c2\n\u0004\u0003\u0004\u0003", + "\u0004\u0003\u0005\u0003\u0005\u0003\u0005\u0003\u0005\u0003\u0005\u0003", + "\u0005\u0003\u0005\u0003\u0006\u0003\u0006\u0003\u0006\u0003\u0006\u0003", + "\u0006\u0003\u0007\u0003\u0007\u0003\u0007\u0003\u0007\u0003\b\u0003", + "\b\u0003\b\u0003\t\u0003\t\u0003\t\u0003\t\u0003\n\u0003\n\u0003\n\u0003", + "\n\u0003\u000b\u0003\u000b\u0003\u000b\u0003\u000b\u0003\u000b\u0003", + "\u000b\u0003\u000b\u0003\u000b\u0003\u000b\u0003\f\u0003\f\u0003\f\u0003", + "\f\u0003\f\u0003\f\u0003\r\u0003\r\u0003\r\u0003\r\u0003\r\u0003\r\u0003", + "\u000e\u0003\u000e\u0003\u000e\u0003\u000f\u0003\u000f\u0003\u000f\u0003", + "\u000f\u0003\u000f\u0003\u000f\u0003\u000f\u0003\u000f\u0003\u000f\u0003", + "\u0010\u0003\u0010\u0003\u0010\u0003\u0010\u0003\u0010\u0003\u0011\u0003", + "\u0011\u0003\u0011\u0003\u0011\u0003\u0011\u0003\u0012\u0003\u0012\u0003", + "\u0012\u0003\u0012\u0003\u0012\u0003\u0012\u0003\u0012\u0003\u0013\u0003", + "\u0013\u0003\u0013\u0003\u0013\u0003\u0013\u0003\u0013\u0003\u0014\u0003", + "\u0014\u0003\u0014\u0003\u0014\u0003\u0014\u0003\u0014\u0003\u0014\u0003", + "\u0015\u0003\u0015\u0003\u0015\u0003\u0015\u0003\u0015\u0003\u0015\u0003", + "\u0016\u0003\u0016\u0003\u0016\u0003\u0017\u0003\u0017\u0003\u0017\u0003", + "\u0018\u0003\u0018\u0003\u0018\u0003\u0018\u0003\u0019\u0003\u0019\u0003", + "\u0019\u0003\u001a\u0003\u001a\u0003\u001a\u0003\u001a\u0003\u001b\u0003", + "\u001b\u0003\u001b\u0003\u001c\u0003\u001c\u0003\u001c\u0003\u001c\u0003", + "\u001c\u0003\u001c\u0003\u001c\u0003\u001d\u0003\u001d\u0003\u001d\u0003", + "\u001d\u0003\u001d\u0003\u001d\u0003\u001d\u0003\u001d\u0003\u001e\u0003", + "\u001e\u0003\u001e\u0003\u001e\u0003\u001e\u0003\u001f\u0003\u001f\u0003", + "\u001f\u0003\u001f\u0003\u001f\u0003\u001f\u0003 \u0003 \u0003 \u0003", + "!\u0003!\u0003!\u0003!\u0003!\u0003\"\u0003\"\u0003\"\u0003\"\u0003", + "\"\u0003\"\u0003#\u0003#\u0003#\u0003#\u0003#\u0003#\u0003$\u0003$\u0003", + "$\u0003$\u0003%\u0003%\u0003%\u0003%\u0003%\u0003&\u0003&\u0003&\u0003", + "&\u0003\'\u0003\'\u0003\'\u0003\'\u0003\'\u0003\'\u0003\'\u0003\'\u0003", + "\'\u0003(\u0003(\u0003(\u0003(\u0003(\u0003)\u0003)\u0003)\u0003)\u0003", + ")\u0003*\u0003*\u0003*\u0003*\u0003*\u0003+\u0003+\u0003+\u0003+\u0003", + "+\u0003,\u0003,\u0003,\u0003,\u0003-\u0003-\u0003-\u0003-\u0003-\u0003", + ".\u0003.\u0003.\u0003.\u0003.\u0003.\u0003/\u0003/\u0003/\u0003/\u0003", + "/\u0003/\u00030\u00030\u00030\u00030\u00030\u00030\u00031\u00031\u0003", + "1\u00031\u00031\u00032\u00032\u00032\u00032\u00032\u00033\u00033\u0003", + "3\u00033\u00033\u00033\u00034\u00034\u00034\u00034\u00034\u00035\u0003", + "5\u00035\u00035\u00035\u00035\u00035\u00035\u00036\u00036\u00036\u0003", + "7\u00037\u00037\u00037\u00037\u00037\u00038\u00038\u00038\u00038\u0003", + "8\u00038\u00038\u00038\u00039\u00039\u00039\u00039\u00039\u00039\u0003", + "9\u0003:\u0003:\u0003:\u0003:\u0003:\u0003;\u0003;\u0003;\u0003;\u0003", + ";\u0003;\u0003;\u0003;\u0003;\u0003;\u0003<\u0003<\u0003<\u0003<\u0003", + "<\u0003<\u0003=\u0003=\u0003=\u0003=\u0003=\u0003>\u0003>\u0003>\u0003", + ">\u0003>\u0003>\u0003>\u0003>\u0003>\u0003>\u0003?\u0003?\u0003?\u0003", + "?\u0003?\u0003?\u0003?\u0003?\u0003?\u0003?\u0003@\u0003@\u0003@\u0003", + "@\u0003@\u0003@\u0003@\u0003@\u0003@\u0003@\u0003A\u0003A\u0003A\u0003", + "A\u0003A\u0003A\u0003A\u0003A\u0003B\u0003B\u0003B\u0003B\u0003B\u0003", + "B\u0003C\u0003C\u0003C\u0003C\u0003C\u0003C\u0003D\u0003D\u0003D\u0003", + "D\u0003D\u0003E\u0003E\u0003E\u0003E\u0003E\u0003F\u0003F\u0003F\u0003", + "F\u0003F\u0003F\u0003F\u0003G\u0003G\u0003G\u0003G\u0003G\u0003G\u0003", + "G\u0003H\u0003H\u0003H\u0003H\u0003H\u0003H\u0003I\u0003I\u0003I\u0003", + "I\u0003I\u0003I\u0003I\u0003I\u0003I\u0003I\u0003J\u0003J\u0003J\u0003", + "J\u0003J\u0003K\u0003K\u0003K\u0003K\u0003K\u0003K\u0003K\u0003K\u0003", + "L\u0003L\u0003L\u0003L\u0003L\u0003L\u0003L\u0003M\u0003M\u0003M\u0003", + "M\u0003M\u0003M\u0003M\u0003N\u0003N\u0003N\u0003N\u0003N\u0003O\u0003", + "O\u0003O\u0003O\u0003O\u0003O\u0003O\u0003O\u0003O\u0003P\u0003P\u0003", + "P\u0003P\u0003P\u0003P\u0003P\u0003P\u0003Q\u0003Q\u0003Q\u0003Q\u0003", + "Q\u0003Q\u0003Q\u0003R\u0003R\u0003R\u0003R\u0003R\u0003R\u0003R\u0003", + "R\u0003S\u0003S\u0003S\u0003S\u0003S\u0003S\u0003S\u0003S\u0003T\u0003", + "T\u0003T\u0003T\u0003T\u0003U\u0003U\u0003U\u0003U\u0003U\u0003V\u0003", + "V\u0003V\u0003V\u0003V\u0003W\u0003W\u0003W\u0003W\u0003W\u0003W\u0003", + "W\u0003X\u0003X\u0003X\u0003X\u0003X\u0003X\u0003X\u0003X\u0003Y\u0003", + "Y\u0003Y\u0003Y\u0003Y\u0003Y\u0003Y\u0003Z\u0003Z\u0003Z\u0003Z\u0003", + "[\u0003[\u0003[\u0003[\u0003[\u0003[\u0003[\u0003[\u0003[\u0003[\u0003", + "[\u0003\\\u0003\\\u0003\\\u0003\\\u0003\\\u0003\\\u0003\\\u0003\\\u0003", + "\\\u0003\\\u0003]\u0003]\u0003]\u0003]\u0003]\u0003^\u0003^\u0003^\u0003", + "^\u0003^\u0003^\u0003_\u0003_\u0003_\u0003_\u0003_\u0003_\u0003_\u0003", + "`\u0003`\u0003`\u0003`\u0003`\u0003`\u0003`\u0003`\u0003`\u0003a\u0003", + "a\u0003a\u0003a\u0003a\u0003a\u0003a\u0003a\u0003a\u0003a\u0003b\u0003", + "b\u0003b\u0003c\u0003c\u0003c\u0003c\u0003c\u0003c\u0003c\u0003c\u0003", + "c\u0003c\u0003c\u0003c\u0003d\u0003d\u0003d\u0003d\u0003d\u0003d\u0003", + "d\u0003d\u0003d\u0003e\u0003e\u0003e\u0003e\u0003e\u0003e\u0003f\u0003", + "f\u0003f\u0003f\u0003f\u0003f\u0003f\u0003g\u0003g\u0003g\u0003g\u0003", + "g\u0003g\u0003g\u0003h\u0003h\u0003h\u0003h\u0003h\u0003h\u0003h\u0003", + "h\u0003i\u0003i\u0003i\u0003i\u0003j\u0003j\u0003j\u0003j\u0003j\u0003", + "j\u0003k\u0003k\u0003k\u0003k\u0003k\u0003l\u0003l\u0003l\u0003l\u0003", + "l\u0003l\u0003m\u0003m\u0003m\u0003m\u0003m\u0003m\u0003m\u0003m\u0003", + "m\u0003m\u0003m\u0003m\u0003n\u0003n\u0003n\u0003n\u0003n\u0003n\u0003", + "n\u0003o\u0003o\u0003o\u0003o\u0003o\u0003o\u0003o\u0003o\u0003o\u0003", + "p\u0003p\u0003p\u0003p\u0003p\u0003p\u0003q\u0003q\u0003q\u0003q\u0003", + "q\u0003q\u0003q\u0003r\u0003r\u0003r\u0003r\u0003r\u0003s\u0003s\u0003", + "s\u0003s\u0003s\u0003s\u0003s\u0003s\u0003t\u0003t\u0003t\u0003t\u0003", + "t\u0003t\u0003t\u0003t\u0003t\u0003u\u0003u\u0003u\u0003v\u0003v\u0003", + "v\u0003v\u0003v\u0003v\u0003v\u0003v\u0003v\u0003w\u0003w\u0003w\u0003", + "w\u0003w\u0003w\u0003w\u0003w\u0003x\u0003x\u0003x\u0003y\u0003y\u0003", + "y\u0003y\u0003y\u0003z\u0003z\u0003z\u0003z\u0003{\u0003{\u0003{\u0003", + "{\u0003{\u0003|\u0003|\u0003|\u0003}\u0003}\u0003}\u0003}\u0003~\u0003", + "~\u0003~\u0003\u007f\u0003\u007f\u0003\u007f\u0003\u007f\u0003\u0080", + "\u0003\u0080\u0003\u0080\u0003\u0080\u0003\u0080\u0003\u0081\u0003\u0081", + "\u0003\u0081\u0003\u0081\u0003\u0081\u0003\u0081\u0003\u0082\u0003\u0082", + "\u0003\u0082\u0003\u0082\u0003\u0082\u0003\u0082\u0003\u0082\u0003\u0082", + "\u0003\u0082\u0003\u0083\u0003\u0083\u0003\u0083\u0003\u0083\u0003\u0083", + "\u0003\u0083\u0003\u0084\u0003\u0084\u0003\u0084\u0003\u0084\u0003\u0084", + "\u0003\u0084\u0003\u0084\u0003\u0084\u0003\u0085\u0003\u0085\u0003\u0085", + "\u0003\u0085\u0003\u0086\u0003\u0086\u0003\u0086\u0003\u0086\u0003\u0086", + "\u0003\u0086\u0003\u0087\u0003\u0087\u0003\u0087\u0003\u0087\u0003\u0087", + "\u0003\u0087\u0003\u0087\u0003\u0087\u0003\u0087\u0003\u0087\u0003\u0088", + "\u0003\u0088\u0003\u0088\u0003\u0088\u0003\u0088\u0003\u0089\u0003\u0089", + "\u0003\u0089\u0003\u0089\u0003\u0089\u0003\u0089\u0003\u0089\u0003\u0089", + "\u0003\u0089\u0003\u0089\u0003\u0089\u0003\u0089\u0003\u008a\u0003\u008a", + "\u0003\u008a\u0003\u008a\u0003\u008b\u0003\u008b\u0003\u008b\u0003\u008b", + "\u0003\u008b\u0003\u008b\u0003\u008b\u0003\u008b\u0003\u008b\u0003\u008b", + "\u0003\u008b\u0003\u008c\u0003\u008c\u0003\u008c\u0003\u008c\u0003\u008c", + "\u0003\u008c\u0003\u008c\u0003\u008d\u0003\u008d\u0003\u008d\u0003\u008d", + "\u0003\u008e\u0003\u008e\u0003\u008e\u0003\u008f\u0003\u008f\u0003\u008f", + "\u0003\u008f\u0003\u008f\u0003\u0090\u0003\u0090\u0003\u0090\u0003\u0090", + "\u0003\u0090\u0003\u0090\u0003\u0090\u0003\u0090\u0003\u0091\u0003\u0091", + "\u0003\u0091\u0003\u0091\u0003\u0091\u0003\u0091\u0003\u0091\u0003\u0091", + "\u0003\u0091\u0003\u0091\u0003\u0091\u0003\u0092\u0003\u0092\u0003\u0092", + "\u0003\u0092\u0003\u0092\u0003\u0092\u0003\u0092\u0003\u0092\u0003\u0092", + "\u0003\u0092\u0003\u0093\u0003\u0093\u0003\u0093\u0003\u0093\u0003\u0093", + "\u0003\u0093\u0003\u0093\u0003\u0093\u0003\u0093\u0003\u0093\u0003\u0094", + "\u0003\u0094\u0003\u0094\u0003\u0094\u0003\u0094\u0003\u0094\u0003\u0094", + "\u0003\u0095\u0003\u0095\u0003\u0095\u0003\u0095\u0003\u0095\u0003\u0095", + "\u0003\u0096\u0003\u0096\u0003\u0096\u0003\u0096\u0003\u0096\u0003\u0096", + "\u0003\u0097\u0003\u0097\u0003\u0097\u0003\u0097\u0003\u0097\u0003\u0097", + "\u0003\u0097\u0003\u0097\u0003\u0097\u0003\u0097\u0003\u0097\u0003\u0097", + "\u0003\u0097\u0003\u0097\u0003\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\u0099", + "\u0003\u0099\u0003\u0099\u0003\u0099\u0003\u0099\u0003\u0099\u0003\u0099", + "\u0003\u0099\u0003\u0099\u0003\u0099\u0003\u0099\u0003\u0099\u0003\u0099", + "\u0003\u009a\u0003\u009a\u0003\u009a\u0003\u009a\u0003\u009a\u0003\u009a", + "\u0003\u009a\u0003\u009a\u0003\u009a\u0003\u009a\u0003\u009b\u0003\u009b", + "\u0003\u009b\u0003\u009b\u0003\u009b\u0003\u009b\u0003\u009b\u0003\u009c", + "\u0003\u009c\u0003\u009c\u0003\u009c\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\u009f\u0003\u009f\u0003\u009f", + "\u0003\u009f\u0003\u009f\u0003\u00a0\u0003\u00a0\u0003\u00a0\u0003\u00a0", + "\u0003\u00a0\u0003\u00a0\u0003\u00a0\u0003\u00a0\u0003\u00a1\u0003\u00a1", + "\u0003\u00a1\u0003\u00a1\u0003\u00a1\u0003\u00a1\u0003\u00a2\u0003\u00a2", + "\u0003\u00a2\u0003\u00a2\u0003\u00a2\u0003\u00a2\u0003\u00a2\u0003\u00a2", + "\u0003\u00a2\u0003\u00a2\u0003\u00a3\u0003\u00a3\u0003\u00a3\u0003\u00a3", + "\u0003\u00a3\u0003\u00a3\u0003\u00a3\u0003\u00a3\u0003\u00a3\u0003\u00a4", + "\u0003\u00a4\u0003\u00a4\u0003\u00a4\u0003\u00a4\u0003\u00a4\u0003\u00a4", + "\u0003\u00a4\u0003\u00a4\u0003\u00a5\u0003\u00a5\u0003\u00a5\u0003\u00a5", + "\u0003\u00a5\u0003\u00a5\u0003\u00a5\u0003\u00a5\u0003\u00a6\u0003\u00a6", + "\u0003\u00a6\u0003\u00a6\u0003\u00a6\u0003\u00a6\u0003\u00a7\u0003\u00a7", + "\u0003\u00a7\u0003\u00a7\u0003\u00a7\u0003\u00a7\u0003\u00a8\u0003\u00a8", + "\u0003\u00a8\u0003\u00a8\u0003\u00a8\u0003\u00a8\u0003\u00a8\u0003\u00a8", + "\u0003\u00a9\u0003\u00a9\u0003\u00a9\u0003\u00a9\u0003\u00a9\u0003\u00aa", + "\u0003\u00aa\u0003\u00aa\u0003\u00aa\u0003\u00aa\u0003\u00aa\u0003\u00aa", + "\u0003\u00aa\u0003\u00aa\u0003\u00aa\u0003\u00ab\u0003\u00ab\u0003\u00ab", + "\u0003\u00ab\u0003\u00ab\u0003\u00ab\u0003\u00ab\u0003\u00ac\u0003\u00ac", + "\u0003\u00ac\u0003\u00ac\u0003\u00ac\u0003\u00ac\u0003\u00ac\u0003\u00ac", + "\u0003\u00ac\u0003\u00ac\u0003\u00ad\u0003\u00ad\u0003\u00ad\u0003\u00ad", + "\u0003\u00ad\u0003\u00ad\u0003\u00ad\u0003\u00ad\u0003\u00ae\u0003\u00ae", + "\u0003\u00ae\u0003\u00ae\u0003\u00ae\u0003\u00ae\u0003\u00af\u0003\u00af", + "\u0003\u00af\u0003\u00af\u0003\u00af\u0003\u00af\u0003\u00af\u0003\u00af", + "\u0003\u00af\u0003\u00af\u0003\u00af\u0003\u00af\u0003\u00af\u0003\u00af", + "\u0003\u00b0\u0003\u00b0\u0003\u00b0\u0003\u00b0\u0003\u00b0\u0003\u00b0", + "\u0003\u00b0\u0003\u00b0\u0003\u00b0\u0003\u00b0\u0003\u00b0\u0003\u00b0", + "\u0003\u00b0\u0003\u00b1\u0003\u00b1\u0003\u00b1\u0003\u00b1\u0003\u00b1", + "\u0003\u00b1\u0003\u00b1\u0003\u00b1\u0003\u00b2\u0003\u00b2\u0003\u00b2", + "\u0003\u00b2\u0003\u00b2\u0003\u00b2\u0003\u00b2\u0003\u00b3\u0003\u00b3", + "\u0003\u00b3\u0003\u00b3\u0003\u00b3\u0003\u00b3\u0003\u00b3\u0003\u00b4", + "\u0003\u00b4\u0003\u00b4\u0003\u00b4\u0003\u00b4\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\u00b6\u0003\u00b6\u0003\u00b6\u0003\u00b6", + "\u0003\u00b6\u0003\u00b6\u0003\u00b6\u0003\u00b6\u0003\u00b6\u0003\u00b7", + "\u0003\u00b7\u0003\u00b7\u0003\u00b7\u0003\u00b7\u0003\u00b7\u0003\u00b7", + "\u0003\u00b7\u0003\u00b8\u0003\u00b8\u0003\u00b8\u0003\u00b8\u0003\u00b8", + "\u0003\u00b8\u0003\u00b8\u0003\u00b8\u0003\u00b8\u0003\u00b8\u0003\u00b9", + "\u0003\u00b9\u0003\u00b9\u0003\u00b9\u0003\u00b9\u0003\u00b9\u0003\u00b9", + "\u0003\u00b9\u0003\u00b9\u0003\u00b9\u0003\u00b9\u0003\u00ba\u0003\u00ba", + "\u0003\u00ba\u0003\u00ba\u0003\u00ba\u0003\u00ba\u0003\u00bb\u0003\u00bb", + "\u0003\u00bb\u0003\u00bb\u0003\u00bb\u0003\u00bb\u0003\u00bb\u0003\u00bb", + "\u0003\u00bc\u0003\u00bc\u0003\u00bc\u0003\u00bc\u0003\u00bc\u0003\u00bc", + "\u0003\u00bc\u0003\u00bc\u0003\u00bc\u0003\u00bc\u0003\u00bc\u0003\u00bc", + "\u0003\u00bd\u0003\u00bd\u0003\u00bd\u0003\u00bd\u0003\u00bd\u0003\u00bd", + "\u0003\u00bd\u0003\u00be\u0003\u00be\u0003\u00be\u0003\u00be\u0003\u00be", + "\u0003\u00be\u0003\u00be\u0003\u00be\u0003\u00bf\u0003\u00bf\u0003\u00bf", + "\u0003\u00bf\u0003\u00bf\u0003\u00bf\u0003\u00bf\u0003\u00bf\u0003\u00bf", + "\u0003\u00c0\u0003\u00c0\u0003\u00c0\u0003\u00c0\u0003\u00c0\u0003\u00c0", + "\u0003\u00c0\u0003\u00c0\u0003\u00c0\u0003\u00c0\u0003\u00c1\u0003\u00c1", + "\u0003\u00c1\u0003\u00c1\u0003\u00c1\u0003\u00c1\u0003\u00c1\u0003\u00c2", + "\u0003\u00c2\u0003\u00c2\u0003\u00c2\u0003\u00c2\u0003\u00c2\u0003\u00c3", + "\u0003\u00c3\u0003\u00c3\u0003\u00c3\u0003\u00c3\u0003\u00c3\u0003\u00c3", + "\u0003\u00c3\u0003\u00c3\u0003\u00c3\u0003\u00c3\u0003\u00c3\u0003\u00c4", + "\u0003\u00c4\u0003\u00c4\u0003\u00c4\u0003\u00c4\u0003\u00c4\u0003\u00c4", + "\u0003\u00c4\u0003\u00c4\u0003\u00c4\u0003\u00c4\u0003\u00c4\u0003\u00c4", + "\u0003\u00c5\u0003\u00c5\u0003\u00c5\u0003\u00c5\u0003\u00c5\u0003\u00c5", + "\u0003\u00c5\u0003\u00c5\u0003\u00c5\u0003\u00c6\u0003\u00c6\u0003\u00c6", + "\u0003\u00c6\u0003\u00c6\u0003\u00c6\u0003\u00c6\u0003\u00c6\u0003\u00c6", + "\u0003\u00c6\u0003\u00c7\u0003\u00c7\u0003\u00c7\u0003\u00c7\u0003\u00c8", + "\u0003\u00c8\u0003\u00c8\u0003\u00c8\u0003\u00c8\u0003\u00c8\u0003\u00c8", + "\u0003\u00c8\u0003\u00c8\u0003\u00c9\u0003\u00c9\u0003\u00c9\u0003\u00c9", + "\u0003\u00c9\u0003\u00c9\u0003\u00c9\u0003\u00c9\u0003\u00ca\u0003\u00ca", + "\u0003\u00ca\u0003\u00ca\u0003\u00ca\u0003\u00ca\u0003\u00ca\u0003\u00ca", + "\u0003\u00cb\u0003\u00cb\u0003\u00cb\u0003\u00cb\u0003\u00cb\u0003\u00cc", + "\u0003\u00cc\u0003\u00cc\u0003\u00cc\u0003\u00cc\u0003\u00cc\u0003\u00cc", + "\u0003\u00cc\u0003\u00cc\u0003\u00cc\u0003\u00cc\u0003\u00cd\u0003\u00cd", + "\u0003\u00cd\u0003\u00cd\u0003\u00cd\u0003\u00cd\u0003\u00cd\u0003\u00cd", + "\u0003\u00cd\u0003\u00cd\u0003\u00cd\u0003\u00cd\u0003\u00ce\u0003\u00ce", + "\u0003\u00ce\u0003\u00ce\u0003\u00ce\u0003\u00ce\u0003\u00ce\u0003\u00ce", + "\u0003\u00ce\u0003\u00cf\u0003\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\u00d1\u0003\u00d1", + "\u0003\u00d1\u0003\u00d1\u0003\u00d1\u0003\u00d1\u0003\u00d2\u0003\u00d2", + "\u0003\u00d2\u0003\u00d2\u0003\u00d2\u0003\u00d3\u0003\u00d3\u0003\u00d3", + "\u0003\u00d3\u0003\u00d3\u0003\u00d3\u0003\u00d3\u0003\u00d4\u0003\u00d4", + "\u0003\u00d4\u0003\u00d4\u0003\u00d4\u0003\u00d5\u0003\u00d5\u0003\u00d5", + "\u0003\u00d5\u0003\u00d5\u0003\u00d5\u0003\u00d5\u0003\u00d6\u0003\u00d6", + "\u0003\u00d6\u0003\u00d6\u0003\u00d6\u0003\u00d6\u0003\u00d6\u0003\u00d6", + "\u0003\u00d7\u0003\u00d7\u0003\u00d7\u0003\u00d7\u0003\u00d7\u0003\u00d7", + "\u0003\u00d7\u0003\u00d8\u0003\u00d8\u0003\u00d8\u0003\u00d8\u0003\u00d8", + "\u0003\u00d8\u0003\u00d8\u0003\u00d9\u0003\u00d9\u0003\u00d9\u0003\u00d9", + "\u0003\u00d9\u0003\u00da\u0003\u00da\u0003\u00da\u0003\u00da\u0003\u00da", + "\u0003\u00db\u0003\u00db\u0003\u00db\u0003\u00db\u0003\u00db\u0003\u00db", + "\u0003\u00dc\u0003\u00dc\u0003\u00dc\u0003\u00dc\u0003\u00dc\u0003\u00dc", + "\u0003\u00dc\u0003\u00dc\u0003\u00dc\u0003\u00dc\u0003\u00dc\u0003\u00dc", + "\u0003\u00dd\u0003\u00dd\u0003\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\u00de\u0003\u00de", + "\u0003\u00df\u0003\u00df\u0003\u00df\u0003\u00df\u0003\u00df\u0003\u00df", + "\u0003\u00e0\u0003\u00e0\u0003\u00e0\u0003\u00e0\u0003\u00e0\u0003\u00e0", + "\u0003\u00e0\u0003\u00e0\u0003\u00e1\u0003\u00e1\u0003\u00e1\u0003\u00e1", + "\u0003\u00e1\u0003\u00e1\u0003\u00e2\u0003\u00e2\u0003\u00e2\u0003\u00e2", + "\u0003\u00e2\u0003\u00e2\u0003\u00e2\u0003\u00e3\u0003\u00e3\u0003\u00e3", + "\u0003\u00e3\u0003\u00e3\u0003\u00e4\u0003\u00e4\u0003\u00e4\u0003\u00e4", + "\u0003\u00e4\u0003\u00e4\u0003\u00e5\u0003\u00e5\u0003\u00e5\u0003\u00e5", + "\u0003\u00e5\u0003\u00e5\u0003\u00e5\u0003\u00e6\u0003\u00e6\u0003\u00e6", + "\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\u00e8\u0003\u00e8\u0003\u00e8\u0003\u00e8", + "\u0003\u00e8\u0003\u00e8\u0003\u00e8\u0003\u00e8\u0003\u00e8\u0003\u00e8", + "\u0003\u00e8\u0003\u00e8\u0003\u00e8\u0003\u00e8\u0003\u00e8\u0003\u00e8", + "\u0003\u00e9\u0003\u00e9\u0003\u00e9\u0003\u00e9\u0003\u00e9\u0003\u00e9", + "\u0003\u00e9\u0003\u00e9\u0003\u00e9\u0003\u00ea\u0003\u00ea\u0003\u00ea", + "\u0003\u00ea\u0003\u00eb\u0003\u00eb\u0003\u00eb\u0003\u00eb\u0003\u00ec", + "\u0003\u00ec\u0003\u00ec\u0003\u00ec\u0003\u00ec\u0003\u00ec\u0003\u00ed", + "\u0003\u00ed\u0003\u00ed\u0003\u00ed\u0003\u00ed\u0003\u00ed\u0003\u00ee", + "\u0003\u00ee\u0003\u00ee\u0003\u00ee\u0003\u00ee\u0003\u00ef\u0003\u00ef", + "\u0003\u00ef\u0003\u00ef\u0003\u00ef\u0003\u00f0\u0003\u00f0\u0003\u00f0", + "\u0003\u00f0\u0003\u00f0\u0003\u00f0\u0003\u00f0\u0003\u00f0\u0003\u00f1", + "\u0003\u00f1\u0003\u00f1\u0003\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\u00f3\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\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\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\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\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\u00fb\u0003\u00fb\u0003\u00fb\u0003\u00fb", + "\u0003\u00fb\u0003\u00fb\u0003\u00fb\u0003\u00fb\u0003\u00fb\u0003\u00fb", + "\u0003\u00fb\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\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\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\u00ff\u0003\u00ff\u0003\u00ff", + "\u0003\u0100\u0003\u0100\u0003\u0100\u0003\u0100\u0003\u0100\u0003\u0100", + "\u0003\u0100\u0003\u0100\u0003\u0100\u0003\u0100\u0003\u0100\u0003\u0100", + "\u0003\u0100\u0003\u0101\u0003\u0101\u0006\u0101\u0a2e\n\u0101\r\u0101", + "\u000e\u0101\u0a2f\u0003\u0101\u0003\u0101\u0003\u0102\u0003\u0102\u0006", + "\u0102\u0a36\n\u0102\r\u0102\u000e\u0102\u0a37\u0003\u0102\u0003\u0102", + "\u0003\u0103\u0003\u0103\u0003\u0103\u0003\u0104\u0003\u0104\u0003\u0105", + "\u0003\u0105\u0003\u0105\u0003\u0105\u0003\u0105\u0003\u0105\u0003\u0105", + "\u0003\u0106\u0003\u0106\u0003\u0106\u0003\u0106\u0003\u0106\u0003\u0106", + "\u0003\u0106\u0003\u0107\u0003\u0107\u0003\u0107\u0003\u0107\u0003\u0107", + "\u0003\u0107\u0003\u0108\u0003\u0108\u0003\u0108\u0003\u0108\u0003\u0109", + "\u0003\u0109\u0003\u0109\u0003\u0109\u0003\u0109\u0003\u010a\u0003\u010a", + "\u0003\u010a\u0003\u010a\u0003\u010a\u0003\u010a\u0003\u010a\u0003\u010a", + "\u0003\u010b\u0003\u010b\u0003\u010b\u0003\u010b\u0003\u010b\u0003\u010b", + "\u0003\u010b\u0003\u010c\u0003\u010c\u0003\u010c\u0003\u010c\u0003\u010c", + "\u0003\u010c\u0003\u010c\u0003\u010c\u0003\u010c\u0003\u010c\u0003\u010d", + "\u0003\u010d\u0003\u010d\u0003\u010d\u0003\u010d\u0003\u010d\u0003\u010e", + "\u0003\u010e\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\u0110", + "\u0003\u0111\u0003\u0111\u0003\u0111\u0003\u0111\u0003\u0112\u0003\u0112", + "\u0003\u0112\u0003\u0112\u0003\u0112\u0003\u0112\u0003\u0112\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\u0114", + "\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\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\u0119", + "\u0003\u0119\u0003\u0119\u0003\u0119\u0003\u0119\u0003\u0119\u0003\u0119", + "\u0003\u0119\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\u011c\u0003\u011d\u0003\u011d\u0003\u011e\u0003\u011e", + "\u0003\u011f\u0003\u011f\u0003\u0120\u0003\u0120\u0003\u0121\u0003\u0121", + "\u0003\u0122\u0003\u0122\u0003\u0123\u0003\u0123\u0003\u0124\u0003\u0124", + "\u0003\u0125\u0003\u0125\u0003\u0126\u0003\u0126\u0003\u0127\u0003\u0127", + "\u0003\u0128\u0003\u0128\u0003\u0129\u0003\u0129\u0003\u012a\u0003\u012a", + "\u0003\u012b\u0003\u012b\u0003\u012c\u0003\u012c\u0003\u012d\u0003\u012d", + "\u0003\u012e\u0003\u012e\u0003\u012f\u0003\u012f\u0003\u0130\u0003\u0130", + "\u0003\u0131\u0003\u0131\u0003\u0132\u0003\u0132\u0003\u0133\u0003\u0133", + "\u0003\u0134\u0003\u0134\u0003\u0135\u0003\u0135\u0003\u0136\u0003\u0136", + "\u0003\u0137\u0003\u0137\u0003\u0138\u0003\u0138\u0003\u0139\u0003\u0139", + "\u0003\u0139\u0003\u013a\u0003\u013a\u0003\u013b\u0003\u013b\u0003\u013b", + "\u0005\u013b\u0b20\n\u013b\u0003\u013c\u0006\u013c\u0b23\n\u013c\r\u013c", + "\u000e\u013c\u0b24\u0003\u013d\u0006\u013d\u0b28\n\u013d\r\u013d\u000e", + "\u013d\u0b29\u0005\u013d\u0b2c\n\u013d\u0003\u013d\u0003\u013d\u0006", + "\u013d\u0b30\n\u013d\r\u013d\u000e\u013d\u0b31\u0003\u013d\u0006\u013d", + "\u0b35\n\u013d\r\u013d\u000e\u013d\u0b36\u0003\u013d\u0003\u013d\u0003", + "\u013d\u0003\u013d\u0006\u013d\u0b3d\n\u013d\r\u013d\u000e\u013d\u0b3e", + "\u0005\u013d\u0b41\n\u013d\u0003\u013d\u0003\u013d\u0006\u013d\u0b45", + "\n\u013d\r\u013d\u000e\u013d\u0b46\u0003\u013d\u0003\u013d\u0003\u013d", + "\u0006\u013d\u0b4c\n\u013d\r\u013d\u000e\u013d\u0b4d\u0003\u013d\u0003", + "\u013d\u0005\u013d\u0b52\n\u013d\u0003\u013e\u0003\u013e\u0003\u013f", + "\u0003\u013f\u0003\u013f\u0006\u013f\u0b59\n\u013f\r\u013f\u000e\u013f", + "\u0b5a\u0003\u0140\u0003\u0140\u0005\u0140\u0b5f\n\u0140\u0003\u0140", + "\u0006\u0140\u0b62\n\u0140\r\u0140\u000e\u0140\u0b63\u0003\u0141\u0007", + "\u0141\u0b67\n\u0141\f\u0141\u000e\u0141\u0b6a\u000b\u0141\u0003\u0141", + "\u0006\u0141\u0b6d\n\u0141\r\u0141\u000e\u0141\u0b6e\u0003\u0141\u0007", + "\u0141\u0b72\n\u0141\f\u0141\u000e\u0141\u0b75\u000b\u0141\u0003\u0142", + "\u0003\u0142\u0003\u0143\u0003\u0143\u0003\u0144\u0003\u0144\u0003\u0144", + "\u0003\u0144\u0003\u0144\u0003\u0144\u0007\u0144\u0b81\n\u0144\f\u0144", + "\u000e\u0144\u0b84\u000b\u0144\u0003\u0144\u0003\u0144\u0003\u0145\u0003", + "\u0145\u0003\u0145\u0003\u0145\u0003\u0145\u0003\u0145\u0007\u0145\u0b8e", + "\n\u0145\f\u0145\u000e\u0145\u0b91\u000b\u0145\u0003\u0145\u0003\u0145", + "\u0003\u0146\u0003\u0146\u0003\u0146\u0006\u0146\u0b98\n\u0146\r\u0146", + "\u000e\u0146\u0b99\u0003\u0146\u0003\u0146\u0003\u0147\u0003\u0147\u0003", + "\u0147\u0003\u0147\u0003\u0147\u0003\u0147\u0007\u0147\u0ba4\n\u0147", + "\f\u0147\u000e\u0147\u0ba7\u000b\u0147\u0003\u0147\u0003\u0147\u0005", + "\u029c\u0b68\u0b6e\u0002\u0148\u0003\u0003\u0005\u0004\u0007\u0005\t", + "\u0006\u000b\u0007\r\b\u000f\t\u0011\n\u0013\u000b\u0015\f\u0017\r\u0019", + "\u000e\u001b\u000f\u001d\u0010\u001f\u0011!\u0012#\u0013%\u0014\'\u0015", + ")\u0016+\u0017-\u0018/\u00191\u001a3\u001b5\u001c7\u001d9\u001e;\u001f", + "= ?!A\"C#E$G%I&K\'M(O)Q*S+U,W-Y.[/]0_1a2c3e4g5i6k7m8o9q:s;u{?}", + "@\u007fA\u0081B\u0083C\u0085D\u0087E\u0089F\u008bG\u008dH\u008fI\u0091", + "J\u0093K\u0095L\u0097M\u0099N\u009bO\u009dP\u009fQ\u00a1R\u00a3S\u00a5", + "T\u00a7U\u00a9V\u00abW\u00adX\u00afY\u00b1Z\u00b3[\u00b5\\\u00b7]\u00b9", + "^\u00bb_\u00bd`\u00bfa\u00c1b\u00c3c\u00c5d\u00c7e\u00c9f\u00cbg\u00cd", + "h\u00cfi\u00d1j\u00d3k\u00d5l\u00d7m\u00d9n\u00dbo\u00ddp\u00dfq\u00e1", + "r\u00e3s\u00e5t\u00e7u\u00e9v\u00ebw\u00edx\u00efy\u00f1z\u00f3{\u00f5", + "|\u00f7}\u00f9~\u00fb\u007f\u00fd\u0080\u00ff\u0081\u0101\u0082\u0103", + "\u0083\u0105\u0084\u0107\u0085\u0109\u0086\u010b\u0087\u010d\u0088\u010f", + "\u0089\u0111\u008a\u0113\u008b\u0115\u008c\u0117\u008d\u0119\u008e\u011b", + "\u008f\u011d\u0090\u011f\u0091\u0121\u0092\u0123\u0093\u0125\u0094\u0127", + "\u0095\u0129\u0096\u012b\u0097\u012d\u0098\u012f\u0099\u0131\u009a\u0133", + "\u009b\u0135\u009c\u0137\u009d\u0139\u009e\u013b\u009f\u013d\u00a0\u013f", + "\u00a1\u0141\u00a2\u0143\u00a3\u0145\u00a4\u0147\u00a5\u0149\u00a6\u014b", + "\u00a7\u014d\u00a8\u014f\u00a9\u0151\u00aa\u0153\u00ab\u0155\u00ac\u0157", + "\u00ad\u0159\u00ae\u015b\u00af\u015d\u00b0\u015f\u00b1\u0161\u00b2\u0163", + "\u00b3\u0165\u00b4\u0167\u00b5\u0169\u00b6\u016b\u00b7\u016d\u00b8\u016f", + "\u00b9\u0171\u00ba\u0173\u00bb\u0175\u00bc\u0177\u00bd\u0179\u00be\u017b", + "\u00bf\u017d\u00c0\u017f\u00c1\u0181\u00c2\u0183\u00c3\u0185\u00c4\u0187", + "\u00c5\u0189\u00c6\u018b\u00c7\u018d\u00c8\u018f\u00c9\u0191\u00ca\u0193", + "\u00cb\u0195\u00cc\u0197\u00cd\u0199\u00ce\u019b\u00cf\u019d\u00d0\u019f", + "\u00d1\u01a1\u00d2\u01a3\u00d3\u01a5\u00d4\u01a7\u00d5\u01a9\u00d6\u01ab", + "\u00d7\u01ad\u00d8\u01af\u00d9\u01b1\u00da\u01b3\u00db\u01b5\u00dc\u01b7", + "\u00dd\u01b9\u00de\u01bb\u00df\u01bd\u00e0\u01bf\u00e1\u01c1\u00e2\u01c3", + "\u00e3\u01c5\u00e4\u01c7\u00e5\u01c9\u00e6\u01cb\u00e7\u01cd\u00e8\u01cf", + "\u00e9\u01d1\u00ea\u01d3\u00eb\u01d5\u00ec\u01d7\u00ed\u01d9\u00ee\u01db", + "\u00ef\u01dd\u00f0\u01df\u00f1\u01e1\u00f2\u01e3\u00f3\u01e5\u00f4\u01e7", + "\u00f5\u01e9\u00f6\u01eb\u00f7\u01ed\u00f8\u01ef\u00f9\u01f1\u00fa\u01f3", + "\u00fb\u01f5\u00fc\u01f7\u00fd\u01f9\u00fe\u01fb\u00ff\u01fd\u0100\u01ff", + "\u0101\u0201\u0102\u0203\u0103\u0205\u0104\u0207\u0105\u0209\u0106\u020b", + "\u0107\u020d\u0108\u020f\u0109\u0211\u010a\u0213\u010b\u0215\u010c\u0217", + "\u010d\u0219\u010e\u021b\u010f\u021d\u0110\u021f\u0111\u0221\u0112\u0223", + "\u0113\u0225\u0114\u0227\u0115\u0229\u0116\u022b\u0117\u022d\u0118\u022f", + "\u0119\u0231\u011a\u0233\u011b\u0235\u011c\u0237\u011d\u0239\u011e\u023b", + "\u011f\u023d\u0120\u023f\u0121\u0241\u0122\u0243\u0123\u0245\u0124\u0247", + "\u0125\u0249\u0126\u024b\u0127\u024d\u0128\u024f\u0129\u0251\u012a\u0253", + "\u012b\u0255\u012c\u0257\u012d\u0259\u012e\u025b\u012f\u025d\u0130\u025f", + "\u0131\u0261\u0132\u0263\u0133\u0265\u0134\u0267\u0135\u0269\u0136\u026b", + "\u0137\u026d\u0138\u026f\u0139\u0271\u013a\u0273\u013b\u0275\u013c\u0277", + "\u013d\u0279\u013e\u027b\u013f\u027d\u0140\u027f\u0002\u0281\u0002\u0283", + "\u0002\u0285\u0002\u0287\u0002\u0289\u0002\u028b\u0002\u028d\u0002\u0003", + "\u0002\u000f\u0005\u0002\u000b\f\u000f\u000f\"\"\u0004\u0002\f\f\u000f", + "\u000f\u0003\u0002bb\u0003\u0002$$\u0004\u0002--//\u0006\u00022;C\\", + "aac|\u0005\u0002C\\aac|\u0003\u00022;\u0004\u0002C\\c|\u0004\u0002$", + "$^^\u0004\u0002))^^\u0003\u000223\u0004\u0002^^bb\u0002\u0bcc\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\u0002", + "9\u0003\u0002\u0002\u0002\u0002;\u0003\u0002\u0002\u0002\u0002=\u0003", + "\u0002\u0002\u0002\u0002?\u0003\u0002\u0002\u0002\u0002A\u0003\u0002", + "\u0002\u0002\u0002C\u0003\u0002\u0002\u0002\u0002E\u0003\u0002\u0002", + "\u0002\u0002G\u0003\u0002\u0002\u0002\u0002I\u0003\u0002\u0002\u0002", + "\u0002K\u0003\u0002\u0002\u0002\u0002M\u0003\u0002\u0002\u0002\u0002", + "O\u0003\u0002\u0002\u0002\u0002Q\u0003\u0002\u0002\u0002\u0002S\u0003", + "\u0002\u0002\u0002\u0002U\u0003\u0002\u0002\u0002\u0002W\u0003\u0002", + "\u0002\u0002\u0002Y\u0003\u0002\u0002\u0002\u0002[\u0003\u0002\u0002", + "\u0002\u0002]\u0003\u0002\u0002\u0002\u0002_\u0003\u0002\u0002\u0002", + "\u0002a\u0003\u0002\u0002\u0002\u0002c\u0003\u0002\u0002\u0002\u0002", + "e\u0003\u0002\u0002\u0002\u0002g\u0003\u0002\u0002\u0002\u0002i\u0003", + "\u0002\u0002\u0002\u0002k\u0003\u0002\u0002\u0002\u0002m\u0003\u0002", + "\u0002\u0002\u0002o\u0003\u0002\u0002\u0002\u0002q\u0003\u0002\u0002", + "\u0002\u0002s\u0003\u0002\u0002\u0002\u0002u\u0003\u0002\u0002\u0002", + "\u0002w\u0003\u0002\u0002\u0002\u0002y\u0003\u0002\u0002\u0002\u0002", + "{\u0003\u0002\u0002\u0002\u0002}\u0003\u0002\u0002\u0002\u0002\u007f", + "\u0003\u0002\u0002\u0002\u0002\u0081\u0003\u0002\u0002\u0002\u0002\u0083", + "\u0003\u0002\u0002\u0002\u0002\u0085\u0003\u0002\u0002\u0002\u0002\u0087", + "\u0003\u0002\u0002\u0002\u0002\u0089\u0003\u0002\u0002\u0002\u0002\u008b", + "\u0003\u0002\u0002\u0002\u0002\u008d\u0003\u0002\u0002\u0002\u0002\u008f", + "\u0003\u0002\u0002\u0002\u0002\u0091\u0003\u0002\u0002\u0002\u0002\u0093", + "\u0003\u0002\u0002\u0002\u0002\u0095\u0003\u0002\u0002\u0002\u0002\u0097", + "\u0003\u0002\u0002\u0002\u0002\u0099\u0003\u0002\u0002\u0002\u0002\u009b", + "\u0003\u0002\u0002\u0002\u0002\u009d\u0003\u0002\u0002\u0002\u0002\u009f", + "\u0003\u0002\u0002\u0002\u0002\u00a1\u0003\u0002\u0002\u0002\u0002\u00a3", + "\u0003\u0002\u0002\u0002\u0002\u00a5\u0003\u0002\u0002\u0002\u0002\u00a7", + "\u0003\u0002\u0002\u0002\u0002\u00a9\u0003\u0002\u0002\u0002\u0002\u00ab", + "\u0003\u0002\u0002\u0002\u0002\u00ad\u0003\u0002\u0002\u0002\u0002\u00af", + "\u0003\u0002\u0002\u0002\u0002\u00b1\u0003\u0002\u0002\u0002\u0002\u00b3", + "\u0003\u0002\u0002\u0002\u0002\u00b5\u0003\u0002\u0002\u0002\u0002\u00b7", + "\u0003\u0002\u0002\u0002\u0002\u00b9\u0003\u0002\u0002\u0002\u0002\u00bb", + "\u0003\u0002\u0002\u0002\u0002\u00bd\u0003\u0002\u0002\u0002\u0002\u00bf", + "\u0003\u0002\u0002\u0002\u0002\u00c1\u0003\u0002\u0002\u0002\u0002\u00c3", + "\u0003\u0002\u0002\u0002\u0002\u00c5\u0003\u0002\u0002\u0002\u0002\u00c7", + "\u0003\u0002\u0002\u0002\u0002\u00c9\u0003\u0002\u0002\u0002\u0002\u00cb", + "\u0003\u0002\u0002\u0002\u0002\u00cd\u0003\u0002\u0002\u0002\u0002\u00cf", + "\u0003\u0002\u0002\u0002\u0002\u00d1\u0003\u0002\u0002\u0002\u0002\u00d3", + "\u0003\u0002\u0002\u0002\u0002\u00d5\u0003\u0002\u0002\u0002\u0002\u00d7", + "\u0003\u0002\u0002\u0002\u0002\u00d9\u0003\u0002\u0002\u0002\u0002\u00db", + "\u0003\u0002\u0002\u0002\u0002\u00dd\u0003\u0002\u0002\u0002\u0002\u00df", + "\u0003\u0002\u0002\u0002\u0002\u00e1\u0003\u0002\u0002\u0002\u0002\u00e3", + "\u0003\u0002\u0002\u0002\u0002\u00e5\u0003\u0002\u0002\u0002\u0002\u00e7", + "\u0003\u0002\u0002\u0002\u0002\u00e9\u0003\u0002\u0002\u0002\u0002\u00eb", + "\u0003\u0002\u0002\u0002\u0002\u00ed\u0003\u0002\u0002\u0002\u0002\u00ef", + "\u0003\u0002\u0002\u0002\u0002\u00f1\u0003\u0002\u0002\u0002\u0002\u00f3", + "\u0003\u0002\u0002\u0002\u0002\u00f5\u0003\u0002\u0002\u0002\u0002\u00f7", + "\u0003\u0002\u0002\u0002\u0002\u00f9\u0003\u0002\u0002\u0002\u0002\u00fb", + "\u0003\u0002\u0002\u0002\u0002\u00fd\u0003\u0002\u0002\u0002\u0002\u00ff", + "\u0003\u0002\u0002\u0002\u0002\u0101\u0003\u0002\u0002\u0002\u0002\u0103", + "\u0003\u0002\u0002\u0002\u0002\u0105\u0003\u0002\u0002\u0002\u0002\u0107", + "\u0003\u0002\u0002\u0002\u0002\u0109\u0003\u0002\u0002\u0002\u0002\u010b", + "\u0003\u0002\u0002\u0002\u0002\u010d\u0003\u0002\u0002\u0002\u0002\u010f", + "\u0003\u0002\u0002\u0002\u0002\u0111\u0003\u0002\u0002\u0002\u0002\u0113", + "\u0003\u0002\u0002\u0002\u0002\u0115\u0003\u0002\u0002\u0002\u0002\u0117", + "\u0003\u0002\u0002\u0002\u0002\u0119\u0003\u0002\u0002\u0002\u0002\u011b", + "\u0003\u0002\u0002\u0002\u0002\u011d\u0003\u0002\u0002\u0002\u0002\u011f", + "\u0003\u0002\u0002\u0002\u0002\u0121\u0003\u0002\u0002\u0002\u0002\u0123", + "\u0003\u0002\u0002\u0002\u0002\u0125\u0003\u0002\u0002\u0002\u0002\u0127", + "\u0003\u0002\u0002\u0002\u0002\u0129\u0003\u0002\u0002\u0002\u0002\u012b", + "\u0003\u0002\u0002\u0002\u0002\u012d\u0003\u0002\u0002\u0002\u0002\u012f", + "\u0003\u0002\u0002\u0002\u0002\u0131\u0003\u0002\u0002\u0002\u0002\u0133", + "\u0003\u0002\u0002\u0002\u0002\u0135\u0003\u0002\u0002\u0002\u0002\u0137", + "\u0003\u0002\u0002\u0002\u0002\u0139\u0003\u0002\u0002\u0002\u0002\u013b", + "\u0003\u0002\u0002\u0002\u0002\u013d\u0003\u0002\u0002\u0002\u0002\u013f", + "\u0003\u0002\u0002\u0002\u0002\u0141\u0003\u0002\u0002\u0002\u0002\u0143", + "\u0003\u0002\u0002\u0002\u0002\u0145\u0003\u0002\u0002\u0002\u0002\u0147", + "\u0003\u0002\u0002\u0002\u0002\u0149\u0003\u0002\u0002\u0002\u0002\u014b", + "\u0003\u0002\u0002\u0002\u0002\u014d\u0003\u0002\u0002\u0002\u0002\u014f", + "\u0003\u0002\u0002\u0002\u0002\u0151\u0003\u0002\u0002\u0002\u0002\u0153", + "\u0003\u0002\u0002\u0002\u0002\u0155\u0003\u0002\u0002\u0002\u0002\u0157", + "\u0003\u0002\u0002\u0002\u0002\u0159\u0003\u0002\u0002\u0002\u0002\u015b", + "\u0003\u0002\u0002\u0002\u0002\u015d\u0003\u0002\u0002\u0002\u0002\u015f", + "\u0003\u0002\u0002\u0002\u0002\u0161\u0003\u0002\u0002\u0002\u0002\u0163", + "\u0003\u0002\u0002\u0002\u0002\u0165\u0003\u0002\u0002\u0002\u0002\u0167", + "\u0003\u0002\u0002\u0002\u0002\u0169\u0003\u0002\u0002\u0002\u0002\u016b", + "\u0003\u0002\u0002\u0002\u0002\u016d\u0003\u0002\u0002\u0002\u0002\u016f", + "\u0003\u0002\u0002\u0002\u0002\u0171\u0003\u0002\u0002\u0002\u0002\u0173", + "\u0003\u0002\u0002\u0002\u0002\u0175\u0003\u0002\u0002\u0002\u0002\u0177", + "\u0003\u0002\u0002\u0002\u0002\u0179\u0003\u0002\u0002\u0002\u0002\u017b", + "\u0003\u0002\u0002\u0002\u0002\u017d\u0003\u0002\u0002\u0002\u0002\u017f", + "\u0003\u0002\u0002\u0002\u0002\u0181\u0003\u0002\u0002\u0002\u0002\u0183", + "\u0003\u0002\u0002\u0002\u0002\u0185\u0003\u0002\u0002\u0002\u0002\u0187", + "\u0003\u0002\u0002\u0002\u0002\u0189\u0003\u0002\u0002\u0002\u0002\u018b", + "\u0003\u0002\u0002\u0002\u0002\u018d\u0003\u0002\u0002\u0002\u0002\u018f", + "\u0003\u0002\u0002\u0002\u0002\u0191\u0003\u0002\u0002\u0002\u0002\u0193", + "\u0003\u0002\u0002\u0002\u0002\u0195\u0003\u0002\u0002\u0002\u0002\u0197", + "\u0003\u0002\u0002\u0002\u0002\u0199\u0003\u0002\u0002\u0002\u0002\u019b", + "\u0003\u0002\u0002\u0002\u0002\u019d\u0003\u0002\u0002\u0002\u0002\u019f", + "\u0003\u0002\u0002\u0002\u0002\u01a1\u0003\u0002\u0002\u0002\u0002\u01a3", + "\u0003\u0002\u0002\u0002\u0002\u01a5\u0003\u0002\u0002\u0002\u0002\u01a7", + "\u0003\u0002\u0002\u0002\u0002\u01a9\u0003\u0002\u0002\u0002\u0002\u01ab", + "\u0003\u0002\u0002\u0002\u0002\u01ad\u0003\u0002\u0002\u0002\u0002\u01af", + "\u0003\u0002\u0002\u0002\u0002\u01b1\u0003\u0002\u0002\u0002\u0002\u01b3", + "\u0003\u0002\u0002\u0002\u0002\u01b5\u0003\u0002\u0002\u0002\u0002\u01b7", + "\u0003\u0002\u0002\u0002\u0002\u01b9\u0003\u0002\u0002\u0002\u0002\u01bb", + "\u0003\u0002\u0002\u0002\u0002\u01bd\u0003\u0002\u0002\u0002\u0002\u01bf", + "\u0003\u0002\u0002\u0002\u0002\u01c1\u0003\u0002\u0002\u0002\u0002\u01c3", + "\u0003\u0002\u0002\u0002\u0002\u01c5\u0003\u0002\u0002\u0002\u0002\u01c7", + "\u0003\u0002\u0002\u0002\u0002\u01c9\u0003\u0002\u0002\u0002\u0002\u01cb", + "\u0003\u0002\u0002\u0002\u0002\u01cd\u0003\u0002\u0002\u0002\u0002\u01cf", + "\u0003\u0002\u0002\u0002\u0002\u01d1\u0003\u0002\u0002\u0002\u0002\u01d3", + "\u0003\u0002\u0002\u0002\u0002\u01d5\u0003\u0002\u0002\u0002\u0002\u01d7", + "\u0003\u0002\u0002\u0002\u0002\u01d9\u0003\u0002\u0002\u0002\u0002\u01db", + "\u0003\u0002\u0002\u0002\u0002\u01dd\u0003\u0002\u0002\u0002\u0002\u01df", + "\u0003\u0002\u0002\u0002\u0002\u01e1\u0003\u0002\u0002\u0002\u0002\u01e3", + "\u0003\u0002\u0002\u0002\u0002\u01e5\u0003\u0002\u0002\u0002\u0002\u01e7", + "\u0003\u0002\u0002\u0002\u0002\u01e9\u0003\u0002\u0002\u0002\u0002\u01eb", + "\u0003\u0002\u0002\u0002\u0002\u01ed\u0003\u0002\u0002\u0002\u0002\u01ef", + "\u0003\u0002\u0002\u0002\u0002\u01f1\u0003\u0002\u0002\u0002\u0002\u01f3", + "\u0003\u0002\u0002\u0002\u0002\u01f5\u0003\u0002\u0002\u0002\u0002\u01f7", + "\u0003\u0002\u0002\u0002\u0002\u01f9\u0003\u0002\u0002\u0002\u0002\u01fb", + "\u0003\u0002\u0002\u0002\u0002\u01fd\u0003\u0002\u0002\u0002\u0002\u01ff", + "\u0003\u0002\u0002\u0002\u0002\u0201\u0003\u0002\u0002\u0002\u0002\u0203", + "\u0003\u0002\u0002\u0002\u0002\u0205\u0003\u0002\u0002\u0002\u0002\u0207", + "\u0003\u0002\u0002\u0002\u0002\u0209\u0003\u0002\u0002\u0002\u0002\u020b", + "\u0003\u0002\u0002\u0002\u0002\u020d\u0003\u0002\u0002\u0002\u0002\u020f", + "\u0003\u0002\u0002\u0002\u0002\u0211\u0003\u0002\u0002\u0002\u0002\u0213", + "\u0003\u0002\u0002\u0002\u0002\u0215\u0003\u0002\u0002\u0002\u0002\u0217", + "\u0003\u0002\u0002\u0002\u0002\u0219\u0003\u0002\u0002\u0002\u0002\u021b", + "\u0003\u0002\u0002\u0002\u0002\u021d\u0003\u0002\u0002\u0002\u0002\u021f", + "\u0003\u0002\u0002\u0002\u0002\u0221\u0003\u0002\u0002\u0002\u0002\u0223", + "\u0003\u0002\u0002\u0002\u0002\u0225\u0003\u0002\u0002\u0002\u0002\u0227", + "\u0003\u0002\u0002\u0002\u0002\u0229\u0003\u0002\u0002\u0002\u0002\u022b", + "\u0003\u0002\u0002\u0002\u0002\u022d\u0003\u0002\u0002\u0002\u0002\u022f", + "\u0003\u0002\u0002\u0002\u0002\u0231\u0003\u0002\u0002\u0002\u0002\u0233", + "\u0003\u0002\u0002\u0002\u0002\u0235\u0003\u0002\u0002\u0002\u0002\u0237", + "\u0003\u0002\u0002\u0002\u0002\u0239\u0003\u0002\u0002\u0002\u0002\u023b", + "\u0003\u0002\u0002\u0002\u0002\u023d\u0003\u0002\u0002\u0002\u0002\u023f", + "\u0003\u0002\u0002\u0002\u0002\u0241\u0003\u0002\u0002\u0002\u0002\u0243", + "\u0003\u0002\u0002\u0002\u0002\u0245\u0003\u0002\u0002\u0002\u0002\u0247", + "\u0003\u0002\u0002\u0002\u0002\u0249\u0003\u0002\u0002\u0002\u0002\u024b", + "\u0003\u0002\u0002\u0002\u0002\u024d\u0003\u0002\u0002\u0002\u0002\u024f", + "\u0003\u0002\u0002\u0002\u0002\u0251\u0003\u0002\u0002\u0002\u0002\u0253", + "\u0003\u0002\u0002\u0002\u0002\u0255\u0003\u0002\u0002\u0002\u0002\u0257", + "\u0003\u0002\u0002\u0002\u0002\u0259\u0003\u0002\u0002\u0002\u0002\u025b", + "\u0003\u0002\u0002\u0002\u0002\u025d\u0003\u0002\u0002\u0002\u0002\u025f", + "\u0003\u0002\u0002\u0002\u0002\u0261\u0003\u0002\u0002\u0002\u0002\u0263", + "\u0003\u0002\u0002\u0002\u0002\u0265\u0003\u0002\u0002\u0002\u0002\u0267", + "\u0003\u0002\u0002\u0002\u0002\u0269\u0003\u0002\u0002\u0002\u0002\u026b", + "\u0003\u0002\u0002\u0002\u0002\u026d\u0003\u0002\u0002\u0002\u0002\u026f", + "\u0003\u0002\u0002\u0002\u0002\u0271\u0003\u0002\u0002\u0002\u0002\u0273", + "\u0003\u0002\u0002\u0002\u0002\u0275\u0003\u0002\u0002\u0002\u0002\u0277", + "\u0003\u0002\u0002\u0002\u0002\u0279\u0003\u0002\u0002\u0002\u0002\u027b", + "\u0003\u0002\u0002\u0002\u0002\u027d\u0003\u0002\u0002\u0002\u0003\u0290", + "\u0003\u0002\u0002\u0002\u0005\u0296\u0003\u0002\u0002\u0002\u0007\u02c1", + "\u0003\u0002\u0002\u0002\t\u02c5\u0003\u0002\u0002\u0002\u000b\u02cc", + "\u0003\u0002\u0002\u0002\r\u02d1\u0003\u0002\u0002\u0002\u000f\u02d5", + "\u0003\u0002\u0002\u0002\u0011\u02d8\u0003\u0002\u0002\u0002\u0013\u02dc", + "\u0003\u0002\u0002\u0002\u0015\u02e0\u0003\u0002\u0002\u0002\u0017\u02e9", + "\u0003\u0002\u0002\u0002\u0019\u02ef\u0003\u0002\u0002\u0002\u001b\u02f5", + "\u0003\u0002\u0002\u0002\u001d\u02f8\u0003\u0002\u0002\u0002\u001f\u0301", + "\u0003\u0002\u0002\u0002!\u0306\u0003\u0002\u0002\u0002#\u030b\u0003", + "\u0002\u0002\u0002%\u0312\u0003\u0002\u0002\u0002\'\u0318\u0003\u0002", + "\u0002\u0002)\u031f\u0003\u0002\u0002\u0002+\u0325\u0003\u0002\u0002", + "\u0002-\u0328\u0003\u0002\u0002\u0002/\u032b\u0003\u0002\u0002\u0002", + "1\u032f\u0003\u0002\u0002\u00023\u0332\u0003\u0002\u0002\u00025\u0336", + "\u0003\u0002\u0002\u00027\u0339\u0003\u0002\u0002\u00029\u0340\u0003", + "\u0002\u0002\u0002;\u0348\u0003\u0002\u0002\u0002=\u034d\u0003\u0002", + "\u0002\u0002?\u0353\u0003\u0002\u0002\u0002A\u0356\u0003\u0002\u0002", + "\u0002C\u035b\u0003\u0002\u0002\u0002E\u0361\u0003\u0002\u0002\u0002", + "G\u0367\u0003\u0002\u0002\u0002I\u036b\u0003\u0002\u0002\u0002K\u0370", + "\u0003\u0002\u0002\u0002M\u0374\u0003\u0002\u0002\u0002O\u037d\u0003", + "\u0002\u0002\u0002Q\u0382\u0003\u0002\u0002\u0002S\u0387\u0003\u0002", + "\u0002\u0002U\u038c\u0003\u0002\u0002\u0002W\u0391\u0003\u0002\u0002", + "\u0002Y\u0395\u0003\u0002\u0002\u0002[\u039a\u0003\u0002\u0002\u0002", + "]\u03a0\u0003\u0002\u0002\u0002_\u03a6\u0003\u0002\u0002\u0002a\u03ac", + "\u0003\u0002\u0002\u0002c\u03b1\u0003\u0002\u0002\u0002e\u03b6\u0003", + "\u0002\u0002\u0002g\u03bc\u0003\u0002\u0002\u0002i\u03c1\u0003\u0002", + "\u0002\u0002k\u03c9\u0003\u0002\u0002\u0002m\u03cc\u0003\u0002\u0002", + "\u0002o\u03d2\u0003\u0002\u0002\u0002q\u03da\u0003\u0002\u0002\u0002", + "s\u03e1\u0003\u0002\u0002\u0002u\u03e6\u0003\u0002\u0002\u0002w\u03f0", + "\u0003\u0002\u0002\u0002y\u03f6\u0003\u0002\u0002\u0002{\u03fb\u0003", + "\u0002\u0002\u0002}\u0405\u0003\u0002\u0002\u0002\u007f\u040f\u0003", + "\u0002\u0002\u0002\u0081\u0419\u0003\u0002\u0002\u0002\u0083\u0421\u0003", + "\u0002\u0002\u0002\u0085\u0427\u0003\u0002\u0002\u0002\u0087\u042d\u0003", + "\u0002\u0002\u0002\u0089\u0432\u0003\u0002\u0002\u0002\u008b\u0437\u0003", + "\u0002\u0002\u0002\u008d\u043e\u0003\u0002\u0002\u0002\u008f\u0445\u0003", + "\u0002\u0002\u0002\u0091\u044b\u0003\u0002\u0002\u0002\u0093\u0455\u0003", + "\u0002\u0002\u0002\u0095\u045a\u0003\u0002\u0002\u0002\u0097\u0462\u0003", + "\u0002\u0002\u0002\u0099\u0469\u0003\u0002\u0002\u0002\u009b\u0470\u0003", + "\u0002\u0002\u0002\u009d\u0475\u0003\u0002\u0002\u0002\u009f\u047e\u0003", + "\u0002\u0002\u0002\u00a1\u0486\u0003\u0002\u0002\u0002\u00a3\u048d\u0003", + "\u0002\u0002\u0002\u00a5\u0495\u0003\u0002\u0002\u0002\u00a7\u049d\u0003", + "\u0002\u0002\u0002\u00a9\u04a2\u0003\u0002\u0002\u0002\u00ab\u04a7\u0003", + "\u0002\u0002\u0002\u00ad\u04ac\u0003\u0002\u0002\u0002\u00af\u04b3\u0003", + "\u0002\u0002\u0002\u00b1\u04bb\u0003\u0002\u0002\u0002\u00b3\u04c2\u0003", + "\u0002\u0002\u0002\u00b5\u04c6\u0003\u0002\u0002\u0002\u00b7\u04d1\u0003", + "\u0002\u0002\u0002\u00b9\u04db\u0003\u0002\u0002\u0002\u00bb\u04e0\u0003", + "\u0002\u0002\u0002\u00bd\u04e6\u0003\u0002\u0002\u0002\u00bf\u04ed\u0003", + "\u0002\u0002\u0002\u00c1\u04f6\u0003\u0002\u0002\u0002\u00c3\u0500\u0003", + "\u0002\u0002\u0002\u00c5\u0503\u0003\u0002\u0002\u0002\u00c7\u050f\u0003", + "\u0002\u0002\u0002\u00c9\u0518\u0003\u0002\u0002\u0002\u00cb\u051e\u0003", + "\u0002\u0002\u0002\u00cd\u0525\u0003\u0002\u0002\u0002\u00cf\u052c\u0003", + "\u0002\u0002\u0002\u00d1\u0534\u0003\u0002\u0002\u0002\u00d3\u0538\u0003", + "\u0002\u0002\u0002\u00d5\u053e\u0003\u0002\u0002\u0002\u00d7\u0543\u0003", + "\u0002\u0002\u0002\u00d9\u0549\u0003\u0002\u0002\u0002\u00db\u0555\u0003", + "\u0002\u0002\u0002\u00dd\u055c\u0003\u0002\u0002\u0002\u00df\u0565\u0003", + "\u0002\u0002\u0002\u00e1\u056b\u0003\u0002\u0002\u0002\u00e3\u0572\u0003", + "\u0002\u0002\u0002\u00e5\u0577\u0003\u0002\u0002\u0002\u00e7\u057f\u0003", + "\u0002\u0002\u0002\u00e9\u0588\u0003\u0002\u0002\u0002\u00eb\u058b\u0003", + "\u0002\u0002\u0002\u00ed\u0594\u0003\u0002\u0002\u0002\u00ef\u059c\u0003", + "\u0002\u0002\u0002\u00f1\u059f\u0003\u0002\u0002\u0002\u00f3\u05a4\u0003", + "\u0002\u0002\u0002\u00f5\u05a8\u0003\u0002\u0002\u0002\u00f7\u05ad\u0003", + "\u0002\u0002\u0002\u00f9\u05b0\u0003\u0002\u0002\u0002\u00fb\u05b4\u0003", + "\u0002\u0002\u0002\u00fd\u05b7\u0003\u0002\u0002\u0002\u00ff\u05bb\u0003", + "\u0002\u0002\u0002\u0101\u05c0\u0003\u0002\u0002\u0002\u0103\u05c6\u0003", + "\u0002\u0002\u0002\u0105\u05cf\u0003\u0002\u0002\u0002\u0107\u05d5\u0003", + "\u0002\u0002\u0002\u0109\u05dd\u0003\u0002\u0002\u0002\u010b\u05e1\u0003", + "\u0002\u0002\u0002\u010d\u05e7\u0003\u0002\u0002\u0002\u010f\u05f1\u0003", + "\u0002\u0002\u0002\u0111\u05f6\u0003\u0002\u0002\u0002\u0113\u0602\u0003", + "\u0002\u0002\u0002\u0115\u0606\u0003\u0002\u0002\u0002\u0117\u0611\u0003", + "\u0002\u0002\u0002\u0119\u0618\u0003\u0002\u0002\u0002\u011b\u061c\u0003", + "\u0002\u0002\u0002\u011d\u061f\u0003\u0002\u0002\u0002\u011f\u0624\u0003", + "\u0002\u0002\u0002\u0121\u062c\u0003\u0002\u0002\u0002\u0123\u0637\u0003", + "\u0002\u0002\u0002\u0125\u0641\u0003\u0002\u0002\u0002\u0127\u064b\u0003", + "\u0002\u0002\u0002\u0129\u0652\u0003\u0002\u0002\u0002\u012b\u0658\u0003", + "\u0002\u0002\u0002\u012d\u065e\u0003\u0002\u0002\u0002\u012f\u066e\u0003", + "\u0002\u0002\u0002\u0131\u067b\u0003\u0002\u0002\u0002\u0133\u0688\u0003", + "\u0002\u0002\u0002\u0135\u0692\u0003\u0002\u0002\u0002\u0137\u0699\u0003", + "\u0002\u0002\u0002\u0139\u06a4\u0003\u0002\u0002\u0002\u013b\u06af\u0003", + "\u0002\u0002\u0002\u013d\u06b5\u0003\u0002\u0002\u0002\u013f\u06ba\u0003", + "\u0002\u0002\u0002\u0141\u06c2\u0003\u0002\u0002\u0002\u0143\u06c8\u0003", + "\u0002\u0002\u0002\u0145\u06d2\u0003\u0002\u0002\u0002\u0147\u06db\u0003", + "\u0002\u0002\u0002\u0149\u06e4\u0003\u0002\u0002\u0002\u014b\u06ec\u0003", + "\u0002\u0002\u0002\u014d\u06f2\u0003\u0002\u0002\u0002\u014f\u06f8\u0003", + "\u0002\u0002\u0002\u0151\u0700\u0003\u0002\u0002\u0002\u0153\u0705\u0003", + "\u0002\u0002\u0002\u0155\u070f\u0003\u0002\u0002\u0002\u0157\u0716\u0003", + "\u0002\u0002\u0002\u0159\u0720\u0003\u0002\u0002\u0002\u015b\u0728\u0003", + "\u0002\u0002\u0002\u015d\u072e\u0003\u0002\u0002\u0002\u015f\u073c\u0003", + "\u0002\u0002\u0002\u0161\u0749\u0003\u0002\u0002\u0002\u0163\u0751\u0003", + "\u0002\u0002\u0002\u0165\u0758\u0003\u0002\u0002\u0002\u0167\u075f\u0003", + "\u0002\u0002\u0002\u0169\u076b\u0003\u0002\u0002\u0002\u016b\u0774\u0003", + "\u0002\u0002\u0002\u016d\u077d\u0003\u0002\u0002\u0002\u016f\u0785\u0003", + "\u0002\u0002\u0002\u0171\u078f\u0003\u0002\u0002\u0002\u0173\u079a\u0003", + "\u0002\u0002\u0002\u0175\u07a0\u0003\u0002\u0002\u0002\u0177\u07a8\u0003", + "\u0002\u0002\u0002\u0179\u07b4\u0003\u0002\u0002\u0002\u017b\u07bb\u0003", + "\u0002\u0002\u0002\u017d\u07c3\u0003\u0002\u0002\u0002\u017f\u07cc\u0003", + "\u0002\u0002\u0002\u0181\u07d6\u0003\u0002\u0002\u0002\u0183\u07dd\u0003", + "\u0002\u0002\u0002\u0185\u07e3\u0003\u0002\u0002\u0002\u0187\u07ef\u0003", + "\u0002\u0002\u0002\u0189\u07fc\u0003\u0002\u0002\u0002\u018b\u0805\u0003", + "\u0002\u0002\u0002\u018d\u080f\u0003\u0002\u0002\u0002\u018f\u0813\u0003", + "\u0002\u0002\u0002\u0191\u081c\u0003\u0002\u0002\u0002\u0193\u0824\u0003", + "\u0002\u0002\u0002\u0195\u082c\u0003\u0002\u0002\u0002\u0197\u0831\u0003", + "\u0002\u0002\u0002\u0199\u083c\u0003\u0002\u0002\u0002\u019b\u0848\u0003", + "\u0002\u0002\u0002\u019d\u0851\u0003\u0002\u0002\u0002\u019f\u0859\u0003", + "\u0002\u0002\u0002\u01a1\u0860\u0003\u0002\u0002\u0002\u01a3\u0866\u0003", + "\u0002\u0002\u0002\u01a5\u086b\u0003\u0002\u0002\u0002\u01a7\u0872\u0003", + "\u0002\u0002\u0002\u01a9\u0877\u0003\u0002\u0002\u0002\u01ab\u087e\u0003", + "\u0002\u0002\u0002\u01ad\u0886\u0003\u0002\u0002\u0002\u01af\u088d\u0003", + "\u0002\u0002\u0002\u01b1\u0894\u0003\u0002\u0002\u0002\u01b3\u0899\u0003", + "\u0002\u0002\u0002\u01b5\u089e\u0003\u0002\u0002\u0002\u01b7\u08a4\u0003", + "\u0002\u0002\u0002\u01b9\u08b0\u0003\u0002\u0002\u0002\u01bb\u08bb\u0003", + "\u0002\u0002\u0002\u01bd\u08c8\u0003\u0002\u0002\u0002\u01bf\u08ce\u0003", + "\u0002\u0002\u0002\u01c1\u08d6\u0003\u0002\u0002\u0002\u01c3\u08dc\u0003", + "\u0002\u0002\u0002\u01c5\u08e3\u0003\u0002\u0002\u0002\u01c7\u08e8\u0003", + "\u0002\u0002\u0002\u01c9\u08ee\u0003\u0002\u0002\u0002\u01cb\u08f5\u0003", + "\u0002\u0002\u0002\u01cd\u08ff\u0003\u0002\u0002\u0002\u01cf\u0906\u0003", + "\u0002\u0002\u0002\u01d1\u0916\u0003\u0002\u0002\u0002\u01d3\u091f\u0003", + "\u0002\u0002\u0002\u01d5\u0923\u0003\u0002\u0002\u0002\u01d7\u0927\u0003", + "\u0002\u0002\u0002\u01d9\u092d\u0003\u0002\u0002\u0002\u01db\u0933\u0003", + "\u0002\u0002\u0002\u01dd\u0938\u0003\u0002\u0002\u0002\u01df\u093d\u0003", + "\u0002\u0002\u0002\u01e1\u0945\u0003\u0002\u0002\u0002\u01e3\u094c\u0003", + "\u0002\u0002\u0002\u01e5\u0953\u0003\u0002\u0002\u0002\u01e7\u0962\u0003", + "\u0002\u0002\u0002\u01e9\u0973\u0003\u0002\u0002\u0002\u01eb\u0983\u0003", + "\u0002\u0002\u0002\u01ed\u0991\u0003\u0002\u0002\u0002\u01ef\u099f\u0003", + "\u0002\u0002\u0002\u01f1\u09ae\u0003\u0002\u0002\u0002\u01f3\u09c1\u0003", + "\u0002\u0002\u0002\u01f5\u09cc\u0003\u0002\u0002\u0002\u01f7\u09e2\u0003", + "\u0002\u0002\u0002\u01f9\u09f1\u0003\u0002\u0002\u0002\u01fb\u0a09\u0003", + "\u0002\u0002\u0002\u01fd\u0a1b\u0003\u0002\u0002\u0002\u01ff\u0a1e\u0003", + "\u0002\u0002\u0002\u0201\u0a2b\u0003\u0002\u0002\u0002\u0203\u0a33\u0003", + "\u0002\u0002\u0002\u0205\u0a3b\u0003\u0002\u0002\u0002\u0207\u0a3e\u0003", + "\u0002\u0002\u0002\u0209\u0a40\u0003\u0002\u0002\u0002\u020b\u0a47\u0003", + "\u0002\u0002\u0002\u020d\u0a4e\u0003\u0002\u0002\u0002\u020f\u0a54\u0003", + "\u0002\u0002\u0002\u0211\u0a58\u0003\u0002\u0002\u0002\u0213\u0a5d\u0003", + "\u0002\u0002\u0002\u0215\u0a65\u0003\u0002\u0002\u0002\u0217\u0a6c\u0003", + "\u0002\u0002\u0002\u0219\u0a76\u0003\u0002\u0002\u0002\u021b\u0a7c\u0003", + "\u0002\u0002\u0002\u021d\u0a84\u0003\u0002\u0002\u0002\u021f\u0a8c\u0003", + "\u0002\u0002\u0002\u0221\u0a95\u0003\u0002\u0002\u0002\u0223\u0a99\u0003", + "\u0002\u0002\u0002\u0225\u0aa0\u0003\u0002\u0002\u0002\u0227\u0aa6\u0003", + "\u0002\u0002\u0002\u0229\u0aad\u0003\u0002\u0002\u0002\u022b\u0ab2\u0003", + "\u0002\u0002\u0002\u022d\u0ab7\u0003\u0002\u0002\u0002\u022f\u0ac1\u0003", + "\u0002\u0002\u0002\u0231\u0aca\u0003\u0002\u0002\u0002\u0233\u0ad2\u0003", + "\u0002\u0002\u0002\u0235\u0ad6\u0003\u0002\u0002\u0002\u0237\u0ada\u0003", + "\u0002\u0002\u0002\u0239\u0adf\u0003\u0002\u0002\u0002\u023b\u0ae1\u0003", + "\u0002\u0002\u0002\u023d\u0ae3\u0003\u0002\u0002\u0002\u023f\u0ae5\u0003", + "\u0002\u0002\u0002\u0241\u0ae7\u0003\u0002\u0002\u0002\u0243\u0ae9\u0003", + "\u0002\u0002\u0002\u0245\u0aeb\u0003\u0002\u0002\u0002\u0247\u0aed\u0003", + "\u0002\u0002\u0002\u0249\u0aef\u0003\u0002\u0002\u0002\u024b\u0af1\u0003", + "\u0002\u0002\u0002\u024d\u0af3\u0003\u0002\u0002\u0002\u024f\u0af5\u0003", + "\u0002\u0002\u0002\u0251\u0af7\u0003\u0002\u0002\u0002\u0253\u0af9\u0003", + "\u0002\u0002\u0002\u0255\u0afb\u0003\u0002\u0002\u0002\u0257\u0afd\u0003", + "\u0002\u0002\u0002\u0259\u0aff\u0003\u0002\u0002\u0002\u025b\u0b01\u0003", + "\u0002\u0002\u0002\u025d\u0b03\u0003\u0002\u0002\u0002\u025f\u0b05\u0003", + "\u0002\u0002\u0002\u0261\u0b07\u0003\u0002\u0002\u0002\u0263\u0b09\u0003", + "\u0002\u0002\u0002\u0265\u0b0b\u0003\u0002\u0002\u0002\u0267\u0b0d\u0003", + "\u0002\u0002\u0002\u0269\u0b0f\u0003\u0002\u0002\u0002\u026b\u0b11\u0003", + "\u0002\u0002\u0002\u026d\u0b13\u0003\u0002\u0002\u0002\u026f\u0b15\u0003", + "\u0002\u0002\u0002\u0271\u0b17\u0003\u0002\u0002\u0002\u0273\u0b1a\u0003", + "\u0002\u0002\u0002\u0275\u0b1f\u0003\u0002\u0002\u0002\u0277\u0b22\u0003", + "\u0002\u0002\u0002\u0279\u0b51\u0003\u0002\u0002\u0002\u027b\u0b53\u0003", + "\u0002\u0002\u0002\u027d\u0b58\u0003\u0002\u0002\u0002\u027f\u0b5c\u0003", + "\u0002\u0002\u0002\u0281\u0b68\u0003\u0002\u0002\u0002\u0283\u0b76\u0003", + "\u0002\u0002\u0002\u0285\u0b78\u0003\u0002\u0002\u0002\u0287\u0b7a\u0003", + "\u0002\u0002\u0002\u0289\u0b87\u0003\u0002\u0002\u0002\u028b\u0b94\u0003", + "\u0002\u0002\u0002\u028d\u0b9d\u0003\u0002\u0002\u0002\u028f\u0291\t", + "\u0002\u0002\u0002\u0290\u028f\u0003\u0002\u0002\u0002\u0291\u0292\u0003", + "\u0002\u0002\u0002\u0292\u0290\u0003\u0002\u0002\u0002\u0292\u0293\u0003", + "\u0002\u0002\u0002\u0293\u0294\u0003\u0002\u0002\u0002\u0294\u0295\b", + "\u0002\u0002\u0002\u0295\u0004\u0003\u0002\u0002\u0002\u0296\u0297\u0007", + "1\u0002\u0002\u0297\u0298\u0007,\u0002\u0002\u0298\u029c\u0003\u0002", + "\u0002\u0002\u0299\u029b\u000b\u0002\u0002\u0002\u029a\u0299\u0003\u0002", + "\u0002\u0002\u029b\u029e\u0003\u0002\u0002\u0002\u029c\u029d\u0003\u0002", + "\u0002\u0002\u029c\u029a\u0003\u0002\u0002\u0002\u029d\u029f\u0003\u0002", + "\u0002\u0002\u029e\u029c\u0003\u0002\u0002\u0002\u029f\u02a0\u0007,", + "\u0002\u0002\u02a0\u02a1\u00071\u0002\u0002\u02a1\u02a2\u0003\u0002", + "\u0002\u0002\u02a2\u02a3\b\u0003\u0002\u0002\u02a3\u0006\u0003\u0002", + "\u0002\u0002\u02a4\u02a5\u0007/\u0002\u0002\u02a5\u02a6\u0007/\u0002", + "\u0002\u02a6\u02a9\u0007\"\u0002\u0002\u02a7\u02a9\u0007%\u0002\u0002", + "\u02a8\u02a4\u0003\u0002\u0002\u0002\u02a8\u02a7\u0003\u0002\u0002\u0002", + "\u02a9\u02ad\u0003\u0002\u0002\u0002\u02aa\u02ac\n\u0003\u0002\u0002", + "\u02ab\u02aa\u0003\u0002\u0002\u0002\u02ac\u02af\u0003\u0002\u0002\u0002", + "\u02ad\u02ab\u0003\u0002\u0002\u0002\u02ad\u02ae\u0003\u0002\u0002\u0002", + "\u02ae\u02b5\u0003\u0002\u0002\u0002\u02af\u02ad\u0003\u0002\u0002\u0002", + "\u02b0\u02b2\u0007\u000f\u0002\u0002\u02b1\u02b0\u0003\u0002\u0002\u0002", + "\u02b1\u02b2\u0003\u0002\u0002\u0002\u02b2\u02b3\u0003\u0002\u0002\u0002", + "\u02b3\u02b6\u0007\f\u0002\u0002\u02b4\u02b6\u0007\u0002\u0002\u0003", + "\u02b5\u02b1\u0003\u0002\u0002\u0002\u02b5\u02b4\u0003\u0002\u0002\u0002", + "\u02b6\u02c2\u0003\u0002\u0002\u0002\u02b7\u02b8\u0007/\u0002\u0002", + "\u02b8\u02b9\u0007/\u0002\u0002\u02b9\u02bf\u0003\u0002\u0002\u0002", + "\u02ba\u02bc\u0007\u000f\u0002\u0002\u02bb\u02ba\u0003\u0002\u0002\u0002", + "\u02bb\u02bc\u0003\u0002\u0002\u0002\u02bc\u02bd\u0003\u0002\u0002\u0002", + "\u02bd\u02c0\u0007\f\u0002\u0002\u02be\u02c0\u0007\u0002\u0002\u0003", + "\u02bf\u02bb\u0003\u0002\u0002\u0002\u02bf\u02be\u0003\u0002\u0002\u0002", + "\u02c0\u02c2\u0003\u0002\u0002\u0002\u02c1\u02a8\u0003\u0002\u0002\u0002", + "\u02c1\u02b7\u0003\u0002\u0002\u0002\u02c2\u02c3\u0003\u0002\u0002\u0002", + "\u02c3\u02c4\b\u0004\u0002\u0002\u02c4\b\u0003\u0002\u0002\u0002\u02c5", + "\u02c6\u0007U\u0002\u0002\u02c6\u02c7\u0007G\u0002\u0002\u02c7\u02c8", + "\u0007N\u0002\u0002\u02c8\u02c9\u0007G\u0002\u0002\u02c9\u02ca\u0007", + "E\u0002\u0002\u02ca\u02cb\u0007V\u0002\u0002\u02cb\n\u0003\u0002\u0002", + "\u0002\u02cc\u02cd\u0007H\u0002\u0002\u02cd\u02ce\u0007T\u0002\u0002", + "\u02ce\u02cf\u0007Q\u0002\u0002\u02cf\u02d0\u0007O\u0002\u0002\u02d0", + "\f\u0003\u0002\u0002\u0002\u02d1\u02d2\u0007C\u0002\u0002\u02d2\u02d3", + "\u0007F\u0002\u0002\u02d3\u02d4\u0007F\u0002\u0002\u02d4\u000e\u0003", + "\u0002\u0002\u0002\u02d5\u02d6\u0007C\u0002\u0002\u02d6\u02d7\u0007", + "U\u0002\u0002\u02d7\u0010\u0003\u0002\u0002\u0002\u02d8\u02d9\u0007", + "C\u0002\u0002\u02d9\u02da\u0007N\u0002\u0002\u02da\u02db\u0007N\u0002", + "\u0002\u02db\u0012\u0003\u0002\u0002\u0002\u02dc\u02dd\u0007C\u0002", + "\u0002\u02dd\u02de\u0007P\u0002\u0002\u02de\u02df\u0007[\u0002\u0002", + "\u02df\u0014\u0003\u0002\u0002\u0002\u02e0\u02e1\u0007F\u0002\u0002", + "\u02e1\u02e2\u0007K\u0002\u0002\u02e2\u02e3\u0007U\u0002\u0002\u02e3", + "\u02e4\u0007V\u0002\u0002\u02e4\u02e5\u0007K\u0002\u0002\u02e5\u02e6", + "\u0007P\u0002\u0002\u02e6\u02e7\u0007E\u0002\u0002\u02e7\u02e8\u0007", + "V\u0002\u0002\u02e8\u0016\u0003\u0002\u0002\u0002\u02e9\u02ea\u0007", + "Y\u0002\u0002\u02ea\u02eb\u0007J\u0002\u0002\u02eb\u02ec\u0007G\u0002", + "\u0002\u02ec\u02ed\u0007T\u0002\u0002\u02ed\u02ee\u0007G\u0002\u0002", + "\u02ee\u0018\u0003\u0002\u0002\u0002\u02ef\u02f0\u0007I\u0002\u0002", + "\u02f0\u02f1\u0007T\u0002\u0002\u02f1\u02f2\u0007Q\u0002\u0002\u02f2", + "\u02f3\u0007W\u0002\u0002\u02f3\u02f4\u0007R\u0002\u0002\u02f4\u001a", + "\u0003\u0002\u0002\u0002\u02f5\u02f6\u0007D\u0002\u0002\u02f6\u02f7", + "\u0007[\u0002\u0002\u02f7\u001c\u0003\u0002\u0002\u0002\u02f8\u02f9", + "\u0007I\u0002\u0002\u02f9\u02fa\u0007T\u0002\u0002\u02fa\u02fb\u0007", + "Q\u0002\u0002\u02fb\u02fc\u0007W\u0002\u0002\u02fc\u02fd\u0007R\u0002", + "\u0002\u02fd\u02fe\u0007K\u0002\u0002\u02fe\u02ff\u0007P\u0002\u0002", + "\u02ff\u0300\u0007I\u0002\u0002\u0300\u001e\u0003\u0002\u0002\u0002", + "\u0301\u0302\u0007U\u0002\u0002\u0302\u0303\u0007G\u0002\u0002\u0303", + "\u0304\u0007V\u0002\u0002\u0304\u0305\u0007U\u0002\u0002\u0305 \u0003", + "\u0002\u0002\u0002\u0306\u0307\u0007E\u0002\u0002\u0307\u0308\u0007", + "W\u0002\u0002\u0308\u0309\u0007D\u0002\u0002\u0309\u030a\u0007G\u0002", + "\u0002\u030a\"\u0003\u0002\u0002\u0002\u030b\u030c\u0007T\u0002\u0002", + "\u030c\u030d\u0007Q\u0002\u0002\u030d\u030e\u0007N\u0002\u0002\u030e", + "\u030f\u0007N\u0002\u0002\u030f\u0310\u0007W\u0002\u0002\u0310\u0311", + "\u0007R\u0002\u0002\u0311$\u0003\u0002\u0002\u0002\u0312\u0313\u0007", + "Q\u0002\u0002\u0313\u0314\u0007T\u0002\u0002\u0314\u0315\u0007F\u0002", + "\u0002\u0315\u0316\u0007G\u0002\u0002\u0316\u0317\u0007T\u0002\u0002", + "\u0317&\u0003\u0002\u0002\u0002\u0318\u0319\u0007J\u0002\u0002\u0319", + "\u031a\u0007C\u0002\u0002\u031a\u031b\u0007X\u0002\u0002\u031b\u031c", + "\u0007K\u0002\u0002\u031c\u031d\u0007P\u0002\u0002\u031d\u031e\u0007", + "I\u0002\u0002\u031e(\u0003\u0002\u0002\u0002\u031f\u0320\u0007N\u0002", + "\u0002\u0320\u0321\u0007K\u0002\u0002\u0321\u0322\u0007O\u0002\u0002", + "\u0322\u0323\u0007K\u0002\u0002\u0323\u0324\u0007V\u0002\u0002\u0324", + "*\u0003\u0002\u0002\u0002\u0325\u0326\u0007C\u0002\u0002\u0326\u0327", + "\u0007V\u0002\u0002\u0327,\u0003\u0002\u0002\u0002\u0328\u0329\u0007", + "Q\u0002\u0002\u0329\u032a\u0007T\u0002\u0002\u032a.\u0003\u0002\u0002", + "\u0002\u032b\u032c\u0007C\u0002\u0002\u032c\u032d\u0007P\u0002\u0002", + "\u032d\u032e\u0007F\u0002\u0002\u032e0\u0003\u0002\u0002\u0002\u032f", + "\u0330\u0007K\u0002\u0002\u0330\u0331\u0007P\u0002\u0002\u03312\u0003", + "\u0002\u0002\u0002\u0332\u0333\u0007P\u0002\u0002\u0333\u0334\u0007", + "Q\u0002\u0002\u0334\u0335\u0007V\u0002\u0002\u03354\u0003\u0002\u0002", + "\u0002\u0336\u0337\u0007P\u0002\u0002\u0337\u0338\u0007Q\u0002\u0002", + "\u03386\u0003\u0002\u0002\u0002\u0339\u033a\u0007G\u0002\u0002\u033a", + "\u033b\u0007Z\u0002\u0002\u033b\u033c\u0007K\u0002\u0002\u033c\u033d", + "\u0007U\u0002\u0002\u033d\u033e\u0007V\u0002\u0002\u033e\u033f\u0007", + "U\u0002\u0002\u033f8\u0003\u0002\u0002\u0002\u0340\u0341\u0007D\u0002", + "\u0002\u0341\u0342\u0007G\u0002\u0002\u0342\u0343\u0007V\u0002\u0002", + "\u0343\u0344\u0007Y\u0002\u0002\u0344\u0345\u0007G\u0002\u0002\u0345", + "\u0346\u0007G\u0002\u0002\u0346\u0347\u0007P\u0002\u0002\u0347:\u0003", + "\u0002\u0002\u0002\u0348\u0349\u0007N\u0002\u0002\u0349\u034a\u0007", + "K\u0002\u0002\u034a\u034b\u0007M\u0002\u0002\u034b\u034c\u0007G\u0002", + "\u0002\u034c<\u0003\u0002\u0002\u0002\u034d\u034e\u0007T\u0002\u0002", + "\u034e\u034f\u0007N\u0002\u0002\u034f\u0350\u0007K\u0002\u0002\u0350", + "\u0351\u0007M\u0002\u0002\u0351\u0352\u0007G\u0002\u0002\u0352>\u0003", + "\u0002\u0002\u0002\u0353\u0354\u0007K\u0002\u0002\u0354\u0355\u0007", + "U\u0002\u0002\u0355@\u0003\u0002\u0002\u0002\u0356\u0357\u0007V\u0002", + "\u0002\u0357\u0358\u0007T\u0002\u0002\u0358\u0359\u0007W\u0002\u0002", + "\u0359\u035a\u0007G\u0002\u0002\u035aB\u0003\u0002\u0002\u0002\u035b", + "\u035c\u0007H\u0002\u0002\u035c\u035d\u0007C\u0002\u0002\u035d\u035e", + "\u0007N\u0002\u0002\u035e\u035f\u0007U\u0002\u0002\u035f\u0360\u0007", + "G\u0002\u0002\u0360D\u0003\u0002\u0002\u0002\u0361\u0362\u0007P\u0002", + "\u0002\u0362\u0363\u0007W\u0002\u0002\u0363\u0364\u0007N\u0002\u0002", + "\u0364\u0365\u0007N\u0002\u0002\u0365\u0366\u0007U\u0002\u0002\u0366", + "F\u0003\u0002\u0002\u0002\u0367\u0368\u0007C\u0002\u0002\u0368\u0369", + "\u0007U\u0002\u0002\u0369\u036a\u0007E\u0002\u0002\u036aH\u0003\u0002", + "\u0002\u0002\u036b\u036c\u0007F\u0002\u0002\u036c\u036d\u0007G\u0002", + "\u0002\u036d\u036e\u0007U\u0002\u0002\u036e\u036f\u0007E\u0002\u0002", + "\u036fJ\u0003\u0002\u0002\u0002\u0370\u0371\u0007H\u0002\u0002\u0371", + "\u0372\u0007Q\u0002\u0002\u0372\u0373\u0007T\u0002\u0002\u0373L\u0003", + "\u0002\u0002\u0002\u0374\u0375\u0007K\u0002\u0002\u0375\u0376\u0007", + "P\u0002\u0002\u0376\u0377\u0007V\u0002\u0002\u0377\u0378\u0007G\u0002", + "\u0002\u0378\u0379\u0007T\u0002\u0002\u0379\u037a\u0007X\u0002\u0002", + "\u037a\u037b\u0007C\u0002\u0002\u037b\u037c\u0007N\u0002\u0002\u037c", + "N\u0003\u0002\u0002\u0002\u037d\u037e\u0007E\u0002\u0002\u037e\u037f", + "\u0007C\u0002\u0002\u037f\u0380\u0007U\u0002\u0002\u0380\u0381\u0007", + "G\u0002\u0002\u0381P\u0003\u0002\u0002\u0002\u0382\u0383\u0007Y\u0002", + "\u0002\u0383\u0384\u0007J\u0002\u0002\u0384\u0385\u0007G\u0002\u0002", + "\u0385\u0386\u0007P\u0002\u0002\u0386R\u0003\u0002\u0002\u0002\u0387", + "\u0388\u0007V\u0002\u0002\u0388\u0389\u0007J\u0002\u0002\u0389\u038a", + "\u0007G\u0002\u0002\u038a\u038b\u0007P\u0002\u0002\u038bT\u0003\u0002", + "\u0002\u0002\u038c\u038d\u0007G\u0002\u0002\u038d\u038e\u0007N\u0002", + "\u0002\u038e\u038f\u0007U\u0002\u0002\u038f\u0390\u0007G\u0002\u0002", + "\u0390V\u0003\u0002\u0002\u0002\u0391\u0392\u0007G\u0002\u0002\u0392", + "\u0393\u0007P\u0002\u0002\u0393\u0394\u0007F\u0002\u0002\u0394X\u0003", + "\u0002\u0002\u0002\u0395\u0396\u0007L\u0002\u0002\u0396\u0397\u0007", + "Q\u0002\u0002\u0397\u0398\u0007K\u0002\u0002\u0398\u0399\u0007P\u0002", + "\u0002\u0399Z\u0003\u0002\u0002\u0002\u039a\u039b\u0007E\u0002\u0002", + "\u039b\u039c\u0007T\u0002\u0002\u039c\u039d\u0007Q\u0002\u0002\u039d", + "\u039e\u0007U\u0002\u0002\u039e\u039f\u0007U\u0002\u0002\u039f\\\u0003", + "\u0002\u0002\u0002\u03a0\u03a1\u0007Q\u0002\u0002\u03a1\u03a2\u0007", + "W\u0002\u0002\u03a2\u03a3\u0007V\u0002\u0002\u03a3\u03a4\u0007G\u0002", + "\u0002\u03a4\u03a5\u0007T\u0002\u0002\u03a5^\u0003\u0002\u0002\u0002", + "\u03a6\u03a7\u0007K\u0002\u0002\u03a7\u03a8\u0007P\u0002\u0002\u03a8", + "\u03a9\u0007P\u0002\u0002\u03a9\u03aa\u0007G\u0002\u0002\u03aa\u03ab", + "\u0007T\u0002\u0002\u03ab`\u0003\u0002\u0002\u0002\u03ac\u03ad\u0007", + "N\u0002\u0002\u03ad\u03ae\u0007G\u0002\u0002\u03ae\u03af\u0007H\u0002", + "\u0002\u03af\u03b0\u0007V\u0002\u0002\u03b0b\u0003\u0002\u0002\u0002", + "\u03b1\u03b2\u0007U\u0002\u0002\u03b2\u03b3\u0007G\u0002\u0002\u03b3", + "\u03b4\u0007O\u0002\u0002\u03b4\u03b5\u0007K\u0002\u0002\u03b5d\u0003", + "\u0002\u0002\u0002\u03b6\u03b7\u0007T\u0002\u0002\u03b7\u03b8\u0007", + "K\u0002\u0002\u03b8\u03b9\u0007I\u0002\u0002\u03b9\u03ba\u0007J\u0002", + "\u0002\u03ba\u03bb\u0007V\u0002\u0002\u03bbf\u0003\u0002\u0002\u0002", + "\u03bc\u03bd\u0007H\u0002\u0002\u03bd\u03be\u0007W\u0002\u0002\u03be", + "\u03bf\u0007N\u0002\u0002\u03bf\u03c0\u0007N\u0002\u0002\u03c0h\u0003", + "\u0002\u0002\u0002\u03c1\u03c2\u0007P\u0002\u0002\u03c2\u03c3\u0007", + "C\u0002\u0002\u03c3\u03c4\u0007V\u0002\u0002\u03c4\u03c5\u0007W\u0002", + "\u0002\u03c5\u03c6\u0007T\u0002\u0002\u03c6\u03c7\u0007C\u0002\u0002", + "\u03c7\u03c8\u0007N\u0002\u0002\u03c8j\u0003\u0002\u0002\u0002\u03c9", + "\u03ca\u0007Q\u0002\u0002\u03ca\u03cb\u0007P\u0002\u0002\u03cbl\u0003", + "\u0002\u0002\u0002\u03cc\u03cd\u0007R\u0002\u0002\u03cd\u03ce\u0007", + "K\u0002\u0002\u03ce\u03cf\u0007X\u0002\u0002\u03cf\u03d0\u0007Q\u0002", + "\u0002\u03d0\u03d1\u0007V\u0002\u0002\u03d1n\u0003\u0002\u0002\u0002", + "\u03d2\u03d3\u0007N\u0002\u0002\u03d3\u03d4\u0007C\u0002\u0002\u03d4", + "\u03d5\u0007V\u0002\u0002\u03d5\u03d6\u0007G\u0002\u0002\u03d6\u03d7", + "\u0007T\u0002\u0002\u03d7\u03d8\u0007C\u0002\u0002\u03d8\u03d9\u0007", + "N\u0002\u0002\u03d9p\u0003\u0002\u0002\u0002\u03da\u03db\u0007Y\u0002", + "\u0002\u03db\u03dc\u0007K\u0002\u0002\u03dc\u03dd\u0007P\u0002\u0002", + "\u03dd\u03de\u0007F\u0002\u0002\u03de\u03df\u0007Q\u0002\u0002\u03df", + "\u03e0\u0007Y\u0002\u0002\u03e0r\u0003\u0002\u0002\u0002\u03e1\u03e2", + "\u0007Q\u0002\u0002\u03e2\u03e3\u0007X\u0002\u0002\u03e3\u03e4\u0007", + "G\u0002\u0002\u03e4\u03e5\u0007T\u0002\u0002\u03e5t\u0003\u0002\u0002", + "\u0002\u03e6\u03e7\u0007R\u0002\u0002\u03e7\u03e8\u0007C\u0002\u0002", + "\u03e8\u03e9\u0007T\u0002\u0002\u03e9\u03ea\u0007V\u0002\u0002\u03ea", + "\u03eb\u0007K\u0002\u0002\u03eb\u03ec\u0007V\u0002\u0002\u03ec\u03ed", + "\u0007K\u0002\u0002\u03ed\u03ee\u0007Q\u0002\u0002\u03ee\u03ef\u0007", + "P\u0002\u0002\u03efv\u0003\u0002\u0002\u0002\u03f0\u03f1\u0007T\u0002", + "\u0002\u03f1\u03f2\u0007C\u0002\u0002\u03f2\u03f3\u0007P\u0002\u0002", + "\u03f3\u03f4\u0007I\u0002\u0002\u03f4\u03f5\u0007G\u0002\u0002\u03f5", + "x\u0003\u0002\u0002\u0002\u03f6\u03f7\u0007T\u0002\u0002\u03f7\u03f8", + "\u0007Q\u0002\u0002\u03f8\u03f9\u0007Y\u0002\u0002\u03f9\u03fa\u0007", + "U\u0002\u0002\u03faz\u0003\u0002\u0002\u0002\u03fb\u03fc\u0007W\u0002", + "\u0002\u03fc\u03fd\u0007P\u0002\u0002\u03fd\u03fe\u0007D\u0002\u0002", + "\u03fe\u03ff\u0007Q\u0002\u0002\u03ff\u0400\u0007W\u0002\u0002\u0400", + "\u0401\u0007P\u0002\u0002\u0401\u0402\u0007F\u0002\u0002\u0402\u0403", + "\u0007G\u0002\u0002\u0403\u0404\u0007F\u0002\u0002\u0404|\u0003\u0002", + "\u0002\u0002\u0405\u0406\u0007R\u0002\u0002\u0406\u0407\u0007T\u0002", + "\u0002\u0407\u0408\u0007G\u0002\u0002\u0408\u0409\u0007E\u0002\u0002", + "\u0409\u040a\u0007G\u0002\u0002\u040a\u040b\u0007F\u0002\u0002\u040b", + "\u040c\u0007K\u0002\u0002\u040c\u040d\u0007P\u0002\u0002\u040d\u040e", + "\u0007I\u0002\u0002\u040e~\u0003\u0002\u0002\u0002\u040f\u0410\u0007", + "H\u0002\u0002\u0410\u0411\u0007Q\u0002\u0002\u0411\u0412\u0007N\u0002", + "\u0002\u0412\u0413\u0007N\u0002\u0002\u0413\u0414\u0007Q\u0002\u0002", + "\u0414\u0415\u0007Y\u0002\u0002\u0415\u0416\u0007K\u0002\u0002\u0416", + "\u0417\u0007P\u0002\u0002\u0417\u0418\u0007I\u0002\u0002\u0418\u0080", + "\u0003\u0002\u0002\u0002\u0419\u041a\u0007E\u0002\u0002\u041a\u041b", + "\u0007W\u0002\u0002\u041b\u041c\u0007T\u0002\u0002\u041c\u041d\u0007", + "T\u0002\u0002\u041d\u041e\u0007G\u0002\u0002\u041e\u041f\u0007P\u0002", + "\u0002\u041f\u0420\u0007V\u0002\u0002\u0420\u0082\u0003\u0002\u0002", + "\u0002\u0421\u0422\u0007H\u0002\u0002\u0422\u0423\u0007K\u0002\u0002", + "\u0423\u0424\u0007T\u0002\u0002\u0424\u0425\u0007U\u0002\u0002\u0425", + "\u0426\u0007V\u0002\u0002\u0426\u0084\u0003\u0002\u0002\u0002\u0427", + "\u0428\u0007C\u0002\u0002\u0428\u0429\u0007H\u0002\u0002\u0429\u042a", + "\u0007V\u0002\u0002\u042a\u042b\u0007G\u0002\u0002\u042b\u042c\u0007", + "T\u0002\u0002\u042c\u0086\u0003\u0002\u0002\u0002\u042d\u042e\u0007", + "N\u0002\u0002\u042e\u042f\u0007C\u0002\u0002\u042f\u0430\u0007U\u0002", + "\u0002\u0430\u0431\u0007V\u0002\u0002\u0431\u0088\u0003\u0002\u0002", + "\u0002\u0432\u0433\u0007Y\u0002\u0002\u0433\u0434\u0007K\u0002\u0002", + "\u0434\u0435\u0007V\u0002\u0002\u0435\u0436\u0007J\u0002\u0002\u0436", + "\u008a\u0003\u0002\u0002\u0002\u0437\u0438\u0007X\u0002\u0002\u0438", + "\u0439\u0007C\u0002\u0002\u0439\u043a\u0007N\u0002\u0002\u043a\u043b", + "\u0007W\u0002\u0002\u043b\u043c\u0007G\u0002\u0002\u043c\u043d\u0007", + "U\u0002\u0002\u043d\u008c\u0003\u0002\u0002\u0002\u043e\u043f\u0007", + "E\u0002\u0002\u043f\u0440\u0007T\u0002\u0002\u0440\u0441\u0007G\u0002", + "\u0002\u0441\u0442\u0007C\u0002\u0002\u0442\u0443\u0007V\u0002\u0002", + "\u0443\u0444\u0007G\u0002\u0002\u0444\u008e\u0003\u0002\u0002\u0002", + "\u0445\u0446\u0007V\u0002\u0002\u0446\u0447\u0007C\u0002\u0002\u0447", + "\u0448\u0007D\u0002\u0002\u0448\u0449\u0007N\u0002\u0002\u0449\u044a", + "\u0007G\u0002\u0002\u044a\u0090\u0003\u0002\u0002\u0002\u044b\u044c", + "\u0007F\u0002\u0002\u044c\u044d\u0007K\u0002\u0002\u044d\u044e\u0007", + "T\u0002\u0002\u044e\u044f\u0007G\u0002\u0002\u044f\u0450\u0007E\u0002", + "\u0002\u0450\u0451\u0007V\u0002\u0002\u0451\u0452\u0007Q\u0002\u0002", + "\u0452\u0453\u0007T\u0002\u0002\u0453\u0454\u0007[\u0002\u0002\u0454", + "\u0092\u0003\u0002\u0002\u0002\u0455\u0456\u0007X\u0002\u0002\u0456", + "\u0457\u0007K\u0002\u0002\u0457\u0458\u0007G\u0002\u0002\u0458\u0459", + "\u0007Y\u0002\u0002\u0459\u0094\u0003\u0002\u0002\u0002\u045a\u045b", + "\u0007T\u0002\u0002\u045b\u045c\u0007G\u0002\u0002\u045c\u045d\u0007", + "R\u0002\u0002\u045d\u045e\u0007N\u0002\u0002\u045e\u045f\u0007C\u0002", + "\u0002\u045f\u0460\u0007E\u0002\u0002\u0460\u0461\u0007G\u0002\u0002", + "\u0461\u0096\u0003\u0002\u0002\u0002\u0462\u0463\u0007K\u0002\u0002", + "\u0463\u0464\u0007P\u0002\u0002\u0464\u0465\u0007U\u0002\u0002\u0465", + "\u0466\u0007G\u0002\u0002\u0466\u0467\u0007T\u0002\u0002\u0467\u0468", + "\u0007V\u0002\u0002\u0468\u0098\u0003\u0002\u0002\u0002\u0469\u046a", + "\u0007F\u0002\u0002\u046a\u046b\u0007G\u0002\u0002\u046b\u046c\u0007", + "N\u0002\u0002\u046c\u046d\u0007G\u0002\u0002\u046d\u046e\u0007V\u0002", + "\u0002\u046e\u046f\u0007G\u0002\u0002\u046f\u009a\u0003\u0002\u0002", + "\u0002\u0470\u0471\u0007K\u0002\u0002\u0471\u0472\u0007P\u0002\u0002", + "\u0472\u0473\u0007V\u0002\u0002\u0473\u0474\u0007Q\u0002\u0002\u0474", + "\u009c\u0003\u0002\u0002\u0002\u0475\u0476\u0007F\u0002\u0002\u0476", + "\u0477\u0007G\u0002\u0002\u0477\u0478\u0007U\u0002\u0002\u0478\u0479", + "\u0007E\u0002\u0002\u0479\u047a\u0007T\u0002\u0002\u047a\u047b\u0007", + "K\u0002\u0002\u047b\u047c\u0007D\u0002\u0002\u047c\u047d\u0007G\u0002", + "\u0002\u047d\u009e\u0003\u0002\u0002\u0002\u047e\u047f\u0007G\u0002", + "\u0002\u047f\u0480\u0007Z\u0002\u0002\u0480\u0481\u0007R\u0002\u0002", + "\u0481\u0482\u0007N\u0002\u0002\u0482\u0483\u0007C\u0002\u0002\u0483", + "\u0484\u0007K\u0002\u0002\u0484\u0485\u0007P\u0002\u0002\u0485\u00a0", + "\u0003\u0002\u0002\u0002\u0486\u0487\u0007H\u0002\u0002\u0487\u0488", + "\u0007Q\u0002\u0002\u0488\u0489\u0007T\u0002\u0002\u0489\u048a\u0007", + "O\u0002\u0002\u048a\u048b\u0007C\u0002\u0002\u048b\u048c\u0007V\u0002", + "\u0002\u048c\u00a2\u0003\u0002\u0002\u0002\u048d\u048e\u0007N\u0002", + "\u0002\u048e\u048f\u0007Q\u0002\u0002\u048f\u0490\u0007I\u0002\u0002", + "\u0490\u0491\u0007K\u0002\u0002\u0491\u0492\u0007E\u0002\u0002\u0492", + "\u0493\u0007C\u0002\u0002\u0493\u0494\u0007N\u0002\u0002\u0494\u00a4", + "\u0003\u0002\u0002\u0002\u0495\u0496\u0007E\u0002\u0002\u0496\u0497", + "\u0007Q\u0002\u0002\u0497\u0498\u0007F\u0002\u0002\u0498\u0499\u0007", + "G\u0002\u0002\u0499\u049a\u0007I\u0002\u0002\u049a\u049b\u0007G\u0002", + "\u0002\u049b\u049c\u0007P\u0002\u0002\u049c\u00a6\u0003\u0002\u0002", + "\u0002\u049d\u049e\u0007E\u0002\u0002\u049e\u049f\u0007Q\u0002\u0002", + "\u049f\u04a0\u0007U\u0002\u0002\u04a0\u04a1\u0007V\u0002\u0002\u04a1", + "\u00a8\u0003\u0002\u0002\u0002\u04a2\u04a3\u0007E\u0002\u0002\u04a3", + "\u04a4\u0007C\u0002\u0002\u04a4\u04a5\u0007U\u0002\u0002\u04a5\u04a6", + "\u0007V\u0002\u0002\u04a6\u00aa\u0003\u0002\u0002\u0002\u04a7\u04a8", + "\u0007U\u0002\u0002\u04a8\u04a9\u0007J\u0002\u0002\u04a9\u04aa\u0007", + "Q\u0002\u0002\u04aa\u04ab\u0007Y\u0002\u0002\u04ab\u00ac\u0003\u0002", + "\u0002\u0002\u04ac\u04ad\u0007V\u0002\u0002\u04ad\u04ae\u0007C\u0002", + "\u0002\u04ae\u04af\u0007D\u0002\u0002\u04af\u04b0\u0007N\u0002\u0002", + "\u04b0\u04b1\u0007G\u0002\u0002\u04b1\u04b2\u0007U\u0002\u0002\u04b2", + "\u00ae\u0003\u0002\u0002\u0002\u04b3\u04b4\u0007E\u0002\u0002\u04b4", + "\u04b5\u0007Q\u0002\u0002\u04b5\u04b6\u0007N\u0002\u0002\u04b6\u04b7", + "\u0007W\u0002\u0002\u04b7\u04b8\u0007O\u0002\u0002\u04b8\u04b9\u0007", + "P\u0002\u0002\u04b9\u04ba\u0007U\u0002\u0002\u04ba\u00b0\u0003\u0002", + "\u0002\u0002\u04bb\u04bc\u0007E\u0002\u0002\u04bc\u04bd\u0007Q\u0002", + "\u0002\u04bd\u04be\u0007N\u0002\u0002\u04be\u04bf\u0007W\u0002\u0002", + "\u04bf\u04c0\u0007O\u0002\u0002\u04c0\u04c1\u0007P\u0002\u0002\u04c1", + "\u00b2\u0003\u0002\u0002\u0002\u04c2\u04c3\u0007W\u0002\u0002\u04c3", + "\u04c4\u0007U\u0002\u0002\u04c4\u04c5\u0007G\u0002\u0002\u04c5\u00b4", + "\u0003\u0002\u0002\u0002\u04c6\u04c7\u0007R\u0002\u0002\u04c7\u04c8", + "\u0007C\u0002\u0002\u04c8\u04c9\u0007T\u0002\u0002\u04c9\u04ca\u0007", + "V\u0002\u0002\u04ca\u04cb\u0007K\u0002\u0002\u04cb\u04cc\u0007V\u0002", + "\u0002\u04cc\u04cd\u0007K\u0002\u0002\u04cd\u04ce\u0007Q\u0002\u0002", + "\u04ce\u04cf\u0007P\u0002\u0002\u04cf\u04d0\u0007U\u0002\u0002\u04d0", + "\u00b6\u0003\u0002\u0002\u0002\u04d1\u04d2\u0007H\u0002\u0002\u04d2", + "\u04d3\u0007W\u0002\u0002\u04d3\u04d4\u0007P\u0002\u0002\u04d4\u04d5", + "\u0007E\u0002\u0002\u04d5\u04d6\u0007V\u0002\u0002\u04d6\u04d7\u0007", + "K\u0002\u0002\u04d7\u04d8\u0007Q\u0002\u0002\u04d8\u04d9\u0007P\u0002", + "\u0002\u04d9\u04da\u0007U\u0002\u0002\u04da\u00b8\u0003\u0002\u0002", + "\u0002\u04db\u04dc\u0007F\u0002\u0002\u04dc\u04dd\u0007T\u0002\u0002", + "\u04dd\u04de\u0007Q\u0002\u0002\u04de\u04df\u0007R\u0002\u0002\u04df", + "\u00ba\u0003\u0002\u0002\u0002\u04e0\u04e1\u0007W\u0002\u0002\u04e1", + "\u04e2\u0007P\u0002\u0002\u04e2\u04e3\u0007K\u0002\u0002\u04e3\u04e4", + "\u0007Q\u0002\u0002\u04e4\u04e5\u0007P\u0002\u0002\u04e5\u00bc\u0003", + "\u0002\u0002\u0002\u04e6\u04e7\u0007G\u0002\u0002\u04e7\u04e8\u0007", + "Z\u0002\u0002\u04e8\u04e9\u0007E\u0002\u0002\u04e9\u04ea\u0007G\u0002", + "\u0002\u04ea\u04eb\u0007R\u0002\u0002\u04eb\u04ec\u0007V\u0002\u0002", + "\u04ec\u00be\u0003\u0002\u0002\u0002\u04ed\u04ee\u0007U\u0002\u0002", + "\u04ee\u04ef\u0007G\u0002\u0002\u04ef\u04f0\u0007V\u0002\u0002\u04f0", + "\u04f1\u0007O\u0002\u0002\u04f1\u04f2\u0007K\u0002\u0002\u04f2\u04f3", + "\u0007P\u0002\u0002\u04f3\u04f4\u0007W\u0002\u0002\u04f4\u04f5\u0007", + "U\u0002\u0002\u04f5\u00c0\u0003\u0002\u0002\u0002\u04f6\u04f7\u0007", + "K\u0002\u0002\u04f7\u04f8\u0007P\u0002\u0002\u04f8\u04f9\u0007V\u0002", + "\u0002\u04f9\u04fa\u0007G\u0002\u0002\u04fa\u04fb\u0007T\u0002\u0002", + "\u04fb\u04fc\u0007U\u0002\u0002\u04fc\u04fd\u0007G\u0002\u0002\u04fd", + "\u04fe\u0007E\u0002\u0002\u04fe\u04ff\u0007V\u0002\u0002\u04ff\u00c2", + "\u0003\u0002\u0002\u0002\u0500\u0501\u0007V\u0002\u0002\u0501\u0502", + "\u0007Q\u0002\u0002\u0502\u00c4\u0003\u0002\u0002\u0002\u0503\u0504", + "\u0007V\u0002\u0002\u0504\u0505\u0007C\u0002\u0002\u0505\u0506\u0007", + "D\u0002\u0002\u0506\u0507\u0007N\u0002\u0002\u0507\u0508\u0007G\u0002", + "\u0002\u0508\u0509\u0007U\u0002\u0002\u0509\u050a\u0007C\u0002\u0002", + "\u050a\u050b\u0007O\u0002\u0002\u050b\u050c\u0007R\u0002\u0002\u050c", + "\u050d\u0007N\u0002\u0002\u050d\u050e\u0007G\u0002\u0002\u050e\u00c6", + "\u0003\u0002\u0002\u0002\u050f\u0510\u0007U\u0002\u0002\u0510\u0511", + "\u0007V\u0002\u0002\u0511\u0512\u0007T\u0002\u0002\u0512\u0513\u0007", + "C\u0002\u0002\u0513\u0514\u0007V\u0002\u0002\u0514\u0515\u0007K\u0002", + "\u0002\u0515\u0516\u0007H\u0002\u0002\u0516\u0517\u0007[\u0002\u0002", + "\u0517\u00c8\u0003\u0002\u0002\u0002\u0518\u0519\u0007C\u0002\u0002", + "\u0519\u051a\u0007N\u0002\u0002\u051a\u051b\u0007V\u0002\u0002\u051b", + "\u051c\u0007G\u0002\u0002\u051c\u051d\u0007T\u0002\u0002\u051d\u00ca", + "\u0003\u0002\u0002\u0002\u051e\u051f\u0007T\u0002\u0002\u051f\u0520", + "\u0007G\u0002\u0002\u0520\u0521\u0007P\u0002\u0002\u0521\u0522\u0007", + "C\u0002\u0002\u0522\u0523\u0007O\u0002\u0002\u0523\u0524\u0007G\u0002", + "\u0002\u0524\u00cc\u0003\u0002\u0002\u0002\u0525\u0526\u0007U\u0002", + "\u0002\u0526\u0527\u0007V\u0002\u0002\u0527\u0528\u0007T\u0002\u0002", + "\u0528\u0529\u0007W\u0002\u0002\u0529\u052a\u0007E\u0002\u0002\u052a", + "\u052b\u0007V\u0002\u0002\u052b\u00ce\u0003\u0002\u0002\u0002\u052c", + "\u052d\u0007E\u0002\u0002\u052d\u052e\u0007Q\u0002\u0002\u052e\u052f", + "\u0007O\u0002\u0002\u052f\u0530\u0007O\u0002\u0002\u0530\u0531\u0007", + "G\u0002\u0002\u0531\u0532\u0007P\u0002\u0002\u0532\u0533\u0007V\u0002", + "\u0002\u0533\u00d0\u0003\u0002\u0002\u0002\u0534\u0535\u0007U\u0002", + "\u0002\u0535\u0536\u0007G\u0002\u0002\u0536\u0537\u0007V\u0002\u0002", + "\u0537\u00d2\u0003\u0002\u0002\u0002\u0538\u0539\u0007T\u0002\u0002", + "\u0539\u053a\u0007G\u0002\u0002\u053a\u053b\u0007U\u0002\u0002\u053b", + "\u053c\u0007G\u0002\u0002\u053c\u053d\u0007V\u0002\u0002\u053d\u00d4", + "\u0003\u0002\u0002\u0002\u053e\u053f\u0007F\u0002\u0002\u053f\u0540", + "\u0007C\u0002\u0002\u0540\u0541\u0007V\u0002\u0002\u0541\u0542\u0007", + "C\u0002\u0002\u0542\u00d6\u0003\u0002\u0002\u0002\u0543\u0544\u0007", + "U\u0002\u0002\u0544\u0545\u0007V\u0002\u0002\u0545\u0546\u0007C\u0002", + "\u0002\u0546\u0547\u0007T\u0002\u0002\u0547\u0548\u0007V\u0002\u0002", + "\u0548\u00d8\u0003\u0002\u0002\u0002\u0549\u054a\u0007V\u0002\u0002", + "\u054a\u054b\u0007T\u0002\u0002\u054b\u054c\u0007C\u0002\u0002\u054c", + "\u054d\u0007P\u0002\u0002\u054d\u054e\u0007U\u0002\u0002\u054e\u054f", + "\u0007C\u0002\u0002\u054f\u0550\u0007E\u0002\u0002\u0550\u0551\u0007", + "V\u0002\u0002\u0551\u0552\u0007K\u0002\u0002\u0552\u0553\u0007Q\u0002", + "\u0002\u0553\u0554\u0007P\u0002\u0002\u0554\u00da\u0003\u0002\u0002", + "\u0002\u0555\u0556\u0007E\u0002\u0002\u0556\u0557\u0007Q\u0002\u0002", + "\u0557\u0558\u0007O\u0002\u0002\u0558\u0559\u0007O\u0002\u0002\u0559", + "\u055a\u0007K\u0002\u0002\u055a\u055b\u0007V\u0002\u0002\u055b\u00dc", + "\u0003\u0002\u0002\u0002\u055c\u055d\u0007T\u0002\u0002\u055d\u055e", + "\u0007Q\u0002\u0002\u055e\u055f\u0007N\u0002\u0002\u055f\u0560\u0007", + "N\u0002\u0002\u0560\u0561\u0007D\u0002\u0002\u0561\u0562\u0007C\u0002", + "\u0002\u0562\u0563\u0007E\u0002\u0002\u0563\u0564\u0007M\u0002\u0002", + "\u0564\u00de\u0003\u0002\u0002\u0002\u0565\u0566\u0007O\u0002\u0002", + "\u0566\u0567\u0007C\u0002\u0002\u0567\u0568\u0007E\u0002\u0002\u0568", + "\u0569\u0007T\u0002\u0002\u0569\u056a\u0007Q\u0002\u0002\u056a\u00e0", + "\u0003\u0002\u0002\u0002\u056b\u056c\u0007K\u0002\u0002\u056c\u056d", + "\u0007I\u0002\u0002\u056d\u056e\u0007P\u0002\u0002\u056e\u056f\u0007", + "Q\u0002\u0002\u056f\u0570\u0007T\u0002\u0002\u0570\u0571\u0007G\u0002", + "\u0002\u0571\u00e2\u0003\u0002\u0002\u0002\u0572\u0573\u0007D\u0002", + "\u0002\u0573\u0574\u0007Q\u0002\u0002\u0574\u0575\u0007V\u0002\u0002", + "\u0575\u0576\u0007J\u0002\u0002\u0576\u00e4\u0003\u0002\u0002\u0002", + "\u0577\u0578\u0007N\u0002\u0002\u0578\u0579\u0007G\u0002\u0002\u0579", + "\u057a\u0007C\u0002\u0002\u057a\u057b\u0007F\u0002\u0002\u057b\u057c", + "\u0007K\u0002\u0002\u057c\u057d\u0007P\u0002\u0002\u057d\u057e\u0007", + "I\u0002\u0002\u057e\u00e6\u0003\u0002\u0002\u0002\u057f\u0580\u0007", + "V\u0002\u0002\u0580\u0581\u0007T\u0002\u0002\u0581\u0582\u0007C\u0002", + "\u0002\u0582\u0583\u0007K\u0002\u0002\u0583\u0584\u0007N\u0002\u0002", + "\u0584\u0585\u0007K\u0002\u0002\u0585\u0586\u0007P\u0002\u0002\u0586", + "\u0587\u0007I\u0002\u0002\u0587\u00e8\u0003\u0002\u0002\u0002\u0588", + "\u0589\u0007K\u0002\u0002\u0589\u058a\u0007H\u0002\u0002\u058a\u00ea", + "\u0003\u0002\u0002\u0002\u058b\u058c\u0007R\u0002\u0002\u058c\u058d", + "\u0007Q\u0002\u0002\u058d\u058e\u0007U\u0002\u0002\u058e\u058f\u0007", + "K\u0002\u0002\u058f\u0590\u0007V\u0002\u0002\u0590\u0591\u0007K\u0002", + "\u0002\u0591\u0592\u0007Q\u0002\u0002\u0592\u0593\u0007P\u0002\u0002", + "\u0593\u00ec\u0003\u0002\u0002\u0002\u0594\u0595\u0007G\u0002\u0002", + "\u0595\u0596\u0007Z\u0002\u0002\u0596\u0597\u0007V\u0002\u0002\u0597", + "\u0598\u0007T\u0002\u0002\u0598\u0599\u0007C\u0002\u0002\u0599\u059a", + "\u0007E\u0002\u0002\u059a\u059b\u0007V\u0002\u0002\u059b\u00ee\u0003", + "\u0002\u0002\u0002\u059c\u059d\u0007G\u0002\u0002\u059d\u059e\u0007", + "S\u0002\u0002\u059e\u00f0\u0003\u0002\u0002\u0002\u059f\u05a0\u0007", + "P\u0002\u0002\u05a0\u05a1\u0007U\u0002\u0002\u05a1\u05a2\u0007G\u0002", + "\u0002\u05a2\u05a3\u0007S\u0002\u0002\u05a3\u00f2\u0003\u0002\u0002", + "\u0002\u05a4\u05a5\u0007P\u0002\u0002\u05a5\u05a6\u0007G\u0002\u0002", + "\u05a6\u05a7\u0007S\u0002\u0002\u05a7\u00f4\u0003\u0002\u0002\u0002", + "\u05a8\u05a9\u0007P\u0002\u0002\u05a9\u05aa\u0007G\u0002\u0002\u05aa", + "\u05ab\u0007S\u0002\u0002\u05ab\u05ac\u0007L\u0002\u0002\u05ac\u00f6", + "\u0003\u0002\u0002\u0002\u05ad\u05ae\u0007N\u0002\u0002\u05ae\u05af", + "\u0007V\u0002\u0002\u05af\u00f8\u0003\u0002\u0002\u0002\u05b0\u05b1", + "\u0007N\u0002\u0002\u05b1\u05b2\u0007V\u0002\u0002\u05b2\u05b3\u0007", + "G\u0002\u0002\u05b3\u00fa\u0003\u0002\u0002\u0002\u05b4\u05b5\u0007", + "I\u0002\u0002\u05b5\u05b6\u0007V\u0002\u0002\u05b6\u00fc\u0003\u0002", + "\u0002\u0002\u05b7\u05b8\u0007I\u0002\u0002\u05b8\u05b9\u0007V\u0002", + "\u0002\u05b9\u05ba\u0007G\u0002\u0002\u05ba\u00fe\u0003\u0002\u0002", + "\u0002\u05bb\u05bc\u0007R\u0002\u0002\u05bc\u05bd\u0007N\u0002\u0002", + "\u05bd\u05be\u0007W\u0002\u0002\u05be\u05bf\u0007U\u0002\u0002\u05bf", + "\u0100\u0003\u0002\u0002\u0002\u05c0\u05c1\u0007O\u0002\u0002\u05c1", + "\u05c2\u0007K\u0002\u0002\u05c2\u05c3\u0007P\u0002\u0002\u05c3\u05c4", + "\u0007W\u0002\u0002\u05c4\u05c5\u0007U\u0002\u0002\u05c5\u0102\u0003", + "\u0002\u0002\u0002\u05c6\u05c7\u0007C\u0002\u0002\u05c7\u05c8\u0007", + "U\u0002\u0002\u05c8\u05c9\u0007V\u0002\u0002\u05c9\u05ca\u0007G\u0002", + "\u0002\u05ca\u05cb\u0007T\u0002\u0002\u05cb\u05cc\u0007K\u0002\u0002", + "\u05cc\u05cd\u0007U\u0002\u0002\u05cd\u05ce\u0007M\u0002\u0002\u05ce", + "\u0104\u0003\u0002\u0002\u0002\u05cf\u05d0\u0007U\u0002\u0002\u05d0", + "\u05d1\u0007N\u0002\u0002\u05d1\u05d2\u0007C\u0002\u0002\u05d2\u05d3", + "\u0007U\u0002\u0002\u05d3\u05d4\u0007J\u0002\u0002\u05d4\u0106\u0003", + "\u0002\u0002\u0002\u05d5\u05d6\u0007R\u0002\u0002\u05d6\u05d7\u0007", + "G\u0002\u0002\u05d7\u05d8\u0007T\u0002\u0002\u05d8\u05d9\u0007E\u0002", + "\u0002\u05d9\u05da\u0007G\u0002\u0002\u05da\u05db\u0007P\u0002\u0002", + "\u05db\u05dc\u0007V\u0002\u0002\u05dc\u0108\u0003\u0002\u0002\u0002", + "\u05dd\u05de\u0007F\u0002\u0002\u05de\u05df\u0007K\u0002\u0002\u05df", + "\u05e0\u0007X\u0002\u0002\u05e0\u010a\u0003\u0002\u0002\u0002\u05e1", + "\u05e2\u0007V\u0002\u0002\u05e2\u05e3\u0007K\u0002\u0002\u05e3\u05e4", + "\u0007N\u0002\u0002\u05e4\u05e5\u0007F\u0002\u0002\u05e5\u05e6\u0007", + "G\u0002\u0002\u05e6\u010c\u0003\u0002\u0002\u0002\u05e7\u05e8\u0007", + "C\u0002\u0002\u05e8\u05e9\u0007O\u0002\u0002\u05e9\u05ea\u0007R\u0002", + "\u0002\u05ea\u05eb\u0007G\u0002\u0002\u05eb\u05ec\u0007T\u0002\u0002", + "\u05ec\u05ed\u0007U\u0002\u0002\u05ed\u05ee\u0007C\u0002\u0002\u05ee", + "\u05ef\u0007P\u0002\u0002\u05ef\u05f0\u0007F\u0002\u0002\u05f0\u010e", + "\u0003\u0002\u0002\u0002\u05f1\u05f2\u0007R\u0002\u0002\u05f2\u05f3", + "\u0007K\u0002\u0002\u05f3\u05f4\u0007R\u0002\u0002\u05f4\u05f5\u0007", + "G\u0002\u0002\u05f5\u0110\u0003\u0002\u0002\u0002\u05f6\u05f7\u0007", + "E\u0002\u0002\u05f7\u05f8\u0007Q\u0002\u0002\u05f8\u05f9\u0007P\u0002", + "\u0002\u05f9\u05fa\u0007E\u0002\u0002\u05fa\u05fb\u0007C\u0002\u0002", + "\u05fb\u05fc\u0007V\u0002\u0002\u05fc\u05fd\u0007a\u0002\u0002\u05fd", + "\u05fe\u0007R\u0002\u0002\u05fe\u05ff\u0007K\u0002\u0002\u05ff\u0600", + "\u0007R\u0002\u0002\u0600\u0601\u0007G\u0002\u0002\u0601\u0112\u0003", + "\u0002\u0002\u0002\u0602\u0603\u0007J\u0002\u0002\u0603\u0604\u0007", + "C\u0002\u0002\u0604\u0605\u0007V\u0002\u0002\u0605\u0114\u0003\u0002", + "\u0002\u0002\u0606\u0607\u0007R\u0002\u0002\u0607\u0608\u0007G\u0002", + "\u0002\u0608\u0609\u0007T\u0002\u0002\u0609\u060a\u0007E\u0002\u0002", + "\u060a\u060b\u0007G\u0002\u0002\u060b\u060c\u0007P\u0002\u0002\u060c", + "\u060d\u0007V\u0002\u0002\u060d\u060e\u0007N\u0002\u0002\u060e\u060f", + "\u0007K\u0002\u0002\u060f\u0610\u0007V\u0002\u0002\u0610\u0116\u0003", + "\u0002\u0002\u0002\u0611\u0612\u0007D\u0002\u0002\u0612\u0613\u0007", + "W\u0002\u0002\u0613\u0614\u0007E\u0002\u0002\u0614\u0615\u0007M\u0002", + "\u0002\u0615\u0616\u0007G\u0002\u0002\u0616\u0617\u0007V\u0002\u0002", + "\u0617\u0118\u0003\u0002\u0002\u0002\u0618\u0619\u0007Q\u0002\u0002", + "\u0619\u061a\u0007W\u0002\u0002\u061a\u061b\u0007V\u0002\u0002\u061b", + "\u011a\u0003\u0002\u0002\u0002\u061c\u061d\u0007Q\u0002\u0002\u061d", + "\u061e\u0007H\u0002\u0002\u061e\u011c\u0003\u0002\u0002\u0002\u061f", + "\u0620\u0007U\u0002\u0002\u0620\u0621\u0007Q\u0002\u0002\u0621\u0622", + "\u0007T\u0002\u0002\u0622\u0623\u0007V\u0002\u0002\u0623\u011e\u0003", + "\u0002\u0002\u0002\u0624\u0625\u0007E\u0002\u0002\u0625\u0626\u0007", + "N\u0002\u0002\u0626\u0627\u0007W\u0002\u0002\u0627\u0628\u0007U\u0002", + "\u0002\u0628\u0629\u0007V\u0002\u0002\u0629\u062a\u0007G\u0002\u0002", + "\u062a\u062b\u0007T\u0002\u0002\u062b\u0120\u0003\u0002\u0002\u0002", + "\u062c\u062d\u0007F\u0002\u0002\u062d\u062e\u0007K\u0002\u0002\u062e", + "\u062f\u0007U\u0002\u0002\u062f\u0630\u0007V\u0002\u0002\u0630\u0631", + "\u0007T\u0002\u0002\u0631\u0632\u0007K\u0002\u0002\u0632\u0633\u0007", + "D\u0002\u0002\u0633\u0634\u0007W\u0002\u0002\u0634\u0635\u0007V\u0002", + "\u0002\u0635\u0636\u0007G\u0002\u0002\u0636\u0122\u0003\u0002\u0002", + "\u0002\u0637\u0638\u0007Q\u0002\u0002\u0638\u0639\u0007X\u0002\u0002", + "\u0639\u063a\u0007G\u0002\u0002\u063a\u063b\u0007T\u0002\u0002\u063b", + "\u063c\u0007Y\u0002\u0002\u063c\u063d\u0007T\u0002\u0002\u063d\u063e", + "\u0007K\u0002\u0002\u063e\u063f\u0007V\u0002\u0002\u063f\u0640\u0007", + "G\u0002\u0002\u0640\u0124\u0003\u0002\u0002\u0002\u0641\u0642\u0007", + "V\u0002\u0002\u0642\u0643\u0007T\u0002\u0002\u0643\u0644\u0007C\u0002", + "\u0002\u0644\u0645\u0007P\u0002\u0002\u0645\u0646\u0007U\u0002\u0002", + "\u0646\u0647\u0007H\u0002\u0002\u0647\u0648\u0007Q\u0002\u0002\u0648", + "\u0649\u0007T\u0002\u0002\u0649\u064a\u0007O\u0002\u0002\u064a\u0126", + "\u0003\u0002\u0002\u0002\u064b\u064c\u0007T\u0002\u0002\u064c\u064d", + "\u0007G\u0002\u0002\u064d\u064e\u0007F\u0002\u0002\u064e\u064f\u0007", + "W\u0002\u0002\u064f\u0650\u0007E\u0002\u0002\u0650\u0651\u0007G\u0002", + "\u0002\u0651\u0128\u0003\u0002\u0002\u0002\u0652\u0653\u0007W\u0002", + "\u0002\u0653\u0654\u0007U\u0002\u0002\u0654\u0655\u0007K\u0002\u0002", + "\u0655\u0656\u0007P\u0002\u0002\u0656\u0657\u0007I\u0002\u0002\u0657", + "\u012a\u0003\u0002\u0002\u0002\u0658\u0659\u0007U\u0002\u0002\u0659", + "\u065a\u0007G\u0002\u0002\u065a\u065b\u0007T\u0002\u0002\u065b\u065c", + "\u0007F\u0002\u0002\u065c\u065d\u0007G\u0002\u0002\u065d\u012c\u0003", + "\u0002\u0002\u0002\u065e\u065f\u0007U\u0002\u0002\u065f\u0660\u0007", + "G\u0002\u0002\u0660\u0661\u0007T\u0002\u0002\u0661\u0662\u0007F\u0002", + "\u0002\u0662\u0663\u0007G\u0002\u0002\u0663\u0664\u0007R\u0002\u0002", + "\u0664\u0665\u0007T\u0002\u0002\u0665\u0666\u0007Q\u0002\u0002\u0666", + "\u0667\u0007R\u0002\u0002\u0667\u0668\u0007G\u0002\u0002\u0668\u0669", + "\u0007T\u0002\u0002\u0669\u066a\u0007V\u0002\u0002\u066a\u066b\u0007", + "K\u0002\u0002\u066b\u066c\u0007G\u0002\u0002\u066c\u066d\u0007U\u0002", + "\u0002\u066d\u012e\u0003\u0002\u0002\u0002\u066e\u066f\u0007T\u0002", + "\u0002\u066f\u0670\u0007G\u0002\u0002\u0670\u0671\u0007E\u0002\u0002", + "\u0671\u0672\u0007Q\u0002\u0002\u0672\u0673\u0007T\u0002\u0002\u0673", + "\u0674\u0007F\u0002\u0002\u0674\u0675\u0007T\u0002\u0002\u0675\u0676", + "\u0007G\u0002\u0002\u0676\u0677\u0007C\u0002\u0002\u0677\u0678\u0007", + "F\u0002\u0002\u0678\u0679\u0007G\u0002\u0002\u0679\u067a\u0007T\u0002", + "\u0002\u067a\u0130\u0003\u0002\u0002\u0002\u067b\u067c\u0007T\u0002", + "\u0002\u067c\u067d\u0007G\u0002\u0002\u067d\u067e\u0007E\u0002\u0002", + "\u067e\u067f\u0007Q\u0002\u0002\u067f\u0680\u0007T\u0002\u0002\u0680", + "\u0681\u0007F\u0002\u0002\u0681\u0682\u0007Y\u0002\u0002\u0682\u0683", + "\u0007T\u0002\u0002\u0683\u0684\u0007K\u0002\u0002\u0684\u0685\u0007", + "V\u0002\u0002\u0685\u0686\u0007G\u0002\u0002\u0686\u0687\u0007T\u0002", + "\u0002\u0687\u0132\u0003\u0002\u0002\u0002\u0688\u0689\u0007F\u0002", + "\u0002\u0689\u068a\u0007G\u0002\u0002\u068a\u068b\u0007N\u0002\u0002", + "\u068b\u068c\u0007K\u0002\u0002\u068c\u068d\u0007O\u0002\u0002\u068d", + "\u068e\u0007K\u0002\u0002\u068e\u068f\u0007V\u0002\u0002\u068f\u0690", + "\u0007G\u0002\u0002\u0690\u0691\u0007F\u0002\u0002\u0691\u0134\u0003", + "\u0002\u0002\u0002\u0692\u0693\u0007H\u0002\u0002\u0693\u0694\u0007", + "K\u0002\u0002\u0694\u0695\u0007G\u0002\u0002\u0695\u0696\u0007N\u0002", + "\u0002\u0696\u0697\u0007F\u0002\u0002\u0697\u0698\u0007U\u0002\u0002", + "\u0698\u0136\u0003\u0002\u0002\u0002\u0699\u069a\u0007V\u0002\u0002", + "\u069a\u069b\u0007G\u0002\u0002\u069b\u069c\u0007T\u0002\u0002\u069c", + "\u069d\u0007O\u0002\u0002\u069d\u069e\u0007K\u0002\u0002\u069e\u069f", + "\u0007P\u0002\u0002\u069f\u06a0\u0007C\u0002\u0002\u06a0\u06a1\u0007", + "V\u0002\u0002\u06a1\u06a2\u0007G\u0002\u0002\u06a2\u06a3\u0007F\u0002", + "\u0002\u06a3\u0138\u0003\u0002\u0002\u0002\u06a4\u06a5\u0007E\u0002", + "\u0002\u06a5\u06a6\u0007Q\u0002\u0002\u06a6\u06a7\u0007N\u0002\u0002", + "\u06a7\u06a8\u0007N\u0002\u0002\u06a8\u06a9\u0007G\u0002\u0002\u06a9", + "\u06aa\u0007E\u0002\u0002\u06aa\u06ab\u0007V\u0002\u0002\u06ab\u06ac", + "\u0007K\u0002\u0002\u06ac\u06ad\u0007Q\u0002\u0002\u06ad\u06ae\u0007", + "P\u0002\u0002\u06ae\u013a\u0003\u0002\u0002\u0002\u06af\u06b0\u0007", + "K\u0002\u0002\u06b0\u06b1\u0007V\u0002\u0002\u06b1\u06b2\u0007G\u0002", + "\u0002\u06b2\u06b3\u0007O\u0002\u0002\u06b3\u06b4\u0007U\u0002\u0002", + "\u06b4\u013c\u0003\u0002\u0002\u0002\u06b5\u06b6\u0007M\u0002\u0002", + "\u06b6\u06b7\u0007G\u0002\u0002\u06b7\u06b8\u0007[\u0002\u0002\u06b8", + "\u06b9\u0007U\u0002\u0002\u06b9\u013e\u0003\u0002\u0002\u0002\u06ba", + "\u06bb\u0007G\u0002\u0002\u06bb\u06bc\u0007U\u0002\u0002\u06bc\u06bd", + "\u0007E\u0002\u0002\u06bd\u06be\u0007C\u0002\u0002\u06be\u06bf\u0007", + "R\u0002\u0002\u06bf\u06c0\u0007G\u0002\u0002\u06c0\u06c1\u0007F\u0002", + "\u0002\u06c1\u0140\u0003\u0002\u0002\u0002\u06c2\u06c3\u0007N\u0002", + "\u0002\u06c3\u06c4\u0007K\u0002\u0002\u06c4\u06c5\u0007P\u0002\u0002", + "\u06c5\u06c6\u0007G\u0002\u0002\u06c6\u06c7\u0007U\u0002\u0002\u06c7", + "\u0142\u0003\u0002\u0002\u0002\u06c8\u06c9\u0007U\u0002\u0002\u06c9", + "\u06ca\u0007G\u0002\u0002\u06ca\u06cb\u0007R\u0002\u0002\u06cb\u06cc", + "\u0007C\u0002\u0002\u06cc\u06cd\u0007T\u0002\u0002\u06cd\u06ce\u0007", + "C\u0002\u0002\u06ce\u06cf\u0007V\u0002\u0002\u06cf\u06d0\u0007G\u0002", + "\u0002\u06d0\u06d1\u0007F\u0002\u0002\u06d1\u0144\u0003\u0002\u0002", + "\u0002\u06d2\u06d3\u0007H\u0002\u0002\u06d3\u06d4\u0007W\u0002\u0002", + "\u06d4\u06d5\u0007P\u0002\u0002\u06d5\u06d6\u0007E\u0002\u0002\u06d6", + "\u06d7\u0007V\u0002\u0002\u06d7\u06d8\u0007K\u0002\u0002\u06d8\u06d9", + "\u0007Q\u0002\u0002\u06d9\u06da\u0007P\u0002\u0002\u06da\u0146\u0003", + "\u0002\u0002\u0002\u06db\u06dc\u0007G\u0002\u0002\u06dc\u06dd\u0007", + "Z\u0002\u0002\u06dd\u06de\u0007V\u0002\u0002\u06de\u06df\u0007G\u0002", + "\u0002\u06df\u06e0\u0007P\u0002\u0002\u06e0\u06e1\u0007F\u0002\u0002", + "\u06e1\u06e2\u0007G\u0002\u0002\u06e2\u06e3\u0007F\u0002\u0002\u06e3", + "\u0148\u0003\u0002\u0002\u0002\u06e4\u06e5\u0007T\u0002\u0002\u06e5", + "\u06e6\u0007G\u0002\u0002\u06e6\u06e7\u0007H\u0002\u0002\u06e7\u06e8", + "\u0007T\u0002\u0002\u06e8\u06e9\u0007G\u0002\u0002\u06e9\u06ea\u0007", + "U\u0002\u0002\u06ea\u06eb\u0007J\u0002\u0002\u06eb\u014a\u0003\u0002", + "\u0002\u0002\u06ec\u06ed\u0007E\u0002\u0002\u06ed\u06ee\u0007N\u0002", + "\u0002\u06ee\u06ef\u0007G\u0002\u0002\u06ef\u06f0\u0007C\u0002\u0002", + "\u06f0\u06f1\u0007T\u0002\u0002\u06f1\u014c\u0003\u0002\u0002\u0002", + "\u06f2\u06f3\u0007E\u0002\u0002\u06f3\u06f4\u0007C\u0002\u0002\u06f4", + "\u06f5\u0007E\u0002\u0002\u06f5\u06f6\u0007J\u0002\u0002\u06f6\u06f7", + "\u0007G\u0002\u0002\u06f7\u014e\u0003\u0002\u0002\u0002\u06f8\u06f9", + "\u0007W\u0002\u0002\u06f9\u06fa\u0007P\u0002\u0002\u06fa\u06fb\u0007", + "E\u0002\u0002\u06fb\u06fc\u0007C\u0002\u0002\u06fc\u06fd\u0007E\u0002", + "\u0002\u06fd\u06fe\u0007J\u0002\u0002\u06fe\u06ff\u0007G\u0002\u0002", + "\u06ff\u0150\u0003\u0002\u0002\u0002\u0700\u0701\u0007N\u0002\u0002", + "\u0701\u0702\u0007C\u0002\u0002\u0702\u0703\u0007\\\u0002\u0002\u0703", + "\u0704\u0007[\u0002\u0002\u0704\u0152\u0003\u0002\u0002\u0002\u0705", + "\u0706\u0007H\u0002\u0002\u0706\u0707\u0007Q\u0002\u0002\u0707\u0708", + "\u0007T\u0002\u0002\u0708\u0709\u0007O\u0002\u0002\u0709\u070a\u0007", + "C\u0002\u0002\u070a\u070b\u0007V\u0002\u0002\u070b\u070c\u0007V\u0002", + "\u0002\u070c\u070d\u0007G\u0002\u0002\u070d\u070e\u0007F\u0002\u0002", + "\u070e\u0154\u0003\u0002\u0002\u0002\u070f\u0710\u0007I\u0002\u0002", + "\u0710\u0711\u0007N\u0002\u0002\u0711\u0712\u0007Q\u0002\u0002\u0712", + "\u0713\u0007D\u0002\u0002\u0713\u0714\u0007C\u0002\u0002\u0714\u0715", + "\u0007N\u0002\u0002\u0715\u0156\u0003\u0002\u0002\u0002\u0716\u0717", + "\u0007V\u0002\u0002\u0717\u0718\u0007G\u0002\u0002\u0718\u0719\u0007", + "O\u0002\u0002\u0719\u071a\u0007R\u0002\u0002\u071a\u071b\u0007Q\u0002", + "\u0002\u071b\u071c\u0007T\u0002\u0002\u071c\u071d\u0007C\u0002\u0002", + "\u071d\u071e\u0007T\u0002\u0002\u071e\u071f\u0007[\u0002\u0002\u071f", + "\u0158\u0003\u0002\u0002\u0002\u0720\u0721\u0007Q\u0002\u0002\u0721", + "\u0722\u0007R\u0002\u0002\u0722\u0723\u0007V\u0002\u0002\u0723\u0724", + "\u0007K\u0002\u0002\u0724\u0725\u0007Q\u0002\u0002\u0725\u0726\u0007", + "P\u0002\u0002\u0726\u0727\u0007U\u0002\u0002\u0727\u015a\u0003\u0002", + "\u0002\u0002\u0728\u0729\u0007W\u0002\u0002\u0729\u072a\u0007P\u0002", + "\u0002\u072a\u072b\u0007U\u0002\u0002\u072b\u072c\u0007G\u0002\u0002", + "\u072c\u072d\u0007V\u0002\u0002\u072d\u015c\u0003\u0002\u0002\u0002", + "\u072e\u072f\u0007V\u0002\u0002\u072f\u0730\u0007D\u0002\u0002\u0730", + "\u0731\u0007N\u0002\u0002\u0731\u0732\u0007R\u0002\u0002\u0732\u0733", + "\u0007T\u0002\u0002\u0733\u0734\u0007Q\u0002\u0002\u0734\u0735\u0007", + "R\u0002\u0002\u0735\u0736\u0007G\u0002\u0002\u0736\u0737\u0007T\u0002", + "\u0002\u0737\u0738\u0007V\u0002\u0002\u0738\u0739\u0007K\u0002\u0002", + "\u0739\u073a\u0007G\u0002\u0002\u073a\u073b\u0007U\u0002\u0002\u073b", + "\u015e\u0003\u0002\u0002\u0002\u073c\u073d\u0007F\u0002\u0002\u073d", + "\u073e\u0007D\u0002\u0002\u073e\u073f\u0007R\u0002\u0002\u073f\u0740", + "\u0007T\u0002\u0002\u0740\u0741\u0007Q\u0002\u0002\u0741\u0742\u0007", + "R\u0002\u0002\u0742\u0743\u0007G\u0002\u0002\u0743\u0744\u0007T\u0002", + "\u0002\u0744\u0745\u0007V\u0002\u0002\u0745\u0746\u0007K\u0002\u0002", + "\u0746\u0747\u0007G\u0002\u0002\u0747\u0748\u0007U\u0002\u0002\u0748", + "\u0160\u0003\u0002\u0002\u0002\u0749\u074a\u0007D\u0002\u0002\u074a", + "\u074b\u0007W\u0002\u0002\u074b\u074c\u0007E\u0002\u0002\u074c\u074d", + "\u0007M\u0002\u0002\u074d\u074e\u0007G\u0002\u0002\u074e\u074f\u0007", + "V\u0002\u0002\u074f\u0750\u0007U\u0002\u0002\u0750\u0162\u0003\u0002", + "\u0002\u0002\u0751\u0752\u0007U\u0002\u0002\u0752\u0753\u0007M\u0002", + "\u0002\u0753\u0754\u0007G\u0002\u0002\u0754\u0755\u0007Y\u0002\u0002", + "\u0755\u0756\u0007G\u0002\u0002\u0756\u0757\u0007F\u0002\u0002\u0757", + "\u0164\u0003\u0002\u0002\u0002\u0758\u0759\u0007U\u0002\u0002\u0759", + "\u075a\u0007V\u0002\u0002\u075a\u075b\u0007Q\u0002\u0002\u075b\u075c", + "\u0007T\u0002\u0002\u075c\u075d\u0007G\u0002\u0002\u075d\u075e\u0007", + "F\u0002\u0002\u075e\u0166\u0003\u0002\u0002\u0002\u075f\u0760\u0007", + "F\u0002\u0002\u0760\u0761\u0007K\u0002\u0002\u0761\u0762\u0007T\u0002", + "\u0002\u0762\u0763\u0007G\u0002\u0002\u0763\u0764\u0007E\u0002\u0002", + "\u0764\u0765\u0007V\u0002\u0002\u0765\u0766\u0007Q\u0002\u0002\u0766", + "\u0767\u0007T\u0002\u0002\u0767\u0768\u0007K\u0002\u0002\u0768\u0769", + "\u0007G\u0002\u0002\u0769\u076a\u0007U\u0002\u0002\u076a\u0168\u0003", + "\u0002\u0002\u0002\u076b\u076c\u0007N\u0002\u0002\u076c\u076d\u0007", + "Q\u0002\u0002\u076d\u076e\u0007E\u0002\u0002\u076e\u076f\u0007C\u0002", + "\u0002\u076f\u0770\u0007V\u0002\u0002\u0770\u0771\u0007K\u0002\u0002", + "\u0771\u0772\u0007Q\u0002\u0002\u0772\u0773\u0007P\u0002\u0002\u0773", + "\u016a\u0003\u0002\u0002\u0002\u0774\u0775\u0007G\u0002\u0002\u0775", + "\u0776\u0007Z\u0002\u0002\u0776\u0777\u0007E\u0002\u0002\u0777\u0778", + "\u0007J\u0002\u0002\u0778\u0779\u0007C\u0002\u0002\u0779\u077a\u0007", + "P\u0002\u0002\u077a\u077b\u0007I\u0002\u0002\u077b\u077c\u0007G\u0002", + "\u0002\u077c\u016c\u0003\u0002\u0002\u0002\u077d\u077e\u0007C\u0002", + "\u0002\u077e\u077f\u0007T\u0002\u0002\u077f\u0780\u0007E\u0002\u0002", + "\u0780\u0781\u0007J\u0002\u0002\u0781\u0782\u0007K\u0002\u0002\u0782", + "\u0783\u0007X\u0002\u0002\u0783\u0784\u0007G\u0002\u0002\u0784\u016e", + "\u0003\u0002\u0002\u0002\u0785\u0786\u0007W\u0002\u0002\u0786\u0787", + "\u0007P\u0002\u0002\u0787\u0788\u0007C\u0002\u0002\u0788\u0789\u0007", + "T\u0002\u0002\u0789\u078a\u0007E\u0002\u0002\u078a\u078b\u0007J\u0002", + "\u0002\u078b\u078c\u0007K\u0002\u0002\u078c\u078d\u0007X\u0002\u0002", + "\u078d\u078e\u0007G\u0002\u0002\u078e\u0170\u0003\u0002\u0002\u0002", + "\u078f\u0790\u0007H\u0002\u0002\u0790\u0791\u0007K\u0002\u0002\u0791", + "\u0792\u0007N\u0002\u0002\u0792\u0793\u0007G\u0002\u0002\u0793\u0794", + "\u0007H\u0002\u0002\u0794\u0795\u0007Q\u0002\u0002\u0795\u0796\u0007", + "T\u0002\u0002\u0796\u0797\u0007O\u0002\u0002\u0797\u0798\u0007C\u0002", + "\u0002\u0798\u0799\u0007V\u0002\u0002\u0799\u0172\u0003\u0002\u0002", + "\u0002\u079a\u079b\u0007V\u0002\u0002\u079b\u079c\u0007Q\u0002\u0002", + "\u079c\u079d\u0007W\u0002\u0002\u079d\u079e\u0007E\u0002\u0002\u079e", + "\u079f\u0007J\u0002\u0002\u079f\u0174\u0003\u0002\u0002\u0002\u07a0", + "\u07a1\u0007E\u0002\u0002\u07a1\u07a2\u0007Q\u0002\u0002\u07a2\u07a3", + "\u0007O\u0002\u0002\u07a3\u07a4\u0007R\u0002\u0002\u07a4\u07a5\u0007", + "C\u0002\u0002\u07a5\u07a6\u0007E\u0002\u0002\u07a6\u07a7\u0007V\u0002", + "\u0002\u07a7\u0176\u0003\u0002\u0002\u0002\u07a8\u07a9\u0007E\u0002", + "\u0002\u07a9\u07aa\u0007Q\u0002\u0002\u07aa\u07ab\u0007P\u0002\u0002", + "\u07ab\u07ac\u0007E\u0002\u0002\u07ac\u07ad\u0007C\u0002\u0002\u07ad", + "\u07ae\u0007V\u0002\u0002\u07ae\u07af\u0007G\u0002\u0002\u07af\u07b0", + "\u0007P\u0002\u0002\u07b0\u07b1\u0007C\u0002\u0002\u07b1\u07b2\u0007", + "V\u0002\u0002\u07b2\u07b3\u0007G\u0002\u0002\u07b3\u0178\u0003\u0002", + "\u0002\u0002\u07b4\u07b5\u0007E\u0002\u0002\u07b5\u07b6\u0007J\u0002", + "\u0002\u07b6\u07b7\u0007C\u0002\u0002\u07b7\u07b8\u0007P\u0002\u0002", + "\u07b8\u07b9\u0007I\u0002\u0002\u07b9\u07ba\u0007G\u0002\u0002\u07ba", + "\u017a\u0003\u0002\u0002\u0002\u07bb\u07bc\u0007E\u0002\u0002\u07bc", + "\u07bd\u0007C\u0002\u0002\u07bd\u07be\u0007U\u0002\u0002\u07be\u07bf", + "\u0007E\u0002\u0002\u07bf\u07c0\u0007C\u0002\u0002\u07c0\u07c1\u0007", + "F\u0002\u0002\u07c1\u07c2\u0007G\u0002\u0002\u07c2\u017c\u0003\u0002", + "\u0002\u0002\u07c3\u07c4\u0007T\u0002\u0002\u07c4\u07c5\u0007G\u0002", + "\u0002\u07c5\u07c6\u0007U\u0002\u0002\u07c6\u07c7\u0007V\u0002\u0002", + "\u07c7\u07c8\u0007T\u0002\u0002\u07c8\u07c9\u0007K\u0002\u0002\u07c9", + "\u07ca\u0007E\u0002\u0002\u07ca\u07cb\u0007V\u0002\u0002\u07cb\u017e", + "\u0003\u0002\u0002\u0002\u07cc\u07cd\u0007E\u0002\u0002\u07cd\u07ce", + "\u0007N\u0002\u0002\u07ce\u07cf\u0007W\u0002\u0002\u07cf\u07d0\u0007", + "U\u0002\u0002\u07d0\u07d1\u0007V\u0002\u0002\u07d1\u07d2\u0007G\u0002", + "\u0002\u07d2\u07d3\u0007T\u0002\u0002\u07d3\u07d4\u0007G\u0002\u0002", + "\u07d4\u07d5\u0007F\u0002\u0002\u07d5\u0180\u0003\u0002\u0002\u0002", + "\u07d6\u07d7\u0007U\u0002\u0002\u07d7\u07d8\u0007Q\u0002\u0002\u07d8", + "\u07d9\u0007T\u0002\u0002\u07d9\u07da\u0007V\u0002\u0002\u07da\u07db", + "\u0007G\u0002\u0002\u07db\u07dc\u0007F\u0002\u0002\u07dc\u0182\u0003", + "\u0002\u0002\u0002\u07dd\u07de\u0007R\u0002\u0002\u07de\u07df\u0007", + "W\u0002\u0002\u07df\u07e0\u0007T\u0002\u0002\u07e0\u07e1\u0007I\u0002", + "\u0002\u07e1\u07e2\u0007G\u0002\u0002\u07e2\u0184\u0003\u0002\u0002", + "\u0002\u07e3\u07e4\u0007K\u0002\u0002\u07e4\u07e5\u0007P\u0002\u0002", + "\u07e5\u07e6\u0007R\u0002\u0002\u07e6\u07e7\u0007W\u0002\u0002\u07e7", + "\u07e8\u0007V\u0002\u0002\u07e8\u07e9\u0007H\u0002\u0002\u07e9\u07ea", + "\u0007Q\u0002\u0002\u07ea\u07eb\u0007T\u0002\u0002\u07eb\u07ec\u0007", + "O\u0002\u0002\u07ec\u07ed\u0007C\u0002\u0002\u07ed\u07ee\u0007V\u0002", + "\u0002\u07ee\u0186\u0003\u0002\u0002\u0002\u07ef\u07f0\u0007Q\u0002", + "\u0002\u07f0\u07f1\u0007W\u0002\u0002\u07f1\u07f2\u0007V\u0002\u0002", + "\u07f2\u07f3\u0007R\u0002\u0002\u07f3\u07f4\u0007W\u0002\u0002\u07f4", + "\u07f5\u0007V\u0002\u0002\u07f5\u07f6\u0007H\u0002\u0002\u07f6\u07f7", + "\u0007Q\u0002\u0002\u07f7\u07f8\u0007T\u0002\u0002\u07f8\u07f9\u0007", + "O\u0002\u0002\u07f9\u07fa\u0007C\u0002\u0002\u07fa\u07fb\u0007V\u0002", + "\u0002\u07fb\u0188\u0003\u0002\u0002\u0002\u07fc\u07fd\u0007F\u0002", + "\u0002\u07fd\u07fe\u0007C\u0002\u0002\u07fe\u07ff\u0007V\u0002\u0002", + "\u07ff\u0800\u0007C\u0002\u0002\u0800\u0801\u0007D\u0002\u0002\u0801", + "\u0802\u0007C\u0002\u0002\u0802\u0803\u0007U\u0002\u0002\u0803\u0804", + "\u0007G\u0002\u0002\u0804\u018a\u0003\u0002\u0002\u0002\u0805\u0806", + "\u0007F\u0002\u0002\u0806\u0807\u0007C\u0002\u0002\u0807\u0808\u0007", + "V\u0002\u0002\u0808\u0809\u0007C\u0002\u0002\u0809\u080a\u0007D\u0002", + "\u0002\u080a\u080b\u0007C\u0002\u0002\u080b\u080c\u0007U\u0002\u0002", + "\u080c\u080d\u0007G\u0002\u0002\u080d\u080e\u0007U\u0002\u0002\u080e", + "\u018c\u0003\u0002\u0002\u0002\u080f\u0810\u0007F\u0002\u0002\u0810", + "\u0811\u0007H\u0002\u0002\u0811\u0812\u0007U\u0002\u0002\u0812\u018e", + "\u0003\u0002\u0002\u0002\u0813\u0814\u0007V\u0002\u0002\u0814\u0815", + "\u0007T\u0002\u0002\u0815\u0816\u0007W\u0002\u0002\u0816\u0817\u0007", + "P\u0002\u0002\u0817\u0818\u0007E\u0002\u0002\u0818\u0819\u0007C\u0002", + "\u0002\u0819\u081a\u0007V\u0002\u0002\u081a\u081b\u0007G\u0002\u0002", + "\u081b\u0190\u0003\u0002\u0002\u0002\u081c\u081d\u0007C\u0002\u0002", + "\u081d\u081e\u0007P\u0002\u0002\u081e\u081f\u0007C\u0002\u0002\u081f", + "\u0820\u0007N\u0002\u0002\u0820\u0821\u0007[\u0002\u0002\u0821\u0822", + "\u0007\\\u0002\u0002\u0822\u0823\u0007G\u0002\u0002\u0823\u0192\u0003", + "\u0002\u0002\u0002\u0824\u0825\u0007E\u0002\u0002\u0825\u0826\u0007", + "Q\u0002\u0002\u0826\u0827\u0007O\u0002\u0002\u0827\u0828\u0007R\u0002", + "\u0002\u0828\u0829\u0007W\u0002\u0002\u0829\u082a\u0007V\u0002\u0002", + "\u082a\u082b\u0007G\u0002\u0002\u082b\u0194\u0003\u0002\u0002\u0002", + "\u082c\u082d\u0007N\u0002\u0002\u082d\u082e\u0007K\u0002\u0002\u082e", + "\u082f\u0007U\u0002\u0002\u082f\u0830\u0007V\u0002\u0002\u0830\u0196", + "\u0003\u0002\u0002\u0002\u0831\u0832\u0007U\u0002\u0002\u0832\u0833", + "\u0007V\u0002\u0002\u0833\u0834\u0007C\u0002\u0002\u0834\u0835\u0007", + "V\u0002\u0002\u0835\u0836\u0007K\u0002\u0002\u0836\u0837\u0007U\u0002", + "\u0002\u0837\u0838\u0007V\u0002\u0002\u0838\u0839\u0007K\u0002\u0002", + "\u0839\u083a\u0007E\u0002\u0002\u083a\u083b\u0007U\u0002\u0002\u083b", + "\u0198\u0003\u0002\u0002\u0002\u083c\u083d\u0007R\u0002\u0002\u083d", + "\u083e\u0007C\u0002\u0002\u083e\u083f\u0007T\u0002\u0002\u083f\u0840", + "\u0007V\u0002\u0002\u0840\u0841\u0007K\u0002\u0002\u0841\u0842\u0007", + "V\u0002\u0002\u0842\u0843\u0007K\u0002\u0002\u0843\u0844\u0007Q\u0002", + "\u0002\u0844\u0845\u0007P\u0002\u0002\u0845\u0846\u0007G\u0002\u0002", + "\u0846\u0847\u0007F\u0002\u0002\u0847\u019a\u0003\u0002\u0002\u0002", + "\u0848\u0849\u0007G\u0002\u0002\u0849\u084a\u0007Z\u0002\u0002\u084a", + "\u084b\u0007V\u0002\u0002\u084b\u084c\u0007G\u0002\u0002\u084c\u084d", + "\u0007T\u0002\u0002\u084d\u084e\u0007P\u0002\u0002\u084e\u084f\u0007", + "C\u0002\u0002\u084f\u0850\u0007N\u0002\u0002\u0850\u019c\u0003\u0002", + "\u0002\u0002\u0851\u0852\u0007F\u0002\u0002\u0852\u0853\u0007G\u0002", + "\u0002\u0853\u0854\u0007H\u0002\u0002\u0854\u0855\u0007K\u0002\u0002", + "\u0855\u0856\u0007P\u0002\u0002\u0856\u0857\u0007G\u0002\u0002\u0857", + "\u0858\u0007F\u0002\u0002\u0858\u019e\u0003\u0002\u0002\u0002\u0859", + "\u085a\u0007T\u0002\u0002\u085a\u085b\u0007G\u0002\u0002\u085b\u085c", + "\u0007X\u0002\u0002\u085c\u085d\u0007Q\u0002\u0002\u085d\u085e\u0007", + "M\u0002\u0002\u085e\u085f\u0007G\u0002\u0002\u085f\u01a0\u0003\u0002", + "\u0002\u0002\u0860\u0861\u0007I\u0002\u0002\u0861\u0862\u0007T\u0002", + "\u0002\u0862\u0863\u0007C\u0002\u0002\u0863\u0864\u0007P\u0002\u0002", + "\u0864\u0865\u0007V\u0002\u0002\u0865\u01a2\u0003\u0002\u0002\u0002", + "\u0866\u0867\u0007N\u0002\u0002\u0867\u0868\u0007Q\u0002\u0002\u0868", + "\u0869\u0007E\u0002\u0002\u0869\u086a\u0007M\u0002\u0002\u086a\u01a4", + "\u0003\u0002\u0002\u0002\u086b\u086c\u0007W\u0002\u0002\u086c\u086d", + "\u0007P\u0002\u0002\u086d\u086e\u0007N\u0002\u0002\u086e\u086f\u0007", + "Q\u0002\u0002\u086f\u0870\u0007E\u0002\u0002\u0870\u0871\u0007M\u0002", + "\u0002\u0871\u01a6\u0003\u0002\u0002\u0002\u0872\u0873\u0007O\u0002", + "\u0002\u0873\u0874\u0007U\u0002\u0002\u0874\u0875\u0007E\u0002\u0002", + "\u0875\u0876\u0007M\u0002\u0002\u0876\u01a8\u0003\u0002\u0002\u0002", + "\u0877\u0878\u0007T\u0002\u0002\u0878\u0879\u0007G\u0002\u0002\u0879", + "\u087a\u0007R\u0002\u0002\u087a\u087b\u0007C\u0002\u0002\u087b\u087c", + "\u0007K\u0002\u0002\u087c\u087d\u0007T\u0002\u0002\u087d\u01aa\u0003", + "\u0002\u0002\u0002\u087e\u087f\u0007T\u0002\u0002\u087f\u0880\u0007", + "G\u0002\u0002\u0880\u0881\u0007E\u0002\u0002\u0881\u0882\u0007Q\u0002", + "\u0002\u0882\u0883\u0007X\u0002\u0002\u0883\u0884\u0007G\u0002\u0002", + "\u0884\u0885\u0007T\u0002\u0002\u0885\u01ac\u0003\u0002\u0002\u0002", + "\u0886\u0887\u0007G\u0002\u0002\u0887\u0888\u0007Z\u0002\u0002\u0888", + "\u0889\u0007R\u0002\u0002\u0889\u088a\u0007Q\u0002\u0002\u088a\u088b", + "\u0007T\u0002\u0002\u088b\u088c\u0007V\u0002\u0002\u088c\u01ae\u0003", + "\u0002\u0002\u0002\u088d\u088e\u0007K\u0002\u0002\u088e\u088f\u0007", + "O\u0002\u0002\u088f\u0890\u0007R\u0002\u0002\u0890\u0891\u0007Q\u0002", + "\u0002\u0891\u0892\u0007T\u0002\u0002\u0892\u0893\u0007V\u0002\u0002", + "\u0893\u01b0\u0003\u0002\u0002\u0002\u0894\u0895\u0007N\u0002\u0002", + "\u0895\u0896\u0007Q\u0002\u0002\u0896\u0897\u0007C\u0002\u0002\u0897", + "\u0898\u0007F\u0002\u0002\u0898\u01b2\u0003\u0002\u0002\u0002\u0899", + "\u089a\u0007T\u0002\u0002\u089a\u089b\u0007Q\u0002\u0002\u089b\u089c", + "\u0007N\u0002\u0002\u089c\u089d\u0007G\u0002\u0002\u089d\u01b4\u0003", + "\u0002\u0002\u0002\u089e\u089f\u0007T\u0002\u0002\u089f\u08a0\u0007", + "Q\u0002\u0002\u08a0\u08a1\u0007N\u0002\u0002\u08a1\u08a2\u0007G\u0002", + "\u0002\u08a2\u08a3\u0007U\u0002\u0002\u08a3\u01b6\u0003\u0002\u0002", + "\u0002\u08a4\u08a5\u0007E\u0002\u0002\u08a5\u08a6\u0007Q\u0002\u0002", + "\u08a6\u08a7\u0007O\u0002\u0002\u08a7\u08a8\u0007R\u0002\u0002\u08a8", + "\u08a9\u0007C\u0002\u0002\u08a9\u08aa\u0007E\u0002\u0002\u08aa\u08ab", + "\u0007V\u0002\u0002\u08ab\u08ac\u0007K\u0002\u0002\u08ac\u08ad\u0007", + "Q\u0002\u0002\u08ad\u08ae\u0007P\u0002\u0002\u08ae\u08af\u0007U\u0002", + "\u0002\u08af\u01b8\u0003\u0002\u0002\u0002\u08b0\u08b1\u0007R\u0002", + "\u0002\u08b1\u08b2\u0007T\u0002\u0002\u08b2\u08b3\u0007K\u0002\u0002", + "\u08b3\u08b4\u0007P\u0002\u0002\u08b4\u08b5\u0007E\u0002\u0002\u08b5", + "\u08b6\u0007K\u0002\u0002\u08b6\u08b7\u0007R\u0002\u0002\u08b7\u08b8", + "\u0007C\u0002\u0002\u08b8\u08b9\u0007N\u0002\u0002\u08b9\u08ba\u0007", + "U\u0002\u0002\u08ba\u01ba\u0003\u0002\u0002\u0002\u08bb\u08bc\u0007", + "V\u0002\u0002\u08bc\u08bd\u0007T\u0002\u0002\u08bd\u08be\u0007C\u0002", + "\u0002\u08be\u08bf\u0007P\u0002\u0002\u08bf\u08c0\u0007U\u0002\u0002", + "\u08c0\u08c1\u0007C\u0002\u0002\u08c1\u08c2\u0007E\u0002\u0002\u08c2", + "\u08c3\u0007V\u0002\u0002\u08c3\u08c4\u0007K\u0002\u0002\u08c4\u08c5", + "\u0007Q\u0002\u0002\u08c5\u08c6\u0007P\u0002\u0002\u08c6\u08c7\u0007", + "U\u0002\u0002\u08c7\u01bc\u0003\u0002\u0002\u0002\u08c8\u08c9\u0007", + "K\u0002\u0002\u08c9\u08ca\u0007P\u0002\u0002\u08ca\u08cb\u0007F\u0002", + "\u0002\u08cb\u08cc\u0007G\u0002\u0002\u08cc\u08cd\u0007Z\u0002\u0002", + "\u08cd\u01be\u0003\u0002\u0002\u0002\u08ce\u08cf\u0007K\u0002\u0002", + "\u08cf\u08d0\u0007P\u0002\u0002\u08d0\u08d1\u0007F\u0002\u0002\u08d1", + "\u08d2\u0007G\u0002\u0002\u08d2\u08d3\u0007Z\u0002\u0002\u08d3\u08d4", + "\u0007G\u0002\u0002\u08d4\u08d5\u0007U\u0002\u0002\u08d5\u01c0\u0003", + "\u0002\u0002\u0002\u08d6\u08d7\u0007N\u0002\u0002\u08d7\u08d8\u0007", + "Q\u0002\u0002\u08d8\u08d9\u0007E\u0002\u0002\u08d9\u08da\u0007M\u0002", + "\u0002\u08da\u08db\u0007U\u0002\u0002\u08db\u01c2\u0003\u0002\u0002", + "\u0002\u08dc\u08dd\u0007Q\u0002\u0002\u08dd\u08de\u0007R\u0002\u0002", + "\u08de\u08df\u0007V\u0002\u0002\u08df\u08e0\u0007K\u0002\u0002\u08e0", + "\u08e1\u0007Q\u0002\u0002\u08e1\u08e2\u0007P\u0002\u0002\u08e2\u01c4", + "\u0003\u0002\u0002\u0002\u08e3\u08e4\u0007C\u0002\u0002\u08e4\u08e5", + "\u0007P\u0002\u0002\u08e5\u08e6\u0007V\u0002\u0002\u08e6\u08e7\u0007", + "K\u0002\u0002\u08e7\u01c6\u0003\u0002\u0002\u0002\u08e8\u08e9\u0007", + "N\u0002\u0002\u08e9\u08ea\u0007Q\u0002\u0002\u08ea\u08eb\u0007E\u0002", + "\u0002\u08eb\u08ec\u0007C\u0002\u0002\u08ec\u08ed\u0007N\u0002\u0002", + "\u08ed\u01c8\u0003\u0002\u0002\u0002\u08ee\u08ef\u0007K\u0002\u0002", + "\u08ef\u08f0\u0007P\u0002\u0002\u08f0\u08f1\u0007R\u0002\u0002\u08f1", + "\u08f2\u0007C\u0002\u0002\u08f2\u08f3\u0007V\u0002\u0002\u08f3\u08f4", + "\u0007J\u0002\u0002\u08f4\u01ca\u0003\u0002\u0002\u0002\u08f5\u08f6", + "\u0007Y\u0002\u0002\u08f6\u08f7\u0007C\u0002\u0002\u08f7\u08f8\u0007", + "V\u0002\u0002\u08f8\u08f9\u0007G\u0002\u0002\u08f9\u08fa\u0007T\u0002", + "\u0002\u08fa\u08fb\u0007O\u0002\u0002\u08fb\u08fc\u0007C\u0002\u0002", + "\u08fc\u08fd\u0007T\u0002\u0002\u08fd\u08fe\u0007M\u0002\u0002\u08fe", + "\u01cc\u0003\u0002\u0002\u0002\u08ff\u0900\u0007W\u0002\u0002\u0900", + "\u0901\u0007P\u0002\u0002\u0901\u0902\u0007P\u0002\u0002\u0902\u0903", + "\u0007G\u0002\u0002\u0903\u0904\u0007U\u0002\u0002\u0904\u0905\u0007", + "V\u0002\u0002\u0905\u01ce\u0003\u0002\u0002\u0002\u0906\u0907\u0007", + "O\u0002\u0002\u0907\u0908\u0007C\u0002\u0002\u0908\u0909\u0007V\u0002", + "\u0002\u0909\u090a\u0007E\u0002\u0002\u090a\u090b\u0007J\u0002\u0002", + "\u090b\u090c\u0007a\u0002\u0002\u090c\u090d\u0007T\u0002\u0002\u090d", + "\u090e\u0007G\u0002\u0002\u090e\u090f\u0007E\u0002\u0002\u090f\u0910", + "\u0007Q\u0002\u0002\u0910\u0911\u0007I\u0002\u0002\u0911\u0912\u0007", + "P\u0002\u0002\u0912\u0913\u0007K\u0002\u0002\u0913\u0914\u0007\\\u0002", + "\u0002\u0914\u0915\u0007G\u0002\u0002\u0915\u01d0\u0003\u0002\u0002", + "\u0002\u0916\u0917\u0007O\u0002\u0002\u0917\u0918\u0007G\u0002\u0002", + "\u0918\u0919\u0007C\u0002\u0002\u0919\u091a\u0007U\u0002\u0002\u091a", + "\u091b\u0007W\u0002\u0002\u091b\u091c\u0007T\u0002\u0002\u091c\u091d", + "\u0007G\u0002\u0002\u091d\u091e\u0007U\u0002\u0002\u091e\u01d2\u0003", + "\u0002\u0002\u0002\u091f\u0920\u0007Q\u0002\u0002\u0920\u0921\u0007", + "P\u0002\u0002\u0921\u0922\u0007G\u0002\u0002\u0922\u01d4\u0003\u0002", + "\u0002\u0002\u0923\u0924\u0007R\u0002\u0002\u0924\u0925\u0007G\u0002", + "\u0002\u0925\u0926\u0007T\u0002\u0002\u0926\u01d6\u0003\u0002\u0002", + "\u0002\u0927\u0928\u0007O\u0002\u0002\u0928\u0929\u0007C\u0002\u0002", + "\u0929\u092a\u0007V\u0002\u0002\u092a\u092b\u0007E\u0002\u0002\u092b", + "\u092c\u0007J\u0002\u0002\u092c\u01d8\u0003\u0002\u0002\u0002\u092d", + "\u092e\u0007U\u0002\u0002\u092e\u092f\u0007M\u0002\u0002\u092f\u0930", + "\u0007K\u0002\u0002\u0930\u0931\u0007R\u0002\u0002\u0931\u0932\u0007", + "3\u0002\u0002\u0932\u01da\u0003\u0002\u0002\u0002\u0933\u0934\u0007", + "P\u0002\u0002\u0934\u0935\u0007G\u0002\u0002\u0935\u0936\u0007Z\u0002", + "\u0002\u0936\u0937\u0007V\u0002\u0002\u0937\u01dc\u0003\u0002\u0002", + "\u0002\u0938\u0939\u0007R\u0002\u0002\u0939\u093a\u0007C\u0002\u0002", + "\u093a\u093b\u0007U\u0002\u0002\u093b\u093c\u0007V\u0002\u0002\u093c", + "\u01de\u0003\u0002\u0002\u0002\u093d\u093e\u0007R\u0002\u0002\u093e", + "\u093f\u0007C\u0002\u0002\u093f\u0940\u0007V\u0002\u0002\u0940\u0941", + "\u0007V\u0002\u0002\u0941\u0942\u0007G\u0002\u0002\u0942\u0943\u0007", + "T\u0002\u0002\u0943\u0944\u0007P\u0002\u0002\u0944\u01e0\u0003\u0002", + "\u0002\u0002\u0945\u0946\u0007Y\u0002\u0002\u0946\u0947\u0007K\u0002", + "\u0002\u0947\u0948\u0007V\u0002\u0002\u0948\u0949\u0007J\u0002\u0002", + "\u0949\u094a\u0007K\u0002\u0002\u094a\u094b\u0007P\u0002\u0002\u094b", + "\u01e2\u0003\u0002\u0002\u0002\u094c\u094d\u0007F\u0002\u0002\u094d", + "\u094e\u0007G\u0002\u0002\u094e\u094f\u0007H\u0002\u0002\u094f\u0950", + "\u0007K\u0002\u0002\u0950\u0951\u0007P\u0002\u0002\u0951\u0952\u0007", + "G\u0002\u0002\u0952\u01e4\u0003\u0002\u0002\u0002\u0953\u0954\u0007", + "D\u0002\u0002\u0954\u0955\u0007K\u0002\u0002\u0955\u0956\u0007I\u0002", + "\u0002\u0956\u0957\u0007K\u0002\u0002\u0957\u0958\u0007P\u0002\u0002", + "\u0958\u0959\u0007V\u0002\u0002\u0959\u095a\u0007a\u0002\u0002\u095a", + "\u095b\u0007N\u0002\u0002\u095b\u095c\u0007K\u0002\u0002\u095c\u095d", + "\u0007V\u0002\u0002\u095d\u095e\u0007G\u0002\u0002\u095e\u095f\u0007", + "T\u0002\u0002\u095f\u0960\u0007C\u0002\u0002\u0960\u0961\u0007N\u0002", + "\u0002\u0961\u01e6\u0003\u0002\u0002\u0002\u0962\u0963\u0007U\u0002", + "\u0002\u0963\u0964\u0007O\u0002\u0002\u0964\u0965\u0007C\u0002\u0002", + "\u0965\u0966\u0007N\u0002\u0002\u0966\u0967\u0007N\u0002\u0002\u0967", + "\u0968\u0007K\u0002\u0002\u0968\u0969\u0007P\u0002\u0002\u0969\u096a", + "\u0007V\u0002\u0002\u096a\u096b\u0007a\u0002\u0002\u096b\u096c\u0007", + "N\u0002\u0002\u096c\u096d\u0007K\u0002\u0002\u096d\u096e\u0007V\u0002", + "\u0002\u096e\u096f\u0007G\u0002\u0002\u096f\u0970\u0007T\u0002\u0002", + "\u0970\u0971\u0007C\u0002\u0002\u0971\u0972\u0007N\u0002\u0002\u0972", + "\u01e8\u0003\u0002\u0002\u0002\u0973\u0974\u0007V\u0002\u0002\u0974", + "\u0975\u0007K\u0002\u0002\u0975\u0976\u0007P\u0002\u0002\u0976\u0977", + "\u0007[\u0002\u0002\u0977\u0978\u0007K\u0002\u0002\u0978\u0979\u0007", + "P\u0002\u0002\u0979\u097a\u0007V\u0002\u0002\u097a\u097b\u0007a\u0002", + "\u0002\u097b\u097c\u0007N\u0002\u0002\u097c\u097d\u0007K\u0002\u0002", + "\u097d\u097e\u0007V\u0002\u0002\u097e\u097f\u0007G\u0002\u0002\u097f", + "\u0980\u0007T\u0002\u0002\u0980\u0981\u0007C\u0002\u0002\u0981\u0982", + "\u0007N\u0002\u0002\u0982\u01ea\u0003\u0002\u0002\u0002\u0983\u0984", + "\u0007K\u0002\u0002\u0984\u0985\u0007P\u0002\u0002\u0985\u0986\u0007", + "V\u0002\u0002\u0986\u0987\u0007G\u0002\u0002\u0987\u0988\u0007I\u0002", + "\u0002\u0988\u0989\u0007G\u0002\u0002\u0989\u098a\u0007T\u0002\u0002", + "\u098a\u098b\u0007a\u0002\u0002\u098b\u098c\u0007X\u0002\u0002\u098c", + "\u098d\u0007C\u0002\u0002\u098d\u098e\u0007N\u0002\u0002\u098e\u098f", + "\u0007W\u0002\u0002\u098f\u0990\u0007G\u0002\u0002\u0990\u01ec\u0003", + "\u0002\u0002\u0002\u0991\u0992\u0007F\u0002\u0002\u0992\u0993\u0007", + "G\u0002\u0002\u0993\u0994\u0007E\u0002\u0002\u0994\u0995\u0007K\u0002", + "\u0002\u0995\u0996\u0007O\u0002\u0002\u0996\u0997\u0007C\u0002\u0002", + "\u0997\u0998\u0007N\u0002\u0002\u0998\u0999\u0007a\u0002\u0002\u0999", + "\u099a\u0007X\u0002\u0002\u099a\u099b\u0007C\u0002\u0002\u099b\u099c", + "\u0007N\u0002\u0002\u099c\u099d\u0007W\u0002\u0002\u099d\u099e\u0007", + "G\u0002\u0002\u099e\u01ee\u0003\u0002\u0002\u0002\u099f\u09a0\u0007", + "F\u0002\u0002\u09a0\u09a1\u0007Q\u0002\u0002\u09a1\u09a2\u0007W\u0002", + "\u0002\u09a2\u09a3\u0007D\u0002\u0002\u09a3\u09a4\u0007N\u0002\u0002", + "\u09a4\u09a5\u0007G\u0002\u0002\u09a5\u09a6\u0007a\u0002\u0002\u09a6", + "\u09a7\u0007N\u0002\u0002\u09a7\u09a8\u0007K\u0002\u0002\u09a8\u09a9", + "\u0007V\u0002\u0002\u09a9\u09aa\u0007G\u0002\u0002\u09aa\u09ab\u0007", + "T\u0002\u0002\u09ab\u09ac\u0007C\u0002\u0002\u09ac\u09ad\u0007N\u0002", + "\u0002\u09ad\u01f0\u0003\u0002\u0002\u0002\u09ae\u09af\u0007D\u0002", + "\u0002\u09af\u09b0\u0007K\u0002\u0002\u09b0\u09b1\u0007I\u0002\u0002", + "\u09b1\u09b2\u0007F\u0002\u0002\u09b2\u09b3\u0007G\u0002\u0002\u09b3", + "\u09b4\u0007E\u0002\u0002\u09b4\u09b5\u0007K\u0002\u0002\u09b5\u09b6", + "\u0007O\u0002\u0002\u09b6\u09b7\u0007C\u0002\u0002\u09b7\u09b8\u0007", + "N\u0002\u0002\u09b8\u09b9\u0007a\u0002\u0002\u09b9\u09ba\u0007N\u0002", + "\u0002\u09ba\u09bb\u0007K\u0002\u0002\u09bb\u09bc\u0007V\u0002\u0002", + "\u09bc\u09bd\u0007G\u0002\u0002\u09bd\u09be\u0007T\u0002\u0002\u09be", + "\u09bf\u0007C\u0002\u0002\u09bf\u09c0\u0007N\u0002\u0002\u09c0\u01f2", + "\u0003\u0002\u0002\u0002\u09c1\u09c2\u0007K\u0002\u0002\u09c2\u09c3", + "\u0007F\u0002\u0002\u09c3\u09c4\u0007G\u0002\u0002\u09c4\u09c5\u0007", + "P\u0002\u0002\u09c5\u09c6\u0007V\u0002\u0002\u09c6\u09c7\u0007K\u0002", + "\u0002\u09c7\u09c8\u0007H\u0002\u0002\u09c8\u09c9\u0007K\u0002\u0002", + "\u09c9\u09ca\u0007G\u0002\u0002\u09ca\u09cb\u0007T\u0002\u0002\u09cb", + "\u01f4\u0003\u0002\u0002\u0002\u09cc\u09cd\u0007D\u0002\u0002\u09cd", + "\u09ce\u0007C\u0002\u0002\u09ce\u09cf\u0007E\u0002\u0002\u09cf\u09d0", + "\u0007M\u0002\u0002\u09d0\u09d1\u0007S\u0002\u0002\u09d1\u09d2\u0007", + "W\u0002\u0002\u09d2\u09d3\u0007Q\u0002\u0002\u09d3\u09d4\u0007V\u0002", + "\u0002\u09d4\u09d5\u0007G\u0002\u0002\u09d5\u09d6\u0007F\u0002\u0002", + "\u09d6\u09d7\u0007a\u0002\u0002\u09d7\u09d8\u0007K\u0002\u0002\u09d8", + "\u09d9\u0007F\u0002\u0002\u09d9\u09da\u0007G\u0002\u0002\u09da\u09db", + "\u0007P\u0002\u0002\u09db\u09dc\u0007V\u0002\u0002\u09dc\u09dd\u0007", + "K\u0002\u0002\u09dd\u09de\u0007H\u0002\u0002\u09de\u09df\u0007K\u0002", + "\u0002\u09df\u09e0\u0007G\u0002\u0002\u09e0\u09e1\u0007T\u0002\u0002", + "\u09e1\u01f6\u0003\u0002\u0002\u0002\u09e2\u09e3\u0007U\u0002\u0002", + "\u09e3\u09e4\u0007K\u0002\u0002\u09e4\u09e5\u0007O\u0002\u0002\u09e5", + "\u09e6\u0007R\u0002\u0002\u09e6\u09e7\u0007N\u0002\u0002\u09e7\u09e8", + "\u0007G\u0002\u0002\u09e8\u09e9\u0007a\u0002\u0002\u09e9\u09ea\u0007", + "E\u0002\u0002\u09ea\u09eb\u0007Q\u0002\u0002\u09eb\u09ec\u0007O\u0002", + "\u0002\u09ec\u09ed\u0007O\u0002\u0002\u09ed\u09ee\u0007G\u0002\u0002", + "\u09ee\u09ef\u0007P\u0002\u0002\u09ef\u09f0\u0007V\u0002\u0002\u09f0", + "\u01f8\u0003\u0002\u0002\u0002\u09f1\u09f2\u0007D\u0002\u0002\u09f2", + "\u09f3\u0007T\u0002\u0002\u09f3\u09f4\u0007C\u0002\u0002\u09f4\u09f5", + "\u0007E\u0002\u0002\u09f5\u09f6\u0007M\u0002\u0002\u09f6\u09f7\u0007", + "G\u0002\u0002\u09f7\u09f8\u0007V\u0002\u0002\u09f8\u09f9\u0007G\u0002", + "\u0002\u09f9\u09fa\u0007F\u0002\u0002\u09fa\u09fb\u0007a\u0002\u0002", + "\u09fb\u09fc\u0007G\u0002\u0002\u09fc\u09fd\u0007O\u0002\u0002\u09fd", + "\u09fe\u0007R\u0002\u0002\u09fe\u09ff\u0007V\u0002\u0002\u09ff\u0a00", + "\u0007[\u0002\u0002\u0a00\u0a01\u0007a\u0002\u0002\u0a01\u0a02\u0007", + "E\u0002\u0002\u0a02\u0a03\u0007Q\u0002\u0002\u0a03\u0a04\u0007O\u0002", + "\u0002\u0a04\u0a05\u0007O\u0002\u0002\u0a05\u0a06\u0007G\u0002\u0002", + "\u0a06\u0a07\u0007P\u0002\u0002\u0a07\u0a08\u0007V\u0002\u0002\u0a08", + "\u01fa\u0003\u0002\u0002\u0002\u0a09\u0a0a\u0007D\u0002\u0002\u0a0a", + "\u0a0b\u0007T\u0002\u0002\u0a0b\u0a0c\u0007C\u0002\u0002\u0a0c\u0a0d", + "\u0007E\u0002\u0002\u0a0d\u0a0e\u0007M\u0002\u0002\u0a0e\u0a0f\u0007", + "G\u0002\u0002\u0a0f\u0a10\u0007V\u0002\u0002\u0a10\u0a11\u0007G\u0002", + "\u0002\u0a11\u0a12\u0007F\u0002\u0002\u0a12\u0a13\u0007a\u0002\u0002", + "\u0a13\u0a14\u0007E\u0002\u0002\u0a14\u0a15\u0007Q\u0002\u0002\u0a15", + "\u0a16\u0007O\u0002\u0002\u0a16\u0a17\u0007O\u0002\u0002\u0a17\u0a18", + "\u0007G\u0002\u0002\u0a18\u0a19\u0007P\u0002\u0002\u0a19\u0a1a\u0007", + "V\u0002\u0002\u0a1a\u01fc\u0003\u0002\u0002\u0002\u0a1b\u0a1c\u0007", + "Y\u0002\u0002\u0a1c\u0a1d\u0007U\u0002\u0002\u0a1d\u01fe\u0003\u0002", + "\u0002\u0002\u0a1e\u0a1f\u0007W\u0002\u0002\u0a1f\u0a20\u0007P\u0002", + "\u0002\u0a20\u0a21\u0007T\u0002\u0002\u0a21\u0a22\u0007G\u0002\u0002", + "\u0a22\u0a23\u0007E\u0002\u0002\u0a23\u0a24\u0007Q\u0002\u0002\u0a24", + "\u0a25\u0007I\u0002\u0002\u0a25\u0a26\u0007P\u0002\u0002\u0a26\u0a27", + "\u0007K\u0002\u0002\u0a27\u0a28\u0007\\\u0002\u0002\u0a28\u0a29\u0007", + "G\u0002\u0002\u0a29\u0a2a\u0007F\u0002\u0002\u0a2a\u0200\u0003\u0002", + "\u0002\u0002\u0a2b\u0a2d\u0007b\u0002\u0002\u0a2c\u0a2e\n\u0004\u0002", + "\u0002\u0a2d\u0a2c\u0003\u0002\u0002\u0002\u0a2e\u0a2f\u0003\u0002\u0002", + "\u0002\u0a2f\u0a2d\u0003\u0002\u0002\u0002\u0a2f\u0a30\u0003\u0002\u0002", + "\u0002\u0a30\u0a31\u0003\u0002\u0002\u0002\u0a31\u0a32\u0007b\u0002", + "\u0002\u0a32\u0202\u0003\u0002\u0002\u0002\u0a33\u0a35\u0007$\u0002", + "\u0002\u0a34\u0a36\n\u0005\u0002\u0002\u0a35\u0a34\u0003\u0002\u0002", + "\u0002\u0a36\u0a37\u0003\u0002\u0002\u0002\u0a37\u0a35\u0003\u0002\u0002", + "\u0002\u0a37\u0a38\u0003\u0002\u0002\u0002\u0a38\u0a39\u0003\u0002\u0002", + "\u0002\u0a39\u0a3a\u0007$\u0002\u0002\u0a3a\u0204\u0003\u0002\u0002", + "\u0002\u0a3b\u0a3c\u00070\u0002\u0002\u0a3c\u0a3d\u0005\u0281\u0141", + "\u0002\u0a3d\u0206\u0003\u0002\u0002\u0002\u0a3e\u0a3f\u0005\u0281\u0141", + "\u0002\u0a3f\u0208\u0003\u0002\u0002\u0002\u0a40\u0a41\u0007U\u0002", + "\u0002\u0a41\u0a42\u0007[\u0002\u0002\u0a42\u0a43\u0007U\u0002\u0002", + "\u0a43\u0a44\u0007V\u0002\u0002\u0a44\u0a45\u0007G\u0002\u0002\u0a45", + "\u0a46\u0007O\u0002\u0002\u0a46\u020a\u0003\u0002\u0002\u0002\u0a47", + "\u0a48\u0007U\u0002\u0002\u0a48\u0a49\u0007V\u0002\u0002\u0a49\u0a4a", + "\u0007T\u0002\u0002\u0a4a\u0a4b\u0007K\u0002\u0002\u0a4b\u0a4c\u0007", + "P\u0002\u0002\u0a4c\u0a4d\u0007I\u0002\u0002\u0a4d\u020c\u0003\u0002", + "\u0002\u0002\u0a4e\u0a4f\u0007C\u0002\u0002\u0a4f\u0a50\u0007T\u0002", + "\u0002\u0a50\u0a51\u0007T\u0002\u0002\u0a51\u0a52\u0007C\u0002\u0002", + "\u0a52\u0a53\u0007[\u0002\u0002\u0a53\u020e\u0003\u0002\u0002\u0002", + "\u0a54\u0a55\u0007O\u0002\u0002\u0a55\u0a56\u0007C\u0002\u0002\u0a56", + "\u0a57\u0007R\u0002\u0002\u0a57\u0210\u0003\u0002\u0002\u0002\u0a58", + "\u0a59\u0007E\u0002\u0002\u0a59\u0a5a\u0007J\u0002\u0002\u0a5a\u0a5b", + "\u0007C\u0002\u0002\u0a5b\u0a5c\u0007T\u0002\u0002\u0a5c\u0212\u0003", + "\u0002\u0002\u0002\u0a5d\u0a5e\u0007X\u0002\u0002\u0a5e\u0a5f\u0007", + "C\u0002\u0002\u0a5f\u0a60\u0007T\u0002\u0002\u0a60\u0a61\u0007E\u0002", + "\u0002\u0a61\u0a62\u0007J\u0002\u0002\u0a62\u0a63\u0007C\u0002\u0002", + "\u0a63\u0a64\u0007T\u0002\u0002\u0a64\u0214\u0003\u0002\u0002\u0002", + "\u0a65\u0a66\u0007D\u0002\u0002\u0a66\u0a67\u0007K\u0002\u0002\u0a67", + "\u0a68\u0007P\u0002\u0002\u0a68\u0a69\u0007C\u0002\u0002\u0a69\u0a6a", + "\u0007T\u0002\u0002\u0a6a\u0a6b\u0007[\u0002\u0002\u0a6b\u0216\u0003", + "\u0002\u0002\u0002\u0a6c\u0a6d\u0007X\u0002\u0002\u0a6d\u0a6e\u0007", + "C\u0002\u0002\u0a6e\u0a6f\u0007T\u0002\u0002\u0a6f\u0a70\u0007D\u0002", + "\u0002\u0a70\u0a71\u0007K\u0002\u0002\u0a71\u0a72\u0007P\u0002\u0002", + "\u0a72\u0a73\u0007C\u0002\u0002\u0a73\u0a74\u0007T\u0002\u0002\u0a74", + "\u0a75\u0007[\u0002\u0002\u0a75\u0218\u0003\u0002\u0002\u0002\u0a76", + "\u0a77\u0007D\u0002\u0002\u0a77\u0a78\u0007[\u0002\u0002\u0a78\u0a79", + "\u0007V\u0002\u0002\u0a79\u0a7a\u0007G\u0002\u0002\u0a7a\u0a7b\u0007", + "U\u0002\u0002\u0a7b\u021a\u0003\u0002\u0002\u0002\u0a7c\u0a7d\u0007", + "F\u0002\u0002\u0a7d\u0a7e\u0007G\u0002\u0002\u0a7e\u0a7f\u0007E\u0002", + "\u0002\u0a7f\u0a80\u0007K\u0002\u0002\u0a80\u0a81\u0007O\u0002\u0002", + "\u0a81\u0a82\u0007C\u0002\u0002\u0a82\u0a83\u0007N\u0002\u0002\u0a83", + "\u021c\u0003\u0002\u0002\u0002\u0a84\u0a85\u0007V\u0002\u0002\u0a85", + "\u0a86\u0007K\u0002\u0002\u0a86\u0a87\u0007P\u0002\u0002\u0a87\u0a88", + "\u0007[\u0002\u0002\u0a88\u0a89\u0007K\u0002\u0002\u0a89\u0a8a\u0007", + "P\u0002\u0002\u0a8a\u0a8b\u0007V\u0002\u0002\u0a8b\u021e\u0003\u0002", + "\u0002\u0002\u0a8c\u0a8d\u0007U\u0002\u0002\u0a8d\u0a8e\u0007O\u0002", + "\u0002\u0a8e\u0a8f\u0007C\u0002\u0002\u0a8f\u0a90\u0007N\u0002\u0002", + "\u0a90\u0a91\u0007N\u0002\u0002\u0a91\u0a92\u0007K\u0002\u0002\u0a92", + "\u0a93\u0007P\u0002\u0002\u0a93\u0a94\u0007V\u0002\u0002\u0a94\u0220", + "\u0003\u0002\u0002\u0002\u0a95\u0a96\u0007K\u0002\u0002\u0a96\u0a97", + "\u0007P\u0002\u0002\u0a97\u0a98\u0007V\u0002\u0002\u0a98\u0222\u0003", + "\u0002\u0002\u0002\u0a99\u0a9a\u0007D\u0002\u0002\u0a9a\u0a9b\u0007", + "K\u0002\u0002\u0a9b\u0a9c\u0007I\u0002\u0002\u0a9c\u0a9d\u0007K\u0002", + "\u0002\u0a9d\u0a9e\u0007P\u0002\u0002\u0a9e\u0a9f\u0007V\u0002\u0002", + "\u0a9f\u0224\u0003\u0002\u0002\u0002\u0aa0\u0aa1\u0007H\u0002\u0002", + "\u0aa1\u0aa2\u0007N\u0002\u0002\u0aa2\u0aa3\u0007Q\u0002\u0002\u0aa3", + "\u0aa4\u0007C\u0002\u0002\u0aa4\u0aa5\u0007V\u0002\u0002\u0aa5\u0226", + "\u0003\u0002\u0002\u0002\u0aa6\u0aa7\u0007F\u0002\u0002\u0aa7\u0aa8", + "\u0007Q\u0002\u0002\u0aa8\u0aa9\u0007W\u0002\u0002\u0aa9\u0aaa\u0007", + "D\u0002\u0002\u0aaa\u0aab\u0007N\u0002\u0002\u0aab\u0aac\u0007G\u0002", + "\u0002\u0aac\u0228\u0003\u0002\u0002\u0002\u0aad\u0aae\u0007F\u0002", + "\u0002\u0aae\u0aaf\u0007C\u0002\u0002\u0aaf\u0ab0\u0007V\u0002\u0002", + "\u0ab0\u0ab1\u0007G\u0002\u0002\u0ab1\u022a\u0003\u0002\u0002\u0002", + "\u0ab2\u0ab3\u0007V\u0002\u0002\u0ab3\u0ab4\u0007K\u0002\u0002\u0ab4", + "\u0ab5\u0007O\u0002\u0002\u0ab5\u0ab6\u0007G\u0002\u0002\u0ab6\u022c", + "\u0003\u0002\u0002\u0002\u0ab7\u0ab8\u0007V\u0002\u0002\u0ab8\u0ab9", + "\u0007K\u0002\u0002\u0ab9\u0aba\u0007O\u0002\u0002\u0aba\u0abb\u0007", + "G\u0002\u0002\u0abb\u0abc\u0007U\u0002\u0002\u0abc\u0abd\u0007V\u0002", + "\u0002\u0abd\u0abe\u0007C\u0002\u0002\u0abe\u0abf\u0007O\u0002\u0002", + "\u0abf\u0ac0\u0007R\u0002\u0002\u0ac0\u022e\u0003\u0002\u0002\u0002", + "\u0ac1\u0ac2\u0007O\u0002\u0002\u0ac2\u0ac3\u0007W\u0002\u0002\u0ac3", + "\u0ac4\u0007N\u0002\u0002\u0ac4\u0ac5\u0007V\u0002\u0002\u0ac5\u0ac6", + "\u0007K\u0002\u0002\u0ac6\u0ac7\u0007U\u0002\u0002\u0ac7\u0ac8\u0007", + "G\u0002\u0002\u0ac8\u0ac9\u0007V\u0002\u0002\u0ac9\u0230\u0003\u0002", + "\u0002\u0002\u0aca\u0acb\u0007D\u0002\u0002\u0acb\u0acc\u0007Q\u0002", + "\u0002\u0acc\u0acd\u0007Q\u0002\u0002\u0acd\u0ace\u0007N\u0002\u0002", + "\u0ace\u0acf\u0007G\u0002\u0002\u0acf\u0ad0\u0007C\u0002\u0002\u0ad0", + "\u0ad1\u0007P\u0002\u0002\u0ad1\u0232\u0003\u0002\u0002\u0002\u0ad2", + "\u0ad3\u0007T\u0002\u0002\u0ad3\u0ad4\u0007C\u0002\u0002\u0ad4\u0ad5", + "\u0007Y\u0002\u0002\u0ad5\u0234\u0003\u0002\u0002\u0002\u0ad6\u0ad7", + "\u0007T\u0002\u0002\u0ad7\u0ad8\u0007Q\u0002\u0002\u0ad8\u0ad9\u0007", + "Y\u0002\u0002\u0ad9\u0236\u0003\u0002\u0002\u0002\u0ada\u0adb\u0007", + "P\u0002\u0002\u0adb\u0adc\u0007W\u0002\u0002\u0adc\u0add\u0007N\u0002", + "\u0002\u0add\u0ade\u0007N\u0002\u0002\u0ade\u0238\u0003\u0002\u0002", + "\u0002\u0adf\u0ae0\u0007?\u0002\u0002\u0ae0\u023a\u0003\u0002\u0002", + "\u0002\u0ae1\u0ae2\u0007@\u0002\u0002\u0ae2\u023c\u0003\u0002\u0002", + "\u0002\u0ae3\u0ae4\u0007>\u0002\u0002\u0ae4\u023e\u0003\u0002\u0002", + "\u0002\u0ae5\u0ae6\u0007#\u0002\u0002\u0ae6\u0240\u0003\u0002\u0002", + "\u0002\u0ae7\u0ae8\u0007\u0080\u0002\u0002\u0ae8\u0242\u0003\u0002\u0002", + "\u0002\u0ae9\u0aea\u0007~\u0002\u0002\u0aea\u0244\u0003\u0002\u0002", + "\u0002\u0aeb\u0aec\u0007(\u0002\u0002\u0aec\u0246\u0003\u0002\u0002", + "\u0002\u0aed\u0aee\u0007`\u0002\u0002\u0aee\u0248\u0003\u0002\u0002", + "\u0002\u0aef\u0af0\u00070\u0002\u0002\u0af0\u024a\u0003\u0002\u0002", + "\u0002\u0af1\u0af2\u0007]\u0002\u0002\u0af2\u024c\u0003\u0002\u0002", + "\u0002\u0af3\u0af4\u0007_\u0002\u0002\u0af4\u024e\u0003\u0002\u0002", + "\u0002\u0af5\u0af6\u0007*\u0002\u0002\u0af6\u0250\u0003\u0002\u0002", + "\u0002\u0af7\u0af8\u0007+\u0002\u0002\u0af8\u0252\u0003\u0002\u0002", + "\u0002\u0af9\u0afa\u0007.\u0002\u0002\u0afa\u0254\u0003\u0002\u0002", + "\u0002\u0afb\u0afc\u0007=\u0002\u0002\u0afc\u0256\u0003\u0002\u0002", + "\u0002\u0afd\u0afe\u0007B\u0002\u0002\u0afe\u0258\u0003\u0002\u0002", + "\u0002\u0aff\u0b00\u00072\u0002\u0002\u0b00\u025a\u0003\u0002\u0002", + "\u0002\u0b01\u0b02\u00073\u0002\u0002\u0b02\u025c\u0003\u0002\u0002", + "\u0002\u0b03\u0b04\u00074\u0002\u0002\u0b04\u025e\u0003\u0002\u0002", + "\u0002\u0b05\u0b06\u0007)\u0002\u0002\u0b06\u0260\u0003\u0002\u0002", + "\u0002\u0b07\u0b08\u0007$\u0002\u0002\u0b08\u0262\u0003\u0002\u0002", + "\u0002\u0b09\u0b0a\u0007b\u0002\u0002\u0b0a\u0264\u0003\u0002\u0002", + "\u0002\u0b0b\u0b0c\u0007<\u0002\u0002\u0b0c\u0266\u0003\u0002\u0002", + "\u0002\u0b0d\u0b0e\u0007,\u0002\u0002\u0b0e\u0268\u0003\u0002\u0002", + "\u0002\u0b0f\u0b10\u0007a\u0002\u0002\u0b10\u026a\u0003\u0002\u0002", + "\u0002\u0b11\u0b12\u0007/\u0002\u0002\u0b12\u026c\u0003\u0002\u0002", + "\u0002\u0b13\u0b14\u0007-\u0002\u0002\u0b14\u026e\u0003\u0002\u0002", + "\u0002\u0b15\u0b16\u0007\'\u0002\u0002\u0b16\u0270\u0003\u0002\u0002", + "\u0002\u0b17\u0b18\u0007/\u0002\u0002\u0b18\u0b19\u0007/\u0002\u0002", + "\u0b19\u0272\u0003\u0002\u0002\u0002\u0b1a\u0b1b\u00071\u0002\u0002", + "\u0b1b\u0274\u0003\u0002\u0002\u0002\u0b1c\u0b20\u0005\u0287\u0144\u0002", + "\u0b1d\u0b20\u0005\u0289\u0145\u0002\u0b1e\u0b20\u0005\u028d\u0147\u0002", + "\u0b1f\u0b1c\u0003\u0002\u0002\u0002\u0b1f\u0b1d\u0003\u0002\u0002\u0002", + "\u0b1f\u0b1e\u0003\u0002\u0002\u0002\u0b20\u0276\u0003\u0002\u0002\u0002", + "\u0b21\u0b23\u0005\u0283\u0142\u0002\u0b22\u0b21\u0003\u0002\u0002\u0002", + "\u0b23\u0b24\u0003\u0002\u0002\u0002\u0b24\u0b22\u0003\u0002\u0002\u0002", + "\u0b24\u0b25\u0003\u0002\u0002\u0002\u0b25\u0278\u0003\u0002\u0002\u0002", + "\u0b26\u0b28\u0005\u0283\u0142\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\u0283\u0142\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\u0b52\u0003\u0002\u0002\u0002", + "\u0b33\u0b35\u0005\u0283\u0142\u0002\u0b34\u0b33\u0003\u0002\u0002\u0002", + "\u0b35\u0b36\u0003\u0002\u0002\u0002\u0b36\u0b34\u0003\u0002\u0002\u0002", + "\u0b36\u0b37\u0003\u0002\u0002\u0002\u0b37\u0b38\u0003\u0002\u0002\u0002", + "\u0b38\u0b39\u00070\u0002\u0002\u0b39\u0b3a\u0005\u027f\u0140\u0002", + "\u0b3a\u0b52\u0003\u0002\u0002\u0002\u0b3b\u0b3d\u0005\u0283\u0142\u0002", + "\u0b3c\u0b3b\u0003\u0002\u0002\u0002\u0b3d\u0b3e\u0003\u0002\u0002\u0002", + "\u0b3e\u0b3c\u0003\u0002\u0002\u0002\u0b3e\u0b3f\u0003\u0002\u0002\u0002", + "\u0b3f\u0b41\u0003\u0002\u0002\u0002\u0b40\u0b3c\u0003\u0002\u0002\u0002", + "\u0b40\u0b41\u0003\u0002\u0002\u0002\u0b41\u0b42\u0003\u0002\u0002\u0002", + "\u0b42\u0b44\u00070\u0002\u0002\u0b43\u0b45\u0005\u0283\u0142\u0002", + "\u0b44\u0b43\u0003\u0002\u0002\u0002\u0b45\u0b46\u0003\u0002\u0002\u0002", + "\u0b46\u0b44\u0003\u0002\u0002\u0002\u0b46\u0b47\u0003\u0002\u0002\u0002", + "\u0b47\u0b48\u0003\u0002\u0002\u0002\u0b48\u0b49\u0005\u027f\u0140\u0002", + "\u0b49\u0b52\u0003\u0002\u0002\u0002\u0b4a\u0b4c\u0005\u0283\u0142\u0002", + "\u0b4b\u0b4a\u0003\u0002\u0002\u0002\u0b4c\u0b4d\u0003\u0002\u0002\u0002", + "\u0b4d\u0b4b\u0003\u0002\u0002\u0002\u0b4d\u0b4e\u0003\u0002\u0002\u0002", + "\u0b4e\u0b4f\u0003\u0002\u0002\u0002\u0b4f\u0b50\u0005\u027f\u0140\u0002", + "\u0b50\u0b52\u0003\u0002\u0002\u0002\u0b51\u0b2b\u0003\u0002\u0002\u0002", + "\u0b51\u0b34\u0003\u0002\u0002\u0002\u0b51\u0b40\u0003\u0002\u0002\u0002", + "\u0b51\u0b4b\u0003\u0002\u0002\u0002\u0b52\u027a\u0003\u0002\u0002\u0002", + "\u0b53\u0b54\u0005\u028b\u0146\u0002\u0b54\u027c\u0003\u0002\u0002\u0002", + "\u0b55\u0b59\u0005\u0285\u0143\u0002\u0b56\u0b59\u0005\u0283\u0142\u0002", + "\u0b57\u0b59\u0005\u0269\u0135\u0002\u0b58\u0b55\u0003\u0002\u0002\u0002", + "\u0b58\u0b56\u0003\u0002\u0002\u0002\u0b58\u0b57\u0003\u0002\u0002\u0002", + "\u0b59\u0b5a\u0003\u0002\u0002\u0002\u0b5a\u0b58\u0003\u0002\u0002\u0002", + "\u0b5a\u0b5b\u0003\u0002\u0002\u0002\u0b5b\u027e\u0003\u0002\u0002\u0002", + "\u0b5c\u0b5e\u0007G\u0002\u0002\u0b5d\u0b5f\t\u0006\u0002\u0002\u0b5e", + "\u0b5d\u0003\u0002\u0002\u0002\u0b5e\u0b5f\u0003\u0002\u0002\u0002\u0b5f", + "\u0b61\u0003\u0002\u0002\u0002\u0b60\u0b62\u0005\u0283\u0142\u0002\u0b61", + "\u0b60\u0003\u0002\u0002\u0002\u0b62\u0b63\u0003\u0002\u0002\u0002\u0b63", + "\u0b61\u0003\u0002\u0002\u0002\u0b63\u0b64\u0003\u0002\u0002\u0002\u0b64", + "\u0280\u0003\u0002\u0002\u0002\u0b65\u0b67\t\u0007\u0002\u0002\u0b66", + "\u0b65\u0003\u0002\u0002\u0002\u0b67\u0b6a\u0003\u0002\u0002\u0002\u0b68", + "\u0b69\u0003\u0002\u0002\u0002\u0b68\u0b66\u0003\u0002\u0002\u0002\u0b69", + "\u0b6c\u0003\u0002\u0002\u0002\u0b6a\u0b68\u0003\u0002\u0002\u0002\u0b6b", + "\u0b6d\t\b\u0002\u0002\u0b6c\u0b6b\u0003\u0002\u0002\u0002\u0b6d\u0b6e", + "\u0003\u0002\u0002\u0002\u0b6e\u0b6f\u0003\u0002\u0002\u0002\u0b6e\u0b6c", + "\u0003\u0002\u0002\u0002\u0b6f\u0b73\u0003\u0002\u0002\u0002\u0b70\u0b72", + "\t\u0007\u0002\u0002\u0b71\u0b70\u0003\u0002\u0002\u0002\u0b72\u0b75", + "\u0003\u0002\u0002\u0002\u0b73\u0b71\u0003\u0002\u0002\u0002\u0b73\u0b74", + "\u0003\u0002\u0002\u0002\u0b74\u0282\u0003\u0002\u0002\u0002\u0b75\u0b73", + "\u0003\u0002\u0002\u0002\u0b76\u0b77\t\t\u0002\u0002\u0b77\u0284\u0003", + "\u0002\u0002\u0002\u0b78\u0b79\t\n\u0002\u0002\u0b79\u0286\u0003\u0002", + "\u0002\u0002\u0b7a\u0b82\u0007$\u0002\u0002\u0b7b\u0b7c\u0007^\u0002", + "\u0002\u0b7c\u0b81\u000b\u0002\u0002\u0002\u0b7d\u0b7e\u0007$\u0002", + "\u0002\u0b7e\u0b81\u0007$\u0002\u0002\u0b7f\u0b81\n\u000b\u0002\u0002", + "\u0b80\u0b7b\u0003\u0002\u0002\u0002\u0b80\u0b7d\u0003\u0002\u0002\u0002", + "\u0b80\u0b7f\u0003\u0002\u0002\u0002\u0b81\u0b84\u0003\u0002\u0002\u0002", + "\u0b82\u0b80\u0003\u0002\u0002\u0002\u0b82\u0b83\u0003\u0002\u0002\u0002", + "\u0b83\u0b85\u0003\u0002\u0002\u0002\u0b84\u0b82\u0003\u0002\u0002\u0002", + "\u0b85\u0b86\u0007$\u0002\u0002\u0b86\u0288\u0003\u0002\u0002\u0002", + "\u0b87\u0b8f\u0007)\u0002\u0002\u0b88\u0b89\u0007^\u0002\u0002\u0b89", + "\u0b8e\u000b\u0002\u0002\u0002\u0b8a\u0b8b\u0007)\u0002\u0002\u0b8b", + "\u0b8e\u0007)\u0002\u0002\u0b8c\u0b8e\n\f\u0002\u0002\u0b8d\u0b88\u0003", + "\u0002\u0002\u0002\u0b8d\u0b8a\u0003\u0002\u0002\u0002\u0b8d\u0b8c\u0003", + "\u0002\u0002\u0002\u0b8e\u0b91\u0003\u0002\u0002\u0002\u0b8f\u0b8d\u0003", + "\u0002\u0002\u0002\u0b8f\u0b90\u0003\u0002\u0002\u0002\u0b90\u0b92\u0003", + "\u0002\u0002\u0002\u0b91\u0b8f\u0003\u0002\u0002\u0002\u0b92\u0b93\u0007", + ")\u0002\u0002\u0b93\u028a\u0003\u0002\u0002\u0002\u0b94\u0b95\u0007", + "D\u0002\u0002\u0b95\u0b97\u0007)\u0002\u0002\u0b96\u0b98\t\r\u0002\u0002", + "\u0b97\u0b96\u0003\u0002\u0002\u0002\u0b98\u0b99\u0003\u0002\u0002\u0002", + "\u0b99\u0b97\u0003\u0002\u0002\u0002\u0b99\u0b9a\u0003\u0002\u0002\u0002", + "\u0b9a\u0b9b\u0003\u0002\u0002\u0002\u0b9b\u0b9c\u0007)\u0002\u0002", + "\u0b9c\u028c\u0003\u0002\u0002\u0002\u0b9d\u0ba5\u0007b\u0002\u0002", + "\u0b9e\u0b9f\u0007^\u0002\u0002\u0b9f\u0ba4\u000b\u0002\u0002\u0002", + "\u0ba0\u0ba1\u0007b\u0002\u0002\u0ba1\u0ba4\u0007b\u0002\u0002\u0ba2", + "\u0ba4\n\u000e\u0002\u0002\u0ba3\u0b9e\u0003\u0002\u0002\u0002\u0ba3", + "\u0ba0\u0003\u0002\u0002\u0002\u0ba3\u0ba2\u0003\u0002\u0002\u0002\u0ba4", + "\u0ba7\u0003\u0002\u0002\u0002\u0ba5\u0ba3\u0003\u0002\u0002\u0002\u0ba5", + "\u0ba6\u0003\u0002\u0002\u0002\u0ba6\u0ba8\u0003\u0002\u0002\u0002\u0ba7", + "\u0ba5\u0003\u0002\u0002\u0002\u0ba8\u0ba9\u0007b\u0002\u0002\u0ba9", + "\u028e\u0003\u0002\u0002\u0002\'\u0002\u0292\u029c\u02a8\u02ad\u02b1", + "\u02b5\u02bb\u02bf\u02c1\u0a2f\u0a37\u0b1f\u0b24\u0b29\u0b2b\u0b31\u0b36", + "\u0b3e\u0b40\u0b46\u0b4d\u0b51\u0b58\u0b5a\u0b5e\u0b63\u0b68\u0b6e\u0b73", + "\u0b80\u0b82\u0b8d\u0b8f\u0b99\u0ba3\u0ba5\u0003\u0002\u0003\u0002"].join(""); var atn = new antlr4.atn.ATNDeserializer().deserialize(serializedATN); @@ -72,42 +1939,674 @@ 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.SPACE = 1; +FlinkSqlParserLexer.COMMENT_INPUT = 2; +FlinkSqlParserLexer.LINE_COMMENT = 3; +FlinkSqlParserLexer.SELECT = 4; +FlinkSqlParserLexer.FROM = 5; +FlinkSqlParserLexer.ADD = 6; +FlinkSqlParserLexer.AS = 7; +FlinkSqlParserLexer.ALL = 8; +FlinkSqlParserLexer.ANY = 9; +FlinkSqlParserLexer.DISTINCT = 10; +FlinkSqlParserLexer.WHERE = 11; +FlinkSqlParserLexer.GROUP = 12; +FlinkSqlParserLexer.BY = 13; +FlinkSqlParserLexer.GROUPING = 14; +FlinkSqlParserLexer.SETS = 15; +FlinkSqlParserLexer.CUBE = 16; +FlinkSqlParserLexer.ROLLUP = 17; +FlinkSqlParserLexer.ORDER = 18; +FlinkSqlParserLexer.HAVING = 19; +FlinkSqlParserLexer.LIMIT = 20; +FlinkSqlParserLexer.AT = 21; +FlinkSqlParserLexer.OR = 22; +FlinkSqlParserLexer.AND = 23; +FlinkSqlParserLexer.IN = 24; +FlinkSqlParserLexer.NOT = 25; +FlinkSqlParserLexer.NO = 26; +FlinkSqlParserLexer.EXISTS = 27; +FlinkSqlParserLexer.BETWEEN = 28; +FlinkSqlParserLexer.LIKE = 29; +FlinkSqlParserLexer.RLIKE = 30; +FlinkSqlParserLexer.IS = 31; +FlinkSqlParserLexer.TRUE = 32; +FlinkSqlParserLexer.FALSE = 33; +FlinkSqlParserLexer.NULLS = 34; +FlinkSqlParserLexer.ASC = 35; +FlinkSqlParserLexer.DESC = 36; +FlinkSqlParserLexer.FOR = 37; +FlinkSqlParserLexer.INTERVAL = 38; +FlinkSqlParserLexer.CASE = 39; +FlinkSqlParserLexer.WHEN = 40; +FlinkSqlParserLexer.THEN = 41; +FlinkSqlParserLexer.ELSE = 42; +FlinkSqlParserLexer.END = 43; +FlinkSqlParserLexer.JOIN = 44; +FlinkSqlParserLexer.CROSS = 45; +FlinkSqlParserLexer.OUTER = 46; +FlinkSqlParserLexer.INNER = 47; +FlinkSqlParserLexer.LEFT = 48; +FlinkSqlParserLexer.SEMI = 49; +FlinkSqlParserLexer.RIGHT = 50; +FlinkSqlParserLexer.FULL = 51; +FlinkSqlParserLexer.NATURAL = 52; +FlinkSqlParserLexer.ON = 53; +FlinkSqlParserLexer.PIVOT = 54; +FlinkSqlParserLexer.LATERAL = 55; +FlinkSqlParserLexer.WINDOW = 56; +FlinkSqlParserLexer.OVER = 57; +FlinkSqlParserLexer.PARTITION = 58; +FlinkSqlParserLexer.RANGE = 59; +FlinkSqlParserLexer.ROWS = 60; +FlinkSqlParserLexer.UNBOUNDED = 61; +FlinkSqlParserLexer.PRECEDING = 62; +FlinkSqlParserLexer.FOLLOWING = 63; +FlinkSqlParserLexer.CURRENT = 64; +FlinkSqlParserLexer.FIRST = 65; +FlinkSqlParserLexer.AFTER = 66; +FlinkSqlParserLexer.LAST = 67; +FlinkSqlParserLexer.WITH = 68; +FlinkSqlParserLexer.VALUES = 69; +FlinkSqlParserLexer.CREATE = 70; +FlinkSqlParserLexer.TABLE = 71; +FlinkSqlParserLexer.DIRECTORY = 72; +FlinkSqlParserLexer.VIEW = 73; +FlinkSqlParserLexer.REPLACE = 74; +FlinkSqlParserLexer.INSERT = 75; +FlinkSqlParserLexer.DELETE = 76; +FlinkSqlParserLexer.INTO = 77; +FlinkSqlParserLexer.DESCRIBE = 78; +FlinkSqlParserLexer.EXPLAIN = 79; +FlinkSqlParserLexer.FORMAT = 80; +FlinkSqlParserLexer.LOGICAL = 81; +FlinkSqlParserLexer.CODEGEN = 82; +FlinkSqlParserLexer.COST = 83; +FlinkSqlParserLexer.CAST = 84; +FlinkSqlParserLexer.SHOW = 85; +FlinkSqlParserLexer.TABLES = 86; +FlinkSqlParserLexer.COLUMNS = 87; +FlinkSqlParserLexer.COLUMN = 88; +FlinkSqlParserLexer.USE = 89; +FlinkSqlParserLexer.PARTITIONS = 90; +FlinkSqlParserLexer.FUNCTIONS = 91; +FlinkSqlParserLexer.DROP = 92; +FlinkSqlParserLexer.UNION = 93; +FlinkSqlParserLexer.EXCEPT = 94; +FlinkSqlParserLexer.SETMINUS = 95; +FlinkSqlParserLexer.INTERSECT = 96; +FlinkSqlParserLexer.TO = 97; +FlinkSqlParserLexer.TABLESAMPLE = 98; +FlinkSqlParserLexer.STRATIFY = 99; +FlinkSqlParserLexer.ALTER = 100; +FlinkSqlParserLexer.RENAME = 101; +FlinkSqlParserLexer.STRUCT = 102; +FlinkSqlParserLexer.COMMENT = 103; +FlinkSqlParserLexer.SET = 104; +FlinkSqlParserLexer.RESET = 105; +FlinkSqlParserLexer.DATA = 106; +FlinkSqlParserLexer.START = 107; +FlinkSqlParserLexer.TRANSACTION = 108; +FlinkSqlParserLexer.COMMIT = 109; +FlinkSqlParserLexer.ROLLBACK = 110; +FlinkSqlParserLexer.MACRO = 111; +FlinkSqlParserLexer.IGNORE = 112; +FlinkSqlParserLexer.BOTH = 113; +FlinkSqlParserLexer.LEADING = 114; +FlinkSqlParserLexer.TRAILING = 115; +FlinkSqlParserLexer.IF = 116; +FlinkSqlParserLexer.POSITION = 117; +FlinkSqlParserLexer.EXTRACT = 118; +FlinkSqlParserLexer.EQ = 119; +FlinkSqlParserLexer.NSEQ = 120; +FlinkSqlParserLexer.NEQ = 121; +FlinkSqlParserLexer.NEQJ = 122; +FlinkSqlParserLexer.LT = 123; +FlinkSqlParserLexer.LTE = 124; +FlinkSqlParserLexer.GT = 125; +FlinkSqlParserLexer.GTE = 126; +FlinkSqlParserLexer.PLUS = 127; +FlinkSqlParserLexer.MINUS = 128; +FlinkSqlParserLexer.ASTERISK = 129; +FlinkSqlParserLexer.SLASH = 130; +FlinkSqlParserLexer.PERCENT = 131; +FlinkSqlParserLexer.DIV = 132; +FlinkSqlParserLexer.TILDE = 133; +FlinkSqlParserLexer.AMPERSAND = 134; +FlinkSqlParserLexer.PIPE = 135; +FlinkSqlParserLexer.CONCAT_PIPE = 136; +FlinkSqlParserLexer.HAT = 137; +FlinkSqlParserLexer.PERCENTLIT = 138; +FlinkSqlParserLexer.BUCKET = 139; +FlinkSqlParserLexer.OUT = 140; +FlinkSqlParserLexer.OF = 141; +FlinkSqlParserLexer.SORT = 142; +FlinkSqlParserLexer.CLUSTER = 143; +FlinkSqlParserLexer.DISTRIBUTE = 144; +FlinkSqlParserLexer.OVERWRITE = 145; +FlinkSqlParserLexer.TRANSFORM = 146; +FlinkSqlParserLexer.REDUCE = 147; +FlinkSqlParserLexer.USING = 148; +FlinkSqlParserLexer.SERDE = 149; +FlinkSqlParserLexer.SERDEPROPERTIES = 150; +FlinkSqlParserLexer.RECORDREADER = 151; +FlinkSqlParserLexer.RECORDWRITER = 152; +FlinkSqlParserLexer.DELIMITED = 153; +FlinkSqlParserLexer.FIELDS = 154; +FlinkSqlParserLexer.TERMINATED = 155; +FlinkSqlParserLexer.COLLECTION = 156; +FlinkSqlParserLexer.ITEMS = 157; +FlinkSqlParserLexer.KEYS = 158; +FlinkSqlParserLexer.ESCAPED = 159; +FlinkSqlParserLexer.LINES = 160; +FlinkSqlParserLexer.SEPARATED = 161; +FlinkSqlParserLexer.FUNCTION = 162; +FlinkSqlParserLexer.EXTENDED = 163; +FlinkSqlParserLexer.REFRESH = 164; +FlinkSqlParserLexer.CLEAR = 165; +FlinkSqlParserLexer.CACHE = 166; +FlinkSqlParserLexer.UNCACHE = 167; +FlinkSqlParserLexer.LAZY = 168; +FlinkSqlParserLexer.FORMATTED = 169; +FlinkSqlParserLexer.GLOBAL = 170; +FlinkSqlParserLexer.TEMPORARY = 171; +FlinkSqlParserLexer.OPTIONS = 172; +FlinkSqlParserLexer.UNSET = 173; +FlinkSqlParserLexer.TBLPROPERTIES = 174; +FlinkSqlParserLexer.DBPROPERTIES = 175; +FlinkSqlParserLexer.BUCKETS = 176; +FlinkSqlParserLexer.SKEWED = 177; +FlinkSqlParserLexer.STORED = 178; +FlinkSqlParserLexer.DIRECTORIES = 179; +FlinkSqlParserLexer.LOCATION = 180; +FlinkSqlParserLexer.EXCHANGE = 181; +FlinkSqlParserLexer.ARCHIVE = 182; +FlinkSqlParserLexer.UNARCHIVE = 183; +FlinkSqlParserLexer.FILEFORMAT = 184; +FlinkSqlParserLexer.TOUCH = 185; +FlinkSqlParserLexer.COMPACT = 186; +FlinkSqlParserLexer.CONCATENATE = 187; +FlinkSqlParserLexer.CHANGE = 188; +FlinkSqlParserLexer.CASCADE = 189; +FlinkSqlParserLexer.RESTRICT = 190; +FlinkSqlParserLexer.CLUSTERED = 191; +FlinkSqlParserLexer.SORTED = 192; +FlinkSqlParserLexer.PURGE = 193; +FlinkSqlParserLexer.INPUTFORMAT = 194; +FlinkSqlParserLexer.OUTPUTFORMAT = 195; +FlinkSqlParserLexer.DATABASE = 196; +FlinkSqlParserLexer.DATABASES = 197; +FlinkSqlParserLexer.DFS = 198; +FlinkSqlParserLexer.TRUNCATE = 199; +FlinkSqlParserLexer.ANALYZE = 200; +FlinkSqlParserLexer.COMPUTE = 201; +FlinkSqlParserLexer.LIST = 202; +FlinkSqlParserLexer.STATISTICS = 203; +FlinkSqlParserLexer.PARTITIONED = 204; +FlinkSqlParserLexer.EXTERNAL = 205; +FlinkSqlParserLexer.DEFINED = 206; +FlinkSqlParserLexer.REVOKE = 207; +FlinkSqlParserLexer.GRANT = 208; +FlinkSqlParserLexer.LOCK = 209; +FlinkSqlParserLexer.UNLOCK = 210; +FlinkSqlParserLexer.MSCK = 211; +FlinkSqlParserLexer.REPAIR = 212; +FlinkSqlParserLexer.RECOVER = 213; +FlinkSqlParserLexer.EXPORT = 214; +FlinkSqlParserLexer.IMPORT = 215; +FlinkSqlParserLexer.LOAD = 216; +FlinkSqlParserLexer.ROLE = 217; +FlinkSqlParserLexer.ROLES = 218; +FlinkSqlParserLexer.COMPACTIONS = 219; +FlinkSqlParserLexer.PRINCIPALS = 220; +FlinkSqlParserLexer.TRANSACTIONS = 221; +FlinkSqlParserLexer.INDEX = 222; +FlinkSqlParserLexer.INDEXES = 223; +FlinkSqlParserLexer.LOCKS = 224; +FlinkSqlParserLexer.OPTION = 225; +FlinkSqlParserLexer.ANTI = 226; +FlinkSqlParserLexer.LOCAL = 227; +FlinkSqlParserLexer.INPATH = 228; +FlinkSqlParserLexer.WATERMARK = 229; +FlinkSqlParserLexer.UNNEST = 230; +FlinkSqlParserLexer.MATCH_RECOGNIZE = 231; +FlinkSqlParserLexer.MEASURES = 232; +FlinkSqlParserLexer.ONE = 233; +FlinkSqlParserLexer.PER = 234; +FlinkSqlParserLexer.MATCH = 235; +FlinkSqlParserLexer.SKIP1 = 236; +FlinkSqlParserLexer.NEXT = 237; +FlinkSqlParserLexer.PAST = 238; +FlinkSqlParserLexer.PATTERN = 239; +FlinkSqlParserLexer.WITHIN = 240; +FlinkSqlParserLexer.DEFINE = 241; +FlinkSqlParserLexer.BIGINT_LITERAL = 242; +FlinkSqlParserLexer.SMALLINT_LITERAL = 243; +FlinkSqlParserLexer.TINYINT_LITERAL = 244; +FlinkSqlParserLexer.INTEGER_VALUE = 245; +FlinkSqlParserLexer.DECIMAL_VALUE = 246; +FlinkSqlParserLexer.DOUBLE_LITERAL = 247; +FlinkSqlParserLexer.BIGDECIMAL_LITERAL = 248; +FlinkSqlParserLexer.IDENTIFIER = 249; +FlinkSqlParserLexer.BACKQUOTED_IDENTIFIER = 250; +FlinkSqlParserLexer.SIMPLE_COMMENT = 251; +FlinkSqlParserLexer.BRACKETED_EMPTY_COMMENT = 252; +FlinkSqlParserLexer.BRACKETED_COMMENT = 253; +FlinkSqlParserLexer.WS = 254; +FlinkSqlParserLexer.UNRECOGNIZED = 255; +FlinkSqlParserLexer.REVERSE_QUOTE_ID = 256; +FlinkSqlParserLexer.DOUBLE_QUOTE_ID = 257; +FlinkSqlParserLexer.DOT_ID = 258; +FlinkSqlParserLexer.ID = 259; +FlinkSqlParserLexer.SYSTEM = 260; +FlinkSqlParserLexer.STRING = 261; +FlinkSqlParserLexer.ARRAY = 262; +FlinkSqlParserLexer.MAP = 263; +FlinkSqlParserLexer.CHAR = 264; +FlinkSqlParserLexer.VARCHAR = 265; +FlinkSqlParserLexer.BINARY = 266; +FlinkSqlParserLexer.VARBINARY = 267; +FlinkSqlParserLexer.BYTES = 268; +FlinkSqlParserLexer.DECIMAL = 269; +FlinkSqlParserLexer.TINYINT = 270; +FlinkSqlParserLexer.SMALLINT = 271; +FlinkSqlParserLexer.INT = 272; +FlinkSqlParserLexer.BIGINT = 273; +FlinkSqlParserLexer.FLOAT = 274; +FlinkSqlParserLexer.DOUBLE = 275; +FlinkSqlParserLexer.DATE = 276; +FlinkSqlParserLexer.TIME = 277; +FlinkSqlParserLexer.TIMESTAMP = 278; +FlinkSqlParserLexer.MULTISET = 279; +FlinkSqlParserLexer.BOOLEAN = 280; +FlinkSqlParserLexer.RAW = 281; +FlinkSqlParserLexer.ROW = 282; +FlinkSqlParserLexer.NULL = 283; +FlinkSqlParserLexer.EQUAL_SYMBOL = 284; +FlinkSqlParserLexer.GREATER_SYMBOL = 285; +FlinkSqlParserLexer.LESS_SYMBOL = 286; +FlinkSqlParserLexer.EXCLAMATION_SYMBOL = 287; +FlinkSqlParserLexer.BIT_NOT_OP = 288; +FlinkSqlParserLexer.BIT_OR_OP = 289; +FlinkSqlParserLexer.BIT_AND_OP = 290; +FlinkSqlParserLexer.BIT_XOR_OP = 291; +FlinkSqlParserLexer.DOT = 292; +FlinkSqlParserLexer.LS_BRACKET = 293; +FlinkSqlParserLexer.RS_BRACKET = 294; +FlinkSqlParserLexer.LR_BRACKET = 295; +FlinkSqlParserLexer.RR_BRACKET = 296; +FlinkSqlParserLexer.COMMA = 297; +FlinkSqlParserLexer.SEMICOLON = 298; +FlinkSqlParserLexer.AT_SIGN = 299; +FlinkSqlParserLexer.ZERO_DECIMAL = 300; +FlinkSqlParserLexer.ONE_DECIMAL = 301; +FlinkSqlParserLexer.TWO_DECIMAL = 302; +FlinkSqlParserLexer.SINGLE_QUOTE_SYMB = 303; +FlinkSqlParserLexer.DOUBLE_QUOTE_SYMB = 304; +FlinkSqlParserLexer.REVERSE_QUOTE_SYMB = 305; +FlinkSqlParserLexer.COLON_SYMB = 306; +FlinkSqlParserLexer.ASTERISK_SIGN = 307; +FlinkSqlParserLexer.UNDERLINE_SIGN = 308; +FlinkSqlParserLexer.HYPNEN_SIGN = 309; +FlinkSqlParserLexer.ADD_SIGN = 310; +FlinkSqlParserLexer.PENCENT_SIGN = 311; +FlinkSqlParserLexer.DOUBLE_HYPNEN_SIGN = 312; +FlinkSqlParserLexer.SLASH_SIGN = 313; +FlinkSqlParserLexer.STRING_LITERAL = 314; +FlinkSqlParserLexer.DECIMAL_LITERAL = 315; +FlinkSqlParserLexer.REAL_LITERAL = 316; +FlinkSqlParserLexer.BIT_STRING = 317; +FlinkSqlParserLexer.IDENTIFIER_BASE = 318; FlinkSqlParserLexer.prototype.channelNames = [ "DEFAULT_TOKEN_CHANNEL", "HIDDEN" ]; FlinkSqlParserLexer.prototype.modeNames = [ "DEFAULT_MODE" ]; -FlinkSqlParserLexer.prototype.literalNames = [ null, "'.'", "'*'", "','", - "'!'", "'('", "')'", "'&'", - "'|'", "'='", "'>'", "'<'", - "'^'", "'/'", "'%'", "'+'", - "'-'", "'--'", "'~'" ]; +FlinkSqlParserLexer.prototype.literalNames = [ null, null, null, null, "'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'", + "'DBPROPERTIES'", "'BUCKETS'", + "'SKEWED'", "'STORED'", "'DIRECTORIES'", + "'LOCATION'", "'EXCHANGE'", + "'ARCHIVE'", "'UNARCHIVE'", + "'FILEFORMAT'", "'TOUCH'", + "'COMPACT'", "'CONCATENATE'", + "'CHANGE'", "'CASCADE'", + "'RESTRICT'", "'CLUSTERED'", + "'SORTED'", "'PURGE'", "'INPUTFORMAT'", + "'OUTPUTFORMAT'", "'DATABASE'", + "'DATABASES'", "'DFS'", "'TRUNCATE'", + "'ANALYZE'", "'COMPUTE'", + "'LIST'", "'STATISTICS'", + "'PARTITIONED'", "'EXTERNAL'", + "'DEFINED'", "'REVOKE'", + "'GRANT'", "'LOCK'", "'UNLOCK'", + "'MSCK'", "'REPAIR'", "'RECOVER'", + "'EXPORT'", "'IMPORT'", "'LOAD'", + "'ROLE'", "'ROLES'", "'COMPACTIONS'", + "'PRINCIPALS'", "'TRANSACTIONS'", + "'INDEX'", "'INDEXES'", "'LOCKS'", + "'OPTION'", "'ANTI'", "'LOCAL'", + "'INPATH'", "'WATERMARK'", + "'UNNEST'", "'MATCH_RECOGNIZE'", + "'MEASURES'", "'ONE'", "'PER'", + "'MATCH'", "'SKIP1'", "'NEXT'", + "'PAST'", "'PATTERN'", "'WITHIN'", + "'DEFINE'", "'BIGINT_LITERAL'", + "'SMALLINT_LITERAL'", "'TINYINT_LITERAL'", + "'INTEGER_VALUE'", "'DECIMAL_VALUE'", + "'DOUBLE_LITERAL'", "'BIGDECIMAL_LITERAL'", + "'IDENTIFIER'", "'BACKQUOTED_IDENTIFIER'", + "'SIMPLE_COMMENT'", "'BRACKETED_EMPTY_COMMENT'", + "'BRACKETED_COMMENT'", "'WS'", + "'UNRECOGNIZED'", null, null, + null, null, "'SYSTEM'", "'STRING'", + "'ARRAY'", "'MAP'", "'CHAR'", + "'VARCHAR'", "'BINARY'", + "'VARBINARY'", "'BYTES'", + "'DECIMAL'", "'TINYINT'", + "'SMALLINT'", "'INT'", "'BIGINT'", + "'FLOAT'", "'DOUBLE'", "'DATE'", + "'TIME'", "'TIMESTAMP'", + "'MULTISET'", "'BOOLEAN'", + "'RAW'", "'ROW'", "'NULL'", + "'='", "'>'", "'<'", "'!'", + "'~'", "'|'", "'&'", "'^'", + "'.'", "'['", "']'", "'('", + "')'", "','", "';'", "'@'", + "'0'", "'1'", "'2'", "'''", + "'\"'", "'`'", "':'", "'*'", + "'_'", "'-'", "'+'", "'%'", + "'--'", "'/'" ]; -FlinkSqlParserLexer.prototype.symbolicNames = [ ]; +FlinkSqlParserLexer.prototype.symbolicNames = [ null, "SPACE", "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", + "DBPROPERTIES", "BUCKETS", + "SKEWED", "STORED", "DIRECTORIES", + "LOCATION", "EXCHANGE", + "ARCHIVE", "UNARCHIVE", + "FILEFORMAT", "TOUCH", "COMPACT", + "CONCATENATE", "CHANGE", + "CASCADE", "RESTRICT", "CLUSTERED", + "SORTED", "PURGE", "INPUTFORMAT", + "OUTPUTFORMAT", "DATABASE", + "DATABASES", "DFS", "TRUNCATE", + "ANALYZE", "COMPUTE", "LIST", + "STATISTICS", "PARTITIONED", + "EXTERNAL", "DEFINED", "REVOKE", + "GRANT", "LOCK", "UNLOCK", + "MSCK", "REPAIR", "RECOVER", + "EXPORT", "IMPORT", "LOAD", + "ROLE", "ROLES", "COMPACTIONS", + "PRINCIPALS", "TRANSACTIONS", + "INDEX", "INDEXES", "LOCKS", + "OPTION", "ANTI", "LOCAL", + "INPATH", "WATERMARK", "UNNEST", + "MATCH_RECOGNIZE", "MEASURES", + "ONE", "PER", "MATCH", "SKIP1", + "NEXT", "PAST", "PATTERN", + "WITHIN", "DEFINE", "BIGINT_LITERAL", + "SMALLINT_LITERAL", "TINYINT_LITERAL", + "INTEGER_VALUE", "DECIMAL_VALUE", + "DOUBLE_LITERAL", "BIGDECIMAL_LITERAL", + "IDENTIFIER", "BACKQUOTED_IDENTIFIER", + "SIMPLE_COMMENT", "BRACKETED_EMPTY_COMMENT", + "BRACKETED_COMMENT", "WS", + "UNRECOGNIZED", "REVERSE_QUOTE_ID", + "DOUBLE_QUOTE_ID", "DOT_ID", + "ID", "SYSTEM", "STRING", + "ARRAY", "MAP", "CHAR", + "VARCHAR", "BINARY", "VARBINARY", + "BYTES", "DECIMAL", "TINYINT", + "SMALLINT", "INT", "BIGINT", + "FLOAT", "DOUBLE", "DATE", + "TIME", "TIMESTAMP", "MULTISET", + "BOOLEAN", "RAW", "ROW", + "NULL", "EQUAL_SYMBOL", + "GREATER_SYMBOL", "LESS_SYMBOL", + "EXCLAMATION_SYMBOL", "BIT_NOT_OP", + "BIT_OR_OP", "BIT_AND_OP", + "BIT_XOR_OP", "DOT", "LS_BRACKET", + "RS_BRACKET", "LR_BRACKET", + "RR_BRACKET", "COMMA", "SEMICOLON", + "AT_SIGN", "ZERO_DECIMAL", + "ONE_DECIMAL", "TWO_DECIMAL", + "SINGLE_QUOTE_SYMB", "DOUBLE_QUOTE_SYMB", + "REVERSE_QUOTE_SYMB", "COLON_SYMB", + "ASTERISK_SIGN", "UNDERLINE_SIGN", + "HYPNEN_SIGN", "ADD_SIGN", + "PENCENT_SIGN", "DOUBLE_HYPNEN_SIGN", + "SLASH_SIGN", "STRING_LITERAL", + "DECIMAL_LITERAL", "REAL_LITERAL", + "BIT_STRING", "IDENTIFIER_BASE" ]; -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.ruleNames = [ "SPACE", "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", + "DBPROPERTIES", "BUCKETS", "SKEWED", + "STORED", "DIRECTORIES", "LOCATION", + "EXCHANGE", "ARCHIVE", "UNARCHIVE", + "FILEFORMAT", "TOUCH", "COMPACT", + "CONCATENATE", "CHANGE", "CASCADE", + "RESTRICT", "CLUSTERED", "SORTED", + "PURGE", "INPUTFORMAT", "OUTPUTFORMAT", + "DATABASE", "DATABASES", "DFS", + "TRUNCATE", "ANALYZE", "COMPUTE", + "LIST", "STATISTICS", "PARTITIONED", + "EXTERNAL", "DEFINED", "REVOKE", + "GRANT", "LOCK", "UNLOCK", "MSCK", + "REPAIR", "RECOVER", "EXPORT", + "IMPORT", "LOAD", "ROLE", "ROLES", + "COMPACTIONS", "PRINCIPALS", + "TRANSACTIONS", "INDEX", "INDEXES", + "LOCKS", "OPTION", "ANTI", "LOCAL", + "INPATH", "WATERMARK", "UNNEST", + "MATCH_RECOGNIZE", "MEASURES", + "ONE", "PER", "MATCH", "SKIP1", + "NEXT", "PAST", "PATTERN", "WITHIN", + "DEFINE", "BIGINT_LITERAL", + "SMALLINT_LITERAL", "TINYINT_LITERAL", + "INTEGER_VALUE", "DECIMAL_VALUE", + "DOUBLE_LITERAL", "BIGDECIMAL_LITERAL", + "IDENTIFIER", "BACKQUOTED_IDENTIFIER", + "SIMPLE_COMMENT", "BRACKETED_EMPTY_COMMENT", + "BRACKETED_COMMENT", "WS", "UNRECOGNIZED", + "REVERSE_QUOTE_ID", "DOUBLE_QUOTE_ID", + "DOT_ID", "ID", "SYSTEM", "STRING", + "ARRAY", "MAP", "CHAR", "VARCHAR", + "BINARY", "VARBINARY", "BYTES", + "DECIMAL", "TINYINT", "SMALLINT", + "INT", "BIGINT", "FLOAT", "DOUBLE", + "DATE", "TIME", "TIMESTAMP", + "MULTISET", "BOOLEAN", "RAW", + "ROW", "NULL", "EQUAL_SYMBOL", + "GREATER_SYMBOL", "LESS_SYMBOL", + "EXCLAMATION_SYMBOL", "BIT_NOT_OP", + "BIT_OR_OP", "BIT_AND_OP", "BIT_XOR_OP", + "DOT", "LS_BRACKET", "RS_BRACKET", + "LR_BRACKET", "RR_BRACKET", + "COMMA", "SEMICOLON", "AT_SIGN", + "ZERO_DECIMAL", "ONE_DECIMAL", + "TWO_DECIMAL", "SINGLE_QUOTE_SYMB", + "DOUBLE_QUOTE_SYMB", "REVERSE_QUOTE_SYMB", + "COLON_SYMB", "ASTERISK_SIGN", + "UNDERLINE_SIGN", "HYPNEN_SIGN", + "ADD_SIGN", "PENCENT_SIGN", + "DOUBLE_HYPNEN_SIGN", "SLASH_SIGN", + "STRING_LITERAL", "DECIMAL_LITERAL", + "REAL_LITERAL", "BIT_STRING", + "IDENTIFIER_BASE", "EXPONENT_NUM_PART", + "ID_LITERAL", "DEC_DIGIT", "DEC_LETTER", + "DQUOTA_STRING", "SQUOTA_STRING", + "BIT_STRING_L", "BQUOTA_STRING" ]; FlinkSqlParserLexer.prototype.grammarFileName = "FlinkSqlParser.g4"; diff --git a/src/lib/flinksql/FlinkSqlParserLexer.tokens b/src/lib/flinksql/FlinkSqlParserLexer.tokens index 079828a..c46460e 100644 --- a/src/lib/flinksql/FlinkSqlParserLexer.tokens +++ b/src/lib/flinksql/FlinkSqlParserLexer.tokens @@ -1,36 +1,624 @@ -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 -'.'=1 -'*'=2 -','=3 -'!'=4 -'('=5 -')'=6 -'&'=7 -'|'=8 -'='=9 -'>'=10 -'<'=11 -'^'=12 -'/'=13 -'%'=14 -'+'=15 -'-'=16 -'--'=17 -'~'=18 +SPACE=1 +COMMENT_INPUT=2 +LINE_COMMENT=3 +SELECT=4 +FROM=5 +ADD=6 +AS=7 +ALL=8 +ANY=9 +DISTINCT=10 +WHERE=11 +GROUP=12 +BY=13 +GROUPING=14 +SETS=15 +CUBE=16 +ROLLUP=17 +ORDER=18 +HAVING=19 +LIMIT=20 +AT=21 +OR=22 +AND=23 +IN=24 +NOT=25 +NO=26 +EXISTS=27 +BETWEEN=28 +LIKE=29 +RLIKE=30 +IS=31 +TRUE=32 +FALSE=33 +NULLS=34 +ASC=35 +DESC=36 +FOR=37 +INTERVAL=38 +CASE=39 +WHEN=40 +THEN=41 +ELSE=42 +END=43 +JOIN=44 +CROSS=45 +OUTER=46 +INNER=47 +LEFT=48 +SEMI=49 +RIGHT=50 +FULL=51 +NATURAL=52 +ON=53 +PIVOT=54 +LATERAL=55 +WINDOW=56 +OVER=57 +PARTITION=58 +RANGE=59 +ROWS=60 +UNBOUNDED=61 +PRECEDING=62 +FOLLOWING=63 +CURRENT=64 +FIRST=65 +AFTER=66 +LAST=67 +WITH=68 +VALUES=69 +CREATE=70 +TABLE=71 +DIRECTORY=72 +VIEW=73 +REPLACE=74 +INSERT=75 +DELETE=76 +INTO=77 +DESCRIBE=78 +EXPLAIN=79 +FORMAT=80 +LOGICAL=81 +CODEGEN=82 +COST=83 +CAST=84 +SHOW=85 +TABLES=86 +COLUMNS=87 +COLUMN=88 +USE=89 +PARTITIONS=90 +FUNCTIONS=91 +DROP=92 +UNION=93 +EXCEPT=94 +SETMINUS=95 +INTERSECT=96 +TO=97 +TABLESAMPLE=98 +STRATIFY=99 +ALTER=100 +RENAME=101 +STRUCT=102 +COMMENT=103 +SET=104 +RESET=105 +DATA=106 +START=107 +TRANSACTION=108 +COMMIT=109 +ROLLBACK=110 +MACRO=111 +IGNORE=112 +BOTH=113 +LEADING=114 +TRAILING=115 +IF=116 +POSITION=117 +EXTRACT=118 +EQ=119 +NSEQ=120 +NEQ=121 +NEQJ=122 +LT=123 +LTE=124 +GT=125 +GTE=126 +PLUS=127 +MINUS=128 +ASTERISK=129 +SLASH=130 +PERCENT=131 +DIV=132 +TILDE=133 +AMPERSAND=134 +PIPE=135 +CONCAT_PIPE=136 +HAT=137 +PERCENTLIT=138 +BUCKET=139 +OUT=140 +OF=141 +SORT=142 +CLUSTER=143 +DISTRIBUTE=144 +OVERWRITE=145 +TRANSFORM=146 +REDUCE=147 +USING=148 +SERDE=149 +SERDEPROPERTIES=150 +RECORDREADER=151 +RECORDWRITER=152 +DELIMITED=153 +FIELDS=154 +TERMINATED=155 +COLLECTION=156 +ITEMS=157 +KEYS=158 +ESCAPED=159 +LINES=160 +SEPARATED=161 +FUNCTION=162 +EXTENDED=163 +REFRESH=164 +CLEAR=165 +CACHE=166 +UNCACHE=167 +LAZY=168 +FORMATTED=169 +GLOBAL=170 +TEMPORARY=171 +OPTIONS=172 +UNSET=173 +TBLPROPERTIES=174 +DBPROPERTIES=175 +BUCKETS=176 +SKEWED=177 +STORED=178 +DIRECTORIES=179 +LOCATION=180 +EXCHANGE=181 +ARCHIVE=182 +UNARCHIVE=183 +FILEFORMAT=184 +TOUCH=185 +COMPACT=186 +CONCATENATE=187 +CHANGE=188 +CASCADE=189 +RESTRICT=190 +CLUSTERED=191 +SORTED=192 +PURGE=193 +INPUTFORMAT=194 +OUTPUTFORMAT=195 +DATABASE=196 +DATABASES=197 +DFS=198 +TRUNCATE=199 +ANALYZE=200 +COMPUTE=201 +LIST=202 +STATISTICS=203 +PARTITIONED=204 +EXTERNAL=205 +DEFINED=206 +REVOKE=207 +GRANT=208 +LOCK=209 +UNLOCK=210 +MSCK=211 +REPAIR=212 +RECOVER=213 +EXPORT=214 +IMPORT=215 +LOAD=216 +ROLE=217 +ROLES=218 +COMPACTIONS=219 +PRINCIPALS=220 +TRANSACTIONS=221 +INDEX=222 +INDEXES=223 +LOCKS=224 +OPTION=225 +ANTI=226 +LOCAL=227 +INPATH=228 +WATERMARK=229 +UNNEST=230 +MATCH_RECOGNIZE=231 +MEASURES=232 +ONE=233 +PER=234 +MATCH=235 +SKIP1=236 +NEXT=237 +PAST=238 +PATTERN=239 +WITHIN=240 +DEFINE=241 +BIGINT_LITERAL=242 +SMALLINT_LITERAL=243 +TINYINT_LITERAL=244 +INTEGER_VALUE=245 +DECIMAL_VALUE=246 +DOUBLE_LITERAL=247 +BIGDECIMAL_LITERAL=248 +IDENTIFIER=249 +BACKQUOTED_IDENTIFIER=250 +SIMPLE_COMMENT=251 +BRACKETED_EMPTY_COMMENT=252 +BRACKETED_COMMENT=253 +WS=254 +UNRECOGNIZED=255 +REVERSE_QUOTE_ID=256 +DOUBLE_QUOTE_ID=257 +DOT_ID=258 +ID=259 +SYSTEM=260 +STRING=261 +ARRAY=262 +MAP=263 +CHAR=264 +VARCHAR=265 +BINARY=266 +VARBINARY=267 +BYTES=268 +DECIMAL=269 +TINYINT=270 +SMALLINT=271 +INT=272 +BIGINT=273 +FLOAT=274 +DOUBLE=275 +DATE=276 +TIME=277 +TIMESTAMP=278 +MULTISET=279 +BOOLEAN=280 +RAW=281 +ROW=282 +NULL=283 +EQUAL_SYMBOL=284 +GREATER_SYMBOL=285 +LESS_SYMBOL=286 +EXCLAMATION_SYMBOL=287 +BIT_NOT_OP=288 +BIT_OR_OP=289 +BIT_AND_OP=290 +BIT_XOR_OP=291 +DOT=292 +LS_BRACKET=293 +RS_BRACKET=294 +LR_BRACKET=295 +RR_BRACKET=296 +COMMA=297 +SEMICOLON=298 +AT_SIGN=299 +ZERO_DECIMAL=300 +ONE_DECIMAL=301 +TWO_DECIMAL=302 +SINGLE_QUOTE_SYMB=303 +DOUBLE_QUOTE_SYMB=304 +REVERSE_QUOTE_SYMB=305 +COLON_SYMB=306 +ASTERISK_SIGN=307 +UNDERLINE_SIGN=308 +HYPNEN_SIGN=309 +ADD_SIGN=310 +PENCENT_SIGN=311 +DOUBLE_HYPNEN_SIGN=312 +SLASH_SIGN=313 +STRING_LITERAL=314 +DECIMAL_LITERAL=315 +REAL_LITERAL=316 +BIT_STRING=317 +IDENTIFIER_BASE=318 +'SELECT'=4 +'FROM'=5 +'ADD'=6 +'AS'=7 +'ALL'=8 +'ANY'=9 +'DISTINCT'=10 +'WHERE'=11 +'GROUP'=12 +'BY'=13 +'GROUPING'=14 +'SETS'=15 +'CUBE'=16 +'ROLLUP'=17 +'ORDER'=18 +'HAVING'=19 +'LIMIT'=20 +'AT'=21 +'OR'=22 +'AND'=23 +'IN'=24 +'NOT'=25 +'NO'=26 +'EXISTS'=27 +'BETWEEN'=28 +'LIKE'=29 +'RLIKE'=30 +'IS'=31 +'TRUE'=32 +'FALSE'=33 +'NULLS'=34 +'ASC'=35 +'DESC'=36 +'FOR'=37 +'INTERVAL'=38 +'CASE'=39 +'WHEN'=40 +'THEN'=41 +'ELSE'=42 +'END'=43 +'JOIN'=44 +'CROSS'=45 +'OUTER'=46 +'INNER'=47 +'LEFT'=48 +'SEMI'=49 +'RIGHT'=50 +'FULL'=51 +'NATURAL'=52 +'ON'=53 +'PIVOT'=54 +'LATERAL'=55 +'WINDOW'=56 +'OVER'=57 +'PARTITION'=58 +'RANGE'=59 +'ROWS'=60 +'UNBOUNDED'=61 +'PRECEDING'=62 +'FOLLOWING'=63 +'CURRENT'=64 +'FIRST'=65 +'AFTER'=66 +'LAST'=67 +'WITH'=68 +'VALUES'=69 +'CREATE'=70 +'TABLE'=71 +'DIRECTORY'=72 +'VIEW'=73 +'REPLACE'=74 +'INSERT'=75 +'DELETE'=76 +'INTO'=77 +'DESCRIBE'=78 +'EXPLAIN'=79 +'FORMAT'=80 +'LOGICAL'=81 +'CODEGEN'=82 +'COST'=83 +'CAST'=84 +'SHOW'=85 +'TABLES'=86 +'COLUMNS'=87 +'COLUMN'=88 +'USE'=89 +'PARTITIONS'=90 +'FUNCTIONS'=91 +'DROP'=92 +'UNION'=93 +'EXCEPT'=94 +'SETMINUS'=95 +'INTERSECT'=96 +'TO'=97 +'TABLESAMPLE'=98 +'STRATIFY'=99 +'ALTER'=100 +'RENAME'=101 +'STRUCT'=102 +'COMMENT'=103 +'SET'=104 +'RESET'=105 +'DATA'=106 +'START'=107 +'TRANSACTION'=108 +'COMMIT'=109 +'ROLLBACK'=110 +'MACRO'=111 +'IGNORE'=112 +'BOTH'=113 +'LEADING'=114 +'TRAILING'=115 +'IF'=116 +'POSITION'=117 +'EXTRACT'=118 +'EQ'=119 +'NSEQ'=120 +'NEQ'=121 +'NEQJ'=122 +'LT'=123 +'LTE'=124 +'GT'=125 +'GTE'=126 +'PLUS'=127 +'MINUS'=128 +'ASTERISK'=129 +'SLASH'=130 +'PERCENT'=131 +'DIV'=132 +'TILDE'=133 +'AMPERSAND'=134 +'PIPE'=135 +'CONCAT_PIPE'=136 +'HAT'=137 +'PERCENTLIT'=138 +'BUCKET'=139 +'OUT'=140 +'OF'=141 +'SORT'=142 +'CLUSTER'=143 +'DISTRIBUTE'=144 +'OVERWRITE'=145 +'TRANSFORM'=146 +'REDUCE'=147 +'USING'=148 +'SERDE'=149 +'SERDEPROPERTIES'=150 +'RECORDREADER'=151 +'RECORDWRITER'=152 +'DELIMITED'=153 +'FIELDS'=154 +'TERMINATED'=155 +'COLLECTION'=156 +'ITEMS'=157 +'KEYS'=158 +'ESCAPED'=159 +'LINES'=160 +'SEPARATED'=161 +'FUNCTION'=162 +'EXTENDED'=163 +'REFRESH'=164 +'CLEAR'=165 +'CACHE'=166 +'UNCACHE'=167 +'LAZY'=168 +'FORMATTED'=169 +'GLOBAL'=170 +'TEMPORARY'=171 +'OPTIONS'=172 +'UNSET'=173 +'TBLPROPERTIES'=174 +'DBPROPERTIES'=175 +'BUCKETS'=176 +'SKEWED'=177 +'STORED'=178 +'DIRECTORIES'=179 +'LOCATION'=180 +'EXCHANGE'=181 +'ARCHIVE'=182 +'UNARCHIVE'=183 +'FILEFORMAT'=184 +'TOUCH'=185 +'COMPACT'=186 +'CONCATENATE'=187 +'CHANGE'=188 +'CASCADE'=189 +'RESTRICT'=190 +'CLUSTERED'=191 +'SORTED'=192 +'PURGE'=193 +'INPUTFORMAT'=194 +'OUTPUTFORMAT'=195 +'DATABASE'=196 +'DATABASES'=197 +'DFS'=198 +'TRUNCATE'=199 +'ANALYZE'=200 +'COMPUTE'=201 +'LIST'=202 +'STATISTICS'=203 +'PARTITIONED'=204 +'EXTERNAL'=205 +'DEFINED'=206 +'REVOKE'=207 +'GRANT'=208 +'LOCK'=209 +'UNLOCK'=210 +'MSCK'=211 +'REPAIR'=212 +'RECOVER'=213 +'EXPORT'=214 +'IMPORT'=215 +'LOAD'=216 +'ROLE'=217 +'ROLES'=218 +'COMPACTIONS'=219 +'PRINCIPALS'=220 +'TRANSACTIONS'=221 +'INDEX'=222 +'INDEXES'=223 +'LOCKS'=224 +'OPTION'=225 +'ANTI'=226 +'LOCAL'=227 +'INPATH'=228 +'WATERMARK'=229 +'UNNEST'=230 +'MATCH_RECOGNIZE'=231 +'MEASURES'=232 +'ONE'=233 +'PER'=234 +'MATCH'=235 +'SKIP1'=236 +'NEXT'=237 +'PAST'=238 +'PATTERN'=239 +'WITHIN'=240 +'DEFINE'=241 +'BIGINT_LITERAL'=242 +'SMALLINT_LITERAL'=243 +'TINYINT_LITERAL'=244 +'INTEGER_VALUE'=245 +'DECIMAL_VALUE'=246 +'DOUBLE_LITERAL'=247 +'BIGDECIMAL_LITERAL'=248 +'IDENTIFIER'=249 +'BACKQUOTED_IDENTIFIER'=250 +'SIMPLE_COMMENT'=251 +'BRACKETED_EMPTY_COMMENT'=252 +'BRACKETED_COMMENT'=253 +'WS'=254 +'UNRECOGNIZED'=255 +'SYSTEM'=260 +'STRING'=261 +'ARRAY'=262 +'MAP'=263 +'CHAR'=264 +'VARCHAR'=265 +'BINARY'=266 +'VARBINARY'=267 +'BYTES'=268 +'DECIMAL'=269 +'TINYINT'=270 +'SMALLINT'=271 +'INT'=272 +'BIGINT'=273 +'FLOAT'=274 +'DOUBLE'=275 +'DATE'=276 +'TIME'=277 +'TIMESTAMP'=278 +'MULTISET'=279 +'BOOLEAN'=280 +'RAW'=281 +'ROW'=282 +'NULL'=283 +'='=284 +'>'=285 +'<'=286 +'!'=287 +'~'=288 +'|'=289 +'&'=290 +'^'=291 +'.'=292 +'['=293 +']'=294 +'('=295 +')'=296 +','=297 +';'=298 +'@'=299 +'0'=300 +'1'=301 +'2'=302 +'\''=303 +'"'=304 +'`'=305 +':'=306 +'*'=307 +'_'=308 +'-'=309 +'+'=310 +'%'=311 +'--'=312 +'/'=313 diff --git a/src/lib/flinksql/FlinkSqlParserListener.js b/src/lib/flinksql/FlinkSqlParserListener.js index b488e6c..e9eb74b 100644 --- a/src/lib/flinksql/FlinkSqlParserListener.js +++ b/src/lib/flinksql/FlinkSqlParserListener.js @@ -245,186 +245,6 @@ 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) { -}; - -// Exit a parse tree produced by FlinkSqlParserParser#selectStatement. -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) { }; @@ -470,6 +290,294 @@ FlinkSqlParserListener.prototype.exitAllValueDifinition = 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#selectStatement. +FlinkSqlParserListener.prototype.enterSelectStatement = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParserParser#selectStatement. +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#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#expression. +FlinkSqlParserListener.prototype.enterExpression = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParserParser#expression. +FlinkSqlParserListener.prototype.exitExpression = function(ctx) { +}; + + +// Enter a parse tree produced by FlinkSqlParserParser#logicalNot. +FlinkSqlParserListener.prototype.enterLogicalNot = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParserParser#logicalNot. +FlinkSqlParserListener.prototype.exitLogicalNot = function(ctx) { +}; + + +// Enter a parse tree produced by FlinkSqlParserParser#predicated. +FlinkSqlParserListener.prototype.enterPredicated = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParserParser#predicated. +FlinkSqlParserListener.prototype.exitPredicated = function(ctx) { +}; + + +// Enter a parse tree produced by FlinkSqlParserParser#logicalBinary. +FlinkSqlParserListener.prototype.enterLogicalBinary = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParserParser#logicalBinary. +FlinkSqlParserListener.prototype.exitLogicalBinary = function(ctx) { +}; + + +// Enter a parse tree produced by FlinkSqlParserParser#predicate. +FlinkSqlParserListener.prototype.enterPredicate = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParserParser#predicate. +FlinkSqlParserListener.prototype.exitPredicate = function(ctx) { +}; + + +// Enter a parse tree produced by FlinkSqlParserParser#valueExpressionDefault. +FlinkSqlParserListener.prototype.enterValueExpressionDefault = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParserParser#valueExpressionDefault. +FlinkSqlParserListener.prototype.exitValueExpressionDefault = function(ctx) { +}; + + +// Enter a parse tree produced by FlinkSqlParserParser#comparison. +FlinkSqlParserListener.prototype.enterComparison = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParserParser#comparison. +FlinkSqlParserListener.prototype.exitComparison = function(ctx) { +}; + + +// Enter a parse tree produced by FlinkSqlParserParser#arithmeticBinary. +FlinkSqlParserListener.prototype.enterArithmeticBinary = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParserParser#arithmeticBinary. +FlinkSqlParserListener.prototype.exitArithmeticBinary = function(ctx) { +}; + + +// Enter a parse tree produced by FlinkSqlParserParser#arithmeticUnary. +FlinkSqlParserListener.prototype.enterArithmeticUnary = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParserParser#arithmeticUnary. +FlinkSqlParserListener.prototype.exitArithmeticUnary = function(ctx) { +}; + + +// Enter a parse tree produced by FlinkSqlParserParser#simpleCase. +FlinkSqlParserListener.prototype.enterSimpleCase = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParserParser#simpleCase. +FlinkSqlParserListener.prototype.exitSimpleCase = function(ctx) { +}; + + +// Enter a parse tree produced by FlinkSqlParserParser#constantDefault. +FlinkSqlParserListener.prototype.enterConstantDefault = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParserParser#constantDefault. +FlinkSqlParserListener.prototype.exitConstantDefault = function(ctx) { +}; + + +// Enter a parse tree produced by FlinkSqlParserParser#parenthesizedExpression. +FlinkSqlParserListener.prototype.enterParenthesizedExpression = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParserParser#parenthesizedExpression. +FlinkSqlParserListener.prototype.exitParenthesizedExpression = function(ctx) { +}; + + +// Enter a parse tree produced by FlinkSqlParserParser#last. +FlinkSqlParserListener.prototype.enterLast = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParserParser#last. +FlinkSqlParserListener.prototype.exitLast = function(ctx) { +}; + + +// Enter a parse tree produced by FlinkSqlParserParser#star. +FlinkSqlParserListener.prototype.enterStar = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParserParser#star. +FlinkSqlParserListener.prototype.exitStar = function(ctx) { +}; + + +// Enter a parse tree produced by FlinkSqlParserParser#subscript. +FlinkSqlParserListener.prototype.enterSubscript = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParserParser#subscript. +FlinkSqlParserListener.prototype.exitSubscript = function(ctx) { +}; + + +// Enter a parse tree produced by FlinkSqlParserParser#searchedCase. +FlinkSqlParserListener.prototype.enterSearchedCase = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParserParser#searchedCase. +FlinkSqlParserListener.prototype.exitSearchedCase = function(ctx) { +}; + + +// Enter a parse tree produced by FlinkSqlParserParser#position. +FlinkSqlParserListener.prototype.enterPosition = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParserParser#position. +FlinkSqlParserListener.prototype.exitPosition = function(ctx) { +}; + + +// Enter a parse tree produced by FlinkSqlParserParser#first. +FlinkSqlParserListener.prototype.enterFirst = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParserParser#first. +FlinkSqlParserListener.prototype.exitFirst = function(ctx) { +}; + + +// Enter a parse tree produced by FlinkSqlParserParser#tableAlias. +FlinkSqlParserListener.prototype.enterTableAlias = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParserParser#tableAlias. +FlinkSqlParserListener.prototype.exitTableAlias = function(ctx) { +}; + + +// Enter a parse tree produced by FlinkSqlParserParser#identifierList. +FlinkSqlParserListener.prototype.enterIdentifierList = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParserParser#identifierList. +FlinkSqlParserListener.prototype.exitIdentifierList = function(ctx) { +}; + + +// Enter a parse tree produced by FlinkSqlParserParser#identifierSeq. +FlinkSqlParserListener.prototype.enterIdentifierSeq = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParserParser#identifierSeq. +FlinkSqlParserListener.prototype.exitIdentifierSeq = function(ctx) { +}; + + +// Enter a parse tree produced by FlinkSqlParserParser#identifier. +FlinkSqlParserListener.prototype.enterIdentifier = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParserParser#identifier. +FlinkSqlParserListener.prototype.exitIdentifier = function(ctx) { +}; + + +// Enter a parse tree produced by FlinkSqlParserParser#unquotedIdentifier. +FlinkSqlParserListener.prototype.enterUnquotedIdentifier = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParserParser#unquotedIdentifier. +FlinkSqlParserListener.prototype.exitUnquotedIdentifier = function(ctx) { +}; + + +// Enter a parse tree produced by FlinkSqlParserParser#quotedIdentifierAlternative. +FlinkSqlParserListener.prototype.enterQuotedIdentifierAlternative = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParserParser#quotedIdentifierAlternative. +FlinkSqlParserListener.prototype.exitQuotedIdentifierAlternative = function(ctx) { +}; + + +// Enter a parse tree produced by FlinkSqlParserParser#quotedIdentifier. +FlinkSqlParserListener.prototype.enterQuotedIdentifier = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParserParser#quotedIdentifier. +FlinkSqlParserListener.prototype.exitQuotedIdentifier = function(ctx) { +}; + + +// Enter a parse tree produced by FlinkSqlParserParser#whenClause. +FlinkSqlParserListener.prototype.enterWhenClause = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParserParser#whenClause. +FlinkSqlParserListener.prototype.exitWhenClause = function(ctx) { +}; + + // Enter a parse tree produced by FlinkSqlParserParser#uidList. FlinkSqlParserListener.prototype.enterUidList = function(ctx) { }; @@ -524,195 +632,6 @@ 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) { }; @@ -803,5 +722,14 @@ FlinkSqlParserListener.prototype.exitBooleanLiteral = function(ctx) { }; +// Enter a parse tree produced by FlinkSqlParserParser#setQuantifier. +FlinkSqlParserListener.prototype.enterSetQuantifier = function(ctx) { +}; + +// Exit a parse tree produced by FlinkSqlParserParser#setQuantifier. +FlinkSqlParserListener.prototype.exitSetQuantifier = 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 e712cc0..508e567 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\u0139\u035c\u0004\u0002\t\u0002\u0004\u0003\t\u0003\u0004\u0004", + "\u0003\u0141\u02d4\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", @@ -21,559 +21,467 @@ var serializedATN = ["\u0003\u608b\ua72a\u8133\ub9ed\u417c\u3be7\u7786\u5964", "+\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\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", + "@\t@\u0004A\tA\u0004B\tB\u0004C\tC\u0003\u0002\u0003\u0002\u0003\u0002", + "\u0003\u0003\u0003\u0003\u0003\u0003\u0003\u0004\u0003\u0004\u0003\u0004", + "\u0003\u0004\u0007\u0004\u0091\n\u0004\f\u0004\u000e\u0004\u0094\u000b", + "\u0004\u0003\u0005\u0003\u0005\u0005\u0005\u0098\n\u0005\u0003\u0006", + "\u0003\u0006\u0003\u0007\u0003\u0007\u0003\u0007\u0003\u0007\u0003\u0007", + "\u0003\u0007\u0003\u0007\u0003\u0007\u0003\u0007\u0003\u0007\u0003\u0007", + "\u0005\u0007\u00a7\n\u0007\u0003\b\u0003\b\u0005\b\u00ab\n\b\u0003\t", + "\u0003\t\u0003\t\u0003\t\u0003\t\u0003\t\u0003\t\u0007\t\u00b4\n\t\f", + "\t\u000e\t\u00b7\u000b\t\u0003\t\u0003\t\u0005\t\u00bb\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\u00cd\n\u000e\f\u000e\u000e\u000e\u00d0\u000b\u000e\u0003\u000f", + "\u0003\u000f\u0003\u0010\u0003\u0010\u0003\u0010\u0005\u0010\u00d7\n", + "\u0010\u0003\u0010\u0003\u0010\u0003\u0010\u0003\u0011\u0003\u0011\u0005", + "\u0011\u00de\n\u0011\u0003\u0011\u0003\u0011\u0005\u0011\u00e2\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", + "\u00ef\n\u0013\u0003\u0014\u0003\u0014\u0003\u0014\u0003\u0014\u0003", + "\u0015\u0003\u0015\u0003\u0015\u0003\u0015\u0003\u0015\u0007\u0015\u00fa", + "\n\u0015\f\u0015\u000e\u0015\u00fd\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\u010b\n", + "\u0018\u0003\u0018\u0003\u0018\u0003\u0019\u0003\u0019\u0003\u0019\u0005", + "\u0019\u0112\n\u0019\u0003\u0019\u0003\u0019\u0005\u0019\u0116\n\u0019", + "\u0003\u001a\u0003\u001a\u0005\u001a\u011a\n\u001a\u0003\u001a\u0003", + "\u001a\u0005\u001a\u011e\n\u001a\u0003\u001a\u0003\u001a\u0003\u001b", + "\u0003\u001b\u0003\u001b\u0003\u001b\u0005\u001b\u0126\n\u001b\u0003", + "\u001b\u0003\u001b\u0005\u001b\u012a\n\u001b\u0003\u001b\u0003\u001b", + "\u0003\u001c\u0003\u001c\u0003\u001c\u0003\u001c\u0005\u001c\u0132\n", + "\u001c\u0003\u001c\u0003\u001c\u0005\u001c\u0136\n\u001c\u0003\u001d", + "\u0003\u001d\u0003\u001d\u0003\u001d\u0003\u001d\u0007\u001d\u013d\n", + "\u001d\f\u001d\u000e\u001d\u0140\u000b\u001d\u0003\u001d\u0003\u001d", + "\u0003\u001e\u0003\u001e\u0003\u001e\u0003\u001e\u0007\u001e\u0148\n", + "\u001e\f\u001e\u000e\u001e\u014b\u000b\u001e\u0003\u001f\u0003\u001f", + "\u0003\u001f\u0003\u001f\u0007\u001f\u0151\n\u001f\f\u001f\u000e\u001f", + "\u0154\u000b\u001f\u0003\u001f\u0003\u001f\u0003 \u0003 \u0003 \u0003", + " \u0005 \u015c\n \u0003!\u0003!\u0003\"\u0003\"\u0005\"\u0162\n\"\u0003", + "\"\u0003\"\u0003\"\u0003\"\u0007\"\u0168\n\"\f\"\u000e\"\u016b\u000b", + "\"\u0005\"\u016d\n\"\u0003\"\u0003\"\u0003\"\u0003#\u0003#\u0005#\u0174", + "\n#\u0003#\u0005#\u0177\n#\u0003#\u0003#\u0003#\u0003#\u0005#\u017d", + "\n#\u0003$\u0003$\u0003$\u0007$\u0182\n$\f$\u000e$\u0185\u000b$\u0003", + "%\u0003%\u0003%\u0003&\u0005&\u018b\n&\u0003&\u0003&\u0003\'\u0003\'", + "\u0003(\u0003(\u0003(\u0003(\u0003(\u0005(\u0196\n(\u0005(\u0198\n(", + "\u0003(\u0003(\u0003(\u0003(\u0003(\u0003(\u0007(\u01a0\n(\f(\u000e", + "(\u01a3\u000b(\u0003)\u0005)\u01a6\n)\u0003)\u0003)\u0003)\u0003)\u0003", + ")\u0003)\u0005)\u01ae\n)\u0003)\u0003)\u0003)\u0003)\u0003)\u0007)\u01b5", + "\n)\f)\u000e)\u01b8\u000b)\u0003)\u0003)\u0003)\u0005)\u01bd\n)\u0003", + ")\u0003)\u0003)\u0005)\u01c2\n)\u0003)\u0003)\u0003)\u0003)\u0003)\u0003", + ")\u0003)\u0003)\u0007)\u01cc\n)\f)\u000e)\u01cf\u000b)\u0003)\u0003", + ")\u0005)\u01d3\n)\u0003)\u0005)\u01d6\n)\u0003)\u0003)\u0003)\u0003", + ")\u0005)\u01dc\n)\u0003)\u0003)\u0003)\u0005)\u01e1\n)\u0003)\u0003", + ")\u0003)\u0005)\u01e6\n)\u0003)\u0003)\u0003)\u0005)\u01eb\n)\u0003", + "*\u0003*\u0003*\u0003*\u0005*\u01f1\n*\u0003*\u0003*\u0003*\u0003*\u0003", + "*\u0003*\u0003*\u0003*\u0003*\u0003*\u0003*\u0003*\u0003*\u0003*\u0003", + "*\u0003*\u0003*\u0003*\u0003*\u0007*\u0206\n*\f*\u000e*\u0209\u000b", + "*\u0003+\u0003+\u0003+\u0006+\u020e\n+\r+\u000e+\u020f\u0003+\u0003", + "+\u0005+\u0214\n+\u0003+\u0003+\u0003+\u0003+\u0003+\u0006+\u021b\n", + "+\r+\u000e+\u021c\u0003+\u0003+\u0005+\u0221\n+\u0003+\u0003+\u0003", + "+\u0003+\u0003+\u0003+\u0003+\u0005+\u022a\n+\u0003+\u0003+\u0003+\u0003", + "+\u0003+\u0003+\u0003+\u0005+\u0233\n+\u0003+\u0003+\u0003+\u0003+\u0003", + "+\u0003+\u0003+\u0003+\u0003+\u0003+\u0003+\u0003+\u0003+\u0003+\u0003", + "+\u0005+\u0244\n+\u0003+\u0003+\u0003+\u0003+\u0003+\u0007+\u024b\n", + "+\f+\u000e+\u024e\u000b+\u0003,\u0005,\u0251\n,\u0003,\u0003,\u0005", + ",\u0255\n,\u0005,\u0257\n,\u0003-\u0003-\u0003-\u0003-\u0003.\u0003", + ".\u0003.\u0007.\u0260\n.\f.\u000e.\u0263\u000b.\u0003/\u0003/\u0003", + "0\u00030\u00050\u0269\n0\u00031\u00031\u00032\u00032\u00032\u00032\u0003", + "2\u00033\u00033\u00033\u00073\u0275\n3\f3\u000e3\u0278\u000b3\u0003", + "4\u00034\u00074\u027c\n4\f4\u000e4\u027f\u000b4\u00035\u00035\u0003", + "5\u00035\u00035\u00075\u0286\n5\f5\u000e5\u0289\u000b5\u00035\u0003", + "5\u00036\u00036\u00036\u00036\u00037\u00037\u00037\u00038\u00038\u0003", + "8\u00038\u00039\u00039\u00039\u00039\u00039\u00039\u00059\u029e\n9\u0003", + ":\u0003:\u0003:\u0003:\u0003:\u0003:\u0003:\u0003:\u0003:\u0003:\u0003", + ":\u0003:\u0003:\u0003:\u0005:\u02ae\n:\u0003;\u0003;\u0003;\u0003;\u0003", + ";\u0003;\u0003;\u0005;\u02b7\n;\u0003<\u0003<\u0003=\u0003=\u0003>\u0003", + ">\u0003?\u0003?\u0003?\u0003?\u0003?\u0003?\u0003?\u0003?\u0005?\u02c7", + "\n?\u0003?\u0005?\u02ca\n?\u0003@\u0003@\u0003A\u0003A\u0003B\u0003", + "B\u0003C\u0003C\u0003C\u0003\u027d\u0005NRTD\u0002\u0004\u0006\b\n\f", + "\u000e\u0010\u0012\u0014\u0016\u0018\u001a\u001c\u001e \"$&(*,.0246", + "8:<>@BDFHJLNPRTVXZ\\^`bdfhjlnprtvxz|~\u0080\u0082\u0084\u0002\u000e", + "\u0003\u0002\u0107\u011d\u0003\u0002\u00bf\u00c0\u0004\u0002OO\u0093", + "\u0093\u0003\u0002\n\u000b\u0003\u0002\"#\u0004\u0002\u0081\u0082\u0087", + "\u0087\u0003\u0002\u0083\u0086\u0004\u0002\u0081\u0082\u008a\u008a\u0005", + "\u0002\u0086\u0086\u0135\u0135\u0137\u013b\u0005\u0002\u001b\u001b\u0121", + "\u0122\u0137\u0138\u0004\u0002\u012e\u0130\u013d\u013d\u0004\u0002\n", + "\n\f\f\u0002\u0307\u0002\u0086\u0003\u0002\u0002\u0002\u0004\u0089\u0003", + "\u0002\u0002\u0002\u0006\u0092\u0003\u0002\u0002\u0002\b\u0097\u0003", + "\u0002\u0002\u0002\n\u0099\u0003\u0002\u0002\u0002\f\u00a6\u0003\u0002", + "\u0002\u0002\u000e\u00aa\u0003\u0002\u0002\u0002\u0010\u00ac\u0003\u0002", + "\u0002\u0002\u0012\u00be\u0003\u0002\u0002\u0002\u0014\u00c1\u0003\u0002", + "\u0002\u0002\u0016\u00c3\u0003\u0002\u0002\u0002\u0018\u00c5\u0003\u0002", + "\u0002\u0002\u001a\u00c9\u0003\u0002\u0002\u0002\u001c\u00d1\u0003\u0002", + "\u0002\u0002\u001e\u00d3\u0003\u0002\u0002\u0002 \u00db\u0003\u0002", + "\u0002\u0002\"\u00e7\u0003\u0002\u0002\u0002$\u00e9\u0003\u0002\u0002", + "\u0002&\u00f0\u0003\u0002\u0002\u0002(\u00f4\u0003\u0002\u0002\u0002", + "*\u0100\u0003\u0002\u0002\u0002,\u0105\u0003\u0002\u0002\u0002.\u0107", + "\u0003\u0002\u0002\u00020\u010e\u0003\u0002\u0002\u00022\u0117\u0003", + "\u0002\u0002\u00024\u0121\u0003\u0002\u0002\u00026\u012d\u0003\u0002", + "\u0002\u00028\u0137\u0003\u0002\u0002\u0002:\u0143\u0003\u0002\u0002", + "\u0002<\u014c\u0003\u0002\u0002\u0002>\u015b\u0003\u0002\u0002\u0002", + "@\u015d\u0003\u0002\u0002\u0002B\u015f\u0003\u0002\u0002\u0002D\u017c", + "\u0003\u0002\u0002\u0002F\u017e\u0003\u0002\u0002\u0002H\u0186\u0003", + "\u0002\u0002\u0002J\u018a\u0003\u0002\u0002\u0002L\u018e\u0003\u0002", + "\u0002\u0002N\u0197\u0003\u0002\u0002\u0002P\u01ea\u0003\u0002\u0002", + "\u0002R\u01f0\u0003\u0002\u0002\u0002T\u0243\u0003\u0002\u0002\u0002", + "V\u0256\u0003\u0002\u0002\u0002X\u0258\u0003\u0002\u0002\u0002Z\u025c", + "\u0003\u0002\u0002\u0002\\\u0264\u0003\u0002\u0002\u0002^\u0268\u0003", + "\u0002\u0002\u0002`\u026a\u0003\u0002\u0002\u0002b\u026c\u0003\u0002", + "\u0002\u0002d\u0271\u0003\u0002\u0002\u0002f\u0279\u0003\u0002\u0002", + "\u0002h\u0280\u0003\u0002\u0002\u0002j\u028c\u0003\u0002\u0002\u0002", + "l\u0290\u0003\u0002\u0002\u0002n\u0293\u0003\u0002\u0002\u0002p\u029d", + "\u0003\u0002\u0002\u0002r\u02ad\u0003\u0002\u0002\u0002t\u02b6\u0003", + "\u0002\u0002\u0002v\u02b8\u0003\u0002\u0002\u0002x\u02ba\u0003\u0002", + "\u0002\u0002z\u02bc\u0003\u0002\u0002\u0002|\u02c9\u0003\u0002\u0002", + "\u0002~\u02cb\u0003\u0002\u0002\u0002\u0080\u02cd\u0003\u0002\u0002", + "\u0002\u0082\u02cf\u0003\u0002\u0002\u0002\u0084\u02d1\u0003\u0002\u0002", + "\u0002\u0086\u0087\u0005\u0004\u0003\u0002\u0087\u0088\u0007\u0002\u0002", + "\u0003\u0088\u0003\u0003\u0002\u0002\u0002\u0089\u008a\u0005\u0006\u0004", + "\u0002\u008a\u008b\u0007\u0002\u0002\u0003\u008b\u0005\u0003\u0002\u0002", + "\u0002\u008c\u008d\u0005\b\u0005\u0002\u008d\u008e\u0007\u012c\u0002", + "\u0002\u008e\u0091\u0003\u0002\u0002\u0002\u008f\u0091\u0005\n\u0006", + "\u0002\u0090\u008c\u0003\u0002\u0002\u0002\u0090\u008f\u0003\u0002\u0002", + "\u0002\u0091\u0094\u0003\u0002\u0002\u0002\u0092\u0090\u0003\u0002\u0002", + "\u0002\u0092\u0093\u0003\u0002\u0002\u0002\u0093\u0007\u0003\u0002\u0002", + "\u0002\u0094\u0092\u0003\u0002\u0002\u0002\u0095\u0098\u0005\f\u0007", + "\u0002\u0096\u0098\u0005\u000e\b\u0002\u0097\u0095\u0003\u0002\u0002", + "\u0002\u0097\u0096\u0003\u0002\u0002\u0002\u0098\t\u0003\u0002\u0002", + "\u0002\u0099\u009a\u0007\u012c\u0002\u0002\u009a\u000b\u0003\u0002\u0002", + "\u0002\u009b\u00a7\u0005\u0010\t\u0002\u009c\u00a7\u0005\u001e\u0010", + "\u0002\u009d\u00a7\u0005 \u0011\u0002\u009e\u00a7\u0005\"\u0012\u0002", + "\u009f\u00a7\u0005$\u0013\u0002\u00a0\u00a7\u0005*\u0016\u0002\u00a1", + "\u00a7\u0005,\u0017\u0002\u00a2\u00a7\u0005.\u0018\u0002\u00a3\u00a7", + "\u00050\u0019\u0002\u00a4\u00a7\u00052\u001a\u0002\u00a5\u00a7\u0005", + "4\u001b\u0002\u00a6\u009b\u0003\u0002\u0002\u0002\u00a6\u009c\u0003", + "\u0002\u0002\u0002\u00a6\u009d\u0003\u0002\u0002\u0002\u00a6\u009e\u0003", + "\u0002\u0002\u0002\u00a6\u009f\u0003\u0002\u0002\u0002\u00a6\u00a0\u0003", + "\u0002\u0002\u0002\u00a6\u00a1\u0003\u0002\u0002\u0002\u00a6\u00a2\u0003", + "\u0002\u0002\u0002\u00a6\u00a3\u0003\u0002\u0002\u0002\u00a6\u00a4\u0003", + "\u0002\u0002\u0002\u00a6\u00a5\u0003\u0002\u0002\u0002\u00a7\r\u0003", + "\u0002\u0002\u0002\u00a8\u00ab\u0005@!\u0002\u00a9\u00ab\u00056\u001c", + "\u0002\u00aa\u00a8\u0003\u0002\u0002\u0002\u00aa\u00a9\u0003\u0002\u0002", + "\u0002\u00ab\u000f\u0003\u0002\u0002\u0002\u00ac\u00ad\u0007H\u0002", + "\u0002\u00ad\u00ae\u0007I\u0002\u0002\u00ae\u00af\u0005f4\u0002\u00af", + "\u00b0\u0007\u0129\u0002\u0002\u00b0\u00b5\u0005\u0012\n\u0002\u00b1", + "\u00b2\u0007\u012b\u0002\u0002\u00b2\u00b4\u0005\u0012\n\u0002\u00b3", + "\u00b1\u0003\u0002\u0002\u0002\u00b4\u00b7\u0003\u0002\u0002\u0002\u00b5", + "\u00b3\u0003\u0002\u0002\u0002\u00b5\u00b6\u0003\u0002\u0002\u0002\u00b6", + "\u00b8\u0003\u0002\u0002\u0002\u00b7\u00b5\u0003\u0002\u0002\u0002\u00b8", + "\u00ba\u0007\u012a\u0002\u0002\u00b9\u00bb\u0005\u0018\r\u0002\u00ba", + "\u00b9\u0003\u0002\u0002\u0002\u00ba\u00bb\u0003\u0002\u0002\u0002\u00bb", + "\u00bc\u0003\u0002\u0002\u0002\u00bc\u00bd\u0005h5\u0002\u00bd\u0011", + "\u0003\u0002\u0002\u0002\u00be\u00bf\u0005\u0014\u000b\u0002\u00bf\u00c0", + "\u0005\u0016\f\u0002\u00c0\u0013\u0003\u0002\u0002\u0002\u00c1\u00c2", + "\u0007\u0105\u0002\u0002\u00c2\u0015\u0003\u0002\u0002\u0002\u00c3\u00c4", + "\t\u0002\u0002\u0002\u00c4\u0017\u0003\u0002\u0002\u0002\u00c5\u00c6", + "\u0007\u00ce\u0002\u0002\u00c6\u00c7\u0007\u000f\u0002\u0002\u00c7\u00c8", + "\u0005\u001a\u000e\u0002\u00c8\u0019\u0003\u0002\u0002\u0002\u00c9\u00ce", + "\u0005\u001c\u000f\u0002\u00ca\u00cb\u0007\u012b\u0002\u0002\u00cb\u00cd", + "\u0005\u001c\u000f\u0002\u00cc\u00ca\u0003\u0002\u0002\u0002\u00cd\u00d0", + "\u0003\u0002\u0002\u0002\u00ce\u00cc\u0003\u0002\u0002\u0002\u00ce\u00cf", + "\u0003\u0002\u0002\u0002\u00cf\u001b\u0003\u0002\u0002\u0002\u00d0\u00ce", + "\u0003\u0002\u0002\u0002\u00d1\u00d2\u0007\u0105\u0002\u0002\u00d2\u001d", + "\u0003\u0002\u0002\u0002\u00d3\u00d4\u0007H\u0002\u0002\u00d4\u00d6", + "\u0007\u00c6\u0002\u0002\u00d5\u00d7\u0005j6\u0002\u00d6\u00d5\u0003", + "\u0002\u0002\u0002\u00d6\u00d7\u0003\u0002\u0002\u0002\u00d7\u00d8\u0003", + "\u0002\u0002\u0002\u00d8\u00d9\u0005f4\u0002\u00d9\u00da\u0005h5\u0002", + "\u00da\u001f\u0003\u0002\u0002\u0002\u00db\u00dd\u0007H\u0002\u0002", + "\u00dc\u00de\u0007\u00ad\u0002\u0002\u00dd\u00dc\u0003\u0002\u0002\u0002", + "\u00dd\u00de\u0003\u0002\u0002\u0002\u00de\u00df\u0003\u0002\u0002\u0002", + "\u00df\u00e1\u0007K\u0002\u0002\u00e0\u00e2\u0005j6\u0002\u00e1\u00e0", "\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(""); + "\u0003\u0002\u0002\u0002\u00e3\u00e4\u0005f4\u0002\u00e4\u00e5\u0007", + "\t\u0002\u0002\u00e5\u00e6\u0005B\"\u0002\u00e6!\u0003\u0002\u0002\u0002", + "\u00e7\u00e8\u0003\u0002\u0002\u0002\u00e8#\u0003\u0002\u0002\u0002", + "\u00e9\u00ea\u0007f\u0002\u0002\u00ea\u00eb\u0007I\u0002\u0002\u00eb", + "\u00ee\u0005f4\u0002\u00ec\u00ef\u0005&\u0014\u0002\u00ed\u00ef\u0005", + "(\u0015\u0002\u00ee\u00ec\u0003\u0002\u0002\u0002\u00ee\u00ed\u0003", + "\u0002\u0002\u0002\u00ef%\u0003\u0002\u0002\u0002\u00f0\u00f1\u0007", + "g\u0002\u0002\u00f1\u00f2\u0007c\u0002\u0002\u00f2\u00f3\u0005f4\u0002", + "\u00f3\'\u0003\u0002\u0002\u0002\u00f4\u00f5\u0007j\u0002\u0002\u00f5", + "\u00f6\u0007\u0129\u0002\u0002\u00f6\u00fb\u0005n8\u0002\u00f7\u00f8", + "\u0007\u012b\u0002\u0002\u00f8\u00fa\u0005n8\u0002\u00f9\u00f7\u0003", + "\u0002\u0002\u0002\u00fa\u00fd\u0003\u0002\u0002\u0002\u00fb\u00f9\u0003", + "\u0002\u0002\u0002\u00fb\u00fc\u0003\u0002\u0002\u0002\u00fc\u00fe\u0003", + "\u0002\u0002\u0002\u00fd\u00fb\u0003\u0002\u0002\u0002\u00fe\u00ff\u0007", + "\u012a\u0002\u0002\u00ff)\u0003\u0002\u0002\u0002\u0100\u0101\u0007", + "f\u0002\u0002\u0101\u0102\u0007\u00c6\u0002\u0002\u0102\u0103\u0005", + "f4\u0002\u0103\u0104\u0005(\u0015\u0002\u0104+\u0003\u0002\u0002\u0002", + "\u0105\u0106\u0003\u0002\u0002\u0002\u0106-\u0003\u0002\u0002\u0002", + "\u0107\u0108\u0007^\u0002\u0002\u0108\u010a\u0007I\u0002\u0002\u0109", + "\u010b\u0005l7\u0002\u010a\u0109\u0003\u0002\u0002\u0002\u010a\u010b", + "\u0003\u0002\u0002\u0002\u010b\u010c\u0003\u0002\u0002\u0002\u010c\u010d", + "\u0005f4\u0002\u010d/\u0003\u0002\u0002\u0002\u010e\u010f\u0007^\u0002", + "\u0002\u010f\u0111\u0007\u00c6\u0002\u0002\u0110\u0112\u0005l7\u0002", + "\u0111\u0110\u0003\u0002\u0002\u0002\u0111\u0112\u0003\u0002\u0002\u0002", + "\u0112\u0113\u0003\u0002\u0002\u0002\u0113\u0115\u0005f4\u0002\u0114", + "\u0116\t\u0003\u0002\u0002\u0115\u0114\u0003\u0002\u0002\u0002\u0115", + "\u0116\u0003\u0002\u0002\u0002\u01161\u0003\u0002\u0002\u0002\u0117", + "\u0119\u0007^\u0002\u0002\u0118\u011a\u0007\u00ad\u0002\u0002\u0119", + "\u0118\u0003\u0002\u0002\u0002\u0119\u011a\u0003\u0002\u0002\u0002\u011a", + "\u011b\u0003\u0002\u0002\u0002\u011b\u011d\u0007K\u0002\u0002\u011c", + "\u011e\u0005l7\u0002\u011d\u011c\u0003\u0002\u0002\u0002\u011d\u011e", + "\u0003\u0002\u0002\u0002\u011e\u011f\u0003\u0002\u0002\u0002\u011f\u0120", + "\u0005f4\u0002\u01203\u0003\u0002\u0002\u0002\u0121\u0125\u0007^\u0002", + "\u0002\u0122\u0126\u0007\u00ad\u0002\u0002\u0123\u0124\u0007\u00ad\u0002", + "\u0002\u0124\u0126\u0007\u0106\u0002\u0002\u0125\u0122\u0003\u0002\u0002", + "\u0002\u0125\u0123\u0003\u0002\u0002\u0002\u0125\u0126\u0003\u0002\u0002", + "\u0002\u0126\u0127\u0003\u0002\u0002\u0002\u0127\u0129\u0007\u00a4\u0002", + "\u0002\u0128\u012a\u0005l7\u0002\u0129\u0128\u0003\u0002\u0002\u0002", + "\u0129\u012a\u0003\u0002\u0002\u0002\u012a\u012b\u0003\u0002\u0002\u0002", + "\u012b\u012c\u0005f4\u0002\u012c5\u0003\u0002\u0002\u0002\u012d\u012e", + "\u0007M\u0002\u0002\u012e\u012f\t\u0004\u0002\u0002\u012f\u0135\u0005", + "f4\u0002\u0130\u0132\u00058\u001d\u0002\u0131\u0130\u0003\u0002\u0002", + "\u0002\u0131\u0132\u0003\u0002\u0002\u0002\u0132\u0133\u0003\u0002\u0002", + "\u0002\u0133\u0136\u0005B\"\u0002\u0134\u0136\u0005:\u001e\u0002\u0135", + "\u0131\u0003\u0002\u0002\u0002\u0135\u0134\u0003\u0002\u0002\u0002\u0136", + "7\u0003\u0002\u0002\u0002\u0137\u0138\u0007<\u0002\u0002\u0138\u0139", + "\u0007\u0129\u0002\u0002\u0139\u013e\u0005n8\u0002\u013a\u013b\u0007", + "\u012b\u0002\u0002\u013b\u013d\u0005n8\u0002\u013c\u013a\u0003\u0002", + "\u0002\u0002\u013d\u0140\u0003\u0002\u0002\u0002\u013e\u013c\u0003\u0002", + "\u0002\u0002\u013e\u013f\u0003\u0002\u0002\u0002\u013f\u0141\u0003\u0002", + "\u0002\u0002\u0140\u013e\u0003\u0002\u0002\u0002\u0141\u0142\u0007\u012a", + "\u0002\u0002\u01429\u0003\u0002\u0002\u0002\u0143\u0144\u0007G\u0002", + "\u0002\u0144\u0149\u0005<\u001f\u0002\u0145\u0146\u0007\u012b\u0002", + "\u0002\u0146\u0148\u0005<\u001f\u0002\u0147\u0145\u0003\u0002\u0002", + "\u0002\u0148\u014b\u0003\u0002\u0002\u0002\u0149\u0147\u0003\u0002\u0002", + "\u0002\u0149\u014a\u0003\u0002\u0002\u0002\u014a;\u0003\u0002\u0002", + "\u0002\u014b\u0149\u0003\u0002\u0002\u0002\u014c\u014d\u0007\u0129\u0002", + "\u0002\u014d\u0152\u0005> \u0002\u014e\u014f\u0007\u012b\u0002\u0002", + "\u014f\u0151\u0005> \u0002\u0150\u014e\u0003\u0002\u0002\u0002\u0151", + "\u0154\u0003\u0002\u0002\u0002\u0152\u0150\u0003\u0002\u0002\u0002\u0152", + "\u0153\u0003\u0002\u0002\u0002\u0153\u0155\u0003\u0002\u0002\u0002\u0154", + "\u0152\u0003\u0002\u0002\u0002\u0155\u0156\u0007\u012a\u0002\u0002\u0156", + "=\u0003\u0002\u0002\u0002\u0157\u015c\u0005~@\u0002\u0158\u015c\u0005", + "\u0082B\u0002\u0159\u015c\u0007\u0141\u0002\u0002\u015a\u015c\u0007", + "\u011d\u0002\u0002\u015b\u0157\u0003\u0002\u0002\u0002\u015b\u0158\u0003", + "\u0002\u0002\u0002\u015b\u0159\u0003\u0002\u0002\u0002\u015b\u015a\u0003", + "\u0002\u0002\u0002\u015c?\u0003\u0002\u0002\u0002\u015d\u015e\u0003", + "\u0002\u0002\u0002\u015eA\u0003\u0002\u0002\u0002\u015f\u0161\u0007", + "\u0006\u0002\u0002\u0160\u0162\u0005\u0084C\u0002\u0161\u0160\u0003", + "\u0002\u0002\u0002\u0161\u0162\u0003\u0002\u0002\u0002\u0162\u016c\u0003", + "\u0002\u0002\u0002\u0163\u016d\u0007\u0135\u0002\u0002\u0164\u0169\u0005", + "D#\u0002\u0165\u0166\u0007\u012b\u0002\u0002\u0166\u0168\u0005D#\u0002", + "\u0167\u0165\u0003\u0002\u0002\u0002\u0168\u016b\u0003\u0002\u0002\u0002", + "\u0169\u0167\u0003\u0002\u0002\u0002\u0169\u016a\u0003\u0002\u0002\u0002", + "\u016a\u016d\u0003\u0002\u0002\u0002\u016b\u0169\u0003\u0002\u0002\u0002", + "\u016c\u0163\u0003\u0002\u0002\u0002\u016c\u0164\u0003\u0002\u0002\u0002", + "\u016d\u016e\u0003\u0002\u0002\u0002\u016e\u016f\u0007\u0007\u0002\u0002", + "\u016f\u0170\u0005F$\u0002\u0170C\u0003\u0002\u0002\u0002\u0171\u0176", + "\u0005L\'\u0002\u0172\u0174\u0007\t\u0002\u0002\u0173\u0172\u0003\u0002", + "\u0002\u0002\u0173\u0174\u0003\u0002\u0002\u0002\u0174\u0175\u0003\u0002", + "\u0002\u0002\u0175\u0177\u0005f4\u0002\u0176\u0173\u0003\u0002\u0002", + "\u0002\u0176\u0177\u0003\u0002\u0002\u0002\u0177\u017d\u0003\u0002\u0002", + "\u0002\u0178\u0179\u0005f4\u0002\u0179\u017a\u0007\u0126\u0002\u0002", + "\u017a\u017b\u0007\u0135\u0002\u0002\u017b\u017d\u0003\u0002\u0002\u0002", + "\u017c\u0171\u0003\u0002\u0002\u0002\u017c\u0178\u0003\u0002\u0002\u0002", + "\u017dE\u0003\u0002\u0002\u0002\u017e\u0183\u0005H%\u0002\u017f\u0180", + "\u0007\u012b\u0002\u0002\u0180\u0182\u0005H%\u0002\u0181\u017f\u0003", + "\u0002\u0002\u0002\u0182\u0185\u0003\u0002\u0002\u0002\u0183\u0181\u0003", + "\u0002\u0002\u0002\u0183\u0184\u0003\u0002\u0002\u0002\u0184G\u0003", + "\u0002\u0002\u0002\u0185\u0183\u0003\u0002\u0002\u0002\u0186\u0187\u0005", + "J&\u0002\u0187\u0188\u0005V,\u0002\u0188I\u0003\u0002\u0002\u0002\u0189", + "\u018b\u0007I\u0002\u0002\u018a\u0189\u0003\u0002\u0002\u0002\u018a", + "\u018b\u0003\u0002\u0002\u0002\u018b\u018c\u0003\u0002\u0002\u0002\u018c", + "\u018d\u0005f4\u0002\u018dK\u0003\u0002\u0002\u0002\u018e\u018f\u0005", + "N(\u0002\u018fM\u0003\u0002\u0002\u0002\u0190\u0191\b(\u0001\u0002\u0191", + "\u0192\u0007\u001b\u0002\u0002\u0192\u0198\u0005N(\u0006\u0193\u0195", + "\u0005R*\u0002\u0194\u0196\u0005P)\u0002\u0195\u0194\u0003\u0002\u0002", + "\u0002\u0195\u0196\u0003\u0002\u0002\u0002\u0196\u0198\u0003\u0002\u0002", + "\u0002\u0197\u0190\u0003\u0002\u0002\u0002\u0197\u0193\u0003\u0002\u0002", + "\u0002\u0198\u01a1\u0003\u0002\u0002\u0002\u0199\u019a\f\u0004\u0002", + "\u0002\u019a\u019b\u0007\u0019\u0002\u0002\u019b\u01a0\u0005N(\u0005", + "\u019c\u019d\f\u0003\u0002\u0002\u019d\u019e\u0007\u0018\u0002\u0002", + "\u019e\u01a0\u0005N(\u0004\u019f\u0199\u0003\u0002\u0002\u0002\u019f", + "\u019c\u0003\u0002\u0002\u0002\u01a0\u01a3\u0003\u0002\u0002\u0002\u01a1", + "\u019f\u0003\u0002\u0002\u0002\u01a1\u01a2\u0003\u0002\u0002\u0002\u01a2", + "O\u0003\u0002\u0002\u0002\u01a3\u01a1\u0003\u0002\u0002\u0002\u01a4", + "\u01a6\u0007\u001b\u0002\u0002\u01a5\u01a4\u0003\u0002\u0002\u0002\u01a5", + "\u01a6\u0003\u0002\u0002\u0002\u01a6\u01a7\u0003\u0002\u0002\u0002\u01a7", + "\u01a8\u0007\u001e\u0002\u0002\u01a8\u01a9\u0005R*\u0002\u01a9\u01aa", + "\u0007\u0019\u0002\u0002\u01aa\u01ab\u0005R*\u0002\u01ab\u01eb\u0003", + "\u0002\u0002\u0002\u01ac\u01ae\u0007\u001b\u0002\u0002\u01ad\u01ac\u0003", + "\u0002\u0002\u0002\u01ad\u01ae\u0003\u0002\u0002\u0002\u01ae\u01af\u0003", + "\u0002\u0002\u0002\u01af\u01b0\u0007\u001a\u0002\u0002\u01b0\u01b1\u0007", + "\u0129\u0002\u0002\u01b1\u01b6\u0005L\'\u0002\u01b2\u01b3\u0007\u012b", + "\u0002\u0002\u01b3\u01b5\u0005L\'\u0002\u01b4\u01b2\u0003\u0002\u0002", + "\u0002\u01b5\u01b8\u0003\u0002\u0002\u0002\u01b6\u01b4\u0003\u0002\u0002", + "\u0002\u01b6\u01b7\u0003\u0002\u0002\u0002\u01b7\u01b9\u0003\u0002\u0002", + "\u0002\u01b8\u01b6\u0003\u0002\u0002\u0002\u01b9\u01ba\u0007\u012a\u0002", + "\u0002\u01ba\u01eb\u0003\u0002\u0002\u0002\u01bb\u01bd\u0007\u001b\u0002", + "\u0002\u01bc\u01bb\u0003\u0002\u0002\u0002\u01bc\u01bd\u0003\u0002\u0002", + "\u0002\u01bd\u01be\u0003\u0002\u0002\u0002\u01be\u01bf\u0007 \u0002", + "\u0002\u01bf\u01eb\u0005R*\u0002\u01c0\u01c2\u0007\u001b\u0002\u0002", + "\u01c1\u01c0\u0003\u0002\u0002\u0002\u01c1\u01c2\u0003\u0002\u0002\u0002", + "\u01c2\u01c3\u0003\u0002\u0002\u0002\u01c3\u01c4\u0007\u001f\u0002\u0002", + "\u01c4\u01d2\t\u0005\u0002\u0002\u01c5\u01c6\u0007\u0129\u0002\u0002", + "\u01c6\u01d3\u0007\u012a\u0002\u0002\u01c7\u01c8\u0007\u0129\u0002\u0002", + "\u01c8\u01cd\u0005L\'\u0002\u01c9\u01ca\u0007\u012b\u0002\u0002\u01ca", + "\u01cc\u0005L\'\u0002\u01cb\u01c9\u0003\u0002\u0002\u0002\u01cc\u01cf", + "\u0003\u0002\u0002\u0002\u01cd\u01cb\u0003\u0002\u0002\u0002\u01cd\u01ce", + "\u0003\u0002\u0002\u0002\u01ce\u01d0\u0003\u0002\u0002\u0002\u01cf\u01cd", + "\u0003\u0002\u0002\u0002\u01d0\u01d1\u0007\u012a\u0002\u0002\u01d1\u01d3", + "\u0003\u0002\u0002\u0002\u01d2\u01c5\u0003\u0002\u0002\u0002\u01d2\u01c7", + "\u0003\u0002\u0002\u0002\u01d3\u01eb\u0003\u0002\u0002\u0002\u01d4\u01d6", + "\u0007\u001b\u0002\u0002\u01d5\u01d4\u0003\u0002\u0002\u0002\u01d5\u01d6", + "\u0003\u0002\u0002\u0002\u01d6\u01d7\u0003\u0002\u0002\u0002\u01d7\u01d8", + "\u0007\u001f\u0002\u0002\u01d8\u01eb\u0005R*\u0002\u01d9\u01db\u0007", + "!\u0002\u0002\u01da\u01dc\u0007\u001b\u0002\u0002\u01db\u01da\u0003", + "\u0002\u0002\u0002\u01db\u01dc\u0003\u0002\u0002\u0002\u01dc\u01dd\u0003", + "\u0002\u0002\u0002\u01dd\u01eb\u0007\u011d\u0002\u0002\u01de\u01e0\u0007", + "!\u0002\u0002\u01df\u01e1\u0007\u001b\u0002\u0002\u01e0\u01df\u0003", + "\u0002\u0002\u0002\u01e0\u01e1\u0003\u0002\u0002\u0002\u01e1\u01e2\u0003", + "\u0002\u0002\u0002\u01e2\u01eb\t\u0006\u0002\u0002\u01e3\u01e5\u0007", + "!\u0002\u0002\u01e4\u01e6\u0007\u001b\u0002\u0002\u01e5\u01e4\u0003", + "\u0002\u0002\u0002\u01e5\u01e6\u0003\u0002\u0002\u0002\u01e6\u01e7\u0003", + "\u0002\u0002\u0002\u01e7\u01e8\u0007\f\u0002\u0002\u01e8\u01e9\u0007", + "\u0007\u0002\u0002\u01e9\u01eb\u0005R*\u0002\u01ea\u01a5\u0003\u0002", + "\u0002\u0002\u01ea\u01ad\u0003\u0002\u0002\u0002\u01ea\u01bc\u0003\u0002", + "\u0002\u0002\u01ea\u01c1\u0003\u0002\u0002\u0002\u01ea\u01d5\u0003\u0002", + "\u0002\u0002\u01ea\u01d9\u0003\u0002\u0002\u0002\u01ea\u01de\u0003\u0002", + "\u0002\u0002\u01ea\u01e3\u0003\u0002\u0002\u0002\u01ebQ\u0003\u0002", + "\u0002\u0002\u01ec\u01ed\b*\u0001\u0002\u01ed\u01f1\u0005T+\u0002\u01ee", + "\u01ef\t\u0007\u0002\u0002\u01ef\u01f1\u0005R*\t\u01f0\u01ec\u0003\u0002", + "\u0002\u0002\u01f0\u01ee\u0003\u0002\u0002\u0002\u01f1\u0207\u0003\u0002", + "\u0002\u0002\u01f2\u01f3\f\b\u0002\u0002\u01f3\u01f4\t\b\u0002\u0002", + "\u01f4\u0206\u0005R*\t\u01f5\u01f6\f\u0007\u0002\u0002\u01f6\u01f7\t", + "\t\u0002\u0002\u01f7\u0206\u0005R*\b\u01f8\u01f9\f\u0006\u0002\u0002", + "\u01f9\u01fa\u0007\u0088\u0002\u0002\u01fa\u0206\u0005R*\u0007\u01fb", + "\u01fc\f\u0005\u0002\u0002\u01fc\u01fd\u0007\u008b\u0002\u0002\u01fd", + "\u0206\u0005R*\u0006\u01fe\u01ff\f\u0004\u0002\u0002\u01ff\u0200\u0007", + "\u0089\u0002\u0002\u0200\u0206\u0005R*\u0005\u0201\u0202\f\u0003\u0002", + "\u0002\u0202\u0203\u0005r:\u0002\u0203\u0204\u0005R*\u0004\u0204\u0206", + "\u0003\u0002\u0002\u0002\u0205\u01f2\u0003\u0002\u0002\u0002\u0205\u01f5", + "\u0003\u0002\u0002\u0002\u0205\u01f8\u0003\u0002\u0002\u0002\u0205\u01fb", + "\u0003\u0002\u0002\u0002\u0205\u01fe\u0003\u0002\u0002\u0002\u0205\u0201", + "\u0003\u0002\u0002\u0002\u0206\u0209\u0003\u0002\u0002\u0002\u0207\u0205", + "\u0003\u0002\u0002\u0002\u0207\u0208\u0003\u0002\u0002\u0002\u0208S", + "\u0003\u0002\u0002\u0002\u0209\u0207\u0003\u0002\u0002\u0002\u020a\u020b", + "\b+\u0001\u0002\u020b\u020d\u0007)\u0002\u0002\u020c\u020e\u0005b2\u0002", + "\u020d\u020c\u0003\u0002\u0002\u0002\u020e\u020f\u0003\u0002\u0002\u0002", + "\u020f\u020d\u0003\u0002\u0002\u0002\u020f\u0210\u0003\u0002\u0002\u0002", + "\u0210\u0213\u0003\u0002\u0002\u0002\u0211\u0212\u0007,\u0002\u0002", + "\u0212\u0214\u0005L\'\u0002\u0213\u0211\u0003\u0002\u0002\u0002\u0213", + "\u0214\u0003\u0002\u0002\u0002\u0214\u0215\u0003\u0002\u0002\u0002\u0215", + "\u0216\u0007-\u0002\u0002\u0216\u0244\u0003\u0002\u0002\u0002\u0217", + "\u0218\u0007)\u0002\u0002\u0218\u021a\u0005L\'\u0002\u0219\u021b\u0005", + "b2\u0002\u021a\u0219\u0003\u0002\u0002\u0002\u021b\u021c\u0003\u0002", + "\u0002\u0002\u021c\u021a\u0003\u0002\u0002\u0002\u021c\u021d\u0003\u0002", + "\u0002\u0002\u021d\u0220\u0003\u0002\u0002\u0002\u021e\u021f\u0007,", + "\u0002\u0002\u021f\u0221\u0005L\'\u0002\u0220\u021e\u0003\u0002\u0002", + "\u0002\u0220\u0221\u0003\u0002\u0002\u0002\u0221\u0222\u0003\u0002\u0002", + "\u0002\u0222\u0223\u0007-\u0002\u0002\u0223\u0244\u0003\u0002\u0002", + "\u0002\u0224\u0225\u0007C\u0002\u0002\u0225\u0226\u0007\u0129\u0002", + "\u0002\u0226\u0229\u0005L\'\u0002\u0227\u0228\u0007r\u0002\u0002\u0228", + "\u022a\u0007$\u0002\u0002\u0229\u0227\u0003\u0002\u0002\u0002\u0229", + "\u022a\u0003\u0002\u0002\u0002\u022a\u022b\u0003\u0002\u0002\u0002\u022b", + "\u022c\u0007\u012a\u0002\u0002\u022c\u0244\u0003\u0002\u0002\u0002\u022d", + "\u022e\u0007E\u0002\u0002\u022e\u022f\u0007\u0129\u0002\u0002\u022f", + "\u0232\u0005L\'\u0002\u0230\u0231\u0007r\u0002\u0002\u0231\u0233\u0007", + "$\u0002\u0002\u0232\u0230\u0003\u0002\u0002\u0002\u0232\u0233\u0003", + "\u0002\u0002\u0002\u0233\u0234\u0003\u0002\u0002\u0002\u0234\u0235\u0007", + "\u012a\u0002\u0002\u0235\u0244\u0003\u0002\u0002\u0002\u0236\u0237\u0007", + "w\u0002\u0002\u0237\u0238\u0007\u0129\u0002\u0002\u0238\u0239\u0005", + "R*\u0002\u0239\u023a\u0007\u001a\u0002\u0002\u023a\u023b\u0005R*\u0002", + "\u023b\u023c\u0007\u012a\u0002\u0002\u023c\u0244\u0003\u0002\u0002\u0002", + "\u023d\u0244\u0005|?\u0002\u023e\u0244\u0007\u0083\u0002\u0002\u023f", + "\u0240\u0007\u0129\u0002\u0002\u0240\u0241\u0005L\'\u0002\u0241\u0242", + "\u0007\u012a\u0002\u0002\u0242\u0244\u0003\u0002\u0002\u0002\u0243\u020a", + "\u0003\u0002\u0002\u0002\u0243\u0217\u0003\u0002\u0002\u0002\u0243\u0224", + "\u0003\u0002\u0002\u0002\u0243\u022d\u0003\u0002\u0002\u0002\u0243\u0236", + "\u0003\u0002\u0002\u0002\u0243\u023d\u0003\u0002\u0002\u0002\u0243\u023e", + "\u0003\u0002\u0002\u0002\u0243\u023f\u0003\u0002\u0002\u0002\u0244\u024c", + "\u0003\u0002\u0002\u0002\u0245\u0246\f\u0004\u0002\u0002\u0246\u0247", + "\u0007\u0127\u0002\u0002\u0247\u0248\u0005R*\u0002\u0248\u0249\u0007", + "\u0128\u0002\u0002\u0249\u024b\u0003\u0002\u0002\u0002\u024a\u0245\u0003", + "\u0002\u0002\u0002\u024b\u024e\u0003\u0002\u0002\u0002\u024c\u024a\u0003", + "\u0002\u0002\u0002\u024c\u024d\u0003\u0002\u0002\u0002\u024dU\u0003", + "\u0002\u0002\u0002\u024e\u024c\u0003\u0002\u0002\u0002\u024f\u0251\u0007", + "\t\u0002\u0002\u0250\u024f\u0003\u0002\u0002\u0002\u0250\u0251\u0003", + "\u0002\u0002\u0002\u0251\u0252\u0003\u0002\u0002\u0002\u0252\u0254\u0005", + "^0\u0002\u0253\u0255\u0005X-\u0002\u0254\u0253\u0003\u0002\u0002\u0002", + "\u0254\u0255\u0003\u0002\u0002\u0002\u0255\u0257\u0003\u0002\u0002\u0002", + "\u0256\u0250\u0003\u0002\u0002\u0002\u0256\u0257\u0003\u0002\u0002\u0002", + "\u0257W\u0003\u0002\u0002\u0002\u0258\u0259\u0007\u0129\u0002\u0002", + "\u0259\u025a\u0005Z.\u0002\u025a\u025b\u0007\u012a\u0002\u0002\u025b", + "Y\u0003\u0002\u0002\u0002\u025c\u0261\u0005\\/\u0002\u025d\u025e\u0007", + "\u012b\u0002\u0002\u025e\u0260\u0005\\/\u0002\u025f\u025d\u0003\u0002", + "\u0002\u0002\u0260\u0263\u0003\u0002\u0002\u0002\u0261\u025f\u0003\u0002", + "\u0002\u0002\u0261\u0262\u0003\u0002\u0002\u0002\u0262[\u0003\u0002", + "\u0002\u0002\u0263\u0261\u0003\u0002\u0002\u0002\u0264\u0265\u0005^", + "0\u0002\u0265]\u0003\u0002\u0002\u0002\u0266\u0269\u0007\u0140\u0002", + "\u0002\u0267\u0269\u0005`1\u0002\u0268\u0266\u0003\u0002\u0002\u0002", + "\u0268\u0267\u0003\u0002\u0002\u0002\u0269_\u0003\u0002\u0002\u0002", + "\u026a\u026b\u0007\u013c\u0002\u0002\u026ba\u0003\u0002\u0002\u0002", + "\u026c\u026d\u0007*\u0002\u0002\u026d\u026e\u0005L\'\u0002\u026e\u026f", + "\u0007+\u0002\u0002\u026f\u0270\u0005L\'\u0002\u0270c\u0003\u0002\u0002", + "\u0002\u0271\u0276\u0005f4\u0002\u0272\u0273\u0007\u012b\u0002\u0002", + "\u0273\u0275\u0005f4\u0002\u0274\u0272\u0003\u0002\u0002\u0002\u0275", + "\u0278\u0003\u0002\u0002\u0002\u0276\u0274\u0003\u0002\u0002\u0002\u0276", + "\u0277\u0003\u0002\u0002\u0002\u0277e\u0003\u0002\u0002\u0002\u0278", + "\u0276\u0003\u0002\u0002\u0002\u0279\u027d\u0007\u0105\u0002\u0002\u027a", + "\u027c\u0007\u0104\u0002\u0002\u027b\u027a\u0003\u0002\u0002\u0002\u027c", + "\u027f\u0003\u0002\u0002\u0002\u027d\u027e\u0003\u0002\u0002\u0002\u027d", + "\u027b\u0003\u0002\u0002\u0002\u027eg\u0003\u0002\u0002\u0002\u027f", + "\u027d\u0003\u0002\u0002\u0002\u0280\u0281\u0007F\u0002\u0002\u0281", + "\u0282\u0007\u0129\u0002\u0002\u0282\u0287\u0005n8\u0002\u0283\u0284", + "\u0007\u012b\u0002\u0002\u0284\u0286\u0005n8\u0002\u0285\u0283\u0003", + "\u0002\u0002\u0002\u0286\u0289\u0003\u0002\u0002\u0002\u0287\u0285\u0003", + "\u0002\u0002\u0002\u0287\u0288\u0003\u0002\u0002\u0002\u0288\u028a\u0003", + "\u0002\u0002\u0002\u0289\u0287\u0003\u0002\u0002\u0002\u028a\u028b\u0007", + "\u012a\u0002\u0002\u028bi\u0003\u0002\u0002\u0002\u028c\u028d\u0007", + "v\u0002\u0002\u028d\u028e\u0007\u001b\u0002\u0002\u028e\u028f\u0007", + "\u001d\u0002\u0002\u028fk\u0003\u0002\u0002\u0002\u0290\u0291\u0007", + "v\u0002\u0002\u0291\u0292\u0007\u001d\u0002\u0002\u0292m\u0003\u0002", + "\u0002\u0002\u0293\u0294\u0007\u0103\u0002\u0002\u0294\u0295\u0007\u011e", + "\u0002\u0002\u0295\u0296\u0007\u0103\u0002\u0002\u0296o\u0003\u0002", + "\u0002\u0002\u0297\u029e\u0007\u0019\u0002\u0002\u0298\u0299\u0007\u0124", + "\u0002\u0002\u0299\u029e\u0007\u0124\u0002\u0002\u029a\u029e\u0007\u0018", + "\u0002\u0002\u029b\u029c\u0007\u0123\u0002\u0002\u029c\u029e\u0007\u0123", + "\u0002\u0002\u029d\u0297\u0003\u0002\u0002\u0002\u029d\u0298\u0003\u0002", + "\u0002\u0002\u029d\u029a\u0003\u0002\u0002\u0002\u029d\u029b\u0003\u0002", + "\u0002\u0002\u029eq\u0003\u0002\u0002\u0002\u029f\u02ae\u0007\u011e", + "\u0002\u0002\u02a0\u02ae\u0007\u011f\u0002\u0002\u02a1\u02ae\u0007\u0120", + "\u0002\u0002\u02a2\u02a3\u0007\u0120\u0002\u0002\u02a3\u02ae\u0007\u011e", + "\u0002\u0002\u02a4\u02a5\u0007\u011f\u0002\u0002\u02a5\u02ae\u0007\u011e", + "\u0002\u0002\u02a6\u02a7\u0007\u0120\u0002\u0002\u02a7\u02ae\u0007\u011f", + "\u0002\u0002\u02a8\u02a9\u0007\u0121\u0002\u0002\u02a9\u02ae\u0007\u011e", + "\u0002\u0002\u02aa\u02ab\u0007\u0120\u0002\u0002\u02ab\u02ac\u0007\u011e", + "\u0002\u0002\u02ac\u02ae\u0007\u011f\u0002\u0002\u02ad\u029f\u0003\u0002", + "\u0002\u0002\u02ad\u02a0\u0003\u0002\u0002\u0002\u02ad\u02a1\u0003\u0002", + "\u0002\u0002\u02ad\u02a2\u0003\u0002\u0002\u0002\u02ad\u02a4\u0003\u0002", + "\u0002\u0002\u02ad\u02a6\u0003\u0002\u0002\u0002\u02ad\u02a8\u0003\u0002", + "\u0002\u0002\u02ad\u02aa\u0003\u0002\u0002\u0002\u02aes\u0003\u0002", + "\u0002\u0002\u02af\u02b0\u0007\u0120\u0002\u0002\u02b0\u02b7\u0007\u0120", + "\u0002\u0002\u02b1\u02b2\u0007\u011f\u0002\u0002\u02b2\u02b7\u0007\u011f", + "\u0002\u0002\u02b3\u02b7\u0007\u0124\u0002\u0002\u02b4\u02b7\u0007\u0125", + "\u0002\u0002\u02b5\u02b7\u0007\u0123\u0002\u0002\u02b6\u02af\u0003\u0002", + "\u0002\u0002\u02b6\u02b1\u0003\u0002\u0002\u0002\u02b6\u02b3\u0003\u0002", + "\u0002\u0002\u02b6\u02b4\u0003\u0002\u0002\u0002\u02b6\u02b5\u0003\u0002", + "\u0002\u0002\u02b7u\u0003\u0002\u0002\u0002\u02b8\u02b9\t\n\u0002\u0002", + "\u02b9w\u0003\u0002\u0002\u0002\u02ba\u02bb\t\u000b\u0002\u0002\u02bb", + "y\u0003\u0002\u0002\u0002\u02bc\u02bd\u0005f4\u0002\u02bd{\u0003\u0002", + "\u0002\u0002\u02be\u02ca\u0005~@\u0002\u02bf\u02ca\u0005\u0080A\u0002", + "\u02c0\u02c1\u0007\u0137\u0002\u0002\u02c1\u02ca\u0005\u0080A\u0002", + "\u02c2\u02ca\u0005\u0082B\u0002\u02c3\u02ca\u0007\u013e\u0002\u0002", + "\u02c4\u02ca\u0007\u013f\u0002\u0002\u02c5\u02c7\u0007\u001b\u0002\u0002", + "\u02c6\u02c5\u0003\u0002\u0002\u0002\u02c6\u02c7\u0003\u0002\u0002\u0002", + "\u02c7\u02c8\u0003\u0002\u0002\u0002\u02c8\u02ca\u0007\u011d\u0002\u0002", + "\u02c9\u02be\u0003\u0002\u0002\u0002\u02c9\u02bf\u0003\u0002\u0002\u0002", + "\u02c9\u02c0\u0003\u0002\u0002\u0002\u02c9\u02c2\u0003\u0002\u0002\u0002", + "\u02c9\u02c3\u0003\u0002\u0002\u0002\u02c9\u02c4\u0003\u0002\u0002\u0002", + "\u02c9\u02c6\u0003\u0002\u0002\u0002\u02ca}\u0003\u0002\u0002\u0002", + "\u02cb\u02cc\u0007\u013c\u0002\u0002\u02cc\u007f\u0003\u0002\u0002\u0002", + "\u02cd\u02ce\t\f\u0002\u0002\u02ce\u0081\u0003\u0002\u0002\u0002\u02cf", + "\u02d0\t\u0006\u0002\u0002\u02d0\u0083\u0003\u0002\u0002\u0002\u02d1", + "\u02d2\t\r\u0002\u0002\u02d2\u0085\u0003\u0002\u0002\u0002L\u0090\u0092", + "\u0097\u00a6\u00aa\u00b5\u00ba\u00ce\u00d6\u00dd\u00e1\u00ee\u00fb\u010a", + "\u0111\u0115\u0119\u011d\u0125\u0129\u0131\u0135\u013e\u0149\u0152\u015b", + "\u0161\u0169\u016c\u0173\u0176\u017c\u0183\u018a\u0195\u0197\u019f\u01a1", + "\u01a5\u01ad\u01b6\u01bc\u01c1\u01cd\u01d2\u01d5\u01db\u01e0\u01e5\u01ea", + "\u01f0\u0205\u0207\u020f\u0213\u021c\u0220\u0229\u0232\u0243\u024c\u0250", + "\u0254\u0256\u0261\u0268\u0276\u027d\u0287\u029d\u02ad\u02b6\u02c6\u02c9"].join(""); var atn = new antlr4.atn.ATNDeserializer().deserialize(serializedATN); @@ -582,8 +490,8 @@ var decisionsToDFA = atn.decisionToState.map( function(ds, index) { return new a var sharedContextCache = new antlr4.PredictionContextCache(); -var literalNames = [ null, "'.'", "'*'", "','", "'!'", "'SELECT'", "'FROM'", - "'ADD'", "'AS'", "'ALL'", "'ANY'", "'DISTINCT'", "'WHERE'", +var literalNames = [ null, null, null, null, "'SELECT'", "'FROM'", "'ADD'", + "'AS'", "'ALL'", "'ANY'", "'DISTINCT'", "'WHERE'", "'GROUP'", "'BY'", "'GROUPING'", "'SETS'", "'CUBE'", "'ROLLUP'", "'ORDER'", "'HAVING'", "'LIMIT'", "'AT'", "'OR'", "'AND'", "'IN'", "'NOT'", "'NO'", "'EXISTS'", @@ -642,15 +550,17 @@ var literalNames = [ null, "'.'", "'*'", "','", "'!'", "'SELECT'", "'FROM'", "'BINARY'", "'VARBINARY'", "'BYTES'", "'DECIMAL'", "'TINYINT'", "'SMALLINT'", "'INT'", "'BIGINT'", "'FLOAT'", "'DOUBLE'", "'DATE'", "'TIME'", "'TIMESTAMP'", "'MULTISET'", - "'BOOLEAN'", "'RAW'", "'ROW'", "'NULL'", null, null, - null, null, null, null, null, null, null, null, null, - null, "';'", "'@'", "'0'", "'1'", "'2'", "'''", "'\"'", - "'`'", "':'" ]; + "'BOOLEAN'", "'RAW'", "'ROW'", "'NULL'", "'='", "'>'", + "'<'", "'!'", "'~'", "'|'", "'&'", "'^'", "'.'", "'['", + "']'", "'('", "')'", "','", "';'", "'@'", "'0'", "'1'", + "'2'", "'''", "'\"'", "'`'", "':'", "'*'", "'_'", "'-'", + "'+'", "'%'", "'--'", "'/'" ]; -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", +var symbolicNames = [ null, "SPACE", "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", @@ -701,12 +611,15 @@ var symbolicNames = [ null, null, null, null, null, null, null, null, null, "FLOAT", "DOUBLE", "DATE", "TIME", "TIMESTAMP", "MULTISET", "BOOLEAN", "RAW", "ROW", "NULL", "EQUAL_SYMBOL", "GREATER_SYMBOL", "LESS_SYMBOL", "EXCLAMATION_SYMBOL", "BIT_NOT_OP", - "BIT_OR_OP", "BIT_AND_OP", "BIT_XOR_OP", "DOT", "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", - "ASTERISK_SIGN", "STRING_LITERAL", "DECIMAL_LITERAL", - "REAL_LITERAL", "BIT_STRING", "DEC_DIGIT" ]; + "BIT_OR_OP", "BIT_AND_OP", "BIT_XOR_OP", "DOT", "LS_BRACKET", + "RS_BRACKET", "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", "ASTERISK_SIGN", + "UNDERLINE_SIGN", "HYPNEN_SIGN", "ADD_SIGN", "PENCENT_SIGN", + "DOUBLE_HYPNEN_SIGN", "SLASH_SIGN", "STRING_LITERAL", + "DECIMAL_LITERAL", "REAL_LITERAL", "BIT_STRING", "IDENTIFIER_BASE", + "DEC_DIGIT" ]; var ruleNames = [ "program", "statement", "sqlStatements", "sqlStatement", "emptyStatement", "ddlStatement", "dmlStatement", "createTable", @@ -715,20 +628,18 @@ var ruleNames = [ "program", "statement", "sqlStatements", "sqlStatement", "createDatabase", "createView", "createFunction", "alterTable", "renameDefinition", "setKeyValueDefinition", "alterDatabase", "alterFunction", "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", + "dropFunction", "insertStatement", "insertPartitionDefinition", + "valuesDefinition", "valuesRowDefinition", "allValueDifinition", + "queryStatement", "selectStatement", "projectItemDefinition", + "tableExpression", "tableReference", "tablePrimary", + "expression", "booleanExpression", "predicate", "valueExpression", + "primaryExpression", "tableAlias", "identifierList", + "identifierSeq", "identifier", "strictIdentifier", "quotedIdentifier", + "whenClause", "uidList", "uid", "withOption", "ifNotExists", + "ifExists", "keyValueDefinition", "logicalOperator", "comparisonOperator", "bitOperator", "mathOperator", "unaryOperator", "fullColumnName", "constant", "stringLiteral", - "decimalLiteral", "booleanLiteral" ]; + "decimalLiteral", "booleanLiteral", "setQuantifier" ]; function FlinkSqlParserParser (input) { antlr4.Parser.call(this, input); @@ -749,335 +660,325 @@ 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; -FlinkSqlParserParser.LINE_COMMENT = 4; -FlinkSqlParserParser.SELECT = 5; -FlinkSqlParserParser.FROM = 6; -FlinkSqlParserParser.ADD = 7; -FlinkSqlParserParser.AS = 8; -FlinkSqlParserParser.ALL = 9; -FlinkSqlParserParser.ANY = 10; -FlinkSqlParserParser.DISTINCT = 11; -FlinkSqlParserParser.WHERE = 12; -FlinkSqlParserParser.GROUP = 13; -FlinkSqlParserParser.BY = 14; -FlinkSqlParserParser.GROUPING = 15; -FlinkSqlParserParser.SETS = 16; -FlinkSqlParserParser.CUBE = 17; -FlinkSqlParserParser.ROLLUP = 18; -FlinkSqlParserParser.ORDER = 19; -FlinkSqlParserParser.HAVING = 20; -FlinkSqlParserParser.LIMIT = 21; -FlinkSqlParserParser.AT = 22; -FlinkSqlParserParser.OR = 23; -FlinkSqlParserParser.AND = 24; -FlinkSqlParserParser.IN = 25; -FlinkSqlParserParser.NOT = 26; -FlinkSqlParserParser.NO = 27; -FlinkSqlParserParser.EXISTS = 28; -FlinkSqlParserParser.BETWEEN = 29; -FlinkSqlParserParser.LIKE = 30; -FlinkSqlParserParser.RLIKE = 31; -FlinkSqlParserParser.IS = 32; -FlinkSqlParserParser.TRUE = 33; -FlinkSqlParserParser.FALSE = 34; -FlinkSqlParserParser.NULLS = 35; -FlinkSqlParserParser.ASC = 36; -FlinkSqlParserParser.DESC = 37; -FlinkSqlParserParser.FOR = 38; -FlinkSqlParserParser.INTERVAL = 39; -FlinkSqlParserParser.CASE = 40; -FlinkSqlParserParser.WHEN = 41; -FlinkSqlParserParser.THEN = 42; -FlinkSqlParserParser.ELSE = 43; -FlinkSqlParserParser.END = 44; -FlinkSqlParserParser.JOIN = 45; -FlinkSqlParserParser.CROSS = 46; -FlinkSqlParserParser.OUTER = 47; -FlinkSqlParserParser.INNER = 48; -FlinkSqlParserParser.LEFT = 49; -FlinkSqlParserParser.SEMI = 50; -FlinkSqlParserParser.RIGHT = 51; -FlinkSqlParserParser.FULL = 52; -FlinkSqlParserParser.NATURAL = 53; -FlinkSqlParserParser.ON = 54; -FlinkSqlParserParser.PIVOT = 55; -FlinkSqlParserParser.LATERAL = 56; -FlinkSqlParserParser.WINDOW = 57; -FlinkSqlParserParser.OVER = 58; -FlinkSqlParserParser.PARTITION = 59; -FlinkSqlParserParser.RANGE = 60; -FlinkSqlParserParser.ROWS = 61; -FlinkSqlParserParser.UNBOUNDED = 62; -FlinkSqlParserParser.PRECEDING = 63; -FlinkSqlParserParser.FOLLOWING = 64; -FlinkSqlParserParser.CURRENT = 65; -FlinkSqlParserParser.FIRST = 66; -FlinkSqlParserParser.AFTER = 67; -FlinkSqlParserParser.LAST = 68; -FlinkSqlParserParser.WITH = 69; -FlinkSqlParserParser.VALUES = 70; -FlinkSqlParserParser.CREATE = 71; -FlinkSqlParserParser.TABLE = 72; -FlinkSqlParserParser.DIRECTORY = 73; -FlinkSqlParserParser.VIEW = 74; -FlinkSqlParserParser.REPLACE = 75; -FlinkSqlParserParser.INSERT = 76; -FlinkSqlParserParser.DELETE = 77; -FlinkSqlParserParser.INTO = 78; -FlinkSqlParserParser.DESCRIBE = 79; -FlinkSqlParserParser.EXPLAIN = 80; -FlinkSqlParserParser.FORMAT = 81; -FlinkSqlParserParser.LOGICAL = 82; -FlinkSqlParserParser.CODEGEN = 83; -FlinkSqlParserParser.COST = 84; -FlinkSqlParserParser.CAST = 85; -FlinkSqlParserParser.SHOW = 86; -FlinkSqlParserParser.TABLES = 87; -FlinkSqlParserParser.COLUMNS = 88; -FlinkSqlParserParser.COLUMN = 89; -FlinkSqlParserParser.USE = 90; -FlinkSqlParserParser.PARTITIONS = 91; -FlinkSqlParserParser.FUNCTIONS = 92; -FlinkSqlParserParser.DROP = 93; -FlinkSqlParserParser.UNION = 94; -FlinkSqlParserParser.EXCEPT = 95; -FlinkSqlParserParser.SETMINUS = 96; -FlinkSqlParserParser.INTERSECT = 97; -FlinkSqlParserParser.TO = 98; -FlinkSqlParserParser.TABLESAMPLE = 99; -FlinkSqlParserParser.STRATIFY = 100; -FlinkSqlParserParser.ALTER = 101; -FlinkSqlParserParser.RENAME = 102; -FlinkSqlParserParser.STRUCT = 103; -FlinkSqlParserParser.COMMENT = 104; -FlinkSqlParserParser.SET = 105; -FlinkSqlParserParser.RESET = 106; -FlinkSqlParserParser.DATA = 107; -FlinkSqlParserParser.START = 108; -FlinkSqlParserParser.TRANSACTION = 109; -FlinkSqlParserParser.COMMIT = 110; -FlinkSqlParserParser.ROLLBACK = 111; -FlinkSqlParserParser.MACRO = 112; -FlinkSqlParserParser.IGNORE = 113; -FlinkSqlParserParser.BOTH = 114; -FlinkSqlParserParser.LEADING = 115; -FlinkSqlParserParser.TRAILING = 116; -FlinkSqlParserParser.IF = 117; -FlinkSqlParserParser.POSITION = 118; -FlinkSqlParserParser.EXTRACT = 119; -FlinkSqlParserParser.EQ = 120; -FlinkSqlParserParser.NSEQ = 121; -FlinkSqlParserParser.NEQ = 122; -FlinkSqlParserParser.NEQJ = 123; -FlinkSqlParserParser.LT = 124; -FlinkSqlParserParser.LTE = 125; -FlinkSqlParserParser.GT = 126; -FlinkSqlParserParser.GTE = 127; -FlinkSqlParserParser.PLUS = 128; -FlinkSqlParserParser.MINUS = 129; -FlinkSqlParserParser.ASTERISK = 130; -FlinkSqlParserParser.SLASH = 131; -FlinkSqlParserParser.PERCENT = 132; -FlinkSqlParserParser.DIV = 133; -FlinkSqlParserParser.TILDE = 134; -FlinkSqlParserParser.AMPERSAND = 135; -FlinkSqlParserParser.PIPE = 136; -FlinkSqlParserParser.CONCAT_PIPE = 137; -FlinkSqlParserParser.HAT = 138; -FlinkSqlParserParser.PERCENTLIT = 139; -FlinkSqlParserParser.BUCKET = 140; -FlinkSqlParserParser.OUT = 141; -FlinkSqlParserParser.OF = 142; -FlinkSqlParserParser.SORT = 143; -FlinkSqlParserParser.CLUSTER = 144; -FlinkSqlParserParser.DISTRIBUTE = 145; -FlinkSqlParserParser.OVERWRITE = 146; -FlinkSqlParserParser.TRANSFORM = 147; -FlinkSqlParserParser.REDUCE = 148; -FlinkSqlParserParser.USING = 149; -FlinkSqlParserParser.SERDE = 150; -FlinkSqlParserParser.SERDEPROPERTIES = 151; -FlinkSqlParserParser.RECORDREADER = 152; -FlinkSqlParserParser.RECORDWRITER = 153; -FlinkSqlParserParser.DELIMITED = 154; -FlinkSqlParserParser.FIELDS = 155; -FlinkSqlParserParser.TERMINATED = 156; -FlinkSqlParserParser.COLLECTION = 157; -FlinkSqlParserParser.ITEMS = 158; -FlinkSqlParserParser.KEYS = 159; -FlinkSqlParserParser.ESCAPED = 160; -FlinkSqlParserParser.LINES = 161; -FlinkSqlParserParser.SEPARATED = 162; -FlinkSqlParserParser.FUNCTION = 163; -FlinkSqlParserParser.EXTENDED = 164; -FlinkSqlParserParser.REFRESH = 165; -FlinkSqlParserParser.CLEAR = 166; -FlinkSqlParserParser.CACHE = 167; -FlinkSqlParserParser.UNCACHE = 168; -FlinkSqlParserParser.LAZY = 169; -FlinkSqlParserParser.FORMATTED = 170; -FlinkSqlParserParser.GLOBAL = 171; -FlinkSqlParserParser.TEMPORARY = 172; -FlinkSqlParserParser.OPTIONS = 173; -FlinkSqlParserParser.UNSET = 174; -FlinkSqlParserParser.TBLPROPERTIES = 175; -FlinkSqlParserParser.DBPROPERTIES = 176; -FlinkSqlParserParser.BUCKETS = 177; -FlinkSqlParserParser.SKEWED = 178; -FlinkSqlParserParser.STORED = 179; -FlinkSqlParserParser.DIRECTORIES = 180; -FlinkSqlParserParser.LOCATION = 181; -FlinkSqlParserParser.EXCHANGE = 182; -FlinkSqlParserParser.ARCHIVE = 183; -FlinkSqlParserParser.UNARCHIVE = 184; -FlinkSqlParserParser.FILEFORMAT = 185; -FlinkSqlParserParser.TOUCH = 186; -FlinkSqlParserParser.COMPACT = 187; -FlinkSqlParserParser.CONCATENATE = 188; -FlinkSqlParserParser.CHANGE = 189; -FlinkSqlParserParser.CASCADE = 190; -FlinkSqlParserParser.RESTRICT = 191; -FlinkSqlParserParser.CLUSTERED = 192; -FlinkSqlParserParser.SORTED = 193; -FlinkSqlParserParser.PURGE = 194; -FlinkSqlParserParser.INPUTFORMAT = 195; -FlinkSqlParserParser.OUTPUTFORMAT = 196; -FlinkSqlParserParser.DATABASE = 197; -FlinkSqlParserParser.DATABASES = 198; -FlinkSqlParserParser.DFS = 199; -FlinkSqlParserParser.TRUNCATE = 200; -FlinkSqlParserParser.ANALYZE = 201; -FlinkSqlParserParser.COMPUTE = 202; -FlinkSqlParserParser.LIST = 203; -FlinkSqlParserParser.STATISTICS = 204; -FlinkSqlParserParser.PARTITIONED = 205; -FlinkSqlParserParser.EXTERNAL = 206; -FlinkSqlParserParser.DEFINED = 207; -FlinkSqlParserParser.REVOKE = 208; -FlinkSqlParserParser.GRANT = 209; -FlinkSqlParserParser.LOCK = 210; -FlinkSqlParserParser.UNLOCK = 211; -FlinkSqlParserParser.MSCK = 212; -FlinkSqlParserParser.REPAIR = 213; -FlinkSqlParserParser.RECOVER = 214; -FlinkSqlParserParser.EXPORT = 215; -FlinkSqlParserParser.IMPORT = 216; -FlinkSqlParserParser.LOAD = 217; -FlinkSqlParserParser.ROLE = 218; -FlinkSqlParserParser.ROLES = 219; -FlinkSqlParserParser.COMPACTIONS = 220; -FlinkSqlParserParser.PRINCIPALS = 221; -FlinkSqlParserParser.TRANSACTIONS = 222; -FlinkSqlParserParser.INDEX = 223; -FlinkSqlParserParser.INDEXES = 224; -FlinkSqlParserParser.LOCKS = 225; -FlinkSqlParserParser.OPTION = 226; -FlinkSqlParserParser.ANTI = 227; -FlinkSqlParserParser.LOCAL = 228; -FlinkSqlParserParser.INPATH = 229; -FlinkSqlParserParser.WATERMARK = 230; -FlinkSqlParserParser.UNNEST = 231; -FlinkSqlParserParser.MATCH_RECOGNIZE = 232; -FlinkSqlParserParser.MEASURES = 233; -FlinkSqlParserParser.ONE = 234; -FlinkSqlParserParser.PER = 235; -FlinkSqlParserParser.MATCH = 236; -FlinkSqlParserParser.SKIP1 = 237; -FlinkSqlParserParser.NEXT = 238; -FlinkSqlParserParser.PAST = 239; -FlinkSqlParserParser.PATTERN = 240; -FlinkSqlParserParser.WITHIN = 241; -FlinkSqlParserParser.DEFINE = 242; -FlinkSqlParserParser.BIGINT_LITERAL = 243; -FlinkSqlParserParser.SMALLINT_LITERAL = 244; -FlinkSqlParserParser.TINYINT_LITERAL = 245; -FlinkSqlParserParser.INTEGER_VALUE = 246; -FlinkSqlParserParser.DECIMAL_VALUE = 247; -FlinkSqlParserParser.DOUBLE_LITERAL = 248; -FlinkSqlParserParser.BIGDECIMAL_LITERAL = 249; -FlinkSqlParserParser.IDENTIFIER = 250; -FlinkSqlParserParser.BACKQUOTED_IDENTIFIER = 251; -FlinkSqlParserParser.SIMPLE_COMMENT = 252; -FlinkSqlParserParser.BRACKETED_EMPTY_COMMENT = 253; -FlinkSqlParserParser.BRACKETED_COMMENT = 254; -FlinkSqlParserParser.WS = 255; -FlinkSqlParserParser.UNRECOGNIZED = 256; -FlinkSqlParserParser.REVERSE_QUOTE_ID = 257; -FlinkSqlParserParser.DOUBLE_QUOTE_ID = 258; -FlinkSqlParserParser.DOT_ID = 259; -FlinkSqlParserParser.ID = 260; -FlinkSqlParserParser.SYSTEM = 261; -FlinkSqlParserParser.STRING = 262; -FlinkSqlParserParser.ARRAY = 263; -FlinkSqlParserParser.MAP = 264; -FlinkSqlParserParser.CHAR = 265; -FlinkSqlParserParser.VARCHAR = 266; -FlinkSqlParserParser.BINARY = 267; -FlinkSqlParserParser.VARBINARY = 268; -FlinkSqlParserParser.BYTES = 269; -FlinkSqlParserParser.DECIMAL = 270; -FlinkSqlParserParser.TINYINT = 271; -FlinkSqlParserParser.SMALLINT = 272; -FlinkSqlParserParser.INT = 273; -FlinkSqlParserParser.BIGINT = 274; -FlinkSqlParserParser.FLOAT = 275; -FlinkSqlParserParser.DOUBLE = 276; -FlinkSqlParserParser.DATE = 277; -FlinkSqlParserParser.TIME = 278; -FlinkSqlParserParser.TIMESTAMP = 279; -FlinkSqlParserParser.MULTISET = 280; -FlinkSqlParserParser.BOOLEAN = 281; -FlinkSqlParserParser.RAW = 282; -FlinkSqlParserParser.ROW = 283; -FlinkSqlParserParser.NULL = 284; -FlinkSqlParserParser.EQUAL_SYMBOL = 285; -FlinkSqlParserParser.GREATER_SYMBOL = 286; -FlinkSqlParserParser.LESS_SYMBOL = 287; -FlinkSqlParserParser.EXCLAMATION_SYMBOL = 288; -FlinkSqlParserParser.BIT_NOT_OP = 289; -FlinkSqlParserParser.BIT_OR_OP = 290; -FlinkSqlParserParser.BIT_AND_OP = 291; -FlinkSqlParserParser.BIT_XOR_OP = 292; -FlinkSqlParserParser.DOT = 293; -FlinkSqlParserParser.LR_BRACKET = 294; -FlinkSqlParserParser.RR_BRACKET = 295; -FlinkSqlParserParser.COMMA = 296; -FlinkSqlParserParser.SEMICOLON = 297; -FlinkSqlParserParser.AT_SIGN = 298; -FlinkSqlParserParser.ZERO_DECIMAL = 299; -FlinkSqlParserParser.ONE_DECIMAL = 300; -FlinkSqlParserParser.TWO_DECIMAL = 301; -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.COMMENT_INPUT = 2; +FlinkSqlParserParser.LINE_COMMENT = 3; +FlinkSqlParserParser.SELECT = 4; +FlinkSqlParserParser.FROM = 5; +FlinkSqlParserParser.ADD = 6; +FlinkSqlParserParser.AS = 7; +FlinkSqlParserParser.ALL = 8; +FlinkSqlParserParser.ANY = 9; +FlinkSqlParserParser.DISTINCT = 10; +FlinkSqlParserParser.WHERE = 11; +FlinkSqlParserParser.GROUP = 12; +FlinkSqlParserParser.BY = 13; +FlinkSqlParserParser.GROUPING = 14; +FlinkSqlParserParser.SETS = 15; +FlinkSqlParserParser.CUBE = 16; +FlinkSqlParserParser.ROLLUP = 17; +FlinkSqlParserParser.ORDER = 18; +FlinkSqlParserParser.HAVING = 19; +FlinkSqlParserParser.LIMIT = 20; +FlinkSqlParserParser.AT = 21; +FlinkSqlParserParser.OR = 22; +FlinkSqlParserParser.AND = 23; +FlinkSqlParserParser.IN = 24; +FlinkSqlParserParser.NOT = 25; +FlinkSqlParserParser.NO = 26; +FlinkSqlParserParser.EXISTS = 27; +FlinkSqlParserParser.BETWEEN = 28; +FlinkSqlParserParser.LIKE = 29; +FlinkSqlParserParser.RLIKE = 30; +FlinkSqlParserParser.IS = 31; +FlinkSqlParserParser.TRUE = 32; +FlinkSqlParserParser.FALSE = 33; +FlinkSqlParserParser.NULLS = 34; +FlinkSqlParserParser.ASC = 35; +FlinkSqlParserParser.DESC = 36; +FlinkSqlParserParser.FOR = 37; +FlinkSqlParserParser.INTERVAL = 38; +FlinkSqlParserParser.CASE = 39; +FlinkSqlParserParser.WHEN = 40; +FlinkSqlParserParser.THEN = 41; +FlinkSqlParserParser.ELSE = 42; +FlinkSqlParserParser.END = 43; +FlinkSqlParserParser.JOIN = 44; +FlinkSqlParserParser.CROSS = 45; +FlinkSqlParserParser.OUTER = 46; +FlinkSqlParserParser.INNER = 47; +FlinkSqlParserParser.LEFT = 48; +FlinkSqlParserParser.SEMI = 49; +FlinkSqlParserParser.RIGHT = 50; +FlinkSqlParserParser.FULL = 51; +FlinkSqlParserParser.NATURAL = 52; +FlinkSqlParserParser.ON = 53; +FlinkSqlParserParser.PIVOT = 54; +FlinkSqlParserParser.LATERAL = 55; +FlinkSqlParserParser.WINDOW = 56; +FlinkSqlParserParser.OVER = 57; +FlinkSqlParserParser.PARTITION = 58; +FlinkSqlParserParser.RANGE = 59; +FlinkSqlParserParser.ROWS = 60; +FlinkSqlParserParser.UNBOUNDED = 61; +FlinkSqlParserParser.PRECEDING = 62; +FlinkSqlParserParser.FOLLOWING = 63; +FlinkSqlParserParser.CURRENT = 64; +FlinkSqlParserParser.FIRST = 65; +FlinkSqlParserParser.AFTER = 66; +FlinkSqlParserParser.LAST = 67; +FlinkSqlParserParser.WITH = 68; +FlinkSqlParserParser.VALUES = 69; +FlinkSqlParserParser.CREATE = 70; +FlinkSqlParserParser.TABLE = 71; +FlinkSqlParserParser.DIRECTORY = 72; +FlinkSqlParserParser.VIEW = 73; +FlinkSqlParserParser.REPLACE = 74; +FlinkSqlParserParser.INSERT = 75; +FlinkSqlParserParser.DELETE = 76; +FlinkSqlParserParser.INTO = 77; +FlinkSqlParserParser.DESCRIBE = 78; +FlinkSqlParserParser.EXPLAIN = 79; +FlinkSqlParserParser.FORMAT = 80; +FlinkSqlParserParser.LOGICAL = 81; +FlinkSqlParserParser.CODEGEN = 82; +FlinkSqlParserParser.COST = 83; +FlinkSqlParserParser.CAST = 84; +FlinkSqlParserParser.SHOW = 85; +FlinkSqlParserParser.TABLES = 86; +FlinkSqlParserParser.COLUMNS = 87; +FlinkSqlParserParser.COLUMN = 88; +FlinkSqlParserParser.USE = 89; +FlinkSqlParserParser.PARTITIONS = 90; +FlinkSqlParserParser.FUNCTIONS = 91; +FlinkSqlParserParser.DROP = 92; +FlinkSqlParserParser.UNION = 93; +FlinkSqlParserParser.EXCEPT = 94; +FlinkSqlParserParser.SETMINUS = 95; +FlinkSqlParserParser.INTERSECT = 96; +FlinkSqlParserParser.TO = 97; +FlinkSqlParserParser.TABLESAMPLE = 98; +FlinkSqlParserParser.STRATIFY = 99; +FlinkSqlParserParser.ALTER = 100; +FlinkSqlParserParser.RENAME = 101; +FlinkSqlParserParser.STRUCT = 102; +FlinkSqlParserParser.COMMENT = 103; +FlinkSqlParserParser.SET = 104; +FlinkSqlParserParser.RESET = 105; +FlinkSqlParserParser.DATA = 106; +FlinkSqlParserParser.START = 107; +FlinkSqlParserParser.TRANSACTION = 108; +FlinkSqlParserParser.COMMIT = 109; +FlinkSqlParserParser.ROLLBACK = 110; +FlinkSqlParserParser.MACRO = 111; +FlinkSqlParserParser.IGNORE = 112; +FlinkSqlParserParser.BOTH = 113; +FlinkSqlParserParser.LEADING = 114; +FlinkSqlParserParser.TRAILING = 115; +FlinkSqlParserParser.IF = 116; +FlinkSqlParserParser.POSITION = 117; +FlinkSqlParserParser.EXTRACT = 118; +FlinkSqlParserParser.EQ = 119; +FlinkSqlParserParser.NSEQ = 120; +FlinkSqlParserParser.NEQ = 121; +FlinkSqlParserParser.NEQJ = 122; +FlinkSqlParserParser.LT = 123; +FlinkSqlParserParser.LTE = 124; +FlinkSqlParserParser.GT = 125; +FlinkSqlParserParser.GTE = 126; +FlinkSqlParserParser.PLUS = 127; +FlinkSqlParserParser.MINUS = 128; +FlinkSqlParserParser.ASTERISK = 129; +FlinkSqlParserParser.SLASH = 130; +FlinkSqlParserParser.PERCENT = 131; +FlinkSqlParserParser.DIV = 132; +FlinkSqlParserParser.TILDE = 133; +FlinkSqlParserParser.AMPERSAND = 134; +FlinkSqlParserParser.PIPE = 135; +FlinkSqlParserParser.CONCAT_PIPE = 136; +FlinkSqlParserParser.HAT = 137; +FlinkSqlParserParser.PERCENTLIT = 138; +FlinkSqlParserParser.BUCKET = 139; +FlinkSqlParserParser.OUT = 140; +FlinkSqlParserParser.OF = 141; +FlinkSqlParserParser.SORT = 142; +FlinkSqlParserParser.CLUSTER = 143; +FlinkSqlParserParser.DISTRIBUTE = 144; +FlinkSqlParserParser.OVERWRITE = 145; +FlinkSqlParserParser.TRANSFORM = 146; +FlinkSqlParserParser.REDUCE = 147; +FlinkSqlParserParser.USING = 148; +FlinkSqlParserParser.SERDE = 149; +FlinkSqlParserParser.SERDEPROPERTIES = 150; +FlinkSqlParserParser.RECORDREADER = 151; +FlinkSqlParserParser.RECORDWRITER = 152; +FlinkSqlParserParser.DELIMITED = 153; +FlinkSqlParserParser.FIELDS = 154; +FlinkSqlParserParser.TERMINATED = 155; +FlinkSqlParserParser.COLLECTION = 156; +FlinkSqlParserParser.ITEMS = 157; +FlinkSqlParserParser.KEYS = 158; +FlinkSqlParserParser.ESCAPED = 159; +FlinkSqlParserParser.LINES = 160; +FlinkSqlParserParser.SEPARATED = 161; +FlinkSqlParserParser.FUNCTION = 162; +FlinkSqlParserParser.EXTENDED = 163; +FlinkSqlParserParser.REFRESH = 164; +FlinkSqlParserParser.CLEAR = 165; +FlinkSqlParserParser.CACHE = 166; +FlinkSqlParserParser.UNCACHE = 167; +FlinkSqlParserParser.LAZY = 168; +FlinkSqlParserParser.FORMATTED = 169; +FlinkSqlParserParser.GLOBAL = 170; +FlinkSqlParserParser.TEMPORARY = 171; +FlinkSqlParserParser.OPTIONS = 172; +FlinkSqlParserParser.UNSET = 173; +FlinkSqlParserParser.TBLPROPERTIES = 174; +FlinkSqlParserParser.DBPROPERTIES = 175; +FlinkSqlParserParser.BUCKETS = 176; +FlinkSqlParserParser.SKEWED = 177; +FlinkSqlParserParser.STORED = 178; +FlinkSqlParserParser.DIRECTORIES = 179; +FlinkSqlParserParser.LOCATION = 180; +FlinkSqlParserParser.EXCHANGE = 181; +FlinkSqlParserParser.ARCHIVE = 182; +FlinkSqlParserParser.UNARCHIVE = 183; +FlinkSqlParserParser.FILEFORMAT = 184; +FlinkSqlParserParser.TOUCH = 185; +FlinkSqlParserParser.COMPACT = 186; +FlinkSqlParserParser.CONCATENATE = 187; +FlinkSqlParserParser.CHANGE = 188; +FlinkSqlParserParser.CASCADE = 189; +FlinkSqlParserParser.RESTRICT = 190; +FlinkSqlParserParser.CLUSTERED = 191; +FlinkSqlParserParser.SORTED = 192; +FlinkSqlParserParser.PURGE = 193; +FlinkSqlParserParser.INPUTFORMAT = 194; +FlinkSqlParserParser.OUTPUTFORMAT = 195; +FlinkSqlParserParser.DATABASE = 196; +FlinkSqlParserParser.DATABASES = 197; +FlinkSqlParserParser.DFS = 198; +FlinkSqlParserParser.TRUNCATE = 199; +FlinkSqlParserParser.ANALYZE = 200; +FlinkSqlParserParser.COMPUTE = 201; +FlinkSqlParserParser.LIST = 202; +FlinkSqlParserParser.STATISTICS = 203; +FlinkSqlParserParser.PARTITIONED = 204; +FlinkSqlParserParser.EXTERNAL = 205; +FlinkSqlParserParser.DEFINED = 206; +FlinkSqlParserParser.REVOKE = 207; +FlinkSqlParserParser.GRANT = 208; +FlinkSqlParserParser.LOCK = 209; +FlinkSqlParserParser.UNLOCK = 210; +FlinkSqlParserParser.MSCK = 211; +FlinkSqlParserParser.REPAIR = 212; +FlinkSqlParserParser.RECOVER = 213; +FlinkSqlParserParser.EXPORT = 214; +FlinkSqlParserParser.IMPORT = 215; +FlinkSqlParserParser.LOAD = 216; +FlinkSqlParserParser.ROLE = 217; +FlinkSqlParserParser.ROLES = 218; +FlinkSqlParserParser.COMPACTIONS = 219; +FlinkSqlParserParser.PRINCIPALS = 220; +FlinkSqlParserParser.TRANSACTIONS = 221; +FlinkSqlParserParser.INDEX = 222; +FlinkSqlParserParser.INDEXES = 223; +FlinkSqlParserParser.LOCKS = 224; +FlinkSqlParserParser.OPTION = 225; +FlinkSqlParserParser.ANTI = 226; +FlinkSqlParserParser.LOCAL = 227; +FlinkSqlParserParser.INPATH = 228; +FlinkSqlParserParser.WATERMARK = 229; +FlinkSqlParserParser.UNNEST = 230; +FlinkSqlParserParser.MATCH_RECOGNIZE = 231; +FlinkSqlParserParser.MEASURES = 232; +FlinkSqlParserParser.ONE = 233; +FlinkSqlParserParser.PER = 234; +FlinkSqlParserParser.MATCH = 235; +FlinkSqlParserParser.SKIP1 = 236; +FlinkSqlParserParser.NEXT = 237; +FlinkSqlParserParser.PAST = 238; +FlinkSqlParserParser.PATTERN = 239; +FlinkSqlParserParser.WITHIN = 240; +FlinkSqlParserParser.DEFINE = 241; +FlinkSqlParserParser.BIGINT_LITERAL = 242; +FlinkSqlParserParser.SMALLINT_LITERAL = 243; +FlinkSqlParserParser.TINYINT_LITERAL = 244; +FlinkSqlParserParser.INTEGER_VALUE = 245; +FlinkSqlParserParser.DECIMAL_VALUE = 246; +FlinkSqlParserParser.DOUBLE_LITERAL = 247; +FlinkSqlParserParser.BIGDECIMAL_LITERAL = 248; +FlinkSqlParserParser.IDENTIFIER = 249; +FlinkSqlParserParser.BACKQUOTED_IDENTIFIER = 250; +FlinkSqlParserParser.SIMPLE_COMMENT = 251; +FlinkSqlParserParser.BRACKETED_EMPTY_COMMENT = 252; +FlinkSqlParserParser.BRACKETED_COMMENT = 253; +FlinkSqlParserParser.WS = 254; +FlinkSqlParserParser.UNRECOGNIZED = 255; +FlinkSqlParserParser.REVERSE_QUOTE_ID = 256; +FlinkSqlParserParser.DOUBLE_QUOTE_ID = 257; +FlinkSqlParserParser.DOT_ID = 258; +FlinkSqlParserParser.ID = 259; +FlinkSqlParserParser.SYSTEM = 260; +FlinkSqlParserParser.STRING = 261; +FlinkSqlParserParser.ARRAY = 262; +FlinkSqlParserParser.MAP = 263; +FlinkSqlParserParser.CHAR = 264; +FlinkSqlParserParser.VARCHAR = 265; +FlinkSqlParserParser.BINARY = 266; +FlinkSqlParserParser.VARBINARY = 267; +FlinkSqlParserParser.BYTES = 268; +FlinkSqlParserParser.DECIMAL = 269; +FlinkSqlParserParser.TINYINT = 270; +FlinkSqlParserParser.SMALLINT = 271; +FlinkSqlParserParser.INT = 272; +FlinkSqlParserParser.BIGINT = 273; +FlinkSqlParserParser.FLOAT = 274; +FlinkSqlParserParser.DOUBLE = 275; +FlinkSqlParserParser.DATE = 276; +FlinkSqlParserParser.TIME = 277; +FlinkSqlParserParser.TIMESTAMP = 278; +FlinkSqlParserParser.MULTISET = 279; +FlinkSqlParserParser.BOOLEAN = 280; +FlinkSqlParserParser.RAW = 281; +FlinkSqlParserParser.ROW = 282; +FlinkSqlParserParser.NULL = 283; +FlinkSqlParserParser.EQUAL_SYMBOL = 284; +FlinkSqlParserParser.GREATER_SYMBOL = 285; +FlinkSqlParserParser.LESS_SYMBOL = 286; +FlinkSqlParserParser.EXCLAMATION_SYMBOL = 287; +FlinkSqlParserParser.BIT_NOT_OP = 288; +FlinkSqlParserParser.BIT_OR_OP = 289; +FlinkSqlParserParser.BIT_AND_OP = 290; +FlinkSqlParserParser.BIT_XOR_OP = 291; +FlinkSqlParserParser.DOT = 292; +FlinkSqlParserParser.LS_BRACKET = 293; +FlinkSqlParserParser.RS_BRACKET = 294; +FlinkSqlParserParser.LR_BRACKET = 295; +FlinkSqlParserParser.RR_BRACKET = 296; +FlinkSqlParserParser.COMMA = 297; +FlinkSqlParserParser.SEMICOLON = 298; +FlinkSqlParserParser.AT_SIGN = 299; +FlinkSqlParserParser.ZERO_DECIMAL = 300; +FlinkSqlParserParser.ONE_DECIMAL = 301; +FlinkSqlParserParser.TWO_DECIMAL = 302; +FlinkSqlParserParser.SINGLE_QUOTE_SYMB = 303; +FlinkSqlParserParser.DOUBLE_QUOTE_SYMB = 304; +FlinkSqlParserParser.REVERSE_QUOTE_SYMB = 305; +FlinkSqlParserParser.COLON_SYMB = 306; +FlinkSqlParserParser.ASTERISK_SIGN = 307; +FlinkSqlParserParser.UNDERLINE_SIGN = 308; +FlinkSqlParserParser.HYPNEN_SIGN = 309; +FlinkSqlParserParser.ADD_SIGN = 310; +FlinkSqlParserParser.PENCENT_SIGN = 311; +FlinkSqlParserParser.DOUBLE_HYPNEN_SIGN = 312; +FlinkSqlParserParser.SLASH_SIGN = 313; +FlinkSqlParserParser.STRING_LITERAL = 314; +FlinkSqlParserParser.DECIMAL_LITERAL = 315; +FlinkSqlParserParser.REAL_LITERAL = 316; +FlinkSqlParserParser.BIT_STRING = 317; +FlinkSqlParserParser.IDENTIFIER_BASE = 318; +FlinkSqlParserParser.DEC_DIGIT = 319; FlinkSqlParserParser.RULE_program = 0; FlinkSqlParserParser.RULE_statement = 1; @@ -1105,51 +1006,46 @@ FlinkSqlParserParser.RULE_dropTable = 22; FlinkSqlParserParser.RULE_dropDatabase = 23; FlinkSqlParserParser.RULE_dropView = 24; FlinkSqlParserParser.RULE_dropFunction = 25; -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; +FlinkSqlParserParser.RULE_insertStatement = 26; +FlinkSqlParserParser.RULE_insertPartitionDefinition = 27; +FlinkSqlParserParser.RULE_valuesDefinition = 28; +FlinkSqlParserParser.RULE_valuesRowDefinition = 29; +FlinkSqlParserParser.RULE_allValueDifinition = 30; +FlinkSqlParserParser.RULE_queryStatement = 31; +FlinkSqlParserParser.RULE_selectStatement = 32; +FlinkSqlParserParser.RULE_projectItemDefinition = 33; +FlinkSqlParserParser.RULE_tableExpression = 34; +FlinkSqlParserParser.RULE_tableReference = 35; +FlinkSqlParserParser.RULE_tablePrimary = 36; +FlinkSqlParserParser.RULE_expression = 37; +FlinkSqlParserParser.RULE_booleanExpression = 38; +FlinkSqlParserParser.RULE_predicate = 39; +FlinkSqlParserParser.RULE_valueExpression = 40; +FlinkSqlParserParser.RULE_primaryExpression = 41; +FlinkSqlParserParser.RULE_tableAlias = 42; +FlinkSqlParserParser.RULE_identifierList = 43; +FlinkSqlParserParser.RULE_identifierSeq = 44; +FlinkSqlParserParser.RULE_identifier = 45; +FlinkSqlParserParser.RULE_strictIdentifier = 46; +FlinkSqlParserParser.RULE_quotedIdentifier = 47; +FlinkSqlParserParser.RULE_whenClause = 48; +FlinkSqlParserParser.RULE_uidList = 49; +FlinkSqlParserParser.RULE_uid = 50; +FlinkSqlParserParser.RULE_withOption = 51; +FlinkSqlParserParser.RULE_ifNotExists = 52; +FlinkSqlParserParser.RULE_ifExists = 53; +FlinkSqlParserParser.RULE_keyValueDefinition = 54; +FlinkSqlParserParser.RULE_logicalOperator = 55; +FlinkSqlParserParser.RULE_comparisonOperator = 56; +FlinkSqlParserParser.RULE_bitOperator = 57; +FlinkSqlParserParser.RULE_mathOperator = 58; +FlinkSqlParserParser.RULE_unaryOperator = 59; +FlinkSqlParserParser.RULE_fullColumnName = 60; +FlinkSqlParserParser.RULE_constant = 61; +FlinkSqlParserParser.RULE_stringLiteral = 62; +FlinkSqlParserParser.RULE_decimalLiteral = 63; +FlinkSqlParserParser.RULE_booleanLiteral = 64; +FlinkSqlParserParser.RULE_setQuantifier = 65; function ProgramContext(parser, parent, invokingState) { @@ -1207,9 +1103,9 @@ FlinkSqlParserParser.prototype.program = function() { this.enterRule(localctx, 0, FlinkSqlParserParser.RULE_program); try { this.enterOuterAlt(localctx, 1); - this.state = 142; + this.state = 132; this.statement(); - this.state = 143; + this.state = 133; this.match(FlinkSqlParserParser.EOF); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -1281,9 +1177,9 @@ FlinkSqlParserParser.prototype.statement = function() { this.enterRule(localctx, 2, FlinkSqlParserParser.RULE_statement); try { this.enterOuterAlt(localctx, 1); - this.state = 145; + this.state = 135; this.sqlStatements(); - this.state = 146; + this.state = 136; this.match(FlinkSqlParserParser.EOF); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -1382,28 +1278,28 @@ FlinkSqlParserParser.prototype.sqlStatements = function() { var _la = 0; // Token type try { this.enterOuterAlt(localctx, 1); - this.state = 154; + this.state = 144; this._errHandler.sync(this); _la = this._input.LA(1); - 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; + while(((((_la - 70)) & ~0x1f) == 0 && ((1 << (_la - 70)) & ((1 << (FlinkSqlParserParser.CREATE - 70)) | (1 << (FlinkSqlParserParser.INSERT - 70)) | (1 << (FlinkSqlParserParser.DROP - 70)) | (1 << (FlinkSqlParserParser.ALTER - 70)))) !== 0) || _la===FlinkSqlParserParser.SEMICOLON) { + this.state = 142; this._errHandler.sync(this); var la_ = this._interp.adaptivePredict(this._input,0,this._ctx); switch(la_) { case 1: - this.state = 148; + this.state = 138; this.sqlStatement(); - this.state = 149; + this.state = 139; this.match(FlinkSqlParserParser.SEMICOLON); break; case 2: - this.state = 151; + this.state = 141; this.emptyStatement(); break; } - this.state = 156; + this.state = 146; this._errHandler.sync(this); _la = this._input.LA(1); } @@ -1476,26 +1372,22 @@ FlinkSqlParserParser.prototype.sqlStatement = function() { var localctx = new SqlStatementContext(this, this._ctx, this.state); this.enterRule(localctx, 6, FlinkSqlParserParser.RULE_sqlStatement); try { - this.state = 159; + this.state = 149; this._errHandler.sync(this); - switch(this._input.LA(1)) { - case FlinkSqlParserParser.CREATE: - case FlinkSqlParserParser.DROP: - case FlinkSqlParserParser.ALTER: - case FlinkSqlParserParser.SEMICOLON: + var la_ = this._interp.adaptivePredict(this._input,2,this._ctx); + switch(la_) { + case 1: this.enterOuterAlt(localctx, 1); - this.state = 157; + this.state = 147; this.ddlStatement(); break; - case FlinkSqlParserParser.T__4: - case FlinkSqlParserParser.VALUES: - case FlinkSqlParserParser.INSERT: + + case 2: this.enterOuterAlt(localctx, 2); - this.state = 158; + this.state = 148; this.dmlStatement(); break; - default: - throw new antlr4.error.NoViableAltException(this); + } } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -1563,7 +1455,7 @@ FlinkSqlParserParser.prototype.emptyStatement = function() { this.enterRule(localctx, 8, FlinkSqlParserParser.RULE_emptyStatement); try { this.enterOuterAlt(localctx, 1); - this.state = 161; + this.state = 151; this.match(FlinkSqlParserParser.SEMICOLON); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -1670,73 +1562,73 @@ FlinkSqlParserParser.prototype.ddlStatement = function() { var localctx = new DdlStatementContext(this, this._ctx, this.state); this.enterRule(localctx, 10, FlinkSqlParserParser.RULE_ddlStatement); try { - this.state = 174; + this.state = 164; this._errHandler.sync(this); var la_ = this._interp.adaptivePredict(this._input,3,this._ctx); switch(la_) { case 1: this.enterOuterAlt(localctx, 1); - this.state = 163; + this.state = 153; this.createTable(); break; case 2: this.enterOuterAlt(localctx, 2); - this.state = 164; + this.state = 154; this.createDatabase(); break; case 3: this.enterOuterAlt(localctx, 3); - this.state = 165; + this.state = 155; this.createView(); break; case 4: this.enterOuterAlt(localctx, 4); - this.state = 166; + this.state = 156; this.createFunction(); break; case 5: this.enterOuterAlt(localctx, 5); - this.state = 167; + this.state = 157; this.alterTable(); break; case 6: this.enterOuterAlt(localctx, 6); - this.state = 168; + this.state = 158; this.alterDatabase(); break; case 7: this.enterOuterAlt(localctx, 7); - this.state = 169; + this.state = 159; this.alterFunction(); break; case 8: this.enterOuterAlt(localctx, 8); - this.state = 170; + this.state = 160; this.dropTable(); break; case 9: this.enterOuterAlt(localctx, 9); - this.state = 171; + this.state = 161; this.dropDatabase(); break; case 10: this.enterOuterAlt(localctx, 10); - this.state = 172; + this.state = 162; this.dropView(); break; case 11: this.enterOuterAlt(localctx, 11); - this.state = 173; + this.state = 163; this.dropFunction(); break; @@ -1810,18 +1702,17 @@ FlinkSqlParserParser.prototype.dmlStatement = function() { var localctx = new DmlStatementContext(this, this._ctx, this.state); this.enterRule(localctx, 12, FlinkSqlParserParser.RULE_dmlStatement); try { - this.state = 178; + this.state = 168; this._errHandler.sync(this); switch(this._input.LA(1)) { - case FlinkSqlParserParser.T__4: - case FlinkSqlParserParser.VALUES: + case FlinkSqlParserParser.SEMICOLON: this.enterOuterAlt(localctx, 1); - this.state = 176; + this.state = 166; this.queryStatement(); break; case FlinkSqlParserParser.INSERT: this.enterOuterAlt(localctx, 2); - this.state = 177; + this.state = 167; this.insertStatement(); break; default: @@ -1941,39 +1832,39 @@ FlinkSqlParserParser.prototype.createTable = function() { var _la = 0; // Token type try { this.enterOuterAlt(localctx, 1); - this.state = 180; + this.state = 170; this.match(FlinkSqlParserParser.CREATE); - this.state = 181; + this.state = 171; this.match(FlinkSqlParserParser.TABLE); - this.state = 182; + this.state = 172; this.uid(); - this.state = 183; + this.state = 173; this.match(FlinkSqlParserParser.LR_BRACKET); - this.state = 184; + this.state = 174; this.columnOptionDefinition(); - this.state = 189; + this.state = 179; this._errHandler.sync(this); _la = this._input.LA(1); while(_la===FlinkSqlParserParser.COMMA) { - this.state = 185; + this.state = 175; this.match(FlinkSqlParserParser.COMMA); - this.state = 186; + this.state = 176; this.columnOptionDefinition(); - this.state = 191; + this.state = 181; this._errHandler.sync(this); _la = this._input.LA(1); } - this.state = 192; + this.state = 182; this.match(FlinkSqlParserParser.RR_BRACKET); - this.state = 194; + this.state = 184; this._errHandler.sync(this); _la = this._input.LA(1); if(_la===FlinkSqlParserParser.PARTITIONED) { - this.state = 193; + this.state = 183; this.partitionDefinition(); } - this.state = 196; + this.state = 186; this.withOption(); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -2045,9 +1936,9 @@ FlinkSqlParserParser.prototype.columnOptionDefinition = function() { this.enterRule(localctx, 16, FlinkSqlParserParser.RULE_columnOptionDefinition); try { this.enterOuterAlt(localctx, 1); - this.state = 198; + this.state = 188; this.columnName(); - this.state = 199; + this.state = 189; this.columnType(); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -2115,7 +2006,7 @@ FlinkSqlParserParser.prototype.columnName = function() { this.enterRule(localctx, 18, FlinkSqlParserParser.RULE_columnName); try { this.enterOuterAlt(localctx, 1); - this.state = 201; + this.state = 191; this.match(FlinkSqlParserParser.ID); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -2142,6 +2033,7 @@ function ColumnTypeContext(parser, parent, invokingState) { antlr4.ParserRuleContext.call(this, parent, invokingState); this.parser = parser; this.ruleIndex = FlinkSqlParserParser.RULE_columnType; + this.typeName = null; // Token return this; } @@ -2272,10 +2164,11 @@ FlinkSqlParserParser.prototype.columnType = function() { var _la = 0; // Token type try { this.enterOuterAlt(localctx, 1); - this.state = 203; + this.state = 193; + localctx.typeName = this._input.LT(1); _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); + if(!(((((_la - 261)) & ~0x1f) == 0 && ((1 << (_la - 261)) & ((1 << (FlinkSqlParserParser.STRING - 261)) | (1 << (FlinkSqlParserParser.ARRAY - 261)) | (1 << (FlinkSqlParserParser.MAP - 261)) | (1 << (FlinkSqlParserParser.CHAR - 261)) | (1 << (FlinkSqlParserParser.VARCHAR - 261)) | (1 << (FlinkSqlParserParser.BINARY - 261)) | (1 << (FlinkSqlParserParser.VARBINARY - 261)) | (1 << (FlinkSqlParserParser.BYTES - 261)) | (1 << (FlinkSqlParserParser.DECIMAL - 261)) | (1 << (FlinkSqlParserParser.TINYINT - 261)) | (1 << (FlinkSqlParserParser.SMALLINT - 261)) | (1 << (FlinkSqlParserParser.INT - 261)) | (1 << (FlinkSqlParserParser.BIGINT - 261)) | (1 << (FlinkSqlParserParser.FLOAT - 261)) | (1 << (FlinkSqlParserParser.DOUBLE - 261)) | (1 << (FlinkSqlParserParser.DATE - 261)) | (1 << (FlinkSqlParserParser.TIME - 261)) | (1 << (FlinkSqlParserParser.TIMESTAMP - 261)) | (1 << (FlinkSqlParserParser.MULTISET - 261)) | (1 << (FlinkSqlParserParser.BOOLEAN - 261)) | (1 << (FlinkSqlParserParser.RAW - 261)) | (1 << (FlinkSqlParserParser.ROW - 261)) | (1 << (FlinkSqlParserParser.NULL - 261)))) !== 0))) { + localctx.typeName = this._errHandler.recoverInline(this); } else { this._errHandler.reportMatch(this); @@ -2355,11 +2248,11 @@ FlinkSqlParserParser.prototype.partitionDefinition = function() { this.enterRule(localctx, 22, FlinkSqlParserParser.RULE_partitionDefinition); try { this.enterOuterAlt(localctx, 1); - this.state = 205; + this.state = 195; this.match(FlinkSqlParserParser.PARTITIONED); - this.state = 206; - this.match(FlinkSqlParserParser.T__13); - this.state = 207; + this.state = 196; + this.match(FlinkSqlParserParser.BY); + this.state = 197; this.partitionColumnDefinition(); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -2447,17 +2340,17 @@ FlinkSqlParserParser.prototype.partitionColumnDefinition = function() { var _la = 0; // Token type try { this.enterOuterAlt(localctx, 1); - this.state = 209; + this.state = 199; this.partitionColumnName(); - this.state = 214; + this.state = 204; this._errHandler.sync(this); _la = this._input.LA(1); while(_la===FlinkSqlParserParser.COMMA) { - this.state = 210; + this.state = 200; this.match(FlinkSqlParserParser.COMMA); - this.state = 211; + this.state = 201; this.partitionColumnName(); - this.state = 216; + this.state = 206; this._errHandler.sync(this); _la = this._input.LA(1); } @@ -2527,7 +2420,7 @@ FlinkSqlParserParser.prototype.partitionColumnName = function() { this.enterRule(localctx, 26, FlinkSqlParserParser.RULE_partitionColumnName); try { this.enterOuterAlt(localctx, 1); - this.state = 217; + this.state = 207; this.match(FlinkSqlParserParser.ID); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -2612,21 +2505,21 @@ FlinkSqlParserParser.prototype.createDatabase = function() { var _la = 0; // Token type try { this.enterOuterAlt(localctx, 1); - this.state = 219; + this.state = 209; this.match(FlinkSqlParserParser.CREATE); - this.state = 220; + this.state = 210; this.match(FlinkSqlParserParser.DATABASE); - this.state = 222; + this.state = 212; this._errHandler.sync(this); _la = this._input.LA(1); if(_la===FlinkSqlParserParser.IF) { - this.state = 221; + this.state = 211; this.ifNotExists(); } - this.state = 224; + this.state = 214; this.uid(); - this.state = 225; + this.state = 215; this.withOption(); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -2719,31 +2612,31 @@ FlinkSqlParserParser.prototype.createView = function() { var _la = 0; // Token type try { this.enterOuterAlt(localctx, 1); - this.state = 227; + this.state = 217; this.match(FlinkSqlParserParser.CREATE); - this.state = 229; + this.state = 219; this._errHandler.sync(this); _la = this._input.LA(1); if(_la===FlinkSqlParserParser.TEMPORARY) { - this.state = 228; + this.state = 218; this.match(FlinkSqlParserParser.TEMPORARY); } - this.state = 231; + this.state = 221; this.match(FlinkSqlParserParser.VIEW); - this.state = 233; + this.state = 223; this._errHandler.sync(this); _la = this._input.LA(1); if(_la===FlinkSqlParserParser.IF) { - this.state = 232; + this.state = 222; this.ifNotExists(); } - this.state = 235; + this.state = 225; this.uid(); - this.state = 236; - this.match(FlinkSqlParserParser.T__7); - this.state = 237; + this.state = 226; + this.match(FlinkSqlParserParser.AS); + this.state = 227; this.selectStatement(); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -2891,21 +2784,21 @@ FlinkSqlParserParser.prototype.alterTable = function() { this.enterRule(localctx, 34, FlinkSqlParserParser.RULE_alterTable); try { this.enterOuterAlt(localctx, 1); - this.state = 241; + this.state = 231; this.match(FlinkSqlParserParser.ALTER); - this.state = 242; + this.state = 232; this.match(FlinkSqlParserParser.TABLE); - this.state = 243; + this.state = 233; this.uid(); - this.state = 246; + this.state = 236; this._errHandler.sync(this); switch(this._input.LA(1)) { case FlinkSqlParserParser.RENAME: - this.state = 244; + this.state = 234; this.renameDefinition(); break; case FlinkSqlParserParser.SET: - this.state = 245; + this.state = 235; this.setKeyValueDefinition(); break; default: @@ -2985,11 +2878,11 @@ FlinkSqlParserParser.prototype.renameDefinition = function() { this.enterRule(localctx, 36, FlinkSqlParserParser.RULE_renameDefinition); try { this.enterOuterAlt(localctx, 1); - this.state = 248; + this.state = 238; this.match(FlinkSqlParserParser.RENAME); - this.state = 249; + this.state = 239; this.match(FlinkSqlParserParser.TO); - this.state = 250; + this.state = 240; this.uid(); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -3089,25 +2982,25 @@ FlinkSqlParserParser.prototype.setKeyValueDefinition = function() { var _la = 0; // Token type try { this.enterOuterAlt(localctx, 1); - this.state = 252; + this.state = 242; this.match(FlinkSqlParserParser.SET); - this.state = 253; + this.state = 243; this.match(FlinkSqlParserParser.LR_BRACKET); - this.state = 254; + this.state = 244; this.keyValueDefinition(); - this.state = 259; + this.state = 249; this._errHandler.sync(this); _la = this._input.LA(1); while(_la===FlinkSqlParserParser.COMMA) { - this.state = 255; + this.state = 245; this.match(FlinkSqlParserParser.COMMA); - this.state = 256; + this.state = 246; this.keyValueDefinition(); - this.state = 261; + this.state = 251; this._errHandler.sync(this); _la = this._input.LA(1); } - this.state = 262; + this.state = 252; this.match(FlinkSqlParserParser.RR_BRACKET); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -3187,13 +3080,13 @@ FlinkSqlParserParser.prototype.alterDatabase = function() { this.enterRule(localctx, 40, FlinkSqlParserParser.RULE_alterDatabase); try { this.enterOuterAlt(localctx, 1); - this.state = 264; + this.state = 254; this.match(FlinkSqlParserParser.ALTER); - this.state = 265; + this.state = 255; this.match(FlinkSqlParserParser.DATABASE); - this.state = 266; + this.state = 256; this.uid(); - this.state = 267; + this.state = 257; this.setKeyValueDefinition(); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -3338,19 +3231,19 @@ FlinkSqlParserParser.prototype.dropTable = function() { var _la = 0; // Token type try { this.enterOuterAlt(localctx, 1); - this.state = 271; + this.state = 261; this.match(FlinkSqlParserParser.DROP); - this.state = 272; + this.state = 262; this.match(FlinkSqlParserParser.TABLE); - this.state = 274; + this.state = 264; this._errHandler.sync(this); _la = this._input.LA(1); if(_la===FlinkSqlParserParser.IF) { - this.state = 273; + this.state = 263; this.ifExists(); } - this.state = 276; + this.state = 266; this.uid(); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -3440,25 +3333,25 @@ FlinkSqlParserParser.prototype.dropDatabase = function() { var _la = 0; // Token type try { this.enterOuterAlt(localctx, 1); - this.state = 278; + this.state = 268; this.match(FlinkSqlParserParser.DROP); - this.state = 279; + this.state = 269; this.match(FlinkSqlParserParser.DATABASE); - this.state = 281; + this.state = 271; this._errHandler.sync(this); _la = this._input.LA(1); if(_la===FlinkSqlParserParser.IF) { - this.state = 280; + this.state = 270; this.ifExists(); } - this.state = 283; + this.state = 273; this.uid(); - this.state = 285; + this.state = 275; this._errHandler.sync(this); _la = this._input.LA(1); if(_la===FlinkSqlParserParser.CASCADE || _la===FlinkSqlParserParser.RESTRICT) { - this.state = 284; + this.state = 274; localctx.dropType = this._input.LT(1); _la = this._input.LA(1); if(!(_la===FlinkSqlParserParser.CASCADE || _la===FlinkSqlParserParser.RESTRICT)) { @@ -3553,27 +3446,27 @@ FlinkSqlParserParser.prototype.dropView = function() { var _la = 0; // Token type try { this.enterOuterAlt(localctx, 1); - this.state = 287; + this.state = 277; this.match(FlinkSqlParserParser.DROP); - this.state = 289; + this.state = 279; this._errHandler.sync(this); _la = this._input.LA(1); if(_la===FlinkSqlParserParser.TEMPORARY) { - this.state = 288; + this.state = 278; this.match(FlinkSqlParserParser.TEMPORARY); } - this.state = 291; + this.state = 281; this.match(FlinkSqlParserParser.VIEW); - this.state = 293; + this.state = 283; this._errHandler.sync(this); _la = this._input.LA(1); if(_la===FlinkSqlParserParser.IF) { - this.state = 292; + this.state = 282; this.ifExists(); } - this.state = 295; + this.state = 285; this.uid(); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -3662,33 +3555,33 @@ FlinkSqlParserParser.prototype.dropFunction = function() { var _la = 0; // Token type try { this.enterOuterAlt(localctx, 1); - this.state = 297; + this.state = 287; this.match(FlinkSqlParserParser.DROP); - this.state = 301; + this.state = 291; this._errHandler.sync(this); var la_ = this._interp.adaptivePredict(this._input,18,this._ctx); if(la_===1) { - this.state = 298; + this.state = 288; this.match(FlinkSqlParserParser.TEMPORARY); } else if(la_===2) { - this.state = 299; + this.state = 289; this.match(FlinkSqlParserParser.TEMPORARY); - this.state = 300; + this.state = 290; this.match(FlinkSqlParserParser.SYSTEM); } - this.state = 303; + this.state = 293; this.match(FlinkSqlParserParser.FUNCTION); - this.state = 305; + this.state = 295; this._errHandler.sync(this); _la = this._input.LA(1); if(_la===FlinkSqlParserParser.IF) { - this.state = 304; + this.state = 294; this.ifExists(); } - this.state = 307; + this.state = 297; this.uid(); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -3705,2465 +3598,6 @@ 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; - } - if(invokingState===undefined || invokingState===null) { - invokingState = -1; - } - antlr4.ParserRuleContext.call(this, parent, invokingState); - this.parser = parser; - this.ruleIndex = FlinkSqlParserParser.RULE_selectStatement; - return this; -} - -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 ) { - listener.enterSelectStatement(this); - } -}; - -SelectStatementContext.prototype.exitRule = function(listener) { - if(listener instanceof FlinkSqlParserListener ) { - listener.exitSelectStatement(this); - } -}; - -SelectStatementContext.prototype.accept = function(visitor) { - if ( visitor instanceof FlinkSqlParserVisitor ) { - return visitor.visitSelectStatement(this); - } else { - return visitor.visitChildren(this); - } -}; - - - - -FlinkSqlParserParser.SelectStatementContext = SelectStatementContext; - -FlinkSqlParserParser.prototype.selectStatement = function() { - - var localctx = new SelectStatementContext(this, this._ctx, this.state); - 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); - - } 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 InsertStatementContext(parser, parent, invokingState) { if(parent===undefined) { parent = null; @@ -6236,13 +3670,13 @@ FlinkSqlParserParser.InsertStatementContext = InsertStatementContext; FlinkSqlParserParser.prototype.insertStatement = function() { var localctx = new InsertStatementContext(this, this._ctx, this.state); - this.enterRule(localctx, 92, FlinkSqlParserParser.RULE_insertStatement); + this.enterRule(localctx, 52, FlinkSqlParserParser.RULE_insertStatement); var _la = 0; // Token type try { this.enterOuterAlt(localctx, 1); - this.state = 583; + this.state = 299; this.match(FlinkSqlParserParser.INSERT); - this.state = 584; + this.state = 300; _la = this._input.LA(1); if(!(_la===FlinkSqlParserParser.INTO || _la===FlinkSqlParserParser.OVERWRITE)) { this._errHandler.recoverInline(this); @@ -6251,26 +3685,26 @@ FlinkSqlParserParser.prototype.insertStatement = function() { this._errHandler.reportMatch(this); this.consume(); } - this.state = 585; + this.state = 301; this.uid(); - this.state = 591; + this.state = 307; this._errHandler.sync(this); switch(this._input.LA(1)) { - case FlinkSqlParserParser.T__4: + case FlinkSqlParserParser.SELECT: case FlinkSqlParserParser.PARTITION: - this.state = 587; + this.state = 303; this._errHandler.sync(this); _la = this._input.LA(1); if(_la===FlinkSqlParserParser.PARTITION) { - this.state = 586; + this.state = 302; this.insertPartitionDefinition(); } - this.state = 589; + this.state = 305; this.selectStatement(); break; case FlinkSqlParserParser.VALUES: - this.state = 590; + this.state = 306; this.valuesDefinition(); break; default: @@ -6370,29 +3804,29 @@ FlinkSqlParserParser.InsertPartitionDefinitionContext = InsertPartitionDefinitio FlinkSqlParserParser.prototype.insertPartitionDefinition = function() { var localctx = new InsertPartitionDefinitionContext(this, this._ctx, this.state); - this.enterRule(localctx, 94, FlinkSqlParserParser.RULE_insertPartitionDefinition); + this.enterRule(localctx, 54, FlinkSqlParserParser.RULE_insertPartitionDefinition); var _la = 0; // Token type try { this.enterOuterAlt(localctx, 1); - this.state = 593; + this.state = 309; this.match(FlinkSqlParserParser.PARTITION); - this.state = 594; + this.state = 310; this.match(FlinkSqlParserParser.LR_BRACKET); - this.state = 595; + this.state = 311; this.keyValueDefinition(); - this.state = 600; + this.state = 316; this._errHandler.sync(this); _la = this._input.LA(1); while(_la===FlinkSqlParserParser.COMMA) { - this.state = 596; + this.state = 312; this.match(FlinkSqlParserParser.COMMA); - this.state = 597; + this.state = 313; this.keyValueDefinition(); - this.state = 602; + this.state = 318; this._errHandler.sync(this); _la = this._input.LA(1); } - this.state = 603; + this.state = 319; this.match(FlinkSqlParserParser.RR_BRACKET); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -6480,23 +3914,23 @@ FlinkSqlParserParser.ValuesDefinitionContext = ValuesDefinitionContext; FlinkSqlParserParser.prototype.valuesDefinition = function() { var localctx = new ValuesDefinitionContext(this, this._ctx, this.state); - this.enterRule(localctx, 96, FlinkSqlParserParser.RULE_valuesDefinition); + this.enterRule(localctx, 56, FlinkSqlParserParser.RULE_valuesDefinition); var _la = 0; // Token type try { this.enterOuterAlt(localctx, 1); - this.state = 605; + this.state = 321; this.match(FlinkSqlParserParser.VALUES); - this.state = 606; + this.state = 322; this.valuesRowDefinition(); - this.state = 611; + this.state = 327; this._errHandler.sync(this); _la = this._input.LA(1); while(_la===FlinkSqlParserParser.COMMA) { - this.state = 607; + this.state = 323; this.match(FlinkSqlParserParser.COMMA); - this.state = 608; + this.state = 324; this.valuesRowDefinition(); - this.state = 613; + this.state = 329; this._errHandler.sync(this); _la = this._input.LA(1); } @@ -6590,27 +4024,27 @@ FlinkSqlParserParser.ValuesRowDefinitionContext = ValuesRowDefinitionContext; FlinkSqlParserParser.prototype.valuesRowDefinition = function() { var localctx = new ValuesRowDefinitionContext(this, this._ctx, this.state); - this.enterRule(localctx, 98, FlinkSqlParserParser.RULE_valuesRowDefinition); + this.enterRule(localctx, 58, FlinkSqlParserParser.RULE_valuesRowDefinition); var _la = 0; // Token type try { this.enterOuterAlt(localctx, 1); - this.state = 614; + this.state = 330; this.match(FlinkSqlParserParser.LR_BRACKET); - this.state = 615; + this.state = 331; this.allValueDifinition(); - this.state = 620; + this.state = 336; this._errHandler.sync(this); _la = this._input.LA(1); while(_la===FlinkSqlParserParser.COMMA) { - this.state = 616; + this.state = 332; this.match(FlinkSqlParserParser.COMMA); - this.state = 617; + this.state = 333; this.allValueDifinition(); - this.state = 622; + this.state = 338; this._errHandler.sync(this); _la = this._input.LA(1); } - this.state = 623; + this.state = 339; this.match(FlinkSqlParserParser.RR_BRACKET); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -6687,30 +4121,30 @@ FlinkSqlParserParser.AllValueDifinitionContext = AllValueDifinitionContext; FlinkSqlParserParser.prototype.allValueDifinition = function() { var localctx = new AllValueDifinitionContext(this, this._ctx, this.state); - this.enterRule(localctx, 100, FlinkSqlParserParser.RULE_allValueDifinition); + this.enterRule(localctx, 60, FlinkSqlParserParser.RULE_allValueDifinition); try { - this.state = 629; + this.state = 345; this._errHandler.sync(this); switch(this._input.LA(1)) { case FlinkSqlParserParser.STRING_LITERAL: this.enterOuterAlt(localctx, 1); - this.state = 625; + this.state = 341; this.stringLiteral(); break; case FlinkSqlParserParser.TRUE: case FlinkSqlParserParser.FALSE: this.enterOuterAlt(localctx, 2); - this.state = 626; + this.state = 342; this.booleanLiteral(); break; case FlinkSqlParserParser.DEC_DIGIT: this.enterOuterAlt(localctx, 3); - this.state = 627; + this.state = 343; this.match(FlinkSqlParserParser.DEC_DIGIT); break; case FlinkSqlParserParser.NULL: this.enterOuterAlt(localctx, 4); - this.state = 628; + this.state = 344; this.match(FlinkSqlParserParser.NULL); break; default: @@ -6731,6 +4165,3110 @@ FlinkSqlParserParser.prototype.allValueDifinition = 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.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, 62, FlinkSqlParserParser.RULE_queryStatement); + 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 SelectStatementContext(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_selectStatement; + return this; +} + +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.setQuantifier = function() { + return this.getTypedRuleContext(SetQuantifierContext,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 ) { + listener.enterSelectStatement(this); + } +}; + +SelectStatementContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitSelectStatement(this); + } +}; + +SelectStatementContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitSelectStatement(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +FlinkSqlParserParser.SelectStatementContext = SelectStatementContext; + +FlinkSqlParserParser.prototype.selectStatement = function() { + + var localctx = new SelectStatementContext(this, this._ctx, this.state); + this.enterRule(localctx, 64, FlinkSqlParserParser.RULE_selectStatement); + var _la = 0; // Token type + try { + this.enterOuterAlt(localctx, 1); + this.state = 349; + this.match(FlinkSqlParserParser.SELECT); + this.state = 351; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===FlinkSqlParserParser.ALL || _la===FlinkSqlParserParser.DISTINCT) { + this.state = 350; + this.setQuantifier(); + } + + this.state = 362; + this._errHandler.sync(this); + switch(this._input.LA(1)) { + case FlinkSqlParserParser.ASTERISK_SIGN: + this.state = 353; + this.match(FlinkSqlParserParser.ASTERISK_SIGN); + break; + case FlinkSqlParserParser.NOT: + case FlinkSqlParserParser.TRUE: + case FlinkSqlParserParser.FALSE: + case FlinkSqlParserParser.CASE: + case FlinkSqlParserParser.FIRST: + case FlinkSqlParserParser.LAST: + case FlinkSqlParserParser.POSITION: + case FlinkSqlParserParser.PLUS: + case FlinkSqlParserParser.MINUS: + case FlinkSqlParserParser.ASTERISK: + case FlinkSqlParserParser.TILDE: + case FlinkSqlParserParser.ID: + case FlinkSqlParserParser.NULL: + case FlinkSqlParserParser.LR_BRACKET: + case FlinkSqlParserParser.ZERO_DECIMAL: + case FlinkSqlParserParser.ONE_DECIMAL: + case FlinkSqlParserParser.TWO_DECIMAL: + case FlinkSqlParserParser.HYPNEN_SIGN: + case FlinkSqlParserParser.STRING_LITERAL: + case FlinkSqlParserParser.DECIMAL_LITERAL: + case FlinkSqlParserParser.REAL_LITERAL: + case FlinkSqlParserParser.BIT_STRING: + this.state = 354; + this.projectItemDefinition(); + this.state = 359; + this._errHandler.sync(this); + _la = this._input.LA(1); + while(_la===FlinkSqlParserParser.COMMA) { + this.state = 355; + this.match(FlinkSqlParserParser.COMMA); + this.state = 356; + this.projectItemDefinition(); + this.state = 361; + this._errHandler.sync(this); + _la = this._input.LA(1); + } + break; + default: + throw new antlr4.error.NoViableAltException(this); + } + this.state = 364; + this.match(FlinkSqlParserParser.FROM); + this.state = 365; + this.tableExpression(); + } 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.DOT = function() { + return this.getToken(FlinkSqlParserParser.DOT, 0); +}; + +ProjectItemDefinitionContext.prototype.ASTERISK_SIGN = function() { + return this.getToken(FlinkSqlParserParser.ASTERISK_SIGN, 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, 66, FlinkSqlParserParser.RULE_projectItemDefinition); + var _la = 0; // Token type + try { + this.state = 378; + this._errHandler.sync(this); + switch(this._input.LA(1)) { + case FlinkSqlParserParser.NOT: + case FlinkSqlParserParser.TRUE: + case FlinkSqlParserParser.FALSE: + case FlinkSqlParserParser.CASE: + case FlinkSqlParserParser.FIRST: + case FlinkSqlParserParser.LAST: + case FlinkSqlParserParser.POSITION: + case FlinkSqlParserParser.PLUS: + case FlinkSqlParserParser.MINUS: + case FlinkSqlParserParser.ASTERISK: + case FlinkSqlParserParser.TILDE: + case FlinkSqlParserParser.NULL: + case FlinkSqlParserParser.LR_BRACKET: + case FlinkSqlParserParser.ZERO_DECIMAL: + case FlinkSqlParserParser.ONE_DECIMAL: + case FlinkSqlParserParser.TWO_DECIMAL: + case FlinkSqlParserParser.HYPNEN_SIGN: + case FlinkSqlParserParser.STRING_LITERAL: + case FlinkSqlParserParser.DECIMAL_LITERAL: + case FlinkSqlParserParser.REAL_LITERAL: + case FlinkSqlParserParser.BIT_STRING: + this.enterOuterAlt(localctx, 1); + this.state = 367; + this.expression(); + this.state = 372; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===FlinkSqlParserParser.AS || _la===FlinkSqlParserParser.ID) { + this.state = 369; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===FlinkSqlParserParser.AS) { + this.state = 368; + this.match(FlinkSqlParserParser.AS); + } + + this.state = 371; + this.uid(); + } + + break; + case FlinkSqlParserParser.ID: + this.enterOuterAlt(localctx, 2); + this.state = 374; + this.uid(); + this.state = 375; + this.match(FlinkSqlParserParser.DOT); + this.state = 376; + this.match(FlinkSqlParserParser.ASTERISK_SIGN); + 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 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.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.TableExpressionContext = TableExpressionContext; + +FlinkSqlParserParser.prototype.tableExpression = function() { + + var localctx = new TableExpressionContext(this, this._ctx, this.state); + this.enterRule(localctx, 68, FlinkSqlParserParser.RULE_tableExpression); + var _la = 0; // Token type + try { + this.enterOuterAlt(localctx, 1); + this.state = 380; + this.tableReference(); + this.state = 385; + this._errHandler.sync(this); + _la = this._input.LA(1); + while(_la===FlinkSqlParserParser.COMMA) { + this.state = 381; + this.match(FlinkSqlParserParser.COMMA); + this.state = 382; + this.tableReference(); + this.state = 387; + 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 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.tableAlias = function() { + return this.getTypedRuleContext(TableAliasContext,0); +}; + +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, 70, FlinkSqlParserParser.RULE_tableReference); + try { + this.enterOuterAlt(localctx, 1); + this.state = 388; + this.tablePrimary(); + this.state = 389; + this.tableAlias(); + } 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.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, 72, FlinkSqlParserParser.RULE_tablePrimary); + var _la = 0; // Token type + try { + this.enterOuterAlt(localctx, 1); + this.state = 392; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===FlinkSqlParserParser.TABLE) { + this.state = 391; + this.match(FlinkSqlParserParser.TABLE); + } + + this.state = 394; + 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 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.booleanExpression = function() { + return this.getTypedRuleContext(BooleanExpressionContext,0); +}; + +ExpressionContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterExpression(this); + } +}; + +ExpressionContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitExpression(this); + } +}; + +ExpressionContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitExpression(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +FlinkSqlParserParser.ExpressionContext = ExpressionContext; + +FlinkSqlParserParser.prototype.expression = function() { + + var localctx = new ExpressionContext(this, this._ctx, this.state); + this.enterRule(localctx, 74, FlinkSqlParserParser.RULE_expression); + try { + this.enterOuterAlt(localctx, 1); + this.state = 396; + this.booleanExpression(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 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.copyFrom = function(ctx) { + antlr4.ParserRuleContext.prototype.copyFrom.call(this, ctx); +}; + +function LogicalNotContext(parser, ctx) { + BooleanExpressionContext.call(this, parser); + BooleanExpressionContext.prototype.copyFrom.call(this, ctx); + return this; +} + +LogicalNotContext.prototype = Object.create(BooleanExpressionContext.prototype); +LogicalNotContext.prototype.constructor = LogicalNotContext; + +FlinkSqlParserParser.LogicalNotContext = LogicalNotContext; + +LogicalNotContext.prototype.NOT = function() { + return this.getToken(FlinkSqlParserParser.NOT, 0); +}; + +LogicalNotContext.prototype.booleanExpression = function() { + return this.getTypedRuleContext(BooleanExpressionContext,0); +}; +LogicalNotContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterLogicalNot(this); + } +}; + +LogicalNotContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitLogicalNot(this); + } +}; + +LogicalNotContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitLogicalNot(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function PredicatedContext(parser, ctx) { + BooleanExpressionContext.call(this, parser); + BooleanExpressionContext.prototype.copyFrom.call(this, ctx); + return this; +} + +PredicatedContext.prototype = Object.create(BooleanExpressionContext.prototype); +PredicatedContext.prototype.constructor = PredicatedContext; + +FlinkSqlParserParser.PredicatedContext = PredicatedContext; + +PredicatedContext.prototype.valueExpression = function() { + return this.getTypedRuleContext(ValueExpressionContext,0); +}; + +PredicatedContext.prototype.predicate = function() { + return this.getTypedRuleContext(PredicateContext,0); +}; +PredicatedContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterPredicated(this); + } +}; + +PredicatedContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitPredicated(this); + } +}; + +PredicatedContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitPredicated(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function LogicalBinaryContext(parser, ctx) { + BooleanExpressionContext.call(this, parser); + this.left = null; // BooleanExpressionContext; + this.operator = null; // Token; + this.right = null; // BooleanExpressionContext; + BooleanExpressionContext.prototype.copyFrom.call(this, ctx); + return this; +} + +LogicalBinaryContext.prototype = Object.create(BooleanExpressionContext.prototype); +LogicalBinaryContext.prototype.constructor = LogicalBinaryContext; + +FlinkSqlParserParser.LogicalBinaryContext = LogicalBinaryContext; + +LogicalBinaryContext.prototype.booleanExpression = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(BooleanExpressionContext); + } else { + return this.getTypedRuleContext(BooleanExpressionContext,i); + } +}; + +LogicalBinaryContext.prototype.AND = function() { + return this.getToken(FlinkSqlParserParser.AND, 0); +}; + +LogicalBinaryContext.prototype.OR = function() { + return this.getToken(FlinkSqlParserParser.OR, 0); +}; +LogicalBinaryContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterLogicalBinary(this); + } +}; + +LogicalBinaryContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitLogicalBinary(this); + } +}; + +LogicalBinaryContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitLogicalBinary(this); + } else { + return visitor.visitChildren(this); + } +}; + + + +FlinkSqlParserParser.prototype.booleanExpression = function(_p) { + if(_p===undefined) { + _p = 0; + } + var _parentctx = this._ctx; + var _parentState = this.state; + var localctx = new BooleanExpressionContext(this, this._ctx, _parentState); + var _prevctx = localctx; + var _startState = 76; + this.enterRecursionRule(localctx, 76, FlinkSqlParserParser.RULE_booleanExpression, _p); + try { + this.enterOuterAlt(localctx, 1); + this.state = 405; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,35,this._ctx); + switch(la_) { + case 1: + localctx = new LogicalNotContext(this, localctx); + this._ctx = localctx; + _prevctx = localctx; + + this.state = 399; + this.match(FlinkSqlParserParser.NOT); + this.state = 400; + this.booleanExpression(4); + break; + + case 2: + localctx = new PredicatedContext(this, localctx); + this._ctx = localctx; + _prevctx = localctx; + this.state = 401; + this.valueExpression(0); + this.state = 403; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,34,this._ctx); + if(la_===1) { + this.state = 402; + this.predicate(); + + } + break; + + } + this._ctx.stop = this._input.LT(-1); + this.state = 415; + this._errHandler.sync(this); + var _alt = this._interp.adaptivePredict(this._input,37,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 = 413; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,36,this._ctx); + switch(la_) { + case 1: + localctx = new LogicalBinaryContext(this, new BooleanExpressionContext(this, _parentctx, _parentState)); + localctx.left = _prevctx; + this.pushNewRecursionContext(localctx, _startState, FlinkSqlParserParser.RULE_booleanExpression); + this.state = 407; + if (!( this.precpred(this._ctx, 2))) { + throw new antlr4.error.FailedPredicateException(this, "this.precpred(this._ctx, 2)"); + } + this.state = 408; + localctx.operator = this.match(FlinkSqlParserParser.AND); + this.state = 409; + localctx.right = this.booleanExpression(3); + break; + + case 2: + localctx = new LogicalBinaryContext(this, new BooleanExpressionContext(this, _parentctx, _parentState)); + localctx.left = _prevctx; + this.pushNewRecursionContext(localctx, _startState, FlinkSqlParserParser.RULE_booleanExpression); + this.state = 410; + if (!( this.precpred(this._ctx, 1))) { + throw new antlr4.error.FailedPredicateException(this, "this.precpred(this._ctx, 1)"); + } + this.state = 411; + localctx.operator = this.match(FlinkSqlParserParser.OR); + this.state = 412; + localctx.right = this.booleanExpression(2); + break; + + } + } + this.state = 417; + this._errHandler.sync(this); + _alt = this._interp.adaptivePredict(this._input,37,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; + this.kind = null; // Token + this.lower = null; // ValueExpressionContext + this.upper = null; // ValueExpressionContext + this.pattern = null; // ValueExpressionContext + this.quantifier = null; // Token + this.right = null; // ValueExpressionContext + return this; +} + +PredicateContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +PredicateContext.prototype.constructor = PredicateContext; + +PredicateContext.prototype.AND = function() { + return this.getToken(FlinkSqlParserParser.AND, 0); +}; + +PredicateContext.prototype.BETWEEN = function() { + return this.getToken(FlinkSqlParserParser.BETWEEN, 0); +}; + +PredicateContext.prototype.valueExpression = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(ValueExpressionContext); + } else { + return this.getTypedRuleContext(ValueExpressionContext,i); + } +}; + +PredicateContext.prototype.NOT = function() { + return this.getToken(FlinkSqlParserParser.NOT, 0); +}; + +PredicateContext.prototype.LR_BRACKET = function() { + return this.getToken(FlinkSqlParserParser.LR_BRACKET, 0); +}; + +PredicateContext.prototype.expression = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(ExpressionContext); + } else { + return this.getTypedRuleContext(ExpressionContext,i); + } +}; + +PredicateContext.prototype.RR_BRACKET = function() { + return this.getToken(FlinkSqlParserParser.RR_BRACKET, 0); +}; + +PredicateContext.prototype.IN = function() { + return this.getToken(FlinkSqlParserParser.IN, 0); +}; + +PredicateContext.prototype.COMMA = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTokens(FlinkSqlParserParser.COMMA); + } else { + return this.getToken(FlinkSqlParserParser.COMMA, i); + } +}; + + +PredicateContext.prototype.RLIKE = function() { + return this.getToken(FlinkSqlParserParser.RLIKE, 0); +}; + +PredicateContext.prototype.LIKE = function() { + return this.getToken(FlinkSqlParserParser.LIKE, 0); +}; + +PredicateContext.prototype.ANY = function() { + return this.getToken(FlinkSqlParserParser.ANY, 0); +}; + +PredicateContext.prototype.ALL = function() { + return this.getToken(FlinkSqlParserParser.ALL, 0); +}; + +PredicateContext.prototype.IS = function() { + return this.getToken(FlinkSqlParserParser.IS, 0); +}; + +PredicateContext.prototype.NULL = function() { + return this.getToken(FlinkSqlParserParser.NULL, 0); +}; + +PredicateContext.prototype.TRUE = function() { + return this.getToken(FlinkSqlParserParser.TRUE, 0); +}; + +PredicateContext.prototype.FALSE = function() { + return this.getToken(FlinkSqlParserParser.FALSE, 0); +}; + +PredicateContext.prototype.FROM = function() { + return this.getToken(FlinkSqlParserParser.FROM, 0); +}; + +PredicateContext.prototype.DISTINCT = function() { + return this.getToken(FlinkSqlParserParser.DISTINCT, 0); +}; + +PredicateContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterPredicate(this); + } +}; + +PredicateContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitPredicate(this); + } +}; + +PredicateContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitPredicate(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +FlinkSqlParserParser.PredicateContext = PredicateContext; + +FlinkSqlParserParser.prototype.predicate = function() { + + var localctx = new PredicateContext(this, this._ctx, this.state); + this.enterRule(localctx, 78, FlinkSqlParserParser.RULE_predicate); + var _la = 0; // Token type + try { + this.state = 488; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,49,this._ctx); + switch(la_) { + case 1: + this.enterOuterAlt(localctx, 1); + this.state = 419; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===FlinkSqlParserParser.NOT) { + this.state = 418; + this.match(FlinkSqlParserParser.NOT); + } + + this.state = 421; + localctx.kind = this.match(FlinkSqlParserParser.BETWEEN); + this.state = 422; + localctx.lower = this.valueExpression(0); + this.state = 423; + this.match(FlinkSqlParserParser.AND); + this.state = 424; + localctx.upper = this.valueExpression(0); + break; + + case 2: + this.enterOuterAlt(localctx, 2); + this.state = 427; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===FlinkSqlParserParser.NOT) { + this.state = 426; + this.match(FlinkSqlParserParser.NOT); + } + + this.state = 429; + localctx.kind = this.match(FlinkSqlParserParser.IN); + this.state = 430; + this.match(FlinkSqlParserParser.LR_BRACKET); + this.state = 431; + this.expression(); + this.state = 436; + this._errHandler.sync(this); + _la = this._input.LA(1); + while(_la===FlinkSqlParserParser.COMMA) { + this.state = 432; + this.match(FlinkSqlParserParser.COMMA); + this.state = 433; + this.expression(); + this.state = 438; + this._errHandler.sync(this); + _la = this._input.LA(1); + } + this.state = 439; + this.match(FlinkSqlParserParser.RR_BRACKET); + break; + + case 3: + this.enterOuterAlt(localctx, 3); + this.state = 442; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===FlinkSqlParserParser.NOT) { + this.state = 441; + this.match(FlinkSqlParserParser.NOT); + } + + this.state = 444; + localctx.kind = this.match(FlinkSqlParserParser.RLIKE); + this.state = 445; + localctx.pattern = this.valueExpression(0); + break; + + case 4: + this.enterOuterAlt(localctx, 4); + this.state = 447; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===FlinkSqlParserParser.NOT) { + this.state = 446; + this.match(FlinkSqlParserParser.NOT); + } + + this.state = 449; + localctx.kind = this.match(FlinkSqlParserParser.LIKE); + this.state = 450; + localctx.quantifier = this._input.LT(1); + _la = this._input.LA(1); + if(!(_la===FlinkSqlParserParser.ALL || _la===FlinkSqlParserParser.ANY)) { + localctx.quantifier = this._errHandler.recoverInline(this); + } + else { + this._errHandler.reportMatch(this); + this.consume(); + } + this.state = 464; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,44,this._ctx); + switch(la_) { + case 1: + this.state = 451; + this.match(FlinkSqlParserParser.LR_BRACKET); + this.state = 452; + this.match(FlinkSqlParserParser.RR_BRACKET); + break; + + case 2: + this.state = 453; + this.match(FlinkSqlParserParser.LR_BRACKET); + this.state = 454; + this.expression(); + this.state = 459; + this._errHandler.sync(this); + _la = this._input.LA(1); + while(_la===FlinkSqlParserParser.COMMA) { + this.state = 455; + this.match(FlinkSqlParserParser.COMMA); + this.state = 456; + this.expression(); + this.state = 461; + this._errHandler.sync(this); + _la = this._input.LA(1); + } + this.state = 462; + this.match(FlinkSqlParserParser.RR_BRACKET); + break; + + } + break; + + case 5: + this.enterOuterAlt(localctx, 5); + this.state = 467; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===FlinkSqlParserParser.NOT) { + this.state = 466; + this.match(FlinkSqlParserParser.NOT); + } + + this.state = 469; + localctx.kind = this.match(FlinkSqlParserParser.LIKE); + this.state = 470; + localctx.pattern = this.valueExpression(0); + break; + + case 6: + this.enterOuterAlt(localctx, 6); + this.state = 471; + this.match(FlinkSqlParserParser.IS); + this.state = 473; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===FlinkSqlParserParser.NOT) { + this.state = 472; + this.match(FlinkSqlParserParser.NOT); + } + + this.state = 475; + localctx.kind = this.match(FlinkSqlParserParser.NULL); + break; + + case 7: + this.enterOuterAlt(localctx, 7); + this.state = 476; + this.match(FlinkSqlParserParser.IS); + this.state = 478; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===FlinkSqlParserParser.NOT) { + this.state = 477; + this.match(FlinkSqlParserParser.NOT); + } + + this.state = 480; + localctx.kind = this._input.LT(1); + _la = this._input.LA(1); + if(!(_la===FlinkSqlParserParser.TRUE || _la===FlinkSqlParserParser.FALSE)) { + localctx.kind = this._errHandler.recoverInline(this); + } + else { + this._errHandler.reportMatch(this); + this.consume(); + } + break; + + case 8: + this.enterOuterAlt(localctx, 8); + this.state = 481; + this.match(FlinkSqlParserParser.IS); + this.state = 483; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===FlinkSqlParserParser.NOT) { + this.state = 482; + this.match(FlinkSqlParserParser.NOT); + } + + this.state = 485; + localctx.kind = this.match(FlinkSqlParserParser.DISTINCT); + this.state = 486; + this.match(FlinkSqlParserParser.FROM); + this.state = 487; + localctx.right = this.valueExpression(0); + 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 ValueExpressionContext(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_valueExpression; + return this; +} + +ValueExpressionContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +ValueExpressionContext.prototype.constructor = ValueExpressionContext; + + + +ValueExpressionContext.prototype.copyFrom = function(ctx) { + antlr4.ParserRuleContext.prototype.copyFrom.call(this, ctx); +}; + +function ValueExpressionDefaultContext(parser, ctx) { + ValueExpressionContext.call(this, parser); + ValueExpressionContext.prototype.copyFrom.call(this, ctx); + return this; +} + +ValueExpressionDefaultContext.prototype = Object.create(ValueExpressionContext.prototype); +ValueExpressionDefaultContext.prototype.constructor = ValueExpressionDefaultContext; + +FlinkSqlParserParser.ValueExpressionDefaultContext = ValueExpressionDefaultContext; + +ValueExpressionDefaultContext.prototype.primaryExpression = function() { + return this.getTypedRuleContext(PrimaryExpressionContext,0); +}; +ValueExpressionDefaultContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterValueExpressionDefault(this); + } +}; + +ValueExpressionDefaultContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitValueExpressionDefault(this); + } +}; + +ValueExpressionDefaultContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitValueExpressionDefault(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function ComparisonContext(parser, ctx) { + ValueExpressionContext.call(this, parser); + this.left = null; // ValueExpressionContext; + this.right = null; // ValueExpressionContext; + ValueExpressionContext.prototype.copyFrom.call(this, ctx); + return this; +} + +ComparisonContext.prototype = Object.create(ValueExpressionContext.prototype); +ComparisonContext.prototype.constructor = ComparisonContext; + +FlinkSqlParserParser.ComparisonContext = ComparisonContext; + +ComparisonContext.prototype.comparisonOperator = function() { + return this.getTypedRuleContext(ComparisonOperatorContext,0); +}; + +ComparisonContext.prototype.valueExpression = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(ValueExpressionContext); + } else { + return this.getTypedRuleContext(ValueExpressionContext,i); + } +}; +ComparisonContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterComparison(this); + } +}; + +ComparisonContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitComparison(this); + } +}; + +ComparisonContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitComparison(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function ArithmeticBinaryContext(parser, ctx) { + ValueExpressionContext.call(this, parser); + this.left = null; // ValueExpressionContext; + this.operator = null; // Token; + this.right = null; // ValueExpressionContext; + ValueExpressionContext.prototype.copyFrom.call(this, ctx); + return this; +} + +ArithmeticBinaryContext.prototype = Object.create(ValueExpressionContext.prototype); +ArithmeticBinaryContext.prototype.constructor = ArithmeticBinaryContext; + +FlinkSqlParserParser.ArithmeticBinaryContext = ArithmeticBinaryContext; + +ArithmeticBinaryContext.prototype.valueExpression = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(ValueExpressionContext); + } else { + return this.getTypedRuleContext(ValueExpressionContext,i); + } +}; + +ArithmeticBinaryContext.prototype.ASTERISK = function() { + return this.getToken(FlinkSqlParserParser.ASTERISK, 0); +}; + +ArithmeticBinaryContext.prototype.SLASH = function() { + return this.getToken(FlinkSqlParserParser.SLASH, 0); +}; + +ArithmeticBinaryContext.prototype.PERCENT = function() { + return this.getToken(FlinkSqlParserParser.PERCENT, 0); +}; + +ArithmeticBinaryContext.prototype.DIV = function() { + return this.getToken(FlinkSqlParserParser.DIV, 0); +}; + +ArithmeticBinaryContext.prototype.PLUS = function() { + return this.getToken(FlinkSqlParserParser.PLUS, 0); +}; + +ArithmeticBinaryContext.prototype.MINUS = function() { + return this.getToken(FlinkSqlParserParser.MINUS, 0); +}; + +ArithmeticBinaryContext.prototype.CONCAT_PIPE = function() { + return this.getToken(FlinkSqlParserParser.CONCAT_PIPE, 0); +}; + +ArithmeticBinaryContext.prototype.AMPERSAND = function() { + return this.getToken(FlinkSqlParserParser.AMPERSAND, 0); +}; + +ArithmeticBinaryContext.prototype.HAT = function() { + return this.getToken(FlinkSqlParserParser.HAT, 0); +}; + +ArithmeticBinaryContext.prototype.PIPE = function() { + return this.getToken(FlinkSqlParserParser.PIPE, 0); +}; +ArithmeticBinaryContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterArithmeticBinary(this); + } +}; + +ArithmeticBinaryContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitArithmeticBinary(this); + } +}; + +ArithmeticBinaryContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitArithmeticBinary(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function ArithmeticUnaryContext(parser, ctx) { + ValueExpressionContext.call(this, parser); + this.operator = null; // Token; + ValueExpressionContext.prototype.copyFrom.call(this, ctx); + return this; +} + +ArithmeticUnaryContext.prototype = Object.create(ValueExpressionContext.prototype); +ArithmeticUnaryContext.prototype.constructor = ArithmeticUnaryContext; + +FlinkSqlParserParser.ArithmeticUnaryContext = ArithmeticUnaryContext; + +ArithmeticUnaryContext.prototype.valueExpression = function() { + return this.getTypedRuleContext(ValueExpressionContext,0); +}; + +ArithmeticUnaryContext.prototype.MINUS = function() { + return this.getToken(FlinkSqlParserParser.MINUS, 0); +}; + +ArithmeticUnaryContext.prototype.PLUS = function() { + return this.getToken(FlinkSqlParserParser.PLUS, 0); +}; + +ArithmeticUnaryContext.prototype.TILDE = function() { + return this.getToken(FlinkSqlParserParser.TILDE, 0); +}; +ArithmeticUnaryContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterArithmeticUnary(this); + } +}; + +ArithmeticUnaryContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitArithmeticUnary(this); + } +}; + +ArithmeticUnaryContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitArithmeticUnary(this); + } else { + return visitor.visitChildren(this); + } +}; + + + +FlinkSqlParserParser.prototype.valueExpression = function(_p) { + if(_p===undefined) { + _p = 0; + } + var _parentctx = this._ctx; + var _parentState = this.state; + var localctx = new ValueExpressionContext(this, this._ctx, _parentState); + var _prevctx = localctx; + var _startState = 80; + this.enterRecursionRule(localctx, 80, FlinkSqlParserParser.RULE_valueExpression, _p); + var _la = 0; // Token type + try { + this.enterOuterAlt(localctx, 1); + this.state = 494; + this._errHandler.sync(this); + switch(this._input.LA(1)) { + case FlinkSqlParserParser.NOT: + case FlinkSqlParserParser.TRUE: + case FlinkSqlParserParser.FALSE: + case FlinkSqlParserParser.CASE: + case FlinkSqlParserParser.FIRST: + case FlinkSqlParserParser.LAST: + case FlinkSqlParserParser.POSITION: + case FlinkSqlParserParser.ASTERISK: + case FlinkSqlParserParser.NULL: + case FlinkSqlParserParser.LR_BRACKET: + case FlinkSqlParserParser.ZERO_DECIMAL: + case FlinkSqlParserParser.ONE_DECIMAL: + case FlinkSqlParserParser.TWO_DECIMAL: + case FlinkSqlParserParser.HYPNEN_SIGN: + case FlinkSqlParserParser.STRING_LITERAL: + case FlinkSqlParserParser.DECIMAL_LITERAL: + case FlinkSqlParserParser.REAL_LITERAL: + case FlinkSqlParserParser.BIT_STRING: + localctx = new ValueExpressionDefaultContext(this, localctx); + this._ctx = localctx; + _prevctx = localctx; + + this.state = 491; + this.primaryExpression(0); + break; + case FlinkSqlParserParser.PLUS: + case FlinkSqlParserParser.MINUS: + case FlinkSqlParserParser.TILDE: + localctx = new ArithmeticUnaryContext(this, localctx); + this._ctx = localctx; + _prevctx = localctx; + this.state = 492; + localctx.operator = this._input.LT(1); + _la = this._input.LA(1); + if(!(((((_la - 127)) & ~0x1f) == 0 && ((1 << (_la - 127)) & ((1 << (FlinkSqlParserParser.PLUS - 127)) | (1 << (FlinkSqlParserParser.MINUS - 127)) | (1 << (FlinkSqlParserParser.TILDE - 127)))) !== 0))) { + localctx.operator = this._errHandler.recoverInline(this); + } + else { + this._errHandler.reportMatch(this); + this.consume(); + } + this.state = 493; + this.valueExpression(7); + break; + default: + throw new antlr4.error.NoViableAltException(this); + } + this._ctx.stop = this._input.LT(-1); + this.state = 517; + this._errHandler.sync(this); + var _alt = this._interp.adaptivePredict(this._input,52,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 = 515; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,51,this._ctx); + switch(la_) { + case 1: + localctx = new ArithmeticBinaryContext(this, new ValueExpressionContext(this, _parentctx, _parentState)); + localctx.left = _prevctx; + this.pushNewRecursionContext(localctx, _startState, FlinkSqlParserParser.RULE_valueExpression); + this.state = 496; + if (!( this.precpred(this._ctx, 6))) { + throw new antlr4.error.FailedPredicateException(this, "this.precpred(this._ctx, 6)"); + } + this.state = 497; + localctx.operator = this._input.LT(1); + _la = this._input.LA(1); + if(!(((((_la - 129)) & ~0x1f) == 0 && ((1 << (_la - 129)) & ((1 << (FlinkSqlParserParser.ASTERISK - 129)) | (1 << (FlinkSqlParserParser.SLASH - 129)) | (1 << (FlinkSqlParserParser.PERCENT - 129)) | (1 << (FlinkSqlParserParser.DIV - 129)))) !== 0))) { + localctx.operator = this._errHandler.recoverInline(this); + } + else { + this._errHandler.reportMatch(this); + this.consume(); + } + this.state = 498; + localctx.right = this.valueExpression(7); + break; + + case 2: + localctx = new ArithmeticBinaryContext(this, new ValueExpressionContext(this, _parentctx, _parentState)); + localctx.left = _prevctx; + this.pushNewRecursionContext(localctx, _startState, FlinkSqlParserParser.RULE_valueExpression); + this.state = 499; + if (!( this.precpred(this._ctx, 5))) { + throw new antlr4.error.FailedPredicateException(this, "this.precpred(this._ctx, 5)"); + } + this.state = 500; + localctx.operator = this._input.LT(1); + _la = this._input.LA(1); + if(!(((((_la - 127)) & ~0x1f) == 0 && ((1 << (_la - 127)) & ((1 << (FlinkSqlParserParser.PLUS - 127)) | (1 << (FlinkSqlParserParser.MINUS - 127)) | (1 << (FlinkSqlParserParser.CONCAT_PIPE - 127)))) !== 0))) { + localctx.operator = this._errHandler.recoverInline(this); + } + else { + this._errHandler.reportMatch(this); + this.consume(); + } + this.state = 501; + localctx.right = this.valueExpression(6); + break; + + case 3: + localctx = new ArithmeticBinaryContext(this, new ValueExpressionContext(this, _parentctx, _parentState)); + localctx.left = _prevctx; + this.pushNewRecursionContext(localctx, _startState, FlinkSqlParserParser.RULE_valueExpression); + this.state = 502; + if (!( this.precpred(this._ctx, 4))) { + throw new antlr4.error.FailedPredicateException(this, "this.precpred(this._ctx, 4)"); + } + this.state = 503; + localctx.operator = this.match(FlinkSqlParserParser.AMPERSAND); + this.state = 504; + localctx.right = this.valueExpression(5); + break; + + case 4: + localctx = new ArithmeticBinaryContext(this, new ValueExpressionContext(this, _parentctx, _parentState)); + localctx.left = _prevctx; + this.pushNewRecursionContext(localctx, _startState, FlinkSqlParserParser.RULE_valueExpression); + this.state = 505; + if (!( this.precpred(this._ctx, 3))) { + throw new antlr4.error.FailedPredicateException(this, "this.precpred(this._ctx, 3)"); + } + this.state = 506; + localctx.operator = this.match(FlinkSqlParserParser.HAT); + this.state = 507; + localctx.right = this.valueExpression(4); + break; + + case 5: + localctx = new ArithmeticBinaryContext(this, new ValueExpressionContext(this, _parentctx, _parentState)); + localctx.left = _prevctx; + this.pushNewRecursionContext(localctx, _startState, FlinkSqlParserParser.RULE_valueExpression); + this.state = 508; + if (!( this.precpred(this._ctx, 2))) { + throw new antlr4.error.FailedPredicateException(this, "this.precpred(this._ctx, 2)"); + } + this.state = 509; + localctx.operator = this.match(FlinkSqlParserParser.PIPE); + this.state = 510; + localctx.right = this.valueExpression(3); + break; + + case 6: + localctx = new ComparisonContext(this, new ValueExpressionContext(this, _parentctx, _parentState)); + localctx.left = _prevctx; + this.pushNewRecursionContext(localctx, _startState, FlinkSqlParserParser.RULE_valueExpression); + this.state = 511; + if (!( this.precpred(this._ctx, 1))) { + throw new antlr4.error.FailedPredicateException(this, "this.precpred(this._ctx, 1)"); + } + this.state = 512; + this.comparisonOperator(); + this.state = 513; + localctx.right = this.valueExpression(2); + break; + + } + } + this.state = 519; + this._errHandler.sync(this); + _alt = this._interp.adaptivePredict(this._input,52,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 PrimaryExpressionContext(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_primaryExpression; + return this; +} + +PrimaryExpressionContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +PrimaryExpressionContext.prototype.constructor = PrimaryExpressionContext; + + + +PrimaryExpressionContext.prototype.copyFrom = function(ctx) { + antlr4.ParserRuleContext.prototype.copyFrom.call(this, ctx); +}; + +function SimpleCaseContext(parser, ctx) { + PrimaryExpressionContext.call(this, parser); + this.value = null; // ExpressionContext; + this.elseExpression = null; // ExpressionContext; + PrimaryExpressionContext.prototype.copyFrom.call(this, ctx); + return this; +} + +SimpleCaseContext.prototype = Object.create(PrimaryExpressionContext.prototype); +SimpleCaseContext.prototype.constructor = SimpleCaseContext; + +FlinkSqlParserParser.SimpleCaseContext = SimpleCaseContext; + +SimpleCaseContext.prototype.CASE = function() { + return this.getToken(FlinkSqlParserParser.CASE, 0); +}; + +SimpleCaseContext.prototype.END = function() { + return this.getToken(FlinkSqlParserParser.END, 0); +}; + +SimpleCaseContext.prototype.expression = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(ExpressionContext); + } else { + return this.getTypedRuleContext(ExpressionContext,i); + } +}; + +SimpleCaseContext.prototype.whenClause = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(WhenClauseContext); + } else { + return this.getTypedRuleContext(WhenClauseContext,i); + } +}; + +SimpleCaseContext.prototype.ELSE = function() { + return this.getToken(FlinkSqlParserParser.ELSE, 0); +}; +SimpleCaseContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterSimpleCase(this); + } +}; + +SimpleCaseContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitSimpleCase(this); + } +}; + +SimpleCaseContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitSimpleCase(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function ConstantDefaultContext(parser, ctx) { + PrimaryExpressionContext.call(this, parser); + PrimaryExpressionContext.prototype.copyFrom.call(this, ctx); + return this; +} + +ConstantDefaultContext.prototype = Object.create(PrimaryExpressionContext.prototype); +ConstantDefaultContext.prototype.constructor = ConstantDefaultContext; + +FlinkSqlParserParser.ConstantDefaultContext = ConstantDefaultContext; + +ConstantDefaultContext.prototype.constant = function() { + return this.getTypedRuleContext(ConstantContext,0); +}; +ConstantDefaultContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterConstantDefault(this); + } +}; + +ConstantDefaultContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitConstantDefault(this); + } +}; + +ConstantDefaultContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitConstantDefault(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function ParenthesizedExpressionContext(parser, ctx) { + PrimaryExpressionContext.call(this, parser); + PrimaryExpressionContext.prototype.copyFrom.call(this, ctx); + return this; +} + +ParenthesizedExpressionContext.prototype = Object.create(PrimaryExpressionContext.prototype); +ParenthesizedExpressionContext.prototype.constructor = ParenthesizedExpressionContext; + +FlinkSqlParserParser.ParenthesizedExpressionContext = ParenthesizedExpressionContext; + +ParenthesizedExpressionContext.prototype.LR_BRACKET = function() { + return this.getToken(FlinkSqlParserParser.LR_BRACKET, 0); +}; + +ParenthesizedExpressionContext.prototype.expression = function() { + return this.getTypedRuleContext(ExpressionContext,0); +}; + +ParenthesizedExpressionContext.prototype.RR_BRACKET = function() { + return this.getToken(FlinkSqlParserParser.RR_BRACKET, 0); +}; +ParenthesizedExpressionContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterParenthesizedExpression(this); + } +}; + +ParenthesizedExpressionContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitParenthesizedExpression(this); + } +}; + +ParenthesizedExpressionContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitParenthesizedExpression(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function LastContext(parser, ctx) { + PrimaryExpressionContext.call(this, parser); + PrimaryExpressionContext.prototype.copyFrom.call(this, ctx); + return this; +} + +LastContext.prototype = Object.create(PrimaryExpressionContext.prototype); +LastContext.prototype.constructor = LastContext; + +FlinkSqlParserParser.LastContext = LastContext; + +LastContext.prototype.LAST = function() { + return this.getToken(FlinkSqlParserParser.LAST, 0); +}; + +LastContext.prototype.LR_BRACKET = function() { + return this.getToken(FlinkSqlParserParser.LR_BRACKET, 0); +}; + +LastContext.prototype.expression = function() { + return this.getTypedRuleContext(ExpressionContext,0); +}; + +LastContext.prototype.RR_BRACKET = function() { + return this.getToken(FlinkSqlParserParser.RR_BRACKET, 0); +}; + +LastContext.prototype.IGNORE = function() { + return this.getToken(FlinkSqlParserParser.IGNORE, 0); +}; + +LastContext.prototype.NULLS = function() { + return this.getToken(FlinkSqlParserParser.NULLS, 0); +}; +LastContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterLast(this); + } +}; + +LastContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitLast(this); + } +}; + +LastContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitLast(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function StarContext(parser, ctx) { + PrimaryExpressionContext.call(this, parser); + PrimaryExpressionContext.prototype.copyFrom.call(this, ctx); + return this; +} + +StarContext.prototype = Object.create(PrimaryExpressionContext.prototype); +StarContext.prototype.constructor = StarContext; + +FlinkSqlParserParser.StarContext = StarContext; + +StarContext.prototype.ASTERISK = function() { + return this.getToken(FlinkSqlParserParser.ASTERISK, 0); +}; +StarContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterStar(this); + } +}; + +StarContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitStar(this); + } +}; + +StarContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitStar(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function SubscriptContext(parser, ctx) { + PrimaryExpressionContext.call(this, parser); + this.value = null; // PrimaryExpressionContext; + this.index = null; // ValueExpressionContext; + PrimaryExpressionContext.prototype.copyFrom.call(this, ctx); + return this; +} + +SubscriptContext.prototype = Object.create(PrimaryExpressionContext.prototype); +SubscriptContext.prototype.constructor = SubscriptContext; + +FlinkSqlParserParser.SubscriptContext = SubscriptContext; + +SubscriptContext.prototype.LS_BRACKET = function() { + return this.getToken(FlinkSqlParserParser.LS_BRACKET, 0); +}; + +SubscriptContext.prototype.RS_BRACKET = function() { + return this.getToken(FlinkSqlParserParser.RS_BRACKET, 0); +}; + +SubscriptContext.prototype.primaryExpression = function() { + return this.getTypedRuleContext(PrimaryExpressionContext,0); +}; + +SubscriptContext.prototype.valueExpression = function() { + return this.getTypedRuleContext(ValueExpressionContext,0); +}; +SubscriptContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterSubscript(this); + } +}; + +SubscriptContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitSubscript(this); + } +}; + +SubscriptContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitSubscript(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function SearchedCaseContext(parser, ctx) { + PrimaryExpressionContext.call(this, parser); + this.elseExpression = null; // ExpressionContext; + PrimaryExpressionContext.prototype.copyFrom.call(this, ctx); + return this; +} + +SearchedCaseContext.prototype = Object.create(PrimaryExpressionContext.prototype); +SearchedCaseContext.prototype.constructor = SearchedCaseContext; + +FlinkSqlParserParser.SearchedCaseContext = SearchedCaseContext; + +SearchedCaseContext.prototype.CASE = function() { + return this.getToken(FlinkSqlParserParser.CASE, 0); +}; + +SearchedCaseContext.prototype.END = function() { + return this.getToken(FlinkSqlParserParser.END, 0); +}; + +SearchedCaseContext.prototype.whenClause = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(WhenClauseContext); + } else { + return this.getTypedRuleContext(WhenClauseContext,i); + } +}; + +SearchedCaseContext.prototype.ELSE = function() { + return this.getToken(FlinkSqlParserParser.ELSE, 0); +}; + +SearchedCaseContext.prototype.expression = function() { + return this.getTypedRuleContext(ExpressionContext,0); +}; +SearchedCaseContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterSearchedCase(this); + } +}; + +SearchedCaseContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitSearchedCase(this); + } +}; + +SearchedCaseContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitSearchedCase(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function PositionContext(parser, ctx) { + PrimaryExpressionContext.call(this, parser); + this.substr = null; // ValueExpressionContext; + this.str = null; // ValueExpressionContext; + PrimaryExpressionContext.prototype.copyFrom.call(this, ctx); + return this; +} + +PositionContext.prototype = Object.create(PrimaryExpressionContext.prototype); +PositionContext.prototype.constructor = PositionContext; + +FlinkSqlParserParser.PositionContext = PositionContext; + +PositionContext.prototype.POSITION = function() { + return this.getToken(FlinkSqlParserParser.POSITION, 0); +}; + +PositionContext.prototype.LR_BRACKET = function() { + return this.getToken(FlinkSqlParserParser.LR_BRACKET, 0); +}; + +PositionContext.prototype.IN = function() { + return this.getToken(FlinkSqlParserParser.IN, 0); +}; + +PositionContext.prototype.RR_BRACKET = function() { + return this.getToken(FlinkSqlParserParser.RR_BRACKET, 0); +}; + +PositionContext.prototype.valueExpression = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(ValueExpressionContext); + } else { + return this.getTypedRuleContext(ValueExpressionContext,i); + } +}; +PositionContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterPosition(this); + } +}; + +PositionContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitPosition(this); + } +}; + +PositionContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitPosition(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function FirstContext(parser, ctx) { + PrimaryExpressionContext.call(this, parser); + PrimaryExpressionContext.prototype.copyFrom.call(this, ctx); + return this; +} + +FirstContext.prototype = Object.create(PrimaryExpressionContext.prototype); +FirstContext.prototype.constructor = FirstContext; + +FlinkSqlParserParser.FirstContext = FirstContext; + +FirstContext.prototype.FIRST = function() { + return this.getToken(FlinkSqlParserParser.FIRST, 0); +}; + +FirstContext.prototype.LR_BRACKET = function() { + return this.getToken(FlinkSqlParserParser.LR_BRACKET, 0); +}; + +FirstContext.prototype.expression = function() { + return this.getTypedRuleContext(ExpressionContext,0); +}; + +FirstContext.prototype.RR_BRACKET = function() { + return this.getToken(FlinkSqlParserParser.RR_BRACKET, 0); +}; + +FirstContext.prototype.IGNORE = function() { + return this.getToken(FlinkSqlParserParser.IGNORE, 0); +}; + +FirstContext.prototype.NULLS = function() { + return this.getToken(FlinkSqlParserParser.NULLS, 0); +}; +FirstContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterFirst(this); + } +}; + +FirstContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitFirst(this); + } +}; + +FirstContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitFirst(this); + } else { + return visitor.visitChildren(this); + } +}; + + + +FlinkSqlParserParser.prototype.primaryExpression = function(_p) { + if(_p===undefined) { + _p = 0; + } + var _parentctx = this._ctx; + var _parentState = this.state; + var localctx = new PrimaryExpressionContext(this, this._ctx, _parentState); + var _prevctx = localctx; + var _startState = 82; + this.enterRecursionRule(localctx, 82, FlinkSqlParserParser.RULE_primaryExpression, _p); + var _la = 0; // Token type + try { + this.enterOuterAlt(localctx, 1); + this.state = 577; + this._errHandler.sync(this); + var la_ = this._interp.adaptivePredict(this._input,59,this._ctx); + switch(la_) { + case 1: + localctx = new SearchedCaseContext(this, localctx); + this._ctx = localctx; + _prevctx = localctx; + + this.state = 521; + this.match(FlinkSqlParserParser.CASE); + this.state = 523; + this._errHandler.sync(this); + _la = this._input.LA(1); + do { + this.state = 522; + this.whenClause(); + this.state = 525; + this._errHandler.sync(this); + _la = this._input.LA(1); + } while(_la===FlinkSqlParserParser.WHEN); + this.state = 529; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===FlinkSqlParserParser.ELSE) { + this.state = 527; + this.match(FlinkSqlParserParser.ELSE); + this.state = 528; + localctx.elseExpression = this.expression(); + } + + this.state = 531; + this.match(FlinkSqlParserParser.END); + break; + + case 2: + localctx = new SimpleCaseContext(this, localctx); + this._ctx = localctx; + _prevctx = localctx; + this.state = 533; + this.match(FlinkSqlParserParser.CASE); + this.state = 534; + localctx.value = this.expression(); + this.state = 536; + this._errHandler.sync(this); + _la = this._input.LA(1); + do { + this.state = 535; + this.whenClause(); + this.state = 538; + this._errHandler.sync(this); + _la = this._input.LA(1); + } while(_la===FlinkSqlParserParser.WHEN); + this.state = 542; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===FlinkSqlParserParser.ELSE) { + this.state = 540; + this.match(FlinkSqlParserParser.ELSE); + this.state = 541; + localctx.elseExpression = this.expression(); + } + + this.state = 544; + this.match(FlinkSqlParserParser.END); + break; + + case 3: + localctx = new FirstContext(this, localctx); + this._ctx = localctx; + _prevctx = localctx; + this.state = 546; + this.match(FlinkSqlParserParser.FIRST); + this.state = 547; + this.match(FlinkSqlParserParser.LR_BRACKET); + this.state = 548; + this.expression(); + this.state = 551; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===FlinkSqlParserParser.IGNORE) { + this.state = 549; + this.match(FlinkSqlParserParser.IGNORE); + this.state = 550; + this.match(FlinkSqlParserParser.NULLS); + } + + this.state = 553; + this.match(FlinkSqlParserParser.RR_BRACKET); + break; + + case 4: + localctx = new LastContext(this, localctx); + this._ctx = localctx; + _prevctx = localctx; + this.state = 555; + this.match(FlinkSqlParserParser.LAST); + this.state = 556; + this.match(FlinkSqlParserParser.LR_BRACKET); + this.state = 557; + this.expression(); + this.state = 560; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===FlinkSqlParserParser.IGNORE) { + this.state = 558; + this.match(FlinkSqlParserParser.IGNORE); + this.state = 559; + this.match(FlinkSqlParserParser.NULLS); + } + + this.state = 562; + this.match(FlinkSqlParserParser.RR_BRACKET); + break; + + case 5: + localctx = new PositionContext(this, localctx); + this._ctx = localctx; + _prevctx = localctx; + this.state = 564; + this.match(FlinkSqlParserParser.POSITION); + this.state = 565; + this.match(FlinkSqlParserParser.LR_BRACKET); + this.state = 566; + localctx.substr = this.valueExpression(0); + this.state = 567; + this.match(FlinkSqlParserParser.IN); + this.state = 568; + localctx.str = this.valueExpression(0); + this.state = 569; + this.match(FlinkSqlParserParser.RR_BRACKET); + break; + + case 6: + localctx = new ConstantDefaultContext(this, localctx); + this._ctx = localctx; + _prevctx = localctx; + this.state = 571; + this.constant(); + break; + + case 7: + localctx = new StarContext(this, localctx); + this._ctx = localctx; + _prevctx = localctx; + this.state = 572; + this.match(FlinkSqlParserParser.ASTERISK); + break; + + case 8: + localctx = new ParenthesizedExpressionContext(this, localctx); + this._ctx = localctx; + _prevctx = localctx; + this.state = 573; + this.match(FlinkSqlParserParser.LR_BRACKET); + this.state = 574; + this.expression(); + this.state = 575; + this.match(FlinkSqlParserParser.RR_BRACKET); + break; + + } + this._ctx.stop = this._input.LT(-1); + this.state = 586; + this._errHandler.sync(this); + var _alt = this._interp.adaptivePredict(this._input,60,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 SubscriptContext(this, new PrimaryExpressionContext(this, _parentctx, _parentState)); + localctx.value = _prevctx; + this.pushNewRecursionContext(localctx, _startState, FlinkSqlParserParser.RULE_primaryExpression); + this.state = 579; + if (!( this.precpred(this._ctx, 2))) { + throw new antlr4.error.FailedPredicateException(this, "this.precpred(this._ctx, 2)"); + } + this.state = 580; + this.match(FlinkSqlParserParser.LS_BRACKET); + this.state = 581; + localctx.index = this.valueExpression(0); + this.state = 582; + this.match(FlinkSqlParserParser.RS_BRACKET); + } + this.state = 588; + this._errHandler.sync(this); + _alt = this._interp.adaptivePredict(this._input,60,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 TableAliasContext(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_tableAlias; + return this; +} + +TableAliasContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +TableAliasContext.prototype.constructor = TableAliasContext; + +TableAliasContext.prototype.strictIdentifier = function() { + return this.getTypedRuleContext(StrictIdentifierContext,0); +}; + +TableAliasContext.prototype.AS = function() { + return this.getToken(FlinkSqlParserParser.AS, 0); +}; + +TableAliasContext.prototype.identifierList = function() { + return this.getTypedRuleContext(IdentifierListContext,0); +}; + +TableAliasContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterTableAlias(this); + } +}; + +TableAliasContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitTableAlias(this); + } +}; + +TableAliasContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitTableAlias(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +FlinkSqlParserParser.TableAliasContext = TableAliasContext; + +FlinkSqlParserParser.prototype.tableAlias = function() { + + var localctx = new TableAliasContext(this, this._ctx, this.state); + this.enterRule(localctx, 84, FlinkSqlParserParser.RULE_tableAlias); + var _la = 0; // Token type + try { + this.enterOuterAlt(localctx, 1); + this.state = 596; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===FlinkSqlParserParser.AS || _la===FlinkSqlParserParser.STRING_LITERAL || _la===FlinkSqlParserParser.IDENTIFIER_BASE) { + this.state = 590; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===FlinkSqlParserParser.AS) { + this.state = 589; + this.match(FlinkSqlParserParser.AS); + } + + this.state = 592; + this.strictIdentifier(); + this.state = 594; + this._errHandler.sync(this); + _la = this._input.LA(1); + if(_la===FlinkSqlParserParser.LR_BRACKET) { + this.state = 593; + this.identifierList(); + } + + } + + } catch (re) { + if(re instanceof antlr4.error.RecognitionException) { + localctx.exception = re; + this._errHandler.reportError(this, re); + this._errHandler.recover(this, re); + } else { + throw re; + } + } finally { + this.exitRule(); + } + return localctx; +}; + + +function IdentifierListContext(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_identifierList; + return this; +} + +IdentifierListContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +IdentifierListContext.prototype.constructor = IdentifierListContext; + +IdentifierListContext.prototype.LR_BRACKET = function() { + return this.getToken(FlinkSqlParserParser.LR_BRACKET, 0); +}; + +IdentifierListContext.prototype.identifierSeq = function() { + return this.getTypedRuleContext(IdentifierSeqContext,0); +}; + +IdentifierListContext.prototype.RR_BRACKET = function() { + return this.getToken(FlinkSqlParserParser.RR_BRACKET, 0); +}; + +IdentifierListContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterIdentifierList(this); + } +}; + +IdentifierListContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitIdentifierList(this); + } +}; + +IdentifierListContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitIdentifierList(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +FlinkSqlParserParser.IdentifierListContext = IdentifierListContext; + +FlinkSqlParserParser.prototype.identifierList = function() { + + var localctx = new IdentifierListContext(this, this._ctx, this.state); + this.enterRule(localctx, 86, FlinkSqlParserParser.RULE_identifierList); + try { + this.enterOuterAlt(localctx, 1); + this.state = 598; + this.match(FlinkSqlParserParser.LR_BRACKET); + this.state = 599; + this.identifierSeq(); + this.state = 600; + 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 IdentifierSeqContext(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_identifierSeq; + return this; +} + +IdentifierSeqContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +IdentifierSeqContext.prototype.constructor = IdentifierSeqContext; + +IdentifierSeqContext.prototype.identifier = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(IdentifierContext); + } else { + return this.getTypedRuleContext(IdentifierContext,i); + } +}; + +IdentifierSeqContext.prototype.COMMA = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTokens(FlinkSqlParserParser.COMMA); + } else { + return this.getToken(FlinkSqlParserParser.COMMA, i); + } +}; + + +IdentifierSeqContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterIdentifierSeq(this); + } +}; + +IdentifierSeqContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitIdentifierSeq(this); + } +}; + +IdentifierSeqContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitIdentifierSeq(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +FlinkSqlParserParser.IdentifierSeqContext = IdentifierSeqContext; + +FlinkSqlParserParser.prototype.identifierSeq = function() { + + var localctx = new IdentifierSeqContext(this, this._ctx, this.state); + this.enterRule(localctx, 88, FlinkSqlParserParser.RULE_identifierSeq); + var _la = 0; // Token type + try { + this.enterOuterAlt(localctx, 1); + this.state = 602; + this.identifier(); + this.state = 607; + this._errHandler.sync(this); + _la = this._input.LA(1); + while(_la===FlinkSqlParserParser.COMMA) { + this.state = 603; + this.match(FlinkSqlParserParser.COMMA); + this.state = 604; + this.identifier(); + this.state = 609; + 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 IdentifierContext(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_identifier; + return this; +} + +IdentifierContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +IdentifierContext.prototype.constructor = IdentifierContext; + +IdentifierContext.prototype.strictIdentifier = function() { + return this.getTypedRuleContext(StrictIdentifierContext,0); +}; + +IdentifierContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterIdentifier(this); + } +}; + +IdentifierContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitIdentifier(this); + } +}; + +IdentifierContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitIdentifier(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +FlinkSqlParserParser.IdentifierContext = IdentifierContext; + +FlinkSqlParserParser.prototype.identifier = function() { + + var localctx = new IdentifierContext(this, this._ctx, this.state); + this.enterRule(localctx, 90, FlinkSqlParserParser.RULE_identifier); + try { + this.enterOuterAlt(localctx, 1); + this.state = 610; + this.strictIdentifier(); + } 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 StrictIdentifierContext(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_strictIdentifier; + return this; +} + +StrictIdentifierContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +StrictIdentifierContext.prototype.constructor = StrictIdentifierContext; + + + +StrictIdentifierContext.prototype.copyFrom = function(ctx) { + antlr4.ParserRuleContext.prototype.copyFrom.call(this, ctx); +}; + + +function QuotedIdentifierAlternativeContext(parser, ctx) { + StrictIdentifierContext.call(this, parser); + StrictIdentifierContext.prototype.copyFrom.call(this, ctx); + return this; +} + +QuotedIdentifierAlternativeContext.prototype = Object.create(StrictIdentifierContext.prototype); +QuotedIdentifierAlternativeContext.prototype.constructor = QuotedIdentifierAlternativeContext; + +FlinkSqlParserParser.QuotedIdentifierAlternativeContext = QuotedIdentifierAlternativeContext; + +QuotedIdentifierAlternativeContext.prototype.quotedIdentifier = function() { + return this.getTypedRuleContext(QuotedIdentifierContext,0); +}; +QuotedIdentifierAlternativeContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterQuotedIdentifierAlternative(this); + } +}; + +QuotedIdentifierAlternativeContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitQuotedIdentifierAlternative(this); + } +}; + +QuotedIdentifierAlternativeContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitQuotedIdentifierAlternative(this); + } else { + return visitor.visitChildren(this); + } +}; + + +function UnquotedIdentifierContext(parser, ctx) { + StrictIdentifierContext.call(this, parser); + StrictIdentifierContext.prototype.copyFrom.call(this, ctx); + return this; +} + +UnquotedIdentifierContext.prototype = Object.create(StrictIdentifierContext.prototype); +UnquotedIdentifierContext.prototype.constructor = UnquotedIdentifierContext; + +FlinkSqlParserParser.UnquotedIdentifierContext = UnquotedIdentifierContext; + +UnquotedIdentifierContext.prototype.IDENTIFIER_BASE = function() { + return this.getToken(FlinkSqlParserParser.IDENTIFIER_BASE, 0); +}; +UnquotedIdentifierContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterUnquotedIdentifier(this); + } +}; + +UnquotedIdentifierContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitUnquotedIdentifier(this); + } +}; + +UnquotedIdentifierContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitUnquotedIdentifier(this); + } else { + return visitor.visitChildren(this); + } +}; + + + +FlinkSqlParserParser.StrictIdentifierContext = StrictIdentifierContext; + +FlinkSqlParserParser.prototype.strictIdentifier = function() { + + var localctx = new StrictIdentifierContext(this, this._ctx, this.state); + this.enterRule(localctx, 92, FlinkSqlParserParser.RULE_strictIdentifier); + try { + this.state = 614; + this._errHandler.sync(this); + switch(this._input.LA(1)) { + case FlinkSqlParserParser.IDENTIFIER_BASE: + localctx = new UnquotedIdentifierContext(this, localctx); + this.enterOuterAlt(localctx, 1); + this.state = 612; + this.match(FlinkSqlParserParser.IDENTIFIER_BASE); + break; + case FlinkSqlParserParser.STRING_LITERAL: + localctx = new QuotedIdentifierAlternativeContext(this, localctx); + this.enterOuterAlt(localctx, 2); + this.state = 613; + this.quotedIdentifier(); + 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 QuotedIdentifierContext(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_quotedIdentifier; + return this; +} + +QuotedIdentifierContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +QuotedIdentifierContext.prototype.constructor = QuotedIdentifierContext; + +QuotedIdentifierContext.prototype.STRING_LITERAL = function() { + return this.getToken(FlinkSqlParserParser.STRING_LITERAL, 0); +}; + +QuotedIdentifierContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterQuotedIdentifier(this); + } +}; + +QuotedIdentifierContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitQuotedIdentifier(this); + } +}; + +QuotedIdentifierContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitQuotedIdentifier(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +FlinkSqlParserParser.QuotedIdentifierContext = QuotedIdentifierContext; + +FlinkSqlParserParser.prototype.quotedIdentifier = function() { + + var localctx = new QuotedIdentifierContext(this, this._ctx, this.state); + this.enterRule(localctx, 94, FlinkSqlParserParser.RULE_quotedIdentifier); + try { + this.enterOuterAlt(localctx, 1); + this.state = 616; + 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 WhenClauseContext(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_whenClause; + this.condition = null; // ExpressionContext + this.result = null; // ExpressionContext + return this; +} + +WhenClauseContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +WhenClauseContext.prototype.constructor = WhenClauseContext; + +WhenClauseContext.prototype.WHEN = function() { + return this.getToken(FlinkSqlParserParser.WHEN, 0); +}; + +WhenClauseContext.prototype.THEN = function() { + return this.getToken(FlinkSqlParserParser.THEN, 0); +}; + +WhenClauseContext.prototype.expression = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTypedRuleContexts(ExpressionContext); + } else { + return this.getTypedRuleContext(ExpressionContext,i); + } +}; + +WhenClauseContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterWhenClause(this); + } +}; + +WhenClauseContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitWhenClause(this); + } +}; + +WhenClauseContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitWhenClause(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +FlinkSqlParserParser.WhenClauseContext = WhenClauseContext; + +FlinkSqlParserParser.prototype.whenClause = function() { + + var localctx = new WhenClauseContext(this, this._ctx, this.state); + this.enterRule(localctx, 96, FlinkSqlParserParser.RULE_whenClause); + try { + this.enterOuterAlt(localctx, 1); + this.state = 618; + this.match(FlinkSqlParserParser.WHEN); + this.state = 619; + localctx.condition = this.expression(); + this.state = 620; + this.match(FlinkSqlParserParser.THEN); + this.state = 621; + localctx.result = this.expression(); + } 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; @@ -6758,6 +7296,18 @@ UidListContext.prototype.uid = function(i) { } }; +UidListContext.prototype.COMMA = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTokens(FlinkSqlParserParser.COMMA); + } else { + return this.getToken(FlinkSqlParserParser.COMMA, i); + } +}; + + UidListContext.prototype.enterRule = function(listener) { if(listener instanceof FlinkSqlParserListener ) { listener.enterUidList(this); @@ -6786,21 +7336,21 @@ FlinkSqlParserParser.UidListContext = UidListContext; FlinkSqlParserParser.prototype.uidList = function() { var localctx = new UidListContext(this, this._ctx, this.state); - this.enterRule(localctx, 102, FlinkSqlParserParser.RULE_uidList); + this.enterRule(localctx, 98, FlinkSqlParserParser.RULE_uidList); var _la = 0; // Token type try { this.enterOuterAlt(localctx, 1); - this.state = 631; + this.state = 623; this.uid(); - this.state = 636; + this.state = 628; this._errHandler.sync(this); _la = this._input.LA(1); - while(_la===FlinkSqlParserParser.T__2) { - this.state = 632; - this.match(FlinkSqlParserParser.T__2); - this.state = 633; + while(_la===FlinkSqlParserParser.COMMA) { + this.state = 624; + this.match(FlinkSqlParserParser.COMMA); + this.state = 625; this.uid(); - this.state = 638; + this.state = 630; this._errHandler.sync(this); _la = this._input.LA(1); } @@ -6879,22 +7429,22 @@ FlinkSqlParserParser.UidContext = UidContext; FlinkSqlParserParser.prototype.uid = function() { var localctx = new UidContext(this, this._ctx, this.state); - this.enterRule(localctx, 104, FlinkSqlParserParser.RULE_uid); + this.enterRule(localctx, 100, FlinkSqlParserParser.RULE_uid); try { this.enterOuterAlt(localctx, 1); - this.state = 639; + this.state = 631; this.match(FlinkSqlParserParser.ID); - this.state = 643; + this.state = 635; this._errHandler.sync(this); - var _alt = this._interp.adaptivePredict(this._input,71,this._ctx) + var _alt = this._interp.adaptivePredict(this._input,67,this._ctx) while(_alt!=1 && _alt!=antlr4.atn.ATN.INVALID_ALT_NUMBER) { if(_alt===1+1) { - this.state = 640; + this.state = 632; this.match(FlinkSqlParserParser.DOT_ID); } - this.state = 645; + this.state = 637; this._errHandler.sync(this); - _alt = this._interp.adaptivePredict(this._input,71,this._ctx); + _alt = this._interp.adaptivePredict(this._input,67,this._ctx); } } catch (re) { @@ -6991,29 +7541,29 @@ FlinkSqlParserParser.WithOptionContext = WithOptionContext; FlinkSqlParserParser.prototype.withOption = function() { var localctx = new WithOptionContext(this, this._ctx, this.state); - this.enterRule(localctx, 106, FlinkSqlParserParser.RULE_withOption); + this.enterRule(localctx, 102, FlinkSqlParserParser.RULE_withOption); var _la = 0; // Token type try { this.enterOuterAlt(localctx, 1); - this.state = 646; + this.state = 638; this.match(FlinkSqlParserParser.WITH); - this.state = 647; + this.state = 639; this.match(FlinkSqlParserParser.LR_BRACKET); - this.state = 648; + this.state = 640; this.keyValueDefinition(); - this.state = 653; + this.state = 645; this._errHandler.sync(this); _la = this._input.LA(1); while(_la===FlinkSqlParserParser.COMMA) { - this.state = 649; + this.state = 641; this.match(FlinkSqlParserParser.COMMA); - this.state = 650; + this.state = 642; this.keyValueDefinition(); - this.state = 655; + this.state = 647; this._errHandler.sync(this); _la = this._input.LA(1); } - this.state = 656; + this.state = 648; this.match(FlinkSqlParserParser.RR_BRACKET); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -7086,14 +7636,14 @@ FlinkSqlParserParser.IfNotExistsContext = IfNotExistsContext; FlinkSqlParserParser.prototype.ifNotExists = function() { var localctx = new IfNotExistsContext(this, this._ctx, this.state); - this.enterRule(localctx, 108, FlinkSqlParserParser.RULE_ifNotExists); + this.enterRule(localctx, 104, FlinkSqlParserParser.RULE_ifNotExists); try { this.enterOuterAlt(localctx, 1); - this.state = 658; + this.state = 650; this.match(FlinkSqlParserParser.IF); - this.state = 659; + this.state = 651; this.match(FlinkSqlParserParser.NOT); - this.state = 660; + this.state = 652; this.match(FlinkSqlParserParser.EXISTS); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -7162,12 +7712,12 @@ FlinkSqlParserParser.IfExistsContext = IfExistsContext; FlinkSqlParserParser.prototype.ifExists = function() { var localctx = new IfExistsContext(this, this._ctx, this.state); - this.enterRule(localctx, 110, FlinkSqlParserParser.RULE_ifExists); + this.enterRule(localctx, 106, FlinkSqlParserParser.RULE_ifExists); try { this.enterOuterAlt(localctx, 1); - this.state = 662; + this.state = 654; this.match(FlinkSqlParserParser.IF); - this.state = 663; + this.state = 655; this.match(FlinkSqlParserParser.EXISTS); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -7244,14 +7794,14 @@ FlinkSqlParserParser.KeyValueDefinitionContext = KeyValueDefinitionContext; FlinkSqlParserParser.prototype.keyValueDefinition = function() { var localctx = new KeyValueDefinitionContext(this, this._ctx, this.state); - this.enterRule(localctx, 112, FlinkSqlParserParser.RULE_keyValueDefinition); + this.enterRule(localctx, 108, FlinkSqlParserParser.RULE_keyValueDefinition); try { this.enterOuterAlt(localctx, 1); - this.state = 665; + this.state = 657; this.match(FlinkSqlParserParser.DOUBLE_QUOTE_ID); - this.state = 666; + this.state = 658; this.match(FlinkSqlParserParser.EQUAL_SYMBOL); - this.state = 667; + this.state = 659; this.match(FlinkSqlParserParser.DOUBLE_QUOTE_ID); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -7268,1521 +7818,6 @@ 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; @@ -8803,10 +7838,34 @@ LogicalOperatorContext.prototype.AND = function() { return this.getToken(FlinkSqlParserParser.AND, 0); }; +LogicalOperatorContext.prototype.BIT_AND_OP = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTokens(FlinkSqlParserParser.BIT_AND_OP); + } else { + return this.getToken(FlinkSqlParserParser.BIT_AND_OP, i); + } +}; + + LogicalOperatorContext.prototype.OR = function() { return this.getToken(FlinkSqlParserParser.OR, 0); }; +LogicalOperatorContext.prototype.BIT_OR_OP = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTokens(FlinkSqlParserParser.BIT_OR_OP); + } else { + return this.getToken(FlinkSqlParserParser.BIT_OR_OP, i); + } +}; + + LogicalOperatorContext.prototype.enterRule = function(listener) { if(listener instanceof FlinkSqlParserListener ) { listener.enterLogicalOperator(this); @@ -8835,34 +7894,34 @@ FlinkSqlParserParser.LogicalOperatorContext = LogicalOperatorContext; FlinkSqlParserParser.prototype.logicalOperator = function() { var localctx = new LogicalOperatorContext(this, this._ctx, this.state); - this.enterRule(localctx, 122, FlinkSqlParserParser.RULE_logicalOperator); + this.enterRule(localctx, 110, FlinkSqlParserParser.RULE_logicalOperator); try { - this.state = 805; + this.state = 667; this._errHandler.sync(this); switch(this._input.LA(1)) { case FlinkSqlParserParser.AND: this.enterOuterAlt(localctx, 1); - this.state = 799; + this.state = 661; this.match(FlinkSqlParserParser.AND); break; - case FlinkSqlParserParser.T__6: + case FlinkSqlParserParser.BIT_AND_OP: this.enterOuterAlt(localctx, 2); - this.state = 800; - this.match(FlinkSqlParserParser.T__6); - this.state = 801; - this.match(FlinkSqlParserParser.T__6); + this.state = 662; + this.match(FlinkSqlParserParser.BIT_AND_OP); + this.state = 663; + this.match(FlinkSqlParserParser.BIT_AND_OP); break; case FlinkSqlParserParser.OR: this.enterOuterAlt(localctx, 3); - this.state = 802; + this.state = 664; this.match(FlinkSqlParserParser.OR); break; - case FlinkSqlParserParser.T__7: + case FlinkSqlParserParser.BIT_OR_OP: this.enterOuterAlt(localctx, 4); - this.state = 803; - this.match(FlinkSqlParserParser.T__7); - this.state = 804; - this.match(FlinkSqlParserParser.T__7); + this.state = 665; + this.match(FlinkSqlParserParser.BIT_OR_OP); + this.state = 666; + this.match(FlinkSqlParserParser.BIT_OR_OP); break; default: throw new antlr4.error.NoViableAltException(this); @@ -8898,6 +7957,21 @@ function ComparisonOperatorContext(parser, parent, invokingState) { ComparisonOperatorContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); ComparisonOperatorContext.prototype.constructor = ComparisonOperatorContext; +ComparisonOperatorContext.prototype.EQUAL_SYMBOL = function() { + return this.getToken(FlinkSqlParserParser.EQUAL_SYMBOL, 0); +}; + +ComparisonOperatorContext.prototype.GREATER_SYMBOL = function() { + return this.getToken(FlinkSqlParserParser.GREATER_SYMBOL, 0); +}; + +ComparisonOperatorContext.prototype.LESS_SYMBOL = function() { + return this.getToken(FlinkSqlParserParser.LESS_SYMBOL, 0); +}; + +ComparisonOperatorContext.prototype.EXCLAMATION_SYMBOL = function() { + return this.getToken(FlinkSqlParserParser.EXCLAMATION_SYMBOL, 0); +}; ComparisonOperatorContext.prototype.enterRule = function(listener) { if(listener instanceof FlinkSqlParserListener ) { @@ -8927,70 +8001,70 @@ FlinkSqlParserParser.ComparisonOperatorContext = ComparisonOperatorContext; FlinkSqlParserParser.prototype.comparisonOperator = function() { var localctx = new ComparisonOperatorContext(this, this._ctx, this.state); - this.enterRule(localctx, 124, FlinkSqlParserParser.RULE_comparisonOperator); + this.enterRule(localctx, 112, FlinkSqlParserParser.RULE_comparisonOperator); try { - this.state = 821; + this.state = 683; this._errHandler.sync(this); - var la_ = this._interp.adaptivePredict(this._input,89,this._ctx); + var la_ = this._interp.adaptivePredict(this._input,70,this._ctx); switch(la_) { case 1: this.enterOuterAlt(localctx, 1); - this.state = 807; - this.match(FlinkSqlParserParser.T__8); + this.state = 669; + this.match(FlinkSqlParserParser.EQUAL_SYMBOL); break; case 2: this.enterOuterAlt(localctx, 2); - this.state = 808; - this.match(FlinkSqlParserParser.T__9); + this.state = 670; + this.match(FlinkSqlParserParser.GREATER_SYMBOL); break; case 3: this.enterOuterAlt(localctx, 3); - this.state = 809; - this.match(FlinkSqlParserParser.T__10); + this.state = 671; + this.match(FlinkSqlParserParser.LESS_SYMBOL); break; case 4: this.enterOuterAlt(localctx, 4); - this.state = 810; - this.match(FlinkSqlParserParser.T__10); - this.state = 811; - this.match(FlinkSqlParserParser.T__8); + this.state = 672; + this.match(FlinkSqlParserParser.LESS_SYMBOL); + this.state = 673; + this.match(FlinkSqlParserParser.EQUAL_SYMBOL); break; case 5: this.enterOuterAlt(localctx, 5); - this.state = 812; - this.match(FlinkSqlParserParser.T__9); - this.state = 813; - this.match(FlinkSqlParserParser.T__8); + this.state = 674; + this.match(FlinkSqlParserParser.GREATER_SYMBOL); + this.state = 675; + this.match(FlinkSqlParserParser.EQUAL_SYMBOL); break; case 6: this.enterOuterAlt(localctx, 6); - this.state = 814; - this.match(FlinkSqlParserParser.T__10); - this.state = 815; - this.match(FlinkSqlParserParser.T__9); + this.state = 676; + this.match(FlinkSqlParserParser.LESS_SYMBOL); + this.state = 677; + this.match(FlinkSqlParserParser.GREATER_SYMBOL); break; case 7: this.enterOuterAlt(localctx, 7); - this.state = 816; - this.match(FlinkSqlParserParser.T__3); - this.state = 817; - this.match(FlinkSqlParserParser.T__8); + this.state = 678; + this.match(FlinkSqlParserParser.EXCLAMATION_SYMBOL); + this.state = 679; + this.match(FlinkSqlParserParser.EQUAL_SYMBOL); 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); + this.state = 680; + this.match(FlinkSqlParserParser.LESS_SYMBOL); + this.state = 681; + this.match(FlinkSqlParserParser.EQUAL_SYMBOL); + this.state = 682; + this.match(FlinkSqlParserParser.GREATER_SYMBOL); break; } @@ -9025,6 +8099,41 @@ function BitOperatorContext(parser, parent, invokingState) { BitOperatorContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); BitOperatorContext.prototype.constructor = BitOperatorContext; +BitOperatorContext.prototype.LESS_SYMBOL = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTokens(FlinkSqlParserParser.LESS_SYMBOL); + } else { + return this.getToken(FlinkSqlParserParser.LESS_SYMBOL, i); + } +}; + + +BitOperatorContext.prototype.GREATER_SYMBOL = function(i) { + if(i===undefined) { + i = null; + } + if(i===null) { + return this.getTokens(FlinkSqlParserParser.GREATER_SYMBOL); + } else { + return this.getToken(FlinkSqlParserParser.GREATER_SYMBOL, i); + } +}; + + +BitOperatorContext.prototype.BIT_AND_OP = function() { + return this.getToken(FlinkSqlParserParser.BIT_AND_OP, 0); +}; + +BitOperatorContext.prototype.BIT_XOR_OP = function() { + return this.getToken(FlinkSqlParserParser.BIT_XOR_OP, 0); +}; + +BitOperatorContext.prototype.BIT_OR_OP = function() { + return this.getToken(FlinkSqlParserParser.BIT_OR_OP, 0); +}; BitOperatorContext.prototype.enterRule = function(listener) { if(listener instanceof FlinkSqlParserListener ) { @@ -9054,39 +8163,39 @@ FlinkSqlParserParser.BitOperatorContext = BitOperatorContext; FlinkSqlParserParser.prototype.bitOperator = function() { var localctx = new BitOperatorContext(this, this._ctx, this.state); - this.enterRule(localctx, 126, FlinkSqlParserParser.RULE_bitOperator); + this.enterRule(localctx, 114, FlinkSqlParserParser.RULE_bitOperator); try { - this.state = 830; + this.state = 692; this._errHandler.sync(this); switch(this._input.LA(1)) { - case FlinkSqlParserParser.T__10: + case FlinkSqlParserParser.LESS_SYMBOL: this.enterOuterAlt(localctx, 1); - this.state = 823; - this.match(FlinkSqlParserParser.T__10); - this.state = 824; - this.match(FlinkSqlParserParser.T__10); + this.state = 685; + this.match(FlinkSqlParserParser.LESS_SYMBOL); + this.state = 686; + this.match(FlinkSqlParserParser.LESS_SYMBOL); break; - case FlinkSqlParserParser.T__9: + case FlinkSqlParserParser.GREATER_SYMBOL: this.enterOuterAlt(localctx, 2); - this.state = 825; - this.match(FlinkSqlParserParser.T__9); - this.state = 826; - this.match(FlinkSqlParserParser.T__9); + this.state = 687; + this.match(FlinkSqlParserParser.GREATER_SYMBOL); + this.state = 688; + this.match(FlinkSqlParserParser.GREATER_SYMBOL); break; - case FlinkSqlParserParser.T__6: + case FlinkSqlParserParser.BIT_AND_OP: this.enterOuterAlt(localctx, 3); - this.state = 827; - this.match(FlinkSqlParserParser.T__6); + this.state = 689; + this.match(FlinkSqlParserParser.BIT_AND_OP); break; - case FlinkSqlParserParser.T__11: + case FlinkSqlParserParser.BIT_XOR_OP: this.enterOuterAlt(localctx, 4); - this.state = 828; - this.match(FlinkSqlParserParser.T__11); + this.state = 690; + this.match(FlinkSqlParserParser.BIT_XOR_OP); break; - case FlinkSqlParserParser.T__7: + case FlinkSqlParserParser.BIT_OR_OP: this.enterOuterAlt(localctx, 5); - this.state = 829; - this.match(FlinkSqlParserParser.T__7); + this.state = 691; + this.match(FlinkSqlParserParser.BIT_OR_OP); break; default: throw new antlr4.error.NoViableAltException(this); @@ -9122,10 +8231,34 @@ function MathOperatorContext(parser, parent, invokingState) { MathOperatorContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); MathOperatorContext.prototype.constructor = MathOperatorContext; +MathOperatorContext.prototype.ASTERISK_SIGN = function() { + return this.getToken(FlinkSqlParserParser.ASTERISK_SIGN, 0); +}; + +MathOperatorContext.prototype.SLASH_SIGN = function() { + return this.getToken(FlinkSqlParserParser.SLASH_SIGN, 0); +}; + +MathOperatorContext.prototype.PENCENT_SIGN = function() { + return this.getToken(FlinkSqlParserParser.PENCENT_SIGN, 0); +}; + MathOperatorContext.prototype.DIV = function() { return this.getToken(FlinkSqlParserParser.DIV, 0); }; +MathOperatorContext.prototype.ADD_SIGN = function() { + return this.getToken(FlinkSqlParserParser.ADD_SIGN, 0); +}; + +MathOperatorContext.prototype.HYPNEN_SIGN = function() { + return this.getToken(FlinkSqlParserParser.HYPNEN_SIGN, 0); +}; + +MathOperatorContext.prototype.DOUBLE_HYPNEN_SIGN = function() { + return this.getToken(FlinkSqlParserParser.DOUBLE_HYPNEN_SIGN, 0); +}; + MathOperatorContext.prototype.enterRule = function(listener) { if(listener instanceof FlinkSqlParserListener ) { listener.enterMathOperator(this); @@ -9154,13 +8287,13 @@ FlinkSqlParserParser.MathOperatorContext = MathOperatorContext; FlinkSqlParserParser.prototype.mathOperator = function() { var localctx = new MathOperatorContext(this, this._ctx, this.state); - this.enterRule(localctx, 128, FlinkSqlParserParser.RULE_mathOperator); + this.enterRule(localctx, 116, FlinkSqlParserParser.RULE_mathOperator); var _la = 0; // Token type try { this.enterOuterAlt(localctx, 1); - this.state = 832; + this.state = 694; _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)) { + if(!(_la===FlinkSqlParserParser.DIV || ((((_la - 307)) & ~0x1f) == 0 && ((1 << (_la - 307)) & ((1 << (FlinkSqlParserParser.ASTERISK_SIGN - 307)) | (1 << (FlinkSqlParserParser.HYPNEN_SIGN - 307)) | (1 << (FlinkSqlParserParser.ADD_SIGN - 307)) | (1 << (FlinkSqlParserParser.PENCENT_SIGN - 307)) | (1 << (FlinkSqlParserParser.DOUBLE_HYPNEN_SIGN - 307)) | (1 << (FlinkSqlParserParser.SLASH_SIGN - 307)))) !== 0))) { this._errHandler.recoverInline(this); } else { @@ -9198,6 +8331,22 @@ function UnaryOperatorContext(parser, parent, invokingState) { UnaryOperatorContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); UnaryOperatorContext.prototype.constructor = UnaryOperatorContext; +UnaryOperatorContext.prototype.EXCLAMATION_SYMBOL = function() { + return this.getToken(FlinkSqlParserParser.EXCLAMATION_SYMBOL, 0); +}; + +UnaryOperatorContext.prototype.BIT_NOT_OP = function() { + return this.getToken(FlinkSqlParserParser.BIT_NOT_OP, 0); +}; + +UnaryOperatorContext.prototype.ADD_SIGN = function() { + return this.getToken(FlinkSqlParserParser.ADD_SIGN, 0); +}; + +UnaryOperatorContext.prototype.HYPNEN_SIGN = function() { + return this.getToken(FlinkSqlParserParser.HYPNEN_SIGN, 0); +}; + UnaryOperatorContext.prototype.NOT = function() { return this.getToken(FlinkSqlParserParser.NOT, 0); }; @@ -9230,13 +8379,13 @@ FlinkSqlParserParser.UnaryOperatorContext = UnaryOperatorContext; FlinkSqlParserParser.prototype.unaryOperator = function() { var localctx = new UnaryOperatorContext(this, this._ctx, this.state); - this.enterRule(localctx, 130, FlinkSqlParserParser.RULE_unaryOperator); + this.enterRule(localctx, 118, FlinkSqlParserParser.RULE_unaryOperator); var _la = 0; // Token type try { this.enterOuterAlt(localctx, 1); - this.state = 834; + this.state = 696; _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))) { + if(!(_la===FlinkSqlParserParser.NOT || ((((_la - 287)) & ~0x1f) == 0 && ((1 << (_la - 287)) & ((1 << (FlinkSqlParserParser.EXCLAMATION_SYMBOL - 287)) | (1 << (FlinkSqlParserParser.BIT_NOT_OP - 287)) | (1 << (FlinkSqlParserParser.HYPNEN_SIGN - 287)) | (1 << (FlinkSqlParserParser.ADD_SIGN - 287)))) !== 0))) { this._errHandler.recoverInline(this); } else { @@ -9306,10 +8455,10 @@ FlinkSqlParserParser.FullColumnNameContext = FullColumnNameContext; FlinkSqlParserParser.prototype.fullColumnName = function() { var localctx = new FullColumnNameContext(this, this._ctx, this.state); - this.enterRule(localctx, 132, FlinkSqlParserParser.RULE_fullColumnName); + this.enterRule(localctx, 120, FlinkSqlParserParser.RULE_fullColumnName); try { this.enterOuterAlt(localctx, 1); - this.state = 836; + this.state = 698; this.uid(); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -9350,6 +8499,10 @@ ConstantContext.prototype.decimalLiteral = function() { return this.getTypedRuleContext(DecimalLiteralContext,0); }; +ConstantContext.prototype.HYPNEN_SIGN = function() { + return this.getToken(FlinkSqlParserParser.HYPNEN_SIGN, 0); +}; + ConstantContext.prototype.booleanLiteral = function() { return this.getTypedRuleContext(BooleanLiteralContext,0); }; @@ -9398,15 +8551,15 @@ FlinkSqlParserParser.ConstantContext = ConstantContext; FlinkSqlParserParser.prototype.constant = function() { var localctx = new ConstantContext(this, this._ctx, this.state); - this.enterRule(localctx, 134, FlinkSqlParserParser.RULE_constant); + this.enterRule(localctx, 122, FlinkSqlParserParser.RULE_constant); var _la = 0; // Token type try { - this.state = 849; + this.state = 711; this._errHandler.sync(this); switch(this._input.LA(1)) { case FlinkSqlParserParser.STRING_LITERAL: this.enterOuterAlt(localctx, 1); - this.state = 838; + this.state = 700; this.stringLiteral(); break; case FlinkSqlParserParser.ZERO_DECIMAL: @@ -9414,44 +8567,44 @@ FlinkSqlParserParser.prototype.constant = function() { case FlinkSqlParserParser.TWO_DECIMAL: case FlinkSqlParserParser.DECIMAL_LITERAL: this.enterOuterAlt(localctx, 2); - this.state = 839; + this.state = 701; this.decimalLiteral(); break; - case FlinkSqlParserParser.T__15: + case FlinkSqlParserParser.HYPNEN_SIGN: this.enterOuterAlt(localctx, 3); - this.state = 840; - this.match(FlinkSqlParserParser.T__15); - this.state = 841; + this.state = 702; + this.match(FlinkSqlParserParser.HYPNEN_SIGN); + this.state = 703; this.decimalLiteral(); break; case FlinkSqlParserParser.TRUE: case FlinkSqlParserParser.FALSE: this.enterOuterAlt(localctx, 4); - this.state = 842; + this.state = 704; this.booleanLiteral(); break; case FlinkSqlParserParser.REAL_LITERAL: this.enterOuterAlt(localctx, 5); - this.state = 843; + this.state = 705; this.match(FlinkSqlParserParser.REAL_LITERAL); break; case FlinkSqlParserParser.BIT_STRING: this.enterOuterAlt(localctx, 6); - this.state = 844; + this.state = 706; this.match(FlinkSqlParserParser.BIT_STRING); break; case FlinkSqlParserParser.NOT: case FlinkSqlParserParser.NULL: this.enterOuterAlt(localctx, 7); - this.state = 846; + this.state = 708; this._errHandler.sync(this); _la = this._input.LA(1); if(_la===FlinkSqlParserParser.NOT) { - this.state = 845; + this.state = 707; this.match(FlinkSqlParserParser.NOT); } - this.state = 848; + this.state = 710; this.match(FlinkSqlParserParser.NULL); break; default: @@ -9520,10 +8673,10 @@ FlinkSqlParserParser.StringLiteralContext = StringLiteralContext; FlinkSqlParserParser.prototype.stringLiteral = function() { var localctx = new StringLiteralContext(this, this._ctx, this.state); - this.enterRule(localctx, 136, FlinkSqlParserParser.RULE_stringLiteral); + this.enterRule(localctx, 124, FlinkSqlParserParser.RULE_stringLiteral); try { this.enterOuterAlt(localctx, 1); - this.state = 851; + this.state = 713; this.match(FlinkSqlParserParser.STRING_LITERAL); } catch (re) { if(re instanceof antlr4.error.RecognitionException) { @@ -9600,13 +8753,13 @@ FlinkSqlParserParser.DecimalLiteralContext = DecimalLiteralContext; FlinkSqlParserParser.prototype.decimalLiteral = function() { var localctx = new DecimalLiteralContext(this, this._ctx, this.state); - this.enterRule(localctx, 138, FlinkSqlParserParser.RULE_decimalLiteral); + this.enterRule(localctx, 126, FlinkSqlParserParser.RULE_decimalLiteral); var _la = 0; // Token type try { this.enterOuterAlt(localctx, 1); - this.state = 853; + this.state = 715; _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))) { + if(!(((((_la - 300)) & ~0x1f) == 0 && ((1 << (_la - 300)) & ((1 << (FlinkSqlParserParser.ZERO_DECIMAL - 300)) | (1 << (FlinkSqlParserParser.ONE_DECIMAL - 300)) | (1 << (FlinkSqlParserParser.TWO_DECIMAL - 300)) | (1 << (FlinkSqlParserParser.DECIMAL_LITERAL - 300)))) !== 0))) { this._errHandler.recoverInline(this); } else { @@ -9680,11 +8833,11 @@ FlinkSqlParserParser.BooleanLiteralContext = BooleanLiteralContext; FlinkSqlParserParser.prototype.booleanLiteral = function() { var localctx = new BooleanLiteralContext(this, this._ctx, this.state); - this.enterRule(localctx, 140, FlinkSqlParserParser.RULE_booleanLiteral); + this.enterRule(localctx, 128, FlinkSqlParserParser.RULE_booleanLiteral); var _la = 0; // Token type try { this.enterOuterAlt(localctx, 1); - this.state = 855; + this.state = 717; _la = this._input.LA(1); if(!(_la===FlinkSqlParserParser.TRUE || _la===FlinkSqlParserParser.FALSE)) { this._errHandler.recoverInline(this); @@ -9708,62 +8861,133 @@ FlinkSqlParserParser.prototype.booleanLiteral = function() { }; +function SetQuantifierContext(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_setQuantifier; + return this; +} + +SetQuantifierContext.prototype = Object.create(antlr4.ParserRuleContext.prototype); +SetQuantifierContext.prototype.constructor = SetQuantifierContext; + +SetQuantifierContext.prototype.DISTINCT = function() { + return this.getToken(FlinkSqlParserParser.DISTINCT, 0); +}; + +SetQuantifierContext.prototype.ALL = function() { + return this.getToken(FlinkSqlParserParser.ALL, 0); +}; + +SetQuantifierContext.prototype.enterRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.enterSetQuantifier(this); + } +}; + +SetQuantifierContext.prototype.exitRule = function(listener) { + if(listener instanceof FlinkSqlParserListener ) { + listener.exitSetQuantifier(this); + } +}; + +SetQuantifierContext.prototype.accept = function(visitor) { + if ( visitor instanceof FlinkSqlParserVisitor ) { + return visitor.visitSetQuantifier(this); + } else { + return visitor.visitChildren(this); + } +}; + + + + +FlinkSqlParserParser.SetQuantifierContext = SetQuantifierContext; + +FlinkSqlParserParser.prototype.setQuantifier = function() { + + var localctx = new SetQuantifierContext(this, this._ctx, this.state); + this.enterRule(localctx, 130, FlinkSqlParserParser.RULE_setQuantifier); + var _la = 0; // Token type + try { + this.enterOuterAlt(localctx, 1); + this.state = 719; + _la = this._input.LA(1); + if(!(_la===FlinkSqlParserParser.ALL || _la===FlinkSqlParserParser.DISTINCT)) { + 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); + case 38: + return this.booleanExpression_sempred(localctx, predIndex); + case 40: + return this.valueExpression_sempred(localctx, predIndex); + case 41: + return this.primaryExpression_sempred(localctx, predIndex); default: throw "No predicate with index:" + ruleIndex; } }; -FlinkSqlParserParser.prototype.tableExpression_sempred = function(localctx, predIndex) { +FlinkSqlParserParser.prototype.booleanExpression_sempred = function(localctx, predIndex) { switch(predIndex) { case 0: + return this.precpred(this._ctx, 2); + case 1: 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) { +FlinkSqlParserParser.prototype.valueExpression_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: + case 3: + return this.precpred(this._ctx, 5); + case 4: return this.precpred(this._ctx, 4); + case 5: + return this.precpred(this._ctx, 3); + case 6: + return this.precpred(this._ctx, 2); + case 7: + return this.precpred(this._ctx, 1); default: throw "No predicate with index:" + predIndex; } }; -FlinkSqlParserParser.prototype.expressionAtom_sempred = function(localctx, predIndex) { +FlinkSqlParserParser.prototype.primaryExpression_sempred = function(localctx, predIndex) { switch(predIndex) { - case 7: - return this.precpred(this._ctx, 2); case 8: - return this.precpred(this._ctx, 1); + return this.precpred(this._ctx, 2); default: throw "No predicate with index:" + predIndex; } diff --git a/src/lib/flinksql/FlinkSqlParserVisitor.js b/src/lib/flinksql/FlinkSqlParserVisitor.js index 8f5d982..66af531 100644 --- a/src/lib/flinksql/FlinkSqlParserVisitor.js +++ b/src/lib/flinksql/FlinkSqlParserVisitor.js @@ -168,14 +168,38 @@ FlinkSqlParserVisitor.prototype.visitDropFunction = function(ctx) { }; -// Visit a parse tree produced by FlinkSqlParserParser#queryStatement. -FlinkSqlParserVisitor.prototype.visitQueryStatement = function(ctx) { +// Visit a parse tree produced by FlinkSqlParserParser#insertStatement. +FlinkSqlParserVisitor.prototype.visitInsertStatement = function(ctx) { return this.visitChildren(ctx); }; -// Visit a parse tree produced by FlinkSqlParserParser#selectStatements. -FlinkSqlParserVisitor.prototype.visitSelectStatements = function(ctx) { +// Visit a parse tree produced by FlinkSqlParserParser#insertPartitionDefinition. +FlinkSqlParserVisitor.prototype.visitInsertPartitionDefinition = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by FlinkSqlParserParser#valuesDefinition. +FlinkSqlParserVisitor.prototype.visitValuesDefinition = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by FlinkSqlParserParser#valuesRowDefinition. +FlinkSqlParserVisitor.prototype.visitValuesRowDefinition = function(ctx) { + return this.visitChildren(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#queryStatement. +FlinkSqlParserVisitor.prototype.visitQueryStatement = function(ctx) { return this.visitChildren(ctx); }; @@ -204,116 +228,164 @@ FlinkSqlParserVisitor.prototype.visitTableReference = function(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) { +// Visit a parse tree produced by FlinkSqlParserParser#expression. +FlinkSqlParserVisitor.prototype.visitExpression = function(ctx) { return this.visitChildren(ctx); }; -// Visit a parse tree produced by FlinkSqlParserParser#joinCondition. -FlinkSqlParserVisitor.prototype.visitJoinCondition = function(ctx) { +// Visit a parse tree produced by FlinkSqlParserParser#logicalNot. +FlinkSqlParserVisitor.prototype.visitLogicalNot = function(ctx) { return this.visitChildren(ctx); }; -// Visit a parse tree produced by FlinkSqlParserParser#booleanExpression. -FlinkSqlParserVisitor.prototype.visitBooleanExpression = function(ctx) { +// Visit a parse tree produced by FlinkSqlParserParser#predicated. +FlinkSqlParserVisitor.prototype.visitPredicated = function(ctx) { return this.visitChildren(ctx); }; -// Visit a parse tree produced by FlinkSqlParserParser#groupItemDefinition. -FlinkSqlParserVisitor.prototype.visitGroupItemDefinition = function(ctx) { +// Visit a parse tree produced by FlinkSqlParserParser#logicalBinary. +FlinkSqlParserVisitor.prototype.visitLogicalBinary = function(ctx) { return this.visitChildren(ctx); }; -// Visit a parse tree produced by FlinkSqlParserParser#selectWithoutFromDefinition. -FlinkSqlParserVisitor.prototype.visitSelectWithoutFromDefinition = function(ctx) { +// Visit a parse tree produced by FlinkSqlParserParser#predicate. +FlinkSqlParserVisitor.prototype.visitPredicate = function(ctx) { return this.visitChildren(ctx); }; -// Visit a parse tree produced by FlinkSqlParserParser#projectItem. -FlinkSqlParserVisitor.prototype.visitProjectItem = function(ctx) { +// Visit a parse tree produced by FlinkSqlParserParser#valueExpressionDefault. +FlinkSqlParserVisitor.prototype.visitValueExpressionDefault = function(ctx) { return this.visitChildren(ctx); }; -// Visit a parse tree produced by FlinkSqlParserParser#queryOrderByDefinition. -FlinkSqlParserVisitor.prototype.visitQueryOrderByDefinition = function(ctx) { +// Visit a parse tree produced by FlinkSqlParserParser#comparison. +FlinkSqlParserVisitor.prototype.visitComparison = function(ctx) { return this.visitChildren(ctx); }; -// Visit a parse tree produced by FlinkSqlParserParser#orderItemDefition. -FlinkSqlParserVisitor.prototype.visitOrderItemDefition = function(ctx) { +// Visit a parse tree produced by FlinkSqlParserParser#arithmeticBinary. +FlinkSqlParserVisitor.prototype.visitArithmeticBinary = function(ctx) { return this.visitChildren(ctx); }; -// Visit a parse tree produced by FlinkSqlParserParser#queryLimitDefinition. -FlinkSqlParserVisitor.prototype.visitQueryLimitDefinition = function(ctx) { +// Visit a parse tree produced by FlinkSqlParserParser#arithmeticUnary. +FlinkSqlParserVisitor.prototype.visitArithmeticUnary = function(ctx) { return this.visitChildren(ctx); }; -// Visit a parse tree produced by FlinkSqlParserParser#countDefinition. -FlinkSqlParserVisitor.prototype.visitCountDefinition = function(ctx) { +// Visit a parse tree produced by FlinkSqlParserParser#simpleCase. +FlinkSqlParserVisitor.prototype.visitSimpleCase = function(ctx) { return this.visitChildren(ctx); }; -// Visit a parse tree produced by FlinkSqlParserParser#queryOffsetDefinition. -FlinkSqlParserVisitor.prototype.visitQueryOffsetDefinition = function(ctx) { +// Visit a parse tree produced by FlinkSqlParserParser#constantDefault. +FlinkSqlParserVisitor.prototype.visitConstantDefault = function(ctx) { return this.visitChildren(ctx); }; -// Visit a parse tree produced by FlinkSqlParserParser#queryFetchDefinition. -FlinkSqlParserVisitor.prototype.visitQueryFetchDefinition = function(ctx) { +// Visit a parse tree produced by FlinkSqlParserParser#parenthesizedExpression. +FlinkSqlParserVisitor.prototype.visitParenthesizedExpression = function(ctx) { return this.visitChildren(ctx); }; -// Visit a parse tree produced by FlinkSqlParserParser#insertStatement. -FlinkSqlParserVisitor.prototype.visitInsertStatement = function(ctx) { +// Visit a parse tree produced by FlinkSqlParserParser#last. +FlinkSqlParserVisitor.prototype.visitLast = function(ctx) { return this.visitChildren(ctx); }; -// Visit a parse tree produced by FlinkSqlParserParser#insertPartitionDefinition. -FlinkSqlParserVisitor.prototype.visitInsertPartitionDefinition = function(ctx) { +// Visit a parse tree produced by FlinkSqlParserParser#star. +FlinkSqlParserVisitor.prototype.visitStar = function(ctx) { return this.visitChildren(ctx); }; -// Visit a parse tree produced by FlinkSqlParserParser#valuesDefinition. -FlinkSqlParserVisitor.prototype.visitValuesDefinition = function(ctx) { +// Visit a parse tree produced by FlinkSqlParserParser#subscript. +FlinkSqlParserVisitor.prototype.visitSubscript = function(ctx) { return this.visitChildren(ctx); }; -// Visit a parse tree produced by FlinkSqlParserParser#valuesRowDefinition. -FlinkSqlParserVisitor.prototype.visitValuesRowDefinition = function(ctx) { +// Visit a parse tree produced by FlinkSqlParserParser#searchedCase. +FlinkSqlParserVisitor.prototype.visitSearchedCase = function(ctx) { return this.visitChildren(ctx); }; -// Visit a parse tree produced by FlinkSqlParserParser#allValueDifinition. -FlinkSqlParserVisitor.prototype.visitAllValueDifinition = function(ctx) { +// Visit a parse tree produced by FlinkSqlParserParser#position. +FlinkSqlParserVisitor.prototype.visitPosition = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by FlinkSqlParserParser#first. +FlinkSqlParserVisitor.prototype.visitFirst = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by FlinkSqlParserParser#tableAlias. +FlinkSqlParserVisitor.prototype.visitTableAlias = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by FlinkSqlParserParser#identifierList. +FlinkSqlParserVisitor.prototype.visitIdentifierList = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by FlinkSqlParserParser#identifierSeq. +FlinkSqlParserVisitor.prototype.visitIdentifierSeq = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by FlinkSqlParserParser#identifier. +FlinkSqlParserVisitor.prototype.visitIdentifier = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by FlinkSqlParserParser#unquotedIdentifier. +FlinkSqlParserVisitor.prototype.visitUnquotedIdentifier = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by FlinkSqlParserParser#quotedIdentifierAlternative. +FlinkSqlParserVisitor.prototype.visitQuotedIdentifierAlternative = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by FlinkSqlParserParser#quotedIdentifier. +FlinkSqlParserVisitor.prototype.visitQuotedIdentifier = function(ctx) { + return this.visitChildren(ctx); +}; + + +// Visit a parse tree produced by FlinkSqlParserParser#whenClause. +FlinkSqlParserVisitor.prototype.visitWhenClause = function(ctx) { return this.visitChildren(ctx); }; @@ -354,132 +426,6 @@ 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); @@ -540,5 +486,11 @@ FlinkSqlParserVisitor.prototype.visitBooleanLiteral = function(ctx) { }; +// Visit a parse tree produced by FlinkSqlParserParser#setQuantifier. +FlinkSqlParserVisitor.prototype.visitSetQuantifier = 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 bde5113..b0efcdc 100644 --- a/test/parser/flinksql/syntax.test.ts +++ b/test/parser/flinksql/syntax.test.ts @@ -14,6 +14,7 @@ describe('FlinkSQL Syntax Tests', () => { ); `; const result = parser.validate(sql); + console.log(result); // TODO find parser error expect(result.length).toBe(1); }); @@ -70,7 +71,7 @@ describe('FlinkSQL Syntax Tests', () => { expect(result.length).toBe(0); }); test('Test simple Select Statement', () => { - const sql = ` SELECT product, amount FROM Orders;`; + const sql = `SELECT product, amount FROM Orders;`; const result = parser.validate(sql); console.log(result); expect(result.length).toBe(0);